ࡱ> 35012@ ybjbjצצ ipUL L L L $L&L&L&P&T&N'))))n9v;<d~NNNNNNNOR#RN =7.9@ = =NL L )) NDDD =DL l) )~ND =~NDDK , L)t' p3L&P?L" MtN0NL"RC`RDLL L L L R L$ = =D = = = = =NNDL&tDL& Guide to Excel Advanced Features by Andrew Virnuls Contents  TOC \t "Heading 1,1,Heading 2,2,Heading 3,3,H1,1,H2,2,H3,3,H4,4" Microsoft Excel  PAGEREF _Toc51336922 \h 2 Validation  PAGEREF _Toc51336923 \h 2 Protecting Cells  PAGEREF _Toc51336924 \h 2 Logical Operators  PAGEREF _Toc51336925 \h 3 Form Features  PAGEREF _Toc51336926 \h 3 Radio Buttons  PAGEREF _Toc51336927 \h 3 Checkboxes  PAGEREF _Toc51336928 \h 4 Numerical Functions  PAGEREF _Toc51336929 \h 4 if()  PAGEREF _Toc51336930 \h 5 vlookup()  PAGEREF _Toc51336931 \h 5 Text Functions  PAGEREF _Toc51336932 \h 6 Paste Special  PAGEREF _Toc51336933 \h 7 Conditional Formatting  PAGEREF _Toc51336934 \h 7 Excel Macros  PAGEREF _Toc51336935 \h 8 Recording a Macro  PAGEREF _Toc51336936 \h 8 Adding a Button  PAGEREF _Toc51336937 \h 9 Editing Macros  PAGEREF _Toc51336938 \h 9 Referring to Cell Contents  PAGEREF _Toc51336939 \h 9 Dates in Excel  PAGEREF _Toc51336940 \h 10 Creating a New Macro  PAGEREF _Toc51336941 \h 10 Using msgbox() and if  PAGEREF _Toc51336942 \h 11 Updating the Screen  PAGEREF _Toc51336943 \h 12 Events  PAGEREF _Toc51336944 \h 12 Web Links  PAGEREF _Toc51336945 \h 12  Microsoft Excel Excel is a very powerful and flexible application, and very often it's underused. You can do anything from adding up a few figures using simple formulae, to creating complete systems that resemble relational databases (see examples below). While most of the formulae available are numerical or statistical, there are also text and data lookup functions. Here are a few features that you may not know about or may not have used before. Validation Using the validation functions in Excel (on the Data menu), it is possible to check ranges of numbers or the lengths of strings entered, and also to customise the messages that appear when the validation fails. You can even add prompts so that the user is told what to enter when he or she clicks on the cell. This is quite straightforward - just select the type of validation you require, and enter the limits and messages. Probably the most useful type of validation is List. The checks entries against a list of valid entries, either typed into the Validation dialogue or from a range on the spreadsheet. More usefully, however, it creates a combo box on the spreadsheet that allows the user to select from the valid entries using the mouse. This is particularly effective when combined with the vlookup() function (see below). The only thing to note is that if you want to use a list from the spreadsheet, the list needs to be on the same sheet. Protecting Cells If you've created an elaborate system that takes user-entered variables and produces some sort of outcome in other cells, then the last thing you want is your user deleting the formulae. Because your formulae generally won't need to be changed, and what you can do is protect the cells that contain them. In fact, if you protect all of the cells into which the user does not need to enter any values, it has the additional benefit of assisting navigation, as the TAB key moves the cursor between unprotected cells. Combine this technique with careful use of borders and background colours, and you can create a user-friend user interface as well as an efficient system. Protecting cells is quite simple, but there are two steps involved. Each cell has a property to say whether or not it is protected, and the default setting is Locked (i.e. protected). The first step, therefore, is to set the Locked property to false for all the cells that you need the user to be able to change. To do this, you must highlight all of the cells - you can highlight non-adjacent cells by holding down the Ctrl key as you click. Then, select Cells from the Format menu. On the Protection tab, there are two checkboxes, called Locked and Hidden - make sure that Locked is not ticked. The final step is to switch on the protection - from the Tools menu, select Protection then Protect Sheet.... You will be prompted for a password - be careful not to enter one unless it is absolutely necessary; I have known a number of students who have forgotten their passwords and have had to start their systems again. Note that when a sheet is protected, certain features no longer work - AutoSum, for example - even when you're not working with protected cells. Also, if you create a macro that writes to protected cells, you will need to unprotect the sheet at the start of your macro, and then re-protect it at the end. Logical Operators Excel recognises the values true and false, and also contains logical operations such as the AND(), OR() and NOT() functions. These work in the usual way, and can be used in calculations as shown in the checkbox example below. Form Features Using the Forms Toolbar (shown right - click the right mouse button on the toolbar and select Forms), you can add common Windows form features, such as combo-boxes and buttons, to your spreadsheet. The two most useful (and easiest to create) are checkboxes and radio buttons (called option buttons in Excel). Radio Buttons Radio buttons (also known as option buttons) are the little buttons normally used for answering multiple-choice questions. Their key feature is that you can only select one at a time (like the stations on a radio - hence the name). You can draw on as many radio buttons as you like, and then link them a cell in your spreadsheet. This cell then displays the number of the button selected - i.e. the first radio button you add inserts a 1, the second a 2, the third a 3, and so on. You can also use them the other way round, i.e. entering a number in the cell sets the corresponding radio button, e.g. entering a 1 "clicks" the first radio button you created. To link a radio button to a cell, first of all you need to click the appropriate button on the Forms Toolbar - third button down, on the right - and draw on the radio button where you want it to go. To change the text, or move the button later on, use the right mouse button. To link the button to a cell, click the right mouse button on the radio button, and select Format Control.... Go to the Control tab, and you will see the Cell link: field. In here, enter the reference of the cell you want to use, or use the red arrow to select a cell. All the radio buttons that you create on a sheet are linked to the same cell - you only need to set this property for one of the options. If you want to create several sets of radio buttons, e.g. for several multiple-choice questions, then you need to use a Group Box (second button down on the left of the Forms Toolbar). Draw on the group box, and make sure that all the radio buttons you want to group together are entirely inside the box - this includes the box around the text. All of the radio buttons inside the group box will be linked to the same cell, but those in different group boxes may be linked to different cells. Checkboxes Checkboxes work in a very similar way, except that each one is linked to its own cell in the spreadsheet, and it inserts TRUE into the cell when ticked, and FALSE when not ticked. Again, it's useful to remember that this works the other way round, too - if you enter a 0 in the linked cell, the checkbox is cleared, and if you enter a non-zero value, it becomes ticked. Remember also that you can use TRUE and FALSE in calculations, so checkboxes are useful for selection options and adding in the costs by multiplying the cost of the option by the value in the linked cell. If the option isn't selected, the cell will contain FALSE, and FALSE behaves in the same way as zero, thereby cancelling the cost. This is what happens in the checkbox example, shown on the previous page. You can tick the various options, and the total is calculated. The example actually does more than that, because it also contains a stock table, and won't let you select an item that is out of stock. It does this by running a macro when an option is ticked - the macro simply pastes column C onto column B, resetting the button if the item is out of stock. You can attach a macro to any of the form features by clicking on it with the right mouse button, and then selecting Assign Macro.... Numerical Functions As you'd imagine, Excel contains a large number of arithmetic, trigonometric and statistical functions. Probably the most interesting from a project point of view are the random number generation and rounding functions. You can generate a random number using the =rand() function. This generates a (pseudo) random number between 0 and 1 - to get a number between other limits, you need to do a bit of arithmetic. For example, to get a number between 0 and 10, just use =rand()*10, and to get a number between 5 and 15, use =(rand()*10)+5. This won't give you a whole number, however (unless you're lucky!). You can round to an integer (i.e. whole number) using =int(), but it's important to remember that this always rounds down, so =int(rand()*10) will give you a whole number form 0 to 9. To simulate the roll of a die (a number from 1 to 6), therefore, you would need to use =int(rand()*6)+1. You might also want to look at how the =mod() function is used in the dice example below. There are two other rounding functions, called =ceiling() and =floor(). These round up and down, respectively, but also take a second argument, X, and then round the number to the nearest X. So =ceiling(A1, 10), for example, would round the value in cell A1 up to the nearest 10. Finally, if youre working with sets of data, the =min(), =max() and =rank() functions may be of interest. The =min() and =max() functions find the smallest and largest values, respectively, from the given range e.g. =max(a1:a10) finds the largest value between a1 and a10. The =rank() function is used to give one value within a set of values a relative position within the set - =rank(x, y, z) will give you the relative position of value x within set y. If the value of z is zero (or you only enter the first two arguments), the highest value is given the rank 1 (i.e. first). If z is non-zero, then the lowest value is ranked first. For example, =rank(a1,a1:a10) will give you the position of the value in cell a1 within the set of data in the range a1:a10, with the highest value ranked 1, and =rank(b3,b1:b10,1) will rank b3 in the set b1:b10, with the lowest value ranked first. if() You can make decisions in your spreadsheet using the =if() function. It takes three arguments in order: some sort of test - a comparison or function what you want to display if the test passes (i.e. returns true) what you want to display otherwise If you want to display a number or the result of a formula, you can just enter that value or formula as your argument. If you want to display text, you need to enclose it in speech marks. For example, if you wanted to simulate a coin toss, you could use the function =if(rand()>0.5,"True","False"). You can nest functions in Excel, so if you wanted to show whether the value in A1 was positive, negative or zero, you could use =if(A1>0,"Positive",if(A1<0,"Negative","Zero")). vlookup() This is a very useful function that enables you to reproduce some of the features of a relational database in Excel. The =vlookup() function (there is also a similar =hlookup() function, in case your table of data is the other way round, i.e. in rows rather than columns) allows you to take a number or some text, and look that value up in a table in your spreadsheet, and then return some corresponding information. For example, in the spreadsheet shown on the, the function looks up the postcode selected by the user in cell D2, and returns the corresponding town/city. The actual function for this is =VLOOKUP(D4,postcodes,2,FALSE). You will notice that =vlookup() takes 4 arguments: what you want to look up - in this case we want to look up the postcode that has been entered in cell D4 where you want to look it up from - this must be a range, in this case it's A2:B9, which I've named postcodes (see below). the number of the column that contains the information you want to fetch - in this case we want the name of the town/city, which is in the second column of postcodes. whether you (don't) want to find exact matches in the table, only - in this example it doesn't make sense, because we're looking up text values, but if the postcode was a number, then setting this argument to TRUE would allow you to match values that aren't in the table (e.g. you could create a table of exam grade boundaries, and then look up any percentage to find the grade). There are a couple of things to be aware of. Firstly, if you want to use TRUE as the last argument, you need to make sure that the numbers in the table you're looking up from are in ascending order, i.e. the smallest number is at the top. Secondly, if you're going to replicate your formula, you need to make the second argument (the lookup table range) absolute (e.g. by pressing F4), or, better still, give the name as range as I have done. To name a range, you must first highlight it (as shown on the right), and then enter a name in the combo-box above cell A1. Thereafter, you can use this name in formulae, and if you select the name in the combo above A1, the range will become highlighted so you can see where it is. If you need to change the size of the range, select Name from the Insert menu, and then choose Define.... If you use vlookup() to find a value, but there is no match in the table, the function returns #N/A. This can be hidden using conditional formatting (see below) and the =isna() function. The =isna() function returns either TRUE or FALSE, depending on whether a given cell contains #N/A, e.g. =isna(A1) would display TRUE is there was an #N/A in cell A1. Text Functions There are also some useful text-manipulation functions in Excel. You can change the case of text (to either upper, lower, or proper case, where the first letter of each work is capitalised), trim characters from the left or the right, remove leading and trailing spaces, and find the length of some text. These functions are described below the examples assume that the cell A1 contains the text chipping campden school, A2 contains 2 and A3 contains F1: FunctionDescriptionExample=left(cell, chars)Finds the first chars characters from the text in cell=left(A1,8) would give you chipping=right(cell, chars)Finds the last chars characters from the text in cell=right(A1,6) would give you school=concatenate(cell, cell)Joins together the contents of the two cells=concatenate(A2,A3) will give you 12F1=find(text, cell)Finds the location (i.e. the position of the first letter) of text in cell=find( ,A1) will give you 9=proper(cell)Capitalises the first letter of each word in cell=proper(A1) will give you Chipping Campden School=upper(cell)Changes the text in cell so that it is all in upper case=upper(A1) will give you CHIPPING CAMPDEN SCHOOL=lower(cell)Changes the text in cell so that it is all in lower case=lower(A2) will give you f1=len(cell)Finds the number of characters in the text in cell=len(A1) will give you 23=trim(cell)Removes all leading and trailing spaces from the text in cell=trim( A ) will give you just A with no spaces around it Paste Special You may have noticed that if you copy and paste values in Excel, you actually copy the formulae rather than the values in the cells. If you use the right mouse button or the Edit menu to select Paste Special... you can choose what you want to copy - formula, value, validation, formatting, etc. Even more useful is the fact that if you choose to copy just the value in the cell, you can add to, subtract from, divide or multiply by the value that's already in the target cell. This can be useful for subtracting items from stock, for example, or adding medals to a medal table in the example spreadsheet discussed on the macro page. Conditional Formatting Excel allows you to change a number of aspects of the formatting of a cell - font, size, text decoration, colour, etc. You can also use something called conditional formatting (on the Format menu) to change the colour, etc., of a cell according to its value, or even the value of another cell. This is the technique used in theHYPERLINK "examples/EUgames.xls" medals system to display the word "Gold" in gold, the word "Silver" in silver, etc. The dice system (shown on the right) uses random number generation to simulate the roll of a die, and then conditional formatting to show you what the die would look like. It does this by setting the background colour of seven cells, depending on the value in B6 (i.e. the number 5 shown here). If you want to test the value of another cell, you need to use the Formula is option (rather than Cell value is), as shown below: The top-left and bottom-right "spots" are filled in for any value greater than 1. Top-right and bottom left spots are filled in for any value greater than 3. The middle-left and middle-right spots only appear when a 6 is thrown. The only slightly tricky one is the middle spot, which only appears when an odd number is thrown. You can use the =MOD() function to check for this - the =MOD() function performs a division and gives you the remainder. In this case I've used =MOD(B6,2) - if you divide a number by two and there is a remainder, then the number is odd! Excel Macros A macro is a small program, or set of commands, that runs inside another application. They allow you to record and automate procedures that take many steps, and repeat them with a keystroke or the click of a button. Excel lets you record macros, but it also lets you create new macros, or edit recorded ones, using a macro language called VBA (VisualBASIC for Applications) which is a subset of the VisualBASIC programming language. Recording a Macro Creating a macro in Excel is quite simple - you can just do manually what you want your macro to do, and record the steps. To start recording, select Macro from the Tools menu, and the choose Record new macro... - the dialogue on the right will appear. Enter a name for your macro (don't be lazy - it will make things much easier later on if you give your macro a proper name) and click OK. A stop button will probably appear, and Excel starts recording your steps. The next step is to do for yourself what you want your macro to do. When you've done that, click the stop button. If the stop button hasn't appeared, you can stop the recording using the Tools menu (select Macro, and then Stop Recording). When you record a macro, there are a few things you should bear in mind: When you start recording, make sure that you are in the same place (i.e. on the same sheet) as the user will be when the macro is executed, i.e. on the sheet where the button is going to be. If you're going to run the macro from two different sheets, start recording on the sheet that's "furthest" from the sheet where the first step takes place - e.g. if you're going to run the macro from sheet 1 and sheet 2, and the first step in the macro does something to sheet 2, then start recording on sheet 1; this will ensure that the first thing the macro does is go to sheet 2. Don't just think about what the macro is going to do - tidy up after yourself! Think about what the user is most likely to be doing next, and help him/her out by changing to the correct sheet and clicking in the correct cell. If your macro does some copying and pasting, you might also want to press Esc before you stop recording, to remove the border from the copied range. If you're going to protect your sheet, remember that the first thing your macro will need to do is unprotect the sheet, and the last thing will be to protect the sheet again. When you record a macro, Excel converts your actions into commands from the VBA programming language. You can have a look at these commands and edit them to do exactly what you want (see the illustration at the top of the next page). For example, if you record a macro to Save As, then your macro will look something like this (the underscore characters indicate that the command continues on the next line).INCLUDEPICTURE \d "save_as.gif" To see what your macro looks like, select Macro from the Tools menu, and then choose Macros.... Highlight the macro you want to have a look at, and then click the Edit button.  Adding a Button You may have noticed from the Record Macro dialogue that you can assign a keystroke to your macro. It's more user friendly, though, to add a button to your worksheet so that you can click to execute the macro. You can add buttons from the Forms toolbar. To view the toolbar, click the right mouse button on the Excel menu bar (i.e. at the top), and select Forms. The Button button is the second one down on the right. Click the Button button and draw the button onto the worksheet. You can move a button at a later time, or change the text, by clicking on it with the right mouse button. After you've drawn on your button, the Assign Macro dialogue will appear - select your macro and click OK. Editing Macros There are some actions you can't record - e.g. closing down Excel, choosing things such as filenames, or reacting to user input. For these, you will need to create or edit a macro yourself using the VBA programming language - I will describe how to do these three things now. In order to minimise the number of commands you need to know (remember that programmed solutions aren't in the nature of the A level ICT course!), you can often record most of what you want your macro to do, and then amend the code slightly afterwards. When you're editing a macro, the macro editor does try to help you out a bit. Macros use the same system of objects, methods and properties as does VisualBASIC. When you type a valid object name followed by a full-stop, a list of valid properties and methods for that object will appear. This also helps you out by telling you that you've got the object name right! Also, when you're entering a command that takes many arguments (e.g. msgbox(), discussed below), a tool-tip appears to remind you of the options - the ones in square brackets are optional. Referring to Cell Contents INCLUDEPICTURE \d "editing.gif"We'll start with the save_as macro you recorded above. That macro will use the same filename every time you run it. Suppose, for example, that you want to allow the user to enter a filename into a cell, B2. The VBA property that contains the contents of cell B2 is range("B2").Value (there are other ways of finding the contents of a cell, but this works as well as any). All you need to do to amend your save_as macro to replace the "C:\My Documents\Book1.xls" with range("B2").Value. Next time you run your macro, the contents of the cell B2 will be used as the filename. While a command like range(a1).value is the easiest way to refer to the contents of a cell, you can also use the command activesheet.cells(row,column).value, where row and column are numbers i.e. range(c5).value is equivalent to activesheet.cells(5,3).value. While this might seem more difficult, it means that you can select cells using either random numbers or the results of a calculation. Dates in Excel In the example, I've put a formula (=INT(NOW()*1000000) in B2 so that each time the spreadsheet is saved, it has a unique name. The =now() function returns the current date and time, but it's useful to remember that dates are stored internally as the number of days since 1/1/1900 - this means, for example, that you can go back or forward a week by simply subtracting 7 from, or adding 7 to a date. You could also work out what day of the week a given date is on by subtracting a date with a known weekday, and using the =mod() function (e.g. 20/10/2002 is a Sunday, so if 20/10/2002 was in A1, =mod(now()-A1,7) would give you the day of the week as a number you could then use =vlookup() to give it a name). Creating a New Macro You can start a menu from scratch by selecting Macro from the Tools menu, and then choosing Macros.... If you enter a valid name in the Macro Name: field, the Create button will become enabled, and you can click it to start a new macro. If you want to create a macro that closes Excel, for example, simply enter application.quit as shown in the example below. You can then add a button in the usual way, and use the macro. Note that if you've changed your spreadsheet, then running your macro will do the same as trying to close Excel using the menu, Alt F4 or the Close button - i.e. you will be asked if you want to save your file. If you want to have more control over the user interface and stop this happening, you can use the msgbox() and if commands. Using msgbox() and if The msgbox() command can be used to display messages for the user. If you want to use it in this way, you just need to give it a string as an argument, e.g. msgbox("Hello!"). Note that you do not have to use a fixed value you can use a value from a cell, or the result of a calculation. You can also change the type (i.e. the types of buttons that appear below the message) of the message, and use the command to record the user's response. For example, you can have Yes, No, Cancel, etc. buttons on your message, and check which one the user clicked. When you use msgbox() in this way, it always returns a value, so you need to use it with a variable or another function that takes a value, such as if. It's probably easiest to use an example - you could use if and msgbox() to ask the user whether he/she wants to save before closing Excel: Note that there is also an inputbox() command that works in a similar way and allows the user to enter a number or some text. INCLUDEPICTURE \d "msgbox.gif"What you can see above is the finished macro. When the close_down macro is executed, the use is asked "Do you want to save?" ("Save" is the window title for the message). If Yes is clicked, the spreadsheet is saved using the save_as macro. Notice that you can run another macro by simply including its name in your macro. If you try to close Excel without saving, it will prompt you to save - the else case tidies this up so that the user isn't asked again. ThisWorkbook has a property called Saved, which indicates whether the spreadsheet has been saved since the last change was made. If the user wants to abandon the changes, we can "trick" Excel into thinking that there are no changes to be saved (in which case it won't ask) by setting the value of Saved to True. The final step is to close Excel, using application.quit, which we want to do regardless of which button the user clicks. Updating the Screen If there is a lot of steps in your macro, or it changes between sheets, then there can be a lot of flickering going on while your macro is running. There is a property in Excels VBA called application.screenupdating, which takes the values true or false. To stop the screen flickering while your macro is running, set application.screenupdating = false at the top of your macro, and then set application.screenupdating = true again at the bottom if you dont set the value back to true, then you wont be able to see what your macro has done! Events While the most common way to start a macro will be to click a button that you have added to the worksheet, you can also trigger a macro using other events. If you press Alt + F11 to view the Visual Basic editor, you can select these other events. The tree at the top-left shows all the objects in Excel if you double-click one of the branches, the associated code window will appear in the right-hand pane. At the top of the code window, there are two combo boxes the one on the left normally defaults to (General) this is used for things like variable and function declarations, which are beyond the scope of A level ICT. If you select the other option (e.g. Workbook in the example shown here), the right-hand combo box will be filled with all the events that can occur within that object i.e. whether it can be clicked, double-clicked, opened, closed, etc. When you choose one of the event types, a new subroutine (i.e. macro) will be created, and this subroutine will be associated with the event you selected e.g. if you selected Activate for a Workbook object, then the macro will be run whenever someone selects that sheet. You can then enter any commands that you want to be associated with this action. Remember that you can run any other macro, e.g. one that you have already recorded, just by entering its name see the ifthenelse example above. Web Links Some of the examples from this booklet can be downloaded from the Excel and Macro pages in the MS Office section of www.advanced-ict.info.  Advanced ICT in a Nutshell Guide to Excel Advanced Features Page  PAGE 2  &'*89BC  ! " ; < = > ? N O h i j k l { | jghhUjhhUjqhhUjhhUj{hhUjhhUjhhU hh5CJ8 hhCJ hhCJ8hhjhhCJ8UmHnHu8&'*9B @ m  D r  2 a $a$$a$! 9r xyy      % & ? @ A B C S T m n o p q   - j?hhUjhhUjIhhUjhhUjShhUjhhUj]hhUjhhUjhhUhh9- . / 0 1 B C \ ] ^ _ ` p q  ' ( ) + , C D ] ^ _ a b w x j hhUj hhUj! hhUjhhUj+hhUjhhUj5hhUhhjhhUjhhU8 - c anr- Y#d#$$xxa$x 9?DJ\b"UZ\`ejHM-.KY -0 A M T o y !jhhUmHnHu hh6 hh5CJj hhUhhjhhUj hhUM!!"""d#e###$$$$$%%%%%K(Z(w)~)E*O*{**+ +M+\+++,,z,,,, ------------?.K.../ /,/-/@/A////0001123333333<4F4i4s46=6T6^6?7H77788V9Y9y9jhhUhh hh6\$'&'\(p(L)*K,c-x.00L1y111333d5?6r66V77y9j:< $ & Fxxa$$xxa$y9z999<<<<<<<<==d=k=z============???????@+@;@@@]@a@c@m@}@@@@@@@@@@@@@A;ANA]AaAcAuAAAAAAAAAAABBB*B9BPBRB_BsBwBBBBBBBBBC hh5 hh6hhjhhCJU[<>,>??@@@@+@b@gX 9r <<$Ifkd $$Ifl4F -' & 0    4 la <<$If$xxa$ b@@@@@@pff <<$Ifkd3 $$IflF -' & 0    4 la 9r <<$If@@A;AbApff <<$If 9r <<$Ifkd $$IflF -' & 0    4 labAcAuAAApff <<$If 9r <<$Ifkd $$IflF -' & 0    4 laAAABQBpff <<$If 9r <<$Ifkd+$$IflF -' & 0    4 laQBRB_BBBpff <<$If 9r <<$Ifkd$$IflF -' & 0    4 laBBBC,Cpff <<$If 9r <<$Ifkd{$$IflF -' & 0    4 laCC)C+C-C8CfCjCkCsCCCCCCCCCCCDDFFEG[GdGjGGGHHHIIIJJJmKsKKKKKNNNNNNNNOORPVPfPjPPPPPPPTTVV"W#WCWEWpWuWWWWWWWWWWWjhhUmHnHujhhUjhhUhh hh6T,C-C8CkCCpff <<$If 9r <<$Ifkd#$$IflF -' & 0    4 laCCCC Dpff <<$If 9r <<$Ifkd$$IflF -' & 0    4 la D D DDBEFFlHIJJLWL}{rr{rrrig$xa$$xxa$kds$$IflF -' & 0    4 la WLNNOP%QdSTUFWWW XYZZ\_)_ac)cefgh$xa$ $ & Fxxa$$xxa$W(X4XXXnYsYyYYYY}ZZZZ^^)_*_J_L_a_h_U`f````aa0aaab(b0b3b8b>bRbcbubbMc_ccc4e:e~eeeeff7fxxx y yyyyyyy 9r  r & r & yyhh. A!"#$%+0P. A!"#$%8nV8T(PNG  IHDRgAMA IDATxk%UysDDG39Oy~/Ԡk[nv\HD窮4IWE,b&K݁!I2'ś+?OD?~~e &q#I?yr >qu}uK3q}":+7?#~?#Z:"XsC^QǽE%6nzlJD#Jk['.~(z}qW]T\dW7/E^- 9kQ㓣p!'ݥ8b!/^k61Q܍< ?8g{qt<ÛMo[OD]S9|_-.DSUDf?=?~%яLD8jw~%^ص]/Cx'n<`02wU:ūyav'~m@p9Sk/\qq=NtyEDC^ k3hΓlŝDG/Ͻ #^'2wy|CDܵ/?s srE:|O'}L6yI7,i1N˙6+h,X

}":"^Ԏ #w- 9`rNΝ-<ׯ8/^8( ߿[o˔4{%{%<_nGmcr>x) ΋A'o.$9Twycq")a)|G+.x_q X뺖| "/Z׉]ъ._q<Ӓ0ѓtU4]v4~շfs-SSSNi}Ds3šى跏XmF1׼L}EB^4wׅO~@:M-bvԴ. 3/InpR7V>M]H0mћ׿2w&}c尋婫Ǿqo4G {MuHO_^xx^6ts&fO?4ӮX9vω'ﺀ9{v\iU]ّ [՗nZ>33qu'"q8VjWY(ȗU ^R]\Gә/t[ey|[2:#":Wdvp 8Va)ki6v|L˦?Q'-Bg9JĦ F0OlXUX?P|dlz^fJQncwYÕ126126}NSfQIŦ?r@fS)&(*9)HإۛY Z*E{}Km}M1 C|/$&|Q?A*m)zxLϩJT|P(hfr%_8r㳝un,Ww*TZh[P@uPOR+jk܌6t,9K4U^m7l1ԇZnMm.ִ}1sD3SCb)"m)TLtt-_Gej^g_9#45ۋR홪)&L.h.Ѡ[} NXA.GyvS}hxW mkU JʕN 2[ R_.r9D6=1\%Ms~KSn)4Izyꠖ"W"t]=u.~r/bhanvdlEO;|n툡R(:-P(o߱V e8&>>M[lA~P (LZ _GRMyW?}A'[5oSbƦwvP7m{w~u2^z -vU.z=\ncO"WuJ.tpAFcF&F&wʬc/x[j ؘͦvF&b_QE%N9봧Bؚbb~p(*׋% Ov^|G j: !g|0:%UPcld47I(jID s$QqXJLķ.H vO&I)(} Pr֬^Q;}GL.9/Mv:~tFs9J^eL#t=I()X& aD% }.8:>8~_Yr#c< ܉awD@IJfF&nw1Q„<Uu!ganݮfUن7Q"P EWt &gzնIbJ˵dKd_L(^fff7 f(8nE!TqlyOb":E.EQV0= l~=Yj?ÑZ -AS+c-hk FOFrtL?;ŶbK761![ ,͎G|S(t >3Q(I♙~tIi#P}/_~w՝#cuID$433355n("ﳛ8|kcᾭW-}t|'U;DGw#r␠h\FszE(Z N"A28E$䢜w:S-rNw ڷmSb/jQ㘈)"^xiЖA:5~F8vrZ^hh'QвfH1T&\Jfo߱Szw .O)^vmJ\uK_:r~qxO'oqXh2++GߒZУeBdB96[s^KWk ,~CbcBz1-zT_.^".zauVc{iy[wQ$']~jjJkq]9B_.K9+JU|JFu $_˳ {HMVqUTB'_Iy[)k/ Z.f.xf>!'B3/{TI(u:0VR؞~y,T!W2A_-cR!P9&CyM2|Z{`^~xT;lBNn.v aiѷLPQT4PѿBO,MaJT~3u.䢅kfUzuhr twT29B>TTMM V(+(8i6-+)25epsSUs ]%\|c; 05Y`pBmi!hqzz4q)qMlۺEJTI"cg Ah03 7JJCbL>rMkU(FXCzAUʞ9;bL6k[֘t>8kUW: |Ф\—@h2ЩЎeVepY} 80,OToR9D!sǝYжry'MDTn84 ?-̤8WR Zʷ@qZj,ڭ9ZOEO mnntbzz*DV-o6yEX h9ec@G&3^yP[6vK,Ԑ<ݾcge/{)4@%֬^926g~wض9#/?Yiy!_}Σo8r@$EG]ǚ-Y,n6I,+,B & ye:!T-8&nkE/;.Uq\KT%HV$I 0 ]+F_"t%XOտ^[%(;M׫ -C%vr҉n,E96"~yCUew;^-&rmCE΢Ӣd_W|G>[oժ0rw J_YN/˜r<==k.l6o)(P!~9#c3;Aq{û|g9 @_/oq'DqT2}EDp"ȓbḅO%!?zr\3~r|8a^QP&)ZV]V_2- yz1ٚٙ}}iC|T0c&.0!\ ENu+&y hzaqQL1N޽Nwmx|H:S#{Ŷrnvqs㧖 ϼwǶ&9?C{8?lRsN6xlߛ JgArs!d9-9Lȿ~L?DZxp7r(YXy+O8usx1e$m2?3IKBn{?|#OJ51FD=Ǟ>-I8~oa{ <'Oa*~ġR~C+~9hLS^dlcgB~}Erұ|o?w>]}e/g.!u@t`p7hLöAH3$!|r}|K:I7v]OU}@}b9h+y8ɇ8)I(vq$sçriJP!`7i((-GX:PX8Qt"yB9rp·v(=|7k>>M|LSWvOHO>RlchfC3zcǾoSG&MKcOC96sGO=&76'=rL6S7"fCūe@˥TŲBw;ͅ[rΖRuKlԛ~7b*.C~{ǰfvuX:StǺ iR~6MJgcٍKS!m`xa:VEvǟ9Ck;Xn.*g-Zv&}[طS3bzo Y YVJd-nl9rntuF&<5s_E%;sї5Wf׮ۘo6xپ ,@i;I§0ٖ>}%E-Bl9U=QDbc:-OՈKSZER,SBK~DªUvyagyk5!i0vĆ^ "Jv< QˏX`ҫ r唁,iFxb`aoj#GU#^GRp=h9!n:E}K+bPKph1(T}em{Zj kNyh] 9hD-p)egnAz`'J6I}WJ+p{g<==};JaG\rzn+niEfff:DQq&]j B#tk;ZP;۷Y8iIEx[:~b&(bn͹!д8nyXFyr#qP4x_Υԟo1k* ;/&N)uYDtǿ(&O~)W0[ܾt"ئ{ŠgN syH 릈xa -eg{E~Q]'L'IȮlmf3$o߾+u՗nN(!"(y碛uyyUǏ_IDo?R?|P9*mι{?MDv_[GDkn ٯGDѣw%ϼɱ2s裗n/]J//ܰnG2Hе)<w8ޛg^}W][kT;CDtƯj"K+7Ͼ[l/.>I͹mq|lg zןw̅k^\jhRܷo[/ ̦4|=Jć)ghw_L%ϳ8?~pqt]Dѿ/\o_h \O_Ö'On!N\Ly)["gq^ODT|ć>u?xO3o9Dt"'; :[*>ND_rw~揝z_{G贵SqGVn8>xE__o^CDg|k/;|?Qtۥ+o}g[L?QD_̉,M>^+"/WYP<3IS*]Qq͛}ar!c;>by?31r߲Tq!|g܅VB?ND'slkGn~Q2Ło<#7?s7b;6pY_|ඏOطU7}mVq g~3X'{m۫ǾϮ}n"e|w*Ǘev𷳯E'W=tj{7}8o=X"G0(>;apʳP%3wqVzMZyw˖*K73!(~ZiG֩<^eADygxv%a x%7BD+bFhW3k|Nڡ_7bc57p#l~},BD'mG<U>؃>^) _Ubn?嫷dW?a?[{r`KS!5^~^Pˆq1CzW\}UV219c"X=\+WӃ}reSÖYQ>u{xiUMI$q:imS43Np\0gx,Wv[ZMBjZ//hYδ{rpq3ӟhqg1LF )۔S[&q抚kyvaJ۵m(YH]cQ?(Qj[{/:%Rg~jB]JoNAMضuK6e_P.þ'SSI8Vյ*+[F?fo*׬cY^M0j^YTP^~u3/[-eA*Eiybm^(&-є!l+_-8aUQ6-8. %m+VB֊rÀԧ>E/LD?(%Q}Sr1ŗqj_g6,ezKx5DsC-<=쳓= Ld @i_AE[C%G}x "zy ;dݝwɎb7mڴi&^3_k͔h [\ؘm8q4/o9uib_MEQ4<+V 6uY7ok7l6l;<̹9"'38O|b}~oo֯_f)BkO s'Dкps,h_Η)Uw(c\"pm)(/V!^z)vmDtYgw]";8Qg|[nggg[odRfao^j 3ۤ /'&Twh"z5{#  w#Jgլ;ߚ{ǸW^y#'?y駛ًPm|(` S6#rh_nR67_S*,0kh}~6gqK*+eWXUV%I/|a}1Y!ZεD}Q4/o)_qz )4/O%_P\a<`\f5KJ"AWGޥ:@өzT9Bt6Eۅu`=rj/[r_m)&y8@ pA YncUlZ}]NSX]rLqlۺ񕫥VNAYBKy$LVCN<  u4,& r/8:vFm @/fz69Whh f|1ݭ%פZsYK333ꌵ]a dBѶc_j徨^{}ԇBEk^kLo;Emr=Mk9 tBcvMʜ,!ފIh ]#~%%{dL=&77~VX4-F]ߘҫz90!M.jKKlS}Qk\K 7:~jV|dV4)!韻Bg\3o;.L]PeBk9JM>jo gv{tsrZf*k]gB9ŏnoT7)]!MX3l2fsrZ *k81nI=|N*/VA7Zk9◃S~v+=V%: Pk-Gr0 p$!24]*6v"brBDV=_ Z>M7i.:[K]}Mޥ\[O݂ko2,QlqMX#P!?Ğݎ(L΁r/$fJW{},OHf1QӞn7EM,uU[7/.|<;r//,r.>(Wrq6<# X=$IfK;DDZ|' Sm4f]ˈ!+He>:r)xx 4 kg~9ƴh7o>y/_4~ehw8 Br_T_=s^Sᚃ!G,ߪ /ܤR#=kVZ־Z˛\.R3 -V9a~9bB^8cgj͔bVEJ8v햅]66|n_ðpaرpqUQk-G^nc {5h_N+qc* i 'N (/Zk9ܑ1GT^2y~yUZ48WS#DKSq!-6 Uўr %ݓ+Pawz3Ӓ"lrZ*j.l\%~Ok_.&оWQwz޼bR򪨵IBIt(b$5gv9Y:hP:>%o*5UQk-w\ $DzE~jj*PMw,Sj%E2Zm1$Nb.gg]sUQoKyEhL-wG',KQ% G)z&MIhMO!}rxԗov#_^ (()E8dMB>r$R6@#dD{tG~5~yU4/O_ܼ̀^U- mòRD%ɥ<2h7SD" Q\RrF˫~9%8N<㤩6-SUS,Rhk*`o.*0==tJ Yq _ƞ:˱ԜYeU"Vj+n`+z:biI N\jG/_z%WDy\+l2M7T]Pk4~9wŊvs1Όث 2I"Zԟ6v&\,*})jbSⅶfg󸟂:4/͎O2'94 rQT]J-JM Y^5h&OAL BMC+6j݂_puYww˷>I9h(`VQk-f[y0RS|^3 KAM\/& p.XH 狶d>u907['|pLL,f*b~E1 Q- tʹYYR/`}sMAqT\ZRZʐz ZD*xqt֬ ѥT+x8iRR58uMV@\ x1==]ușIs@ _j9\AkhVQ;-.N9SAׁ Z^AXFAq,}sD{3r% |)vNZ46v dn~j:m떪 ط]v_P^u 8bdl%[+&A9q0 hЁoV' -~Z[P4` YjRЉ(\PkuTm!'-զvq})z/lE+~z⤹ؤA 70 /Z.jB9qT.Ӵ BH)ҬhM5 {@n ehGZMyjk9 8ȅ-vԷd&}@5KYmS,^My%7Of - ks1]\ RMvRIZr:[]-7:>.xhd,L41 ױoLPO<'撲07+.qZIB;9cҽ(_Y!ʤ9iU 3 (H~i=N֦=eߊIs08i9."(U~ a'LTW[bfkٴMjӂyi[hM$6hR(1ͪy+l׼$L:imhi]RM 8i$BR[iߒǒ+RS/(TiR68iZҲ%\&6ߊiz04@lhmZT 1IDATYb ,6-Fp6- 7¿x˷& W-"⤥4ef~nRMxn/υ\'MkSײ:[X<5Z$F`o<}Mv&턝;h"r\-@iMT]vUbm[T] @VmUZf5W]uEZ;͈y 6vѼM!R P#5}^vmT#`W O%ԣwNMMU]׮X\M(E+Pg/L8zE訨a!b`*ZAҴ,۰ 0- #K0/;5H!h,xc7QK q"JD#p8.Ri8f) 5+0j/_uvDͮįܺy4)=Ѵh%-_ޤo06v .Mq/P7ݼF;7uuRS5Wm@I˹S`Bw13OWs X(Z#4J):Lk'IPu}&rEf\Q".X.CWLBhG5.pJaSwLMv;t{{A0\;]&!/><;AK޶=s|T2շfDr9Fǟ7݂ԏe n89l@pԱi.lhǹPǡ+S1z `x˥}nک9q.갔]FXb\׊)nE:`_9qZM{f<B^ Z5 Z~m[B=jLUȟ8c) 3Р|ֆ]QW2t-oeHo-333 ~9'J^dEw5:ձD0<@ˇ/d,,v#ŇRT@;Ўwswe1MekRh`DӁv[rŝc:RCW]%=ŜIvdNZΗ]2{8yҧH=;T뜴D|̳dإl2CC6ѭmd:[;.nln5 0:nϰE,V y.&R?SR3N!AMy}Qr. @}Юm^Mjyp<}O sdh̺o`AۘNXG1(~ז-H2 b:q !/opn5@|-9wTdAd: !/6V6ʓ Zu(HXwzI8Q ZAc$h|/\OA|765dBK]aєESR8P[,M\U#&gNj| "uvedejUX<y/K}%/R ?bAS*~y0X|W@80U\+xJ,D)EXjR1Ouc0_ugM:d^`y)\0ƳFg~fA3o!'x& _ZO]$`HAKᆃzH>@+O ~2_h6X #cmR\ek9^pؾcg5Qk#k_2AZ˦Z*(]\{N}{~dt|li5:[Eg@<%5<͢@CogB;4MU5Yjr _vUY]*DZE gqvK;9mZ[F&vV]Ɛ7b:h1/e0yvbNZ^;׸,Xz+pm4PkZV/S.SR\ɏeI}'Z΋4XT((9vh  ȑ * ǫVdP7hD ~2_^4v07+9< y jtU(@A L!)\OZMNB /W55 yQm|@hͷЀʄ'h喨RcK1LE,E_;#kV̫&D˵2iI1˰jYs,OrįT] Z3Ĕ*jr؄6:δ"3%|@bm ֮wuؓ!n {܆Ei* 7tMߍ- tZ_R^m#m ?69@/[:V CfӖe d.KW_ViiMG3uxcmF!u <~FMO%#}_Ψ+XU 260Eh9 rq-Fcۊs&a-_>@+Ov{=„cs.pʽ@e}_Fbv1'<]e[bl h9|)H+cmrZr`y s}Ã[l)pʽp3VWY֟̚)S;ǂS2?Ŷ9$<}c;Y4UH{3i?`I+A-r{Ʈ&Cr۰ӹ/1=x][/tӁt;˹A_5~ԩlm:JJ=Vl2khu<_%Ҁ_kn̬rjix2_&<~yb j O7rcղ|- V rh79/"HEWrh79zz5tK~9/'n|/@49hyA9µ%ڍkr1n肛"κHG51_jarh7Xõ/v-o? ~r ڢ07[~METg: aԣ,1|)~*rh:Z }f smWQ}:B-/W圡&d!wK)BwӒCs1N؟-,5m)vYͣ m.Bp5B5~[,5Gۍ1+nc]Z[=ә%Ponq5*@-/Zb!!~D+Ov7*@AeaLݤh['oV춭[iy-ætR;h6r;+h"Uu`@1y PnpC#&h6!", 4T] t1,IENDB`F5}k˟.8xt(<JFIFHH ,Photoshop 3.08BIMxՌ8BIMxHH(FG(HH(d'`8BIMHH8BIM x8BIM8BIM 8BIM' 8BIMH/fflff/ff2Z5-8BIMp8BIM@@8BIM8BIM JpbJFIFHHAdobed            pJ"?   3!1AQa"q2B#$Rb34rC%Scs5&DTdE£t6UeuF'Vfv7GWgw5!1AQaq"2B#R3$brCScs4%&5DTdEU6teuFVfv'7GWgw ?TI%)$IMn2vV10/s?t/<(+YvN-Z@9'AIUBX6@eW_ҾVO}I$I$JTQ{ƗKJd.Z>gK,ز3:UMXpiۑ՟?goղ>ՓVJ=7Nӕ2.o;nV{=?;zrl~("ZO#AW5YH:[1},]UUMm6!` hZ֩c6L~i8Ƞ# I$ԒI$G9is hN_|bSq_*_M[?3鿣u,}TL]1ūjw)\)~?q)=]o O}>v ?Ϭi]ڮh}Om<98}\9'q?j+ōv1F//IcCIjK T ?cZCfh}.gM~icԋGfI$aBH:W9yPj'wyV{F6}Wsa"7Xp䳌9ApI%CZd˥߼~~JFcI$m?FʲX&$;`I>AmPmG2 0Ӭ|vXK{ygW:Bckd1tXz~j1AOkZ|?uWu+Kc<5xU9̍C=EByD("yƼniq??An;{qKh}cǹA\wt|" OFs⼸FYCf'ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)KmAdobed@         s!1AQa"q2B#R3b$r%C4Scs5D'6Tdt& EFVU(eufv7GWgw8HXhx)9IYiy*:JZjzm!1AQa"q2#BRbr3$4CS%cs5DT &6E'dtU7()󄔤euFVfvGWgw8HXhx9IYiy*:JZjz ?*UثWb]v*UثF]ϔ`FVld0yXwP+Wb]v*UثW*UثWb]v*Uث?T6Wg.9r}D2wŎmO3bUثWb]v**UثWb]v*Uث¿8 ǜ+TCJrsVh $OGUjQ;SBHZ:ܺO4E~N_C#*R`Bzs')}E5w^UثWb]v*U*UثWbZ;nM|UyZagS FkZZqs;9ty2Hx<55{ZZ㵾c7vdzogvT4n^3YS' 7ΩUثWb]v*Uث*UثWb7PZD\85,ƙ A [?3<,`Z||*}fsZNΈcs?3PYL,~pUh{9eNqF;F9xUM :8Rݼ/yVKTp(e"~\xE@:L6K%̦b]v*UثWb]*Uث^H5i>_优z هbNJgaO1ξn'CyJ']+=if]Vg ?OI-$l5'ߤɺ)h3NQB=6OCgC՛'. v*UثWb]v*Uث*Uث,c!2/֊"Oh=;;ˤ\Z(}_ެ4hnAq^^A .n]IUK |By3:#mzUپyyX"@(4x`^+6ieO3-ثWb]v*UثWb]v*Uث*eHǠ9{E1c.A1i.*qTn3{'꓍z!z tNثWb]v*UثWb]v*UثW܎#PI*6o4+11 ^ʇ<{?ю=RR$D@U®]v*UثWb]v*UثWb]v1ү&HœD&Q <>~Fj˨yUVjȲPNQLxz~7>EwO,UثWbj|qC{`J*UثWb]v*UثWbn4Fu!1q! _ y"%`$\yΗ(wzFխu> B2lY#"Q^K$ $bz&kb0ZB#YFh2L0yyZ`C#WqZݔ8vz]'eϹ|Iu3NsgQ?2FFCEy:dz-(9|YyV[PO޴9:|c>>B̯YrsSo+'%?fvKʼnٹښ|^]C~]dP D ES$b]v*UثWtd=*3gyklA W$M08~yMi2JX;SW{$ߪBXٸƆ|?E0:_)w4]Z%9GXˑy{bM77S:Pԓ3f()yy\2gq)4a=U29C{]cgB$fv4ˮ\ Y o|]&\|ɨ5̀qaWb]v**r y*Xu7j1sw:O󏕤fx`+}epd߇PFa_VYTMD|"ںK6pWOr4 ǒ7龻\ҰN͖52~oS .(YfMָx#|cڄ.Y( z,@{RNqڵ/.A!KIO]u,$zupBQI=8xˆY;dĘm&Jo]&+G0c6*)\$bI^&̘IÄB2 m1HcZ-x{gv]=4t<ޥe}o[%իAU? c%$V\U*U/ִ}kOU$r#[qd87yKEjS}82:TJvQvKB,8Ի:HxYQL+7 HFѧ'צ< uMQ*EUYel U7 i,Rb=ͨȌڌQ84>V#zA1$us>vqea[Aw9-1"@ͽ{r (zG723i?DqA|vF1Kvć syWb*Uh+~ٺH2PE o{C⇋}]de^X2JUFdnKm1H ;z>>FdvxAv3QNzm1x)I].)zf,od*'z䄑J.rblHTYel QOoɻTPh:S2ǔy]N3cLm+ߦfN4]7ZotWLIԧW,zurFFnlXт9j3͛ mzE4[xMYA?z0͆3y {GSK*Ud`U=4o0䥌dQ4idoݞRC<6Zl_g#hX> [DpU&?IlOhF?gdk7_sŴx+1f !&=; bJM+1d B1M FIUY@'| '9.2dmCYƋ_FeG;I).&Vo2cFŨeGR,J5';W,: ,{R9fal峰njDn[}.+g?AXd_jFH =sI[J/x^òZ`T2TaZ@LXd&/W I`5=-YˈD~쯀3,JyHF^ʈ"(66`=sD򵞝=+f"Pelհ+Wb_*UثWbZ"+$$SD(\d`bMb/(c|? |E]!SȜN,k }6\,RL:8 K$b6]v**UثWb]h8POxcj *;`UW R *UثWb*UثWb]v*Uث[bmlP-Uvv*UثWbn} Gez9e|OPNG  IHDR'<gAMAPLTE!k)k)k)s1s1s1{9{!9{!9!B)B)J)J1J1R1R9R9Z9ZBBBBZBcJcJcJkRkRsRsZsZ{Z{c{cckkksss{{΄΄ք֌֌ތޔޔ甽眽] IDATx 4a7 -8U$؎/S'ٝ\MI]jrFyRUy'(={vg\Wޕq|hǚO|/ _j|M˷߅xxx>Q~l)۷?bko.Ks_C <'9x"HhK!Ov p<&//_ D&D!ZG <َ'$ReM7u<"O'xE''2 wwB͞˹'m0\Sz8N'Gg'J }bmYtÉ'Ɠ{'<ٓ'≪t8X3xMO~q}O'^ql0' ,FQ'z[? ;y02OFuIq'N ߉z 4WA1}Y`ߘnXS1ZJܓzRVs9Ldn{bx/;T6.'AOrE>fMO(zړɣt͓xBx@#=33ѓfƠIOzKœ9B<ޔIS2ɹɦ2i'gyҸp&fu丞$덜' 'um.DƓ! E=Њ_<קa{xxxUCoXiTDؠ'KInDߋyD#v <)/jvl?t=ؓ~찖}`dxx2kH#{ kxN)<Ix2ғRcOJpo:$u^<)4Z RGlbl5Qp'< Ox8p<)Fp`T+^,IENDB`nOk$m PNG  IHDR$dVGgAMAPLTE111JJ)kk9{{JRZckss{ބbwDIDATxQS@@ᛍe, @v)2u7ESmz5$H$PHQFZ6mkT-FlH @"D $H$H @"D $FIc"$R=HcxZP$!5&irYHׯu"5l~b}RY1DX|WٓNsWp#*/$H$H LD $H$H @"D $H$H @U e>H#eҫ{EEE_H3{E);?_%^D6" iznڈ4ƋH  t&RH @"D $H$H @"D $H$H`_$H"D $H$PH/?S~GDI$DiD $H$Hd-骽#u$ {$ o=](}Ñg\ANhOlHIw~w[(V@*"@e#H @"D $H$HjGz/BVߙH @?v^ԑuIENDB`n%0$&z,PNG  IHDR'RgAMAPLTE999B99BBBJJJRRRccckkkssk{{{{{ƽƽ1j_ DIDATx w*$Mv{iZw'oD€h*s |a$X<Ԍ+.G$uA~ IE=u?}|=:hFBuKI -QLj@_XԭLA(Ѿ̅6jl&uqZBjQt^Ԇ{m-!PyJ:LmoצmlQ`| */j%MS[ƛyP[L=Hcj>fy\NjoPI^뱤P©_JH$>.Nj؃>(jPs_RSp@P[r%5AS:oB C1@өp 2NDʹ(|vP «A$ L^&5>'SW"3k84bSS+Y՛Y\{ 5E"p,tBd2iSJC_/Yb)zE?Iמ" s/= *ln!X_H@vR^arYTrSR`'Jɯ9?NK/XQTn!8m"zvrJ>V>& O!>tږ*&:#O~ùkpPz=E4rm+<87{:%Rj)~@>!?BݓˣUH7[B~2QI}O "UOo2=`Rv'"kTOyL[4Q2XN~oU6Qɳ\mm+fӳj> l/y޷Puw7;|~S_>weCnzJFӨ8ԦۈrkӽonG)QWS)yvWYQF~o{3S]y"lӌ\;]M%>iRu.껂m?}~8ɳݻC7>\RWPB=ueRQIkm^?{=pB5|q 1l:RYeۚH}{fÑxRfwe ш[ԔDz{7zFF/S?#ub3ZW3`u~ SF=-5s@jN֛enKNɔi`&MEiO)%fBuSG BV6ITa[%]NTEQg(=BׁS3jsXp*ӏ򬩲nOς^@!t*LATqO~騛TW /6W!Soſ2YE8N[A BGvk Kzefa:=2> ,/:8$-N-&S{/CG8Cp%P ծCPQf* D6uZg=Sh6A-0AݯX *Ѯƣ`*C>T xD}֠wqyfDj~rL3>^ۃ;zR+D%v3XfzcLQAШJTD]IjN6.KEWV-:O[j=B ՕhB~Ra10R_yci4j8|{+w IN oxJHE憉mF^9u2j57FݛNm>ޛI$#ImvUhsexWn%ƲtY%-QXڮN}2S\٘QŰ}^l^J/ӕ ~naXJB?|آ \,vDmL.kB](VYC]ٟ0cZN8=>e"ܦ~puPpelL >XÕC1r>\=вgeɠߵ TuXBJ QJQG@ ,ǞiѬ g !$ˤ%eוeI -HePCDP*e(PQ/K1PgR)CvRG;'E!JIENDB`nIB8?PNG  IHDRhgAMAPLTE!k999B99JJJRRRccckkkssk{{{{{ƽƽ\ -IDATx흋v('N]oڮ:Ysm]`ptc[g<{AE Y?[ٴɠbʸKh^@CH:0Ztr%?It+U !1 m@?/'g h7|Ǘ;AwxƗmrS\ kG~YyAE[/:\_ =s[]^),X6` K%x\itI5k+Wi[O?.CjV,=v%^(h0Ap<Iir4S4?-zQ ]pϷ5UU#O8Wx#}^&[^-zQ}gf'-9Nzd^/-Vp2JCsXPdp`jۖy@.GŔd{:hqwG/tnNϿקG0`Jh'Yau>i1yӇ^'LƹПK-!4z 렳V Opxߗ)lkVä[Ѯg{/E* OGLؠJ^C߾22Mr+m4ojg8D4 t6 H(4f:Ѡ}3t&* 7ZoYUOgp?>.;N@A?ÿ|4}3.zơ>: 76h"e٣W0R۵CVGWSY z) lR>fyf끶h %mˏ1ǯ),&d^ݑ'A hi+[8R[݀hf]X=ZcG Px53Z2*̣U~?hr#NƳ@,_Z&*f֑oLﲤs2Ac4C:=kp"_Ctu05[_tyux‘F~A_67ШHbfT_94d*Y_!]wZ:^ZϏtl4I<69@nVZ4u#:CK~kAй)LM@O<hߴ:h˻\+hL7߸{4b䗔zΐ.RmS#C^):6GLZ+iz4&{\G]*5uNlnA70sm CUOLje /h@]Ʀ&4h ^mhq&q4h@4f]`-)*֣;wKNZv/B:%l5Vu@gк`8U#i 5șC{YkKpId>uxMC`I{ />tJZou;j.d+|֜7M %ϖ :+AADh3_aى :I'嘦A? 3C[_79Nt7ׁ-C>꠭>xiGH3CCyehheHdA%P?ޑ-]ߚ)OkC#3]ftCGd'$W}Ķ_Ӷ-{d =Ud$V@ @ ]D7Zt(Qb.$Dw$VB}9dL!,­G ;^gh1dqѿq菆ρ BZ?aQ,3 滼boq&=AzSAL =" hmѮ6Rr>ϡ# 2,` wzBܮahؒ'K~nudG`duq5ed Pe PU5^:I䪡!0Rv x#KK KljGN%kjYv/|ƃT!!awWіh ; R?SzH84A[@>9(45h5z s?ء{?9sh+ N@f4ߙ9+ gƣV 2(sOA}f`ɐxtKVK^+K6l4B4PgW 1"0dI<:YP]2c'd:/@@KT>//f.#ZU#KK *:m8k47@#BdxO!Zh>< 3<!\t "ų |@>#b 9}~ .G3/a{ 3Ae Pe Pe Pe Pe Pe Pe Pe PC{ۄud P,_yɠO/W<LׂH?3OoMy@^ Bk;AL3_@Ո @3e P(qtIENDB`n͵]MQbI8 PNG  IHDRhV")gAMAPLTE= IDATxQ DM*ZIm6 AMh(r5PkRڈSV[9ʈXzF)Т9BSR\ mXd_@ զY"Gg4&[n Fԛ5;G#6vu}&ǁ[IENDB`nO 3"dalPNG  IHDRup-gAMAPLTE!k)k)k)s1s1s1{9{!9{!9!B)B)J)J1J1R1R9R9Z9ZBBBBZBcJcJcJkRkRsRsZsZ{Z{c{cckkksss{{΄΄ք֌֌ތޔޔ甽眽|wIDATx DF+!Y ΄D"pd}Uw_]xU3ԀꜩiAe; Xxg/<0>E='O9>|+׆ov|g ?^|իb^~s۷wǻwxׅ9t`,$-Y [HiuY Qfm{,Y&< &,/\Y2Yy}xn-w/S{:u‚.52 uЕ;,8}Yhdt/XH,v sZxx,he,Y* B.LXsW¬#vv) #HVCW#o[#ֹ]}ֆsg ΰ0cY [[8'HC`ak %" .X,h4  `AB^ OCGaeHߍ;(p9n*Dܯ)M.r vL_^G36ܩha5-4jǬ`#m~[~ŠlW,'mHZYؤJ2kLȶu^B*Yؽ,Lpg- .yMDž@. ~ e9Fn`s _lن|YM86F]$|E!it ɜ(4qUY*Y{]Ttbbqe! !z*ɮ#z3٪=ZRD$hĂ8qy9)PB'-.MxBф#'9ؚ 1un[u&bd0 .Y2l7㝵μlaR P<Նܘ  `AX,h4  `A[cyco w;lT4  `AX,h4  `AB ~)"A+B 1IENDB`nN,`ԃPNG  IHDRf+gAMAPLTE!k)k)k)s1s1s1{9{!9{!9!B)B)J)J1J1R1R9R9Z9ZBBBBZBcJJJJcJcJkRkRsRsZsZ{Z{c{cckkkkkksss{{{{{΄΄ք֌֌ތޔޔ甽眜便GjIDATx흋6N )f`.m/277C/9Gkx<^۲,{ɖXf@N%۞|7^|PQ)P~#ǏS~i?˞_ ~fO7Y>O?SWz WϿ 53{flC͌Q|n4+h&r"/S?hʚ63yͬ^3ksYZo43iufYB^Q3kG5։5Y9XQwf3hvD3nIӬ}44WYU ]fnFְ5YW՘^6tVN5YWg;oZZe`bZSW''3hv}t2Ӿ1-V\YoYF>QͼhMs3YoZAvּz>v3hv5zkf>owi}k.I\*.fܯf.MѬgZ4Fscj=yrfi[cRFQi^fY4]_@A3ZiF1ٍh+˚4˧ihdolw4 f*-Hhwټft @KLTBi}f^elr͊=!M7Ҡ4jA4`[Pf`K5;mS[\ÚY_hw.K͆=4+3t0ZA2C &3_ڇ;c^=fn{MffϿUz1yWϷ?fW捽k^_6Ay^ǥ;]h| nȘfm_|\]"TffwR_GY|x4RG۬iә}OpC864s9Zm ]"TfRe53ƿȒ}.n8*ufm_McF= ]f/ۀ卲Q]Ь6Oٛ/ ^eSoopХ*V-@{^j,5o^Z:sKxhF= ]-kKi=-WУ,k6TN@c2=]=Z9_3v'p |&M" ]*h6АP\*Ƽѳ5j_)!7qRMf@3:x k{&f@wK]%`=F lMh@>1f`PyN'{"K+˄7p`fV-h f=7Zu.~ތLGA՜JԿNn4/hκ8WP#S) fGcSZh2a&ĕfGdf'HZXoy:J,,4Oo 4 1aKx<"- L'.A3p(r?xX1Kp,~8 (̀ (іU\I؂E͠n (̀ (̀ (̀ (̀ (̀ (LuΫ^p\fl,EfU~*-߅7ƚU4/#*_2-RA$j壓o8fw4JUa&ĕ Iͮ55K*;IWUm*?ՕU5cMwڨJ+M׮Ϭn gY4 @3fU<7PPਚZhª]&u-;esɍGEg"SK3q,hn@َ1IU~}۞O.ͤ09 Q M/wc'Snsr%0_ %|):Ǿ5G<%q˺/&֧]q{7SJ3yQhؓC)¢(ճx3;oX<=2K'v)՗TڞuP38p=H\3rf*fOf9v__8dͬIC>Y`fI44^,Ya??ь}CDUR5KL2w[_B~YoF;l-W<|2QNl?G|<[j|ew㈚an@34 @34 @34 \Ò (̀ @34 @34 @34 @34 @34 @34 @34 @34 @34 @34 @34 @34 @34 @32LIz$7]ܪrfrCI2|,]-W> ,Bf,c左gKT>ѬV\t OSkB3r>Yrxe}4,+AgIJr/c Bt&71<2ɰKOvz%4((D;rx)SZ>H@efH3Qɑ׆*k6m#OzQB3İ3YYx@Aȱ?X*P9 4;X8> S'f,PP-<PLU6?={q:irlAn1` #_T4_sf$;^lframö+-jAMک;q`ItvID'5-%#A2~b{(oJ9|ɲɏ|i Q|yb]cQL cI).x fB~,Oyfb}f~1]?ti*V(HYrYh4#:('Mr1hzql~<$aXp~Cop1 kԆ}M8lJ㈦h:r M+zvs݊b)sѰy =۳S/gM_ދlia_UK(Eh49OJf@hf@hR% )fv;yV)-/Mhii+ڲ;=>rt|&M.u4˝dWqv*Ul@#~0Ɗ%r6|dY |2cP+,GȇW^|,m`yĆ*PWӿdz@z/ukwfVy`S.Ukh6˜dPP`[&ԹSXa\؆]Ǜu( v69Ua[gbi?-AC3:.LB'k.6hf/:Yoni=/+_>. lftQF3Ef6-@\ ɶfl4'Uy(4ht<AYwEeeL5V5jhf@hf@hf@hf@hf@<@35؀:XD3=f@D3=f@D3=f@D3=KY7)rgMXcG&p[,jX~J@F.9"m"4u~~ EVRji7I͖f:w*Lid; k<94ek&4bM~ -DS0K>v 큿 Z) 袙 m+Mg4fm3! @34 @3ohg<ˍ;tI~i=cBQZCG$t#Cv{Dj)ǐf&f=&if,e.D;F41iMju)flǤ7E7fmd43s41iMY&4oY~&bӬ6C4Ôb4cfSmuoNSf weE-k<740o[Vn6CTg5 :SYUbF$WfDf,322h=&)eul`^3H0̀f8k]uIENDB`n6˥J- ,PNG  IHDR>?0gAMAPLTE!kBBB wIDATx횁v e|#b JLvnagi ?hUAb!&|=kV=kx}#Nr8n!Aó7IJ[_Xo=e 7nx%#rGFMd[ 13t ]xjpI81D ;mX^֐ħޏӯcэAd s<Uхn~{ 9t]鉯 )qmb8cy>tzn |,9 r?mrXAyܴ{N/q9]hy~vL|5 TPO$~{<S^lj^ų6cuJۚ5T I{?v/mbHV??{܃wfU\'bի7թ:/ou7DB}"0lcWE93=u(sg0x wκgh\Gfz6 Yx-ng#a},'UL=n)AGB\wp 'B:XQqۇ {<}a{{Od4 &~Yg'cyN͇1wjX#_+gS8sWxǵ4"p5!nzBOGؿ#q:87~2qΓ XG>}x5ܲS/pRh+ xY u"HUDz(޳U9XwMY5o L|?9rQXwGΈv%ex?Șz*9Tg/p4qz{K_P3ϳ`)v>|CmfcG&ƙCF_`ñ­xWmV{5w+X . IENDB`n4Cyߠcx)~PNG  IHDRha֦.gAMAPLTE!k)k)k)s1s1s1{9{!9{!9!B)B)J)J1J1R1R9R9Z9ZBBBBZBcJJJJcJcJkRkRsRsZsZ{Z{c{cckkkkkksss{{{{{΄΄ք֌֌ތޔޔ甽眜便ޔy]IDATx흋8V=5RBX`'TA]vUtrgjo,#oɖun%۲ˑl@~MVe"L{ ?Z0૯#ϣ|m䗎?|COBW7mDo~H 巿gƿP8n_m(T ZVєHS %D9{RAh%KD:.EڊuL4#im=O4e*Z[ru5.%EzT4{Ekǝg+Z;n#/_/;ڿhzh3k\4DA*D'hDkl Ek k߿M+Z^:A+Z'53杋[ ׭kY\Zݬh}@3q[5W4v\n&…3վqF," jT4ύkf\K?#7U#Z_zJwzEml#/<]1#Z;҈֎Ѹa16E4 Z-%"ZsR뵽 D N[+hHaDEg=%hMѢUr݉h3-U|ihFb@wL4Wt񋁯Mi/5Ap{#и*ytJǏb/֜ST^}3U 6}Pc lz^~~i'þ1~|^?w5g)SJ^ |쫵Ɨ~Ҿ3}㋁gq1ƣg{ bМ;O*ZT%oodްy.։Ʈ ր66э:Umn8U=lo`*~aqxp&3(9hhE+U?pܨhpw/'`[F dA|<;h "@4PqlhE_Tr?ӻT TڕmfGbu]#t_4cvZ١"2_@bWtvb]ߥZ,nԽɡL+9UJ̋s@>H""bAZI~(7N:.TDIW팬U/S_ /b%Q2+zQ!ZpQ%ǽ@49X[4P%G6Kd48`@ (Bq/ ln 4h +0 \ "@4P@ (DEh "@4P@}el{цFf#4j47L<2!3+yLU9ga@\,px D44@ 4\׏ L'64DMh*>)*_tŞ|{s^a1ٚm#SF4zck*@(DEFX^#NDD4SU/q* Z-&~:hvgJlVhE4VhI]DkݿCVhM6ڈ_J*"ZUu׫isVi'@؈~x T'4cO1юoAf E#aE3D;hOד3MUoAcp&5u*DUg5 iGGmhB$VVij4?:;PCD[*]V..ղ2VG#Q@D[JfԖmnW'D;ԕ"Z-ϸ}hf,dD3|ўƌ٧&d@U0e#)ցVhs8EuӉvH Zі]w9i3Z?hKE۰Y ECD[#Z7L7?ޔLG;\3ofRjJD#"bZ?2z&|l@}羭RhDk**"pD[燋6ߌ?~:*ڤn?Fh[+cI~҈hEoHi/ }3:> 6C˥tE@D[Stf"1#U򗹁hEADFNxG_/= 9DÉdٕd"QtKhsLtR4RcD݊U&UT%̎ Ѫ mhrD4VD4VD4VDŢh %6klDD#?u' 4뤴h5EhktRVhO]QJ銶#U"6㣦HRu7D*D Z';>hth٩I4PM)b-;u&ZO擪"Z9-U&E˖$A֬{& ZmzD;=h[vd*~&!}ѶڿtdU׋wі&D+\n.g m3ZhLg^ 8X7ۊy=z¹D%?ut-Y#6UnJTc~}_®kemˢ3WF=69tn<3ƶfmBDD4*΍9-s8q* QE[GVGc騚$}c 1ͧS2]ޢ!CԤd̘*d|Ѫ'>όCd3Z?ټPSt @4~B?YF0O3 7`gһAckђ|ja6g-h"{о˕Uђ@ְIzͨ=hfhAz\T2?#hh|f&ţ;CI-e@d7O/~td䎏ﱑFv8"u4{ǝ>ѵ@U7l;:>NΟm*(!ڔM9*jqbe<A4=#i0mݬ:k`CDEi]7xúu4Wyhu֩0Qtm DOWenGDE4XG?&Fم-+h6c-,1 !Cth&2yFeUg.֊Vvb֎>pD:DFE+"D+"b f~ Zĩķ Z썪D#;ȢM{⣼aq3GDHO|mj+hu6̈dM{mP'W>DD4=lίtѶ):{ ځE3>Q3(jhy1S:E1UGqn@4w!QEsh&:5ꤩŀf婶w^A:DD/2H#gB"xGю':%;F4P7 "@4P@ (DEhkEK܎Wbd:?NYîfw"6fuDSS!>czʡMgS*?[U[)!վ>ucu_6C̍) ,#>tU. Pۈ;@Hetd衿~'b+J|*=5z-c;I>F B N;~hD Ks"rDpJ76Ds# H#W<A5oYt`&+EEmKhNt NQ|L ql!Ds+HeٗEfDiVOʜ݊ ]o)pu P:Zp<`.a @ (Dpc @ (>+CfT'mS&n0!$m\ ^1BHj@THږҧ?IEme< kde-jw:ԊJrߎTWv h*~I"r-X<)bC5g\g"vw3?ikr{D4pv oR @ (DE+ښ*gtE_3vk&,e*@l>gnX|g_e~&2sPH4($[X`[T⡪_["MP|ߠ^E=mc 6}gH>K/l~(#;d4ۖ>rr{#kQ~gorʭKr=Ή ҧȿi6Mޕ; lNuwaٔۮȇ.H>9ݗowIWe9 "".hZNfoX42'|"[T4vhX~T~lBhԑ.C*S/ E"ϐh#.3v|7RZڟ01_˵=r;6ԛ3C|يg$>9 {A@(?qiҕn$y߰T:>E;3*.5ʓU墁Zh J< "@4P[m~$u,mlo ahx{]o !s~[&~Țvyʷ۳[iy(#jt9[E~S D:pMZCa褌hd|f|P4~S 3'l,&Ic\o  -* J c@a*a{\)Qc$u"@4P@ (DEh "@4P<< Í -|A4D4PD4PD4PD4PD4PD4PD4Pu-, 6}7"Z<26MM beWds]rD;eeDRȢ=e a.q!J=2765?څ !Hs[X.CyϬ?Ɉ_N+q +#ӀhQA4.Y ȅ):{ E_GSb"@4P0V>#1C^g|O~!/<tNd%>yh"i n^7)ǰhʱh?^^sDciшx~[YaDRju)hMmǫ˻!Em &##ǎWM< DY~x{;hgu4D4"[2x"^-ZG<[RGU'^-qi<"Whx '=-6CR[T4<Eݕ]?@DW  74ݏB݈h# +-F dh"^?z?J]ktIIENDB`n$dtT1FݑPNG  IHDR>o-~gAMAPLTE!k)k)k)s1s1s1{9{!9{!9!B)B)J)J1J1R1R9R9Z9ZBBBBZBcJJJJcJcJkRkRsRsZsZ{Z{c{cckkkkkksss{{{{{΄΄ք֌֌ތޔޔ甽眜便Gj1IDATx흉u@$v9%$,TYbٙ,%JH_B@$HG@/[<b`Ͻ>[+ g O$<'=ӟ~y/ȯ2댿q8GƗ_~M~⫯ ~#%55נǘ}g>ᨎڠσՉ_e>|f}ON*/S,ں>ZcmEk=֢ϵ1^4>֞ZٙZ`0>?sM}{E1g>C;Kާ>B>Wӛ38Ts>}(;>}zocL; ;GoBg'D|F}\ &$U\UJ}Low^4? ޞ> hz}O }zwc Z1_O>9i\v_qc~Dž9}n26棏>|}ʝWAOE_v^e4>rȝW3ܵ>8đxjYbSV.kk|˪{ǟfa3Y:AyNx)|  }|%}I%p((yeT:{zaxJ3}.VLk?ZAAЧgj}j,d'c}91 O%޾7ߜ/W}j,{}:|w B%C{z/o!G}~4?lpJ>}`;[#pv}U3//yny!}:"!`Wr\a?q}Taj41;N>S~z~ߘ12pvZm`)65;}&n=CeEk~\GTaj4]Mq,gQQu-wZp#\ݰ9sx/56>]OR\ ѧ}jL[ g`j`:ܻ lW[cZm%X+5&`>yHvAS M;=@8/sٝsv9wNJil8O^L[368g C8 |]#qA)Ԛj9o5ҍzFwaMQ̪sJ E >HcH3C;CO'iflޠ'TnUZUEzEV-Ǖo!7DԚjm}5uu}) d ewx\(@PPk,}`&< 29Ay<6TA (@P>}@ t]|NP>]K!=6>%xs! _l,K7FlQG.U,m.jY*0>L0$Omr5vr>gs\NM>]Bb% o" oM9}k|PtL&_(i]>~M7>Vrd=.S\rH>q 5+1a~}Tlj|D:[lJG-[+/Hnfy,- 4]etIw.'4҈<&bȚ7#m5L/'/Dyj*, ػd-\Nۺ>ٷO1~>fW7S,}&3Xs%HC/(x9<|-n}Lm~ͪz嵦,BZPSd<רmVyN:8\Z^uUXYE7uZe-qz~֓HP P|U紼q|„b )k/DyZ(rS.*vN\B.WflVOU&Ϣ_Jg>AP>}@ (@P>}@ (@P>}@ \X}N&jV:}|7i-6羸BGF:y j&4R ˅9^NLhe{@pp (Tcf  (@P>}@ (@P>}@ )?l2t߿c֧ w|P}էKovu"5+}*0AX`t8#iCP>}@ (@P>}@ (@P>}@ (>nůݚlbĐѩu< #Z LiO9U)}xzy8ⶮ qe]Ffbɻ6iW~۷v>&$Cd ;W{Act&ϫo`&Ni}}dɵC> MZ'iStTj2K\Ϝ%|dѧSyM651w^C\Z_%6*;6W?m:FMdY34$YWSp(@P>}@ (@P>}@ (@P>}@ tԞOswTSG}qX'L4>{fRYXmJv?q}@ (@P>}@ (@P>}@ (c:t;13@[B}Zsz3ϕ4"m>6c]7}wL`|de&@?öϸ}E7¨4z"19M;lZd}>fD֖yȑss:X'L#oyRǺBۣgX]uǎ 0k|:7lJ M] nu@p(@P>}@ (@P>}@ (@P>}@>@cߏ`(OartW{@`Dc܇.Ǎml(6Ze4~YxTuz$Ue9X}1qu!N C (XI nYg{y3t[?:nHAnk~S(n+E` O_O)s\XUR> ;y?)04]csh$?%]q 9pܮ>pl1<DP>}@ (@P>}@ (@P>}@>ܫǧQVfc}FJܙo*b 0u1}%tsikSYډ*!g%'4SCBl2y7m(|j˕}jD>h#Mm|R'Dl &>I ;2tyJ&̵)i'e"M?/ozgZLn3GFI41aD }2#C_uOЧSNbR|Y(S9 (v6bRh3s%Z Ӕvfbx)'3D8&ItqQ{MJlWI95P* %.#6  G (@PpY}ΩPr&=KN6WnWŠ媜Wy0/}eT'g[UySnɤ&FL^ק(1wnt"Xr3}ŇbCVX sF$Ȳ[L: *'F4}i.F&5q|Rna\1 }Mjݺ>%+zQWu}lOp⾟d Mry6WJԧuW?y蓘Pt鷻lVi+|g> gV )3Y* }-֙]42x&g# }ef2_Sy7,I?pn[GUvV3c ?믔2#Q ƈ)MV~kń&oFyz̫t(guL6}@OfUKSK4 YpqI)Ϡa7QvS;J湞LTǗ}jNt?r}tKbӓurk&_2l9bvVa>\֞G?mޗ6˅V>N t\Ё>1`}@ .~Zb77Qظ}|\+ܹ}0…6]qN"Cr*0 3|}0uL^!/K4iv)Fy<6jdf}0•yÒ(5~'p+< j0b\Mn;T``pn* I{>UӆQ O}n>}@ (@P>>p2ᐾPfC}@C DX4}`9D@Ox\> .$a|eHpmA!9hOdr{Fh M;FS#IٷuVK݉pt7v> dz$Ue9sQR^PFxlzOﬠ}=1=>,3(@P>}@d Yڼ9r*WQZHS?zg'kklgL%Z<}:|ZPZu>Iڣ>BCLg%+n\;z3]ɣK:R_&O9,93O͗ucч'ؓ9rD=MؓSܡqi^r^+;4R{BNgh}>g `3&NIENDB`{DyK  _Toc51336922{DyK  _Toc51336923{DyK  _Toc51336924{DyK  _Toc51336925{DyK  _Toc51336926{DyK  _Toc51336927{DyK  _Toc51336928{DyK  _Toc51336929{DyK  _Toc51336930{DyK  _Toc51336931{DyK  _Toc51336932{DyK  _Toc51336933{DyK  _Toc51336934{DyK  _Toc51336935{DyK  _Toc51336936{DyK  _Toc51336937{DyK  _Toc51336938{DyK  _Toc51336939{DyK  _Toc51336940{DyK  _Toc51336941{DyK  _Toc51336942{DyK  _Toc51336943{DyK  _Toc51336944{DyK  _Toc51336945$$If!vh5 55& #v #v#v& :V l405 55& 4$$If!vh5 55& #v #v#v& :V l05 55& 4$$If!vh5 55& #v #v#v& :V l05 55& 4$$If!vh5 55& #v #v#v& :V l05 55& 4$$If!vh5 55& #v #v#v& :V l05 55& 4$$If!vh5 55& #v #v#v& :V l05 55& 4$$If!vh5 55& #v #v#v& :V l05 55& 4$$If!vh5 55& #v #v#v& :V l05 55& 4$$If!vh5 55& #v #v#v& :V l05 55& 4$$If!vh5 55& #v #v#v& :V l05 55& 4DyK Fexamples/EUgames.xls7D@D NormalCJOJQJ_HmH sH tH H@H Heading 1$<@& 5CJKHB@B Heading 2$<@&56<@< Heading 3$<@&D@D Heading 4$xx@&5CJ(F@F Heading 5$$xx@&a$6B@B Heading 6$$@&a$5CJ8@8 Heading 7$@&6DA@D Default Paragraph FontVi@V  Table Normal :V 44 la (k(No List ROR H1$$ & x@&a$5CJ(KH$htH uFOF H2$$x@&a$5CJ htH u0U@0 Hyperlink>*B*@O@ H3$dd@&5CJhtH u@O@ H4$dd@&5CJhtH uH@HTOC 2 $ ^:CJmHnHuL@LTOC 1xx $ 5;CJmHnHuH@HTOC 3 $ ^6CJmHnHu:: TOC 4 ^ CJOJQJ:: TOC 5 ^ CJOJQJ:: TOC 6 ^ CJOJQJ:: TOC 7 ^ CJOJQJ:: TOC 8 ^ CJOJQJ:: TOC 9 ^ CJOJQJ@B@@ Body Text$xxa$CJ04@4 Header  9r 4 @4 Footer  9r .)@. Page NumberHP@H Body Text 2!$xxa$5CJ`DQ@"D Body Text 3"$xxa$64>@24 Title#$a$5CJ 4J@B4 Subtitle$5CJLObL Definition Term%OJQJhtH uTORT Definition List &h^hOJQJhtH u0Oq0 Definition6HOH H5($dd@&5CJOJQJhtH uHOH H6)$dd@&5CJOJQJhtH u@O@ Address*6OJQJhtH uZOZ Blockquote+hhdd]h^hOJQJhtH u$O$ CITE6,O, CODE CJOJQJ8O8 Keyboard5CJOJQJpOp Preformatted(/ # ~= z9!v%CJOJQJhtH uj]@jz-Bottom of Form0$$da$"<CJOJQJ_HhmH sH tH d\@d z-Top of Form1$&da$"<CJOJQJ_HhmH sH tH ,O!, SampleOJQJ8O18 Typewriter CJOJQJ,OA, Variable64OQ4 HTML Markup<B**Oa* Comment<q9q&'*9B@mDr2a-can   r-Yd'\ p L!"K$c%x&((L)y)))+++d-?.r..V//y1j246,6778888+8b88888889;9b9c9u99999:Q:R:_:::::;,;-;8;k;;;;; < < <<B=>>l@ABJDWDFFGH%IdKLMFOOO PQRRTW)WY[)[]^_`a7bcddEfhhhjj\k]k[l\l9m:m)n*n;oBEGHIJKLMOPQRTVy?B  !<>Nik{%@BSnp.0B]_p (+C^aw?@@"OCODO)WJWKWdeeq %%%%%%%%%%%%%%%%%%%%%%%%XCCCGNPW!  8b$[(WDRywD01Mb$8T(WKR$}k˟.8xt(<5Lb$Gez9e|O <b$Ok$m hIb$%0$&z,Ob$IB8?]b$V45A;=Kglb$͵]MQbI8 !tb$nMq?(yqb$aJ[RFJ2 r$COJ/lQr$>J݈A;Qb$xqsX@h|: b$=aM w3r$RPb$Cyߠcx)~<b$$dtT1Fݑʼ2$3ӎc+d (b$lwl7A b$&Xe?ZV5 b$++zys4|$5 db$=Wf u{ b$öKQMI#Κgb$aڷ`8#b$} /Dj"X$2$z8-_Jt 2$BPY}=o-`A^[2$k- o}&&-2$JV32k1K?b$Yy&tS 0O b$IyC4*]Unb$*K-9&fb$fAfZ@@g*YN2$?[Qi44Q2$yK$u#U]õb$@GСmTb$ p1_+z@  (  \B  S D1" VB  C D">(  J x # A"J y # A"J z # A" J { # A" J | # A "J  # A"J  # A"  J  # A"V  C A" n  c 0A mouse"J  # A"J  # A" J  # A" J  # A" B S  ?-d+y1>BFOO^a\lqo @4"&T|T{&Tz& Ty?&?Txo&HT(# 4q&g T%q4"&&T%4$4 Ml&TRW+&+u&u _Toc51336922 _Toc51336923 _Toc51336924 _Toc51336925 _Toc51336926 _Toc51336927 _Toc51336928 _Toc51336929 _Toc51336930 _Toc51336931 _Toc51336932 _Toc51336933 _Toc51336934 _Toc51336935 _Toc51336936 _Toc51336937 _Toc51336938 _Toc51336939 _Toc51336940 _Toc51336941 _Toc51336942 _Toc51336943 _Toc51336944 _Toc51336945n Y\ (+6 <>JDFORW[]`hj#pq ~ ,co (++6<>VDF PR(W([^ahj,pq # #N#Q###++=,D,j,q,U.\.44e5i5{555577.;1;l;o;EEEEQQQQvUUVVaWhWXXZZZ!ZuZZ]]@_P_``a aaaaaMcScdd~dd:eDeeeff-h=hRiliiij8jppppppq q qqqq%')!?Nl{%CSq1B`p ,Cbw UYx!}!F"K"# ###$${$$$$%%%%%%}&&''(())**++++ .(.U.]...V/Y/44e5j5{5577nCrCCCFFKKwP{PVVUX[XY%YN[R[5]9]``a aa aaaMcTcdd~ddhh,m-mpppppp qqqq333333333333333333333333333333333333333333333333333!?Nl{%CSq1B`p ,Cbwpppppq qqp qqq  x1 W o( /- {4 ,iA ^8V zc y4o Pwy NO{ *^`.^`.p^p`.@ ^@ `.^`.^`.^`.^`. hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo( hh^h`OJQJo(hh^h`. hh^h`OJQJo( hh^h`OJQJo(nF oF /-zc^8V NO{Pwyo(x1{4y4oW,iAnF `@h ^`OJQJo(]27Vh778888+8b88888889;9b9c9u99999:Q:R:_:::::;,;-;8;k;;;;; < <pp qq{7@q@@UnknownGz Times New Roman5Symbol3& z Arial?5 z Courier New"1hѳjF{cy_9_9!4dpp3H(?7VMicrosoft Excel GuideAndrew VirnulsAndrew VirnulsD         Oh+'0 (4 P \ h tMicrosoft Excel Guide1icrAndrew Virnuls ndrndr Normal.dotuAndrew Virnuls 29rMicrosoft Word 10.0@k@$Cy@Vy@\_՜.+,D՜.+,@ hp|  n/a9pO Microsoft Excel Guide Title 8@ _PID_HLINKSAd Kexamples/EUgames.xls  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~     !"#$%&')*+,-./4Root Entry F 6Data 1TableRWordDocumentiSummaryInformation( DocumentSummaryInformation8(CompObjj  FMicrosoft Word Document MSWordDocWord.Document.89q