OpenCores
URL https://opencores.org/ocsvn/hpc-16/hpc-16/trunk

Subversion Repositories hpc-16

[/] [hpc-16/] [trunk/] [common/] [docs/] [HPC-16_architecture.doc] - Diff between revs 2 and 15

Only display areas with differences | Details | Blame | View Log

Rev 2 Rev 15
ࡱ>  FHABCDE5@ Κbjbj22   r0XX$:PVZL:8n "BBBB*l|$RBb^BB^^BBƗƗƗ^BBƗ^Ɨ&Ɨ0B`t`jG$08kʔH::tƗʑ֑:$!^'D0Wd*":^'W

HPC-16: Architectural Issues




M. Umair Siddiqui
Change Log
DateDescriptionAuthorsSep 03, 2005First ReleaseM. Umair SiddiquiTable of Contents
 TOC \o "1-3" \h \z \u  HYPERLINK \l "_Toc113479284" HPC-16: Architectural Issues	 PAGEREF _Toc113479284 \h i
 HYPERLINK \l "_Toc113479285" Change Log	 PAGEREF _Toc113479285 \h ii
 HYPERLINK \l "_Toc113479286" Table of Contents	 PAGEREF _Toc113479286 \h iii
 HYPERLINK \l "_Toc113479287" 1	Introduction	 PAGEREF _Toc113479287 \h 1
 HYPERLINK \l "_Toc113479288" 2	Basic Execution Environment	 PAGEREF _Toc113479288 \h 1
 HYPERLINK \l "_Toc113479289" 2.1	Memory Organization	 PAGEREF _Toc113479289 \h 1
 HYPERLINK \l "_Toc113479290" 2.2	Program Execution Registers	 PAGEREF _Toc113479290 \h 1
 HYPERLINK \l "_Toc113479291" 2.2.1	General Purpose Registers	 PAGEREF _Toc113479291 \h 1
 HYPERLINK \l "_Toc113479292" 2.2.2	FLAGS Register	 PAGEREF _Toc113479292 \h 2
 HYPERLINK \l "_Toc113479293" 2.2.3	Program Counter	 PAGEREF _Toc113479293 \h 3
 HYPERLINK \l "_Toc113479294" 2.2.4	Stack Pointer	 PAGEREF _Toc113479294 \h 3
 HYPERLINK \l "_Toc113479295" 3	Operand Addressing	 PAGEREF _Toc113479295 \h 3
 HYPERLINK \l "_Toc113479296" 3.1	Immediate Operands	 PAGEREF _Toc113479296 \h 3
 HYPERLINK \l "_Toc113479297" 3.2	Register Operands	 PAGEREF _Toc113479297 \h 3
 HYPERLINK \l "_Toc113479298" 3.3	Memory Operands	 PAGEREF _Toc113479298 \h 4
 HYPERLINK \l "_Toc113479299" 4	Data Types	 PAGEREF _Toc113479299 \h 4
 HYPERLINK \l "_Toc113479300" 4.1	Numeric Data types	 PAGEREF _Toc113479300 \h 4
 HYPERLINK \l "_Toc113479301" 4.2	Pointer Data Types	 PAGEREF _Toc113479301 \h 4
 HYPERLINK \l "_Toc113479302" 5	Alignment of Words	 PAGEREF _Toc113479302 \h 4
 HYPERLINK \l "_Toc113479303" 6	Procedure Calls	 PAGEREF _Toc113479303 \h 5
 HYPERLINK \l "_Toc113479304" 6.1	Stack	 PAGEREF _Toc113479304 \h 5
 HYPERLINK \l "_Toc113479305" 6.2	Call and Ret instructions	 PAGEREF _Toc113479305 \h 6
 HYPERLINK \l "_Toc113479306" 6.3	Procedure Linking Information	 PAGEREF _Toc113479306 \h 6
 HYPERLINK \l "_Toc113479307" 7	Interrupts and Exceptions	 PAGEREF _Toc113479307 \h 7
 HYPERLINK \l "_Toc113479308" 7.1	Invalid Instruction	 PAGEREF _Toc113479308 \h 9
 HYPERLINK \l "_Toc113479309" 7.2	Alignment Exception	 PAGEREF _Toc113479309 \h 9
 HYPERLINK \l "_Toc113479310" 7.3	Stack Error Exception	 PAGEREF _Toc113479310 \h 9
 HYPERLINK \l "_Toc113479311" 7.4	Double Fault	 PAGEREF _Toc113479311 \h 9
 HYPERLINK \l "_Toc113479312" 7.5	Hardware interrupt	 PAGEREF _Toc113479312 \h 10
 HYPERLINK \l "_Toc113479313" 7.6	Software Interrupt	 PAGEREF _Toc113479313 \h 10
 HYPERLINK \l "_Toc113479314" 8	HPC-16 Instructions	 PAGEREF _Toc113479314 \h 10
 HYPERLINK \l "_Toc113479315" 8.1	Data Transfer Instructions	 PAGEREF _Toc113479315 \h 10
 HYPERLINK \l "_Toc113479316" 8.2	Binary Arithmetic Instructions	 PAGEREF _Toc113479316 \h 11
 HYPERLINK \l "_Toc113479317" 8.3	Logical Instructions	 PAGEREF _Toc113479317 \h 12
 HYPERLINK \l "_Toc113479318" 8.4	Shift and Rotate Instructions	 PAGEREF _Toc113479318 \h 12
 HYPERLINK \l "_Toc113479319" 8.5	Control Transfer Instructions	 PAGEREF _Toc113479319 \h 13
 HYPERLINK \l "_Toc113479320" 8.6	Flag Control Instructions	 PAGEREF _Toc113479320 \h 15
 HYPERLINK \l "_Toc113479321" 8.7	Miscellaneous Instructions	 PAGEREF _Toc113479321 \h 16

1	Introduction
In this document, architectural issues related to HPC-16 series are discussed. The architectural issues are mainly concerned with structure and behavior of the processor as seen by the programmer. It includes execution environment, addressing modes, instruction set and other programming conventions. The architectural issues usually remain constant through out all implementations.
2	Basic Execution Environment
Any program running on an HPC-16 processor is given a set of resources for executing instructions and for storing code, data, and state information. These resources make up the basic execution environment. This basic execution environment is used jointly by the application programs and the operating-system or executive running on the processor. 
Address Space: Any task or program running on HPC-16 processor can address a linear address space of up to 64 Kbytes.
Basic program execution registers: The 16 general-purpose registers, the FLAGS register, SP, and the PC register comprise a basic execution environment in which to execute Hpc-16 ISA instructions.
Stack: To support procedure or subroutine calls and the passing of parameters between procedures or subroutines, a stack and stack management resources are included in the execution environment. The stack is located in memory.


Figure: 2.1 - Basic execution environment
2.1	Memory Organization
Physical memory is organized as a sequence of 8-bit bytes. Each byte is assigned a unique address, called a physical address. The physical address space ranges from zero to a maximum of 216 - 1.
2.2	Program Execution Registers
The processor provides 16 basic program execution registers for use in general system and application programming. Shown in Figure 4-1, these registers can be grouped as follows:
2.2.1	General Purpose Registers
There are sixteen 16-bit general purpose registers R0 - R15 present in processor. These registers R0 - R15 are provided for holding the following items:
Operands for logical and arithmetic operations
Operands for address calculations
Memory pointers
2.2.2	FLAGS Register
The 5-bit FLAGS register contains a group of status flags, and a flag. Following initialization of the processor (by asserting the RESET pin), the state of the FLAGS register is 000002. Some of the flags in the FLAGS register can be modified directly, using special-purpose instructions. There are no instructions that allow the whole register to be examined or modified directly. The PUSHF and POPF instructions can be used to move groups of flags to and from the procedure stack. After the contents of the FLAGS register have been transferred to the procedure stack, the flags can be examined and modified.

The bits (4  1) are status flags, indicate the results of arithmetic instructions, such as the ADD, SUB, ADC and SBB instructions. The status flag functions are:
ZF (bit 1) Zero flag: Set if the result is zero; cleared otherwise.

SF (bit 2) Sign flag: Set equal to the most-significant bit of the result, which is the sign bit of a signed integer. (0 indicates a positive value and 1 indicates a negative value.)

OF (bit 3) Overflow flag: Set if the integer result is too large a positive number or too small a negative number (excluding the sign-bit) to fit in the destination operand; cleared otherwise. This flag indicates an overflow condition for signed-integer (twos complement) arithmetic. 

CF (bit 4) Carry flag: Set if an arithmetic operation generates a carry or a borrow out of the most-significant bit of the result; cleared otherwise. This flag indicates an overflow condition for unsigned-integer arithmetic. It is also used in multiple-precision arithmetic.

Of these status flags, only the CF flag can be modified directly, using the STC, CLC, and CMC instructions. The status flags allow a single arithmetic operation to produce results for two different data types: unsigned integers and signed integers. If the result of an arithmetic operation is treated as an unsigned integer, the CF flag indicates an out-of-range condition (carry or borrow); if treated as a signed integer (twos complement number), the OF flag indicates a carry or borrow. The SF flag indicates the sign of a signed integer. The ZF flag indicates either a signed- or an unsigned integer zero. When performing multiple-precision arithmetic on integers, the CF flag is used in conjunction with add with carry (ADC) and subtract with borrow (SBB) instructions to propagate a carry or borrow from one computation to the next. The condition instructions Jcc (jump on condition code cc) and INTO (interrupt on overflow) use one or more of the status flags as condition codes and test them for branch. 

There is only one system flag: IF (bit 0) Interrupt enable flag. It controls the response of the processor to external interrupt requests which are maskable though software. Set to respond to maskable interrupts; cleared to inhibit maskable interrupts. 
When a interrupt or exception is raised, the processor automatically saves the state of the FLAGS register on the procedure stack.
2.2.3 Program Counter
The program counter (PC) register contains the address in memory for the next instruction to be executed. It is advanced from one instruction boundary to the next in straight-line code or it is moved ahead or backwards by a number of instructions when executing JMP, Jcc, CALL, RET, and IRET instructions.

The PC register cannot be accessed directly by software; it is controlled implicitly by control transfer instructions (such as JMP, Jcc, CALL, and RET), interrupts, and exceptions. The only way to read the PC register is to execute a CALL instruction and then read the value of the return instruction pointer from the procedure stack. The PC register can be loaded indirectly by modifying the value of a return instruction pointer on the procedure stack and executing a return instruction (RET or IRET).
2.2.4        Stack Pointer
The stack pointer (SP) register contain the address of top of stack. The processor use stack for pushing PC during execution of CALL instruction, it also uses stack for processing interrupts (both hardware and software) and exception.
3      Operand Addressing
HPC-16 machine-instructions act on zero or more operands. Some operands are specified explicitly and others are implicit. The data for a source operand can be located in: (1) The instruction itself (an immediate operand), (2) A register and (3) A memory location. When an instruction returns data to a destination operand, it can be returned to: (1) A register and (2) A memory location.
3.1      Immediate Operands
Some instructions use data encoded in the instruction itself as a source operand. These operands are called immediate operands. All arithmetic instructions allow the source operand to be an immediate value. The maximum value allowed for an immediate operand is the maximum value of an unsigned 16-bit word integer.
3.2       Register Operands
Register operands (as source or destination) can be any of the following registers, depending on the instruction being executed:
16-bit general-purpose registers (R0 - R15)
Stack pointer (SP)
FLAGS register
3.3    Memory Operands
Source and destination operands in memory are referenced by means of a physical address. The memory address can be specified using base (value in general purpose register or SP) and base/index + 16-bit signed displacement. The resulting address is called an effective address. Since HPC-16 is load-store RISC, it only uses memory operands either for loading data into register or storing the data in register to memory.

A base alone represents an indirect address of the operand. Since the value in the base register can change, it can be used for dynamic storage of variables and data structures.   

A base/index register and a displacement can be used to access a field of a record/array; the base register holds the address of the beginning of the record/array, while the displacement is static offset to the field. Another way to use this addressing mode is that: displacement locates the beginning of the array, and index register holds the subscript of desired array element.
4       Data Types
The fundamental data types of the HPC-16 architecture are bytes, words. A byte is eight bits; a word is 2 bytes (16 bits). A subset of the HPC-16 architecture instructions operates on these fundamental data types without any additional operand typing. The HPC-16 is big-endian machine, the high byte (bits 15 through 8) of word occupies the low address in memory and that address is also the address of the operand.
4.1  Numeric Data types
The HPC-16 architecture defines two types of integers: unsigned and signed. Unsigned integers are ordinary binary values ranging from 0 to the maximum positive number that can be encoded in the selected operand size. Signed integers are twos complement binary values that can be used to represent both positive and negative integer values. Some integer instructions (such as the ADD, SUB instructions) operate on either unsigned or signed integer operands. 
4.2       Pointer Data Types
Pointers are addresses of locations in memory. Since the addressable memory is 64K, therefore pointers are of 16-bit size.
5 Alignment of Words
16-bit words need to be aligned in memory on even boundaries (addresses divisible by two). Access to unaligned words result in alignment exception. However there is no alignment restriction on 8-bit bytes. 


Figure: 5.1  Byte and Word Alignment
6    Procedure Calls
The processor supports procedure calls using "CALL" and "RET" instructions. This procedure call mechanism use the procedure stack, commonly referred to simply as "the stack", to save the state of the calling procedure, and store local variables for the currently executing procedure.
6.1 Stack
The stack is a contiguous array of memory locations. The stack can be located any where in the linear address space for the program and can be up to 64Kbytes long (complete address space).


Figure: 6.1  Stack

Items are placed on the stack using the push instruction and removed from the stack using the POP instruction. When an item is placed onto stack, the processor decrements the SP (or sp, we will use both interchangeably) register, then writes the item at the new top of stack. When an item is popped off the stack, the processor reads the item from the top of the stack, and then increments the SP register. In this manner, the stack grows down in memory (towards lesser addresses) when items are pushed on the stack and shrinks up (towards greater addresses) when the items are popped from the stack.

To set the stack, the program or operating system/executive must do the following:
Reserve the area for stack
Load the stack pointer for the stack into the SP register using a MOV or LI instruction.   

The stack pointer for a stack segment should be aligned on 16-bit (word). The processor checks the stack pointer alignment. Misaligning the stack pointer will result in stack error exception.
6.2    Call and Ret instructions
When executing a call, the processor does the following:
Pushes the current value of the PC register on the stack.
Loads the address of the called procedure in the PC register.
Begins execution of the called procedure.

When executing a return, the processor performs these actions:
Pops the top-of-stack value (the return instruction pointer) into the PC register.
Resumes execution of the calling procedure.
6.3 Procedure Linking Information
The processor provides two pointers for linking of procedures: the stack-frame base pointer and the return instruction pointer. These pointers permit reliable and coherent linking of procedures.

Stack-frame base pointer: The stack is typically divided into frames. Each stack frame can then contain local variables, parameters to be passed to another procedure, and procedure linking information. The stack-frame base pointer (contained in bp/fp register, the software can use general purpose register R15 as bp/fp) identifies a fixed reference point within the stack frame for the called procedure. To use the stack-frame base pointer, the called procedure typically copies the contents of the SP register into the bp/fp register prior to pushing any local variables on the stack. The stack-frame base pointer then permits easy access to data structures passed on the stack, to the return instruction pointer, and to local variables added to the stack by the called procedure.

Return instruction pointer: Prior to branching to the first instruction of the called procedure, the CALL instruction pushes the address in the PC register onto the current stack. This address is then called the return-instruction pointer and it points to the instruction where execution of the calling procedure should resume following a return from the called procedure. Upon returning from a called procedure, the RET instruction pops the return-instruction pointer from the stack back into the PC register. Execution of the calling procedure then resumes.

The processor does not keep track of the location of the return-instruction pointer. It is thus up to the programmer to insure that stack pointer is pointing to the return-instruction pointer on the stack, prior to issuing a RET instruction. A common way to reset the stack pointer to the point to the return-instruction pointer is to move the contents of the BP register into the sp register. If the bp/fp register is loaded with the stack pointer immediately following a procedure call, it should point to the return-instruction pointer on the stack.

The processor does not require that the return instruction pointer point back to the calling procedure. Prior to executing the RET instruction; the return-instruction pointer can be manipulated in software to point to any address in the memory. Performing such an operation, however, should be undertaken very cautiously, using only well defined code entry points.
7     Interrupts and Exceptions
The processor provides two mechanisms for interrupting program execution, interrupts and exceptions:
An interrupt is an asynchronous event that is typically triggered by an I/O device.
An exception is a synchronous event that is generated when the processor detects one or more predefined conditions while executing an instruction.

The processor responds to interrupts and exceptions in essentially the same way. When an interrupt or exception is signaled, the processor halts execution of the current program and switches to a handler procedure that has been written specifically to handle the interrupt or exception condition. The processor responds to an interrupt or exception with an implicit call to an interrupt or exception handler. The processor uses the interrupt or exception vector number as an index into an interrupt vector table. There are total 16 interrupt which separated by 8-bytes, the application can write exception/interrupt handler procedures in these locations or may jump to handler located at other memory locations.

The HPC-16 Architecture defines 5 predefined interrupts and exceptions and 11 user defined interrupts, which are associated with entries in the IVT. Each interrupt and exception in the IVT is identified with a number, called a vector. Table 4.1 lists the interrupts and exceptions with entries in the IVT and their respective vector numbers. Vectors 0 through 4 are the predefined exceptions, and vectors 5 through 15 are the user-defined interrupts, called maskable interrupts.

When the processor detects an interrupt or exception, it executes an implicit call to a handler procedure. The processor performs following actions when calling an interrupt or exception handler:

Pushes the current contents of the FLAGS, and PC registers respectively on the stack.
Loads the new program counter value with 8 * vector no.
Clears the IF flag in the FLAGS register
Begins execution of the handler procedure

A return from an interrupt or exception handler is initiated with the IRET instruction. The IRET instruction is similar to the far RET instruction, except that it also restores the contents of the FLAGS register for the interrupted procedure.

Restores the PC registers to their values prior to the interrupt or exception.
Restores the FLAGS register
Increments the stack pointer appropriately
Resumes execution of the interrupted procedure

Table: 7.1  Interrupt Vector Locations 
Vector No.DescriptionSourceMemory Location,0OverflowINTO instruction0000h1Invalid instructionReserved Opcode0008h2Alignment errorAny memory reference0010h3Stack ErrorStack misalignment0018h4Double faultStack misalignment while executing maskable interrupt or during invalid instruction, alignment error 0020h5  15Maskable InterruptsExternal interrupt from INTR pin or INT n instruction0028h - 0078h
7.1        Invalid Instruction
This exception is raise when instruction contains invaild/reserved opcode, subop fields.
7.2        Alignment Exception
All the 16-bit word data or instruction, should be aligned on even address (i.e contain zero in least significant bit). Accessing misaligned word will cause this interrupt. However this instruction will not be raised, in case of lbzx/lbsx/sb instruction. 
7.3 Stack Error Exception
If the stack contains odd address, for this exception CPU behavior is changed, CPU internally save offending SP content, then SP is asynchronously set to predefined value (0x0000).  CPU pushes old SP value, FLAGS and PC and jump to Stack Exception vector location.


Figure: 7.1  Stack Error Exception
7.4       Double Fault
It may also possible, that some interrupt or exception (other than stack error) occur. Now processor needs to push flags and PC but if at this point, SP contain invalid value then this exception will occur. In this exception like Stack error, CPU internally saves the invalid contents of SP then SP is asynchronously preset to predefined value (0x0000). CPU pushes old interrupt no, old SP value, FLAGS and PC, then jump to Double Fault Exception vector location.


Figure: 7.2  Double Fault
7.5  Hardware interrupt
The hardware interrupt is raised by asserting INTR_I pin of CPU. The INTR_I generating source is required to assert it continuously until it is not recognized. The CPU first inspect the IF status (i.e can be masked by software by clearing IF) before checking INTR_I. Before pushing the FLAGS and PC, it generates a special read cycle to get the vector no. from slave device. In this read cycle IACK_CYC_O pin is asserted by CPU to indicate that it is special read cycle. The slave is suppose to put 4-bit interrupt number on databus(11..8), and deassert the INTR_I pin. 
7.6     Software Interrupt
The software interrupt is generated by INT n and INTO instructions. The IF is not checked. The INT n and INTO allow a program or task to explicitly call an interrupt or exception handler. The INT n instruction uses an interrupt vector as an argument, which allows a program to call any interrupt handler. 

The INTO instruction explicitly calls the overflow exception handler if the overflow flag (OF) in the FLAGS register is set. The OF flag indicates overflow on arithmetic instructions, but it does not automatically raise an overflow exception. An overflow exception can only be raised explicitly in either of the following ways:
Execute the INTO instruction.
Test the OF flag and execute the INT n instruction with an argument of 0 (the vector number of the overflow exception) if the flag is set.
8        HPC-16 Instructions
HPC-16 instruction set include several instructions, which shown in Appendix A. These instructions can divided into seven major categories, which are given below:
8.1      Data Transfer Instructions
The data transfer instructions move bytes, words both between memory and the processors registers and between registers. For the purpose of this discussion, these instructions are divided into subordinate subgroups that provide for:
General data movement
Stack manipulation

General Data Movement Instructions: The MOV (move) instruction transfer data between general-purpose registers (GPRs) and SP.  The LI (load immediate) load constant 16-bit data into GPR and SP. The LD instruction load data from memory to GPR and ST instruction store data from GPR into memory. Separate mnemonics are provided for byte loading and storing, all the byte operands loaded from memory: LBSX sign extends the byte operand and load the result into GPR while LBZX zero extends the byte operand and then load result into GPR. SB stores the lower byte of GPR into memory. 

Stack manipulation Instructions: The PUSH instruction decrements the stack pointer (contained in the SP register), then copies the source operand to the top of stack. It operates on GPR operands only. The POP instruction copies the word at the current top of stack (indicated by the SP register) to the location specified with the destination operand. It then increments the SP register to point to the new top of stack. The destination operand specifies a GPR only.  
8.2    Binary Arithmetic Instructions
Binary arithmetic instructions operate on 16-bit numeric data encoded as signed or unsigned binary integers. For the purpose of this discussion, these instructions are divided subordinate subgroups of instructions that:
Add and subtract
Increment and decrement
Compare  
Add and Subtract: The ADD (add integers), ADC (add integers with carry), SUB (subtract integers), and SBB (subtract integers with borrow) instructions perform addition and subtraction operations on signed or unsigned integer operands. The operands can be two GPRs, GPR-immediate or SP-immediate. The ADD instruction computes the sum of two integer operands. The ADC instruction computes the sum of two integer operands, plus 1 if the CF flag is set. This instruction is used to propagate a carry when adding numbers in stages. The SUB instruction computes the difference of two integer operands. The SBB instruction computes the difference of two integer operands, minus 1 if the CF flag is set. This instruction is used to propagate a borrow when subtracting numbers in stages. SP related instructions support only SUB and ADD operation. 

Increment and Decrement Instructions: The INC (increment) and DEC (decrement) instructions add 1 to or subtract 1 from an unsigned integer operand (GPR) respectively, without affecting CF flag. A primary use of these instructions is for implementing counters.

Arithmetic Comparison: The CMP (compare) instruction computes the difference between two integer operands (two GPRs or GPR-immediate) and updates the OF, SF, ZF, AF, PF, and CF flags according to the result. The source operands are not modified, nor is the result saved. The CMP instruction is commonly used in conjunction with a Jcc (conditional jump) instruction.
8.3   Logical Instructions
The logical instructions AND, OR, XOR (exclusive or), and NOT perform the standard Boolean operations for which they are named. The AND, OR, and XOR instructions require two operands (two GPRs or GPR-immediate); the NOT instruction operates on a single operand (GPR). The TEST instruction performs a logical AND of two operands and sets the SF and ZF flags according to the results. The flags can then be tested by the conditional jump instructions. The TEST instruction differs from the AND instruction in that it does not alter either of the operands.
8.4      Shift and Rotate Instructions
The shift and rotate instructions rearrange the bits within an operand. For the purpose of this discussion, these instructions are further divided subordinate subgroups of instructions that:
Shift bits
Rotate bits

Shift Instructions: The SAL (shift arithmetic left), SHL (shift logical left), SAR (shift arithmetic right), SHR (shift logical right) instructions perform an arithmetic or logical shift of the bits in a word. The SAL and SHL instructions perform the same operation. They shift the source operand left by from 1 to 15 bit positions. Empty bit positions are cleared. The CF flag is loaded with the last bit shifted out of the operand. The SHR instruction shifts the source operand right by from 1 to 15 bit positions. As with the SHL/SAL instruction, the empty bit positions are cleared and the CF flag is loaded with the last bit shifted out of the operand. The SAR instruction shifts the source operand right by from 1 to 15 bit positions. This instruction differs from the SHR instruction in that it preserves the sign of the source operand by clearing empty bit positions if the operand is positive or setting the empty bits if the operand is negative. Again, the CF flag is loaded with the last bit shifted out of the operand.

Rotate Instructions: The ROL (rotate left), ROR (rotate right), RCL (rotate through carry left) and RCR (rotate through carry right) instructions rotate the bits in the destination operand out of one end and back through the other end. Unlike a shift, no bits are lost during a rotation. The rotate count can range from 0 to 15. The ROL instruction rotates the bits in the operand to the left (toward more significant bit locations). The ROR instruction rotates the operand right (toward less significant bit locations). The RCL instruction rotates the bits in the operand to the left, through the CF flag. This instruction treats the CF flag as a one-bit extension on the upper end of the operand. Each bit that exits from the most significant bit location of the operand moves into the CF flag. At the same time, the bit in the CF flag enters the least significant bit location of the operand. The RCR instruction rotates the bits in the operand to the right through the CF flag. For all the rotate instructions, the CF flag always contains the value of the last bit rotated out of the operand, even if the instruction does not use the CF flag as an extension of the operand. The value of this flag can then be tested by a conditional jump instruction (JC or JNC).
8.5     Control Transfer Instructions
The processor provides both conditional and unconditional control transfer instructions to direct the flow of program execution. Conditional transfers are taken only for specified states of the status flags in the FLAGS register. Unconditional control transfers are always executed. For the purpose of this discussion, these instructions are further divided subordinate subgroups that process:
Unconditional transfers
Conditional transfers
Software interrupts

Unconditional Transfer Instructions: The JMP, CALL and RET instructions transfer program control to another location (destination address) in the instruction stream. The destination can be any where within 64K addressable memory. 

Jump instruction - The JMP (jump) instruction unconditionally transfers program control to a destination instruction. The transfer is one-way; that is, a return address is not saved. A destination operand specifies the address (the instruction pointer) of the destination instruction. The address can be a relative address or an absolute address.

A relative address is a displacement (offset) with respect to the address in the PC register. The destination address is formed by adding the displacement to the address in the PC register. The displacement is specified with a signed integer, present either as part of instruction (11 bit sign extended immediate constant) or present in GPR, allowing jumps either forward or backward in the instruction stream. An absolute address is the physical address of memory. Here, target address is value inside GPR. This value is directly copied into PC register.

Call and return instructions - The CALL (call procedure) and RET (return from procedure) instructions allow a jump from one procedure (or subroutine) to another and a subsequent jump back (return) to the calling procedure. The CALL instruction transfers program control from the current (or calling procedure) to another procedure (the called procedure). To allow a subsequent return to the calling procedure, the CALL instruction saves the current contents of the PC register on the stack before jumping to the called procedure. The PC register (prior to transferring program control) contains the address of the instruction following the CALL instruction. When this address is pushed on the stack, it is referred to as the return instruction pointer or return address. The address of the called procedure (the address of the first instruction in the procedure being jumped to) is specified in a CALL instruction the same way as it is in a JMP instruction. The address can be specified as a relative address or an absolute address. 

The RET instruction transfers program control from the procedure currently being executed (the called procedure) back to the procedure that called it (the calling procedure). Transfer of control is accomplished by copying the return instruction pointer from the stack into the PC register. Program execution then continues with the instruction pointed to by the PC register.

Conditional transfer instructions: The conditional transfer instructions execute jumps that transfer program control to another instruction in the instruction stream if specified conditions are met. The conditions for control transfer are specified with a set of condition codes that define various states of the status flags (CF, ZF, OF and SF) in the FLAGS register. The Jcc (conditional) jump instructions transfer program control to a destination instruction if the conditions specified with the condition code (cc) associated with the instruction are satisfied. If the condition is not satisfied, execution continues with the instruction following the Jcc instruction. As with the JMP instruction, the transfer is one-way; that is, a return address is not saved.

Table: 8.1  Conditional Jump Instructions
Instruction MnemonicsCondition (Flags states)DescriptionUnsigned Conditional JumpsJA/JNBE(CF or ZF) = 0Above/ not below or equalJAE/JNBCF = 0Above or equal/ not belowJB/ JNAECF = 1Below/ not above or equalJBE/ JNA (CF or ZF) = 1Below or equal/ not aboveJCCF = 1CarryJE/JZZF = 1Equal / zeroJNCCF = 0Not carryJNE/ JNZZF = 0Not equal /not zeroSigned Conditional JumpsJG/ JNLE((SF xor OF) or ZF) = 0Greater/ not less or equal JGE/ JNL(SF xor OF) = 0Greater or equal/ not lessJL/JNGE(SF xor OF) = 1Less/ not greater or equal JLE/ JNG((SF xor OF) or ZF) = 1Less or equal / not greaterJNOOF = 0Not OverflowJNSSF = 0Not sign (non-negative)JOOF = 1OverflowJSSF = 1Sign (negative)
The target address is specified in a Jcc instruction as a relative address (7-bit sign extended immediate constant). Table shows the mnemonics for the Jcc instructions and the conditions being tested for each instruction. The condition code mnemonics are appended to the letter "J" to form the mnemonic for a Jcc instruction. The instructions are divided into two groups: unsigned and signed conditional jumps. These groups correspond to the results of operations performed on unsigned and signed integers respectively. Those instructions listed as pairs (for example, JA/JNBE) are alternate names for the same instruction.

Software Interrupt Instructions: The INT n (software interrupt) and INTO (interrupt on overflow) instructions allow a program to explicitly raise a specified interrupt or exception, which in turn causes the handler routine for the interrupt or exception to be called. The INT n instruction can raise any of the processors interrupts or exceptions by encoding the vector number or the interrupt or exception in the instruction. The contents of the FLAGS register are automatically stored on the stack along with the return instruction pointer when the processor services an interrupt. The IRET (return from interrupt) instruction returns program control from an interrupt handler to the interrupted procedure. The IRET instruction performs a similar operation to the RET instruction, except that it also restores the FLAGS register from the stack. The INTO instruction raises the overflow exception if the OF flag is set. If the flag is clear, execution continues without raising the exception. This instruction allows software to access the overflow exception handler explicitly to check for overflow conditions.
8.6        Flag Control Instructions
The Flag Control instructions allow the state of selected flags in the FLAGS register to be read or modified. For the purpose of this discussion, these instructions are further divided subordinate subgroups of instructions that manipulate:
Carry flag
The FLAGS register
Interrupt flag

Carry Flag Instructions: The STC (set carry flag), CLC (clear carry flag), and CMC (complement carry flag) instructions allow the CF flags in the FLAGS register to be modified directly. They are typically used to initialize the CF flag to a known state before an instruction that uses the flag in an operation is executed. They are also used in conjunction with the rotate-with-carry instructions (RCL and RCR).

FLAGS Transfer Instructions: The PUSHF (push flags) and POPF (pop flags) instructions copy the flags in the FLAGS register to and from the stack. The PUSHF pushes the FLAGS register onto the stack. The POPF instruction pops a word from the stack into the FLAGS register. 

Interrupt Flag Instructions: The STI (set interrupt flag) and CTI (clear interrupt flag) instructions allow the interrupt IF flag in the FLAGS register to be modified directly.
8.7      Miscellaneous Instructions
The NOP instruction increments the PC register to point at the next instruction, but affect nothing else. HLT instruction stops further instruction execution, set the interrupt flag and places the processor in a HALTED state. An enabled interrupt or the RESET signal will resume execution. If an interrupt is used to resume execution after a HLT instruction, the saved instruction pointer (PC) points to the instruction following the HLT instruction.
PAGE  


PAGE  20




#&4@AEFQRY[}~趲ncTjheiUmHnHuheimHnHu2jh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu$jh"hei0JUmHnHuh`jh`UhDCJaJh}hiUhiUhiUh#CJaJhLhLCJaJhLCJaJhCCJaJhLhC  !"#5AFRZ $IfgdiUgdL
ࡱ>  FHABCDE5@ Κbjbj22   r0XX$:PVZL:8n "BBBB*l|$RBb^BB^^BBƗƗƗ^BBƗ^Ɨ&Ɨ0B`t`jG$08kʔH::tƗʑ֑:$!^'D0Wd*":^'W

HPC-16: Architectural Issues




M. Umair Siddiqui
Change Log
DateDescriptionAuthorsSep 03, 2005First ReleaseM. Umair SiddiquiTable of Contents
 TOC \o "1-3" \h \z \u  HYPERLINK \l "_Toc113479284" HPC-16: Architectural Issues	 PAGEREF _Toc113479284 \h i
 HYPERLINK \l "_Toc113479285" Change Log	 PAGEREF _Toc113479285 \h ii
 HYPERLINK \l "_Toc113479286" Table of Contents	 PAGEREF _Toc113479286 \h iii
 HYPERLINK \l "_Toc113479287" 1	Introduction	 PAGEREF _Toc113479287 \h 1
 HYPERLINK \l "_Toc113479288" 2	Basic Execution Environment	 PAGEREF _Toc113479288 \h 1
 HYPERLINK \l "_Toc113479289" 2.1	Memory Organization	 PAGEREF _Toc113479289 \h 1
 HYPERLINK \l "_Toc113479290" 2.2	Program Execution Registers	 PAGEREF _Toc113479290 \h 1
 HYPERLINK \l "_Toc113479291" 2.2.1	General Purpose Registers	 PAGEREF _Toc113479291 \h 1
 HYPERLINK \l "_Toc113479292" 2.2.2	FLAGS Register	 PAGEREF _Toc113479292 \h 2
 HYPERLINK \l "_Toc113479293" 2.2.3	Program Counter	 PAGEREF _Toc113479293 \h 3
 HYPERLINK \l "_Toc113479294" 2.2.4	Stack Pointer	 PAGEREF _Toc113479294 \h 3
 HYPERLINK \l "_Toc113479295" 3	Operand Addressing	 PAGEREF _Toc113479295 \h 3
 HYPERLINK \l "_Toc113479296" 3.1	Immediate Operands	 PAGEREF _Toc113479296 \h 3
 HYPERLINK \l "_Toc113479297" 3.2	Register Operands	 PAGEREF _Toc113479297 \h 3
 HYPERLINK \l "_Toc113479298" 3.3	Memory Operands	 PAGEREF _Toc113479298 \h 4
 HYPERLINK \l "_Toc113479299" 4	Data Types	 PAGEREF _Toc113479299 \h 4
 HYPERLINK \l "_Toc113479300" 4.1	Numeric Data types	 PAGEREF _Toc113479300 \h 4
 HYPERLINK \l "_Toc113479301" 4.2	Pointer Data Types	 PAGEREF _Toc113479301 \h 4
 HYPERLINK \l "_Toc113479302" 5	Alignment of Words	 PAGEREF _Toc113479302 \h 4
 HYPERLINK \l "_Toc113479303" 6	Procedure Calls	 PAGEREF _Toc113479303 \h 5
 HYPERLINK \l "_Toc113479304" 6.1	Stack	 PAGEREF _Toc113479304 \h 5
 HYPERLINK \l "_Toc113479305" 6.2	Call and Ret instructions	 PAGEREF _Toc113479305 \h 6
 HYPERLINK \l "_Toc113479306" 6.3	Procedure Linking Information	 PAGEREF _Toc113479306 \h 6
 HYPERLINK \l "_Toc113479307" 7	Interrupts and Exceptions	 PAGEREF _Toc113479307 \h 7
 HYPERLINK \l "_Toc113479308" 7.1	Invalid Instruction	 PAGEREF _Toc113479308 \h 9
 HYPERLINK \l "_Toc113479309" 7.2	Alignment Exception	 PAGEREF _Toc113479309 \h 9
 HYPERLINK \l "_Toc113479310" 7.3	Stack Error Exception	 PAGEREF _Toc113479310 \h 9
 HYPERLINK \l "_Toc113479311" 7.4	Double Fault	 PAGEREF _Toc113479311 \h 9
 HYPERLINK \l "_Toc113479312" 7.5	Hardware interrupt	 PAGEREF _Toc113479312 \h 10
 HYPERLINK \l "_Toc113479313" 7.6	Software Interrupt	 PAGEREF _Toc113479313 \h 10
 HYPERLINK \l "_Toc113479314" 8	HPC-16 Instructions	 PAGEREF _Toc113479314 \h 10
 HYPERLINK \l "_Toc113479315" 8.1	Data Transfer Instructions	 PAGEREF _Toc113479315 \h 10
 HYPERLINK \l "_Toc113479316" 8.2	Binary Arithmetic Instructions	 PAGEREF _Toc113479316 \h 11
 HYPERLINK \l "_Toc113479317" 8.3	Logical Instructions	 PAGEREF _Toc113479317 \h 12
 HYPERLINK \l "_Toc113479318" 8.4	Shift and Rotate Instructions	 PAGEREF _Toc113479318 \h 12
 HYPERLINK \l "_Toc113479319" 8.5	Control Transfer Instructions	 PAGEREF _Toc113479319 \h 13
 HYPERLINK \l "_Toc113479320" 8.6	Flag Control Instructions	 PAGEREF _Toc113479320 \h 15
 HYPERLINK \l "_Toc113479321" 8.7	Miscellaneous Instructions	 PAGEREF _Toc113479321 \h 16

1	Introduction
In this document, architectural issues related to HPC-16 series are discussed. The architectural issues are mainly concerned with structure and behavior of the processor as seen by the programmer. It includes execution environment, addressing modes, instruction set and other programming conventions. The architectural issues usually remain constant through out all implementations.
2	Basic Execution Environment
Any program running on an HPC-16 processor is given a set of resources for executing instructions and for storing code, data, and state information. These resources make up the basic execution environment. This basic execution environment is used jointly by the application programs and the operating-system or executive running on the processor. 
Address Space: Any task or program running on HPC-16 processor can address a linear address space of up to 64 Kbytes.
Basic program execution registers: The 16 general-purpose registers, the FLAGS register, SP, and the PC register comprise a basic execution environment in which to execute Hpc-16 ISA instructions.
Stack: To support procedure or subroutine calls and the passing of parameters between procedures or subroutines, a stack and stack management resources are included in the execution environment. The stack is located in memory.


Figure: 2.1 - Basic execution environment
2.1	Memory Organization
Physical memory is organized as a sequence of 8-bit bytes. Each byte is assigned a unique address, called a physical address. The physical address space ranges from zero to a maximum of 216 - 1.
2.2	Program Execution Registers
The processor provides 16 basic program execution registers for use in general system and application programming. Shown in Figure 4-1, these registers can be grouped as follows:
2.2.1	General Purpose Registers
There are sixteen 16-bit general purpose registers R0 - R15 present in processor. These registers R0 - R15 are provided for holding the following items:
Operands for logical and arithmetic operations
Operands for address calculations
Memory pointers
2.2.2	FLAGS Register
The 5-bit FLAGS register contains a group of status flags, and a flag. Following initialization of the processor (by asserting the RESET pin), the state of the FLAGS register is 000002. Some of the flags in the FLAGS register can be modified directly, using special-purpose instructions. There are no instructions that allow the whole register to be examined or modified directly. The PUSHF and POPF instructions can be used to move groups of flags to and from the procedure stack. After the contents of the FLAGS register have been transferred to the procedure stack, the flags can be examined and modified.

The bits (4  1) are status flags, indicate the results of arithmetic instructions, such as the ADD, SUB, ADC and SBB instructions. The status flag functions are:
ZF (bit 1) Zero flag: Set if the result is zero; cleared otherwise.

SF (bit 2) Sign flag: Set equal to the most-significant bit of the result, which is the sign bit of a signed integer. (0 indicates a positive value and 1 indicates a negative value.)

OF (bit 3) Overflow flag: Set if the integer result is too large a positive number or too small a negative number (excluding the sign-bit) to fit in the destination operand; cleared otherwise. This flag indicates an overflow condition for signed-integer (twos complement) arithmetic. 

CF (bit 4) Carry flag: Set if an arithmetic operation generates a carry or a borrow out of the most-significant bit of the result; cleared otherwise. This flag indicates an overflow condition for unsigned-integer arithmetic. It is also used in multiple-precision arithmetic.

Of these status flags, only the CF flag can be modified directly, using the STC, CLC, and CMC instructions. The status flags allow a single arithmetic operation to produce results for two different data types: unsigned integers and signed integers. If the result of an arithmetic operation is treated as an unsigned integer, the CF flag indicates an out-of-range condition (carry or borrow); if treated as a signed integer (twos complement number), the OF flag indicates a carry or borrow. The SF flag indicates the sign of a signed integer. The ZF flag indicates either a signed- or an unsigned integer zero. When performing multiple-precision arithmetic on integers, the CF flag is used in conjunction with add with carry (ADC) and subtract with borrow (SBB) instructions to propagate a carry or borrow from one computation to the next. The condition instructions Jcc (jump on condition code cc) and INTO (interrupt on overflow) use one or more of the status flags as condition codes and test them for branch. 

There is only one system flag: IF (bit 0) Interrupt enable flag. It controls the response of the processor to external interrupt requests which are maskable though software. Set to respond to maskable interrupts; cleared to inhibit maskable interrupts. 
When a interrupt or exception is raised, the processor automatically saves the state of the FLAGS register on the procedure stack.
2.2.3 Program Counter
The program counter (PC) register contains the address in memory for the next instruction to be executed. It is advanced from one instruction boundary to the next in straight-line code or it is moved ahead or backwards by a number of instructions when executing JMP, Jcc, CALL, RET, and IRET instructions.

The PC register cannot be accessed directly by software; it is controlled implicitly by control transfer instructions (such as JMP, Jcc, CALL, and RET), interrupts, and exceptions. The only way to read the PC register is to execute a CALL instruction and then read the value of the return instruction pointer from the procedure stack. The PC register can be loaded indirectly by modifying the value of a return instruction pointer on the procedure stack and executing a return instruction (RET or IRET).
2.2.4        Stack Pointer
The stack pointer (SP) register contain the address of top of stack. The processor use stack for pushing PC during execution of CALL instruction, it also uses stack for processing interrupts (both hardware and software) and exception.
3      Operand Addressing
HPC-16 machine-instructions act on zero or more operands. Some operands are specified explicitly and others are implicit. The data for a source operand can be located in: (1) The instruction itself (an immediate operand), (2) A register and (3) A memory location. When an instruction returns data to a destination operand, it can be returned to: (1) A register and (2) A memory location.
3.1      Immediate Operands
Some instructions use data encoded in the instruction itself as a source operand. These operands are called immediate operands. All arithmetic instructions allow the source operand to be an immediate value. The maximum value allowed for an immediate operand is the maximum value of an unsigned 16-bit word integer.
3.2       Register Operands
Register operands (as source or destination) can be any of the following registers, depending on the instruction being executed:
16-bit general-purpose registers (R0 - R15)
Stack pointer (SP)
FLAGS register
3.3    Memory Operands
Source and destination operands in memory are referenced by means of a physical address. The memory address can be specified using base (value in general purpose register or SP) and base/index + 16-bit signed displacement. The resulting address is called an effective address. Since HPC-16 is load-store RISC, it only uses memory operands either for loading data into register or storing the data in register to memory.

A base alone represents an indirect address of the operand. Since the value in the base register can change, it can be used for dynamic storage of variables and data structures.   

A base/index register and a displacement can be used to access a field of a record/array; the base register holds the address of the beginning of the record/array, while the displacement is static offset to the field. Another way to use this addressing mode is that: displacement locates the beginning of the array, and index register holds the subscript of desired array element.
4       Data Types
The fundamental data types of the HPC-16 architecture are bytes, words. A byte is eight bits; a word is 2 bytes (16 bits). A subset of the HPC-16 architecture instructions operates on these fundamental data types without any additional operand typing. The HPC-16 is big-endian machine, the high byte (bits 15 through 8) of word occupies the low address in memory and that address is also the address of the operand.
4.1  Numeric Data types
The HPC-16 architecture defines two types of integers: unsigned and signed. Unsigned integers are ordinary binary values ranging from 0 to the maximum positive number that can be encoded in the selected operand size. Signed integers are twos complement binary values that can be used to represent both positive and negative integer values. Some integer instructions (such as the ADD, SUB instructions) operate on either unsigned or signed integer operands. 
4.2       Pointer Data Types
Pointers are addresses of locations in memory. Since the addressable memory is 64K, therefore pointers are of 16-bit size.
5 Alignment of Words
16-bit words need to be aligned in memory on even boundaries (addresses divisible by two). Access to unaligned words result in alignment exception. However there is no alignment restriction on 8-bit bytes. 


Figure: 5.1  Byte and Word Alignment
6    Procedure Calls
The processor supports procedure calls using "CALL" and "RET" instructions. This procedure call mechanism use the procedure stack, commonly referred to simply as "the stack", to save the state of the calling procedure, and store local variables for the currently executing procedure.
6.1 Stack
The stack is a contiguous array of memory locations. The stack can be located any where in the linear address space for the program and can be up to 64Kbytes long (complete address space).


Figure: 6.1  Stack

Items are placed on the stack using the push instruction and removed from the stack using the POP instruction. When an item is placed onto stack, the processor decrements the SP (or sp, we will use both interchangeably) register, then writes the item at the new top of stack. When an item is popped off the stack, the processor reads the item from the top of the stack, and then increments the SP register. In this manner, the stack grows down in memory (towards lesser addresses) when items are pushed on the stack and shrinks up (towards greater addresses) when the items are popped from the stack.

To set the stack, the program or operating system/executive must do the following:
Reserve the area for stack
Load the stack pointer for the stack into the SP register using a MOV or LI instruction.   

The stack pointer for a stack segment should be aligned on 16-bit (word). The processor checks the stack pointer alignment. Misaligning the stack pointer will result in stack error exception.
6.2    Call and Ret instructions
When executing a call, the processor does the following:
Pushes the current value of the PC register on the stack.
Loads the address of the called procedure in the PC register.
Begins execution of the called procedure.

When executing a return, the processor performs these actions:
Pops the top-of-stack value (the return instruction pointer) into the PC register.
Resumes execution of the calling procedure.
6.3 Procedure Linking Information
The processor provides two pointers for linking of procedures: the stack-frame base pointer and the return instruction pointer. These pointers permit reliable and coherent linking of procedures.

Stack-frame base pointer: The stack is typically divided into frames. Each stack frame can then contain local variables, parameters to be passed to another procedure, and procedure linking information. The stack-frame base pointer (contained in bp/fp register, the software can use general purpose register R15 as bp/fp) identifies a fixed reference point within the stack frame for the called procedure. To use the stack-frame base pointer, the called procedure typically copies the contents of the SP register into the bp/fp register prior to pushing any local variables on the stack. The stack-frame base pointer then permits easy access to data structures passed on the stack, to the return instruction pointer, and to local variables added to the stack by the called procedure.

Return instruction pointer: Prior to branching to the first instruction of the called procedure, the CALL instruction pushes the address in the PC register onto the current stack. This address is then called the return-instruction pointer and it points to the instruction where execution of the calling procedure should resume following a return from the called procedure. Upon returning from a called procedure, the RET instruction pops the return-instruction pointer from the stack back into the PC register. Execution of the calling procedure then resumes.

The processor does not keep track of the location of the return-instruction pointer. It is thus up to the programmer to insure that stack pointer is pointing to the return-instruction pointer on the stack, prior to issuing a RET instruction. A common way to reset the stack pointer to the point to the return-instruction pointer is to move the contents of the BP register into the sp register. If the bp/fp register is loaded with the stack pointer immediately following a procedure call, it should point to the return-instruction pointer on the stack.

The processor does not require that the return instruction pointer point back to the calling procedure. Prior to executing the RET instruction; the return-instruction pointer can be manipulated in software to point to any address in the memory. Performing such an operation, however, should be undertaken very cautiously, using only well defined code entry points.
7     Interrupts and Exceptions
The processor provides two mechanisms for interrupting program execution, interrupts and exceptions:
An interrupt is an asynchronous event that is typically triggered by an I/O device.
An exception is a synchronous event that is generated when the processor detects one or more predefined conditions while executing an instruction.

The processor responds to interrupts and exceptions in essentially the same way. When an interrupt or exception is signaled, the processor halts execution of the current program and switches to a handler procedure that has been written specifically to handle the interrupt or exception condition. The processor responds to an interrupt or exception with an implicit call to an interrupt or exception handler. The processor uses the interrupt or exception vector number as an index into an interrupt vector table. There are total 16 interrupt which separated by 8-bytes, the application can write exception/interrupt handler procedures in these locations or may jump to handler located at other memory locations.

The HPC-16 Architecture defines 5 predefined interrupts and exceptions and 11 user defined interrupts, which are associated with entries in the IVT. Each interrupt and exception in the IVT is identified with a number, called a vector. Table 4.1 lists the interrupts and exceptions with entries in the IVT and their respective vector numbers. Vectors 0 through 4 are the predefined exceptions, and vectors 5 through 15 are the user-defined interrupts, called maskable interrupts.

When the processor detects an interrupt or exception, it executes an implicit call to a handler procedure. The processor performs following actions when calling an interrupt or exception handler:

Pushes the current contents of the FLAGS, and PC registers respectively on the stack.
Loads the new program counter value with 8 * vector no.
Clears the IF flag in the FLAGS register
Begins execution of the handler procedure

A return from an interrupt or exception handler is initiated with the IRET instruction. The IRET instruction is similar to the far RET instruction, except that it also restores the contents of the FLAGS register for the interrupted procedure.

Restores the PC registers to their values prior to the interrupt or exception.
Restores the FLAGS register
Increments the stack pointer appropriately
Resumes execution of the interrupted procedure

Table: 7.1  Interrupt Vector Locations 
Vector No.DescriptionSourceMemory Location,0OverflowINTO instruction0000h1Invalid instructionReserved Opcode0008h2Alignment errorAny memory reference0010h3Stack ErrorStack misalignment0018h4Double faultStack misalignment while executing maskable interrupt or during invalid instruction, alignment error 0020h5  15Maskable InterruptsExternal interrupt from INTR pin or INT n instruction0028h - 0078h
7.1        Invalid Instruction
This exception is raise when instruction contains invaild/reserved opcode, subop fields.
7.2        Alignment Exception
All the 16-bit word data or instruction, should be aligned on even address (i.e contain zero in least significant bit). Accessing misaligned word will cause this interrupt. However this instruction will not be raised, in case of lbzx/lbsx/sb instruction. 
7.3 Stack Error Exception
If the stack contains odd address, for this exception CPU behavior is changed, CPU internally save offending SP content, then SP is asynchronously set to predefined value (0x0000).  CPU pushes old SP value, FLAGS and PC and jump to Stack Exception vector location.


Figure: 7.1  Stack Error Exception
7.4       Double Fault
It may also possible, that some interrupt or exception (other than stack error) occur. Now processor needs to push flags and PC but if at this point, SP contain invalid value then this exception will occur. In this exception like Stack error, CPU internally saves the invalid contents of SP then SP is asynchronously preset to predefined value (0x0000). CPU pushes old interrupt no, old SP value, FLAGS and PC, then jump to Double Fault Exception vector location.


Figure: 7.2  Double Fault
7.5  Hardware interrupt
The hardware interrupt is raised by asserting INTR_I pin of CPU. The INTR_I generating source is required to assert it continuously until it is not recognized. The CPU first inspect the IF status (i.e can be masked by software by clearing IF) before checking INTR_I. Before pushing the FLAGS and PC, it generates a special read cycle to get the vector no. from slave device. In this read cycle IACK_CYC_O pin is asserted by CPU to indicate that it is special read cycle. The slave is suppose to put 4-bit interrupt number on databus(11..8), and deassert the INTR_I pin. 
7.6     Software Interrupt
The software interrupt is generated by INT n and INTO instructions. The IF is not checked. The INT n and INTO allow a program or task to explicitly call an interrupt or exception handler. The INT n instruction uses an interrupt vector as an argument, which allows a program to call any interrupt handler. 

The INTO instruction explicitly calls the overflow exception handler if the overflow flag (OF) in the FLAGS register is set. The OF flag indicates overflow on arithmetic instructions, but it does not automatically raise an overflow exception. An overflow exception can only be raised explicitly in either of the following ways:
Execute the INTO instruction.
Test the OF flag and execute the INT n instruction with an argument of 0 (the vector number of the overflow exception) if the flag is set.
8        HPC-16 Instructions
HPC-16 instruction set include several instructions, which shown in Appendix A. These instructions can divided into seven major categories, which are given below:
8.1      Data Transfer Instructions
The data transfer instructions move bytes, words both between memory and the processors registers and between registers. For the purpose of this discussion, these instructions are divided into subordinate subgroups that provide for:
General data movement
Stack manipulation

General Data Movement Instructions: The MOV (move) instruction transfer data between general-purpose registers (GPRs) and SP.  The LI (load immediate) load constant 16-bit data into GPR and SP. The LD instruction load data from memory to GPR and ST instruction store data from GPR into memory. Separate mnemonics are provided for byte loading and storing, all the byte operands loaded from memory: LBSX sign extends the byte operand and load the result into GPR while LBZX zero extends the byte operand and then load result into GPR. SB stores the lower byte of GPR into memory. 

Stack manipulation Instructions: The PUSH instruction decrements the stack pointer (contained in the SP register), then copies the source operand to the top of stack. It operates on GPR operands only. The POP instruction copies the word at the current top of stack (indicated by the SP register) to the location specified with the destination operand. It then increments the SP register to point to the new top of stack. The destination operand specifies a GPR only.  
8.2    Binary Arithmetic Instructions
Binary arithmetic instructions operate on 16-bit numeric data encoded as signed or unsigned binary integers. For the purpose of this discussion, these instructions are divided subordinate subgroups of instructions that:
Add and subtract
Increment and decrement
Compare  
Add and Subtract: The ADD (add integers), ADC (add integers with carry), SUB (subtract integers), and SBB (subtract integers with borrow) instructions perform addition and subtraction operations on signed or unsigned integer operands. The operands can be two GPRs, GPR-immediate or SP-immediate. The ADD instruction computes the sum of two integer operands. The ADC instruction computes the sum of two integer operands, plus 1 if the CF flag is set. This instruction is used to propagate a carry when adding numbers in stages. The SUB instruction computes the difference of two integer operands. The SBB instruction computes the difference of two integer operands, minus 1 if the CF flag is set. This instruction is used to propagate a borrow when subtracting numbers in stages. SP related instructions support only SUB and ADD operation. 

Increment and Decrement Instructions: The INC (increment) and DEC (decrement) instructions add 1 to or subtract 1 from an unsigned integer operand (GPR) respectively, without affecting CF flag. A primary use of these instructions is for implementing counters.

Arithmetic Comparison: The CMP (compare) instruction computes the difference between two integer operands (two GPRs or GPR-immediate) and updates the OF, SF, ZF, AF, PF, and CF flags according to the result. The source operands are not modified, nor is the result saved. The CMP instruction is commonly used in conjunction with a Jcc (conditional jump) instruction.
8.3   Logical Instructions
The logical instructions AND, OR, XOR (exclusive or), and NOT perform the standard Boolean operations for which they are named. The AND, OR, and XOR instructions require two operands (two GPRs or GPR-immediate); the NOT instruction operates on a single operand (GPR). The TEST instruction performs a logical AND of two operands and sets the SF and ZF flags according to the results. The flags can then be tested by the conditional jump instructions. The TEST instruction differs from the AND instruction in that it does not alter either of the operands.
8.4      Shift and Rotate Instructions
The shift and rotate instructions rearrange the bits within an operand. For the purpose of this discussion, these instructions are further divided subordinate subgroups of instructions that:
Shift bits
Rotate bits

Shift Instructions: The SAL (shift arithmetic left), SHL (shift logical left), SAR (shift arithmetic right), SHR (shift logical right) instructions perform an arithmetic or logical shift of the bits in a word. The SAL and SHL instructions perform the same operation. They shift the source operand left by from 1 to 15 bit positions. Empty bit positions are cleared. The CF flag is loaded with the last bit shifted out of the operand. The SHR instruction shifts the source operand right by from 1 to 15 bit positions. As with the SHL/SAL instruction, the empty bit positions are cleared and the CF flag is loaded with the last bit shifted out of the operand. The SAR instruction shifts the source operand right by from 1 to 15 bit positions. This instruction differs from the SHR instruction in that it preserves the sign of the source operand by clearing empty bit positions if the operand is positive or setting the empty bits if the operand is negative. Again, the CF flag is loaded with the last bit shifted out of the operand.

Rotate Instructions: The ROL (rotate left), ROR (rotate right), RCL (rotate through carry left) and RCR (rotate through carry right) instructions rotate the bits in the destination operand out of one end and back through the other end. Unlike a shift, no bits are lost during a rotation. The rotate count can range from 0 to 15. The ROL instruction rotates the bits in the operand to the left (toward more significant bit locations). The ROR instruction rotates the operand right (toward less significant bit locations). The RCL instruction rotates the bits in the operand to the left, through the CF flag. This instruction treats the CF flag as a one-bit extension on the upper end of the operand. Each bit that exits from the most significant bit location of the operand moves into the CF flag. At the same time, the bit in the CF flag enters the least significant bit location of the operand. The RCR instruction rotates the bits in the operand to the right through the CF flag. For all the rotate instructions, the CF flag always contains the value of the last bit rotated out of the operand, even if the instruction does not use the CF flag as an extension of the operand. The value of this flag can then be tested by a conditional jump instruction (JC or JNC).
8.5     Control Transfer Instructions
The processor provides both conditional and unconditional control transfer instructions to direct the flow of program execution. Conditional transfers are taken only for specified states of the status flags in the FLAGS register. Unconditional control transfers are always executed. For the purpose of this discussion, these instructions are further divided subordinate subgroups that process:
Unconditional transfers
Conditional transfers
Software interrupts

Unconditional Transfer Instructions: The JMP, CALL and RET instructions transfer program control to another location (destination address) in the instruction stream. The destination can be any where within 64K addressable memory. 

Jump instruction - The JMP (jump) instruction unconditionally transfers program control to a destination instruction. The transfer is one-way; that is, a return address is not saved. A destination operand specifies the address (the instruction pointer) of the destination instruction. The address can be a relative address or an absolute address.

A relative address is a displacement (offset) with respect to the address in the PC register. The destination address is formed by adding the displacement to the address in the PC register. The displacement is specified with a signed integer, present either as part of instruction (11 bit sign extended immediate constant) or present in GPR, allowing jumps either forward or backward in the instruction stream. An absolute address is the physical address of memory. Here, target address is value inside GPR. This value is directly copied into PC register.

Call and return instructions - The CALL (call procedure) and RET (return from procedure) instructions allow a jump from one procedure (or subroutine) to another and a subsequent jump back (return) to the calling procedure. The CALL instruction transfers program control from the current (or calling procedure) to another procedure (the called procedure). To allow a subsequent return to the calling procedure, the CALL instruction saves the current contents of the PC register on the stack before jumping to the called procedure. The PC register (prior to transferring program control) contains the address of the instruction following the CALL instruction. When this address is pushed on the stack, it is referred to as the return instruction pointer or return address. The address of the called procedure (the address of the first instruction in the procedure being jumped to) is specified in a CALL instruction the same way as it is in a JMP instruction. The address can be specified as a relative address or an absolute address. 

The RET instruction transfers program control from the procedure currently being executed (the called procedure) back to the procedure that called it (the calling procedure). Transfer of control is accomplished by copying the return instruction pointer from the stack into the PC register. Program execution then continues with the instruction pointed to by the PC register.

Conditional transfer instructions: The conditional transfer instructions execute jumps that transfer program control to another instruction in the instruction stream if specified conditions are met. The conditions for control transfer are specified with a set of condition codes that define various states of the status flags (CF, ZF, OF and SF) in the FLAGS register. The Jcc (conditional) jump instructions transfer program control to a destination instruction if the conditions specified with the condition code (cc) associated with the instruction are satisfied. If the condition is not satisfied, execution continues with the instruction following the Jcc instruction. As with the JMP instruction, the transfer is one-way; that is, a return address is not saved.

Table: 8.1  Conditional Jump Instructions
Instruction MnemonicsCondition (Flags states)DescriptionUnsigned Conditional JumpsJA/JNBE(CF or ZF) = 0Above/ not below or equalJAE/JNBCF = 0Above or equal/ not belowJB/ JNAECF = 1Below/ not above or equalJBE/ JNA (CF or ZF) = 1Below or equal/ not aboveJCCF = 1CarryJE/JZZF = 1Equal / zeroJNCCF = 0Not carryJNE/ JNZZF = 0Not equal /not zeroSigned Conditional JumpsJG/ JNLE((SF xor OF) or ZF) = 0Greater/ not less or equal JGE/ JNL(SF xor OF) = 0Greater or equal/ not lessJL/JNGE(SF xor OF) = 1Less/ not greater or equal JLE/ JNG((SF xor OF) or ZF) = 1Less or equal / not greaterJNOOF = 0Not OverflowJNSSF = 0Not sign (non-negative)JOOF = 1OverflowJSSF = 1Sign (negative)
The target address is specified in a Jcc instruction as a relative address (7-bit sign extended immediate constant). Table shows the mnemonics for the Jcc instructions and the conditions being tested for each instruction. The condition code mnemonics are appended to the letter "J" to form the mnemonic for a Jcc instruction. The instructions are divided into two groups: unsigned and signed conditional jumps. These groups correspond to the results of operations performed on unsigned and signed integers respectively. Those instructions listed as pairs (for example, JA/JNBE) are alternate names for the same instruction.

Software Interrupt Instructions: The INT n (software interrupt) and INTO (interrupt on overflow) instructions allow a program to explicitly raise a specified interrupt or exception, which in turn causes the handler routine for the interrupt or exception to be called. The INT n instruction can raise any of the processors interrupts or exceptions by encoding the vector number or the interrupt or exception in the instruction. The contents of the FLAGS register are automatically stored on the stack along with the return instruction pointer when the processor services an interrupt. The IRET (return from interrupt) instruction returns program control from an interrupt handler to the interrupted procedure. The IRET instruction performs a similar operation to the RET instruction, except that it also restores the FLAGS register from the stack. The INTO instruction raises the overflow exception if the OF flag is set. If the flag is clear, execution continues without raising the exception. This instruction allows software to access the overflow exception handler explicitly to check for overflow conditions.
8.6        Flag Control Instructions
The Flag Control instructions allow the state of selected flags in the FLAGS register to be read or modified. For the purpose of this discussion, these instructions are further divided subordinate subgroups of instructions that manipulate:
Carry flag
The FLAGS register
Interrupt flag

Carry Flag Instructions: The STC (set carry flag), CLC (clear carry flag), and CMC (complement carry flag) instructions allow the CF flags in the FLAGS register to be modified directly. They are typically used to initialize the CF flag to a known state before an instruction that uses the flag in an operation is executed. They are also used in conjunction with the rotate-with-carry instructions (RCL and RCR).

FLAGS Transfer Instructions: The PUSHF (push flags) and POPF (pop flags) instructions copy the flags in the FLAGS register to and from the stack. The PUSHF pushes the FLAGS register onto the stack. The POPF instruction pops a word from the stack into the FLAGS register. 

Interrupt Flag Instructions: The STI (set interrupt flag) and CTI (clear interrupt flag) instructions allow the interrupt IF flag in the FLAGS register to be modified directly.
8.7      Miscellaneous Instructions
The NOP instruction increments the PC register to point at the next instruction, but affect nothing else. HLT instruction stops further instruction execution, set the interrupt flag and places the processor in a HALTED state. An enabled interrupt or the RESET signal will resume execution. If an interrupt is used to resume execution after a HLT instruction, the saved instruction pointer (PC) points to the instruction following the HLT instruction.
PAGE  


PAGE  20




#&4@AEFQRY[}~趲ncTjheiUmHnHuheimHnHu2jh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu$jh"hei0JUmHnHuh`jh`UhDCJaJh}hiUhiUhiUh#CJaJhLhLCJaJhLCJaJhCCJaJhLhC  !"#5AFRZ $IfgdiUgdL
$dha$gdCdhgdL$a$gdL͚Z[hvqhhh  $IfgdiUkd$$IflF 
$dha$gdCdhgdL$a$gdL͚Z[hvqhhh  $IfgdiUkd$$IflF 
t0644
t0644
la b     
la b     
i
i
%qlfff__XX
k
%qlfff__XX
k

k

k

k

k
gdLkdu$$IflF 
gdLkdu$$IflF 
t0644
t0644
la                                                  2     3     4     5     ?     @     A     [     \     ]     _     `     a     b     c     d                                        °¢¢n°¢T¢2jh"hei>*B*UmHnHphu jaheiUmHnHu2jh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu$jh"hei0JUmHnHujheiUmHnHu jgheiUmHnHuheimHnHu                                                                                            
la                                                  2     3     4     5     ?     @     A     [     \     ]     _     `     a     b     c     d                                        °¢¢n°¢T¢2jh"hei>*B*UmHnHphu jaheiUmHnHu2jh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu$jh"hei0JUmHnHujheiUmHnHu jgheiUmHnHuheimHnHu                                                                                            










'
'
(
(
)
)
*
*
+
+
°¢¢n°¢T¢2jh"hei>*B*UmHnHphu jUheiUmHnHu2jh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu$jh"hei0JUmHnHujheiUmHnHu j[heiUmHnHuheimHnHu +
°¢¢n°¢T¢2jh"hei>*B*UmHnHphu jUheiUmHnHu2jh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu$jh"hei0JUmHnHujheiUmHnHu j[heiUmHnHuheimHnHu +
,
,
G
G
H
H
I
I
c
c
d
d
e
e
f
f
g
g
h
h
i
i
j
j
k
k
յƢp_Ƣp jIheiUmHnHuhei:CJaJmHnHu2jh"hei>*B*UmHnHphuheimHnHu$jh"hei0JUmHnHu jOheiUmHnHujheiUmHnHuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu!
յƢp_Ƣp jIheiUmHnHuhei:CJaJmHnHu2jh"hei>*B*UmHnHphuheimHnHu$jh"hei0JUmHnHu jOheiUmHnHujheiUmHnHuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu!
 !"#$%&'CDEFKLefgŶūӶłhXūG j=heiUmHnHuhei6CJ]aJmHnHu2jh"hei>*B*UmHnHphuheimHnHu jCheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHuh"hei0JmHnHu$jh"hei0JUmHnHu2jh"hei>*B*UmHnHphu0ҴҴ´ҴfҴ´2j       h"hei>*B*UmHnHphu j7     heiUmHnHu2jh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHuhei6CJ]aJmHnHu$jh"hei0JUmHnHuheimHnHujheiUmHnHu#%6<


9BB^gt<
k
 !"#$%&'CDEFKLefgŶūӶłhXūG j=heiUmHnHuhei6CJ]aJmHnHu2jh"hei>*B*UmHnHphuheimHnHu jCheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHuh"hei0JmHnHu$jh"hei0JUmHnHu2jh"hei>*B*UmHnHphu0ҴҴ´ҴfҴ´2j       h"hei>*B*UmHnHphu j7     heiUmHnHu2jh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHuhei6CJ]aJmHnHu$jh"hei0JUmHnHuheimHnHujheiUmHnHu#%6<


9BB^gt<
k

k

k

k

k
012345678TUVW\]jkl²¤¤p²¤V¤2jh"hei>*B*UmHnHphu j+heiUmHnHu2j
012345678TUVW\]jkl²¤¤p²¤V¤2jh"hei>*B*UmHnHphu j+heiUmHnHu2j
h"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHuhei6CJ]aJmHnHu$jh"hei0JUmHnHuheimHnHujheiUmHnHu j1
h"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHuhei6CJ]aJmHnHu$jh"hei0JUmHnHuheimHnHujheiUmHnHu j1
heiUmHnHu








6
7
8
9
:
;
<
=
>
Z
[
յƢp_Ƣp j
heiUmHnHuhei:CJaJmHnHu2jh"hei>*B*UmHnHphuheimHnHu$jh"hei0JUmHnHu j%heiUmHnHujheiUmHnHuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu![
\
]
`
a
r
s
t



























ŶūӶłhŶūWӶ jheiUmHnHu2jh"hei>*B*UmHnHphuheimHnHu jheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHuh"hei0JmHnHu$jh"hei0JUmHnHu2j
h"hei>*B*UmHnHphu"
       
heiUmHnHu








6
7
8
9
:
;
<
=
>
Z
[
յƢp_Ƣp j
heiUmHnHuhei:CJaJmHnHu2jh"hei>*B*UmHnHphuheimHnHu$jh"hei0JUmHnHu j%heiUmHnHujheiUmHnHuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu![
\
]
`
a
r
s
t



























ŶūӶłhŶūWӶ jheiUmHnHu2jh"hei>*B*UmHnHphuheimHnHu jheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHuh"hei0JmHnHu$jh"hei0JUmHnHu2j
h"hei>*B*UmHnHphu"
       

3456789:;WXYZ]^pqrλ螏~dU螏hei:CJaJmHnHu2jh"hei>*B*UmHnHphu j
heiUmHnHujheiUmHnHuheimHnHu"hei5;CJ\aJmHnHu$jh"hei0JUmHnHu2jh"hei>*B*UmHnHphuh"hei0JmHnHuheimHnHu 

3456789:;WXYZ]^pqrλ螏~dU螏hei:CJaJmHnHu2jh"hei>*B*UmHnHphu j
heiUmHnHujheiUmHnHuheimHnHu"hei5;CJ\aJmHnHu$jh"hei0JUmHnHu2jh"hei>*B*UmHnHphuh"hei0JmHnHuheimHnHu 

³¥¥q³¥W¥2j~h"hei>*B*UmHnHphu jheiUmHnHu2jh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHuhei:CJaJmHnHu$jh"hei0JUmHnHuheimHnHujheiUmHnHu jheiUmHnHu
 !"<=>?@ABCD`abcdetuvյƢnƢ jheiUmHnHu2jxh"hei>*B*UmHnHphuheimHnHu$jh"hei0JUmHnHu jheiUmHnHujheiUmHnHuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu! !"<=>?@ABCDŶūӶłhŶūWӶ jheiUmHnHu2jlh"hei>*B*UmHnHphuheimHnHu jheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHuh"hei0JmHnHu$jh"hei0JUmHnHu2jrh"hei>*B*UmHnHphu"D`abcfgλ衒gU衒"hei5;CJ\aJmHnHu2j`h"hei>*B*UmHnHphu jheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHu$jh"hei0JUmHnHu2jfh"hei>*B*UmHnHphuh"hei0JmHnHuheimHnHu"#$%()<=>XYZ[\]^_`|}°¢¢p_p¢ jheiUmHnHuhei:CJaJmHnHu2jZh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu$jh"hei0JUmHnHuheimHnHujheiUmHnHu jheiUmHnHu}~ŶūӶłhŶūWӶ jheiUmHnHu2jNh"hei>*B*UmHnHphuheimHnHu jheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHuh"hei0JmHnHu$jh"hei0JUmHnHu2jTh"hei>*B*UmHnHphu"234589EFGabcdefghiλ衒g衒V jheiUmHnHu2jBh"hei>*B*UmHnHphu jheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHu$jh"hei0JUmHnHu2jHh"hei>*B*UmHnHphuh"hei0JmHnHuheimHnHu!9:;<=>QRSmЭТhVТ"hei5;CJ\aJmHnHu2j6h"hei>*B*UmHnHphu jheiUmHnHujheiUmHnHuheimHnHu2j<h"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu$jh"hei0JUmHnHuhei:CJaJmHnHumnoqrstuv°¢¢p_p¢ jheiUmHnHuhei:CJaJmHnHu2j0h"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu$jh"hei0JUmHnHuheimHnHujheiUmHnHu jheiUmHnHu5679:;<=>Z[\]`auvwŶūӶłhŶūWӶ j!heiUmHnHu2j$!h"hei>*B*UmHnHphuheimHnHu j heiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHuh"hei0JmHnHu$jh"hei0JUmHnHu2j* h"hei>*B*UmHnHphu"!"?@A[\]_`aλ衒g衒V j#heiUmHnHu2j#h"hei>*B*UmHnHphu j"heiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHu$jh"hei0JUmHnHu2j"h"hei>*B*UmHnHphuh"hei0JmHnHuheimHnHu!b%'(70kNOQ{Vv)gd

³¥¥q³¥W¥2j~h"hei>*B*UmHnHphu jheiUmHnHu2jh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHuhei:CJaJmHnHu$jh"hei0JUmHnHuheimHnHujheiUmHnHu jheiUmHnHu
 !"<=>?@ABCD`abcdetuvյƢnƢ jheiUmHnHu2jxh"hei>*B*UmHnHphuheimHnHu$jh"hei0JUmHnHu jheiUmHnHujheiUmHnHuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu! !"<=>?@ABCDŶūӶłhŶūWӶ jheiUmHnHu2jlh"hei>*B*UmHnHphuheimHnHu jheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHuh"hei0JmHnHu$jh"hei0JUmHnHu2jrh"hei>*B*UmHnHphu"D`abcfgλ衒gU衒"hei5;CJ\aJmHnHu2j`h"hei>*B*UmHnHphu jheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHu$jh"hei0JUmHnHu2jfh"hei>*B*UmHnHphuh"hei0JmHnHuheimHnHu"#$%()<=>XYZ[\]^_`|}°¢¢p_p¢ jheiUmHnHuhei:CJaJmHnHu2jZh"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu$jh"hei0JUmHnHuheimHnHujheiUmHnHu jheiUmHnHu}~ŶūӶłhŶūWӶ jheiUmHnHu2jNh"hei>*B*UmHnHphuheimHnHu jheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHuh"hei0JmHnHu$jh"hei0JUmHnHu2jTh"hei>*B*UmHnHphu"234589EFGabcdefghiλ衒g衒V jheiUmHnHu2jBh"hei>*B*UmHnHphu jheiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHu$jh"hei0JUmHnHu2jHh"hei>*B*UmHnHphuh"hei0JmHnHuheimHnHu!9:;<=>QRSmЭТhVТ"hei5;CJ\aJmHnHu2j6h"hei>*B*UmHnHphu jheiUmHnHujheiUmHnHuheimHnHu2j<h"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu$jh"hei0JUmHnHuhei:CJaJmHnHumnoqrstuv°¢¢p_p¢ jheiUmHnHuhei:CJaJmHnHu2j0h"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu"hei5;CJ\aJmHnHu$jh"hei0JUmHnHuheimHnHujheiUmHnHu jheiUmHnHu5679:;<=>Z[\]`auvwŶūӶłhŶūWӶ j!heiUmHnHu2j$!h"hei>*B*UmHnHphuheimHnHu j heiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHuh"hei0JmHnHu$jh"hei0JUmHnHu2j* h"hei>*B*UmHnHphu"!"?@A[\]_`aλ衒g衒V j#heiUmHnHu2j#h"hei>*B*UmHnHphu j"heiUmHnHujheiUmHnHuheimHnHuhei:CJaJmHnHu$jh"hei0JUmHnHu2j"h"hei>*B*UmHnHphuh"hei0JmHnHuheimHnHu!b%'(70kNOQ{Vv)gd
$dha$gdadhgda
$dha$gdadhgda
$dha$gdagdB
$dha$gdagdB
$dha$gdgd^gdjzgd^
k
$dha$gdgd^gdjzgd^
k
abcd "ЭТhТW j%heiUmHnHu2j%h"hei>*B*UmHnHphu j$heiUmHnHujheiUmHnHuheimHnHu2j$h"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu$jh"hei0JUmHnHuhei:CJaJmHnHu""#$%&'(*c.0>jkqMOPQYZ{ƿ{sl[QMh-haOJQJ^J!j&hXlhaOJQJU^Jh)hah)ha5hhahha5h:hah:ha5hJ
hah
abcd "ЭТhТW j%heiUmHnHu2j%h"hei>*B*UmHnHphu j$heiUmHnHujheiUmHnHuheimHnHu2j$h"hei>*B*UmHnHphuheimHnHuh"hei0JmHnHu$jh"hei0JUmHnHuhei:CJaJmHnHu""#$%&'(*c.0>jkqMOPQYZ{ƿ{sl[QMh-haOJQJ^J!j&hXlhaOJQJU^Jh)hah)ha5hhahha5h:hah:ha5hJ
hah
hC_hahchahOh#hjzh=8h^jh`Uhei:CJaJmHnHu$jh"hei0JUmHnHujheiUmHnHu{NPUVZv()/CIW_!t!!!\"u"{##((*
**H-N-[-\-F.G.I.[.////v0w0yrhd#hahhahhkhah]hY`.hahhahmhqwhah]h3ha5h?Z3ha5hamha5hSVhaH*hSVhah_v hshKhahmhaH*hmhahahzhah,)I3CX  _!!!["\"z#{#$$(()**O+P+gd]dhgdagd_v
hC_hahchahOh#hjzh=8h^jh`Uhei:CJaJmHnHu$jh"hei0JUmHnHujheiUmHnHu{NPUVZv()/CIW_!t!!!\"u"{##((*
**H-N-[-\-F.G.I.[.////v0w0yrhd#hahhahhkhah]hY`.hahhahmhqwhah]h3ha5h?Z3ha5hamha5hSVhaH*hSVhah_v hshKhahmhaH*hmhahahzhah,)I3CX  _!!!["\"z#{#$$(()**O+P+gd]dhgdagd_v
&Fdhgda
&Fdhgda
$dha$gdagdsP+H-\-G.\.//21H11122+2334466779gdrgddhgdagda
$dha$gdagdsP+H-\-G.\.//21H11122+2334466779gdrgddhgdagda
&FdhgdagdgdU]gdm
&FdhgdagdgdU]gdm
$dha$gdaw0112161G122*2+222222223333344444667$7777779999#:$:&:9:A:f:j:ļ˴thhaOJQJ^JhaOJQJ^JhX:yhahShWrhahhahrhha5hhzSha5hk[ha5hKsha	ha5h0ha5h>whah#Dhahah8Nhahhahd#ha-99$:9:;   ;;1;C;_<i<&=(=*=>=?=???@c@
$dha$gdaw0112161G122*2+222222223333344444667$7777779999#:$:&:9:A:f:j:ļ˴thhaOJQJ^JhaOJQJ^JhX:yhahShWrhahhahrhha5hhzSha5hk[ha5hKsha	ha5h0ha5h>whah#Dhahah8Nhahhahd#ha-99$:9:;   ;;1;C;_<i<&=(=*=>=?=???@c@
&Fdhgdagd*^Hgdh{
&Fdhgdagd*^Hgdh{
$dha$gdadhgda$dh7$8$H$a$gdagdS
$dha$gdadhgda$dh7$8$H$a$gdagdS
$dha$gdagdrj:u:w::::;    ;
$dha$gdagdrj:u:w::::;    ;
;;;;;;1;3;C;^<_<c<i<<<%=&='=(=)=*=2=3=4=5=?=?d@#ABBB~CCCCCCCxhdSha5	ha5h@hah\hahthPhahshahe!j;hHhaOJQJU^JhAhhah*^Hh|hahh{hD!j]h~haOJQJU^JhahaOJQJ^JhhaOJQJ^J.c@d@$ABA{AAABB]BBBBCCFFII,K-KLgdr
;;;;;;1;3;C;^<_<c<i<<<%=&='=(=)=*=2=3=4=5=?=?d@#ABBB~CCCCCCCxhdSha5	ha5h@hah\hahthPhahshahe!j;hHhaOJQJU^JhAhhah*^Hh|hahh{hD!j]h~haOJQJU^JhahaOJQJ^JhhaOJQJ^J.c@d@$ABA{AAABB]BBBBCCFFII,K-KLgdr
&Fdhgda
&Fdhgda
&Fdhgdadhgdagd`p
&Fdhgdadhgdagd`p
$dha$gdahdh^hgdaCDDDEEEFFFLMMnMoMNN`PjPPPRRSSpSqSSS'T(TQTSTEUGUUUUUUUVVV6VWWWWWWWWXhMhah;)hahZhahhah97h{$hahGhahUVhahThahf"hahhah%@hahbhahZzha5hha5hahUha5LLMoMNNPPRRpSqSSS(TRTSTFUGUUU
$dha$gdahdh^hgdaCDDDEEEFFFLMMnMoMNN`PjPPPRRSSpSqSSS'T(TQTSTEUGUUUUUUUVVV6VWWWWWWWWXhMhah;)hahZhahhah97h{$hahGhahUVhahThahf"hahhah%@hahbhahZzha5hha5hahUha5LLMoMNNPPRRpSqSSS(TRTSTFUGUUU
&Fdhgdadhgda
&Fdhgdadhgda
&F
8dh^gdahdh^hgda$
&F
8dh^gdahdh^hgda$
&Fdha$gda
&Fdha$gda
$dha$gdagd(UUV
V6VAVMVTVeV        $Ifgda
$dha$gdagd(UUV
V6VAVMVTVeV        $Ifgda
$dha$gdadhgda
$dha$gdadhgda
&FdhgdaeVfVhVqVVV^UUUU       $Ifgdakd$$Ifl\: SSST
&FdhgdaeVfVhVqVVV^UUUU       $Ifgdakd$$Ifl\: SSST
t0644
t0644
laVVVVVV^UUUU    $IfgdakdL$$Ifl\: SSST
laVVVVVV^UUUU    $IfgdakdL$$Ifl\: SSST
t0644
t0644
laVVVVVV^UUUU    $Ifgdakd$$Ifl\: SSST
laVVVVVV^UUUU    $Ifgdakd$$Ifl\: SSST
t0644
t0644
laVVVVWW^UUUU    $Ifgdakd*$$Ifl\: SSST
laVVVVWW^UUUU    $Ifgdakd*$$Ifl\: SSST
t0644
t0644
laWWWWWW^UUUU    $Ifgdakd$$Ifl\: SSST
laWWWWWW^UUUU    $Ifgdakd$$Ifl\: SSST
t0644
t0644
laWWWWWW^UUUU    $Ifgdakd$$Ifl\: SSST
laWWWWWW^UUUU    $Ifgdakd$$Ifl\: SSST
t0644
t0644
laWWWXZXrXrYY^SNCNC>gd9@
laWWWXZXrXrYY^SNCNC>gd9@
$dha$gdagdKo
$dha$gdagdKo
$dha$gdakdw$$Ifl\: SSST
$dha$gdakdw$$Ifl\: SSST
t0644
t0644
laXYXZX\XvY|YYYYYYYZ
laXYXZX\XvY|YYYYYYYZ
ZZ>ZEZJZLZQZSZ[Z`ZeZgZZZZZZZZZZZZ[6[7[K[L[c[e[f[{[[[[[
ZZ>ZEZJZLZQZSZ[Z`ZeZgZZZZZZZZZZZZ[6[7[K[L[c[e[f[{[[[[[
\
\,\-\/\2\7\9\A\G\P\R\Z\_\d\l\m\\\\\\\\\\\h2ehajhaUhghah. jhaUh[j~hahh_hahMhahah
haKYZZZZZ\\\\\_&_X`Y`aaJb`bc"cdgd gdg
\
\,\-\/\2\7\9\A\G\P\R\Z\_\d\l\m\\\\\\\\\\\h2ehajhaUhghah. jhaUh[j~hahh_hahMhahah
haKYZZZZZ\\\\\_&_X`Y`aaJb`bc"cdgd gdg
&F       dhgdagdFTgd-'gdPM
&F       dhgdagdFTgd-'gdPM
$dha$gdadhgda
$dha$gdadhgda
$dha$gda\\\\]]]]  ^
$dha$gda\\\\]]]]  ^
^^H^I^J^K^[^^__ccc!c6dYddddddddddd$e'eFeOeQeSeeeeeeeffGfJfhfkfyf{ffMhOhThrhiiiiimjjllh3Vhah`ha5hLshahx|ha5hvhahvha5hXkhah^achahthahnhahaDd"d5d6dzf{fPhshOi`ixiillmm>oWoqqbrgdRgdDI
^^H^I^J^K^[^^__ccc!c6dYddddddddddd$e'eFeOeQeSeeeeeeeffGfJfhfkfyf{ffMhOhThrhiiiiimjjllh3Vhah`ha5hLshahx|ha5hvhahvha5hXkhah^achahthahnhahaDd"d5d6dzf{fPhshOi`ixiillmm>oWoqqbrgdRgdDI
&Fdhgdadhgdagds5
&Fdhgdadhgdagds5
$dha$gdahdh^hgda
$dha$gdahdh^hgda
&Fdhgdallmm:nVno+o=oBoVoWo
p)p[papbpcpqzrrrvvvwwt{u{x{y{{d}}}L~\~ՁXzXY`abc³}}hhAhhVha5ht`ha6hK+ha6hK+ha5hi$vhahGhah
&Fdhgdallmm:nVno+o=oBoVoWo
p)p[papbpcpqzrrrvvvwwt{u{x{y{{d}}}L~\~ՁXzXY`abc³}}hhAhhVha5ht`ha6hK+ha6hK+ha5hi$vhahGhah
hah
hah
ha5     ha5hFha5hZhah)p%hah2jhahkAhahkAha5hahYOha5/brmryrzrvvu{{!}9}O}c}d}K~L~ԁՁ߅WXXY
ha5     ha5hFha5hZhah)p%hah2jhahkAhahkAha5hahYOha5/brmryrzrvvu{{!}9}O}c}d}K~L~ԁՁ߅WXXY
&Fdhgdagd`'
&Fdhgdagd`'
$dha$gdadhgda
$dha$gdadhgda
&F
dhgdaYۊHkdQ$$Ifl4F
&F
dhgdaYۊHkdQ$$Ifl4F
 
 
t0644
t0644
lapdh$7$8$H$Ifgda
lapdh$7$8$H$Ifgda
$dha$gdaۊ܊
78bc‹Ë؋ًUV:;NOij܏69r
+ <ǘȘИјԘ՘ۿ۰ۡۚۓhBEhahBUhahBUha5hYQlhahYQlha5hkmhahkmha5h=>ha     ha5hQha5hahaOJQJ^JhaCJaJhha5OJQJ^J9ۊ܊
dh$7$8$H$IfgdaikdTR$$Ifl "
$dha$gdaۊ܊
78bc‹Ë؋ًUV:;NOij܏69r
+ <ǘȘИјԘ՘ۿ۰ۡۚۓhBEhahBUhahBUha5hYQlhahYQlha5hkmhahkmha5h=>ha     ha5hQha5hahaOJQJ^JhaCJaJhha5OJQJ^J9ۊ܊
dh$7$8$H$IfgdaikdTR$$Ifl "
t0644
t0644
lap
lap

7fUUUdh$7$8$H$IfgdakdR$$IflF

7fUUUdh$7$8$H$IfgdakdR$$IflF
 
 
t0644
t0644
lap78AHbfUUUdh$7$8$H$IfgdakdS$$IflF
lap78AHbfUUUdh$7$8$H$IfgdakdS$$IflF
 
 
t0644
t0644
lapbcm|fUUUdh$7$8$H$IfgdakdOT$$IflF
lapbcm|fUUUdh$7$8$H$IfgdakdOT$$IflF
 
 
t0644
t0644
lapfUUUdh$7$8$H$IfgdakdU$$IflF
lapfUUUdh$7$8$H$IfgdakdU$$IflF
 
 
t0644
t0644
lap‹fUUUdh$7$8$H$IfgdakdU$$IflF
lap‹fUUUdh$7$8$H$IfgdakdU$$IflF
 
 
t0644
t0644
lap‹ËNj΋؋fUUUdh$7$8$H$IfgdakdzV$$IflF
lap‹ËNj΋؋fUUUdh$7$8$H$IfgdakdzV$$IflF
 
 
t0644
t0644
lap؋ًfUUUdh$7$8$H$Ifgdakd3W$$IflF
lap؋ًfUUUdh$7$8$H$Ifgdakd3W$$IflF
 
 
t0644
t0644
lapfUdh$7$8$H$IfgdakdW$$IflF
lapfUdh$7$8$H$IfgdakdW$$IflF
 
 
t0644
t0644
lap!9Udh$7$8$H$IfgdaikdX$$Ifl "
lap!9Udh$7$8$H$IfgdaikdX$$Ifl "
t0644
t0644
lap
lap
UV_ofUUUdh$7$8$H$Ifgdakd.Y$$IflF
UV_ofUUUdh$7$8$H$Ifgdakd.Y$$IflF
 
 
t0644
t0644
lapfUUUdh$7$8$H$IfgdakdY$$IflF
lapfUUUdh$7$8$H$IfgdakdY$$IflF
 
 
t0644
t0644
lapɌfUUUdh$7$8$H$IfgdakdZ$$IflF
lapɌfUUUdh$7$8$H$IfgdakdZ$$IflF
 
 
t0644
t0644
lap fUUUdh$7$8$H$IfgdakdY[$$IflF
lap fUUUdh$7$8$H$IfgdakdY[$$IflF
 
 
t0644
t0644
lap":fUUUdh$7$8$H$Ifgdakd\$$IflF
lap":fUUUdh$7$8$H$Ifgdakd\$$IflF
 
 
t0644
t0644
lap:;>ENfUUUdh$7$8$H$Ifgdakd\$$IflF
lap:;>ENfUUUdh$7$8$H$Ifgdakd\$$IflF
 
 
t0644
t0644
lapNORYifUUUdh$7$8$H$Ifgdakd]$$IflF
lapNORYifUUUdh$7$8$H$Ifgdakd]$$IflF
 
 
t0644
t0644
lapijkۏ܏6TDf^S^SNSgdFY
lapijkۏ܏6TDf^S^SNSgdFY
$dha$gdadhgdakd=^$$IflF
$dha$gdadhgdakd=^$$IflF
 
 
t0644
t0644
lapDObqr јʚ˚͚̚Κh]hgdj&`#$gdZfgdu
lapDObqr јʚ˚͚̚Κh]hgdj&`#$gdZfgdu
$dha$gdahdh^hgda
$dha$gdahdh^hgda
&Fdhgda՘YkpxŚƚȚɚʚ͚Κhei0JmHnHuhei
&Fdhgda՘YkpxŚƚȚɚʚ͚Κhei0JmHnHuhei
hei0Jjhei0JUh4EhEhahnhahahha:
hei0Jjhei0JUh4EhEhahnhahahha:
0000&P   1FP:pZf. A!"#$%400&P   1FP:pj. A!"#$%s$$If!vh555#v#v#v:Vl
0000&P   1FP:pZf. A!"#$%400&P   1FP:pj. A!"#$%s$$If!vh555#v#v#v:Vl
t6555s$$If!vh555#v#v#v:Vl
t6555s$$If!vh555#v#v#v:Vl
t6555}DyK_Toc113479284}DyK_Toc113479284}DyK_Toc113479285}DyK_Toc113479285}DyK_Toc113479286}DyK_Toc113479286}DyK_Toc113479287}DyK_Toc113479287}DyK_Toc113479288}DyK_Toc113479288}DyK_Toc113479289}DyK_Toc113479289}DyK_Toc113479290}DyK_Toc113479290}DyK_Toc113479291}DyK_Toc113479291}DyK_Toc113479292}DyK_Toc113479292}DyK_Toc113479293}DyK_Toc113479293}DyK_Toc113479294}DyK_Toc113479294}DyK_Toc113479295}DyK_Toc113479295}DyK_Toc113479296}DyK_Toc113479296}DyK_Toc113479297}DyK_Toc113479297}DyK_Toc113479298}DyK_Toc113479298}DyK_Toc113479299}DyK_Toc113479299}DyK_Toc113479300}DyK_Toc113479300}DyK_Toc113479301}DyK_Toc113479301}DyK_Toc113479302}DyK_Toc113479302}DyK_Toc113479303}DyK_Toc113479303}DyK_Toc113479304}DyK_Toc113479304}DyK_Toc113479305}DyK_Toc113479305}DyK_Toc113479306}DyK_Toc113479306}DyK_Toc113479307}DyK_Toc113479307}DyK_Toc113479308}DyK_Toc113479308}DyK_Toc113479309}DyK_Toc113479309}DyK_Toc113479310}DyK_Toc113479310}DyK_Toc113479311}DyK_Toc113479311}DyK_Toc113479312}DyK_Toc113479312}DyK_Toc113479313}DyK_Toc113479313}DyK_Toc113479314}DyK_Toc113479314}DyK_Toc113479315}DyK_Toc113479315}DyK_Toc113479316}DyK_Toc113479316}DyK_Toc113479317}DyK_Toc113479317}DyK_Toc113479318}DyK_Toc113479318}DyK_Toc113479319}DyK_Toc113479319}DyK_Toc113479320}DyK_Toc113479320}DyK_Toc113479321}DyK_Toc113479321WqDd  d
t6555}DyK_Toc113479284}DyK_Toc113479284}DyK_Toc113479285}DyK_Toc113479285}DyK_Toc113479286}DyK_Toc113479286}DyK_Toc113479287}DyK_Toc113479287}DyK_Toc113479288}DyK_Toc113479288}DyK_Toc113479289}DyK_Toc113479289}DyK_Toc113479290}DyK_Toc113479290}DyK_Toc113479291}DyK_Toc113479291}DyK_Toc113479292}DyK_Toc113479292}DyK_Toc113479293}DyK_Toc113479293}DyK_Toc113479294}DyK_Toc113479294}DyK_Toc113479295}DyK_Toc113479295}DyK_Toc113479296}DyK_Toc113479296}DyK_Toc113479297}DyK_Toc113479297}DyK_Toc113479298}DyK_Toc113479298}DyK_Toc113479299}DyK_Toc113479299}DyK_Toc113479300}DyK_Toc113479300}DyK_Toc113479301}DyK_Toc113479301}DyK_Toc113479302}DyK_Toc113479302}DyK_Toc113479303}DyK_Toc113479303}DyK_Toc113479304}DyK_Toc113479304}DyK_Toc113479305}DyK_Toc113479305}DyK_Toc113479306}DyK_Toc113479306}DyK_Toc113479307}DyK_Toc113479307}DyK_Toc113479308}DyK_Toc113479308}DyK_Toc113479309}DyK_Toc113479309}DyK_Toc113479310}DyK_Toc113479310}DyK_Toc113479311}DyK_Toc113479311}DyK_Toc113479312}DyK_Toc113479312}DyK_Toc113479313}DyK_Toc113479313}DyK_Toc113479314}DyK_Toc113479314}DyK_Toc113479315}DyK_Toc113479315}DyK_Toc113479316}DyK_Toc113479316}DyK_Toc113479317}DyK_Toc113479317}DyK_Toc113479318}DyK_Toc113479318}DyK_Toc113479319}DyK_Toc113479319}DyK_Toc113479320}DyK_Toc113479320}DyK_Toc113479321}DyK_Toc113479321WqDd  d


C2Abasic%20exec"`Rp.h!𲴕ȷ{pJ&Fsp.h!𲴕ȷJFIF``CCbb"
C2Abasic%20exec"`Rp.h!𲴕ȷ{pJ&Fsp.h!𲴕ȷJFIF``CCbb"
}!1AQa"q2#BR$3br
}!1AQa"q2#BR$3br
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz
w!1AQaq"2B       #3Rbr
w!1AQaq"2B       #3Rbr
$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz?((((((((((((((+{Q/ZNJ<
9yacO~(|-}ES_k#/9|;cn>?j?_?OoÿnRy~O|[Կh' m*Z?WMb5h{6i?τ_fs>Sm{Ǿ#<. _xZOvTO{BEcwV6k?TEUx+?~/<]G$hu
cF\Iv-u;Z&VOMÚJMqjvV>
$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz?((((((((((((((+{Q/ZNJ<
9yacO~(|-}ES_k#/9|;cn>?j?_?OoÿnRy~O|[Կh' m*Z?WMb5h{6i?τ_fs>Sm{Ǿ#<. _xZOvTO{BEcwV6k?TEUx+?~/<]G$hu
cF\Iv-u;Z&VOMÚJMqjvV>
f_<~8x[yI'OkkO'>Ʊx97e8Դ9#|HW> [H7ïj|I]6SMLm~ʴ^䵖eMZm   ٿhOk+sxH.Ax5Ǟ/i^aMWOm֮!W?|y𶕯+O/ڋJ~j:o}{~bI_5%|kC1x¿t[~cL_MvFaok^:τ֞><1h_h/|Ck돂^,o߳?Yh>J9|94|@)|
se@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@žGxW=W.u7Þ𷆴+=s>#sgzi6Co//%$PW/%$QbYK?`L5|>ҿ>]Dg?    Jg-~|`_x?_goR'kF-k*oO#K}_Ğ
f_<~8x[yI'OkkO'>Ʊx97e8Դ9#|HW> [H7ïj|I]6SMLm~ʴ^䵖eMZm   ٿhOk+sxH.Ax5Ǟ/i^aMWOm֮!W?|y𶕯+O/ڋJ~j:o}{~bI_5%|kC1x¿t[~cL_MvFaok^:τ֞><1h_h/|Ck돂^,o߳?Yh>J9|94|@)|
se@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@žGxW=W.u7Þ𷆴+=s>#sgzi6Co//%$PW/%$QbYK?`L5|>ҿ>]Dg?    Jg-~|`_x?_goR'kF-k*oO#K}_Ğ
^+t_x_ύ׆|%kv2C㫟E
SY𿇴Y|_k~"ѼCI~g|k^c@h\|f~ӿěHO|m{$o[AK_>¯?>'
^+t_x_ύ׆|%kv2C㫟E
SY𿇴Y|_k~"ѼCI~g|k^c@h\|f~ӿěHO|m{$o[AK_>¯?>'

ogw;ڻ:>G]'4/-xV텷|Oִ_~׀?[(       x_>-gL'мew:Gzu]C?b xS:sH⟊?5

ogw;ڻ:>G]'4/-xV텷|Oִ_~׀?[(       x_>-gL'мew:Gzu]C?b xS:sH⟊?5
h$Oڪ7wמ7zs}$5?hiEoa~7>_5o~xkg]mԾ >ğbŝnY-b}9>>?u>'{5x
h$Oڪ7wמ7zs}$5?hiEoa~7>_5o~xkg]mԾ >ğbŝnY-b}9>>?u>'{5x
n>g
n>g
k㿗Y񧊾 xP|#ψWwo߇
]xc:iBjNe&
X{V{Yd~ο+{Yd~ο]
k㿗Y񧊾 xP|#ψWwo߇
]xc:iBjNe&
X{V{Yd~ο+{Yd~ο]
>8xDa[/K1|.> :N{jDkk4]7Qib/u.y(((((((((((((((((?aZ?cc@d?cQm2HWwXGvDmM̣$?/#oY讠诀?~"9?o&e?~"9?o&e/#oY讣/#oY讠诀?~"9?o&e?~"9?o&e/#oY讣/#oY讠WK?QhH+ύ>.~L럲_G2uƍ#େ/.-a/r<'3߄
#΍;Ϋ/|*tvι\a῅w/j^!Gu>|+~zW^=EC!
K_
cZ%>5o|Y~
>8xDa[/K1|.> :N{jDkk4]7Qib/u.y(((((((((((((((((?aZ?cc@d?cQm2HWwXGvDmM̣$?/#oY讠诀?~"9?o&e?~"9?o&e/#oY讣/#oY讠诀?~"9?o&e?~"9?o&e/#oY讣/#oY讠WK?QhH+ύ>.~L럲_G2uƍ#େ/.-a/r<'3߄
#΍;Ϋ/|*tvι\a῅w/j^!Gu>|+~zW^=EC!
K_
cZ%>5o|Y~
a|%ǁgKہp/7/h!Oxq/K_ƿ@_k7gQ_z۵tIژ46Ӭ zOF<.vſW~0WxXC~|Mm-Edk&>%D3M%֟he;'>e|^,doϋZŮO(Y/e~Zφ0XC<h_       
a|%ǁgKہp/7/h!Oxq/K_ƿ@_k7gQ_z۵tIژ46Ӭ zOF<.vſW~0WxXC~|Mm-Edk&>%D3M%֟he;'>e|^,doϋZŮO(Y/e~Zφ0XC<h_       
wL4uR]cW0|7iýCSi3ĿϬxŖo<m&.EovWǂ7▩w߇|'}|y]:Hnn]ek;SD%vQEQEQEQEQEQEQEQEQEQEQEQEQEQE|[e~haؿP Ff=<32ſv`
wL4uR]cW0|7iýCSi3ĿϬxŖo<m&.EovWǂ7▩w߇|'}|y]:Hnn]ek;SD%vQEQEQEQEQEQEQEQEQEQEQEQEQEQE|[e~haؿP Ff=<32ſv`
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(>2o4Uk#IFyC"7*92FHt,EF/7,_%KN>7,_%KNc+Y+c+Y7,_%KN>7,_%KNc+Y+c+Y7,_%KN>?m_,L?GX~n_-:soco'?n/ڏ?n=wI<%h^m˨|Oiy;|rΛio};
=F-&K(((((((((7Ks?h^!տi.y]'Bּ|Cqy49Y=ƕRxo_н|	Q~͗W*zXOti	=rKG;'MI6h-m=KiNI{[OiiZw@y5žG~`Ye;uؚOű~_5|uwW|#~^EޡN_τ]cQkb߆~IuMh9ǖvڌ>~ߴĿ=~g?i||;Q>%Wuk׈i}⧇!OX\>kb%]o        1s5ýg
(>2o4Uk#IFyC"7*92FHt,EF/7,_%KN>7,_%KNc+Y+c+Y7,_%KN>7,_%KNc+Y+c+Y7,_%KN>?m_,L?GX~n_-:soco'?n/ڏ?n=wI<%h^m˨|Oiy;|rΛio};
=F-&K(((((((((7Ks?h^!տi.y]'Bּ|Cqy49Y=ƕRxo_н|	Q~͗W*zXOti	=rKG;'MI6h-m=KiNI{[OiiZw@y5žG~`Ye;uؚOű~_5|uwW|#~^EޡN_τ]cQkb߆~IuMh9ǖvڌ>~ߴĿ=~g?i||;Q>%Wuk׈i}⧇!OX\>kb%]o        1s5ýg
>~<[Yԥ6~+!}5	S>!J,,%yҾg;>~0+OC}Kk:W'^kx;ύ|G~!Lt8q
>~<[Yԥ6~+!}5	S>!J,,%yҾg;>~0+OC}Kk:W'^kx;ύ|G~!Lt8q
_5}sTem+k>oMFM/|Xk4mZԣ~Ul_  e?>(>񗊴wðVz Owhυ?Ok~~/s#H_i|xG^1y?4GxiׇIOs>;3mo|>о
Ko     !ȼJ>46BxO~OVG7d~%\|Aiv{_
_5}sTem+k>oMFM/|Xk4mZԣ~Ul_  e?>(>񗊴wðVz Owhυ?Ok~~/s#H_i|xG^1y?4GxiׇIOs>;3mo|>о
Ko     !ȼJ>46BxO~OVG7d~%\|Aiv{_
ivz`l%{][][7$\Oic-D_{k6a(+[e@l?y?>#Sc0)gWv\4|Soj<|tYw@uO#:A5͟|
ivz`l%{][][7$\Oic-D_{k6a(+[e@l?y?>#Sc0)gWv\4|Soj<|tYw@uO#:A5͟|
yc>5:[[z%5Ιz^ֶzuqAw
J{_g>W_0ZE:]|.]=5X|SQ!?n aLc஽.j9{_Ş6
yc>5:[[z%5Ιz^ֶzuqAw
J{_g>W_0ZE:]|.]=5X|SQ!?n aLc஽.j9{_Ş6
ؿ6_uo\AI#5̶QG*^&P	,n4*n{_y[z=qq<ҤPAjK4*#o6>"i/BO&
;
ؿ6_uo\AI#5̶QG*^&P	,n4*n{_y[z=qq<ҤPAjK4*#o6>"i/BO&
;
m2;]o>PVkIo? %[ƷxJڔp}S      Ymr#G&g/\25WL!r33<r"KE,lI#u%]Hee%YH A?/|3bj((((*+@Xx?aZ
m2;]o>PVkIo? %[ƷxJڔp}S      Ymr#G&g/\25WL!r33<r"KE,lI#u%]Hee%YH A?/|3bj((((*+@Xx?aZ
(
(
(8|;Ø|Oo
>N>6GO%滯kwΧ-BټAj4Cv0όH|
x/Zg$λ~"]^%.ȵִ+oiw$A}k-tQEW&v%        gݴQ@Q@Q@Q@Q@Q@Q@Q@7>oOa f^V^ߋ|_携}hqԵF_ٙѨ_ZZG4{Z'o|1O"C᷆Ѵ^LTΡ
KQ)LJM+u?්,u+x?JFBL𶆶N
(8|;Ø|Oo
>N>6GO%滯kwΧ-BټAj4Cv0όH|
x/Zg$λ~"]^%.ȵִ+oiw$A}k-tQEW&v%        gݴQ@Q@Q@Q@Q@Q@Q@Q@7>oOa f^V^ߋ|_携}hqԵF_ٙѨ_ZZG4{Z'o|1O"C᷆Ѵ^LTΡ
KQ)LJM+u?්,u+x?JFBL𶆶N
oe%gȝ?;>+D+|C!~'݄>WǂV/
oe%gȝ?;>+D+|C!~'݄>WǂV/
{iῈv{x2zGs.E~0ih?%o~Ow?i|~xچc^m"n5W杨:fXo9/-Sÿ"7jrh_?Lۭ;[%:/Կ?dgv1Ϳx*_?:Mox×:ƋKڽNd3\$V@:v\:Ng8Fkk8a+CaEQEQEQEoQ٠~
{iῈv{x2zGs.E~0ih?%o~Ow?i|~xچc^m"n5W杨:fXo9/-Sÿ"7jrh_?Lۭ;[%:/Կ?dgv1Ϳx*_?:Mox×:ƋKڽNd3\$V@:v\:Ng8Fkk8a+CaEQEQEQEoQ٠~
(
(
n0`_۶>(((((((((((((((((*+@Xx?aZ
n0`_۶>(((((((((((((((((*+@Xx?aZ
(
(
(
(
+F}n<gixE-o$/Ϳߵwį2w?f8g!ӯмY?);c:Mfiiu!y`P<C
+F}n<gixE-o$/Ϳߵwį2w?f8g!ӯмY?);c:Mfiiu!y`P<C
3|_k7mn;u4;땂7%xN$i$eM>      ?ioS5M$9#B#B}E|=7I,(ǿ>~ԚW~Ο?kǚ̿׬g'6a/mM2Mo7ZYKx-C_?j?WoƏQ~گm;<-i_{ŚϏ|#{hۆĺ}|+-v˧Ih}|qWgg~W?c}熴➍G➥kпakORoWt'~&<tgП~|tc
3|_k7mn;u4;땂7%xN$i$eM>      ?ioS5M$9#B#B}E|=7I,(ǿ>~ԚW~Ο?kǚ̿׬g'6a/mM2Mo7ZYKx-C_?j?WoƏQ~گm;<-i_{ŚϏ|#{hۆĺ}|+-v˧Ih}|qWgg~W?c}熴➍G➥kпakORoWt'~&<tgП~|tc
->/x¿|3m
[V5=ź5ga~WZ|WV ^Ko^W_ (l,x9kxZ4+ju;|)5C0j+m׎#tЏs_g/Z*?>xlj絎O_xWN}&xkklIE3kM0_H'УG0_H'У_@|ER~?
->/x¿|3m
[V5=ź5ga~WZ|WV ^Ko^W_ (l,x9kxZ4+ju;|)5C0j+m׎#tЏs_g/Z*?>xlj絎O_xWN}&xkklIE3kM0_H'УG0_H'У_@|ER~?
5?|h|i)x@k_6~7|%>,~:߂C_r+[w[/Zʿ TEPEPEPUFWfA-}_V_ĵQEQEW);ik_h'~ Ժ<"//Lα"~^#%V|⏌[CƹY's|U⯈6w??
5?|h|i)x@k_6~7|%>,~:߂C_r+[w[/Zʿ TEPEPEPUFWfA-}_V_ĵQEQEW);ik_h'~ Ժ<"//Lα"~^#%V|⏌[CƹY's|U⯈6w??
7S$7k/@?vhaxC
/mCA_ƿ_?_&7Z=Jާ㯎gtooh_>]ch~9{oZnkdž~'Iy\
7S$7k/@?vhaxC
/mCA_ƿ_?_&7Z=Jާ㯎gtooh_>]ch~9{oZnkdž~'Iy\
xcĚ~b8)&ߵ׿/h__M?h>&"3Clutv:k=>}ा.Ծ<-	}h0}㏉='	|";NO(>7:爢Y|Ӿ3M?2+w#~__o?wkW$e^/o9o)𞳯kZꚭ܁
xcĚ~b8)&ߵ׿/h__M?h>&"3Clutv:k=>}ा.Ծ<-	}h0}㏉='	|";NO(>7:爢Y|Ӿ3M?2+w#~__o?wkW$e^/o9o)𞳯kZꚭ܁
$*p

~|=]Yv1´\ wF썌2Hsqј| KhU8>4Kc/_~_\|b}@ qј| Kk;i+ߋ=`־2)y|^ hz'оSoxGIżڌo3̶y5W(=#;&?/ٿh75|"?Io[­V&zINuRm֎t+?t3?ٯJ_%OǟZfo?U> mg3M'W{?>)#=c^nce[U8>5Ng gb3|O4  |'GKPo~+O_<sjVx:M

$*p

~|=]Yv1´\ wF썌2Hsqј| KhU8>4Kc/_~_\|b}@ qј| Kk;i+ߋ=`־2)y|^ hz'оSoxGIżڌo3̶y5W(=#;&?/ٿh75|"?Io[­V&zINuRm֎t+?t3?ٯJ_%OǟZfo?U> mg3M'W{?>)#=c^nce[U8>5Ng gb3|O4  |'GKPo~+O_<sjVx:M

jziwڿKc/_N?3AiM' &	seKc/_N?3AiM|P~?o~
~Ϳ	~OV^
%;Sz9uldR>~_\|b}_&~7?>Q(m=0i'_4!%%_Z>34@D49 ~EQEQEoQ٠~
u^;Awǟ
??kOxkZOq'j<{Z]Ox:w;KWYi?h;G/h(}ros?3ZغǗe
jziwڿKc/_N?3AiM' &	seKc/_N?3AiM|P~?o~
~Ϳ	~OV^
%;Sz9uldR>~_\|b}_&~7?>Q(m=0i'_4!%%_Z>34@D49 ~EQEQEoQ٠~
u^;Awǟ
??kOxkZOq'j<{Z]Ox:w;KWYi?h;G/h(}ros?3ZغǗe
|5⏅f{G&O0ˮ~ο_t{_s񭎻/ޭ^-[7ZmNj x3>%jikc6-^|'4ڷk
]E^hxzx7V_uOZMkUys+H/{u'|OxW-|Q/~05? |=/]K]Nߗ`?wG?7⟄􋯎||fƛKW?|6|~5kg)L/~el[R~ޟ[_Կ$>3~>2O	6H>+·_u^!k}nKփY~Z4^3joMw6&kᾉu4|/}7Ǐ5ψkW/ៈ-s{ƠO	-~HOτ|7Oh1ߦ?h^ڭzn٭ޥ}yr!^]\\-熼[.2qsx>5;4}@ Bn4[TǍk+idi=?8wOt6d෍bxWat\?ko[3=[       ??bb=OH(VTEpƒPoE|
Q]1>?@~T~OGDE}_w>!OFU]|{Vk;c.Ԛuk4}C|>2t|?X>%ZF+k1o#}9
Q]1>?@~=   "S,;gGFy?`+G>fߖ>*kU)QEҟ~߳W}o+sgo|pψ>s񧍿en◈#~62D]x/O٣?;Co~IB{"=+º]e%ӥ
޻
˦iRN[UIoɿ|ҼwAzQ_įY\56?~՚T:l>'ZD61jũ.-#'|9
|5⏅f{G&O0ˮ~ο_t{_s񭎻/ޭ^-[7ZmNj x3>%jikc6-^|'4ڷk
]E^hxzx7V_uOZMkUys+H/{u'|OxW-|Q/~05? |=/]K]Nߗ`?wG?7⟄􋯎||fƛKW?|6|~5kg)L/~el[R~ޟ[_Կ$>3~>2O	6H>+·_u^!k}nKփY~Z4^3joMw6&kᾉu4|/}7Ǐ5ψkW/ៈ-s{ƠO	-~HOτ|7Oh1ߦ?h^ڭzn٭ޥ}yr!^]\\-熼[.2qsx>5;4}@ Bn4[TǍk+idi=?8wOt6d෍bxWat\?ko[3=[       ??bb=OH(VTEpƒPoE|
Q]1>?@~T~OGDE}_w>!OFU]|{Vk;c.Ԛuk4}C|>2t|?X>%ZF+k1o#}9
Q]1>?@~=   "S,;gGFy?`+G>fߖ>*kU)QEҟ~߳W}o+sgo|pψ>s񧍿en◈#~62D]x/O٣?;Co~IB{"=+º]e%ӥ
޻
˦iRN[UIoɿ|ҼwAzQ_įY\56?~՚T:l>'ZD61jũ.-#'|9
-~?^𖇥sg4Wk}hPmu/BP50meAE|
Q]1>?@~T~OGDE}_Wqʗb|Ā?"+ڋ~z?؇
z~S|Y]ZD,[{4o[$$u
[xc͐H(Q@Q@Q@V_ĵ|[e~hQEQEQ\   ů
-~?^𖇥sg4Wk}hPmu/BP50meAE|
Q]1>?@~T~OGDE}_Wqʗb|Ā?"+ڋ~z?؇
z~S|Y]ZD,[{4o[$$u
[xc͐H(Q@Q@Q@V_ĵ|[e~hQEQEQ\   ů
^+KkwQ/ޟꚥכyy"Vz(+WK?Qkn((((1~į#2KKv\B[Iբ(QhإEx?NOZF?j'uQѵkX=\ӥiEv][]GA |uv'?gϊ?M/:{ռY')jϭ66jxFS
^+KkwQ/ޟꚥכyy"Vz(+WK?Qkn((((1~į#2KKv\B[Iբ(QhإEx?NOZF?j'uQѵkX=\ӥiEv][]GA |uv'?gϊ?M/:{ռY')jϭ66jxFS
r~ѿ~^h4'Z˪>(t5ۯ?K5?|@e77tUx3J)g4G?Ox7HS"civfEz}J4٤o>u_^$Pw/o
r~ѿ~^h4'Z˪>(t5ۯ?K5?|@e77tUx3J)g4G?Ox7HS"civfEz}J4٤o>u_^$Pw/o
>4oZ7֭1xஙQ|3$e]MoM#|4Wʼn0ߴ]o6u?ڲ\}Mj?׉/5ߴ9Sc{k^u#7KI?dmJ}z+|[%K6
Z'8<#Jtce|U>|j<9J~$Q-S'״صXGq&c Go.[Q‹f?!ٮnVk{[MwVw-(?Ogu¿ï_Ř|a'7sG$?h9ׅӽz_#Ɵ|7ߊ?-ߴ%g׏l߅z.uUx#_ߴIiۚ_
>4oZ7֭1xஙQ|3$e]MoM#|4Wʼn0ߴ]o6u?ڲ\}Mj?׉/5ߴ9Sc{k^u#7KI?dmJ}z+|[%K6
Z'8<#Jtce|U>|j<9J~$Q-S'״صXGq&c Go.[Q‹f?!ٮnVk{[MwVw-(?Ogu¿ï_Ř|a'7sG$?h9ׅӽz_#Ɵ|7ߊ?-ߴ%g׏l߅z.uUx#_ߴIiۚ_
j^%Qgcf~ZNZiVZAam}qZYQoqi*CWjOxsE|P[x.Sx^.x3ow;힯?^$wx?xw(O/fK{o%
?7Q6
j^%Qgcf~ZNZiVZAam}qZYQoqi*CWjOxsE|P[x.Sx^.x3ow;힯?^$wx?xw(O/fK{o%
?7Q6
&p٠~
&p٠~
(
(
(8|GGĈ|Oqx
(8|GGĈ|Oqx
k~+4
#HSrGEQE%    gݵ|jg`?m}EPEPEPEPEPEPEPEPǿPl
k~+4
#HSrGEQE%    gݵ|jg`?m}EPEPEPEPEPEPEPEPǿPl
@>
@>
a%X6{eq|{~ؿйMoJ"涸:6       WE#??`-cƵ 4G4s"_!GGȟQk=9?/{Kuڗ7~)|2|AOfx|]_YMJռCkPEo|Ὴ?n)}z_׈?b-4)|R{Ʊ+5{VyexD
a%X6{eq|{~ؿйMoJ"涸:6       WE#??`-cƵ 4G4s"_!GGȟQk=9?/{Kuڗ7~)|2|AOfx|]_YMJռCkPEo|Ὴ?n)}z_׈?b-4)|R{Ʊ+5{VyexD
~R4;K-Y5k5?6
~R4;K-Y5k5?6
?mx
?mx
>4s
>4s
oſ|!i?Ѵoض3C"ZX/ď>'ּQA%IxgDtOkxw_?c_
nO9|G៍zxK|_x+_
43,5?hZ~x<ͯ}u9?/{s"_!G_@dO(ڃ>8x#Cω.o?P/=[?>xC̾tf+Yo)J~W6Uir
oſ|!i?Ѵoض3C"ZX/ď>'ּQA%IxgDtOkxw_?c_
nO9|G៍zxK|_x+_
43,5?hZ~x<ͯ}u9?/{s"_!G_@dO(ڃ>8x#Cω.o?P/=[?>xC̾tf+Yo)J~W6Uir
(
(
(
(
(>2o4Uk
(>2o4Uk
(?h?V%((G]|N/   xú?~n<;h?mlşqA-_7]2Fڊ((?m_,L?GXWK?Qh(
(?h?V%((G]|N/   xú?~n<;h?mlşqA-_7]2Fڊ((?m_,L?GXWK?Qh(
(
(
(
(
(
(
(
(
(
(
(
(
(>u>xQ*-:&ο~x7L-xᧉ9JXltn}J[ɢI{c7qh^.4h?hب-ƕZXO$%hesuVF ~Q@T~OGDE#$Q_@T~OGDEyUߍ~+|6ۯ#y~HA+(Կ]3]5ƃG@%woEuGoujzuARڟsigsqO?Əf]z˨V_M@Sf$f{7-7C"׌~xK֧+^Itv6A>6XJE|
Q]1>?@~T~OGDE}E|
Q]1>?@~S<~|c|juE🀭K6Eyž-Եu[M>Ko7\J孭RkZ((((?aZ2o4Uk((<';kڟA?xR>#7zf'5mY5M=Ӽ/$.eHVhz_ɡk:VNgi]WFk9[=WLSoi;)kV
(>u>xQ*-:&ο~x7L-xᧉ9JXltn}J[ɢI{c7qh^.4h?hب-ƕZXO$%hesuVF ~Q@T~OGDE#$Q_@T~OGDEyUߍ~+|6ۯ#y~HA+(Կ]3]5ƃG@%woEuGoujzuARڟsigsqO?Əf]z˨V_M@Sf$f{7-7C"׌~xK֧+^Itv6A>6XJE|
Q]1>?@~T~OGDE}E|
Q]1>?@~S<~|c|juE🀭K6Eyž-Եu[M>Ko7\J孭RkZ((((?aZ2o4Uk((<';kڟA?xR>#7zf'5mY5M=Ӽ/$.eHVhz_ɡk:VNgi]WFk9[=WLSoi;)kV
(
(
n0`_۶>((((h@DψS_K/xľ3">Ft.5ov,WtXo߶Ïzf/"Ѽx/7uh~ލox_xľwV}'ƗZ_i\iQ~x;]md|mkxߊ4O>x>񎕫hz-z6~FK6{ԾӴ_şx|WO|n
ϟ_~ ώ4g
n0`_۶>((((h@DψS_K/xľ3">Ft.5ov,WtXo߶Ïzf/"Ѽx/7uh~ލox_xľwV}'ƗZ_i\iQ~x;]md|mkxߊ4O>x>񎕫hz-z6~FK6{ԾӴ_şx|WO|n
ϟ_~ ώ4g
xNWvtcg꺴GBյn?G>*|05g>$Nkxz
xNWvtcg꺴GBյn?G>*|05g>$Nkxz
<~m_nMcF>        ^G),>xS^~^xV#^񯂼/xqJxy:5og?*?a<}O$֮6+-`~ ֵcu{ᧈ`g}C?c{Owh=/Ğ5~
<~m_nMcF>        ^G),>xS^~^xV#^񯂼/xqJxy:5og?*?a<}O$֮6+-`~ ֵcu{ᧈ`g}C?c{Owh=/Ğ5~
[iX/f     O3\]׌5OxOѼYzo?^#'_x7_x
[iX/f     O3\]׌5OxOѼYzo?^#'_x7_x
}x|9xG▟55O
τPY^Zދ;O`ڏxÞ0l]Y|sGҮtoZƛ=JFZn-IxbDd]<%Əskz4ë(0`_۶?m_,L?GX袊((('F--7~#xTH
}x|9xG▟55O
τPY^Zދ;O`ڏxÞ0l]Y|sGҮtoZƛ=JFZn-IxbDd]<%Əskz4ë(0`_۶?m_,L?GX袊((('F--7~#xTH
x#@#:=H~(2;oX^K?
x#@#:=H~(2;oX^K?
|iY+o|g2g+;;;x[Vַ3P\3A+P߀<|`7Vg|g+Ҿ3~ZNmsN񆩯'V˩i8/w?hp~&y4рz~>!kS-Ŀ
|iY+o|g2g+;;;x[Vַ3P\3A+P߀<|`7Vg|g+Ҿ3~ZNmsN񆩯'V˩i8/w?hp~&y4рz~>!kS-Ŀ
`OS[~c~Oռ]hw߁
o.~%Lv>+o^?&֑kIX<%}gR6+χ>3|+irjdZ$>3oBNׯ|9ះz4ZŸk:֗jz#ׇ=?ԡh?|sP|NƣhW}@_lz׵oj-U}+jō<>'>Pڧď׋Wqk
~'iVGOOh_oXk&K>"Y:M{_D?cfw NG|o+WV0$>Ëg6|^Z#$(oxMcB^^O7OWx%Ֆcku<=5tWthkծoE#|9>iSjo-$
`OS[~c~Oռ]hw߁
o.~%Lv>+o^?&֑kIX<%}gR6+χ>3|+irjdZ$>3oBNׯ|9ះz4ZŸk:֗jz#ׇ=?ԡh?|sP|NƣhW}@_lz׵oj-U}+jō<>'>Pڧď׋Wqk
~'iVGOOh_oXk&K>"Y:M{_D?cfw NG|o+WV0$>Ëg6|^Z#$(oxMcB^^O7OWx%Ֆcku<=5tWthkծoE#|9>iSjo-$
|]/#]v
|]/#]v
x{ox7_n4xGqg3[&i^Z}B'.g>hi⏆eLJi/٣㿍
x{ox7_n4xGqg3[&i^Z}B'.g>hi⏆eLJi/٣㿍
\n@42Y~×!7GP<'bQ54Qfy)$"A8mɂ?hנ)?
OQ>GGUúr
\n@42Y~×!7GP<'bQ54Qfy)$"A8mɂ?hנ)?
OQ>GGUúr
C)#">}GG0'^;¿),_,9*W
C)#">}GG0'^;¿),_,9*W
m~jm?߃iߊÿ|(ҟQMA~(_`lD3KJݏ[{\u[lFi;3Eg_YxsU4~js.io~V7,l<]gT+K=g\[M~6
gػ6qS~!A~^h=zjL>4-tsXKRiz}SKڗ4_5㷈hK<
⯉
|>2oxfmK៎?{o?G^෍eɾ4_e^xA~~
m~jm?߃iߊÿ|(ҟQMA~(_`lD3KJݏ[{\u[lFi;3Eg_YxsU4~js.io~V7,l<]gT+K=g\[M~6
gػ6qS~!A~^h=zjL>4-tsXKRiz}SKڗ4_5㷈hK<
⯉
|>2oxfmK៎?{o?G^෍eɾ4_e^xA~~
qm]LZ$JZ^Gq͍QI"WE/^|'q!tƞ5?gIG޴Qe[[+128j,(((*+@Xx*  @?$>xI9$?l+/ʀ=[?
qm]LZ$JZ^Gq͍QI"WE/^|'q!tƞ5?gIG޴Qe[[+128j,(((*+@Xx*  @?$>xI9$?l+/ʀ=[?
?ß¿),(?_,9*?l+/ʀ=O   xFI~(oG        xq)"mŶ_r_-ReYPQ^g_YxsTWE/^z|jg`?m}g_YxsUwxþ0}]IeIn?'Ke$fA0iҊ(
?ß¿),(?_,9*?l+/ʀ=O   xFI~(oG        xq)"mŶ_r_-ReYPQ^g_YxsTWE/^z|jg`?m}g_YxsUwxþ0}]IeIn?'Ke$fA0iҊ(
(
(
(
(
(
(
(
(
(
(
(
(
((zf麎:隶[麞o%-]\-ͼC4o߰/c?|'8[
o\cxO-|Gfhzghu4>S~aguu$P?S٪_7vwJO*Mͭݥk5͵?=K;,nH{~c߲#Ob{~c߲#Ob埳;M7Y:9STzwF= 4*wF= 4*Y:9STz?埳;M7@{~c߲#Ob{~c߲#Ob埳;M7Y:9STzwF= 4*wF= 4*Y:9STz?埳;M7@{~c߲#Ob_[7Fo/xz/GxCkI.t}C𭎭\IkqqlY]#4,9][埳;M7H?f]~$g_og4x*[ZwR7OٗtmGT[a1.䅡RwEQEQE_9PD)c9#U7_Utt`Uԕe`UAя~??;ʰ138?v5Ĥ/#%W(O'
((zf麎:隶[麞o%-]\-ͼC4o߰/c?|'8[
o\cxO-|Gfhzghu4>S~aguu$P?S٪_7vwJO*Mͭݥk5͵?=K;,nH{~c߲#Ob{~c߲#Ob埳;M7Y:9STzwF= 4*wF= 4*Y:9STz?埳;M7@{~c߲#Ob{~c߲#Ob埳;M7Y:9STzwF= 4*wF= 4*Y:9STz?埳;M7@{~c߲#Ob_[7Fo/xz/GxCkI.t}C𭎭\IkqqlY]#4,9][埳;M7H?f]~$g_og4x*[ZwR7OٗtmGT[a1.䅡RwEQEQE_9PD)c9#U7_Utt`Uԕe`UAя~??;ʰ138?v5Ĥ/#%W(O'
o@ǿdFQǿdFW?g_'?*w
o@ǿdFQǿdFW?g_'?*w
oG
oG
o@ǿdFQǿdFW?g_'?*w
o@ǿdFQǿdFW?g_'?*w
oG
oG
~=nt;?ཻѮ5
~=nt;?ཻѮ5
wIԦҮ4:N'XZ[X?z~οNoT7޾[`|&I3<	~Ԛeq~!?9k~{?O淴?|.=lj/bԵ;-&Mѵ:((jPi5Cay.j:NGo#_jiڼeЊB'T=:[i~)~?[V㯄G~^^
GOM[Xt=G|O麿        n8/
wIԦҮ4:N'XZ[X?z~οNoT7޾[`|&I3<	~Ԛeq~!?9k~{?O淴?|.=lj/bԵ;-&Mѵ:((jPi5Cay.j:NGo#_jiڼeЊB'T=:[i~)~?[V㯄G~^^
GOM[Xt=G|O麿        n8/
h^~)kw
h^~)kw
όf%Zo^2]VM7C+Gg酝ԗSSosQEQEQEQEQEQE'L@Lxֽ7O^q]:O?Kk{+|Q>5|:}|fu|6/?oJGOjv]_IiIpS>6~^<7qkB縋<\MvM6YcDV%XIJ+#t|%o#6)(mW?k(tj-?طſo'Ǿ4AxÞmO#Դ;χ#ֵ	ig_K	4VuMB/3ž,o>x=PO&k$߱OŸe
όf%Zo^2]VM7C+Gg酝ԗSSosQEQEQEQEQEQE'L@Lxֽ7O^q]:O?Kk{+|Q>5|:}|fu|6/?oJGOjv]_IiIpS>6~^<7qkB縋<\MvM6YcDV%XIJ+#t|%o#6)(mW?k(tj-?طſo'Ǿ4AxÞmO#Դ;χ#ֵ	ig_K	4VuMB/3ž,o>x=PO&k$߱OŸe
~:x|F
]i':׊  >:w,xѼk^ ebm]F;hk_[YGڕ|?MGCi7־ڍDž|owa{{<#ᫍ_VEѴiMF]:nZ^#t|%~Q_o#6)(?_I@}͕@?gܨ?_I^9D?wf=_?
jO_|eGo5Ӽ1(C&=ūjzjPCe
3PyEPEPEPUFWfA-}_%޿m$5>!Y1|>>jPv\ѴZZLT{_>9$_3?_I@W4GHͺ;J??nGOmRP
v:nh۷uwE~D~ݿۯ#t|%~Q_o#6)(?_I@%    gݴo#6)+UC|u/|o#X|oS[_~> H4ti:~xcZeyxBM6Or<~QE'~:u	~؞?f>"tqpujWz/hd+<0IirB_g
~:x|F
]i':׊  >:w,xѼk^ ebm]F;hk_[YGڕ|?MGCi7־ڍDž|owa{{<#ᫍ_VEѴiMF]:nZ^#t|%~Q_o#6)(?_I@}͕@?gܨ?_I^9D?wf=_?
jO_|eGo5Ӽ1(C&=ūjzjPCe
3PyEPEPEPUFWfA-}_%޿m$5>!Y1|>>jPv\ѴZZLT{_>9$_3?_I@W4GHͺ;J??nGOmRP
v:nh۷uwE~D~ݿۯ#t|%~Q_o#6)(?_I@%    gݴo#6)+UC|u/|o#X|oS[_~> H4ti:~xcZeyxBM6Or<~QE'~:u	~؞?f>"tqpujWz/hd+<0IirB_g
`f
W7_wsᨼO_xcL~e__{_A{,Oi^/b5S[?I.m-,-Ẵ[k[thUxh)ԩ Og#U
`f
W7_wsᨼO_xcL~e__{_A{,Oi^/b5S[?I.m-,-Ẵ[k[thUxh)ԩ Og#U
~
~
ZƷ|(}?^m:c='IN)dӭf#(
ZƷ|(}?^m:c='IN)dӭf#(
(
(
(
(
(
(
(
(
(
(
_|9o1
xGxYG<=\淪N
iWS2okH^OF?]{a;x,/^(ß?3<&]&ôhZn]xXAJoXjvVǗ,^}MNM\*n"#>!?oƾ$izmGOşٷEӾ#YwOÝOSBS⮎u?
xv6??E
_|9o1
xGxYG<=\淪N
iWS2okH^OF?]{a;x,/^(ß?3<&]&ôhZn]xXAJoXjvVǗ,^}MNM\*n"#>!?oƾ$izmGOşٷEӾ#YwOÝOSBS⮎u?
xv6??E
~1|wh
&?5xi󦮟a!İxcix~(ekAzofڧ~-xY	ࢿ4
Ktk
?ޱ*F0~z_g56?#k:e#B4k-ZXc_TSZKR4/S5'M?E,
gXhaqiڞpc(_;/~B|m~7a8{G|hT֬>/x;ƀx3Ɠ{[]b]b+]k_{4O|JֿcYυ/utZG꿳~<:u֣vnoEbѵH-u'K֬R,:TMOK=I-uhPu=?Y]z	-/gYԼx{/wž2$qiz,{m
#7-W~
	BExS_oF|5}@E_|5{T_Loh^|ScZ]s❝_xWPxF4Fg?^O{o_]TQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEsDd3I^
~1|wh
&?5xi󦮟a!İxcix~(ekAzofڧ~-xY	ࢿ4
Ktk
?ޱ*F0~z_g56?#k:e#B4k-ZXc_TSZKR4/S5'M?E,
gXhaqiڞpc(_;/~B|m~7a8{G|hT֬>/x;ƀx3Ɠ{[]b]b+]k_{4O|JֿcYυ/utZG꿳~<:u֣vnoEbѵH-u'K֬R,:TMOK=I-uhPu=?Y]z	-/gYԼx{/wž2$qiz,{m
#7-W~
	BExS_oF|5}@E_|5{T_Loh^|ScZ]s❝_xWPxF4Fg?^O{o_]TQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEsDd3I^


C,Aalignment"`R9U1]{}@F9U1]{}@JFIF``CC'"
C,Aalignment"`R9U1]{}@F9U1]{}@JFIF``CC'"
}!1AQa"q2#BR$3br
}!1AQa"q2#BR$3br
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz
w!1AQaq"2B       #3Rbr
w!1AQaq"2B       #3Rbr
$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz?(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((I$p$ȑE4#*GhITDPYUPI iQEQEQHa ARUՁR:
$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz?(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((I$p$ȑE4#*GhITDPYUPI iQEQEQHa ARUՁR:
°uSƞ4,o'_:oWWMм   5?A>KRR>:ϋ$>9GQEQEQEQEQE[ࣿ_-gTgK|hh?~jx?$ˡZ4
VW5'>&8|mo
űxWT|^A,גe׉!b	oca(Yu˯S	]|揭uZ7Il~ ~1|6mbM[Fk^Eƛs{j_O[i%jVOSDn:g?Gorً_{j
;Zt5wj}:?d#<~ÿσ<        =<9+eϊE߲O^?JZt|K4ix]F}ާ$Od$?&-~U?_D8~qrTD?AZ]ޟA}A-h~Z|7
:ڍ:g6kZ֭Moa:]\Ageg73EN
°uSƞ4,o'_:oWWMм   5?A>KRR>:ϋ$>9GQEQEQEQEQE[ࣿ_-gTgK|hh?~jx?$ˡZ4
VW5'>&8|mo
űxWT|^A,גe׉!b	oca(Yu˯S	]|揭uZ7Il~ ~1|6mbM[Fk^Eƛs{j_O[i%jVOSDn:g?Gorً_{j
;Zt5wj}:?d#<~ÿσ<        =<9+eϊE߲O^?JZt|K4ix]F}ާ$Od$?&-~U?_D8~qrTD?AZ]ޟA}A-h~Z|7
:ڍ:g6kZ֭Moa:]\Ageg73EN
Nh/5CFw/wMoOҧ?>|_WjMO-1jד[[ t|<пh_dw=S៌7H𾱡g~Mv욇oMW{{H25ږPQ	G|aUo2~_N߳W»+[M"( Uge~]SEo4[WPGi|_,Y?~#[-?o"#(O^8]5kپпSZ?je~xχ~ |V2i5;m_i*|\yo-#֭u;]U,)/H'A_+	aSF'YƿgwCqOg|euM+O44->GMsOXůįxW_^MS)h_o)qh3Oh~GG
S_7>"Ф>!RX/Gư~^\
Nh/5CFw/wMoOҧ?>|_WjMO-1jד[[ t|<пh_dw=S៌7H𾱡g~Mv욇oMW{{H25ږPQ	G|aUo2~_N߳W»+[M"( Uge~]SEo4[WPGi|_,Y?~#[-?o"#(O^8]5kپпSZ?je~xχ~ |V2i5;m_i*|\yo-#֭u;]U,)/H'A_+	aSF'YƿgwCqOg|euM+O44->GMsOXůįxW_^MS)h_o)qh3Oh~GG
S_7>"Ф>!RX/Gư~^\
oZ~
jkώ}~?վşF>)V~>~^x:^6мqm/ik^j>%->O&׀Bic|֏xN/o/>!|eֳZ55iՙ[9dž%mZdCZ\?NYM}ϋ-AhW'GԺIDٻ~,%?`_&)cMsxef^2_@]|S8:z>Mޛi+π#G=Nom?߱]zৎ!<7:jQ??|$Ksߎeo|Q,4'◀<τG#>5_Jf׼      J6o _%|UiO|seh)𷆿(>|g?|1='Gˆ|'=;<#_x@fxU?ه~7u/[;oj5o[:wM#E<\mDMilKu;i֮xmu	c&w?o_د_+~/>ΏWgW
3gfe?YKioZ!wv_u+7T:(뷳2?d^!7O?gg  _xg?xgN]
Ixj~[};W{O:((((*)     nf)'D 4(YQK1
oZ~
jkώ}~?վşF>)V~>~^x:^6мqm/ik^j>%->O&׀Bic|֏xN/o/>!|eֳZ55iՙ[9dž%mZdCZ\?NYM}ϋ-AhW'GԺIDٻ~,%?`_&)cMsxef^2_@]|S8:z>Mޛi+π#G=Nom?߱]zৎ!<7:jQ??|$Ksߎeo|Q,4'◀<τG#>5_Jf׼      J6o _%|UiO|seh)𷆿(>|g?|1='Gˆ|'=;<#_x@fxU?ه~7u/[;oj5o[:wM#E<\mDMilKu;i֮xmu	c&w?o_د_+~/>ΏWgW
3gfe?YKioZ!wv_u+7T:(뷳2?d^!7O?gg  _xg?xgN]
Ixj~[};W{O:((((*)     nf)'D 4(YQK1
        >[?       >)xAK]s|oX"V|3ZuĖӫr[C#24S*VF`:gط7ƿğl|KG^^,M{~)C|x#a-FX=N[HmIw0kQOٺ}cQמ>/#>e&i_G­^)?w%(c0`ekF~3x[OGWP{wU~2YIĐk?5Ju(.~JhW%->
hW

#CM'GҬm$Zva
CmmPƠ*"+V>	[ƒG~,nij/Zx#̤
        >[?       >)xAK]s|oX"V|3ZuĖӫr[C#24S*VF`:gط7ƿğl|KG^^,M{~)C|x#a-FX=N[HmIw0kQOٺ}cQמ>/#>e&i_G­^)?w%(c0`ekF~3x[OGWP{wU~2YIĐk?5Ju(.~JhW%->
hW

#CM'GҬm$Zva
CmmPƠ*"+V>	[ƒG~,nij/Zx#̤
hzkZG{ ;|vV?g#Vԭ1mJCWR𗄵+]Kÿ|;i+]ÏA?u_{3xw>.M(?gص]o^.-Ek{󵿋.nhZ6ӟt/7Z_<.YkӵM:Ihd^9#u{{K`^|uSŞfs?#w]j:ޣtMc2MBOv˭h[e^@-/ŞnowZ5iڦt42ݥCwcyW[~Y+G|'JW«mK+[+iY_|'wޛ}CF𷅴o|Iw
V/~O¯VڗWW]ԳԿ?O=67Poh.x?"hOy    z
g>)|]'9ϊXEOxOo?ٷ?~*__l}ОR?+O5-Cϊ|SOs{|u8
+
hzkZG{ ;|vV?g#Vԭ1mJCWR𗄵+]Kÿ|;i+]ÏA?u_{3xw>.M(?gص]o^.-Ek{󵿋.nhZ6ӟt/7Z_<.YkӵM:Ihd^9#u{{K`^|uSŞfs?#w]j:ޣtMc2MBOv˭h[e^@-/ŞnowZ5iڦt42ݥCwcyW[~Y+G|'JW«mK+[+iY_|'wޛ}CF𷅴o|Iw
V/~O¯VڗWW]ԳԿ?O=67Poh.x?"hOy    z
g>)|]'9ϊXEOxOo?ٷ?~*__l}ОR?+O5-Cϊ|SOs{|u8
+
'$q?WQEQEQEQEQEQE~B?jׅg8~3w?E{/|a,xEEOE{௉^=<'Yk}fqgWSno]˿"wK/?mo?~4Cߊc/j~.??nxHg΍c|!j7ľ>b@?:+?iLo>0?h_7<~!|C|i      _oG_WC_^g\-Cq^\B|K_[~ϿENM?^
'$q?WQEQEQEQEQEQE~B?jׅg8~3w?E{/|a,xEEOE{௉^=<'Yk}fqgWSno]˿"wK/?mo?~4Cߊc/j~.??nxHg΍c|!j7ľ>b@?:+?iLo>0?h_7<~!|C|i      _oG_WC_^g\-Cq^\B|K_[~ϿENM?^
/~xW>suotHҴO]槤i6HCssl[ȷw[̢k['$?/~!(~|Aվ4X'
`xs?ُ?|ȳN}Gv1/~uy5MN+
.?ۣ[g?c_٫nD~P(o[|h"i?Z2Ao'[_<|->E1UtxGÏ't>-//?߃%~-^u>]1I/¾<ҵ/6ρui]h@xsÚn:>MGҴ
        kimhh66eӴm4׳!Xbؼ6m*nWm~~*    }ƯxXП~6So$:<;~<=_xN+[^&9#>
/~xW>suotHҴO]槤i6HCssl[ȷw[̢k['$?/~!(~|Aվ4X'
`xs?ُ?|ȳN}Gv1/~uy5MN+
.?ۣ[g?c_٫nD~P(o[|h"i?Z2Ao'[_<|->E1UtxGÏ't>-//?߃%~-^u>]1I/¾<ҵ/6ρui]h@xsÚn:>MGҴ
        kimhh66eӴm4׳!Xbؼ6m*nWm~~*    }ƯxXП~6So$:<;~<=_xN+[^&9#>
oGOk>3O𵵧^5ktK
oGOk>3O𵵧^5ktK

I;Keo_s7o'ā⇁~"5/

I;Keo_s7o'ā⇁~"5/
+
*OɇM,|Qu^sch~O_k/&v|M.iѮo}""Y緇GHSYbE*+4??fٯHiw৊+kf
ot|*~/l|
7HvNO߈u{Ci&F࡞2_~(['x|s?:gOgn0-~P       I{+$?+|RҾ9|CB4|REP4>|[C^W&7hB+(<3)/
+
*OɇM,|Qu^sch~O_k/&v|M.iѮo}""Y緇GHSYbE*+4??fٯHiw৊+kf
ot|*~/l|
7HvNO߈u{Ci&F࡞2_~(['x|s?:gOgn0-~P       I{+$?+|RҾ9|CB4|REP4>|[C^W&7hB+(<3)/
xB6kz-}?ZtKٴgIMOHm$n/`(P
(
xB6kz-}?ZtKٴgIMOHm$n/`(P
(
(
(
(<B?b/2̓       BdgzpfUO(
(<B?b/2̓       BdgzpfUO(
(2E6oĚFK4=@4M[E4]Zk
SHn,u-/RP`iaOTwïgoȫoٗ0~\g!/zЂk]?
(2E6oĚFK4=@4M[E4]Zk
SHn,u-/RP`iaOTwïgoȫoٗ0~\g!/zЂk]?
(>,¿|a/f_#T
(>,¿|a/f_#T
(>:`jo|u8
+(((((+/ow
ƺ5hoCőx]N)uG'tE$].-I1,o9͢??i+]탮ؿGd???߂?n ]j_5|6ĭC%SxOŞ?؞-ѡ/[mcNkg+/?4
'
(>:`jo|u8
+(((((+/ow
ƺ5hoCőx]N)uG'tE$].-I1,o9͢??i+]탮ؿGd???߂?n ]j_5|6ĭC%SxOŞ?؞-ѡ/[mcNkg+/?4
'
-࿈~!OOXˡ]|;E?xTz%Ƈ;=OȲi^+o> UGYic|Eo-OJԛ\]y&/
MK[7V`?G
-࿈~!OOXˡ]|;E?xTz%Ƈ;=OȲi^+o> UGYic|Eo-OJԛ\]y&/
MK[7V`?G
!h~ȟŏ7'oͿHo6|6vhz[>\~߳G/~kZ‡~2~ȿ?[uNj4oO~>+楢K&_jMI-	K[Ytcq^M_ٳu|1ᏇSKv~?      񍇋u?^?il|Oę6?26ƍxt/]oƏ{
!h~ȟŏ7'oͿHo6|6vhz[>\~߳G/~kZ‡~2~ȿ?[uNj4oO~>+楢K&_jMI-	K[Ytcq^M_ٳu|1ᏇSKv~?      񍇋u?^?il|Oę6?26ƍxt/]oƏ{
/Myj7OKjCoVzNSFxN]'Oibn^1LP&^۲?~7o֡G{k[/x߂eZ/xFCaBqx5i6/xGx

^84XPӼrA7l>#?ٞey:ݵv}|/n3|Ax~XoGZLj48#RLZcZPze|O|;n?Sԥ\=r-Eu7Gm}j?4_k/_Tz~-||ƿړUu3_    xCŖ>;|P>ۍOPю<-cxe/7Tςw/%ψnώ? :/_w^~wCSA{gGhtJl?W
/Myj7OKjCoVzNSFxN]'Oibn^1LP&^۲?~7o֡G{k[/x߂eZ/xFCaBqx5i6/xGx

^84XPӼrA7l>#?ٞey:ݵv}|/n3|Ax~XoGZLj48#RLZcZPze|O|;n?Sԥ\=r-Eu7Gm}j?4_k/_Tz~-||ƿړUu3_    xCŖ>;|P>ۍOPю<-cxe/7Tςw/%ψnώ? :/_w^~wCSA{gGhtJl?W
~k_?fo
/V߁_kڮozxZ=wD6
ygiv֒Dn-`IQ@|o xWxMvsym_׈/gƾ1CxJer1?xWd[Yo(?[A>
|=/)kGڻ~,mim;[]o@{UygCs[%uJ߳ۈWM_}_:
Џ3o<)xg</M>?(eMfb6/jZ>*Z^L?t?j~/R[7?-׍AUtxjdQ
so
~k_?fo
/V߁_kڮozxZ=wD6
ygiv֒Dn-`IQ@|o xWxMvsym_׈/gƾ1CxJer1?xWd[Yo(?[A>
|=/)kGڻ~,mim;[]o@{UygCs[%uJ߳ۈWM_}_:
Џ3o<)xg</M>?(eMfb6/jZ>*Z^L?t?j~/R[7?-׍AUtxjdQ
so
gqO;_^5Dxäַz4+e~}>͟nxRaG"-=lc?![?$>|C|)?tM_G>7W7jZż_iCLC.mܣ}~ǿw
_Hh?߷f9a4_̱4W1sǨ˺fKopE|=7I,(=7I,(W{_+Ua|"෈>.%ѿ~1ς(׼        UziPj}lc$-ChU~>?P_|.+Scu8۽#Xu"NK#^ozLɦkNb/8/_g߈?य़P7ú
gqO;_^5Dxäַz4+e~}>͟nxRaG"-=lc?![?$>|C|)?tM_G>7W7jZż_iCLC.mܣ}~ǿw
_Hh?߷f9a4_̱4W1sǨ˺fKopE|=7I,(=7I,(W{_+Ua|"෈>.%ѿ~1ς(׼        UziPj}lc$-ChU~>?P_|.+Scu8۽#Xu"NK#^ozLɦkNb/8/_g߈?य़P7ú
4fmf$xcO4ŵ\ַeA?#B}E|=7I,(㧈hߌ|nt___ÿ0jy{9M>!mtx¾ m/Jnx^u=GE~)~zOmx?R#R)d?G.|Fx^&ݝR5+/4VݚE{/$o“YQٳMegŸ~K:/^xھy3hlj<#Gdu++;gڍΘ&%׶6RKg|ER~?
4fmf$xcO4ŵ\ַeA?#B}E|=7I,(㧈hߌ|nt___ÿ0jy{9M>!mtx¾ m/Jnx^u=GE~)~zOmx?R#R)d?G.|Fx^&ݝR5+/4VݚE{/$o“YQٳMegŸ~K:/^xھy3hlj<#Gdu++;gڍΘ&%׶6RKg|ER~?
40_H'УG0_H'У@OIgS|4;\O?'FZ~~^^x,'|K
AꍣYR
mh+ouvPE~;x#ßjO8z٫:i߁-r'k.u~6KM3ľ=мᫍ3 }F-REگ
40_H'УG0_H'У@OIgS|4;\O?'FZ~~^^x,'|K
AꍣYR
mh+ouvPE~;x#ßjO8z٫:i߁-r'k.u~6KM3ľ=мᫍ3 }F-REگ
/;חZfs_g⟎~.AӼ5k/>`ķ <_{
cPzv[EyO_	g>%7jizeqMΫdt
&\u-Nnmeطmu̿?jwtmSx>ƺ}w|5x!oM3MKn<3>khX[Gy,}GEP_ߵϿ
>+xȿ-~i֩I-߃t=VQ`S5ևwuqjt5|r_M+߄G)<^^x=](>&5n3xQ!~Ңútyw}g/$eG@_^}?.4GKO|kڶi?   4i`
/;חZfs_g⟎~.AӼ5k/>`ķ <_{
cPzv[EyO_	g>%7jizeqMΫdt
&\u-Nnmeطmu̿?jwtmSx>ƺ}w|5x!oM3MKn<3>khX[Gy,}GEP_ߵϿ
>+xȿ-~i֩I-߃t=VQ`S5ևwuqjt5|r_M+߄G)<^^x=](>&5n3xQ!~Ңútyw}g/$eG@_^}?.4GKO|kڶi?   4i`
>6wKr /^#j        x|#go^o ux_@ޱ>izk◁?~oos:$&?/x>6[}:bX~?gk?~ik$KGY?u9^).x^,q%ֳkֿ8.H??oO
>6wKr /^#j        x|#go^o ux_@ޱ>izk◁?~oos:$&?/x>6[}:bX~?gk?~ik$KGY?u9^).x^,q%ֳkֿ8.H??oO
m;/iO{tyH<gxs㶍_A1ocGS~'hփ	D?_<?jO?_/>->hh_PCcx/[+>8g|[ln
mMN/NO|Y[2։࿊'+2xfin<9oo_
m;/iO{tyH<gxs㶍_A1ocGS~'hփ	D?_<?jO?_/>->hh_PCcx/[+>8g|[ln
mMN/NO|Y[2։࿊'+2xfin<9oo_
x_&EicI
x_&EicI
KxvxfFNV       c7gx_ᯋ~)_>7)^,9S]?ρ!?   k%[^Nlқ!hLx?b*OO:w
KxvxfFNV       c7gx_ᯋ~)_>7)^,9S]?ρ!?   k%[^Nlқ!hLx?b*OO:w
o'π㦫1c|8>1xo]443xw//xHX/<ٗnZ~	v/?k_}|WxwĿ~8x"jS0zW>ơgZ?>+Ïڊǯ
_O e-ׄ3׼A[Ũ-/*bxKG?X-J=Ծ-|*\2   u|kB8'=C~#LH=GXbKP
F+     K1ii|{W][K|S7t[ߊ|E^44u/z]woy1W߳77_>Mxu"sO?W𮋨뷷>Ҽ+]^]Ov(((()o~߷W!VWww-&D~i^퟇~I-w[
}]fM[u߆  O{s.|뇙*Og~ןÏ/~K__,|
s_ďgE/VΑqǭ[m]tmgZ1?@x"׿fx^&>2Xk/y?jRB.-6Cs$mHm_S?b_'|g'gjů
o'π㦫1c|8>1xo]443xw//xHX/<ٗnZ~	v/?k_}|WxwĿ~8x"jS0zW>ơgZ?>+Ïڊǯ
_O e-ׄ3׼A[Ũ-/*bxKG?X-J=Ծ-|*\2   u|kB8'=C~#LH=GXbKP
F+     K1ii|{W][K|S7t[ߊ|E^44u/z]woy1W߳77_>Mxu"sO?W𮋨뷷>Ҽ+]^]Ov(((()o~߷W!VWww-&D~i^퟇~I-w[
}]fM[u߆  O{s.|뇙*Og~ןÏ/~K__,|
s_ďgE/VΑqǭ[m]tmgZ1?@x"׿fx^&>2Xk/y?jRB.-6Cs$mHm_S?b_'|g'gjů
x¿c>5G;l~'x
X~
x¿c>5G;l~'x
X~
--]诵@?ic/
--]诵@?ic/
>i;t
>i;t
~^~ ~_+iFy3z/>,K.~(YxLӵK;oTǿ?*Q!|,~        x>_OLӴҼK|S-{Rfۏf֗s)D/6t~xK-Ko%_oidž.|)j^jvyow5O7mX `s~O(;᷏lZZÝw'_~ߍ#ma"h7T75mN$$~x_χ^w~8}ԟO/όco|KoGܐY7Xc1?tU>6K?~ot;_x/Vx=ji&{j77zsuwss/omo??#R%ϋ x~4XS;[KOQ=;I=[0Z6%PCǟpgψ??uZ^;ǿ/u"o?>8Özi!U~(?cC|9~~7nr??_H>&W?<)_,7_
~^~ ~_+iFy3z/>,K.~(YxLӵK;oTǿ?*Q!|,~        x>_OLӴҼK|S-{Rfۏf֗s)D/6t~xK-Ko%_oidž.|)j^jvyow5O7mX `s~O(;᷏lZZÝw'_~ߍ#ma"h7T75mN$$~x_χ^w~8}ԟO/όco|KoGܐY7Xc1?tU>6K?~ot;_x/Vx=ji&{j77zsuwss/omo??#R%ϋ x~4XS;[KOQ=;I=[0Z6%PCǟpgψ??uZ^;ǿ/u"o?>8Özi!U~(?cC|9~~7nr??_H>&W?<)_,7_
|O־!zYDXwu}U}2~ƇWc~ך$Z?h^tv_}gKImo8_a}m<)eֆ?kξxs_~4xW1|6n<gſo_-Gۿj:$Co|E|'}.GR^\~4Zi/J/?!?
SCK'Og/.?i{߄^>%ŏ/~fMuI=G%kj_z,4|߳}7L
uㆱ$SտioxnWoiYxg:wWZv75%x&W[
|O־!zYDXwu}U}2~ƇWc~ך$Z?h^tv_}gKImo8_a}m<)eֆ?kξxs_~4xW1|6n<gſo_-Gۿj:$Co|E|'}.GR^\~4Zi/J/?!?
SCK'Og/.?i{߄^>%ŏ/~fMuI=G%kj_z,4|߳}7L
uㆱ$SտioxnWoiYxg:wWZv75%x&W[
|uKnuq>/ڌx\UWUZŽ}7ſ!WSCoொ> ,|[        4x2$\6Gaj/Ň亟'="_\ވ-45^[Oo4G45mZ%J]B^i[jֶ~V֞Ҿ#]XHM
:P
|uKnuq>/ڌx\UWUZŽ}7ſ!WSCoொ> ,|[        4x2$\6Gaj/Ň亟'="_\ވ-45^[Oo4G45mZ%J]B^i[jֶ~V֞Ҿ#]XHM
:P
UH4?[3O}l/MRIO     @~Z'/?huV_d~fOgӼMgqS|9k
F]0^ޟ oo{3Z>$?yxO_~2FMo|3x
UH4?[3O}l/MRIO     @~Z'/?huV_d~fOgӼMgqS|9k
F]0^ޟ oo{3Z>$?yxO_~2FMo|3x
⿎!xw|%څ忇xAt    :oc$wM~Rx+k{Oi^M~o<5q	.4]:LJm3[{{*^ZOm񵏈E?m;_O|+KpnZ^ů[EI4/ZFt{&-YX)Y?       ]7㧃~ |*ZL,iVZxIIujZFn,Kj6GXf2[I42l|DCRR}p9Λ3־2tYxc-*Tho5mPZU 
<ƟvgkȾK2|'߁~jxOZkY"B?b/2̓        QE!MQC%sb~
⿎!xw|%څ忇xAt    :oc$wM~Rx+k{Oi^M~o<5q	.4]:LJm3[{{*^ZOm񵏈E?m;_O|+KpnZ^ů[EI4/ZFt{&-YX)Y?       ]7㧃~ |*ZL,iVZxIIujZFn,Kj6GXf2[I42l|DCRR}p9Λ3־2tYxc-*Tho5mPZU 
<ƟvgkȾK2|'߁~jxOZkY"B?b/2̓        QE!MQC%sb~
'ƞ=ŸX<{q<{h֏kTLG՚A:~~߷~'zi߶!͞-GGg
'ƞ=ŸX<{q<{h֏kTLG՚A:~~߷~'zi߶!͞-GGg
ySIs߉
ySIs߉
^`oڵypKK=ڳ& t'ÿ>o|W|=NPo.k
^`oڵypKK=ڳ& t'ÿ>o|W|=NPo.k
9h[++$ֿ        5e''#(_)xP?
9h[++$ֿ        5e''#(_)xP?
5o/Nt돉s
4v<;bYC)O*o|8|c~x3g~
5o/Nt돉s
4v<;bYC)O*o|8|c~x3g~
|
?MP|=>X;:ƧP/—Vſ/]Ki4|Í|Iյ_hx[^
|
?MP|=>X;:ƧP/—Vſ/]Ki4|Í|Iյ_hx[^
:,>|4/6^%YY>1%Wn_G
:,>|4/6^%YY>1%Wn_G
߃ٓ]G⮗       /%S|%Sx_t2z
6 ϊm,sd~<	Lj%7oTuK+U5(O-sE:e<S7jZ.ė}{+?^ƽwόS\H#x4*<}>7խ<'wZп{;!X@7D|O'{?o>'~&OCZ]ޕW~wּ
+M+ 8C|];D|1|D&~7hִ??h_~,ЭuO|jx^մk#NLFo*F
߃ٓ]G⮗       /%S|%Sx_t2z
6 ϊm,sd~<	Lj%7oTuK+U5(O-sE:e<S7jZ.ė}{+?^ƽwόS\H#x4*<}>7խ<'wZп{;!X@7D|O'{?o>'~&OCZ]ޕW~wּ
+M+ 8C|];D|1|D&~7hִ??h_~,ЭuO|jx^մk#NLFo*F
"^IO߳A@h?
"^IO߳A@h?
HE
|ES3GѮ/a"BٟCm5
HE
|ES3GѮ/a"BٟCm5
?ϟS[[~$~}Ɲ?~AԼCğ6Y?Q^k,ωlx#T?'3
?ϟS[[~$~}Ɲ?~AԼCğ6Y?Q^k,ωlx#T?'3
#kOM@@fe[_B^YG־ ?OxW$<%xtb#Xx	~+xλ>i>_|Ef˪w>s&kFПoURx?m~|G5TO|Qx+ZԴ=cJ[!wnσO/`#vϺ_oGm|
_|M㟎0oerxLj5ON;WWRNZ&߉~V_S
#kOM@@fe[_B^YG־ ?OxW$<%xtb#Xx	~+xλ>i>_|Ef˪w>s&kFПoURx?m~|G5TO|Qx+ZԴ=cJ[!wnσO/`#vϺ_oGm|
_|M㟎0oerxLj5ON;WWRNZ&߉~V_S
1g߷N${xI
1g߷N${xI
'$q?WOIgS|4()_/m
osoOI~?dd<)?x_ڦ}+
牡lvQO߶ï٧/7;?^ /~oSឋmIkxKǾm}M'R5xIy|]uܳ[_/1k|A㟊zk25sⵍ;Qs̶cIiEOKmoS,~ X>z~,/j߆?kx|9tO_Ӵ+ľ
'$q?WOIgS|4()_/m
osoOI~?dd<)?x_ڦ}+
牡lvQO߶ï٧/7;?^ /~oSឋmIkxKǾm}M'R5xIy|]uܳ[_/1k|A㟊zk25sⵍ;Qs̶cIiEOKmoS,~ X>z~,/j߆?kx|9tO_Ӵ+ľ
1'i
1'i
kA>
kA>
|?       qmN?u}WF\ּ#k]&?Qz[> k0W6|?+u}(۟ߎ5ۋR~?ᖵUxOᎍyGP!qj_'stO~'P|Bwd.Od'0OᏋ~#J[m^~-x[Ms?
'O?KIyi{?rOC//>e/L\)?ip|7ğkAA4^        dFo)&CIђj>ߋlkAf0#/_ğK?ڳ__
|?       qmN?u}WF\ּ#k]&?Qz[> k0W6|?+u}(۟ߎ5ۋR~?ᖵUxOᎍyGP!qj_'stO~'P|Bwd.Od'0OᏋ~#J[m^~-x[Ms?
'O?KIyi{?rOC//>e/L\)?ip|7ğkAA4^        dFo)&CIђj>ߋlkAf0#/_ğK?ڳ__
߂<x_O椚^Cq}z:>wB\cess&ءv_xOfp:ET_^|oY-C,G@|8<;^KFxCCog]/[W;Eu?e     /ӵm^Ouǟ1p2׍"k&K糷85kKӖQGi$,1ž,GŸ       5㟈^S=sͧiOG
߂<x_O椚^Cq}z:>wB\cess&ءv_xOfp:ET_^|oY-C,G@|8<;^KFxCCog]/[W;Eu?e     /ӵm^Ouǟ1p2׍"k&K糷85kKӖQGi$,1ž,GŸ       5㟈^S=sͧiOG
[]5-^='R`Sƫ~ڿΛYȟѪ[ď|M5/[R"$8Þ&H%xdMhV͆n~ƿyu??I?_O֣mN>/߲GoK46GEgIxL)t$Q@Px'>"_Dϊ>5xo
[]5-^='R`Sƫ~ڿΛYȟѪ[ď|M5/[R"$8Þ&H%xdMhV͆n~ƿyu??I?_O֣mN>/߲GoK46GEgIxL)t$Q@Px'>"_Dϊ>5xo
t
BiNwYm扠X=i}0)Wԃ+~'|['G^FKU|eЯxΠl4SG
t
BiNwYm扠X=i}0)Wԃ+~'|['G^FKU|eЯxΠl4SG
]鷿e^w Qo/[Oxw⇇Gi?|f|aោO[4ikvtOv߈[xZtm'Ox4_xwS,e//|d:.@F!^(D\흪~_S?Zm/+  +S?>9h@SC!=>mgzu/U𝴞)VOkM𞑤[N~?`?R{.F~ֿLg{?<#cOƺ]CV}]k?|E񖇪k6NbמÿßL|oS>wqxTg5/xIA$&]zF^mYI崓S>>b~6WK߁>ZxNuO
]鷿e^w Qo/[Oxw⇇Gi?|f|aោO[4ikvtOv߈[xZtm'Ox4_xwS,e//|d:.@F!^(D\흪~_S?Zm/+  +S?>9h@SC!=>mgzu/U𝴞)VOkM𞑤[N~?`?R{.F~ֿLg{?<#cOƺ]CV}]k?|E񖇪k6NbמÿßL|oS>wqxTg5/xIA$&]zF^mYI崓S>>b~6WK߁>ZxNuO
Z|BK_<xG_xo^又5[Pҡ%U{g	jS#_ƹYO[~
~"?&&ߌ4BAf/xFÖ=
,x)X%xR_.S;D5
Z7mfÚ;:f	;4Kh-Y-f;	g}2`Mh)_/??ࢺƏ>/^j!g?؛?`/ᾁNMk~5@-ZƟS#~$.h~>[3
Z|BK_<xG_xo^又5[Pҡ%U{g	jS#_ƹYO[~
~"?&&ߌ4BAf/xFÖ=
,x)X%xR_.S;D5
Z7mfÚ;:f	;4Kh-Y-f;	g}2`Mh)_/??ࢺƏ>/^j!g?؛?`/ᾁNMk~5@-ZƟS#~$.h~>[3
cN<9ix/㫏a_ï>z'A:'ß׶B7    5xoNw- BW)ǟx       @
cN<9ix/㫏a_ï>z'A:'ß׶B7    5xoNw- BW)ǟx       @
Co
IT=
Co
IT=
ͦCm/N]?MVOk:}Y+somyiq'$u~_e'/U>
ͦCm/N]?MVOk:}Y+somyiq'$u~_e'/U>
Doĕ
Doĕ
Doĕ(H੿F`I_+>Xfwyoj#t~oTja~Ǧ#agJm3℻Ҽž      5]R?*oWO?*oWO?#?%h?#?%h?*oWO?*oWO?#?%h?#?%h?*oWO?*oWOß3_o?߲>
Doĕ(H੿F`I_+>Xfwyoj#t~oTja~Ǧ#agJm3℻Ҽž      5]R?*oWO?*oWO?#?%h?#?%h?*oWO?*oWO?#?%h?#?%h?*oWO?*oWOß3_o?߲>
A
A
>;|]G4ؤ~y~xC-_VFei8OIgS|4(o[|3#{^4DtIoM_W/己t6{ᴳ[c7uӯO-4k?cڕo[
>;|]G4ؤ~y~xC-_VFei8OIgS|4(o[|3#{^4DtIoM_W/己t6{ᴳ[c7uӯO-4k?cڕo[
a|٢E-"K_-_kRAx?A5xd4뻝n,).?G~   ~-k]'ڬ?|ڲ\-?Z=.]2Rv& W-?'
a|٢E-"K_-_kRAx?A5xd4뻝n,).?G~   ~-k]'ڬ?|ڲ\-?Z=.]2Rv& W-?'
iCO~ʿG~#g|-m`7|c\V!om{Tͽm
4iW17~_X~       ww/RD>:F?
|Oҿfg_Wό:o7~#[=Kӵb~?fεZ~V;i}.-n^ZmeW¯aþ՚敡jrz>KZ?i};W+-#Sפ34}VuK]ȲlnY
^       4V?JIGKڏQ9'Ex|KC_%D')oKc>~Vaɺ?+h>&Y|6?/?"[_'^:~Utėqkv@ſ>6'C;,n|_':LZ\zo;[P.[.CemCG?h?>xD񗅵'ob׼=}i]-ܴwqKmrOƾ3BΟ(xǭoM?O~ΞW7+s#>A}Z5F}þ<;^<]gW5kE.4%ǿ)LJ>6SŸ7sm{߲5
iCO~ʿG~#g|-m`7|c\V!om{Tͽm
4iW17~_X~       ww/RD>:F?
|Oҿfg_Wό:o7~#[=Kӵb~?fεZ~V;i}.-n^ZmeW¯aþ՚敡jrz>KZ?i};W+-#Sפ34}VuK]ȲlnY
^       4V?JIGKڏQ9'Ex|KC_%D')oKc>~Vaɺ?+h>&Y|6?/?"[_'^:~Utėqkv@ſ>6'C;,n|_':LZ\zo;[P.[.CemCG?h?>xD񗅵'ob׼=}i]-ܴwqKmrOƾ3BΟ(xǭoM?O~ΞW7+s#>A}Z5F}þ<;^<]gW5kE.4%ǿ)LJ>6SŸ7sm{߲5
|3_iZ?5Ϗ؋   s./OvcQ];Oxf}{>)o<'_|FY\7.SxfDoß|k/SxJo|UN7u]"P<[N	n.^DicmP[]鬛S_x)/MBO2MCMBxf      {dt_o>c*;7ɋۿʏv_+ug]|?Gjh:G[;S
|3_iZ?5Ϗ؋   s./OvcQ];Oxf}{>)o<'_|FY\7.SxfDoß|k/SxJo|UN7u]"P<[N	n.^DicmP[]鬛S_x)/MBO2MCMBxf      {dt_o>c*;7ɋۿʏv_+ug]|?Gjh:G[;S
~>|
~>|
WM{>4%ŏ
WM{>4%ŏ
x~O
V]{Z~q]C]CL0S(P5
x~O
V]{Z~q]C]CL0S(P5
GǬXiz7]sX~".gC'_'(-n4-alfK_AB^,x_|oC࿆Vz/?|Jg<
Ӥ6_uj@.f{[MBidkyd
GǬXiz7]sX~".gC'_'(-n4-alfK_AB^,x_|oC࿆Vz/?|Jg<
Ӥ6_uj@.f{[MBidkyd
W > :G |1
׆
W > :G |1
׆
(
(
(
(
(oC;ͬ:Esc⍼msser}r7k{9`+ͬ Y`9Q\~n~N e~o}~Ο{4?*7:,zOäxoΓq3^6
mU;Ouؿ੿ôg_(߷-
(oC;ͬ:Esc⍼msser}r7k{9`+ͬ Y`9Q\~n~N e~o}~Ο{4?*7:,zOäxoΓq3^6
mU;Ouؿ੿ôg_(߷-
ё@_ôg_(߷-
ё@_ôg_(߷-
ёG;Ouؿ੿;Ouؿ੿ôg_(߷-
ёG;Ouؿ੿;Ouؿ੿ôg_(߷-
ё@_ôg_(߷-
ё@_ôg_(߷-
ёG;Ouؿ੿;Ouؿ੿ôg_(߷-
ёG;Ouؿ੿;Ouؿ੿ôg_(߷-
ё@_ôg_(߷-
ё@_ôg_(߷-
ёG;Ouؿ੿;Ouؿ੿ôg_(߷-
ёG;Ouؿ੿;Ouؿ੿ôg_(߷-
ё@OIgS|4ӿeKƟ毮i?%/(/r=c7J|Aw:G#5υ䱸      wdQ2EP_/؟τlo#)kּ㯇|%oxGş~*|wg"׬5-&]g1tHZ^=`<'Sxk;c|-/ZԞ"_ÿK~*]/
~hsIAju]bha-\Y[O;_oMQY~:xmß_ƙ⳥/ ex~׼q]fxjOqp_
ё@OIgS|4ӿeKƟ毮i?%/(/r=c7J|Aw:G#5υ䱸      wdQ2EP_/؟τlo#)kּ㯇|%oxGş~*|wg"׬5-&]g1tHZ^=`<'Sxk;c|-/ZԞ"_ÿK~*]/
~hsIAju]bha-\Y[O;_oMQY~:xmß_ƙ⳥/ ex~׼q]fxjOqp_
>    }A-?gxRYޟ۾y.CxcMƵqƆuvA"?n?m?~'jSB|,~=Ba_Z,eO׆<{^
>    }A-?gxRYޟ۾y.CxcMƵqƆuvA"?n?m?~'jSB|,~=Ba_Z,eO׆<{^
|k_J×:F!ѼQ.i=?{_>SzW|].o?^)t/ϮXM{WO֥4y-.=6fYywU@Z}kIAcKԿn3Wr]zPxt4KSQп[O['R~?oQԼuuէ-g񵗇Mֆ<'~=GAWТ
M1kO]3@-?gU~ֿVu|5O>7Scg[oxo?|wCx*XƝ=#?'|f'~վ.24x<skm
a>,w*^h^Do+]Gķsx#PxWX='{㖫;~?^i<NG#oAO\x_w:o-O	k]vIo༩-~q&K~ߴu[mcxj?)o?Y#GH^x!׵w[A-B<;᧎0|T6_
1>%݅趒]L"dcve
ƣZmݽ2n(_w5zr/($|WckƷ~mF|;xcª~bӢYYRxW?>~JWay_Czf'Qnuo}[ĺio/|?񷈢>xBKSS>xFXu4wfơꚞBQoino/.eY&GُǨαVë_5OS~
:iԬ5or_j6Z+[Nh.gm2xc-|J=K}	t_1CeK8qj:Vhυ-㾼H[À;_glnmJ
|k_J×:F!ѼQ.i=?{_>SzW|].o?^)t/ϮXM{WO֥4y-.=6fYywU@Z}kIAcKԿn3Wr]zPxt4KSQп[O['R~?oQԼuuէ-g񵗇Mֆ<'~=GAWТ
M1kO]3@-?gU~ֿVu|5O>7Scg[oxo?|wCx*XƝ=#?'|f'~վ.24x<skm
a>,w*^h^Do+]Gķsx#PxWX='{㖫;~?^i<NG#oAO\x_w:o-O	k]vIo༩-~q&K~ߴu[mcxj?)o?Y#GH^x!׵w[A-B<;᧎0|T6_
1>%݅趒]L"dcve
ƣZmݽ2n(_w5zr/($|WckƷ~mF|;xcª~bӢYYRxW?>~JWay_Czf'Qnuo}[ĺio/|?񷈢>xBKSS>xFXu4wfơꚞBQoino/.eY&GُǨαVë_5OS~
:iԬ5or_j6Z+[Nh.gm2xc-|J=K}	t_1CeK8qj:Vhυ-㾼H[À;_glnmJ
!7kg'& x%
E/cZ|K>(|\
!7kg'& x%
E/cZ|K>(|\
:C~|9!~?Ïeo4KP_%/s~޳x&|
:C~|9!~?Ïeo4KP_%/s~޳x&|
]+]-4xWQѵ[[#R       >%Bx1g-gI{KQ׮'mOI;uOЯ4+Yη#~ľh_wi_!Ox⟋.F|Woa߉>
Lj!w5-|?}S{x_n3\tR+x#wxt;Rj>_G]Hyxr
?-4hi@Lk   2$>SKO.0S¿
|G1iA{k=×׈4_=XxÖzb6:eiH-F/,BVm2S.f2V㯃7d7V)?_  ߮{x{JnDMJ-F./o%WQ 7|o~
5n͗
]+]-4xWQѵ[[#R       >%Bx1g-gI{KQ׮'mOI;uOЯ4+Yη#~ľh_wi_!Ox⟋.F|Woa߉>
Lj!w5-|?}S{x_n3\tR+x#wxt;Rj>_G]Hyxr
?-4hi@Lk   2$>SKO.0S¿
|G1iA{k=×׈4_=XxÖzb6:eiH-F/,BVm2S.f2V㯃7d7V)?_  ߮{x{JnDMJ-F./o%WQ 7|o~
5n͗
}Xj8m(j?!.)E_χ^"ֹk
}Xj8m(j?!.)E_χ^"ֹk
O_xkXvjzf÷z5>sK&55 m(#HG0T(U#QB@O[Dj4S[|ƿJU~
xo]xᶝDYxJe{z/:2kߏ%定}J~1gT<)xVм'w4}+/O)><صǔufJ־3x+z$Q_/^Kڴ׎Q{Rv<ܙMz
iv^2tx;NӾ"ھ:-i6x8aj楦ZX51 Oj?M؛T_]$ˋ{JR7z-fGRGG)1/?
O_xkXvjzf÷z5>sK&55 m(#HG0T(U#QB@O[Dj4S[|ƿJU~
xo]xᶝDYxJe{z/:2kߏ%定}J~1gT<)xVм'w4}+/O)><صǔufJ־3x+z$Q_/^Kڴ׎Q{Rv<ܙMz
iv^2tx;NӾ"ھ:-i6x8aj楦ZX51 Oj?M؛T_]$ˋ{JR7z-fGRGG)1/?
>']QO)nd'|      cfJZ|^m
>']QO)nd'|      cfJZ|^m
kCm
xetºhO5'N|=N=CEtm4'KӴx,|~Ood%>4xݭ?[Vkeu(f8 /gP'Զ)_,x/tɮt(u_~6._R!GCSVCP7ߚQ$Qy)w1x_P4~~z"Sj^O~о#E{^s_yysb,Y#ڗ57¾'<	?<xFx7RX]iORRe-X^]Yͽı+gW>:WZu|Y{5='Fam|#&1w\%N(77_W>{8n:G[V'_+OF+^໭sm"|C[Kg煾x¿
kCm
xetºhO5'N|=N=CEtm4'KӴx,|~Ood%>4xݭ?[Vkeu(f8 /gP'Զ)_,x/tɮt(u_~6._R!GCSVCP7ߚQ$Qy)w1x_P4~~z"Sj^O~о#E{^s_yysb,Y#ڗ57¾'<	?<xFx7RX]iORRe-X^]Yͽı+gW>:WZu|Y{5='Fam|#&1w\%N(77_W>{8n:G[V'_+OF+^໭sm"|C[Kg煾x¿
'&Ge7i/
'&Ge7i/
9E5/.o߳]➓.7/V>x~ x@Cys
s-ȶ^<3k7zMz׈nt*Mucumfk;xd59a(i8*??+~x=VKwOj<%w
9E5/.o߳]➓.7/V>x~ x@Cys
s-ȶ^<3k7zMz׈nt*Mucumfk;xd59a(i8*??+~x=VKwOj<%w
Eot"Y*    p’M4(ydl$hB͏
Eot"Y*    p’M4(ydl$hB͏
+O췠_>/?{>EMi+xoFռ;
.IwTԴ]Zѡ.d ǿ#IYk
ß+
eƿO
+O췠_>/?{>EMi+xoFռ;
.IwTԴ]Zѡ.d ǿ#IYk
ß+
eƿO
]x-kh:ne[f\4jش8+K#Y:9STz~۟u?OW_IQx冗\1=#Qm4ISk^
]x-kh:ne[f\4jش8+K#Y:9STz~۟u?OW_IQx冗\1=#Qm4ISk^
S"/.aNLfO탡j_ٶ?|H~7$_x_6w4]]g[m_ү?৉D?kOgmٻ
>  Đ||e/C_ĚG5W5զ슊g3c?
E
S"/.aNLfO탡j_ٶ?|H~7$_x_6w4]]g[m_ү?৉D?kOgmٻ
>  Đ||e/C_ĚG5W5զ슊g3c?
E
T|<9AC*?k?>Wm[>?1!];  |4ӣ 
x
~=xdxt~0*CVOk?
T|<9AC*?k?>Wm[>?1!];  |4ӣ 
x
~=xdxt~0*CVOk?
iw lj>2|4?
iw lj>2|4?
qq/Uoyqiržu5
>[épWb~߱í'E6Ws:o4xw'[6
?EMGK       4okiOKeYH#[KumOy  WdѾ!,|Zk$>0Z&!/  /^44)_YDo.wfJ'i_
qq/Uoyqiržu5
>[épWb~߱í'E6Ws:o4xw'[6
?EMGK       4okiOKeYH#[KumOy  WdѾ!,|Zk$>0Z&!/  /^44)_YDo.wfJ'i_
xX.|u.uI,|       COOTմ]Zy~~_S#     wN:Sisov[wuP<(m,n.)&=:ȿh,g^?w?___k?nʞ&Y/&Y7x{??e	Zk0BOqMS>|N}3OҴ:?|xx'>
ܿ^(}_/ַ~𞅩Aڷ'w/|A{CVx~}]EFYYnf_;Gli=+[|=oM>j}&z΋Mrx~_ЭF{M*}kIh$ln|u+j/Ju8w_3i^"uſ|N.x!|w?Vp=>ߵƯ+k}G    n   Ꮗ]CAįbDӼFJ?!k#MӾfhW,*oAQ?'_MҾ7_<\|M|:]K_ٻÝy XUΫxdWPEP_Zgɟ5[o*I?b_7fO>u=լiDxĺ4EүI]Pt/]-\l5Yҵ}UtWKm4KOkKI[{ydx'e _"(?#x7?d_'h~(?
xX.|u.uI,|       COOTմ]Zy~~_S#     wN:Sisov[wuP<(m,n.)&=:ȿh,g^?w?___k?nʞ&Y/&Y7x{??e	Zk0BOqMS>|N}3OҴ:?|xx'>
ܿ^(}_/ַ~𞅩Aڷ'w/|A{CVx~}]EFYYnf_;Gli=+[|=oM>j}&z΋Mrx~_ЭF{M*}kIh$ln|u+j/Ju8w_3i^"uſ|N.x!|w?Vp=>ߵƯ+k}G    n   Ꮗ]CAįbDӼFJ?!k#MӾfhW,*oAQ?'_MҾ7_<\|M|:]K_ٻÝy XUΫxdWPEP_Zgɟ5[o*I?b_7fO>u=լiDxĺ4EүI]Pt/]-\l5Yҵ}UtWKm4KOkKI[{ydx'e _"(?#x7?d_'h~(?
h/΍%
h/΍%
i?oZd"ծdߡ
i?oZd"ծdߡ
zkk:<.*?|T/|9`q]W~3Ɵ>?=mue~A6{iO~kI\Lk  ex*ִxWYgV=_ž oO~kA}o=֛.M_*MKA@GMf
zkk:<.*?|T/|9`q]W~3Ɵ>?=mue~A6{iO~kI\Lk  ex*ִxWYgV=_ž oO~kA}o=֛.M_*MKA@GMf
!I;HڿĶ>x._ᗂ֭N<)+pj}t߅9K汪vֱ隅ݬ߾^3F?AG|1D_Oh/t
+N~@旧ivz~E1ib]+x[B©O%y9uK_IkI5k}awx     S?|ox3\[Tּ#_>*ư7ڝjijgYYwi0$E"~AJ=vx߱+WC^~h</?0^Fm7
G̿o#Y%b,?-?'4?qߏ_o~'|=tQzV       dG?
r+xxNZvciW[
!I;HڿĶ>x._ᗂ֭N<)+pj}t߅9K汪vֱ隅ݬ߾^3F?AG|1D_Oh/t
+N~@旧ivz~E1ib]+x[B©O%y9uK_IkI5k}awx     S?|ox3\[Tּ#_>*ư7ڝjijgYYwi0$E"~AJ=vx߱+WC^~h</?0^Fm7
G̿o#Y%b,?-?'4?qߏ_o~'|=tQzV       dG?
r+xxNZvciW[
ɩh?;G\j5
wNV_;i$?i'um#W_{OFtv֓3gJ?''4迴O/EGs>+k/Y>cO߇~!3¾խu#.
KKoCk4'kO{wwįEx?W/|mDZ
ɩh?;G\j5
wNV_;i$?i'um#W_{OFtv֓3gJ?''4迴O/EGs>+k/Y>cO߇~!3¾խu#.
KKoCk4'kO{wwįEx?W/|mDZ
c~7x’?
c~7x’?
>K^־3(xگԴMSB
o٫_Ox~߳o[?t*/InÞ),e=k;`sey[Htg?|]l8_/aW|)!x*O^,7ω~$xķi:?uROsoE~Z*_?ho
͗_|{ǿſt+  C|g'Qu5ug*?S!'L5_.Gah
>K^־3(xگԴMSB
o٫_Ox~߳o[?t*/InÞ),e=k;`sey[Htg?|]l8_/aW|)!x*O^,7ω~$xķi:?uROsoE~Z*_?ho
͗_|{ǿſt+  C|g'Qu5ug*?S!'L5_.Gah
j'_nZu
]cZ.h]~#5ؼ:%au/ROxş>|uu-S,x~_Vw<'jotmM#{Ϗ/
j'_nZu
]cZ.h]~#5ؼ:%au/ROxş>|uu-S,x~_Vw<'jotmM#{Ϗ/
^yxu]Q޿]O>7O|-W~-hC~
|O7_i~_x^       |M{kŔ[F'o_[+ŤM߆|Vo>.bvz͗4;-S7R^E-s|q9oo>Ŀgi    x՟?gr[{~_Z~)>5VZTl@FgwßSI,|:/~55|z>1xf*ƛ1tGMcgMoغD%=7Kg-?H}gVcqkzΗm/kVX,A;OuE߰8p|ZLzfS7
^yxu]Q޿]O>7O|-W~-hC~
|O7_i~_x^       |M{kŔ[F'o_[+ŤM߆|Vo>.bvz͗4;-S7R^E-s|q9oo>Ŀgi    x՟?gr[{~_Z~)>5VZTl@FgwßSI,|:/~55|z>1xf*ƛ1tGMcgMoغD%=7Kg-?H}gVcqkzΗm/kVX,A;OuE߰8p|ZLzfS7
|𵖷%难i:>?#hߙ_G߀>;ҿi^#/<ծ&4ON>㟋w/?G&ɗȟlTN>9_>S-OǍx6hFSz.'/k5QO弐JcoF>GCԿ1߆1Nj2⏋y]T[^ѭ4K]kzg}mY$f8.t%kTԼ9+hePEO0|ֵZ//-_D>0C?|
C&
|𵖷%难i:>?#hߙ_G߀>;ҿi^#/<ծ&4ON>㟋w/?G&ɗȟlTN>9_>S-OǍx6hFSz.'/k5QO弐JcoF>GCԿ1߆1Nj2⏋y]T[^ѭ4K]kzg}mY$f8.t%kTԼ9+hePEO0|ֵZ//-_D>0C?|
C&
jO+       ~z>\U͏[:͢_5]3<%Lj>EZdͫͥ6\i_*jC_Gao(VOX/>5/!:fe~|IoxsV}z^mggOJ(h{(底"KQd;x7Y UQE|u8
+
jO+       ~z>\U͏[:͢_5]3<%Lj>EZdͫͥ6\i_*jC_Gao(VOX/>5/!:fe~|IoxsV}z^mggOJ(h{(底"KQd;x7Y UQE|u8
+
'$q?WQEW{oğ?>|(e?g$H'a:~S?[|zk7_?ıDڽĚW~$m,q|Q4;_^e{ŸŸƟ
'$q?WQEW{oğ?>|(e?g$H'a:~S?[|zk7_?ıDڽĚW~$m,q|Q4;_^e{ŸŸƟ
~|5;~η͇.<{{uOjßIi
|}i:Q4cJeOWhUh8~>.{O*':Nh:fo6a'?_-~2Y[+uऴ>~oSIc'm*UwQR연]BX`9|Z/)Noo=\|7kKߌ<_,߈o[>.կo`m   hbp?]=gks"x\$-h|1+ǚ|-{OOi]RZ].G^oty/-        e(Ѿ9i
~|5;~η͇.<{{uOjßIi
|}i:Q4cJeOWhUh8~>.{O*':Nh:fo6a'?_-~2Y[+uऴ>~oSIc'm*UwQR연]BX`9|Z/)Noo=\|7kKߌ<_,߈o[>.կo`m   hbp?]=gks"x\$-h|1+ǚ|-{OOi]RZ].G^oty/-        e(Ѿ9i
-~ݞ'xO>
-~ݞ'xO>
A~"KovxZ3Q?ҼKZjuMd^BV<㏀ecSΉH~SxG;(|㯆>!Y[h?~Wh6u  -M"nfc_i/'l?g+@'|8_7ğq8/xYԤsD🇴Mo뚤~EQEQEQEQE^|9O+6:voP犴[uĚ
ƙu
_K/F{{
A~"KovxZ3Q?ҼKZjuMd^BV<㏀ecSΉH~SxG;(|㯆>!Y[h?~Wh6u  -M"nfc_i/'l?g+@'|8_7ğq8/xYԤsD🇴Mo뚤~EQEQEQEQE^|9O+6:voP犴[uĚ
ƙu
_K/F{{
ʟtot߇
sV,/u^Z>yIk^'?gPuYյFmWҬq*{]QEQEQEQEQEQE㟴PϿD/sRKMJ|HXX:,d)-|;?JmK?_Ai,
<2^To뚥Amj^w׶aoUBdgzpfUO\S?`Vb7#i_6*7#i_6*?\S?`Vb?\S?`Vb7#i_6*7#i_6*?\S?`Vb?\S?`Vb7#i_6*7#i_6*?\S?`Vb?\S?`Vb7#i_6*Fy~!:WX¯ؓ/O'944x
ʟtot߇
sV,/u^Z>yIk^'?gPuYյFmWҬq*{]QEQEQEQEQEQE㟴PϿD/sRKMJ|HXX:,d)-|;?JmK?_Ai,
<2^To뚥Amj^w׶aoUBdgzpfUO\S?`Vb7#i_6*7#i_6*?\S?`Vb?\S?`Vb7#i_6*7#i_6*?\S?`Vb?\S?`Vb7#i_6*7#i_6*?\S?`Vb?\S?`Vb7#i_6*Fy~!:WX¯ؓ/O'944x
Bb0^uZ}B9lMd:`joQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEx$u~_e'/U>B?b/2̓   W[࿂~ǎ//#Ot]EuxŚxkՂɪxƞ)$Ke"?ᘾ"|v^(W&_4O~%[#H
x?[Ӿ:#
O?!j<O}E|GvkY9FExKU4.σ#<Ŧe5yK-X[/..S7q+Ʋ]-ׄ[:~jڵivwZ70Yive__^\V֖vIqusq$pAo,0E~t7QM[}nj|FSHx3qYkeKPtx3,	kiuϋݮkz7?[>)_oqb|O	iNt;/׼     Gm̲GAb(
Bb0^uZ}B9lMd:`joQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEx$u~_e'/U>B?b/2̓   W[࿂~ǎ//#Ot]EuxŚxkՂɪxƞ)$Ke"?ᘾ"|v^(W&_4O~%[#H
x?[Ӿ:#
O?!j<O}E|GvkY9FExKU4.σ#<Ŧe5yK-X[/..S7q+Ʋ]-ׄ[:~jڵivwZ70Yive__^\V֖vIqusq$pAo,0E~t7QM[}nj|FSHx3qYkeKPtx3,	kiuϋݮkz7?[>)_oqb|O	iNt;/׼     Gm̲GAb(
(?l'9v:~⿉4/_nC?f汬X!YoH0۲׍/ɚ>7|!_O/
(?l'9v:~⿉4/_nC?f汬X!YoH0۲׍/ɚ>7|!_O/
voNi|l|AEk%ǀLk,ZeA|%Sug}/9<_^DWu'ľ.kjZƏMqcizskwk4W(֦i_^s7PP?d"Ib>ex;fEt]O[ş*x[A~x-]φuM;N77rkn'#=̚XVq92|H?9fយk/qѴtk9e}~(uema<
/"|Aؾ|$񧊼igF~іvqSPSP<'4O\k[7Ni4kN!Jgmg-ox-w]Pn#ftf]gT/ox/ůGh|a[#B)luXm      !<-wxoĚ}Ս0~7k^)ֵm/Wt_sJ??Zm_Wkm?
voNi|l|AEk%ǀLk,ZeA|%Sug}/9<_^DWu'ľ.kjZƏMqcizskwk4W(֦i_^s7PP?d"Ib>ex;fEt]O[ş*x[A~x-]φuM;N77rkn'#=̚XVq92|H?9fយk/qѴtk9e}~(uema<
/"|Aؾ|$񧊼igF~іvqSPSP<'4O\k[7Ni4kN!Jgmg-ox-w]Pn#ftf]gT/ox/ůGh|a[#B)luXm      !<-wxoĚ}Ս0~7k^)ֵm/Wt_sJ??Zm_Wkm?
%-wOe~zuxǚeEsi6Z\Oj?9m:h:SNc,t>g_k?
<99_
%-wOe~zuxǚeEsi6Z\Oj?9m:h:SNc,t>g_k?
<99_
?j+_Oi}%>$ME?k˔Cs}v]E|37>x7?!jx#VY^=6LLaIҵ$nYw>ogK
Q_"~e㯅ڷڌz8Q  m>'o'S{]:?h٣@dExfYN1Cß?ǟLI Q<|4cgWV/"Ǩx{V?dgֆ\>2ۏVPo$о  ~&	ÚƱ`e]"~$ns^4&kDV1=ycj'
hz>*7U~mS95>moU.W!ď&_ًĺO<7]}sWQ>ӡԼ'_\]k~hV]^]M|TW%~EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPj/'_ɿߒKu_&^"⟋߀!l>;S.о󿋟<w5OM<+{,[Gq]Ϧj0ZŒ\}F,;U%	SO-x[L׾jWZ_o|TFIuR>Ω~پ2Ҭ  񾎓6["?/>3@x-i#c
;:Ϭ-?7x_REPig
ב5σP>nEf^!V%oj0ω5xXkzp=܌}r
?j+_Oi}%>$ME?k˔Cs}v]E|37>x7?!jx#VY^=6LLaIҵ$nYw>ogK
Q_"~e㯅ڷڌz8Q  m>'o'S{]:?h٣@dExfYN1Cß?ǟLI Q<|4cgWV/"Ǩx{V?dgֆ\>2ۏVPo$о  ~&	ÚƱ`e]"~$ns^4&kDV1=ycj'
hz>*7U~mS95>moU.W!ď&_ًĺO<7]}sWQ>ӡԼ'_\]k~hV]^]M|TW%~EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPj/'_ɿߒKu_&^"⟋߀!l>;S.о󿋟<w5OM<+{,[Gq]Ϧj0ZŒ\}F,;U%	SO-x[L׾jWZ_o|TFIuR>Ω~پ2Ҭ  񾎓6["?/>3@x-i#c
;:Ϭ-?7x_REPig
ב5σP>nEf^!V%oj0ω5xXkzp=܌}r
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
vBCslh?
vBCslh?
n~)QO|Di,5huK{>oo-o>
n~)QO|Di,5huK{>oo-o>
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(?
DdBX""V
(?
DdBX""V


C$Astack"`RcНeA-9Q?<F7НeA-9QJFIF``CC("
C$Astack"`RcНeA-9Q?<F7НeA-9QJFIF``CC("
}!1AQa"q2#BR$3br
}!1AQa"q2#BR$3br
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz
w!1AQaq"2B       #3Rbr
w!1AQaq"2B       #3Rbr
$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz?((((((((+oڗF_]|h~y.
$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz?((((((((+oڗF_]|h~y.
Z|~>nn<7a*vv/QҠ.a&ɮhwN?x@EQ__T:vIIm!i>"|/wMj@Եm+Pp/|Kj@Vn-4_     
C@?Z+:7]KO6#㟅<+%|
³|0Ý/(O[Nu
Z|~>nn<7a*vv/QҠ.a&ɮhwN?x@EQ__T:vIIm!i>"|/wMj@Եm+Pp/|Kj@Vn-4_     
C@?Z+:7]KO6#㟅<+%|
³|0Ý/(O[Nu
-EaT]|>[x÷ڞF⏋_,5z_kt+Û(|qgxk/4
gG|3Ŀ|M/_|d];Q^Ѐ?P(~*>#i?ohuϊ|kFً_~<={2x[_uW%_C_v'OW_=cᯌ-~|8	7?WWį1!ftে|<_ko>&[MҬ?+o_iYo_|>0]ğ%|>u1d*_Ŀ68k|Tux<]k~_k[
cMx
-EaT]|>[x÷ڞF⏋_,5z_kt+Û(|qgxk/4
gG|3Ŀ|M/_|d];Q^Ѐ?P(~*>#i?ohuϊ|kFً_~<={2x[_uW%_C_v'OW_=cᯌ-~|8	7?WWį1!ftে|<_ko>&[MҬ?+o_iYo_|>0]ğ%|>u1d*_Ŀ68k|Tux<]k~_k[
cMx
76_^|;#a$>'xWtzWexW|\|g
76_^|;#a$>'xWtzWexW|\|g
P Gῇ<_xsG,Y|>`5MjZֳ_~_;|,{Cֺeo&A-%ÿ&KhӦү5{:/".  -YD?ًY4Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@~qW5Ec{ck#{k_ƭmo3
P Gῇ<_xsG,Y|>`5MjZֳ_~_;|,{Cֺeo&A-%ÿ&KhӦү5{:/".  -YD?ًY4Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@~qW5Ec{ck#{k_ƭmo3

/exJ3
KZ<hT2MsGqĿeOo(#T}Օ@?2

/exJ3
KZ<hT2MsGqĿeOo(#T}Օ@?2
(
(
e_PG*8eG7YW*??ʿ?WxW=9n)hrw 7xSeHekuwY/5Gj7R@e_PG*8e_P7YW*?ʿ?W
VUqʼo_i8Z|]_͗\fR.+rqm$nO5_Gǿ]cV>'9A#ǎ5jZo6IiVSwKfj1(/
e_PG*8eG7YW*??ʿ?WxW=9n)hrw 7xSeHekuwY/5Gj7R@e_PG*8e_P7YW*?ʿ?W
VUqʼo_i8Z|]_͗\fR.+rqm$nO5_Gǿ]cV>'9A#ǎ5jZo6IiVSwKfj1(/
'(υ|asC'⮵|GM?x[
sO[Ok{oVE֣4Q񿉼O~    ż1'zA?|i|?O#~?nM
'(υ|asC'⮵|GM?x[
sO[Ok{oVE֣4Q񿉼O~    ż1'zA?|i|?O#~?nM
:?"}>jRx7w?~~>-|O1
Z֚lVUτ^$mtcNybYZė&X4
wO
:?"}>jRx7w?~~>-|O1
Z֚lVUτ^$mtcNybYZė&X4
wO
Y|dq?gWUw.&koM-ᕾGsuhڇ<5s\Zۣ7Ux_~ Gah>Gsx^K].|ak_ #-r9=^ؾ/~?M[N&7ĺGui+|?ahu'$
BǶ_֍7E~ i~z.!kMxJ_~𽏂=#KsQ!b<am7Cf?t8W:Aɤo
Y|dq?gWUw.&koM-ᕾGsuhڇ<5s\Zۣ7Ux_~ Gah>Gsx^K].|ak_ #-r9=^ؾ/~?M[N&7ĺGui+|?ahu'$
BǶ_֍7E~ i~z.!kMxJ_~𽏂=#KsQ!b<am7Cf?t8W:Aɤo
žOE7Uԣ&H־3S>:еψi>?     R<]o
vk{i>
׵VHnO>!ikox h>3Gׄx|O%ÿ~oӼ]
žOE7Uԣ&H־3S>:еψi>?     R<]o
vk{i>
׵VHnO>!ikox h>3Gׄx|O%ÿ~oӼ]
֙qdox{ǺW?մ_w3þơx[kĒ[,׃JEԾ"xxA?o_    oG~&M|)ⴿoCC}k:7\GQoWҬZ巉W=\f_
^'Ccx2wQo
֙qdox{ǺW?մ_w3þơx[kĒ[,׃JEԾ"xxA?o_    oG~&M|)ⴿoCC}k:7\GQoWҬZ巉W=\f_
^'Ccx2wQo
xo.?
xo.?
xĞ"xbo&CQW#ܟ?R4Z>9~kp?~>l5gmoOPmCH>_Z&ofzz+~%߉uӴ(5&t"D#/"U%;]owkgg#DoxE%Z^-jvU
xĞ"xbo&CQW#ܟ?R4Z>9~kp?~>l5gmoOPmCH>_Z&ofzz+~%߉uӴ(5&t"D#/"U%;]owkgg#DoxE%Z^-jvU
x#D?ik߳<;o隺]ZGx 
β5Ʃ._k|C޿RK[|G!u/t]J+?w-?~>5/~/)x~,~پo#IhxNNҮ-5_>W|I?7};~9_׵M=#>
|+s[FӦ-\ָT1KqZ00TQEQEQEQEQEQEQEQEQEGtJֵJG        ٩jyofe.oo!IexcyeYu~xQ/]m]oMtm[vif^C?e{
B9ol[x]7Fe GY~r__
e,y~GG2oF?uɿGk3Y~r__
e,y~GG2oF?uɿGk3Y~r__
e,y~GG2oF?uɿGk3Y~r__
e,y~GG2oF?uɿGk3Y~r__
e,y~GG2oF?uɿGk3Y~r__
e,y~GG2oF?uɿGk3Y~r__ƯoC8K]{65q2.PҵV5(C+Cycr&MAZ7Xh|:rY|χþ<>"~3xG@Ҽ7C5fLѭ,y$y$+J/~~gߋ~(x⾉/Uox_t;Yg}CT`]iݴ+oHQEQEQEQE~|@M&|WKX~ηzjxWǾ?cxOAx<>(4	h^%ÿ2 >*h:i[-eis|UNφ|s[?7w/CHźΡ-#L)ƿkB+:7m[GO◈-ltOxoÚuIN~ k^(>{:|9=^)&x/	G:	(LF^JZe?ڳ>gFX?e|Jߴi/W~2xKzGwOO<=|~Mji?%xK7,_wO3x@%hP)⟀/cL|3>%մx\~~@~اĝOQQ},9_E'l5VM6]'7x+U=;BW+ǯkrҵߋW~|2uOtߴ1e|Q
_h:~7|ujjE?iF_.4oٻ&gLѥ~r|U|M[o>xSծa࿍߂_=SHO(oK/ko5пh=*+/^м
soͫ|Pվž>~u|&}sM'6y{PgI_Þq⯆>
>Ѿ7t?^{/:;^W߁z       jXW*vZ?S~
x|O|4=&suѬrxv{;@w>=EK="][ZNjmR_\ƃxcV񞻡i0jCi_SOl
,e|=AkfQç,l.o..:z(
x#D?ik߳<;o隺]ZGx 
β5Ʃ._k|C޿RK[|G!u/t]J+?w-?~>5/~/)x~,~پo#IhxNNҮ-5_>W|I?7};~9_׵M=#>
|+s[FӦ-\ָT1KqZ00TQEQEQEQEQEQEQEQEQEGtJֵJG        ٩jyofe.oo!IexcyeYu~xQ/]m]oMtm[vif^C?e{
B9ol[x]7Fe GY~r__
e,y~GG2oF?uɿGk3Y~r__
e,y~GG2oF?uɿGk3Y~r__
e,y~GG2oF?uɿGk3Y~r__
e,y~GG2oF?uɿGk3Y~r__
e,y~GG2oF?uɿGk3Y~r__
e,y~GG2oF?uɿGk3Y~r__ƯoC8K]{65q2.PҵV5(C+Cycr&MAZ7Xh|:rY|χþ<>"~3xG@Ҽ7C5fLѭ,y$y$+J/~~gߋ~(x⾉/Uox_t;Yg}CT`]iݴ+oHQEQEQEQE~|@M&|WKX~ηzjxWǾ?cxOAx<>(4	h^%ÿ2 >*h:i[-eis|UNφ|s[?7w/CHźΡ-#L)ƿkB+:7m[GO◈-ltOxoÚuIN~ k^(>{:|9=^)&x/	G:	(LF^JZe?ڳ>gFX?e|Jߴi/W~2xKzGwOO<=|~Mji?%xK7,_wO3x@%hP)⟀/cL|3>%մx\~~@~اĝOQQ},9_E'l5VM6]'7x+U=;BW+ǯkrҵߋW~|2uOtߴ1e|Q
_h:~7|ujjE?iF_.4oٻ&gLѥ~r|U|M[o>xSծa࿍߂_=SHO(oK/ko5пh=*+/^м
soͫ|Pվž>~u|&}sM'6y{PgI_Þq⯆>
>Ѿ7t?^{/:;^W߁z       jXW*vZ?S~
x|O|4=&suѬrxv{;@w>=EK="][ZNjmR_\ƃxcV񞻡i0jCi_SOl
,e|=AkfQç,l.o..:z(
(
(
(
(
(
(
(
(
(
(
(CCP,~yuy-;6gog[A#r@>??ɟn&>~+߈cٗ3xNAyp3⋈DH綶y??	WĎ6?@+)g׉~4zPHk(wEjן4}_gJ
3:gt/Sm2~Q_zPHhG@W0'^;?? WĎ6`O_($wE~@?#
W
(CCP,~yuy-;6gog[A#r@>??ɟn&>~+߈cٗ3xNAyp3⋈DH綶y??	WĎ6?@+)g׉~4zPHk(wEjן4}_gJ
3:gt/Sm2~Q_zPHhG@W0'^;?? WĎ6`O_($wE~@?#
W
m~Q_zPHhG@W0'^;??|3J?I        WĎ6     ]
m~Q_zPHhG@W0'^;??|3J?I        WĎ6     ]
O/?Wğٲo.Ų}l}wkهo1nmQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@|ڛZ|z2Oÿ_wrU%w>g4ԬcOT|<Ozhx\ѵ+aIO&_Z|6ǟG|_mھ֓5Hƻ9WA|
|+&5猪쯡xRčN}?<'OwF?_O+v[F🅼?M#~NLnZ?n??}x_>|q[<𿄾 EI[>?
[r|3fzMmUNuwkh^hڭMg~0xo_?h:Ƌ_
×OƏϿ.4|;_Q;oZ=M{UD3,׃׿z'eqǂk7S|CkWյ=gIDsGCz>м?krm|Kg4z>O?w[AO|+|%oOjZ}Ťxcƺ_}AYVѴo9—7w^79"ho
iE.qYF|9ym>5$x>n.i,][iO~K>x]5/tO[Ŵ:G|o~?|Yޡ
O/?Wğٲo.Ų}l}wkهo1nmQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@|ڛZ|z2Oÿ_wrU%w>g4ԬcOT|<Ozhx\ѵ+aIO&_Z|6ǟG|_mھ֓5Hƻ9WA|
|+&5猪쯡xRčN}?<'OwF?_O+v[F🅼?M#~NLnZ?n??}x_>|q[<𿄾 EI[>?
[r|3fzMmUNuwkh^hڭMg~0xo_?h:Ƌ_
×OƏϿ.4|;_Q;oZ=M{UD3,׃׿z'eqǂk7S|CkWյ=gIDsGCz>м?krm|Kg4z>O?w[AO|+|%oOjZ}Ťxcƺ_}AYVѴo9—7w^79"ho
iE.qYF|9ym>5$x>n.i,][iO~K>x]5/tO[Ŵ:G|o~?|Yޡ
V>ڷ!In{^,cm5_|w+^KojZ<=~:Ӽ-?FO	C<5exHǏ4_Լ;xKm WG
sZׇ"vS-Ŀ
|"#čC+YKMޕxk&!x%_|U<6s0FOZ'Yox1Vp袊+N
V>ڷ!In{^,cm5_|w+^KojZ<=~:Ӽ-?FO	C<5exHǏ4_Լ;xKm WG
sZׇ"vS-Ŀ
|"#čC+YKMޕxk&!x%_|U<6s0FOZ'Yox1Vp袊+N
gs]ρ׿,~ֿ.Ck[ҟ<SNҠo
gs]ρ׿,~ֿ.Ck[ҟ<SNҠo
ZxOk]KT?y88m5m=k9ng&(ɮhwN?x_oc{B1{+	H"ؿdbhS7;^w??Ghc6.c6.?@(c6.c6.?@(c6.c6.?@(c6.c6.?@(c6.c6.?@(c6.c6.?@+ٟOS
ZxOk]KT?y88m5m=k9ng&(ɮhwN?x_oc{B1{+	H"ؿdbhS7;^w??Ghc6.c6.?@(c6.c6.?@(c6.c6.?@(c6.c6.?@(c6.c6.?@(c6.c6.?@+ٟOS
QcOc6.
C>_gme߲(Yyn7^i[~EQEQEQEQEQEQEQEQEQEQE1D>1hwPź>&~mg׭~2@1~_>;ZM>[Q7C4y݃/<;-GK~'	GwGomko|
nAy٫gZx1Y7Nj`'U6!txώ/w[ּ_WT׉5%m/Rhw-<%';KO\cZ}7WtKZ?_7?_u?֗:.n/>
QcOc6.
C>_gme߲(Yyn7^i[~EQEQEQEQEQEQEQEQEQEQE1D>1hwPź>&~mg׭~2@1~_>;ZM>[Q7C4y݃/<;-GK~'	GwGomko|
nAy٫gZx1Y7Nj`'U6!txώ/w[ּ_WT׉5%m/Rhw-<%';KO\cZ}7WtKZ?_7?_u?֗:.n/>
o>&|}Oڳ~1|C{BD<Mx_6c/1i:ŏƍi߶쓦xw^.Կi?zaI޵}#֖:olt’ϩu>V>5[BVҭG.6bGS<x~M.y–W^
o>&|}Oڳ~1|C{BD<Mx_6c/1i:ŏƍi߶쓦xw^.Կi?zaI޵}#֖:olt’ϩu>V>5[BVҭG.6bGS<x~M.y–W^
X(aM'L<چ;oj:u%',9bQGGžr0j%A
X(aM'L<چ;oj:u%',9bQGGžr0j%A
g'HaӮg-jz{Ka K~OB|-<_>ſYxkE<zKjZD*-SBNj|Syt
OM\|O᧴NMþ0Kl9K
VV;i<7C៉mS%n:EğAko*σm,Jҭ5k=Śsk{d|o6~4I{){KïxN޹O
Xjw׶ZJU198Ȍ(Uל|d
g'HaӮg-jz{Ka K~OB|-<_>ſYxkE<zKjZD*-SBNj|Syt
OM\|O᧴NMþ0Kl9K
VV;i<7C៉mS%n:EğAko*σm,Jҭ5k=Śsk{d|o6~4I{){KïxN޹O
Xjw׶ZJU198Ȍ(Uל|d
~,+}π
[c6mfquasi6V6
kq,qloQEQEyσ>+x,_xoOleu$|S~[[CisO~JPѨ+)g׉~5~qW5Ec{ck"{k?ӎmo3
~,+}π
[c6mfquasi6V6
kq,qloQEQEyσ>+x,_xoOleu$|S~[[CisO~JPѨ+)g׉~5~qW5Ec{ck"{k?ӎmo3

/dJu-kP~ɦXar;E~}Օ@?2

/dJu-kP~ɦXar;E~}Օ@?2
~Q_e_PG*8e@W7YW*?ʿ?P
VUqʏo(#TE~}Օ@?2
~Q_e_PG*8e@W7YW*?ʿ?P
VUqʏo(#TE~}Օ@?2
~Q_e_PG*8e@'(bcM'7YW*/o-ڋ
~Q_e_PG*8e@'(bcM'7YW*/o-ڋ
?W}Wh<+wc2Y~͞
UΈ5
Oɴ17Eh1șN(((((((((((䟎¿/_ϊ<9O'ύcLJ> xw\>1]#H&k
U,=P-W|}a
x/][[x{4w=w$[y/{>#
2|t_v5KcƉ#í/?
ύW?j
֝⯋ljk~-=柡iY$$^#sC9wM3QoycO)~2Zj"|EMj"jo<?x<}^"ld;~Q@
3|u)/725^'=kĞ?׉"xQ/xW~+$(M|c:u5EQEx=O1X]_ѿ쯬&Fo\A2Yk-CD+k]b      UCYi5ͣZ{d6}5G/?u_4t|3\/fX:掾~ӟf36:7   ?V_        騵cWKPُX_agi67ڦrSɱӬn+ky@+k/c_:?ᬿe9/ïh
?W}Wh<+wc2Y~͞
UΈ5
Oɴ17Eh1șN(((((((((((䟎¿/_ϊ<9O'ύcLJ> xw\>1]#H&k
U,=P-W|}a
x/][[x{4w=w$[y/{>#
2|t_v5KcƉ#í/?
ύW?j
֝⯋ljk~-=柡iY$$^#sC9wM3QoycO)~2Zj"|EMj"jo<?x<}^"ld;~Q@
3|u)/725^'=kĞ?׉"xQ/xW~+$(M|c:u5EQEx=O1X]_ѿ쯬&Fo\A2Yk-CD+k]b      UCYi5ͣZ{d6}5G/?u_4t|3\/fX:掾~ӟf36:7   ?V_        騵cWKPُX_agi67ڦrSɱӬn+ky@+k/c_:?ᬿe9/ïh
+k/c_:?ᬿe9/ïh
+k/c_:?ᬿe9/ïh
+k/c_:?ᬿe9/ïh
+k/c_:?ᬿe9/ïh
+k/c_:?ᬿe9/ïh
+k/c_:?ᬿe9/ïh
+k/c_:?ᬿe9/ïh
+k/c_:?ᬿe9/ïh
+k/c_:?ᬿe9/ïh
+k/c_:?ᬿe9/ïh
g11&X:掾Y|o࿈^m"~0CG_ҼIM=.!SѮlhI*M??g3_e/ًkvW߳=C趗        smX\?c=^{.       OVNkkD5BѮnO
g11&X:掾Y|o࿈^m"~0CG_ҼIM=.!SѮlhI*M??g3_e/ًkvW߳=C趗        smX\?c=^{.       OVNkkD5BѮnO
GvĴɿGk3&m_WPɿGk3bٛI?g]~֟O==k
_
GvĴɿGk3&m_WPɿGk3bٛI?g]~֟O==k
_
1i:OmE)43Q.aR[kc
1i:OmE)43Q.aR[kc


g&8_{2oF?uɿGk32oF?uɿGk32oF?uɿGk32oF?uɿGk32oF?uɿGk32oF?uɿGk32oF?u|?l)FO02H4sGΖ$٣E\LnigBKJٟOS
g&8_{2oF?uɿGk32oF?uɿGk32oF?uɿGk32oF?uɿGk32oF?uɿGk32oF?uɿGk32oF?u|?l)FO02H4sGΖ$٣E\LnigBKJٟOS
Qc((((((((((h~:/|kE|B>?gϏRÝfV7t>'ռI-QW֞ AG(-MRM7P    JcF?_ixNY"IӼ%^Wk    |afƾfxU?o͵x7MAF%x]Kǫ=߃1X5_5߈xW~4x;^ƳVӣ|y&zhӼW&h~CşimWWּoxAԼM{ş|Wy_[7 [j~Ӻu]W/亚McWֵKj!hXík4Dt;Oǂax'~4C}?_        h??W_:NJ?hυ|[1ॹğ        ~ &L5{Y>%vΡ+o|6ޛy/xJ_:!ϫhߊYKSOؿx~h_$Id#o|3:?=ï[l|Q{KO[|mcoxK4  x^!宛Rx>7SĺN8-og>'
Qc((((((((((h~:/|kE|B>?gϏRÝfV7t>'ռI-QW֞ AG(-MRM7P    JcF?_ixNY"IӼ%^Wk    |afƾfxU?o͵x7MAF%x]Kǫ=߃1X5_5߈xW~4x;^ƳVӣ|y&zhӼW&h~CşimWWּoxAԼM{ş|Wy_[7 [j~Ӻu]W/亚McWֵKj!hXík4Dt;Oǂax'~4C}?_        h??W_:NJ?hυ|[1ॹğ        ~ &L5{Y>%vΡ+o|6ޛy/xJ_:!ϫhߊYKSOؿx~h_$Id#o|3:?=ï[l|Q{KO[|mcoxK4  x^!宛Rx>7SĺN8-og>'
<(e<0KYZ</lt       4:MOMFG{H[L#/0KmxΗ0LH;ZMBK*;95K+;BMK^SPolzƓcs,i
f#\`袊+|a^Ǐh_~"\7p_ß~Ү4YåZR)53q{1L
<(e<0KYZ</lt       4:MOMFG{H[L#/0KmxΗ0LH;ZMBK*;95K+;BMK^SPolzƓcs,i
f#\`袊+|a^Ǐh_~"\7p_ß~Ү4YåZR)53q{1L
(
(
hφF
~OM +xD~ևTCMlDhӯ9)l~S?5     h??    WĎ6@(`O_($w@?#
hφF
~OM +xD~ևTCMlDhӯ9)l~S?5     h??    WĎ6@(`O_($w@?#
(W
(W
mzPHkGG0'^;??? WĎ6@(`O_($w@?#
mzPHkGG0'^;??? WĎ6@(`O_($w@?#
(W
(W
mygR? >($?f?1|#tK=_h[{hf(BmS?f=O)Gh(
mygR? >($?f?1|#tK=_h[{hf(BmS?f=O)Gh(
(
(
(
(
?4?|Zg]iYW4Yٷ3_{gៈe?Hm
?4?|Zg]iYW4Yٷ3_{gៈe?Hm

K@%%DxM+7];?3:_9xb]w:玵

K@%%DxM+7];?3:_9xb]w:玵
~17Or
[mkGuxbQO뫏W-^*6       kZ֠ZeI5& tKY        KM6\.x>(o<k>.״
W"5
fKŚ/<=ärj*4VJLڎi}Iqu7]>9Ix_^|G_(ׇ>4в~ ?~[ୗ7ZgW
~17Or
[mkGuxbQO뫏W-^*6       kZ֠ZeI5& tKY        KM6\.x>(o<k>.״
W"5
fKŚ/<=ärj*4VJLڎi}Iqu7]>9Ix_^|G_(ׇ>4в~ ?~[ୗ7ZgW
M?<=:]ghuj-q]Y=Qg]SRӴ(u.Kg4ݥ)|X,w|Oߏƿ;a:|Lυ<k{ExM1/E2[~6_|=exO^  xOŶ   H
M?<=:]ghuj-q]Y=Qg]SRӴ(u.Kg4ݥ)|X,w|Oߏƿ;a:|Lυ<k{ExM1/E2[~6_|=exO^  xOŶ   H
j6?kx9׆|#hcAtxU&lׄ\|oC5]\Z&|9Zb?~~_)h-cz|7cJsTG?w\xkS.Ƌ??:NK?W_>ѵ֞%]>?~oOĺLڏڣ־|eӼ>9%[޻xxPFҼcC@uڇ@|Ci?ékC5/7>'=#li?oxN3g
OXOڇl_X#Ǐ>&-'66^wKh5Ok(O>/]iq?|[_VM4s^𮧪{j~1x_ZSw~2_1gxeOϊ#ǃ|o{/TZph[귶i:u뿴	>*?
wg7t}t
Г6z/oigO/tI;'/WA{i+WģOMHfnyi]sG
j6?kx9׆|#hcAtxU&lׄ\|oC5]\Z&|9Zb?~~_)h-cz|7cJsTG?w\xkS.Ƌ??:NK?W_>ѵ֞%]>?~oOĺLڏڣ־|eӼ>9%[޻xxPFҼcC@uڇ@|Ci?ékC5/7>'=#li?oxN3g
OXOڇl_X#Ǐ>&-'66^wKh5Ok(O>/]iq?|[_VM4s^𮧪{j~1x_ZSw~2_1gxeOϊ#ǃ|o{/TZph[귶i:u뿴	>*?
wg7t}t
Г6z/oigO/tI;'/WA{i+WģOMHfnyi]sG
S>:+௅Jk#.AG[3¦ׂ
Ktt5'VtdK_W7Ï?#xw;?>5E^U[>.t=|
3?u
u^KU~5Dž|?k/ij$%jᏉ#x{έdox/íh>ռ.+=#"Z,Zy+O~?Oxkž(:o+W|Go'[i5}zmS*䰊_&v=~|OyZ'wе=_ߏ|=0|P|>?3xW=Z=X{,ڶƃcj_;ğ<;;0xCGĚ[_{DoWXg?waVA)	[zm??i;Xw߈eاC޷H[d|kmg>Ϫx[6
j>3΢6|Qgdd
S>:+௅Jk#.AG[3¦ׂ
Ktt5'VtdK_W7Ï?#xw;?>5E^U[>.t=|
3?u
u^KU~5Dž|?k/ij$%jᏉ#x{έdox/íh>ռ.+=#"Z,Zy+O~?Oxkž(:o+W|Go'[i5}zmS*䰊_&v=~|OyZ'wе=_ߏ|=0|P|>?3xW=Z=X{,ڶƃcj_;ğ<;;0xCGĚ[_{DoWXg?waVA)	[zm??i;Xw߈eاC޷H[d|kmg>Ϫx[6
j>3΢6|Qgdd
(
(
(
(
(
(
T?c[Aό᩿6/d[UIF>mDج~S?5  h?iغ?iغ??iغ?iغ??iغ?iغ??iغ?iغ??iغ?iغ??iغ?iغ??iغ$m?G|{Z|G|!ŭ7?o~ȱC8SX,]9nHb/7N??_~   袊((+ߊ~~B?4^>-+Z65ڂmwD~Ծ'|5wFm.D<_5{SJ#пGkڃ%yJi=:go5coZxOG^<߁53Oյ\xv_xƮ6u/+ҿࢰ/u|(,+x:
C6wχWQ~6MӼVcb-o._c>.&O:x*O
xO
T?c[Aό᩿6/d[UIF>mDج~S?5  h?iغ?iغ??iغ?iغ??iغ?iغ??iغ?iغ??iغ?iغ??iغ?iغ??iغ$m?G|{Z|G|!ŭ7?o~ȱC8SX,]9nHb/7N??_~   袊((+ߊ~~B?4^>-+Z65ڂmwD~Ծ'|5wFm.D<_5{SJ#пGkڃ%yJi=:go5coZxOG^<߁53Oյ\xv_xƮ6u/+ҿࢰ/u|(,+x:
C6wχWQ~6MӼVcb-o._c>.&O:x*O
xO
XxHQд?   A1l}"K
XxHQд?   A1l}"K
u:xZv?@Լ={iC]}ՆzPb?cuo}+ƅ/|m♴aMx]ߋ$Gυ|g+N~S~'ـ>!ਚ>ᇅ      k>kkv(+nþ2яB+_>6Zw?l/|Lj|T񶩡JQ1O~       sBC$Ks-ſí'243p]o~-=c?čb]].e4GEΠƁw~?h+?9w]4w7R;/wWk/ŏ
xZ{_K
3u_I?|CwO
u:xZv?@Լ={iC]}ՆzPb?cuo}+ƅ/|m♴aMx]ߋ$Gυ|g+N~S~'ـ>!ਚ>ᇅ      k>kkv(+nþ2яB+_>6Zw?l/|Lj|T񶩡JQ1O~       sBC$Ks-ſí'243p]o~-=c?čb]].e4GEΠƁw~?h+?9w]4w7R;/wWk/ŏ
xZ{_K
3u_I?|CwO
_I>x<z/4ׅn
_I>x<z/4ׅn
v2Y|Gte
v2Y|Gte
'?gymJ7W0        [iG4}zAtm'S|A_-7}9xľ9O~E_t{^GuW1I
B:.W8[
'?gymJ7W0        [iG4}zAtm'S|A_-7}9xľ9O~E_t{^GuW1I
B:.W8[
xGD_bԼFu7O&xWBW~!|-YWOſxj~jW bcI,~~=~7WM7C"7&?dEC"ԴZx:OEhu+~WaoZ{-a|_?|@
xGD_bԼFu7O&xWBW~!|-YWOſxj~jW bcI,~~=~7WM7C"7&?dEC"ԴZx:OEhu+~WaoZ{-a|_?|@
>t0|e׼Q(h% Ե|5ڽυ:/j:/;τ<xm|Ckڗ_|y>nFlI~/e?exg|GM'1xo^
>t0|e׼Q(h% Ե|5ڽυ:/j:/;τ<xm|Ckڗ_|y>nFlI~/e?exg|GM'1xo^
skv}/xi=/eE~d/C:MGk|7]c7Y>
jv#M{OSO
skv}/xi=/eE~d/C:MGk|7]c7Y>
jv#M{OSO
!'7>1'!KӾ,-tPg7Ƌ?Kqxג\x>"u>?}4aK7ի)1^%#nfo'UXo5Sj}-;Ibo??hOxG3|\/5CR`>?>
4  X]Z-uiVZy/;s\x{B|mFm{zΙm߈"wVm+k~(5_IǣZWu[7EԯF5*^ѵ}Y/-4Qwyc$b&cY:tPo+qm/j~+_<'_P_ŷOxBM[Q:M#ֺWO
>
*IN?u↥/ISşυW|Y(-;+-FHB!>>dQ֊g|g/
\j
!'7>1'!KӾ,-tPg7Ƌ?Kqxג\x>"u>?}4aK7ի)1^%#nfo'UXo5Sj}-;Ibo??hOxG3|\/5CR`>?>
4  X]Z-uiVZy/;s\x{B|mFm{zΙm߈"wVm+k~(5_IǣZWu[7EԯF5*^ѵ}Y/-4Qwyc$b&cY:tPo+qm/j~+_<'_P_ŷOxBM[Q:M#ֺWO
>
*IN?u↥/ISşυW|Y(-;+-FHB!>>dQ֊g|g/
\j
oH>$>ү ?|e;k?unߏ5iV}2Gu]ğ/|L:7ï 4_|MH$OyִO>   eH<+gϪK}E|w	1i~?|!>       |5{o~J?>VOY5kS>0.9%ω=:E~9gf̈́i
oH>$>ү ?|e;k?unߏ5iV}2Gu]ğ/|L:7ï 4_|MH$OyִO>   eH<+gϪK}E|w	1i~?|!>       |5{o~J?>VOY5kS>0.9%ω=:E~9gf̈́i
o|4ǖ?e6  |?4ZO"Cƶ𾩩xK'[O((
|VWԼIKZ7~%ijvc*Ï|YtԻՖ_MS*GvĴQ@~pW|EmWvZszkw:W4S^'Ԡ?>ևm{B>iu7om=_L4;'KY'QuF~+(xï7/#iG:r?jovѹ~7;J'QuF~+(xï7/#iG$֋|]ao/͞i4m\w䴸Ruk{yeP?f=O)Gh(
o|4ǖ?e6  |?4ZO"Cƶ𾩩xK'[O((
|VWԼIKZ7~%ijvc*Ï|YtԻՖ_MS*GvĴQ@~pW|EmWvZszkw:W4S^'Ԡ?>ևm{B>iu7om=_L4;'KY'QuF~+(xï7/#iG:r?jovѹ~7;J'QuF~+(xï7/#iG$֋|]ao/͞i4m\w䴸Ruk{yeP?f=O)Gh(
(
(
(
(
(! '
iqį0]&ox3ZW    C4/oE2kBNup^ۻm3ƹO^5>|Zӿ_?oOE~1GǏׇc~!-G]G
(! '
iqį0]&ox3ZW    C4/oE2kBNup^ۻm3ƹO^5>|Zӿ_?oOE~1GǏׇc~!-G]G
#MP$?>9Xxoö4~:imC<=jVx&?wIZwks>\W|1.g?>       |NAf_~~Ӵ?xXM^s[[J&Kֺ~׌ο9vEK7_9Dh_x_	_~-h^'l!Cn>(xA{š֑W~6m|e7u>mmⷌxo,|eG~Αx:nI?D8񯀼s\~4xwG=VOsƚR{	\
H!Ю;R_uΟ$7m~su*j3#_{YxYh-+gŽN+ol|
ռuOGno|KmNv|-?-wi?_}ŇA?(G/o>Ixÿ    :gG5S}Ʃ#[➻.hoMci?x8꺆&{XuK7i
#MP$?>9Xxoö4~:imC<=jVx&?wIZwks>\W|1.g?>       |NAf_~~Ӵ?xXM^s[[J&Kֺ~׌ο9vEK7_9Dh_x_	_~-h^'l!Cn>(xA{š֑W~6m|e7u>mmⷌxo,|eG~Αx:nI?D8񯀼s\~4xwG=VOsƚR{	\
H!Ю;R_uΟ$7m~su*j3#_{YxYh-+gŽN+ol|
ռuOGno|KmNv|-?-wi?_}ŇA?(G/o>Ixÿ    :gG5S}Ʃ#[➻.hoMci?x8꺆&{XuK7i
       qо"^8o_,X>xdoiƥǚfNJJ9/*o<?}KSetM!m/jGd]x>X|8Xѯuhwc_,ox|[j~4~5~1~)Ž-#Cs>
^+h
o4n=6Qng
͗.$Ѵ)ׁ9W¾1=w'
⧊#97}|[;
Kz&| Ӡ5 W࢚׈`QOS|->Y"χ/x狾O>Ӵ{P<[3}kRXk֠E~@
       qо"^8o_,X>xdoiƥǚfNJJ9/*o<?}KSetM!m/jGd]x>X|8Xѯuhwc_,ox|[j~4~5~1~)Ž-#Cs>
^+h
o4n=6Qng
͗.$Ѵ)ׁ9W¾1=w'
⧊#97}|[;
Kz&| Ӡ5 W࢚׈`QOS|->Y"χ/x狾O>Ӵ{P<[3}kRXk֠E~@
xKzj^M%|D#'='G3Z?>%iZo5F!Yy=/M/޾B

xKzj^M%|D#'='G3Z?>%iZo5F!Yy=/M/޾B

%᧍|o}Gㅇ5ox஻/Ak@~E{YmcV<ڞvQE~s~?_|)=x>/
hZnjhY~O>'|7c@OXpuYZ
V^F,B?l|k{=״{_>2xڲ?_
%᧍|o}Gㅇ5ox஻/Ak@~E{YmcV<ڞvQE~s~?_|)=x>/
hZnjhY~O>'|7c@OXpuYZ
V^F,B?l|k{=״{_>2xڲ?_
4!M_|fO_mFŬVU
nסm?ľ-~
4!M_|fO_mFŬVU
nסm?ľ-~
1ht+?>:xԮ-?>8_% ƾ<8|7Bмy/|II^MCe83o|KJtش}*TvCU|/VD.!|.G‡?=ODwkZU|@׿WiˉeӼ֓D[o       [iZEWvj\??w|e^jtB#j7TtOھk/x3M=*{DŽ>-xM=j
1ht+?>:xԮ-?>8_% ƾ<8|7Bмy/|II^MCe83o|KJtش}*TvCU|/VD.!|.G‡?=ODwkZU|@׿WiˉeӼ֓D[o       [iZEWvj\??w|e^jtB#j7TtOھk/x3M=*{DŽ>-xM=j
W?mo~gO=|dk.aSU孎&quP4%#a$Oox[>_ߴ_)
W?mo~gO=|dk.aSU孎&quP4%#a$Oox[>_ߴ_)
~&JmW%|[WMմ!<1o׷6f㯆_~
~&JmW%|[WMմ!<1o׷6f㯆_~
|@Oo>‹~;Q>-*Hៅn4#Ot-;7?
|@Oo>‹~;Q>-*Hៅn4#Ot-;7?
vѼEc~~x?w>(.4o7^:WƋ:߉x+Z9|kj?iNMsQ?oCwG]5Y~ S𕧇M3Oյ+,丁l?SV<W^߄7WûuM{T4k!|i\u~>|~ 𝶳h(;?'8|M>O߯6ǖ6<~$~п
ii~M3ޛK.$|-5'?
vѼEc~~x?w>(.4o7^:WƋ:߉x+Z9|kj?iNMsQ?oCwG]5Y~ S𕧇M3Oյ+,丁l?SV<W^߄7WûuM{T4k!|i\u~>|~ 𝶳h(;?'8|M>O߯6ǖ6<~$~п
ii~M3ޛK.$|-5'?
isix??#k_IgWmVWwZ~|(k/rYE;C@4l~ C[Լ]u_h),%lo_RMqM/|ֱ9s|R׉>;Owv.?bVE_nܾ|E~
SOj7~vixzMΝ5gz}èY      Ůmi{Ŵ_!~        xfHb?ho#[=kZׂV}{g\y}tZ>sgVּYqXkxZZZXZXX[[X[iggivֶѬ6CE1"GhIW|2I<;G,Rx$r#xFC#+]|u~7?wyw
isix??#k_IgWmVWwZ~|(k/rYE;C@4l~ C[Լ]u_h),%lo_RMqM/|ֱ9s|R׉>;Owv.?bVE_nܾ|E~
SOj7~vixzMΝ5gz}èY      Ůmi{Ŵ_!~        xfHb?ho#[=kZׂV}{g\y}tZ>sgVּYqXkxZZZXZXX[[X[iggivֶѬ6CE1"GhIW|2I<;G,Rx$r#xFC#+]|u~7?wyw
?ß?d߉
i*$fW=b9'Kcya.so<XUwF= 4*O6q$Ο7eiXdAQEg%qƀE/[?
?ß?d߉
i*$fW=b9'Kcya.so<XUwF= 4*O6q$Ο7eiXdAQEg%qƀE/[?
?ß¿),?߰/c?߰/c[?
?ß¿),?߰/c?߰/c[?
?ß??:Dw8woh-_8q
\ˍ[,wF= 4*?~>m'uxsOO2cٟ[ox,>/g/x]wM֛?&O&WE/^~K?e_7nidX?|K? xC+~i+1-|}^3K/z>!xm5jZ4[_|+!~~ xg_I\K_їxOP].k[?Kl+/ʏ[?
?ß??:Dw8woh-_8q
\ˍ[,wF= 4*?~>m'uxsOO2cٟ[ox,>/g/x]wM֛?&O&WE/^~K?e_7nidX?|K? xC+~i+1-|}^3K/z>!xm5jZ4[_|+!~~ xg_I\K_їxOP].k[?Kl+/ʏ[?
?ß]|
./~n+CoكUCCҾ.6k}1?ڟ4}?x:[oj|Wk?6>x<_	)d_/Iog0i>
?ß]|
./~n+CoكUCCҾ.6k}1?ڟ4}?x:[oj|Wk?6>x<_	)d_/Iog0i>
|
_.MH,3%ơ۷jLg_YxsTWE/^~eDCxM
j:#J>j       7z74>#|;:O]*š5kW0Ad/u/gGѥ{O}~QKx_G4|mc^חv:9jO3e_Ƣg_YxsTWE/^||
Fxg¶5?fbojm9|j/]VvS|cxGA,mg5k_m6W'booL^?xكK'3~ʱh;4_=im
|
_.MH,3%ơ۷jLg_YxsTWE/^~eDCxM
j:#J>j       7z74>#|;:O]*š5kW0Ad/u/gGѥ{O}~QKx_G4|mc^חv:9jO3e_Ƣg_YxsTWE/^||
Fxg¶5?fbojm9|j/]VvS|cxGA,mg5k_m6W'booL^?xكK'3~ʱh;4_=im
:_d7|/5u)&jwQIGj?K<=<νIW^ }
:_d7|/5u)&jwQIGj?K<=<νIW^ }
?ß¿),SfV7     %_ASu_^$u~ec[_5(>xT<,[h:0T]ׄnC'sKi^$?g_=sǚįHwh^s~]kou=jζ*0¿),C\|CcI-W9!-ZjvM,_'VXii#$	HY	5F
C>4슚g~<}Q7]#7   4zmKP#ChU棦k3+?bOOß?xGQ~f3h׾%񔶾Ѵx{Mӯ}~
~]:KXI:@+       a      T7o_
?ß¿),SfV7     %_ASu_^$u~ec[_5(>xT<,[h:0T]ׄnC'sKi^$?g_=sǚįHwh^s~]kou=jζ*0¿),C\|CcI-W9!-ZjvM,_'VXii#$	HY	5F
C>4슚g~<}Q7]#7   4zmKP#ChU棦k3+?bOOß?xGQ~f3h׾%񔶾Ѵx{Mӯ}~
~]:KXI:@+       a      T7o_
ͯ|5j떚όm5%BA]\E@Q@Q@-vw]D-լ\x@hxeHfEhEWՑ0 q<?oxை^_fyK5
ZMݧt-FcdoĿbƞ;f/ľռGU?UN:5]BioF<ۿo{@i1UfxK
:K
߀oz`
OClltYZNX^Ep	wtgI3~7jƟjmCCS'=m'އNϊ5!_~ZiW?i
/t	+Ke_o{@i1Uo{@i1Ugk_c_|[v}qxm>9{y3&re
_q6d\"<y6}˦ۀeO'i__G|5x+Ե7sx/7O	E͟mKÞ<RO{qo{@i1Uo{@i1UqzG^#ҼMDO<{s[ҾCSOo*뿉6V-’͢jk^6.5GKEn~|'%5,w0{Q]៳j'_E>+xo__m^-/EM;G-CX|IkWiM#E"[k~:mWFUťNJ?gu--Sg㾗eؗtqٯW:Ui#>ۧ ׼7$M5]7_Ю
"P[i.3zOo~Ծ!jo_?cWMqw[ֿg?L SLJnd4
!mb6}k:7|p7CxAaӼC_x^}owϊ5cR
iZeaZý`_11Tý`_11T_Gsq{7m"jS_1~u_?nj_1knyiB^|V.j9$7oZ{mk^ ÿ\èxV4^'{~c߲#Ob{~c߲#Obl+/ʮXIwmx/PXvNw2o1$#4v+?:ý`_11U?fog_+>xZn4Gj:]Ea^[Uw(K,   :Cʊ((((((((?wo^Ju&7
icR_xMxo^#>4hf]OӓBнaį*soö~#!u~OM&^J
ͯ|5j떚όm5%BA]\E@Q@Q@-vw]D-լ\x@hxeHfEhEWՑ0 q<?oxை^_fyK5
ZMݧt-FcdoĿbƞ;f/ľռGU?UN:5]BioF<ۿo{@i1UfxK
:K
߀oz`
OClltYZNX^Ep	wtgI3~7jƟjmCCS'=m'އNϊ5!_~ZiW?i
/t	+Ke_o{@i1Uo{@i1Ugk_c_|[v}qxm>9{y3&re
_q6d\"<y6}˦ۀeO'i__G|5x+Ե7sx/7O	E͟mKÞ<RO{qo{@i1Uo{@i1UqzG^#ҼMDO<{s[ҾCSOo*뿉6V-’͢jk^6.5GKEn~|'%5,w0{Q]៳j'_E>+xo__m^-/EM;G-CX|IkWiM#E"[k~:mWFUťNJ?gu--Sg㾗eؗtqٯW:Ui#>ۧ ׼7$M5]7_Ю
"P[i.3zOo~Ծ!jo_?cWMqw[ֿg?L SLJnd4
!mb6}k:7|p7CxAaӼC_x^}owϊ5cR
iZeaZý`_11Tý`_11T_Gsq{7m"jS_1~u_?nj_1knyiB^|V.j9$7oZ{mk^ ÿ\èxV4^'{~c߲#Ob{~c߲#Obl+/ʮXIwmx/PXvNw2o1$#4v+?:ý`_11U?fog_+>xZn4Gj:]Ea^[Uw(K,   :Cʊ((((((((?wo^Ju&7
icR_xMxo^#>4hf]OӓBнaį*soö~#!u~OM&^J
/Zŭ~]sIth1tiwMw^@&֯/
[ټwxzyuO:}/^>+CV/_uzھ:|Sip^8y$Oh/v7..|Y~ßhovZ?GC∼T<W^5tw-k{/$o“YQ{/$o“YQ<_+i7?t]{sg58!o:jEr;GOIiU
/Zŭ~]sIth1tiwMw^@&֯/
[ټwxzyuO:}/^>+CV/_uzھ:|Sip^8y$Oh/v7..|Y~ßhovZ?GC∼T<W^5tw-k{/$o“YQ{/$o“YQ<_+i7?t]{sg58!o:jEr;GOIiU
OgFa
OgFa
OgF8_N>*WΙ[Bӵᆯ};×-ž%ŏn㔒i0YG[r}Tg|O6ßVŭeƝwQ?~|cԿ6j;7<x 5Moǰ?jJ<5+Oi,R>_a
OgF8_N>*WΙ[Bӵᆯ};×-ž%ŏn㔒i0YG[r}Tg|O6ßVŭeƝwQ?~|cԿ6j;7<x 5Moǰ?jJ<5+Oi,R>_a
OgFa
OgFa
OgF<    
OgF<    
ݼ0'4i?wD#OF|#>:x;gn>)4V_7"g|.<u뵏O0Cx:='D|(Ֆg?V|kk]6)O)-5!x_~4]_#B#By߁?zm>--|9"? ɡ"hǚ~$x<y:ݞkÈcF_ռxo~,ƭ]ZIBO{ql&]b’qio$ڵƝ\I#B#Bv6<eefѾ̾/7~7ƳMk_x<+!k6v=
'VӼ={>a{juS	7ZV|O}/XJ~5sj5O^04~|M+W{/$o“YQ{/$o“YQ,1iO?InWc
/Foc.xTg/O##š߁4/h!+l:vG\P2D~ҺĿ>2Xks㯃c]kᗉ~-x{x+ZWŋ,>.?E]ub{/$o“YQ-?jo)4]#l>1u{N.f\i|_+[Z,vn.?o;ŏهo|m]4>$|>׎4=cVn-MY
{o|,{[&[]OXo"߲'>?kߊ+       AxJFo{eϊϏ5]^|?]xC V~(.4:~xߌ+S2|=u=co~<Il;5oxľ(-ω$:ΧEӴY0_H'УG0_H'У@_|ER~?
ݼ0'4i?wD#OF|#>:x;gn>)4V_7"g|.<u뵏O0Cx:='D|(Ֆg?V|kk]6)O)-5!x_~4]_#B#By߁?zm>--|9"? ɡ"hǚ~$x<y:ݞkÈcF_ռxo~,ƭ]ZIBO{ql&]b’qio$ڵƝ\I#B#Bv6<eefѾ̾/7~7ƳMk_x<+!k6v=
'VӼ={>a{juS	7ZV|O}/XJ~5sj5O^04~|M+W{/$o“YQ{/$o“YQ,1iO?InWc
/Foc.xTg/O##š߁4/h!+l:vG\P2D~ҺĿ>2Xks㯃c]kᗉ~-x{x+ZWŋ,>.?E]ub{/$o“YQ-?jo)4]#l>1u{N.f\i|_+[Z,vn.?o;ŏهo|m]4>$|>׎4=cVn-MY
{o|,{[&[]OXo"߲'>?kߊ+       AxJFo{eϊϏ5]^|?]xC V~(.4:~xߌ+S2|=u=co~<Il;5oxľ(-ω$:ΧEӴY0_H'УG0_H'У@_|ER~?
4|ER~?
4|ER~?
40_H'УG0_H'У@-%~|ER~?
40_H'УG0_H'У@-%~|ER~?
5A|[?~֟ƈOx'OPi"t)Q#'G2٥{cṉ)@EPEPEPEPEPEPEPEP_L4;'KY
5A|[?~֟ƈOx'OPi"t)Q#'G2٥{cṉ)@EPEPEPEPEPEPEPEP_L4;'KY
'!%M?ڛ     Vh
'!%M?ڛ     Vh
Ae|AiVi4=NNuk[6{]:dKy?Gh?#?%h?#?%h?*oWO?*oWO诀?#?%h?#?%h?*oWO?*oWO诀?#?%h?#?%h?*oWO?*oWOS
Ae|AiVi4=NNuk[6{]:dKy?Gh?#?%h?#?%h?*oWO?*oWO诀?#?%h?#?%h?*oWO?*oWO诀?#?%h?#?%h?*oWO?*oWOS
@{ؿ?dEO=WR/W^-{qXXxSԵ>hrgkeغ4ۛKg_SWB}ywM|7I*񷃒~;]9ux-ԖB    oc
ԓA\L
@{ؿ?dEO=WR/W^-{qXXxSԵ>hrgkeغ4ۛKg_SWB}ywM|7I*񷃒~;]9ux-ԖB    oc
ԓA\L
cA|?k];'5Oӿi>"|ਡ9ϋ5 .mu-?ĞeG٢\)(@S>1_Q
cA|?k];'5Oӿi>"|ਡ9ϋ5 .mu-?ĞeG٢\)(@S>1_Q
c
c
9G7T辯?LG?˜
?/(   =o`կm-Nibex^YaӞQk(pdݴL
9G7T辯?LG?˜
?/(   =o`կm-Nibex^YaӞQk(pdݴL

ٷj!V?7m.AOZ{k:i{hk^<1J]N?*oWO诀?#?%h?#?%h?*oWO?*oWOi?W(3^/>ej>ĭ=s|>о
|AY ?|a[ Դ?j

ٷj!V?7m.AOZ{k:i{hk^<1J]N?*oWO诀?#?%h?#?%h?*oWO?*oWOi?W(3^/>ej>ĭ=s|>о
|AY ?|a[ Դ?j
:3ߢ߱O<_Go+xƚO}6DŽ4oφ=݆ƺޟ]Q{?|CVgGM7J_    GM7J_   $T#$ПG$T#$П@_GM7J_      GM7J_   8_qٛ;W$T#$П_?[~cǖ?_/ީzQ~75]C[g        [ois;]}s1ȄZI((((((((?k?^%,MsGqĿe(.!  $.O5ʒ!F0Iż11HGUa5_]_/gd ['][WPdUcſ        |K/8u5|Qf.V=7Im<]tު(g]Hѵk
:3ߢ߱O<_Go+xƚO}6DŽ4oφ=݆ƺޟ]Q{?|CVgGM7J_    GM7J_   $T#$ПG$T#$П@_GM7J_      GM7J_   8_qٛ;W$T#$П_?[~cǖ?_/ީzQ~75]C[g        [ois;]}s1ȄZI((((((((?k?^%,MsGqĿe(.!  $.O5ʒ!F0Iż11HGUa5_]_/gd ['][WPdUcſ        |K/8u5|Qf.V=7Im<]tު(g]Hѵk
<#O|'Jxq?%–
mm>?:dz~?LAY|yViŧVFWdj
cOj&
<#O|'Jxq?%–
mm>?:dz~?LAY|yViŧVFWdj
cOj&
/^!/O,:U_?!\Դ]OHχ~$~o|'?uZǀ]u|2=ol.uO#KԵxo|Oo5]j.t߃X?~(O;4

SJ{=f{hZE6_<{~!75uO]~#?K?j]gU>/ڊJO%=sOŭH?h]B^z|Yo,Ih:LJm<+Mxn`bnw#y
ww7mf$7>
oAPxbߊ'~>1OhQ|xƟa'Pj|3᫛OmbuZڥͽ喥cywݡkK[y#f)X     (??_~     ^?jƚu-/¿|o"+c|w%.4,b䷘ 4QEQEQEQEQEQEQEQEQEQEQEQEQERdd.F       QEQEQEQEU;;O []NQK嶾=2aI#[;R,.m/m;"nQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@FAIa8`?)Df~JF@vƳJe)+
/^!/O,:U_?!\Դ]OHχ~$~o|'?uZǀ]u|2=ol.uO#KԵxo|Oo5]j.t߃X?~(O;4

SJ{=f{hZE6_<{~!75uO]~#?K?j]gU>/ڊJO%=sOŭH?h]B^z|Yo,Ih:LJm<+Mxn`bnw#y
ww7mf$7>
oAPxbߊ'~>1OhQ|xƟa'Pj|3᫛OmbuZڥͽ喥cywݡkK[y#f)X     (??_~     ^?jƚu-/¿|o"+c|w%.4,b䷘ 4QEQEQEQEQEQEQEQEQEQEQEQEQERdd.F       QEQEQEQEU;;O []NQK嶾=2aI#[;R,.m/m;"nQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@FAIa8`?)Df~JF@vƳJe)+
Yo(&6_??/mkĞ2߆~"k7ΝSM0/tmFY.ol1}E+_5}j΅-O&i3iVzχRY Hײ;=O>{ڢ[{K~3_3ӴWW
~ξ0YG/M⻏
~Կgǿ~ui_u^Cgx߈ҚGҧ/_G?;.׍W{xE񧀴(w?:M
Yo(&6_??/mkĞ2߆~"k7ΝSM0/tmFY.ol1}E+_5}j΅-O&i3iVzχRY Hײ;=O>{ڢ[{K~3_3ӴWW
~ξ0YG/M⻏
~Կgǿ~ui_u^Cgx߈ҚGҧ/_G?;.׍W{xE񧀴(w?:M
>&x7^č/0w.O/qN}𖓢q.?ZkuS3]ܭ亟<+xúuIjޝ}ežayI4ߎiڷ!-\ݼ
xv/-?m|oO[mWI67_hlU~X>xg]?
>&x7^č/0w.O/qN}𖓢q.?ZkuS3]ܭ亟<+xúuIjޝ}ežayI4ߎiڷ!-\ݼ
xv/-?m|oO[mWI67_hlU~X>xg]?
n0Ѿ8]5_7u|'
gIVxJSmϊ?6|XGS\)f~AGxEx׌a?|k75[?)uc<_O|1u?S^ſ=sm(?|;3~">G񥽾mB+J6ufCv|{Y|0
y='?RψW!?Mv~-Emm~1%ieZ_^|QuxjgZWkZo?e|[+/|Awkͣi
]|7.:S>x_WzDžGgo{[mOF]]wk:TA|g_M5;,e1Y|WԶ;`Sjz<~~$]}k{ǿg/<=#VC=c?|t/Fw-w]֙ZjM-~eU?'Y?x>$j
n0Ѿ8]5_7u|'
gIVxJSmϊ?6|XGS\)f~AGxEx׌a?|k75[?)uc<_O|1u?S^ſ=sm(?|;3~">G񥽾mB+J6ufCv|{Y|0
y='?RψW!?Mv~-Emm~1%ieZ_^|QuxjgZWkZo?e|[+/|Awkͣi
]|7.:S>x_WzDžGgo{[mOF]]wk:TA|g_M5;,e1Y|WԶ;`Sjz<~~$]}k{ǿg/<=#VC=c?|t/Fw-w]֙ZjM-~eU?'Y?x>$j
o^݇WWM<+
o^݇WWM<+
Z4uM/3N뿡7~5/:>!)~~~WV"[ĺfU׉7/5߂_<cݮ?tkW<m]M
&CVׯG[{%.vy.T}xk?ÏIxMVwMGdžum^_
xFkhZ	eiq2~
|Ŀ{{ZǍ<">$xEO|
OO?i,2tMGC񕅴>_xl:]ZS*|g?h
Z4uM/3N뿡7~5/:>!)~~~WV"[ĺfU׉7/5߂_<cݮ?tkW<m]M
&CVׯG[{%.vy.T}xk?ÏIxMVwMGdžum^_
xFkhZ	eiq2~
|Ŀ{{ZǍ<">$xEO|
OO?i,2tMGC񕅴>_xl:]ZS*|g?h


x/z׌={7:/RiM
'Kl,|G麥;;]vP;WWᗈ3g4mW-oԵ
wo.OԼ3_XuͥxoRu
GD^~t
ž4O
x/z׌={7:/RiM
'Kl,|G麥;;]vP;WWᗈ3g4mW-oԵ
wo.OԼ3_XuͥxoRu
GD^~t
ž4O
[úu
xoJ
ImtG Ӵ:H-,8bDPj(((Wx  xs 5>;[
Xox5v"y;so-$o~r.ᗁ)Ro5&h^;ޛ]6@om-$9m!h'?:'        IY~
o
/x-+ߋǯ1
:c~*II%IC~F"|<⟃ύt׊.~"g4}FOÚj~׵
[úu
xoJ
ImtG Ӵ:H-,8bDPj(((Wx  xs 5>;[
Xox5v"y;so-$o~r.ᗁ)Ro5&h^;ޛ]6@om-$9m!h'?:'        IY~
o
/x-+ߋǯ1
:c~*II%IC~F"|<⟃ύt׊.~"g4}FOÚj~׵
;;oig˒|V]mBğHVxþ(LG"::FnV _-,Ö     ?'/Ql?>|.?s㯇:OGwO{|p|iw6>"{ŭ#[׆OůzޟZGdkľ$Я<+]+㵲gV
;;oig˒|V]mBğHVxþ(LG"::FnV _-,Ö     ?'/Ql?>|.?s㯇:OGwO{|p|iw6>"{ŭ#[׆OůzޟZGdkľ$Я<+]+㵲gV
K1x=I?dM[棠xƿō[u+9?Kuif>[E~I|XGoJ}KCM
Apx/vx6-#z7-|_m
K1x=I?dM[棠xƿō[u+9?Kuif>[E~I|XGoJ}KCM
Apx/vx6-#z7-|_m
d]K%?ܚ|Ue7GV|Fc~OsQxCCzc>O7Tu-:$|]}n&xLNI;Ioj#)$~q/?>~'4/֚@kH~#ּk~ёwO4=G>:Ij!?|E/@?e^(k^3~7|Ex?[ƾt(g/<|Cq=1
i6wz&Oulgscu5tm-.[A5uh>x[<7&ueeeCsjzVptC5Ke?׀n%K^3ׇ5kk=F:o7~I]x:/x?ğkUyZG5^
ƞ-l7##AxzſoLD<'%O
_o>:O
|hPO^,>Ɵ2Ex??~5/
}0{r5/^izվ`mF^jR[[l/eY\x_\}OQwc[j;_|y׵+x"G^owVn2
d]K%?ܚ|Ue7GV|Fc~OsQxCCzc>O7Tu-:$|]}n&xLNI;Ioj#)$~q/?>~'4/֚@kH~#ּk~ёwO4=G>:Ij!?|E/@?e^(k^3~7|Ex?[ƾt(g/<|Cq=1
i6wz&Oulgscu5tm-.[A5uh>x[<7&ueeeCsjzVptC5Ke?׀n%K^3ׇ5kk=F:o7~I]x:/x?ğkUyZG5^
ƞ-l7##AxzſoLD<'%O
_o>:O
|hPO^,>Ɵ2Ex??~5/
}0{r5/^izվ`mF^jR[[l/eY\x_\}OQwc[j;_|y׵+x"G^owVn2
>| !|0^'_>T
>| !|0^'_>T
ˬ"ҼhPEPEPEPEPEPEPEPEP)Z+    ;_BJ?K"K@x+GtLgIATmsITo4tfFy*064o
x{NiZv6iuAiceo(H05hY\k6fwYҭdi;GN(!YfVY?><|G|8?ucOndxS0|/¿&~$g=5[{5ñ
ˬ"ҼhPEPEPEPEPEPEPEPEP)Z+    ;_BJ?K"K@x+GtLgIATmsITo4tfFy*064o
x{NiZv6iuAiceo(H05hY\k6fwYҭdi;GN(!YfVY?><|G|8?ucOndxS0|/¿&~$g=5[{5ñ
[?xKU.Cm^NtҊO_V|\u퟊V~=VV:g߀7L?4{;eylaP׼17xϫ57O_>,|z__g}[O<]?>E>ֿ<|dG{DYÿE{W׌RzO/oKƟ?fzP"x'zO4dGǯ~..w       |=ck]tmaMO¨x^?xMGPm8\|1#_<x[7ğپomٳI߁<
[?xKU.Cm^NtҊO_V|\u퟊V~=VV:g߀7L?4{;eylaP׼17xϫ57O_>,|z__g}[O<]?>E>ֿ<|dG{DYÿE{W׌RzO/oKƟ?fzP"x'zO4dGǯ~..w       |=ck]tmaMO¨x^?xMGPm8\|1#_<x[7ğپomٳI߁<
W%5;@b_~-#);|8Uᮽ3֥Uu~F@iz_[xs5W:qϊ0Dt]|3w78,lg^|b?CUeҿ79MsQov.M.|)7ᕽum(|Egx{G/,x3Ÿ/­BZx4ߊ_?i  |mOߎtT|Kx'5Oxo7sk
|-_7cm/?2emg?=&_5>A΍WDG_හ,\G
W%5;@b_~-#);|8Uᮽ3֥Uu~F@iz_[xs5W:qϊ0Dt]|3w78,lg^|b?CUeҿ79MsQov.M.|)7ᕽum(|Egx{G/,x3Ÿ/­BZx4ߊ_?i  |mOߎtT|Kx'5Oxo7sk
|-_7cm/?2emg?=&_5>A΍WDG_හ,\G
~"->i47EtG총#I4+LM4#X⵳+kKKh4Uh
~"->i47EtG총#I4+LM4#X⵳+kKKh4Uh
(
(
(
(
(>ɢj_bm??hأ[_zϿF>_^4w>'j_jh~e3~ODeHR}^k~{gt-uYxWN5kf'ռU|m^+iJx*~uo^2OQ=+'B=K54Yx:0|q|4?fcޑ{Ğ">&g|V&=xz-_P/.m^FMVԮ:ӿy+Ok5qg;|b-GWV
|:[=xoׂmm|]AV_*ONBŕ?4X6=ⶋa}CVGU[?Fbә5KkZ\_^Ʒ\~l      ߅sZ֛|<x=_8AiǯkZ?uE^->a?>$KO_}
(>ɢj_bm??hأ[_zϿF>_^4w>'j_jh~e3~ODeHR}^k~{gt-uYxWN5kf'ռU|m^+iJx*~uo^2OQ=+'B=K54Yx:0|q|4?fcޑ{Ğ">&g|V&=xz-_P/.m^FMVԮ:ӿy+Ok5qg;|b-GWV
|:[=xoׂmm|]AV_*ONBŕ?4X6=ⶋa}CVGU[?Fbә5KkZ\_^Ʒ\~l      ߅sZ֛|<x=_8AiǯkZ?uE^->a?>$KO_}
;/_nBψe        >$|=ozWů[EEP}<}kA񾿥ZC_ZxFTv_躆kaѣ-R>>\xC@?K#hg~P?񏆼jRE(o[jZT>ro_AGe&$РzԿinKm4WZι? h>mx
;/_nBψe        >$|=ozWů[EEP}<}kA񾿥ZC_ZxFTv_躆kaѣ-R>>\xC@?K#hg~P?񏆼jRE(o[jZT>ro_AGe&$РzԿinKm4WZι? h>mx
xF3j?>"|N:^//%
|b'߳ŸYK@   AqWׅ
.jx(!.P;cH-h?i?%Icx:O^Vn`<8o!B57>ֻ~o׈(|W;ߋ!˫1Y^"Oٮ]Dq煡Ïhciz}7EjwY<~S_wi^?	>he>xS]Y>4?ƍ/Hɮ1xW$ͷXg]|C'
xF3j?>"|N:^//%
|b'߳ŸYK@   AqWׅ
.jx(!.P;cH-h?i?%Icx:O^Vn`<8o!B57>ֻ~o׈(|W;ߋ!˫1Y^"Oٮ]Dq煡Ïhciz}7EjwY<~S_wi^?	>he>xS]Y>4?ƍ/Hɮ1xW$ͷXg]|C'
ō8|?ċ~řu//׵?
ō8|?ċ~řu//׵?
Jh|s6h0x4O:?({M|Bx][J־[~"i_AC|j3{xWU#-uM>~KiռC?_
+>mlTo>9cx]߃|I7N{qؼ&W{xxNҼ_ᯅO|2>Mn~6/Mk㛏^xm+z,]#V
^
Jh|s6h0x4O:?({M|Bx][J־[~"i_AC|j3{xWU#-uM>~KiռC?_
+>mlTo>9cx]߃|I7N{qؼ&W{xxNҼ_ᯅO|2>Mn~6/Mk㛏^xm+z,]#V
^
xwz$宑\ӭMx;V֚w0^ú     Ft?UӮVKkH'-yg^  ?!{>w?
׾ JmVл+xoL<:;	~m?x{B6~@Q@Q@Q@Q@Q@Q@Q@Q@x EzvgςX(n>,j׮5[x+F&_#H&.(('#Ɖ4~.|,'ģi3x}ō?-`þh7qϤko]6fa(_r|VG^m9~A-ocES/wX|%`YXA[lK[k~.eyjz<h~ύ|m,m!G߅4eG5NKm6[bQ@K%3xSB#ŷ}?ڄH4mn5vR-ΣM|s{4*h$Q"m?>u|<
xwz$宑\ӭMx;V֚w0^ú     Ft?UӮVKkH'-yg^  ?!{>w?
׾ JmVл+xoL<:;	~m?x{B6~@Q@Q@Q@Q@Q@Q@Q@Q@x EzvgςX(n>,j׮5[x+F&_#H&.(('#Ɖ4~.|,'ģi3x}ō?-`þh7qϤko]6fa(_r|VG^m9~A-ocES/wX|%`YXA[lK[k~.eyjz<h~ύ|m,m!G߅4eG5NKm6[bQ@K%3xSB#ŷ}?ڄH4mn5vR-ΣM|s{4*h$Q"m?>u|<
Dx5q     p7imJ|AX}XV02#R|7Ν_Bo4N4M'Ju+gW[K8kQufU{[Y/]F{BRh(((#~/>xY
Jgib?~.k6]S\5槣xKՃNKx((((((((((((m$$If!vh5S5S5S5T#vS#vT:Vl
Dx5q     p7imJ|AX}XV02#R|7Ν_Bo4N4M'Ju+gW[K8kQufU{[Y/]F{BRh(((#~/>xY
Jgib?~.k6]S\5槣xKՃNKx((((((((((((m$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5Tm$$If!vh5S5S5S5T#vS#vT:Vl
t65S5T*)Dd{L
t65S5T*)Dd{L


CA"`b(5ŗ1^f(*n^(5ŗ1^PNG
CA"`b(5ŗ1^f(*n^(5ŗ1^PNG



IHDRRsRGB       pHYsod'IDATx^OW+:f.hƹ,B|X` k!!d|rF4,ZM0ė:9l{f";9(?)JUT$-կW~U;c \p!@@@!d;* d 8Cv&T8

IHDRRsRGB       pHYsod'IDATx^OW+:f.hƹ,B|X` k!!d|rF4,ZM0ė:9l{f";9(?)JUT$-կW~U;c \p!@@@!d;* d 8Cv&T8
@ɦ@pLpM $ۙP( $>@H3Q@H6}3lgBl g ΄
@ɦ@pLpM $ۙP( $>@H3Q@H6}3lgBl g ΄
G! @@      B@!d;* d 8Cv&T8
G! @@      B@!d;* d 8Cv&T8
@ɦ@pLpM Kȫc
ƫ{5v
@ɦ@pLpM Kȫc
ƫ{5v
uabFʴ۟4+leJ/zu 'Ijn'֞wTn<-t3UlM',uK׫(];3M#%QOmǐlŒ?LGPSb8Nxei1ȚRswY,DVPtEevκ
uabFʴ۟4+leJ/zu 'Ijn'֞wTn<-t3UlM',uK׫(];3M#%QOmǐlŒ?LGPSb8Nxei1ȚRswY,DVPtEevκ
lu[04>֙W#_5S5"Ɠd_:.ᕽ:.%{!Hg6gXoΙG{g^~Hc:;2SVfY%14tiRP,ƓxP
lu[04>֙W#_5S5"Ɠd_:.ᕽ:.%{!Hg6gXoΙG{g^~Hc:;2SVfY%14tiRP,ƓxP
wϯ^_|yW=ݤv쎜  V566^Ht,WCW&
wϯ^_|yW=ݤv쎜  V566^Ht,WCW&
ls!WagVw<$uX_
ls!WagVw<$uX_
__^=0vLzov2&s@)/5ԯq/1L
__^=0vLzov2&s@)/5ԯq/1L
&x#yQ@4Ȱ(bޢK#O{D,/3ߚFa-kC],Xu!uh+g+HWF2fwR-Vz/IXb?VnX&r{s^:5׾J47ktz+6S0y(fgZagFbvGy7Õjjkl+R&yd8`v14_
,U4EZlBpt3RշS(_׆}*Jio6+;g=y_g赌>_wެä8-/v$ϯWVIl5zY.?j<̴NuJd^[tJ#a7ɯJ\CUrGwÓ W8/$ݡar|X8+lTvoOދ~%^~$f0?BߟK     e6y.J2~?ׇOBUԲe፮,5t凟
gZ+Z;pFlGV{6ci0~z1_@ྙWPx_Gu7_{њ4zYP8L6ӏ׹.OMuWV*z_ĹQ:Hs?ƪY      lRǗjNlA.֍^zXoP_/ՕfR:ˢV0ܢESzۂzeU̕uZ\ݚG1"Vόd;boZ6:Ֆ\ӹW6΂;UqfO3tb#Z?szpۈ)42'R_(I"w'@UlFK8
&x#yQ@4Ȱ(bޢK#O{D,/3ߚFa-kC],Xu!uh+g+HWF2fwR-Vz/IXb?VnX&r{s^:5׾J47ktz+6S0y(fgZagFbvGy7Õjjkl+R&yd8`v14_
,U4EZlBpt3RշS(_׆}*Jio6+;g=y_g赌>_wެä8-/v$ϯWVIl5zY.?j<̴NuJd^[tJ#a7ɯJ\CUrGwÓ W8/$ݡar|X8+lTvoOދ~%^~$f0?BߟK     e6y.J2~?ׇOBUԲe፮,5t凟
gZ+Z;pFlGV{6ci0~z1_@ྙWPx_Gu7_{њ4zYP8L6ӏ׹.OMuWV*z_ĹQ:Hs?ƪY      lRǗjNlA.֍^zXoP_/ՕfR:ˢV0ܢESzۂzeU̕uZ\ݚG1"Vόd;boZ6:Ֆ\ӹW6΂;UqfO3tb#Z?szpۈ)42'R_(I"w'@UlFK8
y(#O莾vGAZ@JlQ~_VՅ"OLF5E[%ÖXq~1%JM'.dj:y̫8ÞEuU_עG(&A7JS7EE;qmqpљ,"Ye;}>tj^ &#/UԦoչ@ܬQ7	$VNb}W:\RE	գԺ{/L\o/WfM~L9˹J:091eL [gzkϼ<|٣{UhXNq`LX?UA(⑖S<W3>r(sW-BoYky-V8M뵣FϦZ Z?(msErlJP[׋ԏS)%iUwFٕ(ozb
veq
y(#O莾vGAZ@JlQ~_VՅ"OLF5E[%ÖXq~1%JM'.dj:y̫8ÞEuU_עG(&A7JS7EE;qmqpљ,"Ye;}>tj^ &#/UԦoչ@ܬQ7	$VNb}W:\RE	գԺ{/L\o/WfM~L9˹J:091eL [gzkϼ<|٣{UhXNq`LX?UA(⑖S<W3>r(sW-BoYky-V8M뵣FϦZ Z?(msErlJP[׋ԏS)%iUwFٕ(ozb
veq
@    0.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.AprV'.neq,K+"&T¨6P tO0(b
zG@h{(l[R[|AKUGDsT(+9IEV>_Hе 8Cv&T8
@    0.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.Ap$ێVJ@.AprV'.neq,K+"&T¨6P tO0(b
zG@h{(l[R[|AKUGDsT(+9IEV>_Hе 8Cv&T8
@ɦ@pLpM $ۙPXDuv7vx^:Zf[rL3}:h0Ԧ//GذA @|t=LўOu?P}l9pJ^83&îuvnSo/Fg,j;9E,36
@ɦ@pLpM $ۙPXDuv7vx^:Zf[rL3}:h0Ԧ//GذA @|t=LўOu?P}l9pJ^83&îuvnSo/Fg,j;9E,36
6lH';UhSpg3er)ګ.qo"
N1ՈSJ??L%_ܔ}x;w[.ؔMnmrՕ}9I&K;Sv]x?žgѵϾGYd  z;syy3ǗWl?+emH=kLtBoa(P4՜)8Ġ(Db}'[ܑW:T_$\haS^v@X|ryhs$9_)cNŧwnQHvZǞw:ԉ[WdZ6
o))rDZIG-ξZi[dOu#)fc/\`Ja
6lH';UhSpg3er)ګ.qo"
N1ՈSJ??L%_ܔ}x;w[.ؔMnmrՕ}9I&K;Sv]x?žgѵϾGYd  z;syy3ǗWl?+emH=kLtBoa(P4՜)8Ġ(Db}'[ܑW:T_$\haS^v@X|ryhs$9_)cNŧwnQHvZǞw:ԉ[WdZ6
o))rDZIG-ξZi[dOu#)fc/\`Ja
ǖ.q`6D9.8SQ.+%k;]qKJ^o        y[pܾ`     !P"Fb)O~ϻW";hF|՚ML¦u:q)殐2gʼS"5B,b{qHEQ=+' /å;T*\@b~3d%lsjhgX7{y$“(${}pa5=#sHvH)fd
dN)B${Sd)@̑R  M@7Er!dN)BްR   ܌
Usַ 4e.@`)
=e{idN`RrٙG!l)@ s$F2GJ6EQR.      ٙ#@@"do,BȜ9R
ǖ.q`6D9.8SQ.+%k;]qKJ^o        y[pܾ`     !P"Fb)O~ϻW";hF|՚ML¦u:q)殐2gʼS"5B,b{qHEQ=+' /å;T*\@b~3d%lsjhgX7{y$“(${}pa5=#sHvH)fd
dN)B${Sd)@̑R  M@7Er!dN)BްR   ܌
Usַ 4e.@`)
=e{idN`RrٙG!l)@ s$F2GJ6EQR.      ٙ#@@"do,BȜ9R
0^,v= ٮE:ou
0^,v= ٮE:ou
XN.<8`E`<8jXYoZ@BS5ݎ-ZHֆنtsJ7#Ls'܉)!h&E{)^|_:.']Ԏ	 y%Ɨr<&ace]oԷ~Cʷ}}w(?(,?(D}T~[>9nէ6DRL6?Dzn|y{ї{~mzKٟoXJ^|   |O{Y1Mm0_ʴ
Í=%(tOj)A\&֪|m
XN.<8`E`<8jXYoZ@BS5ݎ-ZHֆنtsJ7#Ls'܉)!h&E{)^|_:.']Ԏ	 y%Ɨr<&ace]oԷ~Cʷ}}w(?(,?(D}T~[>9nէ6DRL6?Dzn|y{ї{~mzKٟoXJ^|   |O{Y1Mm0_ʴ
Í=%(tOj)A\&֪|m
p,LֶKD       x^AmC       <      4:D eM⽆߫զ㷯9w;I        M=hήpyo&;*cy-XT]"
b2r"6 16B˯@p]0?qnsY
p,LֶKD       x^AmC       <      4:D eM⽆߫զ㷯9w;I        M=hήpyo&;*cy-XT]"
b2r"6 16B˯@p]0?qnsY
ǘCmbP9HvB^/T;g'bkhV]%F'H&3-?ybNp1?w\&GBռV>]U=ZٽzX+SAOuBjxԨPYrgʮȘ   *HASp{?9C9'TMRD>Mdi% P
ǘCmbP9HvB^/T;g'bkhV]%F'H&3-?ybNp1?w\&GBռV>]U=ZٽzX+SAOuBjxԨPYrgʮȘ   *HASp{?9C9'TMRD>Mdi% P
î:efElQH˰K+,$:`(Wi$Lec&!ydtBg
/kUTZDoS&-0 P<# X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ       X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ     X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ     X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ     X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ     X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ     X@-Aa@xHv1@*$Q-uMz!bM!I1[)!P]oO6+H~Rۨ66ѧ6#؄ÚD]=@d/K)_鰅4IJ'{XrNݹ
î:efElQH˰K+,$:`(Wi$Lec&!ydtBg
/kUTZDoS&-0 P<# X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ       X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ     X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ     X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ     X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ     X@-Aa@xHv1@lKPA(]|%$f'd< `Iɶ     X@-Aa@xHv1@*$Q-uMz!bM!I1[)!P]oO6+H~Rۨ66ѧ6#؄ÚD]=@d/K)_鰅4IJ'{XrNݹ
ƻ2JTJgF7gbLEe%@e%;>Hꢐ.1^66%ݫybnG3wjռMuTS̓oMzsMj!9A'!       &c)q;hzW{4(mt*Y6
ƻ2JTJgF7gbLEe%@e%;>Hꢐ.1^66%ݫybnG3wjռMuTS̓oMzsMj!9A'!       &c)q;hzW{4(mt*Y6
eA%!d=!d3#UMj
eA%!d=!d3#UMj
nIZč~d&֐Lhgc2
nIZč~d&֐Lhgc2
#dy:}z,v#A௷Z33GdeSXO0z3
#dy:}z,v#A௷Z33GdeSXO0z3
E֐31(ZloGMBFJ݌wLFO-%VMl\yXFL?)$i3[QΌ_6ꫫtݩ?w䢪q
E֐31(ZloGMBFJ݌wLFO-%VMl\yXFL?)$i3[QΌ_6ꫫtݩ?w䢪q
Y:$tDOEg꤂dp)Khx\$F.oWPA_ę_/qqBkmNsF1g 7"O@]^,u d6ljG 4JQM?OTg뒋n3OK5.k//M`%{̵bɊL=)LIPI,՞S5M=$zlTJ
Y:$tDOEg꤂dp)Khx\$F.oWPA_ę_/qqBkmNsF1g 7"O@]^,u d6ljG 4JQM?OTg뒋n3OK5.k//M`%{̵bɊL=)LIPI,՞S5M=$zlTJ
cOkdv|*
cOkdv|*
>\v^dSZL9e%dR᭏OLVݍ:x=O<ύJ	F(?~̜Ivς}yڟyDu4b$/)s2XIhg-of$vt1sagBlq3shQ)63FG/t}p*	C8#:${	4h/QْgB_/}T)hxޜݻ-	8܀@^2luse¹?jsf*E7ݠP7c.}ngBΖ>WOhϜw%7ir;SxV7FJxύW⟝m!
>\v^dSZL9e%dR᭏OLVݍ:x=O<ύJ	F(?~̜Ivς}yڟyDu4b$/)s2XIhg-of$vt1sagBlq3shQ)63FG/t}p*	C8#:${	4h/QْgB_/}T)hxޜݻ-	8܀@^2luse¹?jsf*E7ݠP7c.}ngBΖ>WOhϜw%7ir;SxV7FJxύW⟝m!
T@%;K9{DuCxƈ͍V &oeS> tdxF:C("%DKKpf[sx&4]$F܍[
T@%;K9{DuCxƈ͍V &oeS> tdxF:C("%DKKpf[sx&4]$F܍[
F@ nJQ8H1*6>%mO2,4fH6GA[F޲@`        ]l${Js m&dosti e-iΊ>8 
O;ˣ^ Qzڌ
XJ^Iԥ_+<5h'h\(Bz7%E&y`W.^Ty$b@"YU_|ɽBh˪G&BdbbwXnG74%ΰ7[	S$?i]QPd:1RԆ)]{޲MmǕ@`$ X%#+{I>\2iS&6$^O,G+m˃݆׸hvreI"-L/A`K	 [عj}
/4kC_>Hy9׎_m$AOuL\,~p(ՅNc-'doyw?Z6eůQ9J\Ɠh]oMLw_,O,'dW,hkܺQ{<	zq_9<뭧}9%4A@`!$1C@1zlJٍ)[$9őY=<ވ,{,&dog78􊑩хM"5枵^oGZEںȬ*XhP~gOLO)*m%Y^lߨ"e9{;;!n@H3Q@Hv~mxBl/+{rC·sykΝKæy}LTwqؕzYA6 c֭h썾bݩ?7oMknċd[bk7ѰA@s`%|XQP1oJOlp`;qN@
F@ nJQ8H1*6>%mO2,4fH6GA[F޲@`        ]l${Js m&dosti e-iΊ>8 
O;ˣ^ Qzڌ
XJ^Iԥ_+<5h'h\(Bz7%E&y`W.^Ty$b@"YU_|ɽBh˪G&BdbbwXnG74%ΰ7[	S$?i]QPd:1RԆ)]{޲MmǕ@`$ X%#+{I>\2iS&6$^O,G+m˃݆׸hvreI"-L/A`K	 [عj}
/4kC_>Hy9׎_m$AOuL\,~p(ՅNc-'doyw?Z6eůQ9J\Ɠh]oMLw_,O,'dW,hkܺQ{<	zq_9<뭧}9%4A@`!$1C@1zlJٍ)[$9őY=<ވ,{,&dog78􊑩хM"5枵^oGZEںȬ*XhP~gOLO)*m%Y^lߨ"e9{;;!n@H3Q@Hv~mxBl/+{rC·sykΝKæy}LTwqؕzYA6 c֭h썾bݩ?7oMknċd[bk7ѰA@s`%|XQP1oJOlp`;qN@
WΎ//dm{//Xs
UU]4]Y]?)U^APű_fmϏGf۳²h{?N,S>Ċ`Bq̘Oٚ?U%@bfmuKGbdGΎvTo=U}p>V[\Ý4}ZWHviBQzGM7NL彐7G,)}pp; [anX_lʛfҦ|yq@ƚսH@ӏVJhZzPSNK`>CJ $;'T@`}H)@N@S
         0>bJuKܭn
WΎ//dm{//Xs
UU]4]Y]?)U^APű_fmϏGf۳²h{?N,S>Ċ`Bq̘Oٚ?U%@bfmuKGbdGΎvTo=U}p>V[\Ý4}ZWHviBQzGM7NL彐7G,)}pp; [anX_lʛfҦ|yq@ƚսH@ӏVJhZzPSNK`>CJ $;'T@`}H)@N@S
         0>bJuKܭn
3'0v"L8       @@@!@bęPM9ʺ՞ߩeA 8Cv&T8
3'0v"L8       @@@!@bęPM9ʺ՞ߩeA 8Cv&T8
@ɦ@pLpM $ۙP( $>@H3Q@H6}3lgBl g ΄
@ɦ@pLpM $ۙP( $>@H3Q@H6}3lgBl g ΄
G! @@      B@!d;* d 8Cv&T8
G! @@      B@!d;* d 8Cv&T8
@ɦ@pLpM $ۙPh                GUs7S'w
.m    Yd2ve{[nss.k.;x9٪QmнH_슣UAL;lz&%+1~q&˃vyRCl\\&0z=o#ft?Zw
@H?1uy    1zWZ7O6
@ɦ@pLpM $ۙPh                GUs7S'w
.m    Yd2ve{[nss.k.;x9٪QmнH_슣UAL;lz&%+1~q&˃vyRCl\\&0z=o#ft?Zw
@H?1uy    1zWZ7O6
Aɦ@ k~ON&O_=Iev=Hd]
Aɦ@ k~ON&O_=Iev=Hd]
?N@ґNf"%ƽ@dGIή<>){//Hv^g    #ъ7<7}A0(3_vxϖmK
?N@ґNf"%ƽ@dGIή<>){//Hv^g    #ъ7<7}A0(3_vxϖmK
;,' VYZm?^?w%{s3SAvj,AɮFienba|w'cF?~kmVoK;ў$\Uعů!eBs5
;,' VYZm?^?w%{s3SAvj,AɮFienba|w'cF?~kmVoK;ў$\Uعů!eBs5
\myO?͝DSucUgdGm3fWg?J93]"8v>|mQC!2z7>hvr^
<Vk&㦘U]X$YS:C.$8#YP@@sL% dgA2 B3@ȂEʀ $;T@ Hv)@.\0S	 , YP@@sL% dgA2 B3@ȂEʀ $;T@ Hv)@.\0S	 , YP@@sL% dgA2 B3@ȂEʀ $;T@ Hv)@.\0S	 ,3L(2&Pɟ[—7w@eq4#dc=fCHubMK!	0Ls>4$:lCH @kZ
\myO?͝DSucUgdGm3fWg?J93]"8v>|mQC!2z7>hvr^
<Vk&㦘U]X$YS:C.$8#YP@@sL% dgA2 B3@ȂEʀ $;T@ Hv)@.\0S	 , YP@@sL% dgA2 B3@ȂEʀ $;T@ Hv)@.\0S	 , YP@@sL% dgA2 B3@ȂEʀ $;T@ Hv)@.\0S	 ,3L(2&Pɟ[—7w@eq4#dc=fCHubMK!	0Ls>4$:lCH @kZ
8Ov>4$:lCH @kZ
8Ov>4$:lCH @kZ
8Ov>4$:lCH @kZ
8Ov>4$:lCH @kZ
8Ov>4$:lCH @kZ
8Ov>4$:lCH @kZ
8Ov>4$:lCH @kZ
8Ov>4$:lCH @kZ
8Ov>4$:[Yq-IENDB`=DdGL
8Ov>4$:[Yq-IENDB`=DdGL


CA"`b<m9wzT}X<Tn<m9wzT}XPNG
CA"`b<m9wzT}X<Tn<m9wzT}XPNG



IHDRZB\sRGB       pHYsod!Ur./*!|[+VVTS*Mm瓠uNbV5n~y.pUV`<Ǫ'cy%g}K1])+-J)w׻}`ӊ^h^uee>R|ry$1#W)30e6

IHDRZB\sRGB       pHYsod!Ur./*!|[+VVTS*Mm瓠uNbV5n~y.pUV`<Ǫ'cy%g}K1])+-J)w׻}`ӊ^h^uee>R|ry$1#W)30e6
xFPGO
xFPGO
Og8놓K^2Sg%'Hx>XXmhjQ\!ՙL   m.w82VzPg&ڥe1*w/:
Og8놓K^2Sg%'Hx>XXmhjQ\!ՙL   m.w82VzPg&ڥe1*w/:
=']ARlhIUg~hW^ӋP_3ܟڼ%).
=']ARlhIUg~hW^ӋP_3ܟڼ%).
-nK7N~x8'ExfgIHw5K4;>OHw_g<ӾM3p/2@9dJY`wi}uSK
-nK7N~x8'ExfgIHw5K4;>OHw_g<ӾM3p/2@9dJY`wi}uSK
?U[t@2edo*.8p9JuQfӦ
?U[t@2edo*.8p9JuQfӦ
i_Zax
i_Zax
wǧ`zl Ogbr^`@艶#/q0O?.c8pSrSR$UXwINY_3IĠ1tA#D
K544K0Y8Ocꋈe~ٱH_JRw57I.G5_,FI>eh;V:ϣdm$RZc=:E1ʪź֜ЙyZ2>B&qy4xd3.Éc
wǧ`zl Ogbr^`@艶#/q0O?.c8pSrSR$UXwINY_3IĠ1tA#D
K544K0Y8Ocꋈe~ٱH_JRw57I.G5_,FI>eh;V:ϣdm$RZc=:E1ʪź֜ЙyZ2>B&qy4xd3.Éc
rG%\%Wmf`'b!9vOV6$E1cXzru[̋vD9ũNDbNQݎU(L$joZTnf[9Nw`

qÎtxZc-`@]kk^_tP'A!#YNTʣX$K/np~!ɐ)7bM,{*yyݺ0xС~NZ%     vvn(vů?՝e-I&)@훷ﳹ}VfNR吺
Df{IY[`2&\QO8,N)
rG%\%Wmf`'b!9vOV6$E1cXzru[̋vD9ũNDbNQݎU(L$joZTnf[9Nw`

qÎtxZc-`@]kk^_tP'A!#YNTʣX$K/np~!ɐ)7bM,{*yyݺ0xС~NZ%     vvn(vů?՝e-I&)@훷ﳹ}VfNR吺
Df{IY[`2&\QO8,N)
*>ެZVt)M~*V]0rVQ.29q5˧-cNO'rKQSTYqd˚6UL1<n~QŊ]}ylw9Eowa<_䯂pKn8a/36Ypd飵ѷ43Wv7~@5{k72gJ%/.~ؼ߂tJ[PRvvO'O]dp^6Sl3G#VITmykN|~~ُu9qc`٣,]r01lf0/fcJ$Od۟~G}f &Ͼt"
Bq	g]1&&)uG'}󘞌e15y/5ZO2u8Z\>P<wIVΥ'YGwZuJ$y\kt܇7쐚M*WG:)y]£_9?{"jOh7\v9CCw/Vܰ*aq?T&݁p2f|az^,#5A:XDV*>[GQ
*>ެZVt)M~*V]0rVQ.29q5˧-cNO'rKQSTYqd˚6UL1<n~QŊ]}ylw9Eowa<_䯂pKn8a/36Ypd飵ѷ43Wv7~@5{k72gJ%/.~ؼ߂tJ[PRvvO'O]dp^6Sl3G#VITmykN|~~ُu9qc`٣,]r01lf0/fcJ$Od۟~G}f &Ͼt"
Bq	g]1&&)uG'}󘞌e15y/5ZO2u8Z\>P<wIVΥ'YGwZuJ$y\kt܇7쐚M*WG:)y]£_9?{"jOh7\v9CCw/Vܰ*aq?T&݁p2f|az^,#5A:XDV*>[GQ
Q#Bt8=U+ӪNNOL!\PdK_z=w+cْT+lWY^J􅴽$ZѳKkK"O
W/v-
POxS    ɪs^mv4֤>dt5nw"=cI9
Q#Bt8=U+ӪNNOL!\PdK_z=w+cْT+lWY^J􅴽$ZѳKkK"O
W/v-
POxS    ɪs^mv4֤>dt5nw"=cI9
b,7F4ނ:_Q&(d1Ŧ^sٗg0כgш|ITw	]Lz$ϊP@wbS_>YM,Ԝ<-ʙ)Ǣr~yO6˸<)_g kꦜ(9uk'?vŸ/"Jlt(@`3S:27#qZ@juiYG0@<,$5j d k@e	4šG+1ѶHqCۗWSUΖBƔK-<1aJ
uÀpRԷu$[5#B5#8Wc} w/+7c5;[R#VyIu~eÔJɾ|Kk5NѬnl4_5"RL|[+
b,7F4ނ:_Q&(d1Ŧ^sٗg0כgш|ITw	]Lz$ϊP@wbS_>YM,Ԝ<-ʙ)Ǣr~yO6˸<)_g kꦜ(9uk'?vŸ/"Jlt(@`3S:27#qZ@juiYG0@<,$5j d k@e	4šG+1ѶHqCۗWSUΖBƔK-<1aJ
uÀpRԷu$[5#B5#8Wc} w/+7c5;[R#VyIu~eÔJɾ|Kk5NѬnl4_5"RL|[+
}Fm[Uxf䜈;̦.      z{R}Ѿ%-XC$#Zmg/!/$'w&73wT6qXXP*F@1=XxXB32R~-e͓FQ)Q6ob!&AMGҸm@]`qB?f;؊J,Ȓgr(<*j7zoWdiM~QzmIh=he"5EbA߅Uh̙Xݧ\=,nwH߰  )Qu8|,i#c*q7*g:fJ괪vkN&k;ط`lm~Ш5E;|Ci4JpDVxl#:3@
}Fm[Uxf䜈;̦.      z{R}Ѿ%-XC$#Zmg/!/$'w&73wT6qXXP*F@1=XxXB32R~-e͓FQ)Q6ob!&AMGҸm@]`qB?f;؊J,Ȓgr(<*j7zoWdiM~QzmIh=he"5EbA߅Uh̙Xݧ\=,nwH߰  )Qu8|,i#c*q7*g:fJ괪vkN&k;ط`lm~Ш5E;|Ci4JpDVxl#:3@
`ȶ/mΈ>{l    ɧ^˘`.6%2w/̢%h}HIܔ2hп"Uin
%KXͥi}ͪ;pK    (TQcEў94Q>j$6tfpCJ=dj3dձ#hdѶ9K=rRPS
`ȶ/mΈ>{l    ɧ^˘`.6%2w/̢%h}HIܔ2hп"Uin
%KXͥi}ͪ;pK    (TQcEў94Q>j$6tfpCJ=dj3dձ#hdѶ9K=rRPS
D'qx\&i.iek&HQL[ϻ߽wUkaڠN2|G'XJY"$kHH-<\!ówXu5W!>5oUUcÈ#!ޛtUdU9/mpDZL[OBZ8:f LTs^?#dvf-Tżk9h:ҹO~m-aA*Uo4dWaF7>=aʄM~kxϿJo;Ӕ7AkLW
D'qx\&i.iek&HQL[ϻ߽wUkaڠN2|G'XJY"$kHH-<\!ówXu5W!>5oUUcÈ#!ޛtUdU9/mpDZL[OBZ8:f LTs^?#dvf-Tżk9h:ҹO~m-aA*Uo4dWaF7>=aʄM~kxϿJo;Ӕ7AkLW
JoD|*[Ƈ҃3+NGEXyDڗĥ`"zr:myt.,8_vWkPSBgSeݛ
JoD|*[Ƈ҃3+NGEXyDڗĥ`"zr:myt.,8_vWkPSBgSeݛ
o
״+DG{ D!t=iHi1ݑ`iЈIK;XKF.5("4'v*{D>a?ux4IeŇr@uf5ДY%"-Cý՝LT冚A%[0O|3XXKw⇿z4ާᅦ51g.     :c񼥼Y%;-Oqy0,G'Z\iREDB*`&T3FQEQ)TfVmb 	UFE>8<:6S1xO$9m~hMdh s%28@rІ[,ɐV9F.aÊ]rGwH7vzgkB-g%Ўj1p$0sg	*ΘDؾ%S-G3_4RKw;+`o'T9Jܝ>9}ouxIlVB#~YJA\՞+L!n}d/6nD,3C6s     dR^Fx)0gzofƏ{[mnHTlTAzݓd]זu
_Ez>6Ou
o
״+DG{ D!t=iHi1ݑ`iЈIK;XKF.5("4'v*{D>a?ux4IeŇr@uf5ДY%"-Cý՝LT冚A%[0O|3XXKw⇿z4ާᅦ51g.     :c񼥼Y%;-Oqy0,G'Z\iREDB*`&T3FQEQ)TfVmb 	UFE>8<:6S1xO$9m~hMdh s%28@rІ[,ɐV9F.aÊ]rGwH7vzgkB-g%Ўj1p$0sg	*ΘDؾ%S-G3_4RKw;+`o'T9Jܝ>9}ouxIlVB#~YJA\՞+L!n}d/6nD,3C6s     dR^Fx)0gzofƏ{[mnHTlTAzݓd]זu
_Ez>6Ou
Scok`#{}_?~lG)RI?s
Scok`#{}_?~lG)RI?s
y,/dd2JNnn;T}j|'rHvpmr Hkz\G_6Uhyӆ=bxOG4z"϶^饝zZYCx OOh>di%ũL:-'F[wߪ(]OeH/Wd0T:[[th6\X}-[Դx]}vBfn?#X(7wF1eɋ
y,/dd2JNnn;T}j|'rHvpmr Hkz\G_6Uhyӆ=bxOG4z"϶^饝zZYCx OOh>di%ũL:-'F[wߪ(]OeH/Wd0T:[[th6\X}-[Դx]}vBfn?#X(7wF1eɋ
U#ĥaU*ۄЃ-w -Z4I2`i5E^k9EtD-|TP+lBB,FK-
U#ĥaU*ۄЃ-w -Z4I2`i5E^k9EtD-|TP+lBB,FK-
]rZ`WiԆˀz\$Idm&Yg\}P	*N)geell%ыK{FiQE*7};&FJH       >_6鈎&5՞ d  |ڡ9FC&zlEck^y@:{ZDI}@`_5Ve,E@07/.E@`͋A@,eF=  P$X"l(yYQIּH(@"k^i E5/.E@`͋A@,eF=  P$X"l(yYQIּH(@"k^i E5/.E@r$jP*VbD~Úp0ZaK>LG QE1kkp_SAh
]rZ`WiԆˀz\$Idm&Yg\}P	*N)geell%ыK{FiQE*7};&FJH       >_6鈎&5՞ d  |ڡ9FC&zlEck^y@:{ZDI}@`_5Ve,E@07/.E@`͋A@,eF=  P$X"l(yYQIּH(@"k^i E5/.E@`͋A@,eF=  P$X"l(yYQIּH(@"k^i E5/.E@r$jP*VbD~Úp0ZaK>LG QE1kkp_SAh
Z:dHQ7i@`A@4楡FE  P Xh(yiQHּ@(@J#k^jT2ulE،5Oy5 uI|UF!5Va1!lI6‹lXLGnx2۽2@ g;H2#;+,JluU P݈;rCP*jT%2mgnZׇ YvZ'=~>ԆOOSo-?Y>1޸EdܑC=.dU>0׹Z]Hdk^}f^-9og/;fY_2tȍz4Kܐ%2`Cīd`_%ٿF.9aP  k_;mrxAk.dC
Z:dHQ7i@`A@4楡FE  P Xh(yiQHּ@(@J#k^jT2ulE،5Oy5 uI|UF!5Va1!lI6‹lXLGnx2۽2@ g;H2#;+,JluU P݈;rCP*jT%2mgnZׇ YvZ'=~>ԆOOSo-?Y>1޸EdܑC=.dU>0׹Z]Hdk^}f^-9og/;fY_2tȍz4Kܐ%2`Cīd`_%ٿF.9aP  k_;mrxAk.dC
%+]Ҹ:Jߦ^s7IBڅrlZsUmKQ2i#d PJwv\5mՂJXp:ٛRZO;[|{L eR.EVa-c+"=le%wܹymN52\],"dKC<TdGMvI.K~d9ɔA]mZ\ktvG.V4#Y׋to>c{tol    Xr*AࣛiWٰ88}PקHҒ98L=~^pŲqP?8olָ#ˡ%I'_eö9FL;TŪo;3A;<-)S[B#k3
%+]Ҹ:Jߦ^s7IBڅrlZsUmKQ2i#d PJwv\5mՂJXp:ٛRZO;[|{L eR.EVa-c+"=le%wܹymN52\],"dKC<TdGMvI.K~d9ɔA]mZ\ktvG.V4#Y׋to>c{tol    Xr*AࣛiWٰ88}PקHҒ98L=~^pŲqP?8olָ#ˡ%I'_eö9FL;TŪo;3A;<-)S[B#k3
)Aө߷De`͗uN}érB|jK `&K<_(
@6C|3Q+K<_(
@6C|3Q+KoAUMWA/
)Aө߷De`͗uN}érB|jK `&K<_(
@6C|3Q+K<_(
@6C|3Q+KoAUMWA/
Z(M|ZjT !OfVȗ@Ξ|Ci K      7`3~N7       
Z(M|ZjT !OfVȗ@Ξ|Ci K      7`3~N7       
 <_(
@6CspG  /X|y4A <;@ii)
5*        `T \
 (Ԛ'ix2ϡ9#傆OW]E2N@)g=fi
 <_(
@6CspG  /X|y4A <;@ii)
5*        `T \
 (Ԛ'ix2ϡ9#傆OW]E2N@)g=fi
    Yyk.&V2915T]JE Q ^]x‹0g
    Yyk.&V2915T]JE Q ^]x‹0g
ꙕoȬGϕq@a
ꙕoȬGϕq@a
޾}t.{Y)PgŔ){\ǟvU^vN8=*f@-I>VdgtZśz+<2Em9ӹu OtCq5ɭJ8S3';{;m=@Ok"ZpWEatg(h63jVZs_uvA?)(w>9Ze~     M1l_U\g!0&gĊZ\%ﲆ:Mo|j!r5Wwi'^/U.ǂLy¯у
޾}t.{Y)PgŔ){\ǟvU^vN8=*f@-I>VdgtZśz+<2Em9ӹu OtCq5ɭJ8S3';{;m=@Ok"ZpWEatg(h63jVZs_uvA?)(w>9Ze~     M1l_U\g!0&gĊZ\%ﲆ:Mo|j!r5Wwi'^/U.ǂLy¯у
g\^cBڢoh j0 تoc~}I1+Cօ輎(jcSZbV<;^^OwRx5	қ*Ly>Qto>yg!`5;34_{WٍZ_j$Kve_8
g\^cBڢoh j0 تoc~}I1+Cօ輎(jcSZbV<;^^OwRx5	қ*Ly>Qto>yg!`5;34_{WٍZ_j$Kve_8
Tbc<vMOK?a>]x=u2RraSy_9$ﯼ!VP-+j9{ԭfiM)Ǟ~9^V
w/:t~eWz*?r6R{yfKt.)}k]R..W&R/Bҡǫ铧ok,i@kf_}h鱘I7
Tbc<vMOK?a>]x=u2RraSy_9$ﯼ!VP-+j9{ԭfiM)Ǟ~9^V
w/:t~eWz*?r6R{yfKt.)}k]R..W&R/Bҡǫ铧ok,i@kf_}h鱘I7
Q'y:3s
o_fyc~#\EYŜ{XTOٚ2^,Sr)>>O\} eթ=*oWtwX~ꋔ,Wk}q=-8:xn>tvveut$X:c5X#:|w8_n~_wX%M>b&xMzeU[ʵ L+-f20Z`;ejXiRhE 7+hJܔ(gE*D$^SixBA^Ԝ12jr;6+T`VXT>kS\/]դ۠<-c͙fբfZںb|>ށ&	̃{'eNԑ
OK<ˎ%7Zo|79jP7T@;8~OUl`=d*tn|@ZUK"  ]
Q'y:3s
o_fyc~#\EYŜ{XTOٚ2^,Sr)>>O\} eթ=*oWtwX~ꋔ,Wk}q=-8:xn>tvveut$X:c5X#:|w8_n~_wX%M>b&xMzeU[ʵ L+-f20Z`;ejXiRhE 7+hJܔ(gE*D$^SixBA^Ԝ12jr;6+T`VXT>kS\/]դ۠<-c͙fբfZںb|>ށ&	̃{'eNԑ
OK<ˎ%7Zo|79jP7T@;8~OUl`=d*tn|@ZUK"  ]
KwĵH}gtMr0UnAwւ@@|鎸aħWV}}̆A@`;h͝q$$~v
W77J,ʶ)|I"o -l/כ'v^Ra<|>dhigJgi     :VnoOEA    h́@@4fT #k
KwĵH}gtMr0UnAwւ@@|鎸aħWV}}̆A@`;h͝q$$~v
W77J,ʶ)|I"o -l/כ'v^Ra<|>dhigJgi     :VnoOEA    h́@@4fT #k
6I4X,T|Ey;8.n@@ [v/80A;{kGCNqO`k/~A-ΝA9%!P5]bˉs0Cȁ@)ּwbXq  RApMoSֲ"<-+^?yUo iXAQ
6I4X,T|Ey;8.n@@ [v/80A;{kGCNqO`k/~A-ΝA9%!P5]bˉs0Cȁ@)ּwbXq  RApMoSֲ"<-+^?yUo iXAQ
則@;"
;,T۽9fci0_[;x2+1/*=OdIɲ  ?c6Qw/yfY[7LBfç|MQ@Ŕ0oSۓ@j@ P[d{?dʇf;g@,0ߏ9XCF؈5O/"gpyI\,lĚ&.{A&Ir@	lĚ{Kp4U.ӕq#ZT  .&XsŠ}- I!eɚĞHI@h5_ޚ/׆H+z'`aT+Ok7JF\[dNr;#24OTk$YG>^Z.H&[GkeVgS,VM\xqԤ5/҃@}	rn.Ǘ{{&s*/R(5]btv	*?+l^t/אh?wK|.XC`dJ5}od˶!%rZtigDlǻ܆>W1J19LIZ@U w(F_6PR4J@`uu}&-kHlLo`O0|9")Iߣe1YUm7-w/q2,¯;?-nm&3}ֽJ+4YŌLFHߙ
>?uU& kNҢ.r+dce9tBnV[
則@;"
;,T۽9fci0_[;x2+1/*=OdIɲ  ?c6Qw/yfY[7LBfç|MQ@Ŕ0oSۓ@j@ P[d{?dʇf;g@,0ߏ9XCF؈5O/"gpyI\,lĚ&.{A&Ir@	lĚ{Kp4U.ӕq#ZT  .&XsŠ}- I!eɚĞHI@h5_ޚ/׆H+z'`aT+Ok7JF\[dNr;#24OTk$YG>^Z.H&[GkeVgS,VM\xqԤ5/҃@}	rn.Ǘ{{&s*/R(5]btv	*?+l^t/אh?wK|.XC`dJ5}od˶!%rZtigDlǻ܆>W1J19LIZ@U w(F_6PR4J@`uu}&-kHlLo`O0|9")Iߣe1YUm7-w/q2,¯;?-nm&3}ֽJ+4YŌLFHߙ
>?uU& kNҢ.r+dce9tBnV[
߿'|ٚjۇ |Iph$HdI)V魙>T0![qJE@ޚ-Ovgo[$cOT/ZmdO͟
߿'|ٚjۇ |Iph$HdI)V魙>T0![qJE@ޚ-Ovgo[$cOT/ZmdO͟
|.0/N<if{J3U[|LE<-|rn-eM'xB0q9
|.0/N<if{J3U[|LE<-|rn-eM'xB0q9
9HZH$
9HZH$
ޡ2/h6f5%PWk͠{-rF89˕.v1
ޡ2/h6f5%PWk͠{-rF89˕.v1
IgoۮGvs
aґH͈w6%BS[~
IgoۮGvs
aґH͈w6%BS[~
YqpVQ
YqpVQ
ESO2tޘXѫk߆ HZއȤ=aM     M}ٞɉddV4_'WAfμ̺j'w"Y
ESO2tޘXѫk߆ HZއȤ=aM     M}ٞɉddV4_'WAfμ̺j'w"Y
,9ji /T/%#}*\*@.b:OŔp /URxm.H9|EdOo>̥$ 5_EWU=!?A~oAwgE͒o2b-    5{3&VƷ(+!o 5eH:+)_ՓUVL[֗$M@@ּ      ZD@@}@@ּ   ZD@@|yA^
(ǶqA{A`kAbW}!ˣ^  ol#rfqԆymTe
,9ji /T/%#}*\*@.b:OŔp /URxm.H9|EdOo>̥$ 5_EWU=!?A~oAwgE͒o2b-    5{3&VƷ(+!o 5eH:+)_ՓUVL[֗$M@@ּ      ZD@@}@@ּ   ZD@@|yA^
(ǶqA{A`kAbW}!ˣ^  ol#rfqԆymTe
J""l      OO  +U#lovoLܻl#"IFEDQ'l|ZE=c\/sBBsJkj36-*p PXVޣ    zB        
J""l      OO  +U#lovoLܻl#"IFEDQ'l|ZE=c\/sBBsJkj36-*p PXVޣ    zB        
@25ό>yC]d!ԅ>
 vutun./倾$wbܥuLg8@FoA1麎V@oz[_Ww@4XshX&hmXshX&hmXshX&hm7b[hnԅu4  TQ6}:07 9h
  M"   MТ"v$$y$7&<щb|r EN.t`
m^G8@J#k^*?4;4d\9R4U?bji"zxZBL^ +ܽJj.`͛`x>}Vο:G]#Gx"񌅞G{ys~}IБ(t<oLO=+D2Ej^8<^G,?7b.eb:Nj9?+ڢA;yQ 5/
ui(lջ]b;6_+s>{"@x К*z2\       M*17w{U&ԝ]KmΣmgwXhNfx
@ ph)['b]J>)=3ܻwv?gF垒?TQO=b5lo*Jb@#	`*;lIS}WZGbaUNDcdz:YgWτ\N4:jcJd)tpy¼AGϝ6|Ϣ#$aG8
@25ό>yC]d!ԅ>
 vutun./倾$wbܥuLg8@FoA1麎V@oz[_Ww@4XshX&hmXshX&hmXshX&hm7b[hnԅu4  TQ6}:07 9h
  M"   MТ"v$$y$7&<щb|r EN.t`
m^G8@J#k^*?4;4d\9R4U?bji"zxZBL^ +ܽJj.`͛`x>}Vο:G]#Gx"񌅞G{ys~}IБ(t<oLO=+D2Ej^8<^G,?7b.eb:Nj9?+ڢA;yQ 5/
ui(lջ]b;6_+s>{"@x К*z2\       M*17w{U&ԝ]KmΣmgwXhNfx
@ ph)['b]J>)=3ܻwv?gF垒?TQO=b5lo*Jb@#	`*;lIS}WZGbaUNDcdz:YgWτ\N4:jcJd)tpy¼AGϝ6|Ϣ#$aG8
Dl3C=       Bb'}$P*2ھy[^^c}ȭ+ɦ8$h,A6$,24y5m|[YOoF&N!O@[wA{+yGumCB%k^]c;'P  ;@%Mda N&na=?       ~xhHh30X
+7p]!gG(A!w NvtHwp
M|m('q\ȫ_oy}“z+A"k KRg~:h}b|8{N _
Dl3C=       Bb'}$P*2ھy[^^c}ȭ+ɦ8$h,A6$,24y5m|[YOoF&N!O@[wA{+yGumCB%k^]c;'P  ;@%Mda N&na=?       ~xhHh30X
+7p]!gG(A!w NvtHwp
M|m('q\ȫ_oy}“z+A"k KRg~:h}b|8{N _
kNa%ZRCcs>?$:d<
kNa%ZRCcs>?$:d<
U#jѻ,TS5@2ͫ 07%t  PeWY;
@| B:2X*k/Xs_RH U&k^e@6%kK
U#jѻ,TS5@2ͫ 07%t  PeWY;
@| B:2X*k/Xs_RH U&k^e@6%kK
@@`ͫ `}I!Ty@@/)*5v 5%t  PeUd_澤@Lּځl  Kܗҁ@ WY;
@|    B:2&kcIENDB`$$If!vh555#v#v#v:Vl4
@@`ͫ `}I!Ty@@/)*5v 5%t  PeUd_澤@Lּځl  Kܗҁ@ WY;
@|    B:2&kcIENDB`$$If!vh555#v#v#v:Vl4
t065p$$If!vh5M!#vM!:Vl
t065p$$If!vh5M!#vM!:Vl
t065"p
t065"p
$$If!vh555#v#v#v:Vl
$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh5M!#vM!:Vl
t065p$$If!vh5M!#vM!:Vl
t065"p
t065"p
$$If!vh555#v#v#v:Vl
$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p$$If!vh555#v#v#v:Vl
t065p@@@aNormalCJ_HaJmH  sH     tH     Z@ZO   Heading 1$<@&5CJ KH OJQJ\^JaJ \@\a     Heading 2$<@& 56CJOJQJ\]^JaJV@Va   Heading 3$<@&5CJOJQJ\^JaJJ@Ja Heading 4$<@&5CJ\aJDA@DDefault Paragraph FontRi@RTable Normal4
t065p@@@aNormalCJ_HaJmH  sH     tH     Z@ZO   Heading 1$<@&5CJ KH OJQJ\^JaJ \@\a     Heading 2$<@& 56CJOJQJ\]^JaJV@Va   Heading 3$<@&5CJOJQJ\^JaJJ@Ja Heading 4$<@&5CJ\aJDA@DDefault Paragraph FontRi@RTable Normal4
l4a(k(No Listj@ja
l4a(k(No Listj@ja
Table Grid7:V0@"@@iUCaption
Table Grid7:V0@"@@iUCaption
xx5CJ\aJ@@@
`TOC 1
xx5CJ\aJ@@@
`TOC 1
xx5;CJ\aJ:@:
`TOC 2
xx5;CJ\aJ:@:
`TOC 2
^:CJaJ<@<
`TOC 3
^:CJaJ<@<
`TOC 3
^6CJ]aJ6@6
`TOC 4
^6CJ]aJ6@6
`TOC 4
^CJaJ6@6
`TOC 5
^CJaJ6@6
`TOC 5
^CJaJ6@6
`TOC 6
^CJaJ6@6
`TOC 6
^CJaJ6@6
`TOC 7
^CJaJ6@6
`TOC 7
^CJaJ6@6
`TOC 8
^CJaJ6@6
`TOC 8
^CJaJ6@6
`TOC 9
^CJaJ6@6
`TOC 9
^CJaJ6U@6`       Hyperlink>*B*ph4 @4jFooter

!.)@.jPage Number4@4ZfHeader

!(Β/0./<0.70kNOQ{Vv)I3CX_[\z{  !""O#P#H%\%G&\&''2)H)))**+*++,,..//11$2923	3313C3_4i4&5(5*5>5?57778c8d8$9B9{999::]::::;;>>AA,C-CDDEoEFFHHJJpKqKKK(LRLSLFMGMMMMN
N6NeNfNNNNNNNOOOOOOOPZPrPrQQRRRRRTTTTTW&WXXYXYYJZ`Z["[\"\5\6\z^{^P`s`Oa`axaaddee>gWgiibjmjyjzjnnuss!u9uOucuduKvLvwwyy}}WXYۂ܂
78bcƒÃ؃كUV:;NOijkۇ܇6TDObqr ѐϒ+z0080+:0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z00        80+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z00     80+z00
^CJaJ6U@6`       Hyperlink>*B*ph4 @4jFooter

!.)@.jPage Number4@4ZfHeader

!(Β/0./<0.70kNOQ{Vv)I3CX_[\z{  !""O#P#H%\%G&\&''2)H)))**+*++,,..//11$2923	3313C3_4i4&5(5*5>5?57778c8d8$9B9{999::]::::;;>>AA,C-CDDEoEFFHHJJpKqKKK(LRLSLFMGMMMMN
N6NeNfNNNNNNNOOOOOOOPZPrPrQQRRRRRTTTTTW&WXXYXYYJZ`Z["[\"\5\6\z^{^P`s`Oa`axaaddee>gWgiibjmjyjzjnnuss!u9uOucuduKvLvwwyy}}WXYۂ܂
78bcƒÃ؃كUV:;NOijkۇ܇6TDObqr ѐϒ+z0080+:0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z00        80+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z00     80+z00
80+z0080+z00
80+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+:00 80+z0080+z0080+z0080+z0080+z00 80+z00"80+z00#80+z00%80+z0080+z0080+z0080+z0080+z0080+z00 80+z00
80+z0080+z00
80+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+:00 80+z0080+z0080+z0080+z0080+z00 80+z00"80+z00#80+z00%80+z0080+z0080+z0080+z0080+z0080+z00 80+z00
80+z0080+z00
80+z0080+z0080+z0080+z0080+z0080+z0080+z00N80+z00O80+z00P80+z00R80+z00S80+z00U80+z00V80+z00W80+z00X80+z00Y80+z00[80+z00]80+z00^80+z00_80+z00`80+z00a80+z00b80+z00c80+z00d80+z00e80+z00f80+z00g80+z00h80+z00i80+z00j80+z00l80+z00m80+z00n80+z00o80+z00p80+z00q80+z00r80+z00s80+z00t80+z00v80+z00w80+z00y80+z00#80+z00z80+z00{80+z00|80+z00}80+z00~80+z0080@0w+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+:00|80#:00~80+:00~80#:0080+:0080#:0080+:0080#:0080+:0080#:0080+:0080#:0080+:0080#:0080+:0080+z00P80+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080Oy00(+:0080+z00h80+z00i80+z00j80+z00k80+z00l80+z00m80+z00n80+z00o80+z00p80+z00q80+z00r80+z00s80+z00t80+z00v80+z00w80+z00x80+z00y80+z00z80+z00{80+z00|80+z00}80+z00~80+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080R !"#5AFRZ[hvb     i%6<9BB        ^          
80+z0080+z00
80+z0080+z0080+z0080+z0080+z0080+z0080+z00N80+z00O80+z00P80+z00R80+z00S80+z00U80+z00V80+z00W80+z00X80+z00Y80+z00[80+z00]80+z00^80+z00_80+z00`80+z00a80+z00b80+z00c80+z00d80+z00e80+z00f80+z00g80+z00h80+z00i80+z00j80+z00l80+z00m80+z00n80+z00o80+z00p80+z00q80+z00r80+z00s80+z00t80+z00v80+z00w80+z00y80+z00#80+z00z80+z00{80+z00|80+z00}80+z00~80+z0080@0w+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+:00|80#:00~80+:00~80#:0080+:0080#:0080+:0080#:0080+:0080#:0080+:0080#:0080+:0080#:0080+:0080+z00P80+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080Oy00(+:0080+z00h80+z00i80+z00j80+z00k80+z00l80+z00m80+z00n80+z00o80+z00p80+z00q80+z00r80+z00s80+z00t80+z00v80+z00w80+z00x80+z00y80+z00z80+z00{80+z00|80+z00}80+z00~80+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080+z0080R !"#5AFRZ[hvb     i%6<9BB        ^          
g
g
t<b

%'(70kNOQ{Vv)I3CX_[\z{  !""O#P#H%\%G&\&''2)H)))**+*++,,..//11$2923	3313C3_4i4&5(5*5>5?57778c8d8$9B9{999::]::::;;>>AA,C-CDDEoEFFHHJJpKqKKK(LRLSLFMGMMMMN
N6NANMNTNeNfNhNqNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOPZPrPrQQRRRRRTTTTTW&WXXYXYYJZ`Z["[\"\5\6\z^{^P`s`Oa`axaaddee>gWgiibjmjyjzjnnuss!u9uOucuduKvLvwwyy}}WXXYۂ܂
78AHbcm|ƒÃǃ΃؃ك!9UV_oɄ	":;>ENORYijkۇ܇6TDObqr ѐʒ˒̒ϒ0000000000505050505050505000000000000000000000000000p00p00p00p00p00000000(0000000000{00V(0V0) 0) 0) 0)(0V0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C(0V0"0"0"(0V0H%00G&0G&0'0G&02) 02) 02) 02)0G&0*0*0*0*0*00.0.0/0.0100$20$20$20$200130130_40_40_40_40_40_40_40_4 0_4 0_40_40_40130$9 0$9 0$9 0$90808 08 08020]:0]:0]:0]:0]:0]:0]:0]:0]:00D 0D 0D0D0D0D0D0D0D0D 0D 0D 0D 0D0D0D0D 0D 0D 0D 0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0jO0D0O0D0P0P0P0P0D0=R0=R0=R0=R0D05?57778c8d8$9B9{999::]::::;;>>AA,C-CDDEoEFFHHJJpKqKKK(LRLSLFMGMMMMN
N6NANMNTNeNfNhNqNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOPZPrPrQQRRRRRTTTTTW&WXXYXYYJZ`Z["[\"\5\6\z^{^P`s`Oa`axaaddee>gWgiibjmjyjzjnnuss!u9uOucuduKvLvwwyy}}WXYۂ܂
78AHbcm|ƒÃǃ΃؃ك!9UV_oɄ	":;>ENORYijkۇ܇6TDObqr ѐϒ
t<b

%'(70kNOQ{Vv)I3CX_[\z{  !""O#P#H%\%G&\&''2)H)))**+*++,,..//11$2923	3313C3_4i4&5(5*5>5?57778c8d8$9B9{999::]::::;;>>AA,C-CDDEoEFFHHJJpKqKKK(LRLSLFMGMMMMN
N6NANMNTNeNfNhNqNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOPZPrPrQQRRRRRTTTTTW&WXXYXYYJZ`Z["[\"\5\6\z^{^P`s`Oa`axaaddee>gWgiibjmjyjzjnnuss!u9uOucuduKvLvwwyy}}WXXYۂ܂
78AHbcm|ƒÃǃ΃؃ك!9UV_oɄ	":;>ENORYijkۇ܇6TDObqr ѐʒ˒̒ϒ0000000000505050505050505000000000000000000000000000p00p00p00p00p00000000(0000000000{00V(0V0) 0) 0) 0)(0V0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C(0V0"0"0"(0V0H%00G&0G&0'0G&02) 02) 02) 02)0G&0*0*0*0*0*00.0.0/0.0100$20$20$20$200130130_40_40_40_40_40_40_40_4 0_4 0_40_40_40130$9 0$9 0$9 0$90808 08 08020]:0]:0]:0]:0]:0]:0]:0]:0]:00D 0D 0D0D0D0D0D0D0D0D 0D 0D 0D 0D0D0D0D 0D 0D 0D 0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0D0jO0D0O0D0P0P0P0P0D0=R0=R0=R0=R0D05?57778c8d8$9B9{999::]::::;;>>AA,C-CDDEoEFFHHJJpKqKKK(LRLSLFMGMMMMN
N6NANMNTNeNfNhNqNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOPZPrPrQQRRRRRTTTTTW&WXXYXYYJZ`Z["[\"\5\6\z^{^P`s`Oa`axaaddee>gWgiibjmjyjzjnnuss!u9uOucuduKvLvwwyy}}WXYۂ܂
78AHbcm|ƒÃǃ΃؃ك!9UV_oɄ	":;>ENORYijkۇ܇6TDObqr ѐϒ
0
0
0
0
000000
000000
00 0 0 0 0 0 0 0 
00 0 0 0 0 0 0 0 
00
00
00
00
0000/0/0/0/0/0/00/0*00 0 0 0*0000000000000000*0000*00
0000/0/0/0/0/0/00/0*00 0 0 0*0000000000000000*0000*00
0000Y00 0 0 0000000
0000Y00 0 0 0000000
00| 0| 0)"0| 0$
00| 0| 0)"0| 0$
00$0$0$0$
00$0$0$0$
00%0%0&0&0&0&0&0&0&0& 0& 0&0&0&0%0+ 0+ 0+ 0+0+0+ 0+ 0+0%0T-0T-0T-0T-0T-0T-0T-0T-0T-
00%0%0&0&0&0&0&0&0&0& 0& 0&0&0&0%0+ 0+ 0+ 0+0+0+ 0+ 0+0%0T-0T-0T-0T-0T-0T-0T-0T-0T-
007 07 0707070707070707 07 07 07 07070707 07 07 07 07070707 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07070aB070B070C0C0C0C0704E04E04E04E0703G070I0I0I        0I      0I
007 07 0707070707070707 07 07 07 07070707 07 07 07 07070707 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07 07070aB070B070C0C0C0C0704E04E04E04E0703G070I0I0I        0I      0I
00L0L0{M 0{M 0{M0{M0{M0{M0{M0L0R 0R 0R 0R0R0R0R0R0R0L0Y0L0[
 0[
 0[0[0[0[0[0L0e 0e 0e 0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e0e0e0e0L0~ 0~ 0~ 0~0~0~0~0~0~0~0LR    +
00L0L0{M 0{M 0{M0{M0{M0{M0{M0L0R 0R 0R 0R0R0R0R0R0R0L0Y0L0[
 0[
 0[0[0[0[0[0L0e 0e 0e 0e0e0e0e0e0e0e0e0e0e0e0e0e0e0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e 0e0e0e0e0L0~ 0~ 0~ 0~0~0~0~0~0~0~0LR    +
0[


D}ma"{w0j:CX\l՘ΚNSTUVWYZ[\]^_`abcdefgijknpr|~Z%)P+9c@LUeVVVVWWWYdbrYۊ
7b‹؋U:NiDΚOQRXhlmoqstuvwxyz{}͚P4@\_`b      )Hdfgi "#%Ef1346Vk79:<\s
0[


D}ma"{w0j:CX\l՘ΚNSTUVWYZ[\]^_`abcdefgijknpr|~Z%)P+9c@LUeVVVVWWWYdbrYۊ
7b‹؋U:NiDΚOQRXhlmoqstuvwxyz{}͚P4@\_`b      )Hdfgi "#%Ef1346Vk79:<\s
4679Yq!=?@Bbu!=?@Bb              $     =     Y     [     \     ^     ~                                        
4679Yq!=?@Bbu!=?@Bb              $     =     Y     [     \     ^     ~                                        






4
4
F
F
b
b
d
d
e
e
g
g
;Rnqrt69:<\v
@
\
_
`
b







"#%Β
X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%̕!!/
_Toc113242069
_Toc113479284
_Toc113479285
_Toc113479286
_Toc113479287
_Toc113242070
_Toc113479288
_Toc113242071
_Toc113479289
_Toc113242072
_Toc113479290
_Toc113479291
_Toc113479292
_Toc113479293
_Toc113479294
_Toc113242073
_Toc113479295
_Toc113479296
_Toc113479297
_Toc113479298
_Toc113242074
_Toc113479299
_Toc113479300
_Toc113479301
_Toc113479302
_Toc113242075
_Toc113479303
_Toc113479304
_Toc113479305
_Toc113479306
_Toc113242076
_Toc113479307
_Toc113479308
_Toc113479309
_Toc113479310
_Toc113479311
_Toc113479312
_Toc113479313
_Toc113242077
_Toc113479314
_Toc113479315
_Toc113479316
_Toc113479317
_Toc113479318
_Toc113479319
_Toc113479320
_Toc1134793216({{VV)C"H%G&G&'2)*../1$21313_4$9:DDOZPrQRTWJZJZ[P`>gius6ѐϒ
;Rnqrt69:<\v
@
\
_
`
b







"#%Β
X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%̕!!/
_Toc113242069
_Toc113479284
_Toc113479285
_Toc113479286
_Toc113479287
_Toc113242070
_Toc113479288
_Toc113242071
_Toc113479289
_Toc113242072
_Toc113479290
_Toc113479291
_Toc113479292
_Toc113479293
_Toc113479294
_Toc113242073
_Toc113479295
_Toc113479296
_Toc113479297
_Toc113479298
_Toc113242074
_Toc113479299
_Toc113479300
_Toc113479301
_Toc113479302
_Toc113242075
_Toc113479303
_Toc113479304
_Toc113479305
_Toc113479306
_Toc113242076
_Toc113479307
_Toc113479308
_Toc113479309
_Toc113479310
_Toc113479311
_Toc113479312
_Toc113479313
_Toc113242077
_Toc113479314
_Toc113479315
_Toc113479316
_Toc113479317
_Toc113479318
_Toc113479319
_Toc113479320
_Toc1134793216({{VV)C"H%G&G&'2)*../1$21313_4$9:DDOZPrQRTWJZJZ[P`>gius6ѐϒ

 !"#$%&'()*+,-.@6uuHW"[%[&[&'G)**../182B3B3h4A9:DDPqPQRT%W_Z_Z![r`VgisSϒ[ϒgϒ8*urn:schemas-microsoft-com:office:smarttagsdate200539DayMonthYear&+,4y~!"!F!N!n!v!(#+###<<<===BBJJNN>OFOOO3P:PDPJPLPQPPPWQcQUUVVVV\\bb?fCfgghh̀Ѐ&)cf΄ф̒ϒ!!VVYXX__`dhd̒ϒ333333#6AZ[(7.OQVv)IX""H%\%G&\&''2)H))+*..//11$292_4i4*5?578$9B9::DDMM
NOOOOPZPrPrQQTTW&WYYJZ`Z["[\6\P`s`Oaa>gWgiibjzjuss!uduY8Hc|!VoɄk6TDrѐ̒ϒ̒ϒUmair Siddiqui`h: ufLgZYJ:P^!7޿ly/>$      2p<xg_=6.`gZDV\iN,MPDDD_W#VNAoW

 !"#$%&'()*+,-.@6uuHW"[%[&[&'G)**../182B3B3h4A9:DDPqPQRT%W_Z_Z![r`VgisSϒ[ϒgϒ8*urn:schemas-microsoft-com:office:smarttagsdate200539DayMonthYear&+,4y~!"!F!N!n!v!(#+###<<<===BBJJNN>OFOOO3P:PDPJPLPQPPPWQcQUUVVVV\\bb?fCfgghh̀Ѐ&)cf΄ф̒ϒ!!VVYXX__`dhd̒ϒ333333#6AZ[(7.OQVv)IX""H%\%G&\&''2)H))+*..//11$292_4i4*5?578$9B9::DDMM
NOOOOPZPrPrQQTTW&WYYJZ`Z["[\6\P`s`Oaa>gWgiibjzjuss!uduY8Hc|!VoɄk6TDrѐ̒ϒ̒ϒUmair Siddiqui`h: ufLgZYJ:P^!7޿ly/>$      2p<xg_=6.`gZDV\iN,MPDDD_W#VNAoW
yhh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh
88^8`o(hHp`p^p``o(.p`p^p``o(..
yhh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh
88^8`o(hHp`p^p``o(.p`p^p``o(..
p`p^p``o(...        p`p^p``o(    ....   p`p^p``o(.....  
p`p^p``o(
......      
p`p^p``o(.......  
          ^    `o(........h
^`o(hH808^8`0o(.808^8`0o(..^`o(...     ^`o(    ....   `^``o(.....  
pp^p`o(
......      
pp^p`o(.......  
          ^    `o(........z^`zo(0^`0o(.0^`0o(..88^8`o(...       `^``o(    ....   `^``o(.....  
^`o(
......      
^`o(.......  
pp^p`o(........h^`o(808^8`0o(.808^8`0o(..^`o(...  ^`o(    ....   `^``o(.....  
pp^p`o(
......      
pp^p`o(.......  
          ^    `o(........h^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`o(
p`p^p``o(...        p`p^p``o(    ....   p`p^p``o(.....  
p`p^p``o(
......      
p`p^p``o(.......  
          ^    `o(........h
^`o(hH808^8`0o(.808^8`0o(..^`o(...     ^`o(    ....   `^``o(.....  
pp^p`o(
......      
pp^p`o(.......  
          ^    `o(........z^`zo(0^`0o(.0^`0o(..88^8`o(...       `^``o(    ....   `^``o(.....  
^`o(
......      
^`o(.......  
pp^p`o(........h^`o(808^8`0o(.808^8`0o(..^`o(...  ^`o(    ....   `^``o(.....  
pp^p`o(
......      
pp^p`o(.......  
          ^    `o(........h^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`o(
^`hH.
^`hH.
pLp^p`LhH.
pLp^p`LhH.
@@^@`hH.
@@^@`hH.
^`hH.
^`hH.
L^`LhH.
L^`LhH.
^`hH.
^`hH.
^`hH.
^`hH.
PLP^P`LhH.h^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHP^! Lg_W#VgZD`      2<Y_=AoWMP
PLP^P`LhH.h^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@@^@`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHP^! Lg_W#VgZD`      2<Y_=AoWMP
yiNly/                                                                                                                                                                                                                                                                       Ԕ                                          Ԕ                                          Ԕ                                                                                                                              Ԕ                                                                                                                                WV:Os.      ajzL _v {%-'`'-97=8 <G*^HDI%J?QFT%XFZ]U]mdei
yiNly/                                                                                                                                                                                                                                                                       Ԕ                                          Ԕ                                          Ԕ                                                                                                                              Ԕ                                                                                                                                WV:Os.      ajzL _v {%-'`'-97=8 <G*^HDI%J?QFT%XFZ]U]mdei
ktlKop{qrh{jU|F9@ iUu
ktlKop{qrh{jU|F9@ iUu
3! D)PMRDAh#s5[fCe}4Ec`]@mgFYr^(FBccaAF`pSjp/ZfAFRZ[hv6NANMNTNeNfNhNqNNNNNNNNNNNNNNNNOOOOOOOOOOOOOۂ܂
78AHbcm|ƒÃǃ΃؃ك!9UV_oɄ      ":;>ENORYijϒ@(Β@UnknownGz Times New Roman5Symbol3&z ArialE Helvetica-Bold?Times-Roman?5	z Courier New;Wingdings"qhPƳV#|J
3! D)PMRDAh#s5[fCe}4Ec`]@mgFYr^(FBccaAF`pSjp/ZfAFRZ[hv6NANMNTNeNfNhNqNNNNNNNNNNNNNNNNOOOOOOOOOOOOOۂ܂
78AHbcm|ƒÃǃ΃؃ك!9UV_oɄ      ":;>ENORYijϒ@(Β@UnknownGz Times New Roman5Symbol3&z ArialE Helvetica-Bold?Times-Roman?5	z Courier New;Wingdings"qhPƳV#|J
|J
|J
#x24dii   3qH,?{%Umair SiddiquiUmair SiddiquiH     
#x24dii   3qH,?{%Umair SiddiquiUmair SiddiquiH     

Oh+'0d 

Oh+'0d 
 ,
8DLT\ssUmair SiddiquimaiNormal.dotqUmair Siddiqui86iMicrosoft Word 10.0@@z"@g|՜.+,D՜.+,4hp

 ,
8DLT\ssUmair SiddiquimaiNormal.dotqUmair Siddiqui86iMicrosoft Word 10.0@@z"@g|՜.+,D՜.+,4hp

workgroup9
workgroup9
JiA
JiA
Title, 8@_PID_HLINKSA6_Toc1134793216_Toc1134793206_Toc1134793196_Toc1134793186_Toc1134793176_Toc1134793166_Toc1134793156_Toc1134793146_Toc1134793136_Toc1134793126_Toc1134793116_Toc1134793106_Toc1134793096_Toc1134793086_Toc1134793076_Toc1134793066_Toc1134793056z_Toc1134793046t_Toc1134793036n_Toc1134793026h_Toc1134793016b_Toc1134793007\_Toc1134792997V_Toc1134792987P_Toc1134792977J_Toc1134792967D_Toc1134792957>_Toc11347929478_Toc11347929372_Toc1134792927,_Toc1134792917&_Toc1134792907 _Toc1134792897_Toc1134792887_Toc1134792877_Toc1134792867_Toc1134792857_Toc113479284
Title, 8@_PID_HLINKSA6_Toc1134793216_Toc1134793206_Toc1134793196_Toc1134793186_Toc1134793176_Toc1134793166_Toc1134793156_Toc1134793146_Toc1134793136_Toc1134793126_Toc1134793116_Toc1134793106_Toc1134793096_Toc1134793086_Toc1134793076_Toc1134793066_Toc1134793056z_Toc1134793046t_Toc1134793036n_Toc1134793026h_Toc1134793016b_Toc1134793007\_Toc1134792997V_Toc1134792987P_Toc1134792977J_Toc1134792967D_Toc1134792957>_Toc11347929478_Toc11347929372_Toc1134792927,_Toc1134792917&_Toc1134792907 _Toc1134792897_Toc1134792887_Toc1134792877_Toc1134792867_Toc1134792857_Toc113479284

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  

 !"#$%&'()*+,-./02345678:;<=>?@GRoot Entry FXtIData

 !"#$%&'()*+,-./02345678:;<=>?@GRoot Entry FXtIData
^1TableWordDocumentr0SummaryInformation(1DocumentSummaryInformation89CompObjj
^1TableWordDocumentr0SummaryInformation(1DocumentSummaryInformation89CompObjj
 FMicrosoft Word Document
 FMicrosoft Word Document
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.