PK ,qs/UT W]=C=Ux8m8mPK ,٫ qs/q3game.cfgUT ֥= W=Ux8m8m;;; Misc procedures (define (cvar-ref cvarname) (trap-cvar-variable-string-buffer cvarname)) (define (cvar-set! cvarname value) (cond ((number? value) (set! value (number->string value))) ((char? value) (set! value (list->string (list value)))) ((symbol? value) (set! value (symbol->string value))) ) (trap-cvar-set cvarname value)) (define (console-command cmdstr) (trap-send-console-command EXEC_APPEND cmdstr)) (define (msg-client clientnum msg) (let ((cmdstr (string-append "print " "\"" msg "\""))) (trap-send-server-command clientnum cmdstr))) ;;; Quake 3 support procedures (define (strchr str character . args) (if (eq? args '()) (strchr str character 0) (let* ( (lookat (car args)) (c (string-ref str lookat))) (if (char=? c character) lookat (if (>= lookat (string-length str)) #f (strchr str character (+ lookat 1))))))) (define (strdelimit delimchar str offset . therest) ; (display "offset = ") (display offset) (display " ") (display (object-address offset)) (newline) ; (if (> offset 180) (error "nothing")) ; (display "therest = ") (display (object-address therest)) (newline) ; (display "stringlength = ") (display (string-length str)) (newline) ; (display "offset = ") (display offset) (newline) ; (display "therest = ") (display therest) (newline) ; (display "stringlength = ") (display (string-length str)) (newline) (if (eq? offset '()) (set! offset 0)) ; (display "wee") (newline) (if (>= offset (string-length str)) (if (equal? 0 (car therest)) therest (cons -1 therest)) (begin ; (display "Checking against ") (display (string-ref str offset)) (newline) (if (char=? delimchar (string-ref str offset)) (begin (if (eq? therest '()) (set! therest (list offset)) (set! therest (append therest (list offset)))) ; (display "therest now = ") (display therest) (newline) )) (apply strdelimit (list* delimchar str (+ offset 1) therest))))) ; (strdelimit delimchar str (+ offset 1) . therest)))) ;;; Info Strings. ;'\k1\v1\key2\value2\K3\V3' (define (_car x) (if (pair? x) (car x) '())) (define (_cdr x) (if (pair? x) (cdr x) '())) (define (info->alist infostring . therest) ; (display "info->list call\n"); (if (eq? therest '()) (let ((offsets (strdelimit #\\ infostring 0))) (display "strdelimit => ") (display offsets) (newline) (display "from string : ") (display infostring) (newline) (info->alist infostring offsets)) (let* ((offsets (_car therest)) (nextoffsets (_cdr (_cdr (_car therest)))) (k (_car offsets)) (v (_car (_cdr offsets))) (k2 (_cdr (_cdr offsets))) (nk (if (eq? k2 '()) (string-length infostring) (_car k2))) (key (substring infostring (+ k 1) v)) (value (substring infostring (+ v 1) nk)) (oldlist (_car (_cdr therest))) (alist (append oldlist (list (cons key value))))) ; (display "substring key = ") (display key) (newline) ; (display "substring value = ") (display value) (newline) (if (eq? nextoffsets '()) alist (info->alist infostring nextoffsets alist))))) (define (alist->info alist . therest) (let* ((k (_car (_car alist))) (v (_cdr (_car alist))) (s (if (eq? therest '()) therest (_car therest))) (split (list #\\))) (set! s (append s split (string->list k))) (set! s (append s split (string->list v))) (if (eq? (_cdr alist) '()) (list->string s) (alist->info (_cdr alist) s)))) (define (player-configstring-get nth property) (cdr (assoc (if (symbol? property) (symbol->string property) property) (info->alist (trap-get-configstring (+ CS_PLAYERS nth)))))) (define (player-configstring-set! nth property value) (let ((cs-alist (info->alist (trap-get-configstring (+ CS_PLAYERS nth)))) (cfgstr "")) (set-cdr! (assoc (if (symbol? property) (symbol->string property) property) cs-alist) value) (set! cfgstr (alist->info cs-alist)) (set! cfgstr (substring cfgstr 1 (string-length cfgstr))) (trap-set-configstring (+ CS_PLAYERS nth) cfgstr))) ;; FI runtime. (define (*gcmd-hook* cmdstr) (display "(QS) Got unknown game command:") (display cmdstr) (newline) #n) (define (*svcmd-hook* cmdstr) (display "(QS) Got unknown server command:") (display cmdstr) (newline) #n) #| (define (fi-player-class-model-set! clientnum) (let* ((clasid (binstr-get (cmem-get (+ *g_clients* (* *size:gclient_t* clientnum) *offset:gclient_t.sess* *offset:clientSession_t.clas*) 4) -4 0)) (nameptr (binstr-get (cmem-get (+ *desc_clas* (* *size:fi_class_t* clasid) *offset:fi_class_t.name*) 4) -4 0)) (clasname (if (equal? 0 nameptr) "(unknown)" (cmem-get nameptr -1))) (model "") ) (display "event:client-respawn: Client ") (display clientnum) (display " = class ") (display clasid) (newline) (display "event:client-respawn: nameptr = ") (display nameptr) (newline) (display "event:client-respawn: calculated name = ") (display clasname) (newline) (case clasid ;Should search variable "classes" instead. ((0) (set! model "orbb")) ((1) (set! model "slash")) ((2) (set! model "hunter")) ((3) (set! model "sarge")) ((4) (set! model "ranger")) ((5) (set! model "tankjr")) ((6) (set! model "visor")) ((7) (set! model "major")) ((8) (set! model "bitterman")) ((9) (set! model "razor")) (else (set! model "bones"))) (player-configstring-set! clientnum "model" model) (player-configstring-set! clientnum "hmodel" model) ) ) (define (event:client-respawn clientnum) (fi-player-class-model-set! clientnum)) |# PK ,JJqs/tinyscm.cfgUT < W=Ux8m8m; Initialization file for TinySCHEME 1.25 onwards ; Per R5RS, up to four deep compositions should be defined (define (caar x) (car (car x))) (define (cadr x) (car (cdr x))) (define (cdar x) (cdr (car x))) (define (cddr x) (cdr (cdr x))) (define (caaar x) (car (car (car x)))) (define (caadr x) (car (car (cdr x)))) (define (cadar x) (car (cdr (car x)))) (define (caddr x) (car (cdr (cdr x)))) (define (cdaar x) (cdr (car (car x)))) (define (cdadr x) (cdr (car (cdr x)))) (define (cddar x) (cdr (cdr (car x)))) (define (cdddr x) (cdr (cdr (cdr x)))) (define (caaaar x) (car (car (car (car x))))) (define (caaadr x) (car (car (car (cdr x))))) (define (caadar x) (car (car (cdr (car x))))) (define (caaddr x) (car (car (cdr (cdr x))))) (define (cadaar x) (car (cdr (car (car x))))) (define (cadadr x) (car (cdr (car (cdr x))))) (define (caddar x) (car (cdr (cdr (car x))))) (define (cadddr x) (car (cdr (cdr (cdr x))))) (define (cdaaar x) (cdr (car (car (car x))))) (define (cdaadr x) (cdr (car (car (cdr x))))) (define (cdadar x) (cdr (car (cdr (car x))))) (define (cdaddr x) (cdr (car (cdr (cdr x))))) (define (cddaar x) (cdr (cdr (car (car x))))) (define (cddadr x) (cdr (cdr (car (cdr x))))) (define (cdddar x) (cdr (cdr (cdr (car x))))) (define (cddddr x) (cdr (cdr (cdr (cdr x))))) (macro (unless form) `(if (not ,(cadr form)) (begin ,@(cddr form)))) (macro (when form) `(if ,(cadr form) (begin ,@(cddr form)))) ; DEFINE-MACRO Contributed by Andy Gaynor (macro (define-macro dform) (if (symbol? (cadr dform)) `(macro ,@(cdr dform)) (let ((form (gensym))) `(macro (,(caadr dform) ,form) (apply (lambda ,(cdadr dform) ,@(cddr dform)) (cdr ,form)))))) ; Utilities for math. Notice that inexact->exact is primitive, ; but exact->inexact is not. (define exact? integer?) (define (inexact? x) (and (real? x) (not (integer? x)))) (define (even? n) (= (remainder n 2) 0)) (define (odd? n) (not (= (remainder n 2) 0))) (define (zero? n) (= n 0)) (define (positive? n) (> n 0)) (define (negative? n) (< n 0)) (define complex? number?) (define rational? real?) (define (abs n) (if (>= n 0) n (- n))) (define (exact->inexact n) (* n 1.0)) (define (<> n1 n2) (not (= n1 n2))) (define (max . lst) (foldr (lambda (a b) (if (> a b) a b)) (car lst) (cdr lst))) (define (min . lst) (foldr (lambda (a b) (if (< a b) a b)) (car lst) (cdr lst))) (define (succ x) (+ x 1)) (define (pred x) (- x 1)) (define (gcd a b) (let ((aa (abs a)) (bb (abs b))) (if (= bb 0) aa (gcd bb (remainder aa bb))))) (define (lcm a b) (if (or (= a 0) (= b 0)) 0 (abs (* (quotient a (gcd a b)) b)))) (define call/cc call-with-current-continuation) (define (string . charlist) (list->string charlist)) (define (list->string charlist) (let* ((len (length charlist)) (newstr (make-string len)) (fill-string! (lambda (str i len charlist) (if (= i len) str (begin (string-set! str i (car charlist)) (fill-string! str (+ i 1) len (cdr charlist))))))) (fill-string! newstr 0 len charlist))) (define (string-fill! s e) (let ((n (string-length s))) (let loop ((i 0)) (if (= i n) s (begin (string-set! s i e) (loop (succ i))))))) (define (string->list s) (let loop ((n (pred (string-length s))) (l '())) (if (= n -1) l (loop (pred n) (cons (string-ref s n) l))))) (define (string-append . strs) (define (string-overwrite dst idst src) (do ((i 0 (+ i 1))) ((= i (string-length src)) dst) (string-set! dst (+ idst i) (string-ref src i)))) (let* ((tot-len (foldr (lambda (x s) (+ x (string-length s))) 0 strs)) (news (make-string tot-len))) (do ((i 0) (lst strs (cdr lst))) ((null? lst) news) (string-overwrite news i (car lst)) (set! i (+ i (string-length (car lst))))))) (define (string-copy str) (string-append str)) (define (string->anyatom str pred) (let* ((a (string->atom str))) (if (pred a) a (error "string->xxx: not a xxx" a)))) (define (string->number str) (string->anyatom str number?)) (define (anyatom->string n pred) (if (pred n) (atom->string n) (error "xxx->string: not a xxx" n))) (define (number->string n) (anyatom->string n number?)) (define (char-cmp? cmp a b) (cmp (char->integer a) (char->integer b))) (define (char-ci-cmp? cmp a b) (cmp (char->integer (char-downcase a)) (char->integer (char-downcase b)))) (define (char=? a b) (char-cmp? = a b)) (define (char? a b) (char-cmp? > a b)) (define (char<=? a b) (char-cmp? <= a b)) (define (char>=? a b) (char-cmp? >= a b)) (define (char-ci=? a b) (char-ci-cmp? = a b)) (define (char-ci? a b) (char-ci-cmp? > a b)) (define (char-ci<=? a b) (char-ci-cmp? <= a b)) (define (char-ci>=? a b) (char-ci-cmp? >= a b)) ; Note the trick of returning (cmp x y) (define (string-cmp? chcmp cmp a b) (let ((na (string-length a)) (nb (string-length b))) (if (<> na nb) (cmp na nb) (let loop ((i 0)) (if (= i na) (if (= na 0) (cmp 0 0) #t) (and (chcmp cmp (string-ref a i) (string-ref b i)) (loop (succ i)))))))) (define (string=? a b) (string-cmp? char-cmp? = a b)) (define (string? a b) (string-cmp? char-cmp? > a b)) (define (string<=? a b) (string-cmp? char-cmp? <= a b)) (define (string>=? a b) (string-cmp? char-cmp? >= a b)) (define (string-ci=? a b) (string-cmp? char-ci-cmp? = a b)) (define (string-ci? a b) (string-cmp? char-ci-cmp? > a b)) (define (string-ci<=? a b) (string-cmp? char-ci-cmp? <= a b)) (define (string-ci>=? a b) (string-cmp? char-ci-cmp? >= a b)) (define (list . x) x) (define (foldr f x lst) (if (null? lst) x (foldr f (f x (car lst)) (cdr lst)))) (define (unzip1-with-cdr . lists) (unzip1-with-cdr-iterative lists '() '())) (define (unzip1-with-cdr-iterative lists cars cdrs) (if (null? lists) (cons cars cdrs) (let ((car1 (caar lists)) (cdr1 (cdar lists))) (unzip1-with-cdr-iterative (cdr lists) (append cars (list car1)) (append cdrs (list cdr1)))))) (define (map proc . lists) (if (null? lists) (apply proc) (if (null? (car lists)) '() (let* ((unz (apply unzip1-with-cdr lists)) (cars (car unz)) (cdrs (cdr unz))) (cons (apply proc cars) (apply map (cons proc cdrs))))))) (define (for-each proc . lists) (if (null? lists) (apply proc) (if (null? (car lists)) #t (let* ((unz (apply unzip1-with-cdr lists)) (cars (car unz)) (cdrs (cdr unz))) (apply proc cars) (apply map (cons proc cdrs)))))) (define (list-tail x k) (if (zero? k) x (list-tail (cdr x) (- k 1)))) (define (list-ref x k) (car (list-tail x k))) (define (last-pair x) (if (pair? (cdr x)) (last-pair (cdr x)) x)) (define (head stream) (car stream)) (define (tail stream) (force (cdr stream))) (define (vector-equal? x y) (and (vector? x) (vector? y) (= (vector-length x) (vector-length y)) (let ((n (vector-length x))) (let loop ((i 0)) (if (= i n) #t (and (equal? (vector-ref x i) (vector-ref y i)) (loop (succ i)))))))) (define (list->vector x) (apply vector x)) (define (vector-fill! v e) (let ((n (vector-length v))) (let loop ((i 0)) (if (= i n) v (begin (vector-set! v i e) (loop (succ i))))))) (define (vector->list v) (let loop ((n (pred (vector-length v))) (l '())) (if (= n -1) l (loop (pred n) (cons (vector-ref v n) l))))) ;; The following quasiquote macro is due to Eric S. Tiedemann. ;; Copyright 1988 by Eric S. Tiedemann; all rights reserved. ;; ;; Subsequently modified to handle vectors: D. Souflis (macro quasiquote (lambda (l) (define (mcons f l r) (if (and (pair? r) (eq? (car r) 'quote) (eq? (car (cdr r)) (cdr f)) (pair? l) (eq? (car l) 'quote) (eq? (car (cdr l)) (car f))) (if (or (procedure? f) (number? f) (string? f)) f (list 'quote f)) (if (eqv? l vector) (apply l (eval r)) (list 'cons l r) ))) (define (mappend f l r) (if (or (null? (cdr f)) (and (pair? r) (eq? (car r) 'quote) (eq? (car (cdr r)) '()))) l (list 'append l r))) (define (foo level form) (cond ((not (pair? form)) (if (or (procedure? form) (number? form) (string? form)) form (list 'quote form)) ) ((eq? 'quasiquote (car form)) (mcons form ''quasiquote (foo (+ level 1) (cdr form)))) (#t (if (zero? level) (cond ((eq? (car form) 'unquote) (car (cdr form))) ((eq? (car form) 'unquote-splicing) (error "Unquote-splicing wasn't in a list:" form)) ((and (pair? (car form)) (eq? (car (car form)) 'unquote-splicing)) (mappend form (car (cdr (car form))) (foo level (cdr form)))) (#t (mcons form (foo level (car form)) (foo level (cdr form))))) (cond ((eq? (car form) 'unquote) (mcons form ''unquote (foo (- level 1) (cdr form)))) ((eq? (car form) 'unquote-splicing) (mcons form ''unquote-splicing (foo (- level 1) (cdr form)))) (#t (mcons form (foo level (car form)) (foo level (cdr form))))))))) (foo 0 (car (cdr l))))) ;;;;; atom? and equal? written by a.k ;;;; atom? (define (atom? x) (not (pair? x))) ;;;; equal? (define (equal? x y) (cond ((pair? x) (and (pair? y) (equal? (car x) (car y)) (equal? (cdr x) (cdr y)))) ((vector? x) (and (vector? y) (vector-equal? x y))) ((string? x) (and (string? y) (string=? x y))) (else (eqv? x y)))) ;;;; (do ((var init inc) ...) (endtest result ...) body ...) ;; (macro do (lambda (do-macro) (apply (lambda (do vars endtest . body) (let ((do-loop (gensym))) `(letrec ((,do-loop (lambda ,(map (lambda (x) (if (pair? x) (car x) x)) `,vars) (if ,(car endtest) (begin ,@(cdr endtest)) (begin ,@body (,do-loop ,@(map (lambda (x) (cond ((not (pair? x)) x) ((< (length x) 3) (car x)) (else (car (cdr (cdr x)))))) `,vars))))))) (,do-loop ,@(map (lambda (x) (if (and (pair? x) (cdr x)) (car (cdr x)) '())) `,vars))))) do-macro))) ;;;; generic-member (define (generic-member cmp obj lst) (cond ((null? lst) #f) ((cmp obj (car lst)) lst) (else (generic-member cmp obj (cdr lst))))) (define (memq obj lst) (generic-member eq? obj lst)) (define (memv obj lst) (generic-member eqv? obj lst)) (define (member obj lst) (generic-member equal? obj lst)) ;;;; generic-assoc (define (generic-assoc cmp obj alst) (cond ((null? alst) #f) ((cmp obj (caar alst)) (car alst)) (else (generic-assoc cmp obj (cdr alst))))) (define (assq obj alst) (generic-assoc eq? obj alst)) (define (assv obj alst) (generic-assoc eqv? obj alst)) (define (assoc obj alst) (generic-assoc equal? obj alst)) (define (acons x y z) (cons (cons x y) z)) ;;;; Utility to ease macro creation (define (macro-expand form) ((eval (get-closure-code (eval (car form)))) form)) ;;;; Handy for imperative programs ;;;; Used as: (define-with-return (foo x y) .... (return z) ...) (macro (define-with-return form) `(define ,(cadr form) (call/cc (lambda (return) ,@(cddr form))))) ;;;; Simple exception handling ; ; Exceptions are caught as follows: ; ; (catch (do-something to-recover and-return meaningful-value) ; (if-something goes-wrong) ; (with-these calls)) ; ; "Catch" establishes a scope spanning multiple call-frames ; until another "catch" is encountered. ; ; Exceptions are thrown with: ; ; (throw "message") ; ; If used outside a (catch ...), reverts to (error "message) (define *handlers* (list)) (define (push-handler proc) (set! *handlers* (cons proc *handlers*))) (define (pop-handler) (let ((h (car *handlers*))) (set! *handlers* (cdr *handlers*)) h)) (define (more-handlers?) (pair? *handlers*)) (define (throw . x) (if (more-handlers?) (apply (pop-handler)) (apply error x))) (macro (catch form) (let ((label (gensym))) `(call/cc (lambda (exit) (push-handler (lambda () (exit ,(cadr form)))) (let ((,label (begin ,@(cddr form)))) (pop-handler) ,label))))) (define *error-hook* throw) ;;;;; Definition of MAKE-ENVIRONMENT, to be used with two-argument EVAL (macro (make-environment form) `(apply (lambda () ,@(cdr form) (current-environment)))) (define-macro (eval-polymorphic x . envl) (display envl) (let* ((env (if (null? envl) (current-environment) (eval (car envl)))) (xval (eval x env))) (if (closure? xval) (make-closure (get-closure-code xval) env) xval))) ; Redefine this if you install another package infrastructure ; Also redefine 'package' (define *colon-hook* eval) ;;;;; I/O (define (input-output-port? p) (and (input-port? p) (output-port? p))) (define (close-port p) (cond ((input-output-port? p) (close-input-port (close-output-port p))) ((input-port? p) (close-input-port p)) ((output-port? p) (close-output-port p)) (else (throw "Not a port" p)))) (define (call-with-input-file s p) (let ((inport (open-input-file s))) (if (eq? inport #f) #f (let ((res (p inport))) (close-input-port inport) res)))) (define (call-with-output-file s p) (let ((outport (open-output-file s))) (if (eq? outport #f) #f (let ((res (p outport))) (close-output-port outport) res)))) (define (with-input-from-file s p) (let ((inport (open-input-file s))) (if (eq? inport #f) #f (let ((prev-inport (current-input-port))) (set-input-port inport) (let ((res (p))) (close-input-port inport) (set-input-port prev-inport) res))))) (define (with-output-to-file s p) (let ((outport (open-output-file s))) (if (eq? outport #f) #f (let ((prev-outport (current-output-port))) (set-output-port outport) (let ((res (p))) (close-output-port outport) (set-output-port prev-outport) res))))) (define (with-input-output-from-to-files si so p) (let ((inport (open-input-file si)) (outport (open-input-file so))) (if (not (and inport outport)) (begin (close-input-port inport) (close-output-port outport) #f) (let ((prev-inport (current-input-port)) (prev-outport (current-output-port))) (set-input-port inport) (set-output-port outport) (let ((res (p))) (close-input-port inport) (close-output-port outport) (set-input-port prev-inport) (set-output-port prev-outport) res))))) ; Random number generator (maximum cycle) (define *seed* 1) (define (random-next) (let* ((a 16807) (m 2147483647) (q (quotient m a)) (r (modulo m a))) (set! *seed* (- (* a (- *seed* (* (quotient *seed* q) q))) (* (quotient *seed* q) r))) (if (< *seed* 0) (set! *seed* (+ *seed* m))) *seed*)) ;; SRFI-0 ;; COND-EXPAND ;; Implemented as a macro (define *features* '(srfi-0)) (define-macro (cond-expand . cond-action-list) (cond-expand-runtime cond-action-list)) (define (cond-expand-runtime cond-action-list) (if (null? cond-action-list) #t (if (cond-eval (caar cond-action-list)) `(begin ,@(cdar cond-action-list)) (cond-expand-runtime (cdr cond-action-list))))) (define (cond-eval-and cond-list) (foldr (lambda (x y) (and (cond-eval x) (cond-eval y))) #t cond-list)) (define (cond-eval-or cond-list) (foldr (lambda (x y) (or (cond-eval x) (cond-eval y))) #f cond-list)) (define (cond-eval condition) (cond ((symbol? condition) (if (member condition *features*) #t #f)) ((eq? condition #t) #t) ((eq? condition #f) #f) (else (case (car condition) ((and) (cond-eval-and (cdr condition))) ((or) (cond-eval-or (cdr condition))) ((not) (if (not (null? (cddr condition))) (error "cond-expand : 'not' takes 1 argument") (not (cond-eval (cadr condition))))) (else (error "cond-expand : unknown operator" (car condition))))))) (gc-verbose #t) PK 3,(88qs/fi-excess.cfgUT = W=Ux8m8m;data start (define damages '( (DNON (radius 0) (damage 0) (knockback 1.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DGAU (radius 0) (damage 200) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_NONE)) (DBUL (radius 0) (damage 10) (knockback 1.0) (effect 0) (evhit EV_BULLET_HIT_FLESH) (evmiss EV_BULLET_HIT_WALL)) (DSHO (radius 0) (damage 7) (knockback 1.0) (effect 0) (evhit EV_BULLET_HIT_FLESH) (evmiss EV_BULLET_HIT_WALL)) (DGRE (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SGRE (radius 150) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DROC (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SROC (radius 120) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DLIG (radius 0) (damage 10) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SLIG (radius 20) (damage 10) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DRAI (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_RAILTRAIL) (evmiss EV_RAILTRAIL)) (DPLA (radius 0) (damage 20) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SPLA (radius 20) (damage 15) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DBFG (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SBFG (radius 120) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DFBG (radius 0) (damage 300) (knockback 3.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SFBG (radius 1200) (damage 200) (knockback 2.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DRA2 (radius 0) (damage 45) (knockback 1.0) (effect 0) (evhit EV_RAILTRAIL) (evmiss EV_RAILTRAIL)) (DBM1 (radius 0) (damage 0) (knockback 1.0) (effect 0) (evhit EV_RAILTRAIL) (evmiss EV_RAILTRAIL)) (DGRP (radius 0) (damage 0) (knockback 1.0) (effect DFX_GRAPPLE) (evhit EV_NONE) (evmiss EV_NONE)) (DSUI (radius 0) (damage 100000) (knockback 0.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DFAL (radius 0) (damage 0) (knockback 0.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DCRU (radius 0) (damage 100000) (knockback 0.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DH2O ()) (DSLI ()) (DLAV ()) (DLAS ()) (DHUR ()) ) ) (define grenades '( (gnull (drop (range 3000) (trajectory TR_GRAVITY) (impact DGRE) (splash SGRE) ) (settle (range 0) (dir DIRTYPE_UP) (trajectory TR_LINEAR) (impact DGRE) (splash SGRE) ) (search (range 0) (dir DIRTYPE_UP) (target 0) (period 1000) (delay 0) (impact DGRE) (splash SGRE) ) (fire (delay 0) (rotation 0) (projectile 0) (ammo 0) (dir DIRTYPE_UP) (impact DGRE) (splash SGRE) ) (die (range 0) (dir DIRTYPE_DOWN) (speed 0) (impact DGRE) (splash DGRE) ) ) (gturret (drop (range 3000) (impact DGRE) (splash SGRE) ) (settle (range 1000) (dir DIRTYPE_UP) (trajectory TR_LINEAR) (impact DGRE) (splash SGRE) ) (search (dir DIRTYPE_ORIG) (range 180) (target 1) (period 200) (delay 200) (paint 1) (impact DGRE) (splash SGRE) ) (fire (dir DIRTYPE_AUTO) (ammo 4) (delay 200) (projectile prailslug) (rotation 0) ) (die ) ) ) ) (define projectiles '( (pnone (speed -1) (trajectory TR_STATIONARY) (pellets 0) (range 0) (spread 0) (impact PNON) (splash PNON) (base_model WP_NONE) (bounce 0) ) (pgauntlet (speed -1) (trajectory TR_STATIONARY) (pellets 1) (range 1000) (spread 0) (impact DGAU) (splash PNON) (base_model WP_GAUNTLET) (bounce 0) ) (pmachinegun (speed -1) (cost "B1") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 50) (impact DBUL) (splash PNON) (base_model WP_MACHINEGUN) (bounce 0) ) (pshotgun (speed -1) (cost "S1") (trajectory TR_STATIONARY) (pellets 11) (range *) (spread 700) (impact DRAI) (splash PNON) (base_model WP_RAILGUN) (bounce 0) ) (pgrenade (speed 700) (cost "G1") (trajectory TR_GRAVITY) (pellets 1) (range 3000) (spread 0) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ;detonate on impact ) (pgrenshot (speed 700) (cost "G8") (trajectory TR_GRAVITY) (pellets 8) (range 3000) (spread 200) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ) (procket (speed 900) (cost "R1") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) ) (procket2 (speed 400) (cost "R1") (trajectory TR_LINEAR) (pellets 1) (range 9000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 1.0) ) (plightning (speed -1) (cost "L1") (trajectory TR_STATIONARY) (pellets 1) (range 768) (spread 0) (impact DLIG) (splash SLIG) (base_model WP_LIGHTNING) (bounce 0) ) (prailslug (speed -1) (cost "U1") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DRAI) (splash DNON) (base_model WP_RAILGUN) (bounce 0) ) (prailsnail (speed -1) (cost "U1") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DRA2) (splash PNON) (base_model WP_RAILGUN) (bounce 0) ) (pplasma (speed 2000) (cost "C1") (trajectory TR_LINEAR) (pellets 4) (range 10000) (spread 160) (impact DPLA) (splash SPLA) (base_model WP_PLASMAGUN) (bounce 0) ) (pgdbfg (speed 3000) (cost "F5") (trajectory TR_LINEAR) (pellets 3) (range 10000) (spread 30) (impact DFBG) (splash SFBG) (base_model WP_BFG) (bounce 0) ) (pbfg (speed 2000) (cost "F1") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DBFG) (splash SBFG) (base_model WP_BFG) (bounce 0) (death_proj peobfggren) ) (hook (speed 800) (cost "") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DGRP) (splash DNON) (base_model WP_GRAPPLING_HOOK) (bounce 0) ) (pchain1 (speed -1) (cost "B2") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 700) (impact DBUL) (splash DNON) (base_model WP_MACHINEGUN) (bounce 0) ) (pblaster (speed 700) (cost "C2") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DPLA) (splash DNON) (base_model WP_RAILGUN) (bounce 0) ) (peobfggren (speed 400) (cost "G8") (trajectory TR_LINEAR) (pellets 8) (range 150) (spread 20) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ) (pslug2 (speed -1) (cost "U2G8") (trajectory TR_STATIONARY) (pellets 11) (range *) (spread 100000) (impact DRAI) (splash PNON) (base_model WP_RAILGUN) (bounce 0) (death_proj peobfggren) ) (pslug3 (speed -1) (cost "U2G8") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DRAI) (splash PNON) (base_model WP_RAILGUN) (bounce 0) ; (death_proj peobfggren) (death_proj pgren-turret-settle) ) (peobfg (speed 4000) (cost "F2") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DBFG) (splash SBFG) (base_model WP_BFG) (bounce 0) (death_proj peobfggren) ) (pgrencluster1 (speed 400) (cost "G1") (trajectory TR_GRAVITY) (pellets 6) (range 3000) (spread 120) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ) (pclustergren1 (speed 700) (cost "G7") (trajectory TR_GRAVITY) (pellets 1) (range 3000) (spread 0) (impact DGRE) (splash DGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0.5) (death_proj pgrencluster1) (health 10) ) (pinfbfg (speed 600) (cost "F2") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DBFG) (splash SBFG) (base_model WP_BFG) (bounce 0) (death_proj pinfbfg) ) (pshrapnel (speed -1) (cost "G2") (trajectory TR_STATIONARY) (pellets 16) (range *) (spread 30000) (impact DBUL) (splash PNON) (base_model WP_MACHINEGUN) (bounce 0) ) (pshrapnelgren (speed 700) (cost "F2") (trajectory TR_GRAVITY) (pellets 1) (range 2000) (spread 0) (impact DGRE) (splash DNON) (base_model WP_GRENADE_LAUNCHER) ; (bounce 0.4) (bounce -1) (health 10) (death_proj pshrapnel) ) (pspam-grenade (speed 120) (cost "G1") (trajectory TR_GRAVITY) (pellets 2) (range 3000) (spread 2000) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ) (pcluster-grenade-rocket (speed 400) (cost "R4G8") (trajectory TR_LINEAR) (pellets 1) (range 6000) (spread 0) (impact DGRE) (splash SGRE) (base_model WP_ROCKET_LAUNCHER) (spam spam-cluster-rocket-1) (bounce 0) ) (pshotplasma (speed 2000) (cost "P3") (trajectory TR_LINEAR) (pellets 3) (range 10000) (spread 100) (impact DPLA) (splash SPLA) (base_model WP_PLASMAGUN) (bounce 0) ) (pshotrail (speed -1) (cost "R8") (trajectory TR_LINEAR) (pellets 6) (range *) (spread 2000) (impact DRAI) (splash DNON) (base_model WP_RAILGUN) (bounce 0) ) (pbfgcluster1 (speed 1000) (cost "F1") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 100) (impact DBFG) (splash SBFG) (base_model WP_BFG) (bounce 0) ) (pbfr20k ;BF/Rocket 20K. Thx A-Sniper. (speed 400) (cost "R2F8") (trajectory TR_LINEAR) (pellets 1) (range 6000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) (spam spam-carpet-bfg-1) ) (ptestrocket1 (speed 600) (cost "R2") (trajectory TR_LINEAR) (pellets 1) (range 6000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) ) (pmirvpayload (speed 600) (cost "R6") (trajectory TR_LINEAR) (pellets 6) (range 8000) (spread 200) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) ) (pmirvwarhead (speed 800) (cost "R6") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) (death_proj pmirvpayload) ) (pgren-turret-die (speed 0) (cost "G2U4") (trajectory TR_GRAVITY) (range 3000) (pellets 1) (spread 0) (impact DROC) (splash SROC) (base_model WP_GRENADE_LAUNCHER) ) (pgren-turret (speed 0) (cost "G2U4") (trajectory TR_INTERPOLATE) (dirtype DIRTYPE_DOWN) (range 60000) (pellets 1) (spread 0) (impact DROC) (splash SROC) (base_model WP_GRENADE_LAUNCHER) (transit pgren-turret-die) (spam sturretgren) ) (pgren-turret-settle (speed 120) (range 1500) (cost "G2U4") (trajectory TR_LINEAR) (dirtype DIRTYPE_UP) (pellets 1) (spread 0) (impact DROC) (splash DROC) (base_model WP_GRENADE_LAUNCHER) (bounce 0.5) (transit pgren-turret) ) (pgren-turret-drop (speed 400) ;really charged. (cost "G2U4") (trajectory TR_GRAVITY) (pellets 1) (range 3000) (spread 0) (impact DROC) (splash SROC) (base_model WP_GRENADE_LAUNCHER) (bounce 0.5) (transit pgren-turret-settle) ) (procket-homing (speed 800) (trajectory TR_LINEAR) (cost "R2C4") (pellets 1) (range 8000) (spread 0) (impact DPLA) (splash DROC) (base_model WP_ROCKET_LAUNCHER) (spam spam-home1) ) (prailbeam (speed -1) (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DBM1) (splash DNON) (base_model WP_RAILGUN) (bounce 0) ) ) ) (define spams '( (nospam (dirtype 0) ;0 = up, 1 = forward, -1 = backward, 2 = down (period 131072) (projectile pnone) ) (spam-cluster-rocket-1 (dirtype DIRTYPE_UP) (period 400) (target TARGET_ALWAYS) (delay 0) (projectile pspam-grenade) ) (spam-carpet-bfg-1 (dirtype DIRTYPE_DOWN) (period 200) (target TARGET_ALWAYS) (delay 0) (projectile pbfgcluster1) ) (sturretgren (dirtype DIRTYPE_AUTO) (period 20) (target TARGET_ENEMY_MEMBER) (dist 10000) (angle *) (omega *) (delay 0) (shots 4) (projectile prailslug) ) (spam-home1 (dirtype DIRTYPE_FORWARD) (period 100) (target TARGET_ENEMY_MEMBER) (dist 1000) (angle 180) (omega 90) ) ) ) (define weapons '( (phony (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 ()) (2 ()) ) ) (gauntlet (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil -400) (reload 400) (projectile pgauntlet)) (2 ()) ) ) (machinegun (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 50) (reload 0) (projectile pmachinegun)) ) ) (shotgun (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 1000) (reload 0) (projectile pshotgun)) ) ) (grenadelauncher (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 400) (reload 0) (projectile pgrenade)) ) ) (rocketlauncher (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 100) (reload 0) (projectile procket)) ) ) (lightninggun (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 50) (reload 0) (projectile plightning)) ) ) (railgun (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 500) (reload 500) (projectile prailslug)) ) ) (plasmagun (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 100) (reload 0) (projectile pplasma)) ) ) (bfg10k (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 800) (reload 0) (projectile peobfg)) ) ) ;;hrm... (grapplinghook (ortho false) (attribute 0) (ability AB_HOOK) (view 0) (modes (1 (spinup 0) (recoil 0) (reload -200) (projectile hook)) ) ) ) ) ;data end PK ,r϶ qs/ts_qs.cfgUT MN< W=Ux8m8m(define (*hash-bra* sofar) (let ((ch (read-char))) (if (char=? ch #\]) (list->string sofar) (*hash-bra* (append sofar `(,ch)))))) (define (*read*block*comment*) (let ((ch (read-char))) (cond ((char=? ch #\|) (let ((nc (read-char))) (if (not (char=? nc #\#)) (*read*block*comment*)))) ((char=? ch #\#) (let ((nc (read-char))) (if (char=? ch #\|) (begin (*read*block*comment*) (*read*block*comment*)) (*read*block*comment*)))) (else (*read*block*comment*))))) (define (*sharp-hook*) (let ((ch (read-char))) (cond ((char=? ch #\[) (*hash-bra* '())) ((char=? ch #\|) (*read*block*comment*))))) ;; (load "qs/q3game.cfg") PK y,A@@qs/fi-orig.cfgUT 0< W=Ux8m8m;data start (define damages '( (DNON (radius 0) (damage 0) (knockback 1.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DGAU (radius 0) (damage 50) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_NONE)) (DBUL (radius 0) (damage 10) (knockback 1.0) (effect 0) (evhit EV_BULLET_HIT_FLESH) (evmiss EV_BULLET_HIT_WALL)) (DSHO (radius 0) (damage 7) (knockback 1.0) (effect 0) (evhit EV_BULLET_HIT_FLESH) (evmiss EV_BULLET_HIT_WALL)) (DGRE (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SGRE (radius 150) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DROC (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SROC (radius 120) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DLIG (radius 0) (damage 10) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DRAI (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_RAILTRAIL) (evmiss EV_RAILTRAIL)) (DPLA (radius 0) (damage 20) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SPLA (radius 20) (damage 15) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DBFG (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SBFG (radius 120) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DFBG (radius 0) (damage 300) (knockback 3.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SFBG (radius 1200) (damage 200) (knockback 2.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DRA2 (radius 0) (damage 45) (knockback 1.0) (effect 0) (evhit EV_RAILTRAIL) (evmiss EV_RAILTRAIL)) (DBM1 (radius 0) (damage 0) (knockback 1.0) (effect 0) (evhit EV_RAILTRAIL) (evmiss EV_RAILTRAIL)) (DGRP (radius 0) (damage 0) (knockback 1.0) (effect DFX_GRAPPLE) (evhit EV_NONE) (evmiss EV_NONE)) (DSUI (radius 0) (damage 100000) (knockback 0.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DFAL (radius 0) (damage 0) (knockback 0.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DCRU (radius 0) (damage 100000) (knockback 0.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DH2O ()) (DSLI ()) (DLAV ()) (DLAS ()) (DHUR ()) ) ) (define grenades '( (gnull (drop (range 3000) (trajectory TR_GRAVITY) (impact DGRE) (splash SGRE) ) (settle (range 0) (dir DIRTYPE_UP) (trajectory TR_LINEAR) (impact DGRE) (splash SGRE) ) (search (range 0) (dir DIRTYPE_UP) (target 0) (period 1000) (delay 0) (impact DGRE) (splash SGRE) ) (fire (delay 0) (rotation 0) (projectile 0) (ammo 0) (dir DIRTYPE_UP) (impact DGRE) (splash SGRE) ) (die (range 0) (dir DIRTYPE_DOWN) (speed 0) (impact DGRE) (splash DGRE) ) ) (gturret (drop (range 3000) (impact DGRE) (splash SGRE) ) (settle (range 1000) (dir DIRTYPE_UP) (trajectory TR_LINEAR) (impact DGRE) (splash SGRE) ) (search (dir DIRTYPE_ORIG) (range 180) (target 1) (period 200) (delay 200) (paint 1) (impact DGRE) (splash SGRE) ) (fire (dir DIRTYPE_AUTO) (ammo 4) (delay 200) (projectile prailslug) (rotation 0) ) (die ) ) ) ) (define projectiles '( (pnone (speed -1) (trajectory TR_STATIONARY) (pellets 0) (range 0) (spread 0) (impact PNON) (splash PNON) (base_model WP_NONE) (bounce 0) ) (pgauntlet (speed -1) (trajectory TR_STATIONARY) (pellets 1) (range 1000) (spread 0) (impact DGAU) (splash PNON) (base_model WP_GAUNTLET) (bounce 0) ) (pmachinegun (speed -1) (cost "B1") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 50) (impact DBUL) (splash PNON) (base_model WP_MACHINEGUN) (bounce 0) ) (pshotgun (speed -1) (cost "S1") (trajectory TR_STATIONARY) (pellets 11) (range *) (spread 700) (impact DSHO) (splash PNON) (base_model WP_SHOTGUN) (bounce 0) ) (pgrenade (speed 700) (cost "G1") (trajectory TR_GRAVITY) (pellets 1) (range 3000) (spread 0) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0.65) ) (pgrenshot (speed 700) (cost "G8") (trajectory TR_GRAVITY) (pellets 8) (range 3000) (spread 200) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ) (procket (speed 900) (cost "R1") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) ) (procket2 (speed 400) (cost "R1") (trajectory TR_LINEAR) (pellets 1) (range 9000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 1.0) ) (plightning (speed -1) (cost "L1") (trajectory TR_STATIONARY) (pellets 1) (range 768) (spread 0) (impact DLIG) (splash PNON) (base_model WP_LIGHTNING) (bounce 0) ) (prailslug (speed -1) (cost "U1") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DRAI) (splash DNON) (base_model WP_RAILGUN) (bounce 0) ) (prailsnail (speed -1) (cost "U1") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DRA2) (splash PNON) (base_model WP_RAILGUN) (bounce 0) ) (pplasma (speed 2000) (cost "C1") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DPLA) (splash SPLA) (base_model WP_PLASMAGUN) (bounce 0) ) (pgdbfg (speed 3000) (cost "F5") (trajectory TR_LINEAR) (pellets 3) (range 10000) (spread 30) (impact DFBG) (splash SFBG) (base_model WP_BFG) (bounce 0) ) (pbfg (speed 2000) (cost "F1") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DBFG) (splash SBFG) (base_model WP_BFG) (bounce 0) ) (hook (speed 800) (cost "") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DGRP) (splash DNON) (base_model WP_GRAPPLING_HOOK) (bounce 0) ) (pchain1 (speed -1) (cost "B2") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 700) (impact DBUL) (splash DNON) (base_model WP_MACHINEGUN) (bounce 0) ) (pblaster (speed 700) (cost "C2") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DPLA) (splash DNON) (base_model WP_RAILGUN) (bounce 0) ) (peobfggren (speed 400) (cost "G8") (trajectory TR_LINEAR) (pellets 8) (range 150) (spread 100) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ) (pslug2 (speed -1) (cost "U2G8") (trajectory TR_STATIONARY) (pellets 11) (range *) (spread 100000) (impact DRAI) (splash PNON) (base_model WP_RAILGUN) (bounce 0) (death_proj peobfggren) ) (pslug3 (speed -1) (cost "U2G8") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DRAI) (splash PNON) (base_model WP_RAILGUN) (bounce 0) ; (death_proj peobfggren) (death_proj pgren-turret-settle) ) (peobfg (speed 4000) (cost "F2") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DBFG) (splash SBFG) (base_model WP_BFG) (bounce 0) (death_proj peobfggren) ) (pgrencluster1 (speed 400) (cost "G1") (trajectory TR_GRAVITY) (pellets 6) (range 3000) (spread 120) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ) (pclustergren1 (speed 700) (cost "G7") (trajectory TR_GRAVITY) (pellets 1) (range 3000) (spread 0) (impact DGRE) (splash DGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0.5) (death_proj pgrencluster1) (health 10) ) (pinfbfg (speed 600) (cost "F2") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DBFG) (splash SBFG) (base_model WP_BFG) (bounce 0) (death_proj pinfbfg) ) (pshrapnel (speed -1) (cost "G2") (trajectory TR_STATIONARY) (pellets 16) (range *) (spread 30000) (impact DBUL) (splash PNON) (base_model WP_MACHINEGUN) (bounce 0) ) (pshrapnelgren (speed 700) (cost "F2") (trajectory TR_GRAVITY) (pellets 1) (range 2000) (spread 0) (impact DGRE) (splash DNON) (base_model WP_GRENADE_LAUNCHER) ; (bounce 0.4) (bounce -1) (health 10) (death_proj pshrapnel) ) (pspam-grenade (speed 120) (cost "G1") (trajectory TR_GRAVITY) (pellets 2) (range 3000) (spread 2000) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ) (pcluster-grenade-rocket (speed 400) (cost "R4G8") (trajectory TR_LINEAR) (pellets 1) (range 6000) (spread 0) (impact DGRE) (splash SGRE) (base_model WP_ROCKET_LAUNCHER) (spam spam-cluster-rocket-1) (bounce 0) ) (pshotplasma (speed 2000) (cost "P3") (trajectory TR_LINEAR) (pellets 3) (range 10000) (spread 100) (impact DPLA) (splash SPLA) (base_model WP_PLASMAGUN) (bounce 0) ) (pshotrail (speed -1) (cost "R8") (trajectory TR_LINEAR) (pellets 6) (range *) (spread 2000) (impact DRAI) (splash DNON) (base_model WP_RAILGUN) (bounce 0) ) (pbfgcluster1 (speed 1000) (cost "F1") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 100) (impact DBFG) (splash SBFG) (base_model WP_BFG) (bounce 0) ) (pbfr20k ;BF/Rocket 20K. Thx A-Sniper. (speed 400) (cost "R2F8") (trajectory TR_LINEAR) (pellets 1) (range 6000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) (spam spam-carpet-bfg-1) ) (ptestrocket1 (speed 600) (cost "R2") (trajectory TR_LINEAR) (pellets 1) (range 6000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) ) (pmirvpayload (speed 600) (cost "R6") (trajectory TR_LINEAR) (pellets 6) (range 8000) (spread 200) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) ) (pmirvwarhead (speed 800) (cost "R6") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) (death_proj pmirvpayload) ) (pgren-turret-die (speed 0) (cost "G2U4") (trajectory TR_GRAVITY) (range 3000) (pellets 1) (spread 0) (impact DROC) (splash SROC) (base_model WP_GRENADE_LAUNCHER) ) (pgren-turret (speed 0) (cost "G2U4") (trajectory TR_INTERPOLATE) (dirtype DIRTYPE_DOWN) (range 60000) (pellets 1) (spread 0) (impact DROC) (splash SROC) (base_model WP_GRENADE_LAUNCHER) (transit pgren-turret-die) (spam sturretgren) ) (pgren-turret-settle (speed 120) (range 1500) (cost "G2U4") (trajectory TR_LINEAR) (dirtype DIRTYPE_UP) (pellets 1) (spread 0) (impact DROC) (splash DROC) (base_model WP_GRENADE_LAUNCHER) (bounce 0.5) (transit pgren-turret) ) (pgren-turret-drop (speed 400) ;really charged. (cost "G2U4") (trajectory TR_GRAVITY) (pellets 1) (range 3000) (spread 0) (impact DROC) (splash SROC) (base_model WP_GRENADE_LAUNCHER) (bounce 0.5) (transit pgren-turret-settle) ) (procket-homing (speed 800) (trajectory TR_LINEAR) (cost "R2C4") (pellets 1) (range 8000) (spread 0) (impact DPLA) (splash DROC) (base_model WP_ROCKET_LAUNCHER) (spam spam-home1) ) (prailbeam (speed -1) (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DBM1) (splash DNON) (base_model WP_RAILGUN) (bounce 0) ) ) ) (define spams '( (nospam (dirtype 0) ;0 = up, 1 = forward, -1 = backward, 2 = down (period 131072) (projectile pnone) ) ; (spam-cluster-rocket-1 ; (dirtype 0) ; (period 400) ; (projectile pspam-grenade) ; ) (spam-cluster-rocket-1 (dirtype DIRTYPE_UP) (period 400) (target TARGET_ALWAYS) (delay 0) (projectile pspam-grenade) ) ; (spam-carpet-bfg-1 ; (dirtype -2) ; (period 200) ; (projectile pbfgcluster1) ; ) (spam-carpet-bfg-1 (dirtype DIRTYPE_DOWN) (period 200) (target TARGET_ALWAYS) (delay 0) (projectile pbfgcluster1) ) ; (spam-carpet-lightning-1 ; (dirtype 2) ; (period 200) ; (projectile prailslug) ; ) (sturretgren (dirtype DIRTYPE_AUTO) (period 20) (target TARGET_ENEMY_MEMBER) (dist 10000) (angle *) (omega *) (delay 0) (shots 4) (projectile prailslug) ; (projectile peobfg) ; (projectile pshotrail) ; (projectile procket) ) (spam-home1 (dirtype DIRTYPE_FORWARD) (period 100) (target TARGET_ENEMY_MEMBER) (dist 1000) (angle 180) (omega 90) ) ) ) (define weapons '( (phony (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 ()) (2 ()) ) ) (gauntlet (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil -400) (reload 400) (projectile pgauntlet)) (2 ()) ) ) (machinegun (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 100) (reload 0) (projectile pmachinegun)) (2 (spinup 600) (recoil 40) (reload 0) (projectile pchain1)) ) ) (shotgun (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 500) (recoil 1000) (reload 0) (projectile pshotgun)) (2 (spinup 0) (recoil 200) (reload 0) (projectile pshotgun)) (3 (spinup 0) (recoil 1000) (reload 0) (projectile pshotrail)) ) ) (grenadelauncher (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 800) (reload 0) (projectile pgrenade)) ; (2 (spinup 500) (recoil 800) (reload 0) (projectile pgrenshot)) (3 (spinup 0) (recoil 800) (reload 0) (projectile pclustergren1)) (2 (spinup 0) (recoil 400) (reload 0) (projectile pshrapnelgren)) ) ) (rocketlauncher (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 800) (reload 0) (projectile procket)) ; (2 (spinup 0) (recoil 100) (reload 0) (projectile procket2)) (2 (spinup 0) (recoil 800) (reload 0) (projectile pcluster-grenade-rocket)) ; (3 (spinup 0) (recoil 100) (reload 0) (projectile procket2)) (3 (spinup 0) (recoil 100) (reload 0) (projectile procket-homing)) ) ) (lightninggun (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 50) (reload 0) (projectile plightning)) (2 (spinup 0) (recoil 300) (reload 0) (projectile pgren-turret-drop)) (3 (spinup 100) (recoil 100) (reload 0) (projectile pbfr20k)) ) ) (railgun (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 750) (reload 1500) (projectile prailslug)) ; (2 (spinup 0) (recoil 750) (reload 750) (projectile pslug2)) (2 (spinup 0) (recoil 750) (reload 750) (projectile prailsnail)) (3 (spinup 800) (recoil 750) (reload 750) (projectile pslug3)) ) ) (plasmagun (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 100) (reload 0) (projectile pplasma)) (2 (spinup 0) (recoil 400) (reload 0) (projectile pblaster)) (3 (spinup 0) (recoil 100) (reload 0) (projectile pshotplasma)) ) ) (bfg10k (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 200) (reload 0) (projectile pbfg)) ; (2 (spinup 600) (recoil 400) (reload 0) (projectile pgdbfg)) ; (2 (spinup 600) (recoil 400) (reload 0) (projectile pinfbfg)) (2 (spinup 600) (recoil 200) (reload 0) (projectile peobfg)) (3 (spinup 0) (recoil 400) (reload 0) (projectile pbfr20k)) ) ) ;;hrm... (grapplinghook (ortho false) (attribute 0) (ability AB_HOOK) (view 0) (modes (1 (spinup 0) (recoil 0) (reload -200) (projectile hook)) ; (2 (spinup 0) (recoil 0) (reload -200) (projectile procket)) (3 (spinup 0) (recoil 0) (reload -400) (projectile pmirvwarhead)) ) ) ;;hrm... ; (jet ; (ortho false) ; (attribute 0) ; (ability AB_JET) ; (view 0) ; (modes ; (1 ()) ; (2 ()) ; ) ; ) ; (rail2gun ; (ortho false) ; (attribute 0) ; (ability 0) ; (view 0) ; (modes ; (1 (spinup 0) (recoil 1500) (reload 6000) (projectile pslug2)) ; (2 ()) ; ) ; ) ) ) ;data end PK x -U__ qs/fi.cfgUT V= W=Ux8m8m;data start ;Specify what letter denotes a particular ammo count. (define ammocodes ".*BSGRLUCFabcdef") ;0 1 2 3 4 5 6 7 8 9 ;none gauntlet Bullets Shells Grenades Rockets Lightning Uranium-slugs Cell F*cking-ammo ; a b c d e f ;special a, b, c, d, e, f (define damages '( (DNON (radius 0) (damage 0) (knockback 1.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DGAU (radius 0) (damage 50) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_NONE)) (DBUL (radius 0) (damage 10) (knockback 1.0) (effect 0) (evhit EV_BULLET_HIT_FLESH) (evmiss EV_BULLET_HIT_WALL)) (DSHO (radius 0) (damage 7) (knockback 1.0) (effect 0) (evhit EV_BULLET_HIT_FLESH) (evmiss EV_BULLET_HIT_WALL)) ; (evhit EV_SHOTGUN) (evmiss EV_SHOTGUN)) (DGRE (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SGRE (radius 150) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DROC (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SROC (radius 120) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DLIG (radius 0) (damage 10) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DRAI (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_RAILTRAIL) (evmiss EV_RAILTRAIL)) (DPLA (radius 0) (damage 20) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SPLA (radius 20) (damage 15) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DBFG (radius 0) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SBFG (radius 120) (damage 100) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DFBG (radius 0) (damage 300) (knockback 3.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (SFBG (radius 1200) (damage 200) (knockback 2.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DRA2 (radius 0) (damage 45) (knockback 1000.0) (effect 0) (evhit EV_RAILTRAIL) (evmiss EV_RAILTRAIL)) (DBM1 (radius 0) (damage 0) (knockback 1.0) (effect 0) (evhit EV_RAILTRAIL) (evmiss EV_RAILTRAIL)) (DGRP (radius 0) (damage 0) (knockback 1.0) (effect DFX_GRAPPLE) (evhit EV_NONE) (evmiss EV_NONE)) (DJET (radius 0) (damage 0) (knockback 1.0) (effect DFX_JET) (evhit EV_NONE) (evmiss EV_NONE)) (SMAG (radius 200) (damage 0) (knockback -66.7) (effect 0) ; (SMAG (radius 0) (damage 0) (knockback -100.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) ; (evhit EV_RAILTRAIL) (evmiss EV_RAILTRAIL)) (DSNI (radius 0) (damage 1) (knockback 1.0) (effect DFX_CHARGED) (evhit EV_BULLET_HIT_FLESH) (evmiss EV_BULLET_HIT_WALL)) (SPOG (radius 16) (damage 0) (knockback 100.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (EALM (radius 0) (damage 0) (knockback 0.0) (effect DFX_ALARM) (evhit EV_NONE) (evmiss EV_NONE)) (DSUI (radius 0) (damage 100000) (knockback 0.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DFAL (radius 0) (damage 0) (knockback 0.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DCRU (radius 0) (damage 100000) (knockback 0.0) (effect 0) (evhit EV_NONE) (evmiss EV_NONE)) (DH2O ()) (DSLI ()) (DLAV ()) (DLAS ()) (DHUR ()) (DSDX (radius 1024) (damage 1000) (knockback 1.0) (effect 0) (evhit EV_MISSILE_HIT) (evmiss EV_MISSILE_MISS)) (DQX ()) ) ) ;bounce = -1 for stick-to-wall. (define projectiles '( (pnone (speed -1) (trajectory TR_STATIONARY) (pellets 0) (range 0) (spread 0) (impact PNON) (splash PNON) (base_model WP_NONE) (bounce 0) ) (pgauntlet (speed -1) (trajectory TR_STATIONARY) (pellets 1) ; (range 1000) (range 32) (spread 0) (impact DGAU) (splash PNON) (base_model WP_GAUNTLET) (bounce 0) ) (pmachinegun (speed -1) (cost "B1") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 50) (impact DBUL) (splash PNON) (base_model WP_MACHINEGUN) (bounce 0) ) (pshotgun (speed -1) (cost "S1") (trajectory TR_STATIONARY) (pellets 11) (range *) (spread 700) (impact DSHO) (splash PNON) (base_model WP_SHOTGUN) (bounce 0) ) (pgrenade (speed 700) (cost "G1") (trajectory TR_GRAVITY) (pellets 1) (range 3000) (spread 0) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0.65) (health 10) ) (procket (speed 900) (cost "R1") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DROC) (splash SROC) (base_model WP_ROCKET_LAUNCHER) (bounce 0) ) (plightning (speed -1) (cost "L1") (trajectory TR_STATIONARY) (pellets 1) (range 768) (spread 0) (impact DLIG) (splash PNON) (base_model WP_LIGHTNING) (bounce 0) ) (prailslug (speed -1) (cost "U1") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DRAI) (splash DNON) (base_model WP_RAILGUN) (pierce 3) (bounce 0) ) (prailsnail (speed -1) (cost "U1") (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DRA2) (splash PNON) (base_model WP_RAILGUN) (bounce 0) ) (pplasma (speed 2000) (cost "C1") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DPLA) (splash SPLA) (base_model WP_PLASMAGUN) (bounce 0) ) (pbfg (speed 2000) (cost "F1") (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DBFG) (splash SBFG) (base_model WP_BFG) (bounce 0) ) (hook (speed 800) (trajectory TR_LINEAR) (pellets 1) (range 10000) (spread 0) (impact DGRP) (splash DNON) (base_model WP_GRAPPLING_HOOK) (bounce 0) ) (pjet (speed 0) (trajectory TR_STATIONARY) (cost "") (range 10000) (pellets 1) (spread 0) (impact DJET) (splash DNON) (base_model WP_GAUNTLET) (bounce 0) ) (pgren-proximity:rain (speed 400) (dirtype DIR_AUTO) (trajectory TR_GRAVITY) (cost "G1") (pellets 10) (range 60000) (spread 20000) (impact DGRE) (splash SGRE) (bounce 0.1) (base_model WP_GRENADE_LAUNCHER) (transit pgren-proximity:fire) (health 10) ) (procket-rain-prox (speed 800) (trajectory TR_LINEAR) (cost "R2G20") (range 1000) (pellets 1) (spread 0) (impact DNON) (splash DNON) (base_model WP_ROCKET_LAUNCHER) (bounce 0) (death_proj pgren-proximity:rain) ) (pturretslug (speed -1) (cost "U1") (dirtype DIRTYPE_AUTO) (range *) (pellets 1) (spread 0) (impact DRAI) (splash DNON) (base_model WP_RAILGUN) ) (pgren-turret:die (speed 0) (cost "G2U4") (trajectory TR_GRAVITY) (range 3000) (pellets 1) (spread 0) (impact DROC) (splash SROC) (base_model WP_GRENADE_LAUNCHER) (health 10) ) (pgren-turret:fire (speed 0) (cost "G2U4") (trajectory TR_INTERPOLATE) (dirtype DIRTYPE_DOWN) (range 60000) (pellets 1) (spread 0) (impact DROC) (splash SROC) (base_model WP_GRENADE_LAUNCHER) (transit pgren-turret:die) (spam sturretgren) (health 10) ) (pgren-turret:settle (speed 120) (range 1500) (cost "G2U4") (trajectory TR_LINEAR) (dirtype DIRTYPE_UP) (pellets 1) (spread 0) (impact DROC) (splash DROC) (base_model WP_GRENADE_LAUNCHER) (bounce 0.5) (transit pgren-turret:fire) (health 10) (limit 2) ) (pgren-turret:drop (speed 400) ;really charged. (cost "G2U4") (trajectory TR_GRAVITY) (pellets 1) (range 3000) (spread 0) (impact DROC) (splash SROC) (base_model WP_GRENADE_LAUNCHER) (bounce 0.5) (transit pgren-turret:settle) (health 10) ) (pgren-proximity:die (speed 0) (trajectory TR_GRAVITY) (cost "G1") (pellets 1) (range 0) ;immediate. (spread 0) (base_model WP_GRENADE_LAUNCHER) (impact DGRE) (splash SGRE) (health 10) ) (pgren-proximity:fire (speed 0) (trajectory TR_GRAVITY) (cost "G1") (pellets 1) (range 60000) (spread 0) (impact DGRE) (splash SGRE) (bounce 0.25) (base_model WP_GRENADE_LAUNCHER) (spam smine-proximity) (transit pgren-proximity:die) (health 10) ) (pgren-proximity:drop (speed 400) (trajectory TR_GRAVITY) (cost "G1") (pellets 1) (range 3000) (spread 0) (impact DGRE) (splash SGRE) (bounce 0.5) (base_model WP_GRENADE_LAUNCHER) (transit pgren-proximity:fire) (health 10) (limit 4) ) (procket-homing (speed 800) (trajectory TR_LINEAR) (cost "R2C4") (pellets 1) (range 8000) (spread 0) (impact DPLA) (splash DROC) (base_model WP_ROCKET_LAUNCHER) (spam spam-home1) ) (procket-relentless (speed 300) (trajectory TR_LINEAR) (cost "R2C4") (pellets 1) (range 10000) (spread 0) (impact DPLA) (splash DPLA) (base_model WP_BFG) (spam spam-home-uberlame) ) (pgren-cluster:die (speed 500) (cost "G1") (trajectory TR_GRAVITY) (pellets 4) ; (range 3000) ; (spread 80) (range 1000) (spread 16) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ) (pgren-cluster:drop (speed 700) (cost "G7") (trajectory TR_GRAVITY) (pellets 1) (range 3000) (spread 0) (impact DGRE) (splash DGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0.5) (death_proj pgren-cluster:die) (health 10) ) (pcluster-grenade-rocket (speed 500) (dirtype DIRTYPE_UP) (trajectory TR_LINEAR) (cost "R2G4") (pellets 1) (range 8000) (spread 0) (impact DROC) (splash DNON) (base_model WP_ROCKET_LAUNCHER) (death_proj pgren-cluster:die) ) (pspam-grenade (speed 120) (cost "G1") (trajectory TR_GRAVITY) (pellets 2) (range 3000) (spread 2000) (impact DGRE) (splash SGRE) (base_model WP_GRENADE_LAUNCHER) (bounce 0) ) (procket-gren-spam (speed 800) (trajectory TR_LINEAR) (cost "R4G12") (pellets 1) (range 6000) (spread 0) (impact DROC) (splash DNON) (base_model WP_ROCKET_LAUNCHER) (spam spam-rocket-gren1) ) (pgren-magnotron:die (speed 0) (cost "G2") (trajectory TR_GRAVITY) (range 20) (pellets 1) (spread 0) (impact DPLA) (splash SPLA) (base_model WP_GRENADE_LAUNCHER) ) (pgren-magnotron:fire (speed 0) (cost "G2") (trajectory TR_STATIONARY) (dirtype DIRTYPE_UP) (range 3000) (pellets 1) (spread 0) (impact DPLA) (splash SPLA) (base_model WP_GRENADE_LAUNCHER) (transit pgren-magnotron:die) (spam smagnotron) (health 10) ) (pgren-magnotron:drop (speed 400) ;should be charged. (cost "G2") (trajectory TR_GRAVITY) (pellets 1) (range 1000) (spread 0) (impact DPLA) (splash DPLA) (base_model WP_GRENADE_LAUNCHER) (bounce 0.25) (transit pgren-magnotron:fire) (health 10) (limit 1) ) (pmagnopull (speed -1) (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact SMAG) ; (impact DNON) (splash DNON) ; (splash SMAG) (base_model WP_GAUNTLET) (bounce 0) ) (ppogo (speed -1) (cost "") (trajectory TR_STATIONARY) (pellets 1) (range 72) (spread 0) (impact SPOG) (splash SPOG) (base_model WP_RAILGUN) (bounce 0) ) (prailbeam (speed -1) (trajectory TR_STATIONARY) (pellets 1) (range *) (spread 0) (impact DBM1) (splash DNON) (base_model WP_RAILGUN) (bounce 0) ) (pgadget:die (speed 0) (trajectory TR_STATIONARY) (pellets 1) (range 0) (spread 0) (base_model WP_GRENADE_LAUNCHER) (impact DGRE) (splash SGRE) (health 10) ) (palarm:search (speed 0) (trajectory TR_GRAVITY) (pellets 1) (range 60000) (spread 0) (impact DGRE) (splash SGRE) (bounce -1) (base_model WP_GRENADE_LAUNCHER) (spam salarm) (transit pgadget:die) (health 10) ) (palarm:fire (speed 800) (trajectory TR_LINEAR) (pellets 1) (range 100) (impact DNON) (splash DNON) (base_model WP_GRENADE_LAUNCHER) (bounce -1) (transit palarm:search) (limit 1) ) (palarm (speed 1) (trajectory TR_LINEAR) (pellets 1) (range 1) (impact DNON) (splash EALM) (base_model WP_GRENADE_LAUNCHER) ) (plaser:activate (dirtype DIRTYPE_FORWARD) (speed 0) (trajectory TR_STATIONARY) (pellets 1) (range 6000) (impact DNON) (splash DNON) (bounce -1) (base_model WP_GRENADE_LAUNCHER) (spam slaser) (health 10) (transit pgadget:die) ) (plaser:prime (dirtype DIRTYPE_FORWARD) (speed 0) (trajectory TR_STATIONARY) (pellets 1) (range 3000) (impact DNON) (splash DNON) (bounce -1) (base_model WP_GRENADE_LAUNCHER) (health 10) ) (plaser:launch (dirtype DIRTYPE_NORMAL) (speed 700) (trajectory TR_GRAVITY) (pellets 1) (range 500) (impact DNON) (splash DNON) (base_model WP_PLASMAGUN) (bounce 0) (health 10) (death_proj plaser:prime) (transit pgadget:die) ) ;generic gadget object. (pgadget (speed 700) (cost "") (trajectory TR_GRAVITY) (pellets 1) (range 3000) (spread 0) (impact DNON) (splash SNON) (base_model WP_GRENADE_LAUNCHER) (bounce -1) (health 10) ) (procket-spam-grenade (speed 40) (dirtype DIRTYPE_UP) (trajectory TR_LINEAR) (cost "R5G20") (pellets 1) (range 8000) (spread 0) (impact DROC) (splash DNON) (base_model WP_ROCKET_LAUNCHER) (spam spam-rocket-gren1) ) (psdestruct (speed 1) (trajectory TR_STATIONARY) (pellets 1) (range 5000) (base_model WP_BFG) (impact DSDX) (splash DSDX) ) ) ) (define spams '( (nospam (dirtype 0) ;0 = up, 1 = forward, -1 = backward, 2 = down (period 131072) (projectile pnone) ) (spam-rocket-gren1 (dirtype DIRTYPE_UP) (period 100) (target TARGET_ALWAYS) (delay 0) (projectile pspam-grenade) ) (sturretgren (dirtype DIRTYPE_AUTO) (period 400) (target TARGET_ENEMY_MEMBER) (dist 1000) (angle *) (omega *) (delay 100) (reload 3000) (shots 4) (projectile pturretslug) ) (smagnotron (dirtype DIRTYPE_AUTO) (period 20) (target TARGET_ENEMY_MEMBER) (dist 200) (angle *) (omega *) (delay 0) (reload 0) (simult 64) (projectile pmagnopull) ) (spam-home1 (dirtype DIRTYPE_FORWARD) (period 200) (target TARGET_ENEMY_MEMBER) (dist 1000) (angle 60) (omega 8) ) (spam-home-uberlame (dirtype DIRTYPE_FORWARD) (period 200) (target TARGET_ENEMY_MEMBER) (dist 100000) (angle *) (omega *) ) (smine-proximity2 (dirtype DIRTYPE_AUTO) (period 100) (target TARGET_ENEMY_MEMBER) (dist 2000) (reload 100) (angle *) (omega 0) (delay 100) (shots 1) (projectile procket) ;Shoot nothing once, then proceed to DYING stage. ) (smine-proximity (dirtype DIRTYPE_AUTO) (period 100) (target TARGET_ENEMY_MEMBER) (dist 100) (angle *) (omega *) (delay 200) (reload 0) (shots 1) (projectile pnone) ) (salarm (dirtype DIRTYPE_AUTO) (period 200) (target TARGET_ENEMY_MEMBER) (dist 200) (angle *) (omega *) (delay 0) (reload 200) (projectile palarm) ) (slaser ; (dirtype DIRTYPE_NORMAL) (dirtype DIRTYPE_BACK) (period 20) (projectile prailslug) ) ) ) (define weapons '( (phony (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 ()) (2 ()) ) ) (gauntlet (model WP_GAUNTLET) (ortho false) (attribute 0) (ability 0) (view 0) (modes ; (1 (spinup 0) (recoil -400) (reload 400) (projectile pgauntlet)) (1 (spinup 0) (recoil -400) (reload 0) (projectile pgauntlet)) (2 (spinup 0) (recoil 200) (reload 200) (projectile plaser:launch)) ; (2 (spinup 0) (recoil 200) (reload 200) (projectile pgrenade)) ) ) (machinegun (model WP_MACHINEGUN) (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 100) (reload 0) (projectile pmachinegun)) (2 ()) (3 (spinup 400) (recoil 100) (reload 400) (projectile prailslug)) ) ) (shotgun (model WP_SHOTGUN) (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 1000) (reload 0) (projectile pshotgun)) (2 (spinup 0) (recoil 1000) (reload 0) (projectile pshotgun1)) ; (3 (spinup 0) (recoil 1000) (reload 4000) (projectile procket-spam-grenade)) (3 (spinup 0) (recoil 1000) (reload 60000) (projectile procket-spam-grenade)) ) ) (grenadelauncher (model WP_GRENADE_LAUNCHER) (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 800) (reload 0) (projectile pgrenade)) (2 (spinup 0) (recoil 800) (reload 0) (projectile pgren-cluster:drop)) (3 (spinup 0) (recoil 800) (reload 0) (projectile pgren-proximity:drop)) ) ) (rocketlauncher (model WP_ROCKET_LAUNCHER) (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 800) (reload 0) (projectile procket)) (2 (spinup 0) (recoil 800) (reload 10000) (projectile pcluster-grenade-rocket)) (3 (spinup 0) (recoil 0) (reload 200) (projectile ppogo)) ) ) (lightninggun (model WP_LIGHTNING) (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 50) (reload 0) (projectile plightning)) (2 (spinup 0) (recoil 0) (reload 400) (projectile pgren-turret:drop)) (3 (spinup 0) (recoil 0) (reload 1000) (projectile pgren-proximity:rain)) ) ) (railgun (model WP_RAILGUN) (ortho false) (attribute 0) (ability 0) (view 0) (modes ; (1 (spinup 0) (recoil 750) (reload 1500) (projectile prailslug)) (1 (spinup 0) (recoil 750) (reload 1500) (projectile prailslug)) (2 (spinup 0) (recoil 750) (reload 750) (projectile prailsnail)) (3 (spinup -2000) (recoil 500) (reload 900) (projectile prailslug)) ) ) (plasmagun (model WP_PLASMAGUN) (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 100) (reload 0) (projectile pplasma)) (2 ()) (3 (spinup 0) (recoil 400) (reload 0) (projectile pgren-magnotron:drop)) ) ) (bfg10k (model WP_BFG) (ortho false) (attribute 0) (ability 0) (view 0) (modes (1 (spinup 0) (recoil 200) (reload 0) (projectile pbfg)) (2 (spinup 0) (recoil 400) (reload 0) (projectile procket-homing)) (3 (spinup 0) (recoil 400) (reload 0) (projectile procket-relentless)) ) ) ;;hrm... (grapplinghook (model WP_GRAPPLING_HOOK) (ortho false) (attribute 0) (ability AB_HOOK) (view 0) (modes (1 (spinup 0) (recoil 0) (reload -200) (projectile hook)) (2 ()) (3 (spinup 0) (recoil 0) (reload -200) (projectile pjet)) ) ) ) ) ;#| ;;;hrm... ; (jet ; (model WP_GRAPPLING_HOOK) ; (ortho false) ; (attribute 0) ; (ability AB_JET) ; (view 0) ; (modes ; (1 (spinup 0) (recoil 0) (reload -200) (projectil pjet)) ; (2 ()) ; ) ; ) ;|# (define classes '( (Spectator (model "orbb") (health 0) (armor 0) (speed 300) (attribute 0) (ability 0) (view VIEW_NAME VIEW_TRUE VIEW_HEALTH VIEW_ARMOR) (arsenal ) ;no weapons for spec. ; 0 1 2 3 4 5 6 7 8 9 ; . * M S G R L R P F (ammo 0 0 0 0 0 0 0 0 0 0) ) (Recon (model "slash") (health 100) (armor 100) (speed 270) (attribute 0) (ability AB_DECOY AB_HOOK AB_JET) (view VIEW_NAME VIEW_TRUE) (arsenal gauntlet machinegun grapplinghook jet) ; . * M S G R L R P F a b c d e f (ammo 0 -1 100 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1) (offhand ;hand number, weapon name, firing mode (1 grapplinghook 1) (2 jet 1) ) ) (Medic (model "hunter") (health 100) (armor 100) (speed 270) (attribute ATTR_AUTODOC ATTR_BIOSPHERE ATTR_NOACID ATTR_NOHEADHOST) (ability AB_DECOY AB_DEPOT_MEDICAL) (view VIEW_NAME VIEW_HEALTH) (arsenal gauntlet machinegun shotgun) ; . * M S G R L R P F (ammo 0 -1 100 30 0 0 0 0 0 0) ) (Engineer (model "sarge") (health 100) (armor 125) (speed 270) (attribute 0) (ability AB_DECOY AB_DEPOT_SUPPLY AB_HOOK AB_ALARM AB_SENTRY) (view VIEW_NAME VIEW_ARMOR) (arsenal gauntlet machinegun shotgun grapplinghook) ; . * M S G R L R P F (ammo 0 -1 100 30 0 0 0 0 0 0 -1) (offhand (1 grapplinghook 1) ) ) (Marine (model "ranger") (health 100) (armor 150) (speed 270) (attribute ATTR_ARMOR2) (ability AB_DECOY AB_HOOK) (view VIEW_NAME) (arsenal gauntlet machinegun rocketlauncher grapplinghook) ; . * M S G R L R P F (ammo 0 -1 100 0 0 40 0 0 0 0 -1) (offhand (1 grapplinghook 1) ) ) (Cyborg (model "tankjr") (health 100) (armor 225) (speed 270) (attribute ATTR_ARMOR2) (ability AB_DECOY AB_PLASMABOMB) (view VIEW_NAME) (arsenal gauntlet machinegun grenadelauncher lightning) ; . * M S G R L R P F (ammo 0 -1 100 0 30 0 100 0 0 0) ) (Arsonist (model "visor") (health 100) (armor 175) (speed 270) (attribute ATTR_NOFIRE) (ability AB_DECOY) (view VIEW_NAME) (arsenal gauntlet machinegun plasmagun) ; . * M S G R L R P F (ammo 0 -1 100 0 0 0 0 0 100 0) ) (Gunner (model "major") (health 100) (armor 225) (speed 270) (attribute 0) (ability AB_DECOY AB_ALARM AB_LASER) (view VIEW_NAME) (arsenal gauntlet machinegun bfg10k) ; . * M S G R L R P F (ammo 0 -1 240 0 0 0 0 0 0 40) ) (Sniper (model "bitterman") (health 100) (armor 125) (speed 270) (attribute 0) (ability AB_DECOY) (view VIEW_NAME) (arsenal gauntlet machinegun railgun grapplinghook) ; . * M S G R L R P F (ammo 0 -1 100 0 0 0 0 20 0 0 -1) (offhand (1 grapplinghook 1) ) ) (Spy (model "razor") (health 100) (armor 100) (speed 270) (attribute 0) (ability AB_DECOY AB_CLOAK AB_DISGUISE AB_CAMERA) (view VIEW_NAME) (arsenal gauntlet machinegun) ; . * M S G R L R P F (ammo 0 -1 0 0 0 0 0 0 0 0) ) (Mercenary (model "xaero") (health 100) (armor 150) (speed 270) (attribute 0) (ability AB_DECOY) (view VIEW_NAME) (arsenal gauntlet rocketlauncher) ; . * M S G R L R P F (ammo 0 -1 0 0 0 0 0 0 0 0) ) ) ) ;Charged railgun. Limited from 0ms to 2000ms charge, damage from 0 to 125. ;damage = time * 125 / 2000 ;(define (railgun:3 chargetime) (if (> chargetime 2000) (set! chargetime 2000)) `(damage ,(/ (* chargetime 125) 2000))) ;(define (DSNI chargetime) (if (> chargetime 2000) (set! chargetime 2000)) `(damage ,(/ (* chargetime 125) 2000))) ;Or should the interface be (weapon:mode pointer_to_localproj chargetime)? ;(weapon:mode entitynum chargetime) ? ;(define (railgun:3 entitynum chargetime) ; (let* ((maxcharge 2000) ; (maxdamage 125) ; (normcharge (if (> chargetime maxcharge) maxcharge chargetime)) ; (equivdmg (/ (* normcharge maxdamage) maxcharge))) ; (display "Railgun:3 damage = ") (display equivdmg) (newline) ; (gentity-set! entitynum 'damage equivdmg))) (define (railgun:3 localprojaddr chargetime) ; (display "Railgun:3 projaddr = ") (display localprojaddr) (display "; chargetime = ") (display chargetime) (newline) ; (display "name=") (display (cmem-get (binstr-get (cmem-get (+ localprojaddr *offset:fi_proj_t.name*) 4) -4 0) 10)) (newline) (let* ((maxcharge 2000) (maxdamage 125) (normcharge (if (> chargetime maxcharge) maxcharge chargetime)) (equivdmg (/ (* normcharge maxdamage) maxcharge)) (localdamageaddr (binstr-get (cmem-get (+ localprojaddr *offset:fi_proj_t.impact*) 4) -4 0)) (bstr (make-string 4))) (display "railgun:3 chargtime = ") (display chargetime) (display "; damage = ") (display equivdmg) (newline) (binstr-set! bstr -4 0 (inexact->exact (round equivdmg))) (cmem-set! (+ localdamageaddr *offset:fi_damage_t.damage*) 4 bstr) ) ) (define (on-fire-weapon entitynum weapon mode chargetime) (map (lambda (x) (display x)) `("on-fire-weapon" " entitynum=" ,entitynum " weapon=" ,weapon " mode=" ,mode " charge=" ,chargetime)) (newline) (case weapon ((railgun) (case mode ((3) (railgun:3 entitynum chargetime))))) #n) ;data end PK O!L,[55 qs/beer.cfgUT 5i< W=Ux8m8m;;; Tim Goodwin (tim@pipex.net) (define bottles (lambda (n) (cond ((= n 0) (display "No more bottles")) ((= n 1) (display "One bottle")) (else (display n) (display " bottles"))) (display " of beer"))) (define beer (lambda (n) (if (> n 0) (begin (bottles n) (display " on the wall") (newline) (bottles n) (newline) (display "Take one down, pass it around") (newline) (bottles (- n 1)) (display " on the wall") (newline) (newline) (beer (- n 1)))))) (beer 99) PK T,'`LLqs/cstruct.cfgUT D< W=Ux8m8m (define *cstruct-start* 0) (define *cstruct-multiplier* 0) (define *offsetter-prefix* "") (macro (get-int form) `(binstr-get (cmem-get (+ *cstruct-start* (* *cstruct-multiplier* nth) ,(cadr form) ,(if (pair? (cddr form)) (* *size:int* (caddr form)) 0)) 4) -4 0)) (macro (get-float form) `(binstr-get (cmem-get (+ *cstruct-start* (* *cstruct-multiplier* nth) ,(cadr form)) 4) 4.0 0)) (macro (get-qboolean form) `(not (= 0 (binstr-get (cmem-get (+ *cstruct-start* (* *cstruct-multiplier* nth) ,(cadr form)) 4) -4 0)))) (macro (get-char form) `(binstr-get (cmem-get (+ *cstruct-start* (* *cstruct-multiplier* nth) ,(cadr form) ,(if (pair? (cddr form)) (* *size:int* (caddr form)) 0)) 1) 1 0)) (define get-byte get-char) (macro (get-char[] form) `(cmem-get (+ *cstruct-start* (* *cstruct-multiplier* nth) ,(cadr form)) ,(if (pair? (cddr form)) (if (= (caddr form) 0) -1 (caddr form)) -1))) ;zero-len means -1 (look for 0) (macro (get-char* form) `(cmem-get (binstr-get (cmem-get (+ *cstruct-start* (* *cstruct-multiplier* nth) ,(cadr form)) 4) -4 0) ,(if (pair? (cddr form)) (if (= (caddr form) 0) -1 (caddr form)) -1))) (macro (get-vec3_t form) `(let ((vec3 (make-vector 3 0)) (bstr (cmem-get (+ *cstruct-start* (* *cstruct-multiplier* nth) ,(cadr form)) (* *size:float* 3)))) (vector-set! vec3 0 (binstr-get bstr 4.0 (* *size:float* 0))) (vector-set! vec3 1 (binstr-get bstr 4.0 (* *size:float* 1))) (vector-set! vec3 2 (binstr-get bstr 4.0 (* *size:float* 2))) vec3)) (macro (get-gentity_t* form) `(let ((ptrval (binstr-get (cmem-get (+ *cstruct-start* (* *cstruct-multiplier* nth) ,(cadr form)) 4) -4 0))) (if (= 0 ptrval) '() (/ (- ptrval *g_entities*) *size:gclient_t*)))) (macro (get-gclient_t* form) `(let ((ptrval (binstr-get (cmem-get (+ *cstruct-start* (* *cstruct-multiplier* nth) ,(cadr form)) 4) -4 0))) (if (= 0 ptrval) '() (/ (- ptrval *g_clients*) *size:gclient_t*)))) (macro (cstruct-reader form) ;obj starter multer pfix (let* ((obj (cadr form)) (starter (caddr form)) (multer (string->symbol (string-append "*size:" (cadddr form) "*"))) (ofspfx (car (cddddr form))) (pfix (string-append "*offset:" ofspfx ".")) (alist (string->symbol (string-append obj "-getter"))) (funcname (string->symbol (string-append obj "-read"))) ) `(define (,funcname nth property . idx) (set! *cstruct-start* ,starter) (set! *cstruct-multiplier* ,multer) (set! *offsetter-prefix* ,pfix) (let* ((ent (assoc (if (string? property) (string->symbol property) property) ,alist))) (if (pair? ent) (let ((pp (cdr ent))) (if (pair? pp) (eval pp) (eval (list pp (string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")) (if (pair? idx) (car idx) 0)))))))))) (define gentity-getter '( (client . get-gclient_t*) (inuse . get-qboolean) (classname . get-char*) (spawnflags . get-int) (neverFree . get-bool) (flags . get-int) (model . get-char*) (model2 . get-char*) (freetime . get-int) (eventTime . get-int) (freeAfterEvent . get-qboolean) (freeAfterEvent . get-qboolean) (unlinkAfterEvent . get-qboolean) (physicsObject . get-qboolean) (physicsBounce . get-float) (clipmask . get-int) ; (moverState . moverState_t) (moverState . get-int) (soundPos1 . get-int) (sound1to2 . get-int) (sound2to1 . get-int) (soundPos2 . get-int) (soundLoop . get-int) (parent . get-gentity_t*) (nextTrain . get-gentity_t*) (prevTrain . get-gentity_t*) (pos1 . get-vec3_t) (pos2 . get-vec3_t) (message . get-char*) (timestamp . get-int) (angle . get-float) (target . get-char*) (targetname . get-char*) (team . get-char*) (targetShaderName . get-char*) (targetShaderNewName . get-char*) (target_ent . get-gentity_t*) (speed . get-float) (movedir . get-vec3_t) (nextthink . get-int) ; ((*think)() . void) ; ((*reached)() . void) ; ((*blocked)() . void) ; ((*touch)() . void) ; ((*use)() . void) ; ((*pain)() . void) ; ((*die)() . void) (pain_debounce_time . get-int) (fly_sound_debounce_time . get-int) (last_move_time . get-int) (health . get-int) (takedamage . get-qboolean) (damage . get-int) (splashDamage . get-int) (splashRadius . get-int) (methodOfDeath . get-int) (splashMethodOfDeath . get-int) (count . get-int) (chain . get-gentity_t*) (enemy . get-gentity_t*) (activator . get-gentity_t*) (teamchain . get-gentity_t*) (teammaster . get-gentity_t*) (watertype . get-int) (waterlevel . get-int) (noise_index . get-int) (wait . get-float) (random . get-float) ; (item . get-gitem_t*) ) ) ;(define (gentity-read nth property) ; (set! *cstruct-start* *g_entities*) ; (set! *cstruct-multiplier* *size:gentity_t*) ; (set! *offsetter-prefix* "*offset:gentity_t.") ; (let* ((ent (assoc (if (string? property) (string->symbol property) property) gentity-getter))) ; (if (pair? ent) ; (let ((pp (cdr ent))) ; (if (pair? pp) ; (eval pp) ; (eval `(,pp ,(string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")))))) ; '()))) (cstruct-reader "gentity" (+ *g_entities* 0) "gentity_t" "gentity_t") ;entityState_t (define entityState-getter '( (number . get-int) (eType . get-int) (eFlags . get-int) ; (pos . get-trajectory_t) (pos . get-int) ; (apos . get-trajectory_t) (apos . get-int) (time . get-int) (time2 . get-int) (origin . get-vec3_t) (origin2 . get-vec3_t) (angles . get-vec3_t) (angles2 . get-vec3_t) (otherEntityNum . get-int) (otherEntityNum2 . get-int) (groundEntityNum . get-int) (constantLight . get-int) (loopSound . get-int) (modelindex . get-int) (modelindex2 . get-int) (clientNum . get-int) (frame . get-int) (solid . get-int) (event . get-int) (eventParm . get-int) (powerups . get-int) (weapon . get-int) (legsAnim . get-int) (torsoAnim . get-int) (generic1 . get-int) ) ) ;(define (entityState-read nth property) ; (set! *cstruct-start* (+ *g_entities* *offset:gentity_t.s*)) ; (set! *cstruct-multiplier* *size:gentity_t*) ; (set! *offsetter-prefix* "*offset:entityState_t.") ; (let* ((ent (assoc (if (string? property) (string->symbol property) property) entityState-getter))) ; (if (pair? ent) ; (let ((pp (cdr ent))) ; (if (pair? pp) ; (eval pp) ; (eval `(,pp ,(string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")))))) ; '()))) (cstruct-reader "entityState" (+ *g_entities* *offset:gentity_t.s*) "gentity_t" "entityState_t") ;;entityShared_t (define entityShared-getter '( ; (s . get-entityState_t) (linked . get-qboolean) (linkcount . get-int) (svFlags . get-int) (singleClient . get-int) (bmodel . get-qboolean) (mins . get-vec3_t) (maxs . get-vec3_t) (contents . get-int) (absmin . get-vec3_t) (absmax . get-vec3_t) (currentOrigin . get-vec3_t) (currentAngles . get-vec3_t) (ownerNum . get-int) ) ) ;(define (entityShared-read nth property) ; (set! *cstruct-start* (+ *g_entities* *offset:gentity_t.r*)) ; (set! *cstruct-multiplier* *size:gentity_t*) ; (set! *offsetter-prefix* "*offset:entityShared_t.") ; (let* ((ent (assoc (if (string? property) (string->symbol property) property) entityShared-getter))) ; (if (pair? ent) ; (let ((pp (cdr ent))) ; (if (pair? pp) ; (eval pp) ; (eval `(,pp ,(string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")))))) ; '()))) (cstruct-reader "entityShared" (+ *g_entities* *offset:gentity_t.r*) "gentity_t" "entityShared_t") ;;gclient_t (define gclient-getter '( ; (ps . get-playerState_t) ; (pers . get-clientPersistant_t) ; (sess . get-clientSession_t) (readyToExit . get-qboolean) (noclip . get-qboolean) (lastCmdTime . get-int) (buttons . get-int) (oldbuttons . get-int) (latched_buttons . get-int) (oldOrigin . get-vec3_t) (damage_armor . get-int) (damage_blood . get-int) (damage_knockback . get-int) (damage_from . get-vec3_t) (damage_fromWorld . get-qboolean) (accurateCount . get-int) (accuracy_shots . get-int) (accuracy_hits . get-int) (lastkilled_client . get-int) (lasthurt_client . get-int) (lasthurt_mod . get-int) (respawnTime . get-int) (inactivityTime . get-int) (inactivityWarning . get-qboolean) (rewardTime . get-int) (airOutTime . get-int) (lastKillTime . get-int) (fireHeld . get-qboolean) (hook . get-gentity_t*) (switchTeamTime . get-int) (timeResidual . get-int) (areabits . get-char*) ; (fi . get-fi__gclient_t) ) ) ;(define (gclient-read nth property) ; (set! *cstruct-start* (+ *g_clients* 0)) ; (set! *cstruct-multiplier* *size:gclient_t*) ; (set! *offsetter-prefix* "*offset:gclient_t.") ; (let* ((ent (assoc (if (string? property) (string->symbol property) property) gclient-getter))) ; (if (pair? ent) ; (let ((pp (cdr ent))) ; (if (pair? pp) ; (eval pp) ; (eval `(,pp ,(string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")))))) ; '()))) (cstruct-reader "gclient" (+ *g_clients* 0) "gclient_t" "gclient_t") ;;playerState_t (define playerState-getter '( (commandTime . get-int) (pm_type . get-int) (bobCycle . get-int) (pm_flags . get-int) (pm_time . get-int) (origin . get-vec3_t) (velocity . get-vec3_t) (weaponTime . get-int) (gravity . get-int) (speed . get-int) ; (delta_angles[3] . get-int) (delta_angles . get-int) (groundEntityNum . get-int) (legsTimer . get-int) (legsAnim . get-int) (torsoTimer . get-int) (torsoAnim . get-int) (movementDir . get-int) (grapplePoint . get-vec3_t) (eFlags . get-int) (eventSequence . get-int) ; (events[2] . get-int) (events . get-int) ; (eventParms[2] . get-int) (eventParms . get-int) (externalEvent . get-int) (externalEventParm . get-int) (externalEventTime . get-int) (clientNum . get-int) (weapon . get-int) (weaponstate . get-int) (viewangles . get-vec3_t) (viewheight . get-int) (damageEvent . get-int) (damageYaw . get-int) (damagePitch . get-int) (damageCount . get-int) ; (stats[16] . get-int) (stats . get-int) ; (persistant[16] . get-int) (persistant . get-int) ; (powerups[16] . get-int) (powerups . get-int) ; (ammo[16] . get-int) (ammo . get-int) (generic1 . get-int) (loopSound . get-int) (jumppad_ent . get-int) (ping . get-int) (pmove_framecount . get-int) (jumppad_frame . get-int) (entityEventSequence . get-int) ) ) ;(define (playerState-read nth property . idx) ; (set! *cstruct-start* (+ *g_clients* *offset:gclient_t.ps*)) ; (set! *cstruct-multiplier* *size:gclient_t*) ; (set! *offsetter-prefix* "*offset:playerState_t.") ; (let* ((ent (assoc (if (string? property) (string->symbol property) property) playerState-getter))) ; (if (pair? ent) ; (let ((pp (cdr ent))) ; (if (pair? pp) ; (eval pp) ; (eval (list pp (string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")) (if (pair? idx) (car idx) 0))))) ; '()))) (cstruct-reader "playerState" (+ *g_clients* *offset:gclient_t.ps*) "gclient_t" "playerState_t") ;;clientPersistant_t (define clientPersistant-getter '( ; (connected . get-clientConnected_t) ; (cmd . get-usercmd_t) (localClient . get-qboolean) (initialSpawn . get-qboolean) (predictItemPickup . get-qboolean) (pmoveFixed . get-qboolean) ; (netname[36] . get-char) (netname . get-char[]) (maxHealth . get-int) (enterTime . get-int) ; (teamState . get-playerTeamState_t) (voteCount . get-int) (teamVoteCount . get-int) (teamInfo . get-qboolean) ) ) ;(define (clientPersistant-read nth property . idx) ; (set! *cstruct-start* (+ *g_clients* *offset:gclient_t.pers*)) ; (set! *cstruct-multiplier* *size:gclient_t*) ; (set! *offsetter-prefix* "*offset:clientPersistant_t.") ; (let* ((ent (assoc (if (string? property) (string->symbol property) property) clientPersistant-getter))) ; (if (pair? ent) ; (let ((pp (cdr ent))) ; (if (pair? pp) ; (eval pp) ; (eval (list pp (string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")) (if (pair? idx) (car idx) 0))))) ; '()))) (cstruct-reader "clientPersistant" (+ *g_clients* *offset:gclient_t.pers*) "gclient_t" "clientPersistant_t") ;;clientSession_t (define clientSession-getter '( ;; (sessionTeam . get-team_t) (sessionTeam . get-int) (spectatorTime . get-int) ;; (spectatorState . get-spectatorState_t) (spectatorState . get-int) (spectatorClient . get-int) (wins . get-int) (losses . get-int) (teamLeader . get-qboolean) (clas . get-int) ) ) ;(define (clientSession-read nth property . idx) ; (set! *cstruct-start* (+ *g_clients* *offset:gclient_t.sess*)) ; (set! *cstruct-multiplier* *size:gclient_t*) ; (set! *offsetter-prefix* "*offset:clientSession_t.") ; (let* ((ent (assoc (if (string? property) (string->symbol property) property) clientSession-getter))) ; (if (pair? ent) ; (let ((pp (cdr ent))) ; (if (pair? pp) ; (eval pp) ; (eval (list pp (string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")) (if (pair? idx) (car idx) 0))))) ; '()))) (cstruct-reader "clientSession" (+ *g_clients* *offset:gclient_t.pers*) "gclient_t" "clientSession_t") ;;playerTeamState_t (define playerTeamState-getter '( ; (state . get-playerTeamStateState_t) (state . get-int) (location . get-int) (captures . get-int) (basedefense . get-int) (carrierdefense . get-int) (flagrecovery . get-int) (fragcarrier . get-int) (assists . get-int) (lasthurtcarrier . get-float) (lastreturnedflag . get-float) (flagsince . get-float) (lastfraggedcarrier . get-float) ) ) ;(define (playerTeamState-read nth property . idx) ; (set! *cstruct-start* (+ *g_clients* *offset:gclient_t.pers* *offset:clientPersistant_t.teamState*)) ; (set! *cstruct-multiplier* *size:gclient_t*) ; (set! *offsetter-prefix* "*offset:playerTeamState_t.") ; (let* ((ent (assoc (if (string? property) (string->symbol property) property) playerTeamState-getter))) ; (if (pair? ent) ; (let ((pp (cdr ent))) ; (if (pair? pp) ; (eval pp) ; (eval (list pp (string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")) (if (pair? idx) (car idx) 0))))) ; '()))) (cstruct-reader "playerTeamState" (+ *g_clients* *offset:gclient_t.pers* *offset:clientPersistant_t.teamState*) "gclient_t" "playerTeamState_t") ;;type = struct bot_settings_s { ;; char characterfile[144] ;; float skill ;; char team[144] ;;} ;;type = struct cplane_s { ;; vec3_t normal ;; float dist ;; byte type ;; byte signbits ;; byte pad[2] ;;} ;;usercmd_t (define usercmd-getter '( (serverTime . get-int) ; (angles[3] . get-int) (angles . get-int) (buttons . get-int) (weapon . get-byte) (forwardmove . get-char) (rightmove . get-char) (upmove . get-char) ) ) ;(define (usercmd-read nth property . idx) ; (set! *cstruct-start* (+ *g_clients* *offset:gclient_t.pers* *offset:clientPersistant_t.cmd*)) ; (set! *cstruct-multiplier* *size:gclient_t*) ; (set! *offsetter-prefix* "*offset:usercmd_t.") ; (let* ((ent (assoc (if (string? property) (string->symbol property) property) usercmd-getter))) ; (if (pair? ent) ; (let ((pp (cdr ent))) ; (if (pair? pp) ; (eval pp) ; (eval (list pp (string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")) (if (pair? idx) (car idx) 0))))) ; '()))) (cstruct-reader "usercmd" (+ *g_clients* *offset:gclient_t.pers* *offset:clientPersistant_t.cmd*) "gclient_t" "usercmd_t") ;;type = struct qtime_s { ;; int tm_sec ;; int tm_min ;; int tm_hour ;; int tm_mday ;; int tm_mon ;; int tm_year ;; int tm_wday ;; int tm_yday ;; int tm_isdst ;;} ;;type = struct animation_s { ;; int firstFrame ;; int numFrames ;; int loopFrames ;; int frameLerp ;; int initialLerp ;; int reversed ;; int flipflop ;;} ;;gitem_t (define gitem-getter '( (classname . get-char*) (pickup_sound . get-char*) ; (world_model[4] . get-char*) (icon . get-char*) (pickup_name . get-char*) (quantity . get-int) ; (giType . get-itemType_t) (giType . get-int) (giTag . get-int) (precaches . get-char*) (sounds . get-char*) ) ) ;(define (gitem-read nth property . idx) ; (set! *cstruct-start* (+ *bg_itemlist* 0)) ; (set! *cstruct-multiplier* *size:gitem_t*) ; (set! *offsetter-prefix* "*offset:gitem_t.") ; (let* ((ent (assoc (if (string? property) (string->symbol property) property) gitem-getter))) ; (if (pair? ent) ; (let ((pp (cdr ent))) ; (if (pair? pp) ; (eval pp) ; (eval (list pp (string->symbol (string-append *offsetter-prefix* (symbol->string property) "*")) (if (pair? idx) (car idx) 0))))) ; '()))) (cstruct-reader "gitem" (+ *bg_itemlist* 0) "gitem_t" "gitem_t") ;;type = struct fi_class_s { ;; int id ;; char *name ;; int health ;; int armor ;; int speed ;; int arsenal[64] ;; int ammo[16] ;; int attribute ;; int ability ;; int view ;;} ;;type = struct fi_damage_s { ;; int id ;; int radius ;; int damage ;; float knockback ;; int effect ;; int evhit ;; int evmiss ;; fi_mod_t MOD ;;} ;;type = struct fi_spam_s { ;; int id ;; char *name ;; int dirtype ;; int period ;; int target ;; int dist ;; float angle ;; float omega ;; int delay ;; int reload ;; int shots ;; int simult ;; struct fi_proj_s *projectile ;;} ;;type = struct fi_proj_s { ;; int id ;; char *name ;; ammocost_t cost ;; int speed ;; trType_t trajectory ;; int pellets ;; int range ;; int spread ;; int effect ;; int base_model ;; float bounce ;; int loft ;; int pierce ;; int health ;; fi_damage_t *impact ;; fi_damage_t *splash ;; struct fi_proj_s *death_proj ;; struct fi_proj_s *transit ;; fi_spam_t *spam ;; int dirtype ;;} ;;type = struct fi_pellet_s { ;; int id ;; int speed ;; int range ;; int effect ;; int loft ;; fi_damage_t impact ;; fi_damage_t splash ;; fi_spam_t spam ;;} ;;type = struct fi_weaponmode_s { ;; int flags ;; int spinup ;; int recoil ;; int reload ;; fi_proj_t *projectile ;;} ;;type = struct fi_weapon_s { ;; int id ;; char *name ;; int model ;; int orthogonal_fire ;; int attribute ;; int ability ;; int view ;; fi_weaponmode_t mode[3] ;;} ;;type = struct fi_arsenal_s { ;; int weapon ;; int weaponfire ;; int weaponstate ;; int weapontime ;; int lastfire ;; fi_weapon_t *desc ;; void *missile ;;} ;;type = struct fi_grenade_s { ;; char *name ;; struct { ;; int range ;; trType_t trajectory ;; fi_damage_t *impact ;; fi_damage_t *splash ;; } drop ;; struct { ;; int range ;; int dir ;; int speed ;; trType_t trajectory ;; fi_damage_t *impact ;; fi_damage_t *splash ;; } settle ;; struct { ;; int range ;; int dist ;; float alpha ;; int dir ;; float omega ;; int target ;; int period ;; int delay ;; int paint ;; fi_damage_t *impact ;; fi_damage_t *splash ;; } search ;; struct { ;; int delay ;; float rotation ;; fi_proj_t *projectile ;; int ammo ;; int dir ;; fi_damage_t *impact ;; fi_damage_t *splash ;; } fire ;; struct { ;; int range ;; trType_t trajectory ;; int dir ;; int speed ;; fi_damage_t *impact ;; fi_damage_t *splash ;; } die ;;} ;;type = struct fi_player_s { ;; int id ;; int ammo[16] ;; int attribute ;; int ability ;; int view ;; fi_arsenal_t arsenal[64] ;; fi_arsenal_t *hand[2] ;;} ;;type = struct fi_level_s { ;; int classes[4][16] PK -,qs6s6qs/fistruct.cfgUT D< W=Ux8m8m(define fi-class-members '( (id . int) (name . char*) (health . int) (armor . int) (speed . int) (arsenal . int) (ammo . int) (attribute . int) (ability . int) (view . int) ) ) (define (fi-class-get nth property . therest) (let* ((propsym (if (symbol? property) property (string->symbol property))) (propstr (if (string? property) property (symbol->string property))) (*cstruct-base* *desc_clas*) (*cstruct-mult* *size:fi_class_t*) (*cstruct-offset* (eval (string->symbol (string-append "*offset:fi_class_t." propstr "*")))) (ent (assoc propsym fi-class-members)) (ctype (if (pair? ent) (cdr ent) '())) (idx (if (pair? therest) (car therest) 0)) ) (case ctype ((int) (binstr-get (cmem-get (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:int* idx)) 4) -4 0)) ((float) (binstr-get (cmem-get (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:float* idx)) 4) 4.0 0)) ((char[]) (cmem-get (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:int* idx)) (if (= idx 0) -1 idx))) ((char*) (let ((ptrval (binstr-get (cmem-get (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:int* idx)) 4) -4 0))) (if (= ptrval 0) '() ;NULL pointer (cmem-get ptrval (if (= idx 0) -1 idx))))) ;length 0 var-len check-for-NUL (else '())))) (define (fi-class-set! nth property . therest) ;idx value (let* ((propsym (if (symbol? property) property (string->symbol property))) (propstr (if (string? property) property (symbol->string property))) (*cstruct-base* *desc_clas*) (*cstruct-mult* *size:fi_class_t*) (*cstruct-offset* (eval (string->symbol (string-append "*offset:fi_class_t." propstr "*")))) (ent (assoc propsym fi-class-members)) (ctype (if (pair? ent) (cdr ent) '())) (bstr "0000") (idx 0) :((if (pair? therest) (car therest) 0)) (value 0) ;((if (and (number? idx) (pair? (cdr therest))) (cadr therest) 0)) ) (if (pair? therest) (if (pair? (cdr therest)) (begin ;two-arg form: idx value (set! idx (car therest)) (set! value (cadr therest))) (set! value (car therest)))) ;one-arg form: value (case ctype ((int) (binstr-set! bstr -4 0 (if (integer? value) value (inexact->exact value))) (cmem-set! (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:int* idx)) 4 bstr)) ((float) (binstr-set! bstr -4 0 (if (real? value) value (exact->inexact value))) (cmem-set! (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:float* idx)) 4 bstr)) ((char*) (binstr-set! bstr -4 0 value) (cmem-set! (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:float* idx)) 4 bstr)) ;String object decays into C char* for cmem-set! (else '())))) ;;********************************* (macro (fi-getter form) ;funcname base mult offsetprefix alist `(define (,(cadr form) nth property . therest) (let* ((propsym (if (symbol? property) property (string->symbol property))) (propstr (if (string? property) property (symbol->string property))) (*cstruct-base* ,(caddr form)) (*cstruct-mult* ,(car (cdddr form))) (*cstruct-offset* (eval (string->symbol (string-append ,(cadr (cdddr form)) propstr "*")))) (ent (assoc propsym ,(caddr (cdddr form)))) (ctype (if (pair? ent) (cdr ent) '())) (idx (if (pair? therest) (car therest) 0)) ) (case ctype ((int) (binstr-get (cmem-get (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:int* idx)) 4) -4 0)) ((float) (binstr-get (cmem-get (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:float* idx)) 4) 4.0 0)) ((char[]) (cmem-get (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:int* idx)) (if (= idx 0) -1 idx))) ((char*) (let ((ptrval (binstr-get (cmem-get (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:int* idx)) 4) -4 0))) (display "fi-getter: char* val is ") (display ptrval) (newline) (if (= ptrval 0) '() ;NULL pointer (cmem-get ptrval (if (= idx 0) -1 idx))))) ;length 0 var-len check-for-NUL (else '())))) ) (macro (fi-setter form) ;funcname base mult offsetprefix alist `(define (,(cadr form) nth property . therest) ;idx value (let* ((propsym (if (symbol? property) property (string->symbol property))) (propstr (if (string? property) property (symbol->string property))) (*cstruct-base* ,(caddr form)) (*cstruct-mult* ,(car (cdddr form))) (*cstruct-offset* (eval (string->symbol (string-append ,(cadr (cdddr form)) propstr "*")))) (ent (assoc propsym ,(caddr (cdddr form)))) (ctype (if (pair? ent) (cdr ent) '())) (bstr "0000") (idx 0) :((if (pair? therest) (car therest) 0)) (value 0) ;((if (and (number? idx) (pair? (cdr therest))) (cadr therest) 0)) ) (if (pair? therest) (if (pair? (cdr therest)) (begin ;two-arg form: idx value (set! idx (car therest)) (set! value (cadr therest))) (set! value (car therest)))) ;one-arg form: value (case ctype ((int) (binstr-set! bstr -4 0 (if (integer? value) value (inexact->exact value))) (cmem-set! (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:int* idx)) 4 bstr)) ((float) (binstr-set! bstr 4 0 (if (real? value) value (exact->inexact value))) (cmem-set! (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:float* idx)) 4 bstr)) ((char*) (binstr-set! bstr -4 0 value) (cmem-set! (+ *cstruct-base* (* *cstruct-mult* nth) *cstruct-offset* (* *size:int* idx)) 4 bstr)) ;String object decays into C char* for cmem-set! (else '())))) ) ;;****************************** ; fi_damage_t (define fi-damage-members '( (id . int) (radius . int) (damage . int) (knockback . float) (effect . int) (evhit . int) (evmiss . int) (MOD . int) ;fi_mod_t ) ) ;(fi-getter form) ;funcname base mult offsetprefix alist (fi-getter fi-damage-get *desc_damg* *size:fi_damage_t* "*offset:fi_damage_t." fi-damage-members) (fi-setter fi-damage-set! *desc_damg* *size:fi_damage_t* "*offset:fi_damage_t." fi-damage-members) ;;********************* ; fi_spam_t (define fi-spam-members '( (id . int) (name . char*) (dirtype . int) (period . int) (target . int) (dist . int) (angle . float) (omega . float) (delay . int) (reload . int) (shots . int) (simult . int) (projectile . fi_proj_s*) ; struct fi_proj_s* projectile ) ) ;(fi-getter form) ;funcname base mult offsetprefix alist (fi-getter fi-spam-get *desc_spam* *size:fi_spam_t* "*offset:fi_spam_t." fi-spam-members) (fi-setter fi-spam-set! *desc_spam* *size:fi_spam_t* "*offset:fi_spam_t." fi-spam-members) ;;********************** ; fi_proj_t (define fi-proj-members '( (id . int) (name . char*) (cost . ammocost_t) (speed . int) (trajectory . trType_t) (pellets . int) (range . int) (spread . int) (effect . int) (base_model . int) (bounce . float) (loft . int) (pierce . int) (health . int) (impact . fi_damage_t*) (splash . fi_damage_t*) (death_proj . fi_proj_t*) (transit . fi_proj_t*) (spam . fi_spam_t*) (dirtype . int) ) ) ;(fi-getter form) ;funcname base mult offsetprefix alist (fi-getter fi-proj-get *desc_proj* *size:fi_proj_t* "*offset:fi_proj_t." fi-proj-members) (fi-setter fi-proj-set! *desc_proj* *size:fi_proj_t* "*offset:fi_proj_t." fi-proj-members) ;; *********************** ; fi_weapon_t (define fi-weapon-members '( (id . int) (name . char*) (model . int) (orthogonal_fire . int) (attribute . int) (ability . int) (view . int) ; (mode[3] . fi_weaponmode_t) ) ) ;(fi-getter form) ;funcname base mult offsetprefix alist (fi-getter fi-weapon-get *desc_weap* *size:fi_weapon_t* "*offset:fi_weapon_t." fi-weapon-members) (fi-setter fi-weapon-set! *desc_weap* *size:fi_weapon_t* "*offset:fi_weapon_t." fi-weapon-members) ;; ********************** (define fi-weaponmode-members '( (flags . int) (spinup . int) (recoil . int) (reload . int) (projectile . fi_proj_t*) ) ) ;(fi-getter form) ;funcname base mult offsetprefix alist (fi-getter fi-weaponmode-get (+ *desc_weap* *offset:fi_weapon_t.weaponmode*) *size:fi_weapon_t* "*offset:fi_weaponmode_t." fi-weapon-members) (fi-setter fi-weaponmode-set! (+ *desc_weap* *offset:fi_weapon_t.weaponmode*) *size:fi_weapon_t* "*offset:fi_weaponmode_t." fi-weapon-members) ;; ********************************* ;; ********************************* (define (fi-populate-names setter nth data) (display "populate-names: caar data = ") (display (caar data)) (newline) (setter nth 'name (caar data)) (if (eq? (cdr data) '()) #t (fi-populate-names setter (+ nth 1) (cdr data)))) (define (fi-name-damages setter nth data) (if (pair? data) (let* ((symname (caar data)) (strname (string-append (symbol->string symname) " ")) (MODint (binstr-get strname -4 0))) (display "name-damages: caar name = ") (display (caar data)) (newline) (setter nth 'MOD MODint) (fi-name-damages setter (+ nth 1) (cdr data))))) (define (fi-forward-names) (fi-name-damages fi-damage-set! 0 damages) (fi-populate-names fi-class-set! 0 classes) (fi-populate-names fi-weapon-set! 0 weapons) (fi-populate-names fi-proj-set! 0 projectiles) (fi-populate-names fi-spam-set! 0 projectiles) ) (define (fi-populate-damages nth data) (if (pair? data) (let* ((prop (if (eq? '() (cadar data)) '() (cdar data))) (radius (let ((x (assoc 'radius prop))) (if x (eval (cadr x)) 0))) (damage (let ((x (assoc 'damage prop))) (if x (eval (cadr x)) 0))) (knockback (let ((x (assoc 'knockback prop))) (if x (cadr x) 0))) (effect (let ((x (assoc 'effect prop))) (if x (eval (cadr x)) 0))) (evhit (let ((x (assoc 'evhit prop))) (if x (eval (cadr x)) 0))) (evmiss (let ((x (assoc 'evmiss prop))) (if x (eval (cadr x)) 0))) ) (display "populating ") (display (caar data)) (newline) (map (lambda (x) (display x) (display " ") (display (eval x)) (newline)) '(radius damage knockback effect evhit evmiss)) ;(( (map (lambda (x) (let ((v (eval x))) (if v (fi-damage-set! nth x v)))) '(radius damage knockback effect evhit evmiss)))) (if radius (fi-damage-set! nth 'radius radius)) (if damage (fi-damage-set! nth 'damage damage)) (if knockback (fi-damage-set! nth 'knockback knockback)) (if effect (fi-damage-set! nth 'effect effect)) (if evhit (fi-damage-set! nth 'evhit evhit)) (if evmiss (fi-damage-set! nth 'evmiss evmiss)) (fi-populate-damages (+ nth 1) (cdr data))))) (macro (fi-set-prop form) `(if ,(caddr form) (,(cadr form) nth (quote ,(caddr form)) ,(caddr form)))) (define (fi-populate-projectiles nth data) (if (pair? data) (let* ((prop (if (eq? '() (cadar data)) '() (cdar data))) (speed (let ((x (assoc 'speed prop))) (if x (eval (cadr x)) 0))) (trajectory (let ((x (assoc 'trajectory prop))) (if x (eval (cadr x)) 0))) (pellets (let ((x (assoc 'pellets prop))) (if x (eval (cadr x)) 0))) (range (let ((x (assoc 'range prop))) (if x (eval (cadr x)) 0))) (spread (let ((x (assoc 'spread prop))) (if x (eval (cadr x)) 0))) (base_model (let ((x (assoc 'base_model prop))) (if x (eval (cadr x)) 0))) (impact ((let ((x (assoc 'impact prop))) (if x (cadr x) 0)))) (splash ((let ((x (assoc 'splash prop))) (if x (cadr x) 0)))) ) (display "populating ") (display (caar data)) (newline) ;(map (lambda (x) (display x) (display " ") (display (eval x)) (newline)) '(radius damage knockback effect evhit evmiss)) (if speed (fi-proj-set! nth 'speed speed)) (if trajectory (fi-proj-set! nth 'trajectory trajectory)) (if pellets (fi-proj-set! nth 'pellets pellets)) (if range (fi-proj-set! nth 'range range)) (if spread (fi-proj-set! nth 'spread spread)) (if base_model (fi-proj-set! nth 'base_model base_model)) (fi-populate-projectiles (+ nth 1) (cdr data))))) ;; ********************************* ;; ********************************* ;;********************* ;;type = struct fi_pellet_s { ;; int id ;; int speed ;; int range ;; int effect ;; int loft ;; fi_damage_t impact ;; fi_damage_t splash ;; fi_spam_t spam ;;} ;;type = struct fi_arsenal_s { ;; int weapon ;; int weaponfire ;; int weaponstate ;; int weapontime ;; int lastfire ;; fi_weapon_t *desc ;; void *missile ;;} ;;type = struct fi_grenade_s { ;; char *name ;; struct { ;; int range ;; trType_t trajectory ;; fi_damage_t *impact ;; fi_damage_t *splash ;; } drop ;; struct { ;; int range ;; int dir ;; int speed ;; trType_t trajectory ;; fi_damage_t *impact ;; fi_damage_t *splash ;; } settle ;; struct { ;; int range ;; int dist ;; float alpha ;; int dir ;; float omega ;; int target ;; int period ;; int delay ;; int paint ;; fi_damage_t *impact ;; fi_damage_t *splash ;; } search ;; struct { ;; int delay ;; float rotation ;; fi_proj_t *projectile ;; int ammo ;; int dir ;; fi_damage_t *impact ;; fi_damage_t *splash ;; } fire ;; struct { ;; int range ;; trType_t trajectory ;; int dir ;; int speed ;; fi_damage_t *impact ;; fi_damage_t *splash ;; } die ;;} ;;type = struct fi_player_s { ;; int id ;; int ammo[16] ;; int attribute ;; int ability ;; int view ;; fi_arsenal_t arsenal[64] ;; fi_arsenal_t *hand[2] ;;} ;;type = struct fi_level_s { ;; int classes[4][16]; ;; int limits[4][16]; ;;} PK ,)9ү qs/binstr.cfgUT < W=Ux8m8m(define (crumb . therest) (map (lambda (x) (display x)) therest) (newline)) (define binstrfmt-widths '((#\x . 1) ; Null/Pad byte (#\b . 1) ; signed byte (#\B . 1) ; unsigned byte (#\h . 2) ; signed short (#\H . 2) ; unsigned short (#\i . 4) ; signed int (#\I . 4) ; unsigned int (#\L . 4) ; unsigned long (#\f . 4) ; float (#\d . 4) ; double (#\s . 1) ; string (#\p . 4) ; pointer )) (define (tail-pair lis) (if (pair? lis) (if (eq? (cdr lis) '()) lis (tail-pair (cdr lis))) '())) (define (binstrfmt-get-count fmt offset . sofar) (let ((ch (string-ref fmt offset))) (if (eq? sofar '()) (set! sofar 0)) (if (char-numeric? ch) (begin (set! sofar (+ (* sofar 10) (- (char->integer ch) (char->integer #\0)))) (set! offset (+ offset 1)) (if (< offset (string-length fmt)) (apply binstrfmt-get-count `(,fmt ,offset . ,sofar)) sofar)) sofar))) (define (binstrfmt-reappend sofar replet count) (if (> count 0) (binstrfmt-reappend (append sofar (list replet)) replet (- count 1)) sofar)) (define (binstrfmt->list fmt offset . sofar) (let ((ch (string-ref fmt offset))) (if (char-alphabetic? ch) (set! sofar (append sofar (list ch)))) (if (char-numeric? ch) ;; repeat count. 0 and 1 are equiv. (let ((count (binstrfmt-get-count fmt offset)) (replet (car (tail-pair sofar)))) ;;Special case for #\s (case replet ((#\S #\s) (set! sofar (append sofar (list count))) (set! offset (+ offset (string-length (number->string count))))) (else (set! sofar (binstrfmt-reappend sofar replet (- count 1))) (set! offset (+ offset (string-length (number->string count))))))) (set! offset (+ offset 1))) (if (< offset (string-length fmt)) (apply binstrfmt->list (cons fmt (cons offset sofar))) sofar))) (define (binstrfmt-calcsize fmt . therest) (if (string? fmt) (binstrfmt-calcsize (binstrfmt->list fmt 0) 0 0) (if (eq? therest '()) (binstrfmt-calcsize fmt 0 0) (let* ((ch (car fmt)) (offset (car therest)) (csize (cadr therest)) (cw (assoc ch binstrfmt-widths))) (if cw (if (and (pair? (cdr fmt)) (number? (cadr fmt))) (set! csize (+ csize (* (cdr cw) (cadr fmt)))) (set! csize (+ csize (cdr cw))))) (if (not (eq? (cdr fmt) '())) (binstrfmt-calcsize (cdr fmt) (+ offset 1) csize) csize))))) (define (string-copy dest doff src soff len) ;(crumb "string-copy: dest = " dest "; doff = " doff "; src = " src "; soff = " soff "; len = " len) (if (and (> len 0) (< soff (string-length src))) (begin (string-set! dest doff (string-ref src soff)) (string-copy dest (+ doff 1) src (+ soff 1) (- len 1))) dest)) (define (binstr-pack fmt objs . therest) ;(crumb "binstr-pack: start, fmt = " fmt "; objs = " objs "; therest = " therest) (if (string? fmt) (binstr-pack (binstrfmt->list fmt 0) objs) (if (eq? therest '()) (begin (crumb "THEREST IS EMPTY!") ; (binstr-pack fmt objs 0 (make-string (binstrfmt-calcsize fmt 0) #\0)) (binstr-pack fmt objs 0 (make-string (binstrfmt-calcsize fmt) #\nul)) ) (if (eq? objs '()) (cadr therest) (let* ((ch (car fmt)) (instuff (car objs)) (offset (car therest)) (bstr (cadr therest)) (sw (assoc ch binstrfmt-widths)) (width (if sw (cdr sw) 0))) ;(crumb "binstr-pack: inner sanctum") (case ch ((#\s) ;(crumb "binstr-pack: for s") (let ((count (cadr fmt))) (string-copy bstr offset instuff 0 count) (set! fmt (cdr fmt)) (set! offset (+ offset (* width count))))) (else ;(crumb "binstr-pack: single splot, bstr = " bstr "; offset = " offset "; width = " width "; instuff = " instuff) (binstr-set! bstr width offset instuff) (set! offset (+ offset width)))) (if (and (pair? fmt) (pair? (cdr fmt))) (binstr-pack (cdr fmt) (cdr objs) offset bstr) bstr)))))) PK 8,vm/UT P<C=Ux8m8mPK | -vLLL vm/qagame.qvmUT \V= W=Ux8m8mDr# PpH $  ,    2& 0! 4! 8!$ 0!$ 0! 4! 8!  $ 0!Vq$ 0!]$ 0!ܛ$ 0!ȕ$ 0!$ 0!$ # $ 0! " $ $$  $ ! ! !-  !  $ ! ! !-  !D (  $  $,&  &  &  &.   &  ( (& &  $&  &  & # & , &. 7 0  0&!  0&! 4k# 4  & 8  8&  8& &   &  < & < </ &  @  @&  @& &  &  &   $ $&  & $ 5! (! !D,     ! &! &!  &!   & & &    &  &     & . =!! j!!  ,0       ! & &  & & & ! &! &! ,qs ! ,!  &    &  &   O  0$!!! !!  0!$z!! ! ,  , ! G    ;,# ; ,!! ! ,!! ! &i!,! @ $!! +! ! $!  @ !!! ! X ,!! !,  x  ,&h ,&  &  d@ !! !!h !g <! ! $ $ !qG!G!Gt! ( (  4!' 4!q" 4!$\!F!- 7! +! !t!    !(  ( ! $! !-  4! !   $ ! ! !-  4! ! ( Z 4 `    h ,& & z h&  p&  t&   $l  $&  $&    &  h     'h (,&!2! u(   h ,&&   ,&!0! u   h ,&&   ,&!0! u  h ,&& J h ,&x&  & !]  h ,&& s h ,&|&  & !]( h 0,& h 4,& p&  t&(H p&  t&(H & (H & (H h   &    &   l  &  &(H $l  $&  $&(H (H h& (H h& (H   &  &2(H $  $&  $&F(H ((D       2&  &  `  # h ,&& 2&  , , ,& h ,&h&  0 0 0& h ,&&  4 4 4&  ,4&.  8 8 8& h ,&h&  < < <&   h ,&h&  @  @ @&         &  w!! !u! x  q h 2&,&  X & k e & k &  &  = $ (   h 2&,& &    (  $  h 2&,&& $  h 2&,&& $@/ h 2&,&& $@/ (    h 2&,&& $@/  &   0-!! ,qs ! ,! -!! 0qs ! 0!   V-!! ,qs ! ,! -!! 0qs ! 0!   -!h ,&&! ,qs ! ,! -!! 0qs ! 0!  -!h ,&&! ,qs ! ,! -!h ,&&! 0qs ! 0!  4 D   h ,&&  ,&!a &   &p&  !Ȧ \&D" &&D" &&P" && &8&!! @! &h& & & & & & & 4! ! ! (G  (  z  !D! P! D \&" P t&" & &! ,$H  ,  0   0\&D7 0`&H7 $ d&L7 !P! KX44 %   4 \  \snz    ,& &  & !O !  &  !-!- M  !!  8 4  !! 8 4     h ,& & w } &  & X e    h ,&& h ,&&  & X 4 ( ( <( < (,' ,  (  ,,' $!! ! (! ,! !2s $ @ +! <! $!- $ x  4! +!   $! 0" $! 0! !48 ( ! @!  0 !!  $ $ B $  Q !! !    h 2&,& h& m  & v  & 0 &  0 , 0 ! &! ,! 2&! &!  &  $ V 8 t      h ,& &   &,4&.  &   &    2/   & & X  = h ,& & 0 7 &  & X  4&K t  T < t  ] ' t < h < @ @'&q t '         h ,&& h ,&&      $4   0 0' 0   v         '`, !h! Y!       , !9! *!   ? ! ! *!    h ,& & V  h& _  & *! ! &! qs ! !   & X D    !! !   !! ! $0    O S   -!! qs ! ! !         ,    , '& -!! qs ! !       '& !! !!        !! $  $ !! (  ( ,  ,   ,        -!! $qs ! $! !          $  $, $'& -!! (qs ! (!     $ $ $'& !! !!  0 ++ !! qs ! !  1o '0u A!l! e (W!V!  & e ( o!l!  !!    h ,&h&   ! !   &  wh $,&& 9!h $,&&! qs ! ! qR h $,&h&  !h $,&&! qs ! ! qR  # h ,&h&   h ,&& h ,&& !]  &  h $,&& $!]!h $,&&! qs ! ! q  } h ,&h&  iw h ,&& w  &  Z     h ,&h&    ,4&. h ,&&   &     h ,&h&   h ,&&   &   ( 0    0   2&   2&'0u !!     2  & & (|!! !  2&! ! q  e  2 &! $@& 0! $!  !  2&! $qs ! $!   $  2 $& $& ( !!  2&  &!! (< < # !! q  |!!  |!!  &:  : & & !   ! &@  ( ( (&   H $' C ,  ,    & R  (&', & y & & y && ,&  !=K 0&  0& ! ,&  4 & 4  & 4  &  ! &  4&  !a <  <& <  ! @ !q !  &  &  I 0 0 4  4   F & : !r  &  &  - 8 8   3?!!   ! !  ,&!  &  s!! @   4 , d&  d&  d& 4 ,h&  4 ,@&  &      4 , d&  h&  4 ,@&  &   !!  t 3 $& - (& $ - D  4&  !! $! t h &! ! q  b o  4&  L8 D &! H! ! @ $ & 7 $0B $H ( & ,B ( 7 , 0 ( 7 0 4 & 4 7 , 4 7 08 880  <&     !z!  4 <&,@&  $&    2 & 0 (&2 @x&& "0 0 @ & &2 ;0 0 $  & $ N $d g ( @ (& (&2 c0 0 ( @ (& (& z0 0 0 8  @&  , (& ,  ,  <&  (&  @X& 0 @&  , (& ,  ,  <&  (&  @T& 0 0 @& 0 0 !^! 00h  p    2 & x p &"  o: t p&':9 $ p x $ & $& 96 ( p x& (& (& 96 , p x& ,& , & 96  0 p  t 0&': 0&:8 @I@ 99! 4  4 8 p x 8 & 8& 96 < p x& <& <& 96 @ p x& @& @ & 96  D p t D& D&& H p t H& H&& o: t p&':9   H p x H & H& 96 L p x& L& L& 96 P p x& P& P & 96  o: t p&':9 T p x T & T& 96 X p x& X& X& 96 \ p x& \& \ & 96 ` x& d  ` `C d9 d97  !4! p&!h@  H    2 & $ P ( $& ( $& ( $ (  P H&"  , H  L ,&': ,&:8 @I@ 99! 0  0 ? 9 P H& 9 P& H& 9 P& H & 9  4 H L 4& 4&& 8 P < 8& < 8& < 8 <  P H&"  o: L H&':9 P H&" 8 P& 8 8HD 97  !! H&!@  $ l&.2 p&&  $ l&.2 x&&   $l&  &   l&  '  l&.2 p&&   l&.2 x&& 0 8& J 8P& S 8& <  <h&! ! KX ! (\ (! ,O' , 4B $  $  ! $! 8! 8& < ( 8 (& (& 8 & <h&" 0( 0&     4&  0& 4&  4& 4 0& 4 & 4& 0&" 8 "  4&  ;:  4&  ;:  4 &  ;: 4$& 0 &" 40& 4<& 0&" 8 h  4<&  ;:  4@&  ;:  4D&  ;: 4& 0X&: 4& 0L& 4& 0T& 4& 0& 4& 0h& 0&  4&  /   4&  . 0&  4& 0& 4& 0& W  0 & l&'  0 & l&'   0& ' .  0 4& 2 p&& &.2/ 4& 2 0x&& 0 & l&W $ 0& $ $& 4& 0& 4& 0D& 4&  2 08&&   4&   2/  &  t 4& 0& 4& 0& (( 0&     4&  0& 4&  4& 4 0& 4 & 4& 0&" < #  4&  ;:  4&  ;:  4 &  ;: 4$& 0 &" 4& 8 4&2 40& 4<& 0&" < v  4<&  ;:  4@&  ;:  4D&  ;: 4& 0X&: 4& 0L& 4& 0T& 4& 0& 4& 0h& 0&  4&  /   4&  . 0&  4& 0& 4& 0& e  0 & l&'   0 & l&'   0& ' .  0 4& 2 p&& &.2/ 4& 2 0x&& 0 & l&e $ 0& $ $& 4& 0& 4& 0D& 4&  2 08&&   4&   2/  &   4& 0& 4& 0& (     .    .    .                      4\  04  ( ,      &     &    '   (  0  ( ,      &     &    '   h 8 @! D! $ L $ D! H! ( L (  D  @! H! , L ,  H   @      D! H! 0 L 0  D  @! H! 4 L 4 @  H     88 L P  L. P 6  L. P ; D K  D H G H D H ( D 4  8  &   8  (  T    '  ' T  ! X   X'! X! (!   '    '! ! `  `e 8  8& 8  , &_" 8 ( , & h   < ' , & (T @ ( , ! X @ X &! X2 &! ! \  \ d @ 8 d'! 8! d 8&! ! h 8 h p @ < p2'! < p'! <! ! t < t ! 8! <! ! T 8 T ( ~ T   8 8 T  ! 8! ! (! T  &  T , T X ' , & 0 X X  $ 4 ( \ , ,   \  ,! ! ! (! ,  ,&   &  ! ! ! `  $ ` ` @! $ 9! 4 ( #! d   0 0 d 2! ! 0! ! (! 0 0 '  '  X! ! ! h  $ h h!  _!! ( u! l     l ! ! ! ! (! 4   &  '  4 " 8  & "  8 ! ( ! \    '  ' \ ! ! `   `'! `! (!   '  !  '! ! h  h! 8  8& 8  , &!" <  , & ` , ` '  `'0" \ , ' 7" \  ,' $ \ $Q" !  $'! $! (! l 0 l ' < l' 'l" h 0 ' v" h < 0' ' $ h $" ! < $'! $! (! t  ,' $ t t " ! x  $ x(! x! ! | 0 ' $ | | " < $' $ (      "  & # "  '     #  & # "'#     &  $ $  &   $# #     \#     &  $ $  &   $# =#  z#  & &  # #   #    #   n# # #'# #  # #  & # ##  #  &#  &# ##  &  &# #  &# # $  & # #   A $ Z$   &      a 4$ z4$  &     _$  ' Y$  &  &  ' G${$  v$  &  &  &   d$  !  !   8L   L   ,& L.  ($ 0# $(v% 0 0& 0# $  0# + $ - $$ 0 0& ? $ 0 0&  $ ?   0# . 0%  0 0 &  # 0 % 9%6%  0'  A 9 :6 % 6% 0 0& . p% = 0 0 &  # 0 U% 9W%p%  0'  : 96 = 9 =%  9((, 4 % # % 4  ,>& & # %  # + % - %% & ? % &  % ?  #. %  &  # 0 % 9%%  0'  A 9 :6 % . 3& = $  $&  $# 0 & 9&3&  0'   : 96 = 9 & 4   9,,$S& ,# M&$& , ,& ,# C&  ,# + i& - t&& , ,&  & , ,&  &    , , &  # 0 & 9&&  0'  , & &  ,$$( 0 & # &(8' & # &  # + & - && &  & &  &    &  # 0 ' 9'-'  0'  , & ' 0   ,(( F'  % J'      ['  5 _'     L  h o' h 4 z' 4 4& 4 h&# t'  8 \ \' \ \% <   <& < & \ 4* h& \ \ 4( \ ' < 8 <' d. < ' @   @& @ &- T d. :((  X( D  D& d. ' @0 ' @ D @  & ` `'  ` ':(  X.( @  @& @  &  & ` `' @   @' @ ( d. (x(  Xr( H  H& d. j( D0 m( D H D  & D ` ` D' D P( T  LLP  < ` `( ` `5  4 `; @   @& @ & 4 *0& 4 4 ( 4 ( <( @   @& @ &- X )  \( @  @& @   & d d'  d (&)  \ ) @  @& @  &  & @   @' @ ) X  h@) h 8  ) D ` ` D D;:7 ` A `9 4 `; H   H& H & 4 *0& 4 ~) L ) L 8 8 L.  h H) 8 ) P) ) X  \) D  D& D.  & h )  \) D  D& D h &  & h h& h  ) X  PP$   , 4 * 4 < < #*  *  4&# *.*  &  < *.* 4! "   8 8 ' a*  0[*      &  4 4  &   &    '  7**  0*    &   &  8 8 ' q* ,  $$(  8  + 4#% * 4 4& + 4&# 4 4& d   * f * i *   * u ** 0! &   * 0! $x%  $  & 4# * (( +-  ' (  0  - $ P+  D+ D ( ( D& D $ & & A  $ A A# c+ $#% 0+ $# j+- & 8 4 < @ D  D& $ D H $# PX H P o- H P+ H% - H9- H2 & Hc - Ho+ H2 & Hs , Hu , Hx F-- 8 8/ |+ , + , ,, $#0'& `  `& d ` $ d d#0' + ,, h  , h , < h + 8 8/ |+ , , ,, $#0'& l  l& $ l $#0' , 4 , +  Y, l ( ( l& l 0 & 0 0& - (!  '! 0! 4! 8!! pd'  p& 0 0& - (!  '! 0! 4! <! x(  x& 0 0& - (!  '! 0! 4! <! )  & 0 0& -  , ( ( &  $ & - (!  '! 0! 4! 8/!! d'  & 0 0& - (!  '! 0! 4! 8/!! d'  & 0 0& - (!  '! 0! 4! 8/!! d'  & 0 0& - (!  '! 0! 4! 8/!! d'  & 0 0& -  - ( ( &  0 & 0 0& )+ ( $  8 ,! 0! 4! !  +    $$ $!! (! ,!  +  &..  &..   &%.'.  &5.7.  !! ! ! ! !  _.. 0& h..  . 24&&  |..  & 0& m.  0&2 4&&  0&  & & ..   4&?., && .. T&    . 0 / & ./ H&// L&    . 0 /  L&.  */:/ H&4/:/ !. T&.  J/s/ P&T/s/   4&?., && m/s/ !. H& !. (  0  4     9  &  &96  &  &96 /   <9 /   <8  2 4& 9 $ 2 $ 8& $ 0& 7  &  /(D  &  "  0 $ ! ,+e  , ?+0  & 1  &n0 0  0 n0. 0 n0 &@. n0 Y0 4 ]0 4  ( 4   (996 & 0   9&:996 0 4 0P& 4 0 0h&. 4 0   996 & 0   996   7 0    8   9 < & < < 9 @ & @ @ 9 D(   0   & 9 $& &96 (& &96  4 7 =1}1 89 49  P1   2 $  && $ $   0&96  &  S1(8 @&#! :'  @&#! :'  1 @&#! :'  @&#! :'  1 @&#! $:' $  18!2 $ @ ( $&# , $&# 0 $&# ( (, , ,,& 0 0,&:! 4  4 4&: :9B 98 88P   &#  =2 &#  M3   &#  _2 &# _2X& m3   &# 2 &# 2X& m3  $ &# $2 &# $ 2X& m3 ( , (&# ,2 (&# ,2X& m3 0 4 0&# 4 2 0&# 42X& m3 8 < 8&# < 3 8&# < 3X& m3 @ D @&# D+3 @&# D +3X& m3 H L H&# Lm3 H&# Lm3X& m3 X& ^3X& m3 X& m3X& P &. ~33 &# 33  &. 3&3    &  / D& (&C !9.&# 3!u/  &  . 3 !u/  &  / H& 4H4 & 4H4   $ !b , 0A  ,& 0 96  ,& 0 96 &A $96  @6 ! 4 4&! 8 4& ( 8 (. }4H4  A6 ! < <&! @ <& ( @ ( 4H4  &HC9 $&HC9 (&HC9 (&C D & D D/ & HH!_R   (&   0&:97 (&"5  &  . & d @3 @ 254S6 /&! D1  D Q5  $ (p 5  H 2 P H &  H&9 P&#:9  H&9 P&#:96  &  T5 ( ( &#:96 0 " 0! Hb , H ,4&:95 ,4&:9 0! ,! !1 N6 L L &9 L$&96 L(&96N6 &! P+e < P T & T!! T! ?!/ &!b X & X X <9 \$& \ \ <9 `(& ` ` <9 !oNdH/&! 81  8 u6   $ 6  < 2 D < &  <&9 D&#:9  <&9 D&#:96  &  x6 $ $ &#:96 ( " (! <b 4 < (! 4! !1!_RHh/ (&#: ,&#: D&" D! \1 @ \ #2  !b!b  ` 2 ` & `& (9 `& ,96  &  7 $ 0 " 0! `b < ` < < @9 0! <! !1 |7 d & d!! d! ?!/!_Rh@ (  (9  (9 9 ,  ,\& 6  ,`& 6 d& 6 0  0&7   0&7  &7 ! 4+e $ 4 !b $B8 8 A $9  89   89   A $99 .8 <HD < 9  < 9 HD 9  & "  @&Z899696Z8$54: do3 d s8&n8$54: 64: / (&#: ,&#: H&" H! h1 D h #2  l l!! l! ?!/!! ! ?!/!b!b  p 2 p & p& (9 p& ,96  &  8 8 " 8! pb 0 p 0 0 D9  &. &9 04&:9&9 04&:9 & `9 t&:@@8 x? t x x7 t97 04&: t9`9 04&: t9 t . t u9 &@. t {9 ` 9 ` 8! 0! `!1 x . x 9 &@. x 9 | |(&   |0&:97  &! |+e 4 |  & !! ! ?!/ &!b  &   49 $&   49 (&   49    & /: $& /:4: !_R  =::  &! +e  A7 t:   (&  $&   &  :  &!b  &   9 $&   9 (&   9  |&  &! T+e , T ,?: & " @; H L?9 ,: X : X , P X H H P L996 0 , H7 0 ; 0 0 0 ,8 \ & \ \ 09 `$& ` ` 09 d(& d d 09 &! X1 D X $&#: (&#:  \ 2 \ & \& $9 \& (96  &  b; &#:6 4 " 4! `b @ ` @ @ D9 4! @! !1 d h d& h h d &96 l p l& p p l$&96 t x t& x x t(&96 | . << . << @ &. .<!u/3< !u/H& $&7  0&%:  @8   , $5  9@ 9 ,97 w<= ! 4 ( 5 47@ 98  ( 96 8  99  &. < @ 9 & <= & < > 9 & < ? 9 ?<= . = pB< !9.=  B<&= !9.= @= !9.= << <!9.& @H & )=!! 8 8 4 0 $&" $ $ 8:6 ( ( 4:6 , , 0:6 P! $! < <&! <&! $! <&! <&! <& P = $& (& ,&>7 P! @ D @ D&! @&! @&! $! D&! @&! @& P"8H= 0 0& 02= 4 4& 4/= 8 8& 8,=D&   HHtD& > & >!! 8 $&" , ,B7 0! h l h l&! h&! h&! $! l&! h&! h& 8?>&# v>!u/ p & p p. > !u/ p & p p/ D&   t| \& `& d&>7 $! h l h l&! h&! h&! \! l&! h&! h& $"8 $ > $! p= p >@ ,??>  @ p t p(& t~? p & <9 p$& @96 t D96 A~? & =?!! 8&# [?!u/ x & x x. o? !u/ x & x x/ D&   @ D333?? & ?!! 8D&   @    &. ? x & x x. & D& ? & ?!! 8<H? x & x x / & D& X X!X.|@& & & & &6?6 ! ( (&! , (&  , 8. @ &' $ ( &  & &6 $:6 ! 0 0&! 4 0&  4 8. @& &6 :6 ! 8 8&! < 8&  < 8. @& @pp& LA &@. A&( &( &( &(B &(B &(B 4A &p &p & &pA &pA &A \ & \ \/ & &B \ & \ \. &p &p &pA &pA & & A& & &B &#A ` & ` `/ B  &. B&B $! ` d ` h d& h! `&! `&! h! d&! `&! `& $ B l & l l.  &. B&A & &B &B & p@     & $ $&  9 $ $96! ( & ( D& zBp& lB!/&C!/C , 0 ,&# 0 B ,&# 0 B&@C&  &. B!/C !/C   &. B ?  &. B !/!C  !/!C &. C >  &. B!/C !/  !C >  &. C!!/!C !/ & & : :96;. 4@  4&& 4&0. C& uC 8  8 C$& 8 C << <!9.C & C!9.C & C!9.C & C@    C&  C!9.    C&  C!9.    C&  C!9.    C&  C!9.   C D7D &. D7D & D7D ! ! H.&  &  &  !. &  JD MD  &. ZD  4&  . 4&   ?./ &X ,!& &  &  &  !.    4&?., && DD & D    &,  &&&! -  D !J  2  (8&&>  ,&&' >J $J  2  (8&&  ,&&'  2 (&&; $:9  &  J \ d   & 0& & & &2K &  . &#! :' @PK&#! :' @^K $& $ $. &. xK $h& $ $/ K $h& $ $. $h& $ $. & K (h& ( (/ & K ,h& , ,/ & K 0h& 0 0/ 4 8 4& 8L 4&p. 8 L < & < <. d&. %L d& d& d& d&!! ! d&' CL JL JL  d& &"  &" o::9 < <! <&! VJ&!! !!wh&# L @ & @ @. &#L @ & @ @/ L @ D @&# H D HL D H L @&# H L L & L L. & M&&&& M@U6IM & %M:IM L  L& L 4MM P& P DM P FMM  @ d& @>& aM6:I T X TP& X ~M Th&. X MU6M  &. M76M  &. M4M &M$5M  M:8M 6I> @HD(BC &!\ $& $&  $MmN  $&N $ '  $&  &?. fN   $' $& 9N  $&@N  $& @N B@N B  $ &  & $!J $ &. fN $& $  NX   &" ` N  &" 0&:97 (& ?  69    N  & !! ! ?!/   N  (" N   &! , (&! b &  /R    &  & 96   & $& 96  & (& 96 !    &! &! &! ! &! &! &  qO(& X]R |O& " ?O4R !X.   97  O $ ( $(& ( $$& ( $ & ( X]R t P $ t,  $ (&9  $ ,&96  $ 0&96p}?P ( & (  (6 ,$& ,  ,6 0(& 0  06 P t t& t  O t "P)R  , (& " & t $R $ ( t, $ & ( (&9 $$& ( ,&96 $(& ( 0&96 =kPR 5vP 5  &! t, (&! d! ?!/ ! t, (&! ! ?!/ p  R p t PR , p, d , (&9 h , ,&96 l , 0&96=PR d! p, (&! d! ?!/ ! p, (&! ! ?!/ 0 t, d 0 (&9 h 0 ,&96 l 0 0&96QR 4 4 t, (&! 4 p, (&! x!d x!b 8 x 8 &9 | 8$&96  8(&96 d x 9 h | 9 l  9 @ @ t, (&! @ p, (&! x!d x!b x 9 | 96  96 x 9 | 9  9 $ R $ t Q $ p QQ L $, d L (&9 h L ,&96 l L 0&96=QQ P T P(& T P$& T P & T X]R $ $& $  Q p p& p  P & d" " )R t t& t  5P &   N ` ?R & " & NR & "  WR  ZR  XX t&"  &" ! oN  {RS h t" p pA7 $! t!  &! &! h! &! &! &  \  `  d? (&R ,?R < \9 @ `96 D d96333?RS &"  &" \ t" d dA6 $! \!  &! &! \! &! &! & $ /S & S6!! 8S & \"  & " !oN h&" p pA7 $!   &! &! &! h! &! &! & $ S& 0" ,?S  & ! <! ! ?!/ & |7 @S @S!9.S 0AS!9.S pAS!9.S  !9. & S*!! 8     ,&    ! S .:G8 ! S @ ?79 )T5T 1T5T # @TLT HTLT $ ( WT T     (  ,  l&9 & p&96 & t&96  T      &  `T       T  T  " T  ,l&"  0 C 89 O  T  7;& T ;   C <9 O  U   7;&  U  ;  (C @9 ,O ( ,(U $ ( ,7;& -U $ (; $ 00< C D9 O  QU  7;& VU ;   C H9 O  tU   7;& yU  ;  (C L9 ,O ( ,U $ ( ,7;& U $ (; $ 4C P9 8O 4 8U 0 4 87;& U 0 4; 0 <<   & U  & & U  &  V   &  &    9V   8   &  & 8   &  & 8 ` , p 0 l  , 07 4  , 4& 0 4&7 8  p 8& l 8&7 < t @ l < @7 D $ < D& @ D&7 H ( t H& l H&7 ! ! h!d h! Lb LV`V P h T l X \ P & T P9 T X& P X&96 T \& P \&96 ``  & & ! ! oi ! ! !d <  H  T  @  L  X  D  P  \  ! <! $! H T @ X D P `!! $! ?  p  `  I@ (94C8 !  `  !  d  !  l 5 !  p  <! `! !f ! ! !f   ,  $ 2 &  & 9  & &96  & &96  &  W,  4  &! ! oi 85X  4 &" ( 4 ( &! (! ! 8!V  4 !  &! &!d,8  @  & uX  uX  @&pX B X C X @X $ @ $&! $! ( 4C (9I@8 X @&X B X C X  C6 $ @ ( $ , $& ( (9 , ,96! 0  0 @&! ! 4 4C 49I@8 X  C6 D 5 D&  D& 8( 0! $ 4 $! ! $&!wh 4 &  7 4& 7 4& 7 ( ? & &  & &? & & &  &?   "   &  &"   &  &" D  T  $ & ( & ?  9 $ $96 ( (968 , T 0 P 4 8  , 09 , 4& 0 4&96 , 8& 0 8&96 9  T 9 T& 9  T& 9 L P  97 < L <& P <&  97 @ L @& P @&  97 D< H& D5 H& D& H D&  H  D  $   9  &  &96  $&  $&96 ( H ( ( D 596 , 0 H ,& 0 0 D ,& 596 4 8 H 4& 8 8 D 4& 596 H!b H! D! L!d<0  8 <   @  9  &  &96  &  &96   8 < @ &   &9  & &96 & &96 $ ( 8 , < @ $& ( ,&9 (& ,&96 ( $& , &96 0 ? ? $9  $  Y7_ 3'         9 979     .     74C[  C7  74[  C6      796    7 \  C7 4C\*\  C6 4$\   $ ,! 0! \ 4   , &! 0 &! \ 4 &   , &! 0 &! \ 4 &  $ ;a 6C 9;.:9 ;a 6C 9;.:9 ! \   4C\  C7   7! \    2 &\  2/  &  \ &   0&7]  0  & &2 (&] `  0  & &2 ,&3] `  `  0&  ` ` 2&  0 , $ (  9  $&  $&96  (&  (&96 , 0 0 ( 4 8  , 09 , 4& 0 4&96 , 8& 0 8&96 ` < 0 @ D , H < (9 < @& D @&96 < H& D H&96 L 0 P T ( X  L ,9 L P& T P&96 L X& T X&96 ` \ 0 ` , d h \ `9 \ d& ( d&96 \ h& ` h&96 l 0 p ( t x  l p9 l t& , t&96 l x& p x&96 ` | 0 (   | 9 | &  &96 | & , &96 0 ,     9  &  &96  & ( &96 ` 0 ,    9  &  &96  & ( &96 0 (     9  &  &96  & , &96 ` 0 (    9  & , &96  &  &96 0 ,     9  & ( &96  &  &96 ` 0  (   ,9  &  &96  &  &96 0  ,    (9  &  &96  &  &96 ` 0  (    9  &  &96  &  &96  0  ,     9  &  &96  &  &96 `       0 &`   0 &`  /   0  2 8&! $O'  $ 2 <&! (O'  (  ` ,  ` ,  2 & , &  ` ! $+e $00   OG &  &     $ O &  &     $ (Ra ( $ $ ,_a , $  $ & ( &~a  ( & $ &  $ & , &a  , & $ &  $ & ( &a  ( & $ &  $ & , &a  , & $ &    $   b   &  & b   &  &bb 4  <    & &  9  96  96 ! $ $ b ? 8 ( < ( ( 9 , <& , , 9 0 <& 0 0 9 440  8    &  &  9  96  96! [  $ 8 $ $ 9 ( 8& ( ( 9 , 8& , , 9 00  8    & &  9  96  96 ! $ $ Sc ? 8 < 8 9 ( < (& 8 (& 9 , < ,& 8 ,& 9 mc ( < , (& , (& , ( , 00 $   96  $ &  &   &96  $ &  &   &96    $    9  &  &96  &  &96   7   &  &  &7   &  &  &7    6   &  &  &6   &  &  &6      &  &   &  &    9   &  & 9   &  & 9 0  8   <  @  &  &9  &  &97  8  < @&  & 9   &97 $ 8 ( < , @& $ ( ,&9 $ ,& (97 0 (    &  &  9  96  96!         &  &  9  96  96,  8  4  7    &  &7 $  8 $& 4 $&7 ! (+e (,,(  4  0   7   &  &7   4 & 0 &7 $  $ $9  96  96((    5 &  5  &  5  $  9  $ &  & 9  $ &  & 9  $ &  & 9   f  & 3    f p  x |   9 &  &96 & &96   x  |  &   &9  & &96 & &96  x $ |  &  $ &9 & $&96  & $ &96 ( , x 0 |  (& , (& 09 ,& 0 (&96 ,& 0&96 4 8 x < |  4& 8 & <&9 8 4& < 4&96 8& <&96 @ D x H |  @& D & H&9 D& H @&96 D @& H &96 L P x T |  L& P L& T9 P& T &96 P & T L&96 X \ x ` |  X& \& `&9 \ X& `&96 \ & ` X&96 d h x l |  d& h& l&9 h& l&96 h d& l d&96 p0 5< 8&9 !  $  !  0  5< 89 !     !  ,  5< 8&9 !    ! $ ( $ < h <,09 <&,$9 <& 5 @ 8i ( @ (9 909 ((9$596 , @& ,9 9$9 ,(9096 @&9,9 D mi D( 9095$596 D&( 9$95096 D&(,9 08 ? ,  ,  , i 2 D&! 0O' 0 i   2 D&! 4O'  4  &  i 0 ( 0 $ 0 0 2 &? @! ! D!Y @!b8  i i  i i    j #/ j  &  & # i   ;j     &    &    #  Ij . j h p! `"  ` p&& pj #. jjj  & #/ {j  p bj ! p! @!p p! t! ~! ! x!2sh   $! TA $   $! PA $ ! LA  ! HA  !  $" ! DA !  $" ! @A ! u ,,@ 4@! @" @ u!-!  8@!\! @# @ vv  4@ 4@#\ v 4@ 4@&   Jv 4@# +vv @  (@  @ (@& $@ 4@ 4@ $@ (@& @ $@ 4@#\ #v  4@ 4@&   v 4@# gvv @  (@  @ (@& $@ 4@ 4@ $@ (@& @ $@ @ 4@# @\ v @ _v  8@! ! $@k# $@ v  ! 4@! 6#v 4@# vv v ,@ !"! #  vv !;! #  vv H P! "  v!!  T!\! #  w X!\! $# $ w!8w T!;! (# ( 1w X!;! ,# , 8w!8w T!"! 0# 0 Rw X!"! 4# 4 Yw!8w P! T! u 8 X 8 uw 8! <" < www !! ! T! X!2s ! @" P! D" @ D&wo!8w P! ! "HH P !  "   w!!  T !\! #  w X !\! $ # $  w!8qx T !;! ( # (  w X !;! , # ,  x!8qx T !"! 0 # 0  x X !"! 4 # 4  !x!8qx P ! T ! u 8 X  8  =x 8 ! < " <  ?xqx ! ! ! T ! X !2s ! @ " P ! D " @  D & ixN!8qx P ! ! "H ^ D L&! ! $!!s! !!2!$   x ! ,XA&! $   & ^ x!r! $ DP X&! $! $! H H^,XA&! H! V! $!! \! `! 2s L^ L L& P ," 8" $ ,&" , ,zD6 0!  ,&! ! ! $!  &!! ~  $ <" 0! $! ! !  ,&!  &!8! ~  8y <!    y  <" &  @7  &  &p &p & &pA  &pA $&? 0& ,& 4& (& y d l &@7)z l! ! Xx X y l&! ! d+z l&! !  ! \ \8. yd+z l&! \ l \&! \,&! \X&! p! t! x! ` ` y l&!dd4 <! @! D! H! $y $ Fz4z <! (֩ ( sz , < ,T&! ,,&! ,&!! 0 0,sz HHB , < ,&! ,,&! ,X&! @! D! H! 0 0 44@ L0&. b{ H,&! L!   z L0&. z H&! L,&! !@{  H  &! H&! &! L!   z@{ HT& L & { $ H,& ( L , ( $ , (&6{ $ , (&6{ 0 H0& 4 L 8 4& 0 8 4&6{ 0 8 4 &6{ H,&! < < {@{ L0&. { H,&! L!   {@{ H &?7{@{ H,&! L!   {@{ @@, 4&! <!   { 4& { 4! <! z  { 4!b 4& 4&8| 4&! 4 &! ,&! X&! 8! $ $ | 4&A6 &| 4&! 4|&! 4&! <! ( (,:| ,, & }  }  T& | | &! ! $!  !K! !!    &! &! !   ! &! G! &!! l T& X&| & \& A7| & &! ,!     &! H&! &!C! &!  1}    D ,&7 $ H 0&7 ( L 4&7 ! ^e @F8} |&!e \& , } D!       } !   }   & & &  & D" & & & &A &A &A ! &! 8!e &   T& ~ ~ &! ! $!  !7! !!    &! &! !   ! &! G! &!! l T& X&U~ &! ! $!  !(! !!    &! &! ! & &! ,!     &! H&! &!C! &!  T \&    D ,&7 $ H 0&7 ( L 4&7 ! ^e  d&   9T  &! !   <6 L |6 @  46 D t6 7  (6 D 6 6 @  86 H x6 7  ,6 H 6 6 @  <6 L |6 7  06 L 6 6 P! !  ! !wh ( !b   | ,& D7  0& H7  4& L7 |!b  |9 $ 96 ( 96333? !ɶ |&! |! C!! &@7 x&!$! !?!  x  $ .:F8 (& x9 &@6pA x96 ,&!    &?7 &@7t &E &!k &! ! $!  !! !!    &! &! ! & t &X &!ft $ .:F8L= (&9t &!k &@7    D ,&7 $ H 0&7 ( L 4&7 ! &! KX  & ? 9  $ .:F8L? (&9 ! l! [    l ,&7 $ p 0&7 ( t 4&7 ! &! KX  & ? 9   ! X&! &!C! y  G |&! &A6 !֗e |&!e , D!       !     & & &  & D" & & & &A &A &A ! &! 8! \&pB7 &! ! $!  !! !!    &! &! ! & \& e & =   T&! ,&! &!!  : &= &   & T  T &T  T&    &! ! ! !! !!  &!! ! !! ! T& ! &! 8! X&ۂ  &! ! ! !! !!  &!! ! &       ,&7 $ & 0&7 ( & 4&7 ! ^e  EP |&! $ @@ & 6  .:F896 ! v  J &B P &C e &   T&   &! ! ! !! !!    &! &! ! T&   h& & &! ! ! !! !!    &! &! ! h& & X& & ! ! ! { e & .  .  T& x x  &! ! ! !! !!    &! &! !   ! &! G! &!! l T& ! &! 8! X& &    &! H&! &! !    &! ! ! !! !!    &! &! ! & * ! ! z  *  &! ! ! !! !!    &! &! ! & e  &  =    T&   & &! ! $!  !! !!    &! &! !   ! &! G! &!! l T& ! &! 8! X& & !! !    &! &! ! &       ,&7 $ & 0&7 ( & 4&7 ! ^e aE &z & s &! ! $!  !|! !!    &! &! !   ! &! q! & $ .:F8L? (&9φ ! l! [    l ,&7 $ p 0&7 ( t 4&7 ! &! KX  & ? 9 &@7 x&!$! !?!  x  $ .:F8 (& x9 &@6pA x96 & &!f ,&!   6 &?7   H&!  &!  8. & !! !    &! &! ! h& h& & ,& |&!e e & )  )  T& 2 2 !r! 6#  t#&  ! &! " \& !l! "  \&  ˇ !_! !!    &! &! !   ! &! G! &!! l T& x#& C & e   ,&! x#&$&!   ׈ |#&. x#&`&  x#&  `& ׈  x#&  \&  |#&  . ׈ x#&\&  x#&  \& ׈  x#&  `&  |#&  / X& !S! !    &! &! ! & x#&  & e ! x#&$&! 8!e , U &  T& k k !A! !  &!! ! !! 7! T& !       !X! 8! !! 8! & e ,&! !   ۉ !     lj  ωՉ ,& Չ (& & X& & ! ! ^e   & & !       *6 !! 8!@ !X! 8!@ & e ! ֩  Q & X&_ & ,&! !   ! ֩  |&! $ &@6 A .:F896  & ! ! ^e & U  T&   !&! !  &!! ! !! ! T& !        !X! 8!$ !! 8!$ & e ,&! !   : & X&H & ! ! ^e ! ! ! {  &׍  ׍ &Ƌ &! ! !  !! !!    &! &! ! & ! ! ! ! <|   &  5 &! ! !  !! !!    &! &! ! & &! (!  ( y @!       y !   y   & & &  & @" & & & &A &A &A    &! H&! &!C! &!   & &?7 &@6    ,& &7 0& &7   $ 4& &7 ! ^e   &T &A79 &! ! !  !! !!    &! &! ! & @FC & ! &! 8! $tH׍ &A7 &! ! !  !! !!    &! &! ! &    @ ,&7 D 0&7 $ H 4&7 ! &! KX  & ? 9  ! ! ! ! <|  $!! r!x $!X! $! +0    $ &!! &! $$&%  $! ;  b $! /  S  $ ! : & 6 \ $&@6 $! !! r!x !X! $&  !   ! !! r!x &?6 $& ,  4 & & 4! !6   4 ! : & 6=6 $ 4 $! (: $& (6=6 4&" 4!! 8   4!,T 4&?6 4&!j 4&R  4 &!! &! 4!,T ,, (!! r!x (|&! (&! (&! (|&! (! 1   ( ! : & 6 (& ɏ $ (&?6 .:F86 (& (`& ($&׏   `& !   !6 &!g6 &6 `& &!g &6   &!! &! &  & Q ?7Q &!j@  H  p& q & q@  H  l&  & @  H  &  & @ H $ |& $ & $@ ( H , (& ,ݐ (& ,ݐ@ 0 H 4 0x& 4 0& 4@ 8 H < 8& < 8& < @ @@ p& &. p&! 0!    H"  A6 p  $  pH&7 (  pL&7 ,  P&7 $! (&! KX ! tU & t & & & x & x x/ & & &!A! (&! |T | !   H&!  ! ! !  &!! ~  $? l 0 &!i &. @&@6 @& &. C   g 2 t&&! 0!   p  $ H p,&7 ( L p0&7 , P 4&7 $! t+e  t  a      &  t&   2 t&&! 0!    H"  @6 p  $  pH&7 (  pL&7 ,  P&7 $! (&! KX t  x t& xג t& xג &  |   |x&  |&  &     &  &  &  & &  &  / & & &!A! (&! T  !   H&!  ! ! !  &!! ~  $?y l 0 &!i !! r!x $&  ! d d ! !fԗ ! h; h Γ ! !ԗ ! l l ! !Vԗ X& $  p X& p p@/ ! t` t  x X& x x`/ !x & & = ! !֗ԗ X && h &H& l! |  |H&!  ! ! |&P&! | &!! ~  t?  X(& h   & &L&    & \ P& H&7 ` T& L&7   d &X& P&7 \! X! KX &!A! X! T  &!i h ] X(&! !  &\&! ! |a | &<& &<&R ! & H &<& A6 ԗ !֗ԗ $!! 4! X l &<&  &H& ,&! X! | | &<& &<& ! & &<& A6 ԗ !֗ԗ ! X! | | ӕԗ !ɶ $!   |&! X! X&! $  |&! &<& ! $! ! ! $!  &H& 8. p |   |& \ P& |H&7 ` T& |L&7   d &X& P&7 \! L! KX 8 8/ 8. 8 8/ |  |! U |&L&  &L& &L& < &L& 8 . & L"  8.  |$ |.:F8L? (&9 ! L! [   \ L ,&7 ` P 0&7 d T 4&7 \! &! KX  & ? 9  \& . |  ||&! X! |X&!C! L!   o   \ L ,&7 ` P 0&7 d T 4&7 \! &! KXy @! &! KX  & ? 9 8. & < !! |8 | җ ! m  ! ̗ |&! &! ! ! &! !   @! L! ! !! L!x !! !x $&  !   % !f ! ;  : ! !   O !V X& $ g X&  @/ ! `  X&  `/ !   X&  / !x & &! P!   & ֘ ! P! z  ֘ !b & & &! &L=6 ! ! P!    !ɶ !  |&! P! X&!  ; |&! & ! ! ! ! !  0 . [ & D" @ 0. $ .:F8L? (&9@ ! ! [   ,&7  0&7  4&7 ! &! KX & ? 9 @ \& . @ &! P!   ܙ &! P!   |&! P! X&!C! !   (   ,&7  0&7  4&7 ! &! KX2 8! &! KX & ? 9 0. M & 4 !! 8  ! m  m !  |&! &! ! &! !   @! L! ! !! L!x !! !x $&š  !   ؚ !f ! ;  ! !    !V ! 8  ,  ! : & 6 ! X& $ D X&  @/ ! `  ] X&  `/ !   v X&  / !x & &@7 $ .:F8? (&9 &!k !! 8  ! m  ʛ ! |&! &! ! !!   ! X&! ! P! g   & &?6 !Ŀ & .  1  , C ! ֩  C 2  ! X&! P! :! -z  |&! &@6 #< :96 !֗ ! P!    !ɶ !  |&! P! X&!  |&! & ! ! ! ! !  0 . & D"  0. > $ .:F8L? (&9 ! ! [   ,&7  0&7  4&7 ! &! KX & ? 9  \& .  |&! P! X&!C! !     ,&7  0&7  4&7 ! &! KX 8! ^e  8! &! KX $ .:F8L? (&9 ! ! [   ,&7  0&7  4&7 ! &! KX & ? 9 & ? 9 0.  & 4  !! r!x |&! $&c  !! r!x |&! $&c  \&  @/ @ H!   y H!f@! H! ;  H!@! H!   H!V@! H ! &! 8  H&ɞ H!@! H&! !  H&? H&?7P H& H|& H!h5  H h& & / ! 4  /  H ! : & 6 H!; H& H!@! !   P H& !   { !   { $ .:F8L>{ H!@! 4" H&@ !    !   H& " H&   H ! &! C  H & & H!  7   H ! $: & $6 H!@!  H  & &- H! 8  - $ H $! (: $& (6 H!@!  H  &! H&! &!C! &! $ $p H! ( ( f H!#@! H!@! H! HX& $ ( HX& ( (@/ H! ,` , 0 HX& 0 0`/ H! 4 4 8 HX& 8 8/ H!b ! 8 H 8! 8X&!  H|&! H& H! ! ! H! H! H\&@.  H! <m <  H!@! @@ !! r!x & $&=  !   S !f ! ;  h ! !   } !V & !   &! H&! &!C! &!   ! !! 8  ӡ ! & ! X& $ X&  @/ ! `   X&  `/ !   . X&  / !x D & ( &  &" , 0 4 8A <A @A ,&! !   o & &   A7 ! &ڢ &?6 C  ! X&! ! ! -z  ڢ &= 96?6 |&! !   ! &! C !ɶ T!  |&! ! X&! T  |&! & ! T! ! h . 2 & |"  \& . &@7M !  |&! ! X&!C! !     ,&7  0&7  4&7 ! &! KX p! &! KX & ? 9 h. & l  T& & ӣ & ! m  !  !! r!x $&  ! 8 8  !f ! <; < * ! ! @ @ ? !V &P ! &! !  ! D D o ! H  H! H&! L8 L X& $ P X& P P@/ ! T` T X X& X X`/ !x \  \! \&! C ! ` ` &! !# d  d &! dH&! d&!C! d&! h hH &  " &@  ! l  l p  p H p! t t H & " &  &@7\ ! &{ !! l8 l { ! !!  ! l  l! lX&! ! P! pg p !9 & &?6 $C , ҥ ! t֩ t ҥ $HB t  t! tX&! P! $! x-z x |&! & $B86?6 !  !ɶ ! t  t|&! P! tX&!  = |&! & ! ! ! !b 0. [ & D"  x 0. x \& . x x&!! !?! | ( | (> !   |&! P! X&!C! !   ۦ   ,  ,&7 0  0&7 4  4&7 ,! &! KX 8! &! KX  & ? 9 0. & 4 ! !! r!x $&  ! 4 4 3 !f ! 8; 8 H ! ! < < ] !V &n !֗ &! !  ! @ @ !֗ X& $ D X& D D@/ ! H` H L X& L L`/ ! P P ק T X& T T/ !x T  T &! TH&! T&!C! T&! X X< &  " &@  ! \  \ `  ` < `! d d < & " &  &! P! \ \ T & g ! P! `z ` g & & &! &! P! d d ! ! !ɶ ! d  d|&! P! dX&!  ʨ |&! & ! ! ! h  h! h&! C !b 0. & D"  l 0. l \& . l x&!! !?! p $ p $>, ! t  t|&! P! tX&!C! ! x x x |  (  |,&7 ,  |0&7 0  4&7 (! &! KX 8! &! KX | & |? |9 0. & 4 ! &! ! ! ! ! $!v &! !  &!], ߩ  & & (  0&  @ (L 0& &! ! ! ! ! s ! @&  3(L ! ! s ! $@& $ J(L (( !    d  hl n n  !   X  !    X  &  @ &! !      |&. ͪϪ  |&. ߪ |&.   &.   &.   |&. "$ $ ,& 0m  , d& &  , h& &  , p&! &! 8! , l& & $T, \h& \!   \(& \h&  \,& \h& \h& v  \ & d& \&  \ & h& \ &! p&! 8! $ \ $& $l& \X&C6 \!o, r \& r \! 8 ( 8 \! <p , < @ \ @T&! @,&! ( &!! D 0 D H \ HT&! H,&! , &!! L 4 L 4 0r \! PN \! P! Tx TT $&   $&   A7 $&! ! l  $ ! &!  ! $&  ! ֩  ح & !z & X&B6 &  & & & !      6Z  ,&X7 0&\7 4&`7 h  ,&7 0&7 4&7 h yD   yD ! +e C ! N ! !  $& ~ !! qs ! ! ! !! t !O &O !   ŭ  (& ̭  ,&  O & O  &  &  &! $!  $! Ѫ   & !   %   (&2 ,&& 8   ,&2 (&&  &:O  & a  &  O  O !     O  & &  O !z  & & & &  \& T& &?  ! &! k ! X&D6 & d&B !o &@6; O  &:O !     &  O  O  O  O  O  O  O !z  & & & $ .:F8?b & h & T& X&D6 ! N ! !  !o &@6; O  &:O &  O  O !    1 !z  & & & &  \& T& &?  ! &! k ! X&D6 & d&B !o &@6; O !z  & & & $ T&@ .:F896 & X&4C6 ! N ! !  !o &@6; O !   O h& X&  pB6   &  а h&  а & &                      O ! r  O &:O &'O ! X HB4O $ T&@ .:F896 `&. h `&. ` 333? c L> fff? n > 333? $  .:F8  ȱ    ȱd  ȱ  & & & & X&D6 ! N ! !  !oE  0    0d  0  & & & !    &!! 8! &!X! 8! & X&D6 & !oE & &pB6 !o &@6;  ! ֩  & !z & X&B6 &   & & & !o  , !Q , ! &  ` h! X ( X ( Ӳ (`  h" $ $ A6 h! ! 0!! ! \ , \ , 0` ``  $  @ !J ! $ 4 I $ &! ! ! !2 ! s (! ! ,'! ,' (& (!r (  $  X @ c! ! $ 4  $ &! ! ! ! ! s (! ! ,'! ,' (& ($ ^  !   ^   ٳ  &! ! ! !r !2 ! s ! ,! q  ӳ $  &  ^ @ $$(^  !  ^   < 0! !   6  &! ! ! !r !2 ! s ! 4! $q $ 6 (G  & ^E @ ((  v  $&#! !$  &#! !$   p &   $&#   &#  Q  $&#  & # L ! ! !  ! ! 6#  ٴ  &  #. &  &# Ĵ ! ! #    &! " !   &!  &!9$ ! ! #    ! ! #  ! ! #        g &! " !   &!  &!9$ &! " !   &!  &!9$ # m M #r #R ! " ! ! &!9$      # a ŵ z׵ # 0 ҵ 9׵ #_ ߵ  &  # A Z  # &  &  &! " !   &!  &!9$ # ! ! '! ' &   , ] !   W / ] / $  ,&  r   , &! &! _Ƕ  , &! X&!    ,&  ,0& ,&  , &! &! _$h !! D!  p$&" p0&" , p$&" 4 4 p&:6 8 p & < p& @ p(& pT&  T T/ X p \ X&@. \ 1 X & \1 T T / ` p d `&. d P ` & dP T T/ p&. ^ D a D p&?n T T/ H p&" p|&! ! h ! X&! !   \& &   &.    h&  $  $&. ͷ  з  $l&  ,  ,&. (  ( ,p& ( 4  4&.  0  0 4t& 0 <  <& . ! 8 $ 8 <x& 8 D  D&@. = @ @ @ D|& @ L  L&. Y H \ H L& H T  T&. u P x P T& P \  \&. X  X \& X d  d&. `  ` d& ` h  h& h& l  l& l& p  p& p& t  t& t& x  x& x& |  |& |&   & &   & &   & &   & E  H  &    & _  b  &    L& y  |  &    P&    &    T&    &    X& ǹ  ʹ  &    \&    &    `&    &    d&      &    h& /  2  &  ! !  ! !    4 ,&7  8 0&7  < 4&7 |& ;  ! +e x& ;  &( & ! ֩  &!h &<ú &ú &!h   x& &0. $&  & x&  &       $& 9 $& &! ! ! ! ! s ! @&  79 4 D^ &  S  X  [   $,&"  A7 !  .4 D" $P" Tf  ! ! $ 4ֻ 0Tf 0 0\& &! <!  !p $& @" 4& " @& $" 0& D \& `& 44    &! $! q    \&  ߻   \& \&Tf Tf       Tf  d ,f&Tf Tfd ,Xf&  &  )  , P  S    $ ,& v  , & r x&PvB$: ,|&$: ,&<$: ,&P ,\&($:  , & &B$: , &ʼ &ʼB$:  , |& &2B$:  , x& &B$:  , & &( B$:  , t&" & "B$: , l&8 & 8HB$: $$ & HBk &(SBk & ^Bk &<iBk , ! ֩   & &! !  ! Ѫ   &  ! X HB , ! ֩  ӽ &! !  ! Ѫ   &  ! X HB    t (x&# t (&. t (& 9 t (&<D t (&ZV (\&(V t (x&!&! !?!    ?r t   ( 0&<(F 0&P 0\&((F  0 & &(F 0 & &(F  0 |&־ &2־(F  0 x& &(F  0 & &(F  0 & &(F 0 &. &(.(F $ 0 $&D $&D(F (((  0 & & 0T& 0& 0&! 4! 8! 0x&!,! !?!    p}? 0X&OG6  $$ 0X&B64C 96pA $.:F896 0(& 0& 0&? ( x&!,! !?!   = &                 (&pB7C? 796! $ .:F8 : (&  ! X HBI   x& ` X&   &r &   & &  X ! !      T&! ,&! ,!!      X X  \! ! 8! ! !     X ! \! H & X! d! ! P  P $ `&! D!  ! d! ! T  T X ! !  ! !  ! !  ! !  ! !  &   0 ,&" $ .:F8 > $ .:F8? $ 0 0HD .:F89B67  $ 0 0HD .:F89B66 @? $ .:F8? $ 4 4HD .:F89B67  $ 4 4HD .:F89B66 $ 8 8B@ .:F8?7996 <!  ,&!  ! ! 0!  &!! ~   $ H ,&7 ( L 0&7 , P 4&7 $! b  HC  B $ $  D9 79 ( (  D9 79 , ,  D9 B79  0 ,& $6 4 0& (6 8 4& ,6 0 4 8HD7 <! 0!  ! ! !  &!! ~  @ P P?6 H!  &!   .  0"  &  _  0"  P\" d & &J d & &"    A A A !ɶ h! |&! ! !  h"4 h!! 4! x&!! !?! t t x&!%! !?! x l x x&!$! !?! | p | L>  h"4 !ɶ d! !    0  ,&7 4  0&7 8  4&7 0! b \  < 05 @ 45 D 85 L &?7& $ .:F8 l L & &?7& $ .:F8 p& &@ p96 &1 L L K &B L K &?6 & Z ` d ` ` C d B > \ ` d6 |&! 0! C! L!    h"4 \ ` d7 |&! <! C! L!    h"4  h"4    &   (&6 hL>? 79>6 333? $ h hL>@ .:F8?7996 & h $ .:F8)\o?  \&  0 & H $ 0 ( 4 , $!b $! P! !d \&. G  5  5 5 $ .:F8fff?k   <6   @6  D6  \ ` d6   06   46  86  \ ` d7   <6   @6  D6 |&! ! C! L!    h"4  \&  0 & H H& H   h"4,  4&  @ ,R  8   @ ,R , P 4& &! ! ! 8 &! ! ! ! ! s ! @& ! ! $s $! (@&  ( P,R ,,$  2 ,&! \    2 4& ! \    2 4& 7 2 4&  4C  C7  4  C6  ? 09$ ? 059$ &  X$$ ! !  x  6 |  6  6 p? x p x9 | p |9 ? 9 x  x6 |  |6  6 t  x t7 | t&7  &7 ! d! KX ! ! d! xT x [6 ! | ` | \ `@. X `8. L     " x" x!  8. 8/ X 8.   x" " 80 $! !  ! ! ! ! ! ~  D? p8. . $! 0!  ! ! ! ! ! ~  D? ,? t   x!  T @.  \  K T  K   0 7 4 &7 8 &7 ! ^e P   \ 0" $! !  ! ! ! !@! ~     07 & 47 & 87 ! ^e P   T 0" $! !  ! ! ! !@! ~   07  47  87 ! ^e P   P ? o: P9  ?  o: P9 H  8 H H D9 H L L H L33s? L6    6 )  )   76 &  x L x&!.! !?! l l x&!-! !?! p p x  xd& x&u t x t t |  |d& |&  ! !  ! Ѫ      ,&7  0&7  4&7 ! ^e       &     ! !    !   0  &  !   # !   # ?3 !   3 $d@@7[ 4(d7 8,d7 <0d7 ! ^e  E[   4 ,&7 8 0&7 < 4&7 ! ^e  ! Ѫ     zE 9aD6   9 ! !         !   C  @. I @. I    4CB E877    &! H&! &! ! !       @F   !     ,& 47 0& 87 4& <7 ! ! KX @!B! ! T  ! ! C ! m   & 0  &@7  & |& &  & ( @   -  & ' ! !   ' ! Ѫ  ' ! !   '   &! H&! &!C! !   "' 8  & (6 @     & Jy ! !   Xy ! Ѫ  dy ! !   ty   & ( @ @    &  ! !    ! Ѫ   ! !      &! H&! &!C! !      & ( @           & % ! !   3 ! Ѫ  ?  8 ,&7 < 0&7 @ 4&7 ! ^e    9u   &! H&! &!C! !    ! !      &     &  & ( @  h" t" & &! <!  &@ 6 x T"   x H&7 | L&7  P&7 ! &! KX L& x"  x&!! !?!    x&!! !?!   33s? x&!! !?!  ? 9 & 7 $& 7   &! &! !  x&!! !?!     x&! ! !?!     x&! ! !?!   x&!! !?! $  $   7 x&! ! !?!   x&!! !?! $  $   Q x&! ! !?!     k x&!! !?!     x&! ! !?!   x&!! !?! $  $   x&!! !?!   x&!! !?! $  $  8 &! <!  <!   $$ $.:F8= > 9  T x7  X |7  \ 7 $?   $ L89   $ L89  ? L89 &F &?6 X& " d& T" fff? (  T (d&7 X (h&7 \ l&7 ! ,^e ,E 0  0X& 9 0\& 96 0`& 96 333? 9 (  ( &! (H&! (&!C! (&! , t ,; t  T"  A6  ,&"   &:6   6 ! ! ! ! !  &!! ~  (? p P  A6  0   0,&7  00&7  4&7 ! 4+e  4 8  T 8d&7 X 8h&7 \ l&7 Bj ! <^e <D L?# & #   T ,&7 X 0&7 \ 4&7 ! +e   T x7 X |7 \ 7 ?   L89   L89 ? L89 @ T" H H?6        L! &! @!!  ! ! ! !$ A 9 8;!(=!, !0 !4 !8  L"  > @  T @,&7 X @0&7 \ 4&7 ! D+e  D T x7 X |7 \ 7  ! Hb  H L8 L  P   T  L 8 P996  X  L 8 P996  \   8 996 ? . \ 4&A6  T"  B7 ! T! 0 0! 0! ! P!! ~   " $  \A7   4A7 ! ! 4 4! 4! !  &!! ~  4 7! 8O' 8HB , 7 0 7 4 7 ! <^e <aE , 7 0 7 4 7 ! @^e @@F 4 4?6 ! ,! D D! D! T! P!! ~  (?  " 0$  A@ 0.:F8?799? 796 4$  A@ 4.:F8?799? 796 8$   A@ 8.:F8?799? 796 m  &"  A6 ?m    m  &  T&  H&"    A A A 0  0&! 0&! !! x! 4 4 j 8  x 8H&7 | 8L&7  P&7 ! <^e <Ej  x"  A7 ? t ! 0  0H&! 4 4! 4! ! 0 &!! ~  L& ,"  L& " 0   0H&7  0L&7  P&7     ! 4+e  4 C C > C89?6  9 L?/ !b  4$ 8 2 & 8 8>@ 4.:F8?799? 796 &  ! &! KX 4$ 8 & 8 8@ 9@ 4.:F8?799? 796 < & <! @\ < @ D$ H & H H@ 9@ D.:F8?799? 796 L & L! P\ L P Ԙ fff? &?7 &4C T & T TC7 X  X& X&" \  \&! \&! [( L" X" d 0& d! d!  d@ 0x&!! !?!    0& 7.v 0$& 7;v 00&=7Gv 04&Qv 0x&!/! !?!  <  08& $ .:F8 < 04& <6 08&  08&?6 <7 04& 0& h! ^e aEv  0 h L& H&7 l P& L&7  0 p T& P&7 h! ^e @F 8B  8HB h! @! KX 0&! 8! @! T  v !  0 H&!  ! ! L&! &!! ~  ?= 4 d =v  0 &! &! <! $ 0,&" , , 0&:6 0&! 0! !!wh $ $ 0 `9  d966 ( ( 4 `9  d966 , , 8 `9  d96 h66 zD  $  096  (  496  ,zD 896 @ $ $  096 ( (  496 , ,@ 896 t! $! L! X! ! 0 &!! ~   @  d  0! !   v  d  d@ E H. EzD |9 @E $?  $ <:zD $ |9979 Ev . _ 0\&. h 0&!ih 0&!i $ 0\& $ $0 ( (!!  (! ! <s ! <! ! ' ! ! @q @ 7 D" P" \" h X& h h. l ,& l D l P p 0& p H p T 4& LQ (  M  & G ! !   G ! p p  ,  & G 0 DG 0 PG 4 HG 4 TG 8 LG ! ! t t D ( V ( & (V @ ( Q t \& t t / x  , \ xH&7 0 ` xL&7 4 d P&7 ,! &! KX x&!! !?! | 8 | $  &  A@ .:F8?799? 8796  & ! \   $  &  A@ .:F8?799? 8796  & ! \     &!A! &! T  Q &!iQ !z ! Dq D Q H X& H H. $ ,!! a  g 0"  ,!! a  z 0"  ,! 0!  ! !wh$0   A & 5  <  &  5  @  &  5 & 8 5 D D & &6 D& & &6 D& & &6 H 0 H & &6 H& & &6 H& & &6 0 &  &  D d  D  &  &    H  H  &  &    00 T" `" H& T  X TX& X TT& X TP& X ! ! !! #  ! \@& D \ D  ` ` ` ` D!! ! l! x! d | d !v ! l! l l@ !p ! !    ! (! S x l7 | p7  t7 4 l x6 8 p |6 < t 6 h? 4 h 49 8 h 89 <? <9 (! lO' ,! pO' 0! tO' @ l 9 p 96 t 96 @? @9 !i ! !  x @5 4 ( x96 8 , x96 < 0 @596 P& " H& ! |  |H&!  ! ! ! | &!! ~  ?  | I ,& | 0& 4& & ,&" & T& & & &  &A $&A (&A  ! ! ! $ $2 (& $2 (&! O' $2 &! O' @ @  96  $2 (&! O' $2 &! O' @ @  96 $ $& $ U  @5 4 ( 96 8 , 96 < 0 @596 H " P PA6 p H" x xD7 H! p! D! ! !   $ '  $2 D&!    $ $' $ $ $ & $, &" & $2 D& &A &A &A  & $& (& $ $2 (&  $2  (&! O' $2 `&! O'    &&    96   $2  (&! O' $2 T&! O'   &&    96 $ $& $ ` ,& | 0& 4&   ! ! ! $ $2 (&+ $2 (&! xO' $2 &! |O' @ @ x |96 M $2 (&! O' $2 &! O' @ @  96 $ $& $ x @5 4 ( x96 8 , x96 < 0 @596 H " P PA6 p H" x xB7 H! p! D!! ! | | $  $2 D&!    $ $& $  $  & 4" & $2 D& & l 47 & p 87 & t <7  & x 47 $& | 87 (&  <7 $ $2 (&S  $2  (&! O' $2 `&! O'    &&    96   $2  (&! O' $2 T&! O'   &&    96 $ $& $  ,& | 0& 4&  d p! ! (!! (# dw )! T@& @ T @ dw X L X H X D X @!! ! (! 4! \ P \  ( 46 , 86 $ 0 <6 `?  ` 9 ` 9 $? $9 tP& " tH& t,& P t0& t4& t& l,&" t& lT& t& t& t& t &A t$&A t(&A ddH XH& ( X , (X& , (T& , (P& , T! ! p!! p# H q! 0@& 0  H 4  4  4  4 !! @! X! d! 8 $ 8 X d6 $ \ h6 ( ` l6 <? < 9 $ < $9 (? (9  " " A6  "  B7 ! ! 0!! ! @ , @  U 2 0&! D D OZ  &  , =  , X& " X& 2 0& X& X 7 X& \ $7 X& ` (7 X & d 7 X$& h $7 X(& l (7 X,& $ X0& X4& H HH &  &!!  & &D&  &  & ,  <F6   , 4&& = , 4&&D& =  , 4&&D&    &      , 4&&! 8! ! , 4&& $ 4  , $&&& $& ( 4 (& , (&& , ,,  ! &   (    $&     2 $h&&! (!   &  $& (    $&    & % <& ,&  j  &     , && :^  , &&,&  ^ , &&D&@7^j &  ,< L !! ! H ! !  !! e ! 8 !2s!     ! ! L!!    ! L! k#   !      !2 ! !$ <  !( ! !!  ! ! !$ <  ! ! k#   !i ! !     $ $ D ! ! L ! <  ! ! ! . 8<  ! ! !     V     ! ! a  f<  ! ! !! #  !  @&             !! ! ! ! ! ! ! !       2 &! \ !  \ . L &     & $    $ 2 L h&&  $ 2 & L &  &   ! !  k#   <  ! ! !!     8 4!| ! !$ <  !       2 &  !u ! !!     e 2 &! !  k#   !   2 &    !       R   !E ! 2 &!$  '  !( ! !!      ! ! 2 &!$  ! !  k#   D ! ! L !      D &  1  1 $ ,  $ & L  $ & 1 (  <& ( 1 @& ( @71 D T&! ,  ,   L !!  0 D  0 T&! 0 ,&! L &! 0 X&! 4  4   p L <& #< :96@6 <  ! !  k#   . D ! ! L ! y   $ D & $  $  ( , $  ( & L  ( & ,  $ <& ,  $ @& , @7 D T&! 0  0  ) L !!  4 D  4 T&! 4 ,&! L &! 4 X&! 8  8    L <& #< :96@6 <  ! ! k#  < ! ! $ k# $  T ! ! ( k# (   ! ! 2 $&!! ,  ,   & ! 0  2 & 0    G< <   <& <& A6 @& ,&! !  \& (" ! !   ! !! T \&! ,! $! d!( ! P!! `H& ( !!  ! ,! P! P ` P&! P&! P &!$ P&!(2sQ !! U ! ,! P! P ` P&! P&! P &!$ P&!(2s \&! ! oT8  0$ C 0.:F89  ! $! 4 4! 4!wh @|&! $! C!! D D& $" 8( " 4& 0<&  4& 0! 4! ^ 4 &! @!   8  B  B  dB 0! T! ! l    ;  0&   0& 0! 4!   " 0! !  4& . B 0T&!   B !!   4&  4 &  ! b =  $ C .:F89  ! !  ! !wh < 0 0,&" 8 8A6 @ 0  96 4  96 8@ 96     A   @ ! ! $!d 0\&. $ $5 ( (5 , ,5 <  0|&! ! C! <!   Z 0|&! $! C! <!   Z  0\&  0 $ $ $ $ 96 ( ( $ 96 , , 96 0|&! $! C! <! 0<&>7 0$& s 0&  0$&š 0& (xPe x{ X  XH&  & XD&@7x{ H&  & D& 4! \  \T&! \,&!  &! \X&!d!! !$!(!,!0 D. m H. y ` X H `2. `3 X y X!! ! d d! d! h \ h \ y ! \! d! ll ` l ` y p & p J p J & ! ! t t d ! d! x{ d!! y D. y L. yxx, 4&! ! $!p 4&!    @ $ < .:F8?67 L D @ D! X! !   L p# D& L! 4! < T  L! T!  4! D! ?\  d @ d d D! X! !    4&! P! p \. / 4&! P! p X!! !$! X!! !! !  4&  a 4&! P! p !ؙ! G !E ! 5 4&! ! T!!  ! ! ! !$ !( !, !0 !4   !+ ! $ d ! ! $ d  4 $& d ! ^-  d F  d 4x&!#! !?!    $  .:F8? &:8d $ .:F8 d 4&! ! T!!  ! ! ! !$ !( !, !0 !4   d 4&! P!  $ 4 $! (: $& (6 4! 4&! P!  4&! 8!  P   ,  ,   & &   (|&! ,&!  C!!   2 && ,&   2 && ,& &   & '.   &.   L 2 & & & &  & o p&  l&     Q  Q  Y x& _ x& &  &   & t&  h&  & &  &    &   |&  &  !! &!$  & &! ! ! !! k#  !* , &   2@& ,& (& 4&  ,& (& 4&  ,& 4&  (& 4&  ,& 4&  (& 4&  (d \&" $d   & &  !! &!$  & &! ! ! !! k#  & &!h |&! ! !! p& t&   ! !  ! !  &! ! ! b    &! !   & & ! !  &U H&!  8. U\  & ( 0$& 0P&r 4(  0 T&! ,&! $&! X&!    $  $ $ 0P& 4! 0&! 8! 0&( 4(( , a a  ^ ^   c $  .:F8 :9;    '  (&   & , & &  , &" & & & &A  &A $&A (& 4& ,& 0& (P&   d lo d  &Z  &  ' &z x&!! !! &! @! ! @!! !v &! @!  &  @!! {! &!2s &! @! m #m &!!  #f  &!!  &!!  &! ! !   &! ! &!   & &   &  & & e  \&  . ! ;  !ź ! ! !< !} ! ;  !   ! $& !   & &A7 ! '.    ! : & 6 ! & sx    !  $&    & 2   'z 2 ^ &! &! !yx &! ! !!O! !!2!$    & &   &  & 8 H! $qG $    &  ( D ( & (  &   , @  , \&7  ,& `&7  @& d&7 ! 4^e 4B @(&    & &  84   q & e  &! @! $q $ )e ( <  ( \&7  (& `&7  <& d&7 ! 0^e 0Be <(&  v &  &  4 !! 8!! p  p  !( ! !! t t  ! ! xk# x ! ! ! | |   " , " 4 4B7 8 " @ @B6 ,! 8! H!! !  D  D   & H  ! t  t  D!  ,   !  (  !5! E !!!)! '!!!! '!!!! '!!ؙ!G ! '!!Ș!! '!!De!! E !!4d!! !!, !! !  !! $ !! X!  !! $  d !     ! ! !!    #* ! @&   d d  !     "d  &! "  $ &!   "$ 80 58 !  0      &! ! ! ! "  f !6 ! $s $! (" ( h !4 ! ,s ,! 0@& 0 } @! ! 4 4  &  & 0 @ = 88 ! !   ,!      ! ,!  &!!  \ ,, , , d! 0 0 (  (X 4 8 ! 0 4 0     &! (! ! (! 4" 4 5 (!6 ! 8s 8! <" < 7 (!4 ! @s @! D@& D L d! ! H H ! (! L $ L   $ 2 &    P 2 P & P & T 2 X h T X& T' X&  '  }  &   m 2 & $ 2 h&   &  l   & 4 @ \\8( D,`& H D! ! $!( D,<&! ! 6#8<( H,`& !<H H! ! $! !( H,<&! 8q 8 @<H ( H,`&<<8 ( $ (  (  (   @! 2 D&! ,  , . 0   0& 4 0 42 &  42 D&  . 0   0& 4 0 42 (&  42 D&  0 $ $ 0& 4 0 42 (&  42 D&  &  H _ H , H ,2 D&! !  ,2! H H & 0 H 02 D&! (! $ 02! H H $& 4 H 42 D&! (!  42! H H & H88@ H& L H&! ! ! H&! ! $! !! ( ! ! !2s H&!! ! H&! L! !@ ! ! J ! ! ! x D x ! ! D!J | $& | q | |   <& P   P $ P! ! $! ! ! !!  ! P!  ! P!  !q  <& * P  . P $ P! ! $! <& <&! T! $!   <& & t ! ! !!  ! P!  ! ! ! ! T!!  ! P!  ! ! ! !!  ! P!  ! ! P!  ( <& P (  P $ P! ! $! ! ! !!  ! P!  ! P!  !q H> D:;:9?6; H H ? L  D:;:9 6; L L <& <&! T! $!   2 & <& @ 2 &! ! $!   <& & | ! ! !!  ! 2 &!  ! ! ! ! T!!  ! 2 &!  ! ! 2 &!   &  H 1   2 & <&  2 &! ! $! ! ! !!  ! 2 &!  ! ! 2 &!   &  H  l D '2 & <& $f D '2 &! ! $! ! ! !!  ! D '2 &!  ! D '2 &!  !  &  L X `! ! ! L @ L `! ! @!J `@&. = P `$& P  P P  ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! D> @:;:9?6; D D H333? @:;:9?6; H H   2 &! ! $! `! ! !!  `! 2 &!  `! 2 &!  !  &  D  6 @ '2 &! ! $! `! ! !!  `! @ '2 &!  `! !  !  &  H  P `$& P  P R P ( ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! DL> @:;:9?6; D; D H333? @:;:9?6; HN H   2 &! ! $! `! ! !!  `! 2 &!  `! 2 &!  !  &  D S   @ '2 &! ! $! `! ! !!  `! @ '2 &!  `! @ '2 &!  !  &  H X ! ! ! x  x ! ! !J  Z    R  <& " P $ & P  P! $! $! ! ! $!!  ! P!  ! P!  !Z  <& ` P  d P $ P! $! $! ! ! $!!  ! P!  ! P!  ! ( <&  P (  P $ P! $! $! ! ! $!!  ! P!  ! P!  !Z H? :;:9?6; H H L> :;:9?6; L L  E 2 & <& ? 2 &! $! $! ! ! $!!  ! 2 &!  ! 2 &!  !  &  H  <&  <&! T! $!    '2 & <& u  '2 &! $! $!   <& &  ! ! $!!  !  '2 &!  ! ! ! $! T!!  !  '2 &!  ! !  '2 &!   &  L cZ  U  '2 & <& O  '2 &! $! $! ! ! $!!  !  '2 &!  ! !  '2 &!   &  L X `! ! ! L @ L `! ! @!J `@&. , @  @  @ d ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! T? D T @:;:9 T6; D| D H> @:;:9?6; H H   2 &! ! $! `! ! !!  `! 2 &!  `! 2 &!  !  &  D   % @ '2 &! ! $! `! ! !!  `! @ '2 &!  `! @ '2 &!  !  &  H  @  @ : @  ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! ! ! $! `! ! !!  `! !  `! !  ! D> @:;:9?6; D# D T? H T @:;:9 T6; H; H   2 &! ! $! `! ! !!  `! 2 &!  `! 2 &!  !  &  D @   @ '2 &! ! $! `! ! !!  `! @ '2 &!  `! @ '2 &!  !  &  H X (!     ( (&2 ,&&    ( ,&2 (&&    > > 2X& (!\> (!> (!s> (! h t! D! $!   2 t&! ! $! t p& x p! ! !!  p! ! ! D!!  p! 2 t&! J  &  x Qh88 8 !  8      &! ! ! ! "   !6 ! $s $! (" (  !4 ! ,s ,! 0@& 0  @! ! 4 4  2 &   &  & 8% @   m m 2d& @! ! !@ @! ! !@ @! $! !@ @! ! !@ @! $! !@     @! ( 2 (2 &! (!@  &  ( v8   ,&  ,4&.  2 &  (! !    ! (&!  ! (! r   (! ! !p^   & @   \, "  d! < <  d! @ @  D d H D& Hm  D& Hm  d& A6V  L$ d&@6 A L.:F896 m  L$ d&@6 A L.:F896 L d& L  L  d! ! !  d&!! ! d& P$ d&A6 A P.:F896 P d& P"  P"  d! ! !  d&!! ! d!!  ! d&! ! $! d&! !  ! d && d& "  d& d& d&! ! $! ! d&! @q @ 5 "  d! D& 8 D H, H N  H "  L d L$& 8 a  L8& u  d& d$& 8 d8& P d& P"  P@7"  d! d&B6 "  L d L$& 8  P L4& P  L8& P  d& d$& 8 d4& d8& d &pC7  d & T$ T.:F8>  X d@& X X0 d& T d& T"  T@@7"  d! d& \  , ! (! !-   $  w  w  2x& ! ! |  r! ! |  f! ! |  Z! ! |  O! ! |  ;!\ $! h! l! p! t! x! |!  d $ d& ( d& , d & 0" d$& H d& <" d)& M d(& L dH& P dP& X d,& d0& dL& \  ,& &   &   $! &! !  ,& $!! ! & ; `  & F `  &. S `  $! ! ! $! (! .     ,!! !  ! ,!   (&l <!!  ! \ | d \& \ d 8 d& 4 8   42 <& 8 h \& \ h 8 h& 4 4& 4  \ t! h< ` h t&! x! `! <! @! D! H! L!$ P!( T!, X!0lX!! O  P P .   `! T  T  F !/! $   !!! $     P P ]   `! T  T  u !! $   ! ! !! ! (!$ XP X&! ! ! ! X&! Dq D  @   @ !! 6#,  X! H֩ H  X! L L  !! 6#  !! 6# H X& H  H  H2& X&! D! !!! ! @! ! D!$  X&! D! !!! ! @! ! D!$  X &! D! !!! ! @! ! D!$  X &! D! !!d! ! @! ! D!$  X&! D! !!M! ! @! ! D!$  !9! ! @! !$  !"! ! @! !$  !! ! @! !$  !! ! @! !$  !! ! @! !$  !! ! @! !$  !! ! @! !$  !! ! @! !$ P4!|! $     2&  3  5~  &! ! ! ! "  ^ !z! s ! $" $ `~ !x! (s (! ,@& , ~ 2&!   & ( @ !!p! $     2&      &! ! ! ! "   !z! $s $! (" (  !x! ,s ,! 0@& 0  2&!   & ( @ 4 &! ! ! ! &! xq x ) 8 , 8 !! 6#, I ! |֩ | I !m! 6# | & | / | / |2& &! @! ! !! b! @!2sO &! @! ! !! R! @!2sO  &! @! ! !! E! @!2sO  &! @! ! !! 5! @!2sO &! @! ! !! *! @!2sO !! "!2sO !! !2sO !! !2sO !! !2sO !! !2sO !! !2sO !! !2sO &! @!  l! @! ! !! ! @!2s! 8! ! ! qs <  &&! <! (    2&      &! ! ! ! "   !z! s ! $" $  2&!  & ( @ v(<  , 2& ,  ,  0 2 4 0& 0 & 4&2 4&':  2 &  & @ @! ! $! (! ! , , s 0 4 8 $ 02 4& 8&! ( 02 4& 8&!  02 4& 8&! 2&&!?!   0 2& 0  0  2&& 2&&  & @ v<(    2&     $ 2&  $&2 $&':          & @    2&&! 0! (  J   & d J H!X! "  GX!!! ,x!! "  ^ , w!! $qs ! $! '   $ 2& $  $  2&&!!    & @ zv!t! 5   Z!! 2 ,!! ! (qs ! (!   & t G!!   , ! !  &!    #  2&    !#    7  > 4CH  C7 H 4H  C6    $! \ $  (! \ (  $ (n $ ( $7 ( $ 4C C7  4 C6   , ,   ,5 ,5 $ 6! \ h p&4C 0 p& 0 0C7 p&  px&!!  #? (799  &   p&4C 4 p& 4 4C7 8 p 8&! 8&! [h !! !    &.  D  & D D/ H  & H H.  &.  &p  &.  D & D Dp/  &. 6 H & H H/  &. M L & L L/  &. d P & P P/  &.  T X  T& X X T/  &.  \ & \ \ /  & .  ` & ` `@/  &.  d & d d/  &.  h & h h/  &.  l & l l/  &.  p & p p/ & $& &G &9C8;. &G &9C8;.  &G &9C8;.  t 2  t && t &' 2 && $  &  J  & , &  , 0 & 4 ,! ! 8!!wh t & tB t9C8 x  &  x&9 $ x&96 ( x &96 x&9; |  & 8 |&9 < |&96 @ | &96 |&9; (;! :'  & :  &9 &9;  &. = &  #&  &. U &  #'  &. m &  #'  & .  &  #&  &.  &  #&  &.  &  #'X  D 2 H ` L D H&& L; D HH&&:96! P\ L P  &   `! h:zD8!  `&! d:zD8! !Y <. # `&p. # < <. ! D ` D&! DH&! d!  H 2 L ` P H L&& P; H LH&&:97! T\ P T  &  <X>6 $      ,&   ^ #    &#       &   ,&#~   & ,  &  &  &  ,&#   ,&$X `!X  `2&    !(! `!$ X* `! &!  L ! ! $#  $  ?L (   (& ( ! !$! ,q , aL !!! 0q 0 oL !! 4q 4  ! 8" ! &! 8!9$ ! @" @' & &!! !L !! 8q 8  ! <" ! &! <!9$ ! D" D' & &!! !L !! <q < 2 ! @" ! &! @!9$ ! H" H' & &!! !L ! ! @q @ @L !! Dq D L `! ! ! $- $ -  ( 2 0 ( && 0; ( H&&:96! 4\ 0 4  &  ^ ( & ( ( d6 (& d ,& $&" H& $&" 8 P& 8 8 &:6 ,&! @ T& @ ! d! q &! &! _  H 2 P H && P; H H&&:97! T\ P T  &  XX    2&  E  G_ 2&& ,( &  & @ 3d! X l Xd&! Xh&! Xl&! X|&! X&! X&! X&!$ X&!( Xp&!, Xt&!0 Xx&!4 X&!8 X&!< X&!@ X&!D X&!H X&!L \qs P \ ! l&! `qs T ` T! P! d`! h&! Xqs T X T! T! ! T!! \ h \d&! \h&! \l&! \|&! \&! \&!$ \&!( \&!, \p&!0 \t&!4 \x&!8 \&!< \&!@ \&!D \&!H \&!L \&!P*` 2& #! / 2&   2&    !! !$     !y! $    $ ! &!   x&  x& !Y!  $ &! !$   &! $! $! !  &  x&!(! !! &! !    F &!   &  x&!! !! &! !     &! &!   &  x&!! !! x&!! @!! &! ! @!     &! &! &!  x&!! !!  # f   F   &!! 6   # m   M +  &!! 6  &!!   &   &  & &  |&  x&!0! !?!  &    & K!   K!t! 5 !:,   &!?!  (  !$  ,2&    $V! 0  !k ! .   &! &! ! |&! &! &! &! x&!  p#&! t#&! ! !! #!    ' $$0 0! 8&! $! X! 8&! !  8  8&  8 & T 8x& 8|& $ 8& ( 8& , 8& , 8& 8p#&! 8t#&! 8!! #! 8|&  8& $ 8& ( 8& , 8&! X! ! 8&! 0! $! 8  8&  8 &  8x& T 8& , 8|& /" 8|&! 8& ?" 8&! 8& O" 8&! 8& _" 8&! 8|& o" 8|&!00 8 " !C! !D! ,!1  , 2& , " , " 2&!X! 2&&  & @ "00!!!!ؙ!!!ز!ȱ!!İ "pԱ #  2&  #  #w#  ,&& (#w# 2&& 2&& 2&& 2&& 2&&  2& &! &! ,  & @ #%  #8!t! 5)!'!  #!t! 5!'! L#!! D #D , <' <  @   & #  #  @  % @   ' :zD8!2   $%   ,& & +$ !! 0% & <$ !! 0% &. O$ !! 0% & `$ !! 0% & q$ !! 0% !! p! $ &" @$ 0 <&" $ 0 &" < h&" H &" T &"  & & & $ d $ d ` & h & l & p & t & x & | & & & & ! ! 0  &  $t     2&  9%  ;%% 2&&   & 2&&  % 2&&   '   |%%  ,&& % ! :zD8!   & @ '%  2&  %  %%  ,&& %% 2&! ! ! 2& &! &! ,  & @ %! ! ! ! "  & !! 6#! ! 5 !! !!2s! ! 5! ! ! ! "  G&! ! 5! ! ! ! "  a&! ! 5! ! ! ! "  {&! ! 5! ! ! ! "  & !'! 6#! ! 5!! 5! ! 5! ! ! ! "  &y!'! 5c! ! ! ! "  &c! ! 5O! ! ! ! "  &?! ! 5)! ! ! ! "  '! ! 5! ! ! ! "  ,' ! ! 5 ! ! ! ! "  F' ! ! 5! ! ! ! "  `'! ! 5v! ! ! ! "  z' !'! 6#v! ! 5 ! ! ! ! "  ' ! ! 5 ! ! ! ! "  ' ! ! 5 ! ! ! ! "  ' ! ! 5 7  !!  !!!)! '!!ز!! '!!ȱ! ! '!!! ! '!!! ! '!!!u ! '!!!! '!!x!G! !!h!b ! _ !!X!K ! H !!H!! !! ( e( ( !! ! %    ~( (     (   2&  (  ( 2&&! !    & @ (( 64 (!      #)  &! ! ! ! "  ) !! $s $! (" ( )) !! ,s ,! 0@& 0 ))  &  & ,) @ ( 44  @)!      &  )  &! ! ! ! "  u) !! s ! "  w)) !! s ! @&  )) ! !    ))  &  ) @ L)$ )!  $   &  "*  &! ! ! ! "  ) !! s ! "  )* !! s ! @&  ** ! !    *-*  & $+* @ ) H >*!  H     *  &! ! ! ! "  r* !! s ! "  t** !! s ! @&  ** ! !    *      & H* @ I* !(!  !(   l *!  l  ?B   0+  &! ! ! ! "  * !! s ! "  +*+ !! s ! @&  +*+ ! !    *+      & l9+ @ * !L!  !L  <p V+!  p     +  D& k++  &! ! ! ! $" $ + !! (s (! ," , ++ !! 0s 0! 4@& 4 ++ D! ! 8 8 ++ 2 &   &  & p+ @ a+ ($  (.:F8 :9;  ,  '  , 2 &!t!  !t<$,  &   + !t!  !t<< !!  !! s ! ! !    , , 2&  ,  ,  , q , a , W , O , A , : , 2 , !   $ ffA .:F89;    , , 2T& , , , q, a, W, O, A, :   & ,P- ! !   ,P- !   , 4  & -P- !   - !   -P- ! !   '-P-   &! H&! &!C! !   P-\-  & @ , !   n-%.   &  - &  - &  - &  - &  -%. $ ,&" , ,A7 $!  &!  . -%. $ ,&" , ,B6 $!  &!  8. -%. 0 ,&" < ,&" 8 8?6 D D A7 ! H! T! `! 0! H! T! <! &!! ~   #.%. l 0.l. t&A7>.l. LF L J.l. , R.l. tx&!! !?! P ( P  |. T$ T.:F8 (|.l. T( T.l. t! X^- X .l. t&! ,!  ! \ t! `G+ d&, t!! \! `! h h! h! d! !$  t& t& llh .h/ p&A7.h/ LF L /h/ , /h/ px&!! !?! P ( P  2/ T$ T.:F8 (2/h/ T( T>/h/ p&! ,!  ! X p! \G+ `&, p!! X! \! d d! d! `! !$  p& p& hhP /P)0 X! < < /P)0 X&A7/P)0 @F @ / X&!! mP)0 , /P)0 Xx&!! !?! D  D  / H$ H.:F8 /P)0 H( H/P)0 X&! !  ! L X!! L!!  X& X& PPx 40x~1 ! L L C0x~1 &A7Q0x~1 PF P s0 ! T1) T o0 &!! mx~1 , {0x~1 x&!! !?! T ( T  0 X$ X.:F8 (0x~1 X( X0x~1 ! \1) \ 0 &! ,!  ! ` ! dG+ h* l&, !! `! d!! h! l! !$ o1 ! `) ` 51 &! ,!  ! d ! hG+ l/* p&, !! d! h! l!! p! !$ o1 &! ,!  ! d ! hG+ l/* p* t&, !! d! h! l! p! t! !$  & & xx 14 &A714 x&!! !?! @ < @ , 14  1 D$ D.:F8 <14 D( D14 H l& H 1 H@1 l&! !  !1 !! 6# LF L >2 P  P! Pl&! T T >2 X  Xl& X& *24 !! !!  & 3 XF X U2 &!! m4 p& r2 ! \G+ !! \!! 3 p& 2 ! `G+ !! `!! 3 p& 2 ! dG+ !! d!! 3 p& 2 ! hG+ !w! h!! 3 l  p lx& p 2 t lp& t 2 t 2 t 2 t 2 t p 3 ! xG+ !i! x!! 3 p& 3 !Z! !! 3 | p& | 63 | 63 | 63 | 3 $ .:F8?3 p& e3 p&! G, !K! ! !! 3 p& 3 p&! G, !@! ! !! 3 p&! G, !6! ! !! 3 $ x&!! !?!  .:F8 3 p&! G, !)! ! !! 3 p&! G, !! ! !!  & & h 4hf5 p&A74hf5 px&!! !?! < 8 < , 84hf5  N4 @$ @.:F8 8N4hf5 @ p @h& @& a4hf5 D( Dm4hf5 p! H^- H |4hf5 p! L, L 4hf5 ph&! !  ! p& PF P 4 T p T! Th&! X X 4 p!! !!  p& ]5 \F \ 4 p&!! mhf5 pt& 4 p!! !! ]5 pt& 5 p!! !! ]5 pt& %5 p!! !! ]5 `$ px&!! !?! d `.:F8 dQ5 p!! !! ]5 p!! !!  p& hhP q5P6 X&A75P6 <( <5P6 Xx&!! !?! @ 8 @ DF D 5P6 , 5P6  5 H$ H.:F8 85P6 X! H^- H 5P6 X! L, L 5P6 X& 5 X&! !  !6 !! 6# X!! !!  X& X& PP` *6` 7 h&A786` 7 H( HD6` 7  h&,&&  [6` 7  h& g6` 7  o6 @ s6` 7 hx&!! !?! P D P TF T 6` 7 , 6` 7  6 X$ X.:F8? D96` 7 h! X^- X 6` 7  h&,&&! !  ! h&,&&! \G, @ \ h!! ! @!!  h& h& ``  &,&&  %78  & 178  97 @ =78  E78 &A7S78 ( _78 x&! ! !?!   F  78 , 78  7 $ .:F8? 978 ! ^-  78 ! ,  78 &! D!  D!   78 ! !  ! &,&&! G, @  !! ! @!!  & &  88 &A7-88 ( 988 x&!!! !?!   F  Y88 , a88  y8 $ .:F8? 9y88 ! ^-  88 ! ,  88 &! @!  @!   88 &! !  ! &,&&! G, <  !! ! <!!  & &  8: ! P P 9: &A79: , !9: T & T 49 T 49 T 89: x&!"! !?! X L X \$ \.:F8= (&9c9:  9 `$ `.:F8 Ly9: d$ d.:F8>9: `( `9: ! d^- d 9: ! h, h 9: l  lh& l& 9 ! pG+ ,! p! 6#9 h&! ,!  ! pF p 9 &!! m: t$ x&!! !?! x t.:F8 xE: ! |G+ &, , !! |! ,!  ! ! ! !$!( r: ! |G+ &, , !! |! ,!  ! ! ! !$!(  & &  (x&!! !!    @   &!! X 0 X , : &! 4!  ! \ ! `G+ d&, !! \! `! h h! h! d! !$  &! l l! l! , ,& , 0 : &!! \ 0 \ , f; &! 4!  ! ` ! dG+ h&, !! `! d! l l! l! h! !$  &! p p! p! , ,& , 0 ; &!! ` 0 ` , ; &! 4!  ! d !! d!!  &! h h! h! , ,& , 0 ; &!! d 0 d , < &! 4!  ! h ! lG+ p/* t* x&, !! h! l! p! t! x! !$  &! | |! |! , ,& , 0 ; &!! h 0 h , < &! 4!  ! l ! pG+ t/* x* |&, !! l! p! t! x! |! !$  &!  ! ! , ,& , 0 9< &!! l 0 l , < &! 4!  ! p ! tG+ x/* |* &, !! p! t! x! |! ! !$  &!  ! ! , ,& , 0 < l&! 4!  ! &!! p 0 p , B= !! 4!!  &! t t! t! , ,& , 0 = &!! t 0 t , = !! 4!!  &! x x! x! , ,& , 0 \= &!! x 0 x , = !! 4!!  &! | |! |! , ,& , 0 = &!w! | 0 | , = !w! 4!!  &!  ! ! , ,& , 0 = &!i!  0  , :> !i! 4!!  &!  ! ! , ,& , 0 > &!Z!  0  , x> !Z! 4!!  &!  ! ! , ,& , 0 T> &!K!  0  , > p&! G, !K! 4! !!  &!  ! ! , ,& , 0 > &!@!  0  , ? p&! G, !@! 4! !!  &!  ! ! , ,& , 0 > &!6!  0  , Y? p&! G, !6! 4! !!  &!  ! ! , ,& , 0 (? &!)!  0  , ? p&! G, !)! 4! !!  &!  ! ! , ,& , 0 s? &!!  0  , ? p&! G, !! 4! !!  &!  ! ! , ,& , 0 ? h&! 4!  ! &!!  0  , :@ !! 4!!  &!  ! ! , ,& , 0 @ &!!  0  , x@ !! 4!!  &!  ! ! , ,& , 0 T@ &!!  0  , @ !! 4!!  &!  ! ! , ,& , 0 @ &!!  0  , @ !! 4!!  &!  ! ! , ,& , 0 @ &!!  0  , 2A !! 4!!  &!  ! ! , ,& , 0 A &!!  0  , pA !! 4!!  &!  ! ! , ,& , 0 LA &,&&! 4!  ! &,&&! G, T  &!!  0  , A !! 4! T!!  &!  ! ! , ,& , 0 A &!!  0  , B !! 4! T!!  &!  ! ! , ,& , 0 A &!!  0  , ^B !! 4! T!!  &!  ! ! , ,& , 0 7B  h& & B ! G+ 4! ! 6#B h&! 4!  ! &!!  0  , B ! G+ &, , !! ! 4!  ! ! ! !$!(  &!  ! ! , ,& , 0 B &!!  0  , IC ! G+ &, , !! ! 4!  ! ! ! !$!(  &!  ! ! , ,& , 0 C (! "  `C C  ! (! ,!    C ,0&. CC  C cC   ,! 0! PC  C C (p#&! ,! ػ    C 0! $&! 8! C   p x&. GD x!! !! ! ! ! d d GD k C ` L ;D m D `D ;D l D `D ;D !! !! i (D ! h$ `pB h9 ;D j 8D ! l$ ` l ;D ` `GD `6pID pp$ ZD>!     D ! ! ! ! ,! q  {D $D  & D @ _D  D ! ! ! ! ,! I  D $D  & D @ D$$( D>!     E 0! !   DD ! ! ! ! 4! q  D (OE  &  E @ D  DE 0! !   "E>E ! ! ! ! 4! $I $ >E (OE  & ME @ E((( `E>!      E  &! ! ! ! "  E 0! &! $ $ E  &  & E @ hE (( h  !! !!F ! ! @!   E &!-! n h! t#& F !! !! ! ! l! C  F h! t#& F ! l! x! z    %FF \&  h 8F  \&    HF \&  1F  XF h  `& fF \&  `&  $. qF  F $. |F  F $. F !! !!E  h  F h\&  F &! ! n h! h F t#&! t#& h   x#& t#& |#&  < H!! `!! D! `!  `  `G<G H&. G H!! `!! D&! d! !G e .G<G f wG !! `!! `! "  jG d! `! I  WG<G DD&! `! I  jG<G !! `!!G !! `!! `! "  G d! `! I  G<G DD&! `! I  G<G `! !  !   &G<G  H! ! ! 0 0 G  G 4$ D! 8QE 4.:F8? 8':8G<G <<(     H  &  0&# H  0&#- (H  &  ^H  ^H $  0&# $0 VH $9VH  ,  0&#&0'  & ^H  & gH  0&# -H!!  ,!$  2 4& : :9  &  H(( F  HJ ! ! F  HJ !! !! ! ! !   H d H !! !! !     I ! KD    & H  I ! !   IJ  KI  %I !! !! 1I !! !!  !    &! ! !J  & UIJ & ! !   I 4!     I &  &  & 4" & & & &A &A &A &I &. I !! !!   ! ! &! C  IJ & J  I !! !! J !! !!  !    &! ! !J &  !! !! !    &  & & \& $ T&@ .:F896 ! C X&  & J & X&J X&pB6 J & X&J X&D6 d&B & !o !&8 F  J~K @! D! F  J~K D!! !! $ @ $! ! $&! (C ( K~K D!! !! ! ,  , @&  @& @& 0$ @T&@ 0.:F896 @& D! 4C @X& 4 @X&lK @X&D6 @& @!o @!&84 F  KL <! @! F  KL @!! !! $ < $! ! $&! (C ( KL @!! !! <! ! ,  , <&  <& <& 0$ <T&@ 0.:F896 <& <X&pB6 <!o4 F  #LM ! ! F  3LM !! !! ! KD   pL !! !!    &! &! !M !! !! &@. L   &  &   & T&   & ,&" & & & &A &A &A M & . lM  & LM & ! !   ?M 4!     ?M &  &  & 4" & & & &A &A &A &M !! !!  !    &! ! !M   ! ! &! C  MM &  & & $ T&@ .:F896 & ! C X&  X&M X&D6 & !o !&4 F  MN <! @! F  NN <! @! $E $ NN @!! !! ! (KD  ( <&  <& <& ,$ <T&@ ,.:F896 <& @! 0C <X& 0 <X&sN <X&D6 <!o <!&4,, O    Nd  NO 4! 8! F  NO 8!! !! ! KD   4&  4& 4& $$ 4T&@ $.:F896 4& 4X&D6 , O 4! (N 4! (!  4!o 4!&,(, O 0! 4! N 0! 4! F  3OO 4!! !! ! KD   0&  0& 0& $$ 0T&@ $.:F896 0& 0X&D6 0 & 0!o 0!&((, P    Od  OP 0! 4! F  OP 4!! !! ! KD   0&  0& 0& $$ 0T&@ $.:F896 0& 0X&B6 0& 0!o(X `&! ! $! ! `&! Dq D 4PP d!! !! ! H  H PPP `! ! L @ L P d& P sP P P P PP @ @. @ @/ P @ @. @ @/ P @ @. `! ! @! ! ! ! `!! !!  `&! ! ! `! ! ! `&!! lX(, PNQ 0! 4! F  PNQ 4!! !! ! KD   0&  0& 0& $$ 0T&@ $.:F896 0& 0X&4C6 0& 0!o(( F  [QQ 0! 4! F  kQQ 4!! !! 0D&! !  ! 0c& 4!! !! 0!! !!  ! $  $ 0&! ! !(0 F  Q$R 8! <! F  Q$R 8D&! $" $ R ( 8 (!! (D&!!  <!! !! ! ,  , 8&! ! ! 8D&!! 6#0( F  1RR 0! 4! F  ARR 0D&! "  cR $ 0 $!! $D&!! mR 0!! !  $ 0 $&! $&! !(\ 8F 8 RS h!! 0!! < , < ( < $ < h!! 4!! 4! @ 4 @ 0!! $! (! ,!* , ,?6 $! D 0 D 0 S d! h! HF H S d!! !  d&! 4! !S h!! 0!! dp#&! 0! Hػ H  kS \& BS P` \& P&  P& `& ]S X\ `& X&  X& gS dp#& \&  0! $! 0! Lz L \& dp#& dp#& S dp#&`&  dp#&  d! h! PF P S 0!! ! $&! (&! ,&!2s d!z! &! 0!!  d&! 4! !\0 F  SBT 8! <! F  TBT <!! !! <&. $T ! $$ A $9 0T ! ($ B (9 @B8T C;T B 8d&  0( F  OTT 0! 4! F  _TT 4!! !! ! $  $ 0&  0& 0& 0h& 0!p! !  0&! ! !(( F  TT 0! 4! F  TT 0&!k! m 4!! !! ! $  $ 0! ! e! 0&!! l($ F  UYU 0&. 2U 0!! !! ,&! !  ! , &&YU 0!! !! ! KD    YU ! ,&!  !$( F  fUU 4!! !! 4&. U 4!! !! ! KD   U ! KD    U ! ! !  0&! ! $q $ U 0& 2 & ( F  UU $&! ! ! ! $&! q  U $&!P! n, 4! 8! F  VW  4&  V  V 2p& 4&! ! ! 4!H! !! V 4&! ! ! 4!;! !! V 4 &! ! ! 4!1! !! V 4 &! ! ! 4!%! !! V 4&! ! ! 4!! !! V 4!! ! V 4! ! ! V 4!! ! V 4!! ! V 4!! ! V 4!! !  8!! !! ! (  ( 4&! ! !,< D&! ! $! ! D&! 8q 8 :W@W D8& <  #tI h h! ,! $!  h  P! l! @! ,! l! q  rWW  ( \ $ ,&7 ` ( 0&7 d , (4&7 \! +e   W !  ( H&!  ! ! $! &!! ~  ?W  0! $! 8! hIW    $"H F  WY ! ! F  WY  l#tI  0X ! 2 $&! p! BW   l*X l    & 2 $& X  Y, X   T&! ,&! !!      T&! ,&! d!!      :>  &:9X !! 2 $&!!! X   :>  &:9X !! 2 $&!!! X !! 2 $&!! X !! 2 $&!!  !! !! !    &! ! ! F  YmZ ! ! F  ,YmZ &. mY !! !! ! KD    & XY  Y ! !   hYmZ  Y !! !! !     Y !! !!    &! &! !mZ & ! !   Z 4!     Z &  &  & 4" & & & &A &A &A &AZ  Z !! !! *Z !! !!    &! &! !mZ &  &D6 & $ &@ .:F8965 , F  zZ [ 4! 8! F  Z [ 8!! !! 4! ! $D  $ Z 4!! !!  8!! !! ! (  ( 4&! ! ! [ 4&  ($ 4T&@ (.:F896 4& 4X&4C6 4!o,, [ !! !! &. [ !! q  ^[ (& !   [ !! !$! !  <&  [ ,& !   [ !! !$! !  <&  4&  & [ & . [ (& ,& <& 4& [ &@. [ !! q  [ (& [ ,& 4& D P!! !$! ! @KD < @ < \ <2 & DH T!! !$! ! @KD < @ P! <! D D 1\=\ P&! !  !pHd  p! ! ! \ \ V\d] `  ` ] `!j\ `2& , \] l! ! H] l! ! J] l! ! L] l! ! M] l! ! N] l! ! O] l! ! P] l! ! P] l! !  [] l! ! K] l! ! PQ] l! ! Q] l! ! &R] l! ! R] l&!! n] l&!! n] l! ! S] l! ! DT] l! ! T] l! ! [U] l! ! U] l! ! V] l! ! W] l! ! W] l! ! Y] l! ! oZ] l! ! [] l! !  \] l! ! T] !! $ dd, ^    ]d  ]^ & $ & & $ T&@ .:F896 & X&D6 , ^ ! N ! !  !o !&, $^ ! $! (!]n^ & $ & & $ T&@ .:F896 & X&D6  & !o !& , ^ (!     ^  ^^ (&!! 8!^ (&!X! 8! (& , (& (& $ (T&@ .:F896 (& (X&D6 (& (!o (!&  ! ! $!p^ &  & & h& !! !  &! ! ! !! ! !o & ! !   _ 0!    _ &  &  & 0" & & & &A &A &A &_ ! ! $!  !! !!  &! ! !` &  & & $ T&@ .:F896 & X&D6 &  & !o !& & ! !   w` 0!    w` &  &  & 0" & & & &A &A &A &` ! ! $!  !! !!  &! ! !a &  & & &  \& $ T&@ .:F896 X&D6 & d&B & !o !& $! :    "a $! ! ,!`, +aoa &  & & $ T&@ .:F896 & X&4C6 & !o ! &!  ! (! ! !  $&! ! q  a $& (2 &  F  aa $&! ! ! ! $&! q  a $!! !  $&!! ! $!! !D L! P! @  @  .  / L! P! ! P! ! $! L!! !!  L&! P! ! L! P! ! L&!! lDD L! P! @  @  .  / L! P! ! P! ! $! L!! !!  L&! P! ! L! P! ! L&!! lDh ,F , bhc t bhc $! x! !p  $  b  & 0 # 0 b 0 b c 4   4& 4 8 # 8 c 8 b ! <@& $ <  1c  & @ # @ ?c @ +cOc D   D& D H # H ]c H Ac ! L@&  L  tc  & P # P c P ncc T   T& T X # X c X c ! \@& ( \ p! ! ` ` chc  c ! 2l&! dq d c p! ! t! 2p&hc  & 2l& chh8  @& & dd  & &&: #dd C*d C & Ed & & & gd &! ! KX &C C89; &C C89; , @  ,&d ,&. d @&& 0 @ 0!8! 0&!L 4 & 4 4& & ; & & & 8P X&& d X&&.& ff ( X& X&@&d 0 d 0 , 0 ( e , e X&&'& X&&e 4 X&& 4 4& X&e 8 X& 8 8& X&Je X& < X <& <&le! @G X!! @!Me @$ @. e! DG X!! D!Me n! DG X!! D!M X&& D X D! H H! H! L L! L! D&!! !$ye X&&.& X& 4 ( 4 ff X&. 4 ff 8 X 8&ff 8&ff , f X!>! !Lff X&. lm (. Flm 0 Ol L Rl L | < | @ | D? && !  ! !  ! ! L!! !$ym ! 4! S 4m &l&  ' m !R &l&  ' m 8 H &T& l!  8  H m &X& l!  8  H m &\& m !  8  H 8 Xm ! 8! !  h  h& H2 &8&&'( h&Jm h& H2 &8&& &&! P! \! ! P! \!m  & &&& m 4 m ! 4'! R ( (& ( ,l& k     m"n & m"n & m"n &m"n & &m"n & &m"n & &m"n & &n"n & &n"n & &n"n 4n &  & @ mD  L& & GnTq  L&& &_n & 'nn '   ' n p& nTq n  Hn !! n H!n !!   X  n &  n  H&'H(H, 4 n !kkTq h& n p& nTq L! ! LiTq ! i  nTq  &o  h&  w. & o & 2o &,o & 2o & 0&; 4&; D& Yo  4& ff? :9;  l& !! ! & o  & $ . $ o p. $ o ,& $o L! (7O D ( L&. o ( L& ( (. , L&& , ,/   " & o 8 o L&. o 8A o 8 i  <X ( .o ( p ( @ ( X &/ H & &"  L&\& !M L&l&  ;p L(& h [p 0 L 4 0& 4! 0! 4!!mp 0 L 0&! 0! ! 0 L 0& 0&" L& " L& " L&  L&  L! ! k L! L&& p L! ! <&! k#  >!! ! <&! qs ! !  @!!! s ! @&   <$&   <$&  g dm <$&d <& <$&   @!!! s D! ! @!p @!!! s ! ! @!pŒ @!!! s D! ! @!p @!!! s ! ! @!p + <,4&. + @!!! s @  @!!! q   @!!! q    2 @!!! q   @!!! q    2 <!    2  <h&  <  Rf <! D! !!; <! ! !!;f <! D! !!; <! ! !!;        <! D! !!; <! ! !!; @!w!! s @  @#  @! @&   <d&  <d& @!n!! s ! @&    <& @!h!! s ! ! 6# @!^!! s ! ! 6# @!S!! $s ! $! 6# &. E @!!! (s  !! <&! <h&! D! ! ! <$&! <x&!$ <|&!( (!, !0 !4 0qs @ 0 |  ! <&! <h&! D! ! ! ! !$ <$&!( <x&!, <|&!0 !4 !8 ,qs @ , < &! @!  ! <! @! f ! <! -4DI ! L! -  L,& L! ! ! !"! s   ! $ $ ҔA Dƕ !8 ! (s  ( # !3 ! ,q , ! ! 0k# 0 " Dƕ &h L,&  & !! h ! & 4 P 4 0 4 8 ! ! d ! T | 8 & 8 8/ & L! P b < e < <! @~ @ | ! L! -Dƕ ! L!   L!] P ! &! 8qs ! 8!  8  8  h& 8  !! J ! L! -DD0! 8! -  8,& h 8,& &  ! !BJ & & &  & (& ,&  h& !! ! h&  ! h& x &&!*! $lK $ (  (&  (&  x! &! ,qs ! ,! }! 8!  Ja! 8! -0 t '(  & h&  x! ! X  p X :  Ж h&! ,&! x! ! \= p \ : \ & \  & \  & x! ! ` p `  &! x! ! ` p ` ` p& . ` ! &. ` !8 d p&@. d : &. d :Ж ,& X & X X.  &h&@.  0  &" ( h&" H & L & P &  \ 2 \ $& \ &&  &    \ 2 \ d& \ p&&  &   T l& !! h ! & " h& (" & H & L & P &  \ 2 \ && \ $&  &    \ 2 \ p&& \ d&  &   l& T \ & \ \& & h& &.& t! t! ! t!!! ds d! h@& $& h l $& l  ld $&d & $& h&  & &h t,& & &  &Z & <& & & & & &" & " & t x &  & x x &!K &!!    , \&&   , \&&&  , \&& &  , \&&&  , \&&&  , \&&&X ,!&  , \&&&  2p ,(&& l    &! l!   & @ +  | 2 | x&& |p ,(&&  &    | 4& | |? ,21.  4&   2p ,h&&?. ,2/  &  ޙ t &! t! !p ,& O t!!! p ,&!v t!S! p ,&!v t &! t!  e &2 k &d &!!  |& &  && &  &  ! x! 3M & x"   &  / 'h (! &&!  ! !  &h& ܚ !K ! & &   &  @/ &d & &h,& & T& L& 4 9 !x p! ! H & 1   (2 &&  *2. n &  x  ' K d' && '(!Vq &h&  ! ! !   & &&" ! !r ! ! !9! &! -(! 0! - 0!Z  0,& &   0 h ,& h& * p& * t& 0 * ,&!Ȧ  &    & & q h& q &&!+! lK   $  $&  $& !! 0!     4     0  $h ,&x& $ $& !] ! & &  & && && &h& 0 &!! J &.  0!!  ! 0! -(  $,&  (  , \&&&X ,!& ! (! 9   ,& ! $! m   ,& !   d T   P j Lh P2&,& L&    L& L&    L&  \d L&, L&(  \  L&  ؝ L&  ؝  ۝  `  T!! G.! P2 &! L&! ! L(&'`(! !$ &,H&!( \!, L&!0 L &!4 L,&!8 L$&!< L(&!@ `!D L0&!H2s T! " X  T X&So T d&! T! 6# T T X& P P& P  t5.! P! !! d! qs  '(! !   !a h .! qs '(! ! Ԟ &Ҟ-! qs '(! ! Ԟ ,  $  $  4 2 ! ! ! ! ("  (  & 7 &! ! !   &  ' , &   &  &    &,, $# R $ $&  $# ` $ $&  (  (  &  $ $  & #!  $   $# D ((  4# 0  9 4! @&      П-! ! $qs 0'(! $! (] h ,& & -! ! $qs 0'(! $! (] (] 4! ! A   @ & 4 &! ! A ! ! k#  4 (]  &  h &  q-! 4! qs 0'(! ! (( ! ` ` mB ! d֞  d !m-! hq h       !f-! lq l  p  p& p&&  B  Š !^-! pq p  t ߠ &&! t!  t t& X t,!&  t ʠ  B   !Y-! tq t $  2 &x&&  &    $B  5 !S-! xq x D &&  DB !I-! |q | d & &  & B !>-! q   &&  & B !0-! q   &,&  & B !)-! q  ġ &$&  & B !"-! q   &(&  & B  B ! F $  $ B dJ  \& &"  & $ ! $!  !W (!! 8! ! ! (! & B !=K (!   R  (&  0 (&. n - q  - ,! ! qs ('(! !   (!   ̢  (&   0 (& .  ,  , ,! ! qs ('(! !  $ ,!   ܢ ,&&  ,  ,  ,&&        ,! ! qs ,'(! ! $ !   /P  A '(!,! P   '(!,! (  0&'h (   i ! ! ! ! @&   ! ! !,! ! $qs !,! $!v ! !  !](, 4&h&  4&  4&  . 4 $ & $ && $ ( 4 (! (! (!!!, h& a,! &! qs ! ! s h& 4@,! &! qs ! ! s  h&  Y $  Y,! &! qs ! ! s h& s,! &! qs ! ! |  & ( 'h ( 0 , !+! 8q 8  !+! <q <   ,  !+! @q @ Ƥ  , 0  !+! Dq D ޤ  , 0  !+! Hq H  !+! Lq L   ,    , !+! Pq P ! !+! Tq T &  P !+! Xq X @ !+! \q \ E  P (! ` `   &&!! p h p &&!! t d t x  x  d h' x &&!+! Ʀ   h d' &&!+! Ʀ   ť ť  ѥ HѥH ѥ  $ h&  $   Ʀ & !{ ,& $ 4 T & T T. X  \ X& \ X&& \ `  `! `! `!!!  ? l& h&  p& , t& 0 &  b   ! X 4 X \ 4 \  ` d h ` (,4& d. h  ` \,4& d. h  ! (!  $  $  $!T ! $!  (!] (!ȕ| && &h& &p&  & &  . &  .   && '(    (&h&   v    ֧ ֧ 2D& ('(!+! ֧ ('(!|+! ֧ ('(!i+! ֧ ('(!Q+! ֧ (&& ('(!+! ֧   (&h&   (&|&  & ! ! ! (! ! u (&h&  ֧ (&&&  $    ,&p& p ,!Ȧp ! ! ! ,! !     p h ,& ,& p h ,&h& ,p  K ,&h& K  ,&|&  & ,&h& ] ,!+! u ,&p& ,&t&  $  $&h&   $&|&  & $&p&  $!+! u  (    *! (!   $&t&     (&  ը  ߨ ' h ,&&  h ,&h&  $&t&  $&p&    ƨ8 D  D& ' D& 0 H D @! D! e/  D  m $ (h , D $& (& , m @ $& (& , m *! H x 0* { 0* 0! P!^! L! T! 4qs D'(! 4! 8d t  t H t H  H  H 6 *! l&&! x!  !@! *! l&&!^!7!2s 2  *! l&&! x!  l! ! @! L< L  !@! *! l&&!^!7! ! 2s1 !@! *! l&&!^!7!2s 5  P p P   T Xh \ l P T& X& \ T& X&  \! ! @! `< `  !@! *! l&&!^!7! ! 2s !@! t*! l&&!^!7!2s 6 ,! x! !p p Ī l! p! t! ! ! ,! x Ѫn*! ! ,! $  ( $,& l! (! t! ! ! ,! $ $& $ ֪d$    4 5 4 ! ֞   ' ! ֞   ,!! 0! !$L $ $B߫ ! $! ! $! (@&  (  ^  `߫  ,& 4  4  &  & 4 ߫ ! 8֞ 8 Z*! < @ T <& @&!  <& @&! !  T! ! ! ! D T D  ߫ D&. ߫ H T H! H! ! !L0 < U <& U <& U @  8! <! (e/ ( U  U @  5 $S* 2 @ , 6 $M* 2 2 $G* 8*! $! H! 8! ! D! ,qs <'(! ,! 0$c 4 c 4 0 { ,! 0! 4! 8! <! x **! ,&&! 8!    ,& ,! ! 4! 8! <!  &  $(  ʬ 8 ʬ 8 ڬ! $֞  $  ! $֞  $ 0!! 4! ! <!W(P ( ( ! (! ! (! ,@& ,      ,& 8  8 ? & ? & 8 A ! <֞ $ < *! @ D X @& D&!  @& D&! $!  X! ! ! $! \!W H X H   H&.  L X L! L! ! $! \!WPT \& d $ \ ( $& , ( ,  0 (& 0 ,  0& $  \&&.  4 \ 4! 4&! !*!!W \&.  4 \ 4! 4! !*!!W \& d 4 \ 8 4&& 8 ˮ 8 4 ˮ  \&&,& & ˮ &&  &. n \! ! !)!!W \&.  < \ <! <! !)!!W &.  \! ! !)!!W \&.  < \ <! <! !)!!W \&& d  Q   ,& @ D  @& D G H \  H G Lh D L& H @& L& G &&G &. ) \! ! !)!!W \&. d P \ P! P! !)!!Wd & @ Ү \!! < <!)! <!WT<! ! ! ! @&   ! ! ! ! $@&  $   @ ٯ   ٯ D! ,&! 0 0!  02T&! 4 D 4! 4! 8 8!  82T&!< \&! WI s)! ! qs '(! ! \  d'(!(!   " d'(!(!  d&\& : d'(!(!  d&h& R d'(!Z(!  ! $! !! $! ! $!;! $# $ | $!;! (# (  d'(!<(!  $!0(! ,q , " $!((! 0q 0 " $!$(! 4q 4 " $!(! 8q 8 °" $!(! <q < а" $! (! @q @ ް" $!'! Dq D " $!'! Hq H " $!'! Lq L " d'(!<(!  d'(!A'!   9 ='!! Pqs ! P!  $!(! Pq P  $! T@& T  [  [  i d'(!"'!  !! '! $! !2s!! '! $! 2p&!2s' $!$(! Tq T ѱ((! X! ! X# !! &! $! $! X!2sı !! '! $! $!2s!! &!!2s' $!((! Xq X ((! \! ! \#  d'(!&!  !! &!2s!! &!!2s' !! &! $! $!2s!! &!!2s&! d&&! \qs ! \!     e `h ,&h& ` `. &  L ` d&h& ` `@/ &!! dqs ! d!  !! &!! hqs  ! h! &!! lqs  ! l! \` ʲ h'(!&! k h&h&@.  h'(!t&! k h&h&  h'(!I&! k h'(!5&!  T h&h& T T@/ ! ! @! #y 1 #Y 1 #1 O X X X& &!! \qs  ! \! k X X X& &!! \qs  ! \! `  &h&   $    $   '(!(!  $2&  '(!&!  &`& ɳ '(!%!  &h&  '(!Z(!  ! (! !     !%! " ! (" ! ," ! ( &!  ,'!  & (  (  (!;! ,# , @ !;! 0# 0 N '(!<(!  (!%! 4q 4 o # k  && a    &#   0  9  &  n   &#  ! @&      Ŵ-! ! qs '(! !   ,& a-! ! qs '(! !  \! ! $!p \!r  @ h ,&& : h ,&h&  : 8!h ,&&! $!p 8!r 8! \! q  :E  &    a%! ! qs '(! !  !! ,! !2s '(!<(!  '(!b%!  $ 2&!! '! (! !2s  ص h ,&& ҵ h ,&h&  ҵB%! &&! 8qs ! 8!   &   $2& $2 & $2&  ! h ,&h&   8h ,&h& 8 8.  &   8 &h& 8 8/ &! $2&! <qs $ &! <!  $&! $ 2&! &! $2 &! Dqs $&! D! &! $2&! Hqs $&! H! h X p&h& X  T  X  T T2& Ŷ p'(!%!  p&h&. ߶ p'(!$!  p&h&  p'(!I&!  p'(!$!  \ p&h& \ \/ ! ! @! #y , #Y , #1 W ` T2 & ` `& &! T2 &! dqs T&! d!  ` T2& ` `& &! T2&! dqs T&! d! h<h .! 0qs D'(! 0!   0 0 $! 4qs D'(! 4!   4 , 4 ( 4 $ 4  &! ! ! ! 8$ 2 & 8  &  ˷! ! ! ! 8$ ( 8 D! ! $!<$! ! ! ! @&    ,&4&  ?.  ,&4&   ?.2/ $( dJ    &$ X& 0 &  & & \& 0&" & 0&" $! &! &! d&!8 t& x&? |& $! t&! x&! |&!8 !+ !=+((! ! ! ! "    0& ! ! $V $ X$! ! 0&&!\ /$! ! \(4!$!\ (  ( ( $? $! ,<\ 0 < 0! ,,P\&! 0&! !?!]4d! ! @! ! \F  \   ! `@& X ` X { 4 X,@&  $! ! \ l! ! !d !V  !Y  ! @Y #! !   ,& & Ϲu ! ! ! !#! q   !  ! !u !#! q   !! !u !#! $q $ ! !7u !#! (q ( A ! , ,! ,! ,!u !#! ,q , ` !! 0 0! 0!u !M*! 0q 0 v !! u !#! 4q 4  ! 8 8! 8!!u !#! 8q 8  ! < <! ! <!u !#! <q < ʺ !! u !#! @q @ ޺ !u !+! Dq D  !u 4  !! !u !#! Hq H  !_u !#! Lq L * !Du !#! Pq P > !u !#! Tq T R !΢u !#! Xq X f !u !,! \q \ z !Ru !#! `q `  !!u !#! dq d  !اu !}#! hq h  !! ru !r#! lq l λ !! ru !m#! pq p  !u !g#! tq t  !ۯu !^#! xq x  !u !Y#! |q |  !u !L#! q  2 !mu !C#! q  F !u !@#! q  Z !fu !5#! q  n !u !/#! q   !u !$#! q   !Ou !#! q   !u !#! q   !u !#! q  Ҽ !ظu !"! q   !Su !"! q   !u !"! q   !u !"! q  " !u !"! q  6 !u !"! q  J !{u ! ֞ "! ! qs ! -  u"! ! qs ! !  (!A! lK    &  / & $ & $ T& ,  $&    $! (! ,!w  $&&   ,&    $&&2&   ,& J< D&    > D&&  D&& 0  0(2 D&&&  0*2. >  0  0p  p  02 D&x&& p ! 4  4 D! ! !  $4B  2 D&8&&־ ! 4  4  ־ D! ! $! 8  8 & 2 D&8&&'( &о & $ $4B6  &  z<@ $ P $ 0 $ H 0 ( P , 0 H ( ,& 0 ,&7 4  ( 4& 0 4&7 8  P 8& H 8&7  ( L ( } ( H } , L 0 4 H , 0& 4 0&7 8  , 8& 4 8&7 <  L <& H <&7  , H ,&& ,x&;  ! ,I H&& ,; ! 0I  0   @ (&.    ,& & ҿ & ( ܿ  &!0! k#   !=K  &   (!@! ,!L (& (& (&   &)= ȱ 5 & = !! L ( T& , (T& , b (X& , b (\& ,  z T&h& u V/  E/  T&h&  E/  V/  ! ! ! 0G  0   &.    &.  8 T&  8& \&7 8& `&7 $ T&& d&7 ! @+e @HC D T& & D D0 X&  H X& & H H0 L@ H&&  H&h& : $5/ = $$/ ! ! $! (G  (   , H& 0   ,& 0\&7  ,& 0`&7 H&& d&7 ! 4+e 4HC 8 H& & 8 80 L&  < L& & < <0 @ && p 4 p /! ` d  `' d(!  `' d(!  `' d(! !- ! ! ? ! !   $ f h l p l $, &\&& h p&, p h& l&&! t. t ` x $, &\&&& ( x x ` ! $! # $ $& $  &&   ,  &  4 &&  4.  , 4. ,  ,@  , 4. l  l  l p  t @!.! p! 8 @  8 2& .! ,! p  p! ! 4! p&&! 8!   &!<! tlK ( t (&  (&  (& , (& &  x && x x& |   |  8 |&  8 &&      p ! ! e/   ! &! !I ! &! !   &,&  & &h&  w. &h&  @/ &&& & &  0  &&' , & &  & &h&  w. &h&  / &&& && I  ! &! ! ! ! !0   &\& s!8 &\&  &T& !8 &T&  &X& !8 &X& &!!  0  0.  ! &\& !8 &T& !8 &X& !8 ! $ 2 h $,& & , h& , t&  , $,&! $ $& $  & & & & t& |& ! ! !  && t&" & & &&& &8&!! @! & 0. ȱ    ! ,! A        <  <  < & & &L&    . 0 </ &T&    . 0 </ !9&! ,!L &   &* !.!    ' (!  ' (!  ' (! !- , {   (&    0.    & (? ,:9!  ;         &   '   l !b   | $ t ( , @   $79  (&  (& $ (&796  ,&  ,& $ ,&7969 0 | 4 t 8 0 47 < @ 0 <& 4 <&7 D H 0 D& 4 D&7 L x  8 89 @ @96 H H96 L L97   9@ 97 ' ! T 5 T6@8  |  96 X  X& | X&  X& 96 \  \& | \&  \& 96 ! ` 5 `7@8  & |  96 d & | d&  d& 96 h & | h&  h& 96 lw u 5@8  |  96 T  T& | T&  T& 96 X  X& | X&  X& 96 lw ll & l 0 l       D  D& D  H  H& l H@& l L  L! ! ! L&l H  H&  H   8 &&  8,d( ! L\ , L2M& &   & l   / # !b $ : , &9; $6 $  I , &?I $ , &; &. U $ . ^ $ $  &  \HC `  d $: h \ P ` d9 h89 T `& d9 h89 X & $:9 \89 l & & l l P6 p &$& p p T6 t &(& t t X6 &&  $! |:' x |2 x2 x2 x x && x & &  @/ $l . V P  T  P T K P! T! Xe/ X K Kl &. Vl   @&  !>! !L . u  wl ? :9; T  T&  X  X T  \ X& \ ` X& `  X@ ` \  ! ! de/ d  h && h h'  h && h h& && &2 &/    ? :9;   (  4 ! (! ! dr 0 d ( ( 0' 8 Mr.!! h  h! h&! (! 0!    _ &  e & h & h h 0& l & l l (& p & p p $&   & " &  & &" &   ! ! $6 &  &&  &&  ( l h & h h (' &  l  l&& l& &Q  ! l & l l/ &. & &  p  p! ! ! (! ! p&l & l l  l! ! (! l& t  0 t& t&6 4 t& t&6 x  8 x& x&6 |? 0 | 09 4 | 49 8? 89 $ 0" <! !   ! ! $!!!  D? p   $ 0" $ $pA6 ( (pA6 <! !   ! ! $!!!  D?  $ 0" $ $pA6 ( (pA7 <! !   ! ! $!!!  D?9 $ 0" $ $pA7 ( (pA6 <! !   ! ! $!!!  D?g $ 0" $ $pA7 ( (pA7 <! !   ! ! $!!!  D?  p ? ? ( t (2 t X& t & 7 x (2 x d& x & 6 ( (& (  X! d! T!! t T t <   , <2 T&,& ,   ,&  ( x (2 x & x ,&&? | (2 | 0& | ,&& | &7 x | (2 | & | ,&&p  (2  0&  &  ,&&7 x (2 0& ( (& (  0! x+e @ x @  P ? @ 879 ,! ! |n |  ,! ! aQ   p   D ,& 7 H ,& &7 L ,& &7 L LA6 ,!! ! D! ! P;!! !$y < <& < T  p $&(&2 &8&& F $&(&2 &8&&*' & V , & ` , $& & 0 $&(&2 &8&& 0 0 ,,& ( ` $h (,& $ & Z $& Z $&Z   h & & $ & Z   4  & $&7 8 & $ &7 <  & $&7 4! b L  L@CZ $&! @!  ! !wh 4 @9 8 D96 < H96>*Z P! $&!  ! ! &!!!  X?LZ $ &  0 ( (& ( x && $&@'4( $&(&   &h&  / <    2 &x&&   & 2 &x&& 2 &x&&   &   &   $& & $! $&(&! !( &  i &   & )  $& & &. i i $&(&2 $&x&& f   $&(&2 $&x&&' i  $&&! $&(&!  $! $&(&! ! $&(&  $&(&2 $&x&&   (  $$& &   d   (&&   (&&2 $&  $&  $$& &  (&   & (&  (&   ( && & $$& &d >#@ #  &&   $& && & & &2  & & &2 , 4&  4 & 1!  4 &  4   4 4&  & 4  $   *  4   4 4&  &    4&@  4&  .  4&  . 4! 4$&$& U 4&+ 4&!-! lK   : 4&!.! lK   1! G &  $ & $ $ /  4$& $&  (&  4& 4&!-! $lK $  4&!.! $lK $ 1! $G & $ ( & ( ( / 4!(! !L 4& ,H T&   T&  ! P! T&!     P X& T  &'  1! T! P$&!   T&& $ P$&$& $  $  $2& P! T! ,  ,  P! T! 0  0  P! T! 4B  4  P! T! 8  8  P! T! <  <   P! T! @;  @  P! T! Di  D      T!! P&!L T!! P&!L , P$&$& ,  , = P& P&!! 4lK 0 4 0& P& 8 0& 8 8 / = P&!! 4lK 0 4 0& P& 8 0& 8 8/ 0& T P! T! H P&w 0 P& 0 0/ 4 P& 4 4/ P& P0&   P&  P&; P & 0$  :@ 0.:F8?79 P &96;   P&.  P,& 0 P& 0 0/ 4 P& 4 4/ P&  P& P&  P& ,& P& P!H dJ   & & $@'4( &  & $ $& $ &p &p &p &pA &pA &pA &@ & ! (! 3M  & & $& ,"  &   /   $$&  &8 &0u& !0 &=K &0u& & & ! D $ L<&" ( ( T6 $ $! ! 4 4! 4!wh 8C  8 9  8 9 C 9 <$ HB@ <.:F8?799HC66 P! L&! ! @  0 @ 0X& L 0DD ! | &p &p &p &pA &pA &pA & h  h& h$&@'4( & &@ & &N &.  l  l! l\&! 3M3 l  \ l\& ` l`& d d&E7 $! p  p\&! p&! p&! \! p!!  ( $ \&! tWI _1!  &! t! !=K & X ! 0! 3M l  l&. G l& ] p & p p/ &  $&$&  t$ ppA@ t.:F8?7994B6 x & x x/ & &:zD p96; &  !| - V1! F      @'4(2& 01!&1! F      @'4(2& 0! !! !!  !$!  !$  .0! @'4(2&     h 2& \  &  &1b  &0  &   E  &0! ! ! !  !! 0! !2s !  0!0!  &!0!0! &! $!$ $!    $& $ && &W 8&? $$& 1!G0!0! &!T $:': `&96; \ &! $! ! ( `  (&9  (&96  ( &96 \$&  `& 996 \(&  `& 996 \,&  ` & 996 , \ 0 ,$& 0 0 ,8&9 4 \ 8 4(& 8 8 48&9 < \ @ <,& @ @ <8&9 ` & \,& B D `& D D?6 H ` & H H;: L `& L L;: P `& P P;: \! ` &! 3M \& `4& _ D \& D D `&6 H \& H H `&6 L \& L L ` &6 P \ P& P&" \& T| & }  & }  & &  &  !-  &!! \! <&  l <&  l $! p  p&! p&! p&! \! p&! l!  & 0" (  , ! ! ,?- &!! t h t h. % x $& x  x$&  !O8- !=K- ! $! |H LM2!  $ ! ' &.'! $&_"2! $! x &    $&.&  1!! !   ! \&! 3M !=K    ! \&! 3M !=K @ H&h&  H&&!+! lK     & H & L!*! $lK  $ (  (& H (& H! H&& L"  H&&  ?6 P! H& &!  ! !wh $ H& & $C $9 ( H&$& (C (9 , H&(& ,C ,9 H&& 0 H& & 0 0@/ 4 H&h& 4 40 H! P!  H&h&  H!K 8 H 8&! 8! ! < H <& <&&" H&h&  H!@ !=K D L&! $$H  $  s2! L!=K L&  &. 3 L& B &. B L&K L& ( L (&  (& Lh& \&" &! ,$H ,   4\   4&  4&7 <`   <&  <&7 @d   @&  @&7 !b t&! ! I ! 0NT L& 0 D (  &  &  &   (  &  &  &  (! (&@ (& (& )  ( h& \&" 8 (& (&d&  (  0  &  &  &  0 $ & $ & $ & $ 0!n2!l2! ! 0&C C89; (` h&  D h H D&  H& D\&7 H& D`&7 L h $ L&& Ld&7 !b  h&" ,! ! oi ,! ! 8!d D$ (@ D.:F8?79 h &9   , (96  0 (96 $ $ 4 (96 L$ (@ L.:F8?79 h &9   8 (96  < (96 $ $ @ (96 !b T h& T s T s T s \ h \!X \&,!&! \\&! !?!] h!! !L`  &! $H &  & &  (& (& , ,!  !$  ( t&! &! I ( & ( &?  ( & I@ 94C8!    (& ' (& (&& (!  !!  !!  !! (       0       2& 8 "  8 49  8 & 4 &9 $ 8 $& 4 $&9  8 4"  8 9 8& 9 8& 9  0( ((4 D!    <! +e @! +e   9 $ < ( @ , 0 $ (9 $ ,& ( ,&96 $ 0& ( 0&96 8  547 44  X  ,: 0 &" < &" $ < 07 ( @ 47 , D 87 $! ^e T  T Xz $!b H " H!b \ H $9 L (96 P ,96 !  \  `! 0!  ! ! <! ! !     L T  X 8  8   8 Li  Li  Li  &7  &7  &7 ! @^e  @ $ &7 ( &7 , &7 $! H^e 4 H  4 7 0 _ 0 f f 0 0LL @uw  0.  ,! k    0.  ,! k   (X&! ,! e/    0.  , &!2! k#       $   X&    $.  X&! ! e/    $.  X&! ! e/    L \ \ d d h h d = l T L  T&" 8  8  8  <? $ < ( < ,? @R? \:9   @96   @96  R? \:996 DR? \:9 $ $ D96 ( ( D96 , ,R? \:996 ! $! l! p! H 0 H 0 L l! 0! !! 0LLh x x        p h 4 0 p! t! x! |! ! ! ,! 4!$ P" 0 P T , T ( T  p! (2 ,&,&! ! X X  \ p \! (2 ,&,&! \&! x! |! ! `9 `  d , d2 & ( d2 ,& , ,& ( (& ( 0 ,  ( ,hh4 D D L L P P <! @! D! H! L! P! ,! !$ 0 ( 0 (  ,,&4 444 <&3 , <(& ,3 ,3 ,,\& 3  D"  <(&,\&! D! !P 0 < 0X&! 0(&,\&! @! ! 0D&!]4h p t ?h P  t P& p P&7 T  t T& p T&7 X t X& p X&7 $ p&" $!b !b x! \ $ 9 ( 96 , 96 \ 0 " @  $! ! D!d D!b 0! D! $!4C x9I@8!V @ p& 0" p$&! `+e < ` <8 0!b p$& 0 <9 p(& 4 <9 p,& 8 <9 d p d& d&" p& @hh (\ d  h d(& l h lN hN d& l N d& N ( & ( Y2!8 p & p + p  p n+  &' ($&~ &   &' ( & ( &  x  x! x&! (&! (&! (&!! `! (,&!$  L   L D  (&! $&! ,! |P x |  x   x   x  x  , &"  ( & N    , h&  &96 0 l&  &96   4 p& &96    D2 `&    ,  ,t&  &96 0  ,x&  &96 4 D2 `&,|& &96  , &" ,!b 8 &"   X&! (0&! 8! ,! D&! ] H    Hh& 8" D D& D L  h& l& p& x & x x& ((& # & ((& # && &   &' ( &; P &" (&! &! P!P P!b ! P! (&! (&! (&!! | \ | \  ! \! (&! 5   & h& \&" & X `&Xs dP\Xs dH&Xs `H& dx&" `h& d|&" `& d&"4 , `&" d&! `&! ! @P < @ H < H # < H  <  <   ," # ," # ," !b P ` PX&! P(&! !NZ T ` T! TX&!  T(&,\&! T&! ! TD&!g `!F `& " XXH $:': T&96; P &! $! ! ( T  (&9  (&96  ( &96 P$&  T& 996 P(&  T& 996 P,&  T & 996 P& . e P8& P & , P 0 ,$& 0 0 ,8&9 4 P 8 4(& 8 8 48&9 < P @ <,& @ @ <8&9 T &L>e P$&! D+e D Be P! T &! 3M , P& , , T&6 0 P& 0 0 T&6 4 P& 4 4 T &6 8 P 8& 8&" P& Hd H l HX&! H(&! !NZ lX&.  L lX&& & L L. l!=K lX&@.  L lX&&h& L L. , l$&" ,! Lb D L D$ l & 2 P , P 0 P 4? l &!! ! ;: $ $;: ( (;: l! ! 3M P < P 8 P @? l& 8! TNT l!3! T!L l,& l&  X l X&! XX&! X&:! X&:! X! X&! \ \  ` l&,&& ` `& l! X l X& X&7! \O' ( ( \6 l! ! ,!dd , ( p4&,& 0 (& 0 @ 4 l 48&@ 4&0. 0 @ l! p! u l!,! !L 8 l 8X&! 8(&! !NZ lX&@. ` (&  l&  (! l&,&! HaQ H  L l&,&& L L& , l &!! <! <! L+e L D? (! P l P!  P&,&! <! P\&! P&!! P&!$y lX&.  LdJ < L (& o (& o p&! TNT <!2! T!L <& ( l& ( @ (&? (& (&696 D (&? (& (&696 H (&? (& (&696 @! l&! P @ p &" p&! TNT <!3! T!L l& @! l&! P <,& <& l& l! @! 3M <! @! 3M l&P l&d& T lX&& & T T/ X l XX&&\& X&" l! <! (& + (& + p&! @NT l!2! @!L l& ( ^ p,&. J p&! @NT l!4! @!L^ p&! @NT l!3! @!L l,& l& p &! l&! P l! p &! 3M l&  p &! @ l @X&! @&:! @&:! (! @&! D D  ,  H l&,&& H H& l! l! @ p @ &! @&!dx  &!! `! &  \ &  \ &  \,&! ! $! l  l&! l&! l&! `!! l<&!  ! \,&! l ( l b $ l  $! p  t p& t! p&! p&! t! \! p<&!  ,  & 0" ! ,? P.  !=K ! $!  &  ! !x & & &d& &  &  (&,\&P\   ! (&,\&!   ! !  , &\&&&  I & I &  Me  , &\&&& !< D t dJ D  T!b D & L& DX& H D(& L D& LT&& D& D& D& D& L`& Ld& D& D8& Ld& D& H  D&  . DH& Lx&" Dh& L|&" D& L&"4 DD& X X?   D&  /  D & P&: X9; D & d& $ D $& $p&: X9; ( D (& (l& , D ,& ,& D<& D& D & LL& D& P" D& H D$& T LH&:9 D(& T& LH&:9 D,& T& LH&:9 0 D$& 0 0;: 4 D(& 4 4;: 8 D,& 8 8;: D& P" D& Lp& ! D& D& Lp& D& D& D& T" L&! T! D&!P D&!b D<< ! &2' & & h& l& p& X&@.   X&&h&  /   X&! (&! !"Z    (!! lK   X&  & $x&& D& 0 0& $T& @& $x& & 8& $l& H& $x&" h& $|&" & $&"4 & ," $ 0$!>#: !   $  $ BV &"  0& t & & :96 x & & :96  | & & 0&:96  & P&: D&9; 8&  8&    h  X&! (! !  ! ! t!!!  T.  l `& p  X.  l `& @! NT p   ` \,& @! NT p  l `& `&  l \& `!  X& ! ! &! 4! &!! d&!$y `! X&! aQ  w & $! `! !!! `,&! h h& h   X&! ! 4! 3M d  $! d! ! &!   d,&! h h' d d& d h 4! ! P T. 4 h& * 4!  X&! p&: D&9! l&:! ! &!   * & ! 4! !  & X& & l & & p  |$ \ |.  t !bw `  `  d  h?   &6 @! ! oi ! `! @!d @! ! 4!d @!b 4!b !  ! P&! Y X  X L  $ " X& y \! T TI@ 9 \! T 0A  X&:99 T!  P  09 T&:8 T!  0? 9 09 T&:8 $ $ @ 096 ( ( D 096 , , H 096 $ $ 4 P96 ( ( 8 P96 , , < P96 $!b H& ! ! ! ! $! ! g  ! F   ! ! ! ! $! !   ! #  h& "   &  & & M h&  @ @96 l&  @ D96 p&  @ H96 h&   496 l&   896 p&   <96  h&   A 496 l&   A 896 p&   A <96 L L& L X  X 0 `&" 0" ( (C6 @dJ  @  &2 X& ` & & & ` ! 0! 3M h& " & `  & & &@& !2! D<\ ! D,P\&! h&!!! L] , L , & ,& ,&@& ? $ ( 2! P<\ `! P,P\&! &! !!]2! T<\ `! T,P\&! h&! !!]Xh p<&  \ p<&  \ p&  $! ` p d `&& d! `&! `&! d! `! \!  $! ` p d `& d! `&! `&! d! `! \!  (  X,&h hh d  d&.  & d  b4!  & &" & <&" & L& &<&: & &&" h h h & l    l7  l&7  &7 ! <! H! T!wh p & p p 6 t & t t &6 x  & x x &6 &  | &<& | |G &9C8;.& |    |& &7  |& &7  & &7 0  <9  @96  D96 4  H9  L96  P965 8  T9  X96  \96 $ 0 7 ( 4 7 , 8 7 &   $6 &   (6  &   ,6 &  &&   6 &&   &6 &&   &6 &&   $6 &&   (6 &&   ,6 &   & ! s `  ` L & 5  & &&" B  & &" ! &&" & h &&&" <&&" ! s `  `  &   &   t  x> $ t& x t&96 ( t& x t&96 |  , | &> |&96  @ 0 &  &96 4 &  &96  8  &@ &96 <! $!  ! ! 0! !!  @ . D?24  d    d7  d&7  &7 ! <! H! T!wh h & h h 6 l & l l &6 p  & p p &6 t  x   t& x&7  t& x&7  & &7 $  <9  @96  D96 (  H9  L96  P965 ,  T9  X96  \96 0 $ 7 4 ( 7 8 , 7 | & | | 06 &   46  &   86 !  `  ` c  & &" ! `  l  p l& p l& p l& p t  t p t& p t& p3 |  |&! |&! ` x  ,  ,2  8&  &&  &6 x7  ,2  D&  &&  &6 x6  ,2  T&  8&  &7  ,2  `&  D&  &7 , ,& ,  , x ,2 x 8& x && x &6 | ,2 | D& | && | &6 , ,& , 6 T &" ` &" , ,2 & x ,2 | x `& | | x &6  x ,2 | x T& | | x &6 , ,& ,  ! T! `! P!! x P x | & | | 6  &   &6  &   &6  &   6  &   &6  &   &6 ! 4 o 0 42 P&,&  0&  y  y 04& yi 0&   0& D 0& H 0& L 0& 8 0& < 0& @i 0! s  i 0! ! ! !   i     &   0&   0!   ! !  ! !!! !$yi  0 (& a (& (&" (<& (&" (& T (&<& (&; (&& (&" (! ( (& (v 4 4& 4 P T` L   h   &!! 4! 0&!! @!  4 &7 8 &7 $ < &7 ( @ &7 , D &7 0 H &7 ! ! (! L! Xh X   &    r  h T P & P P'& T 4& T T'&  &!! &! 0&!! &! !  &   h&  P h P! L! P&  h   &  & &&  &  ! &  &  x` &.     &   0&   !x !L T@& X T& \ $ X $  $ $2(& , T ,& ,d&" T &  0 T 0& 0p&" T &  4 T 4& 4d&" 8 T  8p& 8d&7  8t& 8h&7 < T  <x& <l&7 zD T&:8 T$&  9 T(&  9 T,&  9 T &  @ T @& @p&" D T  Dd& Dp&7  Dh& Dt&7 H T  Hl& Hx&7 zD T&:8 T$&  9 T(&  9 T,&  9 T & , T , &!! ,&! T!L   5 ! $! (!  &  " $!! !  $ & T& $L& n  $ !-! L&!L  ( & T& (@&  (!! ! (P&   ( !-! P&!L (&;  ( &: &6; (&   ( &   ( ! &! H5 (@& 0 (!! ! (D&   ( !-! D&!L  (   &   &  5 (!! 5 4! ( 0&. R 0 &! 4! 8!7f 0& 8 0@&  0!! 2&! 0H&   0 !-! H&!L  0 & T& 0 $  & $   $ f 0!! f 0@&   0 &: &6; f 0@&   0&  0&'     0!!   ''! 0H& f  0 !-! H&!Lf 0@& f  0&  0&'  <   0!!   ''! 0L& f  0 !-! L&!L(x  &  @  @ &! DqG @& D 4!4! <! @O @  <! DG & D 4!4! 8! D 0 D 4!4! ! H 4 H L 0 L  4 L  PC 9; P P TC $9; T T XC (9; X X \ 8@8; \ \ & P T2/ X2/ \2/ &7 &p @& & P  P& P T  T& Td&" !  & X  X& Xd&" \   \p& \d&7  \t& \h&7 `   `x& `l&7 ! d+e , d & &B h  h$&  h&9 l  l(&  l&9 p  p,&  p&9 t  t&zD ,9 t&8; & & x0 <& 4 ( < (& " ($&$& " <!8y <\&!)! lK <!=Ky 8& ^ <! ( 8 (! (! , ,! ,! (&!! !$y 8&. iy ( 8 (! (! <!70\  d& @ 0 @ , @ ( @ D 2 D h\&& D d&&7! HO' L 2 L h\&& L d&&7! PO' H P T 2 T & T d&& A7 2 (&   T 2 T & T d&& A6 2 (&?     7  T 2 X d T &? T X&& T X&&69  &    (! 4! KX h! ! 4!\  (&   h&   $X&@&     $! (! ,!{  $X&@&   $ X&! ! (!7H  P   &  &    P&" ( P&"  P&   &! ! (!Da &! ! (!Da  &   4  8 <  82 @ 4 82 < (& < &7 @ (& @ &7(  4   &   8 42 (& 8 8B6 < 42 & < <B7 @dJ  @  &4 & " & (" X& P &@ &T  & 4 ! D P D! D@&! !H   ! @&! !v4! 4G 8  8L& 4 8H& 4 W4! <G @  @P& < @D& < & &  &C &  &@ D & DzD D9 S4!Q4! 0!M4!K4! &! H  Hd& H\&" L  L! L&!  P  Pt&! P&! I &! TO'  T &! XO'  X &! \O'  \ `  `& `&7 $ `& `&7 d  ( d& d&7 ,  9  $96  (96 07 h  hp& hd& h& ,96 l  lt& lh& l& ,96 p  px& pl& p& ,96 &. /  t p&"  p& \&" d& t" !h &d& &. s D4!B4! t! t Z  & & e  t m  &  s  &    &   &   @&  &&   $&   X&@&    X&! ! $!7H (dJ (  &54 &  &@ X& P , P  ,d& ,&6B6 0 P  0h& 0&6B6 4 P  4l& 4&6 8 P  8d& 8&6B7 < P <h& <&6B7 @ P $ @l& @&6A6  {  D P  Dd&? D& D&696  ?6    D P  Dh&? D& D&696 ?6 & " & " !HL4! G T L&  H&  3! $G ( T (P& $ (D& $ , T 0 ,|& 0 ,x& 0 ,t& 0 3!3! T&!M4!K4! T&!3!3! T&!S4!Q4! ! T&zD 4 T 4! 4&! 3!B4! ! 8 8 e < T  <& <&7 7 < T <p& <\&" @ T @d& @p&" D Tl& D D 7 T!h T&u  T& H T HX& H T&  T! L $&  @&  !  $ ! !7h3! 4G pH& 4 p& p& B p& p&? 8 p& 8zD 89 < p <d& <\&" @ p @! @&! S4!3! 0! D p Dt&! D&! I p&! HO'  H p&! LO'  L p&! PO'  P T p T& T&7 $ T& T&7 X p ( X& X&7 ,  9  $96  (96 07 \ p \p& \d& \& ,96 ` p `t& `h& `& ,96 d p dx& dl& d& ,96 p&  p&  p& p!hh &  & D  L\& 0  0 C \& 0 E !! H 4\ L 4&  4& Ld& \&" Lp& \&\&" & $ &  $ L& $? $? 8 L  8p& 8d&7  8t& 8h&7 < L <x& <l&7 ! @+e ( @ L&zD (9 $8; L& T& L!! ! & L&:zD &96; L& L & D0!! 8 &! $G \& $ 8\& D 8&! (WI 3! (!    8\&   X   & r \&! (WI n3! (!   !! &! (G  (   \&! ,WI =3! ,!   &!13! (k# ( u \&      P 8!+0 &  \&! WI  3! !  !=K  $  |&  x&  t&  $&.  $& # $& # $& $&0 $&B $& P $&! WI 2! !  $!=K{  $ ! &!  $!h $&+ $&d& $&   $ ! &!  $!h  $ & \&"  $ & \&"  (& (&B (0& (&.   ( P& &  (&.   ( H& &   ( L& & (&  (&  ( ! &!  (!h  ( & \&"  ( & &"  ( & <&" (! 03!3! 8&!3!2! !M4!K4! 8&!2!B4! !  8 ! &!  8!h 8 & \&" $ 8 $& $\&" ( 8 (&zD (&9; , 8 ,& ,&: 9; 8 & 8&.  8$&   8&.  8(&   8,&  0@3!2! !M4!K4! H&!2!B4! ! $ H $! $&!  H&! (O'  ( AL A @@ 98! , "> ,9 H&zD 8; H!h 0 H 0& 0\&" 4 H 4& 4\&" 8 H 8<& 8t&" H8&zD 8; < H <4& <8&: 9; H0& HP&  @<I5! 0 D 0h&! 0l&! 0p&! 0t&! 0x&! 0|&! 0&!$ 4qs ( 4 ?5! D'h (! 8qs , 8 ,! (! <8?5! @'h (! 0qs , 0 ,! ,! ! ,!I5! 4 @ 4h&! 4l&! 4p&! 4t&! 4x&! 4|&!$ 4&!(*8  (h&   !    (!!    ,!:5! s   #s           HH           & & (! 25! ! ! ! @&      5!5!! qs 25! !   H h ,&& Bh ,&!  &  +$ Y ( $   ! 2,&! q   ( 20&   & ( ^ ( $ $ ,! 0! ! O   ! $ 4  $$$ ,! 0! ! O   ! @& 4  $$, 4! 8! ! $O $ !:! ( < (! (&! (&!* ,, $ & ~7! t D ! $ &! k#  > $! !   4&    t ! $ &! k#  n $! &  &  N\7! $ &! , 4! "  & ! /        4&#\   ' &  4&#n  (   (& (  (   (& (\ (   (& (  4& &    ,,X 8  ! `! 4q 4  h 8 & 8  8  82!& d! @ & & @  d!:! $! (! ,!* & & $ D  D& & D& ( & && ,  d! H@& & & H  d! L$ & & L  d! P$ 0 P & & T  T& & T& 0 & &&   &  X< (dJ  (    , 2 ,,&! ,0&! !   & (  >7! 7! !  > !=K  W7! 7! !  l !=K 6! 7! !  l !=K 6!! ! ,O ,   $28!& ! $! 0# 0   !=K & \&" & \&" ! 8  8  !=K<$ ,! "   , &&6! ,0& ! ,! &! ,   && $$(( , !!   "( #{ 6! !  !!   Ay6! #} H !!   Yy6! #} cL6!(@ l+6! !  (2,&  !  (20&  $( $ $& 0 (($:!*6! !O !6! q  5!!5! 5!! qs ! ! 5!*6! !O! ! :!*6! !O! ! !! 5!5! !O5! ! 5! 7! !O5! ! 5! 7! !O5! !   6 !*6! 8 H5! 7!  e ز e 5!! qs ! ! {5! $$ (    {`5!     $    &  & &    # 0  9vB! ! A      &   &  &  # 0  9  & ! @&  &   &   & # #3 & &     &  4 ( (  (2b& W $ (2b& (! ," (! 0" , (&! 0'! iB! $! %! &! '! 2s ( (& (b L`B! (! 4$   ,   &   &  , #0'&  &  # 0  9  #   :    &   & #       5  2  b&. b& /x '  *  $I & b x C  F  $$  b 2b& \g  & b Q b b wHB! b  & ! 2b&!    2b& C( !! !p       ! ! #     $   $& $ #  #  !K   # (  /B! ! ! ! !K,  'B!} ! ! ! ! ! $ $ >}  q ( 2 (b&  k (b&  k 2b& B!C}  & b CA! ! , H  2 & & A! !   &     2\!& A! A! A! A! A! rA! ]A! HA! 3A! A!  A! @! @! &!   & !@!  &! @!  &  &   (  0# 0  9 0! @&   $  $ ` $ l@! ! 8( h ,& & @! ! ( (   h ,& &  &! 0! q   (  &  @! 0! ((! ! ! ! 9      ! ! ! 'h (,&! ! u ! ֞ ! ! !p !- u@!\ 4 _@!\ 8* :@! 4! 8!\"@!\ ffZB  @! ! \?!\  ?!\ \ ?! ! (!\?! ! (!\r?! ! !\U?!! \,?!\ T \ ?! T! \!\ _^]P]>!8% >!8f 8 ! ! 4ޫ @! 4! \8H>!\ !     !}#>!\ !! !!! !}#>!\ !! !!! !}#>!\ !n#n>!\(!     !}#_>!\ ! $ $! $!!! !}#P>!\ !! !!! !}#@>!\ !! !!! !}#0>!\ !&! !!! !}# >!\ !! !!! !}#>!\ !! !!! !}#>!\ !! !!! !}#=!\ ! ! !!! !}#=!\ !!! !!! !}#=!\ !n#=!\! (   ( !}#=!\ !! !!! !}#}=!\ !! !!! !}#`=!\ !n#F=!\<! ,   , !}#=!\ !! !!! !}#}=!\ !! !!! !}#/=!\ !! !3!! !}#=!\! 8  0 8 !! ! <&! 0!! ! <!! 0!}#! @  4 @ <!\ !! ! D&! 4!! ! D!! 4!}# 0!n# 4!n#<!\ !n#HD<! $6 (* $!! <! $! (! $ ('! 4- 4 $!@!<! ! \<! $!! ~<!! 8- 8 <! ! \f<! $!! b<!I@! <- < $!@!<! ! \I<! $! ! E<!<! @- @ $!@!<! ! \D! ! ! ! <! q  $x& !<! q  $x& !;! q  &$x& !;! q  9$.x& !;! $q $ L$Ņx& !;! (q ( _${x& !;! ,q , r$x& !;! 0q 0 $x& !;! 4q 4 $!;! x& !;! 8q 8 $! x& !;! <q < $x& !;! @q @ $x& !;! Dq D $ܗx& !;! Hq H $x& !;! Lq L %x& !;! Pq P %%! x& !|;! Tq T :%! x& !r;! Xq X O%! x& !h;! \q \ d%! x& !^;! `q ` y%! x& !|;! dq d %! x& !V;! hq h %! x& !P;! lq l % x& !J;! pq p % x& !D;! tq t % x& !?;! xq x % x& !0;! |q | &>#x& #( &! x& ! ֞ ;! ! ! qs ! -  0&x& x v& !;! q  [&! ֞ ;! ! qs ! ! x& ! ֞ ;! ! qs ! ! x& T d& && \& && !! 8!  & $& && ! d! ! & ! !! \&! PG  P P &T &z&  $& &'' $&T& &!8' $&X& '!8' $&\& '!8 $&8&!! @! &&    ! &! H $  &:zD &  &@ .:F8?799696; &2' &  ZC!XC! &!   'SC!QC! &! &' &? &E'  (!   &! &! & ' & &'  $& ( &. (IC! |&! qs $'(! ! f( &. R( &. 3(IC! |&! qs ! ! G &. f(IC! |&! qs ! ! Gf( IC! |&! qs ! !  &'  &. ( & ( & (   & & ( &. ( (!-! &!L( &. (   !.! &!L(   !-! &!LxSC!XC! &!BC!XC!  &!.EH.  F.EH. E  S.Ee.  [.Ee.  c.Ee. E  p.E.  x.E.  .E. E,  < ! 8! ! - .E!  . ' !"! #    .E! ! (qs 4 . $ . $ 4'( $! (! , (!/! lK    &   / , '/ 0& / & R/ / 0&/ & R/ & R/  0& 7/ & R/ L/ 0&L/ & R/ &  ,2&   0&      &  ~/ $ &  // //  h  & & $ & & //    $  /  /  //  ( / (  /  ( / (  /  ( / (   0 0 `C& `C& 0 eC& ! !  $&(& -0!! /Q0 $&(& @0!! /Q0 $&(& Q0!! /   ,& & h00 & q00 &h&  ~00  &  / & @ W0,  X 4 \ ` X \& ` 0 d < d \& ` 0 X d 0 X! d! he/ h 0"6 L 4&h& 4&h&! l. , l ,0"6 L 0 ( T 1 ( T  1 T P T2 4&8&& 1 <&X&: <! 4&! ! p <&D& p p& L! t-. !oE! <&&! t!.  1 $ ,& $& 1 $&h& , 1 $&L&  & X d1"6 P 2 <&X&: <! 4&! P2 P,! t <&D& t t& L! x-. !ME! <&&! x!.  2 $ ,& $& 2 $&h& , 2 $&L&  & X 1"6 p t 4 p&L& t2: t7E2 (2 < p&8&& 2 <! 4&! ! x <&<& x x& 4&L& | <&$& | |& L <&h& <&h&  w. <&h&  / <&&& "6 x 4&L& x93: x7E93 <! 4&! ! | <&<& | |& 4&L& <&$&  & L <&h& <&h&  w. <&h&  / <&&& "6 | <&h& | M3 | R3"6 0 , 02&,& ,& ;> $ $h , $& $& $ $& $& ;> $ 4 4 $& $ $ $2 H$& 0 $2& 0 0& 0XJ> 4 = H$! 4! !=! H @ $ 0 $ 4 $ ? , 0,& ,& ? $ $h , $& $& $ $& $& ? 8 ,&& < ,&& 8> 8 <> < 8!! vC! 0! $ ,& $0&! 8! <! $&!$ ,&!(2s 8! $" D $ @ D& >? @ H&! 8! 6# @ @ D& 4 4& 0 0& 0X? 4 i>jC! 4! H! $qs $'(! $! $$'?  ?  ,& && X?? & ?  &h&  q?  ? ! <    ? &0& & ? &0&  & X D?  ?  ,& && ?? & ?  &h&  ?  ? !=  & X ?$ $t&! ! a  @  $ t&! &! I  $ ! &!  $&@ $&  &  $& ( $& M@@ (& @  $& . n@ (&h&  n@@  $& . @ (&h&  @@  $ ! &! H $&@ $&3@ $  $ &:zD &  &@ .:F8?799696; @ $& $&d& $&=K  ! ! <@ & @A ! ! <@ F!F! (&!F!F! ( &!  (  &  & OA OA  (  & &B7 dF! (&@ (&@ (!? (!    ! ! H !=K &,& &iA  & AA &! ! @T 0 \ 0& 0&6  0& 0&6 4 \  4& 4&6 8? 8 9  8 9 ? 9 \&! <$H  <  B \!=KB ( d& 7 $ (? $98! @  @ 4B \!=KB \h& \& 7 \l& `& 7 \p& d& 7 \p& \h&! Db , D , 8 H \h& H H 9 L \l& L L 9 P \p& P P 9 \p&  $9 T !? &  . LF!G & &A &A &d& ! $& B8C $&& C8C $&P& C8C $& & h&" $&8C $&& $!! &!M4 <&HC <&zD  < t&! h&! I  <  h&   &9  < l&   &9 $ < ( $p& ( ( $&9 <&. CLF! ,G <& , C 5F! ,G <& , <& C , < ,& ,\&" 0 < 0& 0\&" <&A <&d& <&B 4 ,& DLD ,&& DLD (&. #D ,&h& #DLD (&! $H    U   U h 4,& h 4,8& 2 2&&wU $ 2 2&& $ $' h 4,& < ( <2 82&& ( (& ,U ,,4   @ U #! (G ( U   &  U # U  U @! ,@& ,4 V @! ,"  ,  @!p ,&! ! 0q 0 V 4 V  &  U44, 8! "    YV 8!p ,&! ! $q $ SVpH! 4! 8! !\ 4,&&  ,V  & $ V 8! $@&  $  V $V 4,&&  pH! 4! 8! !\,V KH! 4! 8!\,, && &V  $& $& $& $&! NT $!3! !L $,& $! \&!! 8 0 8 0. WY <dJ  < !  &!  "  '( D & D D/ & & & 4& 8& H  H&  H&" L  L&  L&" P  P&  P&" T  T&  T&" <& & & &7 $ & &7 ( & &7 ! `+e , ` H! ,!  & W &&! ! d d! d!wh & " X &! ! d d! d!wh h  h&  h&" (= !b d & d d  ,96 h & h h $ ,96 l  & l l ( ,96  & & $& & &" & p  p&  p& &  & & X&  && &V &V & &" & "G! ! &! &! &! &!*! lK 4   4 &  & !    , &! 4Y &  4Y ,&! ,&!=K &  Y    ,&  &! eY X&  eY  &  &  GY  Y  ,\&  , \& Y \& wY    ,  ,\& Y  ,\&  ,\& Y  Y ,\& Y  ,\&  , \& Y \& Y  Y 0  Z ,! tY   2 (&h &&  0& Z  '  Z 0   $! tY $   $2 &h &&   (&    $! tY $   $2 &h &&   ('    Z 2 &h &&   ,\&  , \& Z \& }Z   $ 0! tY 0   @  , & Z & Z ,&! tY    0 Z  & &  Z 02 ,&h &&  $$ ( [ <[ (! "  & !    ! (! 6#   (   4 4!  0 &&  v[ 0! 4! ,    0d& r[([ 4  4!  0 &P&  [ ! 0 &H&   [ 4! 0 &T&  [ ! $ 0 &L&  $; ((, 4 [,\ ! 4! !  [  2M& [ ,\  & \ 2M& [ 4! (@&  ( ,,  +\  2M& %\ :\  & 8\ 2M& \  E\\   ,T\& S\u\ ! ,T\&! k#  k\ \  & @ H\ ! @&   \\  4 ,U& \\ !4 ,U&! k#  \ \  &  \ ! @&   \ ]  X ,!& \\ !X ,!&! k#  \  ]  & @ \ ! @&   ]N]  p ,& "]D] !p ,&! k#  :] N]  &  ] ! @& L, 0 , ] 4,! <, , <,2M&! <,!p 0 4&! P! 4,! D, ,2 D,M&! D,M&! D,M&! D,M&! D,M&!$ D,M&!( H, 0 0 H,& , ,& ,2M& ] , Y] , ] 4(! ,, 4&! !p 4(!8 , ,& , 0(& ] P!8O! 0! 8L,L,l, T P ^ T X&!O! \, P, \,T\&! \,\&! \,\&! \,\&! \,\&! \,\&!$ \,\&!( \,\&!, \,\&!0 \,\&!4 \,\&!8 \,\&!< `,M d, \,\& `,' d,(!@ \,\& `,' d,(!D \,\&P\'(!H \,\&U'4(!L h, T T h,& P P&  P,T\& ^ P@ ] P ^ X(! P, X&! !p X(!8 P P& P T(& ^ P!8O! T! 8l,l,D4 4 0 }_ 4 , 4!O! 4! ,! <4 ,, @4X 0, <4 @4!&&! <4 @4!&&&! <4 @4!&&&! <4 @4!&& &!$ <4 @4!&&&P\'(!( , ,& , ^ 4 8&!O! <4X 0, <4!&! <4!&! <4!&! <4!&! 4! @4 4 4 @4& 0 0& X 0,!& _ 0@ ^ 0 _ 80! 0, 8&! !p 80!8 0 0& 0 4(& _ P!8O! 4! 8D4D4@O!8zO!! 8 0 02M& _<` 4! 02M&! ! 8hO! 0! 4!8]O! 02M&! 8RO! 02M&! 8HO! 02M&! 8@O! 02M&! 8 P!8 0 0& 0 _ P!8+O!! 8 0  0,T\& W`pa $O! 0!  0,T\&!8 0,\&w`O!8` O! 0,\&! 8O! 0,\&! 8O! 0,\&! 8O! 0,\&! 8O! 0,\&! 8N! 0,\&! 8N! 0,\&M' (! 8N! 0,\&M' (! 8N! 0,\&P\'(! 8N! 0,\&U'4(! 8N! 0,\&! 8 P!8N!8N! < 0, <\\&! <`\&! <d\&! <h\&! <l\&! <p\&! <t\&!$ <x\&!( <|\&!,8 P!8 0 0& 0@ L` P!8N!! 8 0 4 0,U& aa N! 0! 4 0,U&!8N!4 0,U&! 8xN!4 0,U&! 8oN!4 0,V&P\'(! 8dN!4 0,U&! 8 P!8 0 0& 0 a P!8SN!! 8 0 X 0,!& ac EN! 0! X 0,!&!8X 0,!& b+N!8N!X 0,!&! 8N!X 0,!&! 8M!X 0,!&! 8M!8M!X 0,!&! 8M!X 0,!&! 8M!X 0,!&! 8M!X 0,!&P\'(! 8M!8M!X 0,"&! 8M!X 0,"&! 8M!X 0, "&! 8M!X 0,"&P\'(! 8M!8M!X 0,"&! 8M!X 0,"&! 8M!X 0, "&! 8M!X 0,$"&P\'(! 8 P!8 0 0& 0@ a P!8yM!$! 8 0 p 0,& #cc mM! 0! p 0,&!8eM!p 0,&! 8]M!p 0, &! 8UM!p 0,$&! 8KM!p 0,t&! 8AM!p 0,x&! 87M!p 0,|&! 8 P!8 0 0& 0 c@@ ,  ,!/M! 0 , && ! 0! 4,  4   d  d& c < d& c ! D  &|& < D < d& c 8 d& )d  d& d @ d& d ! H  &|& @ H @! L  &|& 8 L ( 8 ! ! ! ! (! P7- P ! T" $ T ! ! $^d X $ ad X X!2M&! ! ! \ \ \&  d& d 8 d& d ! <  && 8 <  8  d& c @  @!#M! D @ && ! D! H,  H   e ,T\& fe  d& d P d& e ! X  &|& P X P d& e L d& Le  d& (e T d& :e ! \  &|& T \ T! `  &|& L ` ! L! d7- d! h[ ,T\& h l l l&  d& e L d& e ! P  && L P  L  d& d T  T!M! X T && ! X! \,  \   f X,!& eX,!& eX,!&!t p l p p l&  d& f d d& f ! t  &|& d t d d& +f ` d& `f  d& [ 2M&   /  d& m  d& n !   &&      d& mxn  !L!  &&   Ln ! ! >[ 2M&  xn  !L!  &&   xn ! ! >[ 2M&   d& n x d& n ! |  && x |  x  d& k   & $ d& n P d& n $! T  && P T $ P $ d& jLL!8 P\!! $! 8 T 8!#M! < 8 && T! <! @, ( @ ( Td& 'oLPv ( ( Ev ( Td& >o D Td& Po (! H T &|& D H , D , Td& io L L L' Mv L  L,P\& L ,\& ,X\&!! @!,\& ,\& ,\& ,\& ,\&M ,\&M ,\& ,\& ,\& ,\& ,\& ,\& ,\&P\ ,\&P\ ,\&U ,\& , Td& p P Td& /p ,! T T &|& P T 0 P T! 0! X7- $ X ,T\& Zp $! \[ ,T\& \ , Td& kp ` Td& }p ,! d T && ` d  `  v  Td& p l Td& p ! t T &|& l t l Td& p h Td& p  Td& p p Td& p ! x T &|& p x p! | T &|& h |  h  Td& q Td& q ! T &|&   Td& $q Td& Yq  Td& 5q Td& Gq ! T &|&  ! T &&   Td& jq Td& q  Td& {q Td& q ! T &|&   Td& q Td& q  Td& q Td& q ! T &|&  ! T &&  ! T &|&    T !L!  &&   r ! T &H&  ,\&  u T !L!  &&   `r T! ! ! 5, $  $! ! Y,X\&! ! @!u T !L!  &&   r T! ! >[ ,\&  u T !L!  &&   r ! T &H&  ,\&  u T !L!  &&   s  T! ! ;*  s ! T &H&  ,\&  u T !L!  &&   As ! T &H&  ,\&  u T !zL!  &&   ~s T! ! 7- $  $! [ ,\& 2M& u T !sL!  &&   s T! ! 7- $  $! [ ,\& 2M& u T !hL!  &&   s T! ! >[ ,\&  u  T !aL!   &&   t !  T &L& 4  ,\& 4 u  T !\L!   &&   Ut !  T &L& 4  ,\& 4 u  T !UL!   &&   t !  T &H&  ,\&  u  T !NL!   &&   t !  T &H&  ,\&  u  T !HL! $  &&  $ t ! ( T &H& ( ,\&  u ( T (!=L! , ( &&  , 9u T! ! 07- $ 0 $! 4<\ 8 8,\& 8 4,P\& u 0 T 0!5L! 4 0 &&  4 {u T! ! 87- $ 8 $! <<\ @ @,\& @ <,P\& u 8 T 8!0L! < 8 &&  < u T! ! @7- $ @ $! D\ ,\&4 D,U& u @ T @!(L! D @ &&  D u T! ! H>[ ,\& H  Td& u h Td& v ! l T && h l  h  Td& p p p p& ( Td& /v D Td& Av (! H T && D H ( D ( Td& -oLLL!8!!! ,! `  `!M! d ` && ! d! h, 0 h 0 d& vЀ 0 0 ŀ 0 d& v l d& v 0! p  &|& l p 4 l 4 d& v t t t' ̀ 4 d& v t d& v 4! x  &|& t x 8 t X,!& w ! 8! |7- |! [ X,!&  4 d& 0w d& Bw 4!  &&     X ,!&  X,!& X,!& X,!&   ,X,!&&&  ,X,!&& &  ,X,!&&&  ,X,!&&&P\  &  pw  d& w d& w !  &|&   d& w d& x  d& w d&  x !  &|&  !  &|&  $   d& 4x d& Fx !  &|&   d& Wx d& x  d& hx d& zx !  &|&  !  &&   d& x d& y  d& x d& x !  &|&   d& x d& y  d& x d& x !  &|&  !  &&  !  &|&    X,!&  ! L!  && $  z  d& Ny d& `y !  &|&   d& qy d& y  d& y d& y !  &|&  !  &&    z  d& y  d& y !   &|&   ! ! >[ X,!&   /  d& y  d&  z !   &&      d& yd  !L!  && $  {  d& Ez d& Wz !  &|&   d& hz d& z  d& yz d& z !   &|&  !   &&    {  d& z  d& z !   &|&   ! ! >[ X,!&   /  d& z  d& { !   &&      d& zd  !K!  && $  |  d& <{ d& N{ !   &|&   d& _{ d& {  d& p{  d& { !   &|&   !   &&    {  d& {  d& { !   &|&   ! ! >[ X,!&   /  d& {  d& { !   &&      d& {d  !K!  && $  7| ! ! >[ X,!&  d   !K!   && $  d  d& a|  d& s| !   &|&    d& |  d& |  d& |  d& | !   &|&   !   &&   ,  \ , d& | $ d& | ,! ,  &|& $ , $ d& |  d& (} , d& } ( d& } ,! 0  &|& ( 0 (! 4  &|&  4 ! 8  &H&  8' , d& M} @ d& _} ,! H  &|& @ H @ d& p} < d& } , d& } D d& } ,! L  &|& D L D! P  && < P  < -  d& } X d& } ! `  &|& X ` X d& } T d& ~  d& } \ d& ~ ! d  &|& \ d \! h  &|& T h $ T  d& )~ t d& ;~ !   &|& t  t d& L~ p d& ~  d& ]~ x d& o~ !   &|& x  x!   && p  p d& ~ l d&    d& ~  d& ~ !   &|&    d& ~ | d& ~  d& ~  d& ~ !   &|&   !   && |  |!   &|& l   l   !K!   && $  N !   &H& (   ,X,!&&& (    !K!   && $   !   &H& (   ,X,!&& & (    !K!   && $   !   &H& (   ,X,!&&& (    !K!   && $   ! ! 7- ! <\  ,X,!&&& ,P\&  d&  T d& ) ! X  && T X  T  d& } , d& F  d& X ,! $  &&  $ ,  , d& |  d& u d&  !  &&    d& Hw   & 0 d&  l d&  0! p  && l p 0 l 0 d& v K!8U!! ! @ ( @!M! D @ && (! D! H, $ H $ (d&   $ $ | $ (d& ) L (d& ; $! P ( &|& L P ( L ( (d& T T T T'  T 4 T,U& T 4,U& 4,U& 4,U& 4,U& 4,U& 4,U& 4,U& 4,U& 4,U& 4,U& 4,V&P\ ( (d& ʁ X (d& ܁ (! \ ( &|& X \ , X 4,U&  (! ,! `7- `! d[ 4,U& d ( (d&  h (d& & (! l ( && h l  h B  (d& = t (d& O ! | ( &|& t | t (d& ` p (d&   (d& q x (d&  ! ( &|& x  x! ( &|& p   p  (d&  (d&  ! ( &|&   (d& ͂ (d&   (d& ނ (d&  ! ( &|&  ! ( &&   (d&  (d&   (d& $ (d& 6 ! ( &|&   (d& G (d& |  (d& X (d& j ! ( &|&  ! ( &&  ! ( &|&    ( !K!  &&   ȃ ! ( &H&  4,U&   ( !(L!  &&    (! ! >[ 4,U&   ( !K!  &&     (d&  (d& 2 ! ( &|&   (d& C (d& x  (d& T (d& f ! ( &|&  ! ( &&      (d&  (d&  ! ( &|&  (! ! >[ 4,U&   /  (d& ̈́ (d& ߄ ! ( &&     (d& ~ ( !K!  &&   0  (! ! ;*   ! ( &H& 4,U&   ( !K!  &&    0I@ (! ! ;*  s ! ( &H& 0I@ :94C8  (! ! ;*   ! ( &L& 0  4,U& 0  ( !K!  &&    0I@ (! ! ;*   ! ( &H& 0I@ :94C8  (! ! ;*   ! ( &L& 0  4,U& 0  ( !K!  &&   B ! ( &H&  4,U&   ( !K!  &&   x !  ( &H&  4,U&    ( !K!   &&    !  ( &H&  4,U&    ( !K!   &&    !  ( &H&  4,U&    ( !K!   &&    (! ! 7- ! <\ 4,V& ,P\&  (d& , p (d& > ! t ( && p t  p  (d& , x x x& $ (d& f L (d& x $! P ( && L P $ L $ (d&    {K!8!! !$ <  <!M! @ < && ! @! D, $ D $ d& · ۔ $ $ Д $ d&  H d&  $! L  &|& H L ( H ( d&  P$ P P' ؔ P$ p P,& P p$,&d p$, & p$,$& p$,t& p$,x& p$,|& p$,(&!! !p$,(&!! @! ( d& z T d&  (! X  &|& T X , T p$,&  ! ,! \7- \! `[ p$,& ` ( d& Ĉ d d& ֈ (! h  && d h  d   d&  p d&  ! x  &|& p x p d&  l d& E  d& ! t d& 3 ! |  &|& t | t!  &|& l   l  d& Z d& l !  &|&   d& } d&   d&  d&  !  &|&  !  &&   d& É d& >  d& ԉ d&  !  &|&   d&  d& ,  d&  d&  !  &|&  !  &&  !  &|&     !NL!  &&   x !  &H&  p$,&  o  !K!  &&    ! ! ! 5, p$,&  o  !uK!  &&   ފ !  &H&  p$, &  o  !L!  &&    !  &H&  p$,$&  o  !K!  &&     d& > d& P !  &|&   d& a d&   d& r d&  !  &|&  !  &&      d&  d&  !   &|&  ! ! >[ p$,t&   /  d&  d&  !   &&     d& o  ! L!  &&     d& 5 d& G !  &|&   d& X d&   d& i d& { !  &|&  !   &&      d&   d&  !   &|&   ! ! >[ p$,x&   /  d&   d&  !   &&      d& o  !L!  &&     d& , d& > !   &|&   d& O d&   d& ` d& r !   &|&  !   &&      d&   d&  !   &|&   ! ! >[ p$,|&   /  d& ٍ  d&  !   &&      d& o  !mK!  &&    0  d& &  d& 8 !   &|&    d& I d& ~  d& Z  d& l !   &|&   !   &&      d&   d&  !   &|&   ! ! 7- ! \ 02p$,(&&  0 0&  d& ݎ  d&  !   &&      d& o  !hK!   &&    0  d& *  d& < !   &|&    d& M  d&   d& ^  d& p !   &|&   !   &&       d&   d&  !   &|&   ! $  &H& 02p$,(&& $ 0 0&  d& ޏ  d&  !   &&      d& o   !`K!   &&   o  d& (  d& : ! $  &|&  $  d& K  d&   d& \  d& n ! (  &|&  ( ! ,  &&  ,   g  d&  4 d&  ! <  &|& 4 < 4 d&  0 d&   d& ː 8 d& ݐ ! @  &|& 8 @ 8! D  &|& 0 D 0! H  &H&  H  d&  T d& $ ! h  &|& T h T d& 5 P d& j  d& F X d& X ! l  &|& X l X! p  && P p P d& { L d&   d&  ` d&  ! t  &|& ` t ` d&  \ d&   d&  d d& ґ ! x  &|& d x d! |  && \ | \!   &|& L  ! L! 7- ! \    d&   d& . !   &|&    d& ?  d& t  d& P  d& b !   &|&   !   &&    d&   d&   d&   d&  !   &|&    d&   d&   d& ʒ  d& ܒ !   &|&   !   &&   !   &&    d&   d&   d& "  d& 4 !   &|&    d& E  d& z  d& V  d& h !   &|&   !   &&    d&   d&   d&   d&  !   &|&    d&   d&   d& Г  d&  !   &|&   !   &&   !   &&   !   &|&   !   &H&    @ @ 2p$,h&&   d& Q 0 d& c ! 4  && 0 4  0  d&   d&  l d&  ! p  && l p  l  d& ܈ t$ t t& $ d&  H d& ̔ $! L  && H L $ H $ d& ԇ$    ;K!8 !c !i !n !Rv !Ҁ !  (  5 5 20& 7 7 7  7  (!    (*2 Uk  2 $&&   /  (!    (*2   2 $&&   1.  & & & &   !-K! X ,,!&! 0&! (! 4! !-  , 4 4@ !#K! & ! ! , ! ! ! $5, $! ([ @ ( @ $,W  @ K 4# # : ,W    &   & # U  -,,4 @!! @!  <   (   (& (#! ,  ,   ! !  ! 0 2 @& 0    & 2K!84 # m44d  X 2 X & X lx&& 2 lx&&   \ 2 ` \ & ` ` \ p&&' 2 & d#  &  – lx&! ! @!ddJ!8J!J!     PJ!8ݔ_ !ޢR   ! ! 8  J!J!      !! !d !8J!8J! ! 8J! - !!! ,!P\!! $!M!! !        ݔ_ !!! ,!P\!! $!M!! !        (!J!     BJ!8J!8ݔJ!8_ !ޢ D    nk Me  L ( D HL2D& nk  FPL ' vP P  2D& ޘ    &2D&   &       & ޘ  И  &2D& 2H&  &   P   & L ' |F    2D&   &  & L    ( '( & ! g    2H&     $,!     g  & &   $, Z F  H'(   L P   2D&  & 2D&  , 8  4!t, 8! $  $ 4! (  (2 8 ޙ  8 ! 4! ! 4!t ,, &T T2T&!tT2T& T  & T T o T2T& BT2T&!tT2T& !    ViP!\T2T&  T  &*  ! ZP! ! \XP!\<LP!! \@P!L! \! (  ( !y6P! ! \ !p! ,  , ,P! ! \ !XP!\ !t!y !d! 0  0 "P! ! \ !XP!\!y !! 4  4 "P! ! \ ! ! ! 8  8 "P! ! \ !<<D La L?6! ,K ,X8D L?v L?7! 0K 0X9D L~?D L?XD         '3& L 2\&      &  'ƛ  Л  & 4 8\ <  42 8& $ L <7  42 8& <78  : $6  ? 9 @? X @79 D8 @6 DD( 0#(  0XA: 0 0X8  ' 0X-X 0?XT 0 0X9  & 0?G ? D 0 79X 78 ;   :7 2 $ \&  $ `& $7 96   :7 ((   (? ' ( (?7 (?֜ (֜Ҝ & ( (?6 (Ɯ (! K    '  X8    &  X9      !   A!   8  $!   ( 9 !     !  ;  !  ;   ;   $ ,! w   , :7 ,Ν    '  *          ĝ           ,    & ? *          ?     ?       $$ !    !    !    !    ! 0 ! A  8  ! $!     !?!    ( ?  97!  (! ! m       ( ?  97!  ! (! m      !     $  (  9  96! ؞   !  :   ;  -  :  :7   8;   : 97  !    !      $  9  96!   !      ş   @8  '  ۟  ֟ @ 9  &   ʟ    !   !   ! ! :  ! !  $      c 0 '8  A  0 '&   !  ,&! !p   '& 5Q! ! 8  0 , $$ ! !      & ( ,`&.  ( ,`& (        0&# a     Ӡ +  $r  $   $  w            &  0&#  ((   !  ! $& ]  4 $& ]  ] $&  $! ˣ   S  V  $&   $&  r  r  z     -Q Q  Q P P P P P  `  / t d h !P! 6#    / $   0!P! 6#    / Ե ĵ ȵ !P! 6# < L `   < L&# L&! $ L $ $/ H! (  (  d d 2& 0 L 0 0/ d 4 L 4 4/ D! 0 L 0&! ! 4 0& 4 L&  L.  8  8  8 < L &! D! 6# L<< }     ע !! ! (! ,! !       `   & &! !! !8 L `% )8ɣ L. 48ɣ $ L& $ M $ M $ IQ 8ɣ 8ɣ L&\8ɣ  D H, , L  ,& , &' 0 L  0& 0 &' L.  @ L&  ' @ @& @! ! L&! 4 L & 4 4 &   D( 88,  4 `أ ܣ,+ 4. ,+ 4.  4  . 4&,+ !  ! ! 4! $ $  ,+ ( 4 ( ( / ,,   `: >b . Ib   / &  &,  < `q u, <. ,  <  & & ,     &  4&  #! <! $ $ ֤ <! ˣ $   $ $# ֤  8'   4& #  ( < ( ( / , 4,,,  8 ` ,@ 8. ,@  4 !  ! ! 8! $B $ 2 ,@ ( 8 ( ( / ,,,  @ `S W, @. b,  8 <,  @&      ~ , 4! ! $ $, 4! ! (m (, @&, 4! ! @&! <,,$  0 `̥ Х$ 0. ۥ$ ,! " ,!! ! 0! B $$   `      } ! $}! (}!- ! }! } }}}   0 (! ,! !        ! ! $!      , ! (! !            `     &  < ( D (` ( < D. ¦ < , L ,  , Ԧ ,   D & H&   H   D& H'   0 D 0 0 / <    D &! ! ! 0 $ 0  4 4 D 4 4 / < D&D D&! D&  D& $ D &   D&    D&   { 4  4   4 ! ! D&! 8 D & 8 8 &   ' r 4 D 4 4. << !! !     `ާ    & &      `     &     `* .@  . :  =     `S Ua   .   k    w {  2&     0 (! ,! ! -      !LQ!    "!8Q! ! ! :'   "    $i  = 0   9  ' &9i i   0 M 9Mi   'A&Zi   'a&gi    0  9 0'  A  Z A' &   a  z a' & (  0   # + Щ - ũ֩   & ֩  &     8, #! $k   $&  & #! 8! $  $ ۩ 4  4    , (( ! $! (!  ! !    0 Y 9Y  \        w w  z                         !R! \Q!!!R! Q!!$!R! 8R!!!R! R!! !!$!!     !   ,, 4! $"  $  E   0,,  4&#\ ? 8 8'  & 8'r  Y  4&#\ ],,  4&#; l < <'  & <K    (  4&# (\  (;   &  &    ? ? ,!  4&! ! ,&,,,  ի   * ի   &  ϫ @!! H&!  l!R! !$!! H&! $ (l (!R! (! $! ,l ,!R! ,! H &! 0l 0!R! 0! 4 H 4&! 4&! 4! 8l 8!xR! 8! H&l&! <l <!tR! <!l@@    ' :  $   , ٬!  ,  ٬  ,&  '  ,  <& ,   ,&  &  ,  <' ,<  ,& %  ,&  '  ,&  <& ,& J  ,&  &  ,&  <' ,&<. < ,&,& {  , &  '  ,&  & ,& _  , &  &  ,&  ' ,& <    ,&,,&   ,&  '  , &! «  &   24&&& , & )  , &! «   &   24&'' ,&  &  , &! «  & 24&b  ,&  & ,&   ' ,& F  ,&   & ,&  ' ,& k$$!    Ȯ   #!  $   & #   .        .        .         &# &# *  -     . ?  B     &  &" !   o & w &;  !    &  &:  & .        . ɯ  ̯     & &   &       &     .          & &   . . . J  M     . _  b       & &   .        .        & & .   İ     . ְ  ٰ     .         .     /   ! e  ' ! p  '  *   ! e  K ! G  K  N   ! e  o !   o  r   ! e   ! }p       ! e   ! hp        ! 2d&! q  ߱ $    &  ñ !^! q   $    ,#   0#        # 9  , & 0 && n ,# H  ,& P  ,&: 0# _  0& g  0&:  6 ( "   ,#   0#        #   , & 0 &,  ,#   ,& ²  ,&: 0# Ѳ  0& ٲ  0&:  9 ( " ,  8  #    < #     &  &*       # 7 $ 8 $& < $&( l 8# F $ 8& N $ 8&: <# ] ( <& e ( <&: $ (8 4 ",  ,#   0#        #   , & 0 &( ޳ ,#   ,&   ,&: 0# ϳ  0& ׳  0&:  8 ( "   ,#   0#        #   , & 0 &' P ,# *  ,& 2  ,&: 0# A  0& I  0&:  7 ( " 4 $ @# $ m D# $ m  p    @#  ( @&  ( @&;  ( D#  , D&  , D&;  ,  *  ,״ ! 0ݨ  0 д  ' ״  &   < "44 $ @# $  D# $       @#  ( @&  ( @&;  ( D# ) , D& 1 , D&; ,   *  ,b ! 0ݨ 0 [   ' b   &   < "4$  ,#   0#          , & 0 &        ,#   ,& õ  ,&: 0# ҵ 0& ڵ 0&:        $$$  ,#   0#         0  , & 0 &'  *    o ,# ?  ,& G  ,&: 0# V 0& ^ 0&:  h  k    $$(  0" !  4" ! $ $     (($  ,#   0#        ֶ  , & 0 &Ͷ  ж     ,#   ,&   ,&: 0#  0&  0&:        $$(  0" !  4" ! $ $ 4  7  ((, 4!    4! $  $  4 7   47  k ,  u , !@! ( ( , ,,           2   #0'&  & #  ͷ 1  0  T   ݷ  $ O \0&  $TW 0&! ( \  (   $TW , \0& 0 ,& , 0  0 2 \&&   * ;    (&,   2 \ &&   2 \ && 4 2 8 \ & 4 8& 4' 8& < '  < <2 \ &&   8 2 < \ & 8' <& 8 <&M @ \& @ @&  /&  ߸  &  & & \d&  &  ¸ D \ H D& H Dd&   H & \& \&  I \&  & L & L \d& 3  L P  P&  P& &  $ $& $ `  `TT  ( & d&   (& (& &  (&  '   (! ,! 0!    ( 0&#  0T&(3  0 & d&  0! 4! 8!  0 & 0&2  & d&  0!! ҷ   $ 0 $& $d&  0& 0T&(3  0& 0& &  0&  ' ((, 4&# F 4T&,˺ 4! 8!     4d& Ⱥ  4 ! d& ! ! 4! 8! $  $  4d&  4!! (ҷ (  4& 4T&,˺ 4! 8! (  (  4d& Ⱥ 4& 4T&,˺ ,,    &  &     &  & Ӻ (  0& M ! 4! ͺ    4 A    4, && $ 0& $ $ 4' (\  , &&  0d&  0d&(( $! (! ,! Y    0 ~ ! & ( & , $  , !  d& ! ! Y    @ & 0 $$$  , !  d& ! ! Y   @ & 0 $$$  , !  d& ! ! Y    @ & 0 & $$$  , !  d& ! ! Y   @ & 0 & $$$  , !  d& ! ! Y   @ & 0 & $$ #  ! &!   ! &! Q  0 0 (&!  $    Լ $& $ & ,  ! ,! 6# ! 0#! (! ( &  (! " $! (! !  ,  4 ! d& ! ! $Y  $ 4! <! 8!! ( & ( @ & < ,,, < <  4 ! d& ! ! $Y  $ 4! 8! ! <#! ( & ( @ & 8 ,, (!  ,   (  *&&! 5    @ & , & ! (d&!    , 4! Z 4! Z  ( *&  Q   , 4 &&   , 4 &&! $ $ , 4 $&&& 8 ( ( , 4 (&&& 8 &   ,  ( * y   ,  &&&   ,  &&&  ( *    $  ,  &&&  о   $  ,  &&&  8  @&  &!    D! ! $k# $    &  @d& ܾ  @d&  &8r @! D!  $ @ $! ! $d&!! (^  (  ! &! , @ ,! ! 0 ,& 0!! 4^ 0 4 88\' !^! d &!  d&  &! D ! D! Hq H   &  dd&   dd&  d! ! D H d H! D! Hd&!! L^  L  ! &! P d P! ! T P& T!! X^ T X \4 D d & D D& d & w dd&\\X  $ d!~^! (#  ( (   `! &! ,6 0 ` 0! ,! 0d&!! 4^ 8 ` 8! 8&! 4!! <^ `! d! @Ҿ D ` D! @! Dd&!! H^ `! <! H!! L^ P ` P! P&! L!! T^ TX"  d ,   ,&  , 0 # 0+  0- 5 4   4&  4 #.   8   8&  8 #! 8G 8  `! d! <Ҿ <X" #. g  4   4&  4 #! 8G 8  `! d! <Ҿ <X" #! 4G 4  `! d! 8Ҿ 8X" #! 8G 8  #.      < # <e  <E  $    & @ # @-  @+  @! DG D  `! d! @Ҿ @X"  & 8   8 8#    d! <$ `! <! @Q @X" d! <@& `! <! @ @XXD P!|^! k#  : Lt&D P!z^! k#  O L&D P!x^! k#  d L&D P#o  !t^! P&! !p^! !* L! ! $ $D P#d  P&!l^! !* L! ! $ $D P#x  !g^! P&! !c^! !* L! ! $ $D P#b  P&! $  $ L! ! ( (D P#\  $ P&!]^! (q (  $  P&!U^! ,q , , $  P&!N^! 0q 0 @ $  P&!J^! 4q 4 T $  8 P 8&#x  8&#  P&!G^! <! @* @  < $ <  Ld&D P&! $! < <  P&#  $ P&#  Ld&D L! $! @ @D Ld&DD4  <  / !   ! ( & , $ ( ,( ( ,*&   0 0 ,  0&&! &  $  @. *  & $  $ Z . $ Z  @/ &       & ,  ,  . ,  &          @.   .  & &   Z  & &    4t |&#  |!A^!  |&! |&! |4&! |8&! |<&! |@&! | &! |&! |&! |&! |&! ! !  |d&  . |& | & d&  |0&   2 | &&0&  .   .  |! !   & |& & |d& |&  $ |& $ $& $ &  $ $ 2 | &&  ' q |&#  $! ^! |&! |! $! t( 4! Ӯ  (  4 &! 0 &j 4!   j  4&  .  X &  X 0! 4! 0! $ 4 $&! 0 $&(8 D!^!       @&  &  @ &2 && @ $ & $2 && $&  ( @ (&2 (&&& , @ ,&2 ,&& 0 @ 4 0& 4& 0& 42 0&&      88,  4 & &2 && 4& z  4 ! &! !  4&  ' 4 $ & $& & $2 && 4! (| ( z 4!^! ,   &   &`  &&.      ( 80  ^  8  ^  ^ 4! !     ( 0! ! 8! $#  $ & (( (! ,! 0!      (d& ! (! !    !     8d (0 A ^ M ( J ^ M ^  (/ & $ &  (! ,! 0! #     (d&  (! !    !       (/ &   &  & $ $ ,! 0! 4! 8!      ,d&$ ,! !  $$ &   $1. 0. & . " &!ޢ   $&& ! n   i  $ & & i & i $!  $& )l  $.  $&! ˣ  $   & #   &   $ &    & # (   $&& .  (! &! -  & &    &  &   (&& . E ,! &! K  & & ?   &    &  , , ,& ,#  ,  4&& .  8!! <! &!B  & &  (  & ( ( & $ 8 8 $&  $ < <' < r,  (&& .  ,! &!   & &    &    &  , ,  4 &    & 4! (     8! #!     4 & 4 &#\ 4 O 4! &#!  ( &  ( ( 4 &,,d  l &  l! $(  $  x  l &' l&d (  ( ` (` (2& 4"  4   4  \   `  8 l 8! < 8 & <!  <'! @ @d D   D& D ` <n  <   < D"  D X  D k X k Lr  L E t 2  L k x k   ` P   P& P   ` T   T& T   ` X   X& X   ` \   \& \"  ` `   `& `   ` ! P!$  P 0  F 9 2 &0'  2 &A' &    ` X   X& X   ` l&dd       & #    #    $! (   !     ! $! ! < D! D! (     " I .O 2l&  b $;  $   $  `  < < < D! ((  ( ^! ! , , < D! !  D!.! < < < < < D! 0(  0 0@  < D! ! < D! 4(  4 (  < ! < D! ! ^! ! 8 8  <  < D! ! <<0  < 8!"!       < " <  < \  8!\!    $"  $ j  $d  ~  t   \  8!"!  8!n!  8!t!  8!r!  8!\!  , ( 8!x!  ,  8! ,0&!  8! , 'A&!  , * ,  8! ,0&!  8! , 'A&!  8! !   &  &  @ ' 8!"! 0$ ,! 0! 4! ! !4 ,! ! !M$L X Td& B ^ b X Tt& O ^ b X T& \ ] b X T& i ] b X T& v ] b X!     T & !]! 6#b X!     T & X! $ $  !l^! X&!b !]! X&!b X! $Ӯ $  \   X& b ` T & d T! ( X (&! (&!s X! (2 (  X! 0 , 0  T & \ 5  , &b 4 , 8 4 8 r 4 ^ 4 h 4 8 | , T| !]! b !]! b !]! b !]! b ,  !]! 6#b ,  !]! 6# ! ,2d&! "b !]! ,!b X! , ,  X! 0  0 b X! 0= 0   T & X! 4B X! 8Z !]! 4! 8!b X! 4 4  ] b X! 8x 8  ] b X! <ɰ < * ] b X! @R @ O  T & X! DZ !n]! D!b X! D D _ ^] b U] `  ! H" d H L $! (! ,! Y    & ( & ,   ( ! d&! ,! Y    & ,   4 @& <d&  @&4V <! @ &! &!! $^  $   1 <! &! &!! ,^ @ , 0  0& 0& <d& 1  @& (  (& (& <d&  , & , ,& 44  (d&  (! ,&! !! ^   , ,& ,!   b     $    & &      d&    , ( $d&  $! (! X (    (& (&   ( (  ( $d&  4 <! Ӯ  5 @! Ӯ  1  < & @ & )  ,  4 4 <!   l @!   h ! <! P $! @! P ! $! ,l ,4 4 <! 2   @! 2   <! $ @! ( $ (     4 4 <!    @!    < @  $  $ $4 4 <! =   @! $= $  <! ,Z @! 0Z , 0  (  ( (4 4 < @  $  $ $44  l  & G   & & $ @O  &  d& .  d& Yt ( e d& &  d& %  d&  & d&D  L& L ! 8&! !! $  $  Ld& z T  ( L (! T! (d&!! ,^ 0 L 0! 0&! ,!! 4^ 8 L 8! 4! 8d&!! <^ (<& <  ( L (<& (d& ( L (! P! , 0 L 0! ,! 0<&!! 4^ (<& 4 L<&&! 8 L 8! &! < 8<& <!! @^ < @ L & L&D T  ( L (! T! (d&!! ,^ (4& ,  ( L (4& (d& ( L (! P! , 0 L 0! ,! 04&!! 4^ (4& 4 L4&&! L & L&DD4 < & @ < @& d&  <d&4  < @&&! Z  &   < 4& @&&&  <  8& @& & && $ < ( $<& $@& (& (& (&& , <@& 0 , , 0& 0& 0& 0& <&44H  P ! \!  @& !! ^ $ P $! $8&! !! (^  ( , P ,! X! 0 ,@& 0!! 4^ 0 4 8 P 8! T! < @ P @! <! @@&!! D^ 8@& D H     2(& ! $| $ h (  , (& ,& ,&!I]! (4& ,& ,&!) (  (! , (4& ,& ,&! 0l 0  4  4!:]! 44&&! 8 8  & & ! 4| 4  !8]!  & 8  8@& 8d& <  <8& <& @  @& @& D  D& D& H  H!! L Hd& L! L! P  P!! T Pd& T! T! X  X!! \ Xd& \! \! ! `| ` ` !^!   & & d  d<& d & h  h& h&  & & l  l! p# l & p  &  t  t& t&  x  x4& xd&  & & x  x! x&! | |  & & ! tt ! t! x x  & % !/]!  ! ||  |  <  &  l  &  &  &  4&  &  & &  !  &!    &   !! 4&! <&!  4& <& !']!   & &  ! <&!   '  ! 8&! <&!!     d&  ! &!    !]! <&!   <&!    <&&   ! 4  s <&  & ! "  &  &  !! d&! <&! <&  &  & &  ! <&!    &!   !  ! ! d& ! !  ! <&! d&!! ^ 4&   <&  &  & & <&  &  & &  !  &! 4& !! ^   <&!     ! ! 4&! <&&! <&  &  4& d&  & &  ! 4& ! X    <& 4&& 4&  &  & &  &  4&&! Z  &  ! !  ! !    & o  ! ! 4&! <&!  & ! ]!   & &  ! <&! =    <&! Z  &  & <&! R    ! 4&! <&&   ! !   <&! x   <&!    <&! ɰ  U  <&!   ! d&! !! ^ 8&  8& <&!   &  4&   d& f !\! !    !   &!  &!! ^  ! ! 8&&!! ^ 8& &     &   & !   N  d& # !     ! ! !! ^  ! ! 8&&!! ^ 8&&  # !\! !   <& !   &  4& d&  & & <&!     @& <&&  ! 4& d&  4&&  d& !   !\! !    <&  &  & &  ! <&! 8&! u ! !    4&& & &   &  4&& d& .  8& ;  4&&& ! ! ! u ! !    <&&  ! <&&!   <&&!      <& & &  ! <&   & &!  &!! ^  ! &! !! ^     <&& <&  && !    !\! !    !! d&! !  & &  ! 8&! <&!!     d& q &  &   ! <&!  &!! ^  ! ! 8&&!! ^ 8&&   ! <&!    8&  4&& d&   4&&&   ! ! 4&&!!   d&  t&  & ! !     !! d&! <&&!  <&  &&  & &   ! 8&! <&!!     d&  &  &   !  &!     !]! <&!   <&!      ! <&! $ $   <&& d&  $  $!! $d&! $<&&! $ <& $ $&  & & (  (!! (d&! (<&&! , <& , ,&  & & 0  0 & 0&  4 <& 4 4&  8 <& 8 8&&  & & <  <4& <d& @  @ & @<& H <& H&! L L  D <&&&  D <&& H D  & & P  P! P &! T P4& T!! X^ T X <&! \ \  `  `!! `4&! `<&&! d <& h d d h&& h& l  l4& ld&  & & `  `! d `4& d! hX d h l  l<& l4&& p 4& p p&  & & `  `! `d&! d `8& d!! h^ d h 8& <&&! p p  l <&&&   l <&&  l  4&  t  t! x  x& x&!  x&!! |^   ! |! 8&&!! ^ t8& x&  t   t&   t&  d& - <&&! x x  |   |<&&& |4& |d&    !   & &!  4& !! ^    &  d&    ! 4&! X   ! !  <& & &!! ^   ! ! 8&! u     !  <& &! !! ^   ! ! 8&&!! ^ 8& &   <&    & &   4& d&  | <& | |&   4& d&  & & |  |<&& |d& *   ! d&!  8& !! ^   8&  <&  &  & &   !!  <& &! &!  <&    & && &  & &   ! d&!  8& !! ^   8&  & &   !  <& & &!  &!! ^   ! ! 8&&!! ^ 8& &   <&  & <&!   _   !! 4&! <&!  <&    && &   4& d&  & &   <& 4&   4& d&  & &    &!\!  &!   !  &! !   &, 8   2 2(& $ 4 $! $d&! ( $8& (!! ,^ ( , 48& 0 4 04& 0d& 4 4 4 & 4<& 8 4<& 8 8& 4 & 4&, < 4 <! < &! @ <4& @!! D^ @ D 4<&! H H  L 4 L! ! L4&! L<&&! P 4<& T P P T&& T& X 4 X4& Xd& 4 & 4&, L 4 L! P L4& P! TX P T X 4 X<& X4&& \ 44& \ \& 4 &! 4&, L 4  L<&&  L4& l P 4 P! T  T& T&!  T&!! X^ \ 4 \! X! \8&&!! `^ P8& T& ` P   P&   P&  4d&  T 4<& T T& X 4 X4& Xd& 4 & 4&, 4<&! \ \  4!\! ! ` `, ` 4 `!#! `d&! `<&! d 4<& h d d h& h& 4 & 4&, l 4 l & l&  p 4<& t p&& p t t 4d& = x 4 x! x &! | |, x 4 x<&& x&  4<&&! | | p 4!\! !  , 4 !  &! d&!! ^ 4 ! &! !! ^   4 ! ! d&!! ^ 4 ! <&&&! !! ^ <&  4 & 4&, 4 & 4&, p 4<& t p& p t t 4d& ) x 4 x! xd&! | |, x 4 x!#! xd&! x<&! | 4<&  | | & & 4 & 4&, p 4 p! pd&! p<&!! t^ x 4 x! t! x8&! |u  |  4! !  , 4 <& d&  4 ! t&!  , 4 !&! d&! <&&! 4<&  & 4 & 4&, 4  & & , 4 !  &!  , 4 <& d& Q 4 !  &!  , 4 !&! d&! <&&! 4<&  & 4 & 4&, 4 <& d&  4 ! &!  , 4 !(! d&! <&&! 4<&  & 4 & 4&, 4  & &  4 !  &!  , 4 <& d& 0 4 !  &!  , 4 !(! d&! <&&! 4<&  & 4 & 4&, 4 !*! d&! <&&! 4<&  & 4 & 4&, 4 4&  & 4 ! d&! <&!! ^ 4 ! ! 8&! u    4 ! 4&! !! ^ 4! !  , 4<&&!   t   4<& & & 4 ! <&   & &!  &!! ^ 4 ! &! !! ^     4<&& 4<&  && !    4!\! !  , 4 !,! d&! ! 4 & 4&, 4 &  48&&    & & 4<&   &  4d&   4d&  && 4 & X 4 ! <&!  &!! ^ 4 ! ! 8&&!! ^ 8&&  4 ! <&!  , 4 !.! d&! <&&! 4<&  & 4 & 4&,  4<&    & &   !     &! 4 &!     &  4d&   4d&    &  4d&   4d&    & &!   F 4<& && 4 & 4&, 4 !/! d&! &&!  4<&  & & 4 & 4&, 4 ! d&!  , 4  & &  4 & 4&, 4 ! d&!  , 4 <& 4&& 4 ! 4& &!    4 & 4&,  4 4&& d& ,  4 8& 4&&&  4 <& 4&& 4 & 4&,  4 <& 4&&  4 ! @&!   4 ! ! d&!! ^ 4&  4 & 4&,  4  &!\!  &! $ 4 $! $ &! ! ( (, 4&,,, , 8 ,3  ,_ ,2(&  44&& ! 0 0  4! ! 4 4, &! (! 4 44 ! 8Z 4! 8! < 4! <! @ @, 4!j\! ! 8 8,  44&& ! 8| 8! < 4! <! @Q 4! @! D D,  44&& ! H| H! Ld 4! L! PQ 4! P! T T,  44&& ! X| X! \ 4! \! `Q 4! `! d d,  44&& ! h| h! l 4! l! pQ 4! p! t t,  44&& ! x| x! |$ 4! |! Q 4! !  ,  44&& ! | !  4! ! Q 4! !  ,  44&& ! | !  4! ! Q 4! !  ,  44&& 4 4&& d&  ! | ! S 4! ! Q 4! !  , 44&&& ! | ! | ! !  4! ! Q 4! !  ,  44&& ! | !  4! ! Q 4! !  ,  44&& 4 4&& d& z 4!P\! !  , 44&&& ! | ! | ! ! 0 4! ! Q 4! !  ,  44&& ! | !  4! ! Q 4! !  ,  44&& ! | !  4! ! Q 4! !  ,  44&& ! |  S !  4! ! Q 4! !  , !  4! ! Q 4! !  ,  44&& ! | ! < 4! ! Q 4! !  , "  44&  ! &! P ! " ! !  &  4d&  4! " !  4! !  , "  44&  ! &! P !  " ! !t  &  4d&  4!  " !  4! !  ,  4 4&& d& \  44& "  44&& ! 44&&! P ! &! P !  " ! !  &  4d& v 4!  " !  4! !  , $ 4 $4&& $d&   44& "4  44&& ! 44&&! P4 &! (| (! , ,  0! &! P ! 8 " 8! 0!- 4!<\! ! @ @,  &  4d&  4! ( " (! 0 4! 0! 4 4, 8 4 84&& 8d& u  44& "  44&& ! 44&&! P &! <Z <  @! &! P ! H " H! @!r 4!!\! ! P P,  &  4d&  4! < " <! D 4! D! H H, ! 44&&! P 44&&&! LZ L 1 P! 44&&&! P ! X " X! P!VA 4!\! ! ` `, 4! ` " `! h 4! h! l l, ! 44&&! P 44&&&! pZ p  t! 44&&&! P ! | " |! t! 4![! !  , 4!  " !  4! !  ,  4 !  4& & &!  ,  4 ! 4&&&!  ,  44&&  &  4 ! 4&!  , 44&&!   t  44&   & & & &  4 ! 4&&!  , 4![! !  , 44&&!     44&    & &  & &  4 ! 4&&!  , 4![! !  , 44&&! Z   4! #!  4! !  , 44&&! Z   4! #!  4! !  , 44&&! Z   ! !$   4! #!  4! !  , 44&&! Z   !  $   4! #!  4! !  ,  4 !  4& & &! Ҿ 4! !  ,   44& & & ##  4! &! $ 4! !  , 4! ! 6 4! !  , 44&&!  4! !    ! 4! !  ,  44&& !   ~ ! 2  ~ ! Ӯ  ~ !    4! ! ! ! !4 4! ! !  4! !  , 4![! !  ,  44&&! Z    4 4&& d&  44&&&!    4! ! #! Y 4! !  ,  4 ! 4&&&!  4! !  ,   44& & & 44&&&! Z    44&&&   4 !d[! 4&&&!  , 4!  &!  4! !  , 44&&!     4 !5[! 4&&!  ,   44& & & 44&&&! Z    44&&& $  4 ![! 4&&&!  ,  44& & &&!     &   4 ! 4&&!  ,   44& & & 44&&&! Z    44&&&   4 !Z! 4&&&!  ,  4  4& & & d& &  44& & &&! Z      44&&&  3  4 !Z! $ 4& $& $&&! ( (,  44&&&   ' 4! !  ! Y   &!  &! !  && 4! !  ,  4 ! 4&!      4 !Z! 4&!  , 4! !     44&   ! ! &!  &  & !    4! !  ,  4d& 44&&! Z    4 4&& d& -  44&&& 4! !     4d& L ! !  4! !  , 44&&! Z 4! !  4! !  , 44&&&! Z   44&&! Z     4 !Z! 4&&&!  , 44&&! ! X 4! !  , 44&&!     4 !Z! 4&&!  , 44&&&! Z   44&&! Z   T  4 !~Z! 4&&&!  ,  44&   &! !   & & &!  4 ! 4&&!  ,  4  &!\!  &!  4 !  &! !  , 4&,,  $    & & !     d&    $  $` \ $}\ $2(& ,  ,! ,4&& ,& 2 ( t& 9 ( & (! 0 0 ! 8  < 84&& < 8& f < 8t& o 4 t& v 4 & 4! @ @ H  H! H4&& H&  D t&  D & D! L L T  T! T4&& Td&  P t&  P & P! X X \  \d  \h \2& l        t  4& ! &! P  & m `! &! P h " h! `! p  p [ t  t! t&! x x ! &! P  &  d& * `  `! `t&! d d 4&&! l l  h t&  h & ! h! p p 4&&! x x  t t&  t & ! t! | | 4&&! Ӯ   t&   & ! !   4&&!   5 t& < & ! !   4&&!   e t& l & ! !   4&&! 2   t&  & ! !   4&&! Z !     t&  & ! !   4&&! Z ! /   t&   & ! !   4&&! Z ! S  : t& A & ! !   4&&! Z ! w  q t& x & ! !   4&&! Z !    t&  & ! !   4&&!     t&   & ! !   !   4& & .   &.   t& !  & !   !  $ 4& & $. Y $ & . Y  t& `  & ! ( ( 4&&! 0= 0  4&&! 4x 4  4&&! 8 8  4&&! <R <  , t&  , & ! ,! @ @ 4&&! H H  D t&  D & ! D! L L  4&& ! P P * T  T! T&! X X  & G  4&& @R  & ! T T 3 \  \!  \d& j X t& q X & X! ` ` 4&&! Tް T  P t&  P & ! P! X X 4&&! ` `  \ t&  \ & ! \! d d l  l! p l4& t p t& p& t&  h t&  h & h! x x  4&   &! & &!   F | t& M | & ! |!      &!\!  &!   !  &! !   &@ L ~   2<& $ H $<& $4&& H<&! (ɰ (  , H ,!! ,d&! ,<&! 0 H 04& 0d& H & H&@ , H ,! ,<&! 0 0@ , H ,<&! , &!  ! 0 H 0! 0 &! 4 4@ H4&&! 8 8  < H <4&&& <&  @ H @! @&! @d&!! D^  D H H H!! ! Hd&! L H L& L4&&& < H4& < <& L  H &  H & H & H&@ H4&! @ @ 6  D H D4&& D& 6  H H H! H&! Hd&!! L^  L P H P!! ! Pd&! T H T& T4&& H!8]!  D H D! D&! H H@ H& H4&&! LӮ L  P H P!yZ! T X H X! T! X4&!! \^ P4& \ H4&&! H!qZ!  P H P! T P4& T& T&!  X H4& X X& H & H&@ H!oZ!  \ H \4& \d& 6  ` H `!! `4&&! `d&! d H4& d d& H & H & H&@ H!8]!  HD& S  H & H&@ Hd&@ ` H `! `4&&! dX H! d! h h@ l H l! l4&! p H! p! t t@ x H x4& xd&  | H |! |d&!  @  H4&& | H |4&& |d&  H ! 4&!  @  H4&&   H! ! &!     &  Hd&   H! !  @ H4&&! +  X  H4&&&! +  h  H!\Z! !  @ H4&     & &   & &     & &     &  Hd&   Hd&     & & H4& & & & 0  H ! ! 4&    & & &!! ^ H ! ! 4&&&!! ^  & &  H ! &!  @ H4&&! +  k  H4&&&! +  {  H!IZ! !  @ H4&     & &   & &     & &     &  Hd&   Hd&  H! &&!  @ H ! d&!  @ H4&!     H 4&&! Z &  Hd&@ H ! d& ! ! H ! &!  @ H&# H 4&& & q   t   &  H!   Ht&   H& !  @ H4&!    H4&&!    H!"Z! !  @ H4&&! Z H! ! ҷ H ! &!  @  H ! &!  @  H ! &!  @  H ! &!  @  L  M  R  WZ  Z  Z 0 $ H $! ( $4& (& (&! ! ,  ,  Hd&  0 H 0! 0&! 4 4@ H! ! 0 0@  L           0 $ H $! ( $4& (& (&! ! ! ,  ,  Hd&  0 H 0! 0&! 4 4@ H! ! 0 0@  H ! 4&&! !  H ! &!  @ $ H $! $4&&!  ! ( H (! (&! , ,@ 0 H 0! 0&! 4 4@ 8 H 8! 88&! < <@ H&@@h p&   p& p& p& p! !  p! Z! ! $ $h  t  v v 2<& p4&!    p & p&h $ ( p4& $& (. + ( $&. F , p ,!Y! ,4&&! 0 0h , p ,4&& ,& f p & p&h  p& 0 p 0& 04&& 4 p 4! ! 4d&!! 8^  8 < p <!! ! <d&! p & p&h p4&! D D " H p H4&& H& "  p& L p L! ! Ld&!! P^  P T p T!! ! Td&! X p X& X4&& p! H( @ H @ G L p L! L&! P Ph p & W p! @!  p! @! L p! L! P Ph @ p& p4&! H H  @ p4&& D @&. p! D  L pt&  L p& L! P Ph @ p @& @4&& D p D! D &! H Hh L p L& L4&& P p P! P &! T Th X p & X P X P X2& ` p `& `& L d p d4& dd& p & p&h d p d! d&! h hh p! h( d h h u d b l p l! p# l & p p & p&h d p d!! h dd& h! h! p &   l p l! p# l & p p &  t p t! td&! x xh p &  p!Y! ! t th t p x t&2 t&& x x& | p |!! |d& ! ! p & p&h t p t!! x td& x! x! | p |! # | &  p & p&h p ! #  &  p &  p !! d& ! ! p & p & p&h p !! d& ! ! p & p&h p !! d& ! ! p ! #  &  p & p&h p !! d& ! ! p ! #  &  p & p&h p!Y!  p! ! 6 p! !  h p! V    p&  p!Y! !  h ! p! !  h p ! 8&! &!!    pd&  p!Y! !  h p ! &! d&!! ^ <&  p & p&h p!Y!  p! ! $    pd& A p!Y! !  h p! !  h p!yY! !  h ` p `! ` &! d `4& d!! h^ d h l p l! p# l & p p &  p! x( t x x  t  | p |! # | &  p &  p! x( t x t  p! t!  | p |&2 |&&  ' p ! d&! 4&!  p! !  h p & ^ t p t!! t4&! td&! x p x! |# x & | p & p&h t p t!! t4&! td&! p & p&h p! `# `  p!Y! ! d dh d p h d&2 d&& h h' l p l! l &! l4&! p p! p! t th d p d! d &! dd&!! h^ l p l! l&! h!! p^ p! p! t th x p x! x &! xd&!! |^ p ! &! |!! ^ p! !  h p!sY! Ҿ p!lY! Ҿ p !  &! d&!! ^ p ! &! !! ^ p ! ! d&!! ^ p! ! !! ^ p! ! !! ^ p! !  h p !  &! d&!! ^ p ! &! !! ^ p! !  h p !  &! d&!! ^ p ! &! !! ^ p! !  h p 4&  & p &[ p&h p4&!    p!iY!  p !!  p ! 4&! !! ^ 4&  p & p&h p4&! ް   p!ZY!  p ! &!  h p4&!   + p ! 4&!  &! p ! &!  h p 4& & &  &!    p  4& & & d&  p!XY!   p4&  && p & p&h  p  4& & &  &!     p  4& & & d&  p!VY!   p4&  && p & p&h  p  4& & & ] &!   ] $ p ( $4& (& (& $d& ] p!TY!  , p4& , ,&& p & p&h , p 0 ,4& 0& ,&  0&! 4 4  8 p < 84& <& <& 8d&  p!QY!  @ p4& @ @&& p & p&h p!OY!  @ p @!! @4&&! @d&! D p4& D D& p & p&h p4&! @ @ Q D p D!! D4&&! Dd&! p!oZ!  H p4& H H& p & p&h p4&! D D  H p H!! L Hd& L! L! p!KY!  p & p&h H p H4& Hd&  p!KY!  L p L! L4&! L &! p!IY!  L p L! L&! P Ph T H p4& T& T& L p4&& P L& H P  p!IY!  X p X! X&! \ \h L! H! \X X \ ` p4& `& `& H& d p d!! d4&! dd&! p4& X p!oZ!  p & p&h H p H &!\! H &! L p L! L &! ! P Ph p&hht $  $  $ $2t& ( | (! (4&&! , ,  0 | 0!5Y! 04&&! 4 4t |! ! 0 |! 0! 4 4t  |4&&  |4&&& ^ &! 8 8 E |!Y! ! < <t <   <& <& Wi  & ! 8 8 ' ! < <  |! &! @ @t @ | @! @&! D Dt @ |4& @ @& D | D4& Dd&  H | H! H&! L Lt |4&! Hx H  | &! L P | P! P&! L!! T^ |! T! X Xt |4&! L L J | &! P T | T! T&! P!! X^ |! X! \ \t P | P! P&! T Tt |4&&! Tx T z P |t&  P |& |! P! X Xt |4&&! ` `  \ |t&  \ |& |! \! d dt h | h &!\! h &! l | l! l &! ! p pt |&tt !      &#       !   : ! Z  :  =   ! Z    ,&  ^ S T  \ & ` $ \ &,& $&  , 0 \ 0! 04&! 4 ( 4 ( $& , 0!S! $&! $& $ &  8]  8S 8! $&! ,   ( $ &  , 0!S! $&! $& $ &  8]  8S 8! $ &! ,  $&  D @ $& 8 \4& H 8& < @# <T# F  H. D  H&.   <U# _  H. ]  H& .   <T# z  H \d&  H! P P   H! L <2@& L   @&#  @ @& 8 8& D D& D (  D (  , 0!S! $&! D&! <2D&! ,  \! 0! ! 8 8 \d& 0! $ \ &,& \ & ( \ (! ( &! , $ , \d& !0! \&# (!!~S! )0!  & n T4 <! @!  < ! ! d&!! $^  $  ! &! ( < (! ! , (& ,!! 0^ , 0 48 @! H! Ҿ   @! D! $!  $ ( @ (! ! !! ,^ 0 @ 0! ,! 0&&!! 4^ (&& 4 8$  , !  d& ! ! Y   @ & 0 & $$D   L & &  L&&    " "  2& #i L"D" 'D" #a Z"%D" D"  &# $*  $ "  $ " d " e }"" -D" "D" D" D" , &# 4g , 4 " , 4" ,c "" ,l "" D" $D" +D" D" 8 &# @f 8 @ " 8 @ " 8m "" D" D" D" )DD $! (! ,!! ^  $! (! ,!! ^  !! t! $#      &  &   &  0& $  $T& $H& (  (d& (X& ,  ,t& ,h& 0  0& 0x& 4  4& 4& 8  8& 8& <  <& <X& @  @& @X& & & D  D& Dd& H  H& Hd& L  L& Ld& P  P& Pd& & D&  & !! Tҷ T '$ && & X  X@& Xd& \  \8& \& `  `<& `d&  & d& d d& d& d d& d t& h t& h& h h& h & l & l& l l& l & p & p& p p& p t  t! x td& x! x!! |^ t& | & !yS! Ҿ   ! ! t&!! ^  ! ! &&!! ^ &&  !rS! 2! !lS! 2! !eS! 2! !bS! 2! !\S! 2! !WS! 2! !SS! 2! !NS! 2! !GS! 2! !BS! 2! !( X d 2 X&&! X&  &  d0&"(\,  4 @& d&  4 8& & 4& 4& 4& 8  4 ! &!  &  4& 8` ( 4D& 4 & & 4!! c 4&@ 4& ( ( 4 (& ( $ ( $ (& $ ,0  8 @& d&  8 8& & 8& 8& 8& < <! " 8&  <& 8& <  8 ! &!  &  8& 8D& $ 8 $& $& 8!! c 8&@ 8& ) , 8 ,& ~) ( ) ( ,& ( 0( 0! 4! 8!!     0d& ) & < ) 0! 8! <!! ^ 0! ! 4&!! $^ 4& $ (4 <! @! Ҿ    <d& $ < $@& $d& ( < (8& (& , < ,! ! !! 0^ ,<& 0 <D& <& <!! c4@@* W+ L!  H &@&  W*  W+ L!  H &X&  n*  W+ L!  H &8&  *  W+ L!  H &&  *  W+ L! H &t&  *  W+ L! $ H &`& $ *  W+ L! ( H &x& ( *  W+ L! , H && , *  W+ L! 0 H && 0 +  W+ L! 4 H && 4 &+  W+ L! 8 H && 8 =+  W+ L! < H && < T+  W+  @@  !   &8&  y+ & , 8!  4 &8&  + 8!  4 &<&   0, 8!  4 &P&  + 8!  4 &H&  _! ! qs   0, 8!  4 &T&  , 8! 4 &L& _! ! $qs  $ 0, 8! 4 &X&  0, 8! $ 4 &\& _! $! (qs  ( ,,$  0!  , &8&  {, ,! 0! \+   0! , &<&   4 t, 4   4 & $$ (d&  (8& , !  ( &|&  , !  ( &|& !  ( &|&  , ,, !  ( &&   (d& ,  (d& ,- !  ( &&    (d& ,  (d& /- !  ( &|& !  ( &&  5- (d&  (  4!  0 &&  a- 4!  0 &&   - 4!  0 &P&  - 4! 0 &H& ! _! !  - 4! 0 &T&  - 4! $ 0 &L& !_! $!  ((! ! ( -` -_!\- @  (@ ! $@! !-  ! @- @@@ ! G  @  Hd&  Hd& ( T  . , (& ( , $ ,&  Hd& d. 0 H 0! $! 0d&!! 4^  4   . 0 H 0! $! 0d&!! 4^ ! 4! H &&  Hd& . 8 Hd& . ! < H && 8 <  8 &  P +. H! ! , L ,@@ (  D < &  d& . P d& / ! T  &|& P T 4 P  d& / \ d& '/ ! d  && \ d \ d& 8/ X d& m/  d& I/ ` d& [/ ! h  && ` h `! l  &|& X l 0 X  d& / x d& / !  && x  x d& / t d& /  d& / | d& / !  && |  |!  && t  t d& / p d& f0  d& / d& 0 !  &&   d& 0 d& T0  d& 00 d& B0 !  &&  !  &&  !  &|& p  8 p  d& {0 d& 0 !  &&   d& 0 d& 0  d& 0 d& 0 !  &&  !  &&   d& 0 d& _1  d& 0 d& 1 !  &&   d& 1 d& M1  d& )1 d& ;1 !  &&  !  &&  !  &&  H  ! 4! ;*  y1 &3 ! 0! ;*  1 &3 ! 8! ;*  1 &3 ! 4! ! 5, ,  0!  &H&  8!  &H& $  ! 4! \+ @  0!  &T&  N2 0!   &L& ;  $& @2 &3 ! :'  42 D! $ ,&! !   ! D!   && 3 ! :' $ & @e2 &3 , 2 , $ ,& 2  $ 2 ( (2   ,& ( ( /  2 &  & ! :'   $& z22  2   ,& 22 ( ( /   /  & ! :'   $& 2   ! !   & & <  < < &  d& 3 X d& -3 ! \  &|& X \  X  d& B3 d d& T3 ! l  && d l d d& e3 ` d& 3  d& v3 h d& 3 ! p  && h p h! t  &|& ` t ( `  d& 3 d& 3 !  &&   d& 3 | d& 4  d& 3 d& 3 !  &&  !  && |  | d& 4 x d& 4  d& )4 d& ;4 !  &&   d& L4 d& 4  d& ]4 d& o4 !  &&  !  &&  !  &|& x  , x  d& 4 d& 4 !  &&   d& 4 d& 5  d& 4 d& 4 !  &&  !  &&   d& 5 d& 5  d& "5 d& 45 !  &&   d& E5 d& z5  d& V5 d& h5 !  &&  !   &&  !   &&   d& 5 d& 6  d& 5 d& 5 !   &&   d& 5 d& 6  d& 5 d& 5 !   &&  !   &&   d& 6 d& 6  d& (6 d& :6 !   &&   d& K6 d& 6  d& \6 d& n6 !   &&  !   &&  !   &&  ! $  &|& $    d& 6 4 d& 6 ! d  && 4 d 4 d& 6 0 d& 7  d& 6 8 d& 6 ! h  && 8 h 8! l  && 0 l 0 d& "7 , d& 7  d& 37 @ d& E7 ! p  && @ p @ d& V7 < d& 7  d& g7 D d& y7 ! t  && D t D! x  && < x <! |  && , | , d& 7 ( d& 8  d& 7 P d& 7 !   && P  P d& 7 L d& 8  d& 7 T d& 8 !   && T  T!   && L  L d& (8 H d& 8  d& 98 \ d& K8 !   && \  \ d& \8 X d& 8  d& m8 ` d& 8 !   && `  `!   && X  X!   && H  H!   && (  8 ( ! (! ;*  8 &: ! ,! ;*  8 &: ! ! ;*  9   !! !   & &   ! ! ! 5,   )9 &: (!   &H&   ,!   &H& $  ! :' ! ! \+ $ & n9 &: $ & !   &8&  9 ! ! ! 5, 4  : !   &&  9  d& 9  d& 9 !   &|&   ! ! ! 5, 4  : !   &P&  c: !   &H& 4  6: 0 (:  0'' & 4. 4 43 0 0& ! :' 0  :: : 0 U: 0 & 4. 4 43 0 0& ! :' 0  ?:: !   &T&  : !   &L& @  ! :'        :   : !! ! ! @! ! H  P& T Pd& : ( Pd& : T! , P &|& ( ,  ( T Pd& : 0 Pd& ; T! 4 P && 0 4 $ 0 P! ! 8;* 8 *; P&H`; P! ! ! <5,  < ! ! ! @ P @! ! D @ &&  D HHP  X& \ Xd& {; ( Xd& ; \! , X &|& ( ,  ( \ Xd& ; 0 Xd& ; \! 4 X && 0 4 $ 0 X! ! 8;* 8 ; X&PS<  ! < X &P& < ; ! @ X &H&  @: < ! @ X &T& @ < ! D X &L&  D D X D!! ! H D & &  H X! ! ! L5, L ! ! ! PP  &  d& n< 0 d& < ! 4  &|& 0 4 0  d& < < d& < ! D  && < D < d& < 8 d& <  d& < @ d& < ! H  && @ H @! L  &|& 8 L $ 8  d& = T d& = ! \  && T \ T d& %= P d& Z=  d& 6= X d& H= ! `  && X ` X! d  && P d , P ! ! h;* h t= &> ! $! l;* l = &> ! p  &H&  p $! t  &H&  t =   &# ==  &  = x  x!! ! | x & &  | ! ! ! 5, (  (! ! !  $ &  d& > 8 d& 1> ! <  &|& 8 <  8  d& F> D d& X> ! L  && D L D d& i> @ d& >  d& z> H d& > ! P  && H P H! T  &|& @ T @  d& > ` d& > ! t  && ` t ` d& > \ d&  ?  d& > d d& > ! x  && d x d! |  && \ | \ d& ? X d& ?  d& -? l d& ?? !  && l  l d& P? h d& ?  d& a? p d& s? !  && p  p!  && h  h!  &|& X   X  d& ? d& ? !  &&   d& ? d& @  d& ? d& ? !  &&  !  &&   d& @ d& @  d& &@ d& 8@ !  &&   d& I@ d& ~@  d& Z@ d& l@ !  &&  !  &&  !  &&  4  ! ! ;*  @ &7A ! ! ;*  @ &7A ! ! ;*  @ &7A !  &H& ,  !  &H&   ! ! ! 5, 0  ! ! \+ (  ( !A  ( ,! 0! ! $ & $x  &  d& RA ( d& dA ! ,  &|& ( ,  (  d& yA 4 d& A ! <  && 4 < 4 d& A 0 d& A  d& A 8 d& A ! @  && 8 @ 8! D  &|& 0 D  0  d& A L d& A ! T  && L T L d& B H d& >B  d& B P d& ,B ! X  && P X P! \  && H \ $ H ! ! `;* ` XB &xB ! ! d;* d nB &xB ! h  &H&  h ! l  &H& l p  p!  /! t p & &  t xxx  &  d& B ( d& B ! ,  &|& ( ,  (  d& B 4 d& C ! <  && 4 < 4 d& C 0 d& KC  d& 'C 8 d& 9C ! @  && 8 @ 8! D  &|& 0 D  0  d& `C L d& rC ! T  && L T L d& C H d& C  d& C P d& C ! X  && P X P! \  && H \ $ H ! ! `;* ` C &x+D ! ! d;* d C &x+D ! h  &H&  h ! l  &H& l p  p!  .! t p & &  t xxx  &  d& FD ( d& XD ! ,  &|& ( ,  (  d& mD 4 d& D ! <  && 4 < 4 d& D 0 d& D  d& D 8 d& D ! @  && 8 @ 8! D  &|& 0 D  0  d& D L d& D ! T  && L T L d& D H d& 2E  d& E P d&  E ! X  && P X P! \  && H \ $ H ! ! `;* ` LE &xE ! ! d;* d bE &xE ! h  &H&  h ! l  &H& l p  p!  0! t p & &  t xx@  H& L Hd& E Hd& E L! $ H &|& $   L Hd& E ( Hd& E L! , H && ( ,  ( H! ! 0;* 0 F H&@BF ! 4 H &H&  4 8 H 8! 1! < 8 & &  < @@ $ &  d& ]F , d& oF ! 0  &|& , 0  ,  d& F 8 d& F ! @  && 8 @ 8 d& F 4 d& F  d& F < d& F ! D  && < D <! H  &|& 4 H 4  d& F P d& G ! X  && P X P d& G L d& IG  d& %G T d& 7G ! \  && T \ T! `  && L ` ( L ! ! d;* d cG &G ! ! h;* h yG &G ! l  &H&  l ! p  &H&  p  G  (G &G   , t   t' tG x  x! ! | x & & $ | $ ! #    G+J  !r_! $  && !.! ( ,  ,! ,&! $! (!) 0  0!f_! 4 0 && !3! 8 <  <! <&! 4! 8!) @  @!X_! D @ && !:! H L  L! L&! D! H!) P  P!J_! T P && !b;! X \  \! \&! T! X!) `  `!A_! d ` && !U<! h l  l! l&! d! h!) p  p!7_! t p && !>! x |  |! |&! t! x!)  !0_!  && !9A!   ! &! ! !)  !)_!  && !B!   ! &! ! !)  !"_!  && !-D!   ! &! ! !)  !_!  && !E!   ! &! ! !)  !_!  && !DF!   ! &! ! !)8 @& D @d& FJ $ @d& XJ D! ( @ &|& $ (  $ D @d& mJ , @d& J D! 0 @ && , 0  , @! ! ! 45,  4 ! @&888 @& D @d& J $ @d& J D! ( @ &|& $ (  $ D @d& J , @d& J D! 0 @ && , 0  , @! ! ! 45,  4 ! @&88(  0&  4  0 ! ! $  & &  $ (($  ,&  0   , ! !  & &   $$D  L& P Ld& K $ Ld& K P! ( L &|& $ (  $ P Ld& K , Ld& K P! 0 L && , 0  , L! ! 4;* 4 K L&DL ! 8 L &H&  8 ! ! ! < L <! ! @ < &&  @ DD  &  d& /L 8 d& AL ! <  &|& 8 < , 8  d& VL D d& hL ! L  && D L D d& yL @ d& L  d& L H d& L ! P  && H P H! T  &|& @ T 0 @  d& L \ d& L ! d  && \ d \ d& L X d& M  d& L ` d&  M ! h  && ` h `! l  && X l 4 X ! ,! ! p5,  p 0! t  &H& $ t ! (! $! x x |  |! ! | & &  ! (!  & & ! ! !! ^     &  d& M 0 d& M ! 4  &|& 0 4  0  d& M < d& M ! D  && < D < d& M 8 d& +N  d& N @ d& N ! H  && @ H @! L  &|& 8 L 8  d& @N T d& RN ! \  && T \ T d& cN P d& N  d& tN X d& N ! `  && X ` X! d  && P d , P ! ! h;* h N &(O ! ! l;* l N &(O ! p  &H& ( p ! t  &H&  t& x  x!! ! | x & &  | ! ! ! 5, $  $! ! (! x , &  d& CO 0 d& UO ! 4  &|& 0 4  0  d& jO < d& |O ! D  && < D < d& O 8 d& O  d& O @ d& O ! H  && @ H @! L  &|& 8 L  8  d& O T d& O ! \  && T \ T d& O P d& /P  d& P X d& P ! `  && X ` X! d  && P d ( P ! ! h;* h IP &xP ! l  &H& $ l ! ! ! p5,  p ! t  &d& t ! ! $! &xx8  @& D @d& P @d& P D! $ @ &|& $   D @d& P ( @d& P D! , @ && ( ,  ( @! ! 0;* 0 P @&8Q ! 4 @ &H&  4 ! @&88@ @& @ @d& 6Q D@ @d& HQ @! H@ @ &|& D@ H@ <@ D@ @ @d& ]Q P@ @d& oQ @! X@ @ && P@ X@ P@ @d& Q L@ @d& Q @ @d& Q T@ @d& Q @! \@ @ && T@ \@ T@! `@ @ &|& L@ `@ 0@ L@ @ @d& Q h@ @d& Q @! p@ @ && h@ p@ h@ @d& Q d@ @d& "R @ @d& Q l@ @d& R @! t@ @ && l@ t@ l@! x@ @ && d@ x@ @@ d@ 0@ @d& CR 4@ @! <@! ! |@5, 8@ |@ cR @! <@! ! |@5, 4@ |@ @! 0@! ! @5, 8@ @ 0 @d&   4@! 8@! 0!@! |@ , |@  0 $ DS ! @" ( @&  @d& R @ @ @! ! @ @ && @ @ @! @! @d&!! @^ @   7S @ @ @! ! @ @ && @ @ @! @! @d&!! @^ ! @! @ &&  @d& !S @ @d& 3S ! @ @ && @ @  @  ( & $ $& $ , R @@p  ( x& | xd& jS , xd& |S |! 0 x &|& , 0  , | xd& S 8 xd& S |! @ x && 8 @ 8 xd& S 4 xd& S | xd& S < xd& S |! D x && < D <! H x &|& 4 H 4 | xd& S P xd& T |! X x && P X P xd& !T L xd& VT | xd& 2T T xd& DT |! \ x && T \ T! ` x && L ` $ L x! ! d;* d T ! h x &H&  h x! ! ! l5,  l T  x! ! ! h5,  h  T ! !  x&pp &(  0& 4 0d& T  0d& T 4!  0 &|&     4 0d& T 0d& U 4! $ 0 && $  0&((l ( t& x td& 4U , td& FU x! 0 t &|& , 0  , x td& [U 8 td& mU x! @ t && 8 @ 8 td& ~U 4 td& U x td& U < td& U x! D t && < D <! H t &|& 4 H 4 x td& U P td& U x! X t && P X P td& U L td&  V x td& U T td& V x! \ t && T \ T! ` t && L ` $ L t! ! ! d5,  d t! ! ! h5,  h  PV t&l_V ! !  t&llD  L& P Ld& zV ( Ld& V P! , L &|& ( , ( P Ld& V 0 Ld& V P! 4 L && 0 4 $ 0 L! ! ! 85,  8   V ! <  < < L <! ! @ < & &  @ DDD  L& P Ld& W ( Ld& "W P! , L &|& ( ,  ( P Ld& 7W 0 Ld& IW P! 4 L && 0 4  0 L! ! ! 85,  8 !! !  L&  W ! ! ! < L <! ! @ < &&  @ DD &p ( x& | xd& W , xd& W |! 0 x &|& , 0  , | xd& W 8 xd& W |! @ x && 8 @ 8 xd& X 4 xd& 9X | xd& X < xd& 'X |! D x && < D <! H x &|& 4 H 4 | xd& NX P xd& `X |! X x && P X P xd& qX L xd& X | xd& X T xd& X |! \ x && T \ T! ` x && L ` $ L x! ! d;* d X x&pX ! h x &H&  h x! ! ! l5,  l ! !  x&ppp ( x& | xd& Y , xd& Y |! 0 x &|& , 0  , | xd& 3Y 8 xd& EY |! @ x && 8 @ 8 xd& VY 4 xd& Y | xd& gY < xd& yY |! D x && < D <! H x &|& 4 H 4 | xd& Y P xd& Y |! X x && P X P xd& Y L xd& Y | xd& Y T xd& Y |! \ x && T \ T! ` x && L ` $ L x! ! d;* d Z x&pCZ ! h x &H&  h x! ! ! l5,  l ! !  x&ppp ( x& | xd& ^Z , xd& pZ |! 0 x &|& , 0  , | xd& Z 8 xd& Z |! @ x && 8 @ 8 xd& Z 4 xd& Z | xd& Z < xd& Z |! D x && < D <! H x &|& 4 H 4 | xd& Z P xd& [ |! X x && P X P xd& [ L xd& J[ | xd& &[ T xd& 8[ |! \ x && T \ T! ` x && L ` $ L x! ! d;* d d[ x&p[ ! h x &H&  h x! ! ! l5,  l ! !  x&pp`  h& l hd& [ 0 hd& [ l! 4 h &|& 0 4  0 l hd& [ 8 hd& [ l! < h && 8 < ( 8 h! ! @;* @ \ h&`~\ ! D h &H& $ D H h H!!  ! L H & &  L  t\ h! ! ! P5, P $! !  ! ! T" , T X h X! ! \ X &&  \ {\  h& ``D  L& P Ld& \ $ Ld& \ P! ( L &|& $ (  $ P Ld& \ , Ld& \ P! 0 L && , 0  , L! ! 4;* 4 \ L&D#] ! 8 L &H&  8 ! ! ! < L <! ! @ < &&  @ DDp ( x& | xd& >] , xd& P] |! 0 x &|& , 0  , | xd& e] 8 xd& w] |! @ x && 8 @ 8 xd& ] 4 xd& ] | xd& ] < xd& ] |! D x && < D <! H x &|& 4 H 4 | xd& ] P xd& ] |! X x && P X P xd& ] L xd& *^ | xd& ^ T xd& ^ |! \ x && T \ T! ` x && L ` $ L x! ! d;* d D^ x&pu^ ! h x &H&  h x! ! ! l5,  l ! !  x&pp @ @ (@& @ ,@ !@!  @ (@ @! ! @ @ && @ @ @ @ @T  \& ` \d& ^  \d& ^ `! \ &|&     ` \d& ^ ( \d& ^ `! 0 \ && ( 0 ( \d& _ $ \d& ?_ ` \d& _ , \d& -_ `! 4 \ && , 4 ,! 8 \ &|& $ 8  $ ` \d& T_ @ \d& f_ `! H \ && @ H @ \d& w_ < \d& _ ` \d& _ D \d& _ `! L \ && D L D! P \ && < P < \&TT &   & $ &  d& _ 4 d& _ ! 8  &|& 4 8  4  d& ` @ d& ` ! H  && @ H @ d& /` < d& d`  d& @` D d& R` ! L  && D L D! P  &|& < P ( <  d& y` X d& ` ! `  && X ` X d& ` T d& `  d& ` \ d& ` ! d  && \ d \! h  && T h 0 T ! ! l;* l ` &a ! p  &d& p a &a  ! ! x  &l& x! |  &L& 2 & |  &  a ! (! t;* t \a (! x  &H& , x _a , ! ,! x |  |! x! | & & $  $ 4 &  d& a H d& a ! L  &|& H L  H  d& a T d& a ! \  && T \ T d& a P d& b  d& a X d&  b ! `  && X ` X! d  &|& P d  P  d& 3b l d& Eb ! t  && l t l d& Vb h d& b  d& gb p d& yb ! x  && p x p! |  && h | < h ! ! ;*  b &c ! ! ;*  b &c !  &d&  b &c !  &d&  b &c  ! !  &l& !  &L& 2 &  ! !  &l& !  &L& 2 (&   &  b < d& bc ! (!  8  nc ! (!  8  8 {c t& c & 4  4h  p& t pd& c pd& c t! $ p &|& $   t pd& c , pd& c t! 4 p && , 4 , pd& c ( pd& #d t pd& c 0 pd& d t! 8 p && 0 8 0! < p &|& ( <  ( t pd& 8d D pd& Jd t! L p && D L D pd& [d @ pd& d t pd& ld H pd& ~d t! P p && H P H! T p && @ T  @ t pd& d X pd& d t! \ p && X \ X! ` p `t&! ` && p! t! da dhhT  \& ` \d& d  \d& e `! \ &|&     ` \d& e ( \d& /e `! 0 \ && ( 0 ( \d& @e $ \d& ue ` \d& Qe , \d& ce `! 4 \ && , 4 ,! 8 \ &|& $ 8  $ ` \d& e @ \d& e `! H \ && @ H @ \d& e < \d& e ` \d& e D \d& e `! L \ && D L D! P \ && < P < \&TT|  &  d& f , d& f ! 0  &|& , 0  ,  d& .f 8 d& @f ! @  && 8 @ 8 d& Qf 4 d& f  d& bf < d& tf ! D  && < D <! H  &|& 4 H  4  d& f P d& f ! X  && P X P d& f L d& f  d& f T d& f ! \  && T \ T! `  && L ` ( L ! ! d;* d g &|pg ! ! h;* h #g &|pg ! l  &H&  l ! p  &H& p ! ! t $ t $ bg x t& ig x &  x ||(  0& 4 0d& g  0d& g 4!  0 &|&     4 0d& g 0d& g 4! $ 0 && $  0&(((  0& 4 0d& g  0d& g 4!  0 &|&     4 0d& h 0d& "h 4! $ 0 && $  0&((  &  d& Gh P d& Yh ! T  &|& P T P  d& nh \ d& h ! d  && \ d \ d& h X d& h  d& h ` d& h ! h  && ` h `! l  &|& X l $ X  d& h t d& h ! |  && t | t d& h p d& 3i  d& i x d& !i !   && x  x!   && p  H p ! ! ;*  Mi &hj ! $! ;*  ci &hj !   &d&  }i &hj $!   &d&  i &hj  ! !   &l& !   &L& 2 ,&  $! !   &l& !   &L& 2 8&   &  i D ,! 8! D! D!  (   d&   ! (!   &(&    `j   ! 2 D&!   & & ! ! !  &p&  &  ( -j  < &  d& j @ d& j ! D  &|& @ D  @  d& j L d& j ! T  && L T L d& j H d& k  d& j P d& j ! X  && P X P! \  &|& H \  H  d& k h d& )k ! |  && h | h d& :k d d& ok  d& Kk l d& ]k !  && l  l!  && d  d d& k ` d& k  d& k t d& k !  && t  t d& k p d& k  d& k x d& k !  && x  x!  && p  p!  &|& `  8 `  d& l d& "l !  &&   d& 3l d& hl  d& Dl d& Vl !  &&  !  &&   d& yl d& l  d& l d& l !  &&   d& l d& l  d& l d& l !  &&  !  &&  !  &&  4  ! ! ;*  m &m ! ! ;*  $m &m !  &d&  >m &m !  &d&  Xm &m  ! !  &l& !  &L& 2 &  ! !  &l& !  &L& 2 (&   &  [m &$  ,&  0   , ! !  & &   $$8  @& D @d& n @d& n D! $ @ &|& $   D @d& +n ( @d& =n D! , @ && ( ,  ( @! ! 0;* 0 Wn @&8un ! 4 @ &H&  4 ! @&88(  0& 4 0d& n  0d& n 4!  0 &|&     4 0d& n 0d& n 4! $ 0 && $  0&(((  0&  4 !!     o  0 ! ! $  &&  $ o  0& (( & & &   &X ( `& d `d& Vo 0 `d& ho d! 4 ` &|& 0 4 $ 0 d `d& }o 8 `d& o d! < ` && 8 < , 8 `! $! @;* @ o `&XRp $! D ` &d& D o `&XRp  $! ! L ` &l& L! P ` &L& 2 & P  &  o ! H ` H!! L H &(& ( L  P ` P! 2 &! T P && (! ! T! ` &p&  &  p (XXp  x& | xd& mp ( xd& p |! , x &|& ( ,  ( | xd& p 4 xd& p |! < x && 4 < 4 xd& p 0 xd& p | xd& p 8 xd& p |! @ x && 8 @ 8! D x &|& 0 D  0 | xd& q L xd& q |! T x && L T L xd& $q H xd& Yq | xd& 5q P xd& Gq |! X x && P X P! \ x && H \ $ H x! ! `;* ` sq x&pq x! ! d;* d q x&pq ! h x &H&  h x! ! l7- l q pp &  d& q 0 d& q ! 4  &|& 0 4  0  d& q < d& r ! D  && < D < d& r 8 d& Hr  d& $r @ d& 6r ! H  && @ H @! L  &|& 8 L  8  d& ]r X d& or ! l  && X l X d& r T d& r  d& r \ d& r ! p  && \ p \! t  && T t T d& r P d& As  d& r d d& r ! x  && d x d d& r ` d& /s  d& s h d& s ! |  && h | h!  && `  `!  &|& P   P  d& Vs d& hs !  &&   d& ys d& s  d& s d& s !  &&  !  &&   d& s d& :t  d& s d& s !  &&   d& s d& (t  d& t d& t !  &&  !  &&  !  &&    ! ! ;*  Tt &rt ! ! ;*  jt &rt lt &D  L& P Ld& t ( Ld& t P! , L &|& ( ,  ( P Ld& t 4 Ld& t P! < L && 4 < 4 Ld& t 0 Ld&  u P Ld& t 8 Ld& t P! @ L && 8 @ 8! D L &|& 0 D  0 P Ld& !u L Ld& 3u P! T L && L T L Ld& Du H Ld& yu P Ld& Uu P Ld& gu P! X L && P X P! \ L && H \ $ H !\ L! ! `;* ` u L&D~ L! ! d;* d u L&D~ !\ ! h L &H& h L! ! l7-  l ! ! \u ~ !|! pk# p v ,& u t L& v t Lt&  t ~ !r! tk# t 8v x L x! ,&! | x &&  | ~ !g! xk# x ev | L |! ,&! | & &   ~ !]! |k# | v ,& v L& v Lt&   ~ !W! k#  v L ! ,&!  & &   ~ !Q! k#  v L ! ,&!  &&   ~ !J! k#  w L ! ,&!  &&   ~ !A! k#  Ew L ! ,&!  & &   ~ !7! k#  rw L ! ,&!  & &   ~ !(! k#  w ,& w L& w Lt&   ~ !! k#  w ,& w L& w Lt&   ~ ! ! k#  w ,& w L& w Lt&   ~ !! k#  #x L ! ,&!  &&   ~ !! k#  Px L ! ,&!  & &   ~ !! k#  }x L ! ,&!  & &   ~ !! k#  x L ! ,&!  & &   ~ !! k#  x L ! ,&!  & &   ~ !! k#  y L ! ,&!  & &   ~ !! k#  1y L ! ,&!  & &   ~ !! k#  ^y L ! ,&!  &&   ~ !! k#  y L ! , &!  & &   ~ !! k#  y L ! ,&!  &&   ~ !! k#  y L ! ,&!  &&   ~ !! k#  z L ! ,&!  &&   ~ !! k#  ?z L ! ,&!  &&   ~ !! k#  lz L ! , &!  &&   ~ !l! k#  z L ! ,$&!  &&   ~ !f! k#  z L ! ,,&!  &&   ~ !\! k#  z L ! ,<&!  & &   ~ !I! k#  { L ! ,\&!  & &   ~ !1! k#  M{ L ! ,`&!  & &   ~ !"! k#  z{ L ! ,d&!  & &   ~ !! k#  { L ! ,h&!  & &   ~ !! k#  { ,l& { L& { Lt&   ~ ! ! k#  | L ! ,p&!   & &   ~ !! k#  -|  L ! ,t&!   & &   ~ !! k#  Z|  L ! ,x&!   & &   ~ !! k#  |  L ! ,|&!   & &   ~ !! k#  |  L ! ,&!   & &   ~ !! k#  |  L ! ,&!   & &   ~ !! k#  }  L ! ,&!   & &   ~ !! k#  ;}  L ! ,&!   & &   ~ !! k#  h}  L ! ,&!   &&   ~ !! k#  }  L ! ,&! $  &&  $ ~ !! k#  } $ L $! ,&:! ( $ &&  ( ~ !! $k# $ } ( L (! ,&! , ( & &  , ~ !g! (k# ( ~ , L ,! ,&! 0 , & &  0 ~ !V! ,k# , J~ 0 L 0! ,&! 4 0 & &  4 ~ !G! 0k# 0 x~ 4 L 4! ,&:! 8 4 &&  8 ~ !3! 4k# 4 ~ 8 L 8! ,&! < 8 &&  < ~ !$! 8k# 8 ~ < L <! ,&! @ < &&  @ DD 0 &  d& ~ 4 d&  ! 8  &|& 4 8  4  d&  @ d& ' ! H  && @ H @ d& 8 < d& m  d& I D d& [ ! L  && D L D! P  &|& < P  <  d&  \ d&  ! p  && \ p \ d&  X d&   d&  ` d&  ! t  && ` t `! x  && X x X d&  T d& f  d&  h d&  ! |  && h | h d&  d d& T  d& 0 l d& B !  && l  l!  && d  d!  &|& T  T  d& { d&  !  &&   d&  d& Ӏ  d&  d&  !  &&  !  &&   d&  d& _  d&  d&  !  &&   d&  d& M  d& ) d& ; !  &&  !  &&  !  &&  ,  ! ! ;*  y &! ! ! ;*   &! !  &H& $  ! ! 7-   (    !r! k#  ہ ! (! ! 5,  $,&   !g! k#   (!  &H&  $,&   !]! k#  ) ( &      $,&   !W! k#  O (!  &H&  $,&   !Q! k#  s ! (! ! 5,  $,&   !J! k#   ! (! ! 5,  $,&   !A! k#   (!  &H&  $,&   !7! k#   (!  &H&  $,&   !(! k#   ( &      $,&   !! k#  3 ( & %  (   $,&   ! ! k#  [ ( & M  P   $,&   !! k#   (!   &L&  $,&   !! k#   (!   &H&  $,&   !! k#  ̓ (!   &H&  $,&   !! k#   (!   &H&  $,&   !! k#   (!   &H&  $,&   !! k#  ? (!   &H&  $,&   !! k#  e (!   &H&  $,&   !! k#   ! (! ! 5,  $,&   !! k#   (! $  &H&  $, & $  !! $k# $ Մ (! (  &L&  $,& (  !! (k# (  ! (! ! ,5,  $,& ,  !! ,k# ,  ! (! ! 05,  $,& 0  !! 0k# 0 A ! (! ! 45,  $,& 4  !! 4k# 4 e ! (! ! 85,  $, & 8  !l! 8k# 8  ! (! ! <5,  $,$& <  !f! <k# <  (! @  &L&  $,,& @  !\! @k# @ Յ (! D  &H&  $,<& D  !I! Dk# D  (! H  &H&  $,\& H  !1! Hk# H ! (! L  &H&  $,`& L  !"! Lk# L G (! P  &H&  $,d& P  !! Pk# P m (! T  &H&  $,h& T  !! Tk# T  ( &  X  X  $,l& X  ! ! Xk# X  (! \  &H&  $,p& \  !! \k# \  (! `  &H&  $,t& `  !! `k# `  (! d  &H&  $,x& d  !! dk# d - (! h  &H&  $,|& h  !! hk# h S (! l  &H&  $,& l  !! lk# l y (! p  &H&  $,& p  !! pk# p  (! t  &H&  $,& t  !! tk# t Ň (! x  &H&  $,& x  !! xk# x  (! |  &L&  $,& |  !! |k# |  (!   &L&  $,&   !! k#  8 (!   &L&  $,& ;  !! k#  ^ (!   &H&  $,&   !g! k#   (!   &H&  $,&   !V! k#   (!   &H&  $,&   !G! k#  ш (!   &L&  $,& ;  !3! k#   (!   &L&  $,&   !$! k#   (!   &L&  $,&  &  &  d& < ( d& N ! ,  &|& ( ,  (  d& c 4 d& u ! <  && 4 < 4 d&  0 d&   d&  8 d&  ! @  && 8 @ 8! D  &|& 0 D  0  d& Љ L d&  ! T  && L T L d&  H d& (  d&  P d&  ! X  && P X P! \  && H \ $ H ! ! `;* ` B &ݎ ! ! d;* d X &ݎ ! h  &H& h ! ! l7-  l | ڎ !! pk# p h ,&  t &  t t&  t ڎ !! tk# t Ԋh ,& NJ x & Ί x t&  x ڎ !! xk# x  |  |!h ,&! | & &   ڎ !! |k# | .  !h ,&!  & &   ڎ !! k#  [  !h ,&!  & &   ڎ !! k#    !h ,&!  & &   ڎ !! k#    !h ,&!  & &   ڎ !! k#    !h ,&!  & &   ڎ !! k#    !h ,&!  & &   ڎ !! k#  ;h ,& . & 5 t&   ڎ !! k#  h  !h ,&!  & &   ڎ !! k#    !h ,&!  & &   ڎ !{! k#  Œ  !h ,&!  & &   ڎ !i! k#    !h ,&!  & &   ڎ !Y! k#    !h ,&!  & &   ڎ !L! k#  I  !h ,&!  & &   ڎ !@! k#  v  !h , &!  & &   ڎ !1! k#    !h ,&!  & &   ڎ !! k#  ύh ,&  & ɍ t&   ڎ !! k#    !h ,&!  & &   ڎ ! ! k#  )  !h ,&!  & &   ڎ !! k#  V  !h , &!  & &   ڎ !! k#  h ,$& u & | t&   ڎ !! k#    !h ,,&!  & &   ڎ !! k#  ڎ  !h ,0&!  & &   0 $ 8& < 8d&  0 8d&   <! 4 8 &|& 0 4  0 < 8d&  < 8d& 1 <! D 8 && < D < 8d& B 8 8d& w < 8d& S @ 8d& e <! H 8 && @ H @! L 8 &|& 8 L  8 < 8d&  X 8d&  <! l 8 && X l X 8d&  T 8d&  < 8d&  \ 8d& ҏ <! p 8 && \ p \! t 8 && T t T 8d&  P 8d& p < 8d&  d 8d&  <! x 8 && d x d 8d& ) ` 8d& ^ < 8d& : h 8d& L <! | 8 && h | h! 8 && `  `! 8 &|& P  P < 8d&  8d&  <! 8 &&   8d&  8d& ݐ < 8d&  8d& ː <! 8 &&  ! 8 &&   8d&  8d& i < 8d&  8d&  <! 8 &&   8d& " 8d& W < 8d& 3 8d& E <! 8 &&  ! 8 &&  ! 8 &&    8! ! ;*   8&0a 8! ! ;*   8&0a  [ !! k#  ő , 8&     h (,&  [ !! k#   , 8& ߑ    h (,&  [ !! k#   ,! 8 &H& h (,&  [ !! k#  9 ,! 8 &H& h (,&  [ !! k#  _ ,! 8 &H& h (,&  [ !! k#   ,! 8 &H& h (,&  [ !! k#   ,! 8 &H& h (,&  [ !! k#  ђ ,! 8 &H& h (,&  [ !! k#   ,! 8 &H& h (,&  [ !! k#   , 8&     h (,&  [ !! k#  E ,! 8 &H& h (,&  [ !! k#  k ,! 8 &H& h (,&  [ !{! k#   ,! 8 &H& h (,&  [ !i! k#   ,!  8 &H& h (,&  [ !Y! k#  ݓ ,!  8 &H& h (,&  [ !L! k#   ,!  8 &H& h (,&  [ !@! k#  ) ,!  8 &H& h (, &  [ !1! k#  O ,!  8 &H& h (,&  [ !! k#  w , 8& i  l  h (,&  [ !! k#   ,!  8 &H& h (,&  [ ! ! k#  Ô ,!  8 &H& h (,&  [ !! k#   ,!  8 &H& h (, &  [ !! k#   , 8&  $  $ h (,$& $ [ !! $k# $ 7 ,! ( 8 &H& h (,,& ( [ !! (k# ( [ ,! , 8 &H& h (,0& , 8&00  &  d& | ( d&  ! ,  &|& ( ,  (  d&  4 d&  ! <  && 4 < 4 d& ƕ 0 d&   d& ו 8 d&  ! @  && 8 @ 8! D  &|& 0 D  0  d&  L d& " ! T  && L T L d& 3 H d& h  d& D P d& V ! X  && P X P! \  && H \ $ H ! ! `;* `  & ! ! d;* d  & ! h  &H& h ! ! l7-  l   !! pk# p  t  t! ,&! x t & &  x  !! tk# t  x  x! ,&! | x & &  |  !! xk# x C |  |! ,&! | & &    !! |k# | p  ! ,&!  & &    !! k#    ! ,&!  & &    !! k#  ʗ  ! ,&!  & &    !! k#    ! ,&!  & &    !! k#  $  ! , &!  & &    !{! k#  Q  ! ,$&!  & &    !q! k#  ~  ! ,(&!  & &    !f! k#    ! ,,&!  & &    !Z! k#  ؘ  ! ,0&!  & &    !P! k#    ! ,4&!  & &    !J! k#  2  ! ,8&!  & &    !D! k#  _  ! ,<&!  & &    !>! k#    ! ,@&!  & &    !4! k#    ! ,D&!  & &    !+! k#    ! ,H&!  & &    !$! k#    ! ,L&!  & &    !! k#  @  ! ,P&!  & &    !! k#  m  ! ,T&!  & &    !! k#    ! ,X&!  & &   $ ,& 0 ,d&  0 ,d& Ț 0! 4 , &|& 0 4  0 0 ,d& ݚ < ,d&  0! D , && < D < ,d&  8 ,d& 5 0 ,d&  @ ,d& # 0! H , && @ H @! L , &|& 8 L  8 0 ,d& J X ,d& \ 0! l , && X l X ,d& m T ,d&  0 ,d& ~ \ ,d&  0! p , && \ p \! t , && T t T ,d&  P ,d& . 0 ,d& ě d ,d& ֛ 0! x , && d x d ,d&  ` ,d&  0 ,d&  h ,d&   0! | , && h | h! , && `  `! , &|& P   P 0 ,d& C ,d& U 0! , &&   ,d& f ,d&  0 ,d& w ,d&  0! , &&  ! , &&   ,d&  ,d& ' 0 ,d&  ,d& Ϝ 0! , &&   ,d&  ,d&  0 ,d&  ,d&  0! , &&  ! , &&  ! , &&    ,! ! ;*  A ,&$ ,! ! ;*  W ,&$ [  $!! k#   ,! , &H&  (,&   $!! k#   ,! , &H&  (,&   $!! k#  ͝ ,! , &H&  (,&   $!! k#   ,! , &H&  (,&   $!! k#   ,! , &H&  (,&   $!! k#  ? ,! , &H&  (,&   $!! k#  e ,! , &H&  (,&   $!! k#   ,! , &H&  (, &   $!{! k#   ,! , &H&  (,$&   $!q! k#  מ ,! , &H&  (,(&   $!f! k#   ,! , &H&  (,,&   $!Z! k#  # ,! , &H&  (,0&   $!P! k#  I ,! , &H&  (,4&   $!J! k#  o ,!  , &H&  (,8&   $!D! k#   ,!  , &H&  (,<&   $!>! k#   ,!  , &H&  (,@&   $!4! k#   ,!  , &H&  (,D&   $!+! k#   ,!  , &H&  (,H&   $!$! k#  - ,!  , &H&  (,L&   $!! k#  S ,!  , &H&  (,P&   $!! k#  y ,!  , &H&  (,T&   $!! k#   ,!  , &H&  (,X&  ,&$$  &  d&  ( d& Р ! ,  &|& ( ,  (  d&  4 d&  ! <  && 4 < 4 d&  0 d& =  d&  8 d& + ! @  && 8 @ 8! D  &|& 0 D  0  d& R L d& d ! T  && L T L d& u H d&   d&  P d&  ! X  && P X P! \  && H \ $ H ! ! `;* ` ġ &8 ! ! d;* d ڡ &8 ! h  &H& h ! ! l7-  l  5 !! pk# p * ,,&  t & $ t t&  t 5 !! tk# t W x  x! ,0&! | x & &  | 5 !! xk# x  |  |! ,4&! | & &   5 !! |k# |   ! ,8&!  & &   5 !! k#  ݢ ,<& Т & ע t&   5 !! k#    ! ,X&!  & &   5 !! k#  5  ! ,&!  & &    &  d& S 0 d& e ! 4  &|& 0 4  0  d& z < d&  ! D  && < D < d&  8 d& ң  d&  @ d&  ! H  && @ H @! L  &|& 8 L  8  d&  X d&  ! l  && X l X d&  T d& ?  d&  \ d& - ! p  && \ p \! t  && T t T d& P P d& ˤ  d& a d d& s ! x  && d x d d&  ` d&   d&  h d&  ! |  && h | h!  && `  `!  &|& P   P  d&  d&  !  &&   d&  d& 8  d&  d& & !  &&  !  &&   d& I d& ĥ  d& Z d& l !  &&   d& } d&   d&  d&  !  &&  !  &&  !  &&    ! ! ;*  ޥ &  ! ! ;*   &    $!! k#   , &      (,,&   $!! k#  F ,!  &H&  (,0&   $!! k#  l ,!  &H&  (,4&   $!! k#   ,!  &H&  (,8&   $!! k#   , &      (,<&   $!! k#   ,!  &H&  (,X&   $!! k#   ,!  &H&  (,&  &  $& ( $d& % ( $d& 7 (! , $ &|& ( ,  ( ( $d& L 4 $d& ^ (! < $ && 4 < 4 $d& o 0 $d&  ( $d&  8 $d&  (! @ $ && 8 @ 8! D $ &|& 0 D  0 ( $d&  L $d& ˧ (! T $ && L T L $d& ܧ H $d&  ( $d&  P $d&  (! X $ && P X P! \ $ && H \ $ H $! ! `;* ` + $& $! ! d;* d A $& ! h $ &H& h $! ! l7-  l e  !! pk# p  t $ t!h ,,&! x t & &  x  !! tk# t  x $ x!h ,0&! | x & &  |  !! xk# x  | $ |!h ,4&! | & &    !! |k# |  $ !h ,8&!  & &    !! k#  F $ !h ,<&!  & &    !! k#  s $ !h ,X&!  & &    !! k#   $ !h ,\&!  & &    !f! k#  ͩ $ !h ,`&!  & &    !x! k#   $ !h ,p&!  & &    !! k#  ' $ !h ,p&!  & &    !n! k#  T $ !h ,t&!  & &    !! k#   $ !h ,x&!  & &    !c! k#   $ !h ,|&!  & &    !! k#  ۪ $ !h ,&!  & &    !W! k#   $ !h ,&!  & &    !! k#  5 $ !h ,&!  & &    !I! k#  b $ !h ,&!  & &    !?! k#   $ !h ,&!  & &    !1! k#   $ !h ,&!  & &    !#! k#   $ !h ,&!  & &    !! k#   $ !h ,&!  & &    !! k#  C $ !h ,&!  & &    !P! k#  p $ !h ,&!  & &    !$! k#   $ !h ,&!  & &    !! k#  ʬ $ !h ,&!  & &    !! k#   $ !h ,&!  & &    !! k#  $ $ !h ,&!  & &    !! k#  Q $ !h ,&!  & &    !! k#  ~ $ !h ,&!  & &    !! k#   $ !h ,&!  & &    !! k#  ح $ !h ,$&!  & &    !! k#   $ !h ,d&!  & &    !! k#  2 $ !h ,&!  & &    !! k#  _ $ !h ,&!  & &    !! k#   $ !h ,&!   & &    !q! k#    $ !h ,&!   & &    !! k#    $ !h ,&!   & &    !z! k#    $ !h ,&!   & &    !i! k#  @  $ !h ,&!   & &    ![! k#  m  $ !h ,&!   & &    !G! k#    $ !h ,&!   & &   p $ x& | xd&  0 xd& ȯ |! 4 x &|& 0 4  0 | xd& ݯ < xd&  |! D x && < D < xd&  8 xd& 5 | xd&  @ xd& # |! H x && @ H @! L x &|& 8 L  8 | xd& J X xd& \ |! l x && X l X xd& m T xd&  | xd& ~ \ xd&  |! p x && \ p \! t x && T t T xd&  P xd& . | xd& İ d xd& ְ |! x x && d x d xd&  ` xd&  | xd&  h xd&   |! | x && h | h! x && `  `! x &|& P  P | xd& C xd& U |! x &&   xd& f xd&  | xd& w xd&  |! x &&  ! x &&   xd&  xd& ' | xd&  xd& ϱ |! x &&   xd&  xd&  | xd&  xd&  |! x &&  ! x &&  ! x &&    x! ! ;*  A x&pu x! ! ;*  W x&pu [ o !! k#   ,! x &H& h (,,&  o !! k#   ,! x &H& h (,0&  o !! k#  Ͳ ,! x &H& h (,4&  o !! k#   ,! x &H& h (,8&  o !! k#   ,! x &H& h (,<&  o !! k#  ? ,! x &H& h (,X&  o !! k#  e ,! x &H& h (,\&  o !f! k#   ,! x &H& h (,`&  o !x! k#   ,! x &H& h (,p&  o !! k#  ׳ ,! x &H& h (,p&  o !n! k#   ,! x &H& h (,t&  o !! k#  # ,! x &H& h (,x&  o !c! k#  I ,! x &H& h (,|&  o !! k#  o ,!  x &H& h (,&  o !W! k#   ,!  x &H& h (,&  o !! k#   ,!  x &H& h (,&  o !I! k#   ,!  x &H& h (,&  o !?! k#   ,!  x &H& h (,&  o !1! k#  - ,!  x &H& h (,&  o !#! k#  S ,!  x &H& h (,&  o !! k#  y ,!  x &H& h (,&  o !! k#   ,!  x &H& h (,&  o !P! k#  ŵ ,! $ x &H& h (,& $ o !$! $k# $  ,! ( x &H& h (,& ( o !! (k# (  ,! , x &H& h (,& , o !! ,k# , 7 ,! 0 x &H& h (,& 0 o !! 0k# 0 ] ,! 4 x &H& h (,& 4 o !! 4k# 4  ,! 8 x &H& h (,& 8 o !! 8k# 8  ,! < x &H& h (,& < o !! <k# < ϶ ,! @ x &H& h (,& @ o !! @k# @  ,! D x &H& h (,$& D o !! Dk# D  ,! H x &H& h (,d& H o !! Hk# H A ,! L x &H& h (,& L o !! Lk# L g ,! P x &H& h (,& P o !! Pk# P  ,! T x &H& h (,& T o !q! Tk# T  ,! X x &H& h (,& X o !! Xk# X ٷ ,! \ x &H& h (,& \ o !z! \k# \  ,! ` x &H& h (,& ` o !i! `k# ` % ,! d x &H& h (,& d o ![! dk# d K ,! h x &H& h (,& h o !G! hk# h o ,! l x &H& h (,& l x&pp  &  d&  ( d&  ! ,  &|& ( ,  (  d&  4 d& ɸ ! <  && 4 < 4 d& ڸ 0 d&   d&  8 d&  ! @  && 8 @ 8! D  &|& 0 D  0  d& $ L d& 6 ! T  && L T L d& G H d& |  d& X P d& j ! X  && P X P! \  && H \ $ H ! ! `;* `  & ! ! d;* d  & ! h  &H& h ! ! l7-  l й  !=! pk# p  t  t!h ,&! x t & &  x  !1! tk# t )h ,&  x & # x t&  x  !$! xk# x Uh , & H | & O | t&  |  !! |k# | h ,$& t & { t&    !! k#  h ,(&  &  t&    !! k#  ٺ  !h ,,&!  &&    !! k#    !h ,P&!  & &    !! k#  3  !h ,T&!  & &    !! k#  `  !h ,&!  & &    !! k#    !h ,&!  & &    !! k#  h ,&  &  t&     &  d& ջ ( d&  ! ,  &|& ( ,  (  d&  4 d&  ! <  && 4 < 4 d&  0 d& T  d& 0 8 d& B ! @  && 8 @ 8! D  &|& 0 D  0  d& i L d& { ! T  && L T L d&  H d&   d&  P d&  ! X  && P X P! \  && H \ $ H ! ! `;* ` ۼ &2 ! ! d;* d  &2 ! h  &H& h ! ! l7-  l  / !! pk# p B t  t!h ,X&! x t & &  x / !! tk# t o x  x!h ,\&! | x & &  | / !! xk# x  |  |!h ,`&! | & &   / !! |k# | ɽ  !h ,d&!  & &   / !! k#    !h ,h&!  & &   / !! k#  #  !h ,l&!  & &   / !~! k#  P  !h ,p&!  & &   / !v! k#  }  !h ,t&!  & &   / !f! k#    !h ,x&!  &&   / !U! k#  ׾  !h ,|&!  &&   / !K! k#    !h ,&!  &&   / !8! k#  /  !h ,&!  &&    &  d& M 0 d& _ ! 4  &|& 0 4  0  d& t < d&  ! D  && < D < d&  8 d& ̿  d&  @ d&  ! H  && @ H @! L  &|& 8 L  8  d&  X d&  ! l  && X l X d&  T d& 9  d&  \ d& ' ! p  && \ p \! t  && T t T d& J P d&   d& [ d d& m ! x  && d x d d& ~ ` d&   d&  h d&  ! |  && h | h!  && `  `!  &|& P   P  d&  d&  !  &&   d&  d& 2  d&  d&   !  &&  !  &&   d& C d&   d& T d& f !  &&   d& w d&   d&  d&  !  &&  !  &&  !  &&    ! ! ;*   & ! ! ;*   &   $!! k#   ,!  &H& h (,X&   $!! k#  > ,!  &H& h (,\&   $!! k#  d ,!  &H& h (,`&   $!! k#   ,!  &H& h (,d&   $!! k#   ,!  &H& h (,h&   $!! k#   ,!  &H& h (,l&   $!~! k#   ,!  &H& h (,p&   $!v! k#  " ,!  &H& h (,t&   $!f! k#  H ,!  &L& h (,x&   $!U! k#  n ,!  &L& h (,|&   $!K! k#   ,!  &L& h (,&   $!8! k#   ,!  &L& h (,&  & &  d&  0 d&  ! 4  &|& 0 4  0  d&  < d&  ! D  && < D < d& # 8 d& X  d& 4 @ d& F ! H  && @ H @! L  &|& 8 L  8  d& m X d&  ! l  && X l X d&  T d&   d&  \ d&  ! p  && \ p \! t  && T t T d&  P d& Q  d&  d d&  ! x  && d x d d&  ` d& ?  d&  h d& - ! |  && h | h!  && `  `!  &|& P   P  d& f d& x !  &&   d&  d&   d&  d&  !  &&  !  &&   d&  d& J  d&  d&  !  &&   d&  d& 8  d&  d& & !  &&  !  &&  !  &&    ! ! ;*  d & ! ! ;*  z & ~  $!=! k#   ,!  &H& h (,&   $!1! k#   , &     h (,&   $!$! k#   , &     h (, &   $!! k#   , &     h (,$&   $!! k#  D , & 6  9  h (,(&   $!! k#  j ,!  &H& h (,P&   $!! k#   ,!  &H& h (,T&   $!! k#   ,!  &H& h (,&   $!! k#   ,!  &H& h (,&   $!! k#   , &     h (,&  &  &  d& # ( d& 5 ! ,  &|& ( ,  (  d& J 4 d& \ ! <  && 4 < 4 d& m 0 d&   d& ~ 8 d&  ! @  && 8 @ 8! D  &|& 0 D  0  d&  L d&  ! T  && L T L d&  H d&   d&  P d&  ! X  && P X P! \  && H \ $ H ! ! `;* ` ) & ! ! d;* d ? & ! h  &H& h ! ! l7-  l c  !,! pk# p  t  t!h ,&! x t & &  x  !! tk# t  x  x!h ,&! | x & &  |  !! xk# x  |  |!h ,&! | & &    !! |k# |   !h ,&!  & &    !! k#  D  !h ,&!  & &    !! k#  q  !h ,&!  & &    !! k#  h ,&  &  t&    !! k#    !h ,&!  & &    &  d&  0 d&  ! 4  &|& 0 4  0  d&  < d&  ! D  && < D < d& 0 8 d& e  d& A @ d& S ! H  && @ H @! L  &|& 8 L  8  d& z X d&  ! l  && X l X d&  T d&   d&  \ d&  ! p  && \ p \! t  && T t T d&  P d& ^  d&  d d&  ! x  && d x d d&  ` d& L  d& ( h d& : ! |  && h | h!  && `  `!  &|& P   P  d& s d&  !  &&   d&  d&   d&  d&  !  &&  !  &&   d&  d& W  d&  d&  !  &&   d&  d& E  d& ! d& 3 !  &&  !  &&  !  &&    ! ! ;*  q & ! ! ;*   &   $!,! k#   ,!  &H& h (,&   $!! k#   ,!  &H& h (,&   $!! k#   ,!  &H& h (,&   $!! k#  # ,!  &H& h (,&   $!! k#  I ,!  &H& h (,&   $!! k#  o ,!  &H& h (,&   $!! k#   , &     h (,&   $!! k#   ,!  &H& h (,&  &  &  d&  ( d&  ! ,  &|& ( ,  (  d&  4 d&  ! <  && 4 < 4 d& & 0 d& [  d& 7 8 d& I ! @  && 8 @ 8! D  &|& 0 D  0  d& p L d&  ! T  && L T L d&  H d&   d&  P d&  ! X  && P X P! \  && H \ $ H ! ! `;* `  & ! ! d;* d  & ! h  &H& h ! ! l7-  l   !r! pk# p I t  t!4 ,@&! x t &&  x  !! tk# t v x  x!4 ,D&! | x &&  |  !! xk# x  |  |!4 ,X&! | &&    !! |k# |   !4 ,X&!  &&    !! k#    !4 ,\&!  &&    !! k#  *  !4 ,`&!  & &    !! k#  W  !4 ,d&!  & &    !! k#    !4 ,h&!  & &    !! k#    !4 ,l&!  &&    !! k#    !4 ,p&!  &&    &  d&  0 d&   ! 4  &|& 0 4  0  d& ! < d& 3 ! D  && < D < d& D 8 d& y  d& U @ d& g ! H  && @ H @! L  &|& 8 L  8  d&  X d&  ! l  && X l X d&  T d&   d&  \ d&  ! p  && \ p \! t  && T t T d&  P d& r  d&  d d&  ! x  && d x d d& + ` d& `  d& < h d& N ! |  && h | h!  && `  `!  &|& P   P  d&  d&  !  &&   d&  d&   d&  d&  !  &&  !  &&   d&  d& k  d&  d&  !  &&   d& $ d& Y  d& 5 d& G !  &&  !  &&  !  &&    ! ! ;*   & ! ! ;*   &   $!! k#   ,!  &H& 4 (,`&   $!! k#   ,!  &H& 4 (,d&   $!! k#   ,!  &H& 4 (,h&  &  &  d& 0 ( d& B ! ,  &|& ( ,  (  d& W 4 d& i ! <  && 4 < 4 d& z 0 d&   d&  8 d&  ! @  && 8 @ 8! D  &|& 0 D  0  d&  L d&  ! T  && L T L d&  H d&   d&  P d&   ! X  && P X P! \  && H \ $ H ! ! `;* ` 6 & ! ! d;* d L & ! h  &H& h ! ! l7-  l p  !! pk# p  t  t!p ,&! x t & &  x  !! tk# t  x  x!p ,&! | x &&  |  !! xk# x  |  |!p ,&! | & &    !! |k# | $  !p , &!  & &    !f! k#  Q  !p ,$&!  & &    !w! k#  ~  !p ,t&!  & &    !o! k#    !p ,x&!  & &    !j! k#    !p ,|&!  & &    &  d&  0 d&  ! 4  &|& 0 4  0  d&  < d& - ! D  && < D < d& > 8 d& s  d& O @ d& a ! H  && @ H @! L  &|& 8 L  8  d&  X d&  ! l  && X l X d&  T d&   d&  \ d&  ! p  && \ p \! t  && T t T d&  P d& l  d&  d d&  ! x  && d x d d& % ` d& Z  d& 6 h d& H ! |  && h | h!  && `  `!  &|& P   P  d&  d&  !  &&   d&  d&   d&  d&  !  &&  !  &&   d&  d& e  d&  d&   !  &&   d&  d& S  d& / d& A !  &&  !  &&  !  &&    ! ! ;*   & ! ! ;*   &   $!! k#   ,!  &H& p (,&   $!! k#   ,!  &H& p (,&   $!! k#   ,!  &H& p (, &   $!f! k#  1 ,!  &H& p (,$&   $!w! k#  W ,!  &H& p (,t&   $!o! k#  } ,!  &H& p (,x&   $!j! k#   ,!  &H& p (,|&  &  &  d&  ( d&  ! ,  &|& ( ,  (  d&  4 d&  ! <  && 4 < 4 d&  0 d& A  d&  8 d& / ! @  && 8 @ 8! D  &|& 0 D  0  d& V L d& h ! T  && L T L d& y H d&   d&  P d&  ! X  && P X P! \  && H \ $ H ! ! `;* `  &> ! ! d;* d  &> ! h  &H& h ! ! l7-  l  ; !! pk# p / t  t!X ,!&! x t & &  x ; !! tk# t \ x  x!X ,!&! | x &&  | ; !Q! xk# x  |  |!X ,!&! | & &   ; !Z! |k# |   !X ,!&!  & &   ; !w! k#    !X ,!&!  & &   ; !o! k#    !X ,!&!  & &   ; !j! k#  ;  !X ,!&!  & &    $ &  d& Y 4 d& k ! 8  &|& 4 8  4  d&  @ d&  ! H  && @ H @ d&  < d&   d&  D d&  ! L  && D L D! P  &|& < P  <  d&  \ d&  ! p  && \ p \ d&  X d& E  d& ! ` d& 3 ! t  && ` t `! x  && X x X d& V T d&   d& g h d& y ! |  && h | h d&  d d&   d&  l d&  !  && l  l!  && d  d!  &|& T  T  d&  d&  !  &&   d&  d& >  d&  d& , !  &&  !  &&   d& O d&   d& ` d& r !  &&   d&  d&   d&  d&  !  &&  !  &&  !  &&    ! ! ;*   &  ! ! ;*   &    (!! k#  $ 0!  &H& X ,,!&   (!! k#  H ! 0! ! 5, X ,,!&   (!Q! k#  n 0!  &H& X ,,!&   (!Z! k#   0!  &H& X ,,!&   (!w! k#   0!  &H& X ,,!&   (!o! k#   0!  &H& X ,,!&   (!j! k#   0!  &H& X ,,!&  &  &  d& % ( d& 7 ! ,  &|& ( ,  (  d& L 4 d& ^ ! <  && 4 < 4 d& o 0 d&   d&  8 d&  ! @  && 8 @ 8! D  &|& 0 D  0  d&  L d&  ! T  && L T L d&  H d&   d&  P d&  ! X  && P X P! \  && H \ $ H ! ! `;* ` + & ! ! d;* d A & ! h  &H& h ! ! l7-  l e  !! pk# p  t  t! 2M&! x t & &  x  !S! tk# t  x  x! 2M&! | x & &  |  ! ! xk# x  |  |! 2M&! | & &    !I! |k# |   ! 2M&!  &&    !B! k#  F  ! 2M&!  & &    !<! k#  s  ! 2M&!  & &    !5! k#    ! 2M&!  & &    !/! k#    ! 2M&!  & &    &  d&  0 d&  ! 4  &|& 0 4  0  d&  < d& " ! D  && < D < d& 3 8 d& h  d& D @ d& V ! H  && @ H @! L  &|& 8 L  8  d& } X d&  ! l  && X l X d&  T d&   d&  \ d&  ! p  && \ p \! t  && T t T d&  P d& a  d&  d d&   ! x  && d x d d&  ` d& O  d& + h d& = ! |  && h | h!  && `  `!  &|& P   P  d& v d&  !  &&   d&  d&   d&  d&  !  &&  !  &&   d&  d& Z  d&  d&  !  &&   d&  d& H  d& $ d& 6 !  &&  !  &&  !  &&    ! ! ;*  t & ! ! ;*   &   $!! k#   ,!  &H& (2M&   $!S! k#   ,!  &H& (2M&   $! ! k#   ,!  &H& (2M&   $!I! k#  & ,!  &L& (2M&   $!B! k#  L ,!  &H& (2M&   $!<! k#  r ,!  &H& (2M&   $!5! k#   ,!  &H& (2M&   $!/! k#   ,!  &H& (2M&  &  &  d&  ( d&  ! ,  &|& ( ,  (  d&  4 d&  ! <  && 4 < 4 d& ' 0 d& \  d& 8 8 d& J ! @  && 8 @ 8! D  &|& 0 D  0  d& q L d&  ! T  && L T L d&  H d&   d&  P d&  ! X  && P X P! \  && H \ $ H ! ! `;* `  & ! ! d;* d  & ! h  &H& h ! ! l7-  l   !! pk# p J t  t! ,P\&! x t & &  x  !! tk# t w x  x! ,T\&! | x &&  |  !f! xk# x  |  |! ,\&! | & &    !$! |k# |   ! ,\&!  & &    !! k#    ! ,\&!  & &    !! k#  +  ! ,\&!  & &    !! k#  X  ! ,\&!  & &    !B! k#    ! ,\&!  & &    !! k#    ! ,\&!  & &    !! k#    ! ,\&!  &&    !! k#    ! ,\&!  & &    !! k#  9  ! ,\&!  & &    !! k#  f  ! ,\&!  & &    !! k#    ! ,\&!  & &    &  d&  0 d&  ! 4  &|& 0 4  0  d&  < d&  ! D  && < D < d&  8 d& .  d&  @ d&  ! H  && @ H @! L  &|& 8 L  8  d& C X d& U ! l  && X l X d& f T d&   d& w \ d&  ! p  && \ p \! t  && T t T d&  P d& '  d&  d d&  ! x  && d x d d&  ` d&   d&  h d&  ! |  && h | h!  && `  `!  &|& P   P  d& < d& N !  &&   d& _ d&   d& p d&  !  &&  !  &&   d&  d&    d&  d&  !  &&   d&  d&   d&  d&  !  &&  !  &&  !  &&    ! ! ;*  : &F ! ! ;*  P &F T @ $!! k#  z ,!  &H&  (,P\&  @ $!f! k#   ,!  &H&  (,\&  @ $!$! k#   ,!  &H&  (,\&  @ $!! k#   ,!  &H&  (,\&  @ $!! k#   ,!  &H&  (,\&  @ $!! k#  8 ,!  &H&  (,\&  @ $!B! k#  ^ ,!  &H&  (,\&  @ $!! k#   ,!  &H&  (,\&  @ $!! k#   ,!  &L&  (,\&  @ $!! k#   ,!  &H&  (,\&  @ $!! k#   ,!  &H&  (,\&  @ $!! k#   ,!  &H&  (,\&  @ $!! k#  @ ,!  &H&  (,\&  &  &  d& a ( d& s ! ,  &|& ( ,  (  d&  4 d&  ! <  && 4 < 4 d&  0 d&   d&  8 d&  ! @  && 8 @ 8! D  &|& 0 D  0  d&  L d&  ! T  && L T L d&  H d& M  d& ) P d& ; ! X  && P X P! \  && H \ $ H ! ! `;* ` g & ! ! d;* d } & ! h  &H& h ! ! l7-  l   !! pk# p  t  t!4 ,U&! x t & &  x  !! tk# t  x  x!4 ,U&! | x &&  |  !! xk# x ( |  |!4 ,U&! | & &    !! |k# | U  !4 ,U&!  & &    !! k#    !4 ,U&!  & &    !ݿ! k#    !4 ,U&!  & &    !! k#    !4 ,U&!  &&    !׿! k#    !4 ,U&!  &&    !ѿ! k#  6  !4 ,U&!  & &    !ʿ! k#  c  !4 ,U&!  & &    !Ŀ! k#    !4 ,U&!  & &    !! k#    !4 ,U&!  & &    $ &  d&  4 d&  ! 8  &|& 4 8  4  d&  @ d&  ! H  && @ H @ d& # < d& X  d& 4 D d& F ! L  && D L D! P  &|& < P  <  d& m \ d&  ! p  && \ p \ d&  X d&   d&  ` d&  ! t  && ` t `! x  && X x X d&  T d& Q  d&  h d&  ! |  && h | h d&  d d& ?  d&  l d& - !  && l  l!  && d  d!  &|& T  T  d& f d& x !  &&   d&  d&   d&  d&  !  &&  !  &&   d&  d& J  d&  d&  !  &&   d&  d& 8  d&  d& & !  &&  !  &&  !  &&    ! ! ;*  d &H ! ! ;*  z &H ~ B (!! k#   0!  &H& 4 ,,U&  B (!! k#   ! 0! ! 5, 4 ,,U&  B (!! k#   0!  &H& 4 ,,U&  B (!! k#   0!  &H& 4 ,,U&  B (!! k#  : 0!  &H& 4 ,,U&  B (!ݿ! k#  ` 0!  &H& 4 ,,U&  B (!! k#   0!  &L& 4 ,,U&  B (!׿! k#   0!  &L& 4 ,,U&  B (!ѿ! k#   0!  &H& 4 ,,U&  B (!ʿ! k#   0!  &H& 4 ,,U&  B (!Ŀ! k#   0!  &H& 4 ,,U&  B (!! k#  B 0!  &H& 4 ,,U&  &(  0&  4 dJ     0 ! '(! $  & &  $   0d& ((4  <& @ <d&  <d&  @! $ < &|& $   @ <d&  ( <d&  @! , < && ( ,  ( ! 0 < &H&  0  ,& !=K <&44  & $ K  (  t& /  &    $ &  d& Q 8 d& c ! <  &|& 8 <  8  d& x D d&  ! L  && D L D d&  @ d&   d&  H d&  ! P  && H P H! T  &|& @ T 0 @  d&  \ d&  ! d  && \ d \ d&  X d& =  d&  ` d& + ! h  && ` h `! l  && X l 4 X ! ! p;* p W & ! t  &d& t q &  ! ! |  &l& |!  &L& 2 &   &  t 0! x  &H& , x ! ,! |lK ( | (   ! ('(!  & & $   $ d& $ 4 &  d&  8 d&  ! <  &|& 8 < $ 8  d& 4 D d& F ! L  && D L D d& W @ d&   d& h H d& z ! P  && H P H! T  &|& @ T ( @  d&  ` d&  ! t  && ` t ` d&  \ d&   d&  d d&  ! x  && d x d! |  && \ | \ d&  X d&   d&  l d& - !  && l  l d& > h d& s  d& O p d& a !  && p  p!  && h  h!  &|& X  , X  d&  d&  !  &&   d&  d&   d&  d&  !  &&  !  &&   d&  d& ~  d&  d& & !  &&   d& 7 d& l  d& H d& Z !  &&  !  &&  !  &&  0  $!  &H&   (!  &H&   ,!  &H&   ,& ! ! !L & 4 &  d&  8 d&  ! <  &|& 8 < $ 8  d&  D d& & ! L  && D L D d& 7 @ d& l  d& H H d& Z ! P  && H P H! T  &|& @ T ( @  d&  ` d&  ! t  && ` t ` d&  \ d&   d&  d d&  ! x  && d x d! |  && \ | \ d&  X d& e  d&  l d&   !  && l  l d&  h d& S  d& / p d& A !  && p  p!  && h  h!  &|& X  , X  d& z d&  !  &&   d&  d&   d&  d&  !  &&  !  &&   d&  d& ^  d&  d&  !  &&   d&  d& L  d& ( d& : !  &&  !  &&  !  &&  0  $!  &H&   (!  &H&   ,!  &H&   ,& ! ! !M &4  <& @ <d&  <d&  @! $ < &|& $   @ <d&  ( <d&  @! , < && ( ,  ( ! 0 < &H&  0  ,& ! !K ! <&44  &  d& W @ d& i ! D  &|& @ D , @  d& ~ L d&  ! T  && L T L d&  H d&   d&  P d&  ! X  && P X P! \  &|& H \ 0 H  d&  h d&  ! |  && h | h d&  d d& C  d&  l d& 1 !  && l  l!  && d  d d& T ` d&   d& e t d& w !  && t  t d&  p d&   d&  x d&  !  && x  x!  && p  p!  &|& `  4 `  d&  d&  !  &&   d&  d& <  d&  d& * !  &&  !  &&   d& M d&   d& ^ d& p !  &&   d&  d&   d&  d&  !  &&  !  &&  !  &&   d&  d&   d&  d&  !  &&   d&  d& B  d&  d& 0 !  &&  !  &&   d& S d&   d& d d& v !  &&   d&  d&   d&  d&  !   &&  !   &&  !   &&  !   &|&  8   d&   d&  ! L  &&  L  d&   d& M  d& )  d& ; ! P  &&  P ! T  &&  T  d& ^  d&   d& o ( d&  ! X  && ( X ( d&  $ d&   d&  , d&  ! \  && , \ ,! `  && $ ` $! d  &&  d  d&   d&   d&  8 d&   ! h  && 8 h 8 d&  4 d& S  d& / < d& A ! l  && < l <! p  && 4 p 4 d& d 0 d&   d& u D d&  ! t  && D t D d&  @ d&   d&  H d&  ! x  && H x H! |  && @ | @!   && 0  0!   &&   <  ! ,! ! 5,   0!   &H&  4!   &H& $  8 & 6  9  (  ! ! $! (! G   ! !   & &   D  L& P Ld&  $ Ld&  P! ( L &|& $ (  $ P Ld&  , Ld&  P! 0 L && , 0 , L! ! ! 45,  4 ! 8qG < L <! 8! @ < & &  @ DDD  L& P Ld&   $ Ld& !  P! ( L &|& $ (  $ P Ld& 6  , Ld& H  P! 0 L && , 0 , L! ! ! 45,  4 ! 8G < L <! 8! @ < & &  @ DDY $ Y& Y Yd&  ( Yd&   Y! , Y &|& ( ,  ( Y Yd&  0 Yd&   Y! 4 Y && 0 4 0 Y! ! 8;* 8  Y&Y ! < Y &H&  < @ Y @!! D @ && Y! ! H L Y L! L&! D! H!)6    !\! P Y P!! T P && X Y X!! \ X & & ` Y `! `&! T! \!) d Y d!! h d && l Y l!! p l & & t Y t! t&! h! p!) x Y x!x! | x && Y !!  & & Y ! &! |! !) Y !o!  && Y !!  & & Y ! &! ! !) Y !d!  && Y !!  & & Y ! &! ! !) Y !\!  && Y !!  & & Y ! &! ! !) Y !R!  && Y !!  & & Y ! &! ! !) Y !G!  && Y !!  & & Y ! &! ! !) Y !<!  && Y !!  & &  Y ! &! ! !)  Y !/!   &&  Y !!   & &  Y ! &! ! !)  Y ! !   &&  Y ! ! $  & & ( Y (! (&! ! $!) , Y ,!! 0 , && 4 Y 4! ! 8 4 & & < Y <! <&! 0! 8!) @ Y @! ! D @ && H Y H! ! L H & & P Y P! P&! D! L!) T Y T!! X T && \ Y \! ! ` \ & & d Y d! d&! X! `!) h Y h!! l h && p Y p!! t p & & x Y x! x&! l! t!) | Y |!վ!  | &&  Y !!   & &  Y ! &! ! !)  Y !ƾ!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !u!   &&  Y !!   & &  Y ! &! ! !)  Y !j!   &&  Y !!   & &  Y ! &! ! !)  Y !a!   && $ Y $!! ( $ & & , Y ,! ,&! ! (!) 0 Y 0!W! 4 0 && 8 Y 8! ! < 8 & & @ Y @! @&! 4! <!) D Y D!M! H D && L Y L! ! P L & & T Y T! T&! H! P!) X Y X!B! \ X && ` Y `! ! d ` & & h Y h! h&! \! d!) l Y l!5! p l && t Y t!`! x t & & | Y |! |&! p! x!)  Y !.!   &&  Y !!   & &  Y ! &! ! !)  Y !(!   &&  Y !!   & &  Y ! &! ! !)  Y !.!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y ! !   &&  Y !!   & &  Y ! &! ! !)!\!  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !! $  && ( Y (!! , ( & & 0 Y 0! 0&! $! ,!) 4 Y 4!x! 8 4 && < Y <!! @ < & & D Y D! D&! 8! @!) H Y H!! L H && P Y P!! T P & & X Y X! X&! L! T!) \ Y \!ڽ! ` \ && d Y d!! h d & & l Y l! l&! `! h!) p Y p!̽! t p && x Y x!! | x & &  Y ! &! t! |!)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !}!   &&  Y !!   & &  Y ! &! ! !)  Y !u!   &&  Y !!   & &  Y ! &! ! !)  Y !l!   &&  Y !!   & &  Y ! &! ! !) $ Y $!b! ( $ && , Y ,!! 0 , & & 4 Y 4! 4&! (! 0!) 8 Y 8!S! < 8 && @ Y @!! D @ & & H Y H! H&! <! D!) L Y L!G! P L && T Y T!! X T & & \ Y \! \&! P! X!) ` Y `!;! d ` && h Y h!! l h & & p Y p! p&! d! l!) t Y t!/! x t && | Y |!!  | & &  Y ! &! x! !)  Y !%!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !޼!   &&  Y !!   & &  Y ! &! ! !)  Y !ϼ!   &&  Y !!   & & $ Y $! $&! ! !) ( Y (!! , ( && 0 Y 0!! 4 0 & & 8 Y 8! 8&! ,! 4!) < Y <!! @ < && D Y D!! H D & & L Y L! L&! @! H!) P Y P!! T P && X Y X!! \ X & & ` Y `! `&! T! \!) d Y d!! h d && l Y l!! p l & & t Y t! t&! h! p!) x Y x!! | x &&  Y !!   & &  Y ! &! |! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !u!   &&  Y !!   & &  Y ! &! ! !)  Y !e!   &&  Y !!   & &  Y ! &! ! !)  Y !V!   &&  Y !!   & &  Y ! &! ! !)  Y !H!   &&  Y !!   & &  Y ! &! ! !)  Y !9!   &&  Y !!   & &  Y ! &! ! !)  Y !,!   &&  Y !!   & &  Y ! &! ! !)  Y !!!   &&  Y !! $  & & ( Y (! (&! ! $!) , Y ,!! 0 , && 4 Y 4!! 8 4 & & < Y <! <&! 0! 8!) @ Y @! ! D @ && H Y H!! L H & & P Y P! P&! D! L!) T Y T!! X T && \ Y \! ! ` \ & & d Y d! d&! X! `!) h Y h!! l h && p Y p!! t p & & x Y x! x&! l! t!) | Y |!!  | &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !ۻ!   &&  Y !!   & &  Y ! &! ! !)  Y !ϻ!   &&  Y !!   & &  Y ! &! ! !)  Y !Ļ!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   && $ Y $!! ( $ & & , Y ,! ,&! ! (!) 0 Y 0!! 4 0 && 8 Y 8!! < 8 & & @ Y @! @&! 4! <!) D Y D!u! H D && L Y L!! P L & & T Y T! T&! H! P!) X Y X!j! \ X && ` Y `!! d ` & & h Y h! h&! \! d!) l Y l!_! p l && t Y t!! x t & & | Y |! |&! p! x!)  Y !T!   &&  Y !!   & &  Y ! &! ! !)  Y !I!   &&  Y !!   & &  Y ! &! ! !)  Y !8!   &&  Y !!   & &  Y ! &! ! !)  Y !)!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y ! !   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !غ! $  && ( Y (!! , ( & & 0 Y 0! 0&! $! ,!) 4 Y 4!ͺ! 8 4 && < Y <!! @ < & & D Y D! D&! 8! @!) H Y H!! L H && P Y P!! T P & & X Y X! X&! L! T!) \ Y \!! ` \ && d Y d!! h d & & l Y l! l&! `! h!) p Y p!! t p && x Y x!! | x & &  Y ! &! t! |!)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !x!   &&  Y !!   & &  Y ! &! ! !)  Y !k!   &&  Y !!   & &  Y ! &! ! !)  Y !Z!  &&  Y  !!    & & Y ! &! !  !)  Y  !N!    &&  Y  !!    & & Y ! &!  !  !) $ Y $ !@! ( $  && , Y , !! 0 ,  & & 4 Y 4 ! 4 &! ( ! 0 !) 8 Y 8 !2! < 8  && @ Y @ !! D @  & & H Y H ! H &! < ! D !) L Y L !(! P L  && T Y T !! X T  & & \ Y \ ! \ &! P ! X !) ` Y ` !! d `  && h Y h !! l h  & & p Y p ! p &! d ! l !) t Y t !! x t  && | Y | !! |  & & Y ! &! x ! !) Y ! !  && Y !!  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !ݹ!  && Y !!  & & Y ! &! ! !) Y !й!  && Y !!  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !!   &&  Y  !!   & &  Y  !  &!  ! !)  Y  !!    &&  Y  !!   & & $ Y $ ! $ &!  ! !) ( Y ( !! , (  && 0 Y 0 !! 4 0  & & 8 Y 8 ! 8 &! , ! 4 !) < Y < !! @ <  && D Y D !! H D  & & L Y L ! L &! @ ! H !) P Y P !s! T P  && X Y X !! \ X  & & ` Y ` ! ` &! T ! \ !) d Y d !b! h d  && l Y l !! p l  & & t Y t ! t &! h ! p !) x Y x !S! | x  && Y !!  & & Y ! &! | ! !) Y !G!  && Y !!  & & Y ! &! ! !) Y !4!  && Y !!  & & Y ! &! ! !) Y !'!  && Y !!  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !)  Y  !!    && Y !!   & &  Y  !  &!  !  !)  Y  !ݸ!    && Y !! $  & & ( Y ( ! ( &!  ! $ !) , Y , !ϸ! 0 ,  && 4 Y 4 !! 8 4  & & < Y < ! < &! 0 ! 8 !) @ Y @ !! D @  && H Y H ! ! L H  & & P Y P ! P &! D ! L !) T Y T !! X T  && \ Y \ ! ! ` \  & & d Y d ! d &! X ! ` !) h Y h !! l h  && p Y p !! t p  & & x Y x ! x &! l ! t !) | Y | !! |  && Y ! !  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !}!  && Y !!  & & Y ! &! ! !) Y !s!  && Y !!  & & Y ! &! ! !) Y !b!  && Y !!  & & Y ! &! ! !) Y !P!  && Y !!  & &  Y  !  &! ! !)  Y  !B!   &&  Y  !!    & &  Y  !  &! !  !)  Y  !.!   && $ Y $ !! ( $  & & , Y , ! , &! ! ( !) 0 Y 0 !"! 4 0  && 8 Y 8 !! < 8  & & @ Y @ ! @ &! 4 ! < !) D Y D ! ! H D  && L Y L ! ! P L  & & T Y T ! T &! H ! P !) X Y X !! \ X  && ` Y ` ! ! d `  & & h Y h ! h &! \ ! d !) l Y l !! p l  && t Y t ! ! x t  & & | Y | ! | &! p ! x !) Y !ӷ!  && Y ! !  & & Y ! &! ! !) Y !!  && Y ! !  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !!  && Y !!   & &  Y  !  &! !  !) Y !z!   &&  Y  !!    & &  Y  !  &!  !  !) Y !q! $  && ( Y ( !! , (  & & 0 Y 0 ! 0 &! $ ! , !) 4 Y 4 !h! 8 4  && < Y < !! @ <  & & D Y D ! D &! 8 ! @ !) H Y H !^! L H  && P Y P !! T P  & & X Y X ! X &! L ! T !) \ Y \ !S! ` \  && d Y d !! h d  & & l Y l ! l &! ` ! h !) p Y p !G! t p  && x Y x !! | x  & & Y ! &! t ! | !) Y !8!  && Y ! !  & & Y ! &! ! !) Y !/!  && Y ! !  & & Y ! &! ! !) Y !&!  && Y ! !  & & Y ! &! ! !) Y !!  && Y ! !  & & Y ! &! ! !) Y !!  && Y ! !  & & Y ! &! ! !) Y !!  && Y !!  & & Y ! &! ! !) Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !) $ Y $!ն! ( $ && , Y ,!! 0 , & & 4 Y 4! 4&! (! 0!) 8 Y 8!˶! < 8 && @ Y @!! D @ & & H Y H! H&! <! D!) L Y L!! P L && T Y T!! X T & & \ Y \! \&! P! X!) ` Y `!! d ` && h Y h!! l h & & p Y p! p&! d! l!) t Y t!! x t && | Y |!!  | & &  Y ! &! x! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !~!   &&  Y !!   & &  Y ! &! ! !)  Y !p!   &&  Y !!   & &  Y ! &! ! !)  Y !e!   &&  Y !!   & &  Y ! &! ! !)  Y !Q!   &&  Y !!   & &  Y ! &! ! !)  Y !>!   &&  Y !!   & &  Y ! &! ! !)  Y !1!   &&  Y !!   & & $ Y $! $&! ! !) ( Y (!&! , ( && 0 Y 0!! 4 0 & & 8 Y 8! 8&! ,! 4!) < Y <!! @ < && D Y D!! H D & & L Y L! L&! @! H!) P Y P!! T P && X Y X! ! \ X & & ` Y `! `&! T! \!) d Y d!! h d && l Y l! ! p l & & t Y t! t&! h! p!) x Y x!! | x &&  Y ! !   & &  Y ! &! |! !)  Y !!   &&  Y ! !   & &  Y ! &! ! !)  Y !ߵ!   &&  Y ! !   & &  Y ! &! ! !)  Y !Ե!   &&  Y !!   & &  Y ! &! ! !)  Y !ȵ!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !! $  & & ( Y (! (&! ! $!) , Y ,!u! 0 , && 4 Y 4!! 8 4 & & < Y <! <&! 0! 8!) @ Y @!e! D @ && H Y H!! L H & & P Y P! P&! D! L!) T Y T!\! X T && \ Y \!! ` \ & & d Y d! d&! X! `!) h Y h!R! l h && p Y p!! t p & & x Y x! x&! l! t!) | Y |!B!  | &&  Y !!   & &  Y ! &! ! !)  Y !5!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y ! !   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !۴!   &&  Y !!   & &  Y ! &! ! !)  Y !̴!   &&  Y !2!   & &  Y ! &! ! !)  Y !Ĵ!   && $ Y $!! ( $ & & , Y ,! ,&! ! (!) 0 Y 0!! 4 0 && 8 Y 8!! < 8 & & @ Y @! @&! 4! <!) D Y D!! H D && L Y L!! P L & & T Y T! T&! H! P!) X Y X!! \ X && ` Y `!! d ` & & h Y h! h&! \! d!) l Y l!! p l && t Y t!! x t & & | Y |! |&! p! x!)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !z!   &&  Y !!   & &  Y ! &! ! !)  Y !p!   &&  Y !!   & &  Y ! &! ! !)  Y !e!   &&  Y !!   & &  Y ! &! ! !)  Y !Z!   &&  Y ! !   & &  Y ! &! ! !)  Y !L!   &&  Y ! !   & &  Y ! &! ! !)  Y !=!   &&  Y ! !   & &  Y ! &! ! !)  Y !1!   &&  Y ! !   & &  Y ! &! ! !)  Y !%! $  && ( Y (! ! , ( & & 0 Y 0! 0&! $! ,!) 4 Y 4!! 8 4 && < Y <!! @ < & & D Y D! D&! 8! @!) H Y H!! L H && P Y P!! T P & & X Y X! X&! L! T!) \ Y \!! ` \ && d Y d!! h d & & l Y l! l&! `! h!) p Y p!! t p && x Y x!! | x & &  Y ! &! t! |!)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !ҳ!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !x!   &&  Y !!   & &  Y ! &! ! !) $ Y $!k! ( $ && , Y ,!! 0 , & & 4 Y 4! 4&! (! 0!) 8 Y 8!^! < 8 && @ Y @!! D @ & & H Y H! H&! <! D!) L Y L!Q! P L && T Y T!! X T & & \ Y \! \&! P! X!) ` Y `!D! d ` && h Y h!! l h & & p Y p! p&! d! l!) t Y t!7! x t && | Y |!!  | & &  Y ! &! x! !)  Y !*!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y ! !   & &  Y ! &! ! !)  Y !!   &&  Y !!!   & &  Y ! &! ! !)  Y !!   &&  Y !"!   & &  Y ! &! ! !)  Y !!   &&  Y !#!   & &  Y ! &! ! !)  Y !!   &&  Y !$!   & &  Y ! &! ! !)  Y !ز!   &&  Y !%!   & &  Y ! &! ! !)  Y !ʲ!   &&  Y !&!   & & $ Y $! $&! ! !) ( Y (!! , ( && 0 Y 0!'! 4 0 & & 8 Y 8! 8&! ,! 4!) < Y <!! @ < && D Y D!(! H D & & L Y L! L&! @! H!) P Y P!! T P && X Y X!)! \ X & & ` Y `! `&! T! \!) d Y d!! h d && l Y l!*! p l & & t Y t! t&! h! p!) x Y x!s! | x &&  Y !+!   & &  Y ! &! |! !)  Y !a!   &&  Y !,!   & &  Y ! &! ! !)  Y !P!   &&  Y !-!   & &  Y ! &! ! !)  Y !@!   &&  Y !.!   & &  Y ! &! ! !)  Y !+!   &&  Y !/!   & &  Y ! &! ! !)  Y !!   &&  Y !0!   & &  Y ! &! ! !)  Y !!   &&  Y !1!   & &  Y ! &! ! !)  Y !!   &&  Y !2!   & &  Y ! &! ! !)  Y !!   &&  Y !3! $  & & ( Y (! (&! ! $!) , Y ,!ϱ! 0 , && 4 Y 4!4! 8 4 & & < Y <! <&! 0! 8!) @ Y @!±! D @ && H Y H!5! L H & & P Y P! P&! D! L!) T Y T!! X T && \ Y \!6! ` \ & & d Y d! d&! X! `!) h Y h!! l h && p Y p!7! t p & & x Y x! x&! l! t!) | Y |!!  | &&  Y !8!   & &  Y ! &! ! !)  Y !!   &&  Y !9!   & &  Y ! &! ! !)  Y !!   &&  Y !:!   & &  Y ! &! ! !)  Y !!   &&  Y !;!   & &  Y ! &! ! !)  Y !{!   &&  Y !<!   & &  Y ! &! ! !)  Y !k!   &&  Y !=!   & &  Y ! &! ! !)  Y !U!   &&  Y !>!   & &  Y ! &! ! !)  Y !D!   &&  Y !?!   & &  Y ! &! ! !)  Y !6!   && $ Y $!@! ( $ & & , Y ,! ,&! ! (!) 0 Y 0!)! 4 0 && 8 Y 8!A! < 8 & & @ Y @! @&! 4! <!) D Y D!! H D && L Y L!J! P L & & T Y T! T&! H! P!) X Y X!! \ X && ` Y `!K! d ` & & h Y h! h&! \! d!) l Y l!! p l && t Y t!L! x t & & | Y |! |&! p! x!)  Y !!   &&  Y !M!   & &  Y ! &! ! !)  Y !!   &&  Y !N!   & &  Y ! &! ! !)  Y !Ӱ!   &&  Y !O!   & &  Y ! &! ! !)  Y !°!   &&  Y !P!   & &  Y ! &! ! !)  Y !!   &&  Y !Q!   & &  Y ! &! ! !)  Y !!   &&  Y !R!   & &  Y ! &! ! !)  Y !!   &&  Y !S!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !}! $  && ( Y (!! , ( & & 0 Y 0! 0&! $! ,!) 4 Y 4!q! 8 4 && < Y <!! @ < & & D Y D! D&! 8! @!) H Y H!f! L H && P Y P!! T P & & X Y X! X&! L! T!) \ Y \!Z! ` \ && d Y d!! h d & & l Y l! l&! `! h!) p Y p!O! t p && x Y x!! | x & &  Y ! &! t! |!)  Y !A!   &&  Y !!   & &  Y ! &! ! !)  Y !4!   &&  Y !!   & &  Y ! &! ! !)  Y !&!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y ! !   & &  Y ! &! ! !)  Y !!   &&  Y ! !   & &  Y ! &! ! !)  Y !!   &&  Y ! !   & &  Y ! &! ! !)  Y !!   &&  Y ! !   & &  Y ! &! ! !)  Y !!   &&  Y ! !   & &  Y ! &! ! !) $ Y $!! ( $ && , Y ,!! 0 , & & 4 Y 4! 4&! (! 0!) 8 Y 8!ׯ! < 8 && @ Y @!! D @ & & H Y H! H&! <! D!) L Y L!ͯ! P L && T Y T!! X T & & \ Y \! \&! P! X!) ` Y `!ï! d ` && h Y h!! l h & & p Y p! p&! d! l!) t Y t!! x t && | Y |!!  | & &  Y ! &! x! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !y!   &&  Y !!   & &  Y ! &! ! !)  Y !k!   &&  Y !!   & &  Y ! &! ! !)  Y ![!   &&  Y !!   & & $ Y $! $&! ! !) ( Y (!N! , ( && 0 Y 0!! 4 0 & & 8 Y 8! 8&! ,! 4!) < Y <!?! @ < && D Y D!! H D & & L Y L! L&! @! H!) P Y P!-! T P && X Y X!! \ X & & ` Y `! `&! T! \!) d Y d!! h d && l Y l!! p l & & t Y t! t&! h! p!) x Y x!! | x &&  Y !!   & &  Y ! &! |! !)  Y !!   &&  Y ! !   & &  Y ! &! ! !)  Y !!   &&  Y !!!   & &  Y ! &! ! !)  Y !!   &&  Y !"!   & &  Y ! &! ! !)  Y !!   &&  Y !#!   & &  Y ! &! ! !)  Y !Ү!   &&  Y !$!   & &  Y ! &! ! !)  Y !!   &&  Y !%!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !! $  & & ( Y (! (&! ! $!) , Y ,!! 0 , && 4 Y 4!! 8 4 & & < Y <! <&! 0! 8!) @ Y @!! D @ && H Y H!! L H & & P Y P! P&! D! L!) T Y T!! X T && \ Y \!! ` \ & & d Y d! d&! X! `!) h Y h!u! l h && p Y p!! t p & & x Y x! x&! l! t!) | Y |!d!  | &&  Y !!   & &  Y ! &! ! !)  Y !S!   &&  Y !!   & &  Y ! &! ! !)  Y !C!   &&  Y !!   & &  Y ! &! ! !)  Y !3!   &&  Y !!   & &  Y ! &! ! !)  Y !!!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   && $ Y $!! ( $ & & , Y ,! ,&! ! (!) 0 Y 0!ޭ! 4 0 && 8 Y 8!! < 8 & & @ Y @! @&! 4! <!) D Y D!ϭ! H D && L Y L!! P L & & T Y T! T&! H! P!) X Y X!í! \ X && ` Y `!! d ` & & h Y h! h&! \! d!) l Y l!! p l && t Y t!! x t & & | Y |! |&! p! x!)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !v!   &&  Y ! !   & &  Y ! &! ! !)  Y !j!   &&  Y ! !   & &  Y ! &! ! !)  Y !\!   &&  Y ! !   & &  Y ! &! ! !)  Y !T!   &&  Y ! !   & &  Y ! &! ! !)  Y !E!   &&  Y ! !   & &  Y ! &! ! !)  Y !;! $  && ( Y (!! , ( & & 0 Y 0! 0&! $! ,!) 4 Y 4!1! 8 4 && < Y <!! @ < & & D Y D! D&! 8! @!) H Y H!(! L H && P Y P!! T P & & X Y X! X&! L! T!) \ Y \!! ` \ && d Y d!! h d & & l Y l! l&! `! h!) p Y p!! t p && x Y x!! | x & &  Y ! &! t! |!)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !׬!   &&  Y !!   & &  Y ! &! ! !)  Y !ˬ!   &&  Y !!   & &  Y ! &! ! !)  Y !Ĭ!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !) $ Y $!! ( $ && , Y ,!! 0 , & & 4 Y 4! 4&! (! 0!) 8 Y 8!! < 8 && @ Y @!! D @ & & H Y H! H&! <! D!) L Y L!! P L && T Y T!! X T & & \ Y \! \&! P! X!) ` Y `!! d ` && h Y h!! l h & & p Y p! p&! d! l!) t Y t!r! x t && | Y |!!  | & &  Y ! &! x! !)  Y !j!   &&  Y !!   & &  Y ! &! ! !)  Y !_!   &&  Y !!   & &  Y ! &! ! !)  Y !U!   &&  Y !!   & &  Y ! &! ! !)  Y !M!   &&  Y !!   & &  Y ! &! ! !)  Y !B!   &&  Y !!   & &  Y ! &! ! !)  Y !9!   &&  Y !!   & &  Y ! &! ! !)  Y !1!   &&  Y !!   & &  Y ! &! ! !)  Y !'!   &&  Y !!   & & $ Y $! $&! ! !) ( Y (!! , ( && 0 Y 0!! 4 0 & & 8 Y 8! 8&! ,! 4!) < Y <! ! @ < && D Y D!! H D & & L Y L! L&! @! H!) P Y P!! T P && X Y X! ! \ X & & ` Y `! `&! T! \!) d Y d!! h d && l Y l! ! p l & & t Y t! t&! h! p!) x Y x!! | x &&  Y ! !   & &  Y ! &! |! !)  Y !ث!   &&  Y ! !   & &  Y ! &! ! !)  Y !Ϋ!   &&  Y ! !   & &  Y ! &! ! !)  Y !«!   &&  Y !@!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)!\!  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !u!   &&  Y !! $  & & ( Y (! (&! ! $!) , Y ,!g! 0 , && 4 Y 4!! 8 4 & & < Y <! <&! 0! 8!) @ Y @!]! D @ && H Y H! ! L H & & P Y P! P&! D! L!) T Y T!T! X T && \ Y \!@! ` \ & & d Y d! d&! X! `!) h Y h!G! l h && p Y p!! t p & & x Y x! x&! l! t!) | Y |!:!  | &&  Y !!   & &  Y ! &! ! !)  Y !,!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y !!   & &  Y ! &! ! !)  Y !!   &&  Y ! !   & &  Y ! &! ! !)  Y !!   &&  Y !!  & &  Y  !  &! ! !)  Y  !ު!   &&  Y  ! !    & &  Y  !  &! !  !)  Y  !Ъ!   && $ Y $ !@! ( $  & & , Y , ! , &! ! ( !) 0 Y 0 !ª! 4 0  && 8 Y 8 !! < 8  & & @ Y @ ! @ &! 4 ! < !) D Y D !! H D  && L Y L !! P L  & & T Y T ! T &! H ! P !) X Y X !! \ X  && ` Y ` !! d `  & & h Y h ! h &! \ ! d !) l Y l !! p l  && t Y t !! x t  & & | Y | ! | &! p ! x !) Y !!  && Y !!  & & Y ! &! ! !) Y !}!  && Y !!  & & Y ! &! ! !) Y !l!  && Y ! !  & & Y ! &! ! !) Y !b!  && Y ! !  & & Y ! &! ! !) Y !Y!  && Y !!  & & Y ! &! ! !) Y !Q!  && Y !!  & & Y ! &! ! !) Y !J!  && ! Y !!! ! ! & & ! Y !! !&! ! !!) ! Y !!A! ! ! && ! Y !!! ! ! & & ! Y !! !&! !! !!) ! Y !!1! $! ! && (! Y (!!! ,! (! & & 0! Y 0!! 0!&! $!! ,!!) 4! Y 4!! ! 8! 4! && ! p/ l/ && t/ Y t/!! x/ t/ & & |/ Y |/! |/&! p/! x/!) / Y /!! / / && / Y /!! / / & & / Y /! /&! /! /!) / Y /!! / / && / Y /!! / / & & / Y /! /&! /! /!) / Y /!ל! / / && / Y /!! / / & & / Y /! /&! /! /!) / Y /!! / / && / Y /!! / / & & / Y /! /&! /! /!) / Y /!! / / && / Y /!! / / & & / Y /! /&! /! /!) / Y /!! / / && / Y /!! / / & & / Y /! /&! /! /!) / Y /!^! / / && 0 Y 0!! 0 0 & & 0 Y 0! 0&! /! 0!) 0 Y 0!7! 0 0 && 0 Y 0!! 0 0 & & 0 Y 0! 0&! 0! 0!) 0 Y 0!! $0 0 && (0 Y (0!! ,0 (0 & & 00 Y 00! 00&! $0! ,0!) 40 Y 40!! 80 40 && <0 Y <0!! @0 <0 & & D0 Y D0! D0&! 80! @0!) H0 Y H0!! L0 H0 && P0 Y P0!! T0 P0 & & X0 Y X0! X0&! L0! T0!) \0 Y \0!ϛ! `0 \0 && d0 Y d0!! h0 d0 & & l0 Y l0! l0&! `0! h0!) p0 Y p0!! t0 p0 && x0 Y x0!! |0 x0 & & 0 Y 0! 0&! t0! |0!) 0 Y 0!! 0 0 && 0 Y 0! ! 0 0 & & 0 Y 0! 0&! 0! 0!) 0 Y 0!w! 0 0 && 0 Y 0!! 0 0 & & 0 Y 0! 0&! 0! 0!) 0 Y 0!Y! 0 0 && 0 Y 0!! 0 0 & & 0 Y 0! 0&! 0! 0!) 0 Y 0!:! 0 0 && 0 Y 0!! 0 0 & & 0 Y 0! 0&! 0! 0!) 0 Y 0!"! 0 0 && 0 Y 0!! 0 0 & & 0 Y 0! 0&! 0! 0!) 0 Y 0!! 0 0 && 0 Y 0! ! 0 0 & & 0 Y 0! 0&! 0! 0!) 0 Y 0!! 1 0 && 1 Y 1!$! 1 1 & & 1 Y 1! 1&! 1! 1!) 1 Y 1!ښ! 1 1 && 1 Y 1!(! 1 1 & & 1 Y 1! 1&! 1! 1!) $1 Y $1!! (1 $1 && ,1 Y ,1!0! 01 ,1 & & 41 Y 41! 41&! (1! 01!) 81 Y 81!! <1 81 && @1 Y @1!\! D1 @1 & & H1 Y H1! H1&! <1! D1!) L1 Y L1!b! P1 L1 && T1 Y T1!`! X1 T1 & & \1 Y \1! \1&! P1! X1!) `1 Y `1!>! d1 `1 && h1 Y h1!4! l1 h1 & & p1 Y p1! p1&! d1! l1!) t1 Y t1!! x1 t1 && |1 Y |1!<! 1 |1 & & 1 Y 1! 1&! x1! 1!) 1 Y 1!! 1 1 && 1 Y 1!@! 1 1 & & 1 Y 1! 1&! 1! 1!) 1 Y 1!ә! 1 1 && 1 Y 1!D! 1 1 & & 1 Y 1! 1&! 1! 1!) 1 Y 1!! 1 1 && 1 Y 1!! 1 1 & & 1 Y 1! 1&! 1! 1!) 1 Y 1!! 1 1 && 1 Y 1!! 1 1 & & 1 Y 1! 1&! 1! 1!) 1 Y 1!j! 1 1 && 1 Y 1!! 1 1 & & 1 Y 1! 1&! 1! 1!) 1 Y 1!C! 1 1 && 1 Y 1! ! 1 1 & & 1 Y 1! 1&! 1! 1!) 2 Y 2!! 2 2 && 2 Y 2!! 2 2 & & 2 Y 2! 2&! 2! 2!) 2 Y 2!! 2 2 && 2 Y 2!! 2 2 & & $2 Y $2! $2&! 2! 2!) (2 Y (2!ʘ! ,2 (2 && 02 Y 02!! 42 02 & & 82 Y 82! 82&! ,2! 42!) <2 Y <2!! @2 <2 && D2 Y D2!! H2 D2 & & L2 Y L2! L2&! @2! H2!) P2 Y P2!|! T2 P2 && X2 Y X2! ! \2 X2 & & `2 Y `2! `2&! T2! \2!) d2 Y d2!P! h2 d2 && l2 Y l2!$! p2 l2 & & t2 Y t2! t2&! h2! p2!) x2 Y x2!+! |2 x2 && 2 Y 2!(! 2 2 & & 2 Y 2! 2&! |2! 2!) 2 Y 2!! 2 2 && 2 Y 2!,! 2 2 & & 2 Y 2! 2&! 2! 2!) 2 Y 2!ؗ! 2 2 && 2 Y 2!! 2 2 & & 2 Y 2! 2&! 2! 2!) 2 Y 2!! 2 2 && 2 Y 2!! 2 2 & & 2 Y 2! 2&! 2! 2!) 2 Y 2!! 2 2 && 2 Y 2!! 2 2 & & 2 Y 2! 2&! 2! 2!) 2 Y 2!`! 2 2 && 2 Y 2! ! 2 2 & & 2 Y 2! 2&! 2! 2!) 2 Y 2!@! 2 2 && 2 Y 2!! 2 2 & & 3 Y 3! 3&! 2! 2!) 3 Y 3!! 3 3 && 3 Y 3!! 3 3 & & 3 Y 3! 3&! 3! 3!) 3 Y 3!! 3 3 && 3 Y 3!! $3 3 & & (3 Y (3! (3&! 3! $3!) ,3 Y ,3!֖! 03 ,3 && 43 Y 43!! 83 43 & & <3 Y <3! <3&! 03! 83!) @3 Y @3!! D3 @3 && H3 Y H3!! L3 H3 & & P3 Y P3! P3&! D3! L3!) T3 Y T3!! X3 T3 && \3 Y \3! ! `3 \3 & & d3 Y d3! d3&! X3! `3!) h3 Y h3!W! l3 h3 && p3 Y p3!$! t3 p3 & & x3 Y x3! x3&! l3! t3!) |3 Y |3!0! 3 |3 && 3 Y 3!(! 3 3 & & 3 Y 3! 3&! 3! 3!) 3 Y 3! ! 3 3 && 3 Y 3!,! 3 3 & & 3 Y 3! 3&! 3! 3!) 3 Y 3!! 3 3 && 3 Y 3!P! 3 3 & & 3 Y 3! 3&! 3! 3!) 3 Y 3!! 3 3 && 3 Y 3!T! 3 3 & & 3 Y 3! 3&! 3! 3!) 3 Y 3!! 3 3 && 3 Y 3!X! 3 3 & & 3 Y 3! 3&! 3! 3!) 3 Y 3!t! 3 3 && 3 Y 3!! 3 3 & & 3 Y 3! 3&! 3! 3!) 3 Y 3!J! 3 3 && 3 Y 3!! 4 3 & & 4 Y 4! 4&! 3! 4!) 4 Y 4!%! 4 4 && 4 Y 4!! 4 4 & & 4 Y 4! 4&! 4! 4!) 4 Y 4!! 4 4 && $4 Y $4!! (4 $4 & & ,4 Y ,4! ,4&! 4! (4!) 04 Y 04!! 44 04 && 84 Y 84!! <4 84 & & @4 Y @4! @4&! 44! <4!) D4 Y D4!ߔ! H4 D4 && L4 Y L4!h! P4 L4 & & T4 Y T4! T4&! H4! P4!) X4 Y X4!! \4 X4 && `4 Y `4!! d4 `4 & & h4 Y h4! h4&! \4! d4!) l4 Y l4!! p4 l4 && t4 Y t4!! x4 t4 & & |4 Y |4! |4&! p4! x4!) 4 Y 4!! 4 4 && 4 Y 4!! 4 4 & & 4 Y 4! 4&! 4! 4!) 4 Y 4!l! 4 4 && 4 Y 4!! 4 4 & & 4 Y 4! 4&! 4! 4!) 4 Y 4!N! 4 4 && 4 Y 4!! 4 4 & & 4 Y 4! 4&! 4! 4!) 4 Y 4!+! 4 4 && 4 Y 4!! 4 4 & & 4 Y 4! 4&! 4! 4!) 4 Y 4!! 4 4 && 4 Y 4!! 4 4 & & 4 Y 4! 4&! 4! 4!) 4 Y 4!! 4 4 && 4 Y 4!! 4 4 & & 4 Y 4! 4&! 4! 4!) 4 Y 4!Γ! 4 4 && 5 Y 5!! 5 5 & & 5 Y 5! 5&! 4! 5!) 5 Y 5!! 5 5 && 5 Y 5!! 5 5 & & 5 Y 5! 5&! 5! 5!) 5 Y 5!! $5 5 && (5 Y (5!! ,5 (5 & & 05 Y 05! 05&! $5! ,5!) 45 Y 45!g! 85 45 && <5 Y <5!! @5 <5 & & D5 Y D5! D5&! 85! @5!) H5 Y H5!F! L5 H5 && P5 Y P5!! T5 P5 & & X5 Y X5! X5&! L5! T5!) \5 Y \5!$! `5 \5 && d5 Y d5!! h5 d5 & & l5 Y l5! l5&! `5! h5!) p5 Y p5!! t5 p5 && x5 Y x5!! |5 x5 & & 5 Y 5! 5&! t5! |5!) 5 Y 5!ޒ! 5 5 && 5 Y 5!! 5 5 & & 5 Y 5! 5&! 5! 5!) 5 Y 5!! 5 5 && 5 Y 5!! 5 5 & & 5 Y 5! 5&! 5! 5!) 5 Y 5!! 5 5 && 5 Y 5!! 5 5 & & 5 Y 5! 5&! 5! 5!) 5 Y 5!|! 5 5 && 5 Y 5!! 5 5 & & 5 Y 5! 5&! 5! 5!) 5 Y 5!Z! 5 5 && 5 Y 5!! 5 5 & & 5 Y 5! 5&! 5! 5!) 5 Y 5!5! 5 5 && 5 Y 5!! 5 5 & & 5 Y 5! 5&! 5! 5!) 5 Y 5!! 6 5 && 6 Y 6!! 6 6 & & 6 Y 6! 6&! 6! 6!) 6 Y 6!! 6 6 && 6 Y 6!! 6 6 & & 6 Y 6! 6&! 6! 6!) $6 Y $6!ّ! (6 $6 && ,6 Y ,6!! 06 ,6 & & 46 Y 46! 46&! (6! 06!) 86 Y 86!! <6 86 && @6 Y @6!! D6 @6 & & H6 Y H6! H6&! <6! D6!) L6 Y L6!! P6 L6 && T6 Y T6!! X6 T6 & & \6 Y \6! \6&! P6! X6!) `6 Y `6!! d6 `6 && h6 Y h6!! l6 h6 & & p6 Y p6! p6&! d6! l6!) t6 Y t6!c! x6 t6 && |6 Y |6!! 6 |6 & & 6 Y 6! 6&! x6! 6!) 6 Y 6!G! 6 6 && 6 Y 6!! 6 6 & & 6 Y 6! 6&! 6! 6!) 6 Y 6!1! 6 6 && 6 Y 6! ! 6 6 & & 6 Y 6! 6&! 6! 6!) 6 Y 6!! 6 6 && 6 Y 6!! 6 6 & & 6 Y 6! 6&! 6! 6!) 6 Y 6!! 6 6 && 6 Y 6!! 6 6 & & 6 Y 6! 6&! 6! 6!) 6 Y 6!ː! 6 6 && 6 Y 6!! 6 6 & & 6 Y 6! 6&! 6! 6!) 6 Y 6!! 6 6 && 6 Y 6! ! 6 6 & & 6 Y 6! 6&! 6! 6!) 7 Y 7!! 7 7 && 7 Y 7!! 7 7 & & 7 Y 7! 7&! 7! 7!) 7 Y 7!c! 7 7 && 7 Y 7!! 7 7 & & $7 Y $7! $7&! 7! 7!) (7 Y (7!@! ,7 (7 && 07 Y 07!! 47 07 & & 87 Y 87! 87&! ,7! 47!) <7 Y <7!! @7 <7 && D7 Y D7!! H7 D7 & & L7 Y L7! L7&! @7! H7!) P7 Y P7!! T7 P7 && X7 Y X7! ! \7 X7 & & `7 Y `7! `7&! T7! \7!) d7 Y d7!ݏ! h7 d7 && l7 Y l7!$! p7 l7 & & t7 Y t7! t7&! h7! p7!) x7 Y x7!! |7 x7 && 7 Y 7!(! 7 7 & & 7 Y 7! 7&! |7! 7!) 7 Y 7!! 7 7 && 7 Y 7!,! 7 7 & & 7 Y 7! 7&! 7! 7!) 7 Y 7!k! 7 7 && 7 Y 7!<! 7 7 & & 7 Y 7! 7&! 7! 7!) 7 Y 7!H! 7 7 && 7 Y 7!@! 7 7 & & 7 Y 7! 7&! 7! 7!) 7 Y 7!&! 7 7 && 7 Y 7!D! 7 7 & & 7 Y 7! 7&! 7! 7!) 7 Y 7!! 7 7 && 7 Y 7!H! 7 7 & & 7 Y 7! 7&! 7! 7!) 7 Y 7!ˎ! 7 7 && 7 Y 7!L! 7 7 & & 8 Y 8! 8&! 7! 7!) 8 Y 8!! 8 8 && 8 Y 8!P! 8 8 & & 8 Y 8! 8&! 8! 8!) 8 Y 8!{! 8 8 && 8 Y 8!T! $8 8 & & (8 Y (8! (8&! 8! $8!) ,8 Y ,8![! 08 ,8 && 48 Y 48!T! 88 48 & & <8 Y <8! <8&! 08! 88!) @8 Y @8!;! D8 @8 && H8 Y H8!X! L8 H8 & & P8 Y P8! P8&! D8! L8!) T8 Y T8!! X8 T8 && \8 Y \8!\! `8 \8 & & d8 Y d8! d8&! X8! `8!) h8 Y h8!! l8 h8 && p8 Y p8!`! t8 p8 & & x8 Y x8! x8&! l8! t8!) |8 Y |8!ȍ! 8 |8 && 8 Y 8!d! 8 8 & & 8 Y 8! 8&! 8! 8!) 8 Y 8!! 8 8 && 8 Y 8!d! 8 8 & & 8 Y 8! 8&! 8! 8!) 8 Y 8!}! 8 8 && 8 Y 8!d ! 8 8 & & 8 Y 8! 8&! 8! 8!) 8 Y 8!U! 8 8 && 8 Y 8!h ! 8 8 & & 8 Y 8! 8&! 8! 8!) 8 Y 8!5! 8 8 && 8 Y 8!l ! 8 8 & & 8 Y 8! 8&! 8! 8!) 8 Y 8!! 8 8 && 8 Y 8!p ! 8 8 & & 8 Y 8! 8&! 8! 8!) 8 Y 8!! 8 8 && 8 Y 8!t ! 9 8 & & 9 Y 9! 9&! 8! 9!) 9 Y 9!ƌ! 9 9 && 9 Y 9!x ! 9 9 & & 9 Y 9! 9&! 9! 9!) 9 Y 9!! 9 9 && $9 Y $9!x! (9 $9 & & ,9 Y ,9! ,9&! 9! (9!) 09 Y 09!}! 49 09 && 89 Y 89!! <9 89 & & @9 Y @9! @9&! 49! <9!) D9 Y D9!Z! H9 D9 && L9 Y L9!! P9 L9 & & T9 Y T9! T9&! H9! P9!) X9 Y X9!-! \9 X9 && `9 Y `9!! d9 `9 & & h9 Y h9! h9&! \9! d9!) l9 Y l9! ! p9 l9 && t9 Y t9!! x9 t9 & & |9 Y |9! |9&! p9! x9!) 9 Y 9!! 9 9 && 9 Y 9!! 9 9 & & 9 Y 9! 9&! 9! 9!) 9 Y 9!ŋ! 9 9 && 9 Y 9!! 9 9 & & 9 Y 9! 9&! 9! 9!) 9 Y 9!! 9 9 && 9 Y 9!! 9 9 & & 9 Y 9! 9&! 9! 9!) 9 Y 9!v! 9 9 && 9 Y 9!! 9 9 & & 9 Y 9! 9&! 9! 9!) 9 Y 9!K! 9 9 && 9 Y 9!! 9 9 & & 9 Y 9! 9&! 9! 9!) 9 Y 9!"! 9 9 && 9 Y 9!! 9 9 & & 9 Y 9! 9&! 9! 9!) 9 Y 9!! 9 9 && : Y :!! : : & & : Y :! :&! 9! :!) : Y :!܊! : : && : Y :!! : : & & : Y :! :&! :! :!) : Y :!! $: : && (: Y (:!! ,: (: & & 0: Y 0:! 0:&! $:! ,:!) 4: Y 4:!! 8: 4: && <: Y <:!! @: <: & & D: Y D:! D:&! 8:! @:!) H: Y H:!d! L: H: && P: Y P:!! T: P: & & X: Y X:! X:&! L:! T:!) \: Y \:!=! `: \: && d: Y d:!! h: d: & & l: Y l:! l:&! `:! h:!) p: Y p:!! t: p: && x: Y x:!! |: x: & & : Y :! :&! t:! |:!) : Y :!! : : && : Y :!! : : & & : Y :! :&! :! :!) : Y :!Ӊ! : : && : Y :!! : : & & : Y :! :&! :! :!) : Y :!! : : && : Y :!! : : & & : Y :! :&! :! :!) : Y :!! : : && : Y :!! : : & & : Y :! :&! :! :!) : Y :!r! : : && : Y :!! : : & & : Y :! :&! :! :!) : Y :!X! : : && : Y :!! : : & & : Y :! :&! :! :!) : Y :!9! ; : && ; Y ;!! ; ; & & ; Y ;! ;&! ;! ;!) ; Y ;!! ; ; && ; Y ;!! ; ; & & ; Y ;! ;&! ;! ;!) $; Y $;!! (; $; && ,; Y ,;!! 0; ,; & & 4; Y 4;! 4;&! (;! 0;!) 8; Y 8;!҈! <; 8; && @; Y @;!! D; @; & & H; Y H;! H;&! <;! D;!) L; Y L;!! P; L; && T; Y T;!! X; T; & & \; Y \;! \;&! P;! X;!) `; Y `;!! d; `; && h; Y h;!! l; h; & & p; Y p;! p;&! d;! l;!) t; Y t;!y! x; t; && |; Y |;!! ; |; & & ; Y ;! ;&! x;! ;!) ; Y ;!X! ; ; && ; Y ;!! ; ; & & ; Y ;! ;&! ;! ;!) ; Y ;!9! ; ; && ; Y ;!! ; ; & & ; Y ;! ;&! ;! ;!) ; Y ;!! ; ; && ; Y ;! ! ; ; & & ; Y ;! ;&! ;! ;!) ; Y ;!! ; ; && ; Y ;!! ; ; & & ; Y ;! ;&! ;! ;!) ; Y ;!·! ; ; && ; Y ;!$! ; ; & & ; Y ;! ;&! ;! ;!) ; Y ;!! ; ; && ; Y ;!0! ; ; & & ; Y ;! ;&! ;! ;!) < Y <!! < < && < Y <!! < < & & < Y <! <&! <! <!) < Y <!y! < < && < Y <!! < < & & $< Y $<! $<&! <! <!) (< Y (<!b! ,< (< && 0< Y 0<!! 4< 0< & & 8< Y 8<! 8<&! ,<! 4<!) << Y <<!M! @< << && D< Y D<! ! H< D< & & L< Y L<! L<&! @<! H<!) P< Y P<!;! T< P< && X< Y X<!! \< X< & & `< Y `<! `<&! T<! \<!) d< Y d<!"! h< d< && l< Y l<!$! p< l< & & t< Y t<! t<&! h<! p<!) x< Y x<!! |< x< && < Y <!(! < < & & < Y <! <&! |<! <!) < Y <!! < < && < Y <!,! < < & & < Y <! <&! <! <!) < Y <!܆! < < && < Y <!0! < < & & < Y <! <&! <! <!) < Y <!! < < && < Y <!4! < < & & < Y <! <&! <! <!) < Y <!! < < && < Y <!l! < < & & < Y <! <&! <! <!) < Y <!! < < && < Y <!p! < < & & < Y <! <&! <! <!) < Y <!f! < < && < Y <!|! < < & & = Y =! =&! <! <!) = Y =!C! = = && = Y =!! = = & & = Y =! =&! =! =!) = Y =!/! = = && = Y =!! $= = & & (= Y (=! (=&! =! $=!) ,= Y ,=!! 0= ,= && 4= Y 4=!! 8= 4= & & <= Y <=! <=&! 0=! 8=!) @= Y @=!! D= @= && H= Y H=!! L= H= & & P= Y P=! P=&! D=! L=!) T= Y T=!! X= T= && \= Y \=! ! `= \= & & d= Y d=! d=&! X=! `=!) h= Y h=!ƅ! l= h= && p= Y p=!$! t= p= & & x= Y x=! x=&! l=! t=!) |= Y |=!! = |= && = Y =!(! = = & & = Y =! =&! =! =!) = Y =!! = = && = Y =!,! = = & & = Y =! =&! =! =!) = Y =!s! = = && = Y =!0! = = & & = Y =! =&! =! =!) = Y =!X! = = && = Y =!4! = = & & = Y =! =&! =! =!) = Y =!B! = = && = Y =!! = = & & = Y =! =&! =! =!) = Y =!'! = = && = Y =!! = = & & = Y =! =&! =! =!) = Y =! ! = = && = Y =!! > = & & > Y >! >&! =! >!) > Y >!! > > && > Y >!! > > & & > Y >! >&! >! >!) > Y >!Մ! > > && $> Y $>!! (> $> & & ,> Y ,>! ,>&! >! (>!) 0> Y 0>!! 4> 0> && 8> Y 8>!! <> 8> & & @> Y @>! @>&! 4>! <>!) D> Y D>!! H> D> && L> Y L>!! P> L> & & T> Y T>! T>&! H>! P>!) X> Y X>!! \> X> && `> Y `>!! d> `> & & h> Y h>! h>&! \>! d>!) l> Y l>!j! p> l> && t> Y t>!! x> t> & & |> Y |>! |>&! p>! x>!) > Y >!J! > > && > Y >!! > > & & > Y >! >&! >! >!) > Y >!+! > > && > Y >!! > > & & > Y >! >&! >! >!) > Y >! ! > > && > Y >!! > > & & > Y >! >&! >! >!) > Y >!! > > && > Y >! ! > > & & > Y >! >&! >! >!) > Y >!˃! > > && > Y >!! > > & & > Y >! >&! >! >!) > Y >!! > > && > Y >!! > > & & > Y >! >&! >! >!) > Y >!! > > && ? Y ?!! ? ? & & ? Y ?! ?&! >! ?!) ? Y ?!t! ? ? && ? Y ?!! ? ? & & ? Y ?! ?&! ?! ?!) ? Y ?!V! $? ? && (? Y (?!! ,? (? & & 0? Y 0?! 0?&! $?! ,?!) 4? Y 4?!9! 8? 4? && }! C C && C Y C!! C C & & C Y C! C&! C! C!) C Y C!}! C C && C Y C! ! C C & & C Y C! C&! C! C!) C Y C!|! C C && D Y D!! D D & & D Y D! D&! C! D!) D Y D!|! D D && D Y D!! D D & & D Y D! D&! D! D!) D Y D!|! $D D && (D Y (D! ! ,D (D & & 0D Y 0D! 0D&! $D! ,D!) 4D Y 4D!|! 8D 4D && s! J I && J Y J!! J J & & J Y J! J&! J! J!) J Y J!s! J J && J Y J!! J J & & J Y J! J&! J! J!) $J Y $J!r! (J $J && ,J Y ,J!! 0J ,J & & 4J Y 4J! 4J&! (J! 0J!) 8J Y 8J!r! ! Y Y Y Y! Y&! Y! Y!) Y Y Y!&`! Y Y && Y!k! Y Y Y Y! Y&! Y! Y!) Y Y Y!`! Y Y && Y!! Y Y Y Y! Y&! Y! Y!)`!\! Y&YY<  _!\_!\! ! (. $ ( !! & !! & _ !_! , , , G _!\! ! ! H( !ޢ _ !_! 0 0 0 t _!\! ! ! H( !ޢ $  !! 8  & & ! ! ! 8!._!\  &   }_!\ $<<$ 0  ,$  , 0  ,  &  '( &  !  ,  &! F &  ,& $  ,$$ !    ! $!    ! $! !t$  4  3! 7!$! 0 4&'  ,R! , 4 0 '   0(  (   !  2 ,&&      *''4     42 '. ! 0 0* *  2 ,&&  2 ,&&   ''4       0'2 '.   &2   /  . $$4  D  "  "4<#  @ D&'  < '"  < D  @'&  H H  D2 '.  @ (  ( " @(2 <&& $ (  $ ( @ (*'2 $'  1.  H *&4/ @(2 <&&   (2 <&& ,  , *2 ,'   1. 0   H 0  0*''2/ (2 <&&  9# @(2 <&& $  $ D2 $' (   (  (*''2  1. , H H ,  ,*''2  H/ @(2 <&&  H44   &!! &2! &!t  &   !X# !t ,! 4! \  # 4! ! ! $&!  $  # ( # ( (!\  &  4 #!\,\D@,@uD|j$L\Z%<I%A 74*Zܳ4̲ |l|Dlrjf\XLG|:8(& l4\L,<\rLf<[Z,P.%/_KUiAs}nG5)2~rd`G gTJ82f?."dqi W- ( cM) dvbZ I' 2 ~o cL) L2LwncLA.(L<LL\HB 9L  <wS(<vF:"iG y\:vib<Q9( $ &?~!sY_ vj^VG8) }pcVI;-ydP=.}obJ0$,-------++-,,,,,,,,,,D,g,-,,-g,--|+---B>?333? A?@A@?@@@???????????????????????@?@?@??????>>>?????????????????????ODY?⾫t>m;]?)t?z7?O?[&_>hxs??DY?O?)p7?.?)>p7?.?O?DY?z7>?O?O?DY?)>t?>t>m;]?[&>_>hxs?.)>p7?Oz7>?y3>I-0?DYO?m;]>t>p7.?)>I-0y?3>O?z7>tm;]?>3پI-0?y?p7.?)O?z7ODY?DY?Otm;]?t?)_hxs?[&?t?)>_hxs?[&>t>m;]?>_>hxs?[&>?O?z7>t>m;]?_>hxs?[&?O?z7DY?O?p7?.?)>p7?.?)O?DY?3>I-0?y?m;]?>t>I-0?y?3>O?z7>?.?)>p7?y?3>I-0?t?)>?hxs?[&>_>DY?Ot?)m;]?⾫t>hxs?[&_>O?z7?.?)p7?DY?O?m;]?>tO?z7>hxs?[&>_O?DY.?)>p7.?)p7DY?OO?z7m;]?⾫thxs?[&_)>p7?.z7>?O3>I-0?y>t>m;]y?3>I-0I-0?y?3پ)p7?.z7?OO?DYODY⾫t>m;])t[&_>hxs)>t[&>_>hxs⾫tm;]z7O[&_hxsDYO)p7.)>p7.ODYz7>O>tm;][&>_hxst>m;]?Oz73>I-0yp7?.)I-0?y3پy?3پI-0t)_>hxs[&DYO?t)>t>m;]>_>hxs[&>?Oz7>p7?.)>O?DYtm;]Oz7_hxs[&DYOp7.)p7.)>ODYOz7>tm;]>_hxs[&>m;]⾫t>Oz7?I-0y3>.)p7?⾫tm;]?y3پI-0?z7O?)p7.?3پI-0y?[&_hxs?>tm;]?[&>_hxs?z7>O?)>p7.?ODY?3>I-0y?y?3پI-0?I-0?y3>t)>hxs[&>_>DYO?t)hxs[&_>m;]>thxs[&>_Oz7>m;]⾫thxs[&_Oz7.)>p7.)p7DYOI-0y?3پy3>I-03پI-0?y3پI-0yy3پI-0I-0y3پN]]^^^V__&`pppApA@AAA?@@@AAA/DLC(DqDC*DCCfD?????q}%9GUc (085AWJ S \ e n  7Vu`z$\,`,d,h,h,l,l,p,p,t,x,|,|,,,,,,,,,,,,,,,,,,,(VCV^VVVVVVVyVV~qe_RKE90&]z]p\p\z\\\*]4]>]]H]\\\ ]]] ]\\\f]\p]\]\R]\\]]]]^p^^^C_`a$aqatahaZaLZbb B BPBB pBXBp4BpppApAB**==PPZL>h)))))))f)[)M)=),))) )00{0l0`0M0B000%000///////////t/h/3CScs x~): :\:: :::::|::: ::: ::t{:tj:V:D:ʉ-::ى :999 99 9}99V999}9En9A]9 AP9B?9ND29,E&9&9)'9'8(8h(8,8'8^,8-8@-8I-8-u8:C:i8T8I858"8:8/8E7:7?7?7?7?7<PX7M7F7:B7:727(77??EH%)-1T-@y:d[;;4;>>u>H>>9 >Y > >>\>?>>[~>>Av>a>k>>z_>l>P >!>@#>ζ$>-&>Ǣ'>)>*>,>[t->n.>Y0>1>=3>4>6>7>[8>Fm:>;>I=>>>#@>6A>B>pgD>KE>H>J>xK>L>HN>TO>6Q>}R>S>HU>٭V>KX>@vY>Z><\>=]>F_>b`>a>$c>d>Qe>Cg>;h>{j>D^k>l>pn>to>p>9,r>;s>t>;v>w>x>hGz>{>|>N~>ʥ>!~>%)>Ӂ>~>(>҃>|>&>Ѕ>Gy>N">ˇ>s>>?ĉ>1l>>p>b> >>_W>>>J>>>:>>>)>uΔ>r>>>^>;>>H>>`>0>=ӛ>]u>K>>Z>>>=>ޠ>:>>>_>m>>\>>ݥ>|>N>繧>OX>>>b2>Ъ>{m> >ӧ>D>j>}>A>e>ZR>>>%>S>\[>5>>]+>ŵ>_>>}>->xƸ>_>>>H*>»>[>F>@> #>>!R>g>>o>0>D>->iq>y>^>3>>^>9>D>">ֱ>^F>>n>>Ӗ>*> >jQ>>w> >8>/>">YT>f>Ix> >>,>8>LO>8>p>>>M">m>dB>2>a>V>>>>->t>K>h>g>>>x>>,>>G>>`>>Bz>>>>>6>> N>i>d>>z>l>>>>/>#> C>>lV>>9i>h>r{>X>>>/>&>>6>>iF> >U>>d> > r>>|>>^>>>>{>**>>?4]?ǟ?H?$?g?c??-?o???5?w?h??<?R~?ӿ?D?B??3?b?G???v ?RK??? ?N??!? ?O ?- ?f ? ?P ? ? ? ?lP ?5 ? ? ?1O ? ?5 ? ?L ?D ? ? ?I?Ԉ???E?l?+??{@? ???e:?x??5?\3?sq?|?v?a+?=i? ??w"?`??+??V?[?? ?K?"?0?.???|?Ը??O2?n???$?a?i???5R?]?w??B?o~?Q?$?1?m?K??t ?[?f??!?jI??ӿ??6? q???! ?\ ?U ? ? !?GG!?ҁ!?P!?!?#1"?yk"?"?"?*#?KT#?_#?e#?^$?J<$?*v$?$?$?x#%?#]%?%?R%? &?MC&?|&?&?e&?('?a'? '?('?8 (?,?0 -?X-?-?-?}-?27.?n.?w.?.?/?M/?r/?ӻ/?'/?p*0?a0?ݘ0?0?1?)>1?*u1? 1? 1?2?P2?2?;2?2?+3?&b3?3?33?4?<4?or4?4?4?C5?sK5?5?5?5?#6?Y6?6?6?W6? 17?f7?7?97?8?f=8?r8?g8?8?;9?H9?}9?%9?]9?:?R:?Ç:?ϼ:?:?&;?[;?;?f;?1;?.?<>?`p>?>?>? ??A??-u??6??5??)@?E@?x@?Ƭ@?@?OA?HA?{A?OA?A?pB?IB?h}B?԰B?6B?C?JC?~C?WC?C?D?JD?}D?۰D?D?E?IE?|E?`E?)E?F?GF?HzF?F?F? G?DG? wG?xG?G?8H?@H?rH?H?BH?l I?;I?mI?I?I?J?5J?gJ?[J?-J?J?.K?i`K?K?K?NK?&L?bXL?݉L?OL?L?M?kOM?M?M?2M?aN?EN?vN?N?N? O?:O?kO?O?dO?5O?.P?_P?rP?P?P?["Q?RQ?tQ?Q?gQ?R?6ER?uR?R?'R?fS?6S?fS?S?S?S?'T?WT?T?T?T?U?FU?ZvU?U?U?V?&5V?dV?WV?V?dV?"W?NRW?W?W?lW?X?>X?:nX?nX?X?X?*Y?YY?Y?Y?Y?Z?DZ?sZ?iZ?5Z?Z?.[?e][?[?[?I[?\?aF\?t\?X\?\?-]?.]?\]?-]?q]?]?^? D^?0r^?K^?^^?h^?j*_?dX_?V_??_? _?`?=`?k`?R`? `?`?b"a?Pa?}a?)a?a?0b?3b?ab?}b?ܻb?3b?c?Cc?qc??c?mc?c?%d?Rd?d?d?d?e?3e?`e?e?fe?6e?f?@f?xmf?(f?f?rf? g?Lg?'yg?g?$g?g?+h?eWh?h?h?`h?i?4i?ai?Ei?ki?i?j?=j?ij?j?j?j?k?lEk?Fqk?k?k?k?e l?Ll?wl?ml? l?l?3&m?Qm?<}m?m?(m?m?*n?RVn?n?n?;n?zo?.o?Yo? o?,o?Fo?Zp?e1p?j\p?hp?^p?Mp?5q?3q?]q?q?q?Pq? r?3r?r^r?r?r?Sr?s?p3s?]s?qs?s?Vs?t?2t?y\t?̆t?t?]t?u?/u?Zu?+u?Mu?hu?|v?,v?Vv?v?v?zv?ev?I(w?&Rw?{w?̥w?w?Ww?#x?Lx?tvx?x?x?Tx?y?rFy?oy?uy?y?]y?z?+?z?hz?ޑz?-z?vz? {?6{?(`{?V{?~{?{?|?-|?V|?|?|?|?|?#}?L}?~u}?V}?)}?}?~?xA~?0j~?~?~?2~? ?i5?]?? ???JXXX^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^fjn5n>4tWz@/g)du3fhnKEv :kNs>W\- 5kH7au[EK{P-l}  888T  [ ~  3 F  % R   %;;;Fqp `[[w!PPU=bwv`Ӯ YYYXXްXXX2XlYXXX XX    X        XX   yXvX    mXjX           eXbXsYCX4X2X.X2X*X2X&X2X"X2XX2XX2XX2XX2X X2XX2XW2XW2XW2XW2XW2XW2XW2XW2XWWWWWWWWWWWWWWWW8]WXxW8]jW8][WYWLWJW;WX.WX"WWWXWWVVVWlYVVVVVVVVVVVVV2XV2XV2XV2XV2XyVJWqVJWiVJW`VJWZVJWTVJWCV8]5V8]$V8]V8]V8]UJWUJWUJWUJWUJWUJWUJWUJWUJWUJWUJWUUUUUUU^UUyUWsUlUhUdU_U2X\UQUEU2X>U+UUUXTXTXTXTXTXTT|TUdTPTKTTATT7TT+TTTT TUTTSSSSB"P"^""")""QҾtӮGPZ|2ZXѯگ+4=Rgxɰް%4i: %s NULL ent->thinknoneleaderprint "Team vote passed. "print "Team vote failed. "print "%s is the new team leader "print "%s is not on the team anymore "print "%s is not connected "print "Vote passed. "print "Vote failed. "%s Warmup: print "Blue hit the capturelimit. "Capturelimit hit.print "Red hit the capturelimit. "print "%s^7 hit the fraglimit. "print "Blue hit the fraglimit. "Fraglimit hit.print "Red hit the fraglimit. "Timelimit hit.print "Timelimit hit. "score: %i ping: %i client: %i %s red:%i blue:%i Exit: %s %3i:%i%i vstr nextmap map_restart 0 (event:exit-level)(event:begin-intermission)info_player_intermission%isf%sShutdownGame: (event:shutdown-game)==== ShutdownGame ==== bot_enablesound/player/gurp2.wavsound/player/gurp1.wavmodels/mapobjects/podium/podium4.md3com_buildScript----------------------------------- Not logging to disk. InitGame: %s ------------------------------------------------------------ WARNING: Couldn't open logfile: %s sound/player/fry.wavgamedate: %s gamename: %s ------- Game Initialization ------- print "Server: %s changed to %s "g_gametype %i is out of range, defaulting to 0 %i teams with %i entities g_rankingspmove_msecpmove_fixedg_smoothClientsg_listEntityg_allowVote70g_podiumDrop80g_podiumDistcom_bloodg_motdg_debugAllocg_debugDamageg_debugMoveg_inactivityg_forcerespawn30g_weaponTeamRespawn5g_weaponrespawn3g_quadfactor1000g_knockback800g_gravity320g_speeddedicatedg_needpass1g_filterBang_banIPsg_passwordg_logSyncgames.logg_logg_doWarmupg_warmupg_teamForceBalanceg_teamAutoJoing_friendlyFireg_synchronousClientscapturelimittimelimit20fraglimitdmflagsg_maxGameClients8sv_maxclientsg_gametypesv_mapname0g_restartedAug 11 2002gamedatefigamenamesv_cheatsEV_TAUNTEV_STOPLOOPINGSOUNDEV_DEBUG_LINEEV_LIGHTNINGBOLTEV_JUICEDEV_INVUL_IMPACTEV_OBELISKEXPLODEEV_KAMIKAZEEV_PROXIMITY_MINE_TRIGGEREV_PROXIMITY_MINE_STICKEV_SCOREPLUMEV_GIB_PLAYEREV_POWERUP_REGENEV_POWERUP_BATTLESUITEV_POWERUP_QUADEV_OBITUARYEV_DEATH3EV_DEATH2EV_DEATH1EV_PAINEV_BULLETEV_SHOTGUNEV_RAILTRAILEV_MISSILE_MISS_METALEV_MISSILE_MISSEV_MISSILE_HITEV_BULLET_HIT_WALLEV_BULLET_HIT_FLESHEV_GLOBAL_TEAM_SOUNDEV_GLOBAL_SOUNDEV_GENERAL_SOUNDEV_GRENADE_BOUNCEEV_PLAYER_TELEPORT_OUTEV_PLAYER_TELEPORT_INEV_ITEM_POPEV_ITEM_RESPAWNEV_USE_ITEM15EV_USE_ITEM14EV_USE_ITEM13EV_USE_ITEM12EV_USE_ITEM11EV_USE_ITEM10EV_USE_ITEM9EV_USE_ITEM8EV_USE_ITEM7EV_USE_ITEM6EV_USE_ITEM5EV_USE_ITEM4EV_USE_ITEM3EV_USE_ITEM2EV_USE_ITEM1EV_USE_ITEM0EV_FIRE_WEAPONEV_CHANGE_WEAPONEV_NOAMMOEV_GLOBAL_ITEM_PICKUPEV_ITEM_PICKUPEV_WATER_CLEAREV_WATER_UNDEREV_WATER_LEAVEEV_WATER_TOUCHEV_JUMPEV_JUMP_PADEV_FALL_FAREV_FALL_MEDIUMEV_FALL_SHORTEV_STEP_16EV_STEP_12EV_STEP_8EV_STEP_4EV_SWIMEV_FOOTWADEEV_FOOTSPLASHEV_FOOTSTEP_METALEV_FOOTSTEPEV_NONEBG_EvaluateTrajectoryDelta: unknown trType: %iBG_EvaluateTrajectory: unknown trType: %iBG_CanItemBeGrabbed: IT_BADBG_CanItemBeGrabbed: index out of rangeCouldn't find item for weapon %iHoldableItem not foundBlue Flagicons/iconf_blu1models/flags/b_flag.md3team_CTF_blueflagRed Flagicons/iconf_red1models/flags/r_flag.md3team_CTF_redflagFlighticons/flightmodels/powerups/instant/flight_ring.md3models/powerups/instant/flight.md3sound/items/flight.wavitem_flightsound/items/regen.wavRegenerationicons/regenmodels/powerups/instant/regen_ring.md3models/powerups/instant/regen.md3sound/items/regeneration.wavitem_regenInvisibilityicons/invismodels/powerups/instant/invis_ring.md3models/powerups/instant/invis.md3sound/items/invisibility.wavitem_invisSpeedicons/hastemodels/powerups/instant/haste_ring.md3models/powerups/instant/haste.md3sound/items/haste.wavitem_hastesound/items/airout.wav sound/items/protect3.wavBattle Suiticons/envirosuitmodels/powerups/instant/enviro_ring.md3models/powerups/instant/enviro.md3sound/items/protect.wavitem_envirosound/items/damage2.wav sound/items/damage3.wavQuad Damageicons/quadmodels/powerups/instant/quad_ring.md3models/powerups/instant/quad.md3sound/items/quaddamage.wavitem_quadsound/items/use_medkit.wavMedkiticons/medkitmodels/powerups/holdable/medkit_sphere.md3models/powerups/holdable/medkit.md3holdable_medkitPersonal Teleportericons/teleportermodels/powerups/holdable/teleporter.md3sound/items/holdable.wavholdable_teleporterBfg Ammoicons/icona_bfgmodels/powerups/ammo/bfgam.md3ammo_bfgSlugsicons/icona_railgunmodels/powerups/ammo/railgunam.md3ammo_slugsRocketsicons/icona_rocketmodels/powerups/ammo/rocketam.md3ammo_rocketsLightningicons/icona_lightningmodels/powerups/ammo/lightningam.md3ammo_lightningCellsicons/icona_plasmamodels/powerups/ammo/plasmaam.md3ammo_cellsGrenadesicons/icona_grenademodels/powerups/ammo/grenadeam.md3ammo_grenadesBulletsicons/icona_machinegunmodels/powerups/ammo/machinegunam.md3ammo_bulletsShellsicons/icona_shotgunmodels/powerups/ammo/shotgunam.md3sound/misc/am_pkup.wavammo_shellsGrappling Hookicons/iconw_grapplemodels/weapons2/grapple/grapple.md3weapon_grapplinghookBFG10Kicons/iconw_bfgmodels/weapons2/bfg/bfg.md3weapon_bfgPlasma Gunicons/iconw_plasmamodels/weapons2/plasma/plasma.md3weapon_plasmagunRailgunicons/iconw_railgunmodels/weapons2/railgun/railgun.md3weapon_railgunLightning Gunicons/iconw_lightningmodels/weapons2/lightning/lightning.md3weapon_lightningRocket Launchericons/iconw_rocketmodels/weapons2/rocketl/rocketl.md3weapon_rocketlaunchersound/weapons/grenade/hgrenb1a.wav sound/weapons/grenade/hgrenb2a.wavGrenade Launchericons/iconw_grenademodels/weapons2/grenadel/grenadel.md3weapon_grenadelauncherMachinegunicons/iconw_machinegunmodels/weapons2/machinegun/machinegun.md3weapon_machinegunShotgunicons/iconw_shotgunmodels/weapons2/shotgun/shotgun.md3weapon_shotgunGauntleticons/iconw_gauntletmodels/weapons2/gauntlet/gauntlet.md3sound/misc/w_pkup.wavweapon_gauntletMega Healthicons/iconh_megamodels/powerups/health/mega_sphere.md3models/powerups/health/mega_cross.md3sound/items/m_health.wavitem_health_mega50 Healthicons/iconh_redmodels/powerups/health/large_sphere.md3models/powerups/health/large_cross.md3sound/items/l_health.wavitem_health_large25 Healthicons/iconh_yellowmodels/powerups/health/medium_sphere.md3models/powerups/health/medium_cross.md3sound/items/n_health.wavitem_health5 Healthicons/iconh_greenmodels/powerups/health/small_sphere.md3models/powerups/health/small_cross.md3sound/items/s_health.wavitem_health_smallHeavy Armoricons/iconr_redmodels/powerups/armor/armor_red.md3item_armor_bodyArmoricons/iconr_yellowmodels/powerups/armor/armor_yel.md3sound/misc/ar2_pkup.wavitem_armor_combatArmor Shardicons/iconr_shardmodels/powerups/armor/shard_sphere.md3models/powerups/armor/shard.md3sound/misc/ar1_pkup.wavitem_armor_shard0123456789ABCDEF0123456789abcdef01234567(null)0123456789%i:Land %i:steep %i:kickoff %i:lift %i:allsolid %i:stepped %i:bend can't step BIG Info string length exceeded Info string length exceeded \%s\%sCan't use keys or values with a " Can't use keys or values with a semicolon Can't use keys or values with a \ Info_SetValueForKey: oversize infostringInfo_RemoveKey_Big: oversize infostringInfo_RemoveKey: oversize infostringInfo_ValueForKey: oversize infostringCom_sprintf: overflow of %i in %i Com_sprintf: overflowed bigbufferQ_strcat: already overflowedQ_strncpyz: destsize < 1Q_strncpyz: NULL src)(MatchToken: %s != %sWARNING: %s, line %d: %s ERROR: %s, line %d: %s %s%s%sbattle NBGbattle retreatbattle chasebattle fightseek LTGno goalseek NBGactivate entityrespawnstandobserverintermissionfollowmelead_stoponreturnflagreturnflag_startongetflagcaptureflag_startpatrol_stoppatrol_start to inpositioncamp_arrivecamp_stopcamp_startgetitem_gotitgetitem_nottheregetitem_startkill_donekill_startdefend_stopondefensedefend_startaccompany_cannotfindaccompany_arriveaccompany_stopaccompany_startyeshelp_start%s at %2.1f entered %s: %s %s at %1.1f switched more than %d AI nodes CTF without Blue Flag Blue FlagCTF without Red Flag Red Flag2g_spSkillbot_predictobstaclesbot_challengebot_nochatbot_fastchat0bot_grapplebot_rocketjumpg_gametype%s at %1.1f switched more than %d AI nodes team %ssex*falling1.wavEV_GENERAL_SOUND: eventParm (%d) out of range sound/items/poweruprespawn.wavEV_GLOBAL_SOUND: eventParm (%d) out of range **** no valid reply **** ------------------------ 1bot_testrchat%s: I have to activate a %s at %1.1f %1.1f %1.1f in area %d %s: I have to shoot at a %s from %1.1f %1.1f %1.1f in area %d target_delaytarget_relayfunc_timertrigger_multipleBotGetActivateGoal: entity with target "%s" has no classname BotGetActivateGoal: no entity with target "%s" targetBotGetActivateGoal: entity with model "%s" has no targetname targetnamefunc_buttonoriginspawnflagsfunc_doorBotGetActivateGoal: entity with model %s has no classname classnameBotGetActivateGoal: no entity found with model %s *%dhealthanglelipmpq3tourney6q3tourney6mapnameInvisibilitySpeedBattle SuitRegenerationQuad DamageBotCreateWayPoint: Out of waypoints ][ sv_maxclientsmodelClientSkin: client out of range n[client out of range]ClientName: client out of range onfollowihaveflag%dteamtasknotstartleaderiamteamleaderwhoisteamleaderdefendcmd_defendbasereturnflagfollowflagcarriercmd_accompanyfollowmecmd_accompanymegetflagcmd_getflag(%s): %stnsv_maxclients20bot_interbreedcycle10bot_interbreedbotsbot_testclustersbot_testsolidbot_reportbot_pause100cddirfs_cdpathgamedirfs_gamebasedirfs_basepathaasoptimizebot_aasoptimizeforcewritebot_forcewriteforcereachabilitybot_forcereachabilityforceclusteringbot_forceclusteringbot_visualizejumppadsnochatbot_nochatlogbot_developermax_levelitemsmax_aaslinkssv_mapChecksummaxentitiesmaxclients8sv_maxclients200bot_thinktimebot_saveroutingcachesaveroutingcache0bot_memorydumpmemorydumpmapnamebot_testichatcouldn't load skill %f from %s AAS not initialized BotAISetupClient: client %d already setup botsession%i%i %i %i %i %i %i %i %i %f %f %f %f %f %f %f %f %fclientLevelShotscorestchatchatprintcscp BotAI: client %d is not setup bot_interbreedcharaddbot %s 4 free %i %s%d 1bot_reloadcharacters%dg_gametypebot_interbreedwritel\%s\c\%s\a\%sroaming %sharvestingattacking the enemy basereturning flagrushing basecapturing flagpatrollingcampingkilling %sgetting item %sdefending %saccompanying %shelping %sF ^4BLUE tn^1RED %-20s%s%s: roaming %-20s%s%s: harvesting %-20s%s%s: attacking the enemy base %-20s%s%s: returning flag %-20s%s%s: rushing base %-20s%s%s: capturing flag %-20s%s%s: patrolling %-20s%s%s: camping %-20s%s%s: killing %s %-20s%s%s: getting item %s %-20s%s%s: defending %s %-20s%s%s: accompanying %s %-20s%s%s: helping %s ^4F ^1F L area %d, cluster %d ^1Solid! ^1SOLID area emtpy areaunknown print type ^1Exit: %s^1Fatal: %s^1Error: %s^3Warning: %s%srandom_insultrandom_mischit_nokillhit_nodeathhit_talkingenemy_suicidekill_praisekill_insultkill_telefragkill_railkill_gauntletkill_teammatedeath_praisedeath_insultdeath_bfgdeath_raildeath_gauntletdeath_telefragdeath_suicidedeath_cratereddeath_lavadeath_slimedeath_drowndeath_teammate[world]level_endlevel_end_loselevel_end_victorylevel_startvtauntgame_exit[invalid var]game_enter[unknown weapon]GrappleBFG10KLightning GunRailgunPlasmagunRocket LauncherGrenade LauncherMachinegunGauntletShotgunmapnametnsv_maxclientsunknown match type the part of my brain to create formations has been damagedlocationblueredteamlocationBlue FlagRed FlagHeavy ArmorArmorFlightInvisibilitySpeedBattle SuitRegenerationQuad DamageBFG10KLightning GunRailgunPlasmagunRocket LauncherGrenade LauncherShotgunroamingreturningflagrushingbasecapturingflagpatrollingcampingkillinggettingitemdefendingaccompanyinghelpingI'm the team leader tauntkilldismissedcheckpoint_confirm%1.0f %1.0f %1.0fcheckpoint_invalid%f %f %fnoteaminteamleftteamjoinedteamyeskeepinmindwhereareyouwhereiswhois%d I need more key points to patrol what do you say?sv_maxclientswantonoffensewantondefensewhoisleaderstopleaderreturnflagfollowflagcarrierfollowmecamppatroldefendflagdefendoffensegetflagyeskeepinmindstartleaderiamteamleaderwhereareyouonpatroldismissed338pmove_mseccp "Ten seconds until inactivity drop! "Dropped due to inactivitysound/player/gurp2.wavsound/player/gurp1.wav*drown.wavmodels/mapobjects/podium/podium4.md3podiumg_podiumDropg_podiumDist^1ERROR: out of gentities %i %i %ipostgame %i %i %i %i %i %i %i %ipostgame %i %i 0 0 0 0 0 0botstrainingspecial10timelimitfraglimitmapname0bot_minplayers^1Invalid bot number: %i %i bots parsed .botscripts/bots.txtg_botsFileaddbot %s %f free %i 51%-16s %-16s %-20s %-20s bots/default_c.cUnnamedPlayer^1name model aifile funname loaddefered cl_runningUsage: Addbot [skill 1-5] [team] [msec delay] [altname] bot_enable%f^1Start server with more 'open' slots (or check setting of sv_maxclients cvar). ^1Unable to add bot. All player slots are in use. ^1Error: bot has no aifile specified aifile4colorsexmalegenderteam_headmodelheadmodelteam_modelvisor/default907050handicap%1.2f20snaps25000ratefunname^1Error: Bot '%s' not defined BotAISetupClient failedteamskillcharacterfile^3Unable to delay spawn modelkick %s addbot %s %f %s %i blueredg_spSkillnameplay sound/player/announce/%s.wav defaultmap%inum%i arenas parsed scripts/.arenascriptsscripts/arenas.txtg_arenasFile^1file too large: %s is %i, max allowed is %i^1file not found: %s %d\num\}Unexpected end of info file Max infos exceeded Missing { in info file {(event:off-client-disconnect %d)disconnectedClientDisconnect: %i (event:on-client-disconnect %d)(event:client-respawn %d)hmodelplayer(event:off-client-begin %d)ClientBegin: %i print "%s^7 entered the game "(event:on-client-begin %d)print "%s^7 connected "ClientConnect: %i BotConnectfailed(event:off-client-connect %d)Invalid passwordnonepasswordBanned.(event:on-client-connect %d)(event:off-client-userinfo-changed %d)ClientUserinfoChanged: %i %s n\%s\t\%i\model\%s\hmodel\%s\g_redteam\%s\g_blueteam\%s\c1\%s\hc\%i\w\%i\l\%i\tt\%d\tl\%dskilln\%s\t\%i\model\%s\hmodel\%s\c1\%s\hc\%i\w\%i\l\%i\skill\%s\tt\%d\tl\%dg_blueteamg_redteamcolorteamtaskteamoverlaybbluerredteamheadmodelmodelteam_headmodelteam_modelhandicapprint "%s^7 renamed to %s "scoreboardnamecg_predictItemslocalhostip\name\badinfo(event:on-client-userinfo-changed %d)UnnamedPlayer/bodyqueCouldn't find a spawn pointinfo_player_deathmatchnohumans0nobotsprint "unknown cmd %s "(*gcmd-hook* #[%s])corpsemedecoy?decoy0decoy1test_sdestructlaunchitemclasstestbeam1setoffhand1test_laserstatssetviewposgcteamvotecallteamvotevotecallvotewhereteamfollowprevfollownextfollowlevelshotkillnoclipnotargetgodgivevtauntvotellvosay_teamvosayvsay_teamvsaytellsay_teamsayDecoys count: %d Spawning %s psdestructSDestructing cmd::class: Player %d class not changed cmd::class: Player %d set to class #%d Laser pointing at (%f %f %f) Laser placed at (%f %f %f) laserprint "usage: setviewpos x y z yaw "print "Team vote cast. "print "Team vote already cast. "print "No team vote in progress. "print "%s called a team vote. "print "Team vote commands are: leader . "print "%s is not a valid player on your team. "leader print "You have called the maximum number of team votes. "print "A team vote is already in progress. "print "Vote cast. "print "Not allowed to vote as spectator. "print "Vote already cast. "print "No vote in progress. "%iprint "%s called a vote. "%s "%s"vstr nextmapprint "nextmap not set. "%s%s %s; set nextmap "%s"%s %s%s %dprint "Invalid gametype. "%s print "Vote commands are: map_restart, nextmap, map , g_gametype , kick , clientkick , g_doWarmup, timelimit