ŠĻą”±į>ž’ ž’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’ģ„Įo@ ųæ| bjbj p p [ŲooE<Ć7’’’’’’ˆ    ęęęD*Ī]Ī]Ī]€N^œź^<*ĆF2`¶čeR:f:fPflq|čsĢ“th’Ā”Ā”Ā”Ā”Ā”Ā”Ā$YÅR«ĒøĀęu’pøJq"uuøĀ  :fPfB ĶĀ~‚~‚~‚uŽ @:f*†:f’Ā~‚u’Ā~‚ˆ~‚ƒj iµaJą°6R¾:f&` `=ĖÖĆĪ]śāŹ¼²~¾ćĀ0Ć|½Ö¹Č܀¢¹ČdR¾**    ¹ČęR¾,uu~‚uuuuuøĀøĀ**¤DĪ]~‚**Ī]Updates and feedback This download was last updated on January 12, 2004. If you'd like to check for a more recent version,  HYPERLINK "http://techrepublic.com.com/5129-6288-10220637.html" click here. We also encourage you to HYPERLINK "http://techrepublic.com.com/5208-6230-0.html?forumID=8&threadID=144780&start=0"join our downloads discussion and tell us what you think about this download, suggest improvements, and offer ideas for related tools you'd like us to create or that you'd like to submit for publication. Please include the name of this download in the subject line of your discussion post. Managing a Windows network can involve a lot of repetitive tasks, especially when that network includes large numbers of users and desktops. One of the best ways to automate these tasks is through the use of scripting. Windows includes two built-in methods of scripting: Windows shell scripting and VBS. This compilation of articles by Allen V. Rouse introduces the role that scripts can play in Windows networks, shows how to get started with both Windows shell scripting and VBS, walks through a few advanced scripting techniques, and directs you to additional scripting resources. Table of contents  TOC \h \z \t "title,1"  HYPERLINK \l "_Toc61075656" Understand the role of scripting in network administration  PAGEREF _Toc61075656 \h 2  HYPERLINK \l "_Toc61075657" Getting started with Windows scripting languages and platforms  PAGEREF _Toc61075657 \h 4  HYPERLINK \l "_Toc61075658" Windows shell scripting can expedite network admin tasks  PAGEREF _Toc61075658 \h 7  HYPERLINK \l "_Toc61075659" First steps in VBS scripting for administrators  PAGEREF _Toc61075659 \h 11  HYPERLINK \l "_Toc61075660" Improve administration by using the Shell and Network VBS objects  PAGEREF _Toc61075660 \h 13  HYPERLINK \l "_Toc61075661" Improve efficiency of admin scripts with programming constructs  PAGEREF _Toc61075661 \h 17  HYPERLINK \l "_Toc61075662" Beef up your admin scripts with these extra tools  PAGEREF _Toc61075662 \h 21  HYPERLINK \l "_Toc61075663" These resources can help you write admin scripts  PAGEREF _Toc61075663 \h 24  HYPERLINK \l "_Toc61075664" Listings  PAGEREF _Toc61075664 \h 26  Understand the role of scripting in network administration Network administrators have used scripting since long before Windows or even DOS came on the scene. UNIX administrators, for instance, have been using shell scripting and its powerful capabilities for decades. Scripting can significantly ease the burden of network administration. But learning to create useful and effective scripts for networking tasks is not easy and requires a lot of patience and practice. Before you begin, it's important to have a good understanding of what scripting is and why it is so useful. In the first article of this scripting guide, I will provide information to help you understand how scripting can play a role in network maintenance and management. In subsequent articles, I will talk about the various scripting languages and platforms, basic programming concepts for scripting, and using Windows shell scripting and Visual Basic scripting for network administration. I'll also point you toward other resources that are available for learning how to write scripts. What is scripting? Simply stated, a script is a small, interpreted program that can carry out a series of tasks and make decisions based on specific conditions it finds. By "interpreted," we mean that when it is run, it is carried out one line at a time, as opposed to "compiled," which is the process of turning it into machine language before it is run. A script is created using ASCII text, so Windows Notepad or a similar text editor is the only tool required. A number of scripting "languages" are available for you to choose from, each with its own capabilities and limitations. These languages include Windows native shell scripting, Visual Basic Scripting Edition, JavaScript, Kixtart, and Perl. Which one you choose will ultimately depend on a combination of the tasks required and your own experience and inclinations. Each scripting language has a collection of commands or keywords and a set of rules on how to use them. The set of rules for writing a script in any given language is called the syntax. Once you learn the keywords and syntax, you can use a text editor to write the script and then save it with a file extension that is appropriate to the scripting language you are using. Some of the more common file extensions you will see are .bat, .cmd, .vbs, .js, and .kix. How is scripting used? Scripting lets you automate various network administration tasks, such as those that are performed every day or even several times a day. For example, login scripts run every time a user logs in to the network and can perform tasks like mapping network drives for the user based on certain conditions, such as group membership. Another example of script use might be a situation where you want to have each Windows NT server create a new Emergency Restore Disk and then copy the contents of that disk to a network location. Other tasks might need to be carried out only once, such as a modification to the registry, but to a large number of servers that are widely distributed geographically. In a case like that, you could create and distribute a single script to run the task on each server. You can start scripts manually, but you can also start them automatically, either by a specific event or scheduled via the Windows Task Scheduler. Windows NT allows scripts to be run automatically each time a user logs in to the network. Windows 2000 goes much further and can be configured to automatically run separate scripts upon: Machine startup Machine shutdown User login User logout You could, for instance, map specific network drives when a user logs in and then automatically copy that user's Favorites folder to a network share when he or she logs out so that the data is preserved in a central location. The scripting advantage Scripting in network administration offers significant advantages. It allows you to: Save time—Scripts can carry out complex tasks and be invoked automatically, without the intervention of the network administrator, so the admin can concentrate on other tasks while the script runs. Be consistent—A script need be written only once and can then be invoked many times. It is much less error-prone than manually carrying out the task each time. Be flexible—Scripts can use decision-making logic to respond to different conditions. Rather than statically mapping a workstation to persistent drives, for example, network drives can be mapped in a variety of ways based on which user is logging on to the machine. You could write a script to check whether a file exists and delete it if it does, or display an error message if it doesn't. The only real limit to scripting is your imagination. Getting started with Windows scripting languages and platforms You can think of a scripting platform as an environment in which a script can run. Given that a script is nothing more than a collection of text, there has to be some means for the computer on which the script is running to understand that text and carry out its instructions. In Windows, there are two major scripting platforms to choose from: the Windows shell and the Windows Scripting Host (WSH). We'll cover the Windows shell first and then look at the WSH, along with its two scripting languages, VBS and JScript. Shell scripting A shell is nothing more than an interface that allows a user to communicate with, or issue commands directly to, the operating system. The concept of a shell has been around in UNIX for many years. In fact, there are several shells in the UNIX world, each with its own features and commands that make it suitable for various tasks. In Windows, there is no such diversity. You have only one shell, the Windows shell, which is built into the operating system. And you are undoubtedly already familiar with the interface, although you probably call it the command prompt or, if you're a real old-timer, perhaps the DOS prompt. Technically speaking, it's called a command shell and is run by executing the file Cmd.exe, found in C:\Winnt\System32. Probably the easiest way to run it is to simply click Start | Run, type cmd in the text box, and click OK, or create a shortcut to Cmd.exe. The Windows shell comes with a set of built-in commands, many of which are well known and commonly used, such as dir, copy, del, cd, etc. Commands and their associated parameters are usually issued one at a time at the command line. More important for our purposes is the fact that commands can also be used in a batch mode. That is, using a text editor, you can write a separate command on each line, saving the finished product with the extension of either .bat or .cmd. This turns the text file into an executable that will be run as an interpreted program, carrying out each command one line at a time, in order. This is what we call shell scripting. Although the Windows scripting language is far from being a full-scale programming language, it does come with some useful commands and features that allow it to have some of the flexibility you'd expect to find in a program. Some of these features are: Conditional processing You can have your script test to see whether a certain condition exists, and if it does, do one thing, and if it doesn't, do something else. Error trapping Every time a command is carried out, Windows generates an error level, with error level 0 being "no error." This allows you to include a provision in your script to gracefully exit from an error it might encounter. System variables Information about a given computer and the user who is logged on to that computer can be found in the registry, at HKEY_LOCAL_MACHINE and HKEY_CURRENT_USER. Some of that information, which can be of use in scripting, is available in the form of system variables. To get an idea of what is available, you can open the command shell and type the command set. This will display a list of all the system variables and their current values. These can then be referenced in a script by bracketing them with the percent symbol. For instance, %username% will refer to the username of whoever is currently logged on to the computer. An example of its use would be to copy the current user's Favorites folder and all subfolders on the local machine to that user's home folder on the server: xcopy %userprofile%\favorites \\fileserver\home\%username% /s/y I will talk more about these features in a future article devoted to shell scripting basics. You'll find a reference for all of the commands available for shell scripting in Windows Help. If you are using Windows 2000, click on Start | Help. In the Search tab, type command reference and click List Topics. Then, under Select Topic To Display, double-click on the topic Windows 2000 Command Reference Main Page. In Windows NT, click on Start | Help. In the Find Tab, type command. Then, in the Pick A Topic pane, select Commands Index and click the Display button. Windows Scripting Host The Windows Scripting Host (WSH) is a set of three files (Wscript.exe, Cscript.exe, and Wsh.ocx) that provide an environment for other scripting languages to run in. Built into the WSH are two "engines" for the scripting languages Visual Basic Scripting Edition (VBS) and JScript, which is a Microsoft version of JavaScript. You can also load other engines for such scripting languages such as Perl or REXX, if you want. Although the shell scripting language remains a fixed part of the operating system, WSH can be separately updated and upgraded, since it exists as separate files. In addition, it can be installed on several versions of Windows. To download the latest version of WSH, go to the Microsoft Windows  HYPERLINK "http://www.microsoft.com/scripting" \t "_target" Script Page and follow the link to the download page. To determine which version is currently installed, type cscript at the command shell. The WSH makes use of a rather strange concept called an object model, which can take some getting used to for a newcomer to scripting and programming. You can think of an object as a tool that you use to accomplish certain tasks. Each object has a set of methods associated with it. You can think of methods as the functions or capabilities of each tool, or object. The root object for WSH is called WScript, and from it, other objects can be created and used within scripts to accomplish tasks. Both VBS and JScript are object-based languages, and each uses its own object model that works in conjunction with the WSH object model. Visual Basic Scripting Edition In future articles, I will discuss the basics of using VBS for writing scripts. For the moment, let's take a quick look at what it can do. VBS is a subset of the full-blown programming language Visual Basic. (Another subset of Visual Basic, called Visual Basic for Applications—VBA—is used primarily to create macros for Microsoft Office applications.) Using the objects and methods found in both the Windows Scripting Host and in VBS, along with correct VBS syntax, you can create a VBS script. You do this by using a text editor such as Notepad to write out a set of commands and then save the finished script with the file extension .vbs. Once this file is created, you can execute it just as you would any other executable file. For example, you can: Double-click on the icon. Type the filename at the command prompt. Type the name of the file on its own line within a shell script. JScript JScript is the Microsoft implementation of JavaScript. JScript and JavaScript are not subsets of the Java programming language. However, like VBS, JScript is an object-based scripting language that can be used to automate tasks for network administration. You create a JScript file in the same way you create a VBS file, except that you must save it with the file extension .js. The default icon for a JScript file looks just like the icon for a VBS file, except that the VBS icon is blue and the JScript icon is yellow. You execute a JScript file in the same way you execute a VBS file. Which one to use? The choice of whether to use VBS or JScript is largely a matter of preference. If you've worked with JavaScript on Web sites, you may be more comfortable using JScript for network administration scripting. On the other hand, if you have some experience with Visual Basic, VBA, or VBS Web scripting, you will probably prefer using VBS for networking scripts. It is even possible to use both scripting languages in the same script, if you save it with the file extension .wsf (Windows Script File). However, learning both languages requires twice the time, so it's probably best to stick to just one. For the purposes of this guide, I will concentrate on VBS rather than JScript simply because that is my preference. Windows shell scripting can expedite network admin tasks Some of the more common Windows scripting languages and platforms include Windows shell scripting, Visual Basic Scripting (VBS), and JScript, as I discussed previously. Now we're going to take an in-depth look at Windows shell scripting as it relates to network administration. For the purposes of this discussion, I'm going to assume that you understand the basics of using the Windows command line, including the use of parameters and switches, such as the following: del? myfile.txt /f Here, "del" is the command, "myfile.txt" is the parameter (which provides required information to the del command—in this case, which file to delete), and "/f" is the switch, which modifies the behavior of the command so that it forces the deleting of read-only files. Logon scripts Probably the most common use for shell scripting is logon scripts. A logon script is used to configure the Windows environment for a user at the time of logon and is usually specific to a group of users. For instance, members of the Finance group may automatically map network drives to the finance network share folder, while the Marketing group may automatically map their network drives to the marketing network share. To make this work, a script is created for each user or group of users and then copied to the appropriate server location (based on the version of Windows). In Windows NT, the script file is normally placed in C:\Winnt\System 32\Repl\Export\Scripts (or Import, depending on how you have configured replication). You then point to that file in the User Account Properties dialog box. When using Active Directory, you deploy the logon script via a Group Policy. First, copy the script file to the Sysvol subfolder. Figure A shows where to access this subfolder. Figure A  INCLUDEPICTURE "http://cms-bigip.cnet.com:9992/Rhythmyx/TRResourceUpload/previewart.gif?contentid=313109&seq=32089" \* MERGEFORMATINET  Finding the Scripts folders in Sysvol Note that you also have the choice of scripts for logoff, startup, and shutdown. You can then directly edit the Group Policy object for a given container to include that script, as shown in Figure B. Figure B  INCLUDEPICTURE "http://cms-bigip.cnet.com:9992/Rhythmyx/TRResourceUpload/previewart.gif?contentid=313109&seq=32090" \* MERGEFORMATINET  Edit the script in a specific container in Active Directory. Commands in logon scripts One of the most useful commands to use in a logon script is NET USE. It's just one subset of many available NET commands. The NET USE command allows you to establish drive mappings. When used in a logon script, it can tailor the drive mapping to a specific user or group of users. For instance, let's say that the marketing department requires a drive mapping to the marketing folder on Server3, another drive mapping to the admin folder on Server2, and another drive mapping to the individual user's home folder found in the "home folder" share on Server1. Here is an example of how you would script that: NET USE F: \\server3\marketing PERSIST:NO NET USE G: \\server2\admin PERSIST:NO NET USE H: "\\server1\home folder\%username%" PERSIST:NO The keyword PERSIST at the end of each line addresses whether to reconnect the drive mapping at the next startup. Most often, you do not want this to happen because another user may require different drive mappings. You also should note a couple of things in the third line of code. First, there are quotation marks around the path. This is required because there is a space within the pathname. Second, I used the environmental variable %username%. When a user logs on, that username is stored temporarily in the registry and is available within the Windows shell. (To verify this, type echo %username% at the command line and you should see your own logon name provided as output.) If each user has a folder that is named the same as that person's logon name, you can use that to automatically map a drive to the home folder. The %username% variable is one of several environment variables that are created automatically by Windows and that can be used similarly in your scripts. To see a complete list, you can type set at the command prompt. You can also create your own variables with this command. To find out how, type set /? at the command prompt. Windows commands To see a complete list of the commands and information on how to use them, refer to Windows Help. If you are using Windows 2000, click on Start | Help. In the Search tab, type command reference. Under Select Topic To Display, double-click on Command Reference Main Page. In Windows NT, click on Start | Help and type command in the Find tab. Then, under Pick A Topic, select Commands Index and click the Display button.Another useful logon script command is NET TIME, which is used to synchronize time on a network to a time server. You can use a number of switches with this command. Again, you can check the command reference in Windows Help. The simplest use of NET TIME might look something like this: NET TIME \\timesvr8 /SET /YES This tells the computer to synchronize its time with that on the server named timesvr8. The /YES switch tells it to force the synchronization even if the named server is not a time source server. In a future article, I will discuss certain programming constructs you will find useful in scripting, including conditional processing. Here's a look at one form of conditional processing. Administrators in Novell NetWare have long appreciated the ability to tell the logon script to do something if the user is a member of a certain group by using the statement IF MEMBER OF. Although no such statement is available in Windows scripting, there are two possible workarounds, depending on whether you are administering a Windows NT domain or a Windows 2000 domain with Active Directory. The Windows NT Resource Kit includes a utility named IFMEMBER.EXE, which can be used for the same purpose as the NetWare IF MEMBER OF. Unfortunately, its use is rather convoluted, requiring yet another construct called ERRORLEVEL. Here's how it works. Lets say that if the user logging on is a member of the both the Marketing group and the Managers group, you want to map a drive to a share that only marketing managers have access to. First, you would include the line: IFMEMBER marketing managers The IFMEMBER utility, assuming that it is in a search path, will check for membership in all groups listed and then exit and store the number of groups the user is a member of in a special variable called ERRORLEVEL. In this case, that number should be 2. So the entire process would look like this: IFMEMBER marketing managers IF NOT ERRORLEVEL 2 EXIT NET USE J: \\SERVER4\MKTGMGR? /PERSIST: NO? If the user is a member of both groups, the value stored in ERRORLEVEL will be 2. If the value is not 2, the script will end. But if the value is 2, it will execute the next statement. The IFMEMBER.EXE utility may also be used in a Windows 2000 domain, but if you are using Active Directory, you have another option. Rather than reference groups in logon scripts, you can design your Organizational Units along the same lines as those groups. That way, you can create Group Policy Objects linked to each OU, with a specific logon script for that OU, without having to use the IFMEMBER utility. Using shell scripting for other purposes As I mentioned, a logon script is designed to be invoked every time a user logs on to the network. There are times, however, when you will find that a script can be useful even if it is used only once. For example, suppose that your organization has just completed work on a Geographic Information System (GIS) that displays maps. Any GIS involves a large number of "shape" files and images, often in a complex directory structure. They will run best if installed locally on the workstation, so you decide that you want to copy these files, with directory structures intact, from a network share to the local hard drive of each workstation. You could, of course, sit down at each computer, open the command prompt, and manually type each line one at time. But obviously, it would greatly simplify things to write one script that contains every command that must be issued, each on its own line, and simply run that script at each workstation. Using the COPY command or the more versatile XCOPY command, you could create a script that would accomplish the job, copy it to a removable medium such as a floppy disk, and run the script at each station by typing a single command. The advantages are twofold: It will save you time, since you don't have to type every command at every workstation. It will help prevent the inevitable errors caused by mistyping a command or a pathname. Best practices When you write Windows shell scripts, you should keep these best practices in mind: Always test your scripts before you use them in a production environment. Always document your scripts, even if they appear very simple. When a script encounters the keyword REM (for "remark"), it will ignore that entire line. You can therefore use that keyword to add remarks to your script for documentation. At the very least, you should include the purpose of the script, with the date and the name of the person who created it. Remember that what may seem obvious to you at the time may not be obvious to someone else. For that matter, it may not even be obvious to you a year from now. Remember that each command line in your script will be displayed onscreen when it is run, unless you turn that feature off with the command @ECHO OFF. Moving on To really become proficient at creating Windows shell scripts, you need to understand the available commands and their syntax. Study the command reference in Windows Help. Take a look at each command and see which ones might help you accomplish the tasks you need done. Each command has a Related Topics link. Most of those include two additional useful links: one that provides examples of that command in use and one that has further notes on the command. In addition, you should practice and try out various commands and options as much as possible until you become proficient. Don't be afraid to make mistakes (provided you are practicing in a test environment). That's the best way to learn about the variables involved in this process. First steps in VBS scripting for administrators Even the most experienced network administrator may find the powerful VBS scripting somewhat intimidating. VBS scripting is a subset of Microsoft Visual Basic called Visual Basic Scripting Edition. It looks quite different from shell scripting and, in fact, uses a very different concept—one that's based on objects and methods. But network administrators don't have to be master programmers to write effective and useful VBS scripts. It's just a matter of taking a few steps into the unknown. I'm going to introduce you to VBS scripting by discussing the concept of using objects and methods to accomplish a task. We will then apply this concept to work with the Windows file system to carry out a simple file management task. Objects and methods Probably the main reason why VBS code appears so strange to someone who is used to writing batch files is that it makes use of a syntax that combines objects and methods to accomplish its tasks. All of the common programming concepts are there—variables and constants, error trapping, conditional processing, and so on. But to get anywhere with VBS, you must start with objects. The platform for VBS scripting is the Windows Script Host (Wscript.exe). It comes with a set of tools, each of which has specific capabilities. In VBS, a tool is called an object, and the various capabilities of a tool are called methods. So to accomplish a task, you combine an object and a method. The way this is done in VBS syntax is in a dot format like this: object.method The root object in the Windows Script Host (WSH) is called Wscript. There are 13 other WSH objects, but we don't need to go into those now. The main thing here is to understand the concept of using objects and methods to carry out a task. The Microsoft MSDN Web site provides more information on the  HYPERLINK "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wsconwindowsscripthostobjectmodel.asp" \t "_target" WSH Object Model. Introducing FileSystemObject The easiest way to understand the use of objects and methods is to become familiar with FileSystemObject, the object used to interact with the Windows file system. However, because it is not one of the core WSH objects, it can't be used directly. It is actually invoked by WSH from a file called the Scripting Runtime Library (%windir%\system32\scrrun.dll). Once invoked, FileSystemObject can be used to create, copy, or delete files or folders. You invoke it through a process called "instantiating an object," which is basically creating the object and then assigning it to a variable. We will use the Windows Script Host root object Wscript to create the FileSystemObject object (yes, that does sound redundant) and simultaneously assign it to a variable. Here's how. One of the methods in the Wscript object is called CreateObject. So using our dot notation, we can write Wscript.CreateObject to accomplish our task. We just need to tell it that we want to create the FileSystemObject found in the Scripting Runtime Library: Wscript.CreateObject("Scripting.FileSystemObject") However, that's only half the job of instantiating FileSystemObject; we also have to simultaneously assign it to a variable. In programming, a variable is simply a name you give to something so that you (and the program) can keep track of it more easily. Since we are creating the FileSystemObject, we might use FSO as the variable name. But there are many kinds of items besides objects that can be given names. To identify this as the name of an object, we'll adopt Microsoft's recommended naming convention and use the variable name objFSO. We are now close to the point where we can actually do something. But in Visual Basic, you can't use a variable name until you declare it and assign something to it. To declare a variable, we use a separate statement with the keyword Dim, like this: Dim objFSO Then, to assign something to the variable, we use the keyword Set and an equal sign. So the entire process of instantiating the FileSystemObject will look like this: Dim objFSO Set objFSO = Wscript.CreateObject("Scripting.FileSystemObject") Using FileSystemObject Now that we have instantiated FileSystemObject and assigned it to a variable called objFSO, what can we do with it? Remember that objects come with a set of capabilities called methods. We can use those methods to manipulate the file system if we know the exact syntax. Some of the useful methods for FileSystemObject are listed in Table A. Table A CopyFile Copies files to another location DeleteFile Deletes files FileExists Returns True or False depending on whether the file exists MoveFile Moves files to another location CopyFolder Copies folders to another location DeleteFolder Deletes folders FolderExists Returns True or False depending on whether the folder exists MoveFolder Moves folders to another location Let's say that we want to write a script that will copy a file named MyFile.txt from a local drive to a network share. Good programming technique dictates that we first test to make sure that the file exists before we execute the Copy command. HYPERLINK \l "ListingA1" \t "_target"Listing A shows how we would do that. Once we instantiated the FileSystemObject as objFSO, we were able to invoke two of its methods (FileExists and CopyFile) to accomplish a task. We also invoked a Wscript method (Echo) to display a message in case of an error. In addition, note that we invoked those methods using the variable name objFSO rather than the object name FileSystemObject. Of course, the exact syntax is important, such as the If-Then-Else construct and the use of parentheses and quotation marks. But the point here is to understand the use of objects and methods to accomplish a task. Releasing FileSystemObject Good programming technique requires you to do one more thing before leaving the VBS script. After using objects you have instantiated, you should always release them before ending the script. You do that by assigning nothing to the variable name you created—literally. Here's what it looks like: Set objFSO = Nothing So now, if we put the whole thing together and include, as we always should, documenting comments, it would look something like HYPERLINK \l "ListingB" \t "_target"Listing B. Just the beginning As most network administrators know, you could accomplish this same task with a regular batch file or shell script. If that were all VBS scripting could do, there wouldn't be much point in taking the trouble to learn it. But VBS scripting can ultimately do a great deal more than shell scripting, including reading and writing to files, reading and writing to the Registry, creating shortcuts, and assigning icons. Once you understand the concept of using objects and methods, you will have taken the first step toward mastering this powerful tool. Improve administration by using the Shell and Network VBS objects When you start working with the Windows Scripting Host and VBS scripting, you must understand the concept of objects and methods. Previously, I discussed how to instantiate, or create, an instance of the FileSystemObject object and use it to manipulate the Windows file system. Now, I'm going to discuss two other objects that are important in network admin scripting, WshShell and WshNetwork. We'll use these two objects to create shortcuts, write to the registry, and map network drives. Object recap Objects, which can be thought of as tools, have what we call methods—certain things the tools can do. In addition, objects have properties. Just as the name implies, properties are characteristics of objects and, like methods, can be used to good advantage in VBS. Use the WshShell object to create a shortcut To create the Shell object, we use the CreateObject method of WScript: Dim objShell Set objShell = WScript.CreateObject("WScript.Shell") Once the Shell object has been created, it includes the properties and methods shown in Table A. Table A Properties Methods CurrentDirectory AppActivate Environment CreateShortcut SpecialFolders Exec ? ExpandEnvironmentStrings ? LogEvent ? Popup ? RegDelete ? RegRead ? RegWrite ? Run ? SendKeys WshShell object Using the Shell object and some of these properties and methods, we are going to create a VBS script that will create a shortcut to Notepad on the user's desktop. First, notice that one of the properties is called SpecialFolders. This property requires an argument telling it which special folder to use, such as MyDocuments, Favorites, or StartMenu. For our script, we'll use Desktop. Second, notice that one of the methods for WshShell is CreateShortcut. If you use that method, you end up with an object called WshShortcut. Its properties are shown in Table B. Table B Properties Arguments Description Hotkey IconLocation TargetPath WindowStyle WorkingDirectory WshShortcut object Where do these properties come from? If you right-click on a shortcut and select Properties from the context menu, you'll see something similar to Figure A. Figure A  INCLUDEPICTURE "http://cms-bigip.cnet.com:9992/Rhythmyx/TRResourceUpload/previewart.gif?contentid=313545&seq=32622" \* MERGEFORMATINET  Items in the Properties dialog box correspond to WshShortcut properties. For instance, the Target text box corresponds to the TargetPath property in the WshShortcut object. The Run drop-down list lets you select either Normal Window, Run Minimized, or Run Maximized. These options are part of the WindowStyle property in WshShortcut. The only property we are required to specify is TargetPath. Now let's look at how we can create a shortcut with VBS. First, we have to remember that shortcuts to files or folders (as opposed to URLs) have the extension .lnk. We will need to specify that we want to link to C:\WINNT\notepad.exe and store that link (shortcut) in the user's Desktop folder. Here is what we will do: Instantiate the WshShell object. Use WshShell to create a shortcut. Specify where the link is located (using the TargetPath property of WshShortcut). Save the shortcut. HYPERLINK \l "ListingA2" \t "_target"Listing A shows how this script will look. Note the various uses of parentheses and quotation marks in this script. Note also that in creating the shortcut, we specified the target folder using its variable name and concatenated the link name using an ampersand (&). In specifying the target path, we used the environment variable %windir%, which is normally C:\WINNT. The entire path must be enclosed in quotes. Use the WshShell object to work with the registry As we saw in Table A, the Shell object contains the following methods: RegWrite RegRead RegDelete We can use these methods to manipulate the registry of a machine with a VBS script—that is, read, write, and delete registry keys and values. The syntax for this is quite simple. Let's say that in the HKEY_CURRENT_USER hive (HKCU), we want to create a key with the name "AnewKey" and assign to it the value of "NewValue." We would first instantiate the Shell object and then use the RegWrite method as follows: Dim objShell Set objShell = WScript.CreateObject("WScript.Shell") ObShell.RegWrite "HKCU\AnewKey", "NewValue" The same key and value can be removed using the RegDelete method. Use the WshNetwork object to map a network drive Table C shows the properties and method of the WshNetwork object. We'll use the MapNetworkDrive method in this example. Table C Properties Methods ComputerName AddWindowsPrinterConnection UserDomain AddPrinterConnection UserName EnumNetworkDrives ? EnumPrinterConnections ? MapNetworkDrive ? RemoveNetworkDrive ? RemovePrinterConnection ? SetDefaultPrinter WshNetwork object Let's say that we want to assign the network share \\Server1\Admin to drive G:. We first instantiate the network object and then use the MapNetworkDrive method as follows: Dim objNetwork Set objNetwork = WScript.CreateObject("WScript.Network") ObjNetwork.MapNetworkDrive "G:", "\\Server1\Admin" The sky's the limit Using the FileSystemObject, Shell, and Network objects and their associated properties and methods, you can automate a great many tasks to ease the burden of routine work. To learn more about VBS and how you can use the objects, methods, and properties to your advantage, check out Microsoft's site for specifics such as the  HYPERLINK "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/vtoriVBScript.asp" \t "_target" VBS User's Guide and Language Reference and references on the individual objects  HYPERLINK "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wsobjwshshell.asp" \t "_target" Shell,  HYPERLINK "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wsobjwshnetwork.asp" \t "_target" Network, and  HYPERLINK "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/jsFSOTutor.asp" \t "_target" FileSystemObject. Improve efficiency of admin scripts with programming constructs With Windows shell scripting and VBS, you can map network drives, copy files or folders, edit the registry, create shortcuts, and perform a host of other useful network administrative tasks. Earlier, I alluded to some programming constructs that let you extend the functionality of your scripts. Now it's time to take a look at these programming constructs, see how they are used, and examine their syntax in both shell scripting and VBS. The constructs I'll discuss are conditional processing, error trapping, and iterative processing. Conditional processing in Windows shell scripts Conditional processing is the ability to have your script test whether a certain condition exists or is true, such as determining whether a variable is equal to a string or a specific file is present. Once the script determines whether the condition is true or false, it can carry out one command if the condition does exist and carry out another command if it does not exist. In shell scripting, the conditional processing construct consists primarily of these elements: IF statement GOTO statement Labels The IF statement is used to test a condition. This statement may include a command to be carried out if the condition is true, such as: IF %SYSTEMROOT% == "C:\WINNT" COPY new.dll C:\WINNT\SYSTEM32 You can also include a command to be carried out if the condition is false. To do this, you add an ELSE clause to the IF statement: IF %USERNAME% == "Johnny" echo "Hello Johnny" ELSE echo "Who are you?" In addition, you have the option of branching to another part of the script to carry out a command. This is especially useful in more complex processing. To branch, you must include a label, which is basically a named place marker in your script. For example, if your script contains commands that can't be carried out on a Windows 9x operating system, you might want to test to see that the operating system is Windows NT or higher first. If it is not, you do not want to the script to run at all. To accomplish this, you could use a label called EXIT and the GOTO statement: IF NOT %OS% == "WINDOWS_NT" GOTO EXIT [Body of script here] GOTO EOF :EXIT ECHO "You must be using Windows NT or higher." A little explanation is called for here. First, note that a colon must precede the label (EXIT) in the script and that I used two equal signs (==) instead of one (=). The double equal sign is called a comparison operator and must be used with IF statements. I used a GOTO statement to tell the script to branch to the label. Remember that the script will carry out each line in order until it reaches the end, unless it is told otherwise. This means that if the condition is true, it will still carry out that last ECHO statement in the script. Of course, I don't want to echo that message if the condition is true, so I used the GOTO EOF (End of File) statement before the EXIT label. This tells the script to end there and not carry out any more commands—in this case: ECHO"You must be using Windows NT or higher." You can always use NOT to invert any test for a condition. Thus, in addition to the basic IF statement, you can use the following: IF (NOT) DEFINED [Tests to determine whether a given variable exists] IF (NOT) EXIST [Tests to determine whether a given file or folder exists] The Command Reference in Windows Help provides details and notes on using these statements. Dealing with errors in Windows shell scripts Every time a Windows shell command completes its task, it exits with a specific code. Commands that are completed with no errors exit with the code of 0, while any other exit code indicates that an error occurred. For instance, say that you execute the following command: DEL myfile.txt If the file was successfully deleted, the exit code will be 0. But if that file doesn't exist, or if it has a read-only attribute, the command can't delete it and the error code will be something other than 0. A variable called ERRORLEVEL lets you access that code, and you can use that in conjunction with the IF statement to trap errors. Here's an example: DEL myfile.txt IF NOT ERRORLEVEL 0 GOTO EXIT ECHO "File deleted." GOTO EOF :EXIT ECHO "Could not delete file." Conditional processing in VBS In VBS, the syntax for conditional processing is a little different. To execute a straightforward IF statement, you type something like this: IF condition THEN one or more statements END IF Notice that you must include the keyword THEN and explicitly end the IF statement. In addition, VBS will allow you to include statements that will be executed if the condition is false, as well as statements to execute if the condition is true. This is done with the ELSE clause, as shown here: IF count = 10 THEN Wscript.echo "Count is ten." ELSE Wscript.echo "Count is not ten." END IF VBS also has a slightly more efficient method of performing conditional processing, known as the SELECT CASE statement. It allows the script to evaluate a condition, as you might guess, on a case-by-case basis. Here's an example: SELECT CASE count CASE count = 1 Wscript.echo "Count is one." CASE count = 2 Wscript.echo "Count is two." CASE count = 3 Wscript.echo "Count is three." END SELECT Iterative processing in shell scripting Iterative processing, also called looping, means repeating one or more commands until some goal is reached. In shell scripting, the syntax is not as obvious as other constructs and is therefore a little harder to learn. For iterative processing you use the FOR DO statement, and the syntax looks like this: FOR /switch %%variable in (set) DO command The /switch element can be one of four switches: /l loops through a range of values. /f loops through or parses a string. /d loops through the files of a folder. /r loops through all subfolders. The %%variable is any letter of the alphabet, such as %%a or %%z. The FOR command will increment the value of this variable each time it passes through the loop. Look at how you might use this construct for a network admin task. Suppose that you need to print a list of all the subfolders in the C:\WINNT folder. You could do that using a straight shell command such as: DIR C:\WINNT /AD /S The output would look similar to Figure A. Figure A  INCLUDEPICTURE "http://cms-bigip.cnet.com:9992/Rhythmyx/TRResourceUpload/previewart.gif?contentid=314553&seq=33502" \* MERGEFORMATINET  However, this may not be the most useful format. So l create a script with the following commands: @echo off FOR /r c:\winnt %%a in (.) do echo %%a > dirlist.txt The resulting output, redirected to a text file, will appear similar in format to Figure B. Figure B  INCLUDEPICTURE "http://cms-bigip.cnet.com:9992/Rhythmyx/TRResourceUpload/previewart.gif?contentid=314553&seq=33503" \* MERGEFORMATINET  Iterative processing in VBS Iterative processing in VBS is frankly more useful and, as an added bonus, the syntax is actually easier. Four forms of looping are available in VBS: DO WHILE will create a loop that continues to process as long as a condition is true. DO UNTIL will create a loop that continues to process until a condition becomes true. FOR NEXT will create a loop that executes a specific number of times. WHILE WEND will create a loop that continues to process as long as a condition is true. The WHILE…WEND loop is similar to DO…WHILE, but it is not used much, due to the general popularity of DO…WHILE. The basic formats for the other three constructs are: DO WHILE condition Repeating commands LOOP --------------------------------------------------- DO UNTIL condition Repeating commands LOOP --------------------------------------------------- FOR a = 1 TO 10 Repeating commands NEXT --------------------------------------------------- It's important to understand that in both the DO…WHILE loop and the DO…UNTIL loop, the condition must change at some point. Otherwise the loop will never end. The FOR…NEXT loop shown above will repeat 10 times. Be constructive Using the programming constructs I have discussed here, you can greatly improve the efficiency and functionality of your scripts. You can have your scripts make decisions without your intervention, recognize errors and take action based on them, and quickly perform repetitive tasks. As with all elements of scripting, developing the skills to use these constructs will take practice, but it will be well worth the trouble. Beef up your admin scripts with these extra tools Earlier I mentioned IFMEMBER.EXE, a valuable Windows Resource Kit tool you can use to refine login scripts. Microsoft also provides a number of other tools that will help you improve your administration scripts. I'm going to show you where to find these tools and introduce a few that you may find useful. I'll also tell you about a particularly handy tool called  HYPERLINK "http://www.kixtart.org/" \t "_target" KiXtart, which you can use to enhance your scripts. Running executables in scripts The utilities that Microsoft provides are command line executable files that come with their own syntax. To use them, you must first know how to run an executable file within a script. Executing a utility within Windows shell scripts is fairly straightforward. You know that you can execute a command line program at the command prompt. Since shell scripts are basically a series of command line instructions, you can simply include the executable on its own line in the script. If it's not in the default path, just include the path as part of the command line. For instance, one of the utilities that Microsoft provides is INUSE.EXE, a tool that can replace files that are currently in use by the operating system. To run it, you must specify the name of the source file and the name of the file to be replaced. For example, you might include a line like this in your script: "C:\Program Files\Resource Kit\inuse.exe" f:\test1.dll \\SERVERA\Winnt\System32\test1.dll It's not quite that easy in Visual Basic Scripting, but it's not too difficult either. First, to run a command line utility with a VBS script, you must access the Runmethod within the WshShell Object. The syntax for that is: Wscript.Run (command, [WindowStyle], [WaitonReturn]) In this case, command is the complete command line utility with parameters, WindowStyle is an optional parameter that controls the style of the command window, and WaitonReturn is either true or false, specifying whether the script should wait until the utility completes processing before continuing with the script. Running INUSE.EXE within a VBS script might look something like this: Set ObjWS = WScript.CreateObject("WScript.Shell") ObjWS.Run ("INUSE.EXE f:\test1.dll \\SERVERA\Winnt\System32\test1.dll", 0,"true") Head for the tool shed So, now that you know how to use these utilities within a script, you need to know where to go to get them. The best place to go is the Windows Resource Kit. Both the  HYPERLINK "http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/winntas/reskit/reskit.asp" \t "_target" Windows NT Resource Kit and the  HYPERLINK "http://www.microsoft.com/windows2000/techinfo/reskit/default.asp" \t "_target" Windows 2000 Resource Kit have the tools. You can also download many of the individual tools  HYPERLINK "http://www.microsoft.com/windows2000/techinfo/reskit/tools/" \t "_target" here. The Resource Kits generally provide you with not only the executable file, but also with complete information on how to use the tools, along with examples. Figure A, for instance, shows the syntax for ADDUSERS.EXE, a command line utility you can use to create users and groups within a script. Figure A  INCLUDEPICTURE "http://cms-bigip.cnet.com:9992/Rhythmyx/TRResourceUpload/previewart.gif?contentid=315612&seq=34540" \* MERGEFORMATINET  The Resource Kits conveniently group the tools by functionality, as shown in Figure B. You can use the Search tab if you need to find a specific tool. Figure B  INCLUDEPICTURE "http://cms-bigip.cnet.com:9992/Rhythmyx/TRResourceUpload/previewart.gif?contentid=315612&seq=34541" \* MERGEFORMATINET  Table A lists a few of the many Resource Kit tools you might find useful in your scripts for network administration. Table A Delprof.exe Deletes user profiles from a Windows 2000 computer Delsrv.exe Unregisters a service Regini.exe Edits the registry with a script Logoff.exe Automatically logs off when used in an unattended installation Permcopy.exe Copies share and file permissions from one share to another Now.exe Stamps current date and time Also consider KiXtart The Windows Resource Kits also include a great scripting tool called KiXtart. This tool is a logon script processor and an enhanced batch scripting language developed for Windows by Ruud van Velsen of Microsoft Netherlands. It's free software, but the author calls it CareWare and asks that users donate to a charity in lieu of paying a fee for using it. You will find documentation for the tool, as well as the actual files for download, at  HYPERLINK "http://www.kixtart.org/" \t "_target" kixtart.org. The manual available for download from this site carries 120 pages of extensive documentation. The only file required for Windows NT and higher is kix32.exe. With it, you can launch any KiXtart script, which is a text file written in the KiXtart scripting language. The language is neither shell scripting nor VBS, but a separate scripting language with a great deal of functionality. It can process commands based on group membership, and it can be used for mapping drives, editing the registry, manipulating the file system, and a lot more. Each script file, created with a text editor such as Notepad, is saved with the extension .kix. Let's say you create a file and name it myscript.kix. This script can then be run with a simple command like this: Kix32.exe myscript.kix You can execute it at the command prompt or place the command into a Windows shell script. End sum Now that you know about all of these great tool resources available to you, you can start using them in your scripts. You will want to take the time to learn them, of course, as well as practice them extensively on a lab network before you use them on a production network. Fortunately, both the Resource Kits and KiXtart have good documentation on syntax and usage. These resources can help you write admin scripts A lot of excellent references and tutorials are available to help you learn how to write scripts. If you're learning scripting specifically for network administration, however, you should be aware that many resources lean heavily on scripting for the Web. Although the scripting languages may be the same, such as JScript or VBS, their purposes are different. Network administrators will find that resources focusing on Web scripting won't be terribly useful. Thus, I'm going to discuss some of the best books and online resources you can use for further study. Useful books If you go to the  HYPERLINK "http://www.amazon.com/" \t "_target" Amazon.com Web site and search on the keyword scripting under books, you'll probably find more than 80 titles listed. Some of them are for UNIX shell scripting, some cover mainly Web scripting, and some deal specifically with scripting for network administration. I'll highlight three of the most useful books that I'm familiar with, but there are certainly other good ones out there.  HYPERLINK "http://www.amazon.com/exec/obidos/tg/detail/-/1931841268/qid=1057674046/sr=2-1/103-3355448-7980660?v=glance&s=books" \t "_target" Microsoft Windows Shell Scripting and WSH Administrator's Guide, by Jerry Lee Ford, Jr., Premier Press, 2002, ISBN 1-931841-26-8. I really like this one. It covers shell scripting, the Windows Script Host, JScript, and VBS, all from the point of view of a network administrator. It's actually one of the few I've seen that covers using the FileSystemObject, Shell object, and Network object. It gives examples and shows the correct syntax in both JScript and VBS for each one. The section on Windows shell scripting is quite comprehensive.  HYPERLINK "http://www.amazon.com/exec/obidos/tg/detail/-/0764533096/qid=1057676705/sr=1-3/ref=sr_1_3/103-3355448-7980660?v=glance&s=books" \t "_target" Windows NT Scripting Administrator's Guide, by William R. Stanek, M&T Books, 1999, ISBN 0-7645-3309-6. This is similar to the first book, in that it covers using both Windows shell scripting and the Windows Script Host with JScript and VBS. But each book covers various functions in slightly different ways, with different examples. If you're having trouble understanding some aspect of scripting, it can be useful to go to another source. Often, looking at the two books together can lead to a better understanding.  HYPERLINK "http://www.amazon.com/exec/obidos/tg/detail/-/1576108813/qid=1057676705/sr=1-2/ref=sr_1_2/103-3355448-7980660?v=glance&s=books" \t "_target" Windows Admin Scripting Little Black Book, by Jesse M. Torres, The Coriolis Group, 2001, ISBN 1-57610-881-3. This book is quite different from the other two. It is designed to get the network administrator up and running quickly for any given task. Instead of offering a progressive tutorial on scripting, it is divided into specific functions, such as scripting installations and updates, file management, and local and remote system management. Within each functional area, it discusses specific actions, such as scripting a silent Windows 2000 service pack installation, and provides the specific information you need to create that script. It serves as a nice complement to one or both of the first two books. Web sites for admin scripters As you might expect, Microsoft MSDN maintains a Web site for scripting. A good place to start is the  HYPERLINK "http://msdn.microsoft.com/library/default.asp?url=/nhp/Default.asp?contentid=28001169" \t "_target" Windows Script page, which can lead you into the details of both JScript and VBS. Although most of this information applies to scripting for the Web rather than network administration, you'll still find some useful information there—such as the detailed documentation on how to use the FileSystemObject object in VBS. In addition to Microsoft, there are several other good sites that can help you learn Windows scripting. Make sure you take a look at these four:  HYPERLINK "http://www.winscriptingsolutions.com/" \t "_target" Windows Scripting Solutions (hosted by Windows and .NET Magazine)—First, I should point out that to access the full content of this site, you must subscribe to its periodical, Windows Scripting Solutions, for $129 in the U.S. or $135 outside the U.S. With that caveat, this site does offer excellent content in the form of useful articles concerning all aspects of scripting. In addition, you can download code to use in your own scripts.  HYPERLINK "http://www.labmice.net/scripting/default.htm" \t "_target" LabMice.net—This site is not strictly devoted to scripting but covers all the aspects involved in supporting and working with a Microsoft network. It's free but requests a donation if you find the site useful. The site serves as a knowledge base that indexes Microsoft, third-party articles, and white papers, and it provides links to other sites that host information you might find helpful.  HYPERLINK "http://www.winnetmag.com/Articles/Index.cfm?ArticleID=5410" \t "_target" Windows & .NET Magazine Scripting 101 Series—This four-part series was written several years ago, but it remains an excellent guide for learning the ins and outs of the Windows Script Host and VBS, along with some good code examples.  HYPERLINK "http://www.winguides.com/scripting/" \t "_target" WinGuides Scripting Guide for Windows—This site allows you to access it for free or pay for premium access. It offers reference information for scripting concepts and techniques, including some excellent code samples. Sticking to the script Plenty of good information is out there to help you learn and improve scripting skills for network administration, but you need to know how to sort it out from all the information that's geared toward Web scripting. Once you do, the key will be to just roll up your sleeves and get to work on it. Dig in and write scripts and test them in a lab environment—and don't be afraid to make mistakes. Listings First steps in VBS scripting for administrators Listing A  INCLUDEPICTURE "http://www.techrepublic.com/images/spacer.gif" \* MERGEFORMATINET   INCLUDEPICTURE "http://www.techrepublic.com/images/spacer.gif" \* MERGEFORMATINET Dim objFSO Set objFSO = CreateObject("Scripting.FileSystemObject") If (objFSO.FileExists("C:\MyFolder\MyFile.txt ")) Then objFSO.CopyFile "C:\MyFolder\MyFile.txt", "\\Server1\SharedFolder\MyFile.txt" Else WScript.Echo("Unable to locate file") End if Listing B  INCLUDEPICTURE "http://www.techrepublic.com/images/spacer.gif" \* MERGEFORMATINET  INCLUDEPICTURE "http://www.techrepublic.com/images/spacer.gif" \* MERGEFORMATINET 'Script to copy MyFile.txt to network share '=============================================================== ' Instantiate FileSystemObject '=============================================================== Dim objFSO Set objFSO = CreateObject("Scripting.FileSystemObject") '=============================================================== ' Test for existence of MyFile.txt and copy if exists '=============================================================== If (objFSO.FileExists("C:\MyFolder\MyFile.txt ")) Then objFSO.CopyFile "C:\MyFolder\MyFile.txt", "\\Server1\SharedFolder\MyFile.txt" Else WScript.Echo("Unable to locate file") End if '=============================================================== ' Release FileSystemObject '=============================================================== Set objFSO = Nothing Wscript.Quit Improve administration by using the Shell and Network VBS objects Listing A  INCLUDEPICTURE "http://www.techrepublic.com/images/spacer.gif" \* MERGEFORMATINET   INCLUDEPICTURE "http://www.techrepublic.com/images/spacer.gif" \* MERGEFORMATINET ' This script will create a shortcut to Notepad in the user's desktop folder ' *************************** ' Instantiate the Shell object ' *************************** Dim objShell Set objShell = WScript.CreateObject("WScript.Shell") ' *************************** ' Reference the target folder ' *************************** Dim targetfldr Set targetfldr = objShell.SpecialFolders("Desktop") ' *************************** ' Use the WshShell CreateShortcut method to create the shortcut ' and specify the TargetPath property ' *************************** Dim shrtcut Set shrtcut = objShell.CreateShortcut(targetfldr & "\Notepad.lnk") Shrtcut.TargetPath = "%windir%\notepad.exe" ' *************************** ' Save the shortcut ' *************************** Shrtcut.Save  TechRepublic Books and CDs:  HYPERLINK "https://techrepublic-secure.com.com/5106-6242-26-21330.html" Quick Reference: Server Commands Pak  HYPERLINK "https://techrepublic-secure.com.com/5106-6242-26-21198.html" Cisco Router Administration Smart Pak  HYPERLINK "https://techrepublic-secure.com.com/5106-6242-26-21237.html" Network Administrator's Tool Kit  HYPERLINK "https://techrepublic-secure.com.com/5106-6242-26-21384.html" Network Administrator's Resource Kit Downloads:  HYPERLINK "http://techrepublic.com.com/5129-6240-1448.html" Example scripts for Windows Script Files  HYPERLINK "http://techrepublic.com.com/5129-6288-1050.html" AdminRepublic scripting primer  HYPERLINK "http://techrepublic.com.com/5129-6240-1740.html" Windows Script Host ClipText library files  HYPERLINK "http://techrepublic.com.com/5129-6240-1790.html" The Network Address Inventory script  HYPERLINK "http://techrepublic.com.com/5129-6240-1754.html" Network Monitor Capture Utility script Articles and Columns:  HYPERLINK "http://techrepublic.com.com/5100-6268-5034932.html" Improve efficiency of admin scripts with programming constructs  HYPERLINK "http://techrepublic.com.com/5100-6346-5034794.html" Script helps identify processes displayed by Windows Task Manager  HYPERLINK "http://techrepublic.com.com/5100-6270-1043861.html" Customize logon scripts with KiXtart 2001  HYPERLINK "http://techrepublic.com.com/5100-6350-5032650.html" Check network status with this Perl script  HYPERLINK "http://techrepublic.com.com/5100-6346-1056343.html" Protect your scripts with the Script Encoder  TechRepublic communities engage IT professionals in the ultimate peer-to-peer experience, providing actionable information, tools, and member services to help members get their jobs done. TechRepublic serves the needs of the professionals representing all segments of the IT industry, providing information and tools for decision support and professional advice by job function.  HYPERLINK "http://techrepublic.com.com/2001-25-0.html" CIO Republic: Get analysis and insight on e-business, leadership, executive career, business strategy, and technology.  HYPERLINK "http://techrepublic.com.com/2001-26-0.html" IT Manager Republic: Access technology insights, project management and personal management tips, and training resources.  HYPERLINK "http://techrepublic.com.com/2001-23-0.html" NetAdmin Republic: Get tips on Windows, NetWare and Linux/UNIX administration, infrastructure design and network security.  HYPERLINK "http://techrepublic.com.com/2001-24-0.html" Support Republic: Obtain detailed solutions to desktop hardware, software, and end-user support problems.  HYPERLINK "http://techrepublic.com.com/2001-27-0.html" IT Consultant Republic: Find information and advice on client and vendor relations, project management and technology. TechRepublic site features  HYPERLINK "http://nl.com.com/acct_mgmt.jsp?brand=techrepublic&return_to=http://techrepublic.preview.com.com:8001/2001-1-0.html" Free e-newsletters: Keep up-to-date on any aspect of the IT industry with TechMails--from tech stocks to daily software tips, from IT careers to hot trends--delivered right to your e-mail Inbox.  HYPERLINK "http://techrepublic.com.com/2001-6240-0.html" Free downloads: We've collected resources to make your job easier, including ready-to-use IT forms and templates, checklist, tools, executables, Gartner product analysis, and other white papers.  HYPERLINK "http://techrepublic.com.com/2001-6242-0.html" TechRepublic's books and CDs: Find the latest books and CDs available about today's critical IT topics including: PC Troubleshooting, VPN, TCP/IP, Windows Client & Server, Cisco and more.  HYPERLINK "http://techrepublic.com.com/5221-6230-0.html" Discussion center: Open a discussion thread on any article or column, or jump into pre-selected topics: career, technology, management, and miscellaneous. The fully searchable Discussion Center brings you the hottest discussions and threads, and allows you to sort them by topic and Republic.  HYPERLINK "http://techrepublic.com.com/5140-22-22-16341.html" Try our premium subscription product, TechProGuild, free for 30 days. Our online IT community provides proven, real-world solutions and the latest articles resources, and discussions affecting frontline IT pros. Get access to over 250 full-text IT books, exclusive downloads, in-depth articles on network and system, PC troubleshooting, networking and Cisco infrastructure information, help desk and support, and more! PAGE  Page PAGE 1 Copyright ©2003 CNET Networks, Inc. All rights reserved. To see more downloads and get your free TechRepublic membership, please visit HYPERLINK "http://techrepublic.com.com/2001-6240-0.html"http://techrepublic.com.com/2001-6240-0.html. Windows scripting guide for administrators PAGE  Copyright ©2003 CNET Networks, Inc. All rights reserved. To see more downloads and get your free TechRepublic membership, please visit HYPERLINK "http://techrepublic.com.com/2001-6240-0.html"http://techrepublic.com.com/2001-6240-0.html. Scripting guide for Windows administrators TechRepublic: The collective voice of it professionals Related TechRepublic resources: Scripting guide for Windows administrators Page  page 6 Related TechRepublic Job Aids: .{|½¾æÉŹåę@ A B ` a e g · Å Æ Į Ā Ś Ū Ü Ż ų ł ÷īąĶą·Ķ§ĶąĶą‘Ķ§Ķąƒzshsh^XX hŸV)0JRjhŸV)0JRUjhŸV)5U\ hŸV)5\ hŸV)5hŸV)jhŸV)UmHnHu*jŁhŌ>Ė6CJU]mHnHuhŌ>Ė0JR6CJ]mHnHu*jhŌ>Ė6CJU]mHnHu$jhŌ>Ė6CJU]mHnHuhŌ>Ė6CJ]mHnHuhŌ>Ė6CJ]hŌ>Ė5CJ\e — Æ Į V Õ NæBĆ6Øņō/6+éU#:ėŁ×ÕĻĶĶĶĶĶĶĶĶĶĖÉ×ÕĒ×ÕÕĒCBQP¤š¤dš¤š-DMĘ ’óóógdŌ>Ėdš¤x¤-DMĘ ’óóógdŌ>ĖE  D { żżżżł ś ū 5 6 7 P Q R S T U V W X s t u v “ µ ¶ Ļ Š Ń Ņ Ó Ō Õ Ö × ņ ó ō õ -./HIJKLMNOīäÜ×Ķ×ĀĶ×Ķä¶ä°¬°›äÜ×ĶאĶ×Ķä¶ä°¬°äÜ×Ķ×tĶ×Ķä¶äjOhŸV)U!jŌhŸV)>*B*Uph’jYhŸV)U!jŽhŸV)>*B*Uph’hŸV) hŸV)0JRhŸV)CJOJQJaJjchŸV)UjhŸV)U hŸV)hŸV)0JRaJ(jhŸV)0JRU!jčhŸV)>*B*Uph’-OPklmnžŸø¹ŗ¼½¾æĄĮÜŻŽß !";<=?@ABCD_`ab”¢£¼½¾ĄĮĀśöśåŪÓĪÄĪ¹ÄĪÄŪ­ŪśöśœŪÓĪÄĪ‘ÄĪÄŪ­Ūśöś€ŪÓĪÄĪuÄĪÄŪj1hŸV)U!j¶hŸV)>*B*Uph’j;hŸV)U!jĄhŸV)>*B*Uph’hŸV)CJOJQJaJjEhŸV)UjhŸV)U hŸV)hŸV)0JRaJ(jhŸV)0JRU!jŹhŸV)>*B*Uph’hŸV) hŸV)0JR.ĀĆÄÅąįāć/01345678STUV†‡ˆ”¢£„¦§Ø©ŖÅĘĒČŠŃŅėģķļōźäąäĻźĒĀøĀ­øĀøźōźäąäœźĒĀøĀ‘øĀøźōźäąä€źĒĀøĀuøĀj hŸV)U!j˜ hŸV)>*B*Uph’j hŸV)U!j¢hŸV)>*B*Uph’j'hŸV)UjhŸV)U hŸV)hŸV)0JRaJ(!j¬hŸV)>*B*Uph’hŸV) hŸV)0JRjhŸV)0JRUhŸV)CJOJQJaJ.ļšńņó* 3 š ż !›!Õ(Ų(”/¤/1Ž1˜2©2f3m3¦6§6ä6å6š6ń6T7[7‰>Õ?ŌDÕDļEšE—IŸIĻIŠIXJYJZJ[J@KHKSKTKÜKŻKŽKßKöģąÉžžžŷŷŭŷŷńń›„ŷŕŭŏžńń‡„žńń„j• hŸV)UjŽ hŸV)U hŸV)0JX hŸV)^JhŸV)>*B*ph’jhŸV)UhŸV)OJQJ^J hŸV)6] hŸV)5\hŸV)-jhŸV)5B*CJU\mHnHph’uhŸV)CJOJQJaJjhŸV)0JRUjhŸV)U2:FT£³ÄĻŪ½Õ* š !M##¢$•%„%ń&)Ø+¦,½,J-Y-0.A.H/żūūóóóóļķżóóóėżūķżūūūķżķżķżC¤x Ęh¤(H/N1Ž1*3Ć3Ś35r7b9ė9 :•:ś;ż<=@==‰=‰>Õ?ē?MA²BģBĀDÕDāEšEżū÷żõóżżżõóżżėėėõóżõóżéóūżõ Ęh¤(C¤xšE–GIĘIĻI\J‚JJKSKąKL7L±L–NĄNęNO÷O[R£S“SXUżūūłöōūłņōšżūīīīūūūāŚ¤<$If G„¤x$If]„CZ!Z$ßKæNĄNåNęNOOkQzQSSeSfS…S‹SdTuTńTųTXUYU•V–VZWX—[˜[ß\ą\ų\ł\$]%]"j?kPqQq}r~r ssssuwvwšz›zK{L{‹{Œ{ļ|ö|]}a}e}j}%~)~-~2~€§Ø©üņüņüņüėüėüėüėüėüėüāüņüņüņüņüņüņüÜüņüŌüŌŹŌüņüņüņüņüĆüėüėüėüėüøĆŖøjŒFhŸV)5U\jhŸV)5U\ hŸV)5\hŸV)>*B*ph’jhŸV)U hŸV)^JhŸV)5CJaJ hŸV)6]hŸV)OJQJ^JhŸV)AXUYUxV–VZWX¤Y|[˜[Ä\ą\ł\%]Ž]w_ _•‘‹‰C¤šikd¬C$$If–lÖ”¶Ö”’ü$h% tąÖ0’’’’’’ö6ööÖ’Ö’Ö’Ö’4Ö4Ö laö _!bOcTd¬deege±e·gNhXh"j>kokølGn[nÖoCqQq!s>s¤tŠuAvCwvwżūūóóńżóóóńżūļżūńżūķūńżūūūķC Ęh¤(vw–yz›zA{L{Œ{£{ų|} },}-}9}H}żżūżūūł÷õļļ”ļļNkd,D$$If–-Ö0”’ęūö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfCH}I}U}‘}’}œ}½}±««]««NkdÄD$$If–-Ö0”’ęūö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkdxD$$If–-Ö0”’ęūö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö½}¾}Ź}ī}ļ}ż}~±««]««Nkd\E$$If–-Ö0”’ęūö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkdE$$If–-Ö0”’ęūö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö~~~[~\~h~‹~±««]««NkdōE$$If–-Ö0”’ęūö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkdØE$$If–-Ö0”’ęūö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö‹~Œ~Š.‚‚Gƒ\ƒ„#„H†Š†tˆˆŠ‰·‰ž‰ Š@Š±­««©§««©§„§©§©§££C¤xNkd@F$$If–-Ö0”’ęūö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö©²³Š‚ų‚’‚Gƒ[ƒÜƒŻƒ„„„ „„„¾ˆÅˆ‰ ‰ Š Š?Š@Š˜ŠŸŠ©Š¾Š›‹œ‹ĒĪŁåXŽYŽģŽōŽ’Žˆ‰óčäŽä×äĶŽĄ·§Ą˜ĄŽä×ä×äŽäŽä‡ä‚ä}ä‡ä‚ä}ä‡äuäujhŸV)U hŸV)6 hŸV)5 hŸV)5\hŸV)OJQJ^JhŸV)5>*B*\^Jph’jGhŸV)5U\^JhŸV)5\^JjhŸV)5U\^JhŸV)OJQJ^J hŸV)6] hŸV)^JhŸV)jhŸV)5U\hŸV)5>*B*\ph’*@Š”Š©ŠµŠ¾ŠæŠŃŠŽŠßŠģŠüŠūłóó„óóWóóNkdčG$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laöNkdœG$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$If¤x üŠżŠ ‹‹‹‹1‹±««]««Nkd€H$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkd4H$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö1‹2‹5‹?‹@‹C‹J‹±««]««NkdI$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkdĢH$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laöJ‹K‹N‹Y‹Z‹]‹f‹±««]««Nkd°I$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkddI$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laöf‹g‹j‹t‹u‹x‹}‹±««]««NkdHJ$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkdüI$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö}‹~‹‹‹‹Œ‹œ‹ŠŃŁ±««][YYYW!NkdąJ$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkd”J$$If–-Ö0”’'wö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö Łåęńņ’ŽŽ÷¼÷÷F÷;kdØK$$If–-Ö”’jö6öÖ’Ö’Ö’Ö’4Ö4Ö laö;kdjK$$If–-Ö”’jö6öÖ’Ö’Ö’Ö’4Ö4Ö laö;kd,K$$If–-Ö”’jö6öÖ’Ö’Ö’Ö’4Ö4Ö laö$$IfŽ ŽŽŽ$Ž%Ž2ŽÄ¼¼F¼;kdbL$$If–-Ö”’jö6öÖ’Ö’Ö’Ö’4Ö4Ö laö;kd$L$$If–-Ö”’jö6öÖ’Ö’Ö’Ö’4Ö4Ö laö$$If;kdęK$$If–-Ö”’jö6öÖ’Ö’Ö’Ö’4Ö4Ö laö2Ž3ŽEŽFŽYŽöŽ’ŽŒ‘V’w’š’ģ’ļ}{yu}rpp##$¤šZ!;kdŽL$$If–-Ö”’jö6öÖ’Ö’Ö’Ö’4Ö4Ö laö$$If;kd L$$If–-Ö”’jö6öÖ’Ö’Ö’Ö’4Ö4Ö laö ‰Š‹’’“&“'“(“1“2“——6—7—b—c—Ö—Ž—V˜l˜g™h™"š#š[š\šŽššč›é›dœeœŒœœ·œøœ349:<=ŗ»ĀĆÉŹBžCžSžTžŸ£ £j¤k¤Ń¦Ņ¦ē¦č¦š¦ń¦ö¦÷ļėįÜĻįÄįėŗėŗėŗė³ėÜė®ėØėØėØėļėļžļėļėļžļėļėļžļėļėļžļėŗėŗėŗėŗėŗėhŸV)>*B*ph’ hŸV)^J hŸV)6 hŸV)5\hŸV)OJQJ^JhŸV)5>*B*ph’jükhŸV)5U hŸV)5jhŸV)5UhŸV)jhŸV)UjMhŸV)U>ģ’’’T“Ę”ų”?•H•P•Z•õ–—7—c—„—Ö—N˜V˜b˜k˜żł÷õóėėėłééé÷õóēįį$If Ęh¤(C¤x#k˜l˜z˜—˜˜˜¤˜ŗ˜±««]««NkdŃl$$If–-Ö0”’š™ö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkd…l$$If–-Ö0”’š™ö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laöŗ˜»˜Å˜Ų˜Ł˜Ü˜ō˜±««]««Nkdim$$If–-Ö0”’š™ö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkdm$$If–-Ö0”’š™ö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laöō˜õ˜ų˜ ™ ™ ™!™±««]««Nkdn$$If–-Ö0”’š™ö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkdµm$$If–-Ö0”’š™ö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö!™"™%™>™?™B™U™±««]««Nkd™n$$If–-Ö0”’š™ö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkdMn$$If–-Ö0”’š™ö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laöU™V™h™š#š\šš£šO›Vž—ž° ą Y¢ø¢Å¢Ō¢Ū¢±Æ­«««©§­„§©§­ Ęh¤(C!Nkdån$$If–-Ö0”’š™ö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laöŪ¢c£ £$¤k¤¬¦Ņ¦č¦ń¦÷¦&§WŖŚŖ «j«Ę«ó«­­y®ˆ®¦®»®Ä®Ź®č®ƔƦÆūł÷ł÷łłłłł÷÷łł÷õół÷łłłłłłõółC¤xö¦÷¦%§&§)ŖVŖ« «i«j«­­‡®ˆ®„®¦®ŗ®»®Ć®Ä®É®Ź®ē®č®„Æ¦ÆĄÆĮÆĒÆČƱ±#±$±(±-±N±O±U±V±f“l“o“w“„“‹“Œ“Õ¶Ö¶÷¶’¶ · ·“·”·•·–·—·øø8ø9ø‹ø“øžøŸø'¹(¹)¹*¹+¹Ö»ß»öņöņėņöņöņöņöņöņöņöņöņöņöņöņöņöņöņöņöņöņėņėņėöņöņäņÖöÖČÖöņöņöņäņÖöÖŗÖöņėjµ‹hŸV)OJQJU^Jj1ohŸV)OJQJU^JjhŸV)OJQJU^J hŸV)5\ hŸV)6]hŸV)hŸV)OJQJ^JH¦ÆĮÆČÆļ°±$±)±O±V±<²N²a²‡²š²Ą²Ó²ū²³.³a“Œ“½“į“µ.µOµńµĀ¶żżūżżżżżūżżżżżżżżł÷żūļļļļėū¤x Ęh¤(CĀ¶Ö¶· ·—·ś·ø9ø•øžø+¹G¹Ż¹3ŗ‰ŗĻŗ'»Ķ»ą»÷»ü»0¼C¼Z¼_¼“¼£¼żūł÷óżżūł÷ļķååååßżżżżżżżżż¤x¤x Ęh¤(C¤š¤xß»ą»ä»ö»÷»ū»ü»/¼0¼9¼B¼C¼G¼Y¼Z¼^¼_¼’¼“¼¢¼£¼§¼¹¼ŗ¼¾¼æ¼ņ¼ó¼ĮĮPĮQĮXĮYĮlÅmÅĘʂʃʑʘĘĻĘŚĘ'Ē3Ē8Č9ȊȋČIÉJÉĶÉĪÉåÉęÉļÉšÉKŹLŹeŹfŹŖŹ«ŹĖĖĖĖ„Ė­Ė8Ģ9ĢĮĢĀĢĆĢÄĢĶĶśöļśöśöśöļśöļśöśöśöśöļśöśöśöēöēŻēöÓöļöÓöļöļöļöÓöÓöēöēŻēöēöēŻēöēöēŻēöĢöēöēÄēöĢjP©hŸV)U hŸV)5\hŸV)OJQJ^JhŸV)>*B*ph’jhŸV)U hŸV)6]hŸV) hŸV)^JM£¼ŗ¼æ¼ó¼Ę½Ö½~æ±æ†Į„Į^ĀŲĆÅmÅNʃĘČ9Č‹Č¢Č Ė„Ė/Ģ8ĢÅĢ\ĶeĶņĶżżżł÷õóõ÷õńńżńżńżż÷õńńļķéļķ¤šZC¤PĶeĶfĶīĶļĶšĶńĶłĶoĪ|Ī±Ī½ĪÕĪįĪĻĻQĻ_ĻĻ¦Ļ>ѕіŃČŃÉŃŌŃÕŃÉŌßŌąŌ4Ł5ŁfŁgŁqŁrŁ–ŁŸŁéŚźŚxŪyŪøŪ¹Ū–Ż—Ż0Ž1Ž[Ž\Ž7ą8ąŃąŅąūąüą ä!ä‘ä’ä ä”äbęcę£ę¤ęæęĄęUēpē\čüōüōģōåüąüąüąüąüąüąüŚŠŚŠÄŠŚüŚüōüōŗōü³üōüōŗōüōüōŗōüōüōŗōüōüōŗōüōüōŗōü³ü hŸV)6]hŸV)>*B*ph’hŸV)>*B*^Jph’jhŸV)U^J hŸV)^J hŸV)5 hŸV)5\j0źhŸV)UjhŸV)UhŸV)FņĶgĪoĪ|Ī°Ī±Ī½ĪŌĪÕĪįĪūłóėóėOóNkd› $$If–-Ö0”’¹åö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laöNkdO $$If–-Ö0”’¹åö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$$If$If¤š įĪĻĻĻPĻQĻ_ĻœĻ÷©£÷U£÷Nkd3!$$If–-Ö0”’¹åö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$IfNkdē $$If–-Ö0”’¹åö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$$IfœĻĻ¦ĻÄĻÅĻŪĻ>Ń6ŅöÓÉŌ±«£USQOOOCNkdĖ!$$If–-Ö0”’¹åö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö$$If$IfNkd!$$If–-Ö0”’¹åö6öÖ’’Ö’’Ö’’Ö’’4Ö4Ö laö ÉŌąŌ;ÕCÕ²ÖäÖŁ#ŁéŚ–Ż7ąć»ćŃåbę\č/źqėŒģ£ģ.ī8īhīrīŹī-šżūł÷õ÷ł÷ķķķł÷ūķķķķł÷õėēāżd¤<E Ęh¤(C\č]č¤č„č°č±č/ź0ź…ź†ź²ź³źqėrė°ė±ėÖė×ėhīrīsīĘīĒīČīÉīŹīĖīļļ ļ!ļ-š7š8š‹šŒšššāšćšäšåšAōƒōōŽōįōāōćōäōåō÷ó÷é÷ó÷ó÷é÷ó÷ó÷é÷óäŲŠŲÄŲŠŲŠŲøŲóä®Ø®ž®Ø®”®Žó‡÷ó÷÷ój'hŸV)U hŸV)5\ hŸV)0J[j1&hŸV)UaJjÓ$hŸV)UaJ hŸV)aJjhŸV)UaJju#hŸV)CJUaJj"hŸV)CJUaJhŸV)CJaJjhŸV)CJUaJ hŸV)5hŸV)>*B*ph’hŸV)jhŸV)U2-š7šAōƒōōåō0ų=ų>ųAų]ųĻųBł°ł"ś#ś.ś˜śųśdūŹū2ü3üIüĶüSżūł÷óīłłģęęÜÜÜÜęęÜÜÜÜÜęęÜÜ „Š„^„Š`„„`„d¤<E¤xåōęō9õ:õ;õ<õ>ų@ųAų]ų^ų§ųØų©ųĶųĪųĻųŠųłłł@łAłBłCłŒłłŽł®łÆł°ł±łśłūłüł ś!ś"ś.ś/ślśmśnś–ś—ś˜ś™śÖś÷ó÷ė÷óŻóŌŹÅøŹ±ŹÅŹÅ¤Ź±ŹÅŹÅ—Ź±ŹÅŹÅŠŹ±ŹóŌŹÅ}Ź±ŹÅŹÅjļ-hŸV)5Uj-hŸV)5Uj,hŸV)5Uj4+hŸV)5U hŸV)0JR5jK*hŸV)5U hŸV)5jhŸV)5UhŸV)5CJaJjhŸV)UmHnHujķ(hŸV)UhŸV)jhŸV)U/֜לŲśöś÷śųśłś6ū7ū8ūbūcūdūeū¢ū£ū¤ūČūÉūŹūĖūü ü ü0ü1ü2üHüIüJüŠü‹üŒüĖüĢüĶüĪüżżżQżRżSżTż”ż•ż–żæżĄżóéāéŻéŻŠéāéŻéŻĆéāéŻéŻ¶éā鲩”鯔éāéŻéŻ‡éāéŻéŻzéāéj²3hŸV)5UjŪ2hŸV)5Uj2hŸV)5UhŸV)CJaJhŸV)5CJaJhŸV)j31hŸV)5Ujb0hŸV)5Uj‘/hŸV)5U hŸV)5 hŸV)0JR5jhŸV)5UjĄ.hŸV)5U0SżĮż0ž”ž¢ž£ž¦ž!"Õ‹Bč›œ·’ū^_E N O P õõõóóķėėėėėėėėėėėėėėėāÜė„h]„h„ų’„&`#$„`„ „Š„^„Š`„ĄżĮżĀżžžž.ž/ž0ž1žqžržsžŸž ž”ž£ž„ž¦ž"#[\]jkÕÖ$%‹ŒÄśšśćšÜšśšśĻšÜšĖś»µ«›}›p›«›]›p›«›$jž6hŸV)5OJQJU^JhŸV)0JR5OJQJ^J$j76hŸV)5OJQJU^JhŸV)5OJQJ^JjhŸV)5OJQJU^JhŸV)OJQJ^J hŸV)^JjhŸV)U^JmHnHuhŸV)j`5hŸV)5U hŸV)0JR5j‰4hŸV)5UjhŸV)5U hŸV)5#ÄÅĘŲŁBC{|}Žčé!"#:;œ·ø9:;NO’:;<KL;ķŻŠŻĘŻ»ØŻŠŻĘŻ»•ŻŠŻĘ†Ż»sŻŠŻĘŻ»`ŻŠŻĘŻ»$js;hŸV)5OJQJU^J$j:hŸV)5OJQJU^JhŸV)5CJOJQJ^JaJ$jS9hŸV)5OJQJU^J$jŒ8hŸV)5OJQJU^JhŸV)5OJQJ^JhŸV)OJQJ^JhŸV)0JR5OJQJ^JjhŸV)5OJQJU^J$jÅ7hŸV)5OJQJU^J$;<=Z[ūü678JK_`Ÿ ”ęēE F L M N P U V \ ] ^ _ ` ™ ē č ķŻŠŻĘŻ»ØŻŠŻĘšĘ‰šŠšĘyyuoydyYʚhŸV)OJQJ^Jhhe|ß0JOmHnHu hYž0JOhŸV) hŸV)0JOjhŸV)0JOU!jŌ=hŸV)OJQJU^JjhŸV)OJQJU^J$j =hŸV)5OJQJU^JhŸV)5OJQJ^JhŸV)OJQJ^JhŸV)0JR5OJQJ^JjhŸV)5OJQJU^J$j><hŸV)5OJQJU^J"P ` ™ Q R } ~ ‡ ˆ ‰ Ć { | } ~  €  ‚ ƒ ļå߯ŁŻŠŹŻ½“Ż«Ż«ŻŻŻŻ  ĘN I ¤< 7$8$H$gdĆt© „h7$8$H$]„hgdĆt©„h]„h„ų’„&`#$P¤7$8$H$ „h7$8$H$]„h„ž&„+„Ė& #$+DmgdYžč  ! " N O Q R } ~  … † ‡ ‰ Š Ć   J K L x y z { | öå×Ē×öĆŗĆ°Ŗ°ŖƔ‡{k{XkFk{öĆ#hŸV)0JRB*CJOJQJ^Jph’%jt?hŸV)CJOJQJU^JjhŸV)CJOJQJU^JhŸV)CJOJQJ^JhŸV)CJOJQJ^Jh*jhYžCJOJQJU^JmHnHu hŸV)0JOjhŸV)0JOUhŸV)5CJ\hŸV)hŸV)0JRB*OJQJ^Jph’jhŸV)OJQJU^J!j©>hŸV)OJQJU^JhŸV)OJQJ^J| } ~  €  ’ ½ æ Ķ ö ÷  B G L M S T U V W X \ { | ńķńķéķÕķÕĮķÕ­ķ Ž Ž{Ž wķÕmhŸV)OJQJ^JhYž$he|ßCJOJQJ^JhmHnHu"jhYžCJOJQJU^JhhYžCJOJQJ^Jh&hŸV)5B*CJOJQJ^JaJph’’’&hŸV)5B*CJ OJQJ^JaJ ph’’’&hŸV)5B*CJ$OJQJ^JaJ$ph’’’he|ßhŸV)hŸV)B*CJ$OJQJph’’’ƒ „ … † ‡ ˆ ‰ Š ‹ Œ  Ž   ‘ ’ ¦ ½ ¾ æ Ķ ö ÷  B C D E F G żżżżżżżżżżżżżżżżżżżżżżżżżżżżżG W X Y Z [ \ { | ķåćććććć$a$gde|ß$„h¤x7$8$H$]„ha$gde|ß+ 0&P°Š/ °ą=!° "° #p$ö%°°&°(&P°Š/ °ą=!° "° # $ %°°°°$°Š/ °ą=!° "° #Ć$ö%°°&°$°Š/ °ą=!° "° #Ć$ö%°°&°nš°SäĢNœóg H3דn’‰PNG  IHDRrT1š*„ĄPLTEZ½/b™$S…Bl„¶ŻžžžEqT}»”Ŗ×i‹ÅBs³;m©Œ£Ōr’Ź=g…žŅ,]“eˆĆHu\ƒĄa…Į M|ŖŗąJx6h£)ZŽOz¹&UˆJh–x•Ģ8k¦|˜ĪlĒĪŌę=o­‡—ŗGvµ3fŸLx·œ©Ę'X‹:^ŽµæŲ°Ū?q°hØCv·Zt )W‰ĀŹŽ€›ŠoČ-WˆKr©9a”Hy»Gm”žĀęčņv‘ĆUæ"P€Iw·y‹²tE}qbKGDˆH cmPPJCmp0712Hs¼RuIDATx^•½‰ZIÓ4*0Ģg0² ĢŽŲwĆ°Ü’]Ų²ŗ…=ļ’±ƒ¢;:2#2³jšŗżć“·šķņīĆ?’|xū’ošGŗ'īÄ_łą»~Įķ;n_æ|’ņ•·ļ_õ>Ć÷ńMž·/ų)æüĄļšĪś‘ŽėæĮĀ¾}Y++;KKwóó;óÆü6ŚõxžĪ ß^¦ł:=­·c¼ÆÆÆ/ć655u8uø¶öcqqļüüąąhnnn0ā±w–īī¶¶¶¶·o·o?ė„nŪŪüžÖŅÖŅŅÖŻŅŻĪüŻŹŹpøŗśĒ÷Ļšx£Ÿnų|fx]į=ųde~e8ĻŸ¬ø#oGGÆ|ē{{{~@> ¾š_^?^?>ĘąQŲ˜ŽĄŃ«ĻPŌW|>µv~“:æ“t{ū·O··[KóƇó5<_ž+ž—xž‹ēxŗsƝ„­ķŪ[£-#,¼šżķööēĻų‰nŪ·ƒ?`žųŠ„@%KA”a„ļņU÷ć _żó?ćO 3į °A  <Ä>1,…La”_}ų>BÄ sž„ÆĖ8«+<Ż;ó+;«Sś¦ĮŒ7=vĆßĖ `‡·Ā4:!§£†3qxØsĻSŒ‚.ĆĆÆ×x5 ’øĒæ½:ąsģš/ąiģł”m=¼.+ųĒ;Ü5Į.7]“¼2}‰..Ķ­Ü2üēń Ä­Īqx„ŗĆ©5@’ĄŽ0÷<·dqŗ>yĆa3Ųš¾‡Ü;žėĮČ°#“M¦1|ļ»0Fˆ x¼ß?śiń˜ŁĒLD’óē&0¢Š<'“ cųAčńy/ā-~xYı®ģˆb–ęĻIe5?š‹/ł„_s¼ÓMóāĖsDĪ>)g4‡†S'ȁÅt•ā éXå.\¾qøķąŌƬpsx/œ/ģ‘ŗš˜kBt×C'Ģā8NLGĀ%ąČ~äŻ££W‘ž©Œ4'vĆóÓŽ‘łųķįD+¦#ä„|@7ќž€9Xa7Bßż;äg‹ēw L ¦š%ą‰żBnD$?5~'ī±œyNéÜ4©®Ką€8,\$rsHä@qŹä„øĖ=".SbžCn‚æČŒ85ŃĒƘŒ.üČżU8„āˆŸ Ɓ‰HJd!ķ"š Œ ” ²&« žŽ”—äMP߉×$ šhųo—‰Ņ Ä$9ū•ł%žģ„•eKS`bĪ†:$¤¹ÜxItĒI‘Œ8²ī-@AŒF„VęL ­ [Į™Ņ8ĪW0ć*Łē<ōĢ“żzp z¢~`ZęĽFąÅ} č\4„r9AD”•|¹pš:¢Ø”‚Š„FŌ•|PN²“¬@>I*\Ė1™Ļ‰:łļ­õ³9€ī˜h›>ęõ‡ø:‘Ī%‘ūq>ZJ ż|»½tÄ!ÓÕŹ›¢41Ē’åDyłU”U×Ŗ®I<€“.]ēt’#— Ž€ÉdjÅfŽ{ «‰¬¾›Ņ¹’²b¶JĒ$Œ‡hžPTi„”÷Ń_ńš«@Gt¾¬­2½ßa5æs·0•štNÖt÷Šį’ģZŽb–ŪšQ œcŠÜ"`ʱgœ[0čaF”ø@²ć«ć¹…gĶ,†”|`Å$Š§šY±S‘•¹{Że£ œĪ s”V­¬V³Œ­J0ńŒ8ž§sę7\tV®ĪēpX†+B>ņ€ī€ BO‘UhĒs°hu:–ŚÓ!—Ė•¹>µxš<Ä’OŁ lZUē!ČUšj1Db>:Ą“]!Ņ(æLsŗrž‰[K…£*^‚4R^‡&„n‰Ŗ¬Ę\…Ōś‘¶ø*2”4G“É ø‚²M ½h 'u2N]æ^æF;0Łb‰ÖLčōĒŌÄaéÕhĀŽ‡™Ē¬b«mZ &ģ 9œ]„n$Š:TĘ£ė6ckCā*ՃMdsJÜŃÄr<ÓŠ”Ī1¬õ‚¬C+’¬@'ž³b%TpØ©›OB§„ŗ•ņ‰oņM »•&Zē^© Œ¹EjV?‰å©Š«p‹:Ń®TĒ‡Hä†ó@µ:/³ł•ē…µCĄU",YŽōé4A”õąuīW«ÆI¦z/K©c¾»’„œĶgf€S`G šę„b4a- Wł^3ŖTqÕi]…V²©^Brä6[zEy¶ń€„Ć²{ŠŪ’¢ĖØL.‹dp2AüØ=¼£į„‹øKę¬ó—uŠtĘ=‰ęę9œĶDGVįO Æ`ŹžsęQ†ÜčÄäČJĄ1 µ“=!!ržF%Z…±ŹåY©Ečņ)QCŲ+”H•)ÜrˆÆ€>"0ļ~t@on 8ē£*ėM‚’[×-J%s2F„:ÄXĘÕ橵…Ń*-6Pż“„įó%8Ž8ŻĄ/vU‘µAŽĻw4Gk 4‡Ćȑē’ ‚ĀßVńœUkĪNˆ¤(«×ŅŅßģ”mŒÓo 5EGTÅä+õ3RZP˜ūŚ9‘üõūōĮźÜp!©ÜĪĪźzåoeĮXAħS@„ˆ%,Ń*CŲ²+²‘‡a<‡ldnh.1Į²5ÉH“˜Ō%+Ł…zē‰;³(Śę¹æsJčl-Č))¹É”lND‡p‹0 –c‚IQĆŲŸ$Ó9é‚aWOƒ~?˜1žé¬xŽ×££ō­9ĀšaĒĒS?Ī!=“¢źŹóåāį2Co…9>XŁé?~€Ri_žį'h|į!d8 ühłÅŅŻēr.;qŒ°PĶü±9³7gO¤¤jīØą›Ÿ·hįJ$?ė W ^Ń\±œrA@iMW:ż‘ł­ķūpÉóģ”(STŲŽ«ŅÓ¬OŅ‰VqO.SųĮ0JČ)Ļ ­ōƒqģ[ågJīćM×*óÉ;Ę8šĮ”¬ssÆōĹvž»ˆf"ĮU©UēĒ%An;X³sCš³Q‚t9…@§€ Q ķBÆDĮU īQFÉæ˜ČšJH¢{¬9^q*@T&Wāeƒˆ ‰8i‡ķ­»įÜGŁį‘¬$nz%¦6šą“¼BµB{I©*ē–DŌ‘暧ļ?YŽxc<ŽĀ_e’_‡¤&q–‚ØŻ‘ŗ·qhH5Œ -nZ€˜ōŗ›ĻŻÄÄ÷ļŹä &Éqw;kq‡ /ėąx%ߑĆYB$Ŗ’ėģĶńb–då…nÕåóߏ^°%Fņę@sKLēˆ:Rœü‘ęsŖŽu—ōg';z=B8kŁœŌir¹^d-?Ė– VÕ³zP"éёT+ø’üšN`č*­³M"äĆ– –S)„\EƲƒé“0¤tMÆź‚š–Ļ_Y¹Š' ŗŽ.NŸŗxQ&\ŠUÖ¦ŽS\³Æ­LētYšē@;LŽ½’f¹Ŗ;ØŽ`«—ą ·•M"Ŗź:–ZĶŠqūyYÓNӄ'CRŃŁØ4ųų3z Äāø—C\Ę4åģĢM[,Ļ“ešUi,±„'ĖVgø&ZqČxīy†y‚!»Ø QŻ`dµ%Ģ•·éćØĄ ’sC~yÅķą•I”ņ\%sÖ=įš,É!x‹TMJg{š¹ jqÆ¢Ųs$9 ˆ¾;Ź%Y„eģ“P·ŗ”9WZ'*_ė‡{@Ü„YE½gŚ#ĒÓÓėū¦:©V§v˜ āAņx°p„Šj‰ /RZŚ_YŽµ+>ˆ¹Čx¤,|¤EÅnÅNå+ÄŖ®ßjūNŠ„2dŠGW‡»ŠÓņē”ÄŁcńķe)4.fķ;+?ä¼)Fž ö„Kø6_˜ÅVˆ‰” ˜ĪõÆTP‘X…‘Œ'Xv0N(‚€\%’›’9ėU`yüš\$‘DĶłL ²Ļ„½9flJv:±Ź@d‹Ž·ØÓ*@„äˆ((ĆQŅĄŌĶAHr“ˆØ Œ4ŗ‚¬¹±ŗÆtŽ!aŚŅŠ2*µ"Źü-²Zµ@ŠŖĀœü_’ÜśŌHś6…¶¶VVö§Ö]¹įĶ.KYs²·“™ął²nšźrÅeIzP1ZÉ?G.2’ßņĮFI„p.¬’ęģ×FXŠ©„@iˆR®Tčf=J„źwęƐ[%ƒĀ•÷ŹC+¬NˆšĖĢhpż[vvꎣĪĀDķ&Nēź5 GV$™„WüLˆVY³öĀįüBJP­ŅXĪęōAZŸIžƒ„‹œŖ«s0ƒįˆį<“»˜µ÷‹^&¹#.õƒ‚uŻĖQ5ŹB  ­ŠŒ—é'±ˆ°`~hEˆ‚'ßņyōŁņŹše+5+ō§3 GŲ©C$rœ®-#›_3Ŗ*ķcą%;꒝śź‘£ąŃ„+@™°ķr+sśŒNĄŠ §¦‘É&~Kģęf¤’)éĒ Nt$Ż•=ׄtv;«„Õ™p’1GŁ’6OˆNµ€Æs„ R6söł5¤p‚\IÕŖŚźÓ˜Ān&‘]R^»ķdsUÜw 'ē”UEMÉBęsä4VRž­&Ė%W9‹]ĻŅĒń78L'¹"j`FŹ^;ģ`5 ØŠź„B ‡PĻĖ@ä+ӐĪL‚*Ļ!RÉV)Ēx•BØ @t6™]óŖ†¦cÖ­ÉęLsh9@ūˆÕ*›ę‡#XĄą8÷9éøŁœ«n+š;|ŗ° ¦” &-ńZœ©źĖ#qöÖų-ü3śJžŹŃĆ –o!ƔE„| ¬Ē#ŲĄźZB Ł¢ Ģ„-tüŲtƁ&sŀBgr9„sN„““Tv„XęĀ¦œ0%\Ņ Ž©©ŪˆęPcÅ”$Ė1œ1šÉž%&wĀöDuå:‘›ģc7”!L”Ū{źX-—Q¢.&–Z}-øIå6÷ĶIŗ®ŅfšeŽWĪōĀĀā9lB1nל¾9 wZń¶¼¶‡B—ŗ¶ÜņVpT×d'Žsįõr™üt š’ew—ĢKIˆĻĮŲń³Ü¹xfF“œø/u4m£PRC j]hSŠå‚`ļÅ-KiĖģ…UIIˆ®{ī{Śƒķ²+1AV’‘Ų Ė”N «6<æ0^„<2“vui§Åųs(YYß|†~`8[øt׃¤«^}‹¤Īp¤¾9s雋¹R%?Ų‚¤¦tł«aNµV•ö qnę1üGč}ĻIĢȘvKŗ*]s°³9"]™T«“äŌ½Ė¢Ć «­Y=°Õ~ ŗ†xeÉKŌ%‚Š:zĘ³ÓeIKK^ŽŸÖ€”wóõžó U½rģ“3Ņz>õ”ēK°šē¦XIW{*VÆøf>gr1ēĢ…=Ž³hU£Óy>ū»ēu PV­ź $Ī/ī’Ŗā—c°la×t”+§A˜]Lt¾L™;Į–§¬ŖŅv¦9Īžfc‚ŽĶCNŪeępšUÜW×SØÖƵŚ:0ŖģŃ5›!¬LæIŅs'gČŃ6cD»ų|ŗō–¼’{–9ē>ƒ*ś6”FMęsn –ZE”ėņu0dM^…dō+iŅ!ž‰ī)GÓ]®1™Y…9÷ńĒŠŁ?ęųźk"u“ŗsuV‰¬Ŗķ«’ߣM6³“į£›(,±˜|Č_äĒ^7“³·ˆ† Ī"ÕŃ<Łw.SšĆ:2RXŁ:(č7Ø„w3~\×/PÕ\ĮNm%i(ézēčŲNzEjĮ13Ķ„ŅJ¢ÓĶˆcŪs0 ūrė„ŻÅ՚¾9«V·jZ sœž©ŃįR>»‘Ś¾™kś˜žČˆ9æ„97·ĄžLĪ~ijĀ)š«¦¹\®ŗ„TMQ˜ę[ŃwČ$Ž™œ½$”®öX']¹NEØĢ*®Ršsōėn*”WĪ•ŒLčIˆM‰¬,bYz \ż0Śč2tšŒöāj[ĀÕ²tū OŽ¼fĆĪŽæ®&ć¢8~»MCH@؅‰ļSå©nC{‘_Ų ļšÕ†ÉēĢs8!@œm`Ī^”fó0·G7zjMY3éÕ$k‡¹Ģ— rŅH¹j8ģ‡kT­ÓDŒGVFP×¹„7%V„ī1ą©%Ļįé0ŹC@«AJ<ē&&¶ uŖ˜rĖv`ßQīČż8dTÕ°”Ó=}ā×\ŪwbāVgż'ųļ•Īį„A’2—‹™Č ó¹r¹w”µŃk„ŠŽV ęä€É”k ¢(,wd˜ķR;'xEK1t>JfMį[Üśc•]l*®ī,}:·8½É#»³2%ˆ±ģ1åtöšJTGR§­© ×óƒuŁ¦\ŲdkŅ'DÖKv€+oR_’6!GK]’5B&­C'ś8 .YćėV`uźŅ9õŅ„Š*įąĄŚFž…E+ÅśsEŅ­©æēH*–S«Ø«c«²tö;‰sm”°?8ŻTō£ćĶń‚;>ž:ܓZMqog~tŽ¦ĢZ2‚QĮńUCaī N:—‘ÖXIĪźbŅģ75’ČĆÄ SCI†\ Ŗ“ƒśÕ„ž8'Ņ‰«oŽSś¤Œ+5ÖørŹüŒ©öź*X3ŖNQFJ ²9×ל@~łr¬‹‡•Ń’¬™Ķó\ Ŗ|„cćģ27Łs­ACų+!ƒFŚ5Z]õRKŗ9Å]LšeåĘĀAšU‘L×oóĆTŪÄ ŚR’Õż$Š“]š²²œžØ"Ž„Œśyvnõ'8|Ÿõ"xd¾0„<4 „bī\ŽŁÜ*§ŗ—l Nå[Ӝ —Ä4P«{ēh’Š²LX[‹R¾¢2čßē9Z#!T5vć²“ƒWNĖ„œĻ5ūĀģ1Ē½3„+°Ŗˆą™ü W:ÅJ”RPt œ¼U÷ŗ0ķųZØc~ēÜĪ²6¶I«€µ¢qœņ*ĒFńü1”ĻP)+®ėW2Ē9[ŠÆ »6ŽS÷bKI-‡ c®ń}•§³@˜ā˜¦Z•Ŗ³¼+ÆDiœ(ף{łź¶Iģˆį$g ÕĘÜDĒ\Ėę¢ņ¢ ˆPµŚƒ…ńž8C XؼÆČŖKĮ4§±Æ•;½·ĒOXRĪxĮł„Y»Žt[sŠ¬S‹—# Ś+Q…=2æśź¦ĢnĮˆÖĘY^0-ĶōE(s¢`ÓĒś›s­HēH+C¼ņYCG3Ięčō$Ļ%ÆóĄMs<ÄkIĢÅr\:ÄߔląõŅ5ÉA¬ ńgœæZSĢ‚F5Ł{CĪŻ%ט±AĻ¤Ø[ŻšĀIÓ( ų§’†“RÖų¦]Ļ_w†Y3¢‰Öõ©uUŚé“˜ęŅžĘokCąL®xv8«®Ļ°AĶjkĀ#Vņ&@Xź'+ŸÄ ×U½2yĆn½ Ė•ÖLµŅ“ć’×%E¬`/7øŚU ĖEµj¾8>zÓöI@¹z*æņ)ØDJ3œk,a1«˜Żw;ģ<‡#÷’ĄŖ°nęÕķč4ƒ[·foUœj¦„~¾p‰„˜mVšF6G ˜sóOüū²—°Øf$'ņÖ Õ®›ÅjĢ#ŃUÓ33ńzī\‡0ųŗk˜łMq8ņ¢ŲÆtņ—CČUVų¼w–öJ¶d¼&ėē8’¦ ²£×ģb¬|·2©øÆĀ—Źū±—€9Ūöņ“;ē“ä0G¤ł…”µ¢™­jV&+Ņ¬@2(%gņż“·+ õ a¦y”ʛó9uø!ŗ‹É^ZŅįVu_Ō«Ä-<—ÄNŻ|Ā^Š‰Ż-źmńRL²ūš'Oß<ÓJ†_ŪćŹģ_ąČ3,[”V]u(š³l•~pĶėĶ$ž÷’=׉ӜŌŲŅüśŁ§ćcQĖ s`äZ,ķÕ ÄA֕ź«`jš‰ Ė™āœĢɎŠ HņZ 6…Vü1B±a®’¾jÓé.EńõHāAašŸ–ķŅH£:Ā{Ł¦ŠņöXņ$œÅsā/Č¹fXMé¬ ­:dR\—6_Ż/D ‘–y&ž:¬”"s,GVü£ŗęĢr–,*éTT«©UcÆI.S­ÕŖ©‹ÉQü`\‚µ“¢»Ÿ‰ßR­CÆŤŌRMLUözœŻļz˜Č”eɽFLåī†pä~pŗĘ=7q”üIU¼4^ģõÜō,CŃoUųŁ•īf»åXŅ€•9VM­Nv«-8Ā’a«’øźÕ(^ÉXjÅUf|«*æ:œĘ¹`aŽ‹‚;»!““žüY§Cā!]z})蟯•©Øł~Ō…ŠĄčj…˜nzZ+Fäp’åšfuž‹8Ę¦×¹#ŠD;¹¬}vŖS£q(­$t'|S”É«ɚØŖź›‡R¬JåŖøß‹`ųävKÉ©BżĮ*üzōOÉ£7hr!÷V:WeÓR²œ‚ Ē‘rW?;=ū’R&ŗggÆō<öcĶ5Ž½Et&;ėŃx&½!lgŽ=Öa†c”C”/qmpŽJ2HĪĆ*y¹mD)e²ø°¬0ØT€i^Ų8%žDWDE։•˜4G­åŻČXjel„ķę–•ŻÄ+čVĖŚGr'¤=ÓGżõ¶jŒ“k`j”5šÕ3y2“Xgu§­Ū`N½MĢŌV•ZJĪ„ Čsl„¼Ņ7•«[Ģl=Ķņv:0Ķż>››fŻļvķ0D+°‡&Ž9rlŻÆ)„Xs ÆöOķĘi‰/"Ģ‘”ŃȧĢœų׬3^ņœ!§ŠM8Ā™zwyā¾ü AĻŅµ™ž‰ŖĶt+{.)[VƑõÄ}¦¾äzõ› Ņ†,»Xy°=¶÷•Q³shŽÉ9åŒģ藃›Ühs-Qńh]Ņ9—mZ7.ꀣąŹUhĄiĄu‰‰ĻEc¬IT8“ÆČź±vĶ!«n’7uR\oźlW ”B¦;8-ÅZĆ5™‘~¢Į§s)zQCŲcœēeévarR§ÕĮŽ7;ūt6w¾÷óqwvöĘó…Żz“^’nX|„=rA\§X] ”ŠšbˆĶžĖŖ¤iĒŃJ]¢°·‡ćYŒ,»P[X°4€˜f›d¢©DU}ߌ9µZš ¼ Ļ„BuŁŹz@¤§‡PōģxMŎ@Ļ² óŻ„’ī«/–eČ*¬ā*^NÉ£4„+!µņf¼`=TĮĻĘa ߊ'QiŸŠ5-`¾\³ü—³9»Æ,A˜ē\J·Hti5ŽæiEĒS‡TŻ$Z>õ5«“dĮ^™pr`óV‘(3‡Ląlˆ$”S·¦ć«-b­åŹČŠ•‰•`*m‹! kN~ ”—gÄÜip°Żģw»śøū»—=½?0)­…p‘ŹA °Š\×±$ØiM§qśhŠé=W(±‚h-`ŖµŗõtqńߏćŪ×g„V ,V-Įr„œĻs»jŃ“_Ē«KĘTmX>äœm#ÕeWT ™Ń“k“dUļ0½:£+uQł]B2M9®ēČ#z·4¤C¢ō,; ]ƜurČ®œ9X»$DœWœ³Ėé‘:³œŗŖ«ļKķ8ÅĢp”rQAĶ¬¦Ž_}2ĀŖœ¾Šńf—Z5ėĀ’—š8šd5ÅI“ö ŌY;Č¹”ŠŖZX“}h){q‘ī^ "AŸē™Vu”¬¶gŸ>^_ŸŠģfO²Įēńėāābųv÷ļö§[ ²”aéY…®«żż ''ūø½ķ_lV‘U°«dN#;\öąm’ń·ž”Ÿ3§c/:°ųóÓćŁ6g©9{K ®":õU}Øgæ„H“ŽHš/–«¬-BÕ«©*“Š=—†aŒA˜±€#–Oåš8~N¼…ēź›1‹+Ö6½ū2ā¹vśĪÖ(‚  _˜·|(#Æ\éīĪöw&ŗ5møŽćž“įä u "Ćūj.L Æ8œ ld)§{©9MŻX&Ŗײėį0×uꜬ^öf€Ī “fÅ0\}£Q¢ÉĢO©#OÉvtśIXhÕDƃÕœćÓŁmĻ:æ9¼~ś(ī„æ.rA|źYĄ!öz7o³³3†ÜUŻe|ߌ‡=D­tä$ŸĻW(eLMį7gńöäŅńāŃćķų_.ĆL˜O‰ußK°œÓžäō]lUŗeE©Ņł„+4u½ŽI¢]•IrŽČUkŠƒw5õ ø™ ?iŸ4׎TȝŅWŪ»EłVmk¶Ć½‡xR 1Kv 9¹‰IĆÆ陋Ó „ĆCõń{r„3Šˆ¬Ad5¤‰\ܛćÕż„īGkN–'ŚSŪTW¹§WĪU’M"o®t^[…@'Ÿ[‘²ÆŠc^>Xń>]}TŅéłölĖšęŪ`õŪMV8ZXłxzś8jĖVLMõ §¾ēyų#«Ē„ÜćōĘ5Žļņ„ōov“Ēļlų$é\& =Ķ>mŅē#äž~æż{į~,īŽ’t¾@Čy0C… ¬Œl q•Š ¢¹Ųr6!Ō”į©*'sŽ¤Į¾æ—Ćō-†°ó²peųĢģĘ•0_Ągw°ń­s¼¾Ÿ=Ų%ßiø`w©eĄV,œÖ ߏ1-§żäkB¦“ę TŖ.ńåȊŃj|.Ī`C8K§jQA›°•·Ū žŹš@Ž©Å驙¦Į<‘œ’9{¶ƒ½( :ÉnÕzĘź«R "&u­¬éü’]£)¢ć >Ķ~[ż“„ž`˜6lįkKß©onķāb…Zöó§oČöv?ī¬Ž–Nonf®œż‹Ó›Ó·k@īéä~,¶’6ssŗ2}ńxŠ/6®÷Ēć«õĶńų‘?Ē/ŽÆ¹Ż‹OćżĆĆń ØäįŹO!P÷ā5 ķ:÷|4ŗ¬ĄŖåk„“Œ=“ŠźdÜ]ĮĀ\·Ęt+Č*µ*,!ŲņŠlEKFz2;¬Å½‹øųšĻkŠœķcģŲIÆŖrļŒ.A_„:ĘUī¢x¼€ą¦ūyŁˆrƒ›ļd_½ē”Tq_rĢ×ĮZOš<®Ų¶Ņ›ó&”.„/!䈩£„ķĮY@UL×ƶ–ČE³Ź[šTōJd5ӞĮ)71y…(³œ_›“Į·ī§3/)«ā¾Z˜” VkĖįŚĄr¶2ćšyöüQÉUśģõéeśžóv7Ok/6šŻ·c†Ž«JÆž…&ģÖ|ļG^mųwXkMOįYī ɖ|Ųć`Å–|†sāŹ+)÷Įa-ØKBW¹œ­æ~6׊-6•kā\Æž,ɝr“udüƒåńx½:ŖqnŪMO/E˜-„}P§_³ņQżA«Edu~w)™s}Ś£ē4ĆTju5]ĀĀŌŹµ¢3ŗŖwźČāMmźVӎ7īŹu|ķ`W…W}“%|Ū3Ņž„*¶|`Ī[¢XCŠqwUWŽWQ$o+Cžö[õ0AĶ`­’Ģ)Ź’Ų›X>ŽW”/žŅŻńéć~…Ó1Xīęź (»ĆĪŪÄ»G|qŗ¼Ė ībƒ Ė==Žńå ~óūʀ¼{zó˜ŖŹ%ZēĪŁ*<ŗ”bu6W”NDēškēĶvŻ#b ;rźT‹v-#„Āj“ ,+Ę#i†LpnVeĮ£žĖ‡¾.ØX‹B`qąiŽöóÉf¦¦qĒ:iyœ=iÕĖšæ#+ÅMéé(Ʉ”«^Méģ¾‚SX'ĒU`µFœ¹ÜDmc;Ģ­V‹^2ć7 —lWkõV Łxr¾fT󈄩l˜ ēö9éUOx”uƒåų|<÷hQ#Ų«9˜5UłņAZO4`Yö"ö)g”žf<’q>4>AX<ĶĢ08ā“_÷Ó÷ØOģnŽć+AŽšyÜDB7~än€¶Ķé|In»"ävńŁ)d«y†c }÷7l«"Ó£ƒZ§ <‰_¹¼”P¦‰±(õąĀ¾Ķ~wŪŖ}ˆō}wĶ%¼VaĖŽ}?ēŠĀW„ŽNƬŗ—`ųįŸuĶö¹Ķzžī Qµ Y}Ä©;³2É2ß»%Īę8eŲ›Ż§ä‡öŗīÕöEsšVbd•9'wĪk§:aĶi¹ ½©įŗĘ!TŒbLó å£×K†×¶*¾=‡7-®@bM«^śÕqÄÅq`˜ÕEȱ›Ł‡ S„PUsńVZ+§ßV€¹Õöń,€Uќ{[f®Ą«{ Ģå>J„ŲNAł×$³éi0CģĶ=~~rR÷9½Av·±<¾r›ĢöŹńśņ&)’ĄÄ~üčŃV„£{—čœSIPBK²„9żÉņ•ÅK‡ĘSµ5;ø\Kę[-6-[…8k.l «ż}s„¤W^¢^½*.™Ÿ ¤ŖĪ‹s:ž[Ąc,ļŗŗZ”]\q5s­Żf.^PØś¾2W}sZ!šŽ›Ćjuoø±„-›…P«ŗ–“’Ė{„ÄŻĆĆčYōä2ĀŽ±†œ+onØÕĶ£¤‰tĪiBČqdÅbŸĻhėŠ9£$ż.d"ĮŪ+Ÿ¦X5°kkĄz 0ådŚKé„!Ņ9”iUO-;Cfn5|šż¬åƒ¾į«§³—I‚‡°2Öƒm é3ėŁÖŅ§!Cčųķń u±1 ĘŚģN§A_O ¬3›'o ©7ųŁ®ó5¼;Uč}cčŗū@蘣ąx’ģŹ=Ļlk¦jM\OūS|kćśåäää~†ČīĖż/(|{óäž÷øæ_¾^’µ©fĶ_ĖSæTĮżż“ķq¹)U`”x³³¹NOœ[%m•ę;×OŌ­R–xĆ))NeÖ¬Šą.]³‹!×DC+,˜ēzš”Ä1žP«%½Ćo_3nhHšrėåńZ›įŌ«,)­Ø®ź:°’ĘK˜6ŚDmŠ ^ŚĄöTś“VXŁš‡³ŹV¹4¶jAœtĻöÖIÆ [½Q0¶ēŠ"Æ$#­ŻÄ&Ŗ]"Āj©AQXŪīA¶\:I¼Ŗ·Uˆ„vŻ‹^IV)į’7Ē§ØåQ¹$ƒ–nĮķóģÓēŁ›•§§%,Ū„DŠū»sÜōųR«@ņpąļaėzį*Ō²…U ¬ž%g"HģnPļJ{‰;Ō=²ä¹%ļßŅ›ķP¢J­²€xį…+å“œĪ4Ą)ĆāDr¢33Ɣa¢lĪ¼G³4py¼•²ło0;Œ¶ šA°’ū0„ĢWM$Ų–šEĮ:=ÕN’Įi2nf!jN“ęoŅ1"»×kT¹„0ģF‹Āįķ§_žĪčåĀ`õzÉįņēµßMČM‹¤{3jļZŖ$µķU6ØöźŒ±ģ÷SŪź3‹a—ŖP.kyœĖO€bŚVU ÕįXŻAÕ%³9-!Ģņ/ŪōT5W+'p wcQÓŁ™Ż§Żmh[Õ½†ųr÷ćO’郆éÕž²:ŗÄr5J=±gf5 śØNY}Ķ2aՋć­KÜ\ŻŸ„šŹļŒ{ē8¢$9ˆžXiŽ¬Éød‘©&Xt–Ŗ MŁŪŁ®ƒŗZ§–ėŅo™éZēŠ™pŃŖŸJ¹¶Ś„]9 kĆq‰_™ßškÉā\sP©Wkģ»`Ÿ¢½ø²VmŽŚČ„{½Źė¬²Nó%hhō€ĆƒlWõhžHIÓZ2ŲxÆRģ“>į{Ęof¦l‡Ėż(‡~$üW gf³šń”(q%‚Ll1üeO˜Ū”?¹õ\Äryłpłš<Ā‘ńžērµ ‰r·Śv¤xķó'`ģo~ŸĻ‚=£ŽÖz‚Ž ķP“«?Œ^ˆ:BLÕ5P–Łø韢§hNkÕ)S`šé“l M‡0K­nęó¦™^×£"§³Ÿf?bąKy»gŗµ\ ²y“:É= X$§N/Ŗ™ą:dÕ Ń¢nį0M鯖ĪkB¦7õł9H™ÕēA*“Z”ÕĄėwU lŹšœ<’,dšēxW‹VR¦Ėa»²­­÷w˜ŹY2ō€Ž¾%4gzįO¤rJ"Ķ«½Š•ū,U˜×ܑ'X.­„§ŪĀ@Ķs’ ś„<üF“kō Ä<™ƒ\įT+·j‹gkEg…·A[}ņĢvŁpN ó²Fo@YB{3Ŗq±vļņ=Ŗ Ŗn‘ģ\³ŗPŻ‹N ZēRkõn­īf!ĶюęŗŠt§og?>ŻØŌÄźž •µć×\S 9"¬bńĀ©+-¶©ĄmHŠ”“ ømž0k»?9)¬]o¢q“B‚²‚$Ū?ŽŸüŖõ]ÖŃ®9µüė7^ŅÆe’ ‚ž:ø9všyĢĮ5…g_üĀö‡ebs9Տge ägÜ’æ ®œĶ» ¦“†P<Äwīf#IE—skßx‹šlĒU@Ėœ‘Õg&?zĆÉöö½Ž‚ņ%:Ŗ<‚XÄ†8 ÖAłH@8u”\!Ź p‚S5…Ļ­_Ą_? s x ½…:Ā.~Ö ђ!ÆÆx µlˆ°gŹed÷“ŌiåÖųs¦9¦sZĪU-.œōj»ĶļŽģī²č«–°ą¢6¤^@XE&·²ņńęęŪŹó«GL-?n^_ķƏß6öÆHv/×ū÷/opK¦ļĒć«HˆūĒūé‹ń龅¾‘x ń6æe²uy’לÆGÜiü³7Č6…„vPŽ×š$qP SļSŽ¹Ļ5%[\Ž¬±Jd;Ą¹ssdF°Ąµ5IS§įEĖPĆ{š›VqĻ"ÕW<īģ+‹eQ­ß¢µšōģFõÜõVHs)‰®¹„1K'9ŪĆĆx:ĮFeX÷¾z7<ļTĀÜ6¼ųöuŹķj×jŠ ­®ŠØ££­æ}>9ANėP‡Ś d–¹ēźdbB&w÷R­Uc†)ÅŁĒŃ^Y*Ą}{:Ż5Æjö mą UŠq:Čógēw‡K·?ߎ¹ć_ć“ĒĒ“ńżÅÅżÆ‹ĶżūĶ‹ĒMäl€ŁŪžĖÕÕōÉÅ&!÷r²OŖ»ŗŲ¼øææøŗ&B÷ÆNąŻ]¬Ÿąwß~Įį›śõĘzŽA§½¶)“tÄxAÅkžŗjPb³Ź_‰·UcõŒŠ2ƒ]ź·Z-ŠŁ‘§!d&Ä&x¦1JE?p‡S9TŠ«jĪŌžl;k’vÓŲfTEųNG©r¤Źž4 µää!5GQtĮ!ŗį…*RRŅj ©„Zåņjc±[ø–“‰ŃŅŗ{IģśbBčŚē`%4µ•«Öī7ש¾Ŗņ½‰ŽĶÅå ūŚq:ąbœŠ\Īµ5Īq1ÆOĘ­ķ>=žqžš“Ļ™Æ…:āØžśŁīī§­oĻ~’;~Ūß<>~¼øŲæxĆķām¼ł¶łxqŗ yz?ž}WWo3āĖĘÉćĖ $öĒøēžXso§§W›ćżż_o3o`¹ńņÆ7»Pķ r‹&šå¼ō¤6K…Ö OxH“m5§ nķ`²ŸWŒ°|pŸœ‡WĀTäi=ZH£(£†›©;7xŻņ°ń²×^É œÖąéŖ’`JFnŗEĢÄI>ÅjŠ¢,y"€’ÖŲe¤|5’pE/åś¶s¹p®7&uWÉ[Ø­ČM8;Ė[”Pģ§¤ī“õ+¬7uÕpnÜq4L:\æœ3:4OP»'Éy8‚KĻ)“KS:—ŃF‡°ÖÖdm„«/ŗ‹I©Æ4+SĒ­Ł34EÜŽŃ&įKPOAQdžćĒÓ­ŪoĆĒĒżżĶõć‹Ó+¼ŽO¦ßQ»iYt3]§ĒoWo€ąžż4 7}rõ¶yuu²?Žä^¦ß®Ę@›°śörnEe-Vń9 ĀOžNĆZ=¾JH7Bŗ½¶gwČ«eæ,!ĀP²”Rŗ°ņe–Ę™+O%(IXęĪmŗXY=ōķO TM<õ"n»KŸŌÖ‚'^!@ą“ƒÖ€4ō¢i-a”>³˜”%Ŗ¶±ˆ·ŠS8m¶ŪDś6Ij€ŪŁĒ3¼N|»$lSŚžĻu —)<6“W‰&®ķœ0SƒB >ŗā$Xåą±¾ģģ éļ|ćī`«PEVYĀO3ó;OgĪ0(‡PŖ­rT2ž_9ū|w:?ó8’6äÖÖ×ķžlīž\<ī_]r'o§›o'Ó÷ū_ß.®Ęo'ć‹1Yƒ_¹·‹żż“««i!Øõ]üZ?Ė]¼]1½ī­L°†.&Ŗ3GE+ƒ¤b‹2铆M_³z;øČI©5qÕtY¢5='F[ÅbƎļ£S‡ņ‚¶$XT?šŁ`kkƦ*Ió°]•%eŸ‚ 4ń#g@FF£fV“Ń–&^Kaē=įŌ±śņ“ń[Ō^źr#ŚōFĢõqWD×)XŃd*Ģōø;ņ»Š°ÜD©&H 0ÜŹŚhĮ•]Šß×$DVĀĖĘcś—“³ xt÷揯ŁŁĢŁæj|“·Ā¾pśĄX.s;Śü^¾ś=õ‹źė×ń1^7ÆPéŚ8Ł8¹ŗæ?¹ĶmܟLon^ß_I©¾l ŸĆ'|Å·‘Ö”Yż~ś8¼æŽÜ¼_¾ßX’…Ś×/>d ?ĢicY1är".ež­*ÄŦ-k7,•ņ²\­ _={%‡V W˜ņn$½UT³Ų–Ō@­ØR¹)pŽŠŽźEöXE_›Ņ®2Ņ:—ĮÅn`¶ŃĀ%ŅęęŠ Ī,M„¦ęp‡OW‚X ŅŖ„„«ļ¼EŸ6C¤KąšT±1˜kŻ‡śVŅ¼ČY+Y+ŒśU+\ķ'Nē–#)˜™@8ąŽY1 ’Ó&Æ^ń7‚žŽD­†Årč Ź’ؐŪ=ń_œ?Ć#Ļ|ü8sē#Š¦Ģ¢Š»ģØ*Ī±˜œź~ņHø±åYĄamĖSK£Ē˜ŪPē—^šØS+XJ›ļZõ¤3é  Öø„°åC•G“‡•‚(³Ä.¾bÅ6„›)¶°?x”?x”"PšÄ4č²›ĘAH/Ż“ŻQŪŅĶ‡Ģć²ĻööĄ«Įd6 Ä€ŗDfŠrŌĢhp½75¬1”¬›ŌH@Č 5owŹ2aär+ ˆC1¢­rØšāeYĖiVp6³5U$.9öāŅÕ\53ļ Lģ<*Žu×÷@s‚\+Wõ"««ī“ŒKāŲ«ūSĶ˜µĢ4Ō|ć‚)“Īo]4¾²<žH-ĀXmŁź!;gf„ĶĖ˜ĒæŖ?›„F:»DĶEŠŁ:n™Ÿ™ŅDhšbÖō@[ʊµ0Ü[ÜøĪ|‚µVhĖVęĢšqśSµ²bØ@Ų”¦i…zfųł Žė“ßdĀך6ƒ;Ķą¾|%CuųCbƌČUŁ9“Š…Qä–Øé)ŻLōīÜj"¤7×f3˜Ļ±cŽĀDīŻEf‹,Ęj’źō¬‰ˆ–*@NK”h8O®pu½B„”åLö(6ļ ēå¹dŽV+ń|‘}8ĻT GP¬žFuhM_oOB8ē/38ž›0Uó¬,Ģ¦€µv`ońZE;‡ļ©Õ;Õ’ĻmomńˆćĘ»xŪŗ]r)Ŗr4 Ķ®­C'ē•%”¦ÕPB„›¬)ˆŽj§D•T\’Ū,H½·/öõ&ŲzRĮ^osą·Fo-œ\‚Ž”FŠõ"m‡9"Ė÷ Śŗ›Øģ”×IĀ: Ņį‘čÜX"W˜»³FĮ6&D`j@¤s¬qG ēnܱ,_˜MĀŠ¹^‹ vē³ÖÄĒ wŽ-Hjž›»ÉÉĻՎ"®¬v7ÕŽč+Į×ā+,d•.\oō^a `:ŻČęŽ6:\=°[ĀY·.I•”eĮ«µŽTZ&­Y·Vä=k.Y—Pš8¼ —mN'¶ Pģ˜p½gļœū»³ MŗqGõV£ 4NĪŅßr·oųLŸćI‘ØCV'®#€¤b9ß®5¦ĶsHčŖXēžt*¬Ek®Ÿ°z³ o‡ —D³ņ,ķ£˜§V“Ņę`E^ōįŌr%W„õŚ2ß%l:wÓ7u¢½®‹„ū¬õĮ “vŌØåēÜ\bo‹Ł WåBĪŽæ}¹‚ża;$¤xćĘeld‰öl 1ą­'¹ävpf/M¶ ‡›ŅļĘĻm"_įT bēĀƒ¶/³Ÿpūyžœ¦Ų …ÅŁä&;=,ģe™¼¤Ŗ·‘Īe*ØĄéwŚe“ÕåĶjUÅ*“%¢N ®§’ų·üMhėĄÖ‚e`äUś&¬ißņ”°a ;ķ–ĄüĄ‹Äyga÷•0K—Y/ ĀŽ*ógjD×ņ²]v•Cąō""a»Ö¶Ø¬wHRR­:Ņ'ŗT¼<Rõ!霱Xļ4Į*}RGSĖéHsƒō“{‰@j¶j{ž-æ-UŚ[nט6j6oüg2-90±ddµ Q Ø֙ :\jŹŠ 9Ée¼ :ž  ĻŸ}+nr5™nfüȐ“–¢g7wøåꆬęŗ•×ė€rėJYIżEYÉŌL'ų)x¶XŪESŃńę[ow-ĀjF‘"–\—½‹“t¢˜\ļ–Œš ­² drµ¢qPp䓧čóčįü@—%‹'Üā«Ö9óיW²zØį„ĪDGHąfā©Ē²×Ž9 WMo ®­¶o'×ĀAüĶ©²z‚¼–RōF'ŃĀżU…“N©¹Sž¦=bŃKMØiŻ –\ Źęžš‚Fņ™÷”u›ķķ¶LNI1;Ŗ‚iū(ģX Zeēiy%”uŁšŖó­I!}Ø„6’.ūŅ*f&˜Šē-* yA]ń Ą&œłƒŃ׀ēØ q)ŌńźŠnź¤:bNśŹ'6ä2&ĮCoR”õ>Ó:§£%’“€Hmż‡ģŌŠŪČMŠļUŅ™O+ž„rŻ5ĀumL i±R½µ¾ėŹóŹ÷ņö£„# ÷.šJ·H¹ŠŸŽÆE7ķSՓNł*¢”ōģ¬pĶłAüÜa„„!%Ė²J™˜p ø•žU§{”<“¤ńs”}|Ų]ĶY“T.'Ō€ĘĪiph„…ł^w÷ēĻ[Śā.“Ó4ŚĆ=5ą j­«Ķś³Źńļ9­āŗõJõ²gæE¢ŗšÕ µ>ŲJy†Æį•F˜ųł;Ąu”—0+D65Į§®ƒ‚•m³ÄkÖ)>øÉ>8„½€0Ä1’Š¢hu3ŽS蕕DČįd oÉ,³Jį/‹ķ­ci/!G6·Ņ†™ß*±ĖWöéšKwŒ…Įģō•)†Ķ› h”Åōˆ:č:!czØÆ[ė5ļÖµuÆt‰ĢTÖåTV†›¦jŚƒuēÜĆ­ŪgłiŚ–ö†Źź^z„rSAO]ixĶ&ZCŪ¤HŠÖåi•¦Mfjö>˜®MāĶP›,”};iąvU¼IŠ(ńÖaī/ģÖr¹–Ų™’:UįtQĮ!¦”FŸĪ½uźsR.§–:„]N±hYćJē“'Š÷·g‘ߣÜicŠ”#<9tL±bŪŪLĪYrŻ$«]{„lpߜ»Y±NXžŹŠ"Ó4D’üŹņ±_X.Cm€ m]Ŗ-9RžtÓP[Ž4½éJs›­—Gsū#—a¤Øl[Ze¦¹Ŗīźž}÷ É@£ęō\:k?}ŗķSŚ;=P…w ‰3[3skĮ] ­µ²ė/”ø½ §®Mõoq{UK'Dh ­M“žInļ¢ė_ŲĻ^‹²:°8b«0g³¤F&dÓeLk’i³%V§½¬ŖÅUW³W4&Łi9ÄĮč$§5å“x_/q -‡¬ ¬vMK;&„b”$f•—žk§>mĆT®—ųˆ•­ĖV0 Lc«µ=LÜĶĪŻ’#TļTł…¹Ev~ķŌ§9®’|[V”ā„„°®±PCĶ„Ī®,plĶÜč ņY DLLYuhĖō ­Ø-„«^Mį½ŗy’(ü 8kŃā8» ķ’bøȆ¢µ?0ēЂ˜…‰Ū-®ĮźŠ °ā91 ‡āW^dŸŒ¶[’!ŒEN čėVy%!E]īS©=*9Į8‹Ń8»Ž BɜŖ^5 aŸ•‘®ÆQSĶeĪ©Ó®¦9,¬nWÖ³B+ W•[ā±8ø,€ö‡ÄŒ6ÆŹé†n<'‘¢\õd«fÓÓŁķ*_lŽĪn‘Ÿõ•g&ś¼Żč£f3Ķ&Ēćčõ±õ%A Č-‚*Œ¾gµB›zŪėū8÷†tµóDO{.›q'4‡ŻķŸņķżķ½žØšź”.JāÓēm‡[®qiN-|żźFN­7ē'r –JĻZ鎧"ŪCC č„…„•Źrš?Is^Å¢5€HY …TÄķ»©Ž_7ēsśø搀«¶Kb“ˆ6­[łnyj Ģœķ©VĄ›»IĶ†yQ­ ĄžnU=5©r ‡ƒPÖ\©Ń»Eu…āĄ7µų"·€ h~šŌ@IO&i·HfśėŪjlńīBØh‹=ĖCIŪ$Æõšęb}“éąR„ŸŠ „@Ļ*‡+ŗ*»£Ou}|oļ ÷Žß’¢c¶-(`ĪUy˜%l–YāM3ŁĆÉ-‹Qƒ Ķiy4ęĘŲKĶ©i†²œĖ\†Iį®™œ+ŃÕY=•Ś‘\Š]±{‰23œ¶§šŚgų™r¾&>¤7)OWr¶q…2™Ś)ŅXĆ- ©.åf[ĶXV[° eXÅåuõŅ¤źÉLĶäī..tˆpgŲ«²Ž« Ąė#ä“ūĄ{na­„iį±jŚżOJ+§]7 šWų3¢vI}’+šėej vĶqėī”H Ž„¹æq]S“$hķźš?6a‹ 5j®Ō ‰®¬ģS“Šęp<¼Ļ…Ę’Ļį+£“….3Š({q‚Ū Pt˜³OBx\{_øˆÕ®ŲJ#e÷ ĒŌÅrµpā„M5q 7Yym½ź­÷Öė5i€ŅéC5v£X ķYin¶e…’t4Ø£(u“:jÜČįB”«Q]… •Ÿā…Vx_)ˆžģF–; ž5Œv“±AĀn¢ø÷˜S{ļ_¼ßęÄ„jõ7³m9Ŗļńöאś.īŚ×Ć3A½›«ōŒ+:éˆ3WĄ€=ø'čHēnžŖgygj]³LŗöāįiŃų¶W Ąb;hNńnŌ^˜?•)ĮC•K[$ŖeVŽļZkKį“D¤:dŠUŁµ™+\AŻ$§Šŗ<Øm/ŗ°ZeOK©{D.µ×ĶĄRƒ{ė;A&«ƒ’’Ē4’Gjs‡7q¦UŽūuĻŌכsŪš¾©;'DdÓ[ĶĒ[gōŖOŚ,Źqė„oM ö0gø9¢Nŗq÷kłš’¾l’“Žü{ØÄV<ØvT]QÕĀEœxŠ¼a˜Ž6 #«WūŌ Ś+C°S»CōæC¼)›CĮ3>jūō^ŠŽ¢Ņ9īŅ%½Ł•Z?¢%q”]óMŹČ›.ß^Æ\”j‹ˆö—LØFoXøŹŁdvid¶‘³5ŹnõÜknWiƒEh  ä§õ;9zv=ūeO Re.ŌÆ×»ęlMq³K'ŗŒ&Bņ» .i[±Śß‚iÅ×j¾ģł#żZ‚S¹’äUWōžJ’ØN„ę$ŪļĶ©³ż›Ą—ˆĪYZÕYC:ēEē²h„p§ŗ>aē=īˆ8®ŠÕš1Õśź%« ¹” RŪ_æv±µhN’ÕHź9GŌ0\@gæN4HøUŖ˜!q¼1PQ¼\­³™9<.VĄõ \uó-ה0³µ:» \ēižY1Ÿ¹ž©(š¾Ū”Ł1 Ś ģU&Ø>Ū’ђ=U` ·ļx¼›`īė‚¢Źz¤®€õæ°¦A­šačģø?[FžJL}ŚīFßžSA¼£Q“Zį”` dueŒŚH®ŖG½źč ę0¼‡ ¹7Š7 ĆīśƒĢ`„r‡ū\-Oįd.›Œ•™įņ¹Z5«¦®”®Ø ł\ąö‚eI+“ö˜Ī‹”F¶¦ @^? ddM+bxɄ¬nf¬nX<ś@m·±p)ˆŌÉĮŽ†3‘ZUŚK0e«5ŖQ­4õ@(L‘13ČŹ-Cm W}ÆB'Č­+#˜×¬Ŗ¼Y"Q NąŖœZɜ~USM æYĄ…’æ^Ų€;-—dB=“_²„Ņ<–ō*Ć?/CXƒlŻTk A§u$HsŽŅŗʘQĻŽ9ķä&w×U (R¹9×Ļ:ĶZ„VAXbŖDS9ÄŌ^MĖd4lZĄ3'aŻź¼wM¢hłcŁkž“bõ˜Ō‚§¤¢¬ VŸ]. QŪÅķu؉ŃBńÖ*R½&5ŪkGS.˜4Õā u5ĪXt.½§NõŸŃ³Y+NŪj¾%ž³°š—FńVn˜°ćŽ\Čjī_ckQā‹€ĆŪ©ßż’¾éÆŁę Ņš_0Ói$"+H@±bŽš«VkGE×j*Ńé–Ņ>»šØčøhßXĪżŅ•P”U %r-Tor Ræ$åöęŪ*‘tŠ–~MĖziӂ'oäų[ĆÖÜBŚk”Z«u…9kIŪœ“uķCŖōĀēmjeåö#黦Ț—6!+o3Æż—£Ū°†[*67ß­¼’V»”Ą÷34“q.7ü=•‹V8± gõOKų{īŻ£6Õ šcduƒŗt+S:mēĄ„Š‚ GC(™s=±ę©-%ÜOBņ _ŅćӂŁrƒUÄtw°œ{s½†t·’ŗE©6|lžō¶Õbk©|)(»£Ņż °˜’?ażŃwŹ sIEND®B`‚ŁDŠÉźyłŗĪŒ‚ŖK© ąÉźyłŗĪŒ‚ŖK© hhttp://techrepublic.com.com/5129-6288-10220637.htmlDŠÉźyłŗĪŒ‚ŖK© ąÉźyłŗĪŒ‚ŖK© žhttp://techrepublic.com.com/5208-6230-0.html?forumID=8&threadID=144780&start=0{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075656{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075656{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075657{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075657{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075658{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075658{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075659{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075659{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075660{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075660{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075661{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075661{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075662{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075662{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075663{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075663{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075664{DŠÉźyłŗĪŒ‚ŖK©  _Toc61075664Ddąą© šh² š S š6AĮ’Ćpreviewart"ńæ`š€bšKIBĖ>v}üyƒLūƒŽĮ™’'Ņ ēnšIBĖ>v}üyƒLūƒŽĮ™’‰PNG  IHDRQt­ÉśõĄPLTE€€€€€€€€€ĄĄĄ€€€’’’’’’’’’’’’]®’¬bKGDˆH cmPPJCmp0712Hs¼äIDATx^ķį’¤* …÷ĒŌķ®Ś­źGš÷«+I€ (Qw··Ē”Q ŃžóžK]ž|ęRW¦č[T³¬”ØŖ ½^Æ{ŒB{P˜Ė‡ōś|n1śžūZžLIć x}n1Š‚.’NT½¦©¢eÖBRÄ ’¼©Ößełø–ü½ū×¼œeŌKH’æ?)€JRįØDXĻĻē4£¤FP[=üIE9sźNF9RFCćL©”3uæIQA…Ąų»PųóždmĻˆł„Š–œˆŃE§¢FQ„£8šać)&«™ėp%ŒBXš²÷!ØŅŗr‹°Xāt®÷RB51mĘN9ĀÓ{¶?ŗ®ņTX„ŗŲYFY Z—ė÷zæļyO×7=č'—{Ė{"YŹ„AõŪÖŻ8šźĖ}Ø×=4Ćč—[¦õŻµLæ„ouŸQ‘eJžmNē ŒJ†Q~õ ł©£ÄßįPG¦į->X….’8K%F$%[ß_(ƒ.Ÿ £i FĖ–) /”ØĪį}QÆ2ž?ĪRƒQT¤téiĶ蠊VbŌvG)żP.¢8 )iøVæ\ ½;®_÷GæÜ2­Ąč:~»ezŸQÖāĒI/׏¤£×wfŒONF+ŸĒŒN4ž$™Ÿ)ÅWM“ņu¦ÆŸRZ=Žę§”ŗv°jŽ4ōŒķ¼~ĶN)… Ž©ą&±5`47]œĮ"ÅAi°F‡rH;1 xzF£eāĶ’”ų­Å(M(Ż™RŠž=Ȋt¢]:¢¢uJ’~ÜzQŃ ŽÓj\æ7ķł[ķÄ(^œ£Ģ“¼M­Ń”2SF…žhŚ—§gUŸQą/.y"½ <Śå廞*Žę%üžµ żńņGZ«?śķ:†ćoĮčōG#^Ó½ßŌź3:żŃź×ėłi·Üs§Ä§Ź¹£Ņł£ÓŻ )«hė~tø•ę üQšÅƒĆT4ŖĀėżק†JŒ&Šī=Ā·ņC7ĻŁŠx†°8¶“Üļ¾qÜyxĖ½Šę)š'ų³-I;1*óG‘LĪ'ŃjJÓŒ ā(—j·Õ§Š2m-)Z‰QēēįĖüŃŠźcNr­Ž’ īa:w½§‹óGS™l‰v”(+0ŗ®~ś£we-ŽR'§Õ¾6`“Õ®Z©÷~Œ&ēŗ£ÓOō~h©ĻčitœŽžŽūqTzżŽéLŃ ŒŠżŃIS“£¤TŁ#F•ä†z?x)Ŗ”£Ą!ŹøzkĻ’,½ qTź¢œč{ąŪ(qi7ķü¾>£?Ė\üxåyTÓæRŃśqōæ’žūÅōĻķŚ<°FQt2ŗÓņV¹žßææ łKæģżŽ÷m©J×ņģ“hўVˆ£é#Ižż,Š.óńßxł‰-É¢½3XØB]õF¤Ė7–,Ļs’>E+Äѕ¢xeć½ÕÓ oWv¹>£ø›eēl~ę~-$,›²\ßėVŒ®öč›,Ó.Œ~Ó-÷]ĶZ¦Ćv„š0*±LGU“ £ĖtTEė÷G]NŚ(šū'Pm_żŹų(ē+ķgāYFćœ²`LAgÖæ¤nź²µÕ½“‰£Ė”Ą-ć2„1ĀJ\=Œ&šŃ…“ ®Śłt<4bę‰G’z;š5ĢG5Šźdt'3¹h¹ĪY1(˜LŚ†Ń/ž§6Œ®“±dJ©ī~bļš0zbūĆķĆčp²POFeS’ŒĖ’£ĆZ¦O1:¬eś£ÅY¦FGłųŌ‹Q‘eŹśļa†™5i»1*µL½€Ö„Œ¼vc”6Yźū¹;4]JÕ÷2Šn9ĢŽ7 A@½¢m¼§ĢaĖīĀĒ‰kEŃ(1Ō1šS”NMµÅŃEP”*dt'3pF±-ucō[,ÓnŒ®“Õø–i/F¢Ó{Ņß÷Óø‡3:¶ÅŃ]cX¦ŠĆ2UÄčžej¢_ĻšÜƒŒJ,SB%7˜ĮĄšÓ„‰¤¤/įĒY¾t8pI ĀG|ē‡ŽūžEˆÜ°-ŚbŲĻõ挊,Óžxhjß=G×¢@tKų­=Ik<TFLį ›e•h/„‰QķZ ÷ļĮ\Ļņ<ßYć–©vF Z¦ŗ5h™źf“4ĖTe7@5£IHMŸē;ÕĀtŃƘrF?™ļŃńN”ĮōJ¾%åŒfnĢ#}0›ąŸüpŪ—“Čč" žEˆŽ·×JøŒ’aŗ<{ļ³ĻØVE 2Š#’ÉØ|€Ä|ŽÖwUéUŌ"£Ø(\™qt܏ķØpEŽØJé»iJ7£ĄaĘ2fŻgŠiĢõĻ(Qi«Ź­t”]«™ŒV–[;£Ó=<į²ėL¼ŌōG+· ’?ZysuŖÓG%SJiņ‚ėęc5 JŻHŹ{Qšö WJY•L)]+J²ś‘ ĶēÖŌaOZ‹2Fi·ļĀwj¹a(wņ@Wæžhˆe‘QPk£(5r/&¶z)W5Ėic…9œRŹčD] ĻdżduÅQRŽł¤Ųąu(śäüQ.a?‹. q2@š*źŗ4y7!÷Åf’Õ '—ź2 8z ·½'÷ėĒzOŚM)½t²z}H£ėƞžč1ēĒõ½ĄŖøåŒV<ŅnU鼏fŅ’ĪŖnŻAFµ[¦ęÕn™šcTj™>Ōæ_b„5FKSJ}Ų[™œĄ}D¶ĒhaJiT4I)}Ō„MŚcō`ŗųwčā”ßG?ć;¶mcö Ā(HĶ[;:ØĢø’8Ū/–7Āč¹)„‰¢į2ŌJ×F` F™Uŗa472 žT‹Å£įŠESJ9£ūŠ¶Ižƒ0źGG4›™`mĢL¾p B ęśdNiŚnń§6mY¬¾9FÄø$ŖBQsżQ1+O“ĒčSJ‰·k-׋ģ©‚žh„åņu&KSJĶ1*õG·¾Ńi³!õqōĢ”Ņ£®(ŽŚ/śM3¹Žõź„ØžžčFь?źĶ;ƒ2otķvhłƒ0¬ągo3%¶iūVoQsŠ¦”’ÉģøóN(zz“ƽ¢£0ŠžFQļ9kæ½¢EJ_·£(»L2s}¢dT4óxĢņĮ„`Jy ³öœ:d&Œ›RŖ?Ž®#߁?Ś!H 6”~ĢÄbØąpž/bŃē5+ģUFÕ>„t FUY¦#0ŖjJ錞°L±ćŚv±ČØČ2….pKHÄ=EiüĀ½Å$£"Ė4(Ź*(Zeœj’QR«4Ō÷ŒyaG‘IĄRµ_ŹØ;ü hīIŗŽ…^Y%!€„žŁŠŠź×;bVĻ7NÕ9“Lƒ½£( N’yļFQu÷.Ėœų.£ŽLõ­¾žƒ:jaŃŪ÷”½§1“ā(9}_Ģ( ļŪGB¶§”Ć2“ĻB¾³%źd&›qT³ej²?ŗŽ¶ŗ,S‹qT–æ*5£i·³ŁÉhåóaQUfhęt˜cT•šTÕóžŹ-š„Z®¬I õŒJĢPēGy¢’ŃD²ćJõĒQ©š9ĪūCŹ+gD?£tT%3ʑŽĀćVčmWžœ¬c0ŗšŁ”z#ē¹_Ś£3Lhähw°×ŽMF÷ķ3“m€QÜŻćo¹ße”°½ß˜„5ŒĮh¼4ēŪ;ö¦\¦źœ˜ Ü_æīÜ_æķ‘JĮŖXN?£ėƒ™”½Ó‘©8ZŸ.UŁc“‹,w6¢>×ļܜ?zē¬?«Ź2QU–éqōĄ2ĶåüÖż€Ķ?’zż\=’¾±¢C0š›S‚ŗ= Ø9%™Ō$śvfņöa@JŽŒJń…ž¦ž1 – Ėh“L×n)ūDE½ė-vćhį‘¤Čåę•ÆõŽUEĒeō)E‡£˜—Ž 3ė¶śa„kwؖæßłą‰éiĘŃEžėE–i½Ōs\ÓŒ‚qé%ŻŽvģꜧ•ŪŁžŒźŅv2Zł|ŒĮčōG#²G’f0RūHŅU6„t€8*ōGėöćw£ļŒŹüŃNŠ;®GŽ»”čŅHæŻäaeSJŃ3a#ųśž(vćØŌEŸ„Y# \f¦čøŒ27;õÜß«Ü·§ź¬2ŹŌČ~eDQFędō?Łūėéz]§Cm1˜B h—™ĢęzĪčy{M–āč“”¢#0ŚµĖ•Įčå£oņĮr}].WŖQUĪ§LeŻŒŖš*TóżõŹœO©¤bAŁävY©ĢęĖ†½äfzģ«³®zŪ»LĘXJYßLOƒ š ā‡˜g¾Iy]qTöeLĄ(vŅćkĖNūåķ2Üd‚¶gŽ½QYmŒĀl›Ņ—1E6‰Ń†ĘĒYŻ 3š¶}-^Ū½Ė'ā(FŃG mH’ėĆlPļvzóólūlT^YÕüdQŁPG×;­kfØTRMc&Ł>«.„œQÕŚķģœ®8ŗ³“—„ĪˆAFµ[¦ęÕn™šcTj™>7†²Ęh~²(ĢmH?œ¢•ż¼{Œī|AĆVѕĄ½’ŌėÅƊČrŖ¬TęŹ~9×ē'9-zŗæ~ŗ(üˆ+Ų {Čnø®"śėóa=ü*U¶­$’%"¤ØÓÉĻ¹ 6J²’h³£i«—Ń'+U—ŃĀdŃ#EŁōQŒ¦ōŚ(wGqųčDŁ˜%µž¹žM4µĀh >GAšÓŠ’¹Z¹ńĀ()ŗ—™ 'ÅT…ņ·ILĖŌ«ĒżW;¶ęāhž»ĒĻuc)¤oµöĘ0Į £ÆųŻźo®‡“˜c¦‰{śUŃ> ŽčFŃ`Øbnš]%mF§$ŚP ¶ažJŚ8¹ń¬ –¬\īsē•†d„2[æįįū£ —l­čŚģ‹l“ēG°rEy`8ö{å‚'GP/®_»¦ZfVG“F[hõ^HŠ.°·Qp'D”Ā(™13aRA•Żß%Į)õ2Ęõģ£ 2f&”ė’!:–?*IĖˆš„ŗĶ1 ĄÄå¢@ē>&Å3£Ø,‹ĖJevśF®?'Į“„ķ1ś¤Z’m›Ėõ’ƒz“ŒAF§?‰©G§?Z¹ ^÷G…żÉ»ū«?ŽŠn¹§ĮĻQƑzėw+~^•Ü†ų|FQYOSVŖVŌmĶ©A[Ż™÷„cF1Ę7~ų‰ĆJłH²āAŒ&ŠFĆłotœ½¢Šīć „“QĮĒ„[ī…¤[ĻAł°¢whoõŁM«Ļ2Š’Č%i2ŹĻŽ,Ž¢EC{¦Õ·āģN½¢\`™ ‚©Ć–z@0EŲ;;#ų¬½žčł‡ dØXD®_ģžč)½õ3źērų”u Ūc“Īq·«e2Z[[ƒŒN4B0żŃŚ ¢F}׿Ń[Ō”?ŽJüQœ£’–­HQ©ˆž8*3m$Q Ø¬ß'+•9å—āčFŃ½ł£Ń#Ō <ć@“€‚jĘ`”“sĒ‹ŽØ£³Ÿ%ščl Ž üQ’;yLŃŽMF÷Ej;.E9Ž®30 Z÷\Ę`”:OxÕ€7FÉ!ķ(©FÆ<’“/–™©ć©¼¼)‘?ŖFQYOSV*#Ł„žčeéś ž8ś0—7«?ŽīŚå†rY*įĒ`T“e:£Ŗ¦”ŽĄč)ĖĶa ¾RlFó·ÜēÕĄ@ĖeF÷ææ~#]oEe TVŖq”ķÄž£ōā,hėō’ųżÕq›QäćPŸ½V—‘Uh8ŽŠn¹_kŁ»Õ·ūū’™×Ńå±Ć#2zö T,ÆŹ{Ņ4 ōŗĘÆĻ’K”Æč,üśIEND®B`‚#Ddąą©Ršh² š S š6AĮ’Ćpreviewart"ńæ`š€bš["֍®D¹\¢Pę?ü:AŃ’7"Ł ēnš/"֍®D¹\¢Pę?ü:AŃ’‰PNG  IHDR­Ž°¬ĄPLTE€€€€€€€€€€€€ĄĄĄ’’’’’’’’’’’’„·aEbKGDˆH cmPPJCmp0712Hs¼ ōIDATx^ķ ’ć؆ē…+Ā5Ńć#łž·zÉ"²6ŅØŖ«m)A(?~@‰–~ē2ŽžyĶe<’§bĶ’NZ#ÕOėg.Cxą÷7¦õĘeˆ²_!Zkā:¾&$›wśżē'_£h ©)®ćY9Qwł|§ßs‹ŸŸ@+Ąz½~·5…ÆׇidZ‚ĄQqr~B+Ąś}ySāŗo@¬bā>N`­•©Öūķ%č’z(L‹`yY½~’zm5łŻƦ$­GcŻ®D‹Gb Kh=aŽNÓņ‚A”!+*¬”Mds“īś Ē×HĖ”B}Å“žĄąķ“…Ż ČD,ųE›„1œ“*[i”²ZĻ×ßæ_¤g& Ø'Z¦k•åŒz“ uĻz’VZEm‰“ ±dm±óדIlŅj­e“ŠżÖiėõ¦!JäZmƔÖc³gēiįŲŪ9÷›<ųŸGšå1įĻ›ÄåR=Ń5x*MN§vWéQFhö¤cŅö|¼ß•hńiTõ|Ė‰ FnP’ó·ÖA¶œĻį|åTõƒXßq|Q]š@4Uwe׹….ēÅõ@ńw×øekųģ”åĪ¶j²²ė½³, Ė¾üü¤+UœpĪ”œkĆžŅł­ YĢ$§yiĶexZqw6æŻŌnŠ“šÜj.·öĄShŽų]±”epŠĪŽ8€ö<-Š*­yZīt«sæ„Æ[w±¦Ėēļ«ųć›÷ÕR%ö~ד¦ŠŚrńĮÖd[ģ€ÖĘ]¬Ó*Ąr«­č$3=ĶT¬[Žī”4ćŃŹ|ZזŸ°ć…£Ü &Ē½ÉŸ‡Ś~ €® Gėżēå~“O]ƒ7…±¶\Ē½‹“ŽÆ?~¹5®‹i-×äøQ–F+ŽœAÅmÅĮĄ§ZB˜JÅy%ZÖūķpŻY\«“čzœ“™²²vŃbķP żVŲA–é3ĀhyeÉNćymÅ“ ‡Œh­¶„P<¬ß‡Zė-lgNėżßŠ¶"\–Gåt€?DĖk &K©ˆ?m­µ„¾_Ćīp`ZĪĄĄüƏrĮTLO“…6ü«Œ2Zļ’ž S„bØNv Ć7Ź_ēƒø”¶"Z¹¶°%äYuĢX „÷v°†ķ·”ĖC;‡­]Aˆ“¶¶Šr°x‰ %\Z[@8ז[ēµå³*h iĄŸP/|kéš|ŻŌ/Œę'CŪhAżå­æt “ŲZ¾äž+×ō„žśń¤ßņcBhš®T[·‡µF [)”QŸ¶Pc阣æ%tW”ŅŅŠo¶ .iĖµ„Ø,…KŃĀ‹”1õ—m¦VZŃRsŁ:ŹĄ>®)5Z^[ܶk dEéIŽoŻ”ō“ -!c¢”Ee”ū-„“Š¹õŽą,Õź|4&¬ö[k“š ¢‘µµwE[čv£• ßĪ·VĒ„$Ŗ喐!÷>ŪB7,i‹:®6jućĪØnh£Į6łĆž0–±v¾%CæõQ†;A¾õų}•V„v«NZQĘÕüj,ƒ³ZĮ‡*Š~8WX^'l=äuZĶó[ gĒ­„øÜNÓrķ‘å]mÜEU[)°č|k±k<ņpČ[Ó:"•ēšĒ?Łu¹ŠEŻŽ'Łß)­Zx~–-wņņ^eZ7½€n+ņą*č\}3Ģ+«÷j§ĪÉg^ŽŸ÷Ł ŅŖI~Ÿ}Ż/—”zFź·ąüdu©Ō2øév˜(dń”¼¶ź,ž7ŸūŁZšŁ;c,“Vś¤¹­ŌOI7µ•<šÆoŻIL '÷‹‹į–p«ļĪO—jk±wš“Ī‡“ķ±D+\;H—„ųTÖiÉ 7€²X„"-'0}•$ž“n€±¬-z\>4 Kiž_`L×#ćSovaĶ"-@¤z±o”GĖāuɗ©lVTZū“ˆ]ņŠ“nvEč-jBKš%“¤æm]&¤ĀŽēŁ1c/•Üuģī³LZ1-¼į‰ū­»2ė‘õ–š>Z)ÉŌÖøqĀ¬†µ5Ģ„äœ1™³‘CōTH£³‘cLÆö•"j}I®“no GŅKOY‘–»WO~Æä±¾o¦Õs|¶lÖÓŻ9+æ÷Ū¤åi¹›XńF<÷ėĘ¾·ÅÅ“†ÄīZP„WJĖĒrļŚ ­A®ØŪµ˜x“h+,cŠāņ’?īZ½ö,—¦%zBZ÷”WŠ¹A*ļžn¹i^Š–<…Į½ÖoZQ3sSļY¬X[īĶ~īŻ~-ēŻĆlčĻ•ŖÓŚ °ąÅ¬åeĻĀ.ēµ²ō`qé-ŪJæYŖĀß=kLW^ŠV€åßwŒ¹PŻRY*ąĮd VÅEŖ­č‰x”źL»×ŪøHł^9—•Ż‹30-]ŠūŽŪh`­×ø„Y”ü~-·ÕoaYóæėGxąÖhē2ąj }Y”¼ŲjÓēŠˆÓ£®üQ‘fħ!? łĪr„˜ŸČ„Ź–®ƒ>”mq —!$įä…$~•Ņŗßõ(“¢÷c ZäCŖkyuKüŽ¦ BZ¼‰ŚĀœ1Uy°ŽŲ6ä.J,‹$Ś7ę«hĮĆ½?X“W®6RPtĻŁ‹ŅVü¾c¦EķTv(+ž ŠŠ."+µÄ % ‰µ7ø^ĮE‘)¤ār)ƒö_D+$„,ćbg“‚ß‹gĒX®Ė—ˆ=>2¦ł!858VœĒŚ¶œńČt+ėcZa5yŒ÷Äd˜2”• Šy„šĮ¦¢-}Y“æ€&ĘBmü嬜īéŗ ×[Eļ;¦¢a¹—Ē_5H4Ž@+iĢø#Ó{*·„²3j’²rłÓ£H“…–å\ŹEŠ#ųč}Ēh.G«š>€A-KPP%–¶KŚHmĒn\ŒF\<Ī™×ŹwjĶŠRĖüŠ#lLž†½„-ŽV“u[ÕT­=„f#qds•+²ł­ø įIč½Ŗ¤ģ·6ŅsŗŒUt¾EīŠŚRŸ)~x€Ļ®Ė²6ņv““óܳ&é”Ń=w×:u]k¢ŽoÓl$Ī]RĒā–Pz)ŃŁļĀ?šV8.¹@5K±VGĻ«æĻoĮ>i ½¶2Z5åŪ[Öšµü÷«ÕÖh=œ¦žžućś -v¦~(äKŠ‡ˆÅQÓŽƒS 9J%QØ°MbIūŠrŹi¹²Œ1æUŅÖć;i~æZģcp²x< č"'¢%)Šöܑ•ó:ץ³‘H ž²pųqÆęƒ?nAF©ļĖ“D5Ķ“€«Öš&8­Ńf#KŚrµå/ N­V**‚VRŽÖܒN§v0Ęld–Sō0īÕ9oLq’> g*–ZBņAhoJkĄŁHh qa=čĶŻēļpĀ…ćqüĆ“ą¶dīoŲŠłÅ)„nXĻćNÆs Jr€¼B :YŲÕ>Y®žo=ßNUƇė·ÜĢŻźéńvnOł¹†žĢ’żpM 3J^ŚčsTäe‹Z:6čz+?ÄšÖĪ‘§Ėé „gŒÖ|3y“āł-šDaÕfŻ)”ZUwŅ5ČU»ū UÓÖó÷ū1!7“*’@XגĮęu Ś­D5ł”—rHøĶKł!ymXŽ'Ė°°y-I…Vc“’CĶ§¼P[šC““«huš·ś¾ßĪ­T[$€@-Ąāg$‘ū% E‘t·Ś’b„Š?é%ę$8¤źwg “ Śņ4­\[3 @‰ bsG1Ej#9Ä™£(ĆßNĻo17@+Óœ"Ė”—›üøŌ•5qtĻŠ¢mŖ»€$ĮB’¤‘ŠZ[“•Č‚B¼”„$s ŗ«Q†ÖĘń_ ŠŚŠoQk§˜Qļ„=WÜ>"ƒ’µau\¹J“ Śņ«Öś­0@ Ń»ī¦¤ĮĆŽĶ“Āü„Äōp#[īd%“jē[ŃCĢiÆÉ“Ķ­Z}†Ń,5ėīķ'É Źe€V-NŲķ’ū&0@ė¾ĪŻ½dhMmķ^+vĖ°r’Vi?s~k7ļ÷f”ÓŖikĪoõśx?ūnmUē·¤l§ Ä7{Ć^æÕ2æēŗšOZ¤„ā…!åf—Š­äč[ē·Ųļ!ł­”ču4@«'ōjó[¬­VrkąT7übä‰čą6 3aHŽo”Õh¦5©Z“„¦GJÓL4Ä £hohIćö“Õó[ģ ŠŚ2æ&³Š“h³jņn1½e!ņt€¶$ÄäEķaehm4½eÖ†~‹G„铱„–L“dÓ]§LoY µE[Łp4Z`hw›Ž²@ėņł­óFōFµĮÕ±ó[gNoŌ–>×Ŗmūhk4$+å5@«ƒĒ£¬ Aæ#Į4@«ßŻƒ<”6?0“ŗµ5Ź+2MŅźÖ–¦Õ÷PŚÖ±:Ū•ģĖy“åüŚ €-5‰å6ż gĶ…jHīi·&³[#ØvøZ÷ ŠŚ ­ąn”µP¹£Õģ­N+·›“ĄuŪś­č™*~Āĝƒ“Ou±%GņiĪKŁaČ/š Ć 2OÖhüZmEÆČ šSķEł)™ėĀ5hĖ’čü¶ąŚŌJhIjÜĖŚb€V«¶ų†žp²D£ ź“wŃńhN’‘ēCĻT¤„-ŃbŽ_@«vˆŁö^ZĢ+¦•2Pśŗ÷ˆįWŅjՖP“Ī™-ŚbYķK‹›Ę Ģzµ3ŠÖ2±š”Œų™ŠÜAƒĒćséż!BšB1£°EĘ42‘ģˆX¢QFB‹«ĀźŃ µA[éCiK.*øÆźQ4ؚ5ī.73@kƒ¶B’åXFÉē5ŪiÕrĘ Õ­­õ‡ŅvĆ?1ZżŽņżHXśÓ_–Ā­nm9góÅņ—ł}ŪŽ ŠŚpąü–®ēć±!õuI ŠŚ -Nāž™<.“6TuŅÖĆ=HČ?9~˜Å­ŗ¶Ņ[ŗøŪzøW¦ -:ļ-£š”lQ–5’;¹Zu/„·tń$Ė–†“¤HśĖ‰¤¾ę|ĖÓņ~bKˆ]VL+‹?%3X”“’ēø0X"WnO«Ŗפ.‹ÆŃV‘–{ƒ†•,Ʉ”Ģ/ĘsSKŌWś·‹B«±Z żŌüšČBź·NWæܲ~™ūu÷„- “Ø“Bh¶3@«~¬yKˆmąĖ½UM“% ”°l ²€ÖĆĖ­m•ū-=Ź mfyÓ¦Ä-_ŚĀz5źµ0@«~Čł˜FōjdLF ųEĶ_Įē@ ±„L³9jń1ųü| iõ½Fصqkµ«×²Ģā+“•µĮ’ūļ““ƒZõ~«HĖkė@lPN=‰ZõƒĢ-hvkKŅ+Ó µA[Wzü“} U=üł|ĀŖ‹Ž2šÕėłīsjŚšĻ'<ŠE=ߜV%Måł„Ē 4ŽÉÕą˜°åł„*4üŹŸč’Ųįźģ8ŌŒ>––$Æz%l³°×oµ<Ÿ°H+qXN«ąŃ% MZč¬j敆p‹ļrŽµpœ"M}ņ)|%CEį%"T‚Zcę²–Q{œ7ŪŌ–wbŠXéż[čPļjśb}ó#šH%āb2ŚēĀę!YXC·žg€Ö¶ē®Ņb,“%Õpw†ØPāj­åķÄw+(Hg€VrüyKXxo¤xøØ-čÖ4±„VŲcYJKر }žŸ.hžOčżZĀ…÷FŖę \­›»ŠG…ę2įWi cZ(ŅOaՖwĖZæÅĪKŚ0ö0H_źž¹€V U«°ŠGÉR³žtū¤„=X=ßśŌŻwN’Śŗ³ū;Ėf€V!Oķ^§/īon€VīäÓ:©³ł •iė¼!ŤUń@}~KšAwæO÷²CĄ”{Ÿķ ×Vv„ œÕśå÷ÅēV|*\p žŹŖÅ[b¼¶­ŻįYŽN‹^·†ūžū—“µL+ē²¦Ę JżM!±5Zw’+&”@jNÄ»„78ž#ž¢†“Zm#ƒ½YŌó3FėńĒÉŹŻśķuĄŻiK$ęcyą ¶p‹Å*·Ø»wg‹įiA'åBøųó~ü?ŗõcZąmQM3-R_‰ēĪ,źŁ O ‘ū-ēSŌÜB‚Ū‚ØØŌ¢¢ķ+ŚZ±Ø»wg [“œŖ {q·Š=ß?äŖ ³hKÄUi '­Ŗ\|¾•\ąäDõēå~¼øž?‚+Œ/hDĮūĒńž*ųGa¬!ßi[pŪ’Ž®­d2 nś~ø~ėē÷ēÆąŚājF·$=.Ķą“Ē¼Ż=ߘĒå–ĶniŻp±EĖĶżšż¦Īž˜æ1Z¾Ū±ŠŹ›=Z¾¦¼>®×wČĄ&­Ų³óž­ĖjZ}Ę$ÕÖ¼ė2X…»*e©Üæå;ŗėŽ¦sĻöZĀ¦ū·šō’WĮ¼–¤“C›¹AZtąÕkuŪii2-pŪ\æĮŹ&-ļŅźušabK¦®8ģDA( ђ0•’ąOź@Ÿ*zµĮ’}I¾Véž­,4!@nńü:Č($fÄśæÉŚ"-_ŪƔWńŽH諐3¹HH—U# j)6W™œÓY¤…ŖX½7r…VĢP$€œ‚ą2ŲgšśZłż[čö„ ‰,Uń*IQK³:®ÜŌō%‰lŅņ¹:&”õTŗ›’OBŽa<į)ūĶŠpžsŅfÖł÷oŃ‚ŹģŃŹZČ²GƒåĪ³wĻ:ĖŠ&­ƒ?¾ę4ķ”)ŖŪ”Ó€FS[#A³I+&0ē·.«‘M-aŌoĶł­Ė`0æ%ĒrŚ@|³÷ģµ„-ó[¶ x;o‘Ö]¦· žoµ<Ÿ0ŠŅÕ|‰–^Ļ)7Ėć£„µEžØĶo”ßKÓTn żb<‰h]?½õ„Ś¢É`ĀŌ¢Ļ²ŠßezĖ$­†ł­0™U¤E›Ux‹é-““°)¬<ū“§Wha¼—[Lo}­ŅüJ-”L'K—•Ļ†gĒ>A“$ž†QFįŗŒh~2ˆłaŽ®ßfzĖ¢¶NŸßRŻ[‹@>°±§­ĢĒĪo9½eP[z„ńA5¾eŅ/ŠÖ-ż¾­P6iÕ^änMvĖ6]™Ź&­šG=(~ó{ĶöNŪmŅŖhėį_Ēź~ŸĻĮ$f“VENZž1Cž=ŸīĻš²h’°MZéė’S°‡’žvźr1dZa$¾ģzŚ‚qH½,&;1f³ĶpmŅJ*j>åõžu«q’­petV~J·¤Œ˜[MZ‘æÖ_māZA/,O+~x—Š>Ń$‰žž¢™‚j8`%³*n­$E óŹßāOØ>4џKąk“åAŻSÖ¼¬ž÷æŒł—#…ąCµNµ„¼–73;TӒĻ!@¬?ÅacVŽ™Ł¤µžJ.ßa9ażĻAK“Č@EG,!ž4‘6SmÖP%)¦¦_ĢO±×{PŸ”Fä=#R³I+iEŅWr¹¼×*-ČAćąļ“:Ż¬0HRE‹7—Ģ"†XąOa±I«ņJ®tY5Z‘¶Ą…äDłĻ}(cHL˜VĪ‰r5IŁ¤UŠ–_ÅK“TĖG]¾ÖŽh,Žķ9ž†<Œ#¢("ńßuKłˆYŲŠĶ¦lĢÅe“Vå|ėå“õöż. ĶNÓź7ķAŁ¤Usƒ£õz9Z5»śö²ØļD,lŅŖÅą]ĆŃśLUNŽĶŌ&­ŻÜs³ŒlŅŖiĖų€üyŸś³µŲ¤Uń† =…_čyą1¼§-›;;›“Öµå"Obxŗ”×Öi¤üŽžLmµ{@ÓņĆvm½jP— ^n“ūS[¬š¶‚1ŃrŚņė ž¹ß;|įȍ|:Hė’LmµKĖ‡4¤v‹¶0Bkj«K[Ī]tėøh‹°xŃh-üAY ŹÕČhė²§šŚźP„ ßÆæ~ń/éā~ ½Ž,üō~ ¤héM‘™ä Ņ¦łøļS[umń;ŗÜč½Ōo‰ƒ#NØ!ģ‡¢¾'Ę„%SŃs™żV‡ŗ “Ž„£čkęµ­©­ŗ¶ÄBh9ƅ1į²¶ōpn]:-įŌV—¶šŠ5ß}…1”Œø%ä4:@fjd2BG„Ę%z¢‘Omui †ż8>ŅVtšTŅē«ā5-I¼ĶŌV—¶²Qö[5Zɹ1ŠO-)­Ģ€S[ŚĀKpqŸ½ļfœ°£¶w˜6=•«’Ķš«‰žs'L¦¶:“åL“ ć;jĖ„¦6gLj.}R;čīŖ™Žj»MZµ¹c¹TĶ½ČśV8*…±I«F€“õxŗ×ķnīDj;9`»MZÕė ±ßzøń ŠZ¾²P®¼%’+Kš’@'ĶŅ&­ä(Óū·ų¢]øWœp­J,ŚØæœHŹ“MZ•ėąŻµŗ~Į.+¦ÅWPėK׿ÕQį¢x¹žÆ€¦k¦%„#ųįĄ‹*µI« -ÆČ“žĄ›ĒŃZ]—kP6xM{Üą%–dˆęņwŃćŸl°Ikżž->Żz8]żrKˆ€šŗxM+ø_w_Ś²@‹*Ą'`ŠimŅŖj ī¢Ļ_іRE-d”Ņ–źī¤|†6i5ö[z”AŚŅRJ›6E@·y¹¶įžĄlŅ*hĖÆJś-[ŒčSe@«Čā­­Ä„¤ į’ķc¤õ%ŚJƂtvģšŃQ’[m[ķ:vĶ¦_”­Ģ/žÖæ’ŗ‡0ōx¶Éö0YĮ1Ų¤UbT· Ö)ģžÄ&­Ŗ›°ĒjRK5Æ lŅŖiĖ7*ø„k¬Otśę]Ł¤UwĻōÕŚ¤U׏Ž'­zĶžĄbė2|Cųž.RŪV:ÆņĮ1.&ż^mį%…BkeŠ F’±IŲhłuł¦øƒĪqŽMZ•z į†”VŃŐQģŅ„o1­¬\ŹG`“Özæ…×ā>h‹°€v ęįo!šDIi£2šTCźš9-4Šs+!‡zÄŹ&­umłób ĀOž™’āMp$ÅrÉ©!²Ė×FAw ŽKųPĄcö*Ų»ģu½ąßĖū·¼o~–4B¬c¹)-év‚§ŃĒ‚hѧ”AšœŠ4Ō ɀŌ¼Źėµå}ęnPDZ+T× ŚBG*Cr<+ƒ•”¢µÅ€qØŅ3Ö¢+6iUĪ·ÜćĒµ„¾žĆA!€(h‹¬iI÷Ć]QĪIō'r¢DQóTŗ*-£-įś1ū{Ž]æå]$°øu¢qK†ŲĻP½ē– Zµ°M·„ŽžSlNŚdZa`Rd„ÕĖŲ政•J±’f›-aŻO.ž Ā`ÉŌSÜĮĀ&­mĖhKXŃ j4e}ėÜńZµ-e°ŁnńÄilŅŖö[ō†é2Ś¤U£š„W ˜bB’B€K™”Õ©‹MZ•ū·–Ć„$¦‡EZŁ`Ÿā}—Ox$D›“’ ŸŽæĮ¤9ķä2­”DĖ‘¤ü1Ł¤U¹žłŹ_OŽ†Į½’Åų ¶±n$‚„Į&¶[ KqŚŻįŁ¤UŠ–÷\Š¶„šĆŚ>ˆ$ ¦©!IµŲĘDµIR’æŚ¤U¹kY[ -!čQ%TƒUŒr’>Ģ&­-Ś‚4¹¶Ä墫܎×$Ā›“ £}žS¹†}sæUl ‘=õ[IKØGY~6}IņÆі?īÕ~‹˜”FB+Sp’FóR4“Čg¶vf“Vķ|«0&ÜѧĒee“VÅ_|óžļŪ¶A›“cJD² ‚ŹÓ&­qüßWR›“jŚźóŃ}¬mŅŠż;čōH”’Ų¤‡m1Ąt…l/‰MZŚOŽ–%vĢˆš˜\ Ž2dxNČJÓ#>źĒĆC!›¬‰īæe–/ĆÉsß.(•Ņž¶ņɬ|z¤H+ńgN«ąš% MZč¬jœŠÓņĪZ 3AxČŪɤ¬ I-œ×Ā æ‚Qü-Ÿ|i€J0@CĢ\ÖźČŌ‡ ³©­˜VA[äPš7ŽēAˆ&ŗ7l ŸiCˆŪcFP ØŃ ”]^3i%pļš„ś-·k½ņ©G!“@ ]¤#ng±q·ĒÕĢ9O”#ŖĶKõCR>łwj Øt@ŖŗJ:¢åwAŖŠ“T^„i^ß@«0­Ÿ4o-qwBKGĂC{Z¢ęŸ«Ė&-ļ›0ŹXødĘū—–Š‚‚o»ŠÉ4^ˆŚFÖ  ĢE2`ż”T›’3H+yįÉÓ#Ÿ h…„=ZŁĮb'ÅĖęzŻ˜pŅŅŽŖžo5zuH³/ŠÖ\Ź…ž“F‚9iMZz`ö[£]öS½śóĄŚriÖ³%¼Ōż;Ÿ“:v©ł¤u©ū;w>iu:ģRóIėR÷wī|ŅźtŲ„ę“Ö„īļÜł¤Õé°KĶ'­KŻß¹óI«Óa—šOZ—ŗæsē“V§Ć.5Ÿ“.uēĪ'­N‡]j>i]źžĪOZ»Ō|ŅŗŌż;Ÿ“:v©ł¤u©ū;w>iu:ģRóińKpé÷Ęŗ±–·ækż';D’šę1Æy‚7‘Čņ|Ēß/Õ@ĖĪ}ė?é!LKW=8ų‘'‘*¬ųčGÕÖą“Ŗ°šĪUYLŠĀĖ°¶øG¶@ė=,­VmŃr…¹%twљ×V|ˆÓņ·<ŽJ«][xŒZĀiµŽ “CX[žŻŖöµÅļŃ9–AĆŪai5k‹ĘšZB>pߌo%‡8tKW¼q¢3–1+į54†VbÉSf~ćļ·’Ö'LqÜ|üŒ™æÕū­ō ĘŽŌźķVVŠÖn¹½Ń©e É sšXG…ļߚĖ(˜“F!įM’n»¹ÜßmZ#UÆo-ė¤5łIkŅÉ#•ujkŅÉ#•ujkŅÉ#•ujkŅÉ#•ujkŅÉ#•ujkŅÉ#•ujkŅÉ#•U“5ÖÕ ßZZž©Š}wYēu#ńžs’Kf Å’Xš kĆcIEND®B`‚~$$If–!vh5Öh%#vh%:V –l”¶ tąÖ0’’’’’’ö6ö5Öh%J$$If–Į’!vh5ÖR5Ö#vR#v:V –-ö65ÖJ$$If–Į’!vh5ÖR5Ö#vR#v:V –-ö65ÖJ$$If–Į’!vh5ÖR5Ö#vR#v:V –-ö65ÖJ$$If–Į’!vh5ÖR5Ö#vR#v:V –-ö65ÖJ$$If–Į’!vh5ÖR5Ö#vR#v:V –-ö65ÖJ$$If–Į’!vh5ÖR5Ö#vR#v:V –-ö65ÖJ$$If–Į’!vh5ÖR5Ö#vR#v:V –-ö65ÖJ$$If–Į’!vh5ÖR5Ö#vR#v:V –-ö65Ö‰DŠÉźyłŗĪŒ‚ŖK© ˆ_target ListingA1‡DŠÉźyłŗĪŒ‚ŖK© ˆ_target ListingBJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65ÖJ$$If–Į’!vh5Ö“5ÖP #v“#vP :V –-ö65Ö<$$If–Į’!vh5ÖÖ#vÖ:V –-ö65Ö<$$If–Į’!vh5ÖÖ#vÖ:V –-ö65Ö<$$If–Į’!vh5ÖÖ#vÖ:V –-ö65Ö<$$If–Į’!vh5ÖÖ#vÖ:V –-ö65Ö<$$If–Į’!vh5ÖÖ#vÖ:V –-ö65Ö<$$If–Į’!vh5ÖÖ#vÖ:V –-ö65Ö<$$If–Į’!vh5ÖÖ#vÖ:V –-ö65Ö<$$If–Į’!vh5ÖÖ#vÖ:V –-ö65ÖąDdąąõĶšh² š S š6AĮ’Ćpreviewart"ńæ`š€bš$Nv36h·…SŠ?#¤Ęā’`MēnšųNv36h·…SŠ?#¤Ęā’‰PNG  IHDRmŗōäē‡`PLTEÖÓĪ’’’q”Ē„‚„hŠ½£Čņ$k†§ÖBAB&E†Uu­5y˜»ē8X”Jj„CcœZ|µĘĒʔµŽ-s’’!<|0MŒA]œŒ°Ž1QRo„|žĪ†„(kc‚µź‡Ž2bKGDˆH cmPPJCmp0712Hs¼IDATx^ķƒœ&Ę³½k’KŅ$mŅ4éŪ¦ß’[¾ĄĢĄ  ‚āčŗćŻķķŗśćń•?Æ^Ł¢Iąf‹WÆnšYūšiŻ^½įĖĻŸ?æŠåĆ×błFĖ»oųóŽ–掅\ž†åćß³å{X>óå“\žē—÷šƒĖļļŻOZž‹ĖÆ’…¾üņė/łņĻ/’dĖŪŽś_¾üxūƒ/_płķĖoŁņś·šÓ»8­1Ś_ßü|Ć`ųśÕż2Ųß>|ūš!Ņž)Ćd]„Ķ‰’XŠžōŁżąņæOī'į&Ś6> Ū‘v?nO;ž±vØß.Ó~ż›Ćģž<ėnܒ¶Óų×\Ū¹“ķwļxĘ¼IŪ»AŪ\Śģß9m”mGŚó®k;ńvØsmē°|łÄ Ņśö¤3֙÷æ¼~]®“¾łś¦Ōö‡ŸŃH¤¶ų%āžŃ¶4“ŅI>}ŸŠ6wa%™“0ńĀ.y/kŪ {RŪ 5h”-xĖāļÉÓ…”_“;‰ƒ½äŪ·zIīŚä%Ļūö÷Ÿ}ū}éŪŃŗ§œ„]·4’RŪžuÕI~ū‘Ū6ø¶7°}v‹’?Kūvs&ā’‚¶o7(&Į·™•mķpšHŽmßn®”t/¼˜üü±Ń·ßņø„oĒb’i;+$ėVXKć®”‘5ŚŽµĒäķ‡ßŅ·m:ą&ŚĄŽæ2m;ržöW÷ć“M“‰¹¬’ķoļÜ;f$±œdŚ“‹:IMŪ± e%’ŚvõV%©É/„“Tź$6ø6ś¶¬–Li» -ł£“x”zmū’^Ūž·ż^owų÷-üCm{};ąļnļÜ«ū^o®fā’żõ—ķ~Üā^>†7Nąį_½N«€©NĀźļß’ēl›U¹¶ĄŁb2ÖßžŠI±|©ś6j›ÜdŹøÉ„s'įŽB“g÷āƒ¶ø’uˆƒŗŻ?’Nh;Ōž×1öæš/€NāéßĒŸĮø³śöw^ćNŚvnB‹ćŖÜ¢NĀhÖu’ pĘ[Ō·Ė id ƾö‡Ą¼Ne"Ąę¾ĶÖDŚ·'ķžĄ·ƒRż{ÆoŠ¶¤zvfi{]ƒÄ=mweƒ/AÓzPx„NĀŒ„Õ·j§m·ŌÆnäÅ h;/&Ė«›RŪ“uYLĪÖI ŚUm{QŚ‰'QgŚvג”¤,µķj%‘v5:Éē²”t°…qד„]­“4Ö·…“{źŪ¬®ŠIøøi« 'OŚö„¤CĖ“j$Øm·¤ķ/Ü=čBŪ”X„ü¤¦mę#QŪ®N"Ŗ$SõmaŪS5Ą ŚöU¼ÄIę]\I¢ogŚ®×I|ŻļöĘ9¶3“PL¢•ˆR’ j€”>žUJIt_:śR¬d¶÷åä²oƒ‹ŌÆ%3זגK¾Ķ@CM0ć]§.pŹ«¬oó›R^ŪģZŅ½åw„ü…d¼–tf=qW*«öķ_¹øė)ߞÆoO\K:iĒśv,%G\KśKwq-éKHq ß•Źļ†ź_ŗų—ø˜€OÜ'T'™Ńv妔ØĪŽ'įeåŗŻ]§?‰Å_¹kĕ»»K"ī“W7ŽµŌvõźfįŽėĵdYߖ¾ķź$ü–+æOĀė$¤ķź])Ę»Vߞؓ8׎×6x ŒDŌ_²åõėrMv0H›Żß7\¹ø3m'aw\+÷I¤•Tļ“,×I&ļøŹK÷6߆‹¦m‡:»øIõķāFIå`Ė½īģ`pnŪł}’BŪā–kÓ×Ŗ¶ku’’ł% ÷IDu{Ö·åó„ĘkÉ/ā®Ōä=ĄfŚ’ųJ€=—T„mO5am£­J@31óm£­I@3-ÓöŠ†‡}‹ę”0­õŚ^µåĖ (īg¦ Ó§…Dńu&Åh÷‰µ/4ķÕS§ø;ƒw¼zš­_gp<°^Ś½įÕłõ%8€64Ē‚gūKK/½ŽšKéüżvŚˆ:£=ń±—^oųƒi.%_Ņ¦&Ó[’qCäŚG›'ÖŅ]64œĶ¤ Ś`(Ų„žł—>św­ˆBĢóÖĆRŚóg„¤ P”!± <‘3Š–„dCnĀC•)›ä*oՖlq gĪčmŹ(~„6Ś™0ł dŚgȔ»éß­n‘‰DŚ«ąŁF Ųłi“xm b“·ńėŪŚh÷ńŚŚhoć×·µŃīćµ-“ŃŽĘÆok£ŻĒk[h£½_ßÖF»×¶ŠF{æ¾­vÆm”ö6~}[wŠöĻÆäo_Rš?Yø+õ|{ĪēŪ9Ż‚@³¶Ÿ’|žóē?ųėæń)–m#ŠNū?³ŸŸ’x2u·aĘP­“Ŗó£ŻEŚn¦]ƒmŚīäŻHŪy¶sķøųONŚF{'Ś5×6Ś°$øv’¶’ä„mŚīÄŻę$ĮHÄĻæĻnŲ5£½ķvpķ[ķPI\®).‡č<²3oŅvYż >ŅH ć2 Õh”Z]ŪßŲ¦m£O³m×\ŪK»QŪ±' ŠŒ]ūR§©8§ĆĻž‘ūŌ@{Āµ{iĒŽ¼xŗP’Č£;[\-“+um¶ĶIg¢Ķ:MŖv”Eż‰7’V'”žŖ {ŁaÕJÉ@|Āµ·Ńę/MŪĢšž’-eÓć$ØdN#+%”³Ÿi˜§+vzē*$^ŚmN2QR=ŻüŲ—KÉ40ŗ梉‹Ń^Qįi ;TDžMu’;uŁMŚh{ ¹Żø¶CķN]“ŃvŪv'ŁZš6ŚØm9·EćÕĶ€¼LM“½²…¶ŃŹĶI:uŠH;ąuĄÅbĻn:a7<){Š˜E ŠWŸ¬=Iļ&m£Ŗ‹ ĮīƒŻ¦mōņ¢²3±‡¾¬mĘųįim°L{k ¶}"`“5Õ`“¶&Ķ“LŪF[“€fZ¦ķsŃĪoüŁēŁ[ĖŚ>įXXw“KņĢY¦­y¦]=-£­™ĆFŪhkŠLĖ“m“5 h¦eŚ6Śš4Ó2mmMši™¶¶&Ķ“LŪ'£ “Z \ŠČŅtZ1•” Ü÷mQ5i{śŠį›N4Śņ :ćŪF@sėh—JĪémš?+öƞaAŪ4«›žjī|½QYĻ2œžWĒųpVŠ ±ļÓvœ[SN4és õ ^裋_óž×8-:ŸēaÕ<Ū÷L«ƒ6u’FN±Ļ4M€(§ œÜéŚ$łö¬ŪĶq·Ó®Œ @åc©ķ™=Å*NMŪłŌ’—p`m*ļĄpeßõ)ŽT‹©; ĖR`™e;m6Üp±ņG¤JÉH{²”$żĢC8¶%ŚD»ŒŖ¬'ōb!źm»y‘P+h×.-įb³§®f“AAė¦Ō»ˆśö=ŒŚŽw‡.»ŃÖĢ^£m“5 h¦eŚ6Śš4Ó2mmMši™¶¶&Ķ“LŪF[“€fZ¦m£­I@3­m/·•šøÆŻs»›3{¤IB#­ŚsO ¦Ÿ “¢.Ā]ńy$åäłhū=»źƒŚ±qTlęOŚ”=‰œs¢ŅŽ)Šī†čc ÖF°fķjķX@tÜĪ§ųH½K1‡-® »a„ŗtb{ż&Ś¢­T2Ū@+6 ¤āˆńé|j¾Å0|N [_£t•F»“D œl©ķ†öN‰kF˜Ó¾"ģmWh§¶R¼"ĮņÕ¤$L ¹5‘É`‹“QŠ:O<ķŚži+…e++£9Ėk`Üh%鵊¢Œ€ųĘvˆ8ņ&Śåžn>Ļ7Gp z½;±‚öÕ]P¶MąWŠnŠ×ÕmM]m£­I@3-Ó¶ŃÖ$ ™–iŪhkŠLĖ“m“5 h¦„®ķŽ~ÆTvbŅ§żņHKÖeģŚw4žóę]5Ś›vD`“;`mŚO{ģc”§?w"Nžč¢ž? v%®\Ų:ĶÆŅōSd6ók9e?ķå¶R=•(O;Ģ*æ8Ä°"[K[cłĮVć “ź Ōx]‡vŠvMi­“'#ØĢ9Ź&"ęb™„z4ķ‰¶ROƒ“ ņ@’ĀG†ņ#œĮ;Ą `³$ū”wÕ8ŅéBŌ)2Œ5­ō_a"<ī°ÉI&ŚJõ:IT 2DWÉ‡Ć—ŃkšøćŚh y›½š8Džędcų)šv½ÜW BźOļMœC÷×hŹ™Ń6Śš4Ó2mmMši™¶¶&Ķ“–µ}…v½ĒCļµä}]ŗnoķZRÓ<Œ¶Ń>Œ€fĀĖ„¤ęŽ\=-£­™ĆFŪhkŠLĖ“m“5 h¦eŚ6Śš4Ó2mŸ‹6ævG}žr·—µż”Fø§iUO¹Ū-“Ó¹†Śŗ)ĻĄŹ*ĶÓT¦ÅZ.“H cVĆ"‡§nŲ 5Hm“hū»Č¶ķF³ĘŌh{(-øqXß© -QŌł·ÓöjŽ“]dOķl+§Į–›”t擽ƒwd“Ćz’ReoaUŲ]ßĒ•ųC‰ąbc«’ įdd=¾90C›ś"ĘYpĪˆūśŃīi¤ėō&Nõ@ƒŗćųÖ4Ăš“ķŽ ŽLųö-Čūéę¾[įoż*·Žæ¢ėą{ ¬„oĆfž= ž}‚t|lYdE“čŒo#ķ8’}šś³"N, ¦/H½čŖƒŗ”„bęŪHūFē$} _ĘōāDz8ĻĶ°…3’Ÿa؟v„Æę*ĪPÕŹg…‹sęįŒpŁ|yb®GF!§éĢĀę”}āš•/ĶŠ\Ł,irĄuJ.·ZGŪaā„7ŅĶå8½[Ä^ƒGÓ¾įŃ\„|źŪ¦ć”riŅÄ4Yė(Ö©;Vźj€ŌµõՄ~”÷J[‡“t QĢTŪż€ę 䳘Ņ鏳ĪŁģ«Ń†D†.żŚ†><©?a仂58 V°QN;˜Ķ8ȦźL6LŚŪf|’ĻE˜Ņc&Ż|8ģŲU³]Ū cčƒåĮsŚ™Ć4\m)­d³D›‘šŅ„¾d%āéŪ•ć ĀL$9śPio¢-{Š^p œS)ISpV 5`›b<œœ>ŗTKš"Œ5”œ6E6x擤:É(Ś„“NĶŽyv„øz"ä'³“³ŌIŠ·”+¦ģDń7K[ĢTv¦zœL^H‘Ŗā±Ŗ]L’³‰×·™ÕólLŁ7ø˜ģ×v;ɖ6›'P}[Ą­ c“öĄ‚QDeN²ŁZ¼FŪhkŠLĖ“żP“WÕdīv£ƒŸk*ė i 4Üq½[]oĒ¶fžm£­I@3-Ó¶ŃÖ$ ™–iŪhkŠLK]Ū=Ķq/öąkIkQlOöŗĘ·{€{‘µ§ šdGŃMÓfĖšåę˜ŲĘu|“»£ĮVÓ_į$•&Åe‹“4¼ż|•*ŠNm=NÉhÜN­¤=…7¢5Śƒœ„šĖ¹]Ų$0”q1ĶAĄG¶§ł3˜ÜĮI°Ķ¶p­S«ÕqŹ:>¦Ś¦&ÅrFjöšfyś§ĘĒ¬-löų‚7Ü ļ©)ßų½‡ć^Cl$5ś“³¦ńʀØpŁņøB›Éūz¤FŌ‡#ø;ÓęSmT§É :IģĆA“ćy¢ZA›ÕIČ)@ź©…1›ą(®G+ĻŖ(s“70=ō“YWŲ÷Ķ…ęS£ž ”1±ļHQõķŲ$4Tæģ•}VŻ–¬^źX×]īJMLSj“w”=q:m£½Wŗ¦”\åŚ¦m—…F{/ŗO2RŚ±O™ę1—ÖįŚšw§ģą§ĄĒéģ˜”³›Dń£N¾Ó«qĻToO²ēĮœ>n£­™EFŪhkŠLĖ“m“5 h¦eŚ¾4ķ “ī9„ƒÆ%­E±ŻßuUŸŁŅĖįw„^no.»øūŁ|q…āįNrmŚ\Żkh‡VLĆJn÷\ņ²Ņ~“=«YEŪ“†;ŠĄ§©‹oų‡³gŌIi{l“ł™š@“©Z÷°ÄŁ uÆķ+ӆ±€=­UN‚Ū"mj„¶ŅÉŃIŠN\ Ųū’aMx~š«P°Są$± [E}›·(^‰:ä72$^ž¦ĄV¤UĄV²×Ó¦”X×i{Ś.LĄƒŹvś)iĆwg[ؔÄ:ÅFmó1sWŹ;ÖIČ2„¶“€ļš6²ŁBŪ·Ēfķ·÷¦Ā/=$g“öˆśöJ¬›Éś¶,ó $‹Ąz y5|„$åÄŁpØoļ@ūl”FķŃE²%£ŻBiT˜Ū+ł¤į ÷GŻL>a<ł$Ž‡ßq[ œ=¶ƒļoŸP»īRv“(~“V—»Ÿ(ÖĀawÄ,£m“5 h¦eŚ6Śš4Ó2mmMši©k»§ÉāĀ|-i­.įdŅ¹–“1Œö^·Jæs^?Č²‚öčV—0 r?ļl˜y~Į)Ƨ,ÆČ¢ZŲ…~Ś4ˆåbU©©eęōع‹ģ Śbč]ł-|J³,/e ~?·“ Tć†Ń“¦”\ÖkOˆÓŽ'‰ŽQ­>Æ\Łļ$=,—Ćž’öŗkŪ†0Ś †1ŚĆP6Dd“ b“‡”lˆČh7@äpŚĖՖ+…8ų)š0ŁÜIDB:ź-®$Üīc1ŚŻČ6l`“7ĄėŽŌhw#Ū°ŃŽÆ{S£ŻlĆwB{·źŽ °Ū;~Ģ”{”½APs›ŅįĖ‹q‰1¼>R£ ŚxźrĘhG±m.’½iģæł6?µö“¶CkŃ Z†b怮•’Ėb£ĘřQß­o—Šk¦ L|S”Mza.0Ś¹ģ§h›¶)UĮ › mƒ@C\lŽ[Ÿ;U€™oĒØx“%–4eĀKE˜,;ÆPß&gņZD ęDš}ŗ׌¶£wcjŠĶņŖ^ Ś‰h6•”£(R™žę„NIÅĶr#ĖóJü÷\LNRÓvd“ MŚšmĮŻ Ém¬O¤ęüKƒsĪ×IųȞņ}ÅIŠŹ„q_ĻIØ n<Üh¬”ģ…·Ī×·„“šB·VJņ.Äü “;._jŽ÷›*ŁóķFŚ —–=“¢+vģĮ“½1=“óX3Ś‡Ń®ihļ{t{ĒĻõķ5ēt}ÓvUŪ{ ĆCOwŽ’¾“ż;ī3p_1Jq­˜pėtĘŽēwӝZ¼ŚūŻ}“˜ńv:»ćŖyj=nZ{=›{\¢sGn“5ua“¶&Ķ“LŪ@;t³®qÖ‡÷‚?¾8lÕl:ģ$Ž¶§ru£y>ł“ÜH¾C–'£ŻĄŃh7@ÄhCŁ‘Ńn€4,ČmģĄŗE֓^ņķł¾µ> „äS¾/Å ąü„$õ«öž”‡2['‰żĶźyµ–v^Ä?Ķ•ł÷D{±ĒŅ2ķérķ§W¹–ÆB{©?ׂ“Šę8Fź”NÓQ•9±ģ$O7O×?&‰Æ7’v"WļHŪƒhū>Œ9°Ų~‘ö“k†ķįŗ«W§r|uü§~G“—hi×6ēLƒČ¬r’ l€‹*wZæķÜm“óžėŌ~mļ!W„=»…ötĻõ5“‘ {pm;ŸńīüN§’ ÷TfjłõķŌ 'q\_J‚=;ļš„$½z©OÕļ€vėeŌķÖxRøÅRØ:§vK(%ŻŠé2²:Öe’^mŪbéZ²5öh殑ĘĆĒi1Ś³Y¹ØmŚ5'}Äh”Ż~śÅƒnź·¦ĆŻæ“4ņ)JÉA ķŁMC¶?kHw„åŽSōķŃzwo ³G1ŪŁ ®Ćrļ‘š@Ś{äąłć ÆĻĻ:ŗ%å„ü¼*¼>>#[ž]Š}}ś•ž#^™UFåx·/" Æō¶0J¤2.1³W¼Œ_¤¬-`ßĘ¾Čd ŖĶóJØ0²'6«^‹=‰Y•¼ÉÄćėßōü›®dšÉĄW2¶d£Ėæd}Ł.—łp“ļį+¼’“\®×ģ«ĘK ,¹AHØČ÷‘QeSĖV—ye,éߌŒßųšāŹ1ó“KÖGöE ģ lļĖ+[—ćõ‘ĒÆl`j_čå•|ab¢ž"C›J¼Č֝ŲŁ+^l`Yž–_ļĖ«j_2Ņ}®óJ“±ÆdA‚ ģ‹Ē°ģŁ²‘)+rˆlIÉŖ^ńŹlŌ-ź¬ńmyÕĒ/æ^¦łLy†HóÄeżE3B°/"&ĒČ#”śCu‹źÉ°5ųeJdMąŸĪ+«={»e>_Ž_+óĆb#;æÆ|c_ÄK­Œ¢斻y:O˜xrćW¾M³ żDńŁžŠób ÆÖ_/¶4jkꕿ(Ģ¹Č}ėeöˆå²łÕbł]Ę/ŲĻŲ\/æŚ ^fxĢ~ļ/«õßžū×~”K!ėåW¼j÷cæ·sæ÷÷‹×ē§O¼Ź–Gœ§„} øšzŠqų·õx<Ą›Œ<}ų•÷ē_|q ü`^fµ_fÕ@šš•L]®ą¼ž„gIö¼ž„gIö¼ž„gIö¼ž„gIö¼ž„gIöõp^))·ßµHŹm-Æ©ž”čėŸ`ÅļZ]¦ū)-g|ł²ÉÆzh•÷Št„}„6·š"Ŗ­Rj¹Õ•ŅVx‘pTŠ(?Č½l©‹k”ļ|»”pęÄ>?ÕŚ¼‹ŅUy5YVSļ‡V¬¦‡žŽŅhי,/ņ Ų7Vy1J”o[ÄļL³ĪKüŁū½ĪŠ&•I:ėI5ŸUü łIT[Ö1—[¾“§-L”—ō¹u^ 0ē«šīTšąģ[ö•5˜Ēq'Ü|tšā[P7ąÆXżčó¤iTē]–©[m_Å£° X½Īć•t.øį}°®G×Ā+ĮŅq.’=XÅętž/+®fH”¬«żīC½X!c§&>»”3T™»ˆč#t<²Œ^Fxńéąæd 1€Zy‘?W„š^qg*s.fĀT\W;6#§KWŚ’Hµ.ėõüŠqA{1ī@ŹĒöŚós9زj_¦Ļ^:?“Ę] ¢}ĢŌ¦óĖ‡ĢŁ}³ÄigŅ@üŽĖä…óÓ«Ŗėš‹gæDė!õ©_šæē~Ćé$\}r×2ĪYgKč$æIwŲĪÉxĘž†ĮuŽŲ߶Ōį¼ŖfómÕ;¼įĆy —0 D Ægõ‡ą¼ž„gIö¼ž„gIö¼ž„gIö¼ž„gIö¼ž„gIöõT^ršå5^ʞ“ąu9Æ¢s«šÖŹOAhłvčSĪĮ <ŽchŠłŚQ×MIžąL_čæTYœĒgå10œķ½^~V,’Ūyp&i‰Tņт;»C»$'¦D^ŁĆ#ķłź=7Ižó@č@)±Ü—ņŁŒUZŽ£pu^ļą /f=°‰›4ŲõS> ,­ØŅ9½”Õ¢’ŚĒĢ”byŁ¬}ÅĪ–x©‘˜8/Š®dÜćr ±±<Ćq1zĻYķQĒøa_Ž/Ģa‡<Č B]e`&‹Ųm!|Vb€MܟBā“`†aF»Bß;Z‘ē@Z\Ż¾ŪųU6Üw{ÆVV ¾×ćU˜‚UĻbVGķ &šĘ˜‚÷ö–ō0nIŽ—F×Ėŗ>Ź®K¦ˆ4ą·Śõ}ė/BÅė#X'V@FCŁUl ļSV=÷aq3ßžĘ;x­#$ŚņLĒĖ_[¾SŖéx}'åhkmü²ė#7Hx}ßųå×­±Ų.öŪu5CŹŲ?œB» ±Ų®«RĘžį ŚeˆżĆv]Ķ2ög Š.Cm~(gĒ¼»‡{‡±č•«ū ų¼Šv»RĘžį.uÕßÄ«[īAÄžį–"§ŪŠżĆĶ~?ÆAVś®Å”ć—ļą| T»ž'$> ļ+nž(Ė[ŸŸŃ£č•ó/–«§čõ¼Ņü¤ ž‡ķć8Šł”=ŽÕG˜Õ®ćŃmūłr1@%}š¦Ó¬+_}¾LŻ–ŸÉ¢ÕkĆĢœūXóR®b’ŠpYĪ™ó™­­¾Ūū.¦étE€óż¼Ųz|mŠI3ʓ ®}Pi¶æ&Vī‹ęP}¦ÆÉ`mĘrŠÅדšāż"és{°k7°Ę Š:Ų/Q’‹q?ŒĖŲ?[žōĒFFėĮź}I·"šŽ·ZĆ~'8(™ē*Šė«’“yI¦÷E2®ضŲ?ōŃ¼j<Üļ ®l4l<NMœE-* •†ūĶ¦vnŲ—•ø©“‰TlփśD~ĘX*ī@/,Ä(÷]ćx2 v°zß=ĖĪUUN*ŌķA‹;b™H0/Øš}mŁ—IJ¼X;zB%éźü°pz+d“Ā÷šbŌō“d™ƒī‡r_ŪŌ1É/^ØWoŲż¾*j©½}Įš©ą†Ļy•¼ÓĀ†EĆõÕŅ|ŗĪéüśK®ū¦q¹8žä4vRŽoViVŁ­”ŗm÷Ķ…Æ%DéóŠ@Ž/K’õA‚uW¦óž¢•p’×$ŻŻÅL·Åęq·b&­:^“źi±īēåĘ+ń÷8 sMøp—’,徂éķ¼Š©[9’öDÜ÷{€Uå6ÄN9mž‚—®Ähž­³S˜čė„uĖÜ®čä,T)÷év?/;ÅąÅ„^å,ttPz 2šŖk]ŗī‘MW²A+ŸtSš2;5:.ų%»Ū,ߧŠ}¹^NnŻ›5?<¾ `䚀-2ŃŻŁĒBH75c [wŒ`“FūZįe·öõŠ"õ ¼ģNØ*æ°Æ,½$0÷;õ°;;ķY4š’$#ŗÕ¼ł\÷‡n{nĢ¶÷n\Ę7K7Ā‹ÜĘ»łCŻšcė!Løļ–m K÷ ÷+{DŽbż„ē¬2ĮČīą­ę#T7Y#üŽZ“n÷‡“éŗ[œ“÷?ƒW7”K ^—Ŗ»»²ąÕ­ĀK ^—Ŗ»»²ąÕ­ĀK ^—Ŗ»»²ąÕ­ĀK ^—Ŗ»»²ąÕ­ĀK ^—Ŗ»»²ąÕ­ĀK ^—Ŗ»»²ąÕ­ĀK (xĮ±ĪąsMŌŅȦś9F€ćłŲŒ+šĒh&ZŸ‚fųxMćŻærūv<Öw ˜æČ×ŅŅö4„}i8Å }ķŒÆsa^ÄJi+õSp ŖĖ$†~Æać*ä׉ żČ.6łĶO·–ŹōŅü~įļŹ“#Ų•²Ź«é—eM½dYMŸķ®¹89~Īe[^tūFq §æX3 @é ­I~ob1ɏRFżnh ā:/±ż3ō³*j„&ČśÖg ńiŚ=Uń7r^īõÆõ{¢z `ƋĮ³2¹ŽB¹äī×ję®Ķüī}ŝ”+„‡(Ø?„GŗƒtĄ|g$(ß@M„Ä'Ėg;×Ņ&­‰ZxՄ7­@·āø0^å„vGi[y‰-®Õ_æ®ŌJĒjĒæĀ²°S”}AG.żF+Š¦tÆē‡ĪŽP’5’č'Ā[¼Xs~.U“eż—˜ EiTžņ@41Ģ/q,š(ƒ\Ö²/ŸoČś‹.8-ĄłyĮƒĖcJvZR™o`æŹJ"=¤œŲ' ¾4Ąē4Yrz£BÅéįŲjQ|”Ÿ™C3؂Š}QĶR’åėÆ&³ÜLdpõ%€†ļG”…¦‡k`8ÆįFØąõ¬ž¼‚׳4š,iĆ¾‚׳4š,iĆ¾‚׳4š,iĆ¾‚׳4š,iĆ¾‚׳4š,iĆ¾žŹ ćĢ‘ŌŹoÄWā*±i|L“”\ÜĘó«õI9©>=¶Ēž=åOWģ«87MĀÅßO™€Qužś¦=Ļ–óŻųū)“pCū‚£’,Åó9»„ņ²½Æ'įµf:Ŗ§RÉaQ%‘ÓŠŽŖ :=6š€Š»³^[žĀ)œ¹ĪŠēū’nE-zßŅąų īGV91ęĄ ŅĖ”Ž°[§gf^äüœqŠ‹ö{‹MļūüVl ž‘ņŁ†!ĀŒzw£7ģĖw“ŻeĻ“y•±`yš%1K<'giī—±½ŲL.GĶĻw{Ņ*Ü.=łüEyĻ·.÷÷Ś8–¬ę£ųšļĘĢßkŠQÖZ‚uS½¼Ō›ē’Vųķź-‰ ·-%WŅčz™ÜĒļA §.d-ČP€ œlh™éJ„Ōś}»@ZĖߊ@©Ÿ¦3NożFC9ū’ÜÄkŸē„~Æužv¦ŪZ±Īó4š¬’§ćõ,õ].m1~ńß<žųŽĻßń>’žŖÖ —b’š8ęŲ?<®»;r^ĖLĒ,ä{ģŽgk>Ÿ÷/ą§P“‚įėĢV6n1ö/`ū‡(y`±8P™ū‡(y`«óC³§ óŲ?ōŚ×Q’ȱŻN–±øSaeņ›xuĖ=؀Ų?ÜRätūQ±øŁļ§ć5ČJßµ˜ūy¹ó®|~Žƒ3.ó.’YŹ}E¹—ž;SsuCĢLQAŽŠ=ĄŖrb§Ģ§ąeNh³"°åÆųÜŒĪ²UN/Å9RĶĄĖz¼¤ˆ“yiķĖzIó˜ŖsT³ķŽpæ5„Ōs%ŠO’0öī#Ĝ‚— qƒs2²2q=胚a„"ö> /'·Ę‰€püåŻ[¤Ÿ€mž°Pl_ųĘŻWžĆ–.H3īįU“bśH(™>r^6"XŪeüay¹ļč¶ū³&o ¼! Æ”Żj^ÖV@/TŖkLĒŻK }3_ÄOĘ-9ūE”{ėqéoēeāŪqšĮŽßaŹ/ó‘{pįļŁW9Aāy¾÷»ŸWŸü3ę>³ÆĮÄOŽ’ ^ƒy\\š:YĮƒ‹^ƒzrqĮėd.>x VčÉÅƓ<øųą5X”'¼NVšąāƒ×`…ž\\š:YĮƒ‹^ƒzrqĮėd.>x VčÉż ¬nš¹€‰‚jiVSż|nČq‹¾˜«Øœ+ęrOŽHoią4„}iXĀ }ķŒÆsį^ÖJi+õÓo@©į‘?čCåü}­Šœ[ŠŁYŖ¼Ü#¹źņ5õ~Čŗš>Ū]sq..Āņ¢‚ oT O^>Ē>Åųˆū!•Ģł÷—§ē®TżcB ńĖ—ę¾t¾åmŁóI X¾ą’µĒiIĢ4PóŲń‹Æ{7ö`LGŅKŁ* ¦z6į÷'X3M| VˆõķyĻćÖĀėŃyéj†§‹k„N؎9™šŸČĄZxé< Ēč¬fŒp†SŚĢŪØd|®žč¦v5»Ę¹ßZżźšĢ#Ś¬_¤Āœč'r†_m~=?t\¬Ÿ=€ŸĀ&nńbĻī“gcāTÜó2.‘u›įŲgē9[ž°ĘĖōƒó|ܞ’××_äd™Āš¬cp9cŗ¤ŗ;eÆ®²¾IO)²*ų6üże,OżbŖ'Kąż|·?»Ų£ÖÓŅž±æ1—y„:/ķÜŅēõ“m/ļäņēõŖ;Ēż. Æ.õ]ž9x]®ņ® ƒW—ś.Ļ¼.WyW…Į«K}—g^—«¼«ĀąÕ„¾Ė3ÆĖUŽUašźRß噃×å*ļŖ0xu©ļņĢĮėr•wUؼܹ”ŗuĻæų hūĄˆŃ|ĒŚŁžvįqĒĀ¹žžēĖ!¼üŁyuÜß_ę° 9Ē%]ąį|ēŃgRø…;Ÿ(££^xž›qIØ †Įu>~_I‚éń“’óļźćµĀG;H_ńJ˜yĮI?YĻ'n‡ēl‚Ļķ‹üVNUžėkYröofkc CõüvĤ¶Öy}:ĆĖ: =ņ÷—A[Ex‡‰g÷³Q'RØä^Ź’ł¼Ų€°£ŅĻņ-j÷Ś}Ÿß+ŚęĆ»¤ā\žA^2<•¼Ģ­Fü³&C^e,XRŸĘ,‰>il£é!g.–¬h1ų']Ü”ō±©Į·æŠy„`!ÓĮ®ĻŸ™!¾×ŻZå|ƗuŒ—zs­ ķõ,gxlø=hĄÅśKĀņø@'ópX7ĮśKÖ;N ī‡‘ˆ:qd5V@ę.n›ŗŠ+»?Ø9ÉvXÜ#Ļ·æq–ŃĪ|y¦ć5yü߯§ću·B&Æ?ö'äċżĆóŠżĆéįÅžįōˆŒ€±ųX^±ųt±ųH āźüŠģ¦ĒžįUŽŗd_*ö»ķė&^Żr* ö·9Ż~Tģnöūéx ²Ņw-ę~^r`•UœĻÉĢ  i.Üå?K¹Æč#·ó21†*ņŌ…#t°Ŗ܆˜}<Ģ ˜Sš23į¬ˆ=|nFgŁ*§—ā©fąe§IäŁE²£Dkƒ\ēØfŪ"Ņ’+Öø Ž?Ź·}¼CŸ”MĮĖÄ×čøą—ģ?eÜę=q  /'·śrõé•ē_u›€ļ[R;Ų¾ƒtS3f@ß¾Ē¾jrCl %Ó§1BĪĄĖˆ¶«°/tdbµłHWnĶœœõ‡«ö=±µųµtšĶ[ķ׿!i©œFöŖb_žźü,2?–ÓćŻW›¤¾— ²õ8G‚‹ŲQķ*ķ`ó;²ė/ŽW·ń°ļ6ßčŠŲ¬YĒŒTõÖŻo_³jż \'ļƃ\nŹ¼nRüĮjƒ×AÅŻ”-xŻ¤ųƒÕƃŠ»)[šŗIń« ^wS¶ąu“āV¼*ī¦lĮė&Ŭ6xTÜMŁ‚×MŠ?Xmš:Øø›²ķę„į+» ź–xB,iGĶ%?0ø‰ĖZµūy„'I ū²ķłOy¼}>TĘPłe<ߙM“qbqvó*¢‘J„•¼6ć fÖ T®ēKߏĢŽó"Ēń?&ŽB($ūŹj% 5›ēčqMeŅõ@Ųö)‘“sŲa^āę ßK䅐ųɽłŗ„Ŗ`,Šį[IĒ±HƒćWę¤².Õ8^eœ§j½ŹK ŌJ—i W’šB æ¹'NōfĄĆxA¼VeüR»Būā‰D-Ļžģ ķ‹aĘųÕŅ{T™ģŲœ_k굟ś]ļ ƒWÆ"~ŸęĖ[VØYÉŒ#ät4½óC¤ŲŁœ Ąō\_ƒČo”ä€?|£Ö?Æ)ĮėYĢ‚WšŚ§"Ā•ńM'śÕŁå¾ŗ{R—r÷”Öš÷vū’Å3K¬ ƒś~IƆXkć{ŅUå6ž²ė2/³Øėe$š°Ė^ĻõčžH^šŗjV/V!ę‘ZŠ<3š²'0I‰‚µ/]GäF@®sT³­ß“zĮŠŁ?’Øīwö#›‚Wü~¹ä¼hmĘ/² ¶$2'3f@ß¾Ē¾jrĒļ—y|R&ņim>ŅÜY{ŅŽ‹æü†™\Gt« ģĖĶJ0bVtĖ}”†żäÖēµzīąń ōv^ńūå]}å~^»Ä}Dāf“ŚĪą5ø ŲIžąĀ?>‚×p•žZą ¼ņ*³XOR3a[n{#ć•×qåD§ZwŻo(qTC®¹{’Š¬¶[!_Ļ 'y454Ŗ×e'ā¾oć¹.ė“KącEU2Eg V‰zUŹFŹŽµĶ@ŪŁŹjIw9ÆŚ¢ÉóŖ’=Ämsó^ēÅĒÖ~ćŲ^÷ćn‡é<LšEļ* ¼ņuŠóņ’eŒžõŌ„Ę}ĆU^ŌƋpčļ[ö•EGŖV÷īŠŸ‘ö©Ÿ]·øxĮųÅP>U“Ø ÷Ćf-Ē—”|ŁšY‹&kžŠČQéŽŖį‰ńV.I·ćØ=ī;˜vŁ ¼Üƒ Y8Š`ĒĘpē–hÓõWhžwąß“ĪešõR:LąBDFķ‡;hæ CŻrsEš^žNm¬[šÖś± ¬*üX«}U»—kEc£nćµę'’£Įx`ÕŗõgõI ØX5`ü ųD0@”Žėļ)ŌčĮ§āų%‘ę,čŠÉ±A›÷U}ŲNs9Æāy€µu’:(s(Hz@o¹īeyC“ž¢„p².$·™=„ųK·n“ÓCؑŠ“R©Ó›¤·”ėŗõV]ĻksČ9įfį]½÷K‘_•ŲÓČ÷ēÕ£y7g ŹsY‚WæÆ,!x]©ķžŗ‚WæÆ,!x]©ķžŗ‚WæÆ,!x]©ķžŗ‚WæÆ,!x]©ķžŗ‚WæÆ,!x]©ķžŗ‚WæÆ,!x]©ķžŗ‚WæÆ,Ay­m,Ÿy:peKߣ.į„ēŖ¹azĄ&B]įU„‡°y€^dYÅy{›˜æ¬T@)€Ķ ē‡žŠ|\³ąŅųyŒćā¹†‰+›Fäo-Čź|#O9rļ[ėh¦ĘæXŃó f’ų{ĖūĻā¼žÉėG¼ž”_?>~żųń+^OŃ@āÆēh x=‡Õ"éĒĻx=I’ RM $sc§IEND®B`‚›Ddąąåšh² š S š6AĮ’Ćpreviewart"ńæ`š€bšß‚Xƒš¬ĪĪˆĮƒš|Ź>u’»ł‹ēnš³‚Xƒš¬ĪĪˆĮƒš|Ź>u’‰PNG  IHDRÄ„°ēŹ`PLTE’’’ÖÓĪ )nˆŖŁ£Čów™Ź„‚„iŠ¾)G‡Uu­—¹ä9X”BABCcœJj„cŠÕZ|µ&ŚŁ7z0MŒøų’1RA]œRo„ÅĀł„c‚µ!@„’ū’ēćē„)š³bKGDˆH cmPPJCmp0712Hs¼ŲIDATx^ķ]‹bŪ¶uŅeY»¾ÖĒ¶¦Kļ’’åå@P$,Y"e*iŪEāšą)Ŗ—Ė<—Ąó‡ĖåacK`‚86~nōÄ7šćė›šõ5;žū¾ž‹ĒŪģųæÓń>;žy’=>ŅćÓ§ŸčńÆ=Žł/8žzē¾Ņńüt_łńūęĖ~/æżn¾ģ÷ĀńēoįėOįx2ļ™OOž{‹ƒųS|»—ģąžG0üööķ··9ˆļ’6_öŽļ=†D įæŸĢ—„b1Į˜0 f žžG€ŠžņXb8xęėwūĻ¢č”$hFš†æżé^Śot ŒĀM`¤ ¾|žńĖ}żx‘P4ųłĆ40"$kL4(bæżżĶ³1gāG‰‰†‡Ę-'=†–†„‰”ˆ-3Ńh›ĢE‹ž;˜ =”A’Ueb"󰌚$Ē‡§§üā÷W{|śüņXŌÆ LFeś“)a¢#ā†L4† ÅE&zmŹ©hDfXZ:‚>ĶÕŖAĻqaČø•©×§©“il±ŲĻÄģāĖgįwācń×+€y¹xeźYTŖS§[‘:L¼\£(ØSŹD!fā§d¹I¤LĢAtTŒ:6ŗéS_P¦Ä,"&:ü0†­=“fŃ#˜3‘Ad {Œ‡kÄŖ—WŽć£%āāåõĶėÅćh@4ßN—š?<ę7hS÷7R§—‹”ć%2ńrqų›T©Ń¦— ³‰ļ£QdŽ ¶‰N›F›ųĪ@˜˜ųÓ£(ŁÄŸ9= =ˆ‚EU DŹŗS‘įč!ō$ æØk#0QńńŃbmZX1_>’l§ĻŸ#ˆAb€š«żŪYĀW \8r Š D‹¢ĄÄ÷?JLdĪ©ĮQ“‰ļŽż|‡SĢÄ%Ļ†ZDBD„קČEÅ0"&bŸ&sm€‰mźŌf1CL“ų9$s_}’õżÉсht«a¢g ’ap“vÕ0ŠrŃ2ńõõėåõ«„¤{0Ńpрhß‹~s¦Ł(UūĖŃŠž¦Ži™‰¢cc8Șh0lf¢'"PQšMĮ§ v±cP}šł6Q™F}Ś¤NŽõ"aāĖc ­A4ń—ńÕŲCĆDóm„Įt|$L“tt 2uśŸ=Ķü°Śo÷Ū’müfµ©AĻ™1ńŸ÷ļE&²(±ČÄæó01wlrUØ‹čžBpĮCFY ĻĘAČķbPØ!N¼DĻĆˆOF„¾üųA&F›č9čyh˜hHh“: tĪZˆŽƒDOAb³āDŹDCB«Nm¢ē!Ž³0b ģž–āż…`?ŚD0Š<Ų—lb;EüžŻYÅ/Ɯ‰É±‰¬tFŃŪÄ×¢U§īŪhĢ˜hlb1 '2Ń8«I˜č37…8Ń¹6bĘF“‰ĪÆ”q"ÉÜŠ8ĒśÄ;%į~źŪ°‘z§™{ŚbĮ&¾|1ĶwėÕ":&ŚŃ+µæ_ƒkźŌ©ye; ŠźŌ!ÉÕ©qm$Ū˜ų£huiĮ;U2ˆaōĮKĄA˜ŲšwŌ)ŲÄčžJLōīhȉ:‡†;6%ļŌ€ųå‹”įćš¾:&:Ē&ŲD`¢#¢so¬NµŗÓŃ1žÆSƒKcy÷ĘŖSūÓ;6N—šCHŁČq¢”:26†„ķL ń 1Hö4Ęł8L”ÓnÉ .el¢w*Eū–‰ÄĘ8Ń&ĄMÓ’¹†ˆŽ‰üp¾;PŅF—;õĮ¾CŠ8ŽĘÄR°Ÿ{§Ę(¶ŪĘ ¦0fN)CøO’6Ę*b ČŗIFJÖ“86(üoČŲ¼yóüĖ†ˆ¼”;„9šJīŌūˆ$÷ķ8YšNy Ņn,wjćDcŪm" õóJÉ֔b}ė›&ļ“>E6Qdā39>\Ųk“±ÉŽaUŒēń(ēN#–ĒDGe<ęæ³*FSœ˜ŅnRœč"Åx,&Ą½Wī)ȉ) ČR6¾|Ŗžƒr؟²6Ģ(~ØOO¼ĶŲXE )ž\›ś„V§;œ@].E¹Ģɝś†PÅhˆg#gllœˆˆŲ±”™Sīš&āFĄęN9ó2ĉbźōŖņ¢²(a*)’Bɝ†B­ Ū“ hą‹v‘× Ld6±˜;µŽ©&c“EšO™wźk‰1ļęĀ|hąCˆõE&śZĘfeįāĆ÷…’{ów2œr ó›Ą:Aœ ž@'˜ĀdāIAŒŁ:yzĖŸŖE²qwźėŸįĢDŸxµ_łIY÷9o‘>•d’µ…ź˜×=ƒ1åĖ³1% ģ_",ÅyLo q¢ćY؅¤‹ "WCa9~ž>µ›/Ėh‡¶Æ|Qżm>ńCøÕąĘ3=q÷²:ĶŁęK\žż’: Ÿśv”µoOPkĮMĖøfÉLĢmœ—rDņ)10—č»Ā&x‚x 6Q bl/ƒ—Œģš)Żß¹&fĪĖuL¬‚uódāš„×ģŲ£čƒxĒœģŲpu*¶žŽĶŲč¹dl& ×Ā9A\+ĮĪļĤ0ų&ˆƒh‡?Aœ ž@'˜‚g"½—q¾I>bķ~ĒłyÆx@ ŗóč_Lū˜ öY6ĀņĪóq@ /–y銃ųų8ā¬O6fˆ9dĆŪš©M•ÉŁįųåßó P#*:Ļ ^ūžākŽīĪ–ÖZ kšāæl¼²}!µŸ—ś‚Eū9Ż¦S1¬|·äAŹ‰1ńć@$ĻØ@`*Į†@“ę ĘģņĀø;ˆ”ōĆmbZŻˆ^ŅAŗƵ’P‰ŹLÜĆL żĘž‘Še‹h‚Üō Ę{Ļ$)m RE™l{?1ųżb Ė EŒOv«ÓŌž.tŖīŗˆ\!Ņ׈øŒ‰œŅ˜’9€É”¹+×ʂč}C«Qė ‚™”CŠ7·†%Ē&MūY²{÷„ā²c“ŁDd±§S“‰$jHF ÷‹L]Z!!Ü@H€ę^hvm¼F¢Cvn­ŖōN³0 ÅwŌó·–Ä…`«×Ć=āōp/7];½BœČ®;A”—ÆVOiŪ—H£ķGŪ~`²ź‚ż'zę”³ŚļL€6ÆkĪRŌˆ(Ōš×q@†®4oĻh™Ī¹-ā8؍Š‰9dĆŪšéA„(ž Ē%+Ņĉ–¶[š:&6OŽČrM°_ ī„`etH’@JŲĒdC!ip·t—]fāą„ؘ”g*-T\ŃIņøÖĖLČaõĶÜ)¢^ń„ŒŖi¾i)J "/ŗ‡‹īŹ‹L,ŁĄ$ģ|eó¼OeśE÷V„Øb°yYż±…qéDyXė:銓6&rŹ^cV,R”Հ—€lĖ²ÅE¬4>',)AgŠśĀJ&ŽUŠR«Ó¤#š}8µÄ·?”ĪÄø¦I„ŻźSd$3a%,z‡-7J…9“~źL$U-÷‡’wŠ±įžLwg@Lq­²£ū0-E„8‘Ž*™ „„“n²ŚŃ–nOŸ {ŌʼnŲ%iÄVzIŪ¶=ŸĻŚó[å³E;UĘf‹ Ī>6—€ž‰›avøZ“‰«Exx“‰‡C°ĮV2q$ó恓śģBĒÄR.›ɏøø„Ę‹ģn6Ŗ„ ĀÓ“Y÷CKGRÜē=éŌ ßeåcĒJ) w‚ĒlwÖŃKYÅÄęĮ2y2€ß$ē1(=å;¾ó¬ ÉĢ.&jIiÜRr Y.·ar…‰w^ŠjŻ©~˜*½Vs§ P¤oɉ­ fš„³’b&PĆ Œ$Ćģ«®JQS%& b=wJ½ DŽ&»ó›¤æ<¤›īŠJ ėŗRTDŚļ!44­2qi)ł5&k Ō­Ł2į6 b„‰Ö‹GŚJW1›×8j™x_„Øf›xš†Č*‰MlWTptÆ.EéA<¤ź”ōN£„0€–rpčĄĀ¢ĪRÉ–ˆ›=8=,ŽDz”ūE©ƒR˜Ōu8‘©ÕJ)*‹ŃĄC‡]“#źŖ89ØĶŗ? µł„BCm?Śöü²Śóµķ׏ÆĖŲlxįŁÕ†P3qĆkĻ®¶‘Ądā6r<¶—ÉÄcåæÅÕ×2ń@s¾ÅōOŅ‡Š‰9di@1l)Š‡<„’š›`JCķ½4tLlęQ šSĒnź‡“R”Kč¢G²Č <›½1¬äNqP>āśøĄ[¶¶9š"@ō™ś“Č²ŖĶ¾8Ös§”“k«bąō‰4éžKQri ĘY ·ģ _øZ5wJGj£ ÄńKQĖ„1~ŪÉ1…Å:·qŲR”üĄĄ“„!ē{¤UT2ń¾JQÜ©ĮKQvp”b‰Ä&ŽY)JņL£k° ā¾%©¹+ ?ŃnIe±Ā/ xļü¼7īäåčāDä 6Æ9¶¬ōØķGŪž_žŚóÆ=ÆY BCUĘfĶ…ę¹7“€ž‰7Źģųj L&^-ŗnNœLģŠYÉÄ#ĢųŠŁžóTsČ ²*F©„Cv%Żą’ŠZ»+*Ät{ĶĆLåŻ[ū¬›yĒ@,•rZĻ] ²Iģ–Š1VĻī;•Śē+–ę€Óm8ߏĒ}c(•÷bpĢß|„‡ķ~ī}XÅTØH )źL“ßö’ŠŹI"/-'šlž¬¶iēNéqBēįłßÄś^Œ8ķ{|@ŸĆJŠ*h#PX”y)jGė¹SŗŠ`%ĻR”g2›ˆŠ”Ė·&b‰Ū€xo„(l÷ʐ=\pdāŹkdb*Ķ`€[C2egkŃ¾ bmŠ-Č&qG%Z'­MäęšźRTœ ĀķA­Ö‰Mœ„(š_ųa¾PD Ž¾įF„wŠ–øŸÄéwEÅ*xŠ@…]T¬Ž98¬·­/ŖāDbŗµĀVśDŪ¶=ŸĪµēóó®ķ§Q¼¶™.c£čx6ŻQj&ī8¶y©6 L&¶É©ļV“‰}ćÓ2ŗµLÜĮl·LćĪŪؘ˜CV‘åg)ź¦«LĒÄfŽ Ic98¦yH »bx#õĆ36(»$»>¤öyvg˜RŌrījMń>J––˜„(–DņÕsSŗĪėU ’vKƒlĖ"J`&•2Ŗ¦yo蔵W#„Gśæ¢Ņ¢‚“5ÅRTlßl€ÖšµĪDŚ;Ų°6&rŹ^cF‹VŒŹ‚ö’lŁ†č»zWµök0ŖŸ[­b°.Ą÷€żQ!ÉKœ…“į/>)üš@e—’ą„(’>ī«3‘ŲÄYŠrkš³Ÿƒ–ƒxdJ,i@ÅYŠŹneŒ'ÆߍSW‹W¶ŠÅ‰0HÅÕ¶2ķŚ~“ķł”®=ŸŸwm? WāDMO³ķQŠ3ńؑĪė–% ŹNAv)ÉÄ.aQj%÷0ŪŹŻ_ssČ ŅäŌ”čó{&ą6ū!9ß?ߕ%“`QؘŲĢ;b98¦yƒnņ€>˜“]X NHJćCvųyKQ4ƇÓ~(Ū²OŅlƒURĶ’“[bX[œ$E…§’R­×pā.¤B?Eę M€Ū üI6~œN#ŌÜ@Č7ī¢ž;„õ×"—Jćł~a‰€&…[®qÖŽžČ”ū„„”`…ėóR³¹1NĖŻW™ø ˆĒķŠ K…Xi|Ś ˆ.pžP|Z.®e" ™XŖįӍŽDrŽ&ŪķŠ"j«ļĒ&éˆ4žiÕ¦ŹDbĒ+EŅĘ~pĀ/÷Ž© M䆻šÖbö]QÉBą~Č&/=Ø/Ž(¶VÜ7:_'"5Ó<œ­\m?Śö„ mÕO³Ąō u}’óŒ=$ fāƒš×PI`2Q%®NO&v ŒbXk™8€ŁWHcŌ¦*&ę@$ł#~§4¼Ž2H4‘~ņżŻéA¼ų<ļ*‹ķRņ ęeŠļx—^8=<)‹ōƒĒ;°:&6󎁈hLēĮ¶Æóå÷vĘš¦Ōdyč¼­pgxńRÜ_ļ@.3‘ßwŠĮqĀFĮ2ZŁš0Sž˜f»ó’X-±qQ Ęŗī׀ōŽąÜ%3~°RŌŁwEQ›˜—¾R-ƒŖĻdUū'bĆžD: °aU IĮaE•ŁDy+†`ē*3*R¬¦i) ļž¤v:_ļ@V«lqŅ v\Šl¦ąĮ*ģČz=\ę‰`•‘č(&į¤³ųłĄęŲ@p!0†_I†ZÅ,ļnB`‚KÕq)J¹g”ā'šā;Ŗ’Ą­…»-Čav›īĒ‰ąå¦ėpņ8‘^—«Żˆ¼x įJ¼m£K>źāÄdmŚ'³•>Ņö£m_šŃVż“KLßR•±Ńw?ĻŲAz&ī0Øy „&•ė°łdb‡ Ø‡“’‰#˜}µLF;AĒIJˆ]A”G2#©Ō3F) Āfö?Ōxrļ„­bbóąˆRPŽģ£Ą»Z6Āq!ņKɆŅøhĢ›nd®µēqčN”VŽwŠĮ1ßK)*2‘ƒčjŸ(“tTõ£š;ż"}7v”;‘&ēV!£0(łøē®ØrŹ­0ī«Ō·ė¹S:zˆ9Š‚¢ é;9ōr•µöBį7­ž“{ŠļŠā·m mwŠÕqńŪORŽ ³Ŗ°õįłƒyŪżĢmąµ ŅRPāh‰ÜŹažĖlņRĖūŹ[Ō+čl{…ń]ż ¾PŌ2„ŲČē”¢œżGlEśArv!ŁĆ&›x¦]QČ!)y˜Ņ™Ż_83y‡–Ņ;£ƒ•y'„Ø0ß<¾…šÖzŗ»Ņ«õ@Ō?ŪM;*mū’žŃö£mæÕuc?[]æAė26 Ī&H@•±9`|ó’u L&ÖeŌ‹ÉÄž1Ŗp-w4ßµ©Üńē*&–28™üX²,¹ęŌ%Ow¹µķŠŠé’NCK¹Ó%„cb³„Œ§œŁČŅc>ŗ°+ŠI¶ĖŻ!#ĒŪÅS`!¤vauó*;ŅõÜ)I»%†µåN£PY®±”QµųšTyT”qīsĢTüž‚8Ö®Ø2/1%šļ’Šu&RÅ6¬‰œr…׈°‹»¢ˆ“žwē j™xp)Jpz°c“Ŗ§²yµÉŌ™HlāĮ„(És•AܧzP“ī^Ÿė¼ÓøŌ»—¢‚SƒnÆ`Õd‹n/9y]œ«^1ä­\Ö~ZŪ)¦Š}SUʦūŁÜēõL¼O9õ=ėÉľńiŻdb‹”zo³’‰÷čFt©Ž‰9dQ®ŌM™ß! Æu»¢bµVŠ‚QįĶ"lŻA±b@*&6󎁈Ö4y i¼€µD„ö8ØąpƒJ×mžĒ ĮīxŖņ¾S Ž6„ց$4—*Q°~’Ćō1Įüž ‹]vG9ßöRCķŠ²ųµ”¢"Ó8c!’~.*Ös§t s”U  ˆĄ•ö]Q ÄlWS6žČs‰łg«W™ø ˆ\ŃŃ׈9›”¢&Ņ½mēŖk™8F)JR§ų=0Ę·5U»õ^e"ø.ĢĮ. ÷ŃBua’ŠćŽMīI$=ĪŸJA]•@Ģ}ŸS”¬”Ž)˜HŸ„Ø8.Ń}f«b]K·¦¤*NÄ1XėĄ¶r[ūŁŗ]ė<l§ĖŲ8Šyé ؙ8„Ł&»ƒäŠM&^!“ĪNYĖÄV7¢³iŸl8*&ę@dɵCJQ1raŚuu2ĶttLlꝐ!å ž,€šÅ&HWīŠŠÜĻ5įŃ(xėī;Åą8aC>'Č­—RT^Ņr€4ÆĀQąsć¬ēNIŚ-ŲVÅĄłÆ CČĆ!©¢f›ģŠ²ėK*YDķ^Œ”Ā„T8r“°ā3E{“R‘1†"Zu°u&Ņ.®q÷R”ĢēR±ZÅ`ė|†6&ņ½lÉ(µ86¼Ņŗ”¦äŲœŌ*֙Hlā »¢ź ž¢üŅy§q)CŠk) 5õ£€Š§Q'^ć„oåÕ·öSkWū¼źFtŲ@•±épüsHµ8qJh <Šćƒ!&zųS˜ƒ| "xž Žø$,óŅ”ńŒnĀp8ź@Ģ!+€Č’k½•¢¤QCŹp8 mźTĮÄfŽ Ņ($ü[ų’+¶Ū±l*^°L.ė¼ ĘZ“ßsDw9!A>'Õc”¢āžFaćńŠ… LL«3qčRfŃ ĶŖ¦+¬ė nSÅż*(ŚżKQEĒ¬rģb_„(‘mC“ōÆq ]Q‚cƒņ÷„ūxFTØĻä`Į~fORŠ’œæ|ĢŽŅ(*7Ÿ“„'ģ^c“üę!@ŌܲxM ¼ÕRnķ§Ö®öy\ņ­ķ: Ŗī¾Ó<‡K`‚x‚U1A< ˆ.t~|4ĘQæ”ę" Ž‰Ć ā˜€zuźy8™8&†q/†Ēp2qL§c3&ndŌÄ ā $p‚)L&žÄÅ 5'˜ą=LaiCMV¦boĢ— ŅÓo÷ųG=Œ(/SŻĆ²¾fŽ.ÓµßWĢ"ˆy™j²O’ĄóĪLäZ˜ n°.wg"cWˆ8%·ĮŒOŲÅ!L Y6›f£‡Kƙ!¹Ÿ!ü yÕ"°Į”abĄ%ńņœƒH“ćĢų„]ĆÄÄ.,ŅĖsbØ4"fž„µS:ˆ‰EŖN-†“‰×Ś=§M¼јčGŠ™č0l¢)Ē¶$<¹b®§=å&q"=†"ˆų±° abK1b(ØÓų±ā~97%tˆ‰‡¹Mœ VĶ@L ©:åe*śz¾JŲ9wŹ±«,aH@äeŖłŗ,k—‡¬~Č0D6±ŖDfƒ^%6ńšŗŚ<§ ÄxÆ«lŽ«I¾Š1”%`@œžēšųšņv `R*IEND®B`‚ą@DdąąAŠšh² š S š6AĮ’Ćpreviewart"ńæ`š€bš$@ąv’‚ū¦°“擽ńH§w’@”©ēnšų?ąv’‚ū¦°“擽ńH§w’‰PNG  IHDR^{ūńcĄPLTE’’’ÖÓĪŽßŽ„‚„BABkŒ½Jk„Rs­%kBbœ„„„„Ö!<„Z|µ9Z””“Žcƒµ’,s!;{s–Ę{žĪ)IŒ1S”)E„ĘĆĘ2s1MŒŒ®Žs’Ęc†½!A„9U”1QŒ{šĪ8{Zy­™B]œŒ²Ž0sŒŖÖ4{„ŖÖÕ{¢ĪkŽĘ’’Rm„Je„)I„”¶ēJeœRq„Zu­(ksšĪ„¢Īc}µ9]œk’ĘsšĘ„‚®ÜŽbKGDˆH cmPPJCmp0712Hs¼>½IDATx^ķ £äøq˜{Ž¾±²ŁŽw•8~Š#Œ•8Š“Éįx£Ćū’’• Ō €‚Wwqwę½éĘYØUQäćŪ®ė‡x}’Ć÷3×?¤×/Ģõ;{ż¦pż¼xżłtżŖ|żMłś?pżuvżĒŅõwéõäśĻŁõ— ×’ųĒ’bƟVÆ ×’†ė'-×’Āė’…ėß4\’®æO®æ˜æžš‡?üÕüõĖüś³¦ėāõ§?żé?®W¾žå_ž’tż:½ž}łśtż~ŗ~V»ž»ŗž›ŗž¶tżW{żŪŅõćõ`ŗ~ ×k?|ūķ÷ō?ą5K×÷×ĒėļvÄė9ż×Ž×?żō§ų’Ixżó_„’J×^æü«]æl¢ėĻŽĒė÷?£’Ź ĶąU¤ėo;šśńėt}Ģó5‘„.¢k°ķxżīµ¬×O‚i;Ēz•ĮŲžČzMlĮˆķl½"]_ļóöė{1^ßßß9¼ŽõśÉO#[Ó_ēąõ÷Ńv=½õŠtĶ¶Æõ tżžz[rģJ^ ÆĒćW÷^{øNĀė¬`u†õz×[0\ļ€W ’Pß~ūCųV_øō2{éš6:ąĒ?„“‡ˆ?ą—oo4mmD÷šńˆą’Ÿ’|ŚŁˆ%=’ķõx]Ēz……\n½`Ÿc­_GøŽ·^ļ“²~¼½½żKń[Ö^6Xƒå;Ŗé’D…’柹÷/~!|Õń¢„q ¼žüW\æ ŻŁzM¶+øˆēąõ:Öė×óū‡»­½^įś6Šõ‘[/ų2°Ęæx<š“V°?߂W“bæū]ų!’ę7Gü?ü2żŒĒ½ ü%R6ż„šB?^į·œ±¹łėXÆøņrė„6č÷°^qēš$ėõx¼æ…•W¤+Z)ųįą­]h¹€²ėVl¢+0 lśńʦkś¬U€ }ÄÄz!Tņ£ÄÖDŪ-ī{įī†[ÆŻœĆčž²öšŲš®Ē„Ņ† mÕelĄ0\z”Ėš V+ ķ/‹€’&óµÆ"`×·^hŗ|ēķ×Öė÷? ®į9kÆ Ģ?Č`­…d-Z/ €¶2Ą3Äæg¬āö7Š-L­—Āė7xŪ 1S[øöŹ¬×JēšÆw¼­s4ßVž66Ą=ōCāk<^'ī¢õzØ=yŚ;œuƒķ ¾aø­,\-ć·6`{=Ć&¼ŌꔎŚČńś› °;®½ą¦W@ģēš%ī{M¶ė¼Ćh½Āī!īš2[qo#ą%;֚6ę£gˆŽ!:‡ś‡,»hkƒ]“+üą­ņĪĘõ×^l½ĪĀĖw'ÆqĻĆøö¢mł–#¾täpöŌįöCQ{é½ĪĪ!8†Į€¹õŚmk—]ē­½jxńqŽpē«r¢÷Gz/¶öņ3‡ūnĢO\{8sķi½¢c§ĆšĆ3‡ó)#¬WéPļø€”kY/æļ„ćRĘomŠ¦į ÖkZsĮµ UÉzķļU>0kÆēŠ÷ G¢ā© ß9Üoē ק6j–Ź|OŒķņBk/>¶įkÆżÖ^ńŠĘń÷½>łåp ģ$ĒNåz±.—Ą'ĒĖ•Ą%°›ÆŻDė»/×—ĄnHńśmøże®ŻŖ^W0“éÓōõRĶƦõ.%YÆ·{5ØóŽĶć¢ßā­ļ·÷÷zm6\-0ÖĖó.N ¤xżxMėõöńöų’­Äėq‘Ł”st<ŪĶ%P°^ļ“łR ©ƒ=ZÜ`‡¦ŗĮÓū ¾Öāå|5Ÿ'ŚG%¼&’p%^]NX )^į9V®hæV;‡a½ę—Ką$ ”šzUŽOxŸŗ”aoM©Ņ‚Ž-ö lŲ/ŲŻØ^27ÄõW5½'p ģ$‹WDjztŌŪ*ė5%īŃį÷Ē§¾&tckņµÄĘO«“irp¼vŅ/¶I ^¼åÖkŅĻŗJG姫”R`8`ü©Æ *ÜliK¬>dt_õ4“Ł“øz$`ńśķŠ/ÜŪ®”śŪßņ6x£.Ӄ”īŖż xÅ`źĘŅÆ÷÷°jkĻŌ#<ĻćX–Ą²õŖƽ¾łĒ¼t“j|±õj'%ų>Ł/ō*]\gIĄā.ŽŖµ×ŪšzÆ*N¬WĖīFÄ+z‡+LŽYąõ>³ ;‡“BÓĪį¾kÆčÖ=¦Ö«aļ0ā5¹†n½žYsoŃ·^kļ{­Ż9ÄÅZÜ9¬Ń5ķS$kÆśVEÜŚ€»Ńķå-FĖy3 ”š‚S‡Ü÷ŖŅńŠūėķ¤ĄĘ<Ņå;‡7ÓȧjīĢ‘ŽU÷½ĀÉ„”L§6źt¼hEŲJŠßVī Ļ²‡Ęąõ© Æø3_»žČ/”h¾…åxՄźß$Axuµ¶…®OįEH|3®­Ē«MNžjw $*žĶ?^- EÅF¶ŗ Ž×ījć“I ³ ß“å»r*Cd+“Wī·ķ®hrŠīŚ9o·Ką\ 8^ēŹßkj 8^O=¼Ž¹s%œ9 ™6ŁaŸ½¾Ū^oœÉoRWŗš|ŸŽŠØ×^Ņ…zĪsĮkV ”ńB5­v:čm¢»sxÅĶõåC˜\± .­‰“Čęo›.Ŗö.58Æz«¶ā5=1”Ӳ߄h½™žĀ%Š*Yē\³Źłt²^ r”JD'zˆÓŸš7ü„_ŹxQCbÉP֖öQć…(±— i•Š§s ‘@)Ž+jpōĢ ĪŸ©U-$KQ‰aé52œž_3ŇÓņńž üRt¹%\ VtK©nūS;]CTĘ i—ĄœõB„®<šIY/23&"> ņ4= *ü,Xų%-$­/X“e°`cŠ„źå#¦v¼ŚõĀS‘@ÆJ¤ŃlźČäeł×U€,­.¼2¾$Y8bēpĪi"D/Ä%P–@Æ„9?Ć«ä“Ŋ¼b åōGńFi؝±^¶;äjæÕ¶Ģd !WŅ­—Sp°6nmąÖ‡Ś™Y®©­ d m:‡łÖF¼}Ćjk°KhQxĮÆˆgü…R;_k×ĖWwŲ© ¬(Žü æóŸšIüĒĢ}1gāå•ō¾8 Ƶ"¢cļ gGÖķé]Ią²xŌÆĘ%°£Æ…ėEæŗÆW×ļ’Ž€ē­łåp ģ żž’ż`Ž?ūu øsø£k°OŃńVüē[ĢŽČ}TĄKŻOŽ×ØŻO ¼ä}$ąx9^ūh–—:IĄńr¼„Ż$ąx9^»)—ģxŻ ƾ¶ŗ–Ÿ&Ē«OeĻÉÕ§&Ÿū²y®ķp¼Ī„«ÖĪįn½ńŠoo×ŗŌ\ngnšĶńjWØÓSvźŲ{£łš’­øs½.57½±-]½Z6ĒėthŚŠ©<­xMVnE ėRsĮ­Yђ 'u¼Śµūō”¬G•‡B%śÖŖŃė€Y—Śń:]{¼ ŽŅ“cFŇYą÷Ž×iöĶ­× 6xY•iĄĖ$)=CģŃĀ9#§–‡ŖeZ\Ø„•õӈZ±ćuc¼Ōs¦ł)ŲšŲióiŌčv¼fž ƀגBf€9^7Rø×jjb½€|”;(¾ż'źv^sĢ8^kĢ›[ÆZĘ ØRĻ L8/xń”±[°GśmPæ”!†1A{8z)„<ć0“JŽ-Ļ:tėu#…{­¦VšbeĒgȓ”Qxdņv…tķ%>"?Š—¬ćT‚Y{hYѱBżĒėµtöF½Mv ˜(vP±#žÉĮo ¢bĶV;›Cxō.—ĘĢ¬Į«€RÅ@5Ž×īµšŹ^æa;/Ēė Õś*]r¼Æ«čā¶Ćńŗ-^;¼łŅ‹$Z ;^÷ÅėļŅ|Ķ6ņƒXÆć5Ót™o×·›68qk?;^7Hµ1?ūŠųš¦ģÆįĻ{ųĶÆż%`Ź?™,w÷śN5ŠT¹€W„ėń˜½ļŌ/ÖHĄ>•%^4H>X—ŠŖ¼ļ¦ėėćšČč7ĒnčP®ĒKĶ|/ų½ “0TčESę”½®ĀšśśŻwšĒń:fčOĄ AĢūēxmó¼&ć įĶżIģŁ¶¶xī(ÕxM ”„¶HY/4Nü#f‹ÅĮĒŖ„X dk³…>$¼āŚk/>-Ģh,`|±Ö§fˆ>n«aķEx Ä9‡ˆ…GY&ŖrčbŅ—}ŻzÉ\ x… µöŅÖ ŒXų~āß9cą^R¶¼ą™?ń)sµĆ¼ŅE­½ę«ŲŁ©Ķր×d½‚{ČĪ!%^ D#š3ņP^T®ŗqŠś> /ō$ą‰'¼ŪaŻ CĘ ½Å”Č =|¬ xį}Æ"^ˆUÆ×āŲž¼äŃ?uė…iÅ!4lŠjI{vf©Åēe[ź r֙ķűŻŖŅšŹ¬—ų}īī  k·6‹V¼Äzɦ½ģą'»Ųwčó³Ł€llš}/öĮ[Č·6`ÆĆ·6zU¦/öĒe%ew õ Ž8äB“[jg„wyK±·[/™ÆÆÉzÅcQxßė%Åtd§×ā5¶m~§k¤<ėx}šå§3FJ~¶¬Sńrŗ†Žq/\8“æ1“r/¬$O6L¬¾1ļb¼¬Ŗx]¶åOŪ°4Ŗ­zßėi%q’ŽUńņxÆ£Łć½Ž–ų~õÕńĀ ÷ŚolÉļu”¤÷Ƨ/Ü9ō#„ūF¬įŌ­ƒśų*Õ4ą•Ä{M’»("½Ÿ˜ģ-ŚŖ\„=H¼µ™Qürū•Ž×óĄ×€WļՊW†…2J°Df9Ūó¼ŽĒ«.£»¤hĄ+÷JNĆĻY/Ē«SzšJłÖYµg,¼āŚKÅ{Ič ‰’č.9ƒĻÕšÉ(:;EĖž°Ń§øéš½*³1ž}°`Ī+® /¹ł?żöžrõy£µ\s^3ń^ß' £ÆGG|9ī >/õ?²8qm9\ĮU…8¶]}xéŪ’Ž×Ųé/­ÆÉz™x/DĘĀ§E ś’/%2LƒGdņz,Ć“æƒ÷ĖŁ‡×ūōø”ųßwļŽ×UF½Æ4Ž‹bņR[e¬›'ĖÅéŅ(Ģ9ėe÷@®"¹ŻŚŃ‡—[ÆŻdCĮ x%ÖK|½ÄĘĢ;‡’ŠĆśXõā…!&g;[Æļź}š ¼’x/…ļXĄFx`‘zˆŻŚ@GLnmč} Zcń¾µ#SVĆų>E E¹Ę1¼&q¼¦Æ)rMŚń-=½Ä¼&ėUŽ÷ņż©]†ÆÓzA0eœćÆ Üć|M‰kŅī"Ķs ­ć5ļåxķ2vżxEŪ„šŻžžYŽæĘō/ó }®’3Ifüķ;¼/Ź%ėJ8uŅhÕ.ā»T”U¼<ŽėčńźÄ ōĄY/Į )3?½IĖŃȑ­CĶW¦O>±ŗh"m6U¦T¤jr¼ŽÖ+Æ/J /š?ęń’ ĀĢąe2šŹé!Ó¤²¢ź'æŖÖkźæˆŖ[ń’µWÉz‰©!,*x„`°S§ķÓ¬ż#„Æz{ūņer<ü:J]xŁC‡4^Ź%Õ,:‡{ą%ōÉ5«f½\ÓõäR8Šœ¦zzšŅ+d¼;ė’Ż‰Čī: SŸč”00eak#/9.Éh7BšSjĀ“+Ö2^—åkV"uQˆSĻŌ¤“O”ØÆJ÷wYå,ŗK•·e‹»Š·hŗūÅ@¤dŲ—¹qšŖ*2 Æ`@®}Ueq÷ ^Ų|ņŪ—_Ž×¾ƒ> Æ}›é„7H Ē+ŠĆx•ųšĄūŚšÅ7|Š_:Ä\ōKĢž†ģÉ“šū IÆēå^Š/ŚŸ°ą/r“Ezń·&į“,ü/w£^9^Ļ‹l>ˆõśB|MwS°×©Y¼,y‰õŹńb»ö<’ķī‰ćÕ-ŗĖe\“^ø+Ö_®ń2¶¹œœlću °w®j/äk‚ėczAŠ,Ÿ“?gM>b#qåąG,ĆĆ„Qu¼vÖł‹_Ü9 $ÓõžPtÉz‹ÖOźµ†ęł5“…”=?ߌØ®ćUŃm,Ž÷Š–&ŁųŲzī°“kį;e-q¼nCOµ”µCQÆéö6ŹŁ·•YķŁm8^·ŗ¬įu¼š­ņĻÓå«÷Äńŗśµ·ÆÆöĀ<å 8^#¤x2ZšŚč^££÷i…ćuŸ±Ŗµ“Ž—Ē{Õd8ų{Ēk°@O,®†—Ē{>8Ž×į"ß­Ā‘ń^»5ņµ ^‰WIé’¾Ž’Ēˆ®‹÷Ź“ļæ Ć{»Æįõ{ć$°%ŽĖń7Ŗ$Ēk±žRh- „OÉ6 R0:ćT0ZÅw»‡ÓńźŻå2Öš*Ē{MŻ`/Ž®,½]čr¾~ƒÆėQk S¼Śā½"^šŸy±W¬•cĄZŪąéŒÆēQˆ¾x/…WāxmÖ Ēk³/S@_¼©Ņ³Üzm[Ēk«Ɠæ/ŽKį„CµųĀ­ ½B»N§ÆŻĒėŚć³¦uÅ{­iŅ«§u¼žGj‡¢†Ä{=øŽč‰ću„”©£Ž—Ē{3\‹ću°Ąw¬®Æk÷¢ p¼žG-Zšņ‡Ž·ćuØøw­¬Ž—Ē{ķ:yįŽ×Įß±ŗ^ļµ£šĖE;^‡‹|· ;ā½šŻ ĶMŚ¦ņbos¼šUėņ {ßļµōµä» xQIYmĻü7ĒėņŌ47ph¼֚ā%vįx}z’ĢøMæN×ūūž¹y€=į™Ø¤ĢĘ{ÉKŗš]_ų².~÷—‰’¼š…^ņ;½ć _÷•„Rµ§ģTH'°gŹŗ±īmÖėæ®#ōaA‰§?źDĀ—ÕuyC6¶$Ć«9Ž«‚W|MXŠ˜„‰Ńē€”JeœĆĮ'B°_Õćšz{õ Ÿ-Ź2Iņš_-¹:ÓPei#“s²BGĀGü1öד¦ōō/U‚“'M`ZXśR—ĘE/[ÆŁ÷{c2g½ųMÆ:“yę=–`œ”Å–f¬•¾ŸšŸUr^bȵjuįEJ·Æ¢×øćL&wŠWQwÕ,@™»ńĀé„dü5ć%ELæUšš{æ—qģ,^ų "ćŖ'Ģį%ƒMŒŗ‘ī† Ł­ Ł9…×zó5ÆŌH1=y`dwÅKJ/TS²§b x}¦QßļE÷½ųĶćäŅÅŻB‰v:” ³”aśõåōs0`²IBo¬D/Sļųֆ¶®šśųpMŗClłÉ.ś4¾aKĒ–BĢ„Å…äō+ĢÖ”,’EEźź¤e¢¦:宕Ś¤ūƒLĶą%ż;¤>³j?x– gbŌEÖY—Ā˜ŒŠ÷źßfčĻy–÷¶s½]Ī!óE³9įTś‰>q„i§Pł]‘–Čü†?Ōƅ/T"TĒ<ŌWrIeÓ6Éē²\*ć„mŠ6}™™K *9‡¶VŪhb3—é¢ń±Śš¢yē £÷e¼ ½¼“5ŌŲ—R“‘8 é‡Ad xy¼×Įüwā…­\²ZŹ„c_įɝC&ŹąÅŽ˜³ÜŖ)“o•d»“Įz)ėW4J©1±“­–ĘZӜ ā/› ™S-x¬]/_]^$¶*^ &@šVT(Ń+ĖOĮ4ŽbbÕ_rĪ7,į…d«ś¼×9äźr1é¾øz4’”šŅMĶœĆV¼Ü;ł.¼ø…é–F¾ÅA3.Ś2p²2 B³³Įk1³‡‚¦¤¼*v±’ė¦vĀÅ°ņoął‰”…‚„‰L ›¬B‡ś¶6tk Õ Ķ“źĢņ­Įzy¼×”p==xIÅļźūMYÆå½y°Æ*ĘĆž’ ‘}1ßŪÄ„6Ū9SG¾µa\ŹE“e Ź®āåń^Ću:^E…*š3/3éńA»„ÜŲ¤}Å%•nn^biQ¦gYēµk™~iŚSĮ įśņå‹Śą³Ū}s;ŁēqWÉźŖļ–ŲŻf½Ÿ ¼Ā tĘ{ +ɉó”)HĄńzµč÷bTÆŃŹąx–čyåõĘ{œ¦‡qłm)tö bOŌ£^źhS’:^ż²»ZĪ^sļ÷b¤Ņø*"KõŻŽxŁōXĢÕ¤rj{ÆSÅ?“ņŽ÷{ĮŃ[Œé*ƒ× ĶįEgv‡öéę…9^7@ÕüŽ÷{±ŁY°^ŃV”Ū8c½ž7j«_EÆ~Ł]-gēū½e·2KÖb½Ü9ĢĀńŗ$żķéyæŻæR[č%±Ż’Ū]¾µŃ4NŽW“˜n‘hT¼w2_±y ”ķŪHĒk_łYzķ!Ų«Žļ†*9ՑÕ8²{w¬ĖńŗćؕŪ\ĒĖć½mĒė`ļX]^;ÖīE$ąx=Z“ąåń^‡Ž÷¼|‘{čHÕ+«ćåń^u)M±/¹Iā7é‡ĀĀjxy¼×!Æ+ĀńZ'Æ+§īxæW·Õ|öĀc¾ta-^ńh ŽfÄmZųĻóߎżĘŃO²9Ž ZTĄ›½Œ!RgœC{ŹŽõZX—D%W(>"ē˜Ł°xÆ^I@/Ņ,^õ…Ū‚9ÆĪķxįA}„Ś…|Ź€‹÷š±^:Š˜Ŗ¼Ü9Üź6Œ³'9Eƒā½hkƒ÷„żM]ŻĆéÖ«[t—Ėø9Ž+Y2ū zó;^›Ex™j‡¢Ŗń^†'?ü;``ÆB¼Hu¼<Žėą”r¼ųŽÕ5ąµcķ^tAŽ×óØE ^īņ:ŽŽ×”āŽµ²:^ļµėä…;^ |Ēźjxy¼×ŽĀ/½Æø·ä¶‡SS…cā½ęF×滚Į&Ś/g±cTś²Œ‰÷ĀÓm…&dCéc[ؕxɛ1jÓ÷>­’ŚœnL¼—ćµy ¤€ x©@| ”~O£‡QFŸ2Ę™Dń½įģ›ZĒµR÷‚h.<eŽł[¦OmsD˜OŸK£¶/żb'õŅ <Ŗ£—a<ōźw­<ŪF {éģ5¼Zā½ųIöķ]‚— @ń#¼Ė׍—ņ!ŠĄP @qMLć€@©ÄĢ¹łŚ6;lŽ÷‚ÉP ’ŸĆĖ·¹ćEą¼xC‘¹"ŒŲ§P«6yį¹»MĮ^;÷ęx/z€v<ČĮ “ÖĖ·‘wÄĖpbJšJWī9 ‡ÆĶȆŽˆ÷’š܅ė«dE?Ņ_ C¶Ś9ÄłŠv$č)lź‰Q¼SA®†¤‘„»‹¼ür×pY1ėęx/ŚŚąķ0+Ź[Q|kcõõćU®Źē²ÕC0,ĆęxÆRK|@·ŒO^‹Õłhlmyk‡¢Ŗń^Ž×¶ČsĘktū¼¼v ŌńņxÆviIéx ć% iĄėķ|”FlĘ+órõnVƃŖ=I5šö}Zšj*č¤N>aµ›ń22Q7IVĖj%iņ•Łuó(kk­éֈ`¹Ģ¶ėxy¼×š1ÖńĆצÄūŹ#šņxÆĄ¬+b3^ps‹o‰š”]½Šī:üūa£·Øél0%JīĻH³”EŜI¹”n‰ū„÷ęā.uģ8MgļÜŃM>*ĘX6‚–K“Z¤}tB)ž|Ę×'`Ļų(43żŲļUŸYT <ŃVrÖ)ß󧁗Hž5MĪņā²hŻķ®“¶bBš3žV„Q'åf2 Øtģ˜–o¶*Ōé¼É'R 5KėkŅFiy~.-bQźƒŅŖ+cā½J:ŸŅ—ŃXĒółQ*õp^,\­bNąk«U3gėÕįßBžXŠ:‹Ć¬IńXÕēöÕŖI3xŃ²•rŲÄv/š4·||Ś"Ē™qŠ˜Ē+•c&ׂ”įqöļåx œ FąEŖeĆO¤‘+š‚L%5ĆĻĘą•kx/i—µ‡:)šéõkÆLŽ›ń ¼cŪæØx”/T2L ä„Ņl _éEoōŠˆÉ&ž;ęؖĻRŌ¼”ė–N°lXš¬ö¬>+»Dzów‚e”!Ę©N“ŅPń¦ŁIQŗ ĘnęEŚœqÆDŽ­xa‘ć½¤m`¹µxĢ7|ÆŠgįbP?Fą%³ZŒG&KöŌ‹ŠHĮdŁ?į ’Õ*ɓšRgrĒŒ:źżˆ å²QĶ±l3ECåu®„ō„dTē—Õ—z¦·…‰ø ›A4Č¢ŁR¼Ņö¼` B¬ŪÆ·7üz½Œ‰õN2*œĶB8H%Ÿ©˜Ķxm†Æ „”²īWņą†-nS¼WƒVš—~h§ī]ŲSāõšt¶6‚ ČP=Ž¾L×Ēd¹>ÓßĘūÖV(’ŻĆnĘĻÄ«»Ńž±( ń^äj‘ZZ1śÖĘjÅs¼V‹ģ²Å{½ØķßeXƍWĖŌmŚ w6vp{”Ź_kĻÄS–†3‡_ŽŽeŖĪ¾¬iƒ§‘Ą5šŹQ»v•±[Ā« ½¦D Ų–_ķÆņrˆöóZµ78ėxy¼W«H„»*^¼æ_ķ§ć…;ė Ö«*LO0V›ń’ū6ągį/y:ź(¬½÷×Ė3ZCłKųžčswQrX ÅBŽ X?^Œ›ŹM¬x÷Tī÷ ł˜¹aÓA tCšŌ“ķøiV”EĮƒˆ†Gu„?‘«²„GŹ-l·^xtk¬yi³…ą„÷ĒŽŽ²œ9”šIHa¹L˜Ą¦źĆ_³OČ²ŁÖ!¼ń‡(³¶‚j“é,2ĶŦ’Äņ®‘s˜ U ×’7X/÷:x*†ØNå29ė“†@­ćhšL×ĒāE KF‘Ø*į„l^”Ŕƒg ²«ę$Ʋ·’PUžZ/š—D*8Ŗ^©ÉŁęFėåń^Ć5ķ6ńœĘļŸłßÓÆįƒéė÷ĻK­b ”zń«“†å\ÉÉ£½¬žwRŹ«šƒčiK§¬—˜ä¢mTšˆ Mó$öI÷RMHXńƒ’åó“Õ ‚–ÓxŚ¬4Ś¹‚'z "O¬  Ķ'dU.“x® ®aŽF«¬ŗ†r‰˜"ļK* H>ķŒ÷RŲ”“gšø{˜6£ÉńRR܌—ģN #£'7»õĄūäņčM >čŠJžDMĮ؊·DƒkŹū"IUF»ßĄ'vAD+Ō„¬K×&Č6¤p™³s¬>QՉīŚM“TT<ĆŲ}|™p x”ˆųHoįżCÜė&ø‰ZD¢AŽWiN¢Ļ¶ćµTś°ļ†L‰‹…¬©aMŚ ("+¹2÷~/Üįa·f6½GŠž*ŲI1—2OØé“ ś[t¼Ę(ćR)«jX•øØŪK([Ć«ō~/“®G„¦c«‰$ńé^ī€ņĮ–Źnģ­ĮÓų{ą5¦ÆĻ^Jļū½€ ö‰Õ@ņhõŠ^:Ė²€—ņ"Ÿ]䵞9^5 ŻēūŽx/29ŠS²Aj W¦ąĀFŹ’õ2» ÷ß-ŻŒWŁĶQŸfGHwqŒöĶŻŹģ|æ{tl£xƒ×X/ęĪøī.©Éīxå0į$x7å½~{{ā½h©ÅŪ²p6€ĶT²Y+[ęւ>ļę[JSÆėcÓŚĀAń^­Õyŗŗ¶ć„·¢÷®·iakJŸÅÅS“õ¶yŠuؤ¼Õā½ÖUč©kŲŽ—Y ĖŚXVĮ¼bęu±o-Ն„ėū:^ļÕ%ŲžL;ā„Ž÷ŹÆöžd»=g.¼\lĒJ`G¼ŲjiCęxķ7¾-xeūøū5ĒKzbžÄ)>`r†5q}ƒ~°ÖńņxÆĮ"Æ·ŻzįÖm~&Vö3ņX\{`·ÖH’¾I5¼<Ž«IŒ#mʋćĘhäøō”Õó~ƶzäĔvQ yó„ƽ5 /§«MSwLµ!ŽkÖāŁ€rO²¤/­ĆšŚQm¼č6 ō¾ß« ģL9^mņ/¤r¼ŗEw¹Œµ€”r¼DvńĶx6@܅¢Ļ/8ĢK¢ü½JHI=ž “Ćńŗ%Ż ŖįUŠ÷¢šH> Ļ§ ł/fĪŹÓć9ųpÆ”÷#¾züÆnm¾\Ę¾x/9Ogyń>Ś+Ī!mųZ¼TB ]ѧī_włåx]Ž’īõÅ{©8\„»e¶6ŹxŁ$“’KlŁŻ«[gt¼n=|¦ń}ń^ÆÄŪ#ŸĶ¬½āN¢‚GÓX“^čx> Ū{āxµĖźź)ūā½ŌYõ”šøĆÆ`ķEĒŁ’­ ŽAéąN¾Ś1Ļøŗ ·Ļń,Š‹;&ŽėuRCėxuķ¢Yj‡¢&32 ŽĖńZ1üŽ× a]¦Tp+żėƋ÷ß 7Or”ˆ÷ZWkē ^!“IJE<7^qFŗU[ųöéj)›ā½ aa!4 Ō!”Š.RļÓķ9VTį`¤LĖxŻ5~lµõr¼.‹a Æ ń^Å°°Čž1”÷¦ ‡QJśéĢ˜ÖœFŲŠXQ ˜½µõ/“žęZ/;Ü°µxAĻŻz]qdw÷b ×æ É Å_5(!°UüRN¦Ļ [¼­y¼nōtĒėŠ ōµi×xÆy¼Ō73x%# ”D¹°ż[ČŪdĬõƳONęZ‰M)ōpĆ[źUÕ$°k¼W^GŁ4cŽL‰˜ŽSæ¦sč^aMĒOü~Ēx/Ķˆ„~“”Į[¼$Će?5–€“-‘lkƒŽkēš¶ļ[i½NTÆŗ&cā½j­čü>›øŸb&w¼:Õį‚Łj‡¢ĘÄ{ķÕń§§ ĖĶ—¶œPn/÷:xXžĆzĶLu£f@[ŽükīóĘ0.Zäi‚PƒYžLĻ¬Äėżó š"{$°^£t;ļU^ņóć%0)y¬Äė½GA<Ļ 8^ Ņ»€õ€×ū‡óÕ0ŲC“lĒK3Ć»ax[N‡cPEĄĻQó)?I7Pņ’ÅK*eFQŃ³Ć¤E²Aѱ·ńøqōįÅĻ “Ę©ģiŖ†ŚL›¹!t`Śˆ:/R£SCėcŻ•€”/ąėżŻ1ŹŠBa›ńĀ›ƒØÆj9 >±«•Ą /"4ÖßĮ#Œ„i’UŹ„ī÷s5œ-i‘-ŠŹØX™TŸ7¤»6ÉČŖŌé¬AŌ5gUńzL\¶/˜–”æ”1ėŌM8e®Åš;«¹T¶!xį‘üĢ$§©ÉŽ '0¬’Ż±\Ō4œĀµ3RLÉJ]gxµĆ¬ŚĻH“BM ^Żµ‘9¦¾ČaÖ8ķXqP„¦yŖ]‰õšŒ\$ś/É|…}}g5W‘‹3œĄ‹ŹČhr¼>}ZŽˆR“ +ŸŚÅBńœĖ÷ńÕä©1H \f½¬ŃKń2%iŹxe…•M„”Z²/zLR1ŻŒ4h†1šźy¦Ų©¼+×ćķćń5XÆ/4V< sfLšŠI»€p¼Ą±x’ĢÖlś5|0M‰u¼pĆø¬LŠ?m 2ƒ“Ų(¬AQ/LŹÕx„‡Hmė²y£”Y1Ļ ^ ‰Ęnd5³ ę ć¶/Šz›¬WĄ+X/Į‹'³EėÜHĶŚ^Gą ’ŃjSEÅT%Ŗ‚žŗŲKy€ Łģ’°ŃŪ#§g:–¾ø?ŁŽ‡LˆčœėL²¼½‹£.~©±:ßF› äi/‹“BˆŽšÄz_jÅ`¼^Š- H•o’e,K#QVR]0S¦’wź6Y/:6H“HŁ¼ ' Ղ“Āņ­ē.€ cėØēMEļ]€Y×Īķx­«opjA³Rp9”ż“„°–4Źß5­jĖ;—».¹ÅxÆéŲEė(Į:Y°ļ?”VƧl«Č–b¾—”’…™fšā9­Ž½;¦ø7^ ‹ó}>>&½°Łr,Es ”zPNkŗ“?mĪįW³ö"/ƒ*&ˆ”)bė•Z:mä"mžČ;BÉÓ0ļŽÜ4¶łŽx5vņE’ÕššĢW\{½ص¬Œ“Ē†ī!ŗˆŹlĄ‹¼=ø¼€’œcäx=ĻøVā½Ž¾| x½Ot¼ČįĖ‚N_¶āC›Ztå~?ž¦ŁŪa³¬V 1Łó @ŽĒėyF·ļ5­¾Ž"\‚×øĪ?5%Żbr¼ŗEw¹ŒÕó“ż¢k( jsõrB9·AŽ×¹ņY{/Ų܃kdÅ^֜Æēэ:^ĻÓכōÄńŗÉ@54³/?;ß × IÆ Ā»XÖõxyŲĪCčxķ,ą‹_×“•č!`»ćµ«x-¼Æ<LżĪ]ĪF„ğ…*Ē•9^…yrQU¼šBĄƁĆčx ęÉEÕńĀ.†€„Gp; Ž<ÕŹ­— ĢźxƓUŹ« tćeBĄ/Œ²‘ń*ĄĖqįį'}*zą ĀŁ(*`ĮxÜń™żÅėå÷$Æ u7^_³Cōöor|^ĪķābŹ¼~dƒGõQaZ{Å£ˆŖČNóxĶ1HZåxŻb˜šŁ€ŲHĆ$€Ł™g8֋ƒČÉ<±’Ó x•ĖiźįķuąåĘė¢£Ü€“¼ņų uÖ][¦7?Ģ¾¢/£õBƐŻDõĄ:˜oŹ¹ØL76«/:·ę¬m€Ł;šŹCĄōF„öįŒ”&¼Óž;‡3„H¼Š;‡3²”ĒK¼ĄĀt źQŌj¼¦d!`l“Ō¦=Ņ&2Įa\}`¶6fJŻ±å!SźXo½,^§4Ś+-J ŽWņčĆ –=CĄ|˜:^@äx]UmŖx¾WŲUetp»V[/\l½Ä]‹ƒĒbku=xyŲV©/ęļĒ‹™°kó¼ščĀkEłžtµÖāÅ\}ę{ķ«„x ƒšā“‰°O„üy qŃ Ēė)SĒ(¼¦Ö~ ąķ±¢¢ŽĒjY‹×Śģm(K`^.܃w¼¶Ø›ćµEz׏; ÆĒć»éśśų+€Xź• æ¼ĮüéJ w-±ķŁšķxɹ ŗ‘?Ū^\ÆåĖ¶g?6f·ķmä”lqĮ©ZQH·©‹å±Ų‡įõõ»ļįĻ0¼÷Tčk•½/5ņO…W6Lµ½ś³&łk¹ur›¶ZŽx¼&ć ˜ą…ÖŠ ÖZėåxÅ©Æóż^ØŽWD‡źüz:^qķUĄ+œ“š\Āš7;‡į“šQų žD·1üN¤|EŸ}ŖJąilµ^|2 ‹O„éĒżė—`EÄ[fāmĻ)yČeśĢKŹ,·ģC1 ßė”7æŃ×t'/– Gč¢¦Ūˆ@“*ź|ÆJ’œŅeÓo|’MMP)ĒŅ Ģ0Q·¤P4x˜s66ōŚ+K-KšB†š#LDd\“H‹Ł¦’Ÿ†žjG¶ā%ü—ÓŠź7"ĪLź4æ«xqķb&“wŌsé«>ėåņ÷hP uF•¤āÄģČ'Źeż°ßIˆ…tT²h›¦ Ņż„ß“Ę@„åŚ0ŚO”Ōax}®įō*ęP z„3xmlŠČ d ’lāÆč'o±ńåƖ(Š6|Ū†®äśHńāqÖVü¤xYó„TMG/.ķ++*_Ōhƒ«°œ/!“H+¾4=‡ÄtS <µ€æn)o0^xßKšBÆ°`½Ų¬į>¢ā+3lŃv…ÕI’iģh½/; ›ł˜U} /+ėµx%!ĀŠ8µŠ4É`³’•Ųœ‚µ!#[2ŗg*ĮG™$`ĖŒWb½ōfü ē`ąJ²sēw96Y/ķŌ(­Õ (ūÜ“Ś‰ß*µ¢ę¦O&÷ ZKßhŌŽ:äÉčWÄX5Ē’Mb:Ē9„ ¾ļExĮ¦†łĶ|Ž[“µD‘}#ŅńZ‹ķč­ Y(Č²œTö" # ›ŚłÜŠs¢y[Ƅß+¼¤-’^l’ŃgŁM0 Ž€`»A»vēF71 wUåTֆ¶+Ä]åęŲ­‹©a$"˜`Ė殍\{ÅcQrßkå}cÜ>œĖõ4¾_µ#›Ćj ”KØõrŲ/ó§å¦égźmL¶„[kņŽlĪ(¼>ų ­ė"K²Bž5ŗwŚ3ńrŗ²9d“2 Ā+īEįµÆ,7õņV™ĻÄėV‚ŗAcį•ō“×z9^an2ĘæćŌĘ ŌīUš8Æ$ŽėU¤·K?wĄkq9Ń°ÖhH¢÷ ź«²ĀB®“ø³ņµū—ōŻņ±Ż]FؽŠQxM5~  ŽĖÆ ŒW „ļé»ZŅŪö”©„šrźżHZel*cĆŠ¬Ī: ÆWܳ]ŻĻ`$ąxĶ+DŽ—=y5U†—‰÷Š½”[(ųĻųĮ<}x¤ąj:¼=Ūń¢›B|5j%ŻS‚a0·Šćm¾¹Ä÷’ųßčbe¶·}ņūhrsLj3- #Ō4hBÖNŠśŸŚ© u‡µėJóū0¼L¼W^EųrQ]Ixū·/TżŚh½ŃJPc:­ s”-Š²aź™CŹŠĄÆI!¶®ōk›[ʵaó‘.ŠÜŗķ3F­„ĆĖÄ{Į šS?0¾Ō:Ē „r^ēp\S¼¤…nlx¼×Ęń˜²N.Ēk»LĻ*a^øsų”§œ‰'żŸću°üV7 Æ4Ž«v`)½(§mbļjēėc‚ėŻF12 ]ņģ wGˆ÷Š2†į•Ę{ÕT#^tŠćPaTŁpė5ęˆÄA½Ŗj†į•Ę{­ÄkHtŲsŒĢxėåx„ĆšŠk/zæWōīŠÉććLpNĒ¤é§{Ōv–wØ×­×B=§Čaxeń^rBPSę0Æ>‹æ«S†ēgņPĢOvųéķRėė•l0¹õŚe  †×d½²x/°Gd”šč;RźĶ¼£Ćśz—$›­Wŗ­äx5ōĆšŹā½°GS.OK „WgØ%ėÅ”+¾ē³īn·^Ž×Y8„õĆkĘz\;—¬Š"2ī†ńqėu:6·c^I¼ź£Gˆ±Ų`ūć·Ō»l{ȇr/—£Ć6Kā2l·^iœ;‡g ī0¼&ėÕļUŪ²?K—©w³õJ{āx5¶£šZļåx-öėu–6y½‰įåń^5køõŲ6/j•įµŖNO¼(·^Ļ£ x¹7æ£ øõŚQøĒŻ…×ŪŪ—/¾‚Śk N³^-CŚ’&LW¦&ńv—ܝ±©YœØÆ×tŌĄuŻyŠŌgYÆ„„ļj£^ü¾–©ŌJ%/ÖÖŚž&™œ«ńBøR¾z%(łlųÖ|yp£Œož…`ō7śŁÕOŻˆy¹fM*„“õŠA×zIėÕŖ–Ž×:¼ųĮķķ#š®Ģ~©»Ć«ĄŸÓģ ^é)h›žĖü£xɕUkMś–·Ŗó3‰‡[ÆŠĢųGžßoļ«g¶ŚĒ½Ó †?)’ē5žTžž.~µ„B•ōü0®Ÿ'BnTV£im(ĆtA…^Ø{č¦²“Ö(~’™ˆ#}ŠżŠm…Ŗõ¢w%ćĻ·/E¾ģƒõ×č½Ķ4«čdäp„āų ł<Śś\½·»t ¼Ę[/”1ōŽžA‚'į‰—>Ń֋åĶeŃÜĘ„«x$>ėFµ«Ö3¦Fl¤“–Z&©aš€?vĢŌ¶Ū ¦Õc›³F‹ēŅ6įŹxł¢—[Ä©D=ćZĶ8‘%Ē”dÄ3ŗ8­ŠĢŹó–…ˆL¤nĆ ē6ŃÆX&L³tT+6<é }Ē5āŠ*£0ĻēŠĮŚĖzag•_-3u¢‹V{så)_Å3hx5^Š9:§µ› Š¶…248@ōņ7…”ž'Pø|3ąā€†zs;鬓rŅ¼_¢Łv†”™GOŠšų‰īƒ™‡ą0"§¤ōüSF Ę„Nµ¹CܩɎ[$•`6nüĀjeŚM14e'ĶŻ>$é™^zĻF÷³6XŽiÓõÜ“ŹzÉØ%śØ†“T|Ę@( Qd)ā4Øq֙LÆ4OyqL>Ū:ŃL[ėńxĮ ^¬×āėķŖ#‰KUĘ«ąOėo6¹˜9˜œCņāšNeś1™Ł¶ÉzŽ×öxÆ­JqX~k#YŒŽÖļVs“õ f¼"_“åŗ“ Ū“Ą$3Nd43QŸń" Z2єdē%å=,ąE“©¬{eäņŲŖ™Ņ4yz.f‹Œ U ›Ž–,;XÆMķŁ+³²qPÅnJ¾Üƒ¬;\Ē‹n|I„ńHŌ‡ģŸ-6ē$™ ŃįE ß9<¼^!J ŠWIRo“õ÷ŗ27øØWJąU¬×J±Ü2y^zķzĖ^_»Ńn½®=>+Zׇ׊ <éZ øõZ+±ė¦ļÄ«Õ5¼nĒ/Ü2·^œuMėĀĖć½Ö y]j·^ėäuåŌxy¼×ĪźÖkgWüj¼ć½VķĒė[Ą:ć|!tēJī5ɱ <¾{œöŠ’UÅē5ŃżŗRģ-ė¹ĮZ%Uˆ[ÆćŌļšŖxuĘ{­Ņ­9u­ą„)Ņw˜/¾a]¾c©ļk§rF>ÓXˆn„®źR¹[ƽµž°ņėxaSVĘ{­S/ā É5[ČlŠęąų: P,©ŠW~ą¼Üz¦ż»WŌ„WPŖ•ń^S<„Dį!Š:™$ߓ/‡ˆÅó½ńw9ćł$,Ň‚ŌP¼žO8źĻĆA-(JŸr¢Ó[ńĆ¼ Õ>NŒåp7ŚāĆŚ†Ó­W›œnŖƦx/RRPföŅDÆå3¤BšRYTzuŠŻ?7ꌊÖxńʤp>‰Œ5!{šSż ³Ēż²-ŌG9€ŹlT·^‚ŗA²¼ Ņce¼Lė¢aX@6 ¾&÷L!²=č‹Ļą3IŹŖŌÖĖ†JņŗMĢ 4”³@ MƒO&3«<ÜŃ•pėÕ"„[¤iĄ t‰C»Zć½DÉ“(ē-ŠÅm ś"”]ĄÄ׳xeĘŌŚE QJŲĄŅ¤¬Wz\ĻdMmšDc$°ÆęxÆÆØ„3Ī!cZÄ«dĒQ¹”š¦•+į‚Ꚋ¦‚WśŠõš/³uÄ6[/ćČĀ“µ~O7LMx…ŚVĘ{Yēw4f¶6 x™XTB‰wŌzMYō8‰(Ķ‡‘Ē[ä-J\[@³’!N”qMp’EfI|XÓ°m·^ŽW“ HTĒkc¼×}x¶*Üz=ĶˆVń*õtM¼×ÓHź°Žl·^iĄĄ>lš’ŠŗšņxÆ]‡k³õŹZē[»Ųlį’ P=^!v3PIEND®B`‚6Ddąąé9šh² š S š6AĮ’Ćpreviewart"ńæ`š€bšc5šcz÷ą‘Ya/ •ž’?5tźēnš75šcz÷ą‘Ya/ •ž’‰PNG  IHDRÄ…T…säĄPLTE’’’ÖÓĪū  (o-K‰BAB„‚„Tt¬m–É£ÉóˆŖŁTÖTéĻcĶō’hŠ½ĘÅÅ’ńœ­­Œ—¹ä’’:|’’ū’ééÕ°­°Fe c–ļŽßŽ]h]×iˆē‹_œŃœ$%$ ÷ó÷ļėļcĻļmn-8W”ĘßʜĻb|žĪ’ū÷’’10Ī’Īcbœ‚„_µ1œšcļ×Ę00111ecœšĪĪĻ’ĪšœcĻœ­Ŗ”Ģ‡Ģ±bKGDˆH cmPPJCmp0712Hs¼3üIDATx^ķ CŪĘŅ†D­†5į@œ“ā4m ¹4M›ö;'’’_}sŻ½čfĖʖ%ƒ1¶“’öŃ;3»³+OĖĪץd\†P;Ž'0™Œu°ó5€»-—‡‡ōs‰?łå»ĖKłłī»Ėļų7Y~żNæf–Ÿ~„GõņżOņų>]žų^ÄĖĄāåńÓå÷Ēæē–~‡GõņŸäńŸźåč?Gņs“ņņč‘B<‡åš#ĄłųńcS…'#żIĄ¦„@A¦‹ ˆĢŅÓTv€)āO“üń=@DŽą/žAtś †#ąÓ‡büżńcų„!bä‡_žcųĆą­`pśčį‘ƒx>9;;ūx÷qz79=ĶB„¼° U‰Ubd!Š ‘§_ˆ,µJŒįE’T„„1…Č _øT)ńńØÄœšĖA‡@‘ĢĀĖHa2Čd9Āwš©J‰Q5’?:JßQˆē'''ļN.O/Ÿ•ĻO§y-²éW(ŖMP¢ łé1ĄČ¢:‚ ÄD‹Ø<`bU ,(C|śˆC’ĘšIųł‘~H‘¤Ā@‰@Žµˆį!įE X²sJDU*@D˜J‘tX‰ž¹œĘ’§k9%ž#ßłō“(ŹWeQ6I1TbFŒ P†J!Ņb™]3j£CØ>±Āž†R„D1ņ‰€ B¦(¶ŌŁS«Ä„¢*0P"iPTč”hé”Ø.žKb”Ė£Gå“"XÓ³²˜~»ü¹8,@‰‹ÅŻbĆKj-ŖD7ädry æü#BŒĆ4¦µJ$'ȞŠ)Q8"Ba…KŌ؆¬©:ER!ü"A&iqŠšm)JõčĢič՜ę\b@0£CkKŁ9.±(P°ųŒX9E—ˆĖ—ācAč&ų )&^"=+E¦‡vTž°) 9’K¬õ‰Q@“Q¢Ä5—(QxE‰k”“ `ØDiĦ¢AĶśD‘`äE‰Ī%& c¬ŒMsJ +Čh äG$Sˆ_€ā‹›‚xń÷š‚JXa¹DĄ—šŁŻŻ%ˆm>gńį3,ņ‚X"Ę 8(Å*kśÓÆ¢EŃ£aČJÄ'±¦ÓŠ © k£8Eµ¦”U‰5„µ®…‘—¢k`d…(±:°I}"©ĮYsŠ&ßL žœ}9;ø;9 )Nęš ō$@C‚"OžgĮĀźPŒ(Cd–Īœ&J“Ńi5ĘȐŚFŪÓŹFF‰.DĶE§ŖDŽj8:uŃMĢŃūDÖ`F‰ŚJ”ŠĘ†ØŌŠ‚ĶDÖc£OĢAdę•xrsvpó+q2'!RHė„ØDā¢'֟{…®ŠYU †Ķżŗ†m'’ct ©Š)Q[it51XˆarpŹ łDłA%FrōMŒø™HaNŔ†•cÓŖø&vQā—3Tā ŲSV"@b3ŹŃ t²$J B|:$ÕńbĶ©ic$>1nźzlœa5C%VE§Qkß·1Ŗzlø”2ä–be;Q%>ŽMÕ'ĘMEU¢4łŪ6­}"vŲąrs"J\<”"łE uŪÖD‰"E4^‰ŌB¬Šk*¬i$DĀē¢SŃ¢śÄŚ^7é“QkŖJ ĀSm$’•!°#AÖ÷ŗeŗߣ¶+0J§[6:å&Kc2JĢG§—ļe¹9Q%‚O¤šŌšSÖ#ŚP4žź5°QgȶMźÜӚVF¾”h]bŌ‰Ŗ± E63}6Ś_6/Ø„˜i_øč”ūlœYÅų”Li€R}¢v¹Åżn”3§Ü_SžbģClŪN$©a•x7õncøžon]dūŻØĒĶ43J¬N}‡MŚßĘįiƒ]tź{O}ßwÜPTØ”XŌ”ė°!v‰O ;l²ż5ģ«āš•zl6§Ä¤#č) ĄHķx#z‰=õ}§•]6N‰®ūM‰L}tšųDÆD×{Ź24ME×ŌwķDé6u=oÜRL#Š¢é>M}¢ös—Mʜr×i^‹“2X¦ń’Šc­įūāĮĶ nķg£Dßń&J t»ÕųĊ^·œOt „”HJĢöS`ź¢S刞Pµ§¢¤ć”|"¶0Ų9J31qŒN‚‰K䊦²ūŪõ×Ø—x4mXŽ’52ĮW1ōĘT,Å|*Źw€g”ŲœĘhė9•ĖEipJU‰ŅPÄv"E7œĆą7ź²IzkŲœV+1jbäsQ*Dh ¦—Č.ś|b-9v…iƒņĀqĒr­O ū^·%£Sė)‹.>‹a¢Óø„hģ©d1DˆÜŠ—gŠkŖRQ%6§>„Œ% Å›0ÄGfīA’ļlē‡.ģĆ ÄŠUŽ’ķV @‚8„A{ūz„ƒø6gĒĪ±œølpķ‹āƒ]ādRnńķį”U@ü\üõWń—ѦUāäŃq«.•,ÄĻŸßß¾’ūż_ļ=ÅāVa &„ų¹ų\€pśöķõŪ^Š#Ä]ųł=<¦ļo®§·ÅķķŪ··Ž ¶€Øɬź³m^cƒ5Õę`Ś¬³ĮC®Ś•UāēĻ·ÓéĶŪėŪŪĻļß’s[·ƒČyI|ä—·¤urkį{ÕŪk©¾œt?[§W.šóņ-`Ōx9}?½)ÆÆÆo_Üü}üŗø~ķ)Ö(±éŒ}m1¬‚üūįšõ²hM¼ĀP!~ž<} Ė×/Ž¾-Ļæ–`Uui„HZ”ŁŹW½ŹŲ+»ŽS"mļ~"ŚRėŗŽŪė›ß¦Ā³GĮWY”āpU‰²żŠØ†‡\!Pāēé‹ė—’}łõ%¤ģ_’S\C3£ DgNóJćzPPYšąÖŽ1DW”fMĀē·­1Ėzp~ćü”Øwą¢ŖŒĒC2Kö@¼½–/ž-ooæ~}’ö}?­ R”¢† µ„h.‡“†½•šS°Ö6oŸ7”ˆU¦…ķ}£„~h¢!Äéõw.¾żē§n.Ī—€˜=®ƒ¶JTTA¢Ż@æ>©¢“ROŽXĢ©ōī)ńėķÆü·,~żéŸ÷/ #Ä¢•O¬0§Ķ½!UKšĮ`/½(RˆźÓ²tbˆ™0Ė@ÜMsś÷å?ߗæ?¾żé§Ć·/@‰·Šō—„ĊĄFœ"Ū§¼µS}q`’bsjā·­Ä-łø&ŲT‡at˜l“+J{h ģ?ģ±ł{ś+Œ§üė’ČA³æ•OÜŖóéū`¶Žā Go§’\ßShōæŪ2°é»Ž¶Ŗ¼Żƒųµųūöņöć?ÓCš‡·ÅēQ‰[uAUL”ÅųśõļææžżõÖŪŃfŸø':ä£\&) ƒƒ†\%»wnĖ@ܽ³ųø;ÄŻi¹GĶœ©<éqÜéīV‡,ĀģźšœĢ¾žBŠwŗ ćNń€±ŌŸHƧŁb Ōf«4<;rå›=€Š½u>Š"×dYN®=Ÿ^w®@Łŗģ”‡”#Bč‹īzķ F§;ąŖ÷³—Ųƒ*1§3sī€pŸ?æ^ĪóĖKšĶÆaÖX9™v=w"ŁƒŠOĖ«oĻĶĆC¬xߜŠ»¹lŅaü]ƾ¤¶j €j~óčyT9"¼šNÆg³ņy¹ E?YÆkõū³(aŚßüzńv-ÅCÄ6LģD…8՟kž8:1÷¾­a‹¾:ˆ`Ī–æˆŁ¤Õœzh1tE±|ŸĆ„¤HÆ®%—IūS*]Ļaa†+@ĊˆĢ±ƒ8_ąĶ×čg1Ÿy%V¼¼R¬S"ŌrÄ62-ża„* ZŁ Är6C† ĘiŁ(ÅL #D`8{kď ©aZ‚ Ć ¢OŒŖƒ8™€ę“&ü°8śė¦'ņ'ŁQ½ęf™ÕJ4Jį(#2 õ„eė«jŠ$¼ĆõÕ#ŠK"2„KīƒĢv¦zLEāÕEį ņH7^Ś@čt5MĆ:hSPR«icNq.6­ÆA ѱ2°`u%X±O“ÖI‚=ģzˆWŗTRÄAgsXō’B,Kdų —A¬ŃB"0 ‚»R+ˆ‚8›×%<<ÄąBØ"i RUrj Zˆpf¢Ē@‰ĘP՝:[Ų¤imÖ#GŻ5óĖo?§ 5 ¦r:½ŗš=ņ6ĻŸū›7׳)\Äšy‘夞ųUF£ŪD^ĢE [Ź6a9Į”Bp ]•ßą”[‰e§ę8āĖ,TāųY‹j ā±DT^"Õ„!ŚjŠU„ą9šƒg<,ü_–عąFÓ ­Ac3}F±‡>,ÄŁ5@” Dē”AĻ ¤Ć}ipĆ×ļ+;7Ų<¾ŲŠœCx FR¢!vÕ »•Śė5U"Cä*3ł*»F=f ’Q]"bsיS:¶ –!ANæÆ؈thƒ<†A‡ĻŻz&:…¦%2hėn֑»ś+¬­7øxoB D_Nb1ĄŽ,J8¾ŁlV|³ęTF£k™"”H/Q;Ń)1ČJ¤ēŽĶ)a2Ń)¾&ń”CĻ5œa˜F55E5Lu ‰Ä'ĀŽ‘-©āi'ZSŖ'ld]&ģ!Č5’…(„RŁ1Ę²D[?ˆ’ÓB£/¹vü%Ō¢ŗ§ %FQh›čŌ[ĮśĘ~ ‘Q2ÄČ'fŚ#5±BG™=z~•œˆŚ¾ž‘R|#2ƒŖÆJ%’æ•ā« V†›ą7 •3[ ˜Q½ÓH‰‘Ķó >.Ä؀˜*±):õÖ殝kYˆģŁ¬K`³Ņ0ņ@ˆuœ…Ņ€Čb{ˆ’Ō#iHćĶ)6ĪZŽ­œ`_ĘXMD(‘[, ŖĮ®h©:/ČU‚+Ų°•°K¼WA„Mš¾kų Ļ®‰b壚Ö6ŪĄŗn·ąØšzB®ōŸčæč“;ü«±ü•-Ćs—Hčŗ¶ė§zŸfĢ¬Z›6oYv£Jš¾?_;ł£č±ł4śX#ßśģÜéÕĒ”P\™~5-õéāgĒ§āi*°õē;±õłlĻŠµ}!®‰ŃĖńŽ{©ĘL!#ÄuÕģĖ} ˆÜ£öĄKż¹?šĮuŁżAģrˆćŗ[TÖ'nŃa‡Ņ„=…QIÆ`0Å(Å.)3ųĄŒ!؞_ÕRĢBl=Ė ‚5=+‹é·ĖŸatŻéō ‡ŸĶÆ`ØɈ«$KOć—ā£ :ē‘[\.xģįRÆD˜I€‘d$Y…saU’BŌeHæāwżx§Ä/@ńÅĶ8D†Ņ~Į{øv—mŚ—¾åk"D?B%2§8AGżŁ1—ép jˆvP ŅuƒóDŃ ńäģĖŁĮŻÉPPˆ,HVɐDqžMy>é&ą-§ÓņšH‰2–æ‘=Pfyõ?’"ÄdTXKˆn?n”·2Õ'~9;¹9;xBTf¢16—<ÕĒ _Čæ{«DkŪ‚†<œX‡`‹ l‘µķ†»ė€]µĒ#C‚š o¢“ ąa5Z½©į¤żŒ9:•ź •XrTŖĮL4ŽÕ8%«Z£jF[Ė>¢.7'/¼­[D’Yˆjpģē-ŠpV« lJL'¼B- †MŅø8{lŽĖrsņĀ)‘µę@Ö@T»J«ļ±9U ‘ćQĆ.Ų š+÷Ų8I€-D¢(3E4ŗį¶‡XPżÜŪ½ l¼Ø‚Ą¦üÖŠįĘŪõq>7JŽ­ŪĄ™Ō¶ćYegķ‡ńg  ,†,77ź7pźĆŁE}c?ŪC“čK‰pū‡½lå­~1ŁÉ¼ŠMŗj>±ūøS«ÄÕOg?KˆS’+&…ó·īŻ¦le÷Ē-6q?µ³ī³ī|!;Ÿø#CĮĘĆĢՀD§ė¾ŗĘņ×ZäéųŻń&†G¶Īƒo„·7K%Dä3™Å#züę‰ŻÅ©Ē±ō’¾+ßŃ}‘׼ē&åÅ ūC1…x÷ęĖ_¾š šćxāńĮÓPäÉ• ŗL“yüæc"ŗvˆV‹å”Å}dāĖ—†¢“"qü?ęȖ@Šuå?§>|XœNNóSńdJdŠkå'ä –{0ä#…8ŸŸ| ‚qB<ŠŽ¶Š.I‘ļ^½#‰Æ'‹Óćw„ŚÖuŠ1…(R$9ˆśŅr­eÜpT &Łōu“ó‰ó;\ °™Ļęé/ @ųń Møså,,‰óŻń1ž%Y¾9½ūóųčň1.§Gƒ„¶)DoL5Āqć&qUķ=:27:V7 š˜ń™!¶m€G‡§0_¾üĘŅC„n·Ž aMTyüēńgnߜæśm«ń‹ńg’Ó'D7p³œ Qõ#[›”˜T¾‡(šƒ˜Ī>ŲˆtĢPł’=y)č Cę„ Ē­ŽåÕ;žYž$a‚euŃ @„øšŸ!ź`l&œĀ ƒq}ń˜HGoŗ»6›qyĮ½@‰4PO,h0 Į ߓ2„¼^Ī®E!ÕķDŁ˜5)LUTpsĻ–IR süüøīń„¹€o`9BŌÅän1Yü|Ō#D3™A•8›=}ś4‚H6Ņ›Ķ܀X§#\ɆÕŖ’ 0+ĘCÜ7«E ±¹- Mytn°ü5=“ł6¶$|’ł?ų…g&(ŃKŃ^W GŗDV]āiEN‰@°¢Ė ‡”›²ŃxĢfˆ„XŃßš8­fķĪA„æ8 ’W¾vüóē»ņōš’ TbŚŹxܧĶč[§D‘g—8 zøPr”iŚĘ2MJ ¾^fՋ“q{ ńĶ¾ Ę/¾¹•éūąN¹ Ą»Ź«7§W¬S2²”ĘsōóQćńµY!‰N„•2d%Š)¬2žéūfīH¢¶‡øÉ) ā—“/CߌJ)ĀŻxQb?pÜĄ!¶ÉvÜÄ^:bˆl1°—ų4„Č Ięø \źŲÉ~Ā‰XęZR¹bų?÷–~°Ł!øāĖ/’õ>Šm’>Š1DīŗyƒvZˆ§š×tŸK„©jžĆ/G½łDßń¦łAtŖ»ŽØ«jcEzY'€ųņ„ó\š•"ĮꦊI qŻØsŠBē§š€xötįš‘Züį2?śį—~”œdcšĖÄśżā‹—/ Ÿ†Ļø>p^ˆĄ ČAĻ & üĀ)‰¢L{PēGūń‰qVƗ«{— ±J„ĢhI!Zkæ>/@i§§HūI¹‡›dčśJ‘*÷ŠĆćčč(Ÿžrōo?J Šūw–"(J!˜šˆs@tvņģˆĄųÆ0„,K0Ŗķ@ߌ鶑]Ģžż„—ė=É'īsR”ˆU-ę“A‰ĄēīĖ³³/šĪG!:k*/€,%O”“-ć{ķ±1ķĽN D“@lR" †ĻD} D§Cė)H]`/iŚŹų÷—Ÿ{Rā˜vclŗ)„÷ģģŁ„Bh5I² c‰v0Bow¦Óęńć×іŗoIa?$£Óz%±³gwĻ¢ KÉŗ7Ø­JäFFČ<ž„Ēš¤ŪMĒhlM«b}6Ā!ÖūDģӞ¼%ŚV…åé‚UŒQĮ'rÆM <ō”},i·5qKŗ E‰œƒŖ\ŅL"ēŖ–8<ķ™KöøLaķöŸ‡8oV"·ø{y&Ū²Ś‰ü¶4P‰”V !öšOT)–S©­Yį‡g4U`’7™*¶Oq@ŽĖ€ŗnV"š —6ń¢š,č“N›;x·Ż•Ö°V¬Äb6īšrR8%*#—Ėõé`Éhø{µøŌEt:V¦Ī!ŸČ±åŃofß(q6) óžt Tœ| Nš4!Ź:DFč_«°’Ķ²EI›J!ōŻnM>ōŁ³ggˆ„ž"¬Ž/Ó{ŗ.ŸJÄōEŖD‡-Ńē9ÉaR,¬\™‹JrŹ¢ÄšBYŹĒ¶0V!ÄSķ°iēæ@;6aœ‡CÜĢ-Ž°y•$°S ‹ń‰­•č<™BLåźßńØU± ƒ6– •k ‚ˆ!$Åķ|"Pä18 Z Fø­k“›ŲSl4AŁ vMĘĄUó1 BCZƒ²‹9uŅˆ„Ū ±A‹Ų4“Ń'~ˆķ”(CÜtŪ:F»ŸØy4†Éü\ ā,„|¦Ÿ„™^GŻŹ`¬œ¦…Ń5¹fF6ėJĒ1%ŃZ‰pĻhRbƒ=Å·Įc”¬//šeKšŁ7ƒ«w 6v™#XaÓevדMŖDnĪ5öŲ`Į''³³»FŠ™®ļ¦£źöy‘¦ė~YMåv;ų>ÖN!’[lē1Ÿ(䃭‡äTńZgŌ¤ūؙ*#£DŹ ¶TāÉ ¶ytqUpĆ3N×8Qq„hf ó@5Ģ)uP¢6ß+zn^/)ü q¤÷eb¢THĪ'Dwkļģ ņ'scN¹øTŒkµ£öʤ0ĻŁ—1£<ĪʍĖ¾ąźˆdKuž~Ą‘É®Ū»$ż}ž)¬ć€[W:A„"E#G¶uyK®˜@“åģ[R˜!ŽQ`ÓjAˆļ^½šżFĖ3üy†?žāÓ³7šųšfąœ~Ī·*·ćJ)DH#b*±(K.Ė6-Š\AFųįŁ‡Å3x|Ąū2¤Iįv;i^+…³ļĖĆū{Ų–&›mĘ*)ķ ęu›Ļ²fā¤ŲF/Ø*†ųźŻģÕo¬F!‘J łeøųĄ7½įČ}/9%$Ćņ~]‡ļøƒœāU;lŚ÷I֕—ˆƒīÅHœāŸHńÕ»ßNTŒĻ~C„,éŠ# q1’ )ƒÜ’’U"$?³ęÓÄpŖL0©FsLAoŖćķRĮšŽź’ V,1„HÓbhVE«!ā,DŠā»W‚‘Ż"s„? ÄgęöSŚšoU|Ū•2J¤¤ž@¼§¶å“Įš¤°É 'Ś(%Ųö 6¹^œĘŪ—č nøJó3‚Ń-²ÉØ¢ÆĄ5 I¢‹lÖ`P3J„lܒ ņ@)IGŹŪ8Mßā6ZŌ¢Ü§UšČ™f†'4ƛĪ^½b›Źžćo(Ä7€Qī·{šB,įœ'Oų>6 ŃČ+—"lq]yŻ•„B¤t„„Ä ~;žóŻ7ć‰Ä© EˆSÅ9~@s Ń)®Åš&߬\Ö³'“‹'/DNüeĒÖt0§Ż£•Š“ßŲBŌ¹õ¾Ó„DøõW nńų“4@Œ&JeE‚[¤Vā‚‡Š7ßÜ”ż±ėšIß)4 ūōąāąę†!JśH3Ćž=—,ö3śMƒdsyŻīgm¶°“ä.¬w‡lÄ)ļ=E‰q°cøȍ`szŸļp“Žų4M ƒG¼™ObsęŁ%ńMµl£ē«ęl!fʌ6_ A B¬ź—–oS1öóT‰œz7'ˆ ™öƒ[sū²¾ 'Q±K=¶^w#J”£į‹²õ”ķīŠYˆbōvåüĒ¤°I sܱ+č¼p2÷++6j†“~v„g&³æ_÷!ś±»ä ŅĄfĻ²Ā9%ī@<ÖLtjNa²ĀKBÜŖ(<‘¤xĄF5ßę[”%øĀ¦ėŃGŃölšøö<®nĶHŽĘ—Kœf"1< Š13ø™„¬‘ŽBnŽt‰“Xe“M@4ć±_.s.y%ĄX~¤H”ŲØź›Iø5āU›7]ę,VŲ&6§®w‘ÆßŖ’;)Q{ µH›e ęŁ.yY%ĢīgØE…˜&…ł\‰/Ū|ięėé§=Øėšņ»J˜ÆJ źŽ$‰šp‡jjlē•{_śŽ63½\ź,Ś)1É_D9 ē9čxTĒžć-Ób£=Uq,©ETĶz”†³ĆRM.tÄŻ9¶š‰Ģ‚Æ9%lų§ņ®!‡’ø]+ ’mq"ōwŠĮ®%ą“<øžŲBmD‰6:å½FSM³ōŸKt]3·»_Ā°EŅÄ`Épć$š_²[±ö8‚č¼ģŚ!7@uŽ/2–^`F‰¶"ĻšÓ4NZŖņūŚ(1vwĘēUæ4ż5 Ēi½ęŚ•ĶAČ&…}ąęéC†TŲˆEé ĀŖåō‘5(?6äįćwŗ)sZ_)qĄµj>üöżAtFX wŹŠŗYćKķĖej¤c*j ŗ&­1ĢE§Nk‚+ŒNu ējŻ™Ā՗ ł:B\ę:ŁīmŅ¾Sµ÷U#ę‡o+ū錩ÄKÖYź[ź€—e˜v€ow•÷tKv€÷ +”˜É'Žß)¼B}>ȦłÄ}žNįį°ŅNcˆćw ÆT³qŃFy¾#ƒLVØ»!śD½/Ż fa x®zŚGQķ×\Ćj›fśN}«nµ¢ŻÖ>Ī ŗV{*=ž!÷ą9xr aZF.),½©É1p§£]vbÆGīZ™A§zo “&+±ų ŁD`ˆJŌnRæĻ*ˆIņøĖÄāžN©[IU©Øn„ŌÆķśÄuµž»SŸˆ /Ī `øøoDŅ©m&C½āz`T]žEū—j³ć}ÖÓŅeÕC śĖXĪŽD=įzī.ŁäŬr²¹vO/}Ģń†)Da8+ē7pbŃē“8/åóFŖń›&ŃŪ÷\P-Dקā»Ń‚WĢ4Hš{Ótya§Üź'”Qb1Ā|o˜„čųø¤0½&¢ź!öź\V?ߤ„:ˆµįė9’_Š£-¹ŠŌń™žµUūŗ³5B,ęĢæĆB”Ķ)½ß^‰>)µ}Yś®ī*š@äCņŚõuļ>&8;‡{.ą|}ų†“t¦0]ŽģÅŅśWī ’quŌGż÷RF;ˆ®ßŗI‰Uƌāš›ł9Ž?Čą=„\ĘD=²FiĢ†ŚĢ4°éłp{į’3§zŠöąE‹­!Śx³*·Æ³IśN‹ół¼[<²ķ^ƾŖ* ŗXS\” a*_>ѶĢ łųD¾1@'.Vīėāė­œŹ!‹Ę·9'ēŻq|.ÜŃՂµœSÄ.šķÆŽĘ¤°™dWxŲ(”Jw1S±¦2ZßQ³ģ×÷Ķ^.Ęb±—ZŻp!ˆćLį 3Xyw™Ģž>Ļ^¹>¤€ŠĢ>LˆŚA1Ÿßa–q¦šƒ(«ėNS%R. dX3SøėNtżž‚źe Żn JD†“ūOHŃĢn`Ū¶RS>!öwŃåJJ•H¾š~r½ą3…3eĒoŽJ\Ģb1”/÷žt÷f Ū4 '¦“ūɍˆNr0iWŖK«­ēl–(uˆę”¾nąwrŠfŗ7«(,ż¬lN£¬EœéčÖ'»‘%6‰ ž¼s œs¢ÄŁ¤øææ‡į§‡÷|’hĆ2ĖB YqĪXėe¼UóKé‡rPpfMdŠ¢[ˆ’ņ¾F‰>œ*qūră4§ü5“ÜĄ*(DbY 1ų­n…żgKX¾µl2LˆÜU1ĄQ#ŖćKB£Ī“Ō!(>•š6Ū—#"Ä ĮĆÜ~Ķ=k·±©°¬L ±qPäö‰iY~¹Ąf„²jć1Ÿ8Ģ|āC]O³ßašÓɞä äš&Džfŗ7S… qߦ āó+cRųauĒ½ĘŃéā u¹]ˆQR‹0_3CTbńäš“Ä~Õķ£+/Ļ<“$īxymhõaB„Žoˆj¼»ą!nĆj»&Ä˜Č€Lb”g ĖTaŸę,qųdŽŲ^³&…xć…1)üšĀź|cRxˆJÄ»Gæ~ż)M w»>¶ļvŠĒ?ÄĄæSųõńńńSNškŚIŅQU „=ŻÕ­bķ0ńØ+iĒO°ŃŚ©Ć„H ?=„[¼¹ļŽkŃw‰ÖÕ~ö³ ąŹ_SƄ8{żō0Ä{hĄtaīüLęóLa½!IāŚU97åfkfŲéĻjŁw¶›Õ›ŠĶ“×®=LˆåS w†‰mŖD›… …$)¢›Õjī"ųŠL^5ČiÅsß°–ĶÜ*[ŗd˜u‹éIQƄ8»8Š4FĆ+‘T&Zr÷fœ2ĶM nĀ[źMdG[šd³"ļd-&w˜q€Ōė×uJōƒ¢ōĪģ&\1Å9AiDQĶ:0¢&õI‰•ę”åÜ`µ¼ķWąOZA“(ƒ›Č>{¶ØC„č’P³ŁēÕ\ŅĖĄw©…$ƒ§~Ķƒ §R:‰8“Ō4ūÕܞ{F˜Üæ÷ņ7Q`ÕŌ6ų†oialā(pƒT¢Ög:tūkz»4Ä5ÖŪV=BÜ*ĖĢ@!īWVx˜ĒŪG/'éÜŖ"³?~§š2é¼ė¢-b¼}tē }ˆ ˆŲ“ Œp‡ļ^K§&×Ę‹ę Ņ'Ā·'āŌD~p©Ė|ŗ®Sī"_āb”m`^ń!R5n™obŖ¼e®ˆNŃ !’ 8%j:Pū/}‚~ æv¬&k§•³÷vęÓ¦›}Ę¹›Ö+"),遜D“ņ3”LNĀå'(‹ĒĢ„KóŁœ†óa²cĶZ"Ä Ž”‚Ē72µōå²æŖ7SןŅ4eÖe Źŗśš!%ŠtŌū¼ÕR>¶µ‡Ų”8fqvĮń…h„āĢf”PTC[•7Tśģ¢Ķ?V(qÉP©-Ęa*Q¾eāo ¦µXTÜ i Ź.ętĶķŒAB”¬01”C› m˜Įę¾Ńb0ebNƒĄĘ]W˜›ƒ,;ꯋÕm«ŖeÖ&D¶jkH'®9BY† l3`ˆKÖHõf¬ć-\Fˆ[„ė!»ÖŲ®?PˆcRx ƵŚCJG»Iį]c˜|C|qā˜Ž%’±ĻéĪn‡‡ :‰1)Ü Ė§“§q9É«ģ(™ī}_–÷‹Å¼ę;…Wn,lUc# lžĀŅ„>qed$įęéö›†X\`oŪ!üś¤pH­+‚Hōv”C$(ķX—VWˆŁ-7 ń¼€šāš¢8ō©Ø0UŪā$zŪ3HzlXYšK‚¢g~ņŠóoŹ{¤E ¤-ƒ>KUų]µrŻŲœĪ1…Iahcæ?Ńe€Ķ“Ź'…“€¹«UĆ“_ī7yąu'z»ŌL^‰ŹL‘*D+<¦&ģsź·f ź3c·čr¬UėfF»Į]k ø&=DMšīo/,ä&O¬ä|š1šÕÖ]Ķ}œk¶Œ¼OdßĘź±zS±9ßC¤}čÖT†…Č„zų=Uā¬|r3{}šī-¹ ›˜'!JŃä~Ey63ę„VŽz:{(&U¢’“ŗĪCŌ°””°Ug^•>źćLRˆó‹›'7Æ'š`ˆ“’ēŽóóGķXĆ4[æęDo—Š©3§‰_ū‚LlŲT™ÓŠHĖ&]¶bŻbYDø™ĶäõEŃŽOĮ ¢Égx•œ\q†xżJ[VN"1ы‹Iœ%ŌĻ­ŠŚ6²­•{Ė#­^-ķv+Źƒ'70kÜ¢Ėģ# ›®š¬9’¦Ąf‹SķŸ€kH Æ|Į­„€L`CqÉ&–¾N(Uād>æ™÷Uüö—3T%ĘķÆü¾Žp°ūŖ ](§ÄɊجĪŒ9Żė¤pŲ¼÷­ĮŠ Œ{Ó“æNŪ‡¾#6„˜éM]įŠ“ĀįMk=D[©U2Ŗé_‹ Š‹čS™i;Q§&ī‰ +²”^2-D× NM{ķļę.™Ź>©mNķ ®· }ā¦™n7Sā&…99čzaD¶†ę!J1ŃĒŅ=`ŗÄūPd QęŅt™)_H[ŌæŻxĒMDłŲU}čCćt_ ®Ū›¶’^uŚP“Žx +$?!OpW0¤8›ix¶˜–ėÖöļė+“Ļš%™ž9SDøæqOŽW‰Õ”Įk>°Q§§–21§ā½9E§‡kÅéf^ŃŽ­]éZRÉ­ ö`ņz¼ī’¢%~‚¤ĪpK–u8Bsj5Żn~­Jˆ5ą½öŻ-s½$}qm[Bp-48·Jˆv­ŖšM{M]ÓÆkPśē“C SżgRQ¶ßł•×Ž¾ÜPņNõ:BŒ¾?±Æš ‹‡;MéWž­š|—ź’ĆQė ĪĻf®ˆ]\y©¾Sßø«ģ7y¬e†’wŖŹLRX¾7Šyrp0ųŃ6KAlŃ.RSo č\'‹†’ÆŃĻöžŸ—k ;źzV^WxÜcŽ;–¼ärĆ6’,†IģƗšļMņA9ŲŃąģŪ“łPÓ®nŠn¬1N‹”䝮Ų¢Ūz~~q^¬Ģpė„ÜŖ±ß©J7ær ŃŻü|ĮB¬ĪŅ&„Ņqć»qæ÷Ńõ2H!ź3@ˆē~VTRnųķ]ƒŲµž¶bżœĖūOš@!ŽsG).ܙfi5åkÄŖ=£²…ėŻŠ“ĶÄ0Ķ©(ńüœ¾UŲĄąLP.ƒdR>Ł¤™Š-×ā0!ĀL}ģż.‹§“¹Y¬ŹŅ†S†I°ī×AÜnŠĆ„ˆJ„;CjKåę DØ6˜B\K*·?ėŗßj^oi)D»æ=œ)¼Žź^Oé)Dl`Š­Nå æVŁļ4é™<_\š ś¢¤°e*żāśÖ¦„:µ­d‚Ą|>1/ČHj;—,Dž_zqclĀ¤p0ĻEÄvžēĪ„„ ‘'¢A> Comment ReferenceCJ4@R4  Comment TextZžOń’2Z title „0ż]„0ż+5B*CJ(OJQJ\_HmH phsH tH LžO1rL listbullet & F Ęh>„h¤^„hJžOń’"J artnoteB*CJOJQJ_HmH sH tH 6žO126 author dš¤xB* *žO12* bio¤B* :žO2: callout¤x CJOJQJ6žOaĀ6 code5CJOJQJ\0žO0 editnote6:žO": endpageB*CJOJQJVžOń’V fighead $¤x$:B*OJQJ_HmH ph’sH tH 8žO18 imageplace ¤B*`žOń’"` caption!„rņ¤P¤š]„rņ%B*CJOJQJ_HmH ph’sH tH &žO¢!& hyperB*<žO12< listnumber # & F¤*žOB* maccess$*žOR* mauthor%*žOb* mbornon&$žOr$ mcta'.žO‚. mdownload(,žO’, mexlinks)*žO¢* mexpire*.žO². mforprint+*žOĀ* mforweb,,žOŅ, mfreekey-,žOā, mkeyword..žOņ. mprintpub/6žO6 mprintpubdate0*žO* mrelate12žO"2 mshorttitle2.žO2. mstrength3,žOB, msummary4(žOR( mtitle5&žOb& mtype6*žOr* mwebpub72žO‚2 mwebpubdate84žO’4 mwebrepublic96žO16 pullnote:¤5B* (žO¢±( QA CJOJQJ>žOaŅ> sidebartitle< :B* CJ BžO!ŅB sidebartext=„»¤^„»B* <žOĮb< sectionhead>&dCJDžO!ņD signature?$„¤`„a$B* 6žO6 Style1@:B*OJQJL"L CaptionA„rņdL’¤š]„rņ6CJOJQJfžOń’2f subhead1B$dŌž¤x+5B*CJ OJQJ\_HmH phsH tH :žO!2: subhead2 C$düžCJDžO1BD tableD Ę pąP„rņ¤]„rņB* .žO12. taglineEB*@žO!b@ tiptextF„dĄž¤`„B* 4žOĮb4 tiptitleGB* CJ2žOńB2 tableheadHB* .žO¢‘. printonlyB*@žO¢@ tablecaption J„]„B* .žOQ². mauthoridK2žOQĀ2 mpreparedbyL.žOQŅ. mcolumnidM$žOQā$ msigN.)@¢ń. Page NumberDžOD display Pd ž¤@B*CJ$OJQJJ@JTOC 1Q Ę~ ¤xCJOJQJmHnHu0U@¢!0 Hyperlink>*B*fžOń’2f Legalese,lSdj’¤P ĘjĄ#CJOJQJ_HmHnHsH tH u(W@¢A( Strong5<žOR< pubdate U ĘąĄ!OJQJPžObP documenttitle V ĘąĄ!5CJ`OJQJFV@¢qF FollowedHyperlink >*B* ph€€HžO¢H subhead215CJOJQJ\^JaJo(JžO¢‘J bodycopy CharOJQJ_HmH sH tH 4žO¢4 figureZ OJQJ^JPžO¢±P code Char%B*CJOJQJ_HmH phsH tH .. TOC 2 \„Č^„Č.. TOC 3 ]„^„.. TOC 4 ^„X^„X.. TOC 5 _„ ^„ .. TOC 6 `„č^„č.. TOC 7 a„°^„°.. TOC 8 b„x^„x.. TOC 9 c„@^„@ =>vĀ|’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’ ’’’’ ’’’’ ’’’’ ’’’’ ’’’’ ’’’’’’’’’’’’’’’’2’’’’’’’’6’’’’4 =>vĀÅ     ’’|’’’’’’’’’’’’’’’’’’’’X’’’’W’’ō>š£ö|„’’’’-„’’’’W„’’’’}„’’’’e—ÆĮVÕNæBĆ6Øņō/ 6  + éU#:FT£³ÄĻŪ½Õ*šM¢•„ń!Ø#¦$½$J%Y%0&A&H'N)Ž)*+Ć+Ś+-r/b1ė1 2•2ś3ż45@55‰5‰6Õ7ē7M9²:ģ:Ā<Õ<ā=š=–?AĘAĻA\B‚BJCSCąCD7D±D–FĄFęFG÷G[J£K“KXMYMxN–NZOP¤Q|S˜SÄTąTłT%UŽUwW W!ZO[T\¬\]]g]±]·_N`X`"b>cocødGf[fÖgCiQi!k>k¤lŠmAnCovo–qr›rAsLsŒs£sųtu u,u-u9uHuIuUu‘u’uœu½u¾uŹuīuļużuvvv[v\vhv‹vŒvŠw.yzzG{\{|#|H~Š~t€€Š·ž ‚@‚”‚©‚µ‚¾‚æ‚Ń‚Ž‚ß‚ģ‚ü‚ż‚ ƒƒƒƒ1ƒ2ƒ5ƒ?ƒ@ƒCƒJƒKƒNƒYƒZƒ]ƒfƒgƒjƒtƒuƒxƒ}ƒ~ƒƒ‹ƒŒƒœƒ…Š…Ń…Ł…å…ę…ń…ņ…’…†† †††$†%†2†3†E†F†Y†ö†’†Œ‡‰VŠwŠšŠģŠ’ŠT‹ĘŒųŒ?HPZõŽ7c„ÖNVbklz—˜¤ŗ»ÅŲŁÜōõų ‘ ‘ ‘!‘"‘%‘>‘?‘B‘U‘V‘h‘’#’\’’£’O“V–—–°˜ą˜YšøšÅšŌšŪšc› ›$œkœ¬žŅžčžńž÷ž&ŸW¢Ś¢ £j£Ę£ó£„„y¦ˆ¦¦¦»¦Ä¦Ź¦č¦§”§¦§Į§Č§ļØ©$©)©O©V©<ŖNŖaŖ‡ŖšŖĄŖÓŖūŖ«.«a¬Œ¬½¬į¬­.­O­ń­Ā®Ö®Æ Æ—ÆśÆ°9°•°ž°+±G±Ż±3²‰²Ļ²'³Ķ³ą³÷³ü³0“C“Z“_“““£“ŗ“æ“ó“ʵֵ~·±·†¹„¹^ŗŲ»½m½N¾ƒ¾Ą9Ą‹Ą¢Ą Ć„Ć/Ä8ÄÅÄ\ÅeÅņÅgĘoĘ|Ę°Ę±Ę½ĘŌĘÕĘįĘĒĒĒPĒQĒ_ĒœĒĒ¦ĒÄĒÅĒŪĒ>É6ŹöĖÉĢąĢ;ĶCĶ²ĪäĪŃ#ŃéŅ–Õ7ŲŪ»ŪŃŻbŽ\ą/āqćŒä£ä.ę8ęhęręŹę-č7čAģƒģģåģ0š=š>šAš]šĻšBń°ń"ņ#ņ.ņ˜ņųņdóŹó2ō3ōIōĶōSõĮõ0ö”ö¢ö£ö¦ö!ų"ųÕų‹łBśčś›ūœū·ū’üžūž^_EP`™QR}‰Ć{|}~’¦½æĶö÷BDGWX}˜0€€˜0€€˜0€€˜0€€ų˜P0€€˜Q0€€˜Q0€€˜Q0€€˜Q0€€˜Q0€€˜Q0€€˜Q0€€˜Q0€€˜Q0€€˜B0€€˜0€€˜0€€˜0€€˜C0€€˜0€€˜0€€˜0€€˜C0€€˜0€€˜0€€˜0€€˜ 0€€˜ 0€€˜ 0€€˜ 0€€˜0€€˜C0€€˜0€€x˜ 0€€x˜ 0€€x˜ 0€€x˜0€€x˜0€€x˜0€€x˜C0€€x˜0€€x˜0€€x˜0€€x˜0€€˜C0€€˜0€€x˜C0€€x˜0€€˜C0€€x˜0€€˜0€€˜0€€x˜0€€˜0€€(˜C0€€x˜0€€x˜0€€x˜0€€x˜0€€˜C0€€˜0€€x˜0€€x˜0€€˜ 0€€x˜ 0€€x˜ 0 €€x˜C0€€˜0€€˜0€€˜C0€€˜0€€˜0€€0˜0€€x˜0€€x˜0€€x˜0€€x˜C0€€x˜0€€x˜0€€x˜0€€x˜0€€˜Z0€€x˜!0€€˜0€€˜0€€x˜Z0€€x˜!0€€@˜C0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€˜0€€˜0€€x˜0€€x©G0€€0©0€€0 ™0€€4 ˜0€€ų€˜0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€˜0€€˜0€€˜0€€x˜0€€x˜0€€˜C0€€x˜0€€x˜0€€x˜0€€x˜ 0 €€X˜ 0 €€x˜C0€€x˜0€€x˜ 0 €€x˜ 0 €€x˜ 0€€x˜C0€€˜0€€˜0€€x˜0€€˜0€€x˜0€€x˜C0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜C0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€˜0€€x˜0€€˜0€€x˜0€€˜0€€p˜0€€x˜C0€€x˜0€€x˜0€€x©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ˜0€€ų€˜0€€x˜0€€x˜C0€€x˜0€€x˜0€€˜0€€ €˜C0€€˜0€€ ˜0€€˜0€€ €˜C0€€x˜0€€x˜C0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€x©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ˜!0€€˜0€€ €˜0€€ €˜0€€ €˜0€€©0€€0 ™0€€4 ©0€€0 ™0€€4 ©0€€0 ™0€€4 ©0€€0 ™0€€4 ©0€€0 ™0€€4 ©0€€0 ™0€€4 ©0€€0 ™0€€4 ©0€€0 ™0€€4 ˜!0€€˜0€€x˜0€€x˜Z0€€x˜0€€˜0€€˜ #0€€˜ #0€€˜ #0€€˜ #0€€x˜0€€ˆ˜0€€x˜C0€€x˜0€€x˜ 0€€x˜ 0€€x˜ 0€€˜0€€x˜0€€x˜0€€˜0€€˜0€€˜C0€€˜0€€˜0€€©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ˜!0€€˜0€€ €˜0€€˜0€€ €˜0€€˜C0€€ €˜0€€˜0€€ €˜0€€˜0€€x˜C0€€x˜0€€x˜0€€x˜ 0€€x˜ 0€€x˜ 0€€x˜0€€˜0€€x˜0€€x˜0€€˜0€€˜0€€x˜0€€x˜0€€x˜0€€˜0€€x˜0€€x˜0€€˜0€€x˜0€€x˜0€€˜C0€€x˜0€€x˜0€€ ˜0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€x˜0€€x˜C0€€˜0€€x˜0€€x˜0€€˜0€€x˜0€€x˜0€€˜0€€x˜0€€x˜0€€˜0€€x˜0€€˜0€€˜0€€x˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜C0€€˜0€€˜0€€ €˜0€€ €˜ 0€€ €˜ 0€€ €˜ 0€€ €˜ 0€€ €˜0€€ €˜0€€ €˜0€€Ø˜0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€x˜0€€x˜0€€˜C0€€x˜0€€x˜ 0€€x˜ 0€€x˜ 0€€˜ 0€€˜0€€°˜0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€x˜0€€x˜0€€˜0€€x˜0€€x˜0€€˜0€€˜C0€€˜0€€˜0€€x˜0€€x˜C0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€x˜0€€x˜0€€x˜C0€€˜0€€x˜0€€˜0€€˜0€€˜Z0€€˜0€€Ą˜0€€x˜Z0€€x˜0€€x˜0€€x©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ©0€€0 ©0€€0 ™0€€4 ˜C0€€ų€˜0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€x˜C0€€x˜0€€˜0€€x˜0€€x˜C0€€x˜0€€x˜ 0€€x˜ 0€€x˜ 0€€x˜C0€€x˜0€€˜0€€x˜ 0€€x˜ 0€€˜ 0€€˜ 0€€ą˜C0€€x˜0€€x˜0€€x˜E0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜E0€€˜0€€˜0€€x˜0€€x˜0€€x ;0€˜0€€˜0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€x˜0€€˜0€€x˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€˜0€€ €˜0€€ ;0€˜0€€˜0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€x˜0€€x˜0€€x˜0€€x˜0€€˜0€€˜0€€x {00Ģ”ˆę$@0€€˜@0€€˜@0€€ {00Ģ”ųę$@P0€€ų€ {00Ģ”0ē$˜@0€€ų€˜@0€€ {0 0Ģ”ģ6˜@0€€ų€ {0 0Ģ”€”Z˜@0€€ų€0R4\ ;00Ų”860€€H˜0€€ ;00Ų”Œ60€€˜0€€ ;00Ų”Œ60€€˜0€€ ;00Ų”}<0¼ “¤?\0€€0€€x}<0¼ “    9D7777999999;;;;;>ł OĀļßK©‰ö¦ß»Ķ\čåōÖśĄżÄ;č | | ‡Š‹Œ‘™£«®°µ·øŗ»¼¾æ:H/šEXU _vwH}½}~‹~@ŠüŠ1‹J‹f‹}‹ŁŽ2Žģ’k˜ŗ˜ō˜!™U™Ū¢¦ÆĀ¶£¼ņĶįĪœĻÉŌ-šSżP ƒ G | ˆŽ’“”•–—˜š›œžŸ ”¢¤„¦§Ø©Ŗ¬­Æ±²³“¶¹½ĄĮ{ ‰{¾ÉåA`ĮŚŪś6QSTVuµŠŅÓÕō.IKLNmž¹¼½æŽ!<?@Ba¢½ĄĮĆā0346U‡¢„¦ØĒŃģļšņ¦.ä.š.ĻAXBZBSCÜCŽC}j kk€wØw²wÜ{| |’†ˆ‡Š‡’Š'‹1‹č“d”Œ”·”3•9•<•ŗ•Ā•É•B–S– Ɠƕƞ°'±)±¹P¹X¹IĮĶĮåĮļĮKĀeĀŖĀĆĆ8ÄĮÄĆÄeÅīŚŕÉČÉŌÉ4ŃfŃqŃéŅxÓøӖÕ0Ö[Ö7ŲŃŲūŲ ܑܠÜbŽ£ŽæŽ\ą¤ą°ą/ā…ā²āqć°ćÖćręĘęČęŹęē ē7č‹ččŽčāčäčģįģćģåģ9ķ;ķ]šØšĶšĻšń@ńBńń®ń°ńūń ņ.ņmņ–ņ˜ņ×ņöņųņ7óbódó£óČóŹó ō0ōIō‹ōĖōĶōõQõSõ•õæõĮõö.ö0öröŸö"ų\ųjųÕųł$ł‹łÅłŲłBś|śŽśčś"ū:ū·ū:üNü’ü;żKżž<žZžūž7’J’_ ę|X’„X’„ ō’X”’%ō’•Ą•ĢX”’%ō’•Ą•ĢX”’%ō’•Ą•ĢX”’%ō’•Ą•ĢX”’%ō’•Ą•ĢX”’%ō’•Ą•ĢX”’%ō’•Ą•ĢX”’%ō’•Ą•ĢX”’%ō’•Ą•Ģ•ŒX’ŒC’¬C’¬X’ŒX’ŒX’ŒC’¬X’ŒX’ŒX’ŒX’ŒX’ŒC’¬C’¬X’ŒX’ŒX’ŒX’ŒC’¬C’¬X’ŒX’ŒX’ŒX’ŒX’ŒX’ŒX’ŒX’ŒX’ŒX’ŒC’¬C’¬C’¬C’¬C’¬C’¬X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„X’„¢Ü 9@Ģ3>!•!’•€X’Œ!•X’Œ9!ō’•€šņš  “;Yš`bš$äĢNœóg H3דn’øS£„Rš$`"­Å Ä¢båŁĘ“Ÿ„’ø ’’’’bš$Ščō¹p”3īP “·)™†’> ’’’’bš$‰éēę²/S¾ŗSjµJō’! ’’’’bš$©¼uĶ™—€:Ö„j-¹f’x-’’’’bš$"ŖEæĖ„hŌO1ąŒi«‡Ų’ņ.’’’’bš$0V^óqo8_€é¶Œ>{‚’š’’’’bš$¬CÕ5€°6±ó¬bÕa‡å1’ˆ(’’’’ š0e‚˜²ƒ0e„˜²…‡ˆ‰æ ō   €3f™‚ƒ’’’„… †A‡Įˆ‰Š‹ŒŽ‘’“”•–—Į˜™š›œ@æĄ3fĮĀ’’’Ć ÄÅAĘĮĒČÉŹĖjJĢĶĪĻĮ×’€€€ĖĖĖ 8c8c     ?€‚ƒœ1„…šł†‡÷ˆ æĄĮĀdĆÄÅĘĒČÉŹ0uĖŠĢ0ķģ’Ķ@T‰Ī€Ļ€’’Šy’Ń2Ņ NÓPĆŌÕ'Öp”×°<’’ŲŁ'Śp”’AØ)BCD|¾E„|¾…†|¾‡S"ń‘’æ‚‚PńŻŻŻ’’ĢhĢ3f3f™@ń’’’3f™€€€÷šT š:šźš( š ššŖ¢ š2 Ó šN€Š2æ ‚æĄ3fĖjJ’?æ’C"ńæ`’æšš" šš¤¢ š4 Ć šH€æ ‚æĄ3fĖjJ’?æ’C"ńæ`’æšš ššŖ¢ š6 Ó šN€Š6æ ‚æĄ3fĖjJ’?æ’C"ńæ`’æšš šš†² š7 S š6AĮ’æ Word_headerC"ńæ`’ššš†² š8 S š6AĮ’æ Word_headerC"ńæ`’ššš†² š9 S š6AĮ’æ Word_headerC"ńæ`’šššB šS šæĖ’ ?šššāšXšŹš( š €€ €€ šš’¢ šX ³ šB€æ 3f™æ Ą3fĖjJ’?æ’#"ń æ`æšš šef>š?š£ö¤ö|7 Š0*oj@2 `†\j8Š +oj@4 `ą j9Š +oj@6 ¢,DjD>XA I&su’’ _Hlt61158265 _Hlt61150717 _Hlt61150733 _Hlt61074132 _Toc61075656 _Toc61075657 _Hlt61074164 _Toc61075658 _Hlt61074170 _Toc61075659 _Hlt61073958 _Hlt46809958 _Hlt61073945 _Hlt58208094 _Toc61075660 _Toc61075661 _Toc61075662 _Hlt61063949 _Toc61075663 _Toc61075664 ListingA1 _Hlt61073964ListingB _Hlt61073953 ListingA2ĘĒLōōN³:³:?c?cÆw°w| |H~W–·³Ī³Ī/ęhęhę-č-čƒģ}@@@@@@ @ @ @ @@@@ĒČMō. Œ³:ė:?cnc°w±w| |‰~––°·³ĪćĪ7ęhęrę-č7čģ}ÅĢ  !Œ“Õ Ų š!œ!ķ"š"N)S)U)`)2,9,ź,ń,T/[/1 1o1v15ˆ5‰55Ą5Ē56#6–66777"7z77 7§7 88‡8Ž8½9Ą9„:‹:q;x;…A‹A{BBCiPiŒi“i-k=k–k¦k²lĀlŗmĮmŠmąm[nbntn€nŖn¾n ooCoWoYoso©o¹opŸpŽq”q”ršrs+sEsKsPsVsYsmsos‰s’s¢sĮsŃs÷sżsŠtątuu-u7uIuSu’ušu¾uČuļuūuvv\vfvéwłwżwx0x:x?xGxqxxxłx’xy,yzzK{Q{Vfū€€€’šŽźõü‚ ‚‚‚‚.‚0‚=‚æ‚Ļ‚Ń‚Ü‚ģ‚ś‚ż‚ ƒƒ/ƒ5ƒ=ƒNƒWƒ]ƒdƒjƒrƒƒ‰ƒŒƒ”ƒr„€„Õ„ą„š„ł„I…Q…U…c…ž…©… †††"†%†0†3†C†F†Q†½‡Č‡ ˆˆ%ˆ0ˆµˆĄˆĶˆŲˆ ‰‰¶‰¹‰fŠnŠ{ŠƒŠĒŠŃŠŽŠéŠuŒ{ŒĪŒÖŒ?GHOPYiŽpŽ‘Ž™ŽŁŽįŽłŽ%'47GNUYa“œ­·&5lxz•˜¢¤ø»ĆÅÖÜņų‘ ‘‘%‘<‘B‘S‘V‘`‘ń‘’’"’'’1’4’H’J’Y’\’v’­’½’C–S–)¢1¢©©.©:©jŖvŖ£ŖÆŖÜŖčŖ¾¾%¾-¾N¾Y¾e¾p¾t¾€¾Ļ¾Ś¾'æ3æ ĄĄĄ'Ą)Ą6Ą9ĄBĄ½ĘČʑȕȚȠČēČļČQĢTĢ~ĢŠĢÓĢßĢŠ%ŠHŌOŌĪŌŽŌ9Õ@ÕlÖrÖ×ףŁ±ŪŗŪŌÜŪܱŻĮŻ±ćŗć%ē+ē1ē7ē:ēFēHēbējē{ē¤ē³ē’ē čbéréŗéĄéĘéĢéĻéŪéŻé÷éŗźĖźōźėOė[ėŹėŚė"ģ(ģ4ģ@ģčķšķõķżķīīī#ī„īŽī“īī ī·īėīóīōīļ3ļ=ļiļpļuļ|ļļ–ļ—ļ”ļ¦ļ±ļ“ļĘļ0š<šŲņåņLóTóE€D}e]]6TµÓ.Lž½!@¢Į4‡¦ŃšDEEMPU_~†‰ŠDLV}=š>š@šAšAš[š#ņ%ņ¢ö£ö„ö¦ö¦ö'÷(÷ē÷ē÷€ūŠū©ū°ūDEEMU_`no˜™PPR~†Š˜™ĀĆzz|€’¼½½æõöö÷ABBDDEEFYZ\z}’’ Bill Detwiler Jody Gilbert Jody Gilbert Selana FryewrightkV‰’’’DT–’ž’’’’’’’’’’’’’’’’’øYį ’ģM  ’``k ’ j4 nŚź¦’L+G  ’²- ’wVW ’]O–Ģ£Öņ’’’’’’’’’źIl ’&MÖŪŅP’’’’’’’’’jYY ’ÕPŪ"ŗŅv’’’’’’’’’V&ā ’2UøĶ’×VŅ ’ČLķ|5“™’)³ ’<[Ż ’“f*nŚź¦’#9žL¼O’Ģz Lčf-’Hx$" ’nN˜" ’ SÆ"¾±RB’k{°" ’$L{# ’‡&¶# ’cx»# ’UlÕ& ’© E(æŅŸ’’’’’’’’’ƒ1/,`ļŖ|’’’’’’’’’b å, ’E>. ’ā?1 ’AXĘ4óŹ-’ó 7nŚź¦’”-Q8 ’Ł*—8 ’z@«8<7¢·’]7:9 ’IN9 ’%x©; ’$1ć; ’wÖA ’°-CFNÆ°Č’zvmG*D¬'’06‘G ’į RL ’†AeNnŚź¦’OKŌO ’L,%Q(ī6’’’’’’’’’µX:U ’||+VnŚź¦’8tgVœ˜¶ļ’ÅGyY ’ŻP‡] ’$Zļ] ’ßoŁ^nŚź¦’ńä^ ’™ _ ’ČQl` ’ˆ@Vb ’O7Ōe”i.’o# g ’ g ’ Lci ’g9jšīøø’’’’’’’’’…2m ’čēm ’%p ’·N}s ’~FwņÕ’~Œw ’«Wx ’¼ZyČ.ŗ-·y%x©;ģM  €R…2mˆ@Vb·N}sjYYwVW‰’’’$Zļ] gb å,YPMyIN9%p SÆ"z@«82UzvmGĢz ™ _ó 7“f*ßoŁ^ j4 †AeN LciOKŌO||+V``kqØ|~Fw#9]7:9²-L,%QÕPŪ&M¼Zy© E(g9jƒ1/,O7Ōe«WxV&āŻP‡]¹uP]p}čēmøYįcx»#”-Q8k{°"<[Żo# g)³źIlÅGyYHx$"06‘GL ¹|wÖA« üy$L{#$1ć;ńä^×VŅį RLnN˜"L+G ā?1~ŒwUlÕ&Ł*—8UF~8tgVµX:UČQl`‡&¶#]O–’’’’’’’’’’’’’’’’H€R @h „Š„˜ž^„Š`„˜žOJQJo(·š’’’’’’’’’’’’’’’’’’’’ä€R0.’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’V’’V         åŸV)YžĆt©Ō>Ėe|ߣKXMYMu u,u-u9uHuIuUu‘u’uœu½u¾uŹuīuļużuvvv[v\vhv‹vŒv©‚µ‚¾‚æ‚Ń‚Ž‚ß‚ģ‚ü‚ż‚ ƒƒƒƒ1ƒ2ƒ5ƒ?ƒ@ƒCƒJƒKƒNƒYƒZƒ]ƒfƒgƒjƒtƒuƒxƒ}ƒ~ƒƒ‹ƒŒƒŁ…å…ę…ń…ņ…’…†† †††$†%†2†3†E†F†Vbklz—˜¤ŗ»ÅŲŁÜōõų ‘ ‘ ‘!‘"‘%‘>‘?‘B‘U‘V‘oĘ|Ę°Ę±Ę½ĘŌĘÕĘįĘĒĒĒPĒQĒ_ĒœĒĒ¦ĒÄĒÅĒ}–žžžžžžž–žžžžžžžžžžž–žžžžžžž–žžžžžžžž–žžžžž–’@€eePSUe|€@’’Unknown’’’’’’’’’’’’ G‡z €’Times New Roman5€Symbol3& ‡z €’Arial?5 ‡z €’Courier New7& “Universc"  Tw Cen MTLucida Sans UnicodeA5  ‡ŸMonotype.com5&  ‡ŸImpact;€Wingdings"qˆšŠäh"‹|fęB†]b;¦&ߌ&¹ŪƒŌŒ&¹ŪƒŌ!š„Ą““€4dĀĀ3ƒQšßßHš’?ä’’’’’’’’’’’’’’’’’’’’’Ō>Ė’’]C:\Documents and Settings\detwilerb\Application Data\Microsoft\Templates\WordToolTemplate.dot Bill DetwilerwrightkdV                           ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U ž’ą…ŸņłOh«‘+'³Ł0|˜¤°ČŌō  , 8 D P\dltä ssBill DetwileroillWordToolTemplate.dot1wrightk38gMicrosoft Word 10.0@ś'@^¢B-æ@ō¹ōĆÄĆ@$ĒÖĆŒ&¹Ūž’ÕĶ՜.“—+,ł®DÕĶ՜.“—+,ł®8ō hpˆ˜  Ø°øĄ Č Öä TechRepublicoŌƒĀ{  Title<& PĢ%Ō%š%&(&0& _PID_HLINKS_AdHocReviewCycleID_EmailSubject _AuthorEmail_AuthorEmailDisplayName_PreviousAdHocReviewCycleID_ReviewingToolsShownOnceäAØ$hBš2http://techrepublic.com.com/5140-22-22-16341.htmlķ-http://techrepublic.com.com/5221-6230-0.htmlź-http://techrepublic.com.com/2001-6242-0.htmlē-http://techrepublic.com.com/2001-6240-0.html@Zäthttp://nl.com.com/acct_mgmt.jsp?brand=techrepublic&return_to=http://techrepublic.preview.com.com:8001/2001-1-0.html62į+http://techrepublic.com.com/2001-27-0.html52Ž+http://techrepublic.com.com/2001-24-0.html22Ū+http://techrepublic.com.com/2001-23-0.html72Ų+http://techrepublic.com.com/2001-26-0.html42Õ+http://techrepublic.com.com/2001-25-0.html70Ņ3http://techrepublic.com.com/5100-6346-1056343.html54Ļ3http://techrepublic.com.com/5100-6350-5032650.html84Ģ3http://techrepublic.com.com/5100-6270-1043861.html6?É3http://techrepublic.com.com/5100-6346-5034794.html17Ę3http://techrepublic.com.com/5100-6268-5034932.htmlm;Ć0http://techrepublic.com.com/5129-6240-1754.htmla?Ą0http://techrepublic.com.com/5129-6240-1790.htmll?½0http://techrepublic.com.com/5129-6240-1740.htmle4ŗ0http://techrepublic.com.com/5129-6288-1050.htmll4·0http://techrepublic.com.com/5129-6240-1448.htmlb`“<https://techrepublic-secure.com.com/5106-6242-26-21384.htmlib±<https://techrepublic-secure.com.com/5106-6242-26-21237.htmlcn®<https://techrepublic-secure.com.com/5106-6242-26-21198.htmlid«<https://techrepublic-secure.com.com/5106-6242-26-21330.html,!–$http://www.winguides.com/scripting/ 4“;http://www.winnetmag.com/Articles/Index.cfm?ArticleID=5410VJ-http://www.labmice.net/scripting/default.htm[&http://www.winscriptingsolutions.com/ŠVhttp://msdn.microsoft.com/library/default.asp?url=/nhp/Default.asp?contentid=28001169|3‡http://www.amazon.com/exec/obidos/tg/detail/-/1576108813/qid=1057676705/sr=1-2/ref=sr_1_2/103-3355448-7980660?v=glance&s=booksz<„http://www.amazon.com/exec/obidos/tg/detail/-/0764533096/qid=1057676705/sr=1-3/ref=sr_1_3/103-3355448-7980660?v=glance&s=booksy+thttp://www.amazon.com/exec/obidos/tg/detail/-/1931841268/qid=1057674046/sr=2-1/103-3355448-7980660?v=glance&s=books'*~http://www.amazon.com/c%{http://www.kixtart.org//r<http://www.microsoft.com/windows2000/techinfo/reskit/tools/oAhttp://www.microsoft.com/windows2000/techinfo/reskit/default.asp@lihttp://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/winntas/reskit/reskit.aspc%ihttp://www.kixtart.org/Q`^http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/jsFSOTutor.aspq?]chttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wsobjwshnetwork.asp[Zahttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wsobjwshshell.aspLWahttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/vtoriVBScript.aspT ListingA2N ListingBK ListingA1IHuhttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wsconwindowsscripthostobjectmodel.asp ?#http://www.microsoft.com/scripting58 _Toc6107566452 _Toc610756635, _Toc610756625& _Toc610756615  _Toc610756606 _Toc610756596 _Toc610756586 _Toc610756576 _Toc61075656~}Ohttp://techrepublic.com.com/5208-6230-0.html?forumID=8&threadID=144780&start=0a74http://techrepublic.com.com/5129-6288-10220637.html -http://techrepublic.com.com/2001-6240-0.html-http://techrepublic.com.com/2001-6240-0.htmlÕÅUpdated downloadownjody.gilbert@cnet.comce Jody GilbertcneĀ¼ńody  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ”¢£¤„¦§Ø©Ŗ«¬­®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģž’’’īļšńņóōõö÷ųłśūüżž’      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹Œž’’’‘’“”•–—˜™š›œžŸ ”¢£¤„¦§Ø©Ŗ«¬­®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóž’’’õö÷ųłśūž’’’żž’     ž’’’ż’’’ż’’’ż’’’ż’’’ż’’’ž’’’ž’’’ž’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’Root Entry’’’’’’’’ ĄF€#ĖÖĆ€Data ’’’’’’’’’’’’ķ?@1Table’’’’ŽŹWordDocument’’’’[ŲSummaryInformation(’’’’’’’’’’’’ōDocumentSummaryInformation8’’’’’’’’üt'CompObj’’’’’’’’’’’’j’’’’’’’’’’’’ž’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’’ž’ ’’’’ ĄFMicrosoft Word Document MSWordDocWord.Document.8ō9²q