ࡱ>    m k m b Ǽjbjb "Ѳ(888NNN82"fڥ((**Rw  " " " " " " ",#RL&9"8w9"I*R*N"IIIZ@*(8R "ILt "II0X87Υ T_NJ47 d"0"T'IT'H7I8NNECE 4110 Internetwork Programming Lab 6: Setting up Burdell Inc. Network Using Multiple Switches and Access Control Lists Group Number: ________ Member Names: _________________________ _________________________ Date Issued: October 13, 2008 Date Due: October 22, 2008 NOTICE: Because there are only three setups, each group will need to sign up for timeslots on the sheets attached to the lab door. You can only sign up for a total of 2 hours (4 slots) at a time, AND YOU MUST USE THE SAME SETUP FOR THE ENTIRE LAB. These can either be in a row or spread out, but no group can have more than 4 slots reserved at any one time. Once one of your slots has expired, you can sign up for another one. See Appendix C for instructions on how to save and reload your work if you need to leave and continue later. PLAYSTATION #: ________________ Lab Goals Set up a network using multiple routers and switches Learn about trunk ports and trunking Learn about access control lists and use them to control information flow PART I You have recently graduated from Georgia Tech and you are now working for a company called Burdell Inc as a network engineer. You are presented with the following scenario: Burdell Inc occupies a two floor office building and is made up of three departments, Administration, Accounting, and Information Technology (IT). The Administrative department is currently in need of 100 workstations and is forecasted to grow by an additional 100 machines in the foreseeable future. The Accounting department needs 1000 workstations and is not expected to grow beyond its present size. The IT department is constantly growing. IT presently needs 900 workstations and is expected to grow to twice that size. In an effort to promote company unity and spirit, the management at Burdell Inc has decided to have members of all three departments work on both floors, i.e. no one department is physically isolated. Both floors accommodate workers form Accounting, Administration, and IT. Each department has its own VLAN and all workers on each floor and between floors should be able to communicate with each other. Figure 1, below, shows the network topology.        This lab requires two switches, one router, and six end station PCs. However we will not use six end station PCs, we will instead emulate the six PCs using the ping capability of Cisco 1760 interfaces and use two more Cisco 1760s to emulate the PCs. This saves us from having to dedicate six PCs for this lab assignment. We will need one PC which we will use to test our setup. Thus the equipment required will be two switches, three routers, and one end station PC. We will use this equipment to emulate the network in Figure 1. Section I: Logging into the Routers/Switches All of the routers and switches are accessible from the console manager ports. See Table 1. Table 1. Console manager port assignments PartNameConsole Manger Port AssignmentPlaystation1Cisco 3550 Switchfloor1_switch5Cisco 3550 Switchfloor2_switch6Cisco 1760 Router floor1_router7Cisco 1760 Router floor1_computers8Cisco 1760 Router floor2_computers9Playstation2Cisco 3550 Switchfloor1_switch14Cisco 3550 Switchfloor2_switch15Cisco 1760 Router floor1_router16Cisco 1760 Router floor1_computers17Cisco 1760 Router floor2_computers18Playstation3Cisco 3550 Switchfloor1_switch23Cisco 3500 Switchfloor2_switch24Cisco 1760 Router floor1_router25Cisco 1760 Router floor1_computers26Cisco 1760 Router floor2_computers27 The enable password for all of these machines is owen. In order to connect to the console manager you need to set up your network card to access its network: # ifconfig eth0:0 192.168.254.<100+group #> So group 1 is 192.168.254.101, and so forth. You will need to do this every time you power off your machine. What this does is set up a virtual interface, so you have two IP addresses on one network card. This allows you access to two networks with only one interface card. To connect to the CM32: #ssh playstationX@192.168.254.2 If it comes up, Type yes to the RSA question. password: playstationX You will be using a series of scripts to help you set up the routers and save your work. These scripts are described in detail in Appendix C. These should still be installed from Lab 6. If not, go to Appendix C and install the scripts according to the directions. Once this is done, MAKE SURE NO ONE ELSE IS USING THE PLAYSTATION YOU WANT TO USE. This is very important, as you are about to reset the configuration and all of their work will be lost. Now that you are sure no one else is using the playstation, reset your chosen playstation by running the reset_pX script in the mnet_tools_v1.5 directory. Several windows should pop up. DO NOT CLOSE THEM UNTIL IT IS SAFE TO DO SO. If you are on playstation 1 or 2, you will get an error in one of the windows about VPN or Firewall processing not being enabled; ignore this for now. Once all of the other windows say it is safe to close them, do so. Now run the download_pX script to save the current configuration. From now on, youll run the download_pX script to save your work, and the upload_pX to restore the configuration of the playstation to the last saved state. Before running the upload script, MAKE SURE NO ONE ELSE IS USING THE PLAYSTATION. Log into each of the machines and change its name to match Table 1. From global configuration mode: Machine(config)#hostname To go back to the console manager screen, hit and then hit x. Section II: Switch Configuration Refer to Appendix A for a list of switch configuration commands and their descriptions. While in Privileged EXEC-Mode, you can view the running configuration by typing show running-config. This contains information about all the interfaces and vlans youve set up. Table 2 lists the different VLANs assigned to each department in our company. Table 2. Department VLANs VLANDEPARTMENT2Administration3Accounting4InformationTechnology Note: In Figure 1, the Administration VLAN is labeled as VLAN 1, Account as VLAN 2, etc. THIS IS INCORRECT. Use the VLAN numbers in Table 2 for the entirety of this lab. One switch is placed on each office floor. Three switch ports (on each switch) are configured, one for each VLAN as illustrated by Table 2. Use the switch interface numbers shown in Figure 1 and the vlan names and numbers from Table 2 (note that in Figure 1 the VLANs are listed 1-3, and in Table 2 2-4). To create VLANs inside the switch, follow these simple steps: SwitchA# vlan database SwitchA(vlan)# vlan name SwitchA(vlan)# exit Do this for each of the vlans in Table 2. Now configure the interfaces to access those vlans: SwitchA# configure terminal SwitchA(config)# interface fastethernet SwitchA(config-if)# switchport mode access SwitchA(config-if)# switchport access vlan In the next command, depends on the router interface connected to it. Because IT is setting up this entire network, they decide to give themselves the higher speed connections. Therefore, the FastEthernet ports on floor1_computers and floor2_computers will be assigned VLAN 4. Now, assign the correct operation speed to the interface: = 10 for Ethernet interfaces and 100 for FastEthernet. SwitchA(config-if)# speed SwitchA(config-if)# duplex full SwitchA(config-if)# no shutdown SwitchA(config-if)# end Use the above configuration procedure to configure each of the used switch interfaces for each switch. (Do this on the switch, not on the routers). Once you are done, it is a good idea to download your configuration so you do not lose it. Note: VLAN 1 (one) is used for the management VLAN, so any VLANs created should be numbered 2 to 1000. Section III: Trunking Switch Ports For VLAN information to be passed between the two switches, trunking must be configured between the switches. VLAN trunking allows a port to pass traffic from multiple VLANs between the two switches. Frames traveling over a trunk are tagged to identify which VLAN the frames belong to. When implementing trunking between switches, the ports at either end of the connection must be set up for trunk mode and the trunk encapsulation mode must match. Trunk encapsulation dictates the manner that frames are identified (tagged) on a trunk and defines the VLAN services available. There are four types of trunking encapsulations: 1) Inter-Switch Link Protocol (ISL) Cisco proprietary trunking protocol; 2) IEEE 802.1Q (dot1q) Industry standard trunking protocol; 3) LAN Emulation (LANE) Used for trunking VLANs over ATM links; and 4) IEEE 802.10 (dot10q) Cisco proprietary method for transporting VLAN information inside standard FDDI frames. To setup trunking between two switches, use the following commands: SwitchA(config)# interface fastethernet SwitchA(config-if)# no switchport mode dynamic desirable SwitchA(config-if)# switchport trunk encapsulation dot1q SwitchA(config-if)# switchport mode trunk SwitchA(config-if)# end Then, go to the other switch, and repeat these commands on the respective interface. This is important, otherwise the switches will not be able to communicate to each other. To limit which VLANs will be allowed to pass information on the port you can use the following commands: SwitchA(config)# interface fastethernet SwitchA(config-if)# switchport trunk allowed vlan remove 1-4094 SwitchA(config-if)# switchport trunk allowed vlan add 1-4 Then, you will have to repeat these commands on the other switch. The previous commands remove the default of all VLANs, and adds back support for VLANs 1-4. Note: On one of the switches one additional port has to be trunked. This additional trunk port is used to connect a router to the switch. The use of the router will be explained in the following section. Set-up the trunking in the switch on floor one for the router on floor one now (see Figure 1 for the port number). The switch port will be connected to the routers FastEthernet port (SPEED = 100). Section IV: Router Configuration Refer to Appendix B for a list of router configuration commands and their descriptions. Hosts on one VLAN cannot communicate with hosts on another VLAN since VLANs form separate broadcast domains. As a result, a router needs to be used to route packets from one VLAN to another VLAN. The router will be connected to the additional trunk port created on the switch above. The router port also needs to be trunked since the router port will be passing packets from multiple VLANs. Before configuring the router, the subnets, the assignable machine address ranges, and the required network prefixes for each department have to be determined. Lets use the following assignments in table 3. Notice the subnets are not all the same length. Table 3. Department subnets and subnet workstation capacity DepartmentCurrent Size (Workstations)Future Size (Workstations)SubnetSubnet Capacity (Workstations)Administration10020010.1.10.0/242(32-24) 2 = 28 2 = 254Accounting10001000192.168.148.0/222(32-22) 2 = 210 2 = 1022Information Technology9001800172.16.152.0/212(32-21) 2 = 211 2 = 2046 Log into the router and use the following commands to configure the Fastethernet0/0 port as the trunk port that will be connected to the additional trunk port on the switch. Router(config)# interface FastEthernet 0/0 Router(config-if)# no ip address Router(config-if)# no ip mroute-cache Router(config-if)# speed auto Router(config-if)# full-duplex Router(config-if)# no shutdown Router(config-if)# interface FastEthernet 0/0.1 Router(config-subif)# encapsulation dot1Q Router(config-subif)# ip address 10.1.10.1 255.255.255.0 Router(config-subif)# no shutdown Router(config-subif)# interface FastEthernet 0/0.2 Router(config-subif)# encapsulation dot1Q Router(config-subif)# ip address 192.168.148.1 255.255.252.0 Router(config-subif)# no shutdown Router(config-subif)# interface FastEthernet 0/0.3 Router(config-subif)# encapsulation dot1Q Router(config-subif)# ip address 172.16.152.1 255.255.248.0 Router(config-subif)# no shutdown Router(config-subif)# end You will have to replace with the corresponding vlan as shown in the network diagram. Section V: Testing Network Connectivity Table 3. Workstation configurations WorkstationOne example IP address on floor1One example IP address on floor2Subnet MaskDefault GatewayA (VLAN 2)10.1.10.210.1.10.3255.255.255.010.1.10.1B (VLAN 3)192.168.148.2192.168.148.3255.255.252.0192.168.148.1C (VLAN 4)172.16.152.2172.16.152.3255.255.248.0172.16.152.1 IF we were to use six PCs as workstations in this lab we would configure the six workstations using the above example IP addresses. We would have used the following commands on each of the six PCs to set their individual IP addresses (example for one machine): Prompt> ifconfig eth0 10.1.10.2 netmask 255.255.255.0 Prompt> route add default gw 10.1.10.1 However, we are not going to do it this way. Instead we are going to use another router with three interfaces to act as three machines (three different IP addresses) for the machines on floor two and again another router for three machines on floor1. For the computers on floor1 use: Router(config)# interface Ethernet 0/0 Router(config-if)# ip addresss 10.1.10.2 255.255.255.0 Router(config-if)# full-duplex Router(config-if)# no shutdown Router(config-if)# interface ethernet 1/0 Router(config-if)# ip address 192.168.148.2 255.255.252.0 Router(config-if)# full-duplex Router(config-if)# no shutdown Router(config-if)# interface Fastethernet 0/0 Router(config-if)# ip address 172.16.152.2 255.255.248.0 Router(config-if)# full-duplex Router(config-if)# speed auto Router(config-if)# no shutdown Router(config-if)# end You will need to use the same approach for the computers on floor2. Connect the wiring and fill in the diagram at the end of the lab to show your connections. Note that to connect a switch to a switch you need to use a crossover cable!!! You will need to get one from a TA and turn it in after completion of part II of the lab. After completing the wiring you should be able to ping from any interface on one network to another interface on ant other network. Part 1 Check-off point: show the lab TA your working network. See turn in sheet at the back of this handout. PART II You have recently graduated from Ga. Tech and you are now working for a company called Burdell Inc. as a network engineer. You have successfully setup the network described in Part I, but you have been given some additional network requirements that need to be implemented and they are as follows: Administration: The IT subnet should have unlimited access to the Administration subnet. The Accounting subnet should only be able to access the print-server (10.1.10.3) on the Administration subnet. Accounting: IT should not have any access to the Accounting sub-network. Only the print server (10.1.10.3) should be able to access the Accounting sub-network from the Administration sub-network. Information Technology: Users on the Administration should have unlimited access to the IT subnet. Users on the Accounting sub-network should have no access to the IT subnet. Users on each of the three subnets should have unlimited access to their own subnet. Users from any of the three subnets should be able to send icmp echo (ping) messages to and receive icmp echo-reply messages from subnets that they have access to.  Section I: Access Control Lists In order to meet the requirements stated above Access Control Lists (ACL) will be used to permit and deny access to sub-networks where necessary. This process is called IP filtering. The packet filtering capabilities of the Cisco IOS software performs packet filtering based on the following criteria: Source IP address Source and destination IP address IP protocol types, including TCP, UDP, and ICMP Source and destination TCP protocol services, such as send mail and Telnet Source and destination UDP protocol services, such as bootp and NetBIOS datagram ICMP protocol services, such as ICMP echo and ICMP port unreachable The network administrator has a lot of flexibility when creating IP access lists and determining what is filtered and how the filters are applied. Access list criteria is defined through the use of the access-list and ip access-list commands. Next, the filtering criteria is applied to the desired interface using the ip access-group command. The access lists filtering criteria are defined in a list of permit and deny statements. The list is evaluated in sequence, one line at a time, from top to bottom. The list is compared against the IP addresses and other information in the data packet until a match occurs. When a match occurs the list is exited. This process makes access lists extremely order-dependent. By using the access-list command numbered access lists can be created. In this lab we will create named access lists using the ip access-list command. Named and numbered access lists fall into one of two categories, standard or extended. A standard ip access list evaluates only the source IP address of a packet, while the extended access list can evaluate the source and destination IP address, the IP protocol type, and the source and destination transport layer ports. Note: Access lists employ a concept known as the wildcard or dont care mask. This wildcard mask is just the inverse of a network mask. A netmask of 255.255.252.0 generates a wildcard mask of 0.0.3.255, which means that the last 2 bits of octet 3 and all of octet 4 are dont care bits (can be either 1 or 0). Section II: Defining ADMIN ACL Administration: The IT subnet should have unlimited access to the Administration subnet. The Accounting subnet should only be able to access the print-server (10.1.10.3) on the Administration subnet. First, the access list that is going to be assigned to the router interface used to access the Administration subnet will be called ADMIN. The access lists applied to the other router interfaces will be called ACCT and IT respectively. Type the following commands while in the Global Configuration mode on the floor1_router. The following access list is an extended access list in which we will evaluate first the source IP address as well as (second on the same line) the destination IP address. Router(config)#ip access-list extended ADMIN Router(config-ext-nacl)# permit ip 172.16.152.0 0.0.7.255 10.1.10.0 0.0.0.255 Router(config-ext-nacl)#permit ip 192.168.148.0 0.0.3.255 host 10.1.10.3 Router(config-ext-nacl)# permit ip 10.1.10.0 0.0.0.255 10.1.10.0 0.0.0.255 Router(config-ext-nacl)# deny ip any any log Router(config-ext-nacl)# exit When this list is applied to the out going packets on the floor1_router interface going to the administration subnet, the above list permits access (to the Administration subnet) from all users on the 172.16.152.0/21 (IT) subnet. It also permits users on the Accounting subnet access to 10.1.10.3. The third rule gives users on the administration subnet access to their own subnet. Think about why the wildcard masks (the second and fourth sets of numbers on the 2nd, 3rd, and 4th lines) are what they are; youll need to compute your own for Part III. The last line of the list has an explicit deny. This means that any packet failing to match the filtering criteria of one of the lines of the access list is denied. All access lists have an implicit deny so that the last line does not have to be included but it is recommended that you include it. The keyword log causes all packets that fail to match the list to have the violation logged to the screen. Section III: Defining ACCT ACL Accounting: IT should not have any access to the Accounting sub-network. Only the print server (10.1.10.3) should be able to access the Accounting sub-network from the Administration sub-network. The following access list is an extended list in which we will evaluate first the source IP address as well as (second on the same line) the destination IP address. Type the following commands to create a list named ACCT: Router(config)# ip access-list extended ACCT Router(config-ext-nacl)# deny ip 172.16.152.0 0.0.7.255 192.168.148.0 0.0.3.255 Router(config-ext-nacl)# permit ip host 10.1.10.3 192.168.148.0 0.0.3.255 Router(config-ext-nacl)# permit ip 192.168.148.0 0.0.3.255 192.168.148.0 0.0.3.255 Router(config-ext-nacl)# deny ip any any log Router(config-ext-nacl)# exit When this list is applied to the out going packets on the floor1_router interface going to the accounting subnet, the above list denies access from the IT subnetwork to the accounting subnetwork. It also allows access from the print-server (10.1.10.3) and the accounting subnets to the accounting subnet. Section IV: Defining IT ACL Information Technology: Users on the Administration should have unlimited access to the IT subnet. Users on the Accounting sub-network should have no access to the IT subnet. The following list is a standard access list. Type the following commands to create the standard access list called IT: Router(config)# ip access-list standard IT Router(config-std-nacl)# permit 10.1.10.0 0.0.0.255 Router(config-std-nacl)# deny 192.168.148.0 0.0.3.255 Router(config-std-nacl)# permit 172.16.152.0 0.0.7.255 Router(config-std-nacl)# deny any log Router(config-std-nacl)# exit The above list when applied to the out going packets on the router interface connected to the IT subnetwork will allow access from administration to the subnet, and deny all access from the accounting subnet. It also allows any IT hosts access to the IT subnet. Because of the nature of the permissions, it is enough to filter on the source address of the packets; therefore, we use a standard access control list. Section IV: Applying the ACLs Now that the ACLs have been defined, they must be applied to one or more interfaces so that packets can be filtered. The access list is applied in either and inbound or an outbound direction on the interface. Packets traveling in the inbound direction come into the router form the interface. When they travel in the outbound direction, the packets leave the router and then go onto the interface. The command ip access-group is used to apply the access list to the interface. The command takes the keyword in or out as a parameter. If no parameter is provided, the out keyword is presumed. The following commands are used to apply the access list to the router interfaces used to access each respective subnet. Router(config)#interface fastethernet0/0.1 Router(config-if)#ip access-group ADMIN out Router(config-if)#interface fastethernet0/0.2 Router(config-if)#ip access-group ACCT out Router(config-if)#interface fastethernet0/0.3 Router(config-if)#ip access-group IT out Router(config-if)#end Use the show running-configuration command to view the router configuration that contains the ACL definitions. Before attempting to ping, go to the back of this lab and fill in the Access Control List Summary Table using what you know about the rules implemented in the summary lists. Now ping each workstation from another and ensure that inter-switch and intra-switch communication are permitted or denied according to the specifications outlined and implemented using the access lists. Confirm that your table is correct. Do this by unplugging one interface of floor1_computers from the floor1_switch and plugging in one PC. Before you go unplugging cables, however, theres one more detail to take care of. Assume that you unplug interface Ethernet 0/0 (10.1.10.2) from floor1_computers and set R3 to be 10.1.10.2. Now imagine a ping packet traveling from R3 to FastEthernet 0/0 on floor1_computers (172.16.152.2). The packet leaves R3, goes to the default gateway (10.1.10.1) enters floor1_router, gets sent out the proper subinterface (172.16.152.1) and arrives at 172.16.152.2. Now, for the return trip, floor1_computers consults its routing table, sees that it is directly connected to 10.1.10.0/24 through 10.1.10.2, and sends the packet out that interface. But we just unplugged that cable, so the packet vanishes into the ether and never gets back to R3. To avoid this, we need to define a default gateway for floor1_computers: floor1_computers(config)# ip route 0.0.0.0 0.0.0.0 172.16.152.1 The PC you will be using is R3, located on the left-most rack by the door. To the right of it you will see a monitor with a pull-out keyboard. This is the terminal you will use to access R3. Above the monitor is a KVM, which is used to share one monitor, keyboard, and mouse among many PCs. Push the button labeled R3 to access the PC. If there is no console window, click on the K on the start bar, then KNOPPIX > Root Shell. This opens up a shell with root as the user, which is the permission level we need to change the network configuration. Type ifconfig at the prompt; if eth0 does not show up in the listing, type ifconfig eth0 up to activate it. The network cable from R3 has been run to port 32 of the patch panel at the top of the right-most rack. Coming out of the port labeled 32 should be a long Ethernet cable; this cable is connected to R3s network card, and is what you will plug into the switch in place of the Ethernet 0/0 interface of floor1_computers. [Prompt]# ifconfig eth0 10.1.10.2 netmask 255.255.255.0 [Prompt]# route add default gw 10.1.10.1 [Prompt]# route nv Will show your PCs routing table. With a dashed line, draw the PC connected into the network on the wiring diagram when it is assuming the identity of 10.1.10.2. Show this connection in the wiring diagram. Save your configuration and demonstrate to the TA your PC acting as 10.1.10.2 with working ACLs. Part 2 Check-off point: show the lab TA a PC acting as 10.1.10.2 with working ACLs. See turn in sheet at the back of this handout. PART III Assume that you are now to add a fourth subnetwork to the company network: the Marketing subnetwork. Details are as follows: The marketing department will be assigned addresses on the 48.15.224.0 network. There need to be enough addresses on the subnetwork to account for 2500 machines. Accounting should have full access to all machines on the network. IT and Administration should not be able to access any machines on this network. Marketing should be able to access its own subnet. Using this information and the preceding lab, fill out the calculation sheet at the back of the turn-in packet and turn it in with your lab. You dont have to actually implement this addition. Appendix A: Basic Cisco Switch Commands About this document The purpose of this document is to give you a quick overview of how the switch user interface works, so you can have a quick start for lab setups and troubleshooting. Also, a VLAN tutorial is included in this document. Similarities between routers and switches Switches share many commands with routers; in other words, you can use many of the router commands to interact with switches and the results will be the same. For examples, Switch# show running-config will have the same effect on both devices. Therefore, make sure that you read Basic Cisco Router Commands.doc before you continue reading this document. VLANS in the MiniNet Network Vlan configuration is typically easy; however, there are a few things that you need to know to be successful. Cisco defines a VLAN as a broadcast domain within a switched network. VLANs allow you to segment your switched network so that broadcast domains are smaller, leaving more bandwidth for your end nodes. Devices that are in one VLAN do not received broadcasts from devices in another VLAN. For devices on different VLANs to communicate, a layer 3 devices (usually a router) must be used. How to create vlans follow these simple steps: SwitchA# vlan database SwitchA(vlan)# vlan name SwitchA(vlan)# exit SwitchA# configure terminal SwitchA(config)# interface fastethernet SwitchA(config-if)# switchport mode access SwitchA(config-if)# switchport access vlan 2 SwitchA(config-if)# end Note: VLAN 1 (one) is used for the management VLAN, so any VLANs created should be numbered 2 to 1000. For VLAN information to be passed between switches, trunking must be configured between switches. VLAN trunking allows a port to pass traffic from multiple VLANs between the two switches. Frames traveling over a trunk are tagged to identify which VLAN the frames belong to. When implementing trunking between switches, the ports at either end of the connection must be set up for trunk mode and the trunk encapsulation mode must match. Trunk encapsulation dictates the manner that frames are identified (tagged) on a trunk and defines the VLAN services available. There are four types of trunking encapsulations: 1) Inter-Switch Link Protocol (ISL) Cisco proprietary trunking protocol; 2) IEEE 802.1Q (dot1q) Industry standard trunking protocol; 3) LAN Emulation (LANE) Used for trunking VLANs over ATM links; and 4) IEEE 802.10 (dot10q) Cisco proprietary method for transporting VLAN information inside standard FDDI frames. To setup trunking between two switches, use the following commands: SwitchA(config)# interface fastethernet SwitchA(config-if)# switchport mode trunk SwitchA(config-if)# switchport trunk encapsulation dot1q SwitchA(config-if)# end Then, go to the other switch, and repeat these commands on the respective interface. This is important, otherwise, both switches will not be able to communicate to each other. To limit which VLANs will be allowed to pass information on the port you can use the following commands: SwitchA(config)# interface fastethernet SwitchA(config-if)# switchport trunk allowed vlan remove 1-1005 SwitchA(config-if)# switchport trunk allowed vlan add 1-3 Then, you will have to repeat these commands on the other switch. The previous commands remove the default of all VLANs, and adds back support for VLANs 1-3. Finally, to avoid having to reconfigure your VLANs in case the switches are rebooted, type the following: RouterA# copy running-config startup-config Appendix B: Basic Cisco Router Commands References on the www and hardcopy  HYPERLINK "http://www.cisco.com/univercd/cc/td/doc/product/software/ios120/12cgcr/rbkixol.htm" http://www.cisco.com/univercd/cc/td/doc/product/software/ios120/12cgcr/rbkixol.htm Cisco Router Configuration, 2nd Edition, A practical Introduction to Cisco IOS Software configuration. About this document The purpose of this document is to give you a quick overview of how the router interface works, so you can have a quick start for lab setups and troubleshooting. Configuring a Router from Scratch If the router is turned on for the first time or if the router has a missing startup-config file, then, you will see a message that says: Would you like to enter the initial configuration dialog? [yes/no]: At this message just type no and press the key. You will see the router prompt as Router>. This means that the default running configuration was loaded; in other words, the router is not configured. To configure it, you will have to type enable followed by pressing the key. It will not ask you for a password since it has not been set up since starting from scratch. Now you will see the router prompt as Router#. Editing Commands The following command or key-strokes are used to move around the command line inside the router. CommandDescription+AMoves to the beginning of the command line+BMoves back one word+B or Left Arrow keyMoves back one character+EMoves to the end of the command line+F or Right Arrow keyMoves forward one character+FMoves forward one word+kDeletes all characters from the cursor until the end of the line+p or Up Arrow keyRecalls last (previous) command+n or Down Arrow keyRecalls most recent command>show history or #show historyShows command bufferCommand completion completes a partial command name?Displays all available commands or command parameters Three command modes used in routers are EXEC-Mode, Privileged EXEC-Mode, and Global Configuration Mode. There other command modes, but these are the main ones. EXEC-Mode Commands Provides a limited subset of commands. The first time you connect to a router, this is the mode that you will be in. The command prompt has the form Router> To get a list of commands type ?. If you see --More--, that means that the screen can be advanced by pressing either key, scrolls one line up, or , scrolls one page up. Privileged EXEC-Mode Commands Provides access to all commands in the router. To enter Privileged EXEC-Mode from EXEC-Mode, type enable. If a password has been setup for Privileged EXEC-Mode, you will be asked for it. It is assumed that the router has been reset to its default settings, and that it does not have any passwords setup. Some of the commands that you will need to use are shown in the following table. CommandDescriptionconfigure terminalEnters Global Configuration Mode.copy Copies configuration or image datacopy running-config startup-configStores the current configuration in RAM into NVRAMcopy running-config Copies the current configuration in RAM into located in flash: devicedir [device]List the files on a given device, use dir ? for a list of possible parameters for devicedisableTurns off privileged commands enable passwordSets a local password to control access to various privileged levelsenable secretSpecifies an additional layer or security over the enable password commanderase startup-configErases the content of NVRAMeraseErases Flash or configuration memoryexitExits any configuration mode, or closes an active terminal session and terminates the EXECreloadHalts and performs a cold return; reloads the operating system. It will also reload the startup-config file if available.pingSends an echo request; diagnoses basic network connectivityshow [options]This is a very important command since you can display a great variety of router information. Type show ? to display all your possible options. show running-configDisplays the current configuration in RAMshow interfacesDisplays statistics for all interfaces configured on the routershow ip interfaceDisplays the status and global parameters associated with an interfaceshow ip protocolsDisplays the parameters and current state of the active routing protocol processshow startup-configDisplays the saved configuration, which is the contents of NVRAMmoreDisplays the contents of a filesetupEnters the setup command facility?Displays all available commands or command parameters Global Configuration Mode This mode allows you to make changes to the running configuration. You will need to know more about this mode that anything else. From here you can configure routing protocols, interfaces, sub-interfaces, and more. To enter Global Configuration Mode, you will need to be in Privileged ECEX-Mode. Then, type configure terminal . From this mode, you can have access to two sub-modes: the Interface Configuration mode and the Sub-interface Configuration mode. To enter either of these modes, you will need to type the interface command followed by a interface or a subinterface. Notice that some routers have three physical interface, but other routers have only one physical interface. In the case of routers with only one interface, subinterfaces are created on top of the physical interface(more details on this are given later on). In addition, interfaces are named as either EthernetX/Y or FastEthernetX/Y where X will normally take numbers between 0-1, and Y will normally take values like 0,1,2,3,0.1,0.2, or 0.3 (the values for X and Y given here apply to our lab setup only; they could be different in other network setups). Also, routers have a mixture of Ethernet and FastEthernet interfaces whereas switches (in our lab network) have FastEthernet interfaces. Take a look at the ece4110-2004-02-Fall-labs-7-and-8-LabSetup.xls file to get familiar with the router interface names. The following table shows some commands and subcommands that you can use in Global Configuration mode. CommandDescriptioninterfaceConfigures an interface type and enters configuration mode.ip addressAssigns and address and a subnet mask and starts IP processing on an interfaceip default-networkEstablishes a default routeip hostMakes a static name-to-address entry in the routers configuration fileip routeEstablishes static routeslineIdentifies a specific line for configuration and starts the line configuration command collection mode.loginLogs in as a particular user. Enables password checking at loginnetworkAssigns a Network Information Center-based address to which the router is directly connected.no shutdownRestarts a disabled interfacerouterStarts a routing process by first defining an IP routing protocol. For example, router rip selects RIP as the routing protocolencapsulationSet encapsulation type for an interface This is used to attach a sub-interface to a specific vlan.full-duplexConfigure full-duplex operational modehalf-duplexConfigure half-duplex and related commands?Displays all available commands or command parameters Configuration Examples To configure router with interfaces Ethernet0, Ethernet1, and FastEthernet0 to route packes between subnetworks 10.1.1.0, 10.1.2.0, and 10.1.3.0, you will have to use the following command sequences from Global Configuration mode. Router(config)# interface Ethernet0 Router(config-if)#ip address 10.1.1.1 255.255.255.0 Router(config-if)full-duplex Router(config-if) no shutdown # It is optional to type exit after you have configured one interface and before # configuring the next one Router(config-if)interface Ethernet1 Router(config-if)ip address 10.1.2.1 255.255.255.0 Router(config-if)full-duplex Router(config-if) no shutdown Router(config-if)interface FastEthernet0 Router(config-if)ip address 10.1.3.1 255.255.255.0 Router(config-if)speed auto Router(config-if)full-duplex Router(config-if) no shutdown Router(config-if) end To configure a router with interfaces Ethernet0/0, Ethernet1/0, and FastEthernet0/0 to route packes between subnetworks 10.1.1.0, 10.1.2.0, and 10.1.3.0, you will have to replace the respective interface names on the command lines shown above. To configure a router with interface with only one physical interface FastEthernet0/0 to route packets between subnetworks 10.1.1.0, 10.1.2.0, and 10.1.3.0, you will have to use the following command sequences from Global Configuration mode. Router(config)interface FastEthernet0/0 Router(config-if)no ip address Router(config-if)no ip mroute-cache Router(config-if)speed auto Router(config-if)full-duplex Router(config-if) no shutdown Router(config-if)interface FastEthernet0/0.1 Router(config-if)encapsulation dot1Q Router(config-if)ip address 10.1.1.1 255.255.255.0 Router(config-if) no shutdown Router(config-if)interface FastEthernet0/0.2 Router(config-if)encapsulation dot1Q Router(config-if)ip address 10.1.2.1 255.255.255.0 Router(config-if) no shutdown Router(config-if)interface FastEthernet0/0.3 Router(config-if)encapsulation dot1Q Router(config-if)ip address 10.1.3.1 255.255.255.0 Router(config-if) no shutdown Router(config-if) end # you will have to replace with the corresponding VLAN Appendix C: Saving and restoring your configurations The scripts for uploading and downloading configurations are located on the NAS in the Lab6 directory. They are in a tarball named mnet_tools_v1.5.tar. Copy this file to your /root directory, and unpack it using: # tar xf mnet_tools_v1.5.tar # cd mnet_tools_v1.5 Before these scripts will work, the following two perl modules must be installed: IO-Tty-1.02.tar.gz Expect-1.15.tar.gz Here's how to install the modules: First install IO-Tty-1.02.tar.gz # tar -zxvf IO-Tty-1.02.tar.gz # cd IO-Tty-1.02 # perl Makefile.PL # make # make install Then install Expect-1.15.tar.gz # tar -zxvf Expect-1.15.tar.gz # cd Expect-1.15 # perl Makefile.PL # make # make install Now you can run minictrl.pl to make sure it is working correctly. The program should output it's usage and exit. # ./minictrl.pl Now, some notes on the actual scripts: Extension "p1", "p2", and "p3" on scripts below refer to playstation #1, playstation #2, and playstation #3 respectively. Each group of files is described below. Download and upload of configurations is based on a perl Expect module. The nature of this module is complex and finicky. Therefore, sometimes it is necessary to run an upload or download script multiple times in order to successfully upload or download. Currently, three tries are given for each upload and download. Therefore, you may see errors in the download or upload process. However, at the end of the script, you should see a successful message printed indicating that one of the three tries was successful. download_reset_p1 download_reset_p2 download_reset_p3 These scripts are used to download reset configuations. The network devices should be configured to their reset configuation before running these scripts. Then, these scripts can be executed to store a "reset" configuration. YOU NEVER NEED TO RUN THIS SCRIPT. The reset configurations are included in the tarball: reset1, reset2, and reset3. reset_p1 reset_p2 reset_p3 These scripts return the playstations to a "reset" configuration, which must be downloaded using the download_reset scripts above first. download_p1 download_p2 download_p3 These scripts are used to download all network device configurations for the devices in the give playstation. The configurations are stored in files in a subfolder called playstation1, playstation2, and playstation3 respectively. Download time can vary from 30-60 seconds upload_p1 upload_p2 upload_p3 These scripts are used to restore device configurations. They can only be executed after succesfully downloading configurations using the download scripts. Upload time can vary from 3-5 minutes because the network devices must be reloaded, which takes several minutes. CM_Library.pm Library used by minictrl to download, upload, and connect to digi. minictrl.pl Tool that does the downloading and uploading of configurations. single_cmd Internal wrapper tool. ECE 4110 Internetwork Programming Turn in sheet Lab 7: Setting up Burdell Inc. Network Using Multiple Switches and Access Control Lists Group Number: ________ Member Names: _________________________ _________________________ Date: _____________________ Part 1 Check-off point: show the lab TA your working network. TA Signature _______________________ DATE ______________________ Part 2 Check-off point: show the lab TA a PC acting as 192.168.148.2 with working ACLs. TA Signature _______________________ DATE ______________________ Turn-in List 1. The turn in sheet from the back of the lab 2. Physical Cabling Diagram 3. Access Control List Summary Table 4. Marketing Network Setup Sheet Group Number____________________ Names:______________________________ Date:_________________________ Playstation #:____________________  SHAPE \* MERGEFORMAT  Group Number____________________ Names:______________________________ Date:_________________________ Access Control List Summary Table: From: To: Allowed (YES or NO)? 10.1.10.2 10.1.10.3 10.1.10.2 192.168.148.3 10.1.10.2 172.16.152.3 192.168.148.2 10.1.10.3 192.168.148.2 10.1.10.2 192.168.148.2 192.168.148.3 192.168.148.2 172.16.152.3 172.16.152.2 10.1.10.3 172.16.152.2 192.168.148.3 172.16.152.2 172.16.152.3 Group Number____________________ Names:______________________________ Date:_________________________ Part III: Marketing Network Setup Need: 2500 machines Network address: 48.15.224.0 / ____ Netmask: ____.____.____.____ Wildcard Mask: ____.____.____.____ Calculations: ACL Setup: Fill in the commands you would use to set up the MKTING access control list Router(config)#ip access-list standard MKTING Router(config-std-nacl)# Router(config-std-nacl)# Router(config-std-nacl)# Router(config-std-nacl)# Router(config-std-nacl)# deny any log     PAGE 10 PAGE 1 0/1 0/2 0/3 0/5 0/4 0/4 0/3 0/2 0/1  EMBED Visio.Drawing.6  Figure 1. Burdell Incs network topology diagram  EMBED Visio.Drawing.6  Figure 1. Burdell Incs network topology diagram ACL Ethernet 0/0 Ethernet 1/0 PC (for Part II of Lab) Floor2_computers Digi #___ Floor1_computers Digi #___ Floor1_router Digi #___ Floor2_switch Digi #___ Floor1_switch Digi #___ Fast Ethernet 0/0 Ethernet 1/0 Ethernet 0/0  Fast Ethernet 0/0 Ethernet 0/1 Ethernet 0/0  Ethernet 0/0 Fast Ethernet 0/0 Ethernet 1/0 Ethernet 0/0 Fast Ethernet 0/0 Ethernet 0/1 Ethernet 0/0 Fast Ethernet 0/0 Ethernet 1/0 Ethernet 0/0  Fast Ethernet 0/0 Ethernet 0/1 Ethernet 0/0  Fast Ethernet 0/0 Ethernet 1/0 Ethernet 0/0 Fast Ethernet 0/0 Ethernet 0/1 Ethernet 0/0 Fast Ethernet 0/0  Fast Ethernet 0/0 Ethernet 0/1 Ethernet 0/0  &'4yzT U V a     7 bTU]ԆzhcKhU5CJaJh`hUCJaJh+hUCJaJhUjhUUmHnHuhyhUCJaJhUCJaJh thUCJaJhUCJaJ hU>*CJhhUCJ hU5CJ hUCJ hUCJh[hUCJ,"z{4 5 U V ` a     $@&a$gdU`gdU & FgdUgdUgdU$a$gdUgdUgdUѸƼ  gdU $@&a$gdUTU $IfgdUh^hgdUgdUgdU] !4FGH[mno|}%89:GHZjtu~7;<Bȿشh3byhUCJaJhU6CJaJh>phU6CJaJhUhUCJaJhU5CJaJhcKhU5CJaJhcKhUCJaJEqh $IfgdUkd$$IflF t"   t0t"6    4 l4al $$Ifa$gdU $IfgdUgkdl$$Iflt"t" t0t"64 l4alqhh\ $$Ifa$gdU $IfgdUkd$$IflF t"   t0t"6    4 l4al qhh\ $$Ifa$gdU $IfgdUkd&$$IflF t"   t0t"6    4 l4al !4EGqhh\ $$Ifa$gdU $IfgdUkd$$IflF t"   t0t"6    4 l4alGH[lnqhh\ $$Ifa$gdU $IfgdUkd$$IflF t"   t0t"6    4 l4alno|qh $IfgdUkdj$$IflF t"   t0t"6    4 l4al|} $$Ifa$gdU $IfgdUgkd$$Iflt"t" t0t"64 l4alqhh\ $$Ifa$gdU $IfgdUkd$$$IflF t"   t0t"6    4 l4alqhh\ $$Ifa$gdU $IfgdUkd$$IflF t"   t0t"6    4 l4alqhh\ $$Ifa$gdU $IfgdUkd$$IflF t"   t0t"6    4 l4al%69qhh\ $$Ifa$gdU $IfgdUkdh$$IflF t"   t0t"6    4 l4al9:Gqh $IfgdUkd$$IflF t"   t0t"6    4 l4alGHZhk $$Ifa$gdU $IfgdUgkd@$$Iflt"t" t0t"64 l4alkl~qhh\ $$Ifa$gdU $IfgdUkd$$IflF t"   t0t"6    4 l4alqhh\ $$Ifa$gdU $IfgdUkd$$IflF t"   t0t"6    4 l4alqhh\ $$Ifa$gdU $IfgdUkdf$$IflF t"   t0t"6    4 l4alqhh\ $$Ifa$gdU $IfgdUkd$$IflF t"   t0t"6    4 l4al=>!qhccccc[cc$a$gdUgdUh^hgdUkd>$$IflF t"   t0t"6    4 l4al !Ofg12Wc,swslchU5CJaJ hU>*CJhUh&yhUCJaJh&yhU6CJaJhthU56>*CJaJh?hU56>*CJaJhU56>*CJaJhU5>*CJaJhDLhU5CJaJh/_hUCJaJhU6CJaJhcKhUCJaJhUCJaJhU>*CJaJ#!Ofg12+,tu)*z{ $$Ifa$gdUgdU$a$gdU$a$gdUgdUst{,$ P k l !!!!""""""H#]#﷫uiih}hU6CJaJhh7hUCJaJh?ohUCJaJhU6CJaJhL{hU6CJaJhL{hUCJaJhp]hU5CJaJhU5CJaJhrhUCJaJhrhU5CJaJhq`hU6CJaJh9hU6CJaJhUCJaJh*hU5){{ $$Ifa$gdUxkd$$Ifl0,"LL t064 l4a{{ $$Ifa$gdUxkd$$Ifl0,"LL t064 l4a{{ $$Ifa$gdUxkdB$$Ifl0,"LL t064 l4a X l m 3!$a$gdUxkd$$Ifl0,"LL t064 l4a3!f!!!s#####$$,%-%P%Q%((@)))*7*O*P***h++gdUgdU$a$gdU]#j#r#s###########$9$;$g$i$$$$+%,%-%P%Q%@)O***h+++5,W,y,,,,,,-..ⷬ⧠•╉}rrh9hUCJaJhC4hU5CJaJhC4hU6CJaJhC4hUCJaJ hU>*CJ hU>*h?ohUCJaJhChUCJaJhU5CJaJhyhU5CJaJhL{hUCJaJhUCJaJhL{hU6CJaJhU6CJaJ,++5,6,,,j.k.....m0n0m1n1111112 $$Ifa$gdUgdUgdU$a$gdU.i.j.k......n1v112426282?2G2H2w2y2{222222222233E334565A5D5x5y5,6/6c6d677p7q77778h9hU6CJaJhhhU56CJaJhU6CJaJhhhU6CJaJh9hUCJH*aJh9hU5CJaJh*hU5hU5CJaJ hU>*CJhUh9hUCJaJhUCJaJ322"2&2*272S2G;;;;; $$Ifa$gdUkd$$IfTlrr\ Fc$o t0$64 l4aTS2T2_2d2i2z22G;;;;; $$Ifa$gdUkdq $$IfTlrr\ Fc$o t0$64 l4aT2222222G;;;;; $$Ifa$gdUkd $$IfTlrr\ Fc$o t0$64 l4aT2223333"4G??????$a$gdUkd $$IfTlrr\ Fc$o t0$64 l4aT"4H4o4445O5y555:6d666$7N7p7q77778$808Q8r8~8 $IfgdUgdUgdU$a$gdU88#8O8P8\8q88M9O9S::;;;;==`>>>>>>>?P?a?w???1@8@J@Y@m@n@@@@˷vnhUCJaJh)[hU5\aJhU5\aJ *hU5\aJ *hNhU5\aJ *hNhU5aJ *hU5aJh]>hUCJaJhU6CJaJhUCJaJhvfhU6CJaJhU5CJaJhvfhUCJaJhvfhU5CJaJ'~88888888Bkd6 $$Iflr"d,"T4 t064 l4a $IfgdU888888 9KBBBBB $IfgdUkd $$Iflr"d,"T4 t064 l4a 9 99#909>9K9KBBBBB $IfgdUkdx $$Iflr"d,"T4 t064 l4aK9L9M9S::::;KF>>>>>$a$gdUgdUkd $$Iflr"d,"T4 t064 l4a;;;;<E<l<<<=/=V====>A>`>a>>>0@1@o@@@@ $@&a$gdUgdU$a$gdU@@@ A AAA1B*CJaJh2whhU6CJaJh@"<hU6CJaJhU6CJaJh[4xhU6CJaJhUCJaJhU5CJ aJ hU5\hM3hU5CJaJhM3hUCJaJ\@\D\E\J\Y\Z\[\b\c\q\r\\\]O]`]a]b]1^P^__``a7b@bZbb߿߶ףߗhg|ShU6CJaJ hU5\h2whhU6CJaJhU6CJaJh[4xhU6CJaJhM3hU5CJaJhUCJaJhM3hUCJaJhM3hU>*CJaJhU5CJaJ62^P^Q^aaEaqaaaa!b7b8bbbVcWcddgg)h*hiijjlgdU$a$gdU$a$gdUbbbbcUcVcWc\c+d0dldmdndgg(h*h[jcjjjjjkkkl%lDlMlnlylllm%mSmmmmm÷Ò}p *hNhU5\aJ *hNhU5aJ *hU5aJh9hU6CJaJh>NhUCJaJh>NhU56CJaJhhUCJaJhU5CJaJh2hU5CJaJhE(hU5CJaJhUCJaJh thUCJaJhUCJaJhU5\aJ *hNhU5\aJ *hU5\aJ.pppqq.q r r5rsssuuuuv=vQvuvvv w8w9www@{$a$gdUgdU$a$gdUvsssu9w{S|p}=~K~./0ǁvi]Oh*hU5>*CJaJh*hUCJH*aJh*hU0JCJaJ#j h*hUCJUaJh*hUCJaJjh*hUCJUaJh*hU5CJaJ hU5CJ h*hUCJaJh*hU5CJaJhU5CJaJhUCJaJhFhU6CJaJhFhU5CJaJhFhUCJaJ@{{{{;|S|T|}}p}}}=~>~~~~~KgdU$a$gdU$a$gdUƁǁQ͂MNO`„ʄք $$Ifa$gdU$a$gdU$a$gdUgdUǁQǂAJN`„ׄԈ܈#AH_ }~ۑܑ*F 9ڗ֚ۗ5Нѝ˟̟ա$+,=PWXit{|آhU5CJaJh*hU5CJaJh*hU6CJaJh*hUCJaJTքׄ xx $$Ifa$gdUzkd{$$Ifl0,"(p t064 l4a (xx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4a()5D]xxx $$Ifa$gdUzkd9$$Ifl0,"(p t064 l4a]^gxx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4aŅxxx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4aŅƅ΅xx $$Ifa$gdUzkdV$$Ifl0,"(p t064 l4a0xx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4a01>Kkxxx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4aklxxxx $$Ifa$gdUzkds$$Ifl0,"(p t064 l4aÆ؆xxx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4a؆ن߆xx $$Ifa$gdUzkd1$$Ifl0,"(p t064 l4aNxx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4aNOP_`a ||||||||||||$a$gdUzkd$$Ifl0,"(p t064 l4a 1Sxll $$Ifa$gdUzkdN$$Ifl0,"| t064 l4a $$Ifa$gdUSTZ}xx $$Ifa$gdUzkd$$Ifl0,"| t064 l4a}~ԋxx $$Ifa$gdUzkd $$Ifl0,"| t064 l4aԋՋIxx $$Ifa$gdUzkdk$$Ifl0,"| t064 l4aIJWxx $$Ifa$gdUzkd$$Ifl0,"| t064 l4a،xx $$Ifa$gdUzkd)$$Ifl0,"| t064 l4a،ٌ.xx $$Ifa$gdUzkd$$Ifl0,"| t064 l4a./=xx $$Ifa$gdUzkd$$Ifl0,"| t064 l4axx $$Ifa$gdUzkdF$$Ifl0,"| t064 l4axx $$Ifa$gdUzkd$$Ifl0,"| t064 l4aGxx $$Ifa$gdUzkd$$Ifl0,"| t064 l4aGHOɎxx $$Ifa$gdUzkdc$$Ifl0,"| t064 l4aɎʎώ xx $$Ifa$gdUzkd$$Ifl0,"| t064 l4a xx $$Ifa$gdUzkd!$$Ifl0,"| t064 l4aÏxx $$Ifa$gdUzkd$$Ifl0,"| t064 l4a>xx $$Ifa$gdUzkd$$Ifl0,"| t064 l4a>?Qxx $$Ifa$gdUzkd>$$Ifl0,"| t064 l4axx $$Ifa$gdUzkd$$Ifl0,"| t064 l4aRxx $$Ifa$gdUzkd$$Ifl0,"| t064 l4aRSXxxx $$Ifa$gdUzkd[$$Ifl0,"| t064 l4axyxx $$Ifa$gdUzkd$$Ifl0,"| t064 l4aڑxx $$Ifa$gdUzkd$$Ifl0,"| t064 l4aڑۑܑHApؗۗ|||||||pp $$Ifa$gdU$a$gdUzkdx$$Ifl0,"| t064 l4a 6xx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4a67Bxx $$Ifa$gdUzkd6$$Ifl0,"(p t064 l4axx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4a˜ʘxx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4a6xx $$Ifa$gdUzkdS$$Ifl0,"(p t064 l4a67<xx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4axx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4aSxx $$Ifa$gdUzkdp$$Ifl0,"(p t064 l4aST`~xx $$Ifa$gdUzkd$$Ifl0,"(p t064 l4a~xx $$Ifa$gdUzkd. $$Ifl0,"(p t064 l4awxx $$Ifa$gdUzkd $$Ifl0,"(p t064 l4awxxx $$Ifa$gdUzkd $$Ifl0,"(p t064 l4axx $$Ifa$gdUzkdK!$$Ifl0,"(p t064 l4axx $$Ifa$gdUzkd!$$Ifl0,"(p t064 l4a5Jѝ#>k˞|||||||||||||$a$gdUzkd "$$Ifl0,"(p t064 l4a˞"]̟ԡա,X|Ǣ7rͣ Djۤ$a$gdU /67Hjqrţ̣ͣޣ <CDij{Ӥڤۤ;<ZܥݥaopțͦѦҦ#|&,-ʩ¶¶¶¶¶¶¥hUCJaJhU6CJaJhv6FhU6CJaJhv6FhUCJaJhFhU5CJaJhUh*hU5CJaJh*hU6CJaJh*hUCJaJAۤ<Z[ܥݥҦ:;Pcdȧ٧gdU$a$gdU$a$gdU#BSfm|}'ʩ˩ի֫ fgpy $0gdUʩ˩ef3489:;\jkp}±ñ#$)BI[j~²òIJŲƲͲ߲`ƿ͙͢vmaƿvmh)[hU5\aJhU5\aJ *hU5\aJ *hNhU5\aJ *hNhU5aJ *hU5aJhLbhU5 hUCJ hUCJh[hUCJ hghU h]>hUhU hv6FhUhv6FhU5CJaJhU5CJaJhv6FhUCJaJhUCJaJ&0BCMWapqrðİа3456789:]kñıgdUgdU$a$gdUgdUıܱݱ#$@ABòIJŲƲabcdersIgdUgdU$a$gdU$a$gdU`abdsv78\() =CV˿῭ᓋ}xqqqq h-hU hU5 h)^hU hVhUhMIhU5hM3hUCJaJjh"h?lhUCJUaJ"jhUCJUaJmHnHujhUCJUaJhUhhUCJaJ hU>*CJhUCJaJhcKhUCJaJh)[hU5\aJ,Ihi78[\stuɵʵ˵gdU$a$gdUgdU˵ '()CDEcdeʶ &'K$a$gdU$a$gdUgdUgdUKLjk45OPjk$a$gdUgdU%+45NPikѸҸԸո׸ظڸ۸ݸ޸  #$%()*+CDEFʿʿʿʿʿʿʿʿʿj"hUUj30E hUUVh#"hUCJaJhUCJaJhU0JmHnHu hU0JjhU0JUjhUU h-hUhUDиѸӸԸָ׸ٸڸܸݸh]hgdU &`#$gdUgdU$a$gdU  $%)*Gxyz{|}~gdUFGPȹ gϺкѺ -./;<=JKLMNOP]nop|}~jh#"hUU h#"hUjh#"hUUh#"hUCJaJhUCJaJjQ hUUj30E hUUVjhUUh]OhU5hUB  !"#$gdU$%&'()*+,-./0123456789:;<=>?@AABCDENfgкѺ ./<gdU<=JKMNOP]op}~ͻλۻܻgdU̻ͻλڻۻܻ 012>?@MN_`amno|}¼üļƼǼ h-hUjmh#"hUUjsh#"hUUjyh#"hUU h#"hUjh#"hUUhUCJaJhUh#"hUCJaJ? 12?@MN`ano|}gdU¼ļżƼǼgdU 1h/ =!"#$%j$$Ifl!vh5 5 5#v#v :Vl tt"655 alL$$Ifl!vh5t"#vt":Vl tt"65t"alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alL$$Ifl!vh5t"#vt":Vl tt"65t"alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alL$$Ifl!vh5t"#vt":Vl tt"65t"alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alj$$Ifl!vh5 5 5#v#v :Vl tt"655 alJ$$If!vh5L5L#vL:Vl t65LJ$$If!vh5L5L#vL:Vl t65LJ$$If!vh5L5L#vL:Vl t65LJ$$If!vh5L5L#vL:Vl t65L$$If!vh5555o5#v#vo#v#v:Vl t$655o55T$$If!vh5555o5#v#vo#v#v:Vl t$655o55T$$If!vh5555o5#v#vo#v#v:Vl t$655o55T$$If!vh5555o5#v#vo#v#v:Vl t$655o55T$$If!vh555T545#v#v4#vT#v#v:Vl t65545T55$$If!vh555T545#v#v4#vT#v#v:Vl t65545T55$$If!vh555T545#v#v4#vT#v#v:Vl t65545T55$$If!vh555T545#v#v4#vT#v#v:Vl t65545T55DyK Shttp://www.cisco.com/univercd/cc/td/doc/product/software/ios120/12cgcr/rbkixol.htmyK http://www.cisco.com/univercd/cc/td/doc/product/software/ios120/12cgcr/rbkixol.htm]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5|5#v#v|:Vl t655|]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(]$$If!vh5(5p#vp#v(:Vl t65p5(Dd#*D  3 @@"?YDd,)V0  # ABtE$dz3..ɠ<#0T}Hw9tE$dz3..ɠD Oogx |ŵ0~}=VpcP  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ Root Entry FT^P-Data gWordDocument "ObjectPool]P-T^P-9  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~_1173827635FT^P-T^P-Ole EPRINT CompObjq  FMicrosoft Visio DrawingVISIO 6.0 ShapesVisio.Drawing.69q  Oh+'0  ,8H dp          !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklopqrstuvwxyz{|}~lJ?A EMF8 @F, EMF+@``FL@EMF+0@?@ @ @@!@ %@,@$=?= C.C@tdlZK EMFd@F GDICQ  Z J J - "- "---$y99yy- %y99yy --$y9y- %y9y --$yyy- %yyy "---$ S  b  z S S- % S  b  z S S --$ S  b  z S S- % S  b  z S S --$ ""b2Z - % ""b2Z  --$ ""b2Z - % ""b2Z  --$CCC]f QC- %CCC]f QC --$CCC]f QC- %CCC]f QC --$  ccq$S; - %  ccq$S;  --$  ccq$S; - %  ccq$S;  --$ q.    + q q- % q.    + q q --$ q.    + q q- % q.    + q q --$  EEBP - %  EEBP  --$  EEBP - %  EEBP  --$aff$8oa- %aff$8oa --$aff$8oa- %aff$8oa --$#  Qq^ # - %#  Qq^ #  --$#  Qq^ # - %#  Qq^ #  '&1Copyright 1996 Microsystems Engineering Company&All Rights Reserved  [ [ J J ! % &% &% % '%  V01Zy99yy% (  W01Zy99yy % '%  V0Zy9y% (  W0Zy9y % '%  V01yyy% (  W01yyy &% ( % '%  V<]' S  b  z S S%  W<]' S  b  z S S % %  V<]' S  b  z S S%  W<]' S  b  z S S % %  V<p ""b2Z %  W<p ""b2Z  % %  V<p ""b2Z %  W<p ""b2Z  % %  V<Z,CCC]f QC%  W<Z,CCC]f QC % %  V<Z,CCC]f QC%  W<Z,CCC]f QC % %  V<*m  ccq$S; %  W<*m  ccq$S;  % %  V<*m  ccq$S; %  W<*m  ccq$S;  % '%  V<^( q.    + q q%  W<^( q.    + q q % %  V<^( q.    + q q%  W<^( q.    + q q % %  V<r  EEBP %  W<r  EEBP  % %  V<r  EEBP %  W<r  EEBP  % %  V<[.aff$8oa%  W<[.aff$8oa % %  V<[.aff$8oa%  W<[.aff$8oa % %  V<, n#  Qq^ # %  W<, n#  Qq^ #  % %  V<, n#  Qq^ # %  W<, n#  Qq^ #  " ( % % 0 K( ( ( @@, LCB!b !b !!s % % % 0        : # .">P> CC$$.">P> CCs Rp"SystemC`du`N`uB`td'<`3Dw 33P5 `wp8wDwp}w:w`Fwt>`hLQL`xBR`h~tdv% F(GDIC[# .">P> CC$$.">P> CC# B B CC$$B B CC# .">P> CC$$.">P> CC# ]~< < CC$$]~< < CC# ]~< < CC$$]~< < CC# ]~< < CC$$]~< < CC! % &% &% % '%  V0y99yy% (  W0y99yy % '%  V0y9y% (  W0y9y % '%  V0yyy% (  W0yyy &% ( % '%  V< S  b  z S S%  W< S  b  z S S % %  V< S  b  z S S%  W< S  b  z S S % %  V< ""b2Z %  W< ""b2Z  % %  V< ""b2Z %  W< ""b2Z  % %  V<CCC]f QC%  W<CCC]f QC % %  V<CCC]f QC%  W<CCC]f QC % %  V<  ccq$S; %  W<  ccq$S;  % %  V<  ccq$S; %  W<  ccq$S;  % '%  V< q.    + q q%  W< q.    + q q % %  V< q.    + q q%  W< q.    + q q % %  V<  EEBP %  W<  EEBP  % %  V<  EEBP %  W<  EEBP  % %  V<aff$8oa%  W<aff$8oa % %  V<aff$8oa%  W<aff$8oa % %  V<#  Qq^ # %  W<#  Qq^ #  % %  V<#  Qq^ # %  W<#  Qq^ #  " ( % % K( ( ( FGDIC" " % ( " FEMF+&@@<0Ne>@, ˵\C/CCC@$$==_888% % W$+ ">% % $$AA( FxEMF+%@,@$Oq=c=CfB@l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @@, ZC>ChB$$z>>ChBs *:Rp"System3Dw 33Dwx33!wp8wDwp}w:wFwL`LC`LD`N` uB`k%`xuL6`uL`C`LuD`N``uB`8ddv% F(GDIC# z>>ChB$$z>>ChB# BBChB$$BBChB# z>>ChB$$z>>ChB# pH<<ChB$$pH<<ChB# pH<<ChB$$pH<<ChB# pH<<ChB$$pH<<ChB! % &% &% % '%  V0*o { { $ % (  W0*o { { $  % '%  V0* >  $ % (  W0* >  $  &% ( W09w;y!``5!` W09v;x!BB`!`!B W(8v:y= W(:v<y!=I: W0<w>y``` W0<v>xBB``B W(;v=y=l{ W(=v?y=  W0?wAy`W`C` W0?vAxBWBW``B W(>v@yR=*9 W(@vBy= W0BwDyj``~j` W0BvDxjBB`j`jB W(AvCy= W(CvEyj= W0EwHy-``A-` W0EvGx-BB`-`-B W(DvFy= W(FvHy-=UF W0HwKy``` W0HvJxBB``B W(GvIy=x W(IvKy=  W0KwNy`^`J` W0KvMxB^B^``B W(JvLy^=6E W(LvNy= W0NwQyq `! `  q ` W0NvPxq B! B! `q `q B W(NvOy! =  W(OvQyv =   W0QwTy4 ` ` H 4 ` W0QvSx4 B B `4 `4 B W(QvRy =   W(SvTy9 =a R  W0TwWy ` `   ` W0TvWx B B ` ` B W(TvUy =   W(VvWy =$   W0WwZy `j `V   ` W0WvYx Bj Bj ` ` B W(WvXyj =B Q  W(YvZy =   W0Zw]y} `- `  } ` W0Zv]x} B- B- `} `} B W(Zv[y- =   W(\v]y} =   W03t6w d P  W03t5u d d    W(2t4wd <K W(4t6w  W06t9ww ' w  W06t8uw ' ' w w  W(6t7w'  W(7t9w|  W09t<w:  N:  W09t;u:   : :  W(9t:w  W(:t<w: bS W0<t?w    W0<t>u      W(<t=w  W(>t?w % W0?tBw p \  W0?tBu p p    W(?t@wp HW W(AtBw  W0BtEw 3   W0BtEu 3 3    W(BtCw3  W(DtEw  W0EtHwF  ZF  W0EtHuF   F F  W(EtFw  W(GtHwF n_ W0HtKw      W0HtKu       W(HtIw  W(JtKw  1" W0KtNw | h  W0LtNu | |    W(KtLw| Tc W(MtNw  W0NtQw ? +    W0OtQu ? ?  W(NtPw?  &  W(PtQw   W0QtTwR  f R  W0RtTuR   R R  W(QtSw   W(StTwR z k  W0TtWw )   W0UtWu    W(TtVw   W(VtXw = .  W0WtZw t    W0XtZu  W(WtYw ` o  W(Yt[w   W0;y>|qFF W0<y>z W(;y=|]7lF W(=y>|7F W0>yA|H4FF W0?yAzHH W(>y@|H 7/F W(@yB|7F W0AyD|[ FoF[ W0ByDz[  [[ W(AyC| 7F W(CyE|[7tF W0DyG|F2F W0EyGz W(DyF|7F W(FyH|F77F W0HyJ|}FF W0HyJz W(GyI|i7xF W(IyK| 7F W0KyM|T@FF W0KyMzTT W(JyL|T,7;F W(LyN|7F W0NyP|g   F{ Fg  W0NyPzg   g g  W(MyO| 7F W(OyQ|g  7 F W0QyT|*   F> F*  W0QySz*   * *  W(PyR|  7 F W(RyT|* R 7C F W0TyW|   F F  W0TyVz      W(SyU| u 7 F W(UyW|  7 F W0WyZ| ` L F F  W0WyYz ` `    W(WyX|` 8 7G F W(XyZ|  7 F W0Zy]|n   F Fn  W0Zy\zn   n n  W(Yy[|  7 F W([y]|s  7 F W08|;~ W08{:}iii W(8{9~d W(:{;~d& W0;|>~lX W0;{=}ilili W(;{<~ldDS W(={>~d W0>|A~/ W0>{A}i/i/i W(>{?~/d W(@{A~d W0A|D~BVB W0A{D}BiiBBi W(A{B~d W(C{D~Bdj[ W0D|G~ W0D{G}iii W(D{E~d W(F{G~d- W0G|J~xd W0G{J}ixixi W(G{H~sdKZ W(I{J~d W0J|M~;' W0K{M}i;i;i W(J{K~6d W(L{M~d W0M|P~N b N  W0N{P}N iiN N i W(M{O~d W(O{P~N dv g  W0P|S~      W0Q{S} i i   i W(P{Q~ d   W(R{S~ d4 %  W0S|V~  k    W0T{V} i i   i W(S{U~ dW f  W(U{V~ d   W0[t`w _ < @   W0[t_u Z Z    W(Zt\w_  7  W(^t`w c E   6  W0Y|_~ #  6   W0Z{_} i i   i W(Y{[~ n   W(^{`~ n^ ;  W03y8|JnFrFJ W04y8zJJJ W(3y5|F2dA W(7y9|O2wA W03q6s s _W W   W03q6r s s    W(3q4ts KM Z\  W(5q6t M \  W06q9s 6 "W W   W06q9r 6 6    W(6q7t6 M \  W(8q9t M \  W09q<sI  W ]W I  W09q<rI   I I  W(9q:t M \  W(;q<tI qM b\  W0<q?s   W W   W0=q?r       W(<q=t M \  W(>q?t  4M %\  W0AqDs[  W oW [  W0BqDr[   [ [  W(AqCt M \  W(CqEt[ M t\  W0DqGs  W 2W   W0EqGr      W(DqFt M \  W(FqHt FM 7\  W0HqJs  }W W   W0HqJr      W(GqIt iM x\  W(IqKt M \  W0KqMs T @W W   W0KqMr T T    W(JqLtT ,M ;\  W(LqNt M \  W0TqWs   W  W   W0TqVr  W(TqUt z M \  W(UqWt  M \  W0WqZs  e  Q W W   W0WqYr e e  W(WqXt` 8 M G \  W(XqZt M \  W0Zq]sx  (   W W x   W0Zq\rx ( ( x x  W(Zq[t( M  \  W(\q]tx M \  W0]q`s;   W O W ;   W0]q`r; ; ;  W(]q^t M \  W(_q`t; c M T \  W0bqes I 5W W   W0cqer I I    W(bqdtI !M 0\  W(dqft M \  W0btew I 5  W0cteu I I    W(btdwI !0 W(dtfw  W0fthw\  p\  W0fthu\   \ \  W(etgw   W(gtiw\ u W0itkw  3  W0itku      W(htjw  W(jtlw G8 W0bwey`I`5` W0cvexBIBI``B W(bvdyI=!0 W(dvfy= W0fwhy\` `p\` W0fvhx\B B `\`\B W(evgy = W(gviy\=u W0iwky``3` W0ivkxBB``B W(hvjy= W(jvly=G8 W0fyi|fFzFf W0fyhzfff W(eyg|7F W(gyi|f7F W0:~Yy +m my  W0:~Xy ++y y  W(W~Zt  ^ m W(9~;+Y h W0c|e~S? W0c{e}iSiSi W(b{d~Nd&5 W(d{f~d W0f|i~fzf W0f{h}fiiffi W(e{g~d W(g{i~fd W0i|k~$8$ W0i{k}$ii$$i W(h{j~d W(j{l~$dL= W0ntqw A -  W0otqu A A    W(ntpwA ( W(ptrw  W0qttwT  hT  W0rttuT   T T  W(qtsw  W(stuwT |m W0ttww  +  W0utwu      W(ttvw  W(vtxw ?0 W0xtzw  v  W0xtzu      W(wtyw bq W(yt{w  W0nwqy`A`-` W0ovqxBABA``B W(nvpyA=( W(pvry= W0qwtyT``hT` W0rvtxTBB`T`TB W(qvsy= W(svuyT=|m W0twwy``+` W0uvwxBB``B W(tvvy= W(vvxy=?0 W0nyq|A-FF W0oyqzAA W(nyp|A7(F W(pyr|7F W0qyt|TFhFT W0rytzTTT W(qys|7F W(syu|T|7mF W0tyw|F+F W0uywz W(tyv|7F W(vyx|?70F W0t|w~+ W0u{w}iii W(t{v~d W(v{x~d?0 W0o|t~dAE W0o{s}"idid""i W(n{p~dn< W(r{t~'nmO W0x|{~{ W(wyy~b{ W0xyz} W(zy{~ W0NqPsg     W { W g   W0NqPrg   g g  W(MqOt M \  W(OqQtg M \  W0fqks C W $W   W0gqkr C C    W(fqhsC H W  W(jqls LH .W  W0nqqs A -W W   W0oqqr A A    W(nqptA M (\  W(pqrt M \  W0qqtsT  W hW T  W0rqtrT   T T  W(qqst M \  W(squtT |M m\  W0tqws  W +W   W0uqwr      W(tqvt M \  W(vqxt ?M 0\  W0xqzs  vW W   W0xqzr      W(wqyt bM q\  W(yq{t M \  W0xwzy``{` W0xvzxBB``B W(wvyy=gv W(yv{y= W0]z`|O   <T <O  W(]v^| 8 # < W0]v`{M ; ; M M ; W(_v`|T 8^ Y < W03w8y@``dh@` W04v8xEBB`E`EB W(3w5yGA_ W(7w9yJGr W00|5~__ W00{4}diiddi W(/{1~n[y W(3{5~in W0,|/~) W0-{/}iii W(,{.~d W(.{/~d=. W03~8JnmrmJ W04~8JJJ W(3~5FYdh W(7~9OYwh W05|8~@T@ W05{7}@ii@@i W(5{6~d W(7{8~@dhY W09y;|!F5F! W09y;z!!! W(8y:|7F W(:y<|!I7:F W0V|Y~ = )    W0W{Y} i= i=   i W(V{X~= d $  W(X{Y~ d    6  &% ( % '%  V0<:meE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0<:meE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0@?i_E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0@?i_E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0?>i`ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dgen n + + % (  W0Dgen n + +  &% (  6N  % '%  V0Mg[j      % (  W0Mg[j       W0Ddeh   g   " ( % % K( FGDIC" " % ( " FEMF+&@@<0Ne>@<0\CFCp2CܓC CCGCC@$$==_888% % U, B Z ^ P % % $$AA( FxEMF+%@,@$Kq=e=C蓕B@l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @@, ZC>CB$$z>>CBs KRp"Systemwp}w:wFwL`L &$# ! e a !  ww7w`w aw6 0B 8 %8GDICjl$D: ((Wtdv% F(GDIC# z>>CB$$z>>CB# BBCB$$BBCB# z>>CB$$z>>CB# pH<<CB$$pH<<CB# pH<<CB$$pH<<CB# pH<<CB$$pH<<CB! % &% &% % '%  V0! { { $ % (  W0! { { $  % '%  V0! >  $ % (  W0! >  $  &% ( W0!``5!` W0!BB`!`!B W(= W(!=I: W0``` W0BB``B W(=l{ W(=  W0`W`C` W0BWBW``B W(R=*9 W(= W0j``~j` W0jBB`j`jB W(= W(j= W0-``A-` W0-BB`-`-B W(= W(-=UF W0``` W0BB``B W(=x W(=  W0`^`J` W0B^B^``B W(^=6E W(= W0q `! `  q ` W0q B! B! `q `q B W(! =  W(v =   W04 ` ` H 4 ` W04 B B `4 `4 B W( =   W(9 =a R  W0 ` `   ` W0 B B ` ` B W( =   W( =$   W0 `j `V   ` W0 Bj Bj ` ` B W(j =B Q  W( =   W0} `- `  } ` W0} B- B- `} `} B W(- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0w ' w  W0w ' ' w w  W('  W(|  W0:  N:  W0:   : :  W(  W(: bS W0    W0      W(  W( % W0 p \  W0 p p    W(p HW W(  W0 3   W0 3 3    W(3  W(  W0F  ZF  W0F   F F  W(  W(F n_ W0      W0       W(  W(  1" W0 | h  W0 | |    W(| Tc W(  W0 ? +    W0 ? ?  W(?  &  W(   W0R  f R  W0R   R R  W(   W(R z k  W0 )   W0    W(   W( = .  W0 t    W0  W( ` o  W(   W0qFF W0 W(]7lF W(7F W0H4FF W0HH W(H 7/F W(7F W0[ FoF[ W0[  [[ W( 7F W([7tF W0F2F W0 W(7F W(F77F W0}FF W0 W(i7xF W( 7F W0T@FF W0TT W(T,7;F W(7F W0g   F{ Fg  W0g   g g  W( 7F W(g  7 F W0*   F> F*  W0*   * *  W(  7 F W(* R 7C F W0   F F  W0      W( u 7 F W(  7 F W0 ` L F F  W0 ` `    W(` 8 7G F W(  7 F W0n   F Fn  W0n   n n  W(  7 F W(s  7 F W0 W0iii W(d W(d& W0lX W0ilili W(ldDS W(d W0/ W0i/i/i W(/d W(d W0BVB W0BiiBBi W(d W(Bdj[ W0 W0iii W(d W(d- W0xd W0ixixi W(sdKZ W(d W0;' W0i;i;i W(6d W(d W0N b N  W0N iiN N i W(d W(N dv g  W0      W0 i i   i W( d   W( d4 %  W0  k    W0 i i   i W( dW f  W( d   W0 _ < @   W0 Z Z    W(_  7  W( c E   6  W0 #  6   W0 i i   i W( n   W( n^ ;  W0JnFrFJ W0JJJ W(F2dA W(O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 6 "W W   W0 6 6    W(6 M \  W( M \  W0I  W ]W I  W0I   I I  W( M \  W(I qM b\  W0   W W   W0       W( M \  W(  4M %\  W0[  W oW [  W0[   [ [  W( M \  W([ M t\  W0  W 2W   W0      W( M \  W( FM 7\  W0  }W W   W0      W( iM x\  W( M \  W0 T @W W   W0 T T    W(T ,M ;\  W( M \  W0   W  W   W0  W( z M \  W(  M \  W0  e  Q W W   W0 e e  W(` 8 M G \  W( M \  W0x  (   W W x   W0x ( ( x x  W(( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0 \  p\  W0 \   \ \  W(    W(  \ u W0    3  W0        W(    W(  G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0 \` `p\` W0 \B B `\`\B W(  = W(  \=u W0  ``3` W0  BB``B W(  = W( =G8 W0 fFzFf W0 fff W( 7F W(  f7F W0y +m my  W0y ++y y  W(t  ^ m W(+Y h W0S? W0iSiSi W(Nd&5 W(d W0 fzf W0 fiiffi W( d W(  fd W0  $8$ W0  $ii$$i W(  d W( $dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0g     W { W g   W0g   g g  W( M \  W(g M \  W0  C W $W   W0   C C    W( C H W  W(  LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0@``dh@` W0EBB`E`EB W(GA_ W(JGr W0__ W0diiddi W(n[y W(in W0) W0iii W(d W(d=. W0JnmrmJ W0JJJ W(FYdh W(OYwh W0@T@ W0@ii@@i W(d W(@dhY W0!F5F! W0!!! W(7F W(!I7:F W0 = )    W0 i= i=   i W(= d $  W( d    6  &% ( % '%  V0KvE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0KvE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0P pE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0P pE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0O qExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0x n + + % (  W0x n + +  &% (  6N  % '%  V0x{      % (  W0x{       W0uy   g   " ( % % K( FGDIC" " % ( " FEMF+&@@<0Ne>@<0MCQ&C錰C(Cr8Cf(C !D&C@$$==_888% % U, a  H |(a % % $$AA( FxEMF+%@,@$Oq=d=T!DyȷB@l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @@, ZC^>!DB$$z>^>!DBs \Rp"System ww7w`w &$# ! e a !  ww7w`w aw0  8 %8GDICjlp$D: ))Wtdv% F(GDIC# z>^>!DB$$z>^>!DB# BTB!DB$$BTB!DB# z>^>!DB$$z>^>!DB# pH</<!DB$$pH</<!DB# pH</<!DB$$pH</<!DB# pH</<!DB$$pH</<!DB! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0!``5!` W0!BB`!`!B W(= W(!=I: W0``` W0BB``B W(=l{ W(=  W0`W`C` W0BWBW``B W(R=*9 W(= W0j``~j` W0jBB`j`jB W(= W(j= W0-``A-` W0-BB`-`-B W(= W(-=UF W0``` W0BB``B W(=x W(=  W0`^`J` W0B^B^``B W(^=6E W(= W0q `! `  q ` W0q B! B! `q `q B W(! =  W(v =   W04 ` ` H 4 ` W04 B B `4 `4 B W( =   W(9 =a R  W0 ` `   ` W0 B B ` ` B W( =   W( =$   W0 `j `V   ` W0 Bj Bj ` ` B W(j =B Q  W( =   W0} `- `  } ` W0} B- B- `} `} B W(- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0w ' w  W0w ' ' w w  W('  W(|  W0:  N:  W0:   : :  W(  W(: bS W0    W0      W(  W( % W0 p \  W0 p p    W(p HW W(  W0 3   W0 3 3    W(3  W(  W0F  ZF  W0F   F F  W(  W(F n_ W0      W0       W(  W(  1" W0 | h  W0 | |    W(| Tc W(  W0 ? +    W0 ? ?  W(?  &  W(   W0R  f R  W0R   R R  W(   W(R z k  W0 )   W0    W(   W( = .  W0 t    W0  W( ` o  W(   W0qFF W0 W(]7lF W(7F W0H4FF W0HH W(H 7/F W(7F W0[ FoF[ W0[  [[ W( 7F W([7tF W0F2F W0 W(7F W(F77F W0}FF W0 W(i7xF W( 7F W0T@FF W0TT W(T,7;F W(7F W0g   F{ Fg  W0g   g g  W( 7F W(g  7 F W0*   F> F*  W0*   * *  W(  7 F W(* R 7C F W0   F F  W0      W( u 7 F W(  7 F W0 ` L F F  W0 ` `    W(` 8 7G F W(  7 F W0n   F Fn  W0n   n n  W(  7 F W(s  7 F W0 W0iii W(d W(d& W0lX W0ilili W(ldDS W(d W0/ W0i/i/i W(/d W(d W0BVB W0BiiBBi W(d W(Bdj[ W0 W0iii W(d W(d- W0xd W0ixixi W(sdKZ W(d W0;' W0i;i;i W(6d W(d W0N b N  W0N iiN N i W(d W(N dv g  W0      W0 i i   i W( d   W( d4 %  W0  k    W0 i i   i W( dW f  W( d   W0 _ < @   W0 Z Z    W(_  7  W( c E   6  W0 #  6   W0 i i   i W( n   W( n^ ;  W0JnFrFJ W0JJJ W(F2dA W(O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 6 "W W   W0 6 6    W(6 M \  W( M \  W0I  W ]W I  W0I   I I  W( M \  W(I qM b\  W0   W W   W0       W( M \  W(  4M %\  W0[  W oW [  W0[   [ [  W( M \  W([ M t\  W0  W 2W   W0      W( M \  W( FM 7\  W0  }W W   W0      W( iM x\  W( M \  W0 T @W W   W0 T T    W(T ,M ;\  W( M \  W0   W  W   W0  W( z M \  W(  M \  W0  e  Q W W   W0 e e  W(` 8 M G \  W( M \  W0x  (   W W x   W0x ( ( x x  W(( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0y +m my  W0y ++y y  W(t  ^ m W(+Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0g     W { W g   W0g   g g  W( M \  W(g M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0@``dh@` W0EBB`E`EB W(GA_ W(JGr W0__ W0diiddi W(n[y W(in W0) W0iii W(d W(d=. W0JnmrmJ W0JJJ W(FYdh W(OYwh W0@T@ W0@ii@@i W(d W(@dhY W0!F5F! W0!!! W(7F W(!I7:F W0 = )    W0 i= i=   i W(= d $  W( d    6  &% ( % '%  V0\E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0\E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0bE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0bE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0`ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0 n + + % (  W0 n + +  &% (  6N  % '%  V0      % (  W0       W0   g   " ( % % K( FGDIC" " % ( " FEMF+&@%@,@$=?=6 CD@tdlZK EMFd@F GDICQ  Z J J - "- "---$y99yy- %y99yy --$y9y- %y9y --$yyy- %yyy "---$ S  b  z S S- % S  b  z S S --$ S  b  z S S- % S  b  z S S --$ ""b2Z - % ""b2Z  --$ ""b2Z - % ""b2Z  --$CCC]f QC- %CCC]f QC --$CCC]f QC- %CCC]f QC --$  ccq$S; - %  ccq$S;  --$  ccq$S; - %  ccq$S;  --$ q.    + q q- % q.    + q q --$ q.    + q q- % q.    + q q --$  EEBP - %  EEBP  --$  EEBP - %  EEBP  --$aff$8oa- %aff$8oa --$aff$8oa- %aff$8oa --$#  Qq^ # - %#  Qq^ #  --$#  Qq^ # - %#  Qq^ #  '&1Copyright 1996 Microsystems Engineering Company&All Rights Reserved  [ [ J J ! % &% &% % '%  V01Zy99yy% (  W01Zy99yy % '%  V0Zy9y% (  W0Zy9y % '%  V01yyy% (  W01yyy &% ( % '%  V<]' S  b  z S S%  W<]' S  b  z S S % %  V<]' S  b  z S S%  W<]' S  b  z S S % %  V<p ""b2Z %  W<p ""b2Z  % %  V<p ""b2Z %  W<p ""b2Z  % %  V<Z,CCC]f QC%  W<Z,CCC]f QC % %  V<Z,CCC]f QC%  W<Z,CCC]f QC % %  V<*m  ccq$S; %  W<*m  ccq$S;  % %  V<*m  ccq$S; %  W<*m  ccq$S;  % '%  V<^( q.    + q q%  W<^( q.    + q q % %  V<^( q.    + q q%  W<^( q.    + q q % %  V<r  EEBP %  W<r  EEBP  % %  V<r  EEBP %  W<r  EEBP  % %  V<[.aff$8oa%  W<[.aff$8oa % %  V<[.aff$8oa%  W<[.aff$8oa % %  V<, n#  Qq^ # %  W<, n#  Qq^ #  % %  V<, n#  Qq^ # %  W<, n#  Qq^ #  " ( % % 0 K( ( ( @@, LCB!b !!s % % % 0        : # y>P> CD$$y>P> CDs Rp"System ww7w`w &$# ! e a !  ww7w`w aw 02 8 %8GDICjl-D: Wtdv% F(GDIC[# y>P> CD$$y>P> CD# B B CD$$B B CD# y>P> CD$$y>P> CD# < < CD$$< < CD# < < CD$$< < CD# < < CD$$< < CD! % &% &% % '%  V0'7y99yy% (  W0'7y99yy % '%  V07y9y% (  W07y9y % '%  V0'yyy% (  W0'yyy &% ( % '%  V<# S  b  z S S%  W<# S  b  z S S % %  V<# S  b  z S S%  W<# S  b  z S S % %  V< ""b2Z %  W< ""b2Z  % %  V< ""b2Z %  W< ""b2Z  % %  V<&CCC]f QC%  W<&CCC]f QC % %  V<&CCC]f QC%  W<&CCC]f QC % %  V<  ccq$S; %  W<  ccq$S;  % %  V<  ccq$S; %  W<  ccq$S;  % '%  V<$ q.    + q q%  W<$ q.    + q q % %  V<$ q.    + q q%  W<$ q.    + q q % %  V<  EEBP %  W<  EEBP  % %  V<  EEBP %  W<  EEBP  % %  V<&aff$8oa%  W<&aff$8oa % %  V<&aff$8oa%  W<&aff$8oa % %  V<#  Qq^ # %  W<#  Qq^ #  % %  V<#  Qq^ # %  W<#  Qq^ #  " ( % % K( ( ( FGDIC" " % ( " FEMF+&@@<0Ne>@, 5S[CDKCz5D@$$==_888% % W$* 2!N!% % $$AA( FxEMF+%@,@$Oq=h=JCqUC@l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @@, ZC>CC$$z>>CCs )Rp"System ww7w`w &$# ! e a !  ww7w`w aw  8 %8GDICjlD: ``Wtdv% F(GDIC# z>>CC$$z>>CC# BBCC$$BBCC# z>>CC$$z>>CC# pH<<CC$$pH<<CC# pH<<CC$$pH<<CC# pH<<CC$$pH<<CC! % &% &% % '%  V0)~ { { $ % (  W0)~ { { $  % '%  V0)~ >  $ % (  W0)~ >  $  &% ( W08: !``5!` W08: !BB`!`!B W(79 = W(9; !=I: W0;= ``` W0;= BB``B W(:< =l{ W(<> =  W0>@ `W`C` W0>@ BWBW``B W(=? R=*9 W(?A = W0AC j``~j` W0AC jBB`j`jB W(@B = W(BD j= W0DG -``A-` W0DF -BB`-`-B W(CE = W(EG -=UF W0GJ ``` W0GI BB``B W(FH =x W(HJ =  W0JM `^`J` W0JL B^B^``B W(IK ^=6E W(KM = W0MP q `! `  q ` W0MO q B! B! `q `q B W(MN ! =  W(NP v =   W0PS 4 ` ` H 4 ` W0PR 4 B B `4 `4 B W(PQ  =   W(RS 9 =a R  W0SV  ` `   ` W0SV  B B ` ` B W(ST  =   W(UV  =$   W0VY  `j `V   ` W0VX  Bj Bj ` ` B W(VW j =B Q  W(XY  =   W0Y\ } `- `  } ` W0Y\ } B- B- `} `} B W(YZ - =   W([\ } =   W025 d P  W024 d d    W(13d <K W(35  W058w ' w  W057w ' ' w w  W(56'  W(68|  W08;:  N:  W08::   : :  W(89  W(9;: bS W0;>    W0;=      W(;<  W(=> % W0>A p \  W0>A p p    W(>?p HW W(@A  W0AD 3   W0AD 3 3    W(AB3  W(CD  W0DGF  ZF  W0DGF   F F  W(DE  W(FGF n_ W0GJ      W0GJ       W(GH  W(IJ  1" W0JM | h  W0KM | |    W(JK| Tc W(LM  W0MP ? +    W0NP ? ?  W(MO?  &  W(OP   W0PSR  f R  W0QSR   R R  W(PR   W(RSR z k  W0SV )   W0TV    W(SU   W(UW = .  W0VY t    W0WY  W(VX ` o  W(XZ   W0: = qFF W0; =  W(: < ]7lF W(< = 7F W0= @ H4FF W0> @ HH W(= ? H 7/F W(? A 7F W0@ C [ FoF[ W0A C [  [[ W(@ B  7F W(B D [7tF W0C F F2F W0D F  W(C E 7F W(E G F77F W0G I }FF W0G I  W(F H i7xF W(H J  7F W0J L T@FF W0J L TT W(I K T,7;F W(K M 7F W0M O g   F{ Fg  W0M O g   g g  W(L N  7F W(N P g  7 F W0P S *   F> F*  W0P R *   * *  W(O Q   7 F W(Q S * R 7C F W0S V    F F  W0S U       W(R T  u 7 F W(T V   7 F W0V Y  ` L F F  W0V X  ` `    W(V W ` 8 7G F W(W Y   7 F W0Y \ n   F Fn  W0Y [ n   n n  W(X Z   7 F W(Z \ s  7 F W07 : W07 9iii W(7 8d W(9 :d& W0: =lX W0: <ilili W(: ;ldDS W(< =d W0= @/ W0= @i/i/i W(= >/d W(? @d W0@ CBVB W0@ CBiiBBi W(@ Ad W(B CBdj[ W0C F W0C Fiii W(C Dd W(E Fd- W0F Ixd W0F Iixixi W(F GsdKZ W(H Id W0I L;' W0J Li;i;i W(I J6d W(K Ld W0L ON b N  W0M ON iiN N i W(L Nd W(N ON dv g  W0O R      W0P R i i   i W(O P d   W(Q R d4 %  W0R U  k    W0S U i i   i W(R T dW f  W(T U d   W0Z_ _ < @   W0Z^ Z Z    W(Y[_  7  W(]_ c E   6  W0X ^ #  6   W0Y ^ i i   i W(X Z n   W(] _ n^ ;  W02 7 JnFrFJ W03 7 JJJ W(2 4 F2dA W(6 8 O2wA W025 s _W W   W025 s s    W(23s KM Z\  W(45 M \  W058 6 "W W   W058 6 6    W(566 M \  W(78 M \  W08;I  W ]W I  W08;I   I I  W(89 M \  W(:;I qM b\  W0;>   W W   W0<>       W(;< M \  W(=>  4M %\  W0@C[  W oW [  W0AC[   [ [  W(@B M \  W(BD[ M t\  W0CF  W 2W   W0DF      W(CE M \  W(EG FM 7\  W0GI  }W W   W0GI      W(FH iM x\  W(HJ M \  W0JL T @W W   W0JL T T    W(IKT ,M ;\  W(KM M \  W0SV   W  W   W0SU  W(ST z M \  W(TV  M \  W0VY  e  Q W W   W0VX e e  W(VW` 8 M G \  W(WY M \  W0Y\x  (   W W x   W0Y[x ( ( x x  W(YZ( M  \  W([\x M \  W0\_;   W O W ;   W0\_; ; ;  W(\] M \  W(^_; c M T \  W0ad I 5W W   W0bd I I    W(acI !M 0\  W(ce M \  W0ad I 5  W0bd I I    W(acI !0 W(ce  W0eg\  p\  W0eg\   \ \  W(df   W(fh\ u W0hj  3  W0hj      W(gi  W(ik G8 W0ad `I`5` W0bd BIBI``B W(ac I=!0 W(ce = W0eg \` `p\` W0eg \B B `\`\B W(df  = W(fh \=u W0hj ``3` W0hj BB``B W(gi = W(ik =G8 W0e h fFzFf W0e g fff W(d f 7F W(f h f7F W09Xy +m my  W09Wy ++y y  W(VYt  ^ m W(8:+Y h W0b dS? W0b diSiSi W(a cNd&5 W(c ed W0e hfzf W0e gfiiffi W(d fd W(f hfd W0h j$8$ W0h j$ii$$i W(g id W(i k$dL= W0mp A -  W0np A A    W(moA ( W(oq  W0psT  hT  W0qsT   T T  W(pr  W(rtT |m W0sv  +  W0tv      W(su  W(uw ?0 W0wy  v  W0wy      W(vx bq W(xz  W0mp `A`-` W0np BABA``B W(mo A=( W(oq = W0ps T``hT` W0qs TBB`T`TB W(pr = W(rt T=|m W0sv ``+` W0tv BB``B W(su = W(uw =?0 W0m p A-FF W0n p AA W(m o A7(F W(o q 7F W0p s TFhFT W0q s TTT W(p r 7F W(r t T|7mF W0s v F+F W0t v  W(s u 7F W(u w ?70F W0s v+ W0t viii W(s ud W(u wd?0 W0n sdAE W0n r"idid""i W(m odn< W(q s'nmO W0w z{ W(v xb{ W0w y W(y z W0MOg     W { W g   W0MOg   g g  W(LN M \  W(NPg M \  W0ej C W $W   W0fj C C    W(egC H W  W(ik LH .W  W0mp A -W W   W0np A A    W(moA M (\  W(oq M \  W0psT  W hW T  W0qsT   T T  W(pr M \  W(rtT |M m\  W0sv  W +W   W0tv      W(su M \  W(uw ?M 0\  W0wy  vW W   W0wy      W(vx bM q\  W(xz M \  W0wy ``{` W0wy BB``B W(vx =gv W(xz = W0\ _ O   <T <O  W(\]  8 # < W0\_ M ; ; M M ; W(^_ T 8^ Y < W027 @``dh@` W037 EBB`E`EB W(24 GA_ W(68 JGr W0/ 4__ W0/ 3diiddi W(. 0n[y W(2 4in W0+ .) W0, .iii W(+ -d W(- .d=. W027JnmrmJ W037JJJ W(24FYdh W(68OYwh W04 7@T@ W04 6@ii@@i W(4 5d W(6 7@dhY W08 : !F5F! W08 : !!! W(7 9 7F W(9 ; !I7:F W0U X = )    W0V X i= i=   i W(U W= d $  W(W X d    6  &% ( % '%  V0;lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0;lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0?hE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0?hE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0>hExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Cd n + + % (  W0Cd n + +  &% (  6N  % '%  V0LZ      % (  W0LZ       W0Cd   g   " ( % % K( FGDIC" " % ( " FEMF+&@@<0Ne>@<0xQ[C!D D%Cǣ D[CT D4C{ D@$$==_888% % U,$( R"i"n"_"% % $$AA( FxEMF+%@,@$Oq=h=5CC@l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @@, ZC>CC$$z>>CCs Rp"System ww7w`w &$# ! e a !  ww7w`w aw 0 8 %8GDICjlX-D: Wtdv% F(GDIC# z>>CC$$z>>CC# BBCC$$BBCC# z>>CC$$z>>CC# pH<<CC$$pH<<CC# pH<<CC$$pH<<CC# pH<<CC$$pH<<CC! % &% &% % '%  V0 $ { { $ % (  W0 $ { { $  % '%  V0# % >  $ % (  W0# % >  $  &% ( W0!``5!` W0!BB`!`!B W(= W(!=I: W0``` W0BB``B W(=l{ W(=  W0`W`C` W0BWBW``B W(R=*9 W(= W0j``~j` W0jBB`j`jB W(= W(j= W0-``A-` W0-BB`-`-B W(= W(-=UF W0``` W0BB``B W(=x W(=  W0`^`J` W0B^B^``B W(^=6E W(= W0q `! `  q ` W0q B! B! `q `q B W(! =  W(v =   W04 ` ` H 4 ` W04 B B `4 `4 B W( =   W(9 =a R  W0 ` `   ` W0 B B ` ` B W( =   W( =$   W0 `j `V   ` W0 Bj Bj ` ` B W(j =B Q  W( =   W0} `- `  } ` W0} B- B- `} `} B W(- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0w ' w  W0w ' ' w w  W('  W(|  W0:  N:  W0:   : :  W(  W(: bS W0    W0      W(  W( % W0 p \  W0 p p    W(p HW W(  W0 3   W0 3 3    W(3  W(  W0F  ZF  W0F   F F  W(  W(F n_ W0      W0       W(  W(  1" W0 | h  W0 | |    W(| Tc W(  W0 ? +    W0 ? ?  W(?  &  W(   W0R  f R  W0R   R R  W(   W(R z k  W0 )   W0    W(   W( = .  W0 t    W0  W( ` o  W(   W0qFF W0 W(]7lF W(7F W0H4FF W0HH W(H 7/F W(7F W0[ FoF[ W0[  [[ W( 7F W([7tF W0F2F W0 W(7F W(F77F W0}FF W0 W(i7xF W( 7F W0T@FF W0TT W(T,7;F W(7F W0g   F{ Fg  W0g   g g  W( 7F W(g  7 F W0*   F> F*  W0*   * *  W(  7 F W(* R 7C F W0   F F  W0      W( u 7 F W(  7 F W0 ` L F F  W0 ` `    W(` 8 7G F W(  7 F W0n   F Fn  W0n   n n  W(  7 F W(s  7 F W0  W0iii W( d W( d& W0 lX W0ilili W( ldDS W( d W0 / W0i/i/i W( /d W( d W0 BVB W0BiiBBi W( d W( Bdj[ W0  W0iii W( d W( d- W0 xd W0ixixi W( sdKZ W( d W0 ;' W0i;i;i W( 6d W( d W0 N b N  W0N iiN N i W( d W( N dv g  W0       W0 i i   i W(  d   W(  d4 %  W0   k    W0 i i   i W(  dW f  W(  d   W0 _ < @   W0 Z Z    W(_  7  W( c E   6  W0  #  6   W0 i i   i W(  n   W(  n^ ;  W0JnFrFJ W0JJJ W(F2dA W(O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 6 "W W   W0 6 6    W(6 M \  W( M \  W0I  W ]W I  W0I   I I  W( M \  W(I qM b\  W0   W W   W0       W( M \  W(  4M %\  W0[  W oW [  W0[   [ [  W( M \  W([ M t\  W0  W 2W   W0      W( M \  W( FM 7\  W0  }W W   W0      W( iM x\  W( M \  W0 T @W W   W0 T T    W(T ,M ;\  W( M \  W0   W  W   W0  W( z M \  W(  M \  W0  e  Q W W   W0 e e  W(` 8 M G \  W( M \  W0x  (   W W x   W0x ( ( x x  W(( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0 \  p\  W0 \   \ \  W(   W( \ u W0    3  W0        W(    W(   G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0 \` `p\` W0 \B B `\`\B W( = W( \=u W0  ``3` W0  BB``B W(  = W(  =G8 W0 fFzFf W0 fff W(7F W( f7F W0 #y +m my  W0 !y ++y y  W( #t  ^ m W( #+Y h W0 S? W0iSiSi W( Nd&5 W( d W0  fzf W0 fiiffi W( d W(  fd W0   $8$ W0  $ii$$i W(   d W(   $dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0 + W0iii W( d W( d?0 W0 dAE W0"idid""i W( dn< W( 'nmO W0 { W( b{ W0 W(  W0g     W { W g   W0g   g g  W( M \  W(g M \  W0  C W $W   W0  C C    W( C H W  W(   LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0@``dh@` W0EBB`E`EB W(GA_ W(JGr W0 __ W0diiddi W( n[y W( in W0 ) W0iii W( d W( d=. W0 #JnmrmJ W0 !JJJ W( #FYdh W( #OYwh W0 @T@ W0@ii@@i W( d W( @dhY W0!F5F! W0!!! W(7F W(!I7:F W0  = )    W0 i= i=   i W( = d $  W(  d    6  &% ( % '%  V0E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0 E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0 E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0 ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0  n + + % (  W0  n + +  &% (  6N  % '%  V0        % (  W0         W0    g   " ( % % K( FGDIC" " % ( " FEMF+&@@<0Ne>@<0gLC DۯCMiD'CiiDg!D D@$$==_888% % U,5; q##1#f(q#% % $$AA( FxEMF+%@,@$Oq=d=B DoC@ l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @ @, ZC^>!DC$$q>^>!DCs Rp"System ww7w`w &$# ! e a !  ww7w`w awy0 8 %8GDICjl,D: Wtdv% F(GDIC# q>^>!DC$$q>^>!DC# BTB!DC$$BTB!DC# q>^>!DC$$q>^>!DC# ʁ</<!DC$$ʁ</<!DC# ʁ</<!DC$$ʁ</<!DC# ʁ</<!DC$$ʁ</<!DC! % &% &% % '%  V0#6 { { $ % (  W0#6 { { $  % '%  V047 >  $ % (  W047 >  $  &% ( W0+-!``5!` W0*,!BB`!`!B W(*-= W(*-!=I: W0+-``` W0*,BB``B W(*-=l{ W(*-=  W0+-`W`C` W0*,BWBW``B W(*-R=*9 W(*-= W0+-j``~j` W0*,jBB`j`jB W(*-= W(*-j= W0+--``A-` W0*,-BB`-`-B W(*-= W(*--=UF W0+-``` W0*,BB``B W(*-=x W(*-=  W0+-`^`J` W0*,B^B^``B W(*-^=6E W(*-= W0+-q `! `  q ` W0*,q B! B! `q `q B W(*-! =  W(*-v =   W0+-4 ` ` H 4 ` W0*,4 B B `4 `4 B W(*- =   W(*-9 =a R  W0+- ` `   ` W0*, B B ` ` B W(*- =   W(*- =$   W0+- `j `V   ` W0*, Bj Bj ` ` B W(*-j =B Q  W(*- =   W0+-} `- `  } ` W0*,} B- B- `} `} B W(*-- =   W(*-} =   W0(+ d P  W0() d d    W((+d <K W((+  W0(+w ' w  W0()w ' ' w w  W((+'  W((+|  W0(+:  N:  W0():   : :  W((+  W((+: bS W0(+    W0()      W((+  W((+ % W0(+ p \  W0() p p    W((+p HW W((+  W0(+ 3   W0() 3 3    W((+3  W((+  W0(+F  ZF  W0()F   F F  W((+  W((+F n_ W0(+      W0()       W((+  W((+  1" W0(+ | h  W0() | |    W((+| Tc W((+  W0(+ ? +    W0() ? ?  W((+?  &  W((+   W0(+R  f R  W0()R   R R  W((+   W((+R z k  W0(+ )   W0()    W((+   W((+ = .  W0(+ t    W0()  W((+ ` o  W((+   W0-0qFF W0-. W(-0]7lF W(-07F W0-0H4FF W0-.HH W(-0H 7/F W(-07F W0-0[ FoF[ W0-.[  [[ W(-0 7F W(-0[7tF W0-0F2F W0-. W(-07F W(-0F77F W0-0}FF W0-. W(-0i7xF W(-0 7F W0-0T@FF W0-.TT W(-0T,7;F W(-07F W0-0g   F{ Fg  W0-.g   g g  W(-0 7F W(-0g  7 F W0-0*   F> F*  W0-.*   * *  W(-0  7 F W(-0* R 7C F W0-0   F F  W0-.      W(-0 u 7 F W(-0  7 F W0-0 ` L F F  W0-. ` `    W(-0` 8 7G F W(-0  7 F W0-0n   F Fn  W0-.n   n n  W(-0  7 F W(-0s  7 F W002 W0/1iii W(/2d W(/2d& W002lX W0/1ilili W(/2ldDS W(/2d W002/ W0/1i/i/i W(/2/d W(/2d W002BVB W0/1BiiBBi W(/2d W(/2Bdj[ W002 W0/1iii W(/2d W(/2d- W002xd W0/1ixixi W(/2sdKZ W(/2d W002;' W0/1i;i;i W(/26d W(/2d W002N b N  W0/1N iiN N i W(/2d W(/2N dv g  W002      W0/1 i i   i W(/2 d   W(/2 d4 %  W002  k    W0/1 i i   i W(/2 dW f  W(/2 d   W0(+ _ < @   W0() Z Z    W((+_  7  W((+ c E   6  W002 #  6   W0/1 i i   i W(/2 n   W(/2 n^ ;  W0-0JnFrFJ W0-.JJJ W(-0F2dA W(-0O2wA W0%' s _W W   W0%& s s    W(%'s KM Z\  W(%' M \  W0%' 6 "W W   W0%& 6 6    W(%'6 M \  W(%' M \  W0%'I  W ]W I  W0%&I   I I  W(%' M \  W(%'I qM b\  W0%'   W W   W0%&       W(%' M \  W(%'  4M %\  W0%'[  W oW [  W0%&[   [ [  W(%' M \  W(%'[ M t\  W0%'  W 2W   W0%&      W(%' M \  W(%' FM 7\  W0%'  }W W   W0%&      W(%' iM x\  W(%' M \  W0%' T @W W   W0%& T T    W(%'T ,M ;\  W(%' M \  W0%'   W  W   W0%&  W(%' z M \  W(%'  M \  W0%'  e  Q W W   W0%& e e  W(%'` 8 M G \  W(%' M \  W0%'x  (   W W x   W0%&x ( ( x x  W(%'( M  \  W(%'x M \  W0%';   W O W ;   W0%&; ; ;  W(%' M \  W(%'; c M T \  W0%' I 5W W   W0%& I I    W(%'I !M 0\  W(%' M \  W0(+ I 5  W0() I I    W((+I !0 W((+  W0(+\  p\  W0()\   \ \  W((+   W((+\ u W0(+  3  W0()      W((+  W((+ G8 W0+-`I`5` W0*,BIBI``B W(*-I=!0 W(*-= W0+-\` `p\` W0*,\B B `\`\B W(*- = W(*-\=u W0+-``3` W0*,BB``B W(*-= W(*-=G8 W0-0fFzFf W0-.fff W(-07F W(-0f7F W025y +m my  W023y ++y y  W(25t  ^ m W(24+Y h W002S? W0/1iSiSi W(/2Nd&5 W(/2d W002fzf W0/1fiiffi W(/2d W(/2fd W002$8$ W0/1$ii$$i W(/2d W(/2$dL= W0(+ A -  W0() A A    W((+A ( W((+  W0(+T  hT  W0()T   T T  W((+  W((+T |m W0(+  +  W0()      W((+  W((+ ?0 W0(+  v  W0()      W((+ bq W((+  W0+-`A`-` W0*,BABA``B W(*-A=( W(*-= W0+-T``hT` W0*,TBB`T`TB W(*-= W(*-T=|m W0+-``+` W0*,BB``B W(*-= W(*-=?0 W0-0A-FF W0-.AA W(-0A7(F W(-07F W0-0TFhFT W0-.TTT W(-07F W(-0T|7mF W0-0F+F W0-. W(-07F W(-0?70F W002+ W0/1iii W(/2d W(/2d?0 W002dAE W0/1"idid""i W(/2dn< W(/2'nmO W002{ W(-2b{ W0-1 W(-2 W0%'g     W { W g   W0%&g   g g  W(%' M \  W(%'g M \  W0%' C W $W   W0%& C C    W(%'C H W  W(%' LH .W  W0%' A -W W   W0%& A A    W(%'A M (\  W(%' M \  W0%'T  W hW T  W0%&T   T T  W(%' M \  W(%'T |M m\  W0%'  W +W   W0%&      W(%' M \  W(%' ?M 0\  W0%'  vW W   W0%&      W(%' bM q\  W(%' M \  W0+-``{` W0*,BB``B W(*-=gv W(*-= W0./O   <T <O  W(*/ 8 # < W0*/M ; ; M M ; W(*/T 8^ Y < W0+-@``dh@` W0*,EBB`E`EB W(*-GA_ W(*-JGr W002__ W0/1diiddi W(/2n[y W(/2in W002) W0/1iii W(/2d W(/2d=. W025JnmrmJ W023JJJ W(24FYdh W(24OYwh W002@T@ W0/1@ii@@i W(/2d W(/2@dhY W0-0!F5F! W0-.!!! W(-07F W(-0!I7:F W002 = )    W0/1 i= i=   i W(/2= d $  W(/2 d    6  &% ( % '%  V0E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0" n + + % (  W0" n + +  &% (  6N  % '%  V0      % (  W0       W0   g   " ( % % K( FGDIC" " % ( " FEMF+&@@<0Ne>@, Lg4C?&C3CD@$$==_888% % W$G a 1 2!% % $$AA( FEMF+@H<N%?A@@ .DN_@u$D_@bDm5CbDCbDCu$D%D.D&Dy7D(D&?DC&?D%C&?D}5Cy7D_@.D_@@$$==_888% '%  ;+IY8+F+FK+MN+L+_+^*uX4*x*v*p*i*a*]6 +GX( +F +F +F6E+3X(F+2G+2H+26++X(++++++6+.X4+/+6+=+D+J+I=*Y(y*F*#*`X4*f*h *d*`*X*QY(1*f*z*X4******=)Y$).)X4))})v)s)}v)vY$)#)X4))))))=^)Y(U)))")X4))) )))Y()<) E)X4G)O)V)])a)^)=(2Y$((X4((((((Y$((+X4($( ("($(+(2=(lY$(~(%X4}(,v(1n(/g(.b('d(Y$l((fX4(_(Z(\(^(e(l=c(Y(c(@(a?(cX4>(k7(p0(n((m#(f%(_Y(%(\H(I(X4J(Q(Y(`(e(c(=)(Y$ ( (X4 ((''''Y$((X4(((%(*()(='* Y$' ' X4' ' ' ' ' ' Y$' '& X4' ' ' ' '" '* ='l Y$' '( X4'0 '5 '4 '3 '- '% Y$' 'i X4'a '\ '] '^ 'e 'l =' Y$': 'k X4's 'x 'x 'w |'q }'i Y$'7 ' X4' ' ' ' ' ' =' 6~' X4}' w' o' h' b' c' 6r' X4s' y' ' ' ' ' =t'66j'X4i'c'['T'N'O'6Y'5X4Z'-`'(h'(o'(u'/t'6=b'{Y$\'Y'8X4Y'?S'EK'ED'E>'?>'7Y$A'G'yX4H'rN'lU'm]'mc'sb'{=U'6O'}X4O'I'A':'4'4'|6:'X4:'A'H'O'U'U'=L'6I'X4I'C'<'4'.'.'60'X41'7'>'F'L'L'=H'IY$F'F'X4G'A'9'2'+'+'Y$+'-'IX4-'A3';:';B'<H'BH'I=H'6J'LX4J'SD'Y='Y5'Y/'S/'L6-'X4-'3':'B'H'H'=L'Y$L'R'X4R'L'E'='7'7'Y$1'1'X41'7'>'F'L'L'=V'Y$\'\'X4]'W'O'H'B'A'Y$A';'X4;'A' H' P' V'V'=d'\6n'X4o'!i''b'(Z'(T'#S'6I'^X4H'VN'PU'O]'Oc'Ud'\=v'Y$w''^X4'e'lx'lq'mj'gj'`Y$\'['X4Z'`'h'o'v'v'='Y$''X4''''''Y$'t'X4t'y'''''='(Y$'`'X4''''''Y$'c'+X4'#''''!'(='kY$' ''X4'.'5'6'7'2'+Y$''nX4'g'`'_'^'c'k='Y$((hX4(p(w (x(y't'lY$''X4''''''=.(Y$@(Z O( X4P( K( D( =( 6( 4( Y$%(_ (X4(((%(,(.(=i(-!Y$(!(!X4(!(!(!~(!w(!u(!Y$l(!N(2!X4M(+!Q($!Y("!`(!!g(&!i(-!=(j"Y$(#(!#X4((#(0#(2#(4#(0#()#Y$( #(q"X4(i"(b"(`"(^"(c"(j"=)#Y$))#$;)X$X4=)_$:)g$2)i$+)k$$)h$!)`$Y$)+$(#X4(#(#(#(#)#)#=h)$Y$)%)%X4)%)%)%)%)%)%Y$j)(%O)$X4L)$O)$V)$])$e)$h)$=)%Y(*K&G*&K*&X4P*&O*&I*&C*&:*&6*&Y(0*&)X&) &X4)&)%)%)%)%)%=*'Y4*'*>'*='+]'+\'9+h'X4@+j'D+r'B+y'?+'8+'1+'6 +u'X( +u' +u' +t'6*T'X(*T'*S'*S'Y$*&'*'X4*'* '*'*'*'*'=+n'Y0+\'+]'",=' ,>'U,'X4Z,'c,'h,'l,'k,#'f,('61,S'X(0,S'0,T'/,T'6+t'X(+u'+u'+u'6+'X4+'+'+'+x'+q'+n'=,&Y(,&,J&-&X4- &-&!- &(-&*-&'-&Y(-Y&,&,&X4,&,&,&,&,&,&=L-%Y(Q-%-%-$X4-$-$-$-$-$-$Y(-)%j-%d-%X4a-%Y-%R-%K-%H-%L-%=-k$Y$-#$-#X4-#.# .#.#.#.#Y$-,$-t$X4-{$-$-}$-z$-s$-k$= .5#Y$..#P.~"X4R.w"Y.r"`.t"h.v"l.}"j."Y$I. #:.<#X48.D#1.H#).F#".D#.<# .5#=o.!Y$|.!.A!X4.:!.5!.7!.8!.?!.G!Y$.!."X4.". "y. "q. "m."o.!=. Y$.Z . X4...... Y$._ . X4. . . . . . =.}Y$//X4/ ///!/ /Y$//X4/.....}=/;Y$/ 0/X41/x8/s?/tG/uL/{K/Y$9/2/?X41/F*/L#/K/J/C/;=@/Y$Q/`T/=X4U/5\/0c/1k/1p/8o/?Y$l/c[/X4Z/S/ L/E/?/@/=b/Y$g/r/X4r/y/////Y$/}/X4|/u/n/f/a/b/=}/r6/X4//////6/tX4/|///|/z}/r=/.6/qX4/i/d/d/d/k/r6/0X4/7/=/</</6/.=/Y$//,X4/%/// /&/-Y$//X4//////=/6/X4//////6/X4//////=/`6/X4//////6/aX4/h/n/n/n/h/`=/Y$//^X4/V/P/P/P/V/^Y$//X4/#/)/)/)/#/=/6/X4// / / //6/X4//////=/6/X4//////6/X4//////=/MY$//X4//////Y$//LX4/S/Y/Z/Z/T/M=/6/KX4/C/=/=/</B/I6/X4//////=/ 6w/ X4w/ |/ / / / / 6/ X4/ / / / / / =m/ Y$g/: [/ X4[/ `/ g/ o/ v/ v/ Y$/7 /~ X4/ / {/ t/ m/ m/ =N/= Y$9/ 9/ X48/y =/r E/q L/p S/v T/} Y$T/ i/: X4i/A d/H ]/I U/J N/D N/= =(/ Y$/ /> X4/7 /0 // "/. (/3 )/; Y$9/ B/ X4C/ >/ 7/ // )/ (/ =.Y$..X4......Y$./X4// //..=.xY$.a.X4......Y$.\.sX4.{.....x=.9Y$|.`.X4^.yc.rj.pq.ny.sz.zY$..4X4.;.B.D.E.@.9=@.Y$...FX4 .?.8.6.4&.8(.?Y$I.Z.X4\.W.P.I. A.@.=-Y(---X4- -----Y(- -.X4..----=|-Y$Q-./-X4+-.-5-<-D-G-Y$j-#-X4-----|-=,qY,,p,",,X4~,~,,,,,Y,,,-c-cX4 -j-r-v,y,w,q=!,~Y0 ,}",~+^+_+KX4+I+A+:+3+/+26+FX(+F+F+G6/,gX(0,g0,h1,h62,iX48,n9,v4,|0,',!,~=<?q{ % % $$AA( FEMF+*@$%33BbD'D@ 0$۫*>ARIAL6@ pdVLAN 3D8'@ ?U.@ ?DD4@ ?a;@ ?C@ ?D F@ ???   RpArialMonotype:Arial Regular:Vek%`xu|6`u|`|C`|u`N`Dw pwp8wDwp}w:w@, `,`\?`pE\>`dv% TTS]AA]LPVTTIQAAQLPLTT<GAAGLPATT1;AA;LPNTT-.AA.LP TT!)AA)LP3% FPDEMF++@ *@$%33BbD'D6@ INFORMATION TECHNOLOGY?33S?3?33S?3;?33S?3C?33S?@33S?@33S?D@33S?@33S?%%@33S?D(@33S?Dh0@33S?D8@33S?;@33S?A@33S?DH@33S?DhP@33S?DX@33S?D_@33S?Dh@33S? n@33S?Vv@33S?~@33S???   % TTAALPITTAALPNTTAALPFTTAALPOTTAALPRTT{AALPMTTlwAAwLPATTbkAAkLPTTT]`AA`LPITTP[AA[LPOTTCMAAMLPNTT?@AA@LP TT2;AA;LPTTT&0AA0LPETT$AA$LPCTT AALPHTT AA LPNTTAALPOTTAALPLTTAALPOTTAALPGTTAALPY% FEMF++@ @H<N%?A@@ ?MCN_@(]C_@Cm5CCCCC']C%D>MC&D D(DDCD%CD}5C D_@@MC_@@$$==_888% %  ; IY8FFML_^[uX4TxLvHpDiFaM]6tGX(tFuFvF63X(2226+X(+++6 .X4 / 6 = D J I=Y(#`X4f{hudo`mXqQY(X4=FY$.X4}vY$#.X419@GIF=Y(X4zrnqY(y X4=c2Y$>1X4/(!Y$#I+X4K$S Z"a$e+c2=lY$%X4,1/.'Y$fX4_Z\^el=Y(acX4kpnmf_Y(\X4=Y$tX4sld]XYY$nwX4x=`* Y$N G X4F ? 8 0 + , Y$3 E& X4F M U \ a" `* =6l Y$3 !( X4 0 5 4 3 - % Y$ i X4a #\ *] 1^ 7e 6l = Y$: k X4s x x w q i Y$7  X4      = 6 X4      6 X4      =66X465X4-(((/6={Y$8X4?EEE?7Y$yX4rlmms{=6}X4|6X4=6X46X4=IY$X4Y$IX4A;;<BI=6LX4SYYYSL6X4=Y$X4Y$X4=Y$X4Y$X4   =\6X4!'((#6^X4VPOOU\=Y$^X4ellmg`Y$X4=Y$X4 Y$X4=(Y$`*X4*%Y$c+X4#!(=9kY$N R'X4S.M5F6?7827+Y$3nX4g#`*_2^8c9k=dY$jhX4p}wuxnygtflY$OIX4HMU\cd=Y$Z  X4      Y$_ |X4{=-!Y$!!X4!!!!!!Y$!2!X4+!$!"!!!&!-!=j"Y$>#F!#X4H(#D0#=2#64#.0#,)#Y$# #q"X4i"b"`"^"c"j"=k#Y$#$X$X4_$g$i$k$h$`$Y$y+$Q#X4O#S#Z#a#i#k#=$Y$%%X4%%% %%%Y$(%$X4$$$$$$=S%Y(}K&&&X4&&&&&&Y(&fX&; &X48&:%A%G%O%S%= 'Y4'L>'J=']'\'h'X4j'r'y''''6vu'X(uu'tu'tt'6=T'X(<T';S';S'Y$&''X4' '''' '= n'Y0V \'T ]' =' >' 'X4 ' ' ' ' #' ('6 S'X( S' T' T'6a t'X(a u'` u'_ u'6( 'X4! ' ' ' x' q' n'=!&Y(&!&X!J&x!&X4|! &!&! &!&!&!&Y(o!Y&;!&*!&X4%!&!&!&!&!&!&=!%Y(!%!%!$X4!$"$"$"$"$"$Y(")%!%!%X4!%!%!%!%!%!%=*"k$Y$C"#$d"#X4f"#n"#u"#|"#"#~"#Y$\",$D"t$X4B"{$:"$3"}$,"z$("s$*"k$="5#Y$"#"~"X4"w""r""t""v""}"""Y$" #"<#X4"D#"H#"F#"D#"<#"5#="!Y$"!"A!X4#:!#5!#7!#8!#?!#G!Y$#!""X4""" "" "" """"!=# Y$,#Z ;# X4<#C#K#R#W#V# Y$G#_ 4# X42# +# $# # # # =Q#}Y$k#n#X4o#v#}####Y$#l#X4k#d#\#U#P#Q#}=#;Y$# #X4#x#s#t#u#{#Y$##?X4#F#L#K#J#C#;=#Y$#`#=X4#5#0#1#1#8#?Y$#c#X4## ####=#Y$##X4######Y$##X4######=#r6#X4##$ $$$6$tX4$|####z#r=#.6$qX4$i$d$d$d"$k"$r6$0X4$7$= $<$<#6#.=$Y$$$,X4$%$#$+$ 1$&0$-Y$+$*$X4)$#$$$$$=$6 $X4 $&$.$5$;$;$65$X44$.$'$$$$=!$`6$$X4$$*$1$9$?$?$6<$aX4<$h6$n/$n'$n!$h!$`=%$Y$&$$$^X4$$V*$P2$P9$P?$V@$^Y$A$@$X4@$#:$)3$)+$)%$#%$=#$6!$X4!$'$ .$ 6$ <$<$6>$X4>$8$1$)$#$#$=$6$X4$$%$,$2$3$69$X49$3$,$$$$$=$MY$$ $X4 $$$$&$&$Y$+$.$LX4.$S)$Y!$Z$Z$T$M=$6#KX4#C#=$= $<$B$I6$X4$$$ $$$=# 6# X4# # # # # # 6 $ X4 $ $ # # # # =# Y$#: # X4# # # # # # Y$#7 #~ X4# # # # # # =#= Y$# # X4#y #r #q #p #v #} Y$# #: X4#A #H #I #J #D #= =# Y$# x#> X4w#7 |#0 #/ #. #3 #; Y$# # X4# # # # # # =d#Y$L#F#X4E#J#R#Y#`#a#Y$g##X4#{#t#l#e#d#=0#xY$,#a #X4 ####&#'#Y$G#\K#sX4L#{G#@#8#1#0#x="9Y$""X4"y"r"p"n"s"zY$# #4X4#; #B#D"E"@"9="Y$"w"FX4u"?y"8"6"4"8"?Y$""X4"""" ""=P"Y(C"""X4" ""$","/"Y(0" \"j"X4m"i"a"Z"S"P"=!Y$!.!X4!!!!!!Y$!#!X4"!!!!!=X!qY,X!p%!" X4 !Y,!ARIAL6@ pdVLAN 2D8'@ ?U.@ ?DD4@ ?a;@ ?C@ ?D F@ ???   % TTS]AA]LPVTTIQAAQLPLTT<GAAGLPATT1;AA;LPNTT-.AA.LP TT!)AA)LP2% FEMF++@ *@$%33BC'D6@  ACCOUNTING@33S?@33S?$@33S?D,@33S?4@33S?D<@33S?C@33S?|J@33S?sM@33S?'U@33S???   % TTozAAzLPATTcnAAnLPCTTVaAAaLPCTTITAATLPOTT<FAAFLPUTT/9AA9LPNTT#,AA,LPTTT!AA!LPITTAALPNTTAALPG% FEMF++@ @H<N%?A@@ 56CN_@FC_@Cm5CCCCCFC%D46C&DJ&C(DrCCrC%CsC}5CM&C_@66C_@@$$==_888% %  ;cIY8FFIFML_^uX4xvpia]6GX(FFF6 3X( 2 226F+X(G+H+I+6f.X4m/s6r=qDkJcI=TY(? #`X4fhd`XQY(,@X4ENSYYT=Y$x.UX4RJC<9}<vY$_#X4=$Y(X4Y(  X4 #'$=2Y$X4~wrtY$+X4$ "$+2=nlY$MD%X4C,<14/-.('*Y$2SfX4U_\Zd\k^oenl=)Y()acX4kpnmf_Y(\X4&+)=Y$X4Y$X4=* Y$  X4      Y$ & X4    " * =l Y$ ~( X4}0 v5 o4 g3 b- c% Y$u xi X4ya \ ] ^ e l =p Y$b: ^k X4]s Wx Ox Hw Bq Ci Y$G7 U X4U \ d k p p =S 6D X4C = 5 . ( ) 68 X49 ? G N T S =:660X4/)!65X4 -&(.(5(;/:6=({Y$"8X4?EE E?7Y$ yX4rlm#m)s({=6}X4|6X4=6X4 6X4 =IY$  X4 Y$IX4A;;<BI=6LX4S YYYSL6X4=Y$X4 Y$X4 =Y$""X4#Y$X4   =*\64X45!/'(( (#6^X4VPO#O)U*\=<Y$=K^X4KeFl>l7m0g0`Y$"!X4 &.5<<=UY$beX4f`YRKJY$G:X4:?GNUU=r(Y$x`X4{sllY$]cW+X4W#\dkr!r(=kY$ 'X4.5672+Y${nX4zg`_^ck=Y$hX4pwxytlY$X4=Y$Z  X4      Y$_ X4=/-!Y$M!V!X4W!S!L!D!=!;!Y$2!2!X4+!$!"!&!!-&!/-!=tj"Y$#!#X4(#0#2#4#0#)#Y$ #Zq"X4Xi"\b"d`"k^"rc"tj"=#Y$#$X$X4_$g$i$k$h$`$Y$+$#X4######=.$Y$I%u%X4x%u%n%g%_%\%Y$0(%$X4$$$#$+$.$=%Y(K& &&X4&&& &&&Y(&X& &X4&%%%%%=g'Y4t'>'=']'\'h'X4j' r'y''''6u'X(u'u't'6T'X(T'S'S'Y$a&'T'X4O'O 'T'Z'b'g'=|n'Y0\']'='>''X4 ')'.'2'1#',('6S'X(S'T'T'6t'X(u'u'u'6'X4~'v't'qx'uq'|n'=q&Y(&J&&X4 && &&&&Y(Y&&&X4&z&t&n&m&q&=%Y(%F%Z$X4\$d$k$r$v$s$Y(_)%0%*%X4'%%%%%%=k$Y$#$#X4######Y$,$t$X4{$$}$z$s$k$=5#Y$#~"X4w"r"&t"-v"2}"0"Y$ #=#X4D#H#F#D#=#5#=5!Y$B!]A!X4^:!e5!m7!t8!y@!wG!Y$]!O"X4M"F "? "7 "3"5!=w Y$Z  X4  Y$_  X4   z u w =}Y$X4Y$X4}=;Y$ X4xst u{Y$?X4GLKJC;=Y$`=X45#0*122786@Y$3c!X4   =)Y$.9X49@GOTTY$IDX4C<5-()=Dr6SX4SZainn6_uX4^|XPICzDr=Z.6eqX4ejldsd{eks6u0X4u7o=g=`<Z6Z.=mY$ns-X4s%z &-Y$X4yrlm=x6~X4~6X4}wx=`6X46aX4hnnnh`=Y$^X4WPPPV^Y$X4#)))#=6X4   6X4=|6uX4u{6X4||=qMY$niX4inv}Y$LX4SZZxZqTqM=a6WKX4VD\=d=k<qBrJ6|X4}wphba=N 6> X4> C K R Y Y 6i X4i d \ U N N =4 Y$.: " X4" ' . 6 = = Y$I7 O~ X4O J B ; 4 4 == Y$  X4y s r q v } Y$ /: X40A +H $I J D = = Y$ ? X47 0 / . 3 ; Y$  X4       =Y$X4Y$X4=xY$akX4inu}Y$\sX4{x=O9Y$B&X4$y)r0p7o?s@{Y$]j4X4k;gB_DXEQAO9=Y$FX4?8648?Y$ X4" =Y(tsX4p szY( X4=BY$.X4  Y$0#[X4^[TMEB=qY,p"OIX4DEJOX]Y,dcdX4jsvzwq=~Y0}~^_{KX4tIpAs:u3}/26FX(FFG6gX(ghh6iX4nw|~=<? { % % $$AA( FEMF+*@$%33BC'D@ 0$۫*>ARIAL6@ pdVLAN 1D8'@ ?U.@ ?DD4@ ?a;@ ?C@ ?D F@ ???   % TT?SR]AAO]LPVTT?IRQAAOQLPLTT?<RGAAOGLPATT?1R;AAO;LPNTT?-R.AAO.LP TT?#R)AAO)LP1% FEMF++@ *@$%33BC'D6@ ADMINISTRATIOND @33S?@33S?@33S?D#@33S?&@33S?V.@33S?M1@33S?j8@33S?>@33S?F@33S?DM@33S?DDT@33S?:W@33S?_@33S???   % TTTgAAdLPATTTtgAAdLPDTTTfgrAAdrLPMTTT`gcAAdcLPITTTTg^AAd^LPNTTTNgQAAdQLPITTTBgLAAdLLPSTTT7g@AAd@LPTTTT+g5AAd5LPRTTTg(AAd(LPATTTgAAdLPTTTTgAAdLPITTTg AAd LPOTTTgAAdLPN% F@4EMF++@ @$&@BBB( $$=='% % Ldpq*!??% % $$AAFEMF+@<0NJ ?@H<&@;CB;CBB&@B&@;C@$$==_888% % V0nt* & &** % % $$AA( FEMF+*@$33B%B&@B@ 0$۫*>ARIAL6@ |pFLOOR 23F>>)>>>>w?>w%?>wD?>"ZP?>??   ( RpArialMonotype:Arial Regular:Vek%`xu|6`u|`|C`|u DwPMww7w`w awz $  , `,`w1w aw   a ! dv% Tx\AAL\FLOOR 2 % F@4EMF++@ @$&@C23BMB$$==% % Ldg3*Z!??% % $$AAFEMF+@<0NJ ?@H<&@8 D1hB8 D1hBC&@C&@8 D@$$==_888% % V0j6*F#F#**F#% % $$AA( FEMF+*@$33B%B&@C@ 0$۫*>ARIAL6@ |pFLOOR 1>ff> {>ff>U>ff>Ue>ff>?ff>7?ff>UC?ff>??   % TxUAAL\FLOOR 1 % FD686EMF++@ %@,@$W=n=|A"D@ 555li EMF5@FL>GDICW&   h  h  - "- "---$n_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]*- %n_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]* --$*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3- %*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3 "---$ 9 :{ a A - "-% 9 :{ a A  "---$ 9 :{ a A - "-% 9 :{ a A  "---$ L nyL : - "-% L nyL :  "---$ L nyL : - "-% L nyL :  "---$ {Y _ kk- "-% {Y _ kk "---$ {Y _ kk- "-% {Y _ kk "---$'9 Y ? 88'- "-%'9 Y ? 88' "---$'9 Y ? 88'- "-%'9 Y ? 88' "---$ %a ] /@ @} %- "-% %a ] /@ @} % "---$ %a ] /@ @} %- % %a ] /@ @} % --$ o -o ]' - "-% o -o ]'  "---$ o -o ]' - % o -o ]'  --$ | + %- "-% | + % "---$ | + %- % | + % --$E:a -| l `:`#E- "-%E:a -| l `:`#E "---$E:a -| l `:`#E- %E:a -| l `:`#E '&1Copyright 1996 Microsystems Engineering Company&All Rights Reserved    h h ! % &% &% % '%  V Vn_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]*% (  W Vn_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]* % '%  V +*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3% (  W +*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3 &% ( % '%  V<w ' 9 :{ a A %  &% ( W<w ' 9 :{ a A  &% ( % %  V<w ' 9 :{ a A %  &% ( W<w ' 9 :{ a A  &% ( % %  V<$+pG L nyL : %  &% ( W<$+pG L nyL :  &% ( % %  V<$+pG L nyL : %  &% ( W<$+pG L nyL :  &% ( % %  V<( t% {Y _ kk%  &% ( W<( t% {Y _ kk &% ( % %  V<( t% {Y _ kk%  &% ( W<( t% {Y _ kk &% ( % %  V<t.I'9 Y ? 88'%  &% ( W<t.I'9 Y ? 88' &% ( % %  V<t.I'9 Y ? 88'%  &% ( W<t.I'9 Y ? 88' &% ( % '%  V<x( %a ] /@ @} %%  &% ( W<x( %a ] /@ @} % &% ( % %  V<x( %a ] /@ @} %%  W<x( %a ] /@ @} % % %  V<%-qI o -o ]' %  &% ( W<%-qI o -o ]'  &% ( % %  V<%-qI o -o ]' %  W<%-qI o -o ]'  % %  V<* v' | + %%  &% ( W<* v' | + % &% ( % %  V<* v' | + %%  W<* v' | + % % %  V<v0JE:a -| l `:`#E%  &% ( W<v0JE:a -| l `:`#E &% ( % %  V<v0JE:a -| l `:`#E%  W<v0JE:a -| l `:`#E " ( % % 0 K( ( ( @ @, iCC!b !!s % % % 0        : # >>>A#D$$>>>A#Ds Rp"System ww3Dwx33!wp8wDwp}w:wFw|`|C`|`N` uB`k%`xu|6`u|`C`|u`N``uB`8ddv% F(GDIC# >>>A#D$$>>>A#D# L8BBcBA#D$$L8BBcBA#D# >>>A#D$$>>>A#D# ܀<s<A#D$$܀<s<A#D# ܀<s<A#D$$܀<s<A#D# ܀<s<A#D$$܀<s<A#D! % &% &% % '%  V mn_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]*% (  W mn_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]* % '%  V m*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3% (  W m*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3 &% ( % '%  V<@_ 9 :{ a A %  &% ( W<@_ 9 :{ a A  &% ( % %  V<@_ 9 :{ a A %  &% ( W<@_ 9 :{ a A  &% ( % %  V< > L nyL : %  &% ( W< > L nyL :  &% ( % %  V< > L nyL : %  &% ( W< > L nyL :  &% ( % %  V<!@ {Y _ kk%  &% ( W<!@ {Y _ kk &% ( % %  V<!@ {Y _ kk%  &% ( W<!@ {Y _ kk &% ( % %  V<?^'9 Y ? 88'%  &% ( W<?^'9 Y ? 88' &% ( % %  V<?^'9 Y ? 88'%  &% ( W<?^'9 Y ? 88' &% ( % '%  V<A_ %a ] /@ @} %%  &% ( W<A_ %a ] /@ @} % &% ( % %  V<A_ %a ] /@ @} %%  W<A_ %a ] /@ @} % % %  V< ? o -o ]' %  &% ( W< ? o -o ]'  &% ( % %  V< ? o -o ]' %  W< ? o -o ]'  % %  V<"A | + %%  &% ( W<"A | + % &% ( % %  V<"A | + %%  W<"A | + % % %  V<@_E:a -| l `:`#E%  &% ( W<@_E:a -| l `:`#E &% ( % %  V<@_E:a -| l `:`#E%  W<@_E:a -| l `:`#E " ( % % K( ( ( FGDIC" " % ( " FEMF+&@@<0Ne>@, 7 C DdBUo#D@$$==_888% % W$M5q#(% % $$AA( Ld)??" FEMF+@ ObjInfo VisioDocument&VisioInformation" SummaryInformation( n Visio (TM) Drawing &TRd !fffMMM333U8@ TZ Arialz@F J"X NTimes New Roman@NWingds@NMonotype Sort Symbol5T?? Y@-1UJ:DT1EW-hPT8* z/U~b b0zGz?)@4D.gSb}}}g !k5@|'gJgK,K,L/&5Ϊ$? APg&,,'1/C%&T$&~ } A& y  ~|~,)~Z?l2 U } } }}U}}}}-?|%aBUEEEEEE@?N3OEJ`.BEEEEE*EE@IO5FAY; (QV V(QcTYi S)oS;oXo' @}`#glb6`e#l l l Y??\ #@5Un|K,K,K,HJ/BQAxUO ME$2A_d4OOOOOO O_DOVOhI3rXVS?[lY~bsU墖fğtΏ@gJm&  U}}}-i| 5Se' 0ULYy??4zu2U#U 蕩 z0{j@J\Ȇl/!3>B>D///QLp?d>>4(Qk`rYU-%1-(gp ٻ A. 1->^i\÷#U*Ȳ)/4// ??2XFϤS.7\߆2$n$1Jn gy nu sd3Uk +|U2q ?/&[m&,,',xQ>47ᎹxQy[,xA X/j/|/=G$Cq$b Fq@/##/m>BL)!0H)RE1!0U_֟1aQ!Aw=:B@\iBfX@3@2125xRxQxQ4"4!4!//"r88rqqJ JJCCCaaSbSaSa;;;)NN; t t`tTnt iY C$S11 1n c e@@@ @OKu` ?0u8 )r *;Zbi Sc@@@88@ϖ?@$@@u@ ?P/uoL`-br A8=u?.])8p [ z}8q ?u VP 1U@8gt?t;ۀ" bZt=G2q?? !A `0E  *  / p@q `I`?Copyright (c) 2001 Microsoft Corporation. All &s reser?ved. C=tGlCD'CDA!Cd'G hC  Z Jt ,-:""AMXA4?+a$y9yB,0%p0~  *'!:LpdV {; # S  b  z SH!0@!%E/W/s0/B//f/x////% ""b2ZG2/#H?Z?$?6???l?????CCC]f QHA?#HOZO$O6OOOlOOOOO  ccq$S;HQO#H_Z_$_6___l___t?. q.    + qVa_#Voho_Dooozooooo  EEBPUro#Vh2Dzaff$8oV#Vh2Dzԏ揰#  Qq^ V#Vh2Dzԟ"g'&1Copyright 1996 Microsystems Engineering Company@All RMs Reserved$q@u` vu @@u` w?u@@@ @u` ?u @ @u` u?q@u` vu LEd"G1G1GT--GZ"GWorkgroup Switch3'2mq? 7"C%f@ .p+L5 Fd7CD5 h T 0XNBl|U Bi|Y}6KdgƏP$H'-,V uRNjJӦ:F|ߏ] #T- B $叫]4aG}@+UJkGakc=PNVR"# <='?4UFDfP h-RTUUUA@ ?I? 3h eqYk *Ho T2w M42vQ`Network]_`  ??$6 ?9t zz?npwqcConnects the processes in your network diagram with straight lines.ndle to change shape of curve.b?pqѿ贁N? ? H D # =h 8>T P  ;UAU@? P-DT!{@-u `u`buu  K"#G@ EJ[.A p~u`h?u#zQ h A%*",'>މ@@y~5"y'///,'/* *O!|D$!: tNSs%[2 a6zk2dP C&70'! @rq?@I0?45??*br/uLAK@ %Buy@\B GCNC~""A=B""dh(*`u {`)@b@@u`Q46 н""kG!@@$ 4V M#[QP1P37 Ic`?Copyright (c) 2001 Microsoft Corporation. All Rs reserved.`Vis_D61.chm!#292718QXTQO0l>$>Ud!5 lP A(:M*?"(f]28|M*P hu 0~oDTiHBNK]FpAQa59 7M*9nRr}o kG"br]bgWrG2`C}uP PosiQq;M"FwmlxQ3mdaԏG9]T#$#D"522[1[12A(A[Qu[QPB$` ManufacturerPN0zS{ Name` Equipment<55.L^5`Product Numb2‰5kΟC#[2`O Par[225AaUgtDescrip(3`Line connOecto )i6H3O';02q?6,,IX"a"ngybUWP1[Qa5 0Z3` %pertWies'3B`NETWORK SHAPE PROPERTIES@@g@ɏ퍓QD"KK4d2%Դ2LRQQR f-@>@uQ(ghbA(BЯP#PVSOBSk20P!zSOPinal DRW file nP55±߿Ps6.P`release versQӉ59PS`9/2?4/99(}PDate GeCnePRѴ54DPb`5P4PUnique KeyԉQ` C%Shap"LU>"R`17I$ IDU*VNE Typ|u` FM Csgorq:6 qFM/Class~ʟ@SX,$,Usres,either,straQ,cd,Logical,Symbols,ReP,V.,AhPeHCT $@o!9oD&B\حHu-)V 9Y+ ^'_@+ FW!w# "݁B !א]sa4א T@}+," T(a4TfPUFDfP h-RTUUUId\!@Iн̢,@?m?I?$@ENdeqYkU Go 2w Mh2vQ`Network]` L >~X+=Oiy ?wwL  @ &BA non-manufacturer-specific input or outdevice on a c{omer.b` @@-؂-X, @` `g@-Z\hfz=UG DF P# h4/T  #ބU@\@@̺, @w@ @` @Pny u{` ?Su# t**& \%\&`z% U &00FVX\pvz $ Z#"I/ .2/ )`S#!$*c`Vis_D61.chm!#30298I`?Copyright (c) 2001 Microsoft Corporation. All "s reserved.t' #0y '| B^(0@"3"&@"%@"@!?L@Kc ` "@A@q~ @?@8@ EE?j2u0`-1CBu.0@@!rzsC]N0@ziFsOF"7u3^A @"  Ywu `u_A"0` bN1.P=u`$]5z e1b]X]sU!= Nn(ZAU#x%b'$~0`duct Numb6B"_q3kw#=C` Par=B3:q]5w#`Descrip Genericarmin alòaqX%f%%Xx"Kc Purchase Dat\IO=B` Maintenanc\N2`5X`dpGU#$6ϨInstalledY˥wωϛxWarrantyO Exp{i3 ߙfb6~RB`Sup0t Agreel:߷s w#}qN`9F1X'YL^E~B̨Phon`2^䍒gw#N`ComaGe? b^䚒z0u[@x"N`Cos$7`@ (.^䧒lT!AsseMID`p SӰal_0z0aLoc`V{Building  )ړz0Y/" Room%V#H/瓂r/s7N` GDep6!";,Q*Qŏ׊}#ssDI¥Q"rOQOQRȱȱ?RARAL{Q{Q@҂f}q}qs^@2AAXB/ WLPR026D`Origܱ DRW file nZ.Av\q$O*Q̰6.0#PFreleVvGersðfD"u9vO3@q̰8/24/99OR`%Z в[dfDU4O3@q̰50010@BUnique KeyfDU<_&XSymbo߸Shape NLineEu3[_83@A̰13ɧSIconfD@Z_l_VNEkxTy peE8_3@es` FM CN[gorJUeA?o|3@-` FMgo`wClassfD{Pl d`7д,ص,PC,PӰph@ls,Repres,VC,higpgC,M$@bqK0ԍcT]gLabelvBtbepIAK4܅vوxU@)@o@81'~߂` @/C]6u`OO?t]Lb=U0u`tt@ob\bV`Reposi±~>a !LAKRr 䠀br0@wق߆ "A(2!c ` "@aF9 HLs[u0fdgB`q݃ 1VP/ q:FJPV{Pi=ԓ1K4xEq[8BUX;'2uq@uADeaK0IaLWPy2*@@@` @+@ P^u ?7uZ? 8t> t`t(Tn`iY  I$T11 1n ce@ @`@3Iub;0u8)r * NV] 0cW/@@@8@AC#@@.?P/uL`-br A8=u?.])8p { Kz}8uq ?u P 1@8tl?t;"ۢ bZt=G2q?? !A/ p@ `0q `I`?Copyright (c) 2001 Microsoft Corporation. All &s reser?ved.E  *  ~,8C\8kG*9C:'C=:)G삐f:Adw:hC :!C@   2 j-<DK= |C6Aua$ { { $DD0%,| ؏ >  $ 1d@K!``5NT!B`, ==I:)4!"/["`C"Z!/J l {* /`W C !/BĿ !`"!/R=* 9/. =ϣ :j`E0ǰ~M0D12?jBG0l1`S2j1?o= ?C0=:-`zE0M0A1N?-B01`2T1?ݑ00ę?-=UwF?000TTABO0{B`cBTzA$O7@x;@?J7@ @O`^@Ja@a@AO'B@Q`BQO^=6@ETJ)P@Oq eP mPdQR_q BgPQ`sRQ4_! =@ 2_vP LZ4 d ePmPH Q_4 BPa`Ra_ʱPP˹_9 =a R _PPP tabo`b`baDoJW`[`_jW`$  `o t0`V`8`ao B`$q` r"qoj =B`QjIp2`o} 0p pqr'} Bpq`rqT- =  Rp=pz d P8 4 26<GKF2]aw '>΂w Pd]Ώ||: ꕀ֝N D B쏊FBbOS)0u) d.̑ (ʑtΑ>ʑ%_ p-\qԱ,/T ,RVHWR| 3gܡ 8ڡޡ G0٢ F ⽠Z#=@Ư:?dC ix >: 7ߤT@F؟l,;g }%  F{- $!/g ' L!$!J!N!J! 7|- 8/* % =- > F!/g* د !!(!|/! *>!R 7C /  SF41"? [2C41Z1?^1u0:Z1 7A0H? `0LA0A01?3 ؿ0111?180G:1eأ0ɧ?n >E@ FM@DA2On G@lAPDAjAOnA0M@~Osk@ 7|J@AOi@ABAOd?_@d&"YGX@@TQB_iG|QcRzQ$_l/dD;PS?ZP;P?_PQ_iaRa_/d_Pd-`1jBW=PVdaRo'BiWasba*4o)`-`1oBdjPo`e`q`aoi`qbqo``j?d-ÛoW`x`d`Q`tqbpxrQrqDsWpK[pZ_zWp[p_'q'i$ "6dpdeMQN @zpb NrN iw TTIMQN dv <3 p P=  ' i42*܏ d4 %   kϊ3dJwW{fw{ _ < @   Z D B_  7 }O c E r0 0 #  6 ¡~ i Ѣt n   n^ ; Jt@FrFJ8JrJpF2dAO2w sӰ_W ۰ұ/ s  KM Z\U#|'ʺ 6["W cZH_ 6 i FM (®|ʺI [=c]W _I Iђ qM b  W |jX  Ѝ ߼Q QУUn4M %V woW [  "f ?M tߊ к2W zh 5!*Wae FM 7f {}) 2^ ixv M  }T@W |x T : ,q;X! q   W  W  Ţ9 !B~<z M `9 M   eQ/ e \JA 8G ݁΅x  (# W +"x (I 1RL M  *Gsw_;  #+O W ; 4>IQ; Z+sw~c M T  I3 5W ; 2! /_ IY" A b!JY !M 0/W" ԇ**'5 9 q !/5 !A !T|! !0 /! 0:\ C0 p9B10?\E0j1C B1h1?l1 0?h1uO0V? zC0O031θ?01 P11?10:|1G80?`IS@5+ `?O BU@zA`aBxA"OI=! 0\O =@J:7` @[@p#Q0dO@1B@Q`BQO =@O2=0O1`:@@30O1BePQ`qRQ2_'PIPMZ,G=G;@N_fPFzPQ_fPaQa_`7Fb7P_y +m mra`oy +abaBotΙ` ^}bo+Y hoS>`?paNoi`"q r qoNd&5`dKpOzW]pPP$ QipqrqRdKp|OQbd[`n$zpp8 N$i 2T0ppz$dL= A-q b(〪̏犺T hTBϡ @DA|m|'. ='+gʑ (ȑȓFȑ? 0ڣv*5ɐQ *PTbqP0`A.-t_Bڡ`ءA=\_=`;h#)įB=b`I` ==|&`:;G+LBŰ`Ѳ豒LJ=?@:FSJN8ϑصrz"o܁7((Sp=AFhsFT=B)тd؉7ρا7smŰɰF+FZHŰб 7E/70gn_ei$i d` d?~dAEдjX" d"А:dn<8'nCO7b{UU?b7?ѓ$g  }{ W {|zhg A j/ ՠ M / C W $W  C* 2C H  < LH .\W x A À: M ( !W hWK 9 KB 9 ?|M mW +qWӐ$ 9AJ  K? (W1W "!/I" [R!.t b q * M /gðð{ϰϰ!/鰏"`"!z/-g1v5ʞ-5gO   <T <21? 8 #50_!F5FbaPo!3e`abaa|2oa7k`|oaI7:o`vo =`) `ao i`qbqo= d $ 0o`d;p?za iropg>##q#-rЙr#_virp#$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jw[e r              * 7    ! - 8 C M V ^ f l r v y {r |e!vugq% /ASewя~awstyx|xrߥl5P\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!h|į֯ 0BTfxxlVLCG@;}3Ű-g'[#N A4 #'-3;CValx}{z[W{d}q~Y4AN[gϩ}~~qdWЁȈb$g n + +a F8-F 4 ts Nuh4    Y잹   g d'&1Copyright 1996 Microsystems Engineering CompanyAll Rs ReservedRq@u` vu @ @u` w?u@ @`@u ?u @`@u u=?q@u` vu ԈYE숐Y"G<Y1GY/G܉ Z)G,6Z"GGeneric Terminal3'2mq? 4["C%f@ .p+L5 F k[7CD5 h4{;T GBlXZUkBiu_5[6Kd|P$H-)V ^ACMN<FD4+#4H,B I]Ja\9k]@Kk]MaGUJ=-fNz[VUFDfP h RTBUUUIp= ף?In:m??Ix QR)) ޑbYbK))t!eqYkZWUGow h,!2,!`Netoworkb`k.ZbbjZ``x&iZ%` `M" S(/ ! / . ?  ?jpmTWffllrt 3lk KA network topology with no dedicated servers or hierarchy among comput.b??贁_N? RQ3GzHzEѿUG D" # \ h,TPUUUU@p= ף?@?APy tRUT`#8*(288NNImu` #u) bM%V& V!1n"x"U" ?L@%#!$+`Vis_D61.chm!#29278I`?Copyright (c) 2001 Microsoft Corporation. All 2s reserved.'} #0#8e!]=`%!P"UH&%4#3Ym1d]d m1-TConnect To Network DeviceGB%TOfO&OOW6OO{6OOw__71_C_GB7T1GB5T2GBET3GBP!X4qUgy1.O""u`m"uP`aB%\+ooOo"/ ob1(Pxb%Vj0oUibb`o &!aX5k on0"6ra|5kd;&!g QT?/cSm1!!"}"QQX211|2bQbQb3! !R!!2؄ @B!!!(BcS!g3#vsort036! 3O0inal DRW file nameQ0%q\1 6.u0# 3>releas?e vers81UX5:d!10/11/992`Date Gene50O2|54j0`5"044 3 Unique KeyTe<Symbol"`Shape ProdunPLinS33Jj0ac`O17Q0wIcon IDTUI[mVNE EquipmenoPypS51# ` FwM Cgor9E1(` FMKo^ClassT@EayWaR#HPeer,RepI1nts,nuS,topology,Log_ical,gslI0,V,h0#erUcS$$@ܲmX5^X-$$"CC@TQX2((|2(ry"Wa$"` ManufaOctur03`M 0 NQCI%Q_}NumbۺFXX5kfxߑ#(` Par(!X|5ߑ#"`}Descrip71T` -to-pmHnWT!T|5i%V %!!f d%}pe_rtiesN$''"`NETWORK SHAPE PROPERTIESQ!5P x >NF hHD: H ;hZ(>T9 B(AUA?A3ÿ?7A?W?P6 tu`  t?  hn>uU[eul p b >U5 "L@#5 "TABqH!M$5 `I`?Copyright (c) 2001 Microsoft Corporation. All |"s reservedO.l>[0>Udd[[ ] a2 5al [H6ek en1U"  g6(@B:R?7r?n113>??11|;O0Od?TB  9 BAU-A? UP6 t` m t hb"3n>uLR\ulg b >U `0 "6 < 3B#5 3"A$qm$5 ֨`I `?Copyright (c) 2001 Microsoft Corporation. All "s reserv?ed.l>#0>Udd#3 Ԉ ] a:2@5@0 =\b\WKR  L6@b:z??1E:b??`331Y%'K8@3OG|2(O;r$BC ^Peer-to-pP_H'*V 4D8?/O=^GF< ]##^B L]WaGV_@U+kWCa-b򄴐?eEAh UFDfP h-RTUUUA@ ?I? 3h [> eqYkJ  Ho@Rw M2Q`Network}` . \?o  _# ?..:? ?j n`Uyek_k|f`cConnects the processes in your network diagram with e"er straight or curved lines.ape7 of8.mb߿?紁N\??YH D  D =h4>TPYY9 UyAoU@?;fP!3|@u `u bu`+u - 6mu` ?u`b"<, @#  W AO$&A UUis,'>d/&?'I9#@j'0#?.@'!""//'/%H/ :79$@6 """!/LO%9#145 I`?Copyright (c) 2001 Microsoft Corporation. All 2s reserved.h`Vis_D61.chm!#29272'-?@rq?@IW@LEUE??rzBC*'0`A&@bC ZOBu 0QA^Su^]8]}Y`uAy@db)Pu`{8& MWN5D@0l>(>Udi5 -(g(R<"SYuSoheX(^d$#< rEY >fI8QHg92cm@dao*G8T 0"abEtL2Rt2-(A'p154C(S` ManufacturerA3y Namec` Equipmentbq[%qo/#8"`Product Numb{8"$rL5k/#Uqp Pa r,wXr–5x/#yb`&Descrip1 CLine-cu@ connectoĬpyb&8֏pAhaY=I' EoGD֞?{R odDFr>`CDCD>`CKPosi7d"   q7"q(\ϟ\h ?F'cC)H@`i(˯3U?P7'0OBq\b0",yHqaHqςnPzt511a5 0ޡ` %&pe_rtiestq'B`NETWORK SHAPE PROPERTIESQOg`WoW},!'p!**v+L2d2lRqq|hh#yac==q@!^^%Qe-(9$s^? tptRh#C[%B~P @VSOBS20%@!3O0inal DRW file np @L5p\a %Q@6.P`9release vers1P5tS`9/24/99`Date Gene0B Ri`504%@Uniq?ue KeyOlU^}Q?s` CQShap]'EO|xc`17>:tIP IDOxx@RSVNE v TypN wx"c` FM Cgor3DA1FMx[^>ClassORwy h C^Eu,J,P,Usre,either,stra1d,Logical,Symbols,Rep@, V,h0qѬXC$@ p/BKLܭ! Hu)V Ϲx~gAWFːk#,אKB dҐlma<Nr@+kOr-a47|rPUFDfP h-RTUUUI̘"@I{A@??I?$@ENdeqYk GoP 2w M2vԸQ`Network}]` 2 $?/&  y&ppޕ%ihXyOXQA device that connects two or more ne rk segmenLayer 3 ofe OSIdel.bdft@@̀A@-؟-@ U 3UG DF P# h4/T  #~U@̱@@A@@df"7@@ȱt@Py u` 7?u# e` **% HC&Lf% * &00HDbf  "Z/`;#l!q$I*c`Vis_D61.chm!#29282I`?Copyright (c) 2001 Microsoft Corporation. All "s reserv?ed.f' #0'e;'| .&"A3BP7%"!L@霑K+؂-6#@A@qDZ0?@8055U?2u0`-12u70@UA1!rfCw0@zF O+F$!"ay3@AV "  Yu `uA"0` b1@u`);$5z 44b]MUPe!= Nn(ZA53bf't!l!~03` %PropertiesXR '2`NETWORK SHAPE PROPERTIESQ1Q2%;'_ScQD?AA`Hide Equipment Label~A`ShownnqXPAc!s.c[2]&@@73&M/!R]%;#8oSVC[a%eajbTex!ntrol Handle@`bDejSkdczQ3;#_V:zQk+`gEditno" on3eCEm`]Tu78TI2"]"3112/(+ql!l%q0$` ManufacturerTQ2` Name` of݁]%qp1#:"`Pduct Num b&:"Oa3ko1#3` Par2#*ӟa51#r`DescriprB Rout&rQgAkAA12"L]"``3AA2D11Bdd qq@aaQ@1! /(Bq0 LGCVI1563D`O inal DRW ?file nJ ѱ]%_aA 6.0## release vers!$3s10/25/99B`Date Gene "ѱ5Bθ5000530Unique Key#D >`tTnTv iY C$S11 1n c @f"@@t@i u` ?0u8 )r *;Zbi Tc@f@@88@'@@@ ?P/uL`-brk Ak8=u?.])8p - z}8q ?Mu P 1@8t?t;m" obZgt=G2q?? !A `0E  *  / p@q `I`?Copyright (c) 2001 Microsoft Corporation. All &s reser?ved.%jC& qGd'zC<&h'C(AT)!C)'G)hC(   h  --E"AM)T A4U?+a$n_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]#*B,0%'9K]o/#/5/G/Y/k/}////t~$$*"AT@4 @N@{ޫB3A%@L@r@COwAA$}@"xA/u@pAlAi@dAa@]@uY@TAPA*LA)I@E@ A@@˻'9 Y ? 88"~"4~6HZlM"E.Bɽ %a ] /@ @}Aθdv#/$/ //.)\/@ o -o ?]'!/?6/H/Z//X??/??/? | + %@A?.?@?@OROz???0OOTO?__OOE:a -| l `:`#Q`OrOO_^OOOt___*_HoZo`U'&i1Copyright 1996 Microsystems Engineering CompanydAll Ras ReserwvedSdq@u` vu u@f"@u` ?u@f"@@t@u` ?u @t@uo` u?q@u` vu /7E4/:"G/\0G//G40+G0"GRouter3'2mq? ,"C%f@ .p+L5 FT-7CD5 h!PT ,  Bl-Uk@i,*k6KdlgJP$H+V ^$R[OU]iFu#LvB wY|d4o^a@+koBBGDAx)PN ߀VUBUUU t4贁N@%X-K@ Ώ8C-Ϗ7AUBUUU "t4贁N@%X-K@ ڏB8C-Ϗz7AUzUUU U#$%&U'()*U+,-./01t4贁N@%X-K@ \͑eC-ӏ_2AUBUUU <t4贁N@%X-K@ ۏ8C-ԏ7AUFUUU =>t4贁N@%X-K@ ۏ;C-|ՏM7AUBUUU ?t4贁N@%X-K@ ܏8C-Ə7A@,ΏMR@ΏMR@ҏ8OR@ӏŒMR@ԏSMR@ՏޓMRH<( H<( H<( H<( H<( H<( EُŔ REҏҔ RElӏߔ RElԏ RE4Տ REDُ R_( ܏ SLˏ*!-B!*/"A^\S|ajStː6uSW/?9+PPDُ* ?fD@!\@qg 9Oas=1*4 R< #5GYk}D C:\Program Files\Microsoft Office\Visio10\1033\Solutions\Network\Generic Manufacturer Equipment (US units).VSSD<7"4FXj|  C:\Program Files\Microsoft Office\Visio10\1033\Solutions\Network\Internet Symbols (US units?).VSSC<"4FXj|r C:\Program Files\Microsoft Office\Visio10\1033\Solutions\Network\Logical Symbols (US units).VSSC<"4FXj|zD :\Program Files\Microsoft Office\Visio10\1033\Solutions\Network  Devs (US units?).VSS;<"4FXj|D C:\Program Files\Microsoft Office\Visio10\1033\Solutions\Network\Telecom (US units).VSSF<"4FXj|D C:\Program Files\Microsoft Office\Visio10\1033\Solutions\Network\PC and Peripherals (US units).vssI<"4FXj|D C:\Program Files\Microsoft Office\Visio10\1033\Solutions\Networkinters and Scann(US units).vss_('*d5PC!L6ב+/7/8U}/4:a/|;/<@/ >/EU P (?f#D@;,O@TFD'Tey@ ahm$TB qUA  R@Aw\P@??A.$@ L^pf`Rq||b2?u`FQ "&"u0)O.(@.+;ENx>x0KSQ@'f%3.CW@ϖ@$@Un {EWTmDU߲433g3v!-+X=O֖$@\ﶊ{ďj="1僙{f ZaZa!3EW{ų͟]d'9Kɯۯ#5*EW995}a'FU9uʿvϑ$ƙ?OYkʯ???1m5,[OmO8O?M_p$Jq/h,AdSR9EU/ W+%&z9CDH/yߋߝ߯o= -?Qcu?Y!H)Jd"f2uov f0W:-W1xV!! oU@QW9@@fJ@@_'8YHYGP%wЕ6Hʟ423o5@@D=J/@)Rp9E nm @z3[phnQ!pҞ?|9B.G F6KsU "4  !A3tT% t`uzs W1+/CO//+9 x+x6Zl~.ߴXsqO@2p-@@jo7Nhd'?lpsHʒ$a~mY{F@@`5-Mgfuܐ`uT`z0@גxXx6#E/Yi/~ a |@boS0!3//%@\0/+3 Hw,# { ?L??T[/?z)x?,vhe~?\OnOOOOOOOd._!_"4FXj|_///o9|_jm !~od !oo_oooo@ͻ H3tH2<`EsQ@ysbd5GOO}!?O؏/)/ 2DVhzŸԟuO&O8OJO\OnOOOOEЯ⯱qq);>?toƵw(:L^pςqϾPuϚ 2DVhz߀ߞ߰٠);Xo_qqq3EY۽D*@@EX[癠ڵN4Pk3Ogoqb U@Ws)@@Ұe o}!a1f@1$OqZÏ A/Tڽd/ߍ/ݟ/'9/L&S?.?@?R?d?v?(?r9-??ӏ -?QcOO?/-]%E\%^_\?___x_lP̬PT0_F#mSowi8,DoU@`o+= //@R|!!e+=Oas_0_//%/7/I/[/m///o%Z}%a}ѯ+=O Tep!ieoѿ?+=Oasυϗϩϻ*O'9K٣a[meO?n߲xsF&1@f@@@poE0BjdwR2h~Vi虙^1$I@|v0@RpEg`@z3agyACpU`˾\TOcaTLc///UOOWit{A1To}h_z_(:aWݣa}OO: 0BTfx8J}oooooooo //:?=. .$CX * $A5mё?:$ 1Щ_Q3$oB@@L@Wt*QV1x8T eD$rDDiD2agt&O8OJO^CC1Di2oqoq11K"4!4! V1XTC1no V1!04!0%5g/4!Ee<,@VU%U%_w-ᅏ),7Ay; /W ?!&2c0c71eEވ>{doi rer1%fߢ3@'@7=sDu>*1R<=?Z3WZ[Q AZcRZRY/o AG% A" ;K!VQnoU%d l`#P-^Х^ވxr3*$׀@@! @ )2pK wC0@z3JEy+[? t[QCr*1K#yF5r1%??DU2SU0d аv"A 5t@`zsAOVOXOjO|OKuY<3[Qկ$%[QpOd??((/'!K!$pRU 0) W0xW%!CI[mOOO_"_4_F_X_jX(((Ujv UUUUU "#U$%&'U()*+U,-./U0123U4567U89:?t4+贁N@%X-@ C-TC~ A@dBIRH<( EB R\\D.A޺@?Bɻ.PDC.PU1( O-D&U=%Q b -h"/T)T)+U- s& y )ɂ))ĸw|w!@ !*`Visio Network Solutions'*`http://officupdate.com/v/ >*`@A>- H*)=E/K"Y-(E//<GuideTheDocPage-1Gesture FormatRow_1Net-NormalNet-Thick lineNet-Thin lineBlack fillNet-Opaque backWhite lineArial centeredArial top leftArial topTimes centeredTimes topTimes top leftWorkgroup SwitchManufacturerProductNumberPartNumberProductDescriptionDrwfileRelVersionDateGenerdvisShapeIDvisProductLinevisIconIDvisEquipTypevisFMCategoryvisFMClassvisKeywordsvisVersionConnectorLine connectorGeneric TerminalPurchaseDateInstalledDateWarrantyExpSupportAgreementSupportContactNameContactPhoneCommentsCostAssetNumberSerialNumberLocationBuildingRoomDepartmentLine connector.8Line connect?or.11Workgroup Switch.3Line connect?or.14Generic Terminal.15Line connect?or.17Generic Terminal.18Line connect?or.20Generic Terminal.21Short dashed? linePeer-to-peerLine-curve connectorScaleFactorRouter@@3D˽ E3ս E3 E3G3 E3̦ E3䦒G34G3KE3,ZG3DsE3\G3tG3E3G3ؾE3ԧG3짒G3 E3$)G3<@E3TOG3tk E3wE3G3E3̨G3䨒¿E3пE3G3,E3DE3\E3t&E34G3LG3ĩfE3ܩwG3E3 G3,G3LE3d E3| E3E3 E3 E3Ԫ) E3쪒6 E3?E3NG34hG3TG3tG3G3G3ԫG3G3*G34GG3TbE3lsG3E3 E  !"#$%&'()*+,-./0123456789:;<=>?U>U U !;t4贁N@%X-@ ,M1C-俒~*7A%t4 ̿A>-L7"AJ@MR@ԭ7RH<( H<( JEtJ REtW R֝${  g'9Kx] (h([Cc@(YH0اX\:TB P D]#&`g!}HۢݠF/@ s~ǏpR$0wMwP=$1iNtR)ij՛'\?2h}1삒1`24Wp? *PDdd6%<!Na C_~Y @Q Oh+'0@H`lxAdministratorG0 EMF(l@VISIODrawingL ??d((000hhhPPP000@@@PPP hhh888@@@ppp(((PPPhhhppp888ppp PPPXXXhhh(((000ppphhhPPPߗHHH@@@000ppp```000 @@@000ppppppPPP000@@@ hhhppp@@@XXXhhh(((PPP000(((888HHHXXX888XXXxxxhhhXXXxxx000,,,SSSPPP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@666@@@@@@@@@@@@@@@@@@@@@hhhppp{{{ www@@@@@@xxx@@@￿qqqwwwߗ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@xxx```@@@@@@```@@@000(((@@@@@@@@@@@@@@@@@@@@@hhh888@@@```￿PPPhhh(((pppPPP@@@``` 000```000@@@```HHH000hhhPPP@@@```HHHxxxppp@@@```ppphhhHHH@@@```hhh888@@@``````888(((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@```XXXxxxﯯ```000PPP```000```888```XXX(((hhh```hhhxxx888HHH(((```HHH```hhhHHH```(((@@@ppp(((hhh```(((HHHhhhHHHhhh ```000```@@@ppphhh ```888HHH ``````000xxx@@@ ``` xxxppp```XXX@@@XXX``` hhh ```HHH@@@@@@PPP```(((@@@hhh ```xxx``` @@@ @@@@@@ `````` @@@@@@@@@ @@@ ``````@@@@@@@@@```@@@ `````````@@@@@@@@@```@@@``` ``````XXX``` ```ppp@@@@@@@@@@@@ @@@ @@@ `````` ```@@@ ``` ```XXX@@@@@@@@@@@@ xxx@@@ ``` ``` ```@@@ ``` ``````@@@@@@@@@@@@ `````` ``` ``` ```HHH@@@@@@@@@@@@hhh @@@`````` `````` ```@@@@@@@@@@@@@@@```@@@``` `````````@@@@@@@@@```@@@ ``````@@@``` XXX@@@@@@@@@ppp``` @@@@@@ ````````` @@@@@@@@@@@@```xxx @@@@@@@@@ ```````````` @@@``` ``````@@@``````PPP ``````XXX888```ppp@@@ ``` ``````000```HHH ``````ppp888 ```@@@ hhh ```(((```(((``` @@@```HHH888hhh ```XXX@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@```(((HHH@@@``````000(((@@@```HHH @@@```hhh888@@@hhhHHH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@888888@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 444@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@222>>>@@@@@@@@@ @@@ 000@@@000PPP@@@((({{{ssssss,,,XXXpppxxx@@@888HHHxxx ppp@@@ϿNNN}}}ppp888```@@@@@@000@@@@@@@@@@@@@@@$$$@@@xxxhhhHHHHHH(((@@@HHHxxxppp@@@HHHhhh@@@```@@@ 000PPP hhh000000(((@@@```PPP```pppPPP@@@000 @@@000pppppp  @@@@@@```XXXׇ XXXxxxXXX(((HHHXXX(((ǧ``````xxx000ppppppPPP000000pppPPPPPPppp(((PPPppp XXXhhhXXXhhh000000 888pppxxxHHH PPPppp888PPP 888@@@ppp(((PPPhhhDocumentSummaryInformation8t1Table 'SummaryInformation(DocumentSummaryInformation8      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                           ! " # $ % & ' ( ) * + , - . / 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 V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~  ՜.+,D՜.+,L@HP\t  ECE 4110 & 4893 PagesMastersPage-1Workgroup SwitchLine connectorGeneric TerminalPeer-to-peerLine-curve connectorRouter8_VPID_ALTERNATENAMES_VPID_PREVIEWS?_PID_LINKBASE A GlJ?A EMF8 @F, EMF+@``FL@EMF+0@?@ @ @@!@ %@,@$=?= C.C@tdlZK EMFd@F GDICQ  Z J J - "- "---$y99yy- %y99yy --$y9y- %y9y --$yyy- %yyy "---$ S  b  z S S- % S  b  z S S --$ S  b  z S S- % S  b  z S S --$ ""b2Z - % ""b2Z  --$ ""b2Z - % ""b2Z  --$CCC]f QC- %CCC]f QC --$CCC]f QC- %CCC]f QC --$  ccq$S; - %  ccq$S;  --$  ccq$S; - %  ccq$S;  --$ q.    + q q- % q.    + q q --$ q.    + q q- % q.    + q q --$  EEBP - %  EEBP  --$  EEBP - %  EEBP  --$aff$8oa- %aff$8oa --$aff$8oa- %aff$8oa --$#  Qq^ # - %#  Qq^ #  --$#  Qq^ # - %#  Qq^ #  '&1Copyright 1996 Microsystems Engineering Company&All Rights Reserved  [ [ J J ! % &% &% % '%  V01Zy99yy% (  W01Zy99yy % '%  V0Zy9y% (  W0Zy9y % '%  V01yyy% (  W01yyy &% ( % '%  V<]' S  b  z S S%  W<]' S  b  z S S % %  V<]' S  b  z S S%  W<]' S  b  z S S % %  V<p ""b2Z %  W<p ""b2Z  % %  V<p ""b2Z %  W<p ""b2Z  % %  V<Z,CCC]f QC%  W<Z,CCC]f QC % %  V<Z,CCC]f QC%  W<Z,CCC]f QC % %  V<*m  ccq$S; %  W<*m  ccq$S;  % %  V<*m  ccq$S; %  W<*m  ccq$S;  % '%  V<^( q.    + q q%  W<^( q.    + q q % %  V<^( q.    + q q%  W<^( q.    + q q % %  V<r  EEBP %  W<r  EEBP  % %  V<r  EEBP %  W<r  EEBP  % %  V<[.aff$8oa%  W<[.aff$8oa % %  V<[.aff$8oa%  W<[.aff$8oa % %  V<, n#  Qq^ # %  W<, n#  Qq^ #  % %  V<, n#  Qq^ # %  W<, n#  Qq^ #  " ( % % 0 K( ( ( @@, LCB!b !b !!s % % % 0        : # .">P> CC$$.">P> CCs Rp"System}~qdW`w &$# !etDVDdO03E"Systemdv% F(GDIC[# .">P> CC$$.">P> CC# B B CC$$B B CC# .">P> CC$$.">P> CC# ]~< < CC$$]~< < CC# ]~< < CC$$]~< < CC# ]~< < CC$$]~< < CC! % &% &% % '%  V0y99yy% (  W0y99yy % '%  V0y9y% (  W0y9y % '%  V0yyy% (  W0yyy &% ( % '%  V< S  b  z S S%  W< S  b  z S S % %  V< S  b  z S S%  W< S  b  z S S % %  V< ""b2Z %  W< ""b2Z  % %  V< ""b2Z %  W< ""b2Z  % %  V<CCC]f QC%  W<CCC]f QC % %  V<CCC]f QC%  W<CCC]f QC % %  V<  ccq$S; %  W<  ccq$S;  % %  V<  ccq$S; %  W<  ccq$S;  % '%  V< q.    + q q%  W< q.    + q q % %  V< q.    + q q%  W< q.    + q q % %  V<  EEBP %  W<  EEBP  % %  V<  EEBP %  W<  EEBP  % %  V<aff$8oa%  W<aff$8oa % %  V<aff$8oa%  W<aff$8oa % %  V<#  Qq^ # %  W<#  Qq^ #  % %  V<#  Qq^ # %  W<#  Qq^ #  " ( % % K( ( ( FGDIC" " % ( " FEMF+&@@<0Ne>@, ˵\C/CCC@$$==_888% % W$+ ">% % $$AA( FxEMF+%@,@$Oq=c=CfB@l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @@, ZC>ChB$$z>>ChBs *:Rp"SystemdW 3Dwx33!@wp8wDwp}w:wFw"`"C`""`N`vB`k%`tv"6`v"`C`"v"`N`vB`dv% F(GDIC# z>>ChB$$z>>ChB# BBChB$$BBChB# z>>ChB$$z>>ChB# pH<<ChB$$pH<<ChB# pH<<ChB$$pH<<ChB# pH<<ChB$$pH<<ChB! % &% &% % '%  V0*o { { $ % (  W0*o { { $  % '%  V0* >  $ % (  W0* >  $  &% ( W09w;y!``5!` W09v;x!BB`!`!B W(8v:y= W(:v<y!=I: W0<w>y``` W0<v>xBB``B W(;v=y=l{ W(=v?y=  W0?wAy`W`C` W0?vAxBWBW``B W(>v@yR=*9 W(@vBy= W0BwDyj``~j` W0BvDxjBB`j`jB W(AvCy= W(CvEyj= W0EwHy-``A-` W0EvGx-BB`-`-B W(DvFy= W(FvHy-=UF W0HwKy``` W0HvJxBB``B W(GvIy=x W(IvKy=  W0KwNy`^`J` W0KvMxB^B^``B W(JvLy^=6E W(LvNy= W0NwQyq `! `  q ` W0NvPxq B! B! `q `q B W(NvOy! =  W(OvQyv =   W0QwTy4 ` ` H 4 ` W0QvSx4 B B `4 `4 B W(QvRy =   W(SvTy9 =a R  W0TwWy ` `   ` W0TvWx B B ` ` B W(TvUy =   W(VvWy =$   W0WwZy `j `V   ` W0WvYx Bj Bj ` ` B W(WvXyj =B Q  W(YvZy =   W0Zw]y} `- `  } ` W0Zv]x} B- B- `} `} B W(Zv[y- =   W(\v]y} =   W03t6w d P  W03t5u d d    W(2t4wd <K W(4t6w  W06t9ww ' w  W06t8uw ' ' w w  W(6t7w'  W(7t9w|  W09t<w:  N:  W09t;u:   : :  W(9t:w  W(:t<w: bS W0<t?w    W0<t>u      W(<t=w  W(>t?w % W0?tBw p \  W0?tBu p p    W(?t@wp HW W(AtBw  W0BtEw 3   W0BtEu 3 3    W(BtCw3  W(DtEw  W0EtHwF  ZF  W0EtHuF   F F  W(EtFw  W(GtHwF n_ W0HtKw      W0HtKu       W(HtIw  W(JtKw  1" W0KtNw | h  W0LtNu | |    W(KtLw| Tc W(MtNw  W0NtQw ? +    W0OtQu ? ?  W(NtPw?  &  W(PtQw   W0QtTwR  f R  W0RtTuR   R R  W(QtSw   W(StTwR z k  W0TtWw )   W0UtWu    W(TtVw   W(VtXw = .  W0WtZw t    W0XtZu  W(WtYw ` o  W(Yt[w   W0;y>|qFF W0<y>z W(;y=|]7lF W(=y>|7F W0>yA|H4FF W0?yAzHH W(>y@|H 7/F W(@yB|7F W0AyD|[ FoF[ W0ByDz[  [[ W(AyC| 7F W(CyE|[7tF W0DyG|F2F W0EyGz W(DyF|7F W(FyH|F77F W0HyJ|}FF W0HyJz W(GyI|i7xF W(IyK| 7F W0KyM|T@FF W0KyMzTT W(JyL|T,7;F W(LyN|7F W0NyP|g   F{ Fg  W0NyPzg   g g  W(MyO| 7F W(OyQ|g  7 F W0QyT|*   F> F*  W0QySz*   * *  W(PyR|  7 F W(RyT|* R 7C F W0TyW|   F F  W0TyVz      W(SyU| u 7 F W(UyW|  7 F W0WyZ| ` L F F  W0WyYz ` `    W(WyX|` 8 7G F W(XyZ|  7 F W0Zy]|n   F Fn  W0Zy\zn   n n  W(Yy[|  7 F W([y]|s  7 F W08|;~ W08{:}iii W(8{9~d W(:{;~d& W0;|>~lX W0;{=}ilili W(;{<~ldDS W(={>~d W0>|A~/ W0>{A}i/i/i W(>{?~/d W(@{A~d W0A|D~BVB W0A{D}BiiBBi W(A{B~d W(C{D~Bdj[ W0D|G~ W0D{G}iii W(D{E~d W(F{G~d- W0G|J~xd W0G{J}ixixi W(G{H~sdKZ W(I{J~d W0J|M~;' W0K{M}i;i;i W(J{K~6d W(L{M~d W0M|P~N b N  W0N{P}N iiN N i W(M{O~d W(O{P~N dv g  W0P|S~      W0Q{S} i i   i W(P{Q~ d   W(R{S~ d4 %  W0S|V~  k    W0T{V} i i   i W(S{U~ dW f  W(U{V~ d   W0[t`w _ < @   W0[t_u Z Z    W(Zt\w_  7  W(^t`w c E   6  W0Y|_~ #  6   W0Z{_} i i   i W(Y{[~ n   W(^{`~ n^ ;  W03y8|JnFrFJ W04y8zJJJ W(3y5|F2dA W(7y9|O2wA W03q6s s _W W   W03q6r s s    W(3q4ts KM Z\  W(5q6t M \  W06q9s 6 "W W   W06q9r 6 6    W(6q7t6 M \  W(8q9t M \  W09q<sI  W ]W I  W09q<rI   I I  W(9q:t M \  W(;q<tI qM b\  W0<q?s   W W   W0=q?r       W(<q=t M \  W(>q?t  4M %\  W0AqDs[  W oW [  W0BqDr[   [ [  W(AqCt M \  W(CqEt[ M t\  W0DqGs  W 2W   W0EqGr      W(DqFt M \  W(FqHt FM 7\  W0HqJs  }W W   W0HqJr      W(GqIt iM x\  W(IqKt M \  W0KqMs T @W W   W0KqMr T T    W(JqLtT ,M ;\  W(LqNt M \  W0TqWs   W  W   W0TqVr  W(TqUt z M \  W(UqWt  M \  W0WqZs  e  Q W W   W0WqYr e e  W(WqXt` 8 M G \  W(XqZt M \  W0Zq]sx  (   W W x   W0Zq\rx ( ( x x  W(Zq[t( M  \  W(\q]tx M \  W0]q`s;   W O W ;   W0]q`r; ; ;  W(]q^t M \  W(_q`t; c M T \  W0bqes I 5W W   W0cqer I I    W(bqdtI !M 0\  W(dqft M \  W0btew I 5  W0cteu I I    W(btdwI !0 W(dtfw  W0fthw\  p\  W0fthu\   \ \  W(etgw   W(gtiw\ u W0itkw  3  W0itku      W(htjw  W(jtlw G8 W0bwey`I`5` W0cvexBIBI``B W(bvdyI=!0 W(dvfy= W0fwhy\` `p\` W0fvhx\B B `\`\B W(evgy = W(gviy\=u W0iwky``3` W0ivkxBB``B W(hvjy= W(jvly=G8 W0fyi|fFzFf W0fyhzfff W(eyg|7F W(gyi|f7F W0:~Yy +m my  W0:~Xy ++y y  W(W~Zt  ^ m W(9~;+Y h W0c|e~S? W0c{e}iSiSi W(b{d~Nd&5 W(d{f~d W0f|i~fzf W0f{h}fiiffi W(e{g~d W(g{i~fd W0i|k~$8$ W0i{k}$ii$$i W(h{j~d W(j{l~$dL= W0ntqw A -  W0otqu A A    W(ntpwA ( W(ptrw  W0qttwT  hT  W0rttuT   T T  W(qtsw  W(stuwT |m W0ttww  +  W0utwu      W(ttvw  W(vtxw ?0 W0xtzw  v  W0xtzu      W(wtyw bq W(yt{w  W0nwqy`A`-` W0ovqxBABA``B W(nvpyA=( W(pvry= W0qwtyT``hT` W0rvtxTBB`T`TB W(qvsy= W(svuyT=|m W0twwy``+` W0uvwxBB``B W(tvvy= W(vvxy=?0 W0nyq|A-FF W0oyqzAA W(nyp|A7(F W(pyr|7F W0qyt|TFhFT W0rytzTTT W(qys|7F W(syu|T|7mF W0tyw|F+F W0uywz W(tyv|7F W(vyx|?70F W0t|w~+ W0u{w}iii W(t{v~d W(v{x~d?0 W0o|t~dAE W0o{s}"idid""i W(n{p~dn< W(r{t~'nmO W0x|{~{ W(wyy~b{ W0xyz} W(zy{~ W0NqPsg     W { W g   W0NqPrg   g g  W(MqOt M \  W(OqQtg M \  W0fqks C W $W   W0gqkr C C    W(fqhsC H W  W(jqls LH .W  W0nqqs A -W W   W0oqqr A A    W(nqptA M (\  W(pqrt M \  W0qqtsT  W hW T  W0rqtrT   T T  W(qqst M \  W(squtT |M m\  W0tqws  W +W   W0uqwr      W(tqvt M \  W(vqxt ?M 0\  W0xqzs  vW W   W0xqzr      W(wqyt bM q\  W(yq{t M \  W0xwzy``{` W0xvzxBB``B W(wvyy=gv W(yv{y= W0]z`|O   <T <O  W(]v^| 8 # < W0]v`{M ; ; M M ; W(_v`|T 8^ Y < W03w8y@``dh@` W04v8xEBB`E`EB W(3w5yGA_ W(7w9yJGr W00|5~__ W00{4}diiddi W(/{1~n[y W(3{5~in W0,|/~) W0-{/}iii W(,{.~d W(.{/~d=. W03~8JnmrmJ W04~8JJJ W(3~5FYdh W(7~9OYwh W05|8~@T@ W05{7}@ii@@i W(5{6~d W(7{8~@dhY W09y;|!F5F! W09y;z!!! W(8y:|7F W(:y<|!I7:F W0V|Y~ = )    W0W{Y} i= i=   i W(V{X~= d $  W(X{Y~ d    6  &% ( % '%  V0<:meE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0<:meE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0@?i_E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0@?i_E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0?>i`ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dgen n + + % (  W0Dgen n + +  &% (  6N  % '%  V0Mg[j      % (  W0Mg[j       W0Ddeh   g   " ( % % K( FGDIC" " % ( " FEMF+&@@<0Ne>@<0\CFCp2CܓC CCGCC@$$==_888% % U, B Z ^ P % % $$AA( FxEMF+%@,@$Kq=e=C蓕B@l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @@, ZC>CB$$z>>CBs KRp"Systemwp}w:wFw"`" &$# ! e ! dtww7w`w aw 0qQ 8 %HiEP8HiEHiEGDICj@O<.: ..xt<xt<|W.HiEdv% F(GDIC# z>>CB$$z>>CB# BBCB$$BBCB# z>>CB$$z>>CB# pH<<CB$$pH<<CB# pH<<CB$$pH<<CB# pH<<CB$$pH<<CB! % &% &% % '%  V0! { { $ % (  W0! { { $  % '%  V0! >  $ % (  W0! >  $  &% ( W0!``5!` W0!BB`!`!B W(= W(!=I: W0``` W0BB``B W(=l{ W(=  W0`W`C` W0BWBW``B W(R=*9 W(= W0j``~j` W0jBB`j`jB W(= W(j= W0-``A-` W0-BB`-`-B W(= W(-=UF W0``` W0BB``B W(=x W(=  W0`^`J` W0B^B^``B W(^=6E W(= W0q `! `  q ` W0q B! B! `q `q B W(! =  W(v =   W04 ` ` H 4 ` W04 B B `4 `4 B W( =   W(9 =a R  W0 ` `   ` W0 B B ` ` B W( =   W( =$   W0 `j `V   ` W0 Bj Bj ` ` B W(j =B Q  W( =   W0} `- `  } ` W0} B- B- `} `} B W(- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0w ' w  W0w ' ' w w  W('  W(|  W0:  N:  W0:   : :  W(  W(: bS W0    W0      W(  W( % W0 p \  W0 p p    W(p HW W(  W0 3   W0 3 3    W(3  W(  W0F  ZF  W0F   F F  W(  W(F n_ W0      W0       W(  W(  1" W0 | h  W0 | |    W(| Tc W(  W0 ? +    W0 ? ?  W(?  &  W(   W0R  f R  W0R   R R  W(   W(R z k  W0 )   W0    W(   W( = .  W0 t    W0  W( ` o  W(   W0qFF W0 W(]7lF W(7F W0H4FF W0HH W(H 7/F W(7F W0[ FoF[ W0[  [[ W( 7F W([7tF W0F2F W0 W(7F W(F77F W0}FF W0 W(i7xF W( 7F W0T@FF W0TT W(T,7;F W(7F W0g   F{ Fg  W0g   g g  W( 7F W(g  7 F W0*   F> F*  W0*   * *  W(  7 F W(* R 7C F W0   F F  W0      W( u 7 F W(  7 F W0 ` L F F  W0 ` `    W(` 8 7G F W(  7 F W0n   F Fn  W0n   n n  W(  7 F W(s  7 F W0 W0iii W(d W(d& W0lX W0ilili W(ldDS W(d W0/ W0i/i/i W(/d W(d W0BVB W0BiiBBi W(d W(Bdj[ W0 W0iii W(d W(d- W0xd W0ixixi W(sdKZ W(d W0;' W0i;i;i W(6d W(d W0N b N  W0N iiN N i W(d W(N dv g  W0      W0 i i   i W( d   W( d4 %  W0  k    W0 i i   i W( dW f  W( d   W0 _ < @   W0 Z Z    W(_  7  W( c E   6  W0 #  6   W0 i i   i W( n   W( n^ ;  W0JnFrFJ W0JJJ W(F2dA W(O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 6 "W W   W0 6 6    W(6 M \  W( M \  W0I  W ]W I  W0I   I I  W( M \  W(I qM b\  W0   W W   W0       W( M \  W(  4M %\  W0[  W oW [  W0[   [ [  W( M \  W([ M t\  W0  W 2W   W0      W( M \  W( FM 7\  W0  }W W   W0      W( iM x\  W( M \  W0 T @W W   W0 T T    W(T ,M ;\  W( M \  W0   W  W   W0  W( z M \  W(  M \  W0  e  Q W W   W0 e e  W(` 8 M G \  W( M \  W0x  (   W W x   W0x ( ( x x  W(( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0 \  p\  W0 \   \ \  W(    W(  \ u W0    3  W0        W(    W(  G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0 \` `p\` W0 \B B `\`\B W(  = W(  \=u W0  ``3` W0  BB``B W(  = W( =G8 W0 fFzFf W0 fff W( 7F W(  f7F W0y +m my  W0y ++y y  W(t  ^ m W(+Y h W0S? W0iSiSi W(Nd&5 W(d W0 fzf W0 fiiffi W( d W(  fd W0  $8$ W0  $ii$$i W(  d W( $dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0g     W { W g   W0g   g g  W( M \  W(g M \  W0  C W $W   W0   C C    W( C H W  W(  LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0@``dh@` W0EBB`E`EB W(GA_ W(JGr W0__ W0diiddi W(n[y W(in W0) W0iii W(d W(d=. W0JnmrmJ W0JJJ W(FYdh W(OYwh W0@T@ W0@ii@@i W(d W(@dhY W0!F5F! W0!!! W(7F W(!I7:F W0 = )    W0 i= i=   i W(= d $  W( d    6  &% ( % '%  V0KvE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0KvE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0P pE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0P pE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0O qExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0x n + + % (  W0x n + +  &% (  6N  % '%  V0x{      % (  W0x{       W0uy   g   " ( % % K( FGDIC" " % ( " FEMF+&@@<0Ne>@<0MCQ&C錰C(Cr8Cf(C !D&C@$$==_888% % U, a  H |(a % % $$AA( FxEMF+%@,@$Oq=d=T!DyȷB@l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @@, ZC^>!DB$$z>^>!DBs \Rp"System dtww7w`w &$# ! e ! dtww7w`w aw0 8 %HiEP8HiEHiEGDICj"S9LW: LWLW99|WLWHiEdv% F(GDIC# z>^>!DB$$z>^>!DB# BTB!DB$$BTB!DB# z>^>!DB$$z>^>!DB# pH</<!DB$$pH</<!DB# pH</<!DB$$pH</<!DB# pH</<!DB$$pH</<!DB! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0!``5!` W0!BB`!`!B W(= W(!=I: W0``` W0BB``B W(=l{ W(=  W0`W`C` W0BWBW``B W(R=*9 W(= W0j``~j` W0jBB`j`jB W(= W(j= W0-``A-` W0-BB`-`-B W(= W(-=UF W0``` W0BB``B W(=x W(=  W0`^`J` W0B^B^``B W(^=6E W(= W0q `! `  q ` W0q B! B! `q `q B W(! =  W(v =   W04 ` ` H 4 ` W04 B B `4 `4 B W( =   W(9 =a R  W0 ` `   ` W0 B B ` ` B W( =   W( =$   W0 `j `V   ` W0 Bj Bj ` ` B W(j =B Q  W( =   W0} `- `  } ` W0} B- B- `} `} B W(- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0w ' w  W0w ' ' w w  W('  W(|  W0:  N:  W0:   : :  W(  W(: bS W0    W0      W(  W( % W0 p \  W0 p p    W(p HW W(  W0 3   W0 3 3    W(3  W(  W0F  ZF  W0F   F F  W(  W(F n_ W0      W0       W(  W(  1" W0 | h  W0 | |    W(| Tc W(  W0 ? +    W0 ? ?  W(?  &  W(   W0R  f R  W0R   R R  W(   W(R z k  W0 )   W0    W(   W( = .  W0 t    W0  W( ` o  W(   W0qFF W0 W(]7lF W(7F W0H4FF W0HH W(H 7/F W(7F W0[ FoF[ W0[  [[ W( 7F W([7tF W0F2F W0 W(7F W(F77F W0}FF W0 W(i7xF W( 7F W0T@FF W0TT W(T,7;F W(7F W0g   F{ Fg  W0g   g g  W( 7F W(g  7 F W0*   F> F*  W0*   * *  W(  7 F W(* R 7C F W0   F F  W0      W( u 7 F W(  7 F W0 ` L F F  W0 ` `    W(` 8 7G F W(  7 F W0n   F Fn  W0n   n n  W(  7 F W(s  7 F W0 W0iii W(d W(d& W0lX W0ilili W(ldDS W(d W0/ W0i/i/i W(/d W(d W0BVB W0BiiBBi W(d W(Bdj[ W0 W0iii W(d W(d- W0xd W0ixixi W(sdKZ W(d W0;' W0i;i;i W(6d W(d W0N b N  W0N iiN N i W(d W(N dv g  W0      W0 i i   i W( d   W( d4 %  W0  k    W0 i i   i W( dW f  W( d   W0 _ < @   W0 Z Z    W(_  7  W( c E   6  W0 #  6   W0 i i   i W( n   W( n^ ;  W0JnFrFJ W0JJJ W(F2dA W(O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 6 "W W   W0 6 6    W(6 M \  W( M \  W0I  W ]W I  W0I   I I  W( M \  W(I qM b\  W0   W W   W0       W( M \  W(  4M %\  W0[  W oW [  W0[   [ [  W( M \  W([ M t\  W0  W 2W   W0      W( M \  W( FM 7\  W0  }W W   W0      W( iM x\  W( M \  W0 T @W W   W0 T T    W(T ,M ;\  W( M \  W0   W  W   W0  W( z M \  W(  M \  W0  e  Q W W   W0 e e  W(` 8 M G \  W( M \  W0x  (   W W x   W0x ( ( x x  W(( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0y +m my  W0y ++y y  W(t  ^ m W(+Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0g     W { W g   W0g   g g  W( M \  W(g M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0@``dh@` W0EBB`E`EB W(GA_ W(JGr W0__ W0diiddi W(n[y W(in W0) W0iii W(d W(d=. W0JnmrmJ W0JJJ W(FYdh W(OYwh W0@T@ W0@ii@@i W(d W(@dhY W0!F5F! W0!!! W(7F W(!I7:F W0 = )    W0 i= i=   i W(= d $  W( d    6  &% ( % '%  V0\E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0\E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0bE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0bE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0`ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0 n + + % (  W0 n + +  &% (  6N  % '%  V0      % (  W0       W0   g   " ( % % K( FGDIC" " % ( " FEMF+&@%@,@$=?=6 CD@tdlZK EMFd@F GDICQ  Z J J - "- "---$y99yy- %y99yy --$y9y- %y9y --$yyy- %yyy "---$ S  b  z S S- % S  b  z S S --$ S  b  z S S- % S  b  z S S --$ ""b2Z - % ""b2Z  --$ ""b2Z - % ""b2Z  --$CCC]f QC- %CCC]f QC --$CCC]f QC- %CCC]f QC --$  ccq$S; - %  ccq$S;  --$  ccq$S; - %  ccq$S;  --$ q.    + q q- % q.    + q q --$ q.    + q q- % q.    + q q --$  EEBP - %  EEBP  --$  EEBP - %  EEBP  --$aff$8oa- %aff$8oa --$aff$8oa- %aff$8oa --$#  Qq^ # - %#  Qq^ #  --$#  Qq^ # - %#  Qq^ #  '&1Copyright 1996 Microsystems Engineering Company&All Rights Reserved  [ [ J J ! % &% &% % '%  V01Zy99yy% (  W01Zy99yy % '%  V0Zy9y% (  W0Zy9y % '%  V01yyy% (  W01yyy &% ( % '%  V<]' S  b  z S S%  W<]' S  b  z S S % %  V<]' S  b  z S S%  W<]' S  b  z S S % %  V<p ""b2Z %  W<p ""b2Z  % %  V<p ""b2Z %  W<p ""b2Z  % %  V<Z,CCC]f QC%  W<Z,CCC]f QC % %  V<Z,CCC]f QC%  W<Z,CCC]f QC % %  V<*m  ccq$S; %  W<*m  ccq$S;  % %  V<*m  ccq$S; %  W<*m  ccq$S;  % '%  V<^( q.    + q q%  W<^( q.    + q q % %  V<^( q.    + q q%  W<^( q.    + q q % %  V<r  EEBP %  W<r  EEBP  % %  V<r  EEBP %  W<r  EEBP  % %  V<[.aff$8oa%  W<[.aff$8oa % %  V<[.aff$8oa%  W<[.aff$8oa % %  V<, n#  Qq^ # %  W<, n#  Qq^ #  % %  V<, n#  Qq^ # %  W<, n#  Qq^ #  " ( % % 0 K( ( ( @@, LCB!b !!s % % % 0        : # y>P> CD$$y>P> CDs Rp"System dtww7w`w &$# ! e ! dtww7w`w aw0ND 8 %HiEP8HiEHiEGDICjD<L: LL<<|WLHiEdv% F(GDIC[# y>P> CD$$y>P> CD# B B CD$$B B CD# y>P> CD$$y>P> CD# < < CD$$< < CD# < < CD$$< < CD# < < CD$$< < CD! % &% &% % '%  V0'7y99yy% (  W0'7y99yy % '%  V07y9y% (  W07y9y % '%  V0'yyy% (  W0'yyy &% ( % '%  V<# S  b  z S S%  W<# S  b  z S S % %  V<# S  b  z S S%  W<# S  b  z S S % %  V< ""b2Z %  W< ""b2Z  % %  V< ""b2Z %  W< ""b2Z  % %  V<&CCC]f QC%  W<&CCC]f QC % %  V<&CCC]f QC%  W<&CCC]f QC % %  V<  ccq$S; %  W<  ccq$S;  % %  V<  ccq$S; %  W<  ccq$S;  % '%  V<$ q.    + q q%  W<$ q.    + q q % %  V<$ q.    + q q%  W<$ q.    + q q % %  V<  EEBP %  W<  EEBP  % %  V<  EEBP %  W<  EEBP  % %  V<&aff$8oa%  W<&aff$8oa % %  V<&aff$8oa%  W<&aff$8oa % %  V<#  Qq^ # %  W<#  Qq^ #  % %  V<#  Qq^ # %  W<#  Qq^ #  " ( % % K( ( ( FGDIC" " % ( " FEMF+&@@<0Ne>@, 5S[CDKCz5D@$$==_888% % W$* 2!N!% % $$AA( FxEMF+%@,@$Oq=h=JCqUC@l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @@, ZC>CC$$z>>CCs )Rp"System dtww7w`w &$# ! e ! dtww7w`w aw]S 8 %HiEP8HiEHiEGDICjx;D!: !!DD|W!HiEdv% F(GDIC# z>>CC$$z>>CC# BBCC$$BBCC# z>>CC$$z>>CC# pH<<CC$$pH<<CC# pH<<CC$$pH<<CC# pH<<CC$$pH<<CC! % &% &% % '%  V0)~ { { $ % (  W0)~ { { $  % '%  V0)~ >  $ % (  W0)~ >  $  &% ( W08: !``5!` W08: !BB`!`!B W(79 = W(9; !=I: W0;= ``` W0;= BB``B W(:< =l{ W(<> =  W0>@ `W`C` W0>@ BWBW``B W(=? R=*9 W(?A = W0AC j``~j` W0AC jBB`j`jB W(@B = W(BD j= W0DG -``A-` W0DF -BB`-`-B W(CE = W(EG -=UF W0GJ ``` W0GI BB``B W(FH =x W(HJ =  W0JM `^`J` W0JL B^B^``B W(IK ^=6E W(KM = W0MP q `! `  q ` W0MO q B! B! `q `q B W(MN ! =  W(NP v =   W0PS 4 ` ` H 4 ` W0PR 4 B B `4 `4 B W(PQ  =   W(RS 9 =a R  W0SV  ` `   ` W0SV  B B ` ` B W(ST  =   W(UV  =$   W0VY  `j `V   ` W0VX  Bj Bj ` ` B W(VW j =B Q  W(XY  =   W0Y\ } `- `  } ` W0Y\ } B- B- `} `} B W(YZ - =   W([\ } =   W025 d P  W024 d d    W(13d <K W(35  W058w ' w  W057w ' ' w w  W(56'  W(68|  W08;:  N:  W08::   : :  W(89  W(9;: bS W0;>    W0;=      W(;<  W(=> % W0>A p \  W0>A p p    W(>?p HW W(@A  W0AD 3   W0AD 3 3    W(AB3  W(CD  W0DGF  ZF  W0DGF   F F  W(DE  W(FGF n_ W0GJ      W0GJ       W(GH  W(IJ  1" W0JM | h  W0KM | |    W(JK| Tc W(LM  W0MP ? +    W0NP ? ?  W(MO?  &  W(OP   W0PSR  f R  W0QSR   R R  W(PR   W(RSR z k  W0SV )   W0TV    W(SU   W(UW = .  W0VY t    W0WY  W(VX ` o  W(XZ   W0: = qFF W0; =  W(: < ]7lF W(< = 7F W0= @ H4FF W0> @ HH W(= ? H 7/F W(? A 7F W0@ C [ FoF[ W0A C [  [[ W(@ B  7F W(B D [7tF W0C F F2F W0D F  W(C E 7F W(E G F77F W0G I }FF W0G I  W(F H i7xF W(H J  7F W0J L T@FF W0J L TT W(I K T,7;F W(K M 7F W0M O g   F{ Fg  W0M O g   g g  W(L N  7F W(N P g  7 F W0P S *   F> F*  W0P R *   * *  W(O Q   7 F W(Q S * R 7C F W0S V    F F  W0S U       W(R T  u 7 F W(T V   7 F W0V Y  ` L F F  W0V X  ` `    W(V W ` 8 7G F W(W Y   7 F W0Y \ n   F Fn  W0Y [ n   n n  W(X Z   7 F W(Z \ s  7 F W07 : W07 9iii W(7 8d W(9 :d& W0: =lX W0: <ilili W(: ;ldDS W(< =d W0= @/ W0= @i/i/i W(= >/d W(? @d W0@ CBVB W0@ CBiiBBi W(@ Ad W(B CBdj[ W0C F W0C Fiii W(C Dd W(E Fd- W0F Ixd W0F Iixixi W(F GsdKZ W(H Id W0I L;' W0J Li;i;i W(I J6d W(K Ld W0L ON b N  W0M ON iiN N i W(L Nd W(N ON dv g  W0O R      W0P R i i   i W(O P d   W(Q R d4 %  W0R U  k    W0S U i i   i W(R T dW f  W(T U d   W0Z_ _ < @   W0Z^ Z Z    W(Y[_  7  W(]_ c E   6  W0X ^ #  6   W0Y ^ i i   i W(X Z n   W(] _ n^ ;  W02 7 JnFrFJ W03 7 JJJ W(2 4 F2dA W(6 8 O2wA W025 s _W W   W025 s s    W(23s KM Z\  W(45 M \  W058 6 "W W   W058 6 6    W(566 M \  W(78 M \  W08;I  W ]W I  W08;I   I I  W(89 M \  W(:;I qM b\  W0;>   W W   W0<>       W(;< M \  W(=>  4M %\  W0@C[  W oW [  W0AC[   [ [  W(@B M \  W(BD[ M t\  W0CF  W 2W   W0DF      W(CE M \  W(EG FM 7\  W0GI  }W W   W0GI      W(FH iM x\  W(HJ M \  W0JL T @W W   W0JL T T    W(IKT ,M ;\  W(KM M \  W0SV   W  W   W0SU  W(ST z M \  W(TV  M \  W0VY  e  Q W W   W0VX e e  W(VW` 8 M G \  W(WY M \  W0Y\x  (   W W x   W0Y[x ( ( x x  W(YZ( M  \  W([\x M \  W0\_;   W O W ;   W0\_; ; ;  W(\] M \  W(^_; c M T \  W0ad I 5W W   W0bd I I    W(acI !M 0\  W(ce M \  W0ad I 5  W0bd I I    W(acI !0 W(ce  W0eg\  p\  W0eg\   \ \  W(df   W(fh\ u W0hj  3  W0hj      W(gi  W(ik G8 W0ad `I`5` W0bd BIBI``B W(ac I=!0 W(ce = W0eg \` `p\` W0eg \B B `\`\B W(df  = W(fh \=u W0hj ``3` W0hj BB``B W(gi = W(ik =G8 W0e h fFzFf W0e g fff W(d f 7F W(f h f7F W09Xy +m my  W09Wy ++y y  W(VYt  ^ m W(8:+Y h W0b dS? W0b diSiSi W(a cNd&5 W(c ed W0e hfzf W0e gfiiffi W(d fd W(f hfd W0h j$8$ W0h j$ii$$i W(g id W(i k$dL= W0mp A -  W0np A A    W(moA ( W(oq  W0psT  hT  W0qsT   T T  W(pr  W(rtT |m W0sv  +  W0tv      W(su  W(uw ?0 W0wy  v  W0wy      W(vx bq W(xz  W0mp `A`-` W0np BABA``B W(mo A=( W(oq = W0ps T``hT` W0qs TBB`T`TB W(pr = W(rt T=|m W0sv ``+` W0tv BB``B W(su = W(uw =?0 W0m p A-FF W0n p AA W(m o A7(F W(o q 7F W0p s TFhFT W0q s TTT W(p r 7F W(r t T|7mF W0s v F+F W0t v  W(s u 7F W(u w ?70F W0s v+ W0t viii W(s ud W(u wd?0 W0n sdAE W0n r"idid""i W(m odn< W(q s'nmO W0w z{ W(v xb{ W0w y W(y z W0MOg     W { W g   W0MOg   g g  W(LN M \  W(NPg M \  W0ej C W $W   W0fj C C    W(egC H W  W(ik LH .W  W0mp A -W W   W0np A A    W(moA M (\  W(oq M \  W0psT  W hW T  W0qsT   T T  W(pr M \  W(rtT |M m\  W0sv  W +W   W0tv      W(su M \  W(uw ?M 0\  W0wy  vW W   W0wy      W(vx bM q\  W(xz M \  W0wy ``{` W0wy BB``B W(vx =gv W(xz = W0\ _ O   <T <O  W(\]  8 # < W0\_ M ; ; M M ; W(^_ T 8^ Y < W027 @``dh@` W037 EBB`E`EB W(24 GA_ W(68 JGr W0/ 4__ W0/ 3diiddi W(. 0n[y W(2 4in W0+ .) W0, .iii W(+ -d W(- .d=. W027JnmrmJ W037JJJ W(24FYdh W(68OYwh W04 7@T@ W04 6@ii@@i W(4 5d W(6 7@dhY W08 : !F5F! W08 : !!! W(7 9 7F W(9 ; !I7:F W0U X = )    W0V X i= i=   i W(U W= d $  W(W X d    6  &% ( % '%  V0;lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0;lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0?hE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0?hE|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0>hExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Cd n + + % (  W0Cd n + +  &% (  6N  % '%  V0LZ      % (  W0LZ       W0Cd   g   " ( % % K( FGDIC" " % ( " FEMF+&@@<0Ne>@<0xQ[C!D D%Cǣ D[CT D4C{ D@$$==_888% % U,$( R"i"n"_"% % $$AA( FxEMF+%@,@$Oq=h=5CC@l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @@, ZC>CC$$z>>CCs Rp"System dtww7w`w &$# ! e ! dtww7w`w aw0 8 %HiEP8HiEHiEGDICj;PI: II`8P`8P|WIHiEdv% F(GDIC# z>>CC$$z>>CC# BBCC$$BBCC# z>>CC$$z>>CC# pH<<CC$$pH<<CC# pH<<CC$$pH<<CC# pH<<CC$$pH<<CC! % &% &% % '%  V0 $ { { $ % (  W0 $ { { $  % '%  V0# % >  $ % (  W0# % >  $  &% ( W0!``5!` W0!BB`!`!B W(= W(!=I: W0``` W0BB``B W(=l{ W(=  W0`W`C` W0BWBW``B W(R=*9 W(= W0j``~j` W0jBB`j`jB W(= W(j= W0-``A-` W0-BB`-`-B W(= W(-=UF W0``` W0BB``B W(=x W(=  W0`^`J` W0B^B^``B W(^=6E W(= W0q `! `  q ` W0q B! B! `q `q B W(! =  W(v =   W04 ` ` H 4 ` W04 B B `4 `4 B W( =   W(9 =a R  W0 ` `   ` W0 B B ` ` B W( =   W( =$   W0 `j `V   ` W0 Bj Bj ` ` B W(j =B Q  W( =   W0} `- `  } ` W0} B- B- `} `} B W(- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0w ' w  W0w ' ' w w  W('  W(|  W0:  N:  W0:   : :  W(  W(: bS W0    W0      W(  W( % W0 p \  W0 p p    W(p HW W(  W0 3   W0 3 3    W(3  W(  W0F  ZF  W0F   F F  W(  W(F n_ W0      W0       W(  W(  1" W0 | h  W0 | |    W(| Tc W(  W0 ? +    W0 ? ?  W(?  &  W(   W0R  f R  W0R   R R  W(   W(R z k  W0 )   W0    W(   W( = .  W0 t    W0  W( ` o  W(   W0qFF W0 W(]7lF W(7F W0H4FF W0HH W(H 7/F W(7F W0[ FoF[ W0[  [[ W( 7F W([7tF W0F2F W0 W(7F W(F77F W0}FF W0 W(i7xF W( 7F W0T@FF W0TT W(T,7;F W(7F W0g   F{ Fg  W0g   g g  W( 7F W(g  7 F W0*   F> F*  W0*   * *  W(  7 F W(* R 7C F W0   F F  W0      W( u 7 F W(  7 F W0 ` L F F  W0 ` `    W(` 8 7G F W(  7 F W0n   F Fn  W0n   n n  W(  7 F W(s  7 F W0  W0iii W( d W( d& W0 lX W0ilili W( ldDS W( d W0 / W0i/i/i W( /d W( d W0 BVB W0BiiBBi W( d W( Bdj[ W0  W0iii W( d W( d- W0 xd W0ixixi W( sdKZ W( d W0 ;' W0i;i;i W( 6d W( d W0 N b N  W0N iiN N i W( d W( N dv g  W0       W0 i i   i W(  d   W(  d4 %  W0   k    W0 i i   i W(  dW f  W(  d   W0 _ < @   W0 Z Z    W(_  7  W( c E   6  W0  #  6   W0 i i   i W(  n   W(  n^ ;  W0JnFrFJ W0JJJ W(F2dA W(O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 6 "W W   W0 6 6    W(6 M \  W( M \  W0I  W ]W I  W0I   I I  W( M \  W(I qM b\  W0   W W   W0       W( M \  W(  4M %\  W0[  W oW [  W0[   [ [  W( M \  W([ M t\  W0  W 2W   W0      W( M \  W( FM 7\  W0  }W W   W0      W( iM x\  W( M \  W0 T @W W   W0 T T    W(T ,M ;\  W( M \  W0   W  W   W0  W( z M \  W(  M \  W0  e  Q W W   W0 e e  W(` 8 M G \  W( M \  W0x  (   W W x   W0x ( ( x x  W(( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0 \  p\  W0 \   \ \  W(   W( \ u W0    3  W0        W(    W(   G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0 \` `p\` W0 \B B `\`\B W( = W( \=u W0  ``3` W0  BB``B W(  = W(  =G8 W0 fFzFf W0 fff W(7F W( f7F W0 #y +m my  W0 !y ++y y  W( #t  ^ m W( #+Y h W0 S? W0iSiSi W( Nd&5 W( d W0  fzf W0 fiiffi W( d W(  fd W0   $8$ W0  $ii$$i W(   d W(   $dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0 + W0iii W( d W( d?0 W0 dAE W0"idid""i W( dn< W( 'nmO W0 { W( b{ W0 W(  W0g     W { W g   W0g   g g  W( M \  W(g M \  W0  C W $W   W0  C C    W( C H W  W(   LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0@``dh@` W0EBB`E`EB W(GA_ W(JGr W0 __ W0diiddi W( n[y W( in W0 ) W0iii W( d W( d=. W0 #JnmrmJ W0 !JJJ W( #FYdh W( #OYwh W0 @T@ W0@ii@@i W( d W( @dhY W0!F5F! W0!!! W(7F W(!I7:F W0  = )    W0 i= i=   i W( = d $  W(  d    6  &% ( % '%  V0E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0 E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0 E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0 ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0  n + + % (  W0  n + +  &% (  6N  % '%  V0        % (  W0         W0    g   " ( % % K( FGDIC" " % ( " FEMF+&@@<0Ne>@<0gLC DۯCMiD'CiiDg!D D@$$==_888% % U,5; q##1#f(q#% % $$AA( FxEMF+%@,@$Oq=d=B DoC@ l3 EMF@F$@@GDICʹc@   2 2 -----$ { { $ - % { { $  --$ >  $ - % >  $  -%!``5!` %!BB`!`!B %= %!=I: %``` %BB``B %=l{ %=  %`W`C` %BWBW``B %R=*9 %= %j``~j` %jBB`j`jB %= %j= %-``A-` %-BB`-`-B %= %-=UF %``` %BB``B %=x %=  %`^`J` %B^B^``B %^=6E %= %q `! `  q ` %q B! B! `q `q B %! =  %v =   %4 ` ` H 4 ` %4 B B `4 `4 B % =   %9 =a R  % ` `   ` % B B ` ` B % =   % =$   % `j `V   ` % Bj Bj ` ` B %j =B Q  % =   %} `- `  } ` %} B- B- `} `} B %- =   %} =   % d P  % d d    %d <K %  %w ' w  %w ' ' w w  %'  %|  %:  N:  %:   : :  %  %: bS %    %      %  % % % p \  % p p    %p HW %  % 3   % 3 3    %3  %  %F  ZF  %F   F F  %  %F n_ %      %       %  %  1" % | h  % | |    %| Tc %  % ? +    % ? ?  %?  &  %   %R  f R  %R   R R  %   %R z k  % )   %    %   % = .  % t    %  % ` o  %   %qFF % %]7lF %7F %H4FF %HH %H 7/F %7F %[ FoF[ %[  [[ % 7F %[7tF %F2F % %7F %F77F %}FF % %i7xF % 7F %T@FF %TT %T,7;F %7F %g   F{ Fg  %g   g g  % 7F %g  7 F %*   F> F*  %*   * *  %  7 F %* R 7C F %   F F  %      % u 7 F %  7 F % ` L F F  % ` `    %` 8 7G F %  7 F %n   F Fn  %n   n n  %  7 F %s  7 F % %iii %d %d& %lX %ilili %ldDS %d %/ %i/i/i %/d %d %BVB %BiiBBi %d %Bdj[ % %iii %d %d- %xd %ixixi %sdKZ %d %;' %i;i;i %6d %d %N b N  %N iiN N i %d %N dv g  %      % i i   i % d   % d4 %  %  k    % i i   i % dW f  % d   % _ < @   % Z Z    %_  7  % c E     % #  6   % i i   i % n   % n^ ;  %JnFrFJ %JJJ %F2dA %O2wA % s _W W   % s s    %s KM Z\  % M \  % 6 "W W   % 6 6    %6 M \  % M \  %I  W ]W I  %I   I I  % M \  %I qM b\  %   W W   %       % M \  %  4M %\  %[  W oW [  %[   [ [  % M \  %[ M t\  %  W 2W   %      % M \  % FM 7\  %  }W W   %      % iM x\  % M \  % T @W W   % T T    %T ,M ;\  % M \  %   W  W   %  % z M \  %  M \  %  e  Q W W   % e e  %` 8 M G \  % M \  %x  (   W W x   %x ( ( x x  %( M  \  %x M \  %;   W O W ;   %; ; ;  % M \  %; c M T \  % I 5W W   % I I    %I !M 0\  % M \  % I 5  % I I    %I !0 %  %\  p\  %\   \ \  %   %\ u %  3  %      %  % G8 %`I`5` %BIBI``B %I=!0 %= %\` `p\` %\B B `\`\B % = %\=u %``3` %BB``B %= %=G8 %fFzFf %fff %7F %f7F %y +m my  %y ++y y  %t  ^ m %+Y h %S? %iSiSi %Nd&5 %d %fzf %fiiffi %d %fd %$8$ %$ii$$i %d %$dL= % A -  % A A    %A ( %  %T  hT  %T   T T  %  %T |m %  +  %      %  % ?0 %  v  %      % bq %  %`A`-` %BABA``B %A=( %= %T``hT` %TBB`T`TB %= %T=|m %``+` %BB``B %= %=?0 %A-FF %AA %A7(F %7F %TFhFT %TTT %7F %T|7mF %F+F % %7F %?70F %+ %iii %d %d?0 %dAE %"idid""i %dn< %'nmO %{ %b{ % % %g     W { W g   %g   g g  % M \  %g M \  % C W $W   % C C    %C H W  % LH .W  % A -W W   % A A    %A M (\  % M \  %T  W hW T  %T   T T  % M \  %T |M m\  %  W +W   %      % M \  % ?M 0\  %  vW W   %      % bM q\  % M \  %``{` %BB``B %=gv %= %O   <T <O  % 8 # < %M ; ; M M ; %T 8^ Y < %@``dh@` %EBB`E`EB %GA_ %JGr %__ %diiddi %n[y %in %) %iii %d %d=. %JnmrmJ %JJJ %FYdh %OYwh %@T@ %@ii@@i %d %@dhY %!F5F! %!!! %7F %!I7:F % = )    % i= i=   i %= d $  % d      ---$E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |- %E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | ---$E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!- %E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! %ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW ---$ n + + - % n + +  -  N --$      - %       %   g   '&1Copyright 1996 Microsystems Engineering Company&All Rights ReservedR    2 2 ! % &% &% % '%  V0 { { $ % (  W0 { { $  % '%  V0 >  $ % (  W0 >  $  &% ( W0&+!``5!` W0'*!BB`!`!B W(%'= W(*,!=I: W0.3``` W0/2BB``B W(-/=l{ W(24=  W06;`W`C` W07:BWBW``B W(56R=*9 W(:;= W0>Bj``~j` W0>BjBB`j`jB W(=>= W(BCj= W0EJ-``A-` W0FI-BB`-`-B W(EF= W(IK-=UF W0MR``` W0NQBB``B W(LN=x W(QS=  W0UZ`^`J` W0VYB^B^``B W(TV^=6E W(YZ= W0]aq `! `  q ` W0]aq B! B! `q `q B W(\]! =  W(abv =   W0di4 ` ` H 4 ` W0eh4 B B `4 `4 B W(de =   W(ij9 =a R  W0lq ` `   ` W0mp B B ` ` B W(km =   W(pr =$   W0ty `j `V   ` W0ux Bj Bj ` ` B W(suj =B Q  W(xz =   W0|} `- `  } ` W0}} B- B- `} `} B W({}- =   W(} =   W0 d P  W0 d d    W(d <K W(  W0$w ' w  W0 #w ' ' w w  W( '  W($%|  W0',:  N:  W0(+:   : :  W(&(  W(+-: bS W0/4    W003      W(.0  W(35 % W07< p \  W08; p p    W(68p HW W(;<  W0?C 3   W0?C 3 3    W(>?3  W(CD  W0FKF  ZF  W0GJF   F F  W(FG  W(JLF n_ W0NS      W0OR       W(MO  W(RT  1" W0V[ | h  W0WZ | |    W(UW| Tc W(Z\  W0^c ? +    W0_b ? ?  W(]_?  &  W(bc   W0fjR  f R  W0fjR   R R  W(ef   W(jkR z k  W0mr )   W0nq    W(ln   W(qs = .  W0uz t    W0vy  W(tv ` o  W(y{   W0-2qFF W0.1 W(-.]7lF W(137F W05:H4FF W069HH W(46H 7/F W(9;7F W0=B[ FoF[ W0>A[  [[ W(<> 7F W(AC[7tF W0EJF2F W0FI W(DF7F W(IJF77F W0MQ}FF W0MQ W(LMi7xF W(QR 7F W0TYT@FF W0UXTT W(TUT,7;F W(XZ7F W0\ag   F{ Fg  W0]`g   g g  W([] 7F W(`bg  7 F W0di*   F> F*  W0eh*   * *  W(ce  7 F W(hj* R 7C F W0lq   F F  W0mp      W(km u 7 F W(pq  7 F W0tx ` L F F  W0tx ` `    W(st` 8 7G F W(xy  7 F W0{n   F Fn  W0|n   n n  W(z|  7 F W(s  7 F W0%* W0&)iii W($&d W()*d& W0,1lX W0-0ilili W(,-ldDS W(02d W049/ W058i/i/i W(35/d W(8:d W0<ABVB W0=@BiiBBi W(;=d W(@BBdj[ W0DH W0DHiii W(CDd W(HId- W0LPxd W0LPixixi W(KLsdKZ W(PQd W0SX;' W0TWi;i;i W(RT6d W(WYd W0[`N b N  W0\_N iiN N i W(Z\d W(_aN dv g  W0ch      W0dg i i   i W(bd d   W(gh d4 %  W0ko  k    W0ko i i   i W(jk dW f  W(op d   W0} _ < @   W0~ Z Z    W(|_  7  W( c E   6  W0z #  6   W0| i i   i W(y| n   W( n^ ;  W0#JnFrFJ W0"JJJ W(F2dA W("%O2wA W0 s _W W   W0 s s    W(s KM Z\  W( M \  W0 % 6 "W W   W0!$ 6 6    W(!6 M \  W($& M \  W0(-I  W ]W I  W0),I   I I  W(') M \  W(,-I qM b\  W004   W W   W004       W(/0 M \  W(45  4M %\  W0=B[  W oW [  W0>A[   [ [  W(<> M \  W(AC[ M t\  W0EJ  W 2W   W0FI      W(DE M \  W(IJ FM 7\  W0MQ  }W W   W0MQ      W(LM iM x\  W(QR M \  W0TY T @W W   W0UX T T    W(TUT ,M ;\  W(XZ M \  W0lq   W  W   W0mp  W(km z M \  W(pr  M \  W0ty  e  Q W W   W0ux e e  W(st` 8 M G \  W(xy M \  W0|x  (   W W x   W0|x ( ( x x  W({|( M  \  W(x M \  W0;   W O W ;   W0; ; ;  W( M \  W(; c M T \  W0 I 5W W   W0 I I    W(I !M 0\  W( M \  W0 I 5  W0 I I    W(I !0 W(  W0\  p\  W0\   \ \  W(   W(\ u W0  3  W0      W(  W( G8 W0`I`5` W0BIBI``B W(I=!0 W(= W0\` `p\` W0\B B `\`\B W( = W(\=u W0``3` W0BB``B W(= W(=G8 W0fFzFf W0fff W(7F W(f7F W0)wy +m my  W0+uy ++y y  W(uxt  ^ m W((++Y h W0S? W0iSiSi W(Nd&5 W(d W0fzf W0fiiffi W(d W(fd W0$8$ W0$ii$$i W(d W($dL= W0 A -  W0 A A    W(A ( W(  W0T  hT  W0T   T T  W(  W(T |m W0  +  W0      W(  W( ?0 W0  v  W0      W( bq W(  W0`A`-` W0BABA``B W(A=( W(= W0T``hT` W0TBB`T`TB W(= W(T=|m W0``+` W0BB``B W(= W(=?0 W0A-FF W0AA W(A7(F W(7F W0TFhFT W0TTT W(7F W(T|7mF W0F+F W0 W(7F W(?70F W0+ W0iii W(d W(d?0 W0dAE W0"idid""i W(dn< W('nmO W0{ W(b{ W0 W( W0\ag     W { W g   W0]`g   g g  W([] M \  W(`bg M \  W0 C W $W   W0 C C    W(C H W  W( LH .W  W0 A -W W   W0 A A    W(A M (\  W( M \  W0T  W hW T  W0T   T T  W( M \  W(T |M m\  W0  W +W   W0      W( M \  W( ?M 0\  W0  vW W   W0      W( bM q\  W( M \  W0``{` W0BB``B W(=gv W(= W0O   <T <O  W( 8 # < W0M ; ; M M ; W(T 8^ Y < W0#@``dh@` W0!EBB`E`EB W(GA_ W("$JGr W0__ W0diiddi W(n[y W(in W0 ) W0 iii W(d W( d=. W0#JnmrmJ W0"JJJ W(FYdh W("%OYwh W0"@T@ W0!@ii@@i W(d W(!#@dhY W0&+!F5F! W0'*!!! W(%'7F W(*,!I7:F W0rw = )    W0sv i= i=   i W(qs= d $  W(vx d    6  &% ( % '%  V00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W00lE|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0:^E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W08 aExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0Dt n + + % (  W0Dt n + +  &% (  6N  % '%  V0[t|y      % (  W0[t|y       W0Cms   g   " ( % % 0 K( @ @, ZC^>!DC$$q>^>!DCs Rp"System dtww7w`w &$# ! e ! dtww7w`w aw0UQ 8 %HiEP8HiEHiEGDICjpQ;:J: :J:J;;|W:JHiEdv% F(GDIC# q>^>!DC$$q>^>!DC# BTB!DC$$BTB!DC# q>^>!DC$$q>^>!DC# ʁ</<!DC$$ʁ</<!DC# ʁ</<!DC$$ʁ</<!DC# ʁ</<!DC$$ʁ</<!DC! % &% &% % '%  V0#6 { { $ % (  W0#6 { { $  % '%  V047 >  $ % (  W047 >  $  &% ( W0+-!``5!` W0*,!BB`!`!B W(*-= W(*-!=I: W0+-``` W0*,BB``B W(*-=l{ W(*-=  W0+-`W`C` W0*,BWBW``B W(*-R=*9 W(*-= W0+-j``~j` W0*,jBB`j`jB W(*-= W(*-j= W0+--``A-` W0*,-BB`-`-B W(*-= W(*--=UF W0+-``` W0*,BB``B W(*-=x W(*-=  W0+-`^`J` W0*,B^B^``B W(*-^=6E W(*-= W0+-q `! `  q ` W0*,q B! B! `q `q B W(*-! =  W(*-v =   W0+-4 ` ` H 4 ` W0*,4 B B `4 `4 B W(*- =   W(*-9 =a R  W0+- ` `   ` W0*, B B ` ` B W(*- =   W(*- =$   W0+- `j `V   ` W0*, Bj Bj ` ` B W(*-j =B Q  W(*- =   W0+-} `- `  } ` W0*,} B- B- `} `} B W(*-- =   W(*-} =   W0(+ d P  W0() d d    W((+d <K W((+  W0(+w ' w  W0()w ' ' w w  W((+'  W((+|  W0(+:  N:  W0():   : :  W((+  W((+: bS W0(+    W0()      W((+  W((+ % W0(+ p \  W0() p p    W((+p HW W((+  W0(+ 3   W0() 3 3    W((+3  W((+  W0(+F  ZF  W0()F   F F  W((+  W((+F n_ W0(+      W0()       W((+  W((+  1" W0(+ | h  W0() | |    W((+| Tc W((+  W0(+ ? +    W0() ? ?  W((+?  &  W((+   W0(+R  f R  W0()R   R R  W((+   W((+R z k  W0(+ )   W0()    W((+   W((+ = .  W0(+ t    W0()  W((+ ` o  W((+   W0-0qFF W0-. W(-0]7lF W(-07F W0-0H4FF W0-.HH W(-0H 7/F W(-07F W0-0[ FoF[ W0-.[  [[ W(-0 7F W(-0[7tF W0-0F2F W0-. W(-07F W(-0F77F W0-0}FF W0-. W(-0i7xF W(-0 7F W0-0T@FF W0-.TT W(-0T,7;F W(-07F W0-0g   F{ Fg  W0-.g   g g  W(-0 7F W(-0g  7 F W0-0*   F> F*  W0-.*   * *  W(-0  7 F W(-0* R 7C F W0-0   F F  W0-.      W(-0 u 7 F W(-0  7 F W0-0 ` L F F  W0-. ` `    W(-0` 8 7G F W(-0  7 F W0-0n   F Fn  W0-.n   n n  W(-0  7 F W(-0s  7 F W002 W0/1iii W(/2d W(/2d& W002lX W0/1ilili W(/2ldDS W(/2d W002/ W0/1i/i/i W(/2/d W(/2d W002BVB W0/1BiiBBi W(/2d W(/2Bdj[ W002 W0/1iii W(/2d W(/2d- W002xd W0/1ixixi W(/2sdKZ W(/2d W002;' W0/1i;i;i W(/26d W(/2d W002N b N  W0/1N iiN N i W(/2d W(/2N dv g  W002      W0/1 i i   i W(/2 d   W(/2 d4 %  W002  k    W0/1 i i   i W(/2 dW f  W(/2 d   W0(+ _ < @   W0() Z Z    W((+_  7  W((+ c E   6  W002 #  6   W0/1 i i   i W(/2 n   W(/2 n^ ;  W0-0JnFrFJ W0-.JJJ W(-0F2dA W(-0O2wA W0%' s _W W   W0%& s s    W(%'s KM Z\  W(%' M \  W0%' 6 "W W   W0%& 6 6    W(%'6 M \  W(%' M \  W0%'I  W ]W I  W0%&I   I I  W(%' M \  W(%'I qM b\  W0%'   W W   W0%&       W(%' M \  W(%'  4M %\  W0%'[  W oW [  W0%&[   [ [  W(%' M \  W(%'[ M t\  W0%'  W 2W   W0%&      W(%' M \  W(%' FM 7\  W0%'  }W W   W0%&      W(%' iM x\  W(%' M \  W0%' T @W W   W0%& T T    W(%'T ,M ;\  W(%' M \  W0%'   W  W   W0%&  W(%' z M \  W(%'  M \  W0%'  e  Q W W   W0%& e e  W(%'` 8 M G \  W(%' M \  W0%'x  (   W W x   W0%&x ( ( x x  W(%'( M  \  W(%'x M \  W0%';   W O W ;   W0%&; ; ;  W(%' M \  W(%'; c M T \  W0%' I 5W W   W0%& I I    W(%'I !M 0\  W(%' M \  W0(+ I 5  W0() I I    W((+I !0 W((+  W0(+\  p\  W0()\   \ \  W((+   W((+\ u W0(+  3  W0()      W((+  W((+ G8 W0+-`I`5` W0*,BIBI``B W(*-I=!0 W(*-= W0+-\` `p\` W0*,\B B `\`\B W(*- = W(*-\=u W0+-``3` W0*,BB``B W(*-= W(*-=G8 W0-0fFzFf W0-.fff W(-07F W(-0f7F W025y +m my  W023y ++y y  W(25t  ^ m W(24+Y h W002S? W0/1iSiSi W(/2Nd&5 W(/2d W002fzf W0/1fiiffi W(/2d W(/2fd W002$8$ W0/1$ii$$i W(/2d W(/2$dL= W0(+ A -  W0() A A    W((+A ( W((+  W0(+T  hT  W0()T   T T  W((+  W((+T |m W0(+  +  W0()      W((+  W((+ ?0 W0(+  v  W0()      W((+ bq W((+  W0+-`A`-` W0*,BABA``B W(*-A=( W(*-= W0+-T``hT` W0*,TBB`T`TB W(*-= W(*-T=|m W0+-``+` W0*,BB``B W(*-= W(*-=?0 W0-0A-FF W0-.AA W(-0A7(F W(-07F W0-0TFhFT W0-.TTT W(-07F W(-0T|7mF W0-0F+F W0-. W(-07F W(-0?70F W002+ W0/1iii W(/2d W(/2d?0 W002dAE W0/1"idid""i W(/2dn< W(/2'nmO W002{ W(-2b{ W0-1 W(-2 W0%'g     W { W g   W0%&g   g g  W(%' M \  W(%'g M \  W0%' C W $W   W0%& C C    W(%'C H W  W(%' LH .W  W0%' A -W W   W0%& A A    W(%'A M (\  W(%' M \  W0%'T  W hW T  W0%&T   T T  W(%' M \  W(%'T |M m\  W0%'  W +W   W0%&      W(%' M \  W(%' ?M 0\  W0%'  vW W   W0%&      W(%' bM q\  W(%' M \  W0+-``{` W0*,BB``B W(*-=gv W(*-= W0./O   <T <O  W(*/ 8 # < W0*/M ; ; M M ; W(*/T 8^ Y < W0+-@``dh@` W0*,EBB`E`EB W(*-GA_ W(*-JGr W002__ W0/1diiddi W(/2n[y W(/2in W002) W0/1iii W(/2d W(/2d=. W025JnmrmJ W023JJJ W(24FYdh W(24OYwh W002@T@ W0/1@ii@@i W(/2d W(/2@dhY W0-0!F5F! W0-.!!! W(-07F W(-0!I7:F W002 = )    W0/1 i= i=   i W(/2= d $  W(/2 d    6  &% ( % '%  V0E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e |% (  W0E|{ywvjr^lSfH^>V5M-C%8-!7*%-5>HS^jwe r              * 7    ! - 8 C M V ^ f l r v y {r |e | &% ( % '%  V0E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.!% (  W0E|xrld\SIw>q3k'gd ba1a$bd gkqw!.;GR]gpx $1 '3>ISx\pdgl]rRxG|;.! W0ExlaVLC;}3r-g'[#N A4 #'-3;CLValx}{zzW{d}q~4AN[gr}~qdW &% ( % '%  V0" n + + % (  W0" n + +  &% (  6N  % '%  V0      % (  W0       W0   g   " ( % % K( FGDIC" " % ( " FEMF+&@@<0Ne>@, Lg4C?&C3CD@$$==_888% % W$G a 1 2!% % $$AA( FEMF+@H<N%?A@@ .DN_@u$D_@bDm5CbDCbDCu$D%D.D&Dy7D(D&?DC&?D%C&?D}5Cy7D_@.D_@@$$==_888% '%  ;+IY8+F+FK+MN+L+_+^*uX4*x*v*p*i*a*]6 +GX( +F +F +F6E+3X(F+2G+2H+26++X(++++++6+.X4+/+6+=+D+J+I=*Y(y*F*#*`X4*f*h *d*`*X*QY(1*f*z*X4******=)Y$).)X4))})v)s)}v)vY$)#)X4))))))=^)Y(U)))")X4))) )))Y()<) E)X4G)O)V)])a)^)=(2Y$((X4((((((Y$((+X4($( ("($(+(2=(lY$(~(%X4}(,v(1n(/g(.b('d(Y$l((fX4(_(Z(\(^(e(l=c(Y(c(@(a?(cX4>(k7(p0(n((m#(f%(_Y(%(\H(I(X4J(Q(Y(`(e(c(=)(Y$ ( (X4 ((''''Y$((X4(((%(*()(='* Y$' ' X4' ' ' ' ' ' Y$' '& X4' ' ' ' '" '* ='l Y$' '( X4'0 '5 '4 '3 '- '% Y$' 'i X4'a '\ '] '^ 'e 'l =' Y$': 'k X4's 'x 'x 'w |'q }'i Y$'7 ' X4' ' ' ' ' ' =' 6~' X4}' w' o' h' b' c' 6r' X4s' y' ' ' ' ' =t'66j'X4i'c'['T'N'O'6Y'5X4Z'-`'(h'(o'(u'/t'6=b'{Y$\'Y'8X4Y'?S'EK'ED'E>'?>'7Y$A'G'yX4H'rN'lU'm]'mc'sb'{=U'6O'}X4O'I'A':'4'4'|6:'X4:'A'H'O'U'U'=L'6I'X4I'C'<'4'.'.'60'X41'7'>'F'L'L'=H'IY$F'F'X4G'A'9'2'+'+'Y$+'-'IX4-'A3';:';B'<H'BH'I=H'6J'LX4J'SD'Y='Y5'Y/'S/'L6-'X4-'3':'B'H'H'=L'Y$L'R'X4R'L'E'='7'7'Y$1'1'X41'7'>'F'L'L'=V'Y$\'\'X4]'W'O'H'B'A'Y$A';'X4;'A' H' P' V'V'=d'\6n'X4o'!i''b'(Z'(T'#S'6I'^X4H'VN'PU'O]'Oc'Ud'\=v'Y$w''^X4'e'lx'lq'mj'gj'`Y$\'['X4Z'`'h'o'v'v'='Y$''X4''''''Y$'t'X4t'y'''''='(Y$'`'X4''''''Y$'c'+X4'#''''!'(='kY$' ''X4'.'5'6'7'2'+Y$''nX4'g'`'_'^'c'k='Y$((hX4(p(w (x(y't'lY$''X4''''''=.(Y$@(Z O( X4P( K( D( =( 6( 4( Y$%(_ (X4(((%(,(.(=i(-!Y$(!(!X4(!(!(!~(!w(!u(!Y$l(!N(2!X4M(+!Q($!Y("!`(!!g(&!i(-!=(j"Y$(#(!#X4((#(0#(2#(4#(0#()#Y$( #(q"X4(i"(b"(`"(^"(c"(j"=)#Y$))#$;)X$X4=)_$:)g$2)i$+)k$$)h$!)`$Y$)+$(#X4(#(#(#(#)#)#=h)$Y$)%)%X4)%)%)%)%)%)%Y$j)(%O)$X4L)$O)$V)$])$e)$h)$=)%Y(*K&G*&K*&X4P*&O*&I*&C*&:*&6*&Y(0*&)X&) &X4)&)%)%)%)%)%=*'Y4*'*>'*='+]'+\'9+h'X4@+j'D+r'B+y'?+'8+'1+'6 +u'X( +u' +u' +t'6*T'X(*T'*S'*S'Y$*&'*'X4*'* '*'*'*'*'=+n'Y0+\'+]'",=' ,>'U,'X4Z,'c,'h,'l,'k,#'f,('61,S'X(0,S'0,T'/,T'6+t'X(+u'+u'+u'6+'X4+'+'+'+x'+q'+n'=,&Y(,&,J&-&X4- &-&!- &(-&*-&'-&Y(-Y&,&,&X4,&,&,&,&,&,&=L-%Y(Q-%-%-$X4-$-$-$-$-$-$Y(-)%j-%d-%X4a-%Y-%R-%K-%H-%L-%=-k$Y$-#$-#X4-#.# .#.#.#.#Y$-,$-t$X4-{$-$-}$-z$-s$-k$= .5#Y$..#P.~"X4R.w"Y.r"`.t"h.v"l.}"j."Y$I. #:.<#X48.D#1.H#).F#".D#.<# .5#=o.!Y$|.!.A!X4.:!.5!.7!.8!.?!.G!Y$.!."X4.". "y. "q. "m."o.!=. Y$.Z . X4...... Y$._ . X4. . . . . . =.}Y$//X4/ ///!/ /Y$//X4/.....}=/;Y$/ 0/X41/x8/s?/tG/uL/{K/Y$9/2/?X41/F*/L#/K/J/C/;=@/Y$Q/`T/=X4U/5\/0c/1k/1p/8o/?Y$l/c[/X4Z/S/ L/E/?/@/=b/Y$g/r/X4r/y/////Y$/}/X4|/u/n/f/a/b/=}/r6/X4//////6/tX4/|///|/z}/r=/.6/qX4/i/d/d/d/k/r6/0X4/7/=/</</6/.=/Y$//,X4/%/// /&/-Y$//X4//////=/6/X4//////6/X4//////=/`6/X4//////6/aX4/h/n/n/n/h/`=/Y$//^X4/V/P/P/P/V/^Y$//X4/#/)/)/)/#/=/6/X4// / / //6/X4//////=/6/X4//////6/X4//////=/MY$//X4//////Y$//LX4/S/Y/Z/Z/T/M=/6/KX4/C/=/=/</B/I6/X4//////=/ 6w/ X4w/ |/ / / / / 6/ X4/ / / / / / =m/ Y$g/: [/ X4[/ `/ g/ o/ v/ v/ Y$/7 /~ X4/ / {/ t/ m/ m/ =N/= Y$9/ 9/ X48/y =/r E/q L/p S/v T/} Y$T/ i/: X4i/A d/H ]/I U/J N/D N/= =(/ Y$/ /> X4/7 /0 // "/. (/3 )/; Y$9/ B/ X4C/ >/ 7/ // )/ (/ =.Y$..X4......Y$./X4// //..=.xY$.a.X4......Y$.\.sX4.{.....x=.9Y$|.`.X4^.yc.rj.pq.ny.sz.zY$..4X4.;.B.D.E.@.9=@.Y$...FX4 .?.8.6.4&.8(.?Y$I.Z.X4\.W.P.I. A.@.=-Y(---X4- -----Y(- -.X4..----=|-Y$Q-./-X4+-.-5-<-D-G-Y$j-#-X4-----|-=,qY,,p,",,X4~,~,,,,,Y,,,-c-cX4 -j-r-v,y,w,q=!,~Y0 ,}",~+^+_+KX4+I+A+:+3+/+26+FX(+F+F+G6/,gX(0,g0,h1,h62,iX48,n9,v4,|0,',!,~=<?q{ % % $$AA( FEMF+*@$%33BbD'D@ 0$۫*>ARIAL6@ pdVLAN 3D8'@ ?U.@ ?DD4@ ?a;@ ?C@ ?D F@ ???   RpArialMonotype:Arial Regular:Vek%`tvל6`vל`לC`לvtD`N`Dw 0wp8wDwp}w:w E `E`0t?`tE>`dv% TTS]AA]LPVTTIQAAQLPLTT<GAAGLPATT1;AA;LPNTT-.AA.LP TT!)AA)LP3% FPDEMF++@ *@$%33BbD'D6@ INFORMATION TECHNOLOGY?33S?3?33S?3;?33S?3C?33S?@33S?@33S?D@33S?@33S?%%@33S?D(@33S?Dh0@33S?D8@33S?;@33S?A@33S?DH@33S?DhP@33S?DX@33S?D_@33S?Dh@33S? n@33S?Vv@33S?~@33S???   % TTAALPITTAALPNTTAALPFTTAALPOTTAALPRTT{AALPMTTlwAAwLPATTbkAAkLPTTT]`AA`LPITTP[AA[LPOTTCMAAMLPNTT?@AA@LP TT2;AA;LPTTT&0AA0LPETT$AA$LPCTT AALPHTT AA LPNTTAALPOTTAALPLTTAALPOTTAALPGTTAALPY% FEMF++@ @H<N%?A@@ ?MCN_@(]C_@Cm5CCCCC']C%D>MC&D D(DDCD%CD}5C D_@@MC_@@$$==_888% %  ; IY8FFML_^[uX4TxLvHpDiFaM]6tGX(tFuFvF63X(2226+X(+++6 .X4 / 6 = D J I=Y(#`X4f{hudo`mXqQY(X4=FY$.X4}vY$#.X419@GIF=Y(X4zrnqY(y X4=c2Y$>1X4/(!Y$#I+X4K$S Z"a$e+c2=lY$%X4,1/.'Y$fX4_Z\^el=Y(acX4kpnmf_Y(\X4=Y$tX4sld]XYY$nwX4x=`* Y$N G X4F ? 8 0 + , Y$3 E& X4F M U \ a" `* =6l Y$3 !( X4 0 5 4 3 - % Y$ i X4a #\ *] 1^ 7e 6l = Y$: k X4s x x w q i Y$7  X4      = 6 X4      6 X4      =66X465X4-(((/6={Y$8X4?EEE?7Y$yX4rlmms{=6}X4|6X4=6X46X4=IY$X4Y$IX4A;;<BI=6LX4SYYYSL6X4=Y$X4Y$X4=Y$X4Y$X4   =\6X4!'((#6^X4VPOOU\=Y$^X4ellmg`Y$X4=Y$X4 Y$X4=(Y$`*X4*%Y$c+X4#!(=9kY$N R'X4S.M5F6?7827+Y$3nX4g#`*_2^8c9k=dY$jhX4p}wuxnygtflY$OIX4HMU\cd=Y$Z  X4      Y$_ |X4{=-!Y$!!X4!!!!!!Y$!2!X4+!$!"!!!&!-!=j"Y$>#F!#X4H(#D0#=2#64#.0#,)#Y$# #q"X4i"b"`"^"c"j"=k#Y$#$X$X4_$g$i$k$h$`$Y$y+$Q#X4O#S#Z#a#i#k#=$Y$%%X4%%% %%%Y$(%$X4$$$$$$=S%Y(}K&&&X4&&&&&&Y(&fX&; &X48&:%A%G%O%S%= 'Y4'L>'J=']'\'h'X4j'r'y''''6vu'X(uu'tu'tt'6=T'X(<T';S';S'Y$&''X4' '''' '= n'Y0V \'T ]' =' >' 'X4 ' ' ' ' #' ('6 S'X( S' T' T'6a t'X(a u'` u'_ u'6( 'X4! ' ' ' x' q' n'=!&Y(&!&X!J&x!&X4|! &!&! &!&!&!&Y(o!Y&;!&*!&X4%!&!&!&!&!&!&=!%Y(!%!%!$X4!$"$"$"$"$"$Y(")%!%!%X4!%!%!%!%!%!%=*"k$Y$C"#$d"#X4f"#n"#u"#|"#"#~"#Y$\",$D"t$X4B"{$:"$3"}$,"z$("s$*"k$="5#Y$"#"~"X4"w""r""t""v""}"""Y$" #"<#X4"D#"H#"F#"D#"<#"5#="!Y$"!"A!X4#:!#5!#7!#8!#?!#G!Y$#!""X4""" "" "" """"!=# Y$,#Z ;# X4<#C#K#R#W#V# Y$G#_ 4# X42# +# $# # # # =Q#}Y$k#n#X4o#v#}####Y$#l#X4k#d#\#U#P#Q#}=#;Y$# #X4#x#s#t#u#{#Y$##?X4#F#L#K#J#C#;=#Y$#`#=X4#5#0#1#1#8#?Y$#c#X4## ####=#Y$##X4######Y$##X4######=#r6#X4##$ $$$6$tX4$|####z#r=#.6$qX4$i$d$d$d"$k"$r6$0X4$7$= $<$<#6#.=$Y$$$,X4$%$#$+$ 1$&0$-Y$+$*$X4)$#$$$$$=$6 $X4 $&$.$5$;$;$65$X44$.$'$$$$=!$`6$$X4$$*$1$9$?$?$6<$aX4<$h6$n/$n'$n!$h!$`=%$Y$&$$$^X4$$V*$P2$P9$P?$V@$^Y$A$@$X4@$#:$)3$)+$)%$#%$=#$6!$X4!$'$ .$ 6$ <$<$6>$X4>$8$1$)$#$#$=$6$X4$$%$,$2$3$69$X49$3$,$$$$$=$MY$$ $X4 $$$$&$&$Y$+$.$LX4.$S)$Y!$Z$Z$T$M=$6#KX4#C#=$= $<$B$I6$X4$$$ $$$=# 6# X4# # # # # # 6 $ X4 $ $ # # # # =# Y$#: # X4# # # # # # Y$#7 #~ X4# # # # # # =#= Y$# # X4#y #r #q #p #v #} Y$# #: X4#A #H #I #J #D #= =# Y$# x#> X4w#7 |#0 #/ #. #3 #; Y$# # X4# # # # # # =d#Y$L#F#X4E#J#R#Y#`#a#Y$g##X4#{#t#l#e#d#=0#xY$,#a #X4 ####&#'#Y$G#\K#sX4L#{G#@#8#1#0#x="9Y$""X4"y"r"p"n"s"zY$# #4X4#; #B#D"E"@"9="Y$"w"FX4u"?y"8"6"4"8"?Y$""X4"""" ""=P"Y(C"""X4" ""$","/"Y(0" \"j"X4m"i"a"Z"S"P"=!Y$!.!X4!!!!!!Y$!#!X4"!!!!!=X!qY,X!p%!" X4 !Y,!ARIAL6@ pdVLAN 2D8'@ ?U.@ ?DD4@ ?a;@ ?C@ ?D F@ ???   % TTS]AA]LPVTTIQAAQLPLTT<GAAGLPATT1;AA;LPNTT-.AA.LP TT!)AA)LP2% FEMF++@ *@$%33BC'D6@  ACCOUNTING@33S?@33S?$@33S?D,@33S?4@33S?D<@33S?C@33S?|J@33S?sM@33S?'U@33S???   % TTozAAzLPATTcnAAnLPCTTVaAAaLPCTTITAATLPOTT<FAAFLPUTT/9AA9LPNTT#,AA,LPTTT!AA!LPITTAALPNTTAALPG% FEMF++@ @H<N%?A@@ 56CN_@FC_@Cm5CCCCCFC%D46C&DJ&C(DrCCrC%CsC}5CM&C_@66C_@@$$==_888% %  ;cIY8FFIFML_^uX4xvpia]6GX(FFF6 3X( 2 226F+X(G+H+I+6f.X4m/s6r=qDkJcI=TY(? #`X4fhd`XQY(,@X4ENSYYT=Y$x.UX4RJC<9}<vY$_#X4=$Y(X4Y(  X4 #'$=2Y$X4~wrtY$+X4$ "$+2=nlY$MD%X4C,<14/-.('*Y$2SfX4U_\Zd\k^oenl=)Y()acX4kpnmf_Y(\X4&+)=Y$X4Y$X4=* Y$  X4      Y$ & X4    " * =l Y$ ~( X4}0 v5 o4 g3 b- c% Y$u xi X4ya \ ] ^ e l =p Y$b: ^k X4]s Wx Ox Hw Bq Ci Y$G7 U X4U \ d k p p =S 6D X4C = 5 . ( ) 68 X49 ? G N T S =:660X4/)!65X4 -&(.(5(;/:6=({Y$"8X4?EE E?7Y$ yX4rlm#m)s({=6}X4|6X4=6X4 6X4 =IY$  X4 Y$IX4A;;<BI=6LX4S YYYSL6X4=Y$X4 Y$X4 =Y$""X4#Y$X4   =*\64X45!/'(( (#6^X4VPO#O)U*\=<Y$=K^X4KeFl>l7m0g0`Y$"!X4 &.5<<=UY$beX4f`YRKJY$G:X4:?GNUU=r(Y$x`X4{sllY$]cW+X4W#\dkr!r(=kY$ 'X4.5672+Y${nX4zg`_^ck=Y$hX4pwxytlY$X4=Y$Z  X4      Y$_ X4=/-!Y$M!V!X4W!S!L!D!=!;!Y$2!2!X4+!$!"!&!!-&!/-!=tj"Y$#!#X4(#0#2#4#0#)#Y$ #Zq"X4Xi"\b"d`"k^"rc"tj"=#Y$#$X$X4_$g$i$k$h$`$Y$+$#X4######=.$Y$I%u%X4x%u%n%g%_%\%Y$0(%$X4$$$#$+$.$=%Y(K& &&X4&&& &&&Y(&X& &X4&%%%%%=g'Y4t'>'=']'\'h'X4j' r'y''''6u'X(u'u't'6T'X(T'S'S'Y$a&'T'X4O'O 'T'Z'b'g'=|n'Y0\']'='>''X4 ')'.'2'1#',('6S'X(S'T'T'6t'X(u'u'u'6'X4~'v't'qx'uq'|n'=q&Y(&J&&X4 && &&&&Y(Y&&&X4&z&t&n&m&q&=%Y(%F%Z$X4\$d$k$r$v$s$Y(_)%0%*%X4'%%%%%%=k$Y$#$#X4######Y$,$t$X4{$$}$z$s$k$=5#Y$#~"X4w"r"&t"-v"2}"0"Y$ #=#X4D#H#F#D#=#5#=5!Y$B!]A!X4^:!e5!m7!t8!y@!wG!Y$]!O"X4M"F "? "7 "3"5!=w Y$Z  X4  Y$_  X4   z u w =}Y$X4Y$X4}=;Y$ X4xst u{Y$?X4GLKJC;=Y$`=X45#0*122786@Y$3c!X4   =)Y$.9X49@GOTTY$IDX4C<5-()=Dr6SX4SZainn6_uX4^|XPICzDr=Z.6eqX4ejldsd{eks6u0X4u7o=g=`<Z6Z.=mY$ns-X4s%z &-Y$X4yrlm=x6~X4~6X4}wx=`6X46aX4hnnnh`=Y$^X4WPPPV^Y$X4#)))#=6X4   6X4=|6uX4u{6X4||=qMY$niX4inv}Y$LX4SZZxZqTqM=a6WKX4VD\=d=k<qBrJ6|X4}wphba=N 6> X4> C K R Y Y 6i X4i d \ U N N =4 Y$.: " X4" ' . 6 = = Y$I7 O~ X4O J B ; 4 4 == Y$  X4y s r q v } Y$ /: X40A +H $I J D = = Y$ ? X47 0 / . 3 ; Y$  X4       =Y$X4Y$X4=xY$akX4inu}Y$\sX4{x=O9Y$B&X4$y)r0p7o?s@{Y$]j4X4k;gB_DXEQAO9=Y$FX4?8648?Y$ X4" =Y(tsX4p szY( X4=BY$.X4  Y$0#[X4^[TMEB=qY,p"OIX4DEJOX]Y,dcdX4jsvzwq=~Y0}~^_{KX4tIpAs:u3}/26FX(FFG6gX(ghh6iX4nw|~=<? { % % $$AA( FEMF+*@$%33BC'D@ 0$۫*>ARIAL6@ pdVLAN 1D8'@ ?U.@ ?DD4@ ?a;@ ?C@ ?D F@ ???   % TT?SR]AAO]LPVTT?IRQAAOQLPLTT?<RGAAOGLPATT?1R;AAO;LPNTT?-R.AAO.LP TT?#R)AAO)LP1% FEMF++@ *@$%33BC'D6@ ADMINISTRATIOND @33S?@33S?@33S?D#@33S?&@33S?V.@33S?M1@33S?j8@33S?>@33S?F@33S?DM@33S?DDT@33S?:W@33S?_@33S???   % TTTgAAdLPATTTtgAAdLPDTTTfgrAAdrLPMTTT`gcAAdcLPITTTTg^AAd^LPNTTTNgQAAdQLPITTTBgLAAdLLPSTTT7g@AAd@LPTTTT+g5AAd5LPRTTTg(AAd(LPATTTgAAdLPTTTTgAAdLPITTTg AAd LPOTTTgAAdLPN% F@4EMF++@ @$&@BBB( $$=='% % Ldpq*!??% % $$AAFEMF+@<0NJ ?@H<&@;CB;CBB&@B&@;C@$$==_888% % V0nt* & &** % % $$AA( FEMF+*@$33B%B&@B@ 0$۫*>ARIAL6@ |pFLOOR 23F>>)>>>>w?>w%?>wD?>"ZP?>??   ( RpArialMonotype:Arial Regular:Vek%`tvל6`vל`לC`לvtD DwLd@ww7w`w awl jM E `E`8w1w awjMHiEjM !dv% Tx\AAL\FLOOR 2 % F@4EMF++@ @$&@C23BMB$$==% % Ldg3*Z!??% % $$AAFEMF+@<0NJ ?@H<&@8 D1hB8 D1hBC&@C&@8 D@$$==_888% % V0j6*F#F#**F#% % $$AA( FEMF+*@$33B%B&@C@ 0$۫*>ARIAL6@ |pFLOOR 1>ff> {>ff>U>ff>Ue>ff>?ff>7?ff>UC?ff>??   % TxUAAL\FLOOR 1 % FD686EMF++@ %@,@$W=n=|A"D@ 555li EMF5@FL>GDICW&   h  h  - "- "---$n_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]*- %n_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]* --$*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3- %*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3 "---$ 9 :{ a A - "-% 9 :{ a A  "---$ 9 :{ a A - "-% 9 :{ a A  "---$ L nyL : - "-% L nyL :  "---$ L nyL : - "-% L nyL :  "---$ {Y _ kk- "-% {Y _ kk "---$ {Y _ kk- "-% {Y _ kk "---$'9 Y ? 88'- "-%'9 Y ? 88' "---$'9 Y ? 88'- "-%'9 Y ? 88' "---$ %a ] /@ @} %- "-% %a ] /@ @} % "---$ %a ] /@ @} %- % %a ] /@ @} % --$ o -o ]' - "-% o -o ]'  "---$ o -o ]' - % o -o ]'  --$ | + %- "-% | + % "---$ | + %- % | + % --$E:a -| l `:`#E- "-%E:a -| l `:`#E "---$E:a -| l `:`#E- %E:a -| l `:`#E '&1Copyright 1996 Microsystems Engineering Company&All Rights Reserved    h h ! % &% &% % '%  V Vn_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]*% (  W Vn_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]* % '%  V +*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3% (  W +*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3 &% ( % '%  V<w ' 9 :{ a A %  &% ( W<w ' 9 :{ a A  &% ( % %  V<w ' 9 :{ a A %  &% ( W<w ' 9 :{ a A  &% ( % %  V<$+pG L nyL : %  &% ( W<$+pG L nyL :  &% ( % %  V<$+pG L nyL : %  &% ( W<$+pG L nyL :  &% ( % %  V<( t% {Y _ kk%  &% ( W<( t% {Y _ kk &% ( % %  V<( t% {Y _ kk%  &% ( W<( t% {Y _ kk &% ( % %  V<t.I'9 Y ? 88'%  &% ( W<t.I'9 Y ? 88' &% ( % %  V<t.I'9 Y ? 88'%  &% ( W<t.I'9 Y ? 88' &% ( % '%  V<x( %a ] /@ @} %%  &% ( W<x( %a ] /@ @} % &% ( % %  V<x( %a ] /@ @} %%  W<x( %a ] /@ @} % % %  V<%-qI o -o ]' %  &% ( W<%-qI o -o ]'  &% ( % %  V<%-qI o -o ]' %  W<%-qI o -o ]'  % %  V<* v' | + %%  &% ( W<* v' | + % &% ( % %  V<* v' | + %%  W<* v' | + % % %  V<v0JE:a -| l `:`#E%  &% ( W<v0JE:a -| l `:`#E &% ( % %  V<v0JE:a -| l `:`#E%  W<v0JE:a -| l `:`#E " ( % % 0 K( ( ( @ @, iCC!b !!s % % % 0        : # >>>A#D$$>>>A#Ds Rp"System dtww 3Dwx33!@wp8wDwp}w:wFwל`לC`לtD`N`vB`k%`tvל6`vל`C`לvtD`N`vB`dv% F(GDIC# >>>A#D$$>>>A#D# L8BBcBA#D$$L8BBcBA#D# >>>A#D$$>>>A#D# ܀<s<A#D$$܀<s<A#D# ܀<s<A#D$$܀<s<A#D# ܀<s<A#D$$܀<s<A#D! % &% &% % '%  V mn_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]*% (  W mn_U.4rsF3S{WD4w %0r^-L</ # v  O  (   #/<qL^nry'Z4W{Kk+FrjI.0_*]0Ij O|+k&KMsZ'4yNfn|q  (  O  v   -0|f%N4 wDsSM&3s|O 4Un]* % '%  V m*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3% (  W m*]nT4  N{s3%SLrCw 4$Nf/|-  u  O  )   qo|fzN4'[rKL%k+{N jJ0]*3Sx<v0q6v*a 3 L _ k o   0 J8 jh + kK u  K   [1 R 'r   z  o  q * 7 C K ) R V O W V u R  K C 7 * -  /  $   wr R C1   S  u 3K s    4h T8 n   o k _ L 3  a*v6q0v<xS3 &% ( % '%  V<@_ 9 :{ a A %  &% ( W<@_ 9 :{ a A  &% ( % %  V<@_ 9 :{ a A %  &% ( W<@_ 9 :{ a A  &% ( % %  V< > L nyL : %  &% ( W< > L nyL :  &% ( % %  V< > L nyL : %  &% ( W< > L nyL :  &% ( % %  V<!@ {Y _ kk%  &% ( W<!@ {Y _ kk &% ( % %  V<!@ {Y _ kk%  &% ( W<!@ {Y _ kk &% ( % %  V<?^'9 Y ? 88'%  &% ( W<?^'9 Y ? 88' &% ( % %  V<?^'9 Y ? 88'%  &% ( W<?^'9 Y ? 88' &% ( % '%  V<A_ %a ] /@ @} %%  &% ( W<A_ %a ] /@ @} % &% ( % %  V<A_ %a ] /@ @} %%  W<A_ %a ] /@ @} % % %  V< ? o -o ]' %  &% ( W< ? o -o ]'  &% ( % %  V< ? o -o ]' %  W< ? o -o ]'  % %  V<"A | + %%  &% ( W<"A | + % &% ( % %  V<"A | + %%  W<"A | + % % %  V<@_E:a -| l `:`#E%  &% ( W<@_E:a -| l `:`#E &% ( % %  V<@_E:a -| l `:`#E%  W<@_E:a -| l `:`#E " ( % % K( ( ( FGDIC" " % ( " FEMF+&@@<0Ne>@, 7 C DdBUo#D@$$==_888% % W$M5q#(% % $$AA( Ld)??" FEMF+@                           ! " # $ % & ' ( ) * + , - . / 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 V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j l m n o p q r s t u v w x y z { | } ~  /HBHȂBpw hZ[ X*U۪U[K[u_mVb\0̼yf™ɜ;<3s̜s[haD{!iȑa2 PQ+`/%iik U6Kp͂g`8#>`  '>K~;q.8 p(wn,?()&?7z? K/ߛDX$1<Rg@@bdd 0gn)zeW`I!LkhV$GY|<$nA|/.LL݀X?ɍ,.Ud"y;"i:ItH䤿֙؉z#Mv1/d6Y%pT 2~qVd%#i8eev 2|]b?9Tm=}]_|=Q;,)[MWn'v7Pї 7M]oK,,Z%.)y]ih3.>ɯ/W}~ JÂkT{sJ Y˳K83#YuLSI}Kܐx$ =p`֭sU9o ޠ}go9j[8|D~Q+K9W5(Y8%(!teK.[xeK뗟{.I wԝsN{~/^ŋң`9>cHϟE8R鹟.X^?0"&8Vpt:ɼrrȔs۵\bwJӔLK;]qt| S\w#ޮ]z|wiF=u~$9J]{Z}q}h<*_]q;dQ3vSvCǷureZ nW#0a-|ԫF]{S׾Ny鼟zDwJԙasKFOyg~exO3ξJ]4 v4:HICOs=ҿR^Ao48 ~wr> )Ӝ'3TݑeӜ'㼳/_ h݅R/[=6C]!]Cq.rwc`:^V i:v̬xp|3VI!j}U;0 tO=fXG,k҄Tth6y׈`j}S|ۯlS27k.*6#tȝ-[ͷѶ+{QenWM٪%seǘqA,o p6|cp>&"LU!.5l/紛FKG'w5=Yp4RS 祘w&Uɷ*M'ϔ k!>k}g{kz^r%h:cq lL;e, [Uɷ* % B* a{' ͔~S}1w?93yͺ6ף.7]å0X9s-7SzM0K}lȯ,C|0l?u.S}go;׬a]uه;irn3<_agk7vcS?aOQ;NVtMp:mܟ7lSʟ!M\==Yܹ7ϓxsx*݆˽|B }͏Owzއ}7Mꌮ;NMS{{sU ݷ15 40O{z޳EfWo#kwX[+fukh^iy,&a:srkɎt:6v`ځ}j0m㻏,xms{wmY_ :`# c滏dj|򻏪>b9jN a;`t&Gl9T;pQ56!l|l]6Cnf},Nv R3HCdПC9X` zYD>Pc<,g&;p&ne},Nv gׇg6?4فI5Le} ?E}ndᨱpF]lsJ8Tc~NZl6b9Hˁq o.gtP kFc}2-Ijy|".=h lڎ%W5\O >?Z~ׅJV:nd]^npA!sѬ ȡ4e]^cW:p.>b]'7W:p_e>&T:pҁ|uLM2l*8ZYJ<|->ܻT.MpޥJ]$?6t&6V w; g*' ]Cr&. ЅIN½5yO=A=Ip?Z9t&gC 4ONCׅ*GUx|D=>'U90>GUmⓟ6 z06n#փb=0!~6ɌR?iG25L63Ov`\ca|DcDu1dH5ۆdϝ';0w. 4 pA!!xoAIs rM)-shx8y#uLMx&TbځQ]]&6ׇNCl oB9򁜆x$xP 'H i0mF@-dzϙFO~Vev%W½p o??x$l|^? k3?u&}pB{㳄upʗ^Uty::Ϥ7S<' ?ps0Eןi凚$߹0?.~o(~8PR|^?a|#|⛭T+u\|9$-fg|7~O~wg|79ۺ;[  p+;M LlI3og_ @Z^opwfߘw}L<7yxUx6(16Xmmhli*G8td-X [+E{IJ=] &]q;Y|IM֟7~M{P_ AzC2TIVtXv!tpC›P+w>W7fm?ʐw<3So՟9)[26#nU7j *ޥ^%Ro ܟJ=l6 >$_#6r< Y[6Xhm:9 o7j66P{϶Bo3 >mlymζBo>4 >mlymm66|lZ| v>XhSrYD>>Xh^44@;냅6_e@NTx;pY +y0rA5u%C )M &ۄ_թg7&; ؄mMթ[ . \Ch&#r .  аݔ7S8:>f@+؄\ChO>@Fuj3&Lu|TNϨj] hz7> ZC5b76a3sxm{;@CwQ؄ 6>t?6>`7 }Ab;s@çlw&|M Á&Mh# M|E6Ɂ-ߢ ɺ.8!gXhr&ƺ.8!Xhr&u!x]pB .ߵ=Mg ~Ɂ{6 Zir&3Hlw&8pφ/h0CXoo\cp!9 (c6'~)D+GMFo[ЧFxtmڎԶ%F#?% ~BE~6. u,:@yoeu9t-B<9p_uܯWg|zx ߯Wzuc| Y8w6΁_]JIJ@-˾ߛQ]JuRO$#l]JuܥTg.% a[Az Z&~_a;.`+Ӑ \XD9$z w?TCZ! YԺh} Y_ *r&ʡ6!۔h!!yB[hczH H~K>?N$';0Nj0N6>Vm@?Vw`H/Z|(l`6b=(!SexK|s#y##590onr`c# 5ق>_d|ɁTǺ.L.ȡ4{n_g/B rM(0 zLJ'S;`mBy}b}s%sz  q/A/4X/ ϙd34?Ns#:@z>ڐAMh.RX׃& MD>z:@CqvAi$ |MtVQHZ|߰ N>>Q]J!6|\B{ u|O΁=]Ms`O|OA`~Nw&ۄ@ 77͂vs_#hL&pO ,v_dõxǔkm`f ޢS}0 )s\PIM&.P.}9F7͞3>Oy 3?XM0BȆCV%68XV8 A̗8_Hy6E~m|{SB/o?s}[;="P-?)]M|{c~}F˳ۯjHG00lK;;oxl=I"ŔC%GඖM-M^ rkEñc/ɴYU+tD+n;xG]3]_倆o`:$Atk̅3w/K#w}ph0GPF/|6iNox2ʐ<3So՟9)[s26wgܦo2K!E2xU@AVJkd60#r3t:9 -b&ܝ^ۀy@Eb` -urZD+un* }L mm0Oq  mmmZ| Ea` 60m665 >"e` 6p< mm8δ6@NC` ׇe@NCX` zYD>"Nb}É䲈| a8:pY m+y0CLsAzMx]F?2H4#lf8p~uWgПd@ :`B?6aVg8pnuͺ. MG. s\ChgK]OU!c@+؄c]Ch8O>@FuF3&p|  j] ez7> ZC-.ȡ4 6o|lB3sxmlc!;dj|llBM%:s@]@Z|ӾpSɠq`NCM%s?6>`&M8?lf,p"ۄ 'ۄV"xo*f. Nȡ4#;.ZU. Nȡ4#;.ZUa]^Ch3H w:pE$luV>6VZ  .ܳqrMHq o.Pih uXL$-4K4Mۑڶ?ߘEO!oB[he\\ 6;p` ׇfrYlvt ׇϾ!.ZX,@فs-ܷ>1y@~t g^ׅ6?y_! s ^ m@ف-ܵD}B3}SC* `~ߒ!;dB>0K{m" 'mۆ{i}8\4^, tapzcfK ^ qZ9t&,4 031l1LH-H~K>?N$'t`bam}(ۀ~4Ӂ,~};tr_'mzPB7/}l1lTkF^Gju`Fcj|c9=}6ՁrLօuaX:@+=b)Z9t&eC 4,u}256lrba{83lL - q/A/X/ ϙdf:0g8ϳpD}xM/8׆ (m,R9Az<ՁyBXAiu(킴g'H ikҦcX9wGmF`^cjOg?Fh|$'J9Aɢ49Wd81a 6;pc:@>"ۀ~}فn/ul Yf.)4 d8 ,`FK14|}uytyCGV1ZLmch"CqRh 6䐜IvuXH#>^f]hG 43XׅYbANCX.<@rE(8\̄zpg ೄ0UKhA8C.oBK*ԛf|Ƨs;{O;.19.aϯ99~O͞'a9O/0>)~OP֮`481 B0N,aLAUЊ$q 1/gBOeFOOR_TA?dspk;cC G0<a;Mq{c=/-~YWH$Nt ďF<_ *^ Jlo2 Б `A=b8;C7L`G |OrksWpK ,DX$1<Rg@q;#@#KH1=vNU/ٲ{ޫY$ |54 I+},v_B [p&n@g g HuZ$KۑO1oO$UsD:''ΜN6mڴI ~1&.*rH: -iI9(,7lؐ%䀧o:/5uqdtHY._ or;\1on+]baגG͓y+%Dru-u%K(:4qSъQ'xo w=0Ql-nSŎKQy ?=3[L~ :YY˳^K<χ/J<x) ~c9+%d{Gv9S~y\ (wQG,=c/>_޸le\lIys;}8"Is)#q/+xQzyP@j|,‰wv;WOs9b78 o6Iqz$QNuCޮ{Td\jYFƦnԜBv.Z#SN%5.7#Q겧Ӻ{Ɨ]GQ'!9뜲k:.Ӻ]pԿd!k;^4:uK$/H'3T TsX[=4z?;CE(K{DwU;ɿlL^AHzsT8/}" J9_OygK9O9<=睡/펜.C/=}t\ދ: ץ^zl:vTttueݍixYmNGy]+3*co&LB&'htWF{;ψI-~d*ۯlS2,RY3ֹmn*s}^TikB蔹|hU}-3nk{qA,o 8D bX,J`p*>b;%7V x#zsMei3{Kߙf]R$饢N/3y!K1o1/yFߪ7dަn3~?C~0=nH?3yMk/u?LxQ xVL;C> %g |q16Wb8M˔~S}1w?93yͺ6.8v_ 0,6C~ ϑyFߒkX7֦!LmX߈?{Kߙf]A>]NS>\ ,ydnc*{2o| q3O{z޳N)wwaܧ+Ptf{tvd_b|pf|'?3z6 kwvԁ}{'1{y*gu?lwn X|subC'?3yϺ:>+rkEB K2mV:w$wt@Gy]Nnm"qwN 7q|*aFw/݀{pBD>k8nB INCBe@NC` zYD>Ӑsqw) pC}Cb7 9tlAlB6&$8pjֱ. k]Ch&#r g]^nqA! ȡ4ƺ.lpAvhϦQgzfEim:`~:@Ý} .P؄;I6mB f~s 7Pr wo|Pɠ94sxm:`|7 8`xmou sBmB6@l| whgXAlBMȆ;菍:Xa#ۄ  6!~@|9 9p#Bຐ}+(@}G /9m:`[q஍>{ĺ=(p B:@?b]"ǁ{.r`B:@Ab]o%ǁ.r o'}wm$ ܷ/M =u!wC}65#u6Զ߸2@oK 7.  <ʡ45[XCh)pY`]-:@]~#r \{;Sܱ',q\;w w1؄ wg g&Sܧ$,ܧD, Բ;>}J@p>%. vAԲD ;0g1:*oC-w?z(?1uf}"$NV 4o壹]ä, #u!1l1Rҁ1R1 E;g]^KE9$lJ %ĺ`\C|Ӟ0sWIFw!ϛ-c#zl9ǁ9s|WP2Hnc#F(™AWE9tLe7+ A!ђ]Ov$O` O'[MO4[x_&!+x]B_ǔm@{Wȶ[Yxo_JZaFK16b@*м 603 >Ӑ. #rZP"|-Vd~&s?μ׻ 4dÍZ'{m({m9 l|  uɜ5#^Wjp3|%@֪7>Q"܏RMh)_<~}xw~R֮`4>-($Ǹur#܋Rx&tM_nY7H980s FK=7}y3|^?a|>~bO`|B|f' uCa5 ^1f<g|KzbYۏ4]" c>~e/?%seNԳ3/!7xUBlb؆Kܗ ʠ0pOHO3G+~ ]SZаڮ'-6aM@6 rMjCr QclڏJ MClb@+؄vAS>Zdj|l§wT K-p<`7 E79\d~'d<>*f 59\d~ Y 6~ȁ}"6/p@PMpCE|uLO"?*&8p֡ȁ`ۄ ; |:}Tb mw ۀ9 %.6# hhL-qR la` gw9$!X ";pc},;pF3ICdПK*v\R |` zY,v ׇh6?T3J>Ӣ^k%?Z}%) Ւm@V؁JN- Jt) yHsF,Od_3o>ł}?| .wE.9p*ަkyXrׅ<|D7e]^d9p`Kɺ:@Cg@Y88Y<6CQH YАMv ؄lBQ!5>:06*QcBF ylD'S;`FEl E؄"lBرXJu'EC"ep3Bϗ=ǯڀ?ϙ׳0>}|PQ؁1Ry36CkgR䶡@RAPϝj|1 B||kH"ϔhw>Zdj|lB6m:` Myh"r y@'SۄB @?O(RAc"?6*r`lTبF}256~lTbA|he 8 yc|0ol\呟=*m( u0C-/Gm8ͺ.: B"6v>𾂩FlROnA2 9$ ^-l7e,7lyCPПI'ʀCrJ?? oi(2Ϙ'# ﷕/R_/ nCyNe?X5.S$E?_B+tO$d-X.G$ʛR U1>w<?zl8oyO=?h͞y?>>y#'^<>'gP֮ԙ d6Yd]+؆Tty::ϤȯN1s]15}ND'zN?5=?g~b''Fd||^? ;TS+ugb|Mpx?jO_c|Czc|'ħ?orWp \B`}lyߐ涤~F˳ۯBJ -Eaؖ|6F| :%~3t|f%6`2 Б @V[ϭj "$fX|WMîQskɮܲdf5=-KF}.`:$Atk\};XwE*"Lx;ڱᛷd!Oyfs~e/?%seiKqlEC~b)}r2D)-0fP'N9>4% z6V 3MyhCu!x]:@lօu 9t9 1.ȡ4e]^Ch8u!x]:@qǑo;ʠza&i8m:`7Np} .P؄؄&ʡ6a)-p"9 4օuah">{Yׅ]Ch೩ Nȡ4d]^'+9t5j]^á' Ƞl*ۄY.ȡ4f66aislq? si} }>A>6a`|&Z7}p6ϤM8ށhX.K!4 &c93Jg; iw &c96^~Ky!Gj~7 @~&.i;OB~ sC-O6~FK!Qj.m}la8ɴ_4mxX9JS-mImdOyݧ6X}9|]j8 m@n_ik(cR}.&SڐCh`߇ G `s'7>e|P~&8pԁg>%Z|R+ 'ۄRλ:p޵'b|d9O s-uk)߷ĺ}KܷT-O<3ېAQs[*uྥRqs. sxh8m:`N1 9$a B0uV:@ i.ȡ4,kRX߁-$ o90W\aXp|:@<Pφ fMMMWJ %ĺ`\C|S_ʠ?C"}1^wSgﵓ㣡GBcDc!Z7m@Ǿ`E; (аu!x]89tצu|zo$?{1P6V K&aׅA8W0;@XtA gCR(x0؁`Gy|ĺh<>P㓏;0>jA|R_8w.i?I}60-v@$i}6m`4|hL/ܹT3 9t.R~PYR_`B B @OOTj)f  g0u!x]. r@1%5c8HN.h0'Ѯ͛-68|a8xPT6isC9PD- a6{(۠\hq6_M`4c}qD(94nS0Boil~ϱahvAi*/ C,le@N>~@V@ l3E8>Bخ`!BLǴ@KhAX(bZ -eP_Cdx7s}^h*S`c|Yǧfۏ_ ~7~7>O'eV@|,f \yoƧ^?\?p|zKA]2~[y`|B|+u?p|/ۺ;\V8 Sg inK7g< *Dъ4u( 0\|6i}cW! ũ[TWU,5-s[[Y oZp,K2mV:w$0 e=6< #D:c#꧔iք?>Հ g9̅"+?ܕrIшXݕRA^;ijVNZ=E7/}po8wbzU>e oXGb0õ#4\2<˯+mSkoBߡYB./Gj 8 a$|' 1.0_r'C( V1W2%`a cd*fD3 c8TL!.e L)(FF|n0̓ܡ>V48Ǵ.'sPYO:FQa->ת4׌1Zf kӧC@Lp2>OV2d/D8aư1Z2ga\e *A2%aEbƫ`te_pIiR|y^iW(H]5 Rqv=k!WQ|d[1a T̻c(wCoR0 AhyçUJoTa ӪT6|j.i!@xSyJo# lEئ|'||ގ))! Rr.DRL90ix)yyG! D4XE \/l^J*I?_LM/R,PWYU|1J0" ϣH*cq?Gq$ '2]Wcw8VLNj*1aN*(UU*8VTJ8c_p:✆p *NDq,R " gaLYf*?F"ùb4c0 Tbr1\mq+oAxG\%|Jyob5q) 7\^^\_?!RUy _Qi2i? `(d& RUSa*~ߣ`A2o#*,c0 Vt- \UJɼocu**>Ri2rL_pbUwÕa*L/v8KW0XT,[p0~]e<bR,g#Z#U(/KT,ӄyuZ)*a*OF٩B8R| ї0b*O/.@[vw Ӿeh !JL;_b9hkE myvJ9hvy)*>t_(m?"gaY*_xTO4L 1*6AUGݏ;3re| T(7t,QdX7|E/*?K Ǎ[hˏ(Wr9gQ=9.kitG嬤n\ԍW-q[2mھ$WttLV[.\ =N7CꎰMwk>ףf{'8g̤{_bjk2$2U7c8Ѵ^r/8_/i<Ŕ 1$Of.\r6;d[;GZ^˨31,}Aץb2xmTmu:2z9tk{}KY@Qݶ^;rgɴj5d^63;;cs,M,S?cMYa{TVTeQݘq9y7|fW X^7ެ|y'jT4!W4x)ͤ3Ly]LsiUd.FŤ{o~%-6ZN;s*&E]5,2ux܇kp4Zehvu.#u66V ۭj{meX9\ uNUejx݈Lki^_Ski׼1ju5-w#vZ1U8;dگeV"t,^~s%-w_|❩#ڢzPanK~>˷w;m|#D-ݧnBmJ4+mF ][iH}QۢXjnt[uN}FK!b=ڣ}sԶM7bَ\g5uVCEn:}ʷԖ.]ӻ? QBޝl;m[TZ7y-OZ7y_EDie^ǷO"VNoU]Y4:*-:diTTEDsC::ن[AޑC4~ʌݺ`KC:}nQ `ݍ:ߌHk{ozC~=TwƹtN޽>^g|uѮ+kuSwiG]Q׏mQ=·m{X#{8 .=j4xλ^{EIkuwr?o^7y`רunR?AhʤNtuۿV]_FefhRjpe5ih{ly'GޣJ}ySP4ukS}u{qM>'j[&WTc-t{>\u Q%+VhDEE[8_7:nK:hn:ً:X7T\ZZFVqQT}:vzDu{C\]_d'zQTԥG]U߈K#9옭uiOˬ*(3X7e/Ѻi&3֨g[S/k&l-Zyn2#};ƂΥtt"}m>,i~#3D#^G:dF7-jK"[ڻXU\]uJ8*ߢ֭Q\iφEFGE_g"ڙ)D[|'.ʤD]Qbv-btyV݆d:>G6cboEN%=mg߻|"bYk;+7"-Y[WE]=R p f A^||„gʸ:*kxCnm~+I<et5;?6y.JeKϮru0 a4T¯OUpDT8>^ؤBS:%ȗb\;sovʥ~r<n`\6Esn>#X7"V]d55+2ՈUۈ5AHUEQD|e]c0B3F4V%-h4)&̝27IU[Rag*~sN kCSA ~T?KRᚺT}GN;!J_ r**!͑{qv I?jb͉0bDƺk݈5/2_jõ|bEjk12ַ>2X_ՆyV|1ַ!ִX'#|m~JK{O?wz|^O/C~K5X^sxOzJ27bO_?=)VbU1eQ-rm)'v |,'qr#m@aʓeJ`[a lA'Ʒ@1>c̓e»/0  ߁L\ #-0?p>y2_;›0@;7U̟iU:T\M:|nT_ôtߌ-*Wa <a>Uy_g ,RϘ'˜s1m¹ > t)x 4w>B\Y] CY R2_V2j (x/g~=kyt(W*s+w"lĴ;nUʻnp12cQyȳ-[1g Soci~~y>EYفz~U'˴8o]dE 0o'Aɘȃ7D1)JcD=!/O o}T(!"J0x[`F?V1F< #0_ #&8~ӷGb|"`gZy2lI1IdDB?Vl싒2_/bE' XqHL"_yʍApDhczSeF`T 01Á<@iʔaP101mLW1!sžiLK"7e&a_%;~Cc|&a| ;b8Ƈa0.k`p._0E?\=`*[#[ e{O"t?Ǣ,&# P&FA0eBc`.Q/`(}Q*(1MA탺T"1^D):O"8 D*P,Hb/K$1i*o?LG,$>/o|^JyդƓMd/1j1Gf9:db܋dS1'X~be,o)Uܢ<3KރI*7边3s(񺻺{0֔ץ?˰;T#qw{>#{_'{z[K;Ǖk}ø _eݪx~O][Xc8chuegzNi<6gNE+UXQ&*q^ey])wX#\i}e׽UW=^UO;/u&V=76/L^2M,x/G3>E;= tT(D{D T#3ЋC^Mjq2hGѭl]>dc+֬/nTmkGAw,_{=xg8k=mo=ΞAe?{M2muG#NƧ;R\{Wc{O/yZ/׃!k[5 Ůȳ-zWke臢{5{q=QPxY0~Y6sMY类[6ƾ[TֶAdm[{#ZȤũUUiE3.fڙ|x̄WĠ/\жV֪ YSB==L73WĘdh D60}2kԯW3=bg.=]r\|W.ޙ*1oLE,nd;C"{Lj@vPn7t֛}mE1lyz|[wCn[/_W!{MmyÒT_yzUC^ ~.oVQeMQB$O[on5֥GO[?:uH+oq̳5)oKeh]غ>gȴ[dʌN.ur7V7|:Qm-o:Z-A6j?cn>ؒy'bu:UeQ%K;rgy)<ű}(j{?'xyYD͑u7[W[myKV7yÜGW|ڧ[Ko"'|Rn1QTU7yaT"ɶޮQNDaiCDۿ6]_"u"ri K^*M[^!tm=^3"׽?w#i{QiSDR^'\m[tВgbݞn?Skmqy* ِ?d'suZpk|jn۞{i:X;sUބUfѽ\ˇum>HDFnuH+fkKoQi uDk}9Ҫ FĪ[ov(yW.ѨnZ3Qe&jt3udPK󇨲=s[~W*O6{@3>nY~#Vt7"Vtk+G+Wo#xf_Ȍv|%+E9R3 iTxTQ}*l ?%:V1dcpGѽy߈FF`jtO~՘mN|w*/ÛU^ʷu\K a/套#^W~^z)R~>Ky K/Gby/0JQ c6"܉p$vD a7`?w"r?Tsn7Xpy{|Yn}F7 \1]2C:al80!.e L ߃Q]wU8L;d,w(7q Qq&&s\_e|ChTO&10[Wf<*LJ2'c|!7-'˜s1m¹ |&,A2%/R V*2B\ӮKY2W`x+1~zWcVJk!OY[1nTY߃i+W*L! 7)Wƒ*L=X1|Wa*yL7*>Cɼ?` eWTM|&S2›*> ӿdO["lKm;>E؁z6|AZ~'B`e9_[W|LKɥCLb P]UnVAVŇaa):q0\/C1nPq6aTJXkDX^ubd*Wv(UL `UG$,VƲ`1#,w7LW} ~>O8x 'DiOrc!!gHhx?<$Ɵi*/O!Oa'wS(@yK~e6|ނ i ~e _U ƟUBx"<`3*O-_d[Ϩ1$agU߄C 1= 8 yNɼnPԍEAӞW2Z AZ*M}ï#\y&.pT9PV*x*Le,bYXT,p!) d&`<< z6a:B Ͽ_?Ova}}U2 mChghi?W29z~]½|?om:ۺPW!pN&Ou&}ا5Z}ħ5~SOuwMX6Χt|#"*OozS3ޓ2K|j_Om=QmhԾR'3mO-wplՁΧu`wHޥM(}jVo}Waű4?!w}j_Om[|Sw]kOOt}/>GRu{ڣOmW}j>^np^ݟ& ]ڰԆmڽW[6#Α}j}ק6Yolwk-SGZ^AmjKf.GZmǧ6o ;<2.|ve*|&])XvCüTS]0.gDCd VKd;+ Vt[[kknd+F91\z, -VB/EPZXݡ'ѵ#k~Sǟ ]}qĝǪv_'Q[-\+f^9)<;!UoS;BIo 7ƿxw4=~'*uݧJW~dFnw❵c/tvҹihsr jV*pUsP*\ՠŠUmai,<(Mԃ>5 U99ݦw㍴5ԏG忦v{S#*_{WqS1Zi k?8AB%:ۇ Ƒd \sUTqs>S#CvLQ]*Nþ9\AI!E,E饞toL61cMyWz8" ,?Lv}y>[nZ2BΆx3wNs۩`nq[mm-b15,5c?5$#6~5*å9_5p2 r+6,erK'l8)U@]\&5"ՈJ.?BHF\ i;{Vn+[?]d-YsfY8(m2^,)R(1_晊(03Dmh5@4F>C3jtU#!CCCWkͭX(?C/{=ro|_*G~i JJt0.t0EWFpn_$7Hy+XwHmQ?9zTZȫ+rX@4cs"7Ed?J^!~| [r^{jS;d Q7!wBHN\OG.zDI#tKOaJUt4LSe8Vr- #9-%l+ydRK+[dX9@)Ҧ]j}UB]5Kk#Ҁ6"}_{P~C;%U(#!DWz}ڪ>j}~TL?._/>>Է5=K}~jI:tT?:ҏ=ꇋuDΆ?VF#F#ZGt6]uߨW]XZOa3߯쉯W+tư;GXN)9"r}$/  ?xH9Tcog?kVԸW n1&㰯ٸnOm.\ i<l7Txh2bҨ'BFMNJ> .,><\|,n? "˂h`SXs` ]Mu[qݿ'[Qxu@8_?p* πm@'mV+5Z 4YUFDItV׫mfYzv) ی}4S KhQB =Cٹ̶9f[/t+\exL_}o)-+r[;Zov~Yer!i流|;EEu݇lj>}x3\-~M^TU[|BBGv.w{>.nG({cbC9,Մnmee%9qQqtNe0pD*U_W?*i}״za65G0]S/U^?QK aiWJ_>m\fr0t}.é ߭^ZQ >Vn/Vv.w 9?Nׇ2d "wD<觌O뻞7)BO'V;y.M5r1:Ctx-V r!t}4wkL\{"&֯Nu3S:M_D 'd< tV2SDs1qΧNy:+cX{ѻs.O?~# `mkƙs.x38~᳧aX8egɌOf?cv"{1иX㵌ǵc67A&LJJUGHm-&ft:|X{I {LTb[ @p7s9@)+n@ adAp |GۀL@;iǵ& 3h'N$l'! .IpJ[ >t.ߺc|M$|OB$HB$FЫuBuq쀮з:C6+&3cv̚&^a%cp2k'Y=ns?j>߱}?^'Y5Eyǟ:+v9?7yw;ۧ.z]Οw㭟Q^_Ͻ.Y??oy{]?Twu{y?<Ͻ?gƛ?onqyw.ϻO{ˋ֏)w.?nn?]]AuRl[{D&[Q*`kXkTk5 n:0>`k Xk!k#$nNc`Pb7\`k/Xk05  As-[>֚k?:Hk]_:֛ЇMݰ ^==)OIKMOAHAIAJA끎=г@n {7`@1ԃrfh >5s=$ :v3 y_[eW]m~^3ח%\? ] ޶T}a_=X.{\k=.{^oz}^=?/T̫;({^wWW֏}w ¾]^}y{ oyϟ>sB?W>\v]>wx}^ ¾/ yq;\^~\]?]?ܟ_y[?^/ ¾w{[I%$h+-v!]Cf}/d1;VA:+8C9S[,y=ls1m_j?M}@+KIo si)a,mdިþ:_%}~!a<E\}% E. D/a,C ECuܡKN|NuEpσn"c.ھȃm |A*q^>;fjX:J%琿3Epσn"c.ھͯ&7|kͭ5ׂW5·sbnLj|1'ʃn"cγ8ؽw:Vg}+;+/9{a9_~`ۿ9l"yg|dlH ;|c~tXӱc=x:m?ɘy0_Ĝy}?soɸq%y&cNzF%g坎89isy0_Ĝy}!v"@բFBZnTZm-@kwHf"} >_4J$}7G^|ξ+v)$rU&kyK$i?$ogXzx |>>wKn{Pq}YC"DP *BXZ, V6ԘX4ԥjV}k}}]jťs&3aU߿o+|}3gf=P>+&c;l=2$ "[;xFU,3wCBy&!# %oW8Do `B{Be}l{=F|J{$΢?ؕM(zAQbFf_nKC\GToAM.{[[EVQ!I,D7:zNCѨpS +#s~! /N }UqWmugŇH?Єҿ8X:o) BÑ-b? _)>Lmp;o~Z<1ۂYw8ݣ͡c½ }6n_w桢Yc‘p2Yh4Ow% M }&668h忽砒*RoFCݳwxLmp_5^|rɑدWFG{F/LmpZ xEقUqFDJ _X }6GR/pf.];eܮv=N:v,3wҥs1vƤIkgLZy٥3/HHڱӧw)s4gjh>tR9/9{ }Fh;Nn)1>#ow|(u;R<&%-;\@>'L޼Y }qP\<8#r+ >S7\GBXku}Sn-Z~Hbۧm-st򞐓g>bbrߑ2la>] ھ$t]ʹ1on_Oyw?\A3 _T99GSOAJM_*s' _W깠H? fc.$\#=s$\Au}>˿+SN+3_*r, h|8C(Wg _'Y-͎eC鳹+~9|"K>9?_%J^9q?y3>O{l g8@Xo*cUeN}c(}t>qߡt=~wg?9)QRGsʝmh#<;1~,I) ,u&ypA{^#—\0ɂdp:bj` ue5}zN?ԉZʜEO/gK}UVG[:_Kq|2g?kif~ ם:cSɫ5TBŬ_ô?y\_b~OnJ}خ?f|6i>5s~5Iݒc԰eۧgGS-=9khŶOZrt^Ty?ɭ?Fyiy辰Wʹ7JYG~UOV9+\c{^#h/}>˿+D*uJ& n1GӚc:p,wJ$'/|X2\ t3xy(G~YW6 S}<Qk*;0\y}?H$ G55e}?˾.'cCwpLTSNYwE;*>OO_t.;Fv 㾧z58n\/: |ݿɺw='?Iw=$fM$?zt|+uśr]9޵q@鉝?qћ~o{z{ x}skz$QqI{[r;Y*o\pnJs:&Kw)-m8lT<{ߺPtO=m5uJ5%\ݢ"‹r;UEE'#}SFRFncvM 6zEoc2lXe'mcyly^6ǏE"Ӓ(c؛5>gyOUVkMF4EU /r8#c}SNq<֋[ciSVPКhrQ^4q->U$BђE& UEǣ[Qԧ"S1_YQCjUbq[p\ܚ\T"efL~O,ӊ..nH,xBtIkjc "v<֋LKEb.{ICS %*\ 6U!*_{1oBdQW q9њN4EU / q1ǃ-ə{G4EmQECb{X^%yh] ֈ&M"jkQROe&6p< $w_{vIm.jEgOLϳ<$fFa:uQ!ǣ(%yy{PKJnsQD&/RFm=Ndj,xH t8qM{_q㢏˽%82b41ږd82btY CbD:wSѝ6+Z%DTژL2hwG+1w۫2ۙ,ɱ*m.MDy7x!#z8ػ)8`gD \E6/|q$DT5)2 *xHLcFB\'&6ECFb 5 ErQ^^e2qWD6GB=<7&ѕy=Opo6U+jqOFE9ާXKc+`{@l#6U+jȥ^xq c}bbzǣ`xt_-m.VDz2Bn>KdˣƝVY<8NJU 8t,m.VDz2Bn3Wtȴ+q),`GE EQǣ"B"eyLc 9;ޗYWWJV&6U+jȫ85^݃;8cx Eo rQ^̕)2=-2^T/,`D E-C⭮jET)#6seL?~^H׸'ov+xl.UѶQ{ wRn$wΈYcXU>ѭ `xy>u}DwAdcs09Gɭm.j{b"B "~;4<,96<9n{U䩢N(梶'NZBDȰA.x &?_.V'6=iD!#^byH̬(#+L/r]cIEmO-!"dxȈL?r<$ذa1>.+Nm.j{k !ǣ@Cb K-x\X|BpbauRnsQOȖq<7L*QxYN+D{:%DlQ+2-,xHLQ|X3Gs09Zxu^6=1k !CF-2s<$qqŅ&ꊫ%IEmO4y-!"dxȈÒ?(xH%Ò%%K D!8<&梶'&y-!"dx)2 *xHb,䑢uLT'MnsQGz-!"dx'1,&8(^xN& g%rl !CFl򐘉aIOR!NnMnsQCqŭ&J_qdBOޙn6M^8q7\{0]#Z*VWnsQ"֋5G[%2},ֹyxtOtG3Օ\T"e3 7.ǣ{=3x\W%9@cJ։&M"jy׸\NY$>wC)w]%m;KJnsQD&/r829\^N]ZطÖ#;ޣ:tIm.jEg7Lq<$xFC拽E{^ے|k1AdՁ!1)t|jhǔњ\T"w?P7չA7uػ6v|OEE!8L-kMm.BDUxM='2-^^ mzD|pT֔*DT)#67>nn/}S;q#STD\Tj"Z{^yY=_$>wC)|]STS˪\E6/r&K\^ýoh=C+6E͝6q^zq<$x+GVwm#fs=I 2і&>ux"5}^O{'#ܱ0h6="B6sx_|/1%qvJѺ֣BJWD2Q~<58yY-J83=8yl}yxW'׉&^K82s䑥 'zx~urjYuRnsQQ%DlCb./lD/OBܯNա:)GdK82&2 >w> ӼP2<>UHkJnQ#"‹;+ÃR 8#2(um!5;+[B+塭VWnQ5ZUEքe7f6B}6<ý#ٽ.O;vVEՊZ/RFm=Nxt ո}cC߁J_>(=#|izvҴ梾t v!EU14whzvA|[YG9qNFGZUEʈrmQq䷆QqF6c"ݙz23H{Jƾm-&ڼHэ}NFA3$žm)Y[%[ݛE\T"3^GߒSf;wŒ{{n{5efs;rkS6й<}$}(N_LOr&;9Oqq*Ӈ9=]cҝnNNtSN;#:ߎbeN:ɉ:;F8ۣ9ۢ8FOq):y8:y z4DTtOtvѽѥE^S@􆢇?/SF-z6mNJG,4({({ضo^/{3Eۊ_.:&|Q֢Eҏ}х{&o/y E-J/-Z]tyzR<yg5)af~}5]Rnkh.4ݽQa sWFKCC~I%#)ݚPҝr܋C'\^0!oAM`J%cBo^- =[sñCօePkWEou2vlX}Ab#.96%Tlfec+_Į\߷GO(Xw{}|G#k'+CeQ8wfƝ^펌/t/w{Ǘƿvc1f7GM?jQǽ)t[~];=t=7t{fZR<{pOGnA]B*ȡbG~;&tgЭޡXe膘+vn臱CWƦ}?$VZIXMجwW~a ؝[c]c-5J'pݧOqX ws|\їE_?߉ΊqxVɟ(iqCQJoEs(Mɒ?O,2{: :&~Vv\Ғ ~VlU[S)~)kLW}sFM߀ONR}oN'HhX5shM5Ŧϯ5N`Gv3a9NYGN81= 90'8Pa{P^Pq=WTw00qG*>N „m ZCp\pESAJq q;&8lqׁFaf(`P88 ;8= 뙄\QÌ (618칔o dp\G\f a558>NiÄm Zop\׃*0ZV q v qN{=}pZL jpYP a/|3>N/z a/{=p 8%n>NqΣ| >N:^$f!a5K8B} -8}^zP=0] QλF) )} \QMH+.ĭ;)pخPcv!lW*-;a j>9StGR>Nz8aa"1AMg54'WqJ1xwp\%Ue8I905c @U} IzC}. TVaz`PÆ؟UB} k|wqGUp8L%aN j>9Sᰃ(Pq" : œ 1}XCsrUaϢ|#>N:gWT0# 30c Nza^j@f,a58Pa/|>NOza/2a&f"`P{8M8E"v5aX]:^Efa. j>9S:3(,?N' ׃*E9A$g54'Wq Jv>[qJ׹\Qm,"Quimq=q䔙LkMNyLMz*Nœv8BzA}iT; t8'TP4 jFq S2|>N_ڇ+Nq jQ?inLs&ZlntVWT26SWfZ[TqW&la}eZl>WT26MfZlEUXf6:f&CqEu3gc58K2SB3|K>N㺘T8R|0qkmo#aXhߢ>ڱiبjl[6`Px4q;Lsy8G*oxœ~8LN8E8ܵ6X]'δB}(az`PS؇ 89ܵůӟ3P+qrT8P`g¶vuLk}-ԇjwf0a58g>Nτm!q\L*zlŒ jqG>Nq4wm >V3P+qjŒ jq'n>N4wm5 >V3PT8E0qHܦB}Bi*M8@Z_ AML!T v)-cu=BZ_ A\FABߘjS4ߡ~r\/'RX CC0? j""zch_Ons,5hO)o>6sլƢXJBaPyؙч\cs*7Qj^ڍTt4OPG߯'ΣdU>VW4՗>ճ4!M"d<,"M1Qqqw2ԇZ'|0@iz>N~ qj#-'|J>A}Pqz&l|q=W4g bBj]GӴ֝)|iZP+jnֺ34׺J:Z?׫u}NZw|iZP~VWE5f(VJ5fk)UJU} !*P+jZ 2+q9wr+)JSq.']9J0q[ q:]q[sЌ0f `PITF/ko5]cuYS}חբ5շrחU8qFʷl971U\Qì%MA[Moǩr\ \Q;ì#zi|r?t]lq껦@}43k t,U5ϵ4>oǘk _cuU_l>5*Z7cL67k}l G?>¦@Yea9h_8a>VW!=g 0Xl * WA9c+i>VW7#B+1902A%d=b]j}G?հ>ȩ&/-_-e0k ˦1F&l a7X]4>[j4g ύ*7/M7X]ti>W~6_ZST8N4Dc.xs; ը)a"݀Ai~ӟ6aWvU9"9-`Pq{t9샔o3ǩ]s\ 59f< T8>B8l(ǩhs\HG+jks?πAm5p.X]t5P6] ĵѿJަkh-kH6aߦ믁hkѿ o-]7אnXcu5q@}4_Vct5_Yqlsci|6ѸiJi|6Q.7&|J4ƚܯǘsn6D}gV4>h|?Ri|6\1]?4>h4X]U4>jgOgP`7շsuMP >VWk7B}ljk6eM SqzPon>WԆ0&omTq:gt=U>T7 h>q4|ϐMcQt}zw 2*֛K>dM%{Rw ǟR}>N6PfS7}5459L3a|A9gJ MnK|o2Gj|J gK uM aWX]P/ozeMMχ:z>x]|}{]Lχ Q?^C5 gݛ8^-|6`fzQփ(CzQ֙TZOͯ9S} w] 8Q+OauM5?||ߣ0_BwD(:y&p|?'8)ޯ[KW+lw\L5P\zMaСjp gssฦhU sx0 s`XHPaT_ ǹDp\ aJ :Jly3awиii|A}ߚ0;];[Nǃs0B}s^a :`LY&&n[2LZMz_6aҲm@ZYg l: q~vp8F zspYt0kߒ}KλZJ[qvתF=i=kh=zϷ{r]o|,t ko1ZWbaEHIo<2t n cjwLcד~w3cF0Yҹf\II;dIvn2<վ)vv,ΥwG>G˿5N+=~ϖ/g9rY.O?{Სt|ʅ E9#޿w5ᷛWO|9q+?5T;߿ٷ"^1s>*f-Wô_[Ϧs-@,:fϦw\$ N e綞M; lCl=P~PgSoAM} 0AMPgS7lGrTN y6UP}C}Mtֳia+kgS%a&г z6 |>[Ϧ [\<30AMPg`wg4Ckg LgPo8g4 l= 5ȳL Lgpog4 z6)Yxl:0#4 z6|>[&ϦQ ϦT_5g4UC}M {<΅| TMl=)ֳIa{}gŒLgXֳi,lR^4)LgIS|<Pl:'S^Ϧsx6JӠ>[& z6)l#giz6)loֳIa{ Ϧ^9\m<?g٤>[& \[Ϧ3;ϳI=Mrx6 'ֳ,slRyAMgplAPgHslRyG>iTWϦфl=<'?&\x6KTMPgy٤AMcs>`<Ժ\[&.vlD!5ȳILgZ+z6!vg=y6 lRkgC}M]4g &V:0AMjt4g٤>[Ϧ ;y6j٤J>[&=lEskg99\m[&\<`<\ugԏ l=?p l*| ٤էC}M(PgV ϦJȧ0MT ڳ l=v p l| ٤g@}M(PgAMC y6y0ֳi(z6Aء5ȳLȧ0AMj^}6g4 z6 #Yxl: )LgWl=FPQPgلϦOaPgbg;y6)l/)LgSl=vgy6| 40C}M٤V ϦJ Lgz6 l'O&V Ϧ* Lg`œz6!vg AMC30AMC 3 lBl'?Ϧ3{&p l:040Pgž z6)95ȳ0AMՄ z6)ֳIaAMW lK >[&z6)5ȳipU Ϧ 3lBl'?&y6]&ȳia&vM;ϳIHgS a&&ȳiNϊM;ϳI孁}AMXLLg:S>[&slD)5ȳi ajTKK>[&slJi5ȳia&ȳiNwm=&һ]{[Ϧ M +MK< ;x6LgD:`}ֳi"MA[Ϧ uϦLLgdlLB}M;y6M!L-`[Ϧ\<f!`̵<f!`<.B}MQ9Pg AM 30AM\/l==w lRpLl=v lNkggbg;y6 #YVtaF&ȳi2a.l=Vg٤N6M30AM33 l T{(wi߯&m&%T>^ Vk\eU3O\]܏:U]e *Ztt"H#D/O,sgFOIdžXߗ\ G8g8=(zll]d:{ YxK8,|]ޟj/mkk揮Gc>~KqǬk1?"#]~ NP8]Er!1k"ug}DeFZ Ր*&>ŕ E\WYq"|@鉝?It4U;ϋJQ(+3pj}~_>{S3Fl!C:uXGՇBs lT.v=qНpl8l:>ݎO p8z.&UEEvsst=:{{FpQ cg`(Eτ/^r3p-\ϢgB'}/z8w.JQ3cQ Dߋ&zέ}I+H5g\E(?2)Dߋ z}>+=ݡg\:(ݏ2yCߋzM}3+2腡g\/(BτN^3p\CgB }/zK8 .J33= :Aߋ^ zΕL贠EO=E> z&tDs9t?=:{ѣ@pQ %g\(2 @ߋzNݟuLدEm~=Ez̕ 4 Z>3W&({Q^sQ~ Ig(]g^τ^Ԏ3p*\gBw}/j85w.Jm3B :PI]ߋzNuLxEms=bEzz&T&St]q=*{Q+\sQ gԻ(][τ^3p*\gBl}/jd85l.J׽fLPSt}j=(Q{QsZKsQ  gT(]Yτ^p3pj\ˬgBf}/j-8Ue.JOfPJ&S?tcEc}/j8b.J#35 03W&({Q YgT(]ߗ2AWߋzNux+wgTt(]/Wτʸ^JccpG=?oEJ'YEuZ=CE銳z&ԖӋteX^T{3p\]@UߋzNҕVLETrQ"*j2wP9>z\\gBR^VrQ¨ DO{YPsEJܧ'i/}u<(]>eU8 &+kPCˁZtLMVRߋzNҕ*LIEI=3E銒z&ԎJӃtG ^Ts2躍\j1rZ`Ȫ~qg^t%/n|d5U⎸E[yjkq%q]/ҕKV;⺮+Xq%Uŝ*Aןt)GVSU3p:Qzż]O;_g>PIh@5&梁+,qUj)qUͪ&1Y2HzgB#fԍ;cEE#M?*DܝAte!Y u(]nZ?uU~+p&Ϫ8.JWa}/8=T4nj6zn)PFߋ3zN_FdLEu5F_L¼*._xt.JWf`U[ƇE *,@+Eߋ(t.JW:᾵4᾵U/3p:%\HgB}/5kfnT;.~O FłQ0O;s5OqO 3c ]ib1f7GM?jQFCWOhN"[n<}'K޽NN|- 8.]bwGR \򲙋fN:]O8S89̝t霮gL1iSV^v̋g,r\vpLu:rҜIO?D)} o ^M߈Vd>Pow%]PNFIJ(@BŅI/3Ј՗2iȟ"}{*Fcg]{@k=Ao-6}~0صJjzW6юu8+hj ۄ90q<q 8w"-p\!qU8̉90Pa{P^Pj}T&az58[)A ]cu}k_a*S Ԓ`P0a(ӝ$lpE5 K0C&q qqz/6aWT0#3 0}q<8E V8 KWT0c30j>NiÄm Zoфa.&VDZB}DB}HIxSKiA t6 A8쥔o&p\/!x˂0"q[q#[q:$/aI8B, jp/'n߅8%{[q&%za滀A-wđSH1aWvuS8v?y 905V8][wS^])ߡPqBخUZ8Lwn1}XCsrUa|GA} p \QEc0khNbXwǰ= /@SZ3[S=)_oӥḞJ؞j8Lo jpJS1aWvn8 $Amg54'Wq9v;tt8U\Q]ÜA3;khNx8Yo$^j= jIрA-g|Sa(XḞCj׃KqA m")q؋(b}{pE!?0CqqD&j®NNx" 05LМ\)>zoq\vA#V38%;-8]%++-^cY`bDkđSf26I)5?U8 9 0^PdZ;N8(Ʉ=:90QǾĭ㔤L2ӗ!l?Sfa*ZTf8*ܧ%}[q=UլLM5BƕiU} Dfa?ULM4Q8&nc>NQ˴v*q:[&CqE-֫0c\qbS2|>Nz>a/af`P˴Lk>N̴D>VN$$jaf*a5L47PqbOK6X]o̴D}(BfZlʧLʹL&6X]̴D}(nfZly q q[qJhSo)飱߄a滀A-5\k@H95{8y|hkc[qoۀA6Kqmk zn(aa'̉A7qpk mNiP\Q=$L/DZqqJskK_?gZk>WT0儩 jձGm0)ؙ-cu];Z_ L!A {= r) 8^B.8A|GhZk>{=r30]hzRq;8C] ka~aVAMDWs\Li%kN74Wp95EӺFX4[X( */r;AU}.%;*9G[5,MO25B}:̡.M aWX]zaiZAL:պi;CSVX]]Ӵ֝>W4ugh_ug8Mku~\W WX]Ӵ֝+jyֺ35B§izifj Qug5BMkkYP:պi;CSVX]eԴ֝>i;Cz;HjZ+GUSjZ+qKMkCqEMSZi.0tjZﬣ?58Ck|jZ+Pz4jZ+S 9d8]U6CU>VW[5+>W`5+RAeVr*kWRPq]N++jr`Pxշt`9l=a9"a'5Tߍ>G]_Tjʻꪳ1ѯ/Eko5ѯ/Pq tk9썔o-ǩr\oc-YKʷǛ-Pa(:S6 v.YGAE]Tf:@fwM㳁hgV4>X63kki|1]4>ꪾ@}43k 4>U6ϵ4>oǘ l 4nX]-4>F|f5M㳁g?>¦sLOpz&la}Bq \{j-9s`PU~A~8r:VZ}nqG؅WrEcs$ad; JȦ{f aD냫a}SM6_Z(.Zf5aMcluMni|Ph6Un6_6E9/-toʳB}(lе0ql}7<9h]|ԣ9wv@+j`s̈́y0q|=qzQ'SW0"̟ۦo-kH6] t]:k>/mkeMZ7אm6vUM__Y-p@_eMZn!]7t5uj믁hƸkѿL|?t=rlqcurl>3]nM5Bi5ӹ_1]܄m"lM㳉XϬ&i|6tlc~i|6Ѹii|6QZ7&Ϡnoշ벛k|nחp7Bm* 9/)߯>NtJ}( a~MM虩tM&zF|.o4|6is'!*ћǪd=U>VW7} C}%jٛKd9?A}=m|PoWkh+jsf¬ǿrWGϔz雮 =VX]etez7=25B"VGϖz®z>_V((u|*>dLχ =kL:7qt_ӽ0C[VXmtP磬Q磬3T_s~(Zp\!0WFoS} T j~ pG+a6PuL]E~OpR0_T篜W0?@ǹ.ޯk>Թ@/  Cѥ0|8l)qM\"a:DZ%>Ʃs6\;Ô& t0J.Ug4>qcu 5Iawлwf*8ѱ?_a jazWP.8L7 t0}&ף}1L:VMݶfelmCäeDlt68:q.&]C 0 0az׾%]wsU:{zn\zeo仔X>ZScusuÆߋ779l%=kԝV{,-_ 5*s2\?~eC: As(Fyhn̷+%8oFތ( INwN7VXC*1+3{dmsț䍠5$+2!v\قh<=ho,Hvq>ww>p;?<&>vgڏ]Ƃ'Nj7"#K{"4A`ppum>r>rRSđ~wݱT%幗]8d}j{o7*L-sxW~B{k >vko}Enѽce}T[ۇiRMjg9fϦ5guCdz)jx&|Uz6zc'?Ϧ=b'7a._ =j_^N~M?plzQ^Ϧ`<^^l=^|/A}ME"a^LgT߫Pg˔Uֳ%¾\<^!6y6m^l=Qס>[ϦW p lz0o&ȳ mֳ g:aAMomy6Mz6Mޅl=";5ȳ¼ ϦPg{}ֳ]nAM 0AM;>[ϦֳIaϦCy6}Hl=>|A}M x6}D lI} z6|B}M 1<>| )շ llR^OLg.KֳilR^S ϦBknmTg>M 5ԮAgiktWϦ6< z6)3Pg y6-gӳylR>[&}y6=Ƴ¼ z6)KPg¾\<^j2aA}M]٤ ϦWsx6m#PgbW8y6)k5ȳ6Momֳ +<MVWϦ gلN~M p lz7g{z6m '?&w;6M; )g1`W8y6>| ϦO l +[Ϧ6MjSֳIa?l=>"5ȳ6Mjtg٤l=3YW&V%g٤_@}M$xl[Ϧ)ߋPg¾\<^$K lRsW>[Ϧ(߫Pg¾ \<^| ٤կC}MRס>[&\<^| ٤oA}MS>[&}y6 &ȳIͫ߅l=ޢ|B}M 6p lz)LgWz6Gއl=%{5ȳi;S &5lA>l='^wȧ0AMj^g!l>Oa<>>l=vRO>[Ϧ1<>| 9I3[& gMy6ɗl'kY:׶MKlg? 9 &y,c0AMOz6= ث[Ϧ7ϳI}y6I6aޅl=ϳ-¾\[&y6} \&ȳSl=Pg~\<> ٴ0_B}M g٤ Ϧ/y6}I9gUz6!vgª6Mr)LgS0PgS ˝[Ϧb&kgS0)y6ﶞM]٤:ȳ0ԁ0@}MϳI\<:f_y6CPgӾ]٤\<# lڟ0B}M]ԙ Ϧs`</M4[Ϧ4a`.TF lR}>[Ϧoֳa; ϦN0AMlڗul=!~5ȳi? Ϧ4vgS)`vlRy`.٤rGy6n7:o[T{8(5qRT8*FLҐh)ЊPUZ(p@cLpj'ӯӝ{1<}YomξhKwek;gsܵPϦ={K2&wOހIlrݾP_gހ%Sg˻pMlrcy?y6oaM{|i_z6%}`ٴ`LgnR^P_gnoO/Գi`wiM{f/y6c}䮹C4&w$PϦO ȗ#+χz6!LeM"Z{goT/k9XlXW_g_x65 &4Ϧٴ`oTkiM fy6}B0{A}M{LeM.5ͳiO 4Ϧ/ٴ7`oT\<~IlO0B={c2Ϧ}?pMl_0&ͳ=+~סM|0lW\9ͳi4Ϧ?˻qB=,;/y69L$J<?S<ޖw5ZFMןQg.y69ݜ&ͳMy]x7ԳMyx7Գ y6-wٴUz6&ׁkgoyg!ԳZg.|c0iMٟ lzWz6968iM?O՟ɡMB&w=;x8ͳ=`< _gӿpB= ?±Hl#[T Nz.x.pϦjgͮ}Mh}_m3{ٻ*l]t= ΐ}7ggSEMNByOcqM>>?z6x|7j<_..*l>}zϋ>gSvM>jC|NGM %1?%jM!MnL7UE#O茍#\r7EYĺ>҄ o~- cmi|od=Gx )QIns_)yUɟk =p)yZOt[ͨj9uKˇ^w,=yZAtZ3>זeR\:cNZ,Q:{E/>\TSׯ-}xgP =5aLfIn#,=)j2_ՙ%Z4jі=YkYrlgw;zok@uUW%E/*aT%-#Jg©UﵱOߣWK-#l6$[Cu\oѢr%qN8!4*rf抣s1$1*ӍnEOװ(S3#nḚ('3snE(3ËnE/(Ϣ3nE(3cnEo(w3nE(KBLp ѭ530WCș N!=At93Cw\:X g&8oVҾ ݊^:s`QBgB' ݊:s`QڇBgB ݊:s`Q/BgBg݊:s{`QAgB݊^ :se`QAgB݊ :sO`Q'AgBG݊:s9`Q@gB݊:s#`Qw@gB݊^:s `Q[Q_g`,JLد[Q_g`*,J34uϢ.>93A_ֽTY֯יP^&Y֙יPQ^vTYփיP]ƻYmיP]TYWיPI]fYAיP\TY+יP\YיPA\VTY֙P[ԻY֙P[TY֙P9[F԰Yֽ&g&(\VԲj5u+jN L]Eii u+jC LEig u+j8 LEi]f u+j- LUEidrFRnEMd(sLP4֭]30bu&T֭1305auə *=QeQZߗ[QWg`,J3wu+j LEEi\ qu+j&o_-Cg,J+ٲOY[QVg`:,J+L-[QEVg`z,J+Ò hVT{+ ZUYuʢҪ΄Su褲()){z,J+LQʞ5RuGYVՙPK=%9N냲(ʞO{8ɢb'{K9^©30M5u&$s9P.& &Ѻԭj30J*u&Ԥԭ>30I%u&Ԏԭ30=H4u+9 ZEiF#bd<E+(Hܠ[QQg`:,J+y!hVT1d{\(LȎKAȎK6dQZAD+DqǢ;.;.ztXVәP{OʞXVәP#OtXV#ϕe[QqOǢ;.;.tXVәPN XVvәPÍ@Mg`l,J+LFfk304t&D#k~303t&.#kRƎ#cQZyDcDMyƢB;ZߋEi%/6>.6>u.ǵҊ[$Z$*Zlk,qI4qIԮ׺V,J+XhU㒨R ZEi)#єb<(D(E.'< LIMѤ@5&}]bQZa}h)oU$%GQL IgB#ZFʠuXV,b׏D]?"vezC,J+ G!ĮZ;#. @M~y;aQZMvOwtâyo st+ LG7qC>nb 5:jVTbJ2:jVT!_t&v!o G뵰(¾J4X@ ZWEi; Jѭ~OXV:aZJ4Mد锰(H3nEo3{o3{6S7rowj_>ߩ-+Nm. b޲۵^ ~1KiB+Ml?F#2Fw5^ڥġ8>U4ӽHU4C_mJ7ު-Oh8=]u \t0KUlU=2GeZ躙W\9oAGp&̜vݵs͝7㚹ͺb39A-^3Y2~"3Mع&Θ;3O,/?Mm݋V=3wӟ.BU6Xi8m^ʾ$.d=RY͢ϰ٩"{dLpq j ZZZBdz7dA#|i=hOgV"0k芵` j(0n@}LYa?/z`?\Qa̱Amx6c ;T z`0308nPSa;c>:J+F0L`ZZ8v &v;c8F0' TF8AMrÞ.΂z`Or0g f`Pqf` j0W 9PSak$l0_5x-"<c# {[1u`k=0B,a,ܾ 1%[1}K ^Aa櫀A-λezpd )>JX¸-}$oT` j0)0 wXׁ\Qa`v]>°Jà>¸"C+0a90 {h9)0쑒0UeԚ=Xn#>@ð$0 vpE!A  ­c6>JXwø+0L`q|2'w1=Q1u`O04]>ðgHPa\' = 3Q0g||PSaɒo ts;0Ss!`P#qXMr^".z`/20 f`P{q\]1E"v`c)b\grփz\%/5|2'w1#%@}LqZZH 3G0sZIgvΗ|>ĸ|jK H0_ j01GƳ][\'2olGI%kvK+81Q908'܆C}Lɷvj1(X\QaNf8J5C}LIʷi:R+N1|=27p1*ܧ[%{b֭b\ vq[쑵EWSaco[p\Q%˷-A,lv>|k6yPvK+o1yb/nB}L˷iM~z`/0Ss`P˷#k>[Ϟui\Q-aUA 1g \}LY7uɞ|҇*dn|N̷#k>Xv 'j3gḢo[1g㗄)NmPGc\oZi X0_ j1vm|Q825=D#}Zwͷ+}lt|F0 j1 >܁ 曻7XƸ.#+1̑908+N"o+k`b։J+10  j1#)殽%;>?[>WTc&4DZ$)coWp\QaNɀA <4v&ǔ|^nZ/q=UWTc3s`P[q$΃o+7X[>WTcɂ908^ ܦB}L7w5 1VzZ s`. j2ӄەPS]m+>[>k= 2018~Q] 1AWb#JT Z jcn/S4dؿo9d\,Ű |0*~̫F r±f_c}륏\5X/}e}ř#'sa.T}wKn^ڍ s` *:'X&;_x7}J5!}"àR}eO\}L?aK!PS*}85{>iAJdc w8*O 35,}'5+}ecz>l`Xɸ~^GWàbyaj[n1Vkֺ[57}kݭ2o׺%NZ2Y?n׫>oUcVuJ~<}kݭ5+§ozjö vyjV-^N4B}kݭ2o׺P2ZOԷ*)cVuJmZw=[ny|[֝(JJ[eW`+*kʬRPke؛$R27 &ڮ T0 *2I}+>˰moaۆsЌei *k9j}Y_}+%o{ժ>3/ѢշRrח(2wHPӭe;%_'lUOWԸeNTeW Penɷc*k`+j2 *Ƨ/1uv}CMg껾!}t3ٗ]Lz}Sxi^|gժ!}t3]L}Sxi]`qcZo|vH]L4}CgW<>ea1_ް-؞U;sk)M0w bB82c? ՍPZy0 }H0Fls֭2}dA컾Jx]f` ˾1AxieWbVc^cc<>f1rA/>컾y!jgWp\Qw}saPqߙN4n10ߙz4`75a<TfnO@}Lڇ])UGpEjyB0? *X3O g>kͰOI-PSf\S5f` *c3/W>Ͱ/J>͸>/+jk3˂y0;:eL!;:茱ZwuH]hvοꔱ:>!U}_+>p)ҺC΋}_Ƹ+>qc.cZ7>eXRǺx|& \)Xu:>l`{bV?nc]<>Mt J#s]<ƴ~o|v˸鉱ZU7>uL}[g3( m9j]v_}wCjzq}^oc\_;6f3샒qο҇ `~T{rvP]7'}iγ|UȇJQm>U}%h>$Z{Rmo {.o tC@}L ,Wg|A9w[&}nܗX;Zh5+"L-m=L]cz*}DwkK((_*1VG[|H|V?,8?h_ߵU[X6JmQA{>jg[|8됼1V0/E+a~Ϙ5%tG}'!H>,OpR_)D|v;d1u҇;{CCsth` 2/̷aw>0?cnk^Z\=f_t~`[# ^kKZ+z `QgχwTτo|> /j |@x(~5]·[ c )ٟ1W ߻҇;u0s`{Nf]G}1|:V۶2|ZǺX6iv{b-YqN8~oaǏpt5zw,Лa f!`б}oٻeڗkU;mLf{jYޑsIs=E*{^/w)wXh`]4x~To6Xn{e~sh:c#C{dy}Oپ&ZFH;䝵;kJROBh&o |sD^gevKH82L}2lB b{˟g.)7%H.y/#154.mS ̯:ˀ7܄Wq e5_=ݞ{6%#?QA?hoљ%iXYWQ; U%d](:pmsțQA;__{Y-y譿[_- ,~?->dHfe+o=fU-8}*LߥZHX~f4aW-nqpqQC>ı'\W؎caSN2{=u_g۾g{ퟷ֝ӾyrUfimΫg<7ky>iHo|kdy>B=ɽl_Ͻݓj!/ԳO=z69&֧x6=&ͳ!o3{ lr؇Z`6&ͳi=/Գi䰏>ų10iM#wTg~Zg2{6Z5ijM0+=v/Գa{6}kg *lrv/ԳaWFM+˸x6]QM{'wDMwq lK0wG{6!vU2&=:˸x6-QM]̳a=ʸx6LOTgbWe*lr(ܳ2!M=YUلU<vMٴkg:l*lLeM.ooٴkgl*l2y6GMq l(rϦvU2&(ܳ2!M}y(ܳi`We*lry=QgCU0`We*lry=̣Qg[׵s{2y6lg2&tG& z6LeM.opMlrkw&ͳɭvA}Mw3Sg{pMlrkuB=V3Sg \z695ͳ2!Mn{P_g>z6="GZhϦ%ΗB=,nYT+$ogJ&ͳ] lj|w@}M y6!;檝P_gӝ lrػkgSs4&7B=:%_w4Ϧ{ äy6yP_gS lr5ͳ9LgWB=|kP&iMk äy6yz/Գi[z6: &ͳͫB=6HPϦ)MA>IlrPϦ/Գ~nk}gw!äy6= =z6IPϦ )M äy6=*kROD{69a,Գi`=/q{6="pC=6˾>PϦG(4Ϧ`{6=/pϦJ}gӓ}g7`LgB}MHgPϦy6msIlrc/Գ9`iM Ey6cz69쳰·-ٴkgJYs,vԝ̳!n!M{vvgӓ/PϦ'eiX l`uϦ `\<̋IlzIF{6 U<\WpϦWZ`^*lz 2y6[pϦy# lz]0oE{6U<\7pϦ7(ܳGy'ܳ 2y6%طpϦnľ PϦe>*_B=^+0IlzE0&ͳ]W^B=^|C}M v+pMl*7+oA}MoHPϦ&pMlzS0?LgK*?C=^l)s4&7_S/ԳA> "ͳaȷ?) ]Iz.x֬5./TgSdzf>yϦJwR,L.<|e{6L}w.ϦC|NGM %1Ō;ni*v)}>b}֌|/|bM5KLkOYw$_--Yk֩kH&S,.dNTn]c9Z;ؘk֬Av~̳x.zKð%ϙ}[C%16c(t vƷo~h\tCnRdېͿGc_j[nU/Le*Rk-ٯ]]0P}VsY??Ӫ=RSIшm!jPzj,kbl9E(e4vg oG:ss"c{//w0qUZ[uՖ™b/BK)˳^$s-Kj^Up_=+ϊGeJ߇NCk)qqy*ˋJKHգN[ҋ*wU*my>};\i34;_+{ ל%WړFg=I'ߕ/T{Cuc9=sյ3}C;͕̗gk忟<Ig4;_+p|gs=ߙ>;gU໾#|}!(#Xjl+d25ۿ:{ο sMꡞ ԃj7/owϽ{67\d,Zݿs fԌiA{u~po\ vN]U8/PEN,2(|I}5`wwX15fh}ZPJYۙ>Z296kdL]U[Cr }Z V3};*dzV3}wkvw՞?Voޠ*}ʜ.m8:^ns1(=M'U=kIydbHi7J۾.10&>,kU8&&KNcMV 6у}cekd7d-9}:eS~s/[j0kud$}Z1{n:,=oC1ݧiuiś&;3wv:j䭾ep먗K~{W8[UU64fؚRn{|qȞmH8_70T_W0 ݆y9F%Qe(ep٩dUgkpuj.F9_fȎʯvGZWʟ\ݑ^} f[b8l<~a^ܦ#~Ayn2]m2}imXW35?l-5}~fQ&1kF?k2Px3[MS5US/7fYTj.F^UjGde<2mk#fz[aL]_~fQ&i#gg&#&ӳuu1^má/>Uܦ#ާ\ܶ^)n8dVxX1<ۚ70gDm*F./nػ߀!yԴc<&ߚi̢6Mȉō bn? Ǟ [sϙ74 ,jT393M*i]bF5 fzlLgm6mkn[qc16z0Px5|jLfY6W1d:mo)Y,4[񅯙~fQLԶbx؈LFciqhۍǿgk;v~`?&jf1ߋLodVd$nZRػM~pg5D,F>QƚL'L/L۔⚥~ͻ~fQ3Mbx|fzfKaci]gZW0͵K`i sk-,jY&K&ӏ)酫j;㑩[Z3=w{Խ[YL5i#grFL7LGMu[xl 3ۋNj&ⶴ"1d:dRxhZ7?:0=CxY~E‚cKTkKɹwf?FaфܔBrL-ֿۮeF.wNi6Ex|qk4vc;!w@{u3i8\T=9g?-kFa7Fa2a1s'.f<krOܽà9EDMqto5a1L\x\P[k0 kk'g^cCqk4vc/p6>oǵ7N$$lknqIqI\~,J;cx`㒸] ךEik#f<WjO(4M.OiG 'Zк@g}sfQڹ}x4oU7f%]QaYgB/eZʠYvBf׏]?wcve>,J;GM̮ 1;#0Mbη:zVtob:zVt%Ydu&%o;,G(ʾJ]@+گEigV; `խ~}UYvPeZJRٯWT(t3nEo3{o3{6#<{wj%G5;eߩI1[Vqf~鿊fM~F[ ޾N]sbuizLLپ8埏37?#gߝ 򭖿, *D1fК(Gq,lm`iѐQj]r«C~0A s)+0%P[`\+00т908/F@}LaJPq`\f`F5­cJ>l`;cև`\G v4pEiL `PKq'NÎ|'C}Lwq'(d Ԩ`'PS`%YPӳ`\OU.,L j_0)PS`s%P`\3|L jj0 K>v3j B^zP`Ks`Pq.fB}LagH+>N փUA j6c { 1"0s`P[q'A}Lqa| >C¸xuY(%㗅W>d°_|K>o¸~I_k=0|08yw_L!Ň])uS׽\QMa>)+@6c+ ;H1=u`WTia!90{h9)0졒00P/ s` jeNcJ1 {;c1{$pEU9F0f|c 4 ;L. z`WTa ԰a Z>lîl{z7h~ ôf,`P .srWSa%)Pa\ D: s`N jeNcJ< {1}u`0s6`P .A>ð%0v2^A aBFxp1 D]1=!"^\Qea.4xp cD>JXSĸx"J0_ jeNcJG ;Ḱz`gTf`|2'w1%/A}LWq'Ֆf``b\G G[;Δ{bkvK+81Q908'܆C}Lɷvj1(X\QaNf8J5C}LIʷi:R+N1|=27p1*ܧ[%{b֭b\ vq[쑵EWSaco[p\Q%˷-A,lv>|k6yPvK+o1yb/nB}L˷iM~z`/0Ss`P˷#k>[Ϟui\Q-aUA 1g \}LY7uɞ|҇*dn|N̷#k>Xv 'j3gḢo[1g㗄)NmPGc\oZi X0_ j1vm|Q825k`fQj5Z_}jl |08.܎ro+cz`0G hxp;cpkmZ'η+}8030)8nc>4盻PoWp\Qa Ԫc >` vCպv^qE;9I0'5ӄۙPSa{!jk=1%08NnWB}L!7wnoW&0WJ Ev-ǔ}^nZз+}zP)dk30]]޿tgLѐaFֳgLq`Z27M&"bwpoK<5Y=7qZ ǚ&v5SS >6sDcѷ/˾pT^dyA0gz ̍8Si}W-}y5j72́90{`|&Σoߴ;cV*}{%hBEh-%TOLG2`7cwZ&}'|0@{`]}La?#Z%i~f%SOL9\}L҇mU0 HژVy>qT=/,{[^u4}kݭW4Je2_r1SĭC.RWUa[;x|&!+Ro|v\1Z7>;x|&Z!+o|v\1 2n:cV +o|vg,;=r ac 1z{n-nT,=8UGc̰dc1z`J^5Pؼ }׈ rκA̰ߑ>T}ח^˃2ìL;`Pa76ȱ1 vCj̾+}lg2>73Qn]_6}ח^97X컾J+j?/r9 *B3}r;ӉfM2f;Sf\&W4<,GJӌc O+c*5`U0OAkI,t)ɷcj׌듂} 6lsAel E2T"pEmmyY0}_9u}_1Vsο+>n!\/QC2Wa;c>/ru_;:[CZ7wuyc>/ru_<=rcLgU}[XD7>kV9Esc.cZ܇lO-}g2>A)7>{d|ǘOn7=1Vg.ֺo|vv_}1GWnZW_1/p+mK} s1w}P=1x^p\Qa}rt1y=[.2O1y P>2y?-=֧U[cjG[[D[VyO--Ap8%=vH #u/(ômU}_}f%SÖɽ-i~UcVZhr}akZ庽J<|Grlg_}R_3_}3jse6!9 :\#oA`&ߛ`D;$<X%7q N :Awy?{Cp|v{h cAV60n2?ǵq\k7+cpkK} Ps`\k[\;a :JpdX>H&P~kT8 @8~̿a?%s0?j{WWp.f` :`~#ɬh/OǪ[~c[O˶[Xk&>-nyt]e8k0ɾ_Ǐm0\ٟ1Fzs0|, :v޵-{׾]rjlU:;z.ih=W%z=9.. cukӏƿ/m<oM'{vydh 6#ߵO)wVzwH{`usM\I*I^;-x!/}N2묬Γw G|OmW^vZAwsoPl#e#ZTٿɅ /e$}m6{?ҖuYrpr*zXC}c}/`dD1;Hǚ^/,%-Cd]^]\R/W~33q PEN2my3#hg뫲>?vϾŇ ,~~cό?o@_W 7`U&3)zv788i渨!vؓ[+Zl˱{f#̞g,}?on͓6Hov^=>1_71{5ky>iHڛGkK#Գ)"g;ezeTW{II:UT'vu{6%QeM;%O6\n<&p{E*l:*l*$og 4ϦR(/Գiz6 H4R04ZkB=FK&/Գi`\< 1Il#@}Mc$_ $f$Il+z6|㡾PϦiMs"`ųl0iMSdMX? lr؋a,Գ|^kaiMq=Γc}1PϦe_ :ԳIljL 4٨2&y65 f,`1/MZy6]+9IlrוP_g7 l-kgu4&w]z6͓|PϦy6]/IlFbg3Գi`<\ka.|9ųɝwsPϦ9m*lryiMn,S }~kGlz|7|VI]][Ug*O~yϦhM>jC|NGM %1K10CJݘoFJUӥGGR\)" Z7௮hy~cW\7᱿lݗd=Gx )QIns_)yUɟk `e9!$x8mMG݊:s`Qڏ༡[cCg`n,Jf32t+za Ei ,t+zV ̝Ei 't+zK EEi !t+z@ Ei_ t+z5 ̕Ei t+z* =Ei t+z Ei? t+z ̍Ei t+z 5EirfnE(3bnEm~(OLP'WZ>Һ|݊Z:SgQZ^gBz݊:SgQZg^gBEy݊:SgQZ^gBw݊:SsgQZ]gBv݊Z:S]gQZ_]gB%u݊:SGgQZ]gBs݊:S1gQZ\gBer݊:SgQZW\gBq݊Z:SgQZ[gBo݊:SfQZ[gBEn݊:SfQZO[gBl݊:SfQZp[QZg`,JS'zP֭930uiuu&T֭ 30hu&Tv֭30fuu&T`֭30UeJɺ5u~̢19#@XvTY#֙PyXưԄY &g&(V&DEi}_rfnE^(KLPխ30]ru&Tխ%o}o0-JhVT-Ҋ:jVT^,ʰ^uʢ+VnEUV鯲(3nETr :,J+~}J.rʞ㴞)ʥ:jD=iQFu&eO{j({,J+D=%9Nx(ɞmNp LoEieM 54\2uɢ&{I.u+Z LEiJ 5)u+O LgEiEI #u+D LEiGrG݊j,mdQZHDuQg`,J+)+7h&VTG"Ҋd^چU z,J+h㒨 =uYVd% d%Qd{\(ǎKǎKާ30>t&ӭ30==t&ӭ30;s%hVTc{\ӱ(DǎK9ǎK.309t&Ԇӭ307t&p#5Pk. l:j L?Ei4 5< LEiE3 <#XVc#c#QcG^놱(GGŎbQZɋDDZϙtz Ԑ9' QkE`E@X4*AL !t^˵bdžL~x^=3{YKZɊ[~񴵸hq[\ZX~4]q[\ֵZ V~񴪸Rqd)4iJquxQrN'Jn)B1O<8='9*718&91qߗʺK\+YaVRUT,}$$gB#fԍ3cĵMĝ?<" qde!iqO-;"e] wz>]ZJ=uZɊ:s[#E9#@9qPcp5r+NF΄Z4ZT3p2r+NIF΄1ZTa_ct`V⋜ ]@ŅGkZ,@ =YWk%+0YVUQdt½ipo-y%rNk%+șP{D^*#f6f6mx,yGn 冀,V{T, {z{nV㶚{~sLݣ4!+MG jV%Y㯿ڈ9݋෢9٦zrGQ׽;OF>}%U^g_ hI?`IA߷ c']4y).\pLpܸI.<`EL<顶v:ǎ[ho:Z!(+ pRJ1Z.؇NR8L)a \1?XVʷX]RZP+00ո/6q v?7q:;aZQ݁B' W )A5u>kN!P+F^ԒjX/ œ j&g k]5ퟞ֯PsꟵ?}LV7.VV VQOOCX?kֹSVbVa bebs)Maf`PXuyyjt9lJr1W%:1{aP YuhcVrjHyyR0sS TXV&>&.mr6Rn4UrzͪK_?NYu~i*ϪK#HǞ"4W*kDsgSj]IpFMi0kJ\멶?!lUZ%z9̃y0`t9죔oԮZ!P+j`s y04նqz]8=6ʪw }ӲWK礪w <{;"s85|_%̡9F>i bU׿JT0YO_u4*/N1럧š'UװJT0Y_vU׿8Ũr((t}rl+qQ^<!NMU=+:eT8Ũr<QΟULWK+P񫡼.Vv1j}X TjEq>\k{Ah [D8.,w#?IA|]-=?(P_A` =C&纠zb}^ k94Aƶ4ηöYqn\mh"a;`1j~$~sjM'l&Ԋ&0g8WQ\>*LJ7\>+)='g9qo*{Ҷ = aqgU)ua StP@,vhe_ U=be m=Xjz*-zzte9kp5Nm? a' sPj4R /ЛL%̥Aճ 7&Z{6o/u EH=G E߳M)|n$ׯzfBq%I'A7{c6lolrd߃<%|ϳ4W;N5r'$br\m4kyQvZAloپf>rٙK?™ Q.m_8?w9msOPmMٚ"R΂d澒 un&CWs:(=nN΀m %DκVGſ".{fHȽ?=$4{[|35TS];wf&[jlG߃2 qvolq=[vyC {6kY=~ni1Mk+4m()x(4#y_gܪ ŜjjP֙MېGRf XC u6[.,5 AЦ[G9f8ߝ}|pt^awo6wݼzF=%mJZ1ЙEwCS ]ϦThRCg=㾽^ƳI7_-}ƳI7_r.n$`gӛ}x6Mw.{z6K~M=5ȳ=| Ϧ߇O׳!lzZ~Mc5ȳc| ϦOO׳Sʷz6}BϠ Ϧ9`<>'~_?]Ϧ)ߗO׳i+aZ< W l} t=|?]Ϧ/ 55aLgӷ{-z6 6<x6m# lt=|??]&M?'y6Dv?]Ϧ($\3 ϦolAv?]&M; 0AMO׳iz6 xl Lgӫvv׉g2M3lL(gk x6Ng t= 5ȳ鍄Zu<"̻O׳I`~M6vB:M$?]&}j lz?VϦlBlgj l0VϦ)lBlg~ y6}Pgӧz6!6HγI`?Z<&Ԫ9a~M3l/ Ϧ/jl0?]Ϧg$$~Ϧojl0?]Ϧm3lyZ l/gV%lϡ Ϧ/ y6q7O׳+ l_AAM_C> lgӷ; a>i &1z6}O~~M{<x6&ȳG3l t=~$v<x6m|+I oL׳I`~M6HγI}j lz LgӇz6}\#9&c5ȳc| ϦOz6} \#9&35ȳ3| Ϧ %lBlgV~y6}Aa~M5l_CAM_[y6DO׳I`~Mj l Lg~Mz6 /Pkg/Py6"O׳I`~M+*0AM ~M5l? &g/ LgS aҁgS*`s lzھ ?z6B#9&w |aLgx~MM[h{O׳I`_}aLg8V߁u=HγIކsogн}0AM?S۝t=v O׳g"ȳ'0/{6Kzm;=BgӞmghiEc=BgӞm=>vdzgA=k_ FCrm|]-ݠcQK-bW:۰-w {;T09i-E lK\ajh撔f.v]հS>n!) V1߫.5jݫaJTZn9Bva{wŵD#4gK)8%u1R1JTkXC_ N 2k%On'nGxZ5JF^6rνk%șБF^3rek%ș9F^1r k%șE^^.rεk%șЉE^+r]k%ș1E^(rk%șD^&rέk%0G&8kkDpdy-z8!E98#7!g4VosdC0 J3=+ ;J3ㄼ% J33= Ju3 +J_3ӂ= {JI3# J33s= J3À kJ`Lpע濜SZ:r&Tע6SZz̑ 4 Z>JgLPעֽSZr&Tע&SZ:r&TעvSZzr&T~עƻSsZɺr&ThעS]Zr&TRעfSGZ:r&T<עS1Zzr&T&עSZɺr&TעVSZr&TעSZ:r&TעSZzr&TΖעFSZɺ̑ ZԲ3p\+Y%jy-jN8ui#-gBhy-jC8h,gBegy-j88f,gBfy-j-8Ue,EMd9~̵u#嵨],gTV 嵨1,gԄVn0sdBYzFk%2G&(kQWrd^]y-j8]+gBe\y-jzk%6OFӷZJӬע:ӡZɊr&ԖעӋZʰ4`嵨*gt]V+svVy-8U*gBMUy-2 F'k%+r}O9)w'rdR9jrw{)w'rdQ9jrw{j(w'rd%PnNZɊݞy*rNok%+kʙPCˁZZ ݍu)EUK9_ɵ*LI)EI93ɵ%L)EH9ɵ3&h9ǵL'E=9ǵL'E5<9{ǵJвעje}:DOs/ӑZɊqr&Ԇע {Znr&pcFk>ٸV ֘84&gBM4fn JV43v37*eܞȸV?<1xjbܞuøVB?<-0x_ܞV?<.x\uV_U6v FB^e۳ոG(MJQ{䭴GCV6hN"hi9zrmuSfQECqujWj%mCB/8}҄sO)XRo-8bIM>yʸ &|9.7n҄ )~ϼpz-a;~vr&4uǶ&Ք}llҽx^p|^)^t K!Wip6D^LWFLJ#y3v@21!͘A.K:u5ђW HNVFs%zWI*+"p}Ĩ -EO-Ô0?NYZo/-pVւZQE \Rma|պaZQ݁ $ W )A5u>Wj90Z\Sm?NaÎ|;z0aGBFaFpFWT۱SGRcg:GBra!qA aFN~NWԊ$œ jA=@5?NхF(_t^ZKZQÔ0 1)pؾ?cZc O}Z3{S( pKP+pA ԰ja/s="q 301)(qةo:tZv*ԊjKf:a. j0q5:c[\L5rLz{G1Z^jb,ZQʼn#LW>T@)>N|?Nuo :ٟ0Q\Pm?NIJ58})FA-*g ?NJ5y+Vq HլTPk W[8+ .VRS Q+d?i#0x&g k]5ퟞ֯PsꟵ?}LV7.VV VQOOCX?kֹSVbVa bebs)Maf`PXuyyjt9lJr1W%:1{aP YuhcVrjHyyR0sS TXV&>&.mr6Rn4UrzͪK_?NYu~i*ϪK#HǞ"4W*kDsgSj]IpFMi0kJ\멶?!lUZ%z9̃y0`t9죔oԮZ!P+j`s y04նqz]8=6ʪw }ӲWK礪w <{;"s85|_%̡9F>i bU׿JT0YO_u4*/N1럧š'UװJT0Y_vU׿8Ũr((t}rl+qQ^<!NMU=+:eT8Ũr<QΟULWK+P񫡼.Vv1j}X TjEq>\k{Ah [D8.,w#?IA|]-=?(P_A` =C&纠zb}^ k94Aƶ4ηöYqn\mh"a;`1j~$~sjM'l&Ԋ&0g8WQ\>*LJ7\>+)='g9qo*{Ҷ = aqgU)ua StP@,vhe_ U=be m=Xjz*-zzte9kp5Nm? a' sPj4R /ЛL%̥Aճ 7&Z{6o/u EH=G E߳M)|n$ׯzfBq%I'A7{c6lolrd߃<%|ϳ4W;N5r'$br\m4kyQvZAloپf>rٙK?™ Q.m_8?w5msOPmMٚ"R΂d澒 un&CWs:(=nN΀m %DκVGſ"oyn9?>5TS}]wf&[jlG߃2 qvolq=[vyC {6kY=~ni1Mk+4m()x(4#y_gܪ ŜjjP֙M{,1 6,<#6l\Y1jNcoAu3rn pb9;eP^awo6wݼzF=ԷKmrA1TS:6>w`ƺ_coٔ xRCjϦԿbO}e/y6I1uM~\y6qщ7K 2{c/FrM^nr#9Ϧ*Jyu lj$~Kgʷz65v < y6-%~+g2ʷz6-%r<x6-'Jy6 ~gJʷz6 *<x6"݀ l~MwS5O׳i5as}g=Y Ϧ^ٴ t=v<f=`iyB:M+ s7lO׳iaW>iUB:Mwf-lBlHγI`Z<$Ԫ$JA_#9&ƌlPkgSmB:Mbz6 B4uPkgS]B:Mbtl$wBAMw&Ԫ$JgbcFrM{ٴ8V&1Wz6!6f$$K ϦZu<\ لؘg.Z<'Ԫ$uW?]Ϧy6 ϦU x6y5O׳nƌ l~MQO׳I`@AMՐO`<ĸt;z6%Pkg<'0AMb\=z6PO׳BAMO`<O׳i[t=j l#L=` z6=DϾ? z6 |g#l}ylzm~M15ȳqWay6lz=t=6I5ȳIWay6}_t=lHγI}R<' l梜>FrM댛y6ݝWdzI|ozmGa~P׳a{u="8/ ϦGt=%Pkgy0AM{ z6=A~M$$aLgӳtw]Ϧ5lykug x6m$KO׳F]Ϧ lTI`z6 ;Eg̈́0AMlz6c%Et=n$X$ȳ)Nـ lt=n|7?]Ϧ ; j l&ȳ)Nm]ϦJ7lygw AM7y6g`z6ͦYO׳I`o}t3 &q΁[]& ou=VW l5V&^Mi{O׳ia}t7alJHM³&wBYSMzBcP2M*Ϛ={6%Tn{;Hn._(ϦTE߳Mg^ws=Mx6vYFrM*ݘlJUn*U#ri$ٔV1U۹ mƟlJlR4QK>'GMJB|WL6N3pȲ-~6pGvv$w!% 9HQq2ضdz2uST7L^/-x?;xՅ3_G},r&u=ђ3[ޫPϠaP075^lCvSq`vmiǟ94qD[ӊñGrKn,?zLj i74Y'5L}??8z糏ݾv1ԉ_k x|vǥگx9?cJjBQIcr,^/;"tdP3B]N}_zIDG9/K/ }T:5~ۥB4\m>h/Oڵ?'y7 nSrј1;: u12FiL^iN5-2>뻍>}$^F_ '8_NvJFN+>KSӢR2KRbNI98v:$qT oѯӢgF6Nn$i'+YLT|OE>)u}ՑREH]0/թD|~)N"R]w_;#{&hyȯiWE2R>5/ˆ~N$~VL?;+/i?Ύ6'rrȩi"-Kkcͣ)ݿ,M93 C"e7raF$rAFQ}"gd95]" Hm1'E楏ܑ>.R>6Ҕ'j'<DzefG2,Le\8sY7--Mcm6nF7mvFiÌhD?,+3?uﲞ6e=n~0/s沬w̒>6f}ev쑵YyEsͺE&sNy|sW9Z!4m=|E2|YcEIvm91&L7?ʹ8gT_sbڷW߹?=fn{j{ils}$;>1N6+ڌ1#mErib&X[۞dh$vǙ;^F!~3?k{9_CI6۞`^4{kNn{yyD'<im߯lᅪ2k?Wa2^ۼ1Ўp;{ 3W;^2nw^iXhyƫoc20|`{^b1"F_kH{mf/;Ԏ5?iq;n23ss[f۱/n9csPǁr9A2#ǣ2·ٿ俍34<X9QA1!yu@{9Ȝ{yTr`s'<|ӱMk<ڜ`{9\y?v{_~;34^Fh6&l]j4󝼿e/d7ܒ؜7wގm;l7tKq.^[W}}Yuiv=ˌt=^7gv]cjˑ]N0r5Oryjڱv5]i/?qfw^.6/vyv=Ŭ֮"{jn/ &m[x ̅ՙK3Wv\4vl?޸33|tnWote/wn<<"=1=3?1?Xkce~k/[{ŭ6,{Ycٳ|GEfB{Hq^ϠxN禙 3O[_2,_k^/cz>fY/c{n2ccy?p.uL+'ri^Szf/}{ܙ0.yW.sy~"}M/C#'i,wtdU{ FD`ڂ# #n/{E>WzG>|+GEa<#7E>-Ǒo 㑟 l/*pZK"_#zq"/li~sHRz{ J|E%G./Uzwu%Kז[/vƒߢ'R4o}ވ>Fw"GD> KC4*֊ҎGC`v);\vx/вsẽʦ4]g+ce%w 9e]ͥǛ׼;JK.'Usyx>V,3%ys^]^~XU[V[Q1(/SoWLFoV\^rŌ*,PqY#8O:_B}Qtt*iOM=&6Ǯ}n쟽⎊e >b#-Fηw>d}WfZ_we/qG{;_tu]+|o~d ϴ~{"+myr_0/okE[Ʈ%]e^u1tQm]fn75nWXuҚ$bNJuo~q|kBE]{:^&u1V1p\a׵:k5rĤX_.^[fΣ.cʻ^ J*|g6=f}Q;掼es"뻼/6E|gZtzzӓz+e;юqWg[;?ia{Yg/eW[:'ַގ5Ww|WuGcm&{bź3Wl83fk| ;=e/ziA;V\~n;YGw|^6m_76}/z*}ي>g/˃ژDo[o>v5b뚶+ۮ`k'Ѿ?iQv뭓ۭ&x{9Bu#o?<6Ykp&6KQξhcզ*S%^ڵgeJC`zW4'vvWX\g{~4yz;1g[ZZf/˭o653'h|00kXffc/YkZcrfYW>O2gεֿs.)V<{)=Wq#cV[3}`Mou5ŭF[[gMmuue+[3ZMn ְ쳭COFe`}5^_/7eebYV}edw{+~Vz+hVk\.~f}?b2ߍ<;}y워m2~}#K_c2;[k|˳`m̶L5hDO<.<3!}uc+WV-K(:}f|}>]^욌cf.،cJۡӃMicc΍ML8vabvglo(6(.vP7NWlh<~K /Mls9Sv+wjsݩ'Ƕ=5{ciiG2FŲ҆Rӆ~¾ƥUQSʲ=7Ud,HIYSJy7cCE8婊L瞟IbvJ8o)Ɣ/|W)勊)U<犊w}+bUsecox-<󐊷þTU܊6sʊ;*3*WT*=m}F՗3RL ?X;|ck_U<Ѝ叅/C;+Ɔ39ފsÙኩ]?O [~}쪐 Wz_eg֖?^-j*Z^602+0=$~.Ѽ,sBACc/CEqP~ah򩡽˯ׄkms~`:84-iߗ~mA-s}͡hjwb3-[]-W57<t M>Q }ƉbļOm'f\\s$b315bżyFcS7hŜĜ'iN̳(yL4b 'N̽( &?J(f_&f_31Rb&fFL3P&fbbbPKBrLdg[&淡EN̷('LOd)L5b|b>|V#I130k^x͋i_ w4/)w4/OGt4/L{y1nh^4g5k^<|f Ѽp>͋zGbּH)Ih[k[|kd+{YнFf:#w&Q{'$Mͤ-Q\@ ,  (JCEDD(( 7[z@E0&ݙL$O'{[t "G Db0h,>w`Ū`-" iMlj`eo m~AM@(jo+moG{[L <xT7, u_$r~7>EuW{[$-@5UmqY?-Lơm@}ۢf`a`9*[ZvjomoexQ4LS &ÓFC*ZN haMaX%-3I~pVpE%h{[4k xo9c1$\4 獔pH xo (1m٘$.dLF}-7Lxo||uy'1-sL9<*'d\Bw)1Am/7/-Ky@P\>2l?ay{[w2 LV~y?߼_lū-^䵽-<"_3ϊͯƯy;1mƤxoQ!K2{KOyEO^!~%HO[ 9ke ͯ>5xډ]yޚK֞ۢmQh xo agvc&->xo OAVn^^7rx9qNq_a$Wq{[\޴-[.~˿z[i{[9rr8wr]\ O1Igy+)G8i{[㮻vq:6pZx[l崽->᪺vp\{ 檻qjoŧob+̳{JWwXåro#;9fzNb=7  -AZpK8mo%:;Zfn="+mX Wp_o"-@ps9moy :FZDR{[ᴽ-Vs9E|#F9lm wU>\cBiGaow9mow$j%kHh=+xx{[[=PƁE6w{[|e_"-qGybzN)gsjo-ŧ>Sm;FGZL/pxow 8vNol΃+m_Nbqv'WCo X=¬f6sHN̗mq{=-p}bOpbD: E{[|e8'|v7݋t7Imq0maq~5w.sk3r48MqxoCܑ؟bOrb#]!-(^ۂ̑{[T|Y$qxokx!-@mW zf|@V>ͻm!}*=Z|wKhȫ-z /ǁ@f-0?N?~Bzm- -WvKyG+-mYxo 7+kk+ xo' -LFqkȉkP{[؂tililv,-DVS#˃#K#"###"sUm$m81r_0)Wqa #Wxo oB3En)HDlAEPxD(vLDM#E'+KtGT|-Wb%-JU mB#728\AJ+IjoI7Hxoti*퐆K{78iX+Y mHJR"'Jjo/ПBb`ݐab!ۂB$9)F:!9$tPJJz逤`EE-xl;#m@E-C w2% pm" ᷁7F8~.  b  vӃpR?Pm1j{[L\G `!ރxo`b%60AiȀPm j{[l=!b3 k`Mk`{[|{ h6A+K ZPt2 - m==<{)^B{[m ; ?}?vBqX2 W7R /cH9 B'k{[kpBSp|/Pmq?{3$ -hYۂ@nZƬpyMxo Jy9HCʲHהt mQYOW(UCWh|vjoX(k{[Q*,!ՕD*+k{[ԑW#HA$V^Ꮥ!,k{[|_%e_MHz3ۢmXGՓSHZjo8Y",2BVBj 7ˇ>xo25+j#UFCqE-ky[d@Fd;Y RcX.h*k{[4 ɚH Z" Pe-o Z#=qHUjɻ<oEC9Ԗ_U@F s^Y#peM݌<D "-*˿xojr'$w"yHjo \mqƻn&.r O.PN"(ܬLI$Q ,mqj{[}?U%&R];fy:]Hjooȱ -M0۾|~n@{[!<|;|-X-ÉmSm0[6jG>xoam{[ۿڷVͰ}L@R{[̂j(Hca Ӱufk[_xopu9{[oCuheBE͂joPۢ- $B0tg,-=yK2{[1m1n? joPۢ L8!7{j3 Wp9 ט#mvxop%hi4,5aT{[ۚH7L;$gh.)մ_j:(~L$mYפ bm1G`L#fRqT8-ϒkO$ŧ-GɴAJV;ѴLR{[<,i{[Ks D( md0u(Wtۢ0tfHxo6Ci!Ym"1$%/!mojbvnN77Ct+Q{[AB'Ddꯄυ^%x4mhh..$.GEůH;v1q-,DW7$K74H FzF뺆uωSq4)؝xDAD-"_lD0bmB!j{[\x[dsžHyb|QbB,G ı(7{[rq.-CEۢ$.kNpMW6%fh,^ Jј-KY%fhJY%fhj%,ׂ3YwPNUލB1^xrs': uu^hIBy32JtNtq^y5>:S!]^xB+C:af@Q:h3` 䬋T |Ah3 G3px#8Hj(@ tupU!@c| th3" jHu]h <<,xlHFnx~u;vTAn vC ]he)@S`p@晄T@@&:(ÁHjEh7f`i_zkKH tGnzr n"hf |" y!E>/ƀ^hfvf=@$ H=Q=IH E6}3g|1`ER38bIpbf@H3 @_x .g;e) v!hh3GK@C-c4?10mx:gu8vNI@WE:@ Blua+  ˂Z9hxg REЉ tc@7mn&AM5@_$<-l6 a0T1f;mq0 `Y\ksn &qn6ŶbB!T@=@OE~ ħ! g t7Ћ tg@{8> +@^@gjw@P/*x xz&p<$+=ɠ0t^Wh3П@CAzp FO^ `ϒZ(K@6]D3~2K:F <ӊ<} ?ǂ xP3Im%g;gBIP[2'@^ 5!/# t-r[Gh/Y9Dr(HJ0 U%áꤚNj3I=\B7 pY#k:pZJv! d+ԛ) $Kd/i8f?'$u^<m o_*_>OO_I<-YY^E0\בf2n'_jWn ƍQ>/ǥx3z@eW/Gy 4=(S}2J/=r5j3mN0h0[vֆÄ/;|ËgsKßx gz ^Sxfk?ĭ^>mzYky$r-kO6S"6*5C[I+zOٛzO% 7.}HGngC"]|Dq>5=fߥFP"QM"ǩΏgE+RTSZ~.R#U JΡ"9TeLi3Л6Q 36\d$5920jTd5,2R3 pu?o 귇s~:|ڏgw g' D[)0&imKq]h<ݕ>&QJ"Oi4AWAgU t^W1q.zaI)6V@o.zO50@tygc9t<'O)>Nk3Зh=3xaҥ *RUfT'` Bi-:^Dx-L7i5]f[0C<ݝi fꇆ3 Bt@wc3x#%2c3V62j:C z*Ed N}ۊ>.lQ@a0L3vj3# 'j3)>:OAzTVga@OeSX<=b^G#" bӃY5=-@?Ӹ{S/!eD:qzK6"?} 8tvf3آ DVMa_@þ[T@cyl?j6B= RZ` Ӭ6==lgaL9H Gxz!{cB_&[7 i*hiV@O@ogJ޵ ϰvr:lyh}޾*@&_a&g MF'U?ecY~n<Lvg[@a9l&.!MDER3Xm:=ޏNq# qHHxz*{:gIlO(alG$5e; #l+i 5mJe[߾=uY=w?zɬ~-@7eh3{{ j3/=ή^g']Hj@Wc9$v d۫z{&$<݊h3tG y}Hu)Hjb?? en1m6fgSm$;Ʋ#m,e3lY<]^}.5SS#SSzm=h]ax޲X&c0YFo;è譨4w`-dKRe5sƲ9m\la LlL6C̦'1{m1_0||٠bgLe g3S*8fy g`eDi$ LyF@ۚ t )L>w)3MTS f>3ԌI35gƘ0xz s/܃I0?<`s=f͌6}`3f Gzti|3nfQd`J-L~br3VS Z63jz@/Ӕ!3Ci;`x& [03Fzs@路>wл =5hyf[ 4MW_}nG%wotzzFs?`4g3>|};5lAl6tGV~<xhNL<6~onb߫=4O6u~5|GbS~OkĻTb gSDՈA&QՉIM6!HlU}fsH+T@I שӹm.vFWu#]:,@w(n_FYPݾ t(O١}fQC t22͢ tedE%0Y ]2DŽ2?B\'rVDjEBu>=eyؼF{8wޫmoW3o}@ǟi/1} ^o9|J+_Yc<&XTۛ]Ϋ8'<2=,\Wf$RsGA*G9/olџQ )Y21(vkCPFC4*]D1#r2zQ7zrzJ>>O_IFcDwvvy6qtTʍD"3:'B<&&FK|qmQMSQ_1{75"e2jJ˕ 2d%)%cJ VD2jGU2|eZɸ!x3JE[ c؀zԓGۚJ42B#aq e(#E1qב,h96R(%HL&7i$ZsH5nbһHYv!UqH>A:䵢Hmz Dbk bkM4 fvy⢭NԵgFدOگ]1tl1tpDƙiIva%ss%yRəSi;Z8+:8?=lo{!g:_04gu:dtNFw{NV,ٻr ,󍷏^%rFu ?ڞ602 nh4s[4s#5mmo1t5ycvmaiabP w my6=fojh`A#^dT w_[([=ΐ\aw:\l^SiLI;iX6m >e_db5N7m0-6T5j\eb]efmeD796m >?ָP責scm/~0`gP=wnp5cF`9Y4־44B9&wۆRFt\CO5!CGoLٰa=]^CF 38M| o>}R 2pG%4H젼7M'O>-ͻMDOD&3zϩ^tܛ(r*ܷﭖ|Kٖ>z P~bYooձ ?w?Ec()ʯ_u-< ,<;1Ct2-W.tf50\]~ CPPc%mοMM#OeGy<ϫpyR7*ooVuI+&LL,+32<ݫ6MUeԺ3wsYOӽjԿRZw~.K=~yWm2^[-q{{f)]J;*Ո.rVXg \Drls{*Q6?(o n/T˴B<}4eWy)ב *{4n|;n3Bք|byl,!govE(p1(ONi{GHbҹ)j$2-Ȱs:}Д Aœ^G:i7XpDǁ_ޯ拮+Rؽ~}2^% v(m-8z߈\N[YW^)kBכּMVgS+DǦ{ j hw-z({\?oOڂɍ(m)Ɲ>?bkI9Fs2K6 ];*K=J,\/+_˓{<Q<y)ʸ7E%OeGy}yRlzuG2y.,y*K=)^e)K)S g=W/%1"OwS1:>sYOӽj_^ИϏReUʼ#LGe?2O%=?bQQop1aw>+jyw?˒IVgB Zt;Mw9ک }gOp<=vKwm:&oRE2{g>:ޔ~.97~K:{Dd ,)V0  # A"ztE$dz3..ɠzv@=ztE$dz3..ɠogXzx |>>wKn{Pq}YC"DP *BXZ, V6ԘX4ԥjV}k}}]jťs&3aU߿o+|}3gf=P>+&c;l=2$ "[;xFU,3wCBy&!# %oW8Do `B{Be}l{=F|J{$΢?ؕM(zAQbFf_nKC\GToAM.{[[EVQ!I,D7:zNCѨpS +#s~! /N }UqWmugŇH?Єҿ8X:o) BÑ-b? _)>Lmp;o~Z<1ۂYw8ݣ͡c½ }6n_w桢Yc‘p2Yh                          ! " # $ % & ' ( ) * + , - . / 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 V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l n o p q r s t u v w x y z { | } ~  4Ow% M }&668h忽砒*RoFCݳwxLmp_5^|rɑدWFG{F/LmpZ xEقUqFDJ _X }6GR/pf.];eܮv=N:v,3wҥs1vƤIkgLZy٥3/HHڱӧw)s4gjh>tR9/9{ }Fh;Nn)1>#ow|(u;R<&%-;\@>'L޼Y }qP\<8#r+ >S7\GBXku}Sn-Z~Hbۧm-st򞐓g>bbrߑ2la>] ھ$t]ʹ1on_Oyw?\A3 _T99GSOAJM_*s' _W깠H? fc.$\#=s$\Au}>˿+SN+3_*r, h|8C(Wg _'Y-͎eC鳹+~9|"K>9?_%J^9q?y3>O{l g8@Xo*cUeN}c(}t>qߡt=~wg?9)QRGsʝmh#<;1~,I) ,u&ypA{^#—\0ɂdp:bj` ue5}zN?ԉZʜEO/gK}UVG[:_Kq|2g?kif~ ם:cSɫ5TBŬ_ô?y\_b~OnJ}خ?f|6i>5s~5Iݒc԰eۧgGS-=9khŶOZrt^Ty?ɭ?Fyiy辰Wʹ7JYG~UOV9+\c{^#h/}>˿+D*uJ& n1GӚc:p,wJ$'/|X2\ t3xy(G~YW6 S}<Qk*;0\y}?H$ G55e}?˾.'cCwpLTSNYwE;*>OO_t.;Fv 㾧z58n\/: |ݿɺw='?Iw=$fM$?zt|+uśr]9޵q@鉝?qћ~o{z{ x}skz$QqI{[r;Y*o\pnJs:&Kw)-m8lT<{ߺPtO=m5uJ5%\ݢ"‹r;UEE'#}SFRFncvM 6zEoc2lXe'mcyly^6ǏE"Ӓ(c؛5>gyOUVkMF4EU /r8#c}SNq<֋[ciSVPКhrQ^4q->U$BђE& UEǣ[Qԧ"S1_YQCjUbq[p\ܚ\T"efL~O,ӊ..nH,xBtIkjc "v<֋LKEb.{ICS %*\ 6U!*_{1oBdQW q9њN4EU / q1ǃ-ə{G4EmQECb{X^%yh] ֈ&M"jkQROe&6p< $w_{vIm.jEgOLϳ<$fFa:uQ!ǣ(%yy{PKJnsQD&/RFm=Ndj,xH t8qM{_q㢏˽%82b41ږd82btY CbD:wSѝ6+Z%DTژL2hwG+1w۫2ۙ,ɱ*m.MDy7x!#z8ػ)8`gD \E6/|q$DT5)2 *xHLcFB\'&6ECFb 5 ErQ^^e2qWD6GB=<7&ѕy=Opo6U+jqOFE9ާXKc+`{@l#6U+jȥ^xq c}bbzǣ`xt_-m.VDz2Bn>KdˣƝVY<8NJU 8t,m.VDz2Bn3Wtȴ+q),`GE EQǣ"B"eyLc 9;ޗYWWJV&6U+jȫ85^݃;8cx Eo rQ^̕)2=-2^T/,`D E-C⭮jET)#6seL?~^H׸'ov+xl.UѶQ{ wRn$wΈYcXU>ѭ `xy>u}DwAdcs09Gɭm.j{b"B "~;4<,96<9n{U䩢N(梶'NZBDȰA.x &?_.V'6=iD!#^byH̬(#+L/r]cIEmO-!"dxȈL?r<$ذa1>.+Nm.j{k !ǣ@Cb K-x\X|BpbauRnsQOȖq<7L*QxYN+D{:%DlQ+2-,xHLQ|X3Gs09Zxu^6=1k !CF-2s<$qqŅ&ꊫ%IEmO4y-!"dxȈÒ?(xH%Ò%%K D!8<&梶'&y-!"dx)2 *xHb,䑢uLT'MnsQGz-!"dx'1,&8(^xN& g%rl !CFl򐘉aIOR!NnMnsQCqŭ&J_qdBOޙn6M^8q7\{0]#Z*VWnsQ"֋5G[%2},ֹyxtOtG3Օ\T"e3 7.ǣ{=3x\W%9@cJ։&M"jy׸\NY$>wC)w]%m;KJnsQD&/r829\^N]ZطÖ#;ޣ:tIm.jEg7Lq<$xFC拽E{^ے|k1AdՁ!1)t|jhǔњ\T"w?P7չA7uػ6v|OEE!8L-kMm.BDUxM='2-^^ mzD|pT֔*DT)#67>nn/}S;q#STD\Tj"Z{^yY=_$>wC)|]STS˪\E6/r&K\^ýoh=C+6E͝6q^zq<$x+GVwm#fs=I 2і&>ux"5}^O{'#ܱ0h6="B6sx_|/1%qvJѺ֣BJWD2Q~<58yY-J83=8yl}yxW'׉&^K82s䑥 'zx~urjYuRnsQQ%DlCb./lD/OBܯNա:)GdK82&2 >w> ӼP2<>UHkJnQ#"‹;+ÃR 8#2(um!5;+[B+塭VWnQ5ZUEքe7f6B}6<ý#ٽ.O;vVEՊZ/RFm=Nxt ո}cC߁J_>(=#|izvҴ梾t v!EU14whzvA|[YG9qNFGZUEʈrmQq䷆QqF6c"ݙz23H{Jƾm-&ڼHэ}NFA3$žm)Y[%[ݛE\T"3^GߒSf;wŒ{{n{5efs;rkS6й<}$}(N_LOr&;9Oqq*Ӈ9=]cҝnNNtSN;#:ߎbeN:ɉ:;F8ۣ9ۢ8FOq):y8:y z4DTtOtvѽѥE^S@􆢇?/SF-z6mNJG,4({({ضo^/{3Eۊ_.:&|Q֢Eҏ}х{&o/y E-J/-Z]tyzR<yg5)af~}5]Rnkh.4ݽQa sWFKCC~I%#)ݚPҝr܋C'\^0!oAM`J%cBo^- =[sñCօePkWEou2vlX}Ab#.96%Tlfec+_Į\߷GO(Xw{}|G#k'+CeQ8wfƝ^펌/t/w{Ǘƿvc1f7GM?jQǽ)t[~];=t=7t{fZR<{pOGnA]B*ȡbG~;&tgЭޡXe膘+vn臱CWƦ}?$VZIXMجwW~a ؝[c]c-5J'pݧOqX ws|\їE_?߉ΊqxVɟ(iqCQJoEs(Mɒ?O,2{: :&~Vv\Ғ ~VlU[S)~)kLW}sFM߀ONR}oN'HhX5shM5Ŧϯ5N`Gv3a9NYGN81= 90'8Pa{P^Pq=WTw00qG*>N „m ZCp\pESAJq q;&8lqׁFaf(`P88 ;8= 뙄\QÌ (618칔o dp\G\f a558>NiÄm Zop\׃*0ZV q v qN{=}pZL jpYP a/|3>N/z a/{=p 8%n>NqΣ| >N:^$f!a5K8B} -8}^zP=0] QλF) )} \QMH+.ĭ;)pخPcv!lW*-;a j>9StGR>Nz8aa"1AMg54'WqJ1xwp\%Ue8I905c @U} IzC}. TVaz`PÆ؟UB} k|wqGUp8L%aN j>9Sᰃ(Pq" : œ 1}XCsrUaϢ|#>N:gWT0# 30c Nza^j@f,a58Pa/|>NOza/2a&f"`P{8M8E"v5aX]:^Efa. j>9S:3(,?N' ׃*E9A$g54'Wq Jv>[qJ׹\Qm,"Quimq=q䔙LkMNyLMz*Nœv8BzA}iT; t8'TP4 jFq S2|>N_ڇ+Nq jQ?inLs&ZlntVWT26SWfZ[TqW&la}eZl>WT26MfZlEUXf6:f&CqEu3gc58K2SB3|K>N㺘T8R|0qkmo#aXhߢ>ڱiبjl[6`Px4q;Lsy8G*oxœ~8LN8E8ܵ6X]'δB}(az`PS؇ 89ܵůӟ3P+qrT8P`g¶vuLk}-ԇjwf0a58g>Nτm!q\L*zlŒ jqG>Nq4wm >V3P+qjŒ jq'n>N4wm5 >V3PT8E0qHܦB}Bi*M8@Z_ AML!T v)-cu=BZ_ A\FABߘjS4ߡ~r\/'RX CC0? j""zch_Ons,5hO)o>6sլƢXJBaPyؙч\cs*7Qj^ڍTt4OPG߯'ΣdU>VW4՗>ճ4!M"d<,"M1Qqqw2ԇZ'|0@iz>N~ qj#-'|J>A}Pqz&l|q=W4g bBj]GӴ֝)|iZP+jnֺ34׺J:Z?׫u}NZw|iZP~VWE5f(VJ5fk)UJU} !*P+jZ 2+q9wr+)JSq.']9J0q[ q:]q[sЌ0f `PITF/ko5]cuYS}חբ5շrחU8qFʷl971U\Qì%MA[Moǩr\ \Q;ì#zi|r?t]lq껦@}43k t,U5ϵ4>oǘk _cuU_l>5*Z7cL67k}l G?>¦@Yea9h_8a>VW!=g 0Xl * WA9c+i>VW7#B+1902A%d=b]j}G?հ>ȩ&/-_-e0k ˦1F&l a7X]4>[j4g ύ*7/M7X]ti>W~6_ZST8N4Dc.xs; ը)a"݀Ai~ӟ6aWvU9"9-`Pq{t9샔o3ǩ]s\ 59f< T8>B8l(ǩhs\HG+jks?πAm5p.X]t5P6] ĵѿJަkh-kH6aߦ믁hkѿ o-]7אnXcu5q@}4_Vct5_Yqlsci|6ѸiJi|6Q.7&|J4ƚܯǘsn6D}gV4>h|?Ri|6\1]?4>h4X]U4>jgOgP`7շsuMP >VWk7B}ljk6eM SqzPon>WԆ0&omTq:gt=U>T7 h>q4|ϐMcQt}zw 2*֛K>dM%{Rw ǟR}>N6PfS7}5459L3a|A9gJ MnK|o2Gj|J gK uM aWX]P/ozeMMχ:z>x]|}{]Lχ Q?^C5 gݛ8^-|6`fzQփ(CzQ֙TZOͯ9S} w] 8Q+OauM5?||ߣ0_BwD(:y&p|?'8)ޯ[KW+lw\L5P\zMaСjp gssฦhU sx0 s`XHPaT_ ǹDp\ aJ :Jly3awиii|A}ߚ0;];[Nǃs0B}s^a :`LY&&n[2LZMz_6aҲm@ZYg l: q~vp8F zspYt0kߒ}KλZJ[qvתF=i=kh=zϷ{r]o|,t ko1ZWbaEHIo<2t n cjwLcד~w3cF0Yҹf\II;dIvn2<վ)vv,ΥwG>G˿5N+=~ϖ/g9rY.O?{Სt|ʅ E9#޿w5ᷛWO|9q+?5T;߿ٷ"^1s>*f-Wô_[Ϧs-@,:fϦw\$ N e綞M; lCl=P~PgSoAM} 0AMPgS7lGrTN y6UP}C}Mtֳia+kgS%a&г z6 |>[Ϧ [\<30AMPg`wg4Ckg LgPo8g4 l= 5ȳL Lgpog4 z6)Yxl:0#4 z6|>[&ϦQ ϦT_5g4UC}M {<΅| TMl=)ֳIa{}gŒLgXֳi,lR^4)LgIS|<Pl:'S^Ϧsx6JӠ>[& z6)l#giz6)loֳIa{ Ϧ^9\m<?g٤>[& \[Ϧ3;ϳI=Mrx6 'ֳ,slRyAMgplAPgHslRyG>iTWϦфl=<'?&\x6KTMPgy٤AMcs>`<Ժ\[&.vlD!5ȳILgZ+z6!vg=y6 lRkgC}M]4g &V:0AMjt4g٤>[Ϧ ;y6j٤J>[&=lEskg99\m[&\<`<\ugԏ l=?p l*| ٤էC}M(PgV ϦJȧ0MT ڳ l=v p l| ٤g@}M(PgAMC y6y0ֳi(z6Aء5ȳLȧ0AMj^}6g4 z6 #Yxl: )LgWl=FPQPgلϦOaPgbg;y6)l/)LgSl=vgy6| 40C}M٤V ϦJ Lgz6 l'O&V Ϧ* Lg`œz6!vg AMC30AMC 3 lBl'?Ϧ3{&p l:040Pgž z6)95ȳ0AMՄ z6)ֳIaAMW lK >[&z6)5ȳipU Ϧ 3lBl'?&y6]&ȳia&vM;ϳIHgS a&&ȳiNϊM;ϳI孁}AMXLLg:S>[&slD)5ȳi ajTKK>[&slJi5ȳia&ȳiNwm=&һ]{[Ϧ M +MK< ;x6LgD:`}ֳi"MA[Ϧ uϦLLgdlLB}M;y6M!L-`[Ϧ\<f!`̵<f!`<.B}MQ9Pg AM 30AM\/l==w lRpLl=v lNkggbg;y6 #YVtaF&ȳi2a.l=Vg٤N6M30AM33 l T{(wi߯&m&%T>^ Vk\eU3O\]܏:U]e *Ztt"H#D/O,sgFOIdžXߗ\ G8g8=(zll]d:{ YxK8,|]ޟj/mkk揮Gc>~KqǬk1?"#]~ NP8]Er!1k"ug}DeFZ Ր*&>ŕ E\WYq"|@鉝?It4U;ϋJQ(+3pj}~_>{S3Fl!C:uXGՇBs lT.v=qНpl8l:>ݎO p8z.&UEEvsst=:{{FpQ cg`(Eτ/^r3p-\ϢgB'}/z8w.JQ3cQ Dߋ&zέ}I+H5g\E(?2)Dߋ z}>+=ݡg\:(ݏ2yCߋzM}3+2腡g\/(BτN^3p\CgB }/zK8 .J33= :Aߋ^ zΕL贠EO=E> z&tDs9t?=:{ѣ@pQ %g\(2 @ߋzNݟuLدEm~=Ez̕ 4 Z>3W&({Q^sQ~ Ig(]g^τ^Ԏ3p*\gBw}/j85w.Jm3B :PI]ߋzNuLxEms=bEzz&T&St]q=*{Q+\sQ gԻ(][τ^3p*\gBl}/jd85l.J׽fLPSt}j=(Q{QsZKsQ  gT(]Yτ^p3pj\ˬgBf}/j-8Ue.JOfPJ&S?tcEc}/j8b.J#35 03W&({Q YgT(]ߗ2AWߋzNux+wgTt(]/Wτʸ^JccpG=?oEJ'YEuZ=CE銳z&ԖӋteX^T{3p\]@UߋzNҕVLETrQ"*j2wP9>z\\gBR^VrQ¨ DO{YPsEJܧ'i/}u<(]>eU8 &+kPCˁZtLMVRߋzNҕ*LIEI=3E銒z&ԎJӃtG ^Ts2躍\j1rZ`Ȫ~qg^t%/n|d5U⎸E[yjkq%q]/ҕKV;⺮+Xq%Uŝ*Aןt)GVSU3p:Qzż]O;_g>PIh@5&梁+,qUj)qUͪ&1Y2HzgB#fԍ;cEE#M?*DܝAte!Y u(]nZ?uU~+p&Ϫ8.JWa}/8=T4nj6zn)PFߋ3zN_FdLEu5F_L¼*._xt.JWf`U[ƇE *,@+Eߋ(t.JW:᾵4᾵U/3p:%\HgB}/5kfnT;.~O FłQ0O;s5OqO 3c ]ib1f7GM?jQFCWOhN"[n<}'K޽NN|- 8.]bwGR \򲙋fN:]O8S89̝t霮gL1iSV^v̋g,r\vpLu:rҜIO?D)} o ^M߈Vd>Pow%]PNFIJ(@BŅI/3Ј՗2iȟ"}{*Fcg]{@k=Ao-6}~0صJjzW6юu8+hj ۄ90q<q 8w"-p\!qU8̉90Pa{P^Pj}T&az58[)A ]cu}k_a*S Ԓ`P0a(ӝ$lpE5 K0C&q qqz/6aWT0#3 0}q<8E V8 KWT0c30j>NiÄm Zoфa.&VDZB}DB}HIxSKiA t6 A8쥔o&p\/!x˂0"q[q#[q:$/aI8B, jp/'n߅8%{[q&%za滀A-wđSH1aWvuS8v?y 905V8][wS^])ߡPqBخUZ8Lwn1}XCsrUa|GA} p \QEc0khNbXwǰ= /@SZ3[S=)_oӥḞJ؞j8Lo jpJS1aWvn8 $Amg54'Wq9v;tt8U\Q]ÜA3;khNx8Yo$^j= jIрA-g|Sa(XḞCj׃KqA m")q؋(b}{pE!?0CqqD&j®NNx" 05LМ\)>zoq\vA#V38%;-8]%++-^cY`bDkđSf26I)5?U8 9 0^PdZ;N8(Ʉ=:90QǾĭ㔤L2ӗ!l?Sfa*ZTf8*ܧ%}[q=UլLM5BƕiU} Dfa?ULM4Q8&nc>NQ˴v*q:[&CqE-֫0c\qbS2|>Nz>a/af`P˴Lk>N̴D>VN$$jaf*a5L47PqbOK6X]o̴D}(BfZlʧLʹL&6X]̴D}(nfZly q q[qJhSo)飱߄a滀A-5\k@H95{8y|hkc[qoۀA6Kqmk zn(aa'̉A7qpk mNiP\Q=$L/DZqqJskK_?gZk>WT0儩 jձGm0)ؙ-cu];Z_ L!A {= r) 8^B.8A|GhZk>{=r30]hzRq;8C] ka~aVAMDWs\Li%kN74Wp95EӺFX4[X( */r;AU}.%;*9G[5,MO25B}:̡.M aWX]zaiZAL:պi;CSVX]]Ӵ֝>W4ugh_ug8Mku~\W WX]Ӵ֝+jyֺ35B§izifj Qug5BMkkYP:պi;CSVX]eԴ֝>i;Cz;HjZ+GUSjZ+qKMkCqEMSZi.0tjZﬣ?58Ck|jZ+Pz4jZ+S 9d8]U6CU>VW[5+>W`5+RAeVr*kWRPq]N++jr`Pxշt`9l=a9"a'5Tߍ>G]_Tjʻꪳ1ѯ/Eko5ѯ/Pq tk9썔o-ǩr\oc-YKʷǛ-Pa(:S6 v.YGAE]Tf:@fwM㳁hgV4>X63kki|1]4>ꪾ@}43k 4>U6ϵ4>oǘ l 4nX]-4>F|f5M㳁g?>¦sLOpz&la}Bq \{j-9s`PU~A~8r:VZ}nqG؅WrEcs$ad; JȦ{f aD냫a}SM6_Z(.Zf5aMcluMni|Ph6Un6_6E9/-toʳB}(lе0ql}7<9h]|ԣ9wv@+j`s̈́y0q|=qzQ'SW0"̟ۦo-kH6] t]:k>/mkeMZ7אm6vUM__Y-p@_eMZn!]7t5uj믁hƸkѿL|?t=rlqcurl>3]nM5Bi5ӹ_1]܄m"lM㳉XϬ&i|6tlc~i|6Ѹii|6QZ7&Ϡnoշ벛k|nחp7Bm* 9/)߯>NtJ}( a~MM虩tM&zF|.o4|6is'!*ћǪd=U>VW7} C}%jٛKd9?A}=m|PoWkh+jsf¬ǿrWGϔz雮 =VX]etez7=25B"VGϖz®z>_V((u|*>dLχ =kL:7qt_ӽ0C[VXmtP磬Q磬3T_s~(Zp\!0WFoS} T j~ pG+a6PuL]E~OpR0_T篜W0?@ǹ.ޯk>Թ@/  Cѥ0|8l)qM\"a:DZ%>Ʃs6\;Ô& t0J.Ug4>qcu 5Iawлwf*8ѱ?_a jazWP.8L7 t0}&ף}1L:VMݶfelmCäeDlt68:q.&]C 0 0az׾%]wsU:{zn\zeo仔X>ZScusuÆߋ779l%=kԝV{,-_ 5*s2\?~eC: As(Fyhn̷+%8oFތ( INwN7VXC*1+3{dmsț䍠5$+2!v\قh<=ho,Hvq>ww>p;?<&>vgڏ]Ƃ'Nj7"#K{"4A`ppum>r>rRSđ~wݱT%幗]8d}j{o7*L-sxW~B{k >vko}Enѽce}T[ۇiRMjg9fϦ5guCdz)jx&|Uz6zc'?Ϧ=b'7a._ =j_^N~M?plzQ^Ϧ`<^^l=^|/A}ME"a^LgT߫Pg˔Uֳ%¾\<^!6y6m^l=Qס>[ϦW p lz0o&ȳ mֳ g:aAMomy6Mz6Mޅl=";5ȳ¼ ϦPg{}ֳ]nAM 0AM;>[ϦֳIaϦCy6}Hl=>|A}M x6}D lI} z6|B}M 1<>| )շ llR^OLg.KֳilR^S ϦBknmTg>M 5ԮAgiktWϦ6< z6)3Pg y6-gӳylR>[&}y6=Ƴ¼ z6)KPg¾\<^j2aA}M]٤ ϦWsx6m#PgbW8y6)k5ȳ6Momֳ +<MVWϦ gلN~M p lz7g{z6m '?&w;6M; )g1`W8y6>| ϦO l +[Ϧ6MjSֳIa?l=>"5ȳ6Mjtg٤l=3YW&V%g٤_@}M$xl[Ϧ)ߋPg¾\<^$K lRsW>[Ϧ(߫Pg¾ \<^| ٤կC}MRס>[&\<^| ٤oA}MS>[&}y6 &ȳIͫ߅l=ޢ|B}M 6p lz)LgWz6Gއl=%{5ȳi;S &5lA>l='^wȧ0AMj^g!l>Oa<>>l=vRO>[Ϧ1<>| 9I3[& gMy6ɗl'kY:׶MKlg? 9 &y,c0AMOz6= ث[Ϧ7ϳI}y6I6aޅl=ϳ-¾\[&y6} \&ȳSl=Pg~\<> ٴ0_B}M g٤ Ϧ/y6}I9gUz6!vgª6Mr)LgS0PgS ˝[Ϧb&kgS0)y6ﶞM]٤:ȳ0ԁ0@}MϳI\<:f_y6CPgӾ]٤\<# lڟ0B}M]ԙ Ϧs`</M4[Ϧ4a`.TF lR}>[Ϧoֳa; ϦN0AMlڗul=!~5ȳi? Ϧ4vgS)`vlRy`.٤rGy6n7:o[T{8(5qRT8*FLҐh)ЊPUZ(p@cLpj'ӯӝ{1<}YomξhKwek;gsܵPϦ={K2&wOހIlrݾP_gހ%Sg˻pMlrcy?y6oaM{|i_z6%}`ٴ`LgnR^P_gnoO/Գi`wiM{f/y6c}䮹C4&w$PϦO ȗ#+χz6!LeM"Z{goT/k9XlXW_g_x65 &4Ϧٴ`oTkiM fy6}B0{A}M{LeM.5ͳiO 4Ϧ/ٴ7`oT\<~IlO0B={c2Ϧ}?pMl_0&ͳ=+~סM|0lW\9ͳi4Ϧ?˻qB=,;/y69L$J<?S<ޖw5ZFMןQg.y69ݜ&ͳMy]x7ԳMyx7Գ y6-wٴUz6&ׁkgoyg!ԳZg.|c0iMٟ lzWz6968iM?O՟ɡMB&w=;x8ͳ=`< _gӿpB= ?±Hl#[T Nz.x.pϦjgͮ}Mh}_m3{ٻ*l]t= ΐ}7ggSEMNByOcqM>>?z6x|7j<_..*l>}zϋ>gSvM>jC|NGM %1?%jM!MnL7UE#O茍#\r7EYĺ>҄ o~- cmi|od=Gx )QIns_)yUɟk =p)yZOt[ͨj9uKˇ^w,=yZAtZ3>זeR\:cNZ,Q:{E/>\TSׯ-}xgP =5aLfIn#,=)j2_ՙ%Z4jі=YkYrlgw;zok@uUW%E/*aT%-#Jg©UﵱOߣWK-#l6$[Cu\oѢr%qN8!4*rf抣s1$1*ӍnEOװ(S3#nḚ('3snE(3ËnE/(Ϣ3nE(3cnEo(w3nE(KBLp ѭ530WCș N!=At93Cw\:X g&8oVҾ ݊^:s`QBgB' ݊:s`QڇBgB ݊:s`Q/BgBg݊:s{`QAgB݊^ :se`QAgB݊ :sO`Q'AgBG݊:s9`Q@gB݊:s#`Qw@gB݊^:s `Q[Q_g`,JLد[Q_g`*,J34uϢ.>93A_ֽTY֯יP^&Y֙יPQ^vTYփיP]ƻYmיP]TYWיPI]fYAיP\TY+יP\YיPA\VTY֙P[ԻY֙P[TY֙P9[F԰Yֽ&g&(\VԲj5u+jN L]Eii u+jC LEig u+j8 LEi]f u+j- LUEidrFRnEMd(sLP4֭]30bu&T֭1305auə *=QeQZߗ[QWg`,J3wu+j LEEi\ qu+j&o_-Cg,J+ٲOY[QVg`:,J+L-[QEVg`z,J+Ò hVT{+ ZUYuʢҪ΄Su褲()){z,J+LQʞ5RuGYVՙPK=%9N냲(ʞO{8ɢb'{K9^©30M5u&$s9P.& &Ѻԭj30J*u&Ԥԭ>30I%u&Ԏԭ30=H4u+9 ZEiF#bd<E+(Hܠ[QQg`:,J+y!hVT1d{\(LȎKAȎK6dQZAD+DqǢ;.;.ztXVәP{OʞXVәP#OtXV#ϕe[QqOǢ;.;.tXVәPN XVvәPÍ@Mg`l,J+LFfk304t&D#k~303t&.#kRƎ#cQZyDcDMyƢB;ZߋEi%/6>.6>u.ǵҊ[$Z$*Zlk,qI4qIԮ׺V,J+XhU㒨R ZEi)#єb<(D(E.'< LIMѤ@5&}]bQZa}h)oU$%GQL IgB#ZFʠuXV,b׏D]?"vezC,J+ G!ĮZ;#. @M~y;aQZMvOwtâyo st+ LG7qC>nb 5:jVTbJ2:jVT!_t&v!o G뵰(¾J4X@ ZWEi; Jѭ~OXV:aZJ4Mد锰(H3nEo3{o3{6S7rowj_>ߩ-+Nm. b޲۵^ ~1KiB+Ml?F#2Fw5^ڥġ8>U4ӽHU4C_mJ7ު-Oh8=]u \t0KUlU=2GeZ躙W\9oAGp&̜vݵs͝7㚹ͺb39A-^3Y2~"3Mع&Θ;3O,/?Mm݋V=3wӟ.BU6Xi8m^ʾ$.d=RY͢ϰ٩"{dLpq j ZZZBdz7dA#|i=hOgV"0k芵` j(0n@}LYa?/z`?\Qa̱Amx6c ;T z`0308nPSa;c>:J+F0L`ZZ8v &v;c8F0' TF8AMrÞ.΂z`Or0g f`Pqf` j0W 9PSak$l0_5x-"<c# {[1u`k=0B,a,ܾ 1%[1}K ^Aa櫀A-λezpd )>JX¸-}$oT` j0)0 wXׁ\Qa`v]>°Jà>¸"C+0a90 {h9)0쑒0UeԚ=Xn#>@ð$0 vpE!A  ­c6>JXwø+0L`q|2'w1=Q1u`O04]>ðgHPa\' = 3Q0g||PSaɒo ts;0Ss!`P#qXMr^".z`/20 f`P{q\]1E"v`c)b\grփz\%/5|2'w1#%@}LqZZH 3G0sZIgvΗ|>ĸ|jK H0_ j01GƳ][\'2olGI%kvK+81Q908'܆C}Lɷvj1(X\QaNf8J5C}LIʷi:R+N1|=27p1*ܧ[%{b֭b\ vq[쑵EWSaco[p\Q%˷-A,lv>|k6yPvK+o1yb/nB}L˷iM~z`/0Ss`P˷#k>[Ϟui\Q-aUA 1g \}LY7uɞ|҇*dn|N̷#k>Xv 'j3gḢo[1g㗄)NmPGc\oZi X0_ j1vm|Q825=D#}Zwͷ+}lt|F0 j1 >曻7XƸ.#+1̑908+N"o+k`b։J+10  j1#)殽%;>?[>WTc&4DZ$)coWp\QaNɀA <4v&ǔ|^nZ/q=UWTc3s`P[q$΃o+7X[>WTcɂ908^ ܦB}L7w5 1VzZ s`. j2ӄەPS]m+>[>k= 2018~Q] 1AWb#JT Z jcn/S4dؿo9d\,Ű |0*~̫F r±f_c}륏\5X/}e}ř#'sa.T}wKn^ڍ s` *:'X&;_x7}J5!}"àR}eO\}L?aK!PS*}85{>iAJdc w8*O 35,}'5+}ecz>l`Xɸ~^GWàbyaj[n1Vkֺ[57}kݭ2o׺%NZ2Y?n׫>oUcVuJ~<}kݭ5+§ozjö vyjV-^N4B}kݭ2o׺P2ZOԷ*)cVuJmZw=[ny|[֝(JJ[eW`+*kʬRPke؛$R27 &ڮ T0 *2I}+>˰moaۆsЌei *k9j}Y_}+%o{ժ>3/ѢշRrח(2wHPӭe;%_'lUOWԸeNTeW Penɷc*k`+j2 *Ƨ/1uv}CMg껾!}t3ٗ]Lz}Sxi^|gժ!}t3]L}Sxi]`qcZo|vH]L4}CgW<>ea1_ް-؞U;sk)M0w bB82c? ՍPZy0 }H0Fls֭2}dA컾Jx]f` ˾1AxieWbVc^cc<>f1rA/>컾y!jgWp\Qw}saPqߙN4n10ߙz4`75a<TfnO@}Lڇ])UGpEjyB0? *X3O g>kͰOI-PSf\S5f` *c3/W>Ͱ/J>͸>/+jk3˂y0;:eL!;:茱ZwuH]hvοꔱ:>!U}_+>p)ҺC΋}_Ƹ+>qc.cZ7>eXRǺx|& \)Xu:>l`{bV?nc]<>Mt J#s]<ƴ~o|v˸鉱ZU7>uL}[g3( m9j]v_}wCjzq}^oc\_;6f3샒qο҇ `~T{rvP]7'}iγ|UȇJQm>U}%h>$Z{Rmo {.o tC@}L ,Wg|A9w[&}nܗX;Zh5+"L-m=L]cz*}DwkK((_*1VG[|H|V?,8?h_ߵU[X6JmQA{>jg[|8됼1V0/E+a~Ϙ5%tG}'!H>,OpR_)D|v;d1u҇;{CCsth` 2/̷aw>0?cnk^Z\=f_t~`[# ^kKZ+z `QgχwTτo|> /j |@x(~5]·[ c )ٟ1W ߻҇;u0s`{Nf]G}1|:V۶2|ZǺX6iv{b-YqN8~oaǏpt5zw,Лa f!`б}oٻeڗkU;mLf{jYޑsIs=E*{^/w)wXh`]4x~To6Xn{e~sh:c#C{dy}Oپ&ZFH;䝵;kJROBh&o |sD^gevKH82L}2lB b{˟g.)7%H.y/#154.mS ̯:ˀ7܄Wq e5_=ݞ{6%#?QA?hoљ%iXYWQ; U%d](:pmsțQA;__{Y-y譿[_- ,~?->dHfe+o=fU-8}*LߥZHX~f4aW-nqpqQC>ı'\W؎caSN2{=u_g۾g{ퟷ֝ӾyrUfimΫg<7ky>iHo|kdy>B=ɽl_Ͻݓj!/ԳO=z69&֧x6=&ͳ!o3{ lr؇Z`6&ͳi=/Գi䰏>ų10iM#wTg~Zg2{6Z5ijM0+=v/Գa{6}kg *lrv/ԳaWFM+˸x6]QM{'wDMwq lK0wG{6!vU2&=:˸x6-QM]̳a=ʸx6LOTgbWe*lr(ܳ2!M=YUلU<vMٴkg:l*lLeM.ooٴkgl*l2y6GMq l(rϦvU2&(ܳ2!M}y(ܳi`We*lry=QgCU0`We*lry=̣Qg[׵s{2y6lg2&tG& z6LeM.opMlrkw&ͳɭvA}Mw3Sg{pMlrkuB=V3Sg \z695ͳ2!Mn{P_g>z6="GZhϦ%ΗB=,nYT+$ogJ&ͳ] lj|w@}M y6!;檝P_gӝ lrػkgSs4&7B=:%_w4Ϧ{ äy6yP_gS lr5ͳ9LgWB=|kP&iMk äy6yz/Գi[z6: &ͳͫB=6HPϦ)MA>IlrPϦ/Գ~nk}gw!äy6= =z6IPϦ )M äy6=*kROD{69a,Գi`=/q{6="pC=6˾>PϦG(4Ϧ`{6=/pϦJ}gӓ}g7`LgB}MHgPϦy6msIlrc/Գ9`iM Ey6cz69쳰·-ٴkgJYs,vԝ̳!n!M{vvgӓ/PϦ'eiX l`uϦ `\<̋IlzIF{6 U<\WpϦWZ`^*lz 2y6[pϦy# lz]0oE{6U<\7pϦ7(ܳGy'ܳ 2y6%طpϦnľ PϦe>*_B=^+0IlzE0&ͳ]W^B=^|C}M v+pMl*7+oA}MoHPϦ&pMlzS0?LgK*?C=^l)s4&7_S/ԳA> "ͳaȷ?) ]Iz.x֬5./TgSdzf>yϦJwR,L.<|e{6L}w.ϦC|NGM %1Ō;ni*v)}>b}֌|/|bM5KLkOYw$_--Yk֩kH&S,.dNTn]c9Z;ؘk֬Av~̳x.zKð%ϙ}[C%16c(t vƷo~h\tCnRdېͿGc_j[nU/Le*Rk-ٯ]]0P}VsY??Ӫ=RSIшm!jPzj,kbl9E(e4vg oG:ss"c{//w0qUZ[uՖ™b/BK)˳^$s-Kj^Up_=+ϊGeJ߇NCk)qqy*ˋJKHգN[ҋ*wU*my>};\i34;_+{ ל%WړFg=I'ߕ/T{Cuc9=sյ3}C;͕̗gk忟<Ig4;_+p|gs=ߙ>;gU໾#|}!(#Xjl+d25ۿ:{ο sMꡞ ԃj7/owϽ{67\d,Zݿs fԌiA{u~po\ vN]U8/PEN,2(|I}5`wwX15fh}ZPJYۙ>Z296kdL]U[Cr }Z V3};*dzV3}wkvw՞?Voޠ*}ʜ.m8:^ns1(=M'U=kIydbHi7J۾.10&>,kU8&&KNcMV 6у}cekd7d-9}:eS~s/[j0kud$}Z1{n:,=oC1ݧiuiś&;3wv:j䭾ep먗K~{W8[UU64fؚRn{|qȞmH8_70T_W0 ݆y9F%Qe(ep٩dUgkpuj.F9_fȎʯvGZWʟ\ݑ^} f[b8l<~a^ܦ#~Ayn2]m2}imXW35?l-5}~fQ&1kF?k2Px3[MS5US/7fYTj.F^UjGde<2mk#fz[aL]_~fQ&i#gg&#&ӳuu1^má/>Uܦ#ާ\ܶ^)n8dVxX1<ۚ70gDm*F./nػ߀!yԴc<&ߚi̢6Mȉō bn? Ǟ [sϙ74 ,jT393M*i]bF5 fzlLgm6mkn[qc16z0Px5|jLfY6W1d:mo)Y,4[񅯙~fQLԶbx؈LFciqhۍǿgk;v~`?&jf1ߋLodVd$nZRػM~pg5D,F>QƚL'L/L۔⚥~ͻ~fQ3Mbx|fzfKaci]gZW0͵K`i sk-,jY&K&ӏ)酫j;㑩[Z3=w{Խ[YL5i#grFL7LGMu[xl 3ۋNj&ⶴ"1d:dRxhZ7?:0=CxY~E‚cKTkKɹwf?FaфܔBrL-ֿۮeF.wNi6Ex|qk4vc;!w@{u3i8\T=9g?-kFa7Fa2a1s'.f<krOܽà9EDMqto5a1L\x\P[k0 kk'g^cCqk4vc/p6>oǵ7N$$lknqIqI\~,J;cx`㒸] ךEik#f<WjO(4M.OiG 'Zк@g}sfQڹ}x4oU7f%]QaYgB/eZʠYvBf׏]?wcve>,J;GM̮ 1;#0Mbη:zVtob:zVt%Ydu&%o;,G(ʾJ]@+گEigV; `խ~}UYvPeZJRٯWT(t3nEo3{o3{6#<{wj%G5;eߩI1[Vqf~鿊fM~F[ ޾N]sbuizLLپ8埏37?#gߝ 򭖿, *D1fК(Gq,lm`iѐQj]r«C~0A s)+0%P[`\+00т908/F@}LaJPq`\f`F5­cJ>l`;cև`\G v4pEiL `PKq'NÎ|'C}Lwq'(d Ԩ`'PS`%YPӳ`\OU.,L j_0)PS`s%P`\3|L jj0 K>v3j B^zP`Ks`Pq.fB}LagH+>N փUA j6c { 1"0s`P[q'A}Lqa| >C¸xuY(%㗅W>d°_|K>o¸~I_k=0|08yw_L!Ň])uS׽\QMa>)+@6c+ ;H1=u`WTia!90{h9)0졒00P/ s` jeNcJ1 {;c1{$pEU9F0f|c 4 ;L. z`WTa ԰a Z>lîl{z7h~ ôf,`P .srWSa%)Pa\ D: s`N jeNcJ< {1}u`0s6`P .A>ð%0v2^A aBFxp1 D]1=!"^\Qea.4xp cD>JXSĸx"J0_ jeNcJG ;Ḱz`gTf`|2'w1%/A}LWq'Ֆf``b\G G[;Δ{bkvK+81Q908'܆C}Lɷvj1(X\QaNf8J5C}LIʷi:R+N1|=27p1*ܧ[%{b֭b\ vq[쑵EWSaco[p\Q%˷-A,lv>|k6yPvK+o1yb/nB}L˷iM~z`/0Ss`P˷#k>[Ϟui\Q-aUA 1g \}LY7uɞ|҇*dn|N̷#k>Xv 'j3gḢo[1g㗄)NmPGc\oZi X0_ j1vm|Q825k`fQj5Z_}jl |08.܎ro+cz`0G hxp;cpkmZ'η+}8030)8nc>4盻PoWp\Qa Ԫc >` vCպv^qE;9I0'5ӄۙPSa{!jk=1%08NnWB}L!7wnoW&0WJ Ev-ǔ}^nZз+}zP)dk30]]޿tgLѐaFֳgLq`Z27M&"bwpoK<5Y=7qZ ǚ&v5SS >6sDcѷ/˾pT^dyA0gz ̍8Si}W-}y5j72́90{`|&Σoߴ;cV*}{%hBEh-%TOLG2`7cwZ&}'|0@{`]}La?#Z%i~f%SOL9\}L҇mU0 HژVy>qT=/,{[^u4}kݭW4Je2_r1SĭC.RWUa[;x|&!+Ro|v\1Z7>;x|&Z!+o|v\1 2n:cV +o|vg,;=r ac 1z{n-nT,=8UGc̰dc1z`J^5Pؼ }׈ rκA̰ߑ>T}ח^˃2ìL;`Pa76ȱ1 vCj̾+}lg2>73Qn]_6}ח^97X컾J+j?/r9 *B3}r;ӉfM2f;Sf\&W4<,GJӌc O+c*5`U0OAkI,t)ɷcj׌듂} 6lsAel E2T"pEmmyY0}_9u}_1Vsο+>n!\/QC2Wa;c>/ru_;:[CZ7wuyc>/ru_<=rcLgU}[XD7>kV9Esc.cZ܇lO-}g2>A)7>{d|ǘOn7=1Vg.ֺo|vv_}1GWnZW_1/p+mK} s1w}P=1x^p\Qa}rt1y=[.2O1y P>2y?-=֧U[cjG[[D[VyO--Ap8%=vH #u/(ômU}_}f%SÖɽ-i~UcVZhr}akZ庽J<|Grlg_}R_3_}3jse6!9 :\#oA`&ߛ`D;$<X%7q N :Awy?{Cp|v{h cAV60n2?ǵq\k7+cpkK} Ps`\k[\;a :JpdX>H&P~kT8 @8~̿a?%s0?j{WWp.f` :`~#ɬh/OǪ[~c[O˶[Xk&>-nyt]e8k0ɾ_Ǐm0\ٟ1Fzs0|, :v޵-{׾]rjlU:;z.ih=W%z=9.. cukӏƿ/m<oM'{vydh 6#ߵO)wVzwH{`usM\I*I^;-x!/}N2묬Γw G|OmW^vZAwsoPl#e#ZTٿɅ /e$}m6{?ҖuYrpr*zXC}c}/`dD1;Hǚ^/,%-Cd]^]\R/W~33q PEN2my3#hg뫲>?vϾŇ ,~~cό?o@_W 7`U&3)zv788i渨!vؓ[+Zl˱{f#̞g,}?on͓6Hov^=>1_71{5ky>iHڛGkK#Գ)"g;ezeTW{II:UT'vu{6%QeM;%O6\n<&p{E*l:*l*$og 4ϦR(/Գiz6 H4R04ZkB=FK&/Գi`\< 1Il#@}Mc$_ $f$Il+z6|㡾PϦiMs"`ųl0iMSdMX? lr؋a,Գ|^kaiMq=Γc}1PϦe_ :ԳIljL 4٨2&y65 f,`1/MZy6]+9IlrוP_g7 l-kgu4&w]z6͓|PϦy6]/IlFbg3Գi`<\ka.|9ųɝwsPϦ9m*lryiMn,S }~kGlz|7|VI]][Ug*O~yϦhM>jC|NGM %1K10CJݘoFJUӥGGR\)" Z7௮hy~cW\7᱿lݗd=Gx )QIns_)yUɟk `e9!$x8mMG݊:s`Qڏ༡[cCg`n,Jf32t+za Ei ,t+zV ̝Ei 't+zK EEi !t+z@ Ei_ t+z5 ̕Ei t+z* =Ei t+z Ei? t+z ̍Ei t+z 5EirfnE(3bnEm~(OLP'WZ>Һ|݊Z:SgQZ^gBz݊:SgQZg^gBEy݊:SgQZ^gBw݊:SsgQZ]gBv݊Z:S]gQZ_]gB%u݊:SGgQZ]gBs݊:S1gQZ\gBer݊:SgQZW\gBq݊Z:SgQZ[gBo݊:SfQZ[gBEn݊:SfQZO[gBl݊:SfQZp[QZg`,JS'zP֭930uiuu&T֭ 30hu&Tv֭30fuu&T`֭30UeJɺ5u~̢19#@XvTY#֙PyXưԄY &g&(V&DEi}_rfnE^(KLPխ30]ru&Tխ%o}o0-JhVT-Ҋ:jVT^,ʰ^uʢ+VnEUV鯲(3nETr :,J+~}J.rʞ㴞)ʥ:jD=iQFu&eO{j({,J+D=%9Nx(ɞmNp LoEieM 54\2uɢ&{I.u+Z LEiJ 5)u+O LgEiEI #u+D LEiGrG݊j,mdQZHDuQg`,J+)+7h&VTG"Ҋd^چU z,J+h㒨 =uYVd% d%Qd{\(ǎKǎKާ30>t&ӭ30==t&ӭ30;s%hVTc{\ӱ(DǎK9ǎK.309t&Ԇӭ307t&p#5Pk. l:j L?Ei4 5< LEiE3 <#XVc#c#QcG^놱(GGŎbQZɋDDZϙtz Ԑ9' QkE`E@X4*AL !t^˵bdžL~x^=3{YKZɊ[~񴵸hq[\ZX~4]q[\ֵZ V~񴪸Rqd)4iJquxQrN'Jn)B1O<8='9*718&91qߗʺK\+YaVRUT,}$$gB#fԍ3cĵMĝ?<" qde!iqO-;"e] wz>]ZJ=uZɊ:s[#E9#@9qPcp5r+NF΄Z4ZT3p2r+NIF΄1ZTa_ct`V⋜ ]@ŅGkZ,@ =YWk%+0YVUQdt½ipo-y%rNk%+șP{D^*#f6f6mx,yGn 冀,V{T, {z{nV㶚{~sLݣ4!+MG jV%Y㯿ڈ9݋෢9٦zrGQ׽;OF>}%U^g_ hI?`IA߷ c']4y).\pLpܸI.<`EL<顶v:ǎ[ho:Z!(+ pRJ1Z.؇NR8L)a \1?XVʷX]RZP+00ո/6q v?7q:;aZQ݁B' W )A5u>kN!P+F^ԒjX/ œ j&g k]5ퟞ֯PsꟵ?}LV7.VV VQOOCX?kֹSVbVa bebs)Maf`PXuyyjt9lJr1W%:1{aP YuhcVrjHyyR0sS TXV&>&.mr6Rn4UrzͪK_?NYu~i*ϪK#HǞ"4W*kDsgSj]IpFMi0kJ\멶?!lUZ%z9̃y0`t9죔oԮZ!P+j`s y04նqz]8=6ʪw }ӲWK礪w <{;"s85|_%̡9F>i bU׿JT0YO_u4*/N1럧š'UװJT0Y_vU׿8Ũr((t}rl+qQ^<!NMU=+:eT8Ũr<QΟULWK+P񫡼.Vv1j}X TjEq>\k{Ah [D8.,w#?IA|]-=?(P_A` =C&纠zb}^ k94Aƶ4ηöYqn\mh"a;`1j~$~sjM'l&Ԋ&0g8WQ\>*LJ7\>+)='g9qo*{Ҷ = aqgU)ua StP@,vhe_ U=be m=Xjz*-zzte9kp5Nm? a' sPj4R /ЛL%̥Aճ 7&Z{6o/u EH=G E߳M)|n$ׯzfBq%I'A7{c6lolrd߃<%|ϳ4W;N5r'$br\m4kyQvZAloپf>rٙK?™ Q.m_8?w9msOPmMٚ"R΂d澒 un&CWs:(=nN΀m %DκVGſ".{fHȽ?=$4{[|35TS];wf&[jlG߃2 qvolq=[vyC {6kY=~ni1Mk+4m()x(4#y_gܪ ŜjjP֙MېGRf XC u6[.,5 AЦ[G9f8ߝ}|pt^awo6wݼzF=%mJZ1ЙEwCS ]ϦThRCg=㾽^ƳI7_-}ƳI7_r.n$`gӛ}x6Mw.{z6K~M=5ȳ=| Ϧ߇O׳!lzZ~Mc5ȳc| ϦOO׳Sʷz6}BϠ Ϧ9`<>'~_?]Ϧ)ߗO׳i+aZ< W l} t=|?]Ϧ/ 55aLgӷ{-z6 6<x6m# lt=|??]&M?'y6Dv?]Ϧ($\3 ϦolAv?]&M; 0AMO׳iz6 xl Lgӫvv׉g2M3lL(gk x6Ng t= 5ȳ鍄Zu<"̻O׳I`~M6vB:M$?]&}j lz?VϦlBlgj l0VϦ)lBlg~ y6}Pgӧz6!6HγI`?Z<&Ԫ9a~M3l/ Ϧ/jl0?]Ϧg$$~Ϧojl0?]Ϧm3lyZ l/gV%lϡ Ϧ/ y6q7O׳+ l_AAM_C> lgӷ; a>i &1z6}O~~M{<x6&ȳG3l t=~$v<x6m|+I oL׳I`~M6HγI}j lz LgӇz6}\#9&c5ȳc| ϦOz6} \#9&35ȳ3| Ϧ %lBlgV~y6}Aa~M5l_CAM_[y6DO׳I`~Mj l Lg~Mz6 /Pkg/Py6"O׳I`~M+*0AM ~M5l? &g/ LgS aҁgS*`s lzھ ?z6B#9&w |aLgx~MM[h{O׳I`_}aLg8V߁u=HγIކsogн}0AM?S۝t=v O׳g"ȳ'0/{6Kzm;=BgӞmghiEc=BgӞm=>vdzgA=k_ FCrm|]-ݠcQK-bW:۰-w {;T09i-E lK\ajh撔f.v]հS>n!) V1߫.5jݫaJTZn9Bva{wŵD#4gK)8%u1R1JTkXC_ N 2k%On'nGxZ5JF^6rνk%șБF^3rek%ș9F^1r k%șE^^.rεk%șЉE^+r]k%ș1E^(rk%șD^&rέk%0G&8kkDpdy-z8!E98#7!g4VosdC0 J3=+ ;J3ㄼ% J33= Ju3 +J_3ӂ= {JI3# J33s= J3À kJ`Lpע濜SZ:r&Tע6SZz̑ 4 Z>JgLPעֽSZr&Tע&SZ:r&TעvSZzr&T~עƻSsZɺr&ThעS]Zr&TRעfSGZ:r&T<עS1Zzr&T&עSZɺr&TעVSZr&TעSZ:r&TעSZzr&TΖעFSZɺ̑ ZԲ3p\+Y%jy-jN8  ui#-gBhy-jC8h,gBegy-j88f,gBfy-j-8Ue,EMd9~̵u#嵨],gTV 嵨1,gԄVn0sdBYzFk%2G&(kQWrd^]y-j8]+gBe\y-jzk%6OFӷZJӬע:ӡZɊr&ԖעӋZʰ4`嵨*gt]V+svVy-8U*gBMUy-2 F'k%+r}O9)w'rdR9jrw{)w'rdQ9jrw{j(w'rd%PnNZɊݞy*rNok%+kʙPCˁZZ ݍu)EUK9_ɵ*LI)EI93ɵ%L)EH9ɵ3&h9ǵL'E=9ǵL'E5<9{ǵJвעje}:DOs/ӑZɊqr&Ԇע {Znr&pcFk>ٸV ֘84&gBM4fn JV43v37*eܞȸV?<1xjbܞuøVB?<-0x_ܞV?<.x\uV_U6v FB^e۳ոG(MJQ{䭴GCV6hN"hi9zrmuSfQECqujWj%mCB/8}҄sO)XRo-8bIM>yʸ &|9.7n҄ )~ϼpz-a;~vr&4uǶ&Ք}llҽx^p|^)^t K!Wip6D^LWFLJ#y3v@21!͘A.K:u5ђW HNVFs%zWI*+"p}Ĩ -EO-Ô0?NYZo/-pVւZQE \Rma|պaZQ݁ $ W )A5u>Wj90Z\Sm?NaÎ|;z0aGBFaFpFWT۱SGRcg:GBra!qA aFN~NWԊ$œ jA=@5?NхF(_t^ZKZQÔ0 1)pؾ?cZc O}Z3{S( pKP+pA ԰ja/s="q 301)(qةo:tZv*ԊjKf:a. j0q5:c[\L5rLz{G1Z^jb,ZQʼn#LW>T@)>N|?Nuo :ٟ0Q\Pm?NIJ58})FA-*g ?NJ5y+Vq HլTPk W[8+ .VRS Q+d?i#0x&g k]5ퟞ֯PsꟵ?}LV7.VV VQOOCX?kֹSVbVa bebs)Maf`PXuyyjt9lJr1W%:1{aP YuhcVrjHyyR0sS TXV&>&.mr6Rn4UrzͪK_?NYu~i*ϪK#HǞ"4W*kDsgSj]IpFMi0kJ\멶?!lUZ%z9̃y0`t9죔oԮZ!P+j`s y04նqz]8=6ʪw }ӲWK礪w <{;"s85|_%̡9F>i bU׿JT0YO_u4*/N1럧š'UװJT0Y_vU׿8Ũr((t}rl+qQ^<!NMU=+:eT8Ũr<QΟULWK+P񫡼.Vv1j}X TjEq>\k{Ah [D8.,w#?IA|]-=?(P_A` =C&纠zb}^ k94Aƶ4ηöYqn\mh"a;`1j~$~sjM'l&Ԋ&0g8WQ\>*LJ7\>+)='g9qo*{Ҷ = aqgU)ua StP@,vhe_ U=be m=Xjz*-zzte9kp5Nm? a' sPj4R /ЛL%̥Aճ 7&Z{6o/u EH=G E߳M)|n$ׯzfBq%I'A7{c6lolrd߃<%|ϳ4W;N5r'$br\m4kyQvZAloپf>rٙK?™ Q.m_8?w5msOPmMٚ"R΂d澒 un&CWs:(=nN΀m %DκVGſ"oyn9?>5TS}]wf&[jlG߃2 qvolq=[vyC {6kY=~ni1Mk+4m()x(4#y_gܪ ŜjjP֙M{,1 6,<#6l\Y1jNcoAu3rn pb9;eP^awo6wݼzF=ԷKmrA1TS:6>w`ƺ_coٔ xRCjϦԿbO}e/y6I1uM~\y6qщ7K 2{c/FrM^nr#9Ϧ*Jyu lj$~Kgʷz65v < y6-%~+g2ʷz6-%r<x6-'Jy6 ~gJʷz6 *<x6"݀ l~MwS5O׳i5as}g=Y Ϧ^ٴ t=v<f=`iyB:M+ s7lO׳iaW>iUB:Mwf-lBlHγI`Z<$Ԫ$JA_#9&ƌlPkgSmB:Mbz6 B4uPkgS]B:Mbtl$wBAMw&Ԫ$JgbcFrM{ٴ8V&1Wz6!6f$$K ϦZu<\ لؘg.Z<'Ԫ$uW?]Ϧy6 ϦU x6y5O׳nƌ l~MQO׳I`@AMՐO`<ĸt;z6%Pkg<'0AMb\=z6PO׳BAMO`<O׳i[t=j l#L=` z6=DϾ? z6 |g#l}ylzm~M15ȳqWay6lz=t=6I5ȳIWay6}_t=lHγI}R<' l梜>FrM댛y6ݝWdzI|ozmGa~P׳a{u="8/ ϦGt=%Pkgy0AM{ z6=A~M$$aLgӳtw]Ϧ5lykug x6m$KO׳F]Ϧ lTI`z6 ;Eg̈́0AMlz6c%Et=n$X$ȳ)Nـ lt=n|7?]Ϧ ; j l&ȳ)Nm]ϦJ7lygw AM7y6g`z6ͦYO׳I`o}t3 &q΁[]& ou=VW l5V&^Mi{O׳ia}t7alJHM³&wBYSMzBcP2M*Ϛ={6%Tn{;Hn._(ϦTE߳Mg^ws=Mx6vYFrM*ݘlJUn*U#ri$ٔV1U۹ mƟlJlR4QK>'GMJB|WL6N3pȲ-~6pGvv$w!% 9HQq2ضdz2uST7L^/-x?;xՅ3_G},r&u=ђ3[ޫPϠaP075^lCvSq`vmiǟ94qD[ӊñGrKn,?zLj i74Y'5L}??8z糏ݾv1ԉ_k x|vǥگx9?cJjBQIcr,^/;"tdP3B]N}_zIDG9/K/ }T:5~ۥB4\m>h/Oڵ?'y7 nSrј1;: u12FiL^iN5-2>뻍>}$^F_ '8_NvJFN+>KSӢR2KRbNI98v:$qT oѯӢgF6Nn$i'+YLT|OE>)u}ՑREH]0/թD|~)N"R]w_;#{&hyȯiWE2R>5/ˆ~N$~VL?;+/i?Ύ6'rrȩi"-Kkcͣ)ݿ,M93 C"e7raF$rAFQ}"gd95]" Hm1'E楏ܑ>.R>6Ҕ'j'<DzefG2,Le\8sY7--Mcm6nF7mvFiÌhD?,+3?uﲞ6e=n~0/s沬w̒>6f}ev쑵YyEsͺE&sNy|sW9Z!4m=|E2|YcEIvm91&L7?ʹ8gT_sbڷW߹?=fn{j{ils}$;>1N6+ڌ1#mErib&X[۞dh$vǙ;^F!~3?k{9_CI6۞`^4{kNn{yyD'<im߯lᅪ2k?Wa2^ۼ1Ўp;{ 3W;^2nw^iXhyƫoc20|`{^b1"F_kH{mf/;Ԏ5?iq;n23ss[f۱/n9csPǁr9A2#ǣ2·ٿ俍34<X9QA1!yu@{9Ȝ{yTr`s'<|ӱMk<ڜ`{9\y?v{_~;34^Fh6&l]j4󝼿e/d7ܒ؜7wގm;l7tKq.^[W}}Yuiv=ˌt=^7gv]cjˑ]N0r5Oryjڱv5]i/?qfw^.6/vyv=Ŭ֮"{jn/ &m[x ̅ՙK3Wv\4vl?޸33|tnWote/wn<<"=1=3?1?Xkce~k/[{ŭ6,{Ycٳ|GEfB{Hq^ϠxN禙 3O[_2,_k^/cz>fY/c{n2ccy?p.uL+'ri^Szf/}{ܙ0.yW.sy~"}M/C#'i,wtdU{ FD`ڂ# #n/{E>WzG>|+GEa<#7E>-Ǒo 㑟 l/*pZK"_#zq"/li~sHRz{ J|E%G./Uzwu%Kז[/vƒߢ'R4o}ވ>Fw"GD> KC4*֊ҎGC`v);\vx/вsẽʦ4]g+ce%w 9e]ͥǛ׼;JK.'Usyx>V,3%ys^]^~XU[V[Q1(/SoWLFoV\^rŌ*,PqY#8O:_B}Qtt*iOM=&6Ǯ}n쟽⎊e >b#-Fηw>d}WfZ_we/qG{;_tu]+|o~d ϴ~{"+myr_0/okE[Ʈ%]e^u1tQm]fn75nWXuҚ$bNJuo~q|kBE]{:^&u1V1p\a׵:k5rĤX_.^[fΣ.cʻ^ J*|g6=f}Q;掼es"뻼/6E|gZtzzӓz+e;юqWg[;?ia{Yg/eW[:'ַގ5Ww|WuGcm&{bź3Wl83fk| ;=e/ziA;V\~n;YGw|^6m_76}/z*}ي>g/˃ژDo[o>v5b뚶+ۮ`k'Ѿ?iQv뭓ۭ&x{9Bu#o?<6Ykp&6KQξhcզ*S%^ڵgeJC`zW4'vvWX\g{~4yz;1g[ZZf/˭o653'h|00kXffc/YkZcrfYW>O2gεֿs.)V<{)=Wq#cV[3}`Mou5ŭF[[gMmuue+[3ZMn ְ쳭COFe`}5^_/7eebYV}edw{+~Vz+hVk\.~f}?b2ߍ<;}y워m2~}#K_c2;[k|˳`m̶L5hDO<.<3!}uc+WV-K(:}f|}>]^욌cf.،cJۡӃMicc΍ML8vabvglo(6(.vP7NWlh<~K /Mls9Sv+wjsݩ'Ƕ=5{ciiG2FŲ҆Rӆ~¾ƥUQSʲ=7Ud,HIYSJy7cCE8婊L瞟IbvJ8o)Ɣ/|W)勊)U<犊w}+bUsecox-<󐊷þTU܊6sʊ;*3*WT*=m}F՗3RL ?X;|ck_U<Ѝ叅/C;+Ɔ39ފsÙኩ]?O [~}쪐 Wz_eg֖?^-j*Z^602+0=$~.Ѽ,sBACc/CEqP~ah򩡽˯ׄkms~`:84-iߗ~mA-s}͡hjwb3-[]-W57<t M>Q }ƉbļOm'f\\s$b315bżyFcS7hŜĜ'iN̳(yL4b 'N̽( &?J(f_&f_31Rb&fFL3P&fbbbPKBrLdg[&淡EN̷('LOd)L5b|b>|V#I130k^x͋i_ w4/)w4/OGt4/L{y1nh^4g5k^<|f Ѽp>͋zGbּH)Ih[k[|kd+{YнFf:#w&Q{'$Mͤ-Q\@ ,  (JCEDD(( 7[z@E0&ݙL$O'{[t "G Db0h,>w`Ū`-" iMlj`eo m~AM@(jo+moG{[L <xT7, u_$r~7>EuW{[$-@5UmqY?-Lơm@}ۢf`a`9*[ZvjomoexQ4LS &ÓFC*ZN haMaX%-3I~pVpE%h{[4k xo9c1$\4 獔pH xo (1m٘$.dLF}-7Lxo||uy'1-sL9<*'d\Bw)1Am/7/-Ky@P\>2l?ay{[w2 LV~y?߼_lū-^䵽-<"_3ϊͯƯy;1mƤxoQ!K2{KOyEO^!~%HO[ 9ke ͯ>5xډ]yޚK֞ۢmQh xo agvc&->xo OAVn^^7rx9qNq_a$Wq{[\޴-[.~˿z[i{[9rr8wr]\ O1Igy+)G8i{[㮻vq:6pZx[l崽->᪺vp\{ 檻qjoŧob+̳{JWwXåro#;9fzNb=7  -AZpK8mo%:;Zfn="+mX Wp_o"-@ps9moy :FZDR{[ᴽ-Vs9E|#F9lm wU>\cBiGaow9mow$j%kHh=+xx{[[=PƁE6w{[|e_"-qGybzN)gsjo-ŧ>Sm;FGZL/pxow 8vNol΃+m_Nbqv'WCo X=¬f6sHN̗mq{=-p}bOpbD: E{[|e8'|v7݋t7Imq0maq~5w.sk3r48MqxoCܑ؟bOrb#]!-(^ۂ̑{[T|Y$qxokx!-@mW zf|@V>ͻm!}*=Z|wKhȫ-z /ǁ@f-0?N?~Bzm- -WvKyG+-mYxo 7+kk+ xo' -LFqkȉkP{[؂tililv,-DVS#˃#K#"###"sUm$m81r_0)Wqa #Wxo oB3En)HDlAEPxD(vLDM#E'+KtGT|-Wb%-JU mB#728\AJ+IjoI7Hxoti*퐆K{78iX+Y mHJR"'Jjo/ПBb`ݐab!ۂB$9)F:!9$tPJJz逤`EE-xl;#m@E-C w2% pm" ᷁7F8~.  b  vӃpR?Pm1j{[L\G `!ރxo`b%60AiȀPm j{[l=!b3 k`Mk`{[|{ h6A+K ZPt2 - m==<{)^B{[m ; ?}?vBqX2 W7R /cH9 B'k{[kpBSp|/Pmq?{3$ -hYۂ@nZƬpyMxo Jy9HCʲHהt mQYOW(UCWh|vjoX(k{[Q*,!ՕD*+k{[ԑW#HA$V^Ꮥ!,k{[|_%e_MHz3ۢmXGՓSHZjo8Y",2BVBj 7ˇ>xo25+j#UFCqE-ky[d@Fd;Y RcX.h*k{[4 ɚH Z" Pe-o Z#=qHUjɻ<oEC9Ԗ_U@F s^Y#peM݌<D "-*˿xojr'$w"yHjo \mqƻn&.r O.PN"(ܬLI$Q ,mqj{[}?U%&R];fy:]Hjooȱ -M0۾|~n@{[!<|;|-X-ÉmSm0[6jG>xoam{[ۿڷVͰ}L@R{[̂j(Hca Ӱufk[_xopu9{[oCuheBE͂joPۢ- $B0tg,-=yK2{[1m1n? joPۢ L8!7{j3 Wp9 ט#mvxop%hi4,5aT{[ۚH7L;$gh.)մ_j:(~L$mYפ bm1G`L#fRqT8-ϒkO$ŧ-GɴAJV;ѴLR{[<,i{[Ks D( md0u(Wtۢ0tfHxo6Ci!Ym"1$%/!mojbvnN77Ct+Q{[AB'Ddꯄυ^%x4mhh..$.GEůH;v1q-,DW7$K74H FzF뺆uωSq4)؝xDAD-"_lD0bmB!j{[\x[dsžHyb|QbB,G ı(7{[rq.-CEۢ$.kNpMW6%fh,^ Jј-KY%fhJY%fhj%,ׂ3YwPNUލB1^xrs': uu^hIBy32JtNtq^y5>:S!]^xB+C:af@Q:h3` 䬋T |Ah3 G3px#8Hj(@ tupU!@c| th3" jHu]h <<,xlHFnx~u;vTAn vC ]he)@S`p@晄T@@&:(ÁHjEh7f`i_zkKH tGnzr n"hf |" y!E>/ƀ^hfvf=@$ H=Q=IH E6}3g|1`ER38bIpbf@H3 @_x .g;e) v!hh3GK@C-c4?10mx:gu8vNI@WE:@ Blua+  ˂Z9hxg REЉ tc@7mn&AM5@_$<-l6 a0T1f;mq0 `Y\ksn &qn6ŶbB!T@=@OE~ ħ! g t7Ћ tg@{8> +@^@gjw@P/*x xz&p<$+=ɠ0t^Wh3П@CAzp FO^ `ϒZ(K@6]D3~2K:F <ӊ<} ?ǂ xP3Im%g;gBIP[2'@^ 5!/# t-r[Gh/Y9Dr(HJ0 U%áꤚNj3I=\B7 pY#k:pZJv! d+ԛ) $Kd/i8f?'$u^<m o_*_>OO_I<-YY^E0\בf2n'_jWn ƍQ>/ǥx3z@eW/Gy 4=(S}2J/=r5j3mN0h0[vֆÄ/;|ËgsKßx gz ^Sxfk?ĭ^>mzYky$r-kO6S"6*5C[I+zOٛzO% 7.}HGngC"]|Dq>5=fߥFP"QM"ǩΏgE+RTSZ~.R#U JΡ"9TeLi3Л6Q 36\d$5920jTd5,2R3 pu?o 귇s~:|ڏgw g' D[)0&imKq]h<ݕ>&QJ"Oi4AWAgU t^W1q.zaI)6V@o.zO50@tygc9t<'O)>Nk3Зh=3xaҥ *RUfT'` Bi-:^Dx-L7i5]f[0C<ݝi fꇆ3 Bt@wc3x#%2c3V62j:C z*Ed N}ۊ>.lQ@a0L3vj3# 'j3)>:OAzTVga@OeSX<=b^G#" bӃY5=-@?Ӹ{S/!eD:qzK6"?} 8tvf3آ DVMa_@þ[T@cyl?j6B= RZ` Ӭ6==lgaL9H Gxz!{cB_&[7 i*hiV@O@ogJ޵ ϰvr:lyh}޾*@&_a&g MF'U?ecY~n<Lvg[@a9l&.!MDER3Xm:=ޏNq# qHHxz*{:gIlO(alG$5e; #l+i 5mJe[߾=uY=w?zɬ~-@7eh3{{ j3/=ή^g']Hj@Wc9$v d۫z{&$<݊h3tG y}Hu)Hjb?? en1m6fgSm$;Ʋ#m,e3lY<]^}.5SS#SSzm=h]ax޲X&c0YFo;è譨4w`-dKRe5sƲ9m\la LlL6C̦'1{m1_0||٠bgLe g3S*8fy g`eDi$ LyF@ۚ t )L>w)3MTS f>3ԌI35gƘ0xz s/܃I0?<`s=f͌6}`3f Gzti|3nfQd`J-L~br3VS Z63jz@/Ӕ!3Ci;`x& [03Fzs@路>wл =5hyf[ 4MW_}nG%wotzzFs?`4g3>|};5lAl6tGV~<xhNL<6~onb߫=4O6u~5|GbS~OkĻTb gSDՈA&QՉIM6!HlU}fsH+T@I שӹm.vFWu#]:,@w(n_FYPݾ t(O١}fQC t22͢ tedE%0Y ]2DŽ2?B\'rVDjEBu>=eyؼF{8wޫmoW3o}@ǟi/1} ^o9|J+_Yc<&XTۛ]Ϋ8'<2=,\Wf$RsGA*G9/olџQ )Y21(vkCPFC4*]D1#r2zQ7zrzJ>>O_IFcDwvvy6qtTʍD"3:'B<&&FK|qmQMSQ_1{75"e2jJ˕ 2d%)%cJ VD2jGU2|eZɸ!x3JE[ c؀zԓGۚJ42B#aq e(#E1qב,h96R(%HL&7i$ZsH5nbһHYv!UqH>A:䵢Hmz Dbk bkM4 fvy⢭NԵgFدOگ]1tl1tpDƙiIva%ss%yRəSi;Z8+:8?=lo{!g:_04gu:dtNFw{NV,ٻr ,󍷏^%rFu ?ڞ602 nh4s[4s#5mmo1t5ycvmaiabP w my6=fojh`A#^dT w_[([=ΐ\aw:\l^SiLI;iX6m >e_db5N7m0-6T5j\eb]efmeD796m >?ָP責scm/~0`gP=wnp5cF`9Y4־44B9&wۆRFt\CO5!CGoLٰa=]^CF 38M| o>}R 2pG%4H젼7M'O>-ͻMDOD&3zϩ^tܛ(r*ܷﭖ|Kٖ>z P~bYooձ ?w?Ec()ʯ_u-< ,<;1Ct2-W.tf50\]~ CPPc%mοMM#OeGy<ϫpyR7*ooVuI+&LL,+32<ݫ6MUeԺ3wsYOӽjԿRZw~.K=~yWm2^[-q{{f)]J;*Ո.rVXg \Drls{*Q6?(o n/T˴B<}4eWy)ב *{4n|;n3Bք|byl,!govE(p1(ONi{GHbҹ)j$2-Ȱs:}Д Aœ^G:i7XpDǁ_ޯ拮+Rؽ~}2^% v(m-8z߈\N[YW^)kBכּMVgS+DǦ{ j hw-z({\?oOڂɍ(m)Ɲ>?bkI9Fs2K6 ];*K=J,\/+_˓{<Q<y)ʸ7E%OeGy}yRlzuG2y.,y*K=)^e)K)S g=W/%1"OwS1:>sYOӽj_^ИϏReUʼ#LGe?2O%=?bQQop1aw>+jyw?˒IVgB Zt;Mw9ک }gOp<=vKwm:&oRE2{g>:ޔ~.97~KDd7g|}0  # ABv+ in5Rϛ0TJTk`i)GAZ+ in5Fu {YxQMKQ=wH"QDY먁AwTF j jٿ ml/uߛ_DsygΜM!kHo" gA7FqtZns;V*M);5V֤&mnKc/N^5㻤3OJ]G-_v;~>0GLC-Jz2_*h%L$)~\^]!>=!'7sjQqH-9R̪ܞ(gY ѳDd7g|}0  # ABv+ in5Rɠ0TJTk`i)GAZ+ in5Fu {YxQMKQ=wH"QDY먁AwTF j jٿ ml/uߛ_DsygΜM!kHo" gA7FqtZns;V*M);5V֤&mnKc/N^5㻤3OJ]G-_v;~>0GLC-Jz2_*h%L$)~\^]!>=!'7sjQqH-9R̪ܞ(gY ѳDd7g|}0  # ABv+ in5Rå0TJTk`i)GAZ+ in5Fu {YxQMKQ=wH"QDY먁AwTF j jٿ ml/uߛ_DsygΜM!kHo" gA7FqtZns;V*M);5V֤&mnKc/N^5㻤3OJ]G-_v;~>0GLC-Jz2_*h%L$)~\^]!>=!'7sjQqH-9R̪ܞ(gY ѳDd7g|}0  # ABv+ in5R0TJTk`i)GAZ+ in5Fu {YxQMKQ=wH"QDY먁AwTF j jٿ ml/uߛ_DsygΜM!kHo" gA7FqtZns;V*M);5V֤&mnKc/N^5㻤3OJ]G-_v;~>0GLC-Jz2_*h%L$)~\^]!>=!'7sjQqH-9R̪ܞ(gY ѳDd7g|}0  # ABv+ in5R0TJTk`i)GAZ+ in5Fu {YxQMKQ=wH"QDY먁AwTF j jٿ ml/uߛ_DsygΜM!kHo" gA7FqtZns;V*M);5V֤&mnKc/N^5㻤3OJ]G-_v;~>0GLC-Jz2_*h%L$)~\^]!>=!'7sjQqH-9R̪ܞ(gY ѳDd7g|}0  # ABv+ in5R0TJTk`i)GAZ+ in5Fu {YxQMKQ=wH"QDY먁AwTF j jٿ ml/uߛ_DsygΜM!kHo" gA7FqtZns;V*M);5V֤&mnKc/N^5㻤3OJ]G-_v;~>0GLC-Jz2_*h%L$)~\^]!>=!'7sjQqH-9R̪ܞ(gY ѳ@@@ ,NormalCJ_HaJmH sH tH :@: G#A Heading 1$@&5\DA@D Default Paragraph FontRi@R  Table Normal4 l4a (k(No ListZC@Z G#ABody Text Indentdh`OJPJQJaJ2B@2 G#A Body Textx< @< G#AFooter  !CJaJ0U@!0 \ Hyperlink>*B*:>@2: SRTitle$a$ 5>*CJ\<O1B< SR Header Info >*CJ\6O1R6 SR Section TitleD@bD 5X Normal Indent$`a$ROrR MCj WW-Plain Text*$CJOJQJaJnHtH<P@<  Body Text 2 dx.)@. S Page Numberj@j cK Table Grid7:V0B^@B L{ Normal (Web)dd[$\$@O@  content157>*S*Y(\ph "',1"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHJKLn #6DRUWw#&9GUhvǶ       /0123456789 :!;"<#=$>%?&@'A(B)C*D+E,F-G.H/I0J1K2L3M4N5O:[;Z<Y=X>W?V@UVTjiUR D EFGHIJKLMN6POQRSPQCSTWXYZ [!\"]#^$_%`&a'b(c)d*e+f,g-h.j/gfedcba`_[ZYXTSRQONMJIHDCBA=<;:8763/.-,(9\ "',1"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHJKLn #6DRUWw#&9GUhv  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Ƕ z z z z z z z z z z z z z z z z z z z z z z z O$/o: ?K"YfjpwyaIԛ ;ǶE/  ( C ( '7"FFG"z{45UV`a T U    ! 4 E G H [ l n o | }    % 6 9 : G H Z h k l ~ =>!Ofg12+,tu)*z{Xlm3fs,-PQ""@###$7$O$P$$$h%%%5&6&&&j(k(((((m*n*m+n++++++,,",&,*,7,S,T,_,d,i,z,,,,,,,,,,----".H.o.../O/y///:0d000$1N1p1q11112$202Q2r2~2222222222222 3 33#303>3K3L3M3S444455556E6l6667/7V77778A8`8a8880:1:o:::::;;<`=>e> ? ?-?.?\@]@o@@@ A^AAABBpDqDKFLFRFGGGGoHpH\I]IIcJdJJJAKKKKKOOOOPPzQ{QQRRRRRRR/T0T1TMTNTTTwUxUUUVJVrVVV1X2XPXQX[[E[q[[[[!\7\8\\\V]W]^^aa)b*bccddffDfmfnffffTgUggg h:h;hDhEhhhifiii-j.jjjkk.k l l5lmmmoooop=pQpuppp q8q9qqq@uuuu;vSvTvwwpwww=x>xxxxxKyyyyyyzzz{{{{{Q|||M~N~O~`~~~~~~  ()5D]^g01>KklxÀ؀ـ߀NOP_`a 1STZ}~ԅՅIJW؆ن./=GHOɈʈψ É>?QRSXxyڋۋ܋HApؑۑ67B’ʒ67<ST`~wx5Jї#>k˘"]̙ԛ՛,X|ǜ7r͝ Dj۞<Z[ܟݟҠ:;Pcdȡ١#BSfm|}'ʣˣե֥ fgpy $0BCMWapqrêĪЪ3456789:]këīܫݫ#$@ABìĬŬƬabcdersIhi78[\stuɯʯ˯ '()CDEcdeʰ &'KLjk45OPjkвѲ  $%)*Gx ENfgдѴ ./<=JKMNOp}~͵ε۵ܵ 12?@MN`ano|}¶Ķȶ0^0^0^0^0^0^0^0ʀ0ʀ0ʀ0^0^0^0^0^0^ 0^ 0^ 0^0^0^0^0^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*b^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0* ^ 0*^ 0*^ 0*^ 0*{^0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0* ^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^0*^ 0*^ 0*^ 0*H)^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*P^ 0*^ 0*^ 0*^ 0*ca^ 0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^ 0*^ 0*^ 0*^ 0*^ 0*"^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^ 0*^ 0*^ 0*^ 0*^ 0*^0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*8$^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^ 0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0*^0^0^0^0:^0:^ 0:^ 0:^ 0:^ 0:^ 0:^0:_0:_0:_0:_0:_ 0:_ 0:_ 0:_ 0:_ 0:_ 0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0:_0_0_0_0`h_0`h_ 0`h_ 0`h_ 0`h_ 0`h_ 0`h_00000000000000000000000000000000000000p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p`0p` 0p` 0t` 0p` 0p` 0t` 0p`0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p`0p` 0p` 0t` 0p`0p` 0p` 0t` 0p`0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`` 0p`` 0t`` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p`0p`0p`0p`0p`0p`0p`0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p` 0p` 0t` 0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0                         ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 < : ; = > ? @ A B C D E F G H I J K L M N O P p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0p`0u0`0p0I0o   X X *@XXx1@̀zDI 0o0ȃ0T0а0p0pp0pX 0p0pX 0pX 0pd0pd0pd0p0pp0pd0pd0p0pp0pd0pd0p0pp0pd0p0pp0pd0p0pp0pd0pd0p0pp0pd0pd0p0pp0pd0p0pp0pd0pd0pd0p0pp0pd0p0p '''*]s]#.8@OOTZbmvsǁʩ`FǼafz|  Gn|9Gk!3!+2S222"4~88 9K9;@qJV2^l.p@{ք (]Ņ0k؆N S}ԋI،.GɎ >Rxڑ66S~w˞ۤ0ıI˵K$A<Ǽbdeghijklmnopqrstuvwxy{}~Ƽcy/zzǶX !#*!!1JL::?R$" %krmbddR${ܳfO_enN{R$ߢϨ` HeK9@)d)(  $  %. 3  s"*? `  c $X99? %.4   % 4  B j  4  B : 4  n j   4  n  : 4   j 0  4   0 : 4   j \  4   \ : 4   j  4   : 4  j  4   : 4  Z]  4  Z - 4  ]  4    - 4   ] H! 4   H!- 4   !] t" 4   ! t"- 4    #] # 4    # #- 4   6$] $ 4  6$ $- 4  %4  B  -4  B  c4  n  -4  n  c4   0 -4   0 c4   \ -4   \ c4   -4   c4  -4  c4  Z!4  ZV4   !4   V4    H!!4 !  H!V4 " !t"!4 # !t"V4 $  ##!4 %  ##V4 & 6$$!4 ' 6$$VT ( # ( %%  4 )  n W4 * W4 + dh , 3 ,"`B  %  h - 3 -"` v%  h . 3 ."`83 T / # /%  4 0  n M4 1 M4 2 dh 3 3 3"`83 :Z %R 4 x%4 5 Ndh 6 3 6"`B N  h 7 3 7"` Nv h 8 3 8"`83N 4 9 Gdh : 3 :"`B G { h ; 3 ;"` G{ h < 3 <"`83G T = # =N%R 4 >  n 4 ? 4 @ dh A 3 A"`B  R h B 3 B"` vR h C 3 C"`83 T D # DG%I 4 E  n {4 F {4 G dh H 3 H"`B  I h I 3 I"` I h J 3 J"`83 Tt %R K# #" "%%4 L Ndh M 3 M"`B N  h N 3 N"` Nv h O 3 O"`83N 4 P Gdh Q 3 ~Q"`B G { ~h R 3 }R"` G{ }h S 3 {S"`83G {T T # zTN%R z4 U  n 4 V 4 W dh X 3 yX"`B  R yh Y 3 xY"` vR xh Z 3 wZ"`83 wT [ # v[G%I v4 \  n {4 ] {4 ^ dh _ 3 u_"`B  I uh ` 3 t`"` I th a 3 sa"`83 sh b 3 rb"`8 @9  rh c 3 qc"`8q@ qh d 3 pd"`.6$ pn e C oe"`.N6$a oh f 3 nf"`.#b%$ nN g  mB \*_- mZB h S D ( \*b i # C"` o Ch j 3 Bj"`B o  BH   #   V   # "`  V   # "`  V   # "`  V  # "`  V  # "` V  # "` V  # "` V  # "`  V  # "`  B   8  8B   9  9B S  ? ? ?Ƕ Lt"Xt  H t ct Pltt T totTtPlttTItLt"t#*t) OLE_LINK1ȶȶ4; jq7;Yeal*5WbFKUY $%),02=ENX_`d )3:;AGQfmntzz;GIPQWsz{:B !!!"4"<"h"p"q"v"# #@#G#H#N#[#g#i#y#############$ $ $$$#$7$>$?$E$%%h%o%p%v%%%%%%%%%%%%%%%%&&& &$&&&&&''''H(T(,)1)"*)*f*k*---------. . . ..)./.O.U.v.|......./!/$/&/V/b////////0 0 0A0M0k0w000000000+171U1a11111[4c4s4z44455 66666$6L6R6s6y6666666667767<7]7c7s7777777778!8'8H8N8:;>>>>CAHA}BBBBDDkEmEFFkJqJsJuJJJJJJ KKKHKWKaKcKKKKKKKKKQQQQQQQQ RR"R$RYRhRrRtRRRRRRRRRSSUUUUUUUUV'VQV`VyVVYY!['[L[R[W[Y[x[~[[[[[[[[\ \ \(\.\__B`N`aaaa bb[dcdddff&f-f`fbfffllmmmmunzngolooooooop p ppppp"p*p3p=pDpEpIpQpXpup|p}ppppppppppppppppp qqq q'q(q.qtqyqqq rr>rCrrrss=tEtyttttttJuRuuuuuuuuuuuuuuuuvvvvv;vBvCvIvwwpwwwxw~wwwwwwwwwwwwwwxx xxx(x,xxxxxyyKyRyaygypyvy|"|%.‰DF 3?ގox~ݐ79’Ēqu%+QW\^EKrx|~Ҙؘ)/35djәٙIOXcQ\ܛ 39@BCI_eΜԜ>DHJyԝڝKQqw#CIwSZԠ֠ʡ̡ۡߡ*.DFUY`kp{5B}AHƩrDP}itLS <KWfrѲQXɳгx|ƴʴߴȶ7;OW%X`3;fnIQs{@#H#####$ $7$?$$$h%p%%%%%&&------".).H.O.o.v.....//O/V/y//////:0A0d0k00000$1+1N1U13344556 6E6L6l6s6666677/767V7]77777778!8A8H86BMBBBdJkJJJJJAKHKKKKK{QQQQR RRRYRRRRRxUUUUUUVVJVQVrVyV[![E[L[q[x[[[[[[[!\(\aa`fbfff}oop p=pEpup}ppppp q(quuuuuv;vCvvvpwxwwwwxxx||ǂȂς}~"#ox%JQ>Ekr˘Ҙ")]d̙ә՛ܛ ,3X_|ǜΜ7>ry͝ԝ DKjq۞<C]`ۡߡ%(UYhlosڢޢЪ2BI)+MOҮԮΰа5<PWkrѲȶ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::N9 |[ /PUa|jD 0^,1H)'A;^0Y~"4 G^>#1^vswa`r a+kc:tl0taGZyx/gh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHhh^h`o(. 88^8`hH. L^`LhH.   ^ `hH.   ^ `hH. xLx^x`LhH. HH^H`hH. ^`hH. L^`LhH.h^`OJQJo(hHhpp^p`OJQJ^Jo(hHoh@ @ ^@ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHhPP^P`OJQJ^Jo(hHoh  ^ `OJQJo(hHh^`OJQJo(hH^`OJQJ^Jo(hHopp^p`OJQJo(hH@ @ ^@ `OJQJo(hH^`OJQJ^Jo(hHo^`OJQJo(hH^`OJQJo(hH^`OJQJ^Jo(hHoPP^P`OJQJo(hHh^`.h^`.hpLp^p`L.h@ @ ^@ `.h^`.hL^`L.h^`.h^`.hPLP^P`L.h^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^'XThis lab involves using software network analyzers to capture packets from a network TA computerNormalDoug Blough User5Microsoft Word 11.5.0@V@!@5ï@6q- ՜.+,D՜.+,H hp  )'ECE 4110 & 4893:K* UThis lab involves using software network analyzers to capture packets from a network Title( 8@ _PID_HLINKS'AzzShttp://www.cisco.com/univercd/cc/td/doc/product/software/ios120/12cgcr/rbkixol.htm FMicrosoft Word DocumentNB6WWord.Document.8`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hH^`o(. ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.^`o(. ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.^`5o(. ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.^`OJQJo(hH^`OJQJ^Jo(hHopp^p`OJQJo(hH@ @ ^@ `OJQJo(hH^`OJQJ^Jo(hHo^`OJQJo(hH^`OJQJo(hH^`OJQJ^Jo(hHoPP^P`OJQJo(hHhh^h`o(-h^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hH^`5CJaJo(. ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.h^`OJQJo(hH^`OJQJ^Jo(hHopp^p`OJQJo(hH@ @ ^@ `OJQJo(hH^`OJQJ^Jo(hHo^`OJQJo(hH^`OJQJo(hH^`OJQJ^Jo(hHoPP^P`OJQJo(hH^`o(. ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.D 0wa`/tl#1^a|j1'A; GZy aYkcN9 G^WW8Num42                                                               }                                                    45 T U    ! 4 E G H [ l n o | }    % 6 9 : G H Z h k l ~ g,)*z{j(+++++,,",&,*,7,S,T,_,d,i,z,,,,,,,,,12$202Q2r2~2222222222222 3 33#303>3K3L36E6k6l6667.7/7i777778@8_8GAKR;hjkp q{{{Q||N~O~~~~~~  ()D]^g01KklÀ؀ـ߀NO 1STZ}~ԅՅIJW؆ن./=GHOɈʈψ É>?QRSXxyڋۋۑ67B’ʒ67<ST`~wx]\Ѳȶ!0!0%aa%%0a%%0aaaayBSe@mddǶ@ @UnknownGTimes New Roman5Symbol3 Arial3Times? Courier New;Wingdings"qhs l&ۚK:9MD!>4d*$ 3qXZ ?G#ATThis lab involves using software network analyzers to capture packets from a network TA computerDoug Blough UserH          CompObjX