[bknr-cvs] r2403 - branches/bos/thirdparty/ltk-0.91

ksprotte at common-lisp.net ksprotte at common-lisp.net
Thu Jan 24 17:14:24 UTC 2008


Author: ksprotte
Date: Thu Jan 24 12:14:15 2008
New Revision: 2403

Added:
   branches/bos/thirdparty/ltk-0.91/
   branches/bos/thirdparty/ltk-0.91/BWidget.lisp
   branches/bos/thirdparty/ltk-0.91/changenotes.txt   (contents, props changed)
   branches/bos/thirdparty/ltk-0.91/lgpl.txt   (contents, props changed)
   branches/bos/thirdparty/ltk-0.91/license.txt   (contents, props changed)
   branches/bos/thirdparty/ltk-0.91/ltk-mw.asd
   branches/bos/thirdparty/ltk-0.91/ltk-mw.lisp
   branches/bos/thirdparty/ltk-0.91/ltk-quicktime.lisp
   branches/bos/thirdparty/ltk-0.91/ltk-remote.asd   (contents, props changed)
   branches/bos/thirdparty/ltk-0.91/ltk-remote.lisp
   branches/bos/thirdparty/ltk-0.91/ltk-tile.lisp
   branches/bos/thirdparty/ltk-0.91/ltk.asd
   branches/bos/thirdparty/ltk-0.91/ltk.lisp
   branches/bos/thirdparty/ltk-0.91/ltkdoc.pdf   (contents, props changed)
   branches/bos/thirdparty/ltk-0.91/remote.tcl
   branches/bos/thirdparty/ltk-0.91/troubleshooting.txt
Log:
added LTK (only to thirdparty) to have it available if needed

Added: branches/bos/thirdparty/ltk-0.91/BWidget.lisp
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/BWidget.lisp	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,108 @@
+#|
+
+ This software is Copyright (c) 2005 Peter Herth <herth at peter-herth.de>
+
+ Peter Herth grants you the rights to distribute
+ and use this software as governed by the terms
+ of the Lisp Lesser GNU Public License
+ (http://opensource.franz.com/preamble.html),
+ known as the LLGPL.
+ 
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ 
+|#
+
+#|
+Notebook widget wrapper by Frank Buss
+
+Example usage:
+
+ (defun test-note-book ()
+  (with-ltk ()
+   (let* ((nb (make-instance 'note-book))
+          (page1 (insert-page nb "end" :text "Page 1"))
+          (page2 (insert-page nb "end" :text "Page 2"))
+          (label1 (make-instance 'label :master page1 :text "Hello World!"))
+          (label2 (make-instance 'label :master page2 :text "This is the 2nd page")))
+     (pack nb)
+     (pack label1 :padx 20 :pady 20)
+     (pack label2)
+     (compute-size nb)
+     (raise-page page1))))
+
+I've decided to use an extra class for the note-book-page, because
+referencing it by name, like in the Tk interface, doesn't look like
+the way the other widgets are used. Only the functions I need are
+implemented, perhaps someone can complete it.
+
+|#
+
+(defpackage :bwidget
+  (:use :common-lisp
+	:ltk
+	)
+  (:export
+   	#:note-book-page
+	#:note-book
+	#:compute-size
+	#:insert-page
+	#:delete-page
+	#:raise-page
+   ))
+
+(in-package :bwidget)
+
+(eval-when (:load-toplevel)
+  (setf *init-wish-hook* (append *init-wish-hook*
+				 (list (lambda ()
+					 (send-wish "package require BWidget")
+				       )))))
+
+(defclass note-book-page (widget)
+  ((page-name :accessor page-name :initarg :page-name :initform nil)
+   (note-book :accessor note-book :initarg :note-book :initform nil)))
+
+(defclass note-book (widget) ())
+
+(defmethod initialize-instance :after ((nb note-book) &key font activebackground 
+                                       activeforeground background borderwidth
+                                       disabledforeground foreground repeatdelay
+                                       repeatinterval arcradius height homogeneous
+                                       side tabbevelsize tabpady width)  
+  (format-wish "NoteBook ~a ~@[ -font ~(~A~)~]~
+     ~@[ -activebackground ~(~A~)~]~@[ -activeforeground ~(~A~)~]~
+     ~@[ -background ~(~A~)~]~@[ -borderwidth ~(~A~)~]~
+     ~@[ -disabledforeground ~(~A~)~]~@[ -foreground ~(~A~)~]~
+     ~@[ -repeatdelay ~(~A~)~]~@[ -repeatinterval ~(~A~)~]~
+     ~@[ -arcradius ~(~A~)~]~@[ -height ~(~A~)~]~@[ -homogeneous ~(~A~)~]~
+     ~@[ -side ~(~A~)~]~@[ -tabbevelsize ~(~A~)~]~@[ -tabpady ~(~A~)~]~
+     ~@[ -width ~(~A~)~]"
+               (widget-path nb) font activebackground activeforeground background
+               borderwidth disabledforeground foreground repeatdelay repeatinterval
+               arcradius height homogeneous side tabbevelsize tabpady width))
+
+(defmethod insert-page ((nb note-book) index &key text)
+  (let ((page-name (ltk::create-name)))
+    (format-wish "senddata [~a insert ~a ~a ~@[ -text {~A}~]]"
+                 (widget-path nb) index page-name text)
+    (let ((path (ltk::read-data)))
+      (if path
+          (make-instance 'note-book-page 
+                         :page-name page-name
+                         :note-book nb
+                         :path (string-downcase path))
+        (error "error while inserting page")))))
+
+(defmethod raise-page ((nbp note-book-page))
+  (format-wish "~a raise ~a" (widget-path (note-book nbp)) (page-name nbp)))
+
+(defmethod delete-page ((nbp note-book-page))
+  (format-wish "~a delete ~a" (widget-path (note-book nbp)) (page-name nbp)))
+
+(defmethod compute-size ((nb note-book))
+  (format-wish "~a compute_size" (widget-path nb)))
+
+

Added: branches/bos/thirdparty/ltk-0.91/changenotes.txt
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/changenotes.txt	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,241 @@
+0.8.7.8:
+
+- condition handling
+- changed handling of coordinates:
+  The functions that so far accepted a list of coordinates have been made 
+  much more flexible, they accept a list of pairs, an array of coordinates,
+  any number type, even complex numbers now. (Complex numbers are treated
+  as the coordinates of a point, with x being the real part of the number,
+  y the imaginary)
+- choose-color
+- choose-directory
+- with-ltk now has a parameter list
+- after and after-idle return now an id which can be used to cancel the
+  call with after-cancel
+
+
+
+:HANDLE-ERRORS determines what to do if an error is signaled.  It can be set to
+T, NIL, :SIMPLE, or :DEBUG.
+
+When an error is signalled, there are four things LTk can do:
+
+ (default)
+     The simplest is to do nothing, which usually means you will end out in the
+     SLIME debugger (although see the discussion of :DEBUGGER below).
+
+ note
+     Show a dialog box indicating that an error has occured.  The only thing
+     the user can do in this case is to hit "OK" and try to keep using the
+     application.  The "OK" button will invoke the ABORT restart, which in most
+     cases will just return to the LTk main loop.
+
+ show, offer to continue
+     Show a dialog box containing the error message.  If there is a CONTINUE
+     restart, the user will be prompted with a question and presented with
+     "Yes" button and a "No" button.  If there is not CONTINUE restart, the
+     only thing the user can do is to hit "OK".  The "Yes" button will invoke
+     the CONTINUE restart.  The "No" and "OK" buttons will invoke the ABORT
+     restart (see above).
+
+     CONTINUE restarts are usually created by the CERROR function.  In a
+     situation where "show, offer to continue" is handling the error, the
+     following code:
+
+        (when (= (+ 1 1) 2)
+          (cerror "Continue anyway"
+                  "One plus one is two."))
+
+     Will tell you that there is an error, display the error message "One plus
+     one is two", and ask you "Continue anyway?".  Contrast this with the
+     following:
+
+        (when (= (+ 1 1) 2)
+          (error "One plus one is two."))
+
+     This will show the user the error "One plus one is two" and allow them to
+     hit "OK".
+
+ show, offer to start the debugger
+     Show a dialog box containing the error message, and ask the user if they
+     want to start the debugger.  Answering "No" will abort (usually to the LTk
+     main loop).  Answering "Yes" will invoke the debugger; usually this means
+     you will see the SLIME debugger, but see the description of :DEBUGGER
+     below.
+
+LTk considers two types of errors: SIMPLE-ERRORs and all others.  SIMPLE-ERROR
+is what is signalled when you type a form like (error "Something is wrong.").
+
+If :HANDLE-ERRORS is T, SIMPLE-ERRORs will be shown to the user, and all others
+(such as those generated by the Lisp system itself, eg, if you attempt to divide
+by zero) will be noted.  In this model, you can call ERROR yourself to send an
+error message to the user in a user-friendly manner.  If :HANDLE-ERRORS is NIL,
+LTk will not interfere with the normal error handling mechanism.
+
+For details of all the options, see the tables below.
+
+:HANDLE-WARNINGS can be T, NIL, or :DEBUG.
+
+:DEBUGGER can be T or NIL.  If it is NIL, LTk will prevent the user from ever
+seeing the Lisp debugger.  In the event that the debugger would be invoked, LTk
+will use its "trivial debugger" which dumps a stack trace and quits (note that
+this is only implemented on SBCL and CMUCL).  This is useful in conjunction with
+:HANDLE-ERRORS T, which should never call the debugger; if :HANDLE-ERRORS is T
+and the debugger is called, this means that the system is confused beyond all
+hope, and dumping a stack trace is probably the right thing to do.
+
+
+                                   :HANDLE-ERRORS T
+             +--------------+--------------+--------------+--------------+
+             |  (default)   |     note     | show, offer  | show, offer  |
+             |              |              | to continue  | to start the |
+             |              |              |              | debugger     |
+             +--------------+--------------+--------------+--------------+
+             |              |              |    XX  XX    |              |
+SIMPLE-ERROR |              |              |      XX      |              |
+             |              |              |    XX  XX    |              |
+             +--------------+--------------+--------------+--------------+
+             |              |    XX  XX    |              |              |
+       ERROR |              |      XX      |              |              |
+             |              |    XX  XX    |              |              |
+             +--------------+--------------+--------------+--------------+
+
+                               :HANDLE-ERRORS :SIMPLE
+             +--------------+--------------+--------------+--------------+
+             |  (default)   |     note     | show, offer  | show, offer  |
+             |              |              | to continue  | to start the |
+             |              |              |              | debugger     |
+             +--------------+--------------+--------------+--------------+
+             |              |              |    XX  XX    |              |
+SIMPLE-ERROR |              |              |      XX      |              |
+             |              |              |    XX  XX    |              |
+             +--------------+--------------+--------------+--------------+
+             |    XX  XX    |              |              |              |
+       ERROR |      XX      |              |              |              |
+             |    XX  XX    |              |              |              |
+             +--------------+--------------+--------------+--------------+
+
+                               :HANDLE-ERRORS :DEBUG
+             +--------------+--------------+--------------+--------------+
+             |  (default)   |     note     | show, offer  | show, offer  |
+             |              |              | to continue  | to start the |
+             |              |              |              | debugger     |
+             +--------------+--------------+--------------+--------------+
+             |              |              |              |    XX  XX    |
+SIMPLE-ERROR |              |              |              |      XX      |
+             |              |              |              |    XX  XX    |
+             +--------------+--------------+--------------+--------------+
+             |              |              |              |    XX  XX    |
+       ERROR |              |              |              |      XX      |
+             |              |              |              |    XX  XX    |
+             +--------------+--------------+--------------+--------------+
+
+                                 :HANDLE-ERRORS NIL
+             +--------------+--------------+--------------+--------------+
+             |  (default)   |     note     | show, offer  | show, offer  |
+             |              |              | to continue  | to start the |
+             |              |              |              | debugger     |
+             +--------------+--------------+--------------+--------------+
+             |    XX  XX    |              |              |              |
+SIMPLE-ERROR |      XX      |              |              |              |
+             |    XX  XX    |              |              |              |
+             +--------------+--------------+--------------+--------------+
+             |    XX  XX    |              |              |              |
+       ERROR |      XX      |              |              |              |
+             |    XX  XX    |              |              |              |
+             +--------------+--------------+--------------+--------------+
+
+                         :HANDLE-WARNINGS T
+             +--------------+--------------+--------------+
+             |  (default)   |     show     | show, offer  |
+             |              |              | to start the |
+             |              |              | debugger     |
+             +--------------+--------------+--------------+
+             |              |    XX  XX    |              |
+    WARNING  |              |      XX      |              |
+             |              |    XX  XX    |              |
+             +--------------+--------------+--------------+
+
+                       :HANDLE-WARNINGS :DEBUG
+             +--------------+--------------+--------------+
+             |  (default)   |     show     | show, offer  |
+             |              |              | to start the |
+             |              |              | debugger     |
+             +--------------+--------------+--------------+
+             |              |              |    XX  XX    |
+     WARNING |              |              |      XX      |
+             |              |              |    XX  XX    |
+             +--------------+--------------+--------------+
+ 
+                        :HANDLE-WARNINGS NIL
+             +--------------+--------------+--------------+
+             |  (default)   |     show     | show, offer  |
+             |              |              | to start the |
+             |              |              | debugger     |
+             +--------------+--------------+--------------+
+             |    XX  XX    |              |              |
+     WARNING |      XX      |              |              |
+             |    XX  XX    |              |              |
+             +--------------+--------------+--------------+
+
+
+0.8.7.2:
+  - exported the widget accessor master
+
+  Thanks to Larry Clapp:
+  - PACK-PROPAGATE generic function
+ - SET-GEOMETRY-WH, SET-GEOMETRY-XY -- allow you to set width x height and X & Y independently.
+- Added MOUSE-BUTTON to EVENT structure, and associated usages, so if you BIND a mouse event, you can find out which button the user clicked.
+- Added an :APPEND key to the BIND generic function.  When true, this  puts a + on the front of the callback, and allows you to bind multiple functions to an event.
+- Added a method to PACK that accepts a LIST, allowing you to PACK multiple widgets in a single function call.
+
+
+0.8.7:
+  new methods:
+  - append-newline appends a newline to a text widget
+  - insert-object inserts an object at the end of a text widget
+  - new function after-idle, which as after uses now unique names to refer
+    the callback function, callback is removed after called.
+    (removed optional label parameter from the after function)
+  - the following widgets support all configuration options as keyword arguments to make-instance:
+    frame, text, toplevel, entry, canvas, label, listbox, labelframe, spinbox, scrollbar, scale, paned-window, radio-button, check-button
+
+  - classes for canvas items: 
+  canvas-line, canvas-polygon, canvas-oval, canvas-rectangle, canvas-text, canvas-image, canvas-arc
+  - new functions focus, force-focus
+  - configure generic function returns the widget configured (for stacking calls)
+  - the documentation has corrected, naming now correctly the name "ltktest" for the test program. Thanks
+    to all the people (to many to list here) wo notified me of that bug :)
+  - new packages:  ltk-mw, ltk-quicktime
+
+0Ä.8.6:
+  all parameters at button creation implemented
+  all proper communication from wish to lisp in form of lists, allows to prevent synchronisation problems with data readback and tk events
+  clear generic function added for canvas widget
+  itemmove for canvas items added
+  itembind for canvas items added
+  image-setpixel method added
+  underline and accelerator keyword args for menu creation
+
+0.8.5:
+  pack function uses keywords for parameters like :side :x instead of :side "x"
+  new pack keywords  after before padx pady ipadx ipady anchor (now complete)
+  new widget scrolled-frame
+  new create-line* function
+  all canvas items supported now (new: arc bitmap rectangle window)
+  get-text function no longer uses temporary file and is replaced  buy the generic text function (settable)
+  removed get-content and set-content methods for entry widget, use (text entry) and (setf (text entry) val) instead
+  removed do-read-line as every tk output should be read-able now
+  all grid keywords supported: columnspan ipadx ipady padx pady rowspan sticky (accepts keywords as values)
+  new generic function background (settable), it is planned to wrap the common configuration options into settable generic functions
+  renamed start-w send-w format-w read-w *w* to start-wish etc.
+  after has an optional argument label now to distinguish several events which can now be scheduled in parallel
+  configure function allows keywords for option and value now.
+
+
+0.8.4:
+  generic function (text widget) and (setf (text widget) value) in for those
+  widgets that support text change. (missing: text widget)
+  generic function (value widget) and (setf (value widget) val) in for
+  check-button, radio-button, menucheckbutton, menuradiobutton, scale
+

Added: branches/bos/thirdparty/ltk-0.91/lgpl.txt
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/lgpl.txt	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,504 @@
+		  GNU LESSER GENERAL PUBLIC LICENSE
+		       Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+     59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL.  It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+  This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it.  You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+  When we speak of free software, we are referring to freedom of use,
+not price.  Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+  To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights.  These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+  For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you.  You must make sure that they, too, receive or can get the source
+code.  If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it.  And you must show them these terms so they know their rights.
+
+  We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+  To protect each distributor, we want to make it very clear that
+there is no warranty for the free library.  Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+  Finally, software patents pose a constant threat to the existence of
+any free program.  We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder.  Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+  Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License.  This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License.  We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+  When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library.  The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom.  The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+  We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License.  It also provides other free software developers Less
+of an advantage over competing non-free programs.  These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries.  However, the Lesser license provides advantages in certain
+special circumstances.
+
+  For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard.  To achieve this, non-free programs must be
+allowed to use the library.  A more frequent case is that a free
+library does the same job as widely used non-free libraries.  In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+  In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software.  For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+  Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.  Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library".  The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+		  GNU LESSER GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+  A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+  The "Library", below, refers to any such software library or work
+which has been distributed under these terms.  A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language.  (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+  "Source code" for a work means the preferred form of the work for
+making modifications to it.  For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+  Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it).  Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+  
+  1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+  You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+  2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) The modified work must itself be a software library.
+
+    b) You must cause the files modified to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    c) You must cause the whole of the work to be licensed at no
+    charge to all third parties under the terms of this License.
+
+    d) If a facility in the modified Library refers to a function or a
+    table of data to be supplied by an application program that uses
+    the facility, other than as an argument passed when the facility
+    is invoked, then you must make a good faith effort to ensure that,
+    in the event an application does not supply such function or
+    table, the facility still operates, and performs whatever part of
+    its purpose remains meaningful.
+
+    (For example, a function in a library to compute square roots has
+    a purpose that is entirely well-defined independent of the
+    application.  Therefore, Subsection 2d requires that any
+    application-supplied function or table used by this function must
+    be optional: if the application does not supply it, the square
+    root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library.  To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License.  (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.)  Do not make any other change in
+these notices.
+
+  Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+  This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+  4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+  If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library".  Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+  However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library".  The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+  When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library.  The
+threshold for this to be true is not precisely defined by law.
+
+  If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work.  (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+  Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+  6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+  You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License.  You must supply a copy of this License.  If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License.  Also, you must do one
+of these things:
+
+    a) Accompany the work with the complete corresponding
+    machine-readable source code for the Library including whatever
+    changes were used in the work (which must be distributed under
+    Sections 1 and 2 above); and, if the work is an executable linked
+    with the Library, with the complete machine-readable "work that
+    uses the Library", as object code and/or source code, so that the
+    user can modify the Library and then relink to produce a modified
+    executable containing the modified Library.  (It is understood
+    that the user who changes the contents of definitions files in the
+    Library will not necessarily be able to recompile the application
+    to use the modified definitions.)
+
+    b) Use a suitable shared library mechanism for linking with the
+    Library.  A suitable mechanism is one that (1) uses at run time a
+    copy of the library already present on the user's computer system,
+    rather than copying library functions into the executable, and (2)
+    will operate properly with a modified version of the library, if
+    the user installs one, as long as the modified version is
+    interface-compatible with the version that the work was made with.
+
+    c) Accompany the work with a written offer, valid for at
+    least three years, to give the same user the materials
+    specified in Subsection 6a, above, for a charge no more
+    than the cost of performing this distribution.
+
+    d) If distribution of the work is made by offering access to copy
+    from a designated place, offer equivalent access to copy the above
+    specified materials from the same place.
+
+    e) Verify that the user has already received a copy of these
+    materials or that you have already sent this user a copy.
+
+  For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it.  However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+  It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system.  Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+  7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+    a) Accompany the combined library with a copy of the same work
+    based on the Library, uncombined with any other library
+    facilities.  This must be distributed under the terms of the
+    Sections above.
+
+    b) Give prominent notice with the combined library of the fact
+    that part of it is a work based on the Library, and explaining
+    where to find the accompanying uncombined form of the same work.
+
+  8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License.  Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License.  However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+  9. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Library or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+  10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+  11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded.  In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+  13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation.  If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+  14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission.  For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this.  Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+			    NO WARRANTY
+
+  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+		     END OF TERMS AND CONDITIONS
+
+           How to Apply These Terms to Your New Libraries
+
+  If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change.  You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms of the
+ordinary General Public License).
+
+  To apply these terms, attach the following notices to the library.  It is
+safest to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the library's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser General Public
+    License as published by the Free Software Foundation; either
+    version 2.1 of the License, or (at your option) any later version.
+
+    This library is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the library, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the
+  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+  <signature of Ty Coon>, 1 April 1990
+  Ty Coon, President of Vice
+
+That's all there is to it!
+
+

Added: branches/bos/thirdparty/ltk-0.91/license.txt
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/license.txt	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,7 @@
+Ltk Lisp binding to the Tk toolkit.
+
+Ltk is licensed under the terms of the Lisp Lesser GNU
+Public License (http://opensource.franz.com/preamble.html), known as
+the LLGPL.  The LLGPL consists of a preamble (see above URL) and the
+LGPL.  Where these conflict, the preamble takes precedence. 
+Ltk is referenced in the preamble as the "LIBRARY."

Added: branches/bos/thirdparty/ltk-0.91/ltk-mw.asd
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/ltk-mw.asd	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,11 @@
+;; -*- lisp -*-
+
+(defsystem ltk-mw
+  :name "LTK-MW"
+  :version "0.5"
+  :author "Peter Herth"
+  :licence "LLGPL"
+  :description "Ltk Mega-Widgets"
+  :long-description "A collection of higher-level widgets built on top of Ltk"
+  :depends-on (:ltk)
+  :components ((:file "ltk-mw")))

Added: branches/bos/thirdparty/ltk-0.91/ltk-mw.lisp
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/ltk-mw.lisp	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,636 @@
+#|
+
+ This software is Copyright (c) 2004 Peter Herth <herth at peter-herth.de>
+
+ Peter Herth grants you the rights to distribute
+ and use this software as governed by the terms
+ of the Lisp Lesser GNU Public License
+ (http://opensource.franz.com/preamble.html),
+ known as the LLGPL.
+ 
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ 
+|#
+
+#|
+
+This is the Ltk megawidgets package. It consists of widgets usable
+for Ltk, written in Lisp/tcl. So wherever the Ltk package runs, this
+extensing package should run as well.
+
+
+Widgets offered are:
+
+o progress
+    A widget displaying a progress bar
+
+o history-entry
+    An entry widget keeping the history of previous input (which can be
+    browsed through with cursor up and down)
+
+o treelist
+    A widget to display a tree-like structure by a set of listboxes.
+
+o tooltip
+    Shows tooltips for registered widgets
+   
+|#
+
+(defpackage :ltk-mw
+  (:use :common-lisp :ltk)
+  (:export
+   #:progress
+   #:percent
+   #:bar-color
+   #:redraw-on-resize
+   #:history-entry
+   #:history
+   #:clear-history
+   #:menu-entry
+   #:append-item
+   #:delete-item
+   #:treelist
+   #:treelist-has-children
+   #:treelist-children
+   #:treelist-name
+   #:treelist-select
+   #:gtree
+   #:tooltip
+   #:show
+   #:clear
+   #:cancel-tooltip
+   #:popup-time
+   #:register-tooltip
+   #:schedule-tooltip
+
+   ;; list-select widget
+   #:list-select
+   #:data
+   #:list-select-display
+   #:selected-elements
+   #:ltk-mw-demo
+   ))
+
+(in-package :ltk-mw)
+ 
+
+;;;; mixin class for widget construction
+;;;; for widgets inheriting from redraw-on-resize the generic function
+;;;; redraw is called, whenever the widget is resized (e.g. by window resize)
+;;;;
+
+
+(defgeneric redraw (widget))
+
+
+(defclass redraw-on-resize ()
+  ())
+
+(defmethod initialize-instance :after ((r redraw-on-resize) &key)
+  (bind r "<Configure>" (lambda (evt) (declare (ignore evt))
+			  (redraw r))))
+
+
+;;;; progress bar
+
+(defclass progress (redraw-on-resize canvas)
+  ((rect :accessor rect)
+   (color :accessor bar-color :initarg :color :initform :blue)
+   (percent :accessor percent :initform 0 :initarg :percent)
+   (text-display :accessor text-display :initform nil :initarg :text-display)
+   ))
+
+(defmethod redraw ((progress progress))
+  (let ((width (window-width progress))
+        
+	(height (window-height progress)))
+    (set-coords progress  (text-display progress) (list (truncate width 2) (truncate height 2)))
+    (set-coords progress (rect progress)
+		(list 0 0 (truncate (* (percent progress) width) 100) height))))
+
+(defmethod initialize-instance :after ((progress progress) &key)
+  (configure progress :borderwidth 2 :relief :sunken)
+  (setf (rect progress) (create-rectangle progress 0 0 0 20))
+  (setf (text-display progress) (make-instance 'canvas-text :canvas progress :x 0 :y 0 :text ""))
+  (configure (text-display progress) :anchor :center :fill :yellow)
+  (itemconfigure progress (rect progress) :fill    (bar-color progress))
+  (itemconfigure progress (rect progress) :outline (bar-color progress)))
+
+(defmethod (setf bar-color) :after (val (progress progress))
+  (declare (ignore val))
+  (itemconfigure progress (rect progress) :fill (bar-color progress))
+  (itemconfigure progress (rect progress) :outline (bar-color progress)))
+
+(defmethod (setf percent) :after (val (progress progress))
+  (declare (ignore val))
+  (redraw progress))
+
+(defmethod (setf text) (value (progress progress))
+  (configure (text-display progress) :text value))
+
+;;;; history entry widget
+;;;;
+;;;; Entry widget with history of all text entered.
+;;;; 
+
+
+(defclass history-entry (entry)
+  ((history :accessor history :initform (list))
+   (history-pos :accessor history-pos :initform -1)
+   (keepinput :accessor keepinput :initform nil :initarg :keepinput)
+   ))
+
+(defgeneric add-history (entry txt))
+(defmethod add-history ((entry history-entry) txt)
+  (if (> (length txt) 0)
+      (push txt (history entry)))
+  (setf (history-pos entry) -1))
+
+(defgeneric clear-history (entry))
+(defmethod clear-history ((entry history-entry))
+  (setf (history entry) nil)
+  (setf (history-pos entry) -1))
+
+(defmethod initialize-instance :after ((entry history-entry) &key command)
+  
+  (bind entry "<KeyPress-Return>"
+	(lambda (event)
+	  (declare (ignore event))	  
+	  (let ((txt (text entry)))
+	    (add-history entry txt)
+	    (if (keepinput entry)
+		(entry-select entry 0 "end")
+		(setf (text entry) ""))
+	    (ltk::callback (ltk::name entry) (list txt))	   
+	    )))
+  
+  (bind entry "<KeyPress-Up>"
+	(lambda (event)
+	  (declare (ignore event))
+	  (when (< (history-pos entry) (1- (length (history entry))))
+	    (incf (history-pos entry))
+	    (let ((val (nth (history-pos entry) (history entry))))
+	    (when val
+	      (setf (text entry) val)
+		    )))))
+  
+  (bind entry "<KeyPress-Down>"
+	(lambda (event)
+	  (declare (ignore event))					
+	  (if (>= (history-pos entry) 0)
+	      (progn
+		(decf (history-pos entry))
+		(if (>= (history-pos entry) 0)
+		    (setf (text entry) (nth (history-pos entry) (history entry)))
+		  (setf (text entry) "")))
+	    (progn	    
+	      (setf (text entry) "")))))
+
+  (when command (setf (command entry) command))
+  )
+
+(defmethod (setf command) (val (entry history-entry))
+  (ltk::add-callback (ltk::name entry) val))
+
+;;;;
+
+;;;; menu entry
+
+(defclass menu-entry (entry)
+  ((menu :accessor menu)
+   (entries :accessor entries :initform nil))
+  )
+
+(defmethod initialize-instance :after ((entry menu-entry) &key command content)
+  (bind entry "<KeyPress-Return>"
+	(lambda (event)
+	  (declare (ignore event))
+	  (ltk::callback (ltk::name entry) (list (text entry)))))
+
+  (let ((mp (make-menu nil "Popup")))
+    (setf (menu entry) mp)
+    (dolist (c content)
+      (append-item entry c))
+
+    
+    (bind entry "<1>" (lambda (event)
+			(declare (ignore event))
+			(popup mp (+ 3 (window-x entry))  (+ 3 (window-y entry))))))
+  (when command
+    (setf (command entry) command)))
+
+(defmethod (setf command) (val (entry menu-entry))
+  (ltk::add-callback (ltk::name entry) val))
+
+(defgeneric append-item (entry item))
+(defmethod append-item ((entry menu-entry) item)
+  (setf (entries entry) (append (entries entry) (list item)))
+  (make-menubutton (menu entry) item (lambda ()
+				       (setf (text entry) item)			      
+				       (ltk::callback (ltk::name entry) (list item))
+				       
+				       )))
+(defun remove-nth (n list)
+  (concatenate 'list (subseq list 0 n) (subseq list (1+ n))))
+
+(defgeneric delete-item (entry index))
+(defmethod delete-item ((entry menu-entry) index)
+  (when (< index (length (entries entry)))
+    (setf (entries entry) (remove-nth index (entries entry)))
+    (menu-delete (menu entry) index))
+  )
+
+
+(defun demo ()
+  (with-ltk ()
+   (let* ((status '(("critical" 10 "red")
+		    ("severe"  20 "orange")
+		    ("normal" 50 "darkgreen")
+		    ))
+	  (f1 (make-instance 'frame))
+	  (lstatus (make-instance 'label :master f1 :text "Status: "))
+	  (bar (make-instance 'progress :master f1))
+	  (f2 (make-instance 'frame))
+	  (entry (make-instance 'menu-entry :master f2 :content (mapcar #'first status)))
+	  )
+     (pack f1 :side :top)
+     (pack lstatus :side :left)
+     (pack bar :side :left)
+     (pack f2 :side :top)
+     (pack entry :side :left)
+     )))
+
+
+;;; tree list widget
+
+(defclass treelist (frame)
+  ((depth   :reader depth :initarg :depth :initform 3
+	    :documentation "number of listboxes to display")
+   (listbox :accessor listbox :initform nil
+	    :documentation "array with the displayed listboxes")
+   (data    :accessor data :initarg :data :initform nil
+	    :documentation "root node to be displayed (its children fill the first box)")
+   (entries :accessor entries
+	    :documentation "array of the lists displayed in the listbox")
+   (offset  :accessor offset :initform 0
+	    :documentation "index difference between data depth position and listbox position")
+   (selection :accessor selection :initform nil
+	      :documentation "list of selected values")
+   ))
+
+(defclass tree-entry ()
+  ((nodes :accessor nodes :initform nil :initarg :nodes)
+   (index :accessor index :initform nil :initarg :index)
+   (parent-node :accessor parent-node :initform nil :initarg :parent-node)
+   (selected-node :accessor selected-node :initform nil :initarg :selected-node)))
+
+(defmethod initialize-instance :after ((tree treelist) &key listwidth listheight (background :white))
+  (setf (listbox tree) (make-array (depth tree)))
+  (setf (entries tree) (make-array (depth tree) :adjustable t :fill-pointer 0))
+  (dotimes (i (depth tree))
+    (let ((nr i)
+	  (sb (make-instance 'scrolled-listbox :master tree :width listwidth :height listheight )))
+      (grid-forget (ltk::hscroll sb))
+      (setf (aref (listbox tree) nr) (listbox sb))
+      (configure (listbox sb) :background background :selectforeground :white :selectbackground :blue)
+      (pack sb :side :left :expand t :fill :both)
+      (bind (aref (listbox tree) nr) "<<ListboxSelect>>"
+	    (lambda (event)
+	      (declare (ignore event))
+	      (treelist-listbox-select tree nr)))))
+  (when (data tree)
+    (treelist-set-root-node tree (data tree)))
+  )
+
+(defgeneric treelist-set-root-node (tree node))
+(defmethod treelist-set-root-node ((tree treelist) node)
+  (setf (data tree) node)
+  (treelist-setlist tree node 0))
+
+(defgeneric treelist-clearlist (tree index))
+(defmethod treelist-clearlist ((tree treelist) index)
+  (when (< index (depth tree))
+    (setf (aref (entries tree) index) nil)
+    (listbox-clear (aref (listbox tree) index))
+    (treelist-clearlist tree (1+ index))))
+
+(defgeneric treelist-setlist (tree parent-node nr))
+(defmethod treelist-setlist ((tree treelist) parent-node nr)
+  (when (< nr (depth tree))
+    (treelist-clearlist tree nr)
+    (let ((entry (make-instance 'tree-entry
+				:nodes (treelist-children tree parent-node)
+				:index nr
+				:parent-node parent-node)))
+      (setf (aref (entries tree) nr) entry)
+      (listbox-append (aref (listbox tree) nr) 
+                      (mapcar (lambda (node)
+                                (treelist-name tree node)) (nodes entry))))))
+
+(defgeneric treelist-listbox-select (tree nr))
+(defmethod treelist-listbox-select ((tree treelist) nr)
+  (let* ((listbox (aref (listbox tree) nr))
+	 (oldsel (selected-node (aref (entries tree) nr)))
+	 (sel (car (listbox-get-selection listbox))))
+    (when oldsel
+      (listbox-configure listbox oldsel :background :white :foreground :black))
+    (setf (selected-node (aref (entries tree) nr)) sel)
+    (when sel
+      (listbox-configure listbox sel :background :blue :foreground :white)
+      (let* ((entry (aref (entries tree) nr))
+	     (selected-node (nth sel (nodes entry))))
+        (listbox-configure listbox sel :background :blue :foreground :white)
+        (treelist-select tree selected-node)
+        (treelist-setlist tree selected-node (1+ nr))
+        ))))
+  
+(defgeneric treelist-select (tree node)
+  (:documentation "callback for selecting a tree node"))
+
+(defmethod treelist-select (tree node)
+    (declare (ignore tree node)))
+
+(defgeneric treelist-children (tree node)
+  (:documentation "list of children for a node in a tree"))
+
+(defmethod treelist-children (tree node)
+  (declare (ignore tree node))
+  nil)
+
+(defgeneric treelist-has-children (tree node)
+  (:documentation "is non-nil, if the node has children"))
+
+(defmethod treelist-has-children (tree node)
+  (treelist-children tree node))
+
+(defgeneric treelist-name (tree node)
+  (:documentation "String to display in the tree list for a node"))
+
+(defmethod treelist-name (tree (node string))
+  (declare (ignore tree)))
+
+;;; demo tree widget
+
+(defparameter *tree*
+  '(nil
+    ("BMW"
+     ("3er"
+      "318"
+      "320"
+      "325")
+     ("5er"
+      "520"
+      "530"
+      "535"
+      "M5"))
+    ("Mercedes"
+     ("A-Klasse"
+      "A 160"
+      "A 180")
+     ("C-Klasse"
+      "C 200"
+      "C 250")
+     ("S-Klasse"
+      "400 S"
+      "500 S"
+      "600 S"))
+    ("VW"
+     ("Golf"
+      ("TDI"
+       "1.8"
+       "2.0"
+       "16 V")
+      "GTI"))))    
+
+(defclass demo-tree (treelist)
+  ())
+
+(defmethod treelist-name ((tree demo-tree) (node list))
+  (car node))
+
+(defmethod treelist-children ((tree demo-tree) (node string))
+  nil)
+
+(defmethod treelist-children ((tree demo-tree) (node list))
+  (rest node))
+
+(defun treelist-test ()
+  (with-ltk ()
+    (pack (make-instance 'demo-tree :data *tree*) :expand t :fill :both)))
+
+;;;; tooltip widget
+
+(defclass tooltip (toplevel)
+  ((label :accessor tooltip-label :initarg :label)
+   (popup-time :accessor popup-time :initform 1000 :initarg :popup-time)
+   ))
+
+(defparameter *tooltip-afterid* nil)
+
+(defmethod initialize-instance :after ((tooltip tooltip) &key)
+  (withdraw tooltip)
+  (setf (tooltip-label tooltip) (make-instance 'label :text "" :background :yellow3 :master tooltip :justify :left))
+  (set-wm-overrideredirect tooltip 1)
+  (pack (tooltip-label tooltip) :side :left :expand t :fill :both))
+
+(defgeneric show (tooltip text x y))
+(defmethod show ((tooltip tooltip) text x y)
+  (let ((txt (typecase text
+               (function
+                (with-output-to-string (s)
+                  (funcall text s)))
+               (string
+                text)
+               (t
+                (format nil "~a" text)))))
+    (when (and txt (> (length txt) 0))
+      (setf (text (tooltip-label tooltip)) txt)
+      (set-geometry-xy tooltip (truncate x)  (truncate y))
+      (normalize tooltip)
+      (raise tooltip))))
+
+(defgeneric popup-tooltip (tooltip))
+(defmethod popup-tooltip ((tooltip tooltip))
+  (normalize tooltip)
+  (raise tooltip))
+ 
+(defgeneric schedule-tooltip (tooltip text x y time)
+  )
+
+(defmethod schedule-tooltip (tooltip text x y time)
+  (cancel-tooltip tooltip)
+  (setf *tooltip-afterid*
+ 	(after time (lambda ()
+ 		      (show tooltip text x y)))))
+
+(defgeneric cancel-tooltip (tooltip))
+(defmethod cancel-tooltip ((tooltip tooltip))
+  (when *tooltip-afterid*
+    (after-cancel *tooltip-afterid*)
+    (setf *tooltip-afterid* nil)))
+
+(defmethod clear ((tooltip tooltip))
+  (withdraw tooltip))
+
+(defgeneric register-tooltip (tooltip widget content))
+(defmethod register-tooltip ((tooltip tooltip) (widget widget) content)
+  (bind widget "<Leave>" (lambda (event)
+			   (declare (ignore event))
+			   (clear tooltip)
+			   (cancel-tooltip tooltip))
+	:append t)
+  (bind widget "<Motion>" (lambda (event)
+			    (clear tooltip)
+			    (cancel-tooltip tooltip)
+			    (schedule-tooltip tooltip
+					      content
+					      (+ 30 (event-root-x event))
+					      (+ 10 (event-root-y event))
+					      (popup-time tooltip)))
+	:append t)
+  widget)
+
+(defmethod configure ((tooltip tooltip) option value &rest others)
+  (apply #'configure (tooltip-label tooltip) option value others))
+
+(defun tooltip-test ()
+  (with-ltk ()
+    (let ((b (make-instance 'button :text "Tooltip"))
+	  (tooltip (make-instance 'tooltip)))
+      (pack b)
+      (configure tooltip :borderwidth 2 :relief :ridge)
+      (register-tooltip tooltip b (lambda (s) (format s "~d" (random 100)))))))
+
+;;;; graphical tree widget
+
+(defclass gtree (canvas)
+  ((data :accessor data :initform nil :initarg :data)
+   ))
+
+(defgeneric render-tree (g d x y))
+(defmethod render-tree ((g gtree) data x y)
+  (let ((h 0))
+    (when (gtree-content g data)
+      (if (gtree-children g data)
+	(dolist (c (gtree-children g data))
+	  (incf h (render-tree g c (+ x 100) (+ y h))))
+	(incf h 30))
+      (let* ((c (gtree-render-node g (gtree-content g data)))
+	     (w (create-window g x (+ y (truncate h 2)) c)))
+        (declare (ignore w))
+	))
+    h))
+  
+
+(defmethod initialize-instance :after ((g gtree) &key)
+  (render-tree g (data g) 0 0)
+  )
+
+(defgeneric gtree-children (gtree node)
+  )
+
+(defgeneric gtree-content (gtree node)
+  )
+
+(defgeneric gtree-render-node (gtree node))
+
+
+(defclass gtree-demo (gtree)
+  ())
+
+(defmethod gtree-children ((d gtree-demo) (node list))
+  (rest node))
+
+(defmethod gtree-content ((d gtree-demo) (node list))
+  (first node))
+
+(defmethod gtree-render-node ((d gtree-demo) node )
+  (make-instance 'label :master d :text node :borderwidth 3 :relief :raised :background :grey :height 1 :width 10))
+
+
+(defun gtree-demo ()
+  (with-ltk
+   ()
+   (let* ((tree (make-instance 'gtree-demo
+			       :data '(a (b (d (h)
+					       (i))
+					    (e (j)
+					       (k)))
+					 (c (f)
+					    (g))))))
+     (pack tree :side :left :expand t :fill :both)
+     (format t "data: ~s~%" (data tree)) (force-output)
+     )))
+	    
+;;; list-select box widget
+
+(defclass list-select (listbox)
+  ((data :accessor data :initarg :data :initform nil)
+   ))
+
+(defgeneric list-select-display (select item))
+
+(defmethod list-select-display ((select list-select) item)
+  (format nil "~a" item))
+
+(defgeneric selected-elements (select))
+
+(defmethod selected-elements ((select list-select))
+  (let ((selection (listbox-get-selection select)))
+    (when selection
+      (mapcar (lambda (index)
+                (nth index (data select)))
+              selection))))
+
+(defmethod (setf data) :after (val (select list-select))
+  (listbox-clear select)
+  (listbox-append select (mapcar (lambda (item)
+                                   (list-select-display select item))
+                                 (data select))))
+
+
+;;; demo
+
+(defclass list-select-demo-entry ()
+  ((file :accessor file :initarg :file :initform nil)
+   (size :accessor size :initarg :size :initform 0)))
+
+(defmethod list-select-display ((ls list-select) (entry list-select-demo-entry))
+  (format nil "~a ~d Bytes" (namestring (file entry)) (size entry)))
+
+(defun make-list-select-demo (&optional (master nil))
+  (let* ((f (make-instance 'frame :master master))
+         (ls (make-instance 'list-select :master f :selectmode :multiple))
+         (f2 (make-instance 'frame :master f))
+         (lsize (make-instance 'label :master f2 :text "Total Size:"))
+         (bsize (make-instance 'button :text "Calc" :master f2
+                               :command (lambda ()
+                                          (setf (text lsize)
+                                                (format nil "Total Size: ~a" (loop for e in (selected-elements ls)
+                                                                                  summing (size e))))))))
+    (pack ls :side :top :expand t :fill :both)
+    (pack f2 :side :top :fill :x)
+    (pack bsize :side :left)
+    (pack lsize :side :left)
+    (setf (data ls)
+          (mapcar (lambda (p)
+                    (make-instance 'list-select-demo-entry
+                                   :file p
+                                   :size (with-open-file (s p)
+                                           (file-length s))))
+                  (directory (make-pathname :name :wild :type :wild))))
+    f))
+
+(defun list-select-demo ()
+  (with-ltk ()
+    (let ((f (make-list-select-demo)))
+      (pack f :side :top :expand t :fill :both))))
+
+
+(defun ltk-mw-demo ()
+  (with-ltk ()
+    (pack (make-list-select-demo) :side :top :expand t :fill :both)
+    ))

Added: branches/bos/thirdparty/ltk-0.91/ltk-quicktime.lisp
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/ltk-quicktime.lisp	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,44 @@
+;;; quicktime specific extension to ltk
+;;; requires the QuickTimeTcl tk extension installed (the full distribution
+;;; of TkAqua includes it)
+
+(defpackage :ltk-quicktime
+  (:use :common-lisp :ltk)
+  (:export
+   #:quicktime
+   #:play-movie
+   #:stop-movie))
+
+(in-package :ltk-quicktime)
+
+(eval-when (:load-toplevel)
+  (setf *init-wish-hook* (append *init-wish-hook*
+				 (list (lambda ()
+				   (send-wish "package require QuickTimeTcl"))
+				       ))))
+
+(defclass quicktime (widget)
+  (
+   ))
+
+(defmethod initialize-instance :after ((m quicktime) &key file url width height resizable)
+  (format-wish "movie ~a~@[ -file {~a}~]~@[ -url {~a}~]~@[ -width ~a~]~
+                ~@[ -height ~a~]~@[~* -resizable 1~]"
+	       (widget-path m) file url width height resizable))
+
+(defun play-movie (quicktime)
+  (format-wish "~a play" (widget-path quicktime)))
+
+(defun stop-movie (quicktime)
+  (format-wish "~a stop" (widget-path quicktime)))
+
+
+#|
+package require QuickTimeTcl
+movie .m -file U137.mov
+pack .m
+
+package require QuickTimeTcl
+movie .m -url "http://www.apple.com/bbc.mov"
+pack .m
+|#
\ No newline at end of file

Added: branches/bos/thirdparty/ltk-0.91/ltk-remote.asd
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/ltk-remote.asd	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,19 @@
+;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+
+(defpackage #:ltk-remote-asd
+  (:use :cl :asdf))
+
+(in-package :ltk-remote-asd)
+
+(defsystem ltk-remote
+  :name "LTK-REMOTE"
+  :version "0.8.0"
+  :author "Peter Herth"
+  :licence "LGPL"
+  :description "LTK remote"
+  :long-description "Remote Lisp bindings for the Tk toolkit"
+  :components ((:file "ltk-remote"))
+  :depends-on ("ltk")
+  )
+

Added: branches/bos/thirdparty/ltk-0.91/ltk-remote.lisp
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/ltk-remote.lisp	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,332 @@
+#|
+ Ltk-remote  networking support for the Ltk library
+
+ This software is Copyright (c) 2003 Peter Herth <herth at peter-herth.de>
+
+ Peter Herth grants you the rights to distribute
+ and use this software as governed by the terms
+ of the Lisp Lesser GNU Public License
+ (http://opensource.franz.com/preamble.html),
+ known as the LLGPL.
+ 
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ 
+|#
+
+#+:sbcl (require 'sb-bsd-sockets)
+
+(defpackage :ltk-remote
+  (:use :common-lisp :ltk
+        #+(or :cmu :scl) :ext
+       #+:sbcl :sb-ext
+       #+:sbcl :sb-thread
+       #+:sbcl :sb-bsd-sockets)
+  (:export
+   #:with-remote-ltk))
+
+(in-package ltk-remote)
+
+;;; cmu version
+
+#+:cmu
+(defun ip-address-string (address)
+  (format nil "~D.~D.~D.~D"
+          (ldb (byte 8 24) address)
+          (ldb (byte 8 16) address)
+          (ldb (byte 8 8)  address)
+          (ldb (byte 8 0)  address)))
+
+(defvar *stop-remote* nil)
+
+#+:cmu
+(defmacro with-remote-ltk (port bindings form &rest cleanup)
+  `(mp:make-process
+    (lambda ()
+      (setf *stop-remote* nil)
+      (let ((fd (ext:create-inet-listener ,port :stream :reuse-address t)))
+        (unwind-protect
+             (loop
+                (when (or *stop-remote* mp::*quitting-lisp*)
+                  (return))
+                (let ((winp (mp:process-wait-until-fd-usable fd :input 2)))
+                  (when (or *stop-remote* mp::*quitting-lisp*)
+                    (return))
+                  (when winp
+                    (let ((new-fd (ignore-errors (ext:accept-tcp-connection fd))))
+                      (when new-fd
+                        (mp:make-process
+                         (lambda ()
+                           (multiple-value-bind (server-address server-port)
+                               (ext:get-socket-host-and-port new-fd)
+                             (multiple-value-bind (remote-address remote-port)
+                                 (ext:get-peer-host-and-port new-fd)
+                               (flet ((host-name (address)
+                                        (let ((host-entry (ext:lookup-host-entry address)))
+                                          (if host-entry
+                                              (ext:host-entry-name host-entry)
+                                              (ip-address-string address)))))
+                                 (let ((stream (sys:make-fd-stream new-fd :input t :output t))
+                                       (server-name (host-name server-address))
+                                       (remote-name (host-name remote-address)))
+                                   (format t "Connection to ~A:~D from ~A:~D at "
+                                           server-name server-port
+                                           remote-name remote-port)
+                                   (ext:format-universal-time t (get-universal-time)
+                                                              :style :rfc1123)
+                                   (setf (mp:process-name mp:*current-process*)
+                                         (format nil "LTK connection to ~A:~D from ~A:~D"
+                                                 server-name server-port
+                                                 remote-name remote-port))
+                                   (let ,bindings
+                                     (ltk::call-with-ltk (lambda ()
+                                                           ,form)
+                                                         :stream stream)
+                                     , at cleanup))))))))))))
+          (unix:unix-close fd))))
+    :name (format nil "LTK connection listener on port ~D" ,port)))
+
+#+:cmu
+(defun stop-server ()
+  (setf *stop-remote* t))
+
+#+:cmu
+(defun start-mp ()
+   #+nil (setf mp::*idle-process* mp::*initial-process*)
+   (mp::startup-idle-and-top-level-loops))
+
+
+#+:cmu
+(defun start-remote (port)
+  (multiprocessing::make-process #'(lambda () (ltk-remote-server port))))
+
+;;; SCL version
+
+#+:scl
+(defmacro with-remote-ltk (port bindings form &rest cleanup)
+  `(thread:thread-create
+    (lambda ()
+      (setf *stop-remote* nil)
+      (let ((fd (ext:create-inet-listener ,port :stream :reuse-address t)))
+        (unwind-protect
+             (loop
+                (when (or *stop-remote* thread:*quitting-lisp*)
+                  (return))
+                (let ((winp (sys:wait-until-fd-usable fd :input 2)))
+                  (when (or *stop-remote* thread:*quitting-lisp*)
+                    (return))
+                  (when winp
+                    (let ((new-fd (ignore-errors (ext:accept-tcp-connection fd))))
+                      (when new-fd
+                        (thread:thread-create
+                         (lambda ()
+                           (multiple-value-bind (server-address server-port)
+                               (ext:get-socket-host-and-port new-fd)
+                             (multiple-value-bind (remote-address remote-port)
+                                 (ext:get-peer-host-and-port new-fd)
+                               (flet ((host-name (address)
+                                        (let ((host-entry (ext:lookup-host-entry address)))
+                                          (if host-entry
+                                              (ext:host-entry-name host-entry)
+                                              (ext:ip-address-string address)))))
+                                 (let ((stream (sys:make-fd-stream new-fd :input t :output t))
+                                       (server-name (host-name server-address))
+                                       (remote-name (host-name remote-address)))
+                                   (format t "Connection to ~A:~D from ~A:~D at "
+                                           server-name server-port
+                                           remote-name remote-port)
+                                   (ext:format-universal-time t (get-universal-time)
+                                                              :style :rfc1123)
+                                   (setf (thread:thread-name thread:*thread*)
+                                         (format nil "LTK connection to ~A:~D from ~A:~D"
+                                                 server-name server-port
+                                                 remote-name remote-port))
+                                   (let ,bindings
+                                     (ltk::call-with-ltk (lambda ()
+                                                           ,form)
+                                                         :stream stream)
+                                     , at cleanup))))))))))))
+          (unix:unix-close fd))))
+    :name (format nil "LTK connection listener on port ~D" ,port)))
+
+#+:scl
+(defun stop-server ()
+  (setf *stop-remote* t))
+
+
+;;; sbcl version
+
+#+:sbcl
+(defun stop-server ()
+  (setf *stop-remote* t))
+
+
+#+:sbcl
+(defun make-socket-server (port)
+  (let ((socket (make-instance 'inet-socket :type :stream :protocol :tcp)))
+    (socket-bind socket #(0 0 0 0) port)
+    (socket-listen socket 100)
+    socket))
+
+#+:sbcl
+(defun get-connection-stream (server-socket)
+  (let* ((s (socket-accept server-socket))
+	     (stream (socket-make-stream s :input t :output t)))
+    stream)) ;; do we need to return s as well ?
+
+#+:sbcl
+(defmacro with-remote-ltk (port bindings form &rest cleanup)
+  `(make-thread
+    (lambda () 
+      (setf *stop-remote* nil)      
+      (let ((socket (make-socket-server ,port)))
+	(loop
+	  (when *stop-remote*
+	    (socket-close socket)
+	    (return))
+	  (let* ((s (socket-accept socket))
+		 (stream (socket-make-stream s :input t :output t)))
+	    (make-thread
+             (lambda ()
+               (let ,bindings
+                 (ltk::call-with-ltk (lambda ()
+                                       ,form)
+                                     :stream stream)
+                 , at cleanup)))))
+        (socket-close socket)))))
+;; lispworks version
+(defvar *server* nil)
+#+:lispworks
+(defun stop-server ()
+ (mp:process-kill ltk-remote::*server*))
+#+:lispworks
+(require "comm")
+#+:lispworks
+(defmacro with-remote-ltk (port bindings form &rest cleanup)
+  `(setf ltk-remote::*server*
+         (comm:start-up-server :function 
+                               (lambda (handle)
+                                 (let ((stream (make-instance 'comm:socket-stream
+                                                              :socket handle
+                                                              :direction :io
+                                                              :element-type
+                                                              'base-char)))
+                                   (mp:process-run-function
+                                    (format nil "ltk-remote ~D" handle)
+                                    '()
+                                    (lambda ()
+                                      (let ,bindings
+                                        (ltk::call-with-ltk (lambda ()
+                                                              ,form)
+                                                            :stream stream)
+                                        , at cleanup)))))
+                               :service ,port)))
+
+;; allegro version
+
+#+:allegro
+(progn
+  (require :sock)
+  (use-package :socket))
+#+:allegro
+(defmacro with-remote-ltk (port bindings form &rest cleanup)
+  `(setf ltk-remote::*server*
+         (mp:process-run-function
+          (format nil "ltk remote server [~a]" ,port)
+          (lambda ()
+            (let ((server (make-socket :type :stream :address-family :internet :connect :passive
+                                       :local-host "0.0.0.0" :local-port ,port
+                                       :reuse-address t :keepalive t)))
+              (restart-case 
+                  (unwind-protect
+                       (loop
+                          (let ((connection (accept-connection server)))
+                            (mp:process-run-function
+                             (format nil "ltk remote connection <~s>"  (ipaddr-to-hostname
+                                                                        (remote-host connection)))
+                             (lambda ()
+                               (let ,bindings
+                                 (ltk::call-with-ltk (lambda ()
+                                                       ,form)
+                                                     :stream connection)
+                                 , at cleanup)))))
+                    (close server))
+                (quit ()
+                  :report "Shutdown ltk remote server"
+                  nil)))))))
+
+;;; simple test function
+
+(defun lrtest (port)
+  (with-remote-ltk
+   port ()
+   (let* ((txt (make-text nil :width 40 :height 10))
+ 	  (f (make-instance 'frame ))
+ 	  (b (make-instance 'button :master f :text  "Hallo"
+ 			    :command (lambda ()
+					(append-text txt (format nil "Hallo pressed~&")))))
+ 	  (b2 (make-instance 'button :master f :text "Quit"
+ 			     :command (lambda ()
+					(setf *exit-mainloop* t))))
+ 	  (b3 (make-instance 'button :master f :text "Clear"
+ 			     :command (lambda ()
+				       (clear-text txt ))))
+	  )
+     (pack b :side "left")
+     (pack b3 :side "left")
+     (pack b2 :side "left")
+     (pack f :side "top")
+     (pack txt :side "bottom")
+     )))
+
+
+(defun rlb-test2 ()
+  (with-remote-ltk 8080 ()
+   (let* ((last nil)
+	  (l (make-instance 'listbox))
+	  (wf (make-instance 'frame))
+	  (lbl (make-instance 'label :master wf :text "Widget:"))
+	  (f (make-instance 'frame :master wf))
+	  (canv (make-instance 'canvas :master f :width 100 :height 100))
+	  (scanv (make-instance 'scrolled-canvas :master f))
+	  (widgets (list
+		    (make-instance 'button :master f :text "Button")
+		    (make-instance 'label :master f :text "Label")
+		    canv
+		    scanv
+		    ))
+	;  (b (make-instance 'button :text "Show" :command ))
+	  )
+     (bind l "<Button-1>" (lambda (event)
+                            (declare (ignore event))
+			    (let ((sel (listbox-get-selection l)))
+			      (format t "selection: ~a~%" sel)
+			      (force-output)
+			      (if (first sel)
+				  (let ((w (nth (first (listbox-get-selection l)) widgets)))
+				    (when last
+				      (pack-forget last))
+				    (pack w)
+				    (setf last w))))))
+     (pack l :expand 1 :fill "y")
+     (pack wf :expand 1 :fill "both")
+     ;(grid l 0 0)
+     ;(grid wf 0 1)
+
+     (pack lbl :side "top")
+     (pack f :expand 1 :fill "both")
+     (configure wf "borderwidth" 2)
+     (configure wf "relief" "sunken")
+     
+     ;(pack b)
+     (create-line canv (list 0 0 40 40 60 20 80 80 60 60 40 80 20 60 0 80 0 0))
+     (create-line (canvas scanv) (mapcar (lambda (x)
+					   (* x 10))
+					 (list 0 0 40 40 60 20 80 80 60 60 40 80 20 60 0 80 0 0)))
+     (scrollregion (canvas scanv) 0 0 800 800)
+     (listbox-append l (mapcar (lambda (x) (type-of x)) widgets))
+
+     )))
+

Added: branches/bos/thirdparty/ltk-0.91/ltk-tile.lisp
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/ltk-tile.lisp	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,76 @@
+#|
+
+ This software is Copyright (c) 2005  Peter Herth <herth at peter-herth.de>
+
+ Peter Herth grants you the rights to distribute
+ and use this software as governed by the terms
+ of the Lisp Lesser GNU Public License
+ (http://opensource.franz.com/preamble.html),
+ known as the LLGPL.
+ 
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ 
+|#
+
+(defpackage :ltk-tile
+  (:use :common-lisp
+	:ltk
+	)
+  (:export
+   #:activate-tile
+   #:style-default
+   #:style-element-names
+   #:theme-names
+   #:use-theme
+   #:tile-test
+   ))
+
+(in-package :ltk-tile)
+(defparameter *tile-widgets* '(button check-button entry label radio-button scrollbar  ))
+;;; checkbutton combobox dialog notebook paned progressbar treeview menubutton separator
+
+(defun require-tile ()
+  (send-wish "package require tile"))
+
+(defun activate-tile ()
+  (pushnew #'require-tile *init-wish-hook*)
+  (dolist (widget *tile-widgets*)
+    (let ((w (make-instance widget)))
+      (unless (search "ttk::" (widget-class-name w))
+	(setf (widget-class-name w) (concatenate 'string "ttk::" (widget-class-name w)))))))
+
+(defun theme-names ()
+  (send-wish "senddatastrings [style theme names]")
+  (ltk::read-data))
+
+(defun use-theme(name)
+  (format-wish "style theme use ~a" name))
+
+(defun style-element-names ()
+  (send-wish "senddatastrings [style element names]")
+  (ltk::read-data))
+
+(defun style-default (style &rest params)
+  (format-wish "style default ~A ~{ -~(~a~) {~a}~}" style params))
+
+(defun tile-test ()
+  (activate-tile)
+  (with-ltk ()
+     (let* ((mb (make-menubar))
+	    (mtheme (make-menu mb "Theme" ))
+	    (b (make-instance 'button :text "a button"))
+	    (l (make-instance 'label :text "a label"))
+	    (e (make-instance 'entry :text "an entry"))
+	    )
+       (pack (list l e b) :side :left)
+       (dolist (theme (theme-names))
+	 (let ((theme theme))
+	   (make-menubutton mtheme theme (lambda ()
+					   (use-theme theme)))))
+       )))
+
+	     
+       
\ No newline at end of file

Added: branches/bos/thirdparty/ltk-0.91/ltk.asd
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/ltk.asd	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,18 @@
+;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+
+(defpackage #:ltk-asd
+  (:use :cl :asdf))
+
+(in-package :ltk-asd)
+
+(defsystem ltk
+  :name "LTK"
+  :version "0.8.0"
+  :author "Peter Herth"
+  :licence "LGPL"
+  :description "LTK"
+  :long-description "Lisp bindings for the Tk toolkit"
+  :components ((:file "ltk"))
+  )
+

Added: branches/bos/thirdparty/ltk-0.91/ltk.lisp
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/ltk.lisp	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,3642 @@
+#|
+
+ This software is Copyright (c) 2003, 2004, 2005, 2006  Peter Herth <herth at peter-herth.de>
+ Portions Copyright (c) 2005 Thomas F. Burdick
+ Portions Copyright (c) 2006 Cadence Design Systems
+
+ The authors grant you the rights to distribute
+ and use this software as governed by the terms
+ of the Lisp Lesser GNU Public License
+ (http://opensource.franz.com/preamble.html),
+ known as the LLGPL.
+ 
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ 
+|#
+
+#|
+All tk commads as of version 8.4 with support information. "-" means not
+supported by purpose (look comment), "x" means supported, though some
+options may not be supported. 
+
+command      supported comment
+bell                 x
+bind                 x 
+bindtags               modifly the tag list of a widget that describes which events it gets
+bitmap               - see image
+button               x
+canvas               x 
+checkbutton          x
+clipboard            x (canvas get missing... tricky...)
+colors               - constants only
+console              - only on some platforms
+cursors              x 
+destroy              x
+entry                x
+event                  create and manage virtual events
+focus                x focus management functions
+font
+frame                x
+grab                  
+grid                 x
+image                x 
+keysyms              - constants only
+label                x
+labelframe           x
+listbox              x
+loadTk               -
+lower                x
+menu                 x
+menubutton           x
+message              x 
+option               -
+options              - only helpfile
+pack                 x
+panedwindow          x
+photo                x 
+place                x geometry manager using coordinates
+radiobutton          x
+raise                x
+scale                x 
+scrollbar            x
+selection
+send
+spinbox              x
+text                 x
+tk
+tk_bisque            - only for tk backwards compatibility
+tk_chooseColor
+tk_chooseDirectory
+tk_dialog
+tk_focusFollowsMouse 
+tk_focusNext
+tk_focusPrev
+tk_getOpenFile       x
+tk_getSaveFile       x
+tk_menuSetFocus      -
+tk_messageBox        x
+tk_optionMenu
+tk_popup
+tk_setPalette        -
+tk_textCopy
+tk_textCut
+tk_textPaste
+tkerror              -
+tkvars               -
+tkwait               
+toplevel             x
+winfo                x
+wm                   x 
+
+
+support of all config args as keywords to make-instance:
+
+bitmap               
+button               x
+canvas               x 
+checkbutton          x
+entry                x
+frame                x
+image                 
+label                x 
+labelframe           x 
+listbox              x 
+menu                  
+menubutton            
+message                
+panedwindow          x
+photo                  
+radiobutton          x
+scale                x
+scrollbar            x 
+spinbox              x 
+text                 x
+toplevel             x
+
+|#
+
+
+(defpackage :ltk
+  (:use :common-lisp
+        #+(or :cmu :scl) :ext
+	#+:sbcl :sb-ext
+	)
+  (:export #:ltktest                           
+           #:*ltk-version*
+           #:*cursors*
+           #:*debug-tk*
+           #:*break-mainloop*
+           #:*exit-mainloop*
+           #:*init-wish-hook*
+           #:*mb-icons*
+           #:*tk*
+           #:*wish*
+           #:wish-stream
+           #:*wish-args*
+           #:*wish-pathname*
+           #:*default-ltk-debugger*
+           #:add-pane
+           #:add-separator
+           #:after
+           #:after-cancel
+           #:after-idle
+           #:append-text
+           #:append-newline
+           #:ask-okcancel
+           #:ask-yesno
+           #:background
+           #:bbox
+           #:bell
+           #:bind
+           #:button
+           #:calc-scroll-region
+           #:canvas
+           #:canvas-line
+           #:canvas-oval
+           #:canvas-polygon
+           #:canvas-rectangle
+           #:canvas-text
+           #:canvas-image
+           #:canvas-arc
+           #:canvas-bbox
+           #:canvasx
+           #:canvasy
+           #:cget
+           #:check-button
+           #:choose-color
+           #:choose-directory
+           #:clear-text
+           #:clear
+           #:clipboard-append
+           #:clipboard-clear
+           #:clipboard-get
+           #:command
+           #:coords
+           #:configure
+           #:create-arc
+           #:create-bitmap
+           #:create-image
+           #:create-line
+           #:create-line*
+           #:create-menu2
+           #:create-oval
+           #:create-polygon
+           #:create-rectangle
+           #:create-text
+           #:create-window
+           #:debug-setting-keys
+           #:defargs
+           #:deiconify
+           #:destroy
+           #:do-execute
+           #:do-msg
+           #:entry
+           #:entry-select
+           #:exit-wish
+           #:event
+           #:event-x
+           #:event-y
+           #:event-keycode
+           #:event-char
+           #:event-mouse-button
+           #:event-root-x
+           #:event-root-y
+           #:focus
+           #:force-focus
+           #:forget-pane
+           #:format-wish
+           #:frame
+           #:geometry
+           #:get-open-file
+           #:get-save-file
+           #:grab
+           #:grab-release
+           #:grid
+           #:grid-columnconfigure
+           #:grid-configure
+           #:grid-forget
+           #:grid-rowconfigure
+           #:iconify
+           #:iconwindow
+           #:image-load
+           #:image-setpixel
+           #:cursor-index
+           #:input-box
+           #:insert-object
+           #:interior
+           #:itembind
+           #:itemconfigure
+           #:itemdelete
+           #:itemmove
+           #:itemlower
+           #:itemraise
+           #:label
+           #:labelframe
+           #:listbox
+           #:listbox-append
+           #:listbox-clear
+           #:listbox-configure
+           #:listbox-get-selection
+           #:listbox-nearest
+           #:listbox-select
+           #:load-text
+           #:lower
+           #:mainloop
+           #:make-items
+           #:make-canvas
+           #:make-frame
+           #:make-image
+           #:make-label
+           #:make-menu
+           #:make-menubar
+           #:make-menubutton
+           #:make-scrollbar
+           #:make-scrolled-canvas
+           #:make-text
+           #:make-toplevel
+           #:make-line
+           #:make-oval
+           #:make-polygon
+           #:make-rectangle
+           #:master
+           #:maxsize
+           #:menu
+           #:menubar
+           #:menubutton
+           #:menucheckbutton
+           #:menu-delete
+           #:menuradiobutton
+           #:message
+           #:message-box
+           #:minsize
+           #:move
+           #:move-all
+           #:normalize
+           #:on-close
+           #:on-focus
+           #:pack
+           #:pack-forget
+           #:pack-propagate
+           #:paned-window
+           #:photo-image
+           #:place
+           #:place-forget
+           #:popup
+           #:postscript
+           #:process-events
+           #:radio-button
+           #:raise
+           #:read-event
+           #:save-text
+           #:scale
+           #:screen-height
+           #:screen-height-mm
+           #:screen-mouse
+           #:screen-mouse-x
+           #:screen-mouse-y
+           #:screen-width
+           #:screen-width-mm
+           #:scrollbar
+           #:scrolled-canvas
+           #:scrolled-frame
+           #:scrolled-listbox
+           #:scrolled-text
+           #:scrollregion
+           #:search-all-text
+           #:search-next-text
+           #:see
+           #:send-wish
+           #:set-coords
+           #:set-coords*
+           #:set-focus-next
+           #:set-geometry
+           #:set-geometry-wh
+           #:set-geometry-xy
+           #:set-wm-overrideredirect
+           #:spinbox
+           #:start-wish
+           #:tag-bind
+           #:tag-configure
+           #:text
+           #:textbox
+           #:tkobject
+           #:toplevel
+           #:value
+           #:widget
+           #:widget-path
+           #:window-height
+           #:window-id
+           #:window-width
+           #:window-x
+           #:window-y
+           #:make-ltk-connection
+           #:widget-class-name
+           #:with-ltk
+           #:call-with-ltk
+           #:with-modal-toplevel
+           #:with-remote-ltk
+           #:with-widgets
+           #:withdraw
+           #:wm-title
+           #:wm-state
+	   ))
+
+(defpackage :ltk-user
+  (:use :common-lisp :ltk))
+
+(in-package :ltk)
+;communication with wish
+;;; this ist the only function to adapted to other lisps
+
+(defun do-execute (program args &optional (wt nil))
+  "execute program with args a list containing the arguments passed to the program
+   if wt is non-nil, the function will wait for the execution of the program to return.
+   returns a two way stream connected to stdin/stdout of the program"
+  #+:clisp (declare (ignore wt))
+  (let ((fullstring program))
+    (dolist (a args)
+      (setf fullstring (concatenate 'string fullstring " " a)))
+    #+(or :cmu :scl)
+    (let ((proc (run-program program args :input :stream :output :stream :wait wt
+                             #+scl :external-format #+scl :utf-8)))
+      (unless proc
+        (error "Cannot create process."))
+      (make-two-way-stream
+       (ext:process-output proc)
+       (ext:process-input proc))
+      )
+    #+:clisp (let ((proc (ext:run-program program :arguments args :input :stream :output :stream :wait t)))
+             (unless proc
+               (error "Cannot create process."))
+	     proc
+             )
+    #+:sbcl (let ((proc (sb-ext:run-program program args :input :stream :output :stream :wait wt :search t)))
+             (unless proc
+               (error "Cannot create process."))
+             #+:ext-8859-1
+             (make-two-way-stream 
+              (sb-sys:make-fd-stream 
+               (sb-sys:fd-stream-fd (process-output proc))
+               :input t :external-format :iso-8859-1)
+              (sb-sys:make-fd-stream 
+               (sb-sys:fd-stream-fd (process-input proc))
+               :output t  :external-format :iso-8859-1))
+             #-:ext-8859-1
+	     (make-two-way-stream 
+	      (process-output proc)              
+	      (process-input proc))	     
+             )
+    #+:lispworks (system:open-pipe fullstring :direction :io)
+    #+:allegro (let ((proc (excl:run-shell-command
+			    #+:mswindows fullstring
+			    #-:mswindows (apply #'vector program program args)
+			    :input :stream :output :stream :wait wt)))
+		 (unless proc
+		   (error "Cannot create process."))
+		 proc
+		 )
+    #+:ecl(ext:run-program program args :input :stream :output :stream
+:error :output)
+    #+:openmcl (let ((proc (ccl:run-program program args :input
+					    :stream :output :stream :wait wt)))
+		 (unless proc
+		   (error "Cannot create process."))
+		 (make-two-way-stream
+		  (ccl:external-process-output-stream proc)
+		  (ccl:external-process-input-stream proc)))
+    ))
+
+(defvar *ltk-version* "0.91")
+
+;;; global var for holding the communication stream
+(defstruct (ltk-connection (:constructor make-ltk-connection ())
+			   (:conc-name #:wish-))
+  (stream nil)
+  (callbacks (make-hash-table :test #'equal))
+  (after-ids (make-hash-table :test #'equal))
+  (counter 1)
+  (after-counter 1)
+  (event-queue nil)
+  ;; This is should be a function that takes a thunk, and calls it in
+  ;; an environment with some condition handling in place.  It is what
+  ;; allows the user to specify error-handling in START-WISH, and have
+  ;; it take place inside of MAINLOOP.
+  (call-with-condition-handlers-function (lambda (f) (funcall f)))
+  ;; This is only used to support SERVE-EVENT.
+  (input-handler nil))
+
+(defmacro with-ltk-handlers (() &body body)
+  `(funcall (wish-call-with-condition-handlers-function *wish*)
+	    (lambda () , at body)))
+
+;;; global connection information
+
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (setf
+   (documentation 'make-ltk-connection 'function)
+   "Create a new LTK-CONNECTION object.  This represents a connection to a
+    specific wish.  You can maintain connections to several distinct wish
+    processes by binding *WISH* to the one you desire to communicate with, and
+    using LTK functions within that dynamic scope."))
+
+(define-condition ltk-error (simple-error) ())
+(defun ltk-error (format &rest args)
+  (error 'ltk-error :format-control format :format-arguments args))
+
+(defvar *wish* (make-ltk-connection)
+  "The current connection to an inferior wish.")
+
+(defvar *wish-connections* ()
+  "Connections pushed aside by invoking the NEW-WISH restart in START-WISH.")
+
+;;; verbosity of debug messages, if true, then all communication
+;;; with tk is echoed to stdout
+(defvar *debug-tk* nil)
+
+(defvar *trace-tk* nil)
+
+(defvar *wish-pathname*
+  #+freebsd "wish8.4"
+  #-freebsd "wish")
+
+(defvar *wish-args* '("-name" "LTK"))
+
+(defvar *init-wish-hook* nil)
+
+(defun dbg (fmt &rest args)
+  (when *debug-tk*
+    (apply #'format t fmt args)
+    (finish-output)))
+
+;;; setup of wish
+;;; put any tcl function definitions needed for running ltk here
+(defun init-wish ()
+  ;; print string readable, escaping all " and \
+  ;; proc esc {s} {puts "\"[regsub {"} [regsub {\\} $s {\\\\}] {\"}]\""}
+  ;(send-wish "proc esc {s} {puts \"\\\"[regsub -all {\"} [regsub -all {\\\\} $s {\\\\\\\\}] {\\\"}]\\\"\"} ")
+  ;(send-wish "proc escape {s} {return [regsub -all {\"} [regsub -all {\\\\} $s {\\\\\\\\}] {\\\"}]} ")
+  (send-wish "package require Tk")
+  (send-wish "proc escape {s} {regsub -all {\\\\} $s {\\\\\\\\} s1;regsub -all {\"} $s1 {\\\"} s2;return $s2}")
+  ;;; proc senddata {s} {puts "(data \"[regsub {"} [regsub {\\} $s {\\\\}] {\"}]\")"}
+  (send-wish "proc senddata {s} {puts \"(:data [escape $s])\";flush stdout}")
+  (send-wish "proc senddatastring {s} {puts \"(:data \\\"[escape $s]\\\")\";flush stdout} ")
+  (send-wish "proc senddatastrings {strings} {
+                 puts \"(:data (\"
+ 	         foreach s $strings {
+                     puts \"\\\"[escape $s]\\\"\"
+                     }
+                 puts \"))\";flush stdout} ")
+  (send-wish "proc to_keyword  {s} {
+                if {[string index $s 0] == \"-\"} {
+                   return \":[string range $s 1 [string length $s]]\" } {return \":$s\"}}")
+  
+  (send-wish "proc sendpropertylist {l} {
+               set pos 0
+               set ll [llength $l]
+               puts \"(:data (\"
+               while {$pos < $ll} {
+                 puts \" [to_keyword [lindex $l $pos]] \"
+                 set pos [expr $pos + 1]
+                 puts \" [lindex $l $pos] \"
+                 set pos [expr $pos + 1]
+                }
+               puts \"))\"
+                  
+}")
+
+  (send-wish "proc searchall {widget pattern} {
+                  set l [string length $pattern]
+                 set result [$widget search $pattern 1.0]
+                 set previous 0
+                 while {$result > $previous} {
+                     $widget tag add sel $result $result+${l}chars
+                     set previous $result
+                     set result [$widget search $pattern $result+${l}chars]
+                 }
+             }")
+  
+  (send-wish "proc searchnext {widget pattern} {
+                 set l [string length $pattern]
+                 set result [$widget search $pattern insert]
+                 if {$result > 0} {
+                     $widget tag remove sel 1.0 end
+                     $widget tag add sel $result $result+${l}chars
+                     $widget mark set insert $result+${l}chars
+                     $widget see insert
+                 }
+             }")
+
+  ;;; proc sendevent {s} {puts "(event \"[regsub {"} [regsub {\\} $s {\\\\}] {\"}]\")"}
+  ;(send-wish "proc sendevent {s x y keycode char width height root_x root_y} {puts \"(:event \\\"$s\\\" $x $y $keycode $char $width $height $root_x $root_y)\"} ")
+  (send-wish "proc sendevent {s x y keycode char width height root_x root_y mouse_button} {puts \"(:event \\\"$s\\\" $x $y $keycode $char $width $height $root_x $root_y $mouse_button)\"} ")
+  ;;; proc callback {s} {puts "(callback \"[regsub {"} [regsub {\\} $s {\\\\}] {\"}]\")"}
+
+  ;;; callback structure: (:callback "widgetname")          ;; for non-parameter callbacks
+  ;;;                     (:callback "widgetname" val)      ;; wideget returns non-string value
+  ;;;                     (:callback "widgetname" "string") ;; widget returns string value
+
+  (send-wish "proc callback {s} {puts \"(:callback \\\"$s\\\")\";flush stdout} ")
+  (send-wish "proc callbackval {s val} {puts \"(:callback \\\"$s\\\" $val)\"} ")
+  (send-wish "proc callbackstring {s val} {puts \"(:callback \\\"$s\\\" \\\"[escape $val]\\\")\"} ")
+
+  (dolist (fun *init-wish-hook*)	; run init hook funktions 
+    (funcall fun)))
+
+
+;;; start wish and set (wish-stream *wish*)
+(defun start-wish (&rest keys &key handle-errors handle-warnings (debugger t)
+                   stream)
+  (declare (ignore handle-errors handle-warnings debugger))
+  ;; open subprocess
+  (if (null (wish-stream *wish*))
+      (progn
+	(setf (wish-stream *wish*) (or stream (do-execute *wish-pathname* *wish-args*))
+	      (wish-call-with-condition-handlers-function *wish*)
+	      (apply #'make-condition-handler-function keys))
+	;; perform tcl initialisations
+        (with-ltk-handlers ()
+          (init-wish)))
+      ;; By default, we don't automatically create a new connection, because the
+      ;; user may have simply been careless and doesn't want to push the old
+      ;; connection aside.  The NEW-WISH restart makes it easy to start another.
+      (restart-case (ltk-error "There is already an inferior wish.")
+	(new-wish ()
+	  :report "Create an additional inferior wish."
+	  (push *wish* *wish-connections*)
+	  (setf *wish* (make-ltk-connection))
+	  (apply #'start-wish keys)))))
+
+;;; CMUCL, SCL, and SBCL, use a two-way-stream and the constituent
+;;; streams need to be closed.
+(defun close-process-stream (stream)
+  "Close a 'stream open by 'do-execute."
+  (when *debug-tk*
+    (format t "Closing wish stream: ~S~%" stream))
+  (ignore-errors (close stream))
+  #+(or :cmu :scl :sbcl)
+  (when (typep stream 'two-way-stream)
+    (close (two-way-stream-input-stream stream) :abort t)
+    (close (two-way-stream-output-stream stream) :abort t))
+  nil)
+
+(defun exit-wish ()
+  (with-ltk-handlers ()
+    (let ((stream (wish-stream *wish*)))
+      (when stream
+        (remove-input-handler)
+        (when (open-stream-p stream)
+          (ignore-errors (send-wish "exit")))
+        (close-process-stream stream))
+      (setf (wish-stream *wish*) nil)
+      #+:allegro (system:reap-os-subprocess)
+      (setf *wish-connections* (remove *wish* *wish-connections*)))
+    nil))
+
+;;; send a string to wish
+(defun send-wish (text)
+  (declare (string text)
+           (optimize (speed 3)))
+  (when *debug-tk*
+    (format t "~A~%" text)
+    (finish-output))
+  (let ((*print-pretty* nil)
+        (stream (wish-stream *wish*)))
+    (declare (stream stream))
+    (handler-bind ((stream-error (lambda (e)
+                                   (when *debug-tk*
+                                     (format t "Error sending command to wish: ~A" e)
+                                     (finish-output))
+                                   (ignore-errors (close stream))
+                                   (exit-wish))))
+    (format stream "~A~%" text)
+    (finish-output stream))))
+
+(defmacro format-wish (control &rest args)
+  "format 'args using 'control as control string to wish"
+  (let ((stream (gensym)))
+    `(progn
+       (when *debug-tk*
+         (format t ,control , at args)
+         (format t "~%")
+         (finish-output))
+       (let ((*print-pretty* nil)
+             (,stream (wish-stream *wish*)))
+         (declare (type stream ,stream))
+         ;(optimize (speed 3)))
+         
+         (format ,stream ,control , at args)
+         (format ,stream "~%")
+         (finish-output ,stream))
+       nil)))
+
+
+;; differences:
+;; cmucl/sbcl READ expressions only if there is one more character in the stream, if
+;; it is a whitespace its discarded. Lispworks READs the expression as soon as it can
+;; be fully read from the stream - no character is discarded
+;; so I am printing an additional space after every READable expression printed from tcl,
+;; this has to be eaten for read-line from the stream in lispworks (which returns the line
+;; ending character, cmucl/sbcl don't)
+
+(defun read-all(stream)
+  (declare (stream stream)
+           (inline read-char-no-hang))
+  (let ((c (read-char-no-hang stream nil nil))
+        (s (make-array 256 :adjustable t :element-type 'character :fill-pointer 0)))
+    (loop
+       while c
+       do
+         (vector-push-extend c s)
+         (setf c (read-char-no-hang stream nil nil)))
+    (coerce s 'simple-string)))
+
+;;; read from wish 
+(defun read-wish ()
+  "Reads from wish. If the next thing in the stream is looks like a lisp-list
+  read it as such, otherwise read one line as a string."
+  ;; FIXME: The problem here is that wish sends us error-messages on the same
+  ;; stream that we use for our own communication. It would be good if we could
+  ;; get the error-messages (that are presumably written to stderr) onto a separate
+  ;; stream. The current workaround is based on the observation that wish error
+  ;; messages always seem to end on a newline, but this may not always be so.
+  ;;
+  ;; READ-ALL would be a bad idea anyways, as in that case we could accidentally
+  ;; snarf a real message from the stream as well, if it immediately followed
+  ;; an error message.
+  (let ((*read-eval* nil)
+        (*package* (find-package :ltk))
+	(stream (wish-stream *wish*)))
+    (if (eql #\( (peek-char t stream nil))
+	(read stream nil)
+	(read-line stream nil))))
+
+
+(defun can-read (stream)
+  "return t, if there is something to READ on the stream"
+  (declare (stream stream)
+           (inline read-char-no-hang unread-char))
+  (let ((c (read-char-no-hang stream)))
+    (loop 
+       while (and c
+                  (member c '(#\Newline #\Return #\Space)))
+       do
+         (setf c (read-char-no-hang stream)))
+    (when c
+      (unread-char c stream)
+      t)))
+
+(defun read-event (&key (blocking t) (no-event-value nil))
+  "read the next event from wish, return the event or nil, if there is no
+event to read and blocking is set to nil"
+  (or (pop (wish-event-queue *wish*))
+      (if (or blocking (can-read (wish-stream *wish*)))
+          (read-preserving-whitespace (wish-stream *wish*) nil nil)
+          no-event-value)))
+
+(defun read-data ()
+  "Read data from wish. Non-data events are postponed, bogus messages (eg.
++error-strings) are ignored."
+  (loop
+     for data = (read-wish)
+     when (listp data) do
+       (cond ((eq (first data) :data)
+	      (dbg "read-data: ~s~%" data)
+	      (return (second data)))
+	     (t
+	      (dbg "postponing event: ~s~%" data)
+	      (setf (wish-event-queue *wish*)
+		    (append (wish-event-queue *wish*) (list data)))))
+       else do
+       (dbg "read-data error: ~a~%" data)))
+
+(defun read-keyword ()
+  (let ((string (read-data)))
+    (when (> (length string) 0)
+      (values (intern #-scl (string-upcase string)
+                      #+scl (if (eq ext:*case-mode* :upper)
+                                (string-upcase string)
+                                (string-downcase string))
+                      :keyword)))))
+
+;;; sanitizing strings: lisp -> tcl (format (wish-stream *wish*) "{~a}" string)
+;;; in string escaped : {} mit \{ bzw \}  und \ mit \\
+
+(defun make-adjustable-string (&optional (string ""))
+  (make-array (length string) :element-type 'character
+              :initial-contents string :adjustable t :fill-pointer t))
+
+;; Much faster version. For one test run it takes 2 seconds, where the
+;; other implementation requires 38 minutes.
+(defun tkescape (text)
+  (unless (stringp text)
+    (setf text (format nil "~a" text)))
+  (loop with result = (make-adjustable-string)
+     for c across text do
+       (when (member c '(#\\ #\$ #\[ #\] #\{ #\} #\"))
+         (vector-push-extend #\\ result))
+       (vector-push-extend c result)
+     finally (return result)))
+
+;; basic tk object
+(defclass tkobject ()
+  ((name :accessor name :initarg :name :initform nil)
+   )
+  (:documentation "Base class for every Tk object"))
+
+;; basic class for all widgets 
+(defclass widget(tkobject)
+  ((master :accessor master :initarg :master :initform nil) ;; parent widget or nil
+   (widget-path :initarg :path :initform nil :accessor %widget-path)         ;; pathname to refer to the widget
+   (init-command :accessor init-command :initform nil :initarg :init-command)
+   )
+  (:documentation "Base class for all widget types"))
+
+;; creating of the tk widget after creating the clos object
+(defmethod initialize-instance :after ((w widget) &key)
+  (unless (name w)			; generate name if not given 
+    (setf (name w) (create-name))))
+
+(defvar *tk* (make-instance 'widget :name "." :path ".")
+  "dummy widget to access the tk root object")
+
+;;; tcl -> lisp: puts "$x" mit \ und " escaped
+;;;  puts [regsub {"} [regsub {\\} $x {\\\\}] {\"}]
+
+;;; call to convert untility
+(defun convert(from to)
+  (close-process-stream (do-execute "convert" (list from to) t)))
+
+;;; table used for callback every callback consists of a name of a widget and
+;;; a function to call
+
+(defun add-callback (sym fun)
+  "create a callback sym is the name to use for storage, fun is the function to call"
+  (when *debug-tk*
+    (format t "add-callback (~A ~A)~%" sym fun))
+  (setf (gethash sym (wish-callbacks *wish*)) fun))
+
+(defun remove-callback (sym)
+  (when *debug-tk*
+    (format t "remove-callback (~A)~%" sym))
+  (setf (gethash sym (wish-callbacks *wish*)) nil))
+
+(defun callback (sym arg)
+  "perform the call of the function associated with sym and the args arg"
+  (let ((fun (gethash sym (wish-callbacks *wish*))))
+    (when fun
+      (apply fun arg))))
+
+(defun after (time fun)
+ "after <time> msec call function <fun>, returns the after event id,
+which can be passed to AFTER-CANCEL"
+ (let ((name (format nil "after~a" (incf (wish-after-counter *wish*)))))
+   (format-wish "senddatastring [after ~a {callback ~A}]" time name)
+   (let ((id (read-data))
+         (blah (wish-after-ids *wish*)))
+     (setf (gethash id blah) name)
+     (add-callback name
+                   (lambda ()
+                     (funcall fun)
+                     (remhash id blah)
+                     (remove-callback name)))
+     id)))
+
+(defun after-idle (fun)
+ "call fun when tk becomes idle, returns the after event id, which
+can be passed to AFTER-CANCEL"
+ (let ((name (format nil "afteridle~a" (incf (wish-after-counter *wish*)))))
+   (format-wish "senddatastring [after idle {callback ~A}]" name)
+   (let ((id (read-data))
+         (blah (wish-after-ids *wish*)))         
+     (add-callback name
+                   (lambda ()
+                     (funcall fun)
+                     (remhash id blah)
+                     (remove-callback name)))
+     id)))
+
+(defun after-cancel (id)
+ "cancels a call scheduled with AFTER or AFTER-IDLE by its id"
+ (format-wish "after cancel ~a" id)
+ (let ((blah (wish-after-ids *wish*)))
+   (remove-callback (gethash id blah))
+   (remhash id blah)))
+
+;; tool functions used by the objects
+
+(defun get-counter()
+  "incremental counter to create unique numbers"
+  (incf (wish-counter *wish*)))
+
+
+(defun create-name ()
+  "create unique widget name, append unique number to 'w'"
+  (format nil "w~A" (get-counter)))
+
+
+(defun create-path (master name)
+  "create pathname from master widget <master> and widget name <name>"
+  (let ((master-path (if (or (null master) (eql master *tk*))
+                         ""
+                         (widget-path master))))
+    (format nil "~A.~A" master-path name)))
+  
+(eval-when (:compile-toplevel :load-toplevel :execute)
+;;; widget class built helper functions
+
+;;(defparameter *generate-accessors* nil)
+  
+  (defun iarg-name (arg) (nth 0 arg))
+  (defun iarg-key (arg) (nth 1 arg))
+  (defun iarg-format (arg) (nth 2 arg))
+  (defun iarg-code (arg) (nth 3 arg))
+  (defun iarg-comment (arg) (nth 4 arg))
+
+  (defparameter *initargs*
+    '(
+      (button.background Button.background "~@[ -Button.background ~(~a~)~]" button.background "")
+      (Button.cursor Button.cursor "~@[ -Button.cursor ~(~a~)~]" Button.cursor "")
+      (Button.relief Button.relief "~@[ -Button.relief ~(~a~)~]" Button.relief "")
+      
+      (activebackground activebackground "~@[ -activebackground ~(~a~)~]" activebackground
+       "background of the active area")
+
+      (activeborderwidth activeborderwidth "~@[ -activeborderwidth ~(~a~)~]" activeborderwidth
+       "the border width for active widgets (when the mouse cursor is over the widget)")
+
+      (activeforeground activeforeground "~@[ -activeforeground ~(~a~)~]" activeforeground
+       "foreground color for active widgets (when the mouse cursor is over the widget)")
+
+      (activerelief activerelief "~@[ -activerelief ~(~a~)~]" activerelief
+       "the border relief for active widgets (when the mouse cursor is over the widget)")
+      
+      (activestyle activestyle "~@[ -activestyle ~(~a~)~]" activestyle
+       "the style for drawing the active part (dotbox, none, underline (default))")
+      
+      (anchor anchor "~@[ -anchor ~(~a~)~]" anchor
+       "specify the alignment of text/image drawn on the widget, one of (:n :w :s :e :nw :sw :se :ne) with :nw designating the top left corner")
+      
+      (aspect aspect "~@[ -aspect ~(~a~)~]" aspect
+       "Aspect ratio for the wrapping of the text. 100 means that the text is redered as wide as, tall, 200 twice as wide.")
+      (autoseparators autoseparators "~:[~; -autoseparators 1~]" autoseparators
+       "when t, separators are added automatically to the undo stack")
+      (background background "~@[ -background ~(~a~)~]" background
+       "background color of the widget")
+      (bigincrement bigincrement "~@[ -bigincrement ~(~a~)~]" bigincrement
+       "size of the big step increment")
+      (bitmap bitmap "~@[ -bitmap ~(~a~)~]" bitmap
+       "the bitmap to display on the widget, the display is affected by the options 'anchor' and 'justify'")
+
+      (borderwidth borderwidth "~@[ -borderwidth ~(~a~)~]" borderwidth
+       "width of the border around the widget in pixels")
+
+      (class class "~@[ -class ~(~a~)~]" class
+       "the class of the widget, used for lookup in the option database. This option cannot be changed after the widget creation.")
+
+      (closeenough closeenough "~@[ -closeenough ~(~a~)~]" closeenough
+       "dermines when the mouse coursor is considered to be inside a shape, the default is 1.0")
+
+      (colormap colormap "~@[ -colormap ~(~a~)~]" colormap
+       "The colormap to use for the widget.")
+
+      (command command "~@[ -command {callback ~a}~]" (and command 
+                                                       (progn
+                                                         (add-callback (name widget) command)
+                                                         (name widget)))
+       "function to call when the action of the widget is executed")
+      
+      (cbcommand command "~@[ -command {callbackval ~{~a $~a~}}~]" (and command 
+                                                                    (progn
+                                                                      (add-callback (name widget) command)
+                                                                      (list (name widget) (name widget))))
+       "function to call when the action of the widget is executed")
+      (spinbox-command command "~@[ -command {callbackstring ~a %s}~]" (and command 
+                                                                           (progn
+                                                                             (add-callback (name widget) command)
+                                                                             (name widget))))
+      (command-radio-button command "~@[ -command {callbackval ~{~a $~a~}}~]" (and command 
+                        						       (progn
+										 (add-callback (name widget) command)
+										 (list (name widget) (radio-button-variable widget))))
+       "function to call when the action of the widget is executed")
+      
+      (command-scrollbar command "~@[ -command {callback ~a}~]" (and command 
+								 (progn
+								   (add-callback (name widget) command)
+								   (name widget)))"")
+      
+      (compound compound "~@[ -compound ~(~a~)~]" compound
+       "")
+      
+      (confine confine "~:[~; -confine 1~]" confine
+       "if t (default) allowed values for view are confined to the scrollregion")
+      
+      (container container "~:[~; -container 1~]" container
+       "if t, then the widget will be used as a container for other widgets.")
+      
+      (cursor cursor "~@[ -cursor ~(~a~)~]" cursor
+       "mouse pointer to display on the widget (valid values are listed in *cursors*)")
+      
+      (default default "~@[ -default ~(~a~)~]" default
+       "")
+
+      (digits digits "~@[ -digits ~(~a~)~]" digits
+       "number of digits to use when converting the value to a string.")
+      
+      (direction direction "~@[ -direction ~(~a~)~]" direction "")
+      (disabledbackground disabledbackground "~@[ -disabledbackground ~(~a~)~]" disabledbackground "")
+      (disabledforeground disabledforeground "~@[ -disabledforeground ~(~a~)~]" disabledforeground "")
+      (elementborderwidth elementborderwidth "~@[ -elementborderwidth ~(~a~)~]" elementborderwidth "")
+      (exportselection exportselection "~@[ -exportselection ~(~a~)~]" exportselection "")
+      (font font "~@[ -font {~a}~]" font "font to use to display text on the widget")
+      (foreground foreground "~@[ -foreground ~(~a~)~]" foreground "foreground color of the widget")
+      (format format "~@[ -format ~(~a~)~]" format "")
+      (from from "~@[ -from ~(~a~)~]" from "")
+      (handlepad handlepad "~@[ -handlepad ~(~a~)~]" handlepad "")
+      (handlesize handlesize "~@[ -handlesize ~(~a~)~]" handlesize "")
+      (height height "~@[ -height ~(~a~)~]" height "height of the widget")
+      (highlightbackground highlightbackground "~@[ -highlightbackground ~(~a~)~]" highlightbackground "")
+      (highlightcolor highlightcolor "~@[ -highlightcolor ~(~a~)~]" highlightcolor "")
+      (highlightthickness highlightthickness "~@[ -highlightthickness ~(~a~)~]" highlightthickness "")
+      (image image "~@[ -image ~(~a~)~]" (and image (name image))
+       "the image to display on the widget, the display is affected by the options 'anchor' and 'justify'")
+      (increment increment "~@[ -increment ~(~a~)~]" increment "size of the increment of the widget")
+      (indicatorOn indicatorOn "~@[ -indicatorOn ~(~a~)~]" indicatorOn "")
+      (insertbackground insertbackground "~@[ -insertbackground ~(~a~)~]" insertbackground "")
+      (insertborderWidth insertborderWidth "~@[ -insertborderWidth ~(~a~)~]" insertborderWidth "")
+      (insertofftime insertofftime "~@[ -insertofftime ~(~a~)~]" insertofftime "")
+      (insertontime insertontime "~@[ -insertontime ~(~a~)~]" insertontime "")
+      (insertwidth insertwidth "~@[ -insertwidth ~(~a~)~]" insertwidth "")
+      (invalidcommand invalidcommand "~@[ -invalidcommand ~(~a~)~]" invalidcommand "")
+      (jump jump "~@[ -jump ~(~a~)~]" jump "")
+      (justify justify "~@[ -justify ~(~a~)~]" justify "justification of the text on the widget")
+      (label label "~@[ -label ~(~a~)~]" label "text to display on the widget")
+      (labelanchor labelanchor "~@[ -labelanchor ~(~a~)~]" labelanchor "")
+      (labelwidget labelwidget "~@[ -labelwidget ~(~a~)~]" labelwidget "")
+      (length length "~@[ -length ~(~a~)~]" length "")
+      (listvariable listvariable "~@[ -listvariable ~(~a~)~]" listvariable "")
+      (maxundo maxundo "~@[ -maxundo ~(~a~)~]" maxundo "")
+      (menu menu "~@[ -menu ~(~a~)~]" menu "")
+      (offrelief offrelief "~@[ -offrelief ~(~a~)~]" offrelief "")
+      (offvalue offvalue "~@[ -offvalue ~(~a~)~]" offvalue "")
+      (offset offset "~@[ -offset ~(~a~)~]" offset "")
+      (onvalue onvalue "~@[ -onvalue ~(~a~)~]" onvalue "")
+      (opaqueresize opaqueresize "~@[ -opaqueresize ~(~a~)~]" opaqueresize "")
+      (orient orientation "~@[ -orient ~(~a~)~]" orientation "orientation of the widget (horizontal, vertical)")
+      (overrelief overrelief "~@[ -overrelief ~(~a~)~]" overrelief "relief of the border, when the mouse is over the widget")
+      (padx padx "~@[ -padx ~(~a~)~]" padx "padding around text displayed on the widget")
+      (pady pady "~@[ -pady ~(~a~)~]" pady "padding around text displayed on the widget")
+      (postcommand postcommand "~@[ -postcommand ~(~a~)~]" postcommand "")
+      (readonlybackground readonlybackground "~@[ -readonlybackground ~(~a~)~]" readonlybackground "")
+      (relief relief "~@[ -relief ~(~a~)~]" relief "relief of the widgets border (raised, sunken, ridge, groove)")
+      (repeatdelay repeatdelay "~@[ -repeatdelay ~(~a~)~]" repeatdelay "")
+      (repeatinterval repeatinterval "~@[ -repeatinterval ~(~a~)~]" repeatinterval "")
+      (resolution resolution "~@[ -resolution ~(~a~)~]" resolution "")
+      (sashcursor sashcursor "~@[ -sashcursor ~(~a~)~]" sashcursor "")
+      (sashpad sashpad "~@[ -sashpad ~(~a~)~]" sashpad "")
+      (sashrelief sashrelief "~@[ -sashrelief ~(~a~)~]" sashrelief "")
+      (sashwidth sashwidth "~@[ -sashwidth ~(~a~)~]" sashwidth "")
+      (screen screen "~@[ -screen ~(~a~)~]" screen "screen on which the toplevel is to be shown")
+      (scrollregion scrollregion "~@[ -scrollregion ~(~a~)~]" scrollregion "region in which the canvas should be scolled")
+      (selectbackground selectbackground "~@[ -selectbackground ~(~a~)~]" selectbackground "")
+      (selectborderwidth selectborderwidth "~@[ -selectborderwidth ~(~a~)~]" selectborderwidth "")
+      (selectcolor selectcolor "~@[ -selectcolor ~(~a~)~]" selectcolor "")
+      (selectforeground selectforeground "~@[ -selectforeground ~(~a~)~]" selectforeground "")
+      (selectimage selectimage "~@[ -selectimage ~(~a~)~]" selectimage "")
+      (selectmode selectmode "~@[ -selectmode ~(~a~)~]" selectmode "")
+      (setgrid setgrid "~@[ -setgrid ~(~a~)~]" setgrid "")
+      (show show "~@[ -show ~(~a~)~]" show "")
+      (showhandle showhandle "~@[ -showhandle ~(~a~)~]" showhandle "")
+      (showvalue showvalue "~@[ -showvalue ~(~a~)~]" showvalue "")
+      (sliderlength sliderlength "~@[ -sliderlength ~(~a~)~]" sliderlength "")
+      (sliderrelief sliderrelief "~@[ -sliderrelief ~(~a~)~]" sliderrelief "")
+      (spacing1 spacing1 "~@[ -spacing1 ~(~a~)~]" spacing1 "")
+      (spacing2 spacing2 "~@[ -spacing2 ~(~a~)~]" spacing2 "")
+      (spacing3 spacing3 "~@[ -spacing3 ~(~a~)~]" spacing3 "")
+      (state state "~@[ -state ~(~a~)~]" state "")
+      (tabs tabs "~@[ -tabs ~(~a~)~]" tabs "")
+      (takefocus takefocus "~@[ -takefocus ~(~a~)~]" takefocus "if true, the widget can take the focus")
+      (tearoff tearoff "~@[ -tearoff ~(~a~)~]" tearoff "if true, the menu can be torn off")
+      (tearoffcommand tearoffcommand "~@[ -tearoffcommand ~(~a~)~]" tearoffcommand "")
+      (text text "~@[ -text \"~a\"~]" (tkescape text) "")
+      ;;(textvariable textvariable "~@[ -textvariable text_~a~]" (and textvariable (name widget)) "")
+      (textvariable text "~@[ -textvariable text_~a~]" (progn
+                                                         (when text
+                                                           (format-wish "set text_~a \"~a\"" (name widget) (tkescape text)))
+                                                         (name widget)) "")
+
+      (tickinterval tickinterval "~@[ -tickinterval ~(~a~)~]" tickinterval "")
+      (title title "~@[ -title ~(~a~)~]" title "")
+      (to to "~@[ -to ~(~a~)~]" to "")
+      (troughcolor troughcolor "~@[ -troughcolor ~(~a~)~]" troughcolor "")
+      (type type "~@[ -type ~(~a~)~]" type "")
+      (underline underline "~@[ -underline ~(~a~)~]" underline "")
+      (undo undo "~@[ -undo ~(~a~)~]" undo "")
+      (use use "~@[ -use ~(~a~)~]" use "")
+      (validate validate "~@[ -validate ~(~a~)~]" validate "")
+      (validatecommand validatecommand "~@[ -validatecommand ~(~a~)~]" validatecommand "")
+      (value value "~@[ -value ~(~a~)~]" value "")
+      (value-radio-button nil "~@[ -value ~(~a~)~]" (radio-button-value widget)
+       "value for the radio button group to take, when the button is selected")
+      (values values "~@[ -values ~(~a~)~]" values "")
+      (variable variable "~@[ -variable ~(~a~)~]" variable "name of the variable associated with the widget")
+      (variable-radio-button nil "~@[ -variable ~(~a~)~]" (radio-button-variable widget)
+       "name of the radio button group the button shall belong to as a string")
+      (visual visual "~@[ -visual ~(~a~)~]" visual "")
+      (width width "~@[ -width ~(~a~)~]" width "width of the widget")
+      (wrap wrap "~@[ -wrap ~(~a~)~]" wrap "")
+      (wraplength wraplength "~@[ -wraplength ~(~a~)~]" wraplength "")
+      (xscrollcommand xscrollcommand "~@[ -xscrollcommand ~(~a~)~]" xscrollcommand "")
+      (xscrollincrement xscrollincrement "~@[ -xscrollincrement ~(~a~)~]" xscrollincrement "")
+      (yscrollcommand yscrollcommand "~@[ -yscrollcommand ~(~a~)~]" yscrollcommand "")
+      (yscrollincrement yscrollincrement "~@[ -yscrollincrement ~(~a~)~]" yscrollincrement "")
+      ))
+  
+
+  (defparameter *class-args*
+    '())
+  
+  (defun build-args (class parents defs)
+    (declare (ignore class))
+    ;;(format t  "class ~s parents ~s defs ~s~%" class parents defs) (finish-output)
+    (let ((args nil))
+      (dolist (p parents)
+	(let ((arglist (rest (assoc p *class-args*))))
+	  ;;(format t "parent: ~s arglist: ~s~%" p arglist) (finish-output)
+	  (dolist (arg arglist)
+	    (unless (member arg args)
+	      (setf args (append args (list arg)))))))
+      (loop 
+         while defs
+         do
+           (let ((arg (pop defs)))
+             (cond
+               ((eq arg :inherit)	 
+                (let* ((inheritedclass (pop defs))
+                       (arglist (rest (assoc inheritedclass *class-args*))))
+                  (dolist (arg arglist)
+                    (unless (member arg args)
+                      (setf args (append args (list arg)))
+                      ))))
+               ((eq arg :delete)
+                (setf args (delete (pop defs) args)))	    
+               (t
+                (setf args (append args (list arg)))))))
+      ;;(format t "class: ~a args: ~a~&" class args) (finish-output)
+      args
+      ))
+  )
+
+(defmacro defargs (class parents &rest defs)
+  (let ((args (build-args class parents defs)))
+    (setf *class-args* (append *class-args* (list (cons class args))))
+    `(setf *class-args* (append *class-args* (list '(,class , at args))))))
+
+(defargs widget () 
+  relief cursor borderwidth background
+  )
+
+;(defargs button (widget) anchor)
+;(defargs text (widget button) :delete anchor color)
+
+(defargs button (widget) 
+  activebackground activeforeground anchor bitmap command compound default disabledforeground font foreground height highlightbackground highlightcolor highlightthickness image justify overrelief padx pady repeatdelay repeatinterval state takefocus textvariable underline width wraplength)
+
+(defargs canvas ()
+  background borderwidth closeenough confine cursor height highlightbackground highlightcolor highlightthickness insertbackground insertborderwidth insertofftime insertontime insertwidth offset relief scrollregion selectbackground selectborderwidth selectforeground state takefocus width xscrollcommand xscrollincrement yscrollcommand yscrollincrement)
+
+(defargs check-button ()
+  activebackground activeforeground anchor background bitmap borderwidth cbcommand compound cursor disabledforeground font foreground height highlightbackground highlightcolor highlightthickness image indicatorOn justify offrelief offvalue onvalue overrelief padx pady relief selectcolor selectimage state takefocus textvariable underline variable width wraplength)
+
+(defargs entry () background borderwidth cursor disabledbackground disabledforeground exportselection font foreground highlightbackground highlightcolor highlightthickness insertbackground insertborderwidth insertofftime insertontime insertwidth invalidcommand justify readonlybackground relief selectbackground selectborderwidth selectforeground show state takefocus textvariable validate validatecommand width xscrollcommand )
+
+(defargs frame ()
+  borderwidth class relief background colormap container cursor height highlightbackground highlightcolor highlightthickness padx pady takefocus visual width)
+
+(defargs label ()
+  activebackground activeforeground anchor background bitmap borderwidth compound cursor disabledforeground font foreground height highlightbackground highlightcolor highlightthickness image justify padx pady relief state takefocus textvariable underline width wraplength )
+
+(defargs labelframe ()
+  borderwidth class font foreground labelanchor labelwidget relief text background colormap container cursor height highlightbackground highlightcolor highlightthickness padx pady takefocus visual width)
+
+(defargs listbox ()
+  activestyle background borderwidth cursor disabledforeground exportselection font foreground height highlightbackground highlightcolor highlightthickness relief selectbackground selectborderwidth selectforeground selectmode setgrid state takefocus width xscrollcommand yscrollcommand listvariable)
+
+(defargs menu ()
+  activebackground activeborderwidth activeforeground background borderwidth cursor disabledforeground font foreground postcommand relief selectcolor takefocus tearoff tearoffcommand title type)
+
+(defargs menubutton ()
+  activebackground activeforeground anchor background bitmap borderwidth cursor direction disabledforeground font foreground height highlightbackground highlightcolor highlightthickness image indicatorOn justify menu padx pady relief compound state takefocus textvariable underline width wraplength)
+
+(defargs message ()
+  anchor aspect background borderwidth cursor font foreground highlightbackground highlightcolor highlightthickness justify padx pady relief takefocus textvariable width)
+
+(defargs paned-window ()
+  background borderwidth cursor handlepad handlesize height opaqueresize orient relief sashcursor sashpad sashrelief sashwidth showhandle width)
+
+(defargs radio-button ()
+  activebackground activeforeground anchor background bitmap borderwidth command-radio-button compound cursor disabledforeground font foreground height highlightbackground highlightcolor highlightthickness image indicatorOn justify offrelief overrelief padx pady relief selectcolor selectimage state takefocus textvariable underline value-radio-button variable-radio-button width wraplength)
+
+(defargs scale ()
+  activebackground background bigincrement borderwidth command cursor digits font foreground from highlightbackground highlightcolor highlightthickness label length orient relief repeatdelay repeatinterval resolution showvalue sliderlength sliderrelief state takefocus tickinterval to troughcolor variable width)
+
+(defargs scrollbar ()
+  activebackground activerelief background borderwidth command-scrollbar cursor elementborderwidth highlightbackground highlightcolor highlightthickness jump orient relief repeatdelay repeatinterval takefocus troughcolor width)
+
+(defargs spinbox ()
+  activebackground background borderwidth Button.background Button.cursor Button.relief spinbox-command cursor disabledbackground disabledforeground exportselection font foreground format from highlightbackground highlightcolor highlightthickness increment insertbackground insertborderwidth insertofftime insertontime insertwidth invalidcommand justify relief readonlybackground repeatdelay repeatinterval selectbackground selectborderwidth selectforeground state takefocus textvariable to validate validatecommand values width wrap xscrollcommand)
+
+(defargs text ()
+  autoseparators  background borderwidth cursor exportselection font foreground height highlightbackground highlightcolor highlightthickness insertbackground insertborderwidth insertofftime insertontime insertwidth maxundo padx  pady relief selectbackground selectborderwidth selectforeground setgrid spacing1 spacing2 spacing3 state tabs takefocus undo width wrap xscrollcommand yscrollcommand)
+
+(defargs toplevel ()
+  borderwidth class menu relief screen use background colormap container cursor height highlightbackground highlightcolor highlightthickness padx pady takefocus visual width)
+
+(defmacro defwidget (class parents slots cmd &rest code)
+  (let ((args (sort (copy-list (rest (assoc class *class-args*)))
+		    (lambda (x y)
+		      (string< (symbol-name x) (symbol-name y))))))
+    (let ((cmdstring (format nil "~~a ~~~~A "))
+	  (codelist nil)
+	  (keylist nil)
+	  (accessors nil))
+      (dolist (arg args)
+	(let ((entry (assoc arg *initargs*)))
+	  (cond
+            (entry 
+             (setf cmdstring (concatenate 'string cmdstring (third entry)))
+             (when (iarg-key entry)
+               (setf keylist (append keylist (list (iarg-key entry)))))
+             (setf codelist (append codelist (list (iarg-code entry))))
+             #+:generate-accessors
+             (when (and (iarg-key entry)
+                        (not (equal (iarg-key entry) 'variable))
+                        (not (equal (iarg-key entry) 'class))
+                        (not (equal (iarg-key entry) 'length))
+                        (not (equal (iarg-key entry) 'values))
+                        (not (equal (iarg-key entry) 'format))
+                        (not (equal (iarg-key entry) 'scrollregion)))
+               (push
+                `(defmethod (setf ,(iarg-key entry)) (value (widget ,class))
+                   (format-wish ,(format nil "~~a configure ~a"(third entry)) (widget-path widget) value))	   
+                accessors)
+               (push
+                `(defmethod ,(iarg-key entry) ((widget ,class))
+                   (format-wish ,(format nil "senddata \"[~~a cget -~(~a~)]\"" (iarg-key entry)) (widget-path widget))
+                   (read-data))
+                accessors))
+             )
+            (t 
+             (setf cmdstring (concatenate 'string cmdstring (format nil "~~@[ -~(~a~) ~~(~~A~~)~~]" arg)))
+             (setf keylist (append keylist (list arg)))
+             (setf codelist (append codelist (list arg)))
+	  ))))
+      (push `(widget-class-name :accessor widget-class-name :initform ,cmd :allocation :class) slots)
+      `(progn
+	 (defclass ,class (, at parents)
+	   ,slots)
+	 (defmethod initialize-instance :after ((widget ,class) &key , at keylist)
+           ;;(format-wish ,cmdstring (widget-class-name widget) (widget-path widget) , at codelist)
+	   ;;(format t "setting initarg for ~a~%" (quote ,class)) (finish-output)
+	   (setf (init-command widget)
+		 (format nil ,cmdstring (widget-class-name widget) , at codelist))
+	   , at code)
+	 , at accessors
+	 ))))
+
+;;; the library implementation 
+
+(defvar *cursors*
+  (list
+   "X_cursor" "arrow" "based_arrow_down" "based_arrow_up" "boat" "bogosity"
+   "bottom_left_corner" "bottom_right_corner" "bottom_side" "bottom_tee"
+   "box_spiral" "center_ptr" "circle" "clock" "coffee_mug" "cross"
+   "cross_reverse" "crosshair" "diamond_cross" "dot" "dotbox" "double_arrow"
+   "draft_large" "draft_small" "draped_box" "exchange" "fleur" "gobbler"
+   "gumby" "hand1" "hand2" "heart" "icon" "iron_cross" "left_ptr" "left_side"
+   "left_tee" "leftbutton" "ll_angle" "lr_angle" "man" "middlebutton" "mouse"
+   "pencil" "pirate" "plus" "question_arrow" "right_ptr" "right_side"
+   "right_tee" "rightbutton" "rtl_logo" "sailboat" "sb_down_arrow"
+   "sb_h_double_arrow" "sb_left_arrow" "sb_right_arrow" "sb_up_arrow"
+   "sb_v_double_arrow" "shuttle" "sizing" "spider" "spraycan" "star"
+   "target" "tcross" "top_left_arrow" "top_left_corner" "top_right_corner"
+   "top_side" "top_tee" "trek" "ul_angle" "umbrella" "ur_angle" "watch" "xterm"))
+
+(defun bell ()
+  (send-wish (format nil "bell")))
+
+(defun destroy (widget)
+  (when (slot-boundp widget 'widget-path)
+    (send-wish (format nil "destroy ~a" (widget-path widget)))
+    (unless (eql widget *tk*)
+      (slot-makunbound widget 'widget-path))))
+
+(defun clipboard-clear ()
+  (send-wish "clipboard clear"))
+
+(defun clipboard-get ()
+  (format-wish "senddatastring [clipboard get]")
+  (read-data))
+
+(defun clipboard-append (txt)
+  (format-wish "clipboard append {~a}" txt))
+
+;; around - initializer
+
+(defmethod initialize-instance :around ((w widget) &key pack place grid)
+  (call-next-method)
+  ;; pack widget if parameter has been supplied
+  (when pack
+    (apply #'pack w pack))
+  (when place
+    (apply #'place w place))
+  (when grid
+    (apply #'grid w grid)))
+
+(defgeneric widget-path (widget))
+(defmethod widget-path ((w (eql nil))) nil)
+
+(defmethod widget-path ((widget widget))
+  "retrieve the slot value widget-path, if not given, create it"
+  (or (%widget-path widget)
+      (prog1
+	  (setf (slot-value widget 'widget-path)
+		(create-path (master widget) (name widget)))
+	(create widget))))
+
+(defgeneric create (w))
+
+(defmethod create ((widget widget))
+  (when (init-command widget)
+    ;;(format t "creating: ~a~%" (init-command widget)) (finish-output)
+    (format-wish (init-command widget) (widget-path widget))))
+
+(defgeneric (setf command) (value widget))
+(defgeneric command (widget))
+
+(defmethod command ((widget widget))
+  (gethash (name widget) (wish-callbacks *wish*)))
+
+(defgeneric lower (widget &optional other))
+(defmethod lower ((widget widget) &optional other)
+  (send-wish (format nil "lower ~a~@[ ~a~]" (widget-path widget) (and other (widget-path other)))))
+
+(defgeneric raise (widget &optional above))
+(defmethod raise ((widget widget) &optional above)
+  (send-wish (format nil "raise ~a~@[ ~a~]" (widget-path widget) (and above (widget-path above)))))
+
+(defun tk-number (number)
+  "convert number to integer/single float"
+  (cond
+    ((integerp number)
+     number)
+    ((typep number 'single-float)
+     number)
+    ((typep number 'double-float)
+     (coerce number 'single-float))
+    ((typep number 'rational)
+     (coerce number 'single-float))
+    (t
+     (error "~s is not a one of integer, float or rational." number))))
+
+(defstruct event
+  x
+  y
+  keycode
+  char
+  width
+  height
+  root-x
+  root-y
+  mouse-button
+  )
+
+(defun construct-tk-event (properties)
+  "create an event structure from a list of values as read from tk"
+  (make-event
+   :x (first properties)
+   :y (second properties)
+   :keycode (third properties)
+   :char (fourth properties)
+   :width (fifth properties)
+   :height (sixth properties)
+   :root-x (seventh properties)
+   :root-y (eighth properties)
+   :mouse-button (ninth properties)
+   ))
+
+(defgeneric bind (w event fun &key append exclusive))
+(defmethod bind ((w widget) event fun &key append exclusive)
+  "bind fun to event of the widget w"
+  (let ((name (create-name)))
+    (add-callback name fun)
+    ;;(format-wish "bind  ~a ~a {sendevent ~A %x %y %k %K %w %h %X %Y}" (widget-path w) event name)
+    (format-wish "bind  ~a ~a {~:[~;+~]sendevent ~A %x %y %k %K %w %h %X %Y %b ~:[~;;break~]}" 
+		 (widget-path w) event append name exclusive)
+    w))
+
+(defmethod bind (s event fun &key append exclusive)
+  "bind fun to event within context indicated by string ie. 'all' or 'Button'"
+  (let ((name (create-name)))
+    (add-callback name fun)
+    ;;(format-wish "bind  ~a ~a {sendevent ~A %x %y %k %K %w %h %X %Y}" s event name)
+    (format-wish "bind  ~a ~a {~:[~;+~]sendevent ~A %x %y %k %K %w %h %X %Y %b ~:[~;;break~]}" 
+		 s event append name exclusive)))
+
+;;; generic functions
+
+(defgeneric canvas (w))
+
+(defgeneric value (widget)
+  (:documentation "reads the value of the variable associated with the widget"))
+
+(defclass tkvariable ()
+  ())
+
+(defmethod initialize-instance :around ((v tkvariable) &key)
+  (call-next-method)
+  (format-wish "~a configure -variable ~a" (widget-path v) (name v)))
+
+(defmethod value ((v tkvariable))
+  (format-wish "senddata $~a" (name v))
+  (read-data))
+
+(defgeneric (setf value) (widget val))
+(defmethod (setf value) (val (v tkvariable))
+  (format-wish "set ~a {~a}" (name v) val)
+  val)
+
+(defclass tktextvariable ()
+  ())
+
+(defgeneric text (widget)
+  (:documentation "reads the value of the textvariable associated with the widget")
+  )
+
+(defmethod initialize-instance :around ((v tktextvariable) &key)
+  (call-next-method)
+  ;;(format-wish "~a configure -textvariable text_~a" (widget-path v) (name v))
+  )
+
+(defmethod text ((v tktextvariable))
+  (format-wish "senddatastring $text_~a" (name v))
+  (read-data))
+
+(defgeneric (setf text) (val variable))
+
+(defmethod (setf text) (val (v tktextvariable))
+  (format-wish "set text_~a \"~a\"" (name v) (tkescape val))
+  val)
+
+;;; window menu bar
+
+(defclass menubar(widget)
+  ())
+
+(defun make-menubar(&optional (master nil))
+ (make-instance 'menubar :master master :name "menubar"))
+
+;(defmethod create ((mb menubar))
+(defmethod initialize-instance :after ((mb menubar) &key)
+  (format-wish "menu ~a -tearoff 0 -type menubar" (widget-path mb))
+  (format-wish "~a configure -menu ~a" (if (master mb)
+                                           (widget-path (master mb))
+                                           ".")
+               (widget-path mb)))
+
+;;; menues
+
+(defclass menu(widget)
+  ((text :accessor text :initarg :text)
+   (help :accessor menu-help :initarg :help :initform nil)))
+
+;(defmethod create ((m menu))
+
+(defmethod initialize-instance :after ((m menu) &key underline)
+  (when (menu-help m) ;; special treatment for help menu
+    (setf (name m) "help")
+    (setf (slot-value m 'widget-path) (create-path (master m) (name m))))
+  (format-wish "menu ~A -tearoff 0" (widget-path m))
+  (when (master m)
+    (format-wish "~A add cascade -label {~A} -menu ~a~@[ -underline ~a ~]"
+                 (widget-path (master m)) (text m) (widget-path m) underline)))
+
+(defun make-menu(menu text &key underline name)
+  (if name
+      (make-instance 'menu :master menu :text text :underline underline :name name)
+      (make-instance 'menu :master menu :text text :underline underline)))
+
+(defun add-separator (menu)
+   (format-wish "~A add separator" (widget-path menu))
+   menu)
+
+;;; menu button
+
+(defclass menuentry(widget)
+  ((text :accessor text :initarg :text :initform ""))
+  (:documentation "An abstract base class for menu entries.  These \"widgets\" have to be handled specially by some
+methods, e.g. 'configure'."))
+
+(defclass menubutton(menuentry) 
+  ())
+
+(defmethod initialize-instance :after ((m menubutton) &key command underline accelerator)
+  (when command
+    (add-callback (name m) command))
+  (format-wish "~A add command -label {~A}  -command {callback ~A}~@[ -underline ~a ~]~@[ -accelerator {~a} ~]"
+               (widget-path (master m)) (text m) (name m) underline accelerator))
+
+(defun make-menubutton(menu text command &key underline accelerator)
+  (let* ((mb (make-instance 'menubutton :master menu :text text :command command :underline underline
+			    :accelerator accelerator)))
+    mb))
+
+(defclass menucheckbutton(menuentry)
+  ((command :accessor command :initarg :command :initform nil)))
+
+(defmethod initialize-instance :after ((m menucheckbutton) &key)
+  (when (command m)
+    (add-callback (name m) (command m)))
+  (format-wish "~A add checkbutton -label {~A} -variable ~a ~@[ -command {callback ~a}~]"
+	       (widget-path (master m)) (text m) (name m) (and (command m) (name m))))
+
+(defmethod value ((cb menucheckbutton))
+  (format-wish "senddata $~a" (name cb))
+  (read-data))
+
+(defmethod (setf value) (val (cb menucheckbutton))
+  (format-wish "set ~a ~a" (name cb) val)
+  val)
+
+(defclass menuradiobutton(menuentry) 
+  ((command :accessor command :initarg :command :initform nil)
+   (group :accessor group :initarg :group :initform nil)))
+
+(defmethod initialize-instance :after ((m menuradiobutton) &key)
+  (when (command m)
+    (add-callback (name m) (command m)))
+  (unless (group m)
+    (setf (group m)
+	  (name m)))
+  (format-wish "~A add radiobutton -label {~A} -value ~a -variable ~a ~@[ -command {callback ~a}~]"
+               (widget-path (master m)) (text m) (name m) (group m)
+               (and (command m) (name m))))
+
+(defmethod value ((cb menuradiobutton))
+  (format-wish "senddata $~a" (group cb))
+  (read-data))
+
+(defmethod (setf value) (val (cb menuradiobutton))
+  (format-wish "set ~a ~a" (group cb) val)
+  val)
+
+
+;;; method to pop up a menue at the root window coordinates x and y
+
+(defgeneric popup (menu x y))
+(defmethod popup ((menu menu) x y)
+  (format-wish "tk_popup ~A ~A ~A" (widget-path menu)
+               (tk-number x) (tk-number y))
+  menu)
+
+(defgeneric menu-delete (menu index))
+(defmethod menu-delete ((menu menu) index)
+  (format-wish "~A delete ~A" (widget-path menu) index)
+  menu)
+
+;;; standard button widget
+
+(defwidget button (tktextvariable widget) () "button")
+
+(defmethod (setf command) (val (button button))
+  (add-callback (name button) val)
+  (format-wish "~a configure -command {callback ~a}" (widget-path button) (name button))
+  val)
+
+;;; check button widget
+
+(defwidget check-button (tktextvariable widget tkvariable) () "checkbutton")
+
+(defmethod (setf command) (val (check-button check-button))
+  (add-callback (name check-button) val)
+  (format-wish "~a configure -command {callbackval ~a $~a}" (widget-path check-button)
+	       (name check-button) (name check-button))
+  val)
+
+;;; radio button widget
+
+(defwidget radio-button (tktextvariable widget) 
+  ((val :accessor radio-button-value :initarg :value :initform nil)
+   (var :accessor radio-button-variable :initarg :variable :initform nil)) 
+  "radiobutton")
+
+(defmethod value ((rb radio-button))
+  "reads the content of the shared variable of the radio button set"
+  (if (radio-button-variable rb)
+      (progn
+	(format-wish "senddata $~a" (radio-button-variable rb))
+	(read-data))
+      nil))
+
+(defmethod (setf value) (val (rb radio-button))
+  "sets the content of the shared variable of the radio button set"
+  (when (radio-button-variable rb)
+    (format-wish "set ~a ~a" (radio-button-variable rb) val))
+  val)
+
+(defmethod (setf command) (val (rb radio-button))
+  (add-callback (name rb) val)
+  (format-wish "~a configure -command {callbackval ~a $~a}" (widget-path rb) (name rb) (radio-button-variable rb))
+  val)
+
+;; text entry widget
+
+(defwidget entry (tktextvariable widget) () "entry")
+
+(defun entry-select (e from to)
+  (format-wish "~a selection range ~a ~a" (widget-path e) from to)
+  e)
+
+(defgeneric cursor-index (widget)
+  (:documentation "returns the cursor index in the widget"))
+
+(defmethod cursor-index ((e entry))
+  (format-wish "senddata [~a index insert]" (widget-path e))
+  (read-data))
+
+(defun split (string at)
+  (let ((pos (search at string))
+        erg)
+    (loop
+       while pos
+       do
+         (when (> pos 0)
+           (push (subseq string 0 pos) erg))
+         (setf string (subseq string (+ pos (length at))))
+         (setf pos (search at string)))
+    (when (> (length string) 0)
+      (push string erg))
+    (nreverse erg)))
+        
+
+
+;;; frame widget 
+
+(defwidget frame (widget) () "frame")
+
+;(defun make-frame (master)
+;  (make-instance 'frame :master master))
+
+;;; labelframe widget 
+
+(defwidget labelframe (widget) () "labelframe")
+
+(defmethod (setf text) :after (val (l labelframe))
+  (format-wish "~a configure -text {~a}" (widget-path l) val)
+  val)
+
+;;; panedwindow widget
+
+
+(defwidget paned-window (widget) () "panedwindow")
+
+(defgeneric add-pane (window widget))
+(defmethod add-pane ((pw paned-window) (w widget))
+  (format-wish "~a add ~a" (widget-path pw) (widget-path w))
+  pw)
+
+(defgeneric forget-pane (window widget))
+(defmethod forget-pane ((pw paned-window) (w widget))
+  (format-wish "~a forget ~a" (widget-path pw) (widget-path w))
+  pw)
+
+;;; listbox widget
+
+(defwidget listbox (widget)
+  ((xscroll :accessor xscroll :initarg :xscroll :initform nil)
+   (yscroll :accessor yscroll :initarg :yscroll :initform nil)
+   ) "listbox")
+
+(defmethod (setf command) (val (listbox listbox))
+  (add-callback (name listbox) val)
+  (format-wish "bind ~a <<ListboxSelect>> {callbackval ~a ([~a curselection])}" (widget-path listbox) (name listbox)
+	       (widget-path listbox))
+  val)
+
+(defgeneric listbox-append (l vals))
+(defmethod listbox-append ((l listbox) values)
+  "append values (which may be a list) to the list box"
+  (if (listp values)
+      (format-wish "~a insert end ~{ \{~a\}~}" (widget-path l) values)
+      (format-wish "~a insert end \{~a\}" (widget-path l) values))
+  l)
+
+(defgeneric listbox-get-selection (l))
+(defmethod listbox-get-selection ((l listbox))
+  (format-wish "senddata \"([~a curselection])\"" (widget-path l))
+  (read-data))
+
+(defgeneric listbox-select (l val))
+(defmethod listbox-select ((l listbox) val)
+  "modify the selection in listbox, if nil is given, the selection is cleared,
+if a number is given the corresponding element is selected, alternatively
+a list of numbers may be given"
+  (if (null val)
+      (format-wish "~a selection clear 0 end" (widget-path l))
+      (if (listp val)
+          (format-wish "~a selection set ~{ ~a~}" (widget-path l) val)
+          (format-wish "~a selection set ~a" (widget-path l) val)))
+  l)
+
+(defgeneric listbox-clear (l))
+
+(defmethod listbox-clear ((l listbox))
+  (format-wish "~a delete 0 end" (widget-path l))
+  l)
+
+
+(defgeneric listbox-configure (l i &rest options))
+(defmethod listbox-configure ((l listbox) index &rest options)
+  (format-wish "~a itemconfigure ~a ~{ -~(~a~) {~(~a~)}~}" (widget-path l) index options)
+  l)
+
+(defgeneric listbox-nearest (listbox y))
+(defmethod listbox-nearest ((l listbox) y)
+  (format-wish "senddata [~a nearest ~a]" (widget-path l) y)
+  (read-data))
+
+
+(defclass scrolled-listbox (frame)
+  ((listbox :accessor listbox)
+   (hscroll :accessor hscroll)
+   (vscroll :accessor vscroll)
+   ))
+
+(defmethod initialize-instance :after ((sl scrolled-listbox) &key)
+  (setf (hscroll sl) (make-scrollbar sl :orientation "horizontal"))
+  (setf (vscroll sl) (make-scrollbar sl))
+  (setf (listbox sl) (make-instance 'listbox :master sl :xscroll (hscroll sl) :yscroll (vscroll sl)))
+  (grid (listbox sl) 0 0 :sticky "news")
+  (grid (hscroll sl) 1 0 :sticky "we")
+  (grid (vscroll sl) 0 1 :sticky "ns")
+  (grid-columnconfigure sl 0 :weight 1)
+  (grid-columnconfigure sl 1 :weight 0)
+  (grid-rowconfigure sl 0 :weight 1)
+  (grid-rowconfigure sl 1 :weight 0)
+ 
+  (configure (hscroll sl) "command" (concatenate 'string (widget-path (listbox sl)) " xview"))
+  (configure (vscroll sl) "command" (concatenate 'string (widget-path (listbox sl)) " yview"))
+  (configure (listbox sl) "xscrollcommand" (concatenate 'string (widget-path (hscroll sl)) " set"))
+  (configure (listbox sl) "yscrollcommand" (concatenate 'string (widget-path (vscroll sl)) " set")))
+
+(defmethod listbox-append ((l scrolled-listbox) values)
+  (listbox-append (listbox l) values)
+  l)
+
+(defmethod listbox-get-selection ((l scrolled-listbox))
+  (listbox-get-selection (listbox l)))
+
+(defmethod listbox-select ((l scrolled-listbox) val)
+  (listbox-select (listbox l) val)
+  l)
+
+;;; scrolled-text
+
+(defclass scrolled-text (frame)
+  ((textbox :accessor textbox)
+   (hscroll :accessor hscroll)
+   (vscroll :accessor vscroll)
+   ))
+
+(defmethod initialize-instance :after ((st scrolled-text) &key)
+  (setf (hscroll st) (make-scrollbar st :orientation "horizontal"))
+  (setf (vscroll st) (make-scrollbar st))
+  (setf (textbox st) (make-instance 'text :master st :xscroll (hscroll st) :yscroll (vscroll st)))
+  (grid (textbox st) 0 0 :sticky "news")
+  (grid (hscroll st) 1 0 :sticky "we")
+  (grid (vscroll st) 0 1 :sticky "ns")
+  (grid-columnconfigure st 0 :weight 1)
+  (grid-columnconfigure st 1 :weight 0)
+  (grid-rowconfigure st 0 :weight 1)
+  (grid-rowconfigure st 1 :weight 0)
+ 
+  (configure (hscroll st) "command" (concatenate 'string (widget-path (textbox st)) " xview"))
+  (configure (vscroll st) "command" (concatenate 'string (widget-path (textbox st)) " yview"))
+  (configure (textbox st) "xscrollcommand" (concatenate 'string (widget-path (hscroll st)) " set"))
+  (configure (textbox st) "yscrollcommand" (concatenate 'string (widget-path (vscroll st)) " set"))
+  )
+
+(defgeneric append-text (txt text &rest tags))
+(defmethod append-text ((txt scrolled-text) text &rest tags )
+  (format-wish "~a insert end \"~a\" {~{ ~(~a~)~}}" (widget-path (textbox txt)) (tkescape text) tags)
+  txt)
+
+(defmethod text ((self scrolled-text))
+  (text (textbox self)))
+
+(defmethod (setf text) (new-text (self scrolled-text))
+  (setf (text (textbox self)) new-text))
+
+(defgeneric insert-object (txt object))
+(defmethod insert-object ((txt scrolled-text) obj)
+  (format-wish "~a window create end -window ~a" (widget-path (textbox txt)) (widget-path obj))
+  txt)
+
+(defgeneric see (txt pos))
+(defmethod see ((txt scrolled-text) pos)
+  (format-wish "~a see ~a" (widget-path (textbox txt)) pos)
+  txt)
+
+(defmethod see ((lb listbox) pos)
+  (format-wish "~a see ~a" (widget-path lb) pos)
+  lb)
+
+;;; scale widget
+
+(defwidget scale (tkvariable widget) () "scale")
+
+(defmethod (setf command) (val (scale scale))
+  (add-callback (name scale) val)					
+  (format-wish "proc ~a-command {val} {callbackval ~a $val}" (name scale) (name scale))
+  (format-wish "~a configure -command ~a-command" (widget-path scale) (name scale))
+  val)
+
+;;; spinbox widget
+
+(defwidget spinbox (tktextvariable widget) () "spinbox")
+
+(defmethod (setf command) (val (sp spinbox))
+  (add-callback (name sp) val)					
+  (format-wish "~a configure -command {callbackstring ~a %s}" (widget-path sp) (name sp))
+  val)
+
+;;; toplevel (window) widget 
+
+(defwidget toplevel (widget) 
+  ((protocol-destroy :accessor protocol-destroy :initarg :on-close :initform nil)
+   (title :accessor title :initform nil :initarg :title)
+   ) 
+  "toplevel"
+  (when (title widget)
+    (wm-title widget (title widget)))
+  (unless (protocol-destroy widget)
+    (format-wish "wm protocol ~a WM_DELETE_WINDOW {wm withdraw ~a}" (widget-path widget) (widget-path widget))))
+
+(defun make-toplevel (master)
+  (make-instance 'toplevel :master master))
+
+;;; label widget
+
+(defwidget label (tktextvariable widget) () "label")
+
+;(defun make-label (master text)
+;  (make-instance 'label :master master  :text text))
+
+;;; message widget
+
+(defwidget message (tktextvariable widget) () "message")
+
+;;; scrollbar
+
+(defwidget scrollbar (widget) () "scrollbar")
+
+(defun make-scrollbar(master &key (orientation "vertical"))
+  (make-instance 'scrollbar :master master :orientation orientation))
+
+(defclass scrolled-canvas (frame)
+  ((canvas :accessor canvas)
+   (hscroll :accessor hscroll)
+   (vscroll :accessor vscroll)
+   ))
+
+(defun make-scrolled-canvas (master)
+  (make-instance 'scrolled-canvas :master master ))
+
+(defmethod initialize-instance :after ((sc scrolled-canvas) &key)
+  (setf (hscroll sc) (make-scrollbar sc :orientation "horizontal"))
+  (setf (vscroll sc) (make-scrollbar sc))
+  (setf (canvas sc) (make-canvas sc :xscroll (hscroll sc) :yscroll (vscroll sc)))
+  (grid (canvas sc) 0 0 :sticky :news)
+  (grid (hscroll sc) 1 0 :sticky :we)
+  (grid (vscroll sc) 0 1 :sticky :ns)
+  (grid-columnconfigure sc 0 :weight 1)
+  (grid-columnconfigure sc 1 :weight 0)
+  (grid-rowconfigure sc 0 :weight 1)
+  (grid-rowconfigure sc 1 :weight 0)
+ 
+  (configure (hscroll sc) "command" (concatenate 'string (widget-path (canvas sc)) " xview"))
+  (configure (vscroll sc) "command" (concatenate 'string (widget-path (canvas sc)) " yview"))
+  (configure (canvas sc) "xscrollcommand" (concatenate 'string (widget-path (hscroll sc)) " set"))
+  (configure (canvas sc) "yscrollcommand" (concatenate 'string (widget-path (vscroll sc)) " set"))
+  )
+
+
+(defclass scrolled-frame (frame)
+  ((inner :accessor interior)
+   (displayframe :accessor scrolled-frame-display)
+   (hscroll :accessor hscroll)
+   (vscroll :accessor vscroll)
+   ))
+
+(defmethod initialize-instance :after ((sf scrolled-frame) &key)
+  (let ((f (make-instance 'frame :master sf)))
+    (setf (scrolled-frame-display sf) f)
+    (setf (interior sf) (make-instance 'frame :master f))
+    (setf (hscroll sf) (make-instance 'scrollbar :master sf :orientation "horizontal"))
+    (setf (vscroll sf) (make-instance 'scrollbar :master sf :orientation "vertical"))
+    (grid f 0 0 :sticky "news")
+    (grid (hscroll sf) 1 0 :sticky "we")
+    (grid (vscroll sf) 0 1 :sticky "ns")
+    (grid-columnconfigure sf 0 "weight" 1)
+    (grid-columnconfigure sf 1 "weight" 0)
+    (grid-rowconfigure sf 0 "weight" 1)
+    (grid-rowconfigure sf 1 "weight" 0)
+    (place (interior sf) 0 0)
+    (send-wish (format nil "~a set  0.1 0.5" (widget-path (hscroll sf))))
+    (send-wish (format nil "~a set  0.1 0.5" (widget-path (vscroll sf))))
+    (send-wish (format nil "~a configure -command ~axv" (widget-path (hscroll sf)) (name sf)))
+    (send-wish (format nil "~a configure -command ~ayv" (widget-path (vscroll sf)) (name sf)))
+    (send-wish (format nil "
+proc ~axv {{com moveto} {val 0} {unit 0}} {
+set x [winfo x ~a]
+set y [winfo y ~a]
+set wx [winfo width ~a]
+set w [winfo width ~a]
+if {$val < 0} {set val 0}
+if {$val > [expr 1.0*($wx-$w)/$wx]} {set val  [expr 1.0*($wx-$w)/$wx]}
+place ~a -x [expr -($val * $wx)] -y $y
+set x [winfo x ~a]
+~a set [expr -1.0*$x/$wx] [expr 1.0*($w-$x)/$wx]
+}
+proc ~ayv {{com moveto} {val 0} {unit 0}} {
+set x [winfo x ~a]
+set y [winfo y ~a]
+set wy [winfo height ~a]
+set h [winfo height ~a]
+if {$val < 0} {set val 0}
+if {$val > [expr 1.0*($wy-$h)/$wy]} {set val  [expr 1.0*($wy-$h)/$wy]}
+place ~a -x $x -y [expr -($val * $wy)]
+set y [winfo y ~a]
+~a set [expr -1.0*$y/$wy] [expr 1.0*($h-$y)/$wy]
+}
+
+" (name sf)
+  (widget-path (interior sf))
+  (widget-path (interior sf))
+  (widget-path (interior sf))
+  (widget-path f)
+  (widget-path (interior sf))
+  (widget-path (interior sf))		   
+  (widget-path (hscroll sf))
+  
+  (name sf)
+  (widget-path (interior sf))
+  (widget-path (interior sf))
+  (widget-path (interior sf))
+  (widget-path f)
+  (widget-path (interior sf))
+  (widget-path (interior sf))		   
+  (widget-path (vscroll sf))
+  ))))
+
+;;; canvas widget
+
+(defwidget canvas (widget)
+  ((xscroll :accessor xscroll :initarg :xscroll :initform nil)
+   (yscroll :accessor yscroll :initarg :yscroll :initform nil)
+   (scrollregion-x0 :accessor scrollregion-x0 :initform nil)
+   (scrollregion-y0 :accessor scrollregion-y0 :initform nil)
+   (scrollregion-x1 :accessor scrollregion-x1 :initform nil)
+   (scrollregion-y1 :accessor scrollregion-y1 :initform nil)
+   ) 
+  "canvas"
+  )
+
+;; wrapper class for canvas items
+(defclass canvas-item ()
+  ((canvas :accessor canvas :initarg :canvas)
+   (handle :accessor handle :initarg :handle))
+  )
+
+(defmethod canvas ((canvas canvas)) canvas)
+
+(defun make-canvas (master &key (width nil) (height nil) (xscroll nil) (yscroll nil))
+  (make-instance 'canvas :master master :width width :height height :xscroll xscroll :yscroll yscroll))
+
+(defgeneric scale (canvas factor &optional factory))
+(defmethod scale ((canvas canvas) factor &optional factory)
+  (format-wish "~a scale all 0 0 ~a ~a" (widget-path canvas) factor (or factory factor))
+  canvas)
+
+(defun move-all (canvas dx dy)
+  (format-wish "~a move all ~a ~a" (widget-path canvas) dx dy)
+  canvas)
+
+
+(defgeneric bbox (item))
+(defmethod bbox ((item canvas-item))
+  (canvas-bbox (canvas item) (handle item)))
+
+(defmethod bbox ((canvas canvas))
+  (format-wish "senddata \"([~a bbox all])\"" (widget-path canvas))
+  (read-data))
+
+
+(defun canvas-bbox (canvas handle)
+  (format-wish "senddata \"([~a bbox ~a])\"" (widget-path canvas) handle)
+  (read-data))
+
+(defmethod calc-scroll-region ((canvas canvas))
+  (format-wish "~a configure -scrollregion [~a bbox all]" (widget-path canvas) (widget-path canvas))
+  canvas)
+
+(defgeneric set-coords (canvas item coords))
+
+(defmethod set-coords (canvas item coords)
+  (format-wish "~a coords ~a~{ ~a~}" (widget-path canvas) item coords)
+  canvas)
+
+(defmethod set-coords ((canvas canvas) (item canvas-item) (coords list))
+  (set-coords canvas (handle item) coords))
+
+(defgeneric set-coords* (canvas item &rest coords))
+
+(defmethod set-coords* (canvas item &rest coords)
+  (funcall #'set-coords canvas item coords))
+
+(defmethod set-coords* ((canvas canvas) (item canvas-item) &rest coords)
+  (funcall #'set-coords canvas (handle item) coords))
+
+(defgeneric coords (item))
+(defmethod coords ((item canvas-item))
+     (list 0 0)				; not implemented yet
+     )
+ 
+(defun format-number (stream number)
+  (cond
+   ((complexp number)
+    (format-number stream (realpart number))
+    (format-number stream (imagpart number)))
+   ((integerp number)
+    (format stream " ~d" number))	    
+   ((typep number 'single-float)
+    (format stream " ~a" number))
+   ((numberp number)
+    (format-number stream (coerce number 'single-float)))
+   ((null number)
+    )
+   ((listp number)
+    (format-number stream (car number))
+    (format-number stream (cdr number)))
+   ((arrayp number)
+    (dotimes (i (length number))
+      (format-number stream (aref number i))))
+   ))        
+
+(defun process-coords (input)
+  (with-output-to-string (s)
+			 (format-number s input)))
+
+(defgeneric (setf coords) (val item))
+
+(defmethod (setf coords) (val (item canvas-item))
+  (let ((coord-list (process-coords val)))
+    (format-wish "~a coords ~a ~a" (widget-path (canvas item)) (handle item) coord-list)
+    coord-list))
+
+(defgeneric itembind (canvas w event fun))
+(defmethod itembind ((canvas canvas) (item canvas-item) event fun)
+  (itembind canvas (handle item) event fun))
+
+(defmethod itembind ((canvas canvas) (item integer) event fun)
+  "bind fun to event of the widget w"
+  (let ((name (create-name)))
+    (add-callback name fun)
+    (format-wish "~a bind ~a ~a {sendevent ~A %x %y %k %K %w %h %X %Y %b}" (widget-path canvas) item event name))
+  canvas)
+
+(defmethod bind ((w canvas-item) event fun &key append exclusive)
+  (declare (ignore append exclusive))
+  (itembind (canvas w) (handle w) event fun))
+
+(defgeneric scrollregion (canvas x0 y0 x1 y1))
+(defmethod scrollregion ((c canvas) x0 y0 x1 y1)
+  (setf (scrollregion-x0 c) (tk-number x0))
+  (setf (scrollregion-y0 c) (tk-number y0))
+  (setf (scrollregion-x1 c) (tk-number x1))
+  (setf (scrollregion-y1 c) (tk-number y1))
+  (configure c :scrollregion (format nil "~a ~a ~a ~a" (tk-number x0) (tk-number y0) (tk-number x1) (tk-number y1)))
+  c)
+
+(defgeneric canvasx (canvas screenx))
+(defmethod canvasx ((canvas canvas) screenx)
+  (format-wish "senddata [~a canvasx ~a]" (widget-path canvas) (tk-number screenx))
+  (read-data))
+
+(defgeneric canvasy (canvas screeny))
+(defmethod canvasy ((canvas canvas) screeny)
+  (format-wish "senddata [~a canvasy ~a]" (widget-path canvas) (tk-number screeny))
+  (read-data))
+
+(defgeneric itemmove (canvas item dx dy))
+(defmethod itemmove ((canvas canvas) (item integer) dx dy)
+  (format-wish "~a move ~a ~a ~a" (widget-path canvas) item (tk-number dx) (tk-number dy))
+  canvas)
+
+(defmethod itemmove ((canvas canvas) (item canvas-item) dx dy)
+  (itemmove (canvas item) (handle item) (tk-number dx) (tk-number dy)))
+
+(defgeneric itemdelete (canvas item))
+(defmethod itemdelete ((canvas canvas) (item integer))
+  (format-wish "~a delete ~a" (widget-path canvas) item)
+  canvas)
+
+(defmethod itemdelete ((canvas canvas) (item canvas-item))
+  (format-wish "~a delete ~a" (widget-path canvas) (handle item))
+  canvas)
+
+(defgeneric move (item dx dy))
+(defmethod move ((item canvas-item) dx dy)
+  (itemmove (canvas item) (handle item) (tk-number dx) (tk-number dy)))
+
+(defgeneric clear (widget))
+(defmethod clear ((canvas canvas))
+  "delete all items within a canvas"
+  (format-wish "~a delete all" (widget-path canvas))
+  canvas)
+
+;; canvas item functions
+
+(defun create-line (canvas coords)
+  (format-wish "senddata [~a create line ~a]" (widget-path canvas) (process-coords coords))
+  (read-data))
+
+(defun create-line* (canvas &rest coords)
+  (funcall #'create-line canvas coords))
+
+(defclass canvas-line (canvas-item)
+  ())
+
+(defmethod initialize-instance :after ((c canvas-line) &key canvas coords)
+  (setf (handle c) (create-line canvas coords)))
+
+(defun make-line (canvas coords)
+  (make-instance 'canvas-line :canvas canvas :coords coords))
+
+(defun create-polygon (canvas coords)
+  (format-wish "senddata [~a create polygon ~a]" (widget-path canvas) (process-coords coords))
+  (read-data))
+
+(defclass canvas-polygon (canvas-item)
+  ())
+
+(defmethod initialize-instance :after ((c canvas-polygon) &key canvas coords)
+  (setf (handle c) (create-polygon canvas coords)))
+
+(defun make-polygon (canvas coords)
+  (make-instance 'canvas-polygon :canvas canvas :coords coords))
+
+(defun create-oval (canvas x0 y0 x1 y1)
+  (format-wish "senddata [~a create oval ~a ~a ~a ~a]" (widget-path canvas)
+               (tk-number x0) (tk-number y0)
+               (tk-number x1) (tk-number y1))
+  (read-data))
+
+(defclass canvas-oval (canvas-item)
+  ())
+
+(defmethod initialize-instance :after ((c canvas-oval) &key canvas x0 y0 x1 y1)
+  (setf (handle c) (create-oval canvas x0 y0 x1 y1)))
+
+(defun make-oval (canvas x0 y0 x1 y1)
+  (make-instance 'canvas-oval :canvas canvas :x0 x0 :y0 y0 :x1 x1 :y1 y1))
+
+
+(defun create-rectangle (canvas x0 y0 x1 y1)
+  (format-wish "senddata [~a create rectangle ~a ~a ~a ~a]" (widget-path canvas)
+               (tk-number x0) (tk-number y0) (tk-number x1) (tk-number y1))
+  (read-data))
+
+(defclass canvas-rectangle (canvas-item)
+  ())
+
+(defmethod initialize-instance :after ((c canvas-rectangle) &key canvas x0 y0 x1 y1)
+  (setf (handle c) (create-rectangle canvas x0 y0 x1 y1)))
+
+(defun make-rectangle (canvas x0 y0 x1 y1)
+  (make-instance 'canvas-rectangle :canvas canvas :x0 x0 :y0 y0 :x1 x1 :y1 y1))
+
+(defun make-items (canvas items)
+  (let ((code (with-output-to-string (s)
+                (format s "senddata \"( ~%")
+                (dolist (item items)
+                  (let ((itemtype (pop item)))
+                    (cond
+                      ((eq itemtype :rectangle)
+                       (format s " [~a create rectangle ~a ~a ~a ~a " (widget-path canvas)
+                               (truncate (pop item))
+                               (truncate (pop item))
+                               (truncate (pop item))
+                               (truncate (pop item)))
+                       (loop
+                        while item
+                        do
+                        (format s " -~(~a~) {~(~a~)}" (pop item) (pop item)))
+                       (format s " ]~%"))
+                      ((eq itemtype :text)
+                       (format s " [~a create text ~a ~a -text {~a} "
+                               (widget-path canvas)
+                               (truncate (pop item))
+                               (truncate (pop item))
+                               (tkescape (pop item)))
+                       (loop
+                        while item
+                        do
+                        (format s " -~(~a~) {~(~a~)}" (pop item) (pop item)))
+                       (format s " ]~%"))))
+                  )
+                (format s ")\"~%"))))
+    (send-wish code)
+    (let ((erg (read-data)))
+      ;;(format t "data: ~s~%" erg) (finish-output)
+      (mapcar (lambda (handle)
+                (make-instance 'canvas-item :canvas canvas :handle handle))
+              erg))))
+
+(defun create-text (canvas x y text)
+  (format-wish "senddata [~a create text ~a ~a -anchor nw -text {~a}]" (widget-path canvas)
+               (tk-number x) (tk-number y)
+               text)
+  (read-data))
+
+(defclass canvas-text (canvas-item)
+  ())
+
+(defmethod initialize-instance :after ((c canvas-text) &key canvas x y text)
+  (setf (handle c) (create-text canvas x y text)))
+
+(defun create-image (canvas x y &key image)
+  (format-wish "senddata [~a create image ~a ~a -anchor nw~@[ -image ~a~]]" (widget-path canvas)
+               (tk-number x) (tk-number y)
+	       (and image (name image)))
+  (read-data))
+
+(defclass canvas-image (canvas-item)
+  ())
+
+(defmethod initialize-instance :after ((c canvas-image) &key canvas x y image)
+  (setf (handle c) (create-image canvas x y :image image)))
+
+(defun image-setpixel (image data x y &optional x2 y2 )
+  (format-wish "~A put {~{{~:{#~2,'0X~2,'0X~2,'0X ~} } ~} } -to ~a ~a~@[ ~a~]~@[ ~a~]" (name image) data x y x2 y2)
+  image)
+
+(defun create-bitmap (canvas x y &key (bitmap nil))
+  (format-wish "senddata [~a create image ~a ~a -anchor nw~@[ -bitmap ~a~]]" (widget-path canvas)
+               (tk-number x) (tk-number y)
+	       (and bitmap (name bitmap)))
+  (read-data))
+
+
+(defun create-arc (canvas x0 y0 x1 y1 &key (start 0) (extent 180) (style "pieslice"))
+  (format-wish "senddata [~a create arc ~a ~a ~a ~a -start ~a -extent ~a -style ~a]"
+	       (widget-path canvas)
+               (tk-number x0) (tk-number y0) (tk-number x1) (tk-number y1) start extent style)
+  (read-data))
+
+(defclass canvas-arc (canvas-item)
+  ())
+
+(defmethod initialize-instance :after ((c canvas-arc) &key canvas x0 y0 x1 y1 (start 0) (extent 180) (style "pieslice"))
+  (setf (handle c) (create-arc canvas x0 y0 x1 y1 :start start :extent extent :style style)))
+
+
+(defun create-window (canvas x y widget &key (anchor :nw))
+  (format-wish "senddata [~a create window ~a ~a -anchor ~(~a~) -window ~a]"
+ 	       (widget-path canvas) (tk-number x) (tk-number y) anchor (widget-path widget))
+  (read-data))
+
+(defun postscript (canvas filename &key rotate pagewidth pageheight)
+  (if (and (scrollregion-x0 canvas)
+	   (scrollregion-x1 canvas)
+	   (scrollregion-y0 canvas)
+	   (scrollregion-y1 canvas))
+      (format-wish "~a postscript -file ~a -x ~a -y ~a -width ~a -height ~a~@[ -rotate ~a~]~@[ -pagewidth ~a~]~@[ -pageheight ~a~]"
+		(widget-path canvas) filename
+		(scrollregion-x0 canvas) (scrollregion-y0 canvas)
+		(- (scrollregion-x1 canvas) (scrollregion-x0 canvas))
+		(- (scrollregion-y1 canvas) (scrollregion-y0 canvas))
+		rotate pageheight pagewidth
+		)
+    (format-wish "~a postscript -file ~a" (widget-path canvas) filename))
+  canvas)
+
+;;; text widget
+
+(defwidget text (widget)
+  ((xscroll :accessor xscroll :initarg :xscroll :initform nil)
+   (yscroll :accessor yscroll :initarg :yscroll :initform nil)
+  )  "text")
+
+(defmethod cursor-index ((text text))
+  (format-wish "senddatastring [~a index insert]" (widget-path text))
+  (let* ((index (split (read-data) ".")))
+        (values (parse-integer (first index))
+                (parse-integer (second index)))))
+
+(defun make-text (master &key (width nil) (height nil))
+  (make-instance 'text :master master :width width :height height))
+
+(defmethod append-text ((txt text) text &rest tags)
+  (format-wish "~a insert end \"~a\" {~{ ~(~a~)~}}" (widget-path txt) (tkescape text) tags)
+  txt)
+
+(defmethod insert-object ((txt text) obj)
+  (format-wish "~a window create end -window ~a" (widget-path txt) (widget-path obj))
+  txt)
+
+(defun append-newline (text)
+  (append-text text (coerce '(#\Linefeed) 'string)))
+
+(defgeneric clear-text (txt))
+(defmethod clear-text ((txt text))
+  (format-wish "~A delete 0.0 end" (widget-path txt))
+  txt)
+
+(defmethod see((txt text) pos)
+  (format-wish "~a see ~a" (widget-path txt) pos)
+  txt)
+
+(defmethod search-all-text ((txt text) pattern)
+  (format-wish "searchall ~a ~a" (widget-path txt) pattern)
+  txt)
+
+(defmethod search-next-text ((txt text) pattern)
+  (format-wish "searchnext ~a ~a" (widget-path txt) pattern)
+  txt)
+
+(defgeneric tag-configure (txt tag option value))
+(defmethod tag-configure ((txt text) tag option value)
+  (format-wish "~a tag configure ~a -~(~a~) {~(~a~)}" (widget-path txt)
+	       (if (stringp tag)
+		   tag
+		 (format nil "~(~a~)" tag))
+	       option value)
+  txt)
+
+(defgeneric tag-bind (txt tag event fun))
+(defmethod tag-bind ((txt text) tag event fun)
+  "bind fun to event of the tag of the text widget txt"
+  (let ((name (create-name)))
+    (add-callback name fun)
+    (format-wish "~a tag bind ~a ~a {callback ~A}" (widget-path txt) tag event name)
+    )
+  txt)
+
+(defmethod text ((text text))
+  (format-wish "senddatastring [~a get 1.0 end]" (widget-path text))
+  (read-data))
+
+(defmethod (setf text) (val (text text))
+  (format-wish "~A delete 0.0 end;~A insert end {~A}" (widget-path text) (widget-path text) val)
+  val)
+
+(defgeneric save-text (txt filename))
+(defmethod save-text ((txt text) filename)
+  "save the content of the text widget into the file <filename>"
+  (format-wish "set file [open {~a} \"w\"];puts $file [~a get 1.0 end];close $file;puts \"asdf\"" filename (widget-path txt))
+  (read-line (wish-stream *wish*))
+  txt)
+
+(defgeneric load-text (txt filename))
+(defmethod load-text((txt text) filename)
+  "load the content of the file <filename>"
+;  (format-wish "set file [open {~a} \"r\"];~a delete 1.0 end;~a insert end [read $file];close $file;puts \"asdf\"" filename (widget-path txt) (widget-path txt))
+  (format-wish "set file [open {~a} \"r\"];~a delete 1.0 end;~a insert end [read $file];close $file;puts \"(:DATA asdf)\"" filename (widget-path txt) (widget-path txt))
+  (read-data))
+
+;;; photo image object
+
+(defclass photo-image(tkobject)
+  ((data :accessor data :initform nil :initarg :data)
+   )
+  )
+
+(defmethod widget-path ((photo photo-image))
+  (name photo))
+
+(defmethod initialize-instance :after ((p photo-image)
+                                       &key width height format grayscale data)
+  (check-type data (or null string))
+  (setf (name p) (create-name))
+  (format-wish "image create photo ~A~@[ -width ~a~]~@[ -height ~a~]~@[ -format \"~a\"~]~@[ -grayscale~*~]~@[ -data ~s~]"
+               (name p) width height format grayscale data))
+
+(defun make-image ()
+  (let* ((name (create-name))
+	 (i (make-instance 'photo-image :name name)))
+    ;(create i)
+    i))
+
+(defgeneric image-load (p filename))
+(defmethod image-load((p photo-image) filename)
+  ;(format t "loading file ~a~&" filename)
+  (send-wish (format nil "~A read {~A} -shrink" (name p) filename))
+  p)
+
+(defgeneric ishow (p name))
+(defmethod ishow((p photo-image) name)
+  (convert (concatenate 'string name ".jpg")
+	   "ishow.ppm")
+  (image-load p "ishow.ppm"))
+
+;;;; generic methods on widgets
+
+;;; pack method for widget arrangement in container
+
+(defgeneric pack (w &key side fill expand after before padx pady ipadx ipady anchor))
+
+(defmethod pack ((w widget) &key (side :top) (fill :none) expand after before padx pady ipadx ipady anchor)
+  (cond ((stringp side)
+         (warn "Using a string for the :SIDE parameter is deprecated."))
+        ((stringp fill)
+         (warn "Using a string for the :FILL parameter is deprecated.")))
+  (format-wish "pack ~A -side ~(~A~) -fill ~(~A~)~@[~* -expand 1~]~
+             ~@[ -after ~A~]~@[ -before ~A~]~@[ -padx ~A~]~
+             ~@[ -pady ~A~]~@[ -ipadx ~A~]~@[ -ipady ~A~]~@[ -anchor ~(~A~)~]"
+          (widget-path w) side fill expand (and after (widget-path after)) (and before (widget-path before)) padx pady ipadx ipady anchor)
+  w)
+
+(defmethod pack ((list list) &rest rest)
+  (mapcar #'(lambda (w)
+              (apply #'pack w rest))
+	  list))
+
+(defgeneric pack-propagate (widget flag))
+(defmethod pack-propagate ((w widget) flag)
+  (format-wish "pack propagate ~A ~A"
+	       (widget-path w)
+	       (if flag "true" "false"))
+  w)
+
+(defgeneric pack-forget (widget))
+(defmethod pack-forget ((w widget))
+  (format-wish "pack forget ~A" (widget-path w))
+  w)
+
+
+;;; place manager
+
+(defgeneric place (widget x y &key width height))
+(defmethod place (widget x y &key width height)
+  (format-wish "place ~A -x ~A -y ~A~@[ -width ~a~]~@[ -height ~a~]" (widget-path widget)
+               (tk-number x) (tk-number y)
+               (tk-number width) (tk-number height))
+  widget)
+
+(defgeneric place-forget (widget))
+(defmethod place-forget ((w widget))
+  (format-wish "place forget ~A" (widget-path w))
+  w)
+
+;;; grid manager
+
+(defgeneric grid (widget r c &key columnspan ipadx ipady padx pady rowspan sticky))
+(defmethod grid ((w widget) row column &key columnspan ipadx ipady padx pady rowspan sticky)
+  (format-wish "grid ~a -row ~a -column ~a~@[ -columnspan ~a~]~@[ -ipadx ~a~]~
+             ~@[ -ipady ~a~]~@[ -padx ~a~]~@[ -pady ~a~]~@[ -rowspan ~a~]~
+             ~@[ -sticky ~(~a~)~]" (widget-path w) row column columnspan ipadx ipady padx pady rowspan sticky)
+  w)
+
+(defgeneric grid-columnconfigure (widget c o v))
+(defmethod grid-columnconfigure (widget column option value)
+  (format-wish "grid columnconfigure ~a ~a -~(~a~) {~a}" (widget-path widget) column option value)
+  widget)
+
+(defgeneric grid-rowconfigure (widget r o v))
+(defmethod grid-rowconfigure (widget row option value)
+  (format-wish "grid rowconfigure ~a ~a -~(~a~) {~a}" (widget-path widget) row option value)
+  widget)
+
+(defgeneric grid-configure (widget o v))
+(defmethod grid-configure (widget option value)
+  (format-wish "grid configure ~a -~(~a~) {~a}" (widget-path widget) option value)
+  widget)
+
+(defgeneric grid-forget (widget))
+(defmethod grid-forget ((w widget))
+  (format-wish "grid forget ~A" (widget-path w))
+  w)
+
+;;; configure a widget parameter
+
+(defun down (stream object colon at)
+  "Print OBJECT to STREAM, downcasing unless OBJECT is a string, and giving the path of tkobjects."
+  (declare (ignore colon at))
+  (typecase object
+    (string (write-string object stream))
+    (tkobject (write-string (widget-path object) stream))
+    (t (format stream "~(~a~)" object))))
+
+(defgeneric configure (widget option value &rest others))
+(defmethod configure (widget option value &rest others)
+  (format-wish "~A configure~{ -~(~a~) {~/ltk::down/}~}"
+               (widget-path widget)
+               (list* option value others))
+  widget)
+
+(defmethod configure ((item menuentry) option value &rest others)
+  (let ((path (widget-path (master item))))
+    (format-wish "~A entryconfigure [~A index {~A}]~{ -~(~a~) {~/ltk::down/}~}"
+                 path
+                 path
+                 (text item)
+                 (list* option value others)))
+  item)
+
+(defmethod configure ((item canvas-item) option value &rest others)
+  (format-wish "~A itemconfigure ~A~{ -~(~a~) {~/ltk::down/}~}"
+               (widget-path (canvas item)) (handle item)
+               (list* option value others))
+  item)
+
+;;; for tkobjects, the name of the widget is taken
+(defmethod configure (widget option (value tkobject) &rest others)
+  (format-wish "~A configure -~(~A~) {~A} ~{ -~(~a~) {~(~a~)}~}" (widget-path widget) option (widget-path value) others)
+  widget)
+
+(defgeneric cget (widget option))
+(defmethod cget ((widget widget) option)
+  (format-wish "senddatastring [~a cget -~(~a~)]" (widget-path widget) option)
+  (read-data))
+
+;(defun background (widget)
+;  (cget widget :background))
+
+#-:gcl
+;(defun (setf background) (val widget)
+;  (configure widget :background val))
+
+#|
+(defmacro defoption (option)
+  `(progn
+     (defun ,option (widget)
+       (cget widget "asdf"))
+     (export ,option)))
+
+(defoption fill)
+|#
+
+(defgeneric itemconfigure (widget item option value))
+
+(defmethod itemconfigure ((widget canvas) item option value)
+  (format-wish "~A itemconfigure ~A -~(~A~) {~A}" (widget-path widget) item option
+	    (if (stringp value) ;; There may be values that need to be passed as
+		value           ;; unmodified strings, so do not downcase strings
+	      (format nil "~(~a~)" value))) ;; if its not a string, print it downcased
+  widget)
+
+
+;;; for tkobjects, the name of the widget is taken
+(defmethod itemconfigure ((widget canvas) item option (value tkobject))
+  (format-wish "~A itemconfigure ~A -~(~A~) {~A}" (widget-path widget) item option (widget-path value))
+  widget)
+
+(defgeneric itemlower (w i &optional below))
+(defmethod itemlower ((widget canvas) item &optional below)
+  (format-wish "~A lower ~A ~@[~A~]" (widget-path widget)
+	       item below)
+  widget)
+
+(defmethod lower ((item canvas-item) &optional below)
+  (itemlower (canvas item) (handle item) (and below (handle below))))
+
+(defgeneric itemraise (w i &optional above))
+(defmethod itemraise ((widget canvas) item &optional above)
+  (format-wish "~A raise ~A ~@[~A~]" (widget-path widget)
+	       item above)
+  widget)
+
+(defmethod raise ((item canvas-item) &optional above)
+  (itemraise (canvas item) (handle item) (and above (handle above))))
+
+;;; grab functions
+
+(defgeneric grab (toplevel &key global))
+(defmethod grab ((toplevel widget) &key global)
+  (format-wish "grab set ~:[~;-global~] ~a" global (widget-path toplevel))
+  toplevel)
+
+(defgeneric grab-release (toplevel))
+(defmethod grab-release ((toplevel widget))
+  (format-wish "grab release ~a" (widget-path toplevel))
+  toplevel)
+
+
+;;; font functions
+
+(defun font-create (name)
+  (format-wish "senddatastring [font create {~a}]" name)
+  (read-data))
+
+(defun font-metrics (font)
+  (format-wish "sendpropertylist [font metrics {~a}]" font)
+  (read-data))
+
+;;; wm functions
+
+(defgeneric set-wm-overrideredirect (widget value))
+(defmethod set-wm-overrideredirect ((w widget) val)
+  (format-wish "wm overrideredirect ~a ~a" (widget-path w) val)
+  w)
+
+(defgeneric wm-title (widget title))
+(defmethod wm-title ((w widget) title)
+  (format-wish "wm title ~a {~a}" (widget-path w) title)
+  w)
+
+(defgeneric wm-state (widget))
+(defmethod wm-state ((w widget))
+  (format-wish "senddatastring [wm state ~a]" (widget-path w))
+  (read-wish))
+
+(defgeneric (setf wm-state) (new-state widget))
+(defmethod (setf wm-state) (new-state (w widget))
+  (format-wish "wm state ~a ~a" (widget-path w) new-state)
+  new-state)
+
+(defgeneric minsize (widget x y))
+(defmethod minsize ((w widget) x y)
+  (format-wish "wm minsize ~a ~a ~a" (widget-path w)
+               (tk-number x) (tk-number y))
+  w)
+
+(defgeneric maxsize (widget x y))
+(defmethod maxsize ((w widget) x y)
+  (format-wish "wm maxsize ~a ~a ~a" (widget-path w) (tk-number x) (tk-number y))
+  w)
+
+(defgeneric withdraw (toplevel))
+(defmethod withdraw ((tl widget))
+  (format-wish "wm withdraw ~a" (widget-path tl))
+  tl)
+
+(defgeneric normalize (toplevel))
+(defmethod normalize ((tl widget))
+  (format-wish "wm state ~a normal" (widget-path tl))
+  tl)
+
+(defgeneric iconify (toplevel))
+(defmethod iconify ((tl toplevel))
+  (format-wish "wm iconify ~a" (widget-path tl))
+  tl)
+
+(defgeneric deiconify (toplevel))
+(defmethod deiconify ((tl toplevel))
+  (format-wish "wm deiconify ~a" (widget-path tl))
+  tl)
+
+(defgeneric geometry (toplevel))
+(defmethod geometry ((tl widget))
+  (format-wish "senddatastring [wm geometry ~a]" (widget-path tl))
+  (read-data))
+
+(defmethod (setf geometry) (geometry (tl widget))
+  (format-wish "wm geometry ~a ~a" (widget-path tl) geometry)
+  geometry)
+
+(defgeneric set-geometry (toplevel width height x y))
+(defmethod set-geometry ((tl widget) width height x y)
+  ;;(format-wish "wm geometry ~a ~ax~a+~a+~a" (widget-path tl) width height x y)
+  (format-wish "wm geometry ~a ~ax~a~@D~@D" (widget-path tl)
+               (tk-number width) (tk-number height) (tk-number x) (tk-number y))
+  tl)
+
+(defgeneric set-geometry-wh (toplevel width height))
+(defmethod set-geometry-wh ((tl widget) width height)
+  (format-wish "wm geometry ~a ~ax~a" (widget-path tl)
+               (tk-number width) (tk-number height))
+  tl)
+
+(defgeneric set-geometry-xy (toplevel x y))
+(defmethod set-geometry-xy ((tl widget) x y)
+  (format-wish "wm geometry ~a ~@D~@D" (widget-path tl) (tk-number x) (tk-number y))
+  tl)
+ 
+(defgeneric on-close (toplevel fun))
+(defmethod on-close ((tl toplevel) fun)
+  (let ((name (create-name)))
+    (add-callback name fun)
+    (format-wish "wm protocol ~a WM_DELETE_WINDOW {callback ~A}" (widget-path tl) name))
+  tl)
+
+(defmethod on-close ((tl (eql *tk*)) fun)
+  (let ((name (create-name)))
+    (add-callback name fun)
+    (format-wish "wm protocol . WM_DELETE_WINDOW {callback ~A}" name)
+    tl))
+
+(defgeneric on-focus (toplevel fun))
+(defmethod on-focus ((tl toplevel) fun)
+  (let ((name (create-name)))
+    (add-callback name fun)
+    (format-wish "wm protocol WM_TAKE_FOCUS {callback ~A}"
+	      name))
+  tl)
+
+(defun iconwindow (tl wid)
+  (format-wish "wm iconwindow ~a ~a" (widget-path tl) (widget-path wid))
+  tl)  
+
+;;; winfo functions
+
+(defun screen-width (&optional (w nil))
+  "give the width of the screen in pixels (if w is given, of the screen the widget w is displayed on)"
+  (format-wish "senddata [winfo screenwidth ~a]" (if w (widget-path w) "."))
+  (read-data))
+
+(defun screen-height (&optional (w nil))
+  "give the height of the screen in pixels (if w is given, of the screen the widget w is displayed on)"
+  (format-wish "senddata [winfo screenheight ~a]" (if w (widget-path w) "."))
+  (read-data))
+
+(defun screen-width-mm (&optional (w nil))
+  "give the width of the screen in mm (if w is given, of the screen the widget w is displayed on)"
+  (format-wish "senddata [winfo screenmmwidth ~a]" (if w (widget-path w) "."))
+  (read-data))
+
+(defun screen-height-mm (&optional (w nil))
+  "give the height of the screen in mm (if w is given, of the screen the widget w is displayed on)"
+  (format-wish "senddata [winfo screenmmheight ~a]" (if w (widget-path w) "."))
+  (read-data))
+
+(defun screen-mouse-x (&optional (w nil))
+  "give x position of the mouse on screen (if w is given, of the screen the widget w is displayed on)"
+  (format-wish "senddata [winfo pointerx ~a]" (if w (widget-path w) "."))
+  (read-data))
+
+(defun screen-mouse-y (&optional (w nil))
+  "give y position of the mouse on screen (if w is given, of the screen the widget w is displayed on)"
+  (format-wish "senddata [winfo pointery ~a]" (if w (widget-path w) "."))
+  (read-data))
+
+(defun screen-mouse (&optional (w nil))
+  "give the position of the mouse on screen as (x y) (if w is given, of the screen the widget w is displayed on)"
+  (format-wish "senddata \"([winfo pointerxy ~a])\"" (if w (widget-path w) "."))
+  (let ((vals (read-data)))
+    (values (first vals) (second vals))))
+
+(defun window-id (tl)
+  "get the window id of the toplevel"
+  (format-wish "senddatastring [winfo id ~a]" (widget-path tl))
+  (read-data))
+
+(defun window-width (tl)
+  "give the width of the toplevel in pixels"
+  (format-wish "senddata [winfo width ~a]" (widget-path tl))
+  (read-data))
+
+(defun window-height (tl)
+  "give the height of the toplevel in pixels"
+  (format-wish "senddata [winfo height ~a]" (widget-path tl))
+  (read-data))
+
+(defun window-x (tl)
+  "give the x position of the toplevel in pixels"
+  (format-wish "senddata [winfo rootx ~a];flush stdout" (widget-path tl))
+  (read-data))
+
+(defun window-y (tl)
+  "give the y position of the toplevel in pixels"
+  (format-wish "senddata [winfo rooty ~a];flush stdout" (widget-path tl))
+  (read-data))
+
+;;; misc functions
+
+(defun focus (widget)
+  (format-wish "focus ~a" (widget-path widget))
+  widget)
+
+(defun force-focus (widget)
+  (format-wish "focus -force ~a" (widget-path widget))
+  widget)
+
+(defun set-focus-next (widget next)
+  (format-wish "bind ~a <Tab> { focus ~a; break }" (widget-path widget) (widget-path next)))
+
+
+;;; Dialog functions
+
+(defun choose-color (&key parent title initialcolor )
+  (format-wish "senddatastring [tk_chooseColor ~@[ -parent ~A~]~@[ -title {~A}~]~@[ -initialcolor {~A}~]]" (when parent (widget-path parent)) title initialcolor)
+  (read-data))
+
+(defun get-open-file (&key (filetypes '(("All Files" "*")))
+			   (initialdir (namestring *default-pathname-defaults*))
+			   multiple parent title)
+  (let ((files
+        (with-output-to-string (s)
+          (format s "{")
+          (dolist (type filetypes)
+            (let ((name (first type))
+                  (wildcard (second type)))
+              (format s "{{~a} {~a}} " name wildcard)))
+          (format s "}"))))
+    (if multiple
+	(format-wish "senddatastrings [tk_getOpenFile ~
+                      -filetypes ~a ~@[ -initialdir {~a}~] -multiple 1 ~
+                      ~@[ -parent ~a~] ~@[ -title {~a}~]]"
+		      files initialdir 
+		      (and parent (widget-path parent)) title)
+	(format-wish "senddatastring [tk_getOpenFile ~
+                      -filetypes ~a ~@[ -initialdir {~a}~]  ~
+                      ~@[ -parent ~a~] ~@[ -title {~a}~]]"
+		      files initialdir 
+		      (and parent (widget-path parent)) title))
+    (read-data)))
+
+(defun get-save-file (&key (filetypes '(("All Files" "*"))))
+  (let ((files
+        (with-output-to-string (s)
+          (format s "{")
+          (dolist (type filetypes)
+            (let ((name (first type))
+                  (wildcard (second type)))
+              (format s "{{~a} {~a}} " name wildcard)))
+          (format s "}"))))
+    (format-wish "senddatastring [tk_getSaveFile -filetypes ~a]" files)
+    (read-data)))
+
+(defun choose-directory (&key (initialdir (namestring *default-pathname-defaults*))
+			      parent title mustexist)
+  (format-wish "senddatastring [tk_chooseDirectory ~@[ -initialdir {~a }~]~@[ -parent ~a ~]~@[ -title {~a}~]~@[ -mustexist ~a~]]" initialdir (and parent (widget-path parent)) title (and mustexist 1))
+  (read-data))
+
+(defvar *mb-icons* (list "error" "info" "question" "warning")
+  "icon names valid for message-box function")
+
+;;; see make-string-output-string/get-output-stream-string
+(defun message-box (message title type icon &key parent)
+  ;;; tk_messageBox function
+  (format-wish "senddatastring [tk_messageBox -message {~a } -title {~a} -type ~(~a~) -icon ~(~a~)~@[ -parent ~a~]]" message title type icon (and parent (widget-path parent)))
+  (read-keyword))
+
+
+(defun ask-yesno(message &optional (title ""))
+  (equal (message-box message title "yesno" "question") :yes))
+
+(defun ask-okcancel(message &optional (title ""))
+  (equal (message-box message title "okcancel" "question") :ok))
+
+(defun do-msg(message  &optional (title "") parent)
+  (message-box message title "ok" "info" :parent parent))
+
+#|
+-type predefinedType
+              Arranges for a predefined set of buttons to be dis
+              played. The following values are possible for  pre
+              definedType:
+
+              abortretryignore  Displays three buttons whose sym
+                                bolic names are abort, retry  and
+                                ignore.
+
+              ok                Displays  one  button  whose sym
+                                bolic name is ok.
+
+              okcancel          Displays two buttons  whose  sym
+                                bolic names are ok and cancel.
+
+              retrycancel       Displays  two  buttons whose sym
+                                bolic names are retry and cancel.
+
+              yesno             Displays  two  buttons whose sym
+                                bolic names are yes and no.
+
+              yesnocancel       Displays three buttons whose sym
+                                bolic  names are yes, no and can
+                                cel.
+     -icon iconImage
+              Specifies an icon to display. IconImage must be one
+              of the following: error, info, question or warning.
+              If this option is not specified, then the info icon
+              will be displayed.
+
+|#
+
+;;;
+
+(defun cm (tree widget-path)
+  (cond
+   ((eq tree :separator)
+    (send-wish (format nil "~A add separator" widget-path)))
+   ((listp (second tree))
+    (let ((newpath (format nil "~A.~A" widget-path (create-name))))
+      (when (and (equal widget-path ".menubar")
+		 (or (equal (first tree) "Help")
+		     (equal (first tree) "help")
+		     (equal (first tree) "Hilfe")))
+	(setf newpath ".menubar.help"))
+      (send-wish (format nil "menu ~A -tearoff 0" newpath))
+      (send-wish (format nil "~a add cascade -label \"~a\" -menu ~a" widget-path (first tree) newpath))
+      (dolist (entry (second tree))
+	(cm entry newpath))))
+   (t
+    (let* ((name (create-name)))
+      (add-callback name (second tree))		     
+      (send-wish (format nil "~A add command -label {~A} -command {puts -nonewline  {(\"~A\")};flush stdout}" widget-path (first tree) name))
+      ))))
+
+(defun create-menu2 (menutree)
+  (send-wish (format nil "menu .menubar -tearoff 0 -type menubar"))
+  (dolist (e menutree)
+    (cm e ".menubar"))
+  (send-wish (format nil ". configure -menu .menubar"))
+  )  
+
+
+;;;; Visual error handlers
+
+(defun error-popup (message title icon &key (allow-yesno-p t))
+  (ecase (message-box message title
+                     (if (and allow-yesno-p (find-restart 'continue))
+                         "yesno"
+                         "ok")
+                     icon)
+    (:yes (continue))
+    ((:ok :no) (abort))))
+
+(defun debug-popup (condition title)
+  (ecase (message-box (format nil "~A~%~%Do you wish to invoke the debugger?"
+			      condition)
+		      title "yesno" "question")
+    (:yes (cond (*debugger-hook*
+                 (let ((hook *debugger-hook*)
+                       (*debugger-hook* nil))
+                   (funcall hook condition hook)))
+                (t
+                 (invoke-debugger condition))))
+    (:no (abort))))
+
+(defun show-error (error)
+  (error-popup (format nil "~A~@[~%~%~A?~]" error (find-restart 'continue))
+	       "Error" "error"))
+
+(defun note-error (error)
+  (declare (ignore error))
+  (error-popup "An internal error has occured." "Error" "error"
+               :allow-yesno-p nil))
+
+(defun debug-error (error)
+  (debug-popup error "Error"))
+
+(defun show-warning (warn)
+  (message-box (princ-to-string warn) "Warning" "ok" "warning"))
+
+(defun debug-warning (warn)
+  (debug-popup warn "Warning"))
+
+(defun trivial-debugger (condition hook)
+  (declare (ignore hook))
+  (format *error-output* "~&An error of type ~A has occured: ~A~%"
+	  (type-of condition) condition)
+  #+sbcl (progn (sb-debug:backtrace most-positive-fixnum *error-output*)
+                ;; FIXME - this should be generalized
+		(unless (or (find-package :swank)
+                            (find-package :fly))
+                  (quit)))
+  #+(or cmu scl)
+  (progn (debug:backtrace most-positive-fixnum *error-output*)
+         ;; FIXME - this should be generalized
+         (unless (or (find-package :swank)
+                     (find-package :fly))
+           (ext:quit))))
+
+;;;; Error handling
+
+(defvar *ltk-default-debugger*
+  '((fdefinition (find-symbol (symbol-name '#:debugger) :fly))
+    (fdefinition (find-symbol (symbol-name '#:swank-debugger-hook)  :swank)))
+  "A list of debuggers to try before falling back to the Lisp system's debugger.
+  An item in this list may be a function, a symbol naming a function, or a
+  complex form to evaluate.  If it is a complex form, it will be evaled inside
+  an IGNORE-ERRORS, and should return a function, a symbol naming a function,
+  or NIL.")
+
+(defparameter *debug-settings-table*
+  (copy-tree
+   '(((0 :minimum) :handle-errors nil    :handle-warnings nil     :debugger nil)
+     ((1 :deploy)  :handle-errors t      :handle-warnings nil     :debugger t)
+     ((2 :develop) :handle-errors :debug :handle-warnings :simple :debugger t)
+     ((3 :maximum) :handle-errors :debug :handle-warnings t       :debugger t))))
+
+
+
+(defun debug-setting-keys (debug-setting)
+  "Given a debug setting (see WITH-LTK for details), return a list of appropriate
+   keyword arguments to pass to START-WISH."
+  (let ((debug (if (numberp debug-setting)
+                   (min 3 (max 0 (ceiling debug-setting)))
+                   debug-setting)))
+    (or (cdr (assoc (list debug) *debug-settings-table* :test #'intersection))
+        (error "Unknown debug setting ~S" debug))))
+
+(defun compute-error-handlers (handle-errors)
+  (let ((nothing (constantly nil)))
+    (ecase handle-errors
+      ((t) (values #'show-error #'note-error))
+      (:simple (values #'show-error nothing))
+      (:debug (values nothing #'debug-error))
+      ((nil) (values nothing nothing)))))
+
+(defun compute-warning-handlers (handle-warnings)
+  (let ((nothing (constantly nil)))
+    (ecase handle-warnings
+      ((t) (values #'show-warning #'show-warning))
+      (:simple (values #'show-warning nothing))
+      (:debug (values #'debug-warning #'debug-warning))
+      ((nil) (values nothing nothing)))))
+
+(defun compute-call-with-debugger-hook (debugger)
+  "Return a function that will call a thunk with debugger-hook bound appropriately."
+  (labels ((find-a-debugger ()
+             (loop for attempt in *ltk-default-debugger*
+                   when (typecase attempt
+                                  (symbol (and (fboundp attempt) attempt))
+                                  (function attempt)
+                                  (list (ignore-errors (eval attempt))))
+                     return it))
+           (use-debugger (debugger thunk)
+             (let* ((*debugger-hook* debugger)
+                    #+sbcl (sb-ext:*invoke-debugger-hook* (constantly nil)))
+               (funcall thunk)))
+           (use-default-debugger (thunk)
+             (let ((debugger (find-a-debugger)))
+               (if debugger
+                   (use-debugger debugger thunk)
+                   (funcall thunk))))
+	   (use-trivial-debugger (thunk)
+             (use-debugger #'trivial-debugger thunk))
+	   (use-custom-debugger (thunk)
+             (use-debugger debugger thunk)))
+    (case debugger
+      ((t) #'use-default-debugger)
+      ((nil) #'use-trivial-debugger)
+      (t (if (or (functionp debugger)
+		 (and (symbolp debugger)
+		      (fboundp debugger)))
+	     #'use-custom-debugger
+	     (error "~S does not designate a function" debugger))))))
+
+(defun make-condition-handler-function
+    (&key handle-errors handle-warnings (debugger t) &allow-other-keys)
+  "Return a function that will call a thunk with the appropriate condition handlers in place, and *debugger-hook* bound as needed."
+  (multiple-value-bind (simple-error error)
+      (compute-error-handlers handle-errors)
+    (multiple-value-bind (simple-warning warning)
+        (compute-warning-handlers handle-warnings)
+      (let ((call-with-debugger-hook (compute-call-with-debugger-hook debugger)))
+        (lambda (thunk)
+          (funcall call-with-debugger-hook
+                   (lambda ()
+                     (handler-bind ((simple-error simple-error)
+                                    (error error)
+                                    (simple-warning simple-warning)
+                                    (warning warning))
+                       (funcall thunk)))))))))
+
+;;;; main event loop, runs until stream is closed by wish (wish exited) or
+;;;; the variable *exit-mainloop* is set
+
+(defvar *exit-mainloop* nil)
+(defvar *break-mainloop* nil)
+
+(defun break-mainloop ()
+  (setf *break-mainloop* t))
+
+(defgeneric handle-output (key params))
+
+(defmethod handle-output (key params)
+  (declare (ignore key params)))
+
+(defun process-one-event (event)
+  (when event
+    (when *debug-tk*
+      (format *trace-output* "l:~s<=~%" event)
+      (finish-output *trace-output*))
+    (cond
+     ((and (not (listp event))
+           *trace-tk*)
+      (princ event *trace-output*)
+      (finish-output *trace-output*))
+     ((not (listp event)) nil)
+     ((eq (first event) :callback)
+      (let ((params (rest event)))
+        (callback (first params) (rest params))))
+     ((eq (first event) :event)
+      (let* ((params (rest event))
+             (callback (first params))
+             (evp (rest params))
+             (event (construct-tk-event evp)))
+        (callback callback (list event))))
+     (t
+      (handle-output
+       (first event) (rest event))))))
+
+(defun process-events ()
+  "A function to temporarliy yield control to wish so that pending
+events can be processed, useful in long loops or loops that depend on
+tk input to terminate"
+  (let (event)
+    (loop 
+     while (setf event (read-event :blocking nil))
+     do
+     (process-one-event event))))
+
+(defun main-iteration (&key (blocking t))
+  "The heart of the main loop.  Returns true as long as the main loop should continue."
+  (let ((no-event (cons nil nil)))
+    (labels ((proc-event ()
+	       (let ((event (read-event :blocking blocking
+					:no-event-value no-event)))
+		 (cond
+		   ((null event)
+                    (ignore-errors (close (wish-stream *wish*)))
+                    (exit-wish)
+		    nil)
+		   ((eql event no-event)
+		    t)
+		   (t (process-one-event event)
+		      (cond
+			(*break-mainloop* nil)
+			(*exit-mainloop*
+			 (exit-wish)
+			 nil)
+			(t t)))))))
+      (restart-case (proc-event)
+        (abort ()
+          :report "Abort handling Tk event"
+          t)
+        (exit ()
+          :report "Exit Ltk main loop"
+          nil)))))
+
+(defparameter *inside-mainloop* ())
+
+(defun mainloop (&key serve-event)
+  (let ((*inside-mainloop* (adjoin *wish* *inside-mainloop*)))
+    (cond
+      (serve-event (install-input-handler))
+      ((wish-input-handler *wish*)
+       (let ((*exit-mainloop* nil)
+             (*break-mainloop* nil))
+         (loop until (or *break-mainloop* *exit-mainloop*)
+               do (serve-event))))
+      (t (let ((*exit-mainloop* nil)
+               (*break-mainloop* nil))
+           (loop while (with-ltk-handlers ()
+                         (main-iteration))))))))
+
+;;; Event server
+
+#-(or sbcl cmu)
+(progn
+  (defun install-input-handler ()
+    (error "SERVE-EVENT is not implemented on this system"))
+  (defun remove-input-handler ()
+    nil)
+  (defun serve-event ()
+    (error "SERVE-EVENT is not implemented on this system")))
+
+#+(or sbcl cmu)
+(progn
+  (defun add-fd-handler (fd direction function)
+    #+sbcl (sb-sys:add-fd-handler fd direction function)
+    #+cmu (system:add-fd-handler fd direction function))
+
+  (defun remove-fd-handler (handler)
+    #+sbcl (sb-sys:remove-fd-handler handler)
+    #+cmu (system:remove-fd-handler handler))
+
+  (defun serve-event ()
+    #+sbcl (sb-sys:serve-event)
+    #+cmu (system:serve-event))
+  
+  (defun fd-stream-fd (stream)
+    #+sbcl (sb-sys:fd-stream-fd stream)
+    #+cmu (system:fd-stream-fd stream))
+
+  (defun make-input-handler (wish)
+    "Return a SERVE-EVENT input handler."
+    (let ((fd-stream (two-way-stream-input-stream (wish-stream wish))))
+      (labels ((call-main ()
+		 (with-ltk-handlers () 
+		   (handler-bind ((stream-error
+				   ;; If there was a stream error on the fd that
+				   ;; we're listening to, we need to remove the
+				   ;; input handler to avoid getting stuck in an
+				   ;; infinite loop of stream errors making
+				   ;; noise on the fd, causing us to try to read
+				   ;; from it, causing an error, which makes
+				   ;; noise on the fd...
+				   (lambda (e)
+				     (when (eql (stream-error-stream e) fd-stream)
+				       (return-from call-main nil)))))
+		     (main-iteration :blocking nil))))
+	       (ltk-input-handler (fd)
+		 (declare (ignore fd))
+		 (let ((*wish* wish)) ; use the wish we were given as an argument
+                   (if (find wish *inside-mainloop*)
+                       (call-main)
+                       (let ((*exit-mainloop* nil)
+                             (*break-mainloop* nil))
+                         (unless (call-main)
+                           (remove-input-handler)))))))
+	#'ltk-input-handler)))
+
+  (defun install-input-handler ()
+    (unless (wish-input-handler *wish*)
+      (let ((fd (fd-stream-fd (two-way-stream-input-stream (wish-stream *wish*)))))
+	(setf (wish-input-handler *wish*)
+	      (add-fd-handler fd :input (make-input-handler *wish*))
+              *exit-mainloop* nil
+              *break-mainloop* nil))))
+
+  (defun remove-input-handler ()
+    (remove-fd-handler (wish-input-handler *wish*))
+    (setf (wish-input-handler *wish*) nil)))
+
+#|
+:HANDLE-ERRORS determines what to do if an error is signaled.  It can be set to
+T, NIL, :SIMPLE, or :DEBUG.
+
+When an error is signalled, there are four things LTk can do:
+
+ (default)
+     The simplest is to do nothing, which usually means you will end out in the
+     SLIME debugger (although see the discussion of :DEBUGGER below).
+
+ note
+     Show a dialog box indicating that an error has occured.  The only thing
+     the user can do in this case is to hit "OK" and try to keep using the
+     application.  The "OK" button will invoke the ABORT restart, which in most
+     cases will just return to the LTk main loop.
+
+ show, offer to continue
+     Show a dialog box containing the error message.  If there is a CONTINUE
+     restart, the user will be prompted with a question and presented with
+     "Yes" button and a "No" button.  If there is not CONTINUE restart, the
+     only thing the user can do is to hit "OK".  The "Yes" button will invoke
+     the CONTINUE restart.  The "No" and "OK" buttons will invoke the ABORT
+     restart (see above).
+
+     CONTINUE restarts are usually created by the CERROR function.  In a
+     situation where "show, offer to continue" is handling the error, the
+     following code:
+
+        (when (= (+ 1 1) 2)
+          (cerror "Continue anyway"
+                  "One plus one is two."))
+
+     Will tell you that there is an error, display the error message "One plus
+     one is two", and ask you "Continue anyway?".  Contrast this with the
+     following:
+
+        (when (= (+ 1 1) 2)
+          (error "One plus one is two."))
+
+     This will show the user the error "One plus one is two" and allow them to
+     hit "OK".
+
+ show, offer to start the debugger
+     Show a dialog box containing the error message, and ask the user if they
+     want to start the debugger.  Answering "No" will abort (usually to the LTk
+     main loop).  Answering "Yes" will invoke the debugger; usually this means
+     you will see the SLIME debugger, but see the description of :DEBUGGER
+     below.
+
+ LTk considers two types of errors: SIMPLE-ERRORs and all others.  SIMPLE-ERROR
+ is what is signalled when you type a form like (error "Something is wrong.").
+
+ If :HANDLE-ERRORS is T, SIMPLE-ERRORs will be shown to the user, and all others
+ (such as those generated by the Lisp system itself, eg, if you attempt to divide
+      by zero) will be noted.  In this model, you can call ERROR yourself to send an
+ error message to the user in a user-friendly manner.  If :HANDLE-ERRORS is NIL,
+ LTk will not interfere with the normal error handling mechanism.
+
+ For details of all the options, see the tables below.
+
+ :HANDLE-WARNINGS can be T, NIL, or :DEBUG.
+
+
+ :DEBUGGER can be T, NIL, or a function designator.  If it is a function
+ designator, that function will be used as the debugger.  If it is T, Ltk will
+ use the default debugger (see *ltk-default-debugger* for details).  If it is
+ NIL, LTk will prevent the user from ever seeing the Lisp debugger.  In the
+ event that the debugger would be invoked, LTk will use its "trivial debugger"
+ which dumps a stack trace and quits (note that this is only implemented on SBCL
+ and CMUCL).  This is useful in conjunction with :HANDLE-ERRORS T, which should
+ never call the debugger if :HANDLE-ERRORS is T and the debugger is called, this
+ means that the system is confused beyond all hope, and dumping a stack trace is
+ probably the right thing to do.
+|#
+
+;;
+
+(defun filter-keys (desired-keys keyword-arguments)
+  (loop for (key val) on keyword-arguments by #'cddr
+	when (find key desired-keys) nconc (list key val)))
+
+;;; wrapper macro - initializes everything, calls body and then mainloop
+
+(defmacro with-ltk ((&rest keys &key (debug 2) stream serve-event &allow-other-keys)
+		    &body body)
+  "Create a new Ltk connection, evaluate BODY, and enter the main loop.
+
+  :DEBUG indicates the level of debugging support to provide.  It can be a
+  number from 0 to 3, or one of the corresponding keywords:
+  :minimum, :deploy, :develop, or :maximum.
+
+  If :SERVE-EVENT is non-NIL, Ltk will use SERVE-EVENT handlers instead of a
+  blocking main loop.  This is only supported on SBCL and CMUCL.  Note that
+  using SERVE-EVENT means that WITH-LTK will return immediately after evaluating
+  BODY.
+
+  If :STREAM is non-NIL, it should be a two-way stream connected to a running
+  wish.  This will be used instead of running a new wish."
+  (declare (ignore debug serve-event stream))
+  `(call-with-ltk (lambda () , at body) , at keys))
+
+(defun call-with-ltk (thunk &rest keys &key (debug 2) stream serve-event
+                      &allow-other-keys)
+  "Functional interface to with-ltk, provided to allow the user the build similar macros."
+  (declare (ignore stream))
+  (flet ((start-wish ()
+           (apply #'start-wish
+                  (append (filter-keys '(:stream :handle-errors
+                                         :handle-warnings :debugger)
+                                       keys)
+                          (debug-setting-keys debug))))
+         (mainloop () (apply #'mainloop (filter-keys '(:serve-event) keys))))
+    (let ((*wish* (make-ltk-connection)))
+      (unwind-protect
+           (progn
+             (start-wish)
+             (with-ltk-handlers () (funcall thunk))
+             (mainloop))
+        (unless serve-event
+          (exit-wish))))))
+       
+;;; with-widget stuff
+
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (defun process-layout (line parent)
+    (let ((class-name (first line))
+	  (instance-name (second line)))
+      (multiple-value-bind (keyargs subwidgets)
+	  (do ((params (cddr line))	; all other parameters to the widget/subwidget defs
+	       (keywords+values nil)    ; keyword args for the widget
+	       (sublists nil))		; list of the subwidgets	      
+ 	      ((null params) (values (reverse keywords+values) (reverse sublists)))
+ 	    (cond ((listp (car params))
+ 		   (dolist (subwidget (process-layout (pop params) instance-name))
+ 		     (push subwidget sublists)))
+ 		  (t (push (pop params) keywords+values)
+ 		     (push (pop params) keywords+values))))
+	(cons
+	 (list instance-name
+	       (append
+		(list 'make-instance (list 'quote class-name))
+		(if parent (list :master parent) nil)
+		keyargs))
+	 subwidgets))))
+
+  (defmacro with-widgets (layout &rest body)
+    (let* ((defs (process-layout layout nil))
+	   (widgets (mapcar #'car defs)))
+      `(let* ,defs
+	 (declare (ignorable , at widgets))
+	 , at body)))
+
+
+
+  (defmacro defform (name parent slots widgets &rest body)
+    `(progn
+       (defclass ,name ,parent
+         ,slots)
+       (defmethod initialize-instance :after ((self ,name) &key)
+         (let (,widgets)
+           , at body))) 
+
+    )
+  )
+;; example-usage
+;;
+
+(defun with-widgets-test ()
+  (with-ltk ()
+    (with-widgets
+	(toplevel top-frame :title "with-widgets-test"
+		  (label lb1 :text "Test, Test!" :pack '(:side :top))
+		  (entry en1 :pack '(:side :top))
+		  (frame fr1 :pack '(:side :bottom)
+			 (button bt1 :text "OK" :pack '(:side :right)
+				 :command (lambda () (format t "Pressed OK~%")))
+			 (button bt2 :text "CANCEL" :pack '(:side :left)
+				 :command (lambda () (withdraw top-frame)))))
+      (setf (text lb1) "Test, Test, Test!")
+      )))
+
+;;;; testing functions
+
+(defvar *do-rotate* nil)
+(defvar *demo-line* nil)
+(defvar *demo-canvas* nil)
+
+(defun eggs (radio)
+  (format t "Prepare ~a eggs.~%"
+          (case (value radio)
+            (1 "fried")
+            (2 "stirred")
+            (3 "cooked")))
+  (finish-output))
+
+;;;; default ltk test
+(defun ltktest()
+  (with-ltk ()
+      (let* ((bar (make-instance 'frame))
+             (fradio (make-instance 'frame :master bar))
+             (leggs (make-instance 'label :master fradio :text "Eggs:"))
+             (r1 (make-instance 'radio-button :master fradio :text "fried" :value 1 :variable "eggs"))
+             (r2 (make-instance 'radio-button :master fradio :text "stirred" :value 2 :variable "eggs"))
+             (r3 (make-instance 'radio-button :master fradio :text "cooked" :value 3 :variable "eggs"))
+	     (fr (make-instance 'frame :master bar))
+	     (lr (make-instance 'label :master fr :text "Rotation:"))
+	     (bstart (make-instance 'button :master fr :text "Start" :command 'start-rotation))
+	     (bstop  (make-instance 'button :master fr :text "Stop"  :command 'stop-rotation))
+	     (b1 (make-instance 'button :master bar :text "Hallo"
+				:command (lambda ()
+					   (format t "Hallo~%")
+					   (finish-output))))
+	     (b2 (make-instance 'button :master bar :text  "Welt!"
+				:command (lambda ()
+					   (format t "Welt~%")
+					   (finish-output))))
+	     (f (make-instance 'frame :master bar))
+	     (l (make-instance 'label :master f :text "Test:"))
+	     (b3 (make-instance 'button :master f :text  "Ok." :command 'test-rotation))
+	     (e (make-instance 'entry :master bar))
+	     (b4 (make-instance 'button :master bar :text "get!"
+				:command (lambda ()
+					   (format t "content of entry:~A~%" (text e))
+					   (finish-output))))
+	     (b5 (make-instance 'button :master bar :text "set!"
+				:command (lambda ()
+                                           (setf (text e) "test of set"))))
+	     (sc (make-instance 'scrolled-canvas :borderwidth 2 :relief :raised))
+	     (c (canvas sc))
+	     (lines nil)
+	     (mb (make-menubar))
+	     (mfile (make-menu mb "File" ))
+	     (mf-load (make-menubutton mfile "Load" (lambda () ;(error "asdf")
+						      (format t "Load pressed~&")
+						      (finish-output))
+				       :underline 1))
+	     (mf-save (make-menubutton mfile "Save" (lambda ()
+						      (format t "Save pressed~&")
+						      (finish-output))
+				       :underline 1))
+	     (sep1 (add-separator mfile))
+	     (mf-export (make-menu mfile "Export..."))
+	     (sep2 (add-separator mfile))
+	     (mf-print (make-menubutton mfile "Print" (lambda () (postscript c "wt.ps"))))
+	     (sep3 (add-separator mfile))
+	     (mfe-jpg (make-menubutton mf-export "jpeg" (lambda ()
+							  (format t "Jpeg pressed~&")
+							  (finish-output))))
+	     (mfe-gif (make-menubutton mf-export "png" (lambda ()
+							 (format t "Png pressed~&")
+							 (finish-output))))
+
+             (mf-scale (make-menu mfile "Scale..."))
+             (mfs-1 (make-menubutton mf-scale "0.5" (lambda ()
+                                                      (scale c 0.5))))
+             (mfs-2 (make-menubutton mf-scale "2" (lambda ()
+                                                    (scale c 2))))
+             (mfs-3 (make-menubutton mf-scale "2/0.5" (lambda ()
+                                                        (scale c 2 0.5))))
+             (mfs-4 (make-menubutton mf-scale "0.5/2" (lambda ()
+                                                        (scale c 0.5 2))))
+             (sep4 (add-separator mfile))
+	     (mf-exit (make-menubutton mfile "Exit" (lambda () (setf *exit-mainloop* t))
+				       :underline 1
+				       :accelerator "Alt Q"))
+	     (mp (make-menu nil "Popup"))
+	     (mp-1 (make-menubutton mp "Option 1" (lambda () (format t "Popup 1~&") (finish-output))))
+	     (mp-2 (make-menubutton mp "Option 2" (lambda () (format t "Popup 2~&") (finish-output))))
+	     (mp-3 (make-menubutton mp "Option 3" (lambda () (format t "Popup 3~&") (finish-output))))
+	     )
+	(declare (ignore mf-print mf-exit mfe-gif mfe-jpg mf-save mf-load sep1 sep2 sep3 sep4 mp-1 mp-2 mp-3 mfs-1 mfs-2 mfs-3 mfs-4)) 
+
+
+	
+
+	(bind *tk* "<Alt-q>" (lambda (event) (declare (ignore event)) (setf *exit-mainloop* t)))
+
+	(bind c "<1>" (lambda (event) (popup mp (event-root-x event) (event-root-y event))))
+	(configure c :borderwidth 2 :relief :sunken)
+	(pack sc :side :top :fill :both :expand t)
+	(pack bar :side :bottom)
+        (pack (list fradio leggs r1 r2 r3) :side :left)
+        (dolist (r (list r1 r2 r3))
+          (let ((button r))
+            (setf (command r) (lambda (val)
+                                (declare (ignore val))
+                                (eggs button)))))
+	(scrollregion c 0 0 500 400)
+	(pack fr :side :left)
+	(pack lr :side :left)
+	(configure fr :borderwidth 2 :relief :sunken)
+	(pack bstart :side :left)
+	(pack bstop :side :left)
+	(pack b1 :side :left)
+	(pack b2 :side :left)
+	(configure f :borderwidth 2 :relief :sunken)
+	(pack f :fill :x :side :left)
+	(pack l :side :left)
+	(pack b3 :side :left)
+	(pack e :side :left)
+	(pack b4 :side :left)
+	(pack b5 :side :left)
+	(dotimes (i 100)
+	  (let ((w (* i 2.8001f0)))
+	    (let ((x (+ 250 (* 150.0f0 (sin w))))
+		  (y (+ 200 (* 150.0f0 (cos w)))))
+	      (push y lines)
+	      (push x lines)
+	      )))
+	(setf *demo-line* (create-line c lines))
+	(setf *demo-canvas* c)
+	(create-text c 10 10 "Ltk Demonstration")
+	)))
+
+(defvar *angle* 0.0f0)
+(defvar *angle2* 0.0f0)
+(defvar *angle3* 0.0f0)
+(declaim (single-float *angle* *angle2* *angle3*))
+
+(defun rotate()
+;  (declare (optimize speed)    (single-float *angle* *angle2* *angle3*))
+  (let ((*debug-tk* nil))
+    (let ((lines nil)
+	  (dx (* 50 (sin *angle2*)))
+	  (dy (* 50 (cos *angle2*)))
+	  (wx (sin *angle3*))
+;	  (wy (cos *angle3*))
+	  )
+      (incf *angle* 0.1f0)
+      (incf *angle2* 0.03f0)
+      (incf *angle3* 0.01f0)
+      
+      (dotimes (i 100)
+        (declare (fixnum i))
+	(let ((w (+ *angle* (* i 2.8001f0))))
+	  (let ((x (+ dx 250 (* 150 (sin w) wx)))
+		(y (+ dy 200 (* 150 (cos w)))))
+	    (push y lines)
+	    (push x lines)
+	    )))    
+      (set-coords *demo-canvas* *demo-line* lines))
+    (if *do-rotate*
+	(after 25 #'rotate))))
+
+(defun test-rotation()
+  (setf *debug-tk* nil)
+  (time (dotimes (i 1000)
+	  (rotate)))
+  (finish-output))
+
+(defun start-rotation()
+  (setf *do-rotate* t)
+  (rotate))
+
+(defun stop-rotation()
+  (setf *do-rotate* nil))
+
+
+;;;; the eyes :)
+
+(defun ltk-eyes ()
+  (with-ltk ()
+   (let* ((*debug-tk* nil)
+	  (w (screen-width))
+	  (h (screen-height))
+	  (c (make-instance 'canvas :width 400 :height 300))
+	  (e1 (create-oval c 10 10 190 290))
+	  (e2 (create-oval c 210 10 390 290))
+	  (p1 (create-oval c 10 10 40 40))
+	  (p2 (create-oval c 10 10 40 40))
+	  (old-x 0)
+	  (old-y 0))
+     (setf *debug-tk* nil)
+     (labels ((update ()
+		      (multiple-value-bind (pos-x pos-y) (screen-mouse)
+			(let* ((wx (window-x *tk*))
+			       (wy (window-y *tk*))
+			       (width (window-width *tk*))
+			       (height (window-height *tk*))
+			       (mx pos-x)
+			       (my pos-y)
+			       (x (truncate (* width (/ mx w))))
+			       (y (truncate (* height (/ my h))))
+			       (diam (truncate width 8))
+			       (dx1 (- mx (+ wx (truncate width 4))))
+			       (dy1 (- my (+ wy (truncate height 2))))
+			       (dx2 (- mx (+ wx (* 3 (truncate width 4)))))
+			       (dy2 (- my (+ wy (truncate height 2))))
+			       (p1x (+ (- (truncate width 4)  (truncate diam 2)) (truncate (* width  dx1) (* 4.5 w))))
+			       (p1y (+ (- (truncate height 2) (truncate diam 2)) (truncate (* height dy1) (* 2.3 h))))
+			       (p2x (+ (- (* 3 (truncate width 4))  (truncate diam 2)) (truncate (*  width  dx2) (* 4.5 w))))
+			       (p2y (+ (- (truncate height 2) (truncate diam 2)) (truncate (* height dy2) (* 2.3 h))))
+			       
+			       )
+			  (setf *debug-tk* nil)
+			  (unless (and (= x old-x)
+				       (= y old-y))
+			    (set-coords c e1 (list 10 10 (- (truncate width 2) 10) (- height 10)))
+			    (set-coords c e2 (list (+ (truncate width 2) 10) 10  (- width 10) (- height 10)))
+			    (set-coords c p1 (list p1x p1y (+ diam p1x) (+ diam p1y)))
+			    (set-coords c p2 (list p2x p2y (+ diam p2x) (+ diam p2y)))
+			    (setf old-x x
+				  old-y y))
+			  ))
+	 	        (after 100 #'update)))
+     (pack c :expand 1 :fill :both)
+     (itemconfigure c e1 "width" 10)
+     (itemconfigure c e2 "width" 10)
+     (itemconfigure c p1 "fill" "blue")
+     (itemconfigure c p2 "fill" "blue")
+     (after 100 #'update)
+     ))))
+
+(defmacro with-modal-toplevel ((var &rest toplevel-initargs) &body body)
+  `(let* ((,var (make-instance 'toplevel , at toplevel-initargs))
+          (*exit-mainloop* nil))
+    (unwind-protect
+         (block nil
+           (grab ,var)
+           (on-close ,var (lambda () (return)))
+           , at body
+           (mainloop))
+      (grab-release ,var)
+      (withdraw ,var))))
+
+(defun input-box (prompt &key (title "Input"))
+  (let* ((*exit-mainloop* nil)
+	 (ok t)
+	 (w (make-instance 'toplevel :title title))
+	 (l (make-instance 'label :master w :text prompt))
+	 (e (make-instance 'entry :master w :width 40))
+	 (f (make-instance 'frame :master w))
+	 (b_ok (make-instance 'button :master f :text "Ok" 
+			      :command (lambda ()
+					 (break-mainloop)
+					 )))
+	 (b_cancel (make-instance 'button :master f :text "Cancel" 
+				  :command (lambda ()
+					     (setf ok nil)
+					     (break-mainloop)
+					     )))
+	 )
+    (pack l :side :top :anchor :w)
+    (pack e :side :top)
+    (pack f :side :top :anchor :e)
+    (pack b_cancel :side :right)
+    (pack b_ok :side :right)
+    (bind w "<Return>" (lambda (event)
+			 (declare (ignore event))
+			 (break-mainloop)))
+    (focus e)
+    (grab w)
+    (mainloop)
+    (grab-release w)
+    (withdraw w)
+    (and ok
+	 (text e))
+    ))
+(defun modal-test ()
+  (with-ltk ()
+   (let* ((b (make-instance 'button :text "Input" 
+			    :command (lambda ()
+				       (let ((erg (input-box "Enter a string:" :title "String input")))
+					 (if erg 
+					     (format t "input was: ~a~%" erg)
+					   (format t "input was cancelled~%"))
+				       (finish-output))))))
+     (pack b))))
+
+
+(pushnew :ltk *features*)

Added: branches/bos/thirdparty/ltk-0.91/ltkdoc.pdf
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/ltkdoc.pdf	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,8799 @@
+%PDF-1.4
+5 0 obj
+<< /S /GoTo /D (section.1) >>
+endobj
+8 0 obj
+(Introduction)
+endobj
+9 0 obj
+<< /S /GoTo /D (section.2) >>
+endobj
+12 0 obj
+(Installation)
+endobj
+13 0 obj
+<< /S /GoTo /D (section.3) >>
+endobj
+16 0 obj
+(Tutorial)
+endobj
+17 0 obj
+<< /S /GoTo /D (subsection.3.1) >>
+endobj
+20 0 obj
+(First steps)
+endobj
+21 0 obj
+<< /S /GoTo /D (subsection.3.2) >>
+endobj
+24 0 obj
+(A more complex example)
+endobj
+25 0 obj
+<< /S /GoTo /D (subsection.3.3) >>
+endobj
+28 0 obj
+(Canvas)
+endobj
+29 0 obj
+<< /S /GoTo /D (subsubsection.3.3.1) >>
+endobj
+32 0 obj
+(Managing graphical objects)
+endobj
+33 0 obj
+<< /S /GoTo /D (subsubsection.3.3.2) >>
+endobj
+36 0 obj
+(Example)
+endobj
+37 0 obj
+<< /S /GoTo /D (subsection.3.4) >>
+endobj
+40 0 obj
+(Radio-button)
+endobj
+41 0 obj
+<< /S /GoTo /D (subsection.3.5) >>
+endobj
+44 0 obj
+(Text)
+endobj
+45 0 obj
+<< /S /GoTo /D (subsection.3.6) >>
+endobj
+48 0 obj
+(Screen functions)
+endobj
+49 0 obj
+<< /S /GoTo /D (subsection.3.7) >>
+endobj
+52 0 obj
+(Window manager functions)
+endobj
+53 0 obj
+<< /S /GoTo /D (subsection.3.8) >>
+endobj
+56 0 obj
+(Parameters for with-ltk)
+endobj
+57 0 obj
+<< /S /GoTo /D (subsection.3.9) >>
+endobj
+60 0 obj
+(Running it manually)
+endobj
+61 0 obj
+<< /S /GoTo /D (subsection.3.10) >>
+endobj
+64 0 obj
+(Special variables)
+endobj
+65 0 obj
+<< /S /GoTo /D (subsection.3.11) >>
+endobj
+68 0 obj
+(Generic functions)
+endobj
+69 0 obj
+<< /S /GoTo /D (subsection.3.12) >>
+endobj
+72 0 obj
+(The pack geometry manager)
+endobj
+73 0 obj
+<< /S /GoTo /D (subsection.3.13) >>
+endobj
+76 0 obj
+(The grid geometry manager)
+endobj
+77 0 obj
+<< /S /GoTo /D (subsection.3.14) >>
+endobj
+80 0 obj
+(Configuring widgets)
+endobj
+81 0 obj
+<< /S /GoTo /D (section.4) >>
+endobj
+84 0 obj
+(Event handling)
+endobj
+85 0 obj
+<< /S /GoTo /D (subsection.4.1) >>
+endobj
+88 0 obj
+(command)
+endobj
+89 0 obj
+<< /S /GoTo /D (subsection.4.2) >>
+endobj
+92 0 obj
+(bind)
+endobj
+93 0 obj
+<< /S /GoTo /D (section.5) >>
+endobj
+96 0 obj
+(Widgets)
+endobj
+97 0 obj
+<< /S /GoTo /D (subsection.5.1) >>
+endobj
+100 0 obj
+(Button)
+endobj
+101 0 obj
+<< /S /GoTo /D (subsection.5.2) >>
+endobj
+104 0 obj
+(Canvas)
+endobj
+105 0 obj
+<< /S /GoTo /D (subsection.5.3) >>
+endobj
+108 0 obj
+(Check-button)
+endobj
+109 0 obj
+<< /S /GoTo /D (subsection.5.4) >>
+endobj
+112 0 obj
+(Entry)
+endobj
+113 0 obj
+<< /S /GoTo /D (subsection.5.5) >>
+endobj
+116 0 obj
+(Frame)
+endobj
+117 0 obj
+<< /S /GoTo /D (subsection.5.6) >>
+endobj
+120 0 obj
+(Label)
+endobj
+121 0 obj
+<< /S /GoTo /D (subsection.5.7) >>
+endobj
+124 0 obj
+(Labelframe)
+endobj
+125 0 obj
+<< /S /GoTo /D (subsection.5.8) >>
+endobj
+128 0 obj
+(Listbox)
+endobj
+129 0 obj
+<< /S /GoTo /D (subsection.5.9) >>
+endobj
+132 0 obj
+(Menu)
+endobj
+133 0 obj
+<< /S /GoTo /D (subsection.5.10) >>
+endobj
+136 0 obj
+(Menubutton)
+endobj
+137 0 obj
+<< /S /GoTo /D (subsection.5.11) >>
+endobj
+140 0 obj
+(Message)
+endobj
+141 0 obj
+<< /S /GoTo /D (subsection.5.12) >>
+endobj
+144 0 obj
+(Paned-window)
+endobj
+145 0 obj
+<< /S /GoTo /D (subsection.5.13) >>
+endobj
+148 0 obj
+(Radio-button)
+endobj
+149 0 obj
+<< /S /GoTo /D (subsection.5.14) >>
+endobj
+152 0 obj
+(Scale)
+endobj
+153 0 obj
+<< /S /GoTo /D (subsection.5.15) >>
+endobj
+156 0 obj
+(Scrollbar)
+endobj
+157 0 obj
+<< /S /GoTo /D (subsection.5.16) >>
+endobj
+160 0 obj
+(Spinbox)
+endobj
+161 0 obj
+<< /S /GoTo /D (subsection.5.17) >>
+endobj
+164 0 obj
+(Text)
+endobj
+165 0 obj
+<< /S /GoTo /D (subsection.5.18) >>
+endobj
+168 0 obj
+(Toplevel)
+endobj
+169 0 obj
+<< /S /GoTo /D (subsection.5.19) >>
+endobj
+172 0 obj
+(Widget)
+endobj
+173 0 obj
+<< /S /GoTo /D (section.6) >>
+endobj
+176 0 obj
+(Under the hood)
+endobj
+177 0 obj
+<< /S /GoTo /D (subsection.6.1) >>
+endobj
+180 0 obj
+(Communication)
+endobj
+181 0 obj
+<< /S /GoTo /D (subsection.6.2) >>
+endobj
+184 0 obj
+(Writing Ltk extensions)
+endobj
+185 0 obj
+<< /S /GoTo /D (section.7) >>
+endobj
+188 0 obj
+(ltk-remote)
+endobj
+189 0 obj
+<< /S /GoTo /D (section.8) >>
+endobj
+192 0 obj
+(ltk-mw)
+endobj
+193 0 obj
+<< /S /GoTo /D (subsection.8.1) >>
+endobj
+196 0 obj
+(progress)
+endobj
+197 0 obj
+<< /S /GoTo /D (subsection.8.2) >>
+endobj
+200 0 obj
+(history-entry)
+endobj
+201 0 obj
+<< /S /GoTo /D (subsection.8.3) >>
+endobj
+204 0 obj
+(menu-entry)
+endobj
+205 0 obj
+<< /S /GoTo /D (section.9) >>
+endobj
+208 0 obj
+(Example: A ``Hello World'' application)
+endobj
+209 0 obj
+<< /S /GoTo /D [210 0 R  /Fit ] >>
+endobj
+212 0 obj <<
+/Length 945       
+/Filter /FlateDecode
+>>
+stream
+xÚÝXKsÛ6¾ûWð΄(°xò˜xì¾Ò™N™š(‰‘YS¤†¢b÷ßw€Ç¥Ûœ2¦/".ø¾}`—oª‹®¥Ï@pkUV}ʤVÜ•Yax	>«6²·¹ó¬Ê%û5/” VÄGo[|sÈÉö4!Ùªí74×o£À4Äù馉Õí—`ØÐÝ¢t;å«_ð4%ž+mÃiÀpQf…2\—ó{Ž5S3¢°ì§†vsRO
+²B¢¬4Yž­ÃšëÜ‚+’<ÖãßqµÁ¯hèàP*“ŽªÁCR×Ng…î½	*/B˜+ÜA7þCL‡/$/MÐ ð4–CZ*ó¢–ý|^=Òê@Û×q7ôHä]TQƒ4‘8i8ÐòºÃŸ®¦aO…K½÷LÏ,Uqi•—š§á´{õ ¤´œMqÆ€|S\“qHG(RÁ®Û(
žpæd}ÃÍ8=ÄâRy	"f¿b¯£Gí»M¤em,Ùnß5÷Q ¹¯Óþ×æY"µ_!5	©JH/ëžÂñsn«ÑÎÌK±ó.pÁT‚~dz…†Ñ A°ßÈÖdÚ¾ÞRP†Dˆ>°irÓ®)ÔhfXášýbe¹£ðÞ~GDå¬0À\ÑÑî)=DGÕv‰¡ìKɤŒĬuòèwd¢M;«ã4¥lêõ‚=×—€7ŽÄ;cÎÔ&Á®rô†æs¸Óöe†ðòqJl6ññ~=6MÓô§c—òÐ(KËCV³.àä?°lrðì.]_uO±°=UZhBªçKÏÂò	V¨ë1$0*ɨ©ô¡ñ];ÝÝDU©-Ÿ¹
ç+ò”½Ž}¾nÚT‘íÂUD4ë®ÃÊ×9X†Ã΃¥7e¥dï±å B*TW-áì¢IcEBVoëUר²]r¶²O2!#?ƤÛõ¿ÂÕJ·|Ìæfˆ˜«ÐP¢µ÷dù5yømœ ²«0ÞOÞ.•c”Ìæ¸V=I˜Ævó
 ýs²¢{ Ž /‡þƒšÇsòºk7Û†
+b¥Ì¢¼ÖÍôÿÅ©y~Јë؈_}¦¯ MúP(§ÙMÝoºÓ m0Èý·uäšË(¨nŸ
+^DÖ¡	ÝÑ}Øof´Á]é“ðK+ýÉØòàÈÀ#òàÿÈ[³ÌѦ€+U¾HÚž$Q"yËbîO·ðÍÅUuñµ<endstream
+endobj
+210 0 obj <<
+/Type /Page
+/Contents 212 0 R
+/Resources 211 0 R
+/MediaBox [0 0 612 792]
+/Parent 250 0 R
+/Annots [ 225 0 R 226 0 R 227 0 R 228 0 R 229 0 R 230 0 R 231 0 R 232 0 R 233 0 R 234 0 R 235 0 R 236 0 R 237 0 R 238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 249 0 R ]
+>> endobj
+225 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [109.858 462.225 203.424 472.52]
+/Subtype /Link
+/A << /S /GoTo /D (section.1) >>
+>> endobj
+226 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [109.858 436.074 196.137 446.368]
+/Subtype /Link
+/A << /S /GoTo /D (section.2) >>
+>> endobj
+227 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [109.858 409.922 176.573 420.217]
+/Subtype /Link
+/A << /S /GoTo /D (section.3) >>
+>> endobj
+228 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 393.151 210.341 405.638]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.1) >>
+>> endobj
+229 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 378.706 286.07 391.325]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.2) >>
+>> endobj
+230 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 366.584 192.817 376.746]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.3) >>
+>> endobj
+231 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [154.341 349.814 334.975 362.433]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.3.1) >>
+>> endobj
+232 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [154.341 335.368 238.501 347.987]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.3.2) >>
+>> endobj
+233 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 323.247 224.779 333.542]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.4) >>
+>> endobj
+234 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 308.801 179.745 318.963]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.5) >>
+>> endobj
+235 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 294.355 239.966 304.65]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.6) >>
+>> endobj
+236 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 277.585 296.541 290.204]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.7) >>
+>> endobj
+237 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 265.464 276.545 275.758]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.8) >>
+>> endobj
+238 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 248.693 262.498 261.312]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.9) >>
+>> endobj
+239 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 234.247 240.942 246.867]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.10) >>
+>> endobj
+240 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 222.126 245.899 232.421]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.11) >>
+>> endobj
+241 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 205.356 302.333 217.975]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.12) >>
+>> endobj
+242 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 190.91 299.081 203.529]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.13) >>
+>> endobj
+243 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 176.464 258.501 189.083]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.14) >>
+>> endobj
+244 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [109.858 150.312 218.534 162.932]
+/Subtype /Link
+/A << /S /GoTo /D (section.4) >>
+>> endobj
+245 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 138.191 199.397 147.888]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.1) >>
+>> endobj
+249 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 123.745 180.941 133.442]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+213 0 obj <<
+/D [210 0 R /XYZ 110.854 691.108 null]
+>> endobj
+214 0 obj <<
+/D [210 0 R /XYZ 110.854 666.202 null]
+>> endobj
+224 0 obj <<
+/D [210 0 R /XYZ 110.854 477.668 null]
+>> endobj
+211 0 obj <<
+/Font << /F18 217 0 R /F19 220 0 R /F23 223 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+253 0 obj <<
+/Length 803       
+/Filter /FlateDecode
+>>
+stream
+xÚå™ËNÛ@†÷<EÔÕÌÂÆ3žkwªŠJU›*‹¶ƒMbáKd;Þ¾çxì¨]X–aClìÏÿùÏ…“åÑñ9Œ…VÊÅòŽ¢ÐH±PR„\èÅ2ýA$
l¤È*§Œ¤ë¬kiÀ¥–pF-?Ÿ3{øJi¡Ê= d4`Q‘ø$»ÔÕ
„$¤„+~}Ë	‡(9ZDOhðÆiRQ®É-•’$@Upé71‰#ql²+äq J.d¢_³LÆØÕdìbˆý¬WB×Üã9ó\f…PœSÃH·%eïÞaÄeô†`¨ÆEr	n«IVÐ öÕža“òйn¸EbmìMôñdôfŒ>o;†q‡‡Òo9ÈI v ò9ÃbîiÈR„ñ7‘"z’	ëí$Œ=•´«)žÁ%í
3Ë€2hÛd
¿ÃRû(1[CX߀ö(¾ Y$U–¿ó*í­ã7d‹ô v6+ƒØÅþ«Dš×ÁAáAä|6rá"ÿv• {É­÷¦(f§Ö—GSÅ%ê¡Áá“y
+BÍ‚PˆmÞÏûNÂ`'a8÷ˆžõGí€,qæÈî:œ5Õ›H;«s€ír[d·tA”Qòÿ,#ÖñXå¸û‚¢)¬¿ÊcYy²Æ­W!“¼§£ÜZð;VÔ´oµÀTc˜FºMæ65väÄýLÁkx$%‘ñ˶†j¿5<­Ë¸«ò+4ï.Ç­TâSž*Vj¿\;¼Ë«5ŽþŠ\t7î |*«Z`ÐBBFö?T>+'Ö¯œ
+|¿7A“•è=(‰
oZîÛý	šGß)i̱­åJ(3|áy™™½Ì¶
þÉu“µ VKíi~OÍMf¯¼MÞv5*ï¾ßÂfn/‰Ó=’UÞ`°“Æ]téßst¿œµ\øEà™i]–Ý%¥kÞ»G}@—ä'‹ÅǬÀ$¬ï¯¨¤nŠô;O¶[¼:š7ÞX!g×T4•¦–…1ôicqi÷o¨¾.-þ Û*5endstream
+endobj
+252 0 obj <<
+/Type /Page
+/Contents 253 0 R
+/Resources 251 0 R
+/MediaBox [0 0 612 792]
+/Parent 250 0 R
+/Annots [ 255 0 R 256 0 R 257 0 R 258 0 R 259 0 R 260 0 R 261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R 267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R 279 0 R 280 0 R 281 0 R 282 0 R 283 0 R ]
+>> endobj
+255 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [109.858 650.926 177.907 663.545]
+/Subtype /Link
+/A << /S /GoTo /D (section.5) >>
+>> endobj
+256 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 638.804 192.587 648.966]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.1) >>
+>> endobj
+257 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 624.359 192.817 634.521]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.2) >>
+>> endobj
+258 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 609.913 225.919 620.208]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.3) >>
+>> endobj
+259 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 593.142 185.759 605.629]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.4) >>
+>> endobj
+260 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 581.021 188.36 591.183]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.5) >>
+>> endobj
+261 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 566.575 184.783 576.87]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.6) >>
+>> endobj
+262 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 552.13 213.723 562.424]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.7) >>
+>> endobj
+263 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 537.684 194.603 547.978]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.8) >>
+>> endobj
+264 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 523.238 184.944 533.4]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.9) >>
+>> endobj
+265 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 508.792 219.411 519.087]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.10) >>
+>> endobj
+266 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 492.022 198.406 504.508]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.11) >>
+>> endobj
+267 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 479.9 230.632 490.195]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.12) >>
+>> endobj
+268 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 465.455 224.779 475.749]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.13) >>
+>> endobj
+269 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 451.009 182.347 461.303]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.14) >>
+>> endobj
+270 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 436.563 201.857 446.858]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.15) >>
+>> endobj
+271 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 419.792 197.304 432.412]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.16) >>
+>> endobj
+272 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 407.671 179.745 417.833]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.17) >>
+>> endobj
+273 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 390.901 198.93 403.52]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.18) >>
+>> endobj
+274 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 376.455 193.723 389.074]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.19) >>
+>> endobj
+275 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [109.858 352.628 223.266 362.922]
+/Subtype /Link
+/A << /S /GoTo /D (section.6) >>
+>> endobj
+276 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 338.182 237.3 348.344]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.1) >>
+>> endobj
+277 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 321.412 273.68 334.031]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.2) >>
+>> endobj
+278 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [109.858 297.584 190.887 307.879]
+/Subtype /Link
+/A << /S /GoTo /D (section.7) >>
+>> endobj
+279 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [109.858 271.432 170.505 281.727]
+/Subtype /Link
+/A << /S /GoTo /D (section.8) >>
+>> endobj
+280 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 254.662 198.085 266.684]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.8.1) >>
+>> endobj
+281 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 240.216 222.407 252.836]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.8.2) >>
+>> endobj
+282 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [127.417 225.77 214.538 237.792]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.8.3) >>
+>> endobj
+283 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [109.858 199.619 359.318 212.238]
+/Subtype /Link
+/A << /S /GoTo /D (section.9) >>
+>> endobj
+254 0 obj <<
+/D [252 0 R /XYZ 110.854 691.108 null]
+>> endobj
+251 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+286 0 obj <<
+/Length 1701      
+/Filter /FlateDecode
+>>
+stream
+xÚ…WKsÛF¾çWøHÍD²øÒ£·ÄMZgìø`e’™¶š\[¬)RY’Qôï‹(˱<=Àb±x|¿zsþ1ŠÏÂù$
+Ó³ÕýYN'‹49›¥É$Jæg«â¯ Ã0JƒËzGAçGaÐŒÆq}Þ•ÀêÑ?«Oçåܟ,S•4=G³I´HUÆêq4ŽæË lùÍðY>“ûÛu™½kð
šêQèeGâ}ãÉÞ­±å­o„‘b6›²~ ¹^?ôø<؝Âý‰hWáÆVh‹À<º	²'ü©Y«90 L&I2Snú¶s~»}7“é<¸Çµh)ªfUI|ôÎVmÑG’D¬>OWԁ¿¿–uÑàÎŽZÈÝ‹àu 6oåx6¥[„m‘Bîø”òÕ<æë×ûÅ	“Ô×ñTc!Ÿ]Y@#‰kë*'‘mj4÷ö5{|¦«¯…üš¶Z'ù:¯úâpëÉ斏jÄ
+Â×@r\¾uwüß»×Y„š\Ð@‘þ®üÞ7=¤/¢ †Ä®÷Ú,‘Zv ÏTû©HEJžÕEYèUG
+ŸŠ‚/ÍÒh«á3gw•]ùãË%¹ªòµ“ùý	4Çãh\•ív¢R•iº4.–Ñ×u	±q*Ï@qƒEO ³àïi˜À‰ n„È´VVáÈØ2u·Rx\’ßreG¤³B°uïõ[2¢y³Ù ˆ}]æꦒ½@”>Vž&îÊnŽ‚^$|ï›
!XŽðÌS+ôYô­0÷ž`§U¨8ÞÔ¨È7÷.댖å]ŸU„Ÿu‰CRÊ;Þ}ïK?¤lkÒòê¼{<£Çšî©”»xÀ=ÉÍtž 7Žãy™A96YéHL ;ø*¢2œ:š'ªeÞ M‘;ØÖˆ‹Ç¡ú¶·§K?|r%Þ=aÓK׈E³0ÞVQ‹ô)Ù³ às®åQݏµ -[ðoŒ?ãñÕh(Ð-	Ï[·ó¤ªºÍ€šJÍD™»^Zqä»­	ßHÙUê¹ùˆ>"­ç¶!›&€+‰¶¨Ðé°§ ‹—	ŽÌÄÆ×#Í 84}媆‰‰Όԝφó¤dju¯E*|«çyÆ*‡þQ*¼·Ô¾0NDÆeátÜHsÑ‘0— éW‹Ay«ŽyK~Çòeè¤J­œÒˆ¼bãü¬ŠLƒ?mjÁ>=ª=ÓÏ	Rpˆ¿`Çi+¨Öˆ8t“
”¼jdí‰ÐÏÉ ,=a*Ÿ¸Ó„òví0“¼ì*lÿq(ýì M»Ö“ÄAú†sáD½dê>(;­kËL¦Z3SDê»’¾îŒ›mzf#ÓùˆŠÝËŒ'#Gá:hPVÖkHõîÞ
1qµZ¯
(^«µÛSBË%¥*ˆZYž0E2Vg›Nª,;[p8Š0@Øna»àt6¡o¼Z|g¥Í|iNÕä¤ÅÒ$ø—
C7
+¦Û’ÀW8}$|\’À5W—ÉSë8㯠GƒWÏw²oB̚ǥ‰²ñw;߯
²,×"nu…X•2vc睺ËvÖ£%Ós2»i»—MRZ­®Ìqr´2‡ódOg&}¥.N¬ÕQ:IãÈX.dü6¶Àˆd´ªTn¶•Û
+‰é2˜Á74ø$\Ñ?z?63—ËÉ"^<ëC’Ô^åc%ÓT7O|RèbŠ¸¬ÝBh°·éò B6›³ƒÀ <Z?zýgî¶Ü=AÇî	rSÛy?"ñNíP}­k«y’>
×dÈVÕº2ÊQûjûÀ
+5œÈéÃÆõîóí%¡#×µî<—Á熷ÝOùa¨¹MþÿÜEýÝ+Z‡ö˜ˆó3š=u2Éíp/•u«­¢ª† “ž‹-ü¿ôIÕõB€¡ó¿Z½WCkUúíq•XË>ôäû¦ªØ4ÛAz>ö…`éÿœ´ÞYƒCL}cÝùâúËÅ•Í×Û
+ãp| õµ¢ßW¤tã[\HÓàÆfo}Myòr«{ÍÅÕ„(­€}¥%Òöê±Üµ­.t}ë&=}úÃi¹–	ßÒÞÄjpŠ
Ú´yÿƒ]Ó¥Øqf³$ý #1Ùtyä¿âJ×ÿ$:ü2ñèø]x“^€ø£§²ÿö=姦üË-ä:Ë™"7·ü~{ËŒ:ÈÚóø
	kj	ï)µÈÕ3ÍÕo‚Úÿ ¤Nk©¸'±¨2Ž¢éD~ÙT§Go>¬Þü,ãCendstream
+endobj
+285 0 obj <<
+/Type /Page
+/Contents 286 0 R
+/Resources 284 0 R
+/MediaBox [0 0 612 792]
+/Parent 250 0 R
+>> endobj
+287 0 obj <<
+/D [285 0 R /XYZ 110.854 691.108 null]
+>> endobj
+6 0 obj <<
+/D [285 0 R /XYZ 110.854 666.202 null]
+>> endobj
+284 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F34 290 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+293 0 obj <<
+/Length 1045      
+/Filter /FlateDecode
+>>
+stream
+xÚ•VKsÛ6¾ûW¨¾œ1i‚/Q¾9ÓzÆ5=˜3LÒMB#pI0‰þ}öÒ²c§î…Z<öÛ×·½«Î.o’t!—Q"óEµYHGež-Š<‹’l¹¨Ú"	B)“\Üš!ÂÕ¾ºvðí,|LðOõÇå\r´Ê	&^„I%eN Õ®‚0M–‚ávŠ7†íTÁüðé ×Yû™T&Ö€.ÔÊI)\„Yš‹A)z5òÝÏãàAé:ž:í­»¬½ü)–™VWLš>&‹²xEÁ|Šó¸5{€@!BŸ
‹A˜ËLœ£ìöçð…ûò•!hI µiÙKmkÐi}¶äm¡½I5—¹@ËK´?“ï-fñ+ØMKPÜ£à˽"è#¯Ö²8‚H•S˜ÿ¢7SþûÇ»ý±3[´£c	 ‚úV´ò†Psã5¹Þ©¯÷R4Pk4Åõ¾€³,Ç ATŒ#’QVPD‡n»£›œË¯x±&ºbá=§ìÄ
ØÛÑéÖÓ¡c3ö	_±¦Ô€ðP“Ò>ÈsQo±ò?+T9
+kj/ åA£[Ïš+fÍ“†ë~=‘fòRs¢,"\ø°w
+|ïù¼óaS.l¿çâᵦÖúYg:f3\ñZ\©i÷mÑÎaƒÃ÷MqÑDðþo¬÷}°_‚Íhþ§ñ«ÇĆêˆ¯çfaž¯ž8T1©Ã4NÄ8 q&Ö	rêY觬¢µ¼šH
â<„ÆžqRá}9átfpH­U‹
ô³aTŽÚCÞS¡=BKÆ6¨8jçmÒT††ðÑœ6†ÅŠ&Ë•X3ÉÇo¼ŽƒSjgÈ~R–œ}<ú»3-O:¾S¢€6¾ò×ÿžæ׆¼S-¯Q´ÄžFvšyÞá!MAóð¤±ù5¡„aë@†Š"ã–Ì fjàå9A`ÚðÖ	¡Ñ›ŠYoQ­ñ•
+ +VÂI”]`q?:Ö°ÜM(~ÁT?ÀKåb…Ðëö…qä{ýffS|ƒèîeºÖNõo¹ŽMécP&Ô0àŸPN&ÐÁ†&(×w¿Ý°DóAÊ“Ç6aÈÓ›‹[$§$—8Ké’	+6Ì;5ƒ°‰xÆy¶ºk<jgö¯2ýX’ézz9ZÞëÈýò$®ž7†Î©p¦&î´]¯þ» ÍÔ ž®ãsÂ2|Ô¿#¨ðÞ¯`œ:Ÿ”Kÿ<0òïÇÊù¬ábåßF|büÆåü$Ñ­gi„_„Â0ëVµèÔ"/R?Óáf5þz»Š1Œß¤¾×øKW¿à=šoߣ“w @£ìz½þ…i·’Q
+mÅ*Aƒÿîextö{uönº…‚endstream
+endobj
+292 0 obj <<
+/Type /Page
+/Contents 293 0 R
+/Resources 291 0 R
+/MediaBox [0 0 612 792]
+/Parent 250 0 R
+>> endobj
+294 0 obj <<
+/D [292 0 R /XYZ 110.854 691.108 null]
+>> endobj
+10 0 obj <<
+/D [292 0 R /XYZ 110.854 666.202 null]
+>> endobj
+291 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+298 0 obj <<
+/Length 1994      
+/Filter /FlateDecode
+>>
+stream
+xڍXK“¤Æ¾Ï¯Às°èˆ¥D½xìQa¯<9,…Záƒå
Lwihh½³«ƒ»óQEÓ;(¬Ã4YIVVV>¾Læ›ýÃ×”Žd.”´Ñþ9’2…5QfP&öÍ¿c½K¤T6ÞïJ_ça'ãÑÁOÕíþ³ÿ;+0B›¤Q¢J‘犷
+“~ÿÜ4Â"ž€˜w‰Îm<Í@·È¼L¬N–`…(­
ꔐ[ò];5Á>•Šu€ãÌœW7Ÿ˜šO-yŒ¦:w¬ð¼aü̯–Ú ãÔvÝà·îPxìšG¯`§Šøóe— {¥ê™Éˈ‹ãˆZÏïÙh­¿0Ú“dôÏ©M¼ä3ü\û]b¥ÃaçË8‘ðƒBð'Q[$•Ð©‰ðªA¯z%¯ çðʧ¤Ã½°ª»­™V½Ù‰âí|'ž¢knœ3^æJ0J=…¥êá§nYê«š?#èÙL“‹NYŸöþŒû(¾íÈQ‰£TAǬe)ôŸ8¬´ñ#ßÈœ&Þû\<ní­Ñ<ìLV6·«t´¶©¶<FçÁEvqgIŸw” Qkу˜-ÈùU rš?ý~ÿüÈ”áoµ¤#•j‘Ê·½ ³ð&/ì€Ãzç½’‡¿î$8!d¤¬JÙȤŠUEõù!ú5
+oñ8¿>”¥(R™ÃX¡mY„—_?eô—áᇇè‡Emô&+Åß DÜ•¤,3‘é"…ËhºÌw¼Ž\ÈX!òý.1ƒªÕõÍ€…õÊBõØR]¶
¯Ttå$s+ÐF<È×
+‘x…§D®ñ2…H3yy|ĝLZ@‡+²NÌr3?§¹½$…Ï	Ò¯“‡ëäñëiè<Yƒ6¸``âyã*+ ÿèL&ÊÜË:oöëX]<5œRZ+Qäwåz´ð91² |k
+(—i浿b©“’n¦,|k
ö¥ü†sUö?r©â'Æ`:®í	‘C Æ¿$ˆ>UóÍ&â~ûŠ<1·s‡±BpÆ…óûdñΠ{ìüÛ©å#É2M…Vŝ®°Ã¤
+ «a‚L5
+ŠûŒ.ºö®®f‡Œž_rïXÉ+èv	Õ%19k0¾Ý&	2ÉRxòmçŠ{Ít¢u.Ê2?yáñÚO|9¤Ý€´zàø!&¸«Bå&®QÛ-Ç´Ìד«QòÄÓi¸v^ÚõnvUç~kyM·Á=ßþôÄrÏ„Ð,U1/V”¢ÓFi]’ÓCB ¸÷Ž¯’[֐;û΋aƻѩûÚû ÔYŽDû/Ý.N¢|܉ramyçÍ}ˆ{Oñð]XÐLq
—	iöÛ–¼9@Ï£L¡ˆZ΋“›Ö*tÜ}'Øð9ç!ÎõGfT·”s}âÓø­ñM}M¥¢Qà¹ä
ÑuWM“‡Ð’ѼR{óÚM²Ȳn¾oc¦­ÈÊ XÖôñz®'³Žî#âuë͘ƒiË8<îyok…íM: =¶GìÉ÷…Őh“ûYˆ%¼Ä<~{DzÖ,W|3#lÀ›:ËÖh{;³ˆŸ¯}½à2üMP¨®ºîVqw;µ}Ë.ÁÕè5…D†½K¤ø•›|ø-#õÝå/#”‚#FÃÌqrÜqL˜nuI0{·US‰y6®BFÕ‚/X }¸Í·†Geþè†ëôîvÔHðµZC OñãV7KE^Ù¾mm¥Â~1µŸ /z®˜Pr6-â't™•ñþ…žÁ—G‡DêÁ^µ]{&‡õèŠybnf’@UížFKÈEj*~ÌcÛú#˜åA‡>üykäf0ûâð^.&L˜®øq¡°,e„¬~é,4A gÀÔ±%}¥œ«€sKYá-YrÕpÙ´“;²÷Z®›=Á³Ã0¹[6ãkÿüÝ–„‘¢„ ×z¾uwDHArSQÄ—ëÌr1£ß²ä~™úìJ¬iëEÔwÒòè[^²B&.ÌÅyÀz&_ñý>\Ǎ+¬á¾ÈâR³‚p*cA‘*ƒMàÂDçcÞñ²ÎÞ{ýºš6ðæb‡}¦ãhÕmÔƒ’BçÙ­vé Ï:¼ðÚ³¡>Ȩ•4¼ö_£Hú–‚›t±‰¡^ZÏ" kJŸòk¯|ØŠ3-Ï¿ÄdjVÈgÍÜÍtsψDßôG¹òrþV“™uWGÆ’!¨þ•Žnæ,rïÓOg¢¸·ßk˜Ë‘9© 2©xü©¡r&|…>C ÛYöžëªC×”ÕwÃHÖÁ½ÚÞò׉&4ÍÓ>«q¤oæcËëW×ÛÙŸèzf:fLç[:½Ûþ'Â
+b:ê­]•ðj»+*hr2tÅ#Zé¶z¡2"KÃd'¶2<rùø£­a×è\“w+ô'`Wáɏ%ý…8	á“ã0 ó>Ñ?P¦`aî0Õp"þ¯U¹$|å÷)ôÛjüî:Jy{|@rÝÛ±AÕ7)þéÜ‚ŽfÓ{¶Y‘ýÿ0€ûŒÚrùF-®#pÏ}Ë%ûLã/‘6A[;÷âíÆW]ÅåÌ•Éø E¹‘hÀ¥‚=aÃÿþÅ°õüendstream
+endobj
+297 0 obj <<
+/Type /Page
+/Contents 298 0 R
+/Resources 296 0 R
+/MediaBox [0 0 612 792]
+/Parent 250 0 R
+>> endobj
+295 0 obj <<
+/Type /XObject
+/Subtype /Image
+/Width 140
+/Height 63
+/BitsPerComponent 8
+/Length 2635
+/ColorSpace /DeviceRGB
+/Filter /DCTDecode
+>>
+stream
+ÿØÿà JFIF  e d  ÿþ "Created with The GIMP"ÿÛ C 		
+
 $.' ",#(7),01444'9=82<.342ÿÛ C			

2!!22222222222222222222222222222222222222222222222222ÿÀ  ? Œ" ÿÄ              ÿÄ H 	     !1ATÒ"QSUt”¢¤Ñ5Ra²#2q’%&6‘“¡³BCEbc±ÁðñÿÄ            ÿÄ &          !aAb"1‘¡ðÿÚ   ? ¬¿tUÞJæ^ž~t¥çÊqg	'	 î'pÜ3¸WÏèµ¦Ör”©Y98ûÔŒXÅĝÔý˜9*N€­[±Ç5õ]•ŽTïq“iy´­0Ô5u+#â¯$ÚA#ÄW¸ã%K#^wÛüÝ|i±o“C®•¤C}^IJ7”ž$ƒØ8ÏÀY©"%hA at IN7iáÂ¼°ëu;›©$6ÕiìGùÕõ§’-‘¢ÛaÜ^¶Å™¬0ç*N½
+Ü‘ƒç¦þ"|Õt¹Y¦Ïð}²è‰
ù‘•«’l¯N\Ýœ~uéS†Œ+¶Ž“}†%Ûlœ»E:¼i)Þ8îRÁ¯“ö>M±‰/̲rmÆByBJU¥+QJNåœä‚7T¯ƒÈÄð	/4¦ÜG*•Œy5qóaS
+Îm#צLTøª–ÊÛÂՁü3Ê±UU&ÿ Ÿf’L¨L³³I²íe¦%‚¦
+ž:–<úujÇâF7Ôy浍(ˆR¥nR·ï«~ÝÛd¿yc ˃5!q^àGŽ­<1ÿ œÕ]ˆZH
n‡)35X´£fãÂJfÛÜ”ùÞ¥kZ@ü Iÿ •ÙQ«üg{ÔÖ
µN³4ëš÷k¢,ÁÊ쇨Õþ3½êô‰;*ˉu›C­:‚‡}Ф(p êÜEyæ…}ßò£š÷j@Ìzvãf~:%ßÚ‘p| âD‰ZI)HòHrrs¼’I;é6flT†ƒ¬Ùí«8Z$: z¸…צ­Êz3XOî þq_ZÍ®í;k¹Ý#ìã’6ÐrÚD3¨Pr<¬g pÁßäùÄ©a©ìnŸU
7«u8îÍ`\X8+!Jë·Tr2žÍ¿=z–ÎmͶíhC÷	Q ËJ‹n´ëé@Q yIçIÏ_‘¿9
†ÉojÄ­.DZ5¥Ñ¼¸zÊ¿æê#«ÀÆ)¤ˆËKÊI¬×‚±iSîZq2»°å”'x'ø
+pô”Hl´°½
+ýä€<¡¿qÎË}t lݵjF£â¬Ž8ÿ všy­¯Cñä}JvtžË¼œäìÆÞd¶[8êÜz¸ò›Áyp⥅¼·‚IÒ¥'Wé]mzˆÑ­¯Cñšêg)tœDœåãÃîŸî§±öžç”³á5–“(må¥#'' 9®€ÖסøÚô?£êS÷¤š<œô‹ä´L2Ñ&Bd’Ix-Ay<|¬æ¼7wy¦]e·^COc”BI	^7ŒŽ¼WDkkÐüFmzˆÓsâ4y9àÞd‚)yó+Pd¨èÏŒã;é$Îò†Î|ÕÑšÚô?£[^‡â5WS‰£ÉŒÛn¥¨úT…à“Oyèz5)­N\¶¢Â~G‹êä›Rôë#8Å#	õJBÂBi+!< Õ½çÙ¿&eÏCî+ùMô=¿”Ö©E7ž?cmÉ’·pH€¦–—4¼]$ ©*KWAüFñHÚWn±A­„xáEZR	$ž$’I'€ßÔ á[wŠg/ï‚íù1»jm¶TJM¶£¢BË‹m%e·ïJI 7 :…DÉšâŸQö­ê³o¿nÄö4þµÔÞ$¡Sûàhw“A³ÿ f-¾ÎÏúi§ÞÏý˜¶û;?馜WЊ&Ð팻nß7`ç[-¦­bo\›*Ôç*Q ~Õ±ÀgϸþQ6
6ù°EÖÑtri¦Ý˜ˆñãm´¡“#Ž ÐIBŽFp´ã_ºtoúýҏÿ …ó‹rõyMz³ùc3è[.]6¶T‰«S;FÃQÜi´©„¡¥4HQ$B³Ãwã@1>¬lÁ~Tè·!»sw6›y´)O°â‚QÉ­@¢‘…Ÿ(ud…åxFµÛíã>
Â*û,0—PÞ™ÔêB›x,²¤iÔJ¹L
'8ÈËKƒÙ6(Ž¦ÚIb!Ç•ÎËK
+Iºé^µ8¥iNF¤ƒ¿vHP-~$Yà]™ƒxb:®Rúã7 ! amòZŽ•‚uiZx$àl´ÜùÖ"Þ0fÂq·VÒؘօ¥I8È ”©'q
+I ç)–o
+wl¼©†°J{J[!%èéQBp¿)z†“ÀehuaØÍ–NÇØM±%÷H!Im £
¥JQJ˜©D’£õÁ¼X÷35ù«yföýÛJB›.iPdáxPK2æHÞ[&€ŒÙÿ 
+È—³¦\mïȹ.‹Œ¦mÈJPÌvžSzÿ jàÎtðGqÜ7V‡l{ŒÓ¢9ÊF’Ò^ix#RxÜGÍcxD(PÕΉ1`;¹>Ô™
áo)Ô¸†Ô¼%i+PÉ*uqΕ" @
³–ã´–’t%;’ ’G æ€Jíö4ïgsôš-?cAövÿ H¢íö4ïgsôš-?cAövÿ H QE(QEY·„_·b{ZëI¬ÛÂ/Û±=?­uu‹*L}˜µ&$%JqQÙ$r‰@HäÓÖ÷æŸ8Þ}CóˆúR±ÙÈÖXHš”¼ÔfаXY‚@#:
+{Ó}—íé÷w;´$ˆóçÔ?8¥ãyõÎ#éKtßeûz}ÝÎí7Ù~ÞŸws»Bȏ8Þ}CóˆúQÎ7ŸPüâ>”·Mö_·§ÝÜîÑÓ}—íé÷w;´#Î7ŸPüâ>”sçÔ?8¥-Ó}—íé÷w;´tßeûz}ÝÎíˆóçÔ?8¥ãyõÎ#éKtßeûz}ÝÎí7Ù~ÞŸws»A#9r¯2¡?˜ôò­©¼mÍJÛš[ÈŒ¸.6Ê¡œà„€i·Mö_·§ÝÜîÑÓ}—íé÷w;´IQQ½7Ù~ÞŸws»GMö_·§ÝÜîÒD’TToMö_·§ÝÜîÑÓ}—íé÷w;´‘$•fÞ~݉ìiýk«¿Mö_·§ÝÜîÕnn°.÷¦·<e1’‚B
+p­J8ÁÎ(FÏÿÙendstream
+endobj
+299 0 obj <<
+/D [297 0 R /XYZ 110.854 691.108 null]
+>> endobj
+14 0 obj <<
+/D [297 0 R /XYZ 110.854 666.202 null]
+>> endobj
+18 0 obj <<
+/D [297 0 R /XYZ 110.854 642.408 null]
+>> endobj
+300 0 obj <<
+/D [297 0 R /XYZ 247.256 394.889 null]
+>> endobj
+296 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/XObject << /Im1 295 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>> endobj
+304 0 obj <<
+/Length 1431      
+/Filter /FlateDecode
+>>
+stream
+xÚÅWK“›F¾ëWP>$(eÆÌ0 Ø[\ñV%•J•Sª\âX at Z²È€v½—üöô×= ´RN¾HóèÇ7ßt÷4o׋7·:ó´VY{ë
B•ÆÖKb«Œ]yëòWÿ§w¿¼ûyD¡ö}µümýÛÛ(š)%±JBë…,}È—Ú/Dì̶I•	µË›òŠ%c”#'²íÈR]þ“¥MÛ\è÷• ìó=iºIÑ6K³òÀª›ª{åÄ?6‡®*ë‚×ïvNønluŸCå±niïØ€hk	[†²6a×{’KýgÒ…f4îªþ¸0Nüa2DwðF8͇Qဳ¶|bÏ{OË€ïv2{„§
+Kyžiñâé$Ï"_tyO®µþÑlUà".ˆh¢5Ÿ"R¤hÈŠ6±ÿ-©¯¬¿ÇÑ;XÀUL4ÒÂþ°~’åês}Ø]‹rCª	#ðPB}V›ek´¿ÛÁx`èB@Íœk£"Š«9ãØÂM2ÛàbêL5Q:6šŒšß@%æ5çts2‚å
8fz8¹MQ‰Ô×4Ùð]î+Ñדg©0¹}GrzæÊPjXî*o:£h¬S3:Qišœ™¾a°Œ°êDqá‹EfªO““¿¢áÛ#æ¸w·¡_é: ÀÏž–§Sì˜ -ó—0Í@UÛ±öÉý û‚Ø…þƒ~¿z5§ô»Á5F~Íà7ù~Íæ×ü¿3ŽíJ%69‹ ¸:€ }/§}åP×Äg)pÓsiwWqƒÀeaøLsæ¿›+ä≽z+ež+›Ü0;€;®ƒ%©ãºSrá¹è›ï¸üÕøÝŒGAÔ4\~šûÓ]Ì/‹wëÄÐÓž‰2[ã™UD×{Å~á}ôÆ]üÒÊÇ…Ž4jsÊ+ôܯt–Ž»o¾ßï»vñ~Ὗì£á`fùíe‘%*´Ö36S&’Ú[oGðn™›e`£Ø_Ëó7¾uMÙâ•{¡¢«8¢«RæwòÖ^>3z«±pï	ȧ÷ä²sL*C¯8µQ"t
+Š	œË#wí1[iê9âé	¤îï[´O=¼„¾›‰Ëgª=Êζã†ã [Fï\þ6½,?ÉÓW72ÍEŠ^£}%C×Y¡T¦*Õ«³Ð¤nèC¨­„¤{Ú…ürˏ#¼¬ŸÍÓ/6Sß‘ï…ijgèè–äŠh2½‰b£w6êSóâÌBÌyšÚ&ïݺæUç•8ùƒ+¹6y<×1qÄóÖ
áb“¨”1CGN·t,«5 Mláqh¥¨ÖE¾Cc­ªé‰9'ÅàÉÈ'üê\œ»<0YH½rXx`zJY£ûåË5iæ,Ò`3]À¾Tùë%]C+Ûlå>o¶Õ½üpŽ6§³rû‚Õv3#Ÿ·°Åt÷Qœ©({òÍ•`—^Kö_ÃàŠ-_š
+(ã”Mã	¦P­©FHI¼â"T!-8Ǧê– “(£ú4)‰šÄXw‹óÍ\þÁS56д°¥ØîêB&°;Æ™§£Ø²ã¾zE¨È_÷© ©æðÍ‹4ðdœpB“(Žct!öмb$Eý^’Œ®øûA6‡\"¤w:R?`ÒYmÛã¾’/1‡ð‘÷AzÍ”œ4A°íqw^þ2Ñí:òÛÃP»Î&Ò’.M)ã)£iü¸¾Ý±:mµb€!VƒLjAÂ!Ì#í
+Í¥¥"?9¯â„ÖžÅ3À ×½ð[8¿mw-C›ÙW|˜¹,êƯ«CWŸ¾*åë‘f?ÖýAö'gS@)i13Mß`” &£V3ewÉø~ÿ	#ÍËGendstream
+endobj
+303 0 obj <<
+/Type /Page
+/Contents 304 0 R
+/Resources 302 0 R
+/MediaBox [0 0 612 792]
+/Parent 250 0 R
+>> endobj
+301 0 obj <<
+/Type /XObject
+/Subtype /Image
+/Width 184
+/Height 76
+/BitsPerComponent 8
+/Length 4015
+/ColorSpace /DeviceRGB
+/Filter /DCTDecode
+>>
+stream
+ÿØÿà JFIF  e d  ÿþ "Created with The GIMP"ÿÛ C 		
+
 $.' ",#(7),01444'9=82<.342ÿÛ C			

2!!22222222222222222222222222222222222222222222222222ÿÀ  L ¸" ÿÄ              ÿÄ M  
+	    !’1QRÒ"ASTc‘“2aq²356UrtuÁ4CE¡¢³Ñ#%BFbes£ðñÿÄ            ÿÄ +          !¡1AabBQ2R‘ÁáðÿÚ   ? Ì¿tUÞJæ^ž~t¥çÎqg	'	 î'pÜ3¸WÏ÷Z†Sk9U*VNN;UÆ,bâNêžÌ•'P+[v:s_Uè´<©ë©Á¤Ú^m+L5
oAR²?Å^I´‚G!^㌕,dŽŸNwÛú½=5·³C®•¤C}^iJ7”ž’AÆìg§p#[5`äD­(	)Æí^Œ}UÊηSÔÝI"6µ§Ø¿Ö¦H¶F‹m‡qzØSf¸aÍ©:ú‡
+Ü‘ƒ×Qù	ê­¥ÊÍ6ƒíDHoÈÙZÛ&Êõræìãﮕ8hÂÔ¥´ht›ì1.ÛdÛ°TS­Ê’ã§r–
|Ÿ¡òmŒI~e“fÜd!Ç”$¥Z©ZŠRw,ç$º­|@v'„Iy¥6â6¡IXÁf®‘S40¡hæ’=qŠdÅO%RÙOüxZ°>Ìãî¬UUI¿¦æ’LÈL³³I²íe¦%‚¦
+ž:ËzºÚØúÈÆúånfÒää8óLdý$ e´ç¤Ó»l—ï"ìdpf¤.+Ý(õxôjôcùæ©-ÐÔWªÒk­“LW¡µÑÔjùÎ÷¨Úè‡ê5|ç{Ôx¡}š<P®ÍvƒŸmtCõ¾s½êêÕÊÚÙL;rfÄ€ð_+ŠÜ…ê<]cô‰Á:€0JIšåâ…vº¾&ܦ¤³”ã\­ÕS…>eU¶ºú_=Þý]ýF¯žï~¾ø¡}š<P¾Ík… \»;¨D±ä³mqEr¡í”[wWý 8Q8V³hÞ0q»5]?H¼[K3-jiÅ'\
£çvHô(õ°å5!œ§åhø¶º§VG›¤’Ñ*ìâG)Ú¶«•½ÑŸ°V+M|<ʪ]O<óðgì*â‘þµ~ÝÊÚÞ¬;rfÄ€è_+ŠÜ…ê<]cô‰Á:€0JIßYÛîŠ[ãhõÉô[!¡mÅuiRXH)!‚
^‹ršÎSr´|[]JiªZ¬®¥Ðä©ú‰)Ž«JCëKFKšÄoÞ¾}áD‰úrm)eà)É.$g~íëûj“Lm6ælj—rxÆS'1ßoò‰s¤ï'Vr1š£Ñ؏\ô
é(q»«L¡ÈqoQ$d¸‘é^ì‘èÁìá9ª¸«‡òUª‘©¢ºiâ{Â-î:ó¶gÔ”7ÊÊ¢ÉQ?“½xôëš¹[ÖËcÍ;è¬Ú]i­Ï"ÓjÒƒ9YBw‚~ÁR’‰
––¨¯¤œ7î9Ï÷o§m(…n·ÁˆóRãpØÉBRFö’}'뮜ö¶ú‰|	ïW‘ÞSÑ£ª²ë"mٍ¼Él¶qèÜ}þTx/.T°·–ðI:ªRpwú:iÙÏko¨—Àžõö¶ú‰|	ïTÌS3Â0ô‰|¸vO¦ÇÒ{œVRÌk„ÖZNuPÛËJFNN =fšüö¶ú‰|	ïQÏko¨—ÀžõWyOš&qF‹ä´L2Ñ&Bd’Ix-Ay=>vs^»¼Ó.²Û¯!§±´BI	^7ŒN)¿Ïko¨—Àžõö¶ú‰|	ïS2½†qBo2A¼ùŒ¬*:€õã8Îú‘mž¤¼À=TÖçµ·ÔKàOzŽ{[}D¾÷«TÞ’|ƒ±ž¦;ÇC°®_|t=Z¸Ml9ímõøÞ£žÖßQ/=êÖwÇs9uîcüt;
+á5Éw@ôˆÞj†¢Ô¾Ž¦×[^{[}D¾÷¨çµ·ÔKàOz™ßÆ]{˜ËÂñ1ùeÆ«{HNÖw‚wäoèú‡ßSÐ"ËfG8t‘퓉^Íé…H^p¡àúG×M^{[}D¾÷¨çµ·ÔKàOz£½Òܺw*±$Æ9uȍæ¨j-KèêmuSŠ~â¹ÌO
×C+!µ%Ae?M
+ßç«¢˜<ö¶ú‰|	ïQÏko¨—ÀžõW|OÓ¸Àî-e4üØoÄ‘}»-‡ÛSn'ek$ŒÖz:ªÝ˨~Do5CQj_GSk­Ÿ=­¾¢_{ÔsÚÛê%ð'½E|KÓ¸Àî`&dû¤[”¸jzTOÈ•”¶zÂ3«žøÎáÔ(º‹eë“™ðÔâã9´aÄ•¡m«­*ItOHÐ+Ïko¨—ÀžõNµßØ»¼¦ãF•„­Å%!)êÉϧÿ º
3”ü¿ßaä,.÷E<ØÕI½"Šl^?1\¿s{ð*Š¹ßÿ DÀŽ¥‰€t•°@#Åltÿ âj¶;otß
c´Kô™¿ál”Õk+ÀJ:í½Ó|4m½Ó|5Žð™y¸hÿ ƒë¥Ò×#“Íce³sQ+ÕÖu	;”;‰“Ÿáá£+»›i·‹lK[2¶W6
+ at ur^`Ù!EªÉV¢€ 
aœîÛÝ7ÃFÛÝ7ÃJÝ;Óë¬f—Ƴ²ˆ²¬J„9bœ
+*Kø$„‘¹8'¡Dä—;K¯v¯’bÏmh‰£ª¹ÈŽÃ¡j
+JŽ²’Ki*VA at I çd6€cí½Ó|4m½Ó|4­™áiëm­ÙS,(L{¼v™šV•²ë©kUj-‚•‚°pß¼V³Gô¡W«ÍêÓ"ܸS-jd­%Ô¸
+Fº2Fà°2@#r”7Ðm·ºo†·ºo†°Ñn÷´x]zÇ.sÛM™SZe¨Á½Emõ²‰R” œ‚A öEm(W‹‹ÑQ
,¡¤—å¶ÊŽ¦ð’wã᏾­°Ø@
 å ïAþËþ ×ó«×¿«ý@otß
otß
r¤ÄÍ6¿³I¦µy›Ëm÷åÇp[KAä$%×ö@#r”	.¤ôïÉÙ¶÷MðѶ÷MðÒÿ Ê?ý«þgæ÷ôýßGü?⬴Ý6ÓtL®{X­Ê¶ÞÕ—’´¨°Øq	(JK@,
`•‚B”N
+ at P·ºo†·ºo†—wŸ	/Yd^í™3cL3sZe`©ne;<8Þ¢Þz…øKR®e—¬‹nÒXL”ÉJ‰w~¢‚02<àHÕ8+9 &ÛÝ7ÃFÛÝ7ÃY]3ží²y~:~ÜÂ]ÔSQ"¡éSP!¶Y×ÊuŠ·ãT“Ž”€MOяój8ö7ÙS±Æ®¶wgµ±ŒãvsØ .öÞé¾…bšõÇGS-ý]£‹Q!# yä ÙŠ‘UÚ'ú!ö—øÍÒñùŠåû›ßTQxüÅrýÍïÀª*22ƒD¿I›þÇùMV²²z*‡¼z]i¢½K[yÂu‹MàèÎÀÕÏ'ҞͫâåG&ÑèšU£Ò¬³œ}¸Òu5Ô€XÕXXÁ Ž”ERÎðsk¼ƒ—™×”‰Ó¾òÛmM4—6ƒP4„':á*ʁú tdÞO¥=›WÅÊ9>”öm_*”¢sÁ½žD} j\›„¯¥‘-o>
+‚šjÐBF©Ï¢0 HHÕ®ó4
+Õp˜Ü¹’.<a®¥%&[+^¹K„`¤käᲁƒ«O6­¹>”öm_(äúSÙµ|\¨»Þ
+lÒíÏC™pºH׀͹·–¶’¶c´àq(N«a'*JrTwtõ¥·èôKvÞ/L¸ú¤Ýv;t­@¡;$'T‘¸ïÉ?u{äúSÙµ|\£“éOfÕñr€ñÍèœîç.Ñþ[È9¦°Ùìö›LãÖÏ׌z*Ú«9>”öm_(äúSÙµ|\ª$åþËþ ×ó«×¿«ýT/Zt‚kÑ9X·†˜‡ŽÉKÖ:§ëûMXOjú¹·2”åõ(¨ŸIݸò¨	5‹{Á­ºC78ŽÝ.Š¶Üçª|È:̆Ýp­+#[g´	ÊR7(ŸMhy>”öm_(äúSÙµ|\ª$¢{Á½Û˜š$Ü	»&ð˜è|l„‘c‚’HQ œ“ú¥ ¨’|Ù%D¾Cuɼ’ðêŸy„¾BuE
+SˆúEM¡^v°   ny>”öm_(äúSÙµ|\ 3Ó<Úg;5R'ÝÝË`nM©ä5M+Y%d ©Xl    b¤y=´ûDßÏÞ>úhþ‘Ùú?Cêéúêç“éOfÕñrŽO¥=›WÅÊ€‹|ÑfowkUÓÆaM¶m¹;‘vgò‰	VCˆP;†:=&­¡Gv,D2ôÇæ8œå÷ÂÕ¿;”îèÜGßPù>”öm_(äúSÙµ|\ª$³ªíýûKüf¼ò})ìÚ¾.TÛ5½ëV7AAqä äoV@p¼~b¹~æ÷àU^?1\¿s{ð*Š23¥‰—†Ü¦“«¯•(¤ãXìÒ2~àÝV9=jâ¥t?—xPcÄj<Û
¥´•!y!#>wNêíå:õì°>Zûô2örzÕÅFÎOZ¸©iå:õì°>ZûôyN½{,–¾ýŒ½œžµqQ³“Ö®*ZyN½{,–¾ýS¯^Ë寿A#/g'­\Tläõ«Š–žS¯^Ë寿G”ëײÀùkïÐHËÙÉëW9=j⥧”ëײÀùkïÑå:õì°>Zûô2örzÕÅFÎOZ¸©iå:õì°>ZûôyN½{,–¾ýŒ½œžµqQ³“Ö®*ZyN½{,–¾ýS¯^Ë寿A#/g'­\Tläõ«Š–žS¯^Ë寿G”ëײÀùkïÐHËÙÉëW9=j⥧”ëײÀùkïÑå:õì°>Zûô2örzÕÅFÎOZ¸©iå:õì°>ZûôyN½{,–¾ýŒ½œžµqPZF±Z©iå:õì°>ZûôyN½{,–¾ý›»Ó."ÁsR“€!½éÿ  ÑKéž.ó`Ȉìx!·ÛSj)Bò†<îôP3ÿÙendstream
+endobj
+305 0 obj <<
+/D [303 0 R /XYZ 110.854 691.108 null]
+>> endobj
+22 0 obj <<
+/D [303 0 R /XYZ 110.854 620.434 null]
+>> endobj
+306 0 obj <<
+/D [303 0 R /XYZ 247.256 263.682 null]
+>> endobj
+302 0 obj <<
+/Font << /F19 220 0 R /F33 248 0 R /F23 223 0 R >>
+/XObject << /Im2 301 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>> endobj
+309 0 obj <<
+/Length 2253      
+/Filter /FlateDecode
+>>
+stream
+xڍXK“㶾ﯘ#Ueq	ð½7Ûɦœ‹ž‹+΁CR²©Ôì(¿>ýu7(JÃI|@£Ñï‡~zþôù«)ŸŒ	Ë4}zÞ=[„‰‰Ÿ²4	m’?=7ÿ~é6[[Átp£@u5¶?l¶qß76ZÙ¦S´9aëîw×Lû	vž˜¿Ð'ú¡i¹Ø?b솊ît5õ‚ËG]#ð	‹o†Ü´ùçóߟ¶&Ó´¤o&IÆBUÄ~œ㥓¬Áð	†ÂÍ6Élð+±2(þìë±eÍâ÷—c³¼ÞÊb¨ÜØ6ÐS\‘t;Õåë^DßЕWfBÿˆL
+Q&,³YDÀct
­C,ºé린¤H±K%Ÿº?‡öÐv£{UÅ`ûèÆI h;ŽBÄ+ôr²¿°¾'×wŠB«3–£^V¾¿ÉÒ)ÛÀ©êΠ°ohpÞ3>’Íà)ûveQñ7‡†Y£&8—'Þ w`_¯ìX	8XrNëñP
m#ðR)zÒœ°–?µñqƒÛX“0Ë,³‡ô¹¢16
~&˜xŠ
™3‹Á'_¿0ºnmh2‘ü™uVZŠ¨ü¼nÒTä£=0AYvX«$Ò£ËÈ»ì"$°Çp„çcµ]eÆ`		þæØ•Ò`ÈÞX®Vúýe:_&ö³mÛàoì@X1|L<¢£0¢gÙ„‘ÄæÀNMßêXû´déÛSĤIð/§žt÷辩ÕAæè:ŽCn¨J±ê”Ö~ÕOÇª½³ÄÔA±Vå{î7²¶àxD
9m'_ñjØBTb‚±ž‘ âHÌH[Š:U‹é96dÊ‚$y¯•ƒB*#^ ¤Ù´x²
ýŽp­S;$›Q‘ú5«°ðU§.d㐨;äÚ$bAÎgω‹U]ÝB°(ž±Éy˜—ššosîM`熝Çß½Ê\0èK|4ÇVQ_Ô5q Iž6U5^Ã勒À„“Òóì¡ý©ÂÇÕÄWdÀ„u¶O/˜,x¥×Ä¢h
²jÄbHÙêz½Òµì¸¬kõ'Ž?É7Lš3'‚†ñùx-bTR8\çøÍŽn²¿À×mJ;q5ÛÚX"¸¹eÁŸ±ú#)uû˜;pø;,å¤E@ CyÀ#•ë–¤MðÅvº&•J
+HLqc21%/.S’R"Æa,aû…=Mq'©…8uP^N‘þ;+ï"»{`£Îxʵhj|O€­ û«SMBÌ¸bÇÜË =K¬
+’ªõùk/2yT-¡—^¡Ìµ¬ŸDaaÅ]p¨ýI”‡–º®%W?’ù{S`Ï`§{µ¸²¹ÅñŸÅ‘¯t€§UQLQž=î¢ZúÙþ©ò8Œ£T¯í.]RKö+²2øE=4_&¹]6¤2ÌòäNlªå°TßUT°’B‹ÈþršKË
+ûQÆÔßEš"à‡üÎ
+Ïq¦¥·\÷=9Kå½ôb ÇéwZ3¬
sj“UÈàÙ'Ú¤(}ûëEá`!øкýA×”ŒôD³ùÖš(Œ‰Šu¸Æ7Éñ}þÔ¨EÁÙ^rB+±‰T+6w	‚Ã)»D"ßK3%tÝäk]{ÜÉ5¸$s	ã…Ûï[8 ÒWYÒÅQ(Œî?ŠâÖ2úÈé<-n
YZ|à¦iÖ+{¬á=·6ì÷{öæ|ÅU‹ÐDñû D_‘ewÍ=ï–œj¶%ök[	ƒŽ¤QÖhÜ	mwßiŒÇ”/âûÌ©ÉF®ÅÚO?\'Q¬Mí[$ÈWýÎSÎ6zlî›äs¥ÓÓÔÒÏ>­LC¿®v,V[K-º­¶LV4Ž+ù¬4LÀš'ÁõÐrñö^î"¡¬…-{ƒ oBþÔzVÛ§<ß'¡'HKÍê	U³7"Å€Ô ,ÏÜaƒU;õ¤ø½|_–7V³0*Zû&ñª×—³ê‚‘ÕHÆöG:Ɓ§9
+íj@H²äÔÓXró”ôÆwº†€4´oBì(œâàjÚ1‚¶B幄¶%‹y’º)ÍŸ î|UäìÙð¤¦s»+§¦„|YKŒNzÜ}ç4gÿ(§2Ó&?;ëË0‹,„û«ýáE›_æH
+¦®îM>Êiu|Ä2}ïŸ+Ñ"Í̱ˆR*±øe-Á…E£.Râ/ÔºiTËE7'®Ê\k½žÜ×ãÂú$WoR
+ÅîUT$ùƒ¾Wý¾]›ÕŠj‰«¤¾Œ‘ŸVžMâ0Êæ’ºJÙ×'î/âÃ¾[%WR/äËoe?"WÜ1wEh?bÎëdœ®ÇµÂBy>?ÉNþ¾‚ÐÔŸ‡QŽz\†dzÆý	Œ3´‰æ(Höa€Ë'{߉«o©#ÿ‡ïí3™AFMFõýT•’i1U·Kˆ%)]ukínû6µœL*͘ìVäf'­çéÖ¿õ‚\ÉçßÉÙƒ Ï#9Áü_þfø·)GiwrÂ<ø5ó‘e´Ñgmð›däÙ°s;¢èD-½ÖÇC¯½Ì¢igØËØ)ò-'4š·~ŸÒŠ¤_w„R_ŽJíî@¤„¡ý_‘LüFÉg´¥-œõèjÿ_ă¥q˜šìæ‡QÓšz³(øËܵa%•2Óߤgá˜_Žô¦‚þoŸL
+5}ÎŽÿ^É
+?¿Ê¶o„;E•\m©Éˆ×ûá\†¦,°ò9ÞÌ#ÄÜëß,r2ûÒ-q?ZP\,\Q3b±¼‹Èú€Y|6kÝ?1[x/i¬ÿ£Çø¸´s	Ø­œIY‰ÃÂʍÖ
JãIÛ@ãÎZu´ºê#"½´2I˜÷ʝG<ü9Uܬõ Jwñ<¹.´ èŽ×‡¾T*Žvdxðž¶iæ™øvŽ“O}þô_<ù%endstream
+endobj
+308 0 obj <<
+/Type /Page
+/Contents 309 0 R
+/Resources 307 0 R
+/MediaBox [0 0 612 792]
+/Parent 311 0 R
+>> endobj
+310 0 obj <<
+/D [308 0 R /XYZ 110.854 691.108 null]
+>> endobj
+26 0 obj <<
+/D [308 0 R /XYZ 110.854 591.856 null]
+>> endobj
+307 0 obj <<
+/Font << /F19 220 0 R /F23 223 0 R /F33 248 0 R /F34 290 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+314 0 obj <<
+/Length 1426      
+/Filter /FlateDecode
+>>
+stream
+xÚ½WKsã6¾çWä´#wbV¤øR}:{èLsëö`K²­,e$9þú )K	=Ngº½H” ˆïøãýÍ÷¿fÙ-ç,Wêö~#ÍLjnµ’LHs{_þ™|IUZ¬xÒWðØŒø\oáQGüñ¸úëþ7P#gjrÁ„ÉoSZ_¬TšlڧͰZg0|q¯W¿nn^å,UÒ¯ûô ê«×ˆú,eF{©-¸1ù0וI–î¥`ÜÉð|&³æy˜–dê+Ø%8+S~»7™Ýg珇Ê
+&yZ)X3ÜÁO¡’zqM
+c#î/\Ër&¸òRµ÷f_?¡•ª
Fp‰ætRÖÃc³Y	‘E™Ò-©[T~»™`2Ï`§’I©Híx@řР¨:2XéäØ"®/êMã&‹®ý’r¹[§~ƒ&kÜ?NucÝÁ–ô˜dÓã™­Ö<ù!v¼Ì*ð@€iN@ÔxRàÑõ‘XÉ”YòaÓ‡®ÿ½"š×^ҝ£ñ¡µ—st¡ûbÅﺀ†}Ãn¢Œ˜Ð
+Öð9ºfÚ犗\¸éV<ü—VrÉ´Õ‹ˆãvÜìé$ß›³šqpñÿÀv
^TU"gÖÚkжðÜ,b:AsãëÓØr}þKà& ¼7­‰‚Ûä,çïÝ_B;cÆэêÚÖAÛ!ÒO”(ÄóÛ$ŸÊè<c:Wèzò îˆÍ}c”ÛoŽòš ~)Y¡h-®¤ÓÚKÍÕn#"á©rx@ ÆLΔɮ™ðRó:S¢ÞõnÄ]yw³Æ\³Ãáô¹‹ðÇ0Þàù¶Ñý@uߎ^èÑ㳌“¶ÌæÙ;x.¬¬¹ ÚRz	ψæ%r,ŒæÀ‘cx©¤©‡Ñº› TTn\tTÔºžâÜzîAÞ	£ªÖ/#€I¦4P?j8ºŒkdkBsÆy §—„5 —Þ&yáþ›;¸fiÊRmp}ˆ3± dÈÆq
ÛûŽã¾R‘<×ãÁ»7èƒxìtÄçÖ•ùÞMPÐà=TûcER£×„äG¿Àÿ%&-ÝLjЦóH³ä{®²"aa›äõ|—S£DR#G/q
‘0áðÌDþÓ“ã×R9vßþè@	v4ž®èœ¨OdUç†'0Þi¢3JÖ©8ôÕé
×S~ŽQà6$Ãó¡¢äŽVéP::Ü$RÈO¶ÓOÜPÛ¹19
+Æ!ÞÏèþU&¸±äçr^ufg¢îL:bÊ‚7n
+±3D+Ë%_l³!(b[_©\îtIå-`%Ÿƒ:\çÅEû3@îà«MVA=ý€IõÚ\0 €Qy Ü r±Óšé	óÛÓ8ú2þ[X+™|­Š±n÷þoçÓ÷؝Ú2 b“©EÉøꆣ˜¨¿psÐùGü
›òÈvw‹æΡæH—‹ª÷Ÿ3õ]¶ »äôës‡«%®Ôþc5¨”%òdèÓeýþ®«hßkS„àÂ+̦.2&øV¹<¸RÞÛÓqKéÕÇäÐo†^ãçj?±Jè,wîM<DQñ 8€žªê sœ&=_yaº!lI}	ªâ˜’p
WnxòÝ¿h÷#îœéIòížBãD
]òòÊr¥§ v™¼Öò›”I»lù?×ÔWÇ®š¥i8°‚¦jS­ÏÉ1£
Ó&,Ctˆwå}j:´¹Ðthã‹‹—õ”'ÅØ`™ÖpÀ#ñW}'FˆMŠžW¾c¬½Êá`䲫HýåÌ¿©Áoÿ¦®¿c]\¹üæj:Ä!Ï Ó„s·ŠÓ„ʼn›_îoþÊB|Êendstream
+endobj
+313 0 obj <<
+/Type /Page
+/Contents 314 0 R
+/Resources 312 0 R
+/MediaBox [0 0 612 792]
+/Parent 311 0 R
+>> endobj
+315 0 obj <<
+/D [313 0 R /XYZ 110.854 691.108 null]
+>> endobj
+312 0 obj <<
+/Font << /F33 248 0 R /F34 290 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+318 0 obj <<
+/Length 1646      
+/Filter /FlateDecode
+>>
+stream
+xÚ½XM“£6½ï¯˜£]5VBrÌfsH%§uUÙ=° c¦0¸ gòëÓ3òNm¥*,DKê~Ýýºå_ö~úM©;)E®õÝþ ##Ò(½3:q’Þí«¿7_"•[¹,<Š	Ÿ»E»ýºÿvH;¤¹ÈS}ÑÒr«£MÑ=ãv§`øñï³û}’î]º–ºäTpND摝ԱÈ"ƒ\HeHöã`AK<12p8ÿöÛ8Û<nµÞ€Ö4ó%’É4MWó̵™Ž“ŸŽ–ƒ-§¤ºúÒÎéMx%T7¸¿u‹ËíN‰»Îª¦Ãõ¤‘܈€¡»X‰DÆô›Åæ&ègxôí3<kÄ¿ Ÿg"QòúôÞÓcÀg5”1™Èòø=Ø%r)ìšd?7§¦m"°íyHhðnqÀXìpØ6½w2³Ïà¥X¬kÑÒ‘VV<}\SÄ¡Æ#:Ô]FÀg–±´Cƒ'¶èŒÙ1€z¿¾nÃh‚DJÏ0Ӎ¼â PÑ`>–àïx²™ìÉ	¢ÃFkyœ/—çXB’‹ŠŸðk‘iµŠ„‡žba˜ððÖü®s§Îi æeV^‹0Ò}c„ láÙ:/œ@ïÆ„óåÐ_º*¸¨›¥€=M’ðé't®žŽE“HdÒgõÉNGŠÇ* .HFÆ8Ɉ5éFNû˱R
ÊÖšaþ´
z"
£}=†8L
+*wtw9}CíRRRæ²ä¯¶ž}kÂþ¥Ü?9J˜Ž ÀÈ07^€>¦ø‘''0úXn0”8‚¾I,bý.‰†%¦g1U·¤ñ[¤ŒDªþ?"Ï”ÐF­åãŠ:ŒÈÇ]͉@!m;Ò9º)üÜplw2yKÉÿ…ŽCû4ýp
tHñÏô²ÃR‡T/rõ&f*2»Y&’ QÕŒç¶@Xžçºr˜¬QP02ÜZXÈC´“€…±cÁ±ñ¤ùÖxh ${?Ý?T—‰0‰H„ꘈ"ŸVûmª_€~MiqäË]ãÌæ( s)éPûMÅ2±‹óTc¶ˆ$aßNýŠT8‚<T@…³s»DépiÁ+º'ôšÞÅ^¦6ƒj
+…ò`¿Gý`“ŠI3ÊÐòˆ„:¼Ç¥EWûáLÕ=T×wNzɈÒ9Áq&´ÇõÐwSWœl0UHn¹çÃ…*|x)mD>ÓúÃeœˆ×8I²·^6J¨4wKZ{˜î‡¦>¢o¦ûu](‰;úd‡0M¯)ˆ½¥Î”ÏOïá0N>Ž¾‡çáËLE™ØU!!êÙ ®ö¥re¶H}ü½D ÎIž«+½Rƒ’èlsõmVq>Sjã$åŠ!	 XI.©äàTDïñ¦ë݃[I™u$S—(lÔ¾sôwaâL€ˆŒ^…pˆ8¯D>†õ5”ûPÇfwŸ=¯MUÛf@ æ]þÔ©ÈU²j?0ÝTØÛåiœ’6dd=¿Ì8(骀[À]#!ùKáz6Å}›nU5Ž&X‘E¤Æê”yzŸW›»êã‘Àb½Ù{U)^À"¬bN·c1:š„[€RÙÊûL“a“1MJêÛ©’Vüî>bPJ/små1cî$D*ÔÜlqÊÙuînµ¤o Ý*¶‹`}z	sÑ;„ô‰5´Qæ‡õ¡ ÑP‡¡Ãt’¯JÍ©_x)^stð˜;
+h:eZRt¤tWÛüYPãRS‹Õ*c
i{ĉ’n¶0ãê¹Q\ÏÑäÛÕZórÏ9 I©ž‘«`‹Œ½‘º‘¤xýù+g®E’«w¯œZäQ²îvŽÜ	’o1Ï …áT„Aéê¡"ºAî¡y¾LNT¡»Ú­âkþ;ÐqÍç-ü…Õg´&7ã'41Ô¸Ä&©ñƁ¶6Ù¢mY(n ñÄŠïpJ®âh°Óeè(é2ÌHêèh<7k'§}|=\ºÒµm÷¡ÀO!òTºtiÀq¯+T:35µ_ AÁ?m3N<Zæ?ë8+ØÏH=9)ûò7	ØáÕ¬lÿkÑîûKÒÊ´ùúúÒÓ:1ÇÎ4^t{ofä`&¶ù¯ßVv„Úçj«&
ÔÇŒÒ6ƒ{&*–㇟öþõÆ”endstream
+endobj
+317 0 obj <<
+/Type /Page
+/Contents 318 0 R
+/Resources 316 0 R
+/MediaBox [0 0 612 792]
+/Parent 311 0 R
+>> endobj
+319 0 obj <<
+/D [317 0 R /XYZ 110.854 691.108 null]
+>> endobj
+30 0 obj <<
+/D [317 0 R /XYZ 110.854 204.391 null]
+>> endobj
+316 0 obj <<
+/Font << /F33 248 0 R /F34 290 0 R /F19 220 0 R /F23 223 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+322 0 obj <<
+/Length 1137      
+/Filter /FlateDecode
+>>
+stream
+xÚ•WÏ—£6¾Ï_‘#¼7ñbãÐcûÚC/sèܺ=0$ìÌ'³ûßW²Í&&ÐK0X–ôIŸdå×ק/¤éŽR’±{=ÂJ•¨œ0®v¯åßÑ×D$CL£C?ºià·¯àçTkømã^ÿ-|¢%“„2µKìñC,’¨hoÅïSXþHÜó§þ þzMSr	nxEà‡¡ùDdOEf×{šÎ2+ûWeâ=§idΕ[€u„€.øÄ#ÄSáç,jÝ:A}ütòP´1SÑ-"*ÀKó„ˆ|Œ yjÞ{›¦$ÉGD…÷ ùÏœŽ÷`Nã^Y·…©†©c 	 ºw{ÆR"s
+Ø9á\X­×®³ªϦ:šç€×BÆòÑéOY˜;M	M¨—D7R&Ã¸h4†ç=þ0)£¾>c–«ÖƒF½oÇ]§A@ìz€Ô`^ìéÊS‹±§°Vœv€œä­á„A^^¬¹öˆI=][ïÑçŒ0•/p´6ÕÅ­tg,3p}+škp‰2	ÄSk4ÍazGSWZ¿éökB9òïÚc$DéÖ/~óŠL(Œ¯6'ÓÍ^Hbã P–P’)æ½³Èî½2ϼLY]S`>b«rt, ]f„¦ì>ŒAæs%¼$‰÷Jä¥Û;§iB¨RžÇÒÊxˆÈþLB­Tna‹õfÙÖú-øâ¥Ó×íixõL`Ér»‹y³ûõ¨­uðàEDæ;ÂÔopˆGß0–ÕÁ¸-¨B+ßaj{ÈoMåvçúidù
+§(^:ãºËàˆîjS;—᧶ڐö“,Ú÷b¬Ì™?]X:ÿ ¡ ™H¡(IsG®ÒÆå¢DFÄXΝ͙1U߆ªÍ‰N9[°Ð°ÚnÀ`&Þ
!+RÀ™f¼ìÔN‰&Ä€‚^茅,)EÛ,yÙ™%(ˆþ»Æ€æÌ"
Å™•Y…ãn¤cínžÇÙ°¤݇j䤗k‹K5m¦Xöq°‡]ƒÖî‰M/íÆwݱo#­žÝ·	ë,‘/ð¼u%‚_]]yžŽZèþ
vj¸`µÈÛŸ_+‘þ”ÿÏgªYcÎC;Þh¼\Lc;CèŠá’äRnQî%—B…é¹bijñÀÈ•B“W[lyɇs²ƒ0™ÑlS†¼ä,r˜‘#6Ž*Tg<!åêÌNëlž€eÛ/ŒD½ Ž„$SÐ[m.EáĶfh·º®Y N
9§«–G¹©i
+õ7«Ì[V½B»
 f´[6´…sΚô…sruO8°Â,èM9‘rb#w¨ý*àÚ(ôÒ~j¿­î/vðf¨´ÇÒûÆy®Ë²
+O·’Á”4
*:
+7‡)NM=˜µ;ÜÉ;¿4÷,ú TÒ{]šsH¹^âÐ;on¼¸)*ÝhÉ?$‘3·lÆÖ{s³tK´‰à0=óÔž öÝÓï¯Oÿ…ûľendstream
+endobj
+321 0 obj <<
+/Type /Page
+/Contents 322 0 R
+/Resources 320 0 R
+/MediaBox [0 0 612 792]
+/Parent 311 0 R
+>> endobj
+323 0 obj <<
+/D [321 0 R /XYZ 110.854 691.108 null]
+>> endobj
+320 0 obj <<
+/Font << /F33 248 0 R /F34 290 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+327 0 obj <<
+/Length 705       
+/Filter /FlateDecode
+>>
+stream
+xÚ}UKs›0¾ó+4¹:ƒ¬7àcÚx¦½eÆ·¦ØeŒÁ1vÿ¾»’À89X–V»ß~ûÐr»+!	ç4Óš¬7°c4ÕŠ­¨P	Y—BI#îŜ޽æ{8š*ú»þ½XñlÁH,åƯÿUQ,EnÎmqª;0k ÈÛH¤ás¤U˜ƒ¸ðð›
+7ý	µLXVû®íOGÔ8U½3E­÷1ïëÂéh˜[pÀ:̽ŹGù¶Z:ÂR¾#¬¨b™%üÀ4+‘Å–3pÕ\WD}¶4-Åé *ü8b.¨dŠÄ ”¡^@±¶|ãmvpfj(×Â[êÑÕ+´üŽ&ÚÊà„轘I÷HmWÁ×íÀ2o—Nôø­ÇÃÐ4¨Xƈ2	Ìò±-%)3#*.X t÷ìˆ}ñˆ}ÀÀØ,ÏjEqD‘+5²kjdçÀê2‘]ìm
œ=ºcÌéM÷
+Q™ÓÑÃV…ÉT×Âñý‚óT:tü¶õ]<¤Á&ÖÓÆ
+l’ß°áºv$?hϹ+ðï¹x‚6H¡/Ä‘›ñJ^Ž…Ìh&ôŒ§d— \)/P×"¯!QÛ诗$R$óëi§ùÚ»ýÍÛ“¶]|¯¸·„ëÍUj’ÑÄ|xX‰“¾sÄÆç Â¥%|°]]5v7øžë¦ñ'8<vö]~Qò~·k[c,i=©¾÷ê³ëãL'
˜Ú‚|î‚¿{+ÁÝ:à Æ‡‰’Q3˜§0ªÒ„û€<‘áW<RôՉ“m¨äÙx½øµ—ägÜä~Žäx}‹ß‚Ù ç©¡)7À©NÜt\ÕÛóѽ[«rÅJêaÊ›ðGpÝ–Žö?臷Qú‰woW1O4EŽèÈ&¬ôdâ^ùÜÄFP£$ü'4á.±|Ìåb£•–endstream
+endobj
+326 0 obj <<
+/Type /Page
+/Contents 327 0 R
+/Resources 325 0 R
+/MediaBox [0 0 612 792]
+/Parent 311 0 R
+>> endobj
+324 0 obj <<
+/Type /XObject
+/Subtype /Image
+/Width 494
+/Height 356
+/BitsPerComponent 8
+/Length 12559
+/ColorSpace /DeviceRGB
+/Filter /DCTDecode
+>>
+stream
+ÿØÿà JFIF  e d  ÿþ "Created with The GIMP"ÿÛ C 		
+
 $.' ",#(7),01444'9=82<.342ÿÛ C			

2!!22222222222222222222222222222222222222222222222222ÿÀ dî" ÿÄ            ÿÄ W  

+    !1RUt‘“”²ÑÒ"256AFQSTVar„’±Ã‚ƒ³#Bbq¡¤ÁÓð%f¥ã$3CD¢£ñÿÄ            ÿÄ )        a¡!bA1‘áðBRÑÿÚ   ? æcÕW™|åj4yé§ß¶ˆõ³Rê¶j"æKªæLÉ|È?ánK¶Aï[¢bµÎºÝm²<ee–#W1>ÕÍÄGcf¶½Ï«=£³Ëß»Âi1¡µí“rcx•Îºò>Ui(ªšù–×W=.©¯ã¾eÍŸÍã×#,<›"ÅWµ$㻵V³:µuÕQmšËkëæELk–%ö1XVÛ6.µ½Ç/O®z§»}QIõ%úÝÎL˜¦KJÓdê1©ŠÙYÌt*«ˆ¶vduÒËç#èó¥J;?ÔûÙ)'c$³XÙ(jü[ÄÍ{~Ó§TÔÃÝKHÀéšìšMÓh™x
+ån6Šks¦¾g=þOà|Í2ÌyÊ&N³3’e®ÅkÜ­jæzÞꊙ‹^§’e: I64'CˆÌª9¯K*.MÚèLÀVÉI`æF¨Ê¬Ì«t+Ÿ¿Ó³ÝdþËÛöêêꉟӖ¢"\„å„„¤ìÝ-a@›EtteÆzyñq±­ïT¶r½t­éŠÉEk™Ù—|ëðî›3²•e˜Y¹Ö£åck#YèíâÅÖ·ùÜåÙ$¨öª&²›è›ˆ–z»/i,Á¹y&¶vŸj:çs±ÞÔOr#UÊL¦
+Õ*•…BΨç9ϏÖµUUQÞd*d)èËþï¡Òe%¦ MÈÏ5“)
YZkù¤z+lìX‰{kæñøÎÝsPÄOt¹ÌÁ(!AÒ´‡2¤8K<fµÏTUFª+®Ük-—:*µS2æ9½Š@Œø1h•k£EEj¦eEíŽÊ»M˜ž‚ÆLÅ—‘‚؉ŠõºÙQ°šž7½|ê®UU(pž–è˜C2äVÄr£1ÞÖbã?¸ËoÖëc—¥‰›^©…FW6Ü4^Êà†Ñ»†‹ÒPíˆÒ‡lNôÆ£+‚Fî/HepChÝÃEé
(vÄiC¶"FW6Ü4^Êà†Ñ»†‹ÒPíˆÒ‡lEŒ®m¸h½!•Á
£w
¤4¡Û¥ØŠ5\Ú7pÑzC+‚Fî/HiC¶#J±j2¸!´ná¢ô†W6Ü4^Ò‡lF”;b(ÔepChÝÃEé®m¸h½!¥؍(vÄQ¨Êà†Ñ»†‹Ò\Ú7pÑzCJ±P툣Q•Á
£w
¤2¸!´ná¢ô†”;b4¡ÛF£+‚Fî/HepChÝÃEé
(vÄiC¶"FW6Ü4^Êà†Ñ»†‹ÒPíˆÒ‡lEŒ®m¸h½!•Á
£w
¤4¡Û¥ØŠ5\Ú7pÑzC+‚Fî/HiC¶#J±j2¸!´ná¢ô†W6Ü4^Ò‡lF”;b(ÔepChÝÃEé®m¸h½!¥؍(vÄQ¨Êà†Ñ»†‹Ò\Ú7pÑzCJ±P툣Q•Á
£w
¤2¸!´ná¢ô†”;b4¡ÛF£+‚Fî/HepChÝÃEé
(vÄiC¶"FW6Ü4^Êà†Ñ»†‹ÒPíˆÒ‡lEŸÈqè±&%¦cSaâde]ø°ÞäuÕ,¸Ë™©k®k»Î}ep?hÝÃÅéŸÈTçcLAÅÏhn·Ö‡Ö”?b#¦>—Sù•Àý£w¦z­J›5
ðg;3I€¬Ðòq&­„õELÙñ•ˆˆ«dÆvlçž”?bNv<Ä\ö†û}h4Á©Qz›Ëlj-=͉
ÊǦ4ÂÙQl¾3ÒS	úOÍ2ZZšè‘Ÿ|VãÇKÙW]Þk‘éX/#9+<jt¬XŽœ™E{àµÊ¶Žô×_ì?³X5)%S¤:ZF^âM9˜Ðá5ª©Š¶Íý‡ù;Möýëzºõ©Sf¡¾ãgfi0šN$ÃÕ°ž¨©›>2¢#l˜ÎÍœ‹
+#ĉ
%±
m¬™ˆªÕÏ™Q›YOVS1=¡¾ßZvÈ6Bµ!”®\ Žäk%¡7#Ãñåùš–î½Þë·}uÑ	sN±Õ…2È0dŸ+:½¼'BšzEj¥ÕÔW.t²ç·ˆíp›é•É¸l‰—…9"3(ÔTLW*®wç×ñ¥ï.¹&Se§eæg,HÕ…z²{.ÌX~ãÄÜÙ¼öñ[-j2o‡uÌO§·Gu×==]”²sjÆçE_ìBDi–LCXOGâ;ºj"vÉŸ2Þÿ ÝœýH{›ƒô¤G*&‚ƒ¬¿ÔB^R&ÍÛç’}ÌLw‡hô~íùÖ,ä8ÐVÃ[x³/‹[ÿ Â<ŒgÉʶã>25WÎm—?‹\ý%”‰³vøÊDÙ»|Ÿ<]é_Šj­ù×G&Åw‰²øOS•‚Ø2Õ	Ø0›|VCŒöµ.·["/M÷)fíñ”‰³vùgÜßæáÝùõ•É¶N,Û&f2ªª±‘îGÝuûkÜø‡W
+X0âÆd(ÖÊ1ª¨×Û:]<v?Bå"lݾ2‘6nß;ïÏkY˜YD•XÑÖYŒUˈ‹çµí|ç“g»d²-ïæ?Då"lݾ2‘6nßîkèøwcôšÓå!µÈÕÆEºv·BùµJDã1Òb$„[vÐâÁ{Ø«ýW6ê‰îTýªhYH›7oŒ¤M›·ÍO»¿®†q÷pM®Ò©H‘`D}Bn×b¤25óöÙܾlÅ;ë«#žö½Îrªª«W:©ªå"lݾ2‘6nßsüí÷e:tžßJ:OFï¥M[)fíñ”‰³vùs<yLmÙN'£wÒ£N“Ñ»éSVÊDÙ»|e"lݾ3<y1·e:tžßJ:OFï¥M[)fíñ”‰³vøÌñäÆÝ”éÒz7}*4é=¾•5l¤M›·ÆR&ÍÛã3Ç“vS§IèÝô¨Ó¤ônúTÕ²‘6nßH›7oŒÏLmÙN'£wÒ£N“Ñ»éSVÊDÙ»|e"lݾ3<y1·e:tžßJ:OFï¥M[)fíñ”‰³vøÌñäÆÝ”éÒz7}*4é=¾•5l¤M›·ÆR&ÍÛã3Ç“vS§IèÝô¨Ó¤ônúTÕ²‘6nßH›7oŒÏLmÙN'£wÒ£N“Ñ»éSVÊDÙ»|e"lݾ3<y1·e:tžßJ:OFï¥M[)fíñ”‰³vøÌñäÆÝ”éÒz7}*4é=¾•5l¤M›·ÆR&ÍÛã3Ç“vS§IèÝô¨Ó¤ônúTÕ²‘6nßH›7oŒÏLmÙN'£wÒ£N“Ñ»éSVÊDÙ»|e"lݾ3<y1·e:tžßJ:OFï¥M[)fíñ”‰³vøÌñäÆÝ”éÒz7}*4é=¾•5l¤M›·ÆR&ÍÛã3Ç“vS§IèÝô¨Ó¤ônúTÕ²‘6nßH›7oŒÏLmÙN'£wÒ£N“Ñ»éSVÊDÙ»|e"lݾ3<y1·e:tžßJ:OFï¥M[)fíñ”‰³vøÌñäÆݒª&ŠÝÄ6ZÞ÷©SY–JÄã&4Þµ%‹
“’˜Xl\ê·T²çÏkûÜ2‘6nßH›7o‰÷q1SÓÊÇ·¯Ä°ú<²Qç1¦õ¹ìhjÌœìÂÅbgEº%“>mzùËvUSEGŠîâ-o{ÔÖr‘6nßH›7oˆ÷‘QÓÉð_ÛcbÀX©-X©À…4HÙ&C€æµ^õ{¬®†«k¹uÕu϶,M+33T¨ÍèX‹8°à£q•Že×Us=Þ?µe"lݾ2‘6nß&\¯'Á»&eU4Txø®î!²Ö÷½Hr‰L‘ªMÔàI¹'¦ÿ ó£½^÷9<È®UÅMlÉdÌžd6v=ꪊç*b®ºûŽV‰L‹S¥@™‹U©¤H˜×FLY39SÆžâϼ‰ÿ ïìcîà­LJæ6M̨,<›£1^Üvùœˆ¶w‹]Y<ÈBªÔa\Ô²_Ɔ›'LÑ1& ¾­Ulihï†æ¬Å»[ö®µµ•¶ÏãÎCé&Èàœ´&ƏViŽWLj¯rª²'˜G½ˆütÿ dø7t´žðRwBˆ´žðRwBÓ  (                                        [PÂ*"a²õ*Í>J3›ŽØs3L†åmÕ.ˆåEµÑsû” sK‡Th’‘fdaÕ*0ÙŽŒt2b3#9ª¨¨ÈˆÌGgED\k{ÏH•ºôWÂ…%‚SL{gĨNÀ…	²­ï	Ñ\«tD²7Ç®–¡<‰†S3sŸA¦ÁFµÄdi×=×\eW^
+5-‹d²øóžkƒu™©H°ç°Æ¨‘#c£ô	xk\«deá½í²*".:®kÜ”]¾W·¥Vª’±5Õ±æ]9"§rŽHÊç#uîÜÅT]|ȨѸE!šn•©
3$jlT…ʹî°c9Ö¦tºErªÙmqBô2XMHž›d›&ò3±/“”›†ùhïDK«›
+"5îneí‘-™sæ[[    õº_…~ÅV	v˜3-ƘèßíÇqkº_…~Ç1E¥ITðzAӐ&F&Qȉwºù‘mþÐ"lÿ ü6«¤™ F´	¯2l¾,Ë™UWYl„©
Ënˆ|ˆ„îŨާÿ ÚþrTf£0bQ‰uFÇ„‰Œª«ÜD×UΤ%{Iï'qAä!(‹Iï'qAä!(¤                               mC¨t‰†ËÔ«4ù(În;aÌÍ2•·Tº#•×EÏîP,Í.Q¢JE™‘‡T¨Ãf:1Ò4Ɉ̌檢£"#1q­ï="VëÑ_
+–	M1îuŸ¡;&6Ê·¼'Er­ÑÈߺX„ò&LÌ=Î}›Ôc‘§\÷]q•]x(Ô¶-’ËãÎy®
Öf¥"ÞâDŽÐ0%à1­r­‘—†÷¶È¨ˆ¸ê¹¯p:R¶¡„T:DÃeêUš|”g7°æf™
ÊÛª]Ê‹k¢ç÷)&Pf	Ó²óSì„ìvB¨OÇš„Ž²¶ù8¯sUlåΩšå•6‰I£et®—%#•¶SB˲=¯kâ¢^×]õ¥pêR,ÌŒ:¥F1ÑŽ‘¦LFdg5Uˆì訋oyé·^ŠøP¤°Jis¬ø•	Ø¡1¶U½á:+•nˆ–FøõÒÇB ç‘0Êfaîsè4Ø(Ö£Œ:çºëŒªëÁF¥±l–_sÍpn³5)öÕ$lt~/k•lŒ¼7½¶EDEÇUÍ{(ž‰‡Âtì¼Ôû!;ªñæ¡#¬­¾N+ÜÕ[9sªf¹eM¢RhÙ]+¥ÉHåm”в셏kÚø¨—µ×}Ià      	ÙJŒ£å'¥`MKD¶<ðÑìu–év®eΈ¿°©ìkAöÔjœí:ÙÒ>^]mÜ·'øŒMlXK2ÚéfÚôE£pŠC4Ý*RfHÔØ©
+#•sÝ`Ær5­LétŠåU²Û:âûÉa5"zm’l›ÈÎľNRn壽.®l(ˆ×¹¹—¶D¶eÏ™mlxNÈÊTe)=+jZ%±àdžc¬·Kµs.tEý€{‚‹±­ÛQªs´ëgHùyu·rÜœKâ15±a,<Ëk¥›fÂ)Ót¨Hi™#Sb¤(ŽUÏuƒÈÖµ3¥Ò+•VËlëŠðû¥øWìTएÁ©G5·EÇñÿ ]Ÿ„Ô‰éÖI²o#;®ÉÊMÃ|´w¢5U\ØQ¯ss/l‰lËŸ2Ûûƒ>
+Sÿ yËP‹cýèr}Qœ×àÄ£Øæ¹®˜„¨æ­ÑS&tRî­ÞiíÏ’§3†^Qþ_øO$’ê)=à¤î(<„%i=à¤î(<„%€                  ­¨a‘0Ùz•fŸ%ÍÇl9™¦Cr¶ê—Dr¢Úè¹ýʐ9¥Ãª4IH³20ê•lÇF:F™1‘œÕTTdDf#³¢¢.5½ç¤JÝz+áB’Á)¦=γâT'`B„ÆÙV÷„è®Uº"Yã×KЃžDÃ)™‡¹Ï Ó`£ZŒb24ëžë®2«¯–ŲY|yÏ5ÁºÌÔ¤XsØcTH‘±Ñú¼5®U²2ðÞöÙW5îJVÔ0Š‡H˜l½J³O’Œæã¶ÌÓ!¹[uK¢9Qmt\þå DÀŠÃá:v^j}ŽÈU	øóP‘ÖVß'îj­œ¹Õ3\²¦Ñ)4l®•Òä¤r¶ÊhYvBǵí|TKÚë¾ T®Q¢JE™‘‡T¨Ãf:1Ò4Ɉ̌檢£"#1q­ï="VëÑ_
+–	M1îuŸ¡;&6Ê·¼'Er­ÑÈߺXè@ò&LÌ=Î}›Ôc‘§\÷]q•]x(Ô¶-’ËãÎy®
Öf¥"ÞâDŽÐ0%à1­r­‘—†÷¶È¨ˆ¸ê¹¯s¥ sÑ0"ƒ0øN—šŸd'c²B~<Ô$u•·ÉÅ{š«g.uL×,©´JM+¥t¹)­²š]±í{_öºï©<                        õº_…~ÅVø)Oýç-KX}Òü+ö*°gÁJï9jíïVï4öç‰ÉS™Ã/ ¨ÿ /ü'5[¼ÓÛž'%Ng¼£ü¿ðžI%ÔR{ÁIÜPyJ"Ò{ÁIÜPyJ)  (        	ÖM¾Q푏ÊÛ$x+‰Ÿ=ÚŽj®kÿ I?È¡\¬ÍJE‡=†5D‰ `KÀcZå[#/
ïm‘QqÕs^àt¥mC¨t‰†ËÔ«4ù(În;aÌÍ2•·Tº#•×EÏîRL Ì>§eæ§Ù	Øì…PŸ5	emòq^æªÙ˝S5Ë*m“FÊé].JG+l¦…—d,{^×ÅD½®»êJáÕ$¤Y™uJŒ6c£#L˜ŒÈÎjª*2"3ÙÑQÞóÒ%n½ð¡I`”ÓçYñ*°!Bcl«{ÂtW*Ý,ñ륎„Ï"a”ÌÃÜçÐi°Q­F1uÏu×UׂKbÙ,¾<çšàÝfjR,9ì1ª$HØèý^×*Ùxo{lŠˆ‹Ž«š÷:P=(3„éÙy©öBv;!T'ãÍBGY[|œW¹ª¶rçTÍrÊ›D¤Ñ²ºWK’‘ÊÛ)¡eÙ×µñQ/k®ú“À                                    Pû¥øWìU`Ï‚”ÿ ÞrÔµ‡Ý/¿b«|§þó–¡>ÞõnóOnxœ•9œ2ð
+òÿ ÂyÓU»Í=¹ârTæpËÀ*?Ëÿ 	ä’]E'¼Å„¢-'¼Å„¢ €                                                     >¡÷Kð¯ØªÁŸ)ÿ ¼å©kº_…~ÅVø)Oýç-B}½êÝæžÜñ9*s8eàåÿ „ó¦«wš{sÄä©Ìá—€T—þÉ$ºŠOx);Š!	DZOx);Š!	E                                                        }Cî—á_±Uƒ>
+Sÿ yËRÖt¿
+ýŠ¬ðRŸûÎZ„û{Õ»Í=¹ârTæpËÀ*?Ëÿ 	çMVï4öç‰ÉS™Ã/ ¨ÿ /ü'’IužðRwBˆ´žðRwBŠ@ 
+  ‹	0ʁ‚:O'ô&ŠÇÈÿ 3&6-±»†­­Œšþr‡V\Ûïðqú w`á5eÀ¾ÿ  _vo‚~ÔQxü. ¢ìßý¨¢ñø]"u6·I¬åt®©%=’¶SBÌ2.%ïkâªÚö]åx                                             ¨}Òü+ö*°gÁJï9jZÃî—á_±Uƒ>
+Sÿ yËPŸoz·y§·<NJœÎxGùá<éªÝæžÜñ9*s8eàåÿ „òI.¢“Þ
+NâƒÈBQ“Þ
+NâƒÈBQH @ O\“?5øŒ$ݺãü™ù¯Äa$f@     ½›ágµ®?¤;7ÂÏj+\~/H¢ u”Þ©ØkJÊè|#~RØÚ)É1k_[(ŽÅ×ñZù¯¬„ýYpûo¿ÁÀè »Õ—¶ûü{ü¡0³kè¼_õœ¬(L,Úú/ýB}7®&­+¦”)›Û'¡b¾.½ïšÖ]{æÆ ·òÿ •?ê?ö‡òÿ •?ê?öŒ$ߥ?”&	í}k…þ þP˜'µõ®ú‡æ°ߨ©½]0*{+¢#ÎÓñ-‹¢¥•Ø÷¾¶M_­oµÒ×Ïiú²à߃Ð?' [õŽ¬¸·ßàãôîÍðOÚŠ/…Ò? [öfø'íEÂ驵ºMg+¥uI)앲ša‘q/{_Vײï)øˆÝºÜ<¦ù_ÊRÛ° (                       êt¿
+ýŠ¬ðRŸûÎZ–°û¥øWìs4YOàì…ç§%Û
""6^"1ïvuÍuÿ ~ð‹Š·y§·<NJœÎxGùá<¹~¶#ÇÕjŽc’Îk¦.ŠžeÌWu@€Ùl—bª²X,j»^É
霒K ¤÷‚“¸ ò”E¤÷‚“¸ ò”R  P ×äÏÍ~#	7n¸ÿ &~kñI                      ݺÜ<¦ù_Êa&íÖáå7ÊþPCv                         Ô>é~û¸-àä§ë帺‡Ý/¿b—¼”ý|·\ÏTå·D>DC¦9ž©
Ënˆ|ˆ„’W”žðRwBˆ´žðRwBŠ@ 
+  Âzãü™ù¯Äa&í×äÏÍ~#	#2                      ·[‡”ß+ùL$ݺÜ<¦ù_ÊnÀ´                        ú‡Ý/¿b—¼”ý|·Pû¥øWìRà·ƒ’Ÿ¯–à‹ƒ™ê‘àܶè‡ÈˆtÇ3Õ#Á¹mÑ‘’Jò“Þ
+NâƒÈBQ“Þ
+NâƒÈBQH @ O\“?5øŒ$ݺãü™ù¯Äa$f@                     vëpò›å)„›·[‡”ß+ùA
Ø V€                       Pû¥øWìRà·ƒ’Ÿ¯–âêt¿
+ýŠ\ðrSõòÜps=R<–Ýù˜æz¤x7-º!ò"I^R{ÁIÜPyJ"Ò{ÁIÜPyJ)  ( 	ëògæ¿„›·\“?5øŒ$ŒÈ                      nÝnS|¯å0“vëpò›å(!» 
+Ð                       êt¿
+ýŠ\ðrSõòÜ]Cî—á_±K‚ÞJ~¾[‚.gªGƒrÛ¢"!ÓÏTå·D>DBI+ÊOx);Š!	DZOx);Š!	E    a=qþLü×â0“vëògæ¿„‘™                      
Û­ÃÊo•ü¦nÝnS|¯å7`Z                        }Cî—á_±K‚ÞJ~¾[‹¨}Òü+ö)p[ÁÉO×ËpEÁÌõHðn[tCäD:c™ê‘àܶè‡ÈˆI%yIï'qAä!(‹Iï'qAä!(¤    '®?ÉŸšüFnÝqþLü×â0’3                      »u¸yMò¿”ÂMÛ­ÃÊo•ü †×T¨A¤R'jS
{ ÉÀ|ÄFÃDW+XÕr¢]Q/dó‘$™„-›dIèô¸’Ͼ<b1ð3]-\©Ëf÷ï|lÖÅYóÒRõ	™¸yIi˜Nƒ—TÆc‘QRé3*ë$¤«p¦Ø³•˜¯ŠÈrI,LÖL£ñÕ«¯uÄc.äKY.Õ­"EÂéiYyÈӔꄫ IÆž„‘¡±3"½Ìj:íTÆgkîÝ3fu½…r˜±rÒ“°"2,³hh×¹“rP¢Zý«UØ×k¬ôÅ[µ3"ÐêshS¬dì”8“2÷L²Ÿhñ¡Åm•ñß”þv.3a»ÍEþs7nŠÞ–bƒ/;?T6쬵FBŒY{+{F¬e^ÙùÒ2¦kZÚùó-ytô9y	Ù¸ò“M•X0Û½ë	‘nŽs‘­j5éêÜédº«Q|
+å«áJNÇ‹,¯—…
`½!ÆW%ûlGª5QŠår¯hŽLäyŒË`Ô­-Ó0"Å…f#ºj[+n+•ËÑ`ã%Úç½Ñ¨äF¹©™¶"&¹(0)•‡/
+<HÌHr
LŠÄUs¶¼(Œ{Ÿ“z*£äEkÕ1€¶ÂŠÄÕ—jREó‘9-.°Ø­ÌØ‘ZÅ^ÙÍKª:ÉŸºsoÚÝQ/„²Ó6J¤¬Ó`ŏVã‘™(Ñ¡ããÃDGc¢¦N&w5¸‹e[¶ò+ÔÈÕz^…—™d¼fǁ1,HK¨èQYZŽjª*²Úé®TS°.Z„O©Ãm>Ë4Ëb%=‰6¯Š®W#㪪«^ë#ZÕ²5ʈì`øŸÃ(©CƒR¦Ò'c¶4Ô£!+ØÄlh¢µ©Š¯Dí‘Uª¨æ«š¯kZ·:Ó\˜I)æC©@dÌÄÔ¼Ëb6I
_2EH‘!µÈŠõK=è¬ÆDmšÜS¬                êt¿
+ýŠ\ðrSõòÜ]Cî—á_±K‚ÞJ~¾[‚.gªGƒrÛ¢"!ÓÏTå·D>DBI+ÊOx);Š!	DZOx);Š!	E    a=qþLü×â0“vëògæ¿„‘™                      
Û­ÃÊo•ü¦nÝnS|¯å7`Z                        }Cî—á_±K‚ÞJ~¾[‹¨}Òü+ö)p[ÁÉO×ËpEÁÌõHðn[tCäD:c™ê‘àܶè‡ÈˆI%yIï'qAä!(‹Iï'qAä!(¤    '®?ÉŸšüFnÝqþLü×â0’3                      »u¸yMò¿”ÂMÛ­ÃÊo•ü †ì +@                       ¨}Òü+ö)p[ÁÉO×Ëquº_…~Å.x9)úùn¸9ž©
Ënˆ|ˆ‡Ls=R<–Ýù	$¯)=à¤î(<„%i=à¤î(<„%€  „õÇù3ó_ˆÂMÛ®?ÉŸšüFFd             ŸM¢U«9]+¥ÎÏd­”в{Úø¨¶½—y@€ŸԳ
êrî/ƒ³Lc]ˆ©2æKºöEÌØŠÕTϯkkù”èdºáŒÔ£#F‹K“ˆëÞy‡+ÛžÙՍssëæU×ý€eÀÞ u¹AlÄ7LaCâAG"Äd9cœÛçDrÄTE·ŽËo2—P<•›dhÑj“Û{À0Ôc³[:±­vm|Êšß°-?2ö7©ŽR²º$Ÿ”¶6ŠjÌZ×ÖÊ+±uüV¾kë!ÐÓétêD»¥é²²P\ìwC–‚ØmWYêDKÙ?¹OÆ’X-„5FMÈÐj“RÑ/‰œG±Ö[-œ‰eΊŸ°ê`uÃȳᾌÈ,{‘®‹n
+µˆ«Ý.+•lšù‘WܧêÐRŸœäºÞp…óllõ^—YoÄŠôÍšÍVµ=¿¤Ÿäj=N:œj}¦ñ]£²_û|–&&?õ{ãûµŽì                          }Cî—á_±K‚ÞJ~¾[‹¨}Òü+ö)p[ÁÉO×ËpEÁÌõHðn[tCäD:c™ê‘àܶè‡ÈˆI%yIï'qAä!(‹Iï'qAä!(¤    '®?ÉŸšüFnÝqþLü×â0’3 -¤°[j2Œ›‘ Õ&¥¢_4	8c¬¶[9˝?aÔÀê-‡‘f!Ã}X÷#]$ÜkWº\W*Ù5ó"¯¹@à°Iu¼áæØÙê½.²ß$‰é›5š­j.{I?Èéi½nÔ˜Y]4¯NÌÞÙ=	1uï|l{ø¼Ö²ëß0§ç ~¦§õÀ‰)wC˜’šŸz»"ÌÍ=®D²v©“ÄKf¾µó®}c¡’ê{ÒŒ–ƒƒT·Ceì±å›ùÖùÞôW.¿}ÁiøòÓ3ååá>,h®FC‡
ªç=ʶDDLꪾ#¡’ê{†3ól–ƒƒUFÄ}ì±å™’ùÞôF¦·}Çìp
+~]¦õÃY쮈%OĶ.Š™GcÞúÙ4~µ¼v×K_=º[¥F,»RÂYhØÖk%¥ÝªÛ&us•Š‹{æ·‰3çÍú¦?%ÖóƒÌ”cgªõHó)|x&.|ÖjµÊ™­ý%ÿ #©Ôƒ åæ!Æf±_
Èö¤IˆÏjª-óµÏTr{•íÀUL–`õ:m“r4\¬Ì;âF'
mÒËg"]3*§í-€                                    êt¿
+ýŠ|c×ååNßY?®âât¿
+ýŠ¼r®
KCETUÇVÛÏŽà‹LœMƒ·Ž_ªJ[å‘uôL>DBέ514µ2Z<VEŽìx†õGC„Õº­ÓYWY3Ys¡WՍ‡ƒŒcQ¬lxHÖµ,ˆ˜‘3!	^Ò{ÁIÜPyJ9™8õ8ËK“¨ºVR`Æ[Bkî¶Dñÿ ¼Å“d+Î[7«¹Î )àA«Çž™“n?+,Öº/þ
¶LlèšùÖÉýûÞú_XöÜI¼àµˆ+´¾±í;¸“yÆ—Ö=§wo9K}T¨”šÎKM)rSÙ+äôT»"â^׶2-¯dÞCÒŸK§R%Ý/M•’‚çcº´ÃjºÈ—Tj"^È™ýÈxé}cÚwq&ó/¬{Nî$Þr±v—Ö=§wo8ÒúÇ´îâMç)kWi}cÚwq&ó/¬{Nî$ÞpZÄÚ_XöÜI¼ãKëÓ»‰7œ±v—Ö=§wo8ÒúÇ´îâMç¬A]¥õiÝÄ›Î4¾±í;¸“yÁkWi}cÚwq&ó/¬{Nî$ÞpZÄÚ_XöÜI¼ãKëÓ»‰7œ±v—Ö=§wo8ÒúÇ´îâMç¬A]¥õiÝÄ›Î4¾±í;¸“yÁkWi}cÚwq&ó/¬{Nî$ÞpZÄÚ_XöÜI¼ãKëÓ»‰7œ±v—Ö=§wo8ÒúÇ´îâMç¬A]¥õiÝÄ›Î|F”ªÀƒ4L(saÃj¹Ë š¶DK¯Œ…­K/µ3-
+<< ˆŒŠÄ{q¥‹eK¥óžš
+»í¸«9Ê-S «¾Ð»Š³œh*ï´.â¬çØ:
+»í¸«9Æ‚®ûBî*Îp-S «¾Ð»Š³œh*ï´.â¬çØ:
+»í¸«9Æ‚®ûBî*Îp-S «¾Ð»Š³œh*ï´.â¬çØ:
+»í¸«9Æ‚®ûBî*Îp-S «¾Ð»Š³œh*ï´.â¬çØ:
+»í¸«9Æ‚®ûBî*Îp-S «¾Ð»Š³œh*ï´.â¬çØ:
+»í¸«9Æ‚®ûBî*Îp-YŸ]ˆª‘9,—Ï*Îpúu}šø@ëx•%Yeþð-a÷Kð¯Ø«ÁixìÁÙ%XnjÙÎLlٕʨ¹ýÙÏi)Jœ7¾,ÝaóÚ–É$±WκäÀ!ÈRæÛ?==6˜Ñ£Esa]ȸ‘WÍ}uýž;”ÝRQS%‘uÒf"!Òœ§T/ánÆrB_Ù™Yún…tÅJ$L«UZºÙ³**x³ÿ qn•è’ÊÙz¬ºÉªª5#3¶‚õÖî¼Wζ]dLçò…K{ÛN¨¹W'¥P µ­µÕlŠ«öÿ z÷”‡Žcá½ÌrYÍv*¢§™@¢¢½±0‚¸ö9ÇC‚­sV詉®…©ã)(Ù´“I‰Ušj5ë	ÍL[*çmïm{{¼V#ö.Ý´­q¤æp ö.Ý´­q¤æ‹·m+\i9iÀƒØ»vҵƓ˜v.Ý´­q¤æ§bíÛJ×NaØ»vҵƓ˜œ=‹·m+\i9‡bíÛJ×N`Zp ö.Ý´­q¤æ‹·m+\i9iÀƒØ»vҵƓ˜v.Ý´­q¤æ§bíÛJ×NaØ»vҵƓ˜œ=‹·m+\i9‡bíÛJ×N`Zp ö.Ý´­q¤æ‹·m+\i9iÀƒØ»vҵƓ˜v.Ý´­q¤æ§bíÛJ×NaØ»vҵƓ˜œ=‹·m+\i9‡bíÛJ×N`Zp ö.Ý´­q¤æ‹·m+\i9iÀƒØ»vҵƓ˜v.Ý´­q¤æ§êÝæžÜñ9*|ö.Ý´­q¤æ>_‚°â1Ì}J°æ9,æºeªŠžeÌzR{Í#¹áòP˜zËÈC––….ÆÆVBb1ªåmì‰l箇nÆ&úE­ÝŒMô»›èE­ÝŒMô»›èE­ÝŒMô»›èE­ÝŒMô»›èE­ÝŒMô»›èE­ÝŒMô»›èE­ÝŒMô»›èE­ÝŒMô»›èE­ÝŒMô»›èE­ÝŒMô»›èyAÿ Ôøª^ƒ/e¥Qó“ZË
+]=»eÖj^Ⱦ4¹mM‘åâÀrEFEn#ì­ÎÕ×OÚ™¿nk2ÔÉY()Z]С§‰¸¹óZëç\Úäi®¨D“Œú‹%¡Äv*¤8½¯žêª¹ÿ ³6oìJXJÜÖ1÷uµÕ-cýèQärP¼…»ÈyØhx»ïC’ê‹
ððn2ZóŒä<’K“ê‰W’‘—”…/"°àCl6«˜ûª5,—íµóÚ§V½VCƒL †©Õ¯UàßÓ§V½VCƒL §V½VCƒLjZõY
ý0 jZõY
ý1ªukÕd87ôÀªukÕd87ôÆ©Õ¯UàßÓ ©Õ¯UàßÓ§V½VCƒL §V½VCƒLjZõY
ý0 jZõY
ý1ªukÕd87ôÀªukÕd87ôÆ©Õ¯UàßÓ ©Õ¯UàßÓ§V½VCƒL §V½VCƒLjZõY
ý0 jZõY
ý1ªukÕd87ôÀªukÕd87ôÆ©Õ¯UàßÓ ©Õ¯UàßÓ§V½VCƒL §V½VCƒLjZõY
ý0 jZõY
ý1ªukÕd87ôÀªukÕd87ôÆ©Õ¯UàßÓ ©Õ¯UàßÓ§V½VCƒL §V½VCƒLjZõY
ý0 jZõY
ý1ªukÕd87ôÀªukÕd87ôÆ©Õ¯UàßÓ ©Õ¯UàßÓ§V½VCƒL §V½VCƒLjZõY
ý0 jZõY
ý1ªukÕd87ôÀªukÕd87ôÆ©Õ¯UàßÓ ©Õ¯UàßÓ§V½VCƒL §V½VCƒLjZõY
ý0 jZõY
ý1ªukÕd87ôÀªukÕd87ôÆ©Õ¯UàßÓ ©Õ¯UàßÓ§V½VCƒL §V½VCƒL¬®á…C$Y)7UÙ""Âk‘nˆ©ãræΠÿÙendstream
+endobj
+328 0 obj <<
+/D [326 0 R /XYZ 110.854 691.108 null]
+>> endobj
+34 0 obj <<
+/D [326 0 R /XYZ 110.854 666.202 null]
+>> endobj
+329 0 obj <<
+/D [326 0 R /XYZ 238.028 172.024 null]
+>> endobj
+325 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/XObject << /Im3 324 0 R >>
+/ProcSet [ /PDF /Text /ImageC ]
+>> endobj
+332 0 obj <<
+/Length 1299      
+/Filter /FlateDecode
+>>
+stream
+xÚµWK£F¾Ï¯ðK¡‡~Bï-»Ú6RrH,å°»mÅàñL~}ªºlgåEuu=¾ªî*Þ¯?	¹àŠIe«Í‚ó„eZ-ŒVL¨t±*¿D’-y¤–1çBG¿äeŸM¼>öðîxÔËo«É"šÁÆË&6­–VE>¢܃⏟¸kÌjvq³`ܐÅÕ„·Qï^z¢NU¹u®:zçôz^Š,rí+}à•FÍ'|¸LnÐöq”cäŒç¹²ê›–-cimô90óý¾Aݧ`¯DÃ<:ìsä¾VõùY”×åEr «BX!¢fƒªÍ•íŽ˜Ãb¼v]õ­'^‰ÙU8ðË(åý’VGÞ‹ãaˆdM›¼.^Iˆ C&¸=¸LŒ5âÄò]Êdí|D~s¾n7$<–*:WôUSwôå#€w‰Cb°‰v0;%²³«ð!,e3ʶ߬zÑ"÷•å鵏4HG?ªjž œ’Øç Ð9„¬Õæu>›¦FyD(³xÌ!ÒE³oZ"ª$š(Ûuw§¨òÞ…M§ªßA¨töÊݳ/Éš¾ÖÕ
}ê‚‚&¼A(Ç }EÓ¶ž](†º¬ê`Wï5ó;yÊ´¶~rýŽ")»wt$¥I8º,MÌ”IKók¢Œjƒ÷<Š}N_¡–j¤!µÌ¦¼ö…Cê$ê‘Ð\G_ áßf,p%ƒI>saÄ\$Ì‚[1·L‰ÌË~Îx *“xðМҨҥt§tôQ­±n±D3)£ÏÚV!QßaéŠs’q­
+ŠÎêÇ‹ƒí¡’o³9©«Á‰’òÊ3êˤB¹ÀòuåUÒ¯ó)$S\ÀŒ&öœÏ4í^mŒ§Òd3é”,ƒf1Jç­ž1-ùÔ™ŒY%B樰>ì]ÞNB4QqQÁĸó‰áÊŸPò‰È½)|*ßK[š„,
³°ç¿‡,K at hò®§T†îéù*¤µá:ºÚBU|?äìrçA"mx‘÷e~¢‡&“á`K¸šò:§N¦,1÷På`T&éÖ_]uTŠVC„ä <Âó–2ò˜º¹JXjnîÀƒ¾›<ƒLß	\&9‰ûcÝÛH¿Ëi´ÁðBgèh©ê.WJUßVÓ\ã×Mëò·T™Ÿ+Ϙ°Gµ=zE38YÁDjo›E¾%¢9à¼Aôs¾?º¹L`½[4PÍ<6ŽMý5á
+½=ƒ˜‡ê 0æ+fè}ÿæ
+šCj]Ñ$ráL‹¿FÇ=ã1òäæXÏØÎ,“Fßí©)Sé´®Þû!Ehlz-!ÛbH&„òÂ8Â:´2/š"ÒçdÛõ„.+4ÄiØáyâ´sõŃAÅd’šÄ©ÇǶ{ë•™?£oñß6“2“ò›<!
+{WçOsUk4ã:½—šRÂͤj[f"j«‹1Õ¡*ðM$ßvÀºÇXpø©òLJãdÜ&ºÆÄ=ùû ¾ÎÓöY*¬ÃÀ¤3ýÜœ[Ø»™ag„G,áÊßJôG‡Ÿ]ßÒ¯Ð~æã ü¶‡ÖÑÌõð‹þñüü°ÄLýN:üýÁÈbžº€Eót8‚Ú04k™QpÝÂý=ç—>®þ£0Ænendstream
+endobj
+331 0 obj <<
+/Type /Page
+/Contents 332 0 R
+/Resources 330 0 R
+/MediaBox [0 0 612 792]
+/Parent 311 0 R
+>> endobj
+333 0 obj <<
+/D [331 0 R /XYZ 110.854 691.108 null]
+>> endobj
+38 0 obj <<
+/D [331 0 R /XYZ 110.854 666.202 null]
+>> endobj
+42 0 obj <<
+/D [331 0 R /XYZ 110.854 646.526 null]
+>> endobj
+330 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R /F34 290 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+336 0 obj <<
+/Length 1157      
+/Filter /FlateDecode
+>>
+stream
+xÚåWÏoë6¾÷¯È©p€YÏ’%;ÞqÀ6`vYnÛiì4Â;ˆÝ—ö¿?Qò¦yK÷tÀ‰(’"%~$-}·¾ûôCš.¤…1‹õŽ¨LäI¾ÈŒJç‹uù[ô{b’z)£vCeÜÓõLýòõO´^OÖg¹ÈrµHܾzî—qj2!u]5›Cå×L}fFH“ù5äL²Ž,&:±L
+¡eFjåtni›²[Æ*Ï£~_È¢mÛ,Í+˜	ÕÝL1Î¶|Äa–±j»¯,òö™‰C”Ì~€ýf;•`¬A¤•XÆZÑ/mßâhtÒXj¡µñ'b§rÙcmxÚõ'Û<2Ý·<>ÀgT±ž¥c’¨:OU­ù ÞÓð¾…÷úPû“mPØæÞÛÙÖvˆÛöp|"³‚áP™©Îª*3‹8Õ"Ë”;G*ÈzF~¤2ѯÛSÅ¡ c¹¡ÐËè©ÙöyÔtod+“’a%d6æ]‡½Ÿ>Ú›Œâ3ýÙ'Ú/c#µSº‡Ñ#˜è5›z”ÑüŒ™‰°Þ"¤Xø½‘j*¥DS>Ñx'?ÚÏKpc|ÄŒ†áÉn jw,ñ*&ê¦q m˜´ÏUÝ1mÚÝ`,ëEp¼òIõ
ñ2é}ëà
+pÕÌdÓdËÜIò V™óE§r¾hZZgåHKë
gvp]²FÛŒ!›a‡˜)ò”¬®¢·iQsû~Ñ}·>;P<ÏL6Ön2º¾Õkø´òرwgã턼'¶‹ïTo†!Í­‰0$qÕ)Ç•¦ê¡Am€‘è. at 8ò/ûÅ¿¡ŒÄßÂXÜR„1Ýáu):,¹–fV€sZŠ7Âùºuâ›4ˆóP‰˜ʼn8›•֏î÷ ˆÎš×êxD’x·À¶2zð ‚î\Ÿ=…v|ýç˱ûPLÀºˆG_—øØ~©.§x¾·­¡g†"5¯I’¹šuô¼á¾¯ÒZCIÜV¡Õ±è{ž )}W-&]µ0c9ÿ¸£¿»ë5ˆƒ¶OàV¨ÁçI	2fîkx
3÷)üZÌd·©Ì(Iqi;ë«ž….¤$õ7*5Ÿt‹ø2/NhúôsðIWŒøftQŒ¸¼„†*óàîÒèÇ@¸º—ðå‹^„õŠâM…ø!7RmÂGŽˆKÁu_ª©Ú6ìÉÖë„^zóÖý\i)ÒÉ+-ù̉I¹Pu|:ß„^®#§7Ã*ŸX°~_g¬sKo
+•ˆŒÞžSpÃ%ÊeŠS…L!(ßøø‚íåãs¯÷SsŽäCŽàÙ„È–££÷º»ܲ=_}´ô³ëì{7•ã—ŠhÜ}ðIb.
’»/%ñøöŠ'ªÎ£5¶w¡ •½ÔøMÌ
È1gã[­ß 4Ùº{^=öÑ\­Q_•›. Cu=ålí±®Æ›³—žmS¶`º·Wçn±i
+!¦Ì‘b•r©Ê¢»ï×w€	$ñendstream
+endobj
+335 0 obj <<
+/Type /Page
+/Contents 336 0 R
+/Resources 334 0 R
+/MediaBox [0 0 612 792]
+/Parent 338 0 R
+>> endobj
+337 0 obj <<
+/D [335 0 R /XYZ 110.854 691.108 null]
+>> endobj
+46 0 obj <<
+/D [335 0 R /XYZ 110.854 600.656 null]
+>> endobj
+334 0 obj <<
+/Font << /F33 248 0 R /F34 290 0 R /F19 220 0 R /F23 223 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+341 0 obj <<
+/Length 800       
+/Filter /FlateDecode
+>>
+stream
+xÚÅVËr›0Ýç+˜¬Äb		ð¶Ó¦Ó.[ÏdÑvA
ÍððbL¿¾÷^	ŒÓ8Òéta¡«ç9ç>äw››»û p8÷×J9›z¡­"'TÒ2r6é7ö}¥V½Ë™®¡Iìz4™ÞA[t®§¸¤U`v%t8tèócóùgˆÀ—\8_ûRÄtþG}tEÄ2×xȺÂv
+8¿pEÌ:c7ù“½N XܬQ‘¦öú”•­ïz2lSèÖç¸ô±Þvºví6±Ÿ®w†±MÊ2KíÍ5qV€ZúR*B·g,B–Ð7b=)Ëù( nöevD*„ÕÎöºN\ßPêÂÞ¨”€;Wë«ž8åïÀ^"ôT~1ªöÉØ{¥iõY3´¡››®ÝZAL_Ûuà‡ÑCå+XÆWYog¿ÄrøW,°”~ CÃrí‹P9^ ý0ä(ðaO{¸PìAã­®=)VÁHR'»ì`ìœâ›º}FHåÇ*€‹„ÏÃË´­<LKM²eFÆ™íK}Ħ´Ãš8[>_G5&M§c®‹ˆR™ðY¿$ú«1.ZýËhnøì
;ÎŽØÅ(ˆRS˜uNbU¡…eü2’¬Ò5Üo
¬K³ýÄÌØ&¸`*Jq™6«SÏ.B;oäu{]­K3wƒ$YuQ‡BB7a	UÀ’ÙG°äÖÈmKó>AH"?OóÁú|ü-HU‚|ú.¹º*NºÂ$¬Ì$òø˜óô~Ì·Ìý„¶Içóã±°&c‚éÕ诤Ùë	>èÎJfèèø+ÈóCc)§ºÝ—´mpcΖ”\̪áW	B>;SÑÝs–‹JïŸÎj;ôV÷R…˜Çñ	5ßzB8ÒEŸ)‹E”±Pm©àëÚáJè¾ÞmŸ¶
5\
´%A•Ò_,Bˆ®9#|»?È÷™§·(›e>¼ËBˆþŽá©U†Ã_çÁ—#%};{‰ùçg.¢„Ÿt½3CPS/è=ûø8\­}®¤ãIå‹Øø€Kœºù°¹ù
¢ÅÃendstream
+endobj
+340 0 obj <<
+/Type /Page
+/Contents 341 0 R
+/Resources 339 0 R
+/MediaBox [0 0 612 792]
+/Parent 338 0 R
+>> endobj
+342 0 obj <<
+/D [340 0 R /XYZ 110.854 691.108 null]
+>> endobj
+50 0 obj <<
+/D [340 0 R /XYZ 110.854 513.649 null]
+>> endobj
+339 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R /F23 223 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+345 0 obj <<
+/Length 1801      
+/Filter /FlateDecode
+>>
+stream
+xÚíÙŽÛ6ðÝ_áGˆ‘")ißš"EÚl[I´²¼VV‡«c÷ë;)Ç^o6W (ÈÃáp87‡|r9{ü,ŠæRŠÔ˜ùå +â0ž[£…Òñürõ:xš°_È à³¼.àÛÖ4îà»_,ÔÁм­pò?¢M°°\ÁgØ0Ý'Ëë
¢óžÿö°\¼½|þø™L?HEBK5_ÊDh£I W É2R˜ÄÁ5ŠÓÖ ÑžgÖmwDbƒ]Ù¬ÚÐîïr¤÷Òo£”ÐvR•j–ðÉ+ûâHYÜô?£×#’ŠÑAeL°^,e06< æôqPàÀyVUÅŠ'v¨l{«$(:¦ EqDíݪ«q@ŸµŽs»v¤€Û8’ƒY˜¦ì¿íŠ¾§}VÛKÞ5غÍá;ößÔ`?‚œÑZèy0"&C…S-AÕ¦ zLq±nÉÎ9Š*§«]µˆ0P×T(kæË(eI"ÌX!•	^."d]VS†Ñ:Ü&6È[βý²Â¿Üköôr&ç!ü$l‹T&s*!õ<¯gÍ^¿
ç«Y8>E”&óÀ¡i:¯gȨ¥qãjöjöËÄkÉÈ%’€÷ñ"¢x1ä¨OX¡\1øf©“XØ”${‚¥ãÈ_ÒD"Ií\§J„*!3Ý. ¤²j,NUUè]¨3pürù<³Ë§À&ÑGò­Š>'w¡k¶C	™r"¨¶à‹HAÑa
+¶äe_åàü"Ò4úê0Qß:HâP$&~ Hb¼¸n„œˆuÙ”5fòXß.Þ_,©Š«àïÆ—ÿ†Œ¡Œð‚îΫb[с°¿×	Öÿ;áãNÐRH›>àm„	ù€S“øH£®c{¯#ì¿+G¤ßŸ#”‘zèàŠB8ßù`ˆ|MÊÞãÑðPY:°ÿOe7$d?#ReﱟĢGdh…µÜ].d`º«
+û¬4
+äô|6†f	LÙö}9ÍLMBÏã¬Y! °G+;ÆáAÝÑ	#ã¸Çgº3-ªJ”ˆPå¹À;Hq…-éõ™^ɆÖÑÞPêí±sÌ:lÅbi#\ò6`c½ab§=ît¨½Ì3''ÀS#u]rf7<,oÉF½dPó õ]Ÿ´¬‹Æo×ú¶§-ð
Ýö;²9råf~.caøâ6QŠø	$ÑÒí¢¥
Š÷Y
ºžÑ}ËØuÖ1àèâ`‹ªBóë[ßCÌ„UÙn-b]CL[9¥®³¼kÏy1M 2gv%ß$ázè O\	W™¿ Ïzç6›ŠTë#·±¯·xŸÔ†Å®aVÛ/…ž×©~ëËæIÀaÃ# Lèl˜É½ L†+o)HÇŽ§áÒuF«02VŸ£V$"#Ý‚<kNöÆÁ›PêÆÁÃØ+'ý(Ôàð>†áŽ'\s>4F
7hŠ­áW”i”tÕžc_¬r‰ÂÑ…nuø²?£²LB¡ùiùY¨;žÖ¥ßᄂTåê|áp!Â[)u‹ˆ«Êþ(:])gH	Ùc80ÐPž»†wo…©»þ:6
:–"®‚%?y ˆ¹.Œ@û/ÅÕþŒ
Bº\KËíÙ›Q:¾§ÜEµý3"
+™û˜~øRÀ;Ð#€Û‰€ºÅV@¹Ïa
+WËÊ)l„“Ž[HBŽmGO€x1Ü@)TeÛ‘ç}ÑDxÕ²_d¨…±¾Ö²™É½Rz3b1¤¸¨05¥
+òô–s#/³ŠBW†A¹æ…{±#YâÆç	`Pd\±­2.LWâ3â95 ª0¦…\4:xWä>Ìz¦ ,ý’_aîéK¤zÁÕ8<Š:::[.ä=…`çž»x/ Žä‡ñ;z?êYSP‚¢C›œÍsq&lBz`1îØöO}n[|È¡Pê7÷<Òøåü0·Û”9Š¶á0÷Ò»·6@)Š{Ãp?^ñì¶Ã(qVôn
EÄÊ%PS%€¿)…=_vÒ–]‘ÕÌš´‡ÿ¼­¹kÊ<ãü¿kuv­†¥ à$&	~öGˆe“< úK ìæ*Š¶É$-Âc_0
Gèž/и7Oƒºä.b¨Û€+îHY4•!‚}ÿ@	wW‘
´OWÏÄñzr<¥U,ºv´[ø|¾ÛUüs°m|·X.Ò±<Q„P“ìd˜?Ù
+é°šO¾˜ê6fkÑuãÖ­¦² S™¯N{ÔÁ»í½ï®*ù<{ä-çß'â Ž‘­{8äGÛüГRÙsñ
+]18™OáÒýg×dìƵcIMxJ/IÂ7iümãÄFwÀendstream
+endobj
+344 0 obj <<
+/Type /Page
+/Contents 345 0 R
+/Resources 343 0 R
+/MediaBox [0 0 612 792]
+/Parent 338 0 R
+/Annots [ 348 0 R ]
+>> endobj
+348 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [139.123 321.063 146.968 331.358]
+/Subtype /Link
+/A << /S /GoTo /D (table.1) >>
+>> endobj
+346 0 obj <<
+/D [344 0 R /XYZ 110.854 691.108 null]
+>> endobj
+54 0 obj <<
+/D [344 0 R /XYZ 110.854 535.919 null]
+>> endobj
+347 0 obj <<
+/D [344 0 R /XYZ 159.729 421.111 null]
+>> endobj
+58 0 obj <<
+/D [344 0 R /XYZ 110.854 306.337 null]
+>> endobj
+343 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R /F23 223 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+351 0 obj <<
+/Length 1973      
+/Filter /FlateDecode
+>>
+stream
+xÚ­XÉ’£F½ÏWtÌ	9Cm,ºy/‡Ý>Ø>Т$@¨½s©Bb¦ÔÝ^.Ô’™•ËËW|yûî÷Rݝ(ÝÜno„H“Âè›ÌèDêüæ¶þ=RÉJD"]ÅBHýz\ÅJD^£M3U¹‰V™Šª¡©îZµãêÏÛ>|+J™”Æ ôô&–2˽݃%óhÛ·m¿’EôØt;Ê¢´ÀŒÓRÀ–×>¬Œ!-0tׂÅ·ÁI«í©Ð­×lR8+àÀðV|V£µwðsÚÅð;ÝÃÏgã3“d¹†3à®ßö¶ˆW ·tK¦ŒDéæ?sŠ&ò‚ΣM8¬ÀþS×lð<SÓw<óˆ^h&Ût
+•%¸”¥>bHÆ}@·,’<óÊtœ."»A•ûž½]³¾©wÿlZÔÅ(W$Lˆ!m4¦
È««Vԁ9OS²Šµ2Ñ×v[Ú‰#ËlO6¡³¤âÒƒ &O)]ÔJÚ#¨€3€Gâ#æ 9§C+öJüJp~áEϹw$WïÙ6:8þûYûd7§Éåù5Í¸OGˆž+ÖR¦î0F!sUwi¢Î2Èv\:@Æ¡þ‘GÉð3cĸᚦ3Ãæã åQÛ.g9›Ðøjᜃàh*&ˆ.Å(ÖeRÈbþ?R“¾‡mq‡Á ¼_ÅFèèýO·ðò#NÂ"á2H%ZÈ…‹Z_zñîÐ[X áX*)òüãX> †Ýƒ÷Mƒ¹ØÓr낈±p»~µѶ¹(<Ï«BF.¶tŒ‹2É!¡Ì3¨ã38
+Žß‘öÎ͆Aq{ê6ÓÊÛñß0qg½`xÙ¢¢úgƒO¬£{	ya
+¥o½³ÓøF扂dôá}`¨¥ÖíÑ{´JÒLÏ„²CðO…[ä³áãÈ&9(ç%¿X<HMü€µþ¨0$EÁ‰Ž3¨ð«‹ôÅ¢5–’E`Re}q<¶ ¶TÛ¸x‹‡O¤Émœ]›=
+ÙÀÏ}LMš8Ó‚5]H5ƒ~  T) Ÿ–E™X#˜÷—:þ•‚ºŽ
Õfw¼Ùããkîîå”2‘yùUí3ÿߧÿ¦ÀŸpÜøL´Q*….çVáYAñBA\‚¦7:À>¡•ì†[
+ù?d7°«L¼%»U®Ï •K°O?õ[72Ïj2ÉçµÉ±á:úÔÕŒ¸Ïaî)<À>×ÓM–¤å"áŒÈPd
+ˉ-ˆúIÇwžá‹³
žêf<¶¢ÖóÊó	îÝ®Ùdx^”#aB¥ÞW³c]&a]„2‰"%.ƒÀ`:º3ôÜFÑùMçM¬F×™ ˜Ôì	ã¸
ª« CJuÍH%•ù¶Ëö çW2-„˜åÐ:‹Ð+3Ý@}Û~¨+5`ô¿qI¨¸ŠÄ”¯@ÛUØÑo”ûv—¼&©%÷Xº„%™òE°ÅT—Ù"×/dnb0WÐ%‰oEÂñH)†¢û§€°EÏ|
õ&´î)t§ ËÒb	yKÖ"r	þ
ñéxÓŽYåf¥dtÏìeg{òÄ”ˆqìÞÆdt.I$Ü=¾áÖžIºÃ:”Œ«tè˜ÁÑòi ”$Ò«{Ýs5òÄ"lùðóäçˆëº9Â)2¤i‰)ÃcÀ%ÄŽq<ÆåŦìfb&
+•ši'#<,ÍÅ$¼êh®ÞŽ§Ï(	/¶Øøyßc–5ázÆeHmûÌK<b•HÊQÊ@oV‰¥’I_õ‡ckŸö_ÀqòÍ^ʁžÄQp÷äCPû0ñÌϧqf£Ûxþ¸¼7CMoÍ|?'OCGP†Þˆ<1fÙp(a¤*]@íž,húÓ€ãu>œŸü³:|›S‡ŒrÇ}fفß1xøï:È6¦kçã.4ÝÏ7‹gXþHÞj=ýä(ÇŠQÄNv¯\-éþvé®0£wWèù^pOÉðüˆ	NzÕÕ³øfpwWàý
+Òsq'xïó7‘5ݾêkËÀõyùÊϵài†Á"cv‚ÇÙ7ü¥ÁQ¿Ë3—õÁ<ŽÙÌ!öþ¯‰â”ÑσqløbNߟÜÀËàKP Àc!Í"bkâ“Û3ÿ[žp3“oDê5Õ6žj?]kÇò-dM…sÍ1iy¦iÍ÷xâ<"(¨FžzÍkìî=w÷õæ¤^"Ò8°¿ ÒkjRôA¦«CBáì™oôßoC€ÐFñ¾ qλ¾+®l™6î«”ãí4p¨Èû+Ÿ^¸ì@Øì‹´­|=Z¯¬
+}øN
+0ôÒ˜MM{¨pžïÚ_ø»>}΁ŠO¥ûˆ“ÊO΢SõQÙðz×Ìàq7г¤K/`%.dîn*nü²É}Ž¼¶lÝV']‡¶1äA›7K
+eŸŽs‹å©EæÊwðg¾bgÅ¢JeV^¯R(¨$Ÿiÿºcz{‘äUñi1¸NWŠAhŸŠë=ƒCªô%z–+õ¸ÑZ1žK=Èã…‚û þ¤$÷¯±³–|ÍÑ VšÃ¢X–IQ´@d8÷î›Ûw¿ÞÛendstream
+endobj
+350 0 obj <<
+/Type /Page
+/Contents 351 0 R
+/Resources 349 0 R
+/MediaBox [0 0 612 792]
+/Parent 338 0 R
+>> endobj
+352 0 obj <<
+/D [350 0 R /XYZ 110.854 691.108 null]
+>> endobj
+62 0 obj <<
+/D [350 0 R /XYZ 110.854 666.202 null]
+>> endobj
+66 0 obj <<
+/D [350 0 R /XYZ 110.854 486.621 null]
+>> endobj
+70 0 obj <<
+/D [350 0 R /XYZ 110.854 319.973 null]
+>> endobj
+349 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R /F34 290 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+355 0 obj <<
+/Length 1896      
+/Filter /FlateDecode
+>>
+stream
+xÚÕXKÛ6¾çW,r’˜)J¢öÖmÑ"@doM²-ÛêÊ’!Éëu~}çEÛZs±Úr‘†ïy~3äLJwßý”$wZ«"MïÖ@e*ó»,µÊØüîaõGt_Ît´áSõ³?~…%öj‰•Óö.¦¹Çzµ©Fž¥‹«YIªœ32ë÷™É£r‰ßÇÙ<1YTü/×#B中˜à=•}Íí<ÏTVdwscU\·dt
Ÿ®¯BìfªÈ²ÿˆÝÅlÕºf:Ÿì<åÙ嬞3æyì–+ø<8N¬Ê2ÏK`VÇÊæ¹LøT•3ã¢'ä6$’¨8Nþénûú¹jX´a6×Ñ}a)2Ö-<óoU÷Õ'¡«Ô–}ÍC»â586ÕQаΩ¸
++éô-*éô?+I¼¿žÉù«ç·bõM¹~®@KGaêÈ>p…q6q…JcýÖ!îVy¬ª|âOcšiƒòëT+“Oä"ÿ雕ÿô/äGÑÛ%úOׇÑ/5^pÀ,! àƒ…xµ¹Jm*>ïïȁë5ði\·5aã–›8ÇEÈ5ÈCÎLÝÝšÿ¤FSÄ!¹³ãÿaÁ5®ï™‘ð„®¯Û
O­1H> ǐb•¥ m•µ¬€dÖbõ\î9š* Â,Qyâãü¾E‹t`ŒJRo¯óÆg8ìE-¨ìkt­È=Ë®o«^ìh€	«äí¨S8 Ò€z“(X¯ØR=ÐYymX- [tqìK£MÕíÈûwìʶÜ\¥ë‰01ø‹Q:c¼ IxãzuiÀ¦¼£1†v„¾
æfl/ûª«g—Ü7âŒESÍ‘½¦~ÄБÍBÛjƒpàlnc}îd©üq‡¾'{oªÉæ—tŠSÉà#øÕ)Û‰³(ØØÑn¬¶zÍÜ&98vÈ"Ü[Ñ lì†
®‡½NQŸyäXZ(ØÛ
+`Ð	/XÝ—¸_	š®ú»0NðjìÈ>®§tžLœ¼¤„‘çà\Ía×2MAwØáWÊ“ž¾Äi<ŒtâHa„ëœ‡¨¯UßÁ
¶ICÏ ¢&wQ=ðŒ®­˜x¤¼y:zƒö+žHÀÛ³8UÆæïbSåã)„<¡šjW“Z21)牼¬oîgpâ(øÌ™ºÀ“ŠÉvWa‰&Ž[Ä]œQ~qen-«¦A‡Õ:úÅÏ(yÅà39áÙIؾ–tÙɉ`êºeÕcÒGnf¼'TEu²í궜Ôèøÿ¢Û¾¿ÐÕ
ó‰%êJÅ?dìøžÀçN¢§Å„A†—ԐÀ>·\Qê9ô<DÇÃôs¤Z%ú	j[ñ{æðÊçPÅFÙW~M‹Û}×4ÕJÜÿ–ë…èÎ86ü­ÃAoMò"tu4§jëˆY²kñ¦@Žqè_çªp>´Q§·'¤šÌÞž´Ä“š³Jw)túÍëç™dL^@É€.h¼:@¶n`@„$	€®ó	..»ÝŽ*P©–ÄŠŲv¹ø0ãÀ¹æš»ª7[2÷áfk&K^z iF,$+99æ	gŸ€.-,PóVÞõ9PÈ>Í„¯kägó÷ÕP=SÐsCÙ6¤Y+iöbáK¬-XG !s-¦Œ®×3*³õ}C†™
wƦb¸*–dA襒¤Ÿ‚…0v/Ë–‰…_K½×<V+ÙŸ¯Í4©™€µkyì©.™x%Fl¢²ÄßœxwŽ	ôÚ>ä s¿fRp‰Ÿ‚›f:7å9 ì’BšÃ¨¡v÷¡\kŠ/1_qŒR̼ŒÑI]›å*ËõôV% æ^òpœFOes© ( |,.§êpÍžç—lĹÑ]ßóA-&VÚMëPŠ·B2SR$g搦 „¿8/7 #ĺÞ'VX°è˜DÄ¡Õ¼¥¨6ÛIƒ0özôåª.xÌm|¡ú=‚ f{| úSþœ¤`Ùz%}¥tŒ8p§ JúdÈW„x×Œ]¿"}Ë´KÚxš¥¾Ð\<ÔrIcûþr·8'êÀ¢q[Ž¹†mwh(/&—ÈJ ú
+ð—¤/Wq‹¾tIÈ	‹G%j¨j„rÐù„0>¢ãÃÔ_ztèÅÉÊhï`ˆõ‰~ÛËõo` ÅWL-¼>Œ%½5
Ó(¡)##H(wcé¶#¾èþI °Û7PÆ¡uB‘š*—B-
+™J['yóÛ–ÞÝÞzvÛ㍳ê×.éùõå|K2I£úpõÜ2ixúøAžOüòÙ¹J	¬RçE|󬲠´âF^jèúÀ!¬8<-I̦]ÃŒƒë‚Ìû(o‹T
u_´A~=;b~ο“—ˆW‹J=yX`ñ¦XîßzYÔãÎÏš¾‹:eò$ø€hR
¾´å¤ÌÛðu¹ó¯ÃÞßùL0æV0©WãDÙíQ(çØÙtŽCï~|x÷7ð§¬Eendstream
+endobj
+354 0 obj <<
+/Type /Page
+/Contents 355 0 R
+/Resources 353 0 R
+/MediaBox [0 0 612 792]
+/Parent 338 0 R
+>> endobj
+356 0 obj <<
+/D [354 0 R /XYZ 110.854 691.108 null]
+>> endobj
+74 0 obj <<
+/D [354 0 R /XYZ 110.854 476.33 null]
+>> endobj
+78 0 obj <<
+/D [354 0 R /XYZ 110.854 304.096 null]
+>> endobj
+353 0 obj <<
+/Font << /F33 248 0 R /F34 290 0 R /F19 220 0 R /F23 223 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+359 0 obj <<
+/Length 1673      
+/Filter /FlateDecode
+>>
+stream
+xÚÕXKÛ6¾çWìQ.b–õÌ­6‡ 
+Ô@M²DÛìÊ’!Ñûȯï<HYÚU»¹ö"S䐜ùf曑Ý}øù³ÖwJ‰2Mïve"—ù]–&"Nò»]óg´ï7*x˜á	ž‡î´ùk÷v'³Ý¹ižÜIÚöd› ¤Ê™VBy‘ýfçQ?4f€#Ÿ6[<ÜÁð´ÙjX±þfÑÅ>›vôÎÕÝ*‹®ÜƉHdI§ÖWÔw„G?¬(™(‘Å™× ¾c—wÕÙ¬(›Á±eP÷ã@Ÿ2ã
ÒÈÖˆMÇ/‰Çd„:ãüuDëïç[Åf›é2ú…çZ;úÓûÿ^ "¢C]Ï}KÞm‹|”‚ñ \’‘j¨þÈ`Ùq	+›4*4ÖVþ¬×ޏS¡Á~6÷§õFy†h\Á')E¬˜bÕCe.Jˆ$öPA‚Œ”Çq p:x4+¾ÊR‘ÄqðÕ&•Qߧ.ôˆ‘¦AñÏ›"ß›#jÝ_»†¨i¯ZW³Ô¢,Ô"Žì„«#ÆýŠj:YT³çê¸>Z‹<hõû©w½wÑýy4ÞA~–³Á;«±ã¥­6 /œõ6ô¯
+Yv4nÕ¤¬I/€ÿScÄà´‡—µÜ(„ŒC?VíuÕ()ÊL{¡/×ÑÙoR%uå¬O†D¥Äøë>ýg$
ž¶åh[A¶Ñ¿•lÃÚ¶ã9aZçÑÙo™„@+"¿¡5÷‘s$MŠ–9R›7:3|ô`ü;Ø#q.®"k‘¨%’ô`ó¼‚!†b`Œ9q½&Á²Ì½Ôý³*Ïttlc»#¿WË^¸}Íz H‘Ê|Ó|þËÿGmF›¸¢µ¸õ°¶™(Šw¢6.E¡‚Ð=D¬&-j$]U%
<ð5‰Jžñsó€j‡:úͧ納â_„ÃŽtACÁ&£ñÚ=P&w4¡"P!E9çߏM`-â"[ðØ·¶y»Ìq^gÐà‘îx?Š9ˆ-‚Û¹5\Áõƒ5Ã,ïÖ
+¥R†B°#Ë|:‹¼ Ú¹IÐ2V:âC6ãñ7™Ê+âHÁ²Mâà)Ø5ÖC߶ûŠª=H+/üB0æ¹P¹ö0¦³®ÃGä‰<m¿÷Ì
ÈøíaFtp¶Æ›Ú…–JöB{èkn ÞœBùéäªcÝ{I'—Ê)¦Eª˜íl»ÐP;u2¡áÖä–ŒÙ
lLغ6ç;‡IâÀUsó²^7•ˆ³e²:4úÙ½Ã1£.Vk¦Lô"’ˆµ}ÑÞM³¢Éy/¯åŸÌGÝܼÿªÐɦzáPnRж˜¨3ëUåÔty^/ ùTe½…ÒKӐò~]X«Ñ¦EzU;¢%\0HPȪ燳n|†zS‰—….LÏ€~“ñÌ#åBÙìåÆ—Õè~¨nT4Œ·´C´®Àjq.t™û2R/­ù´âà@5uȘH=úá@%›šS°)…FÀAÄÑà¶ÊJ> ÌÐcσ•ˆ÷¨Îd¾3†;sècÙõ9zrY—¢ßâÕ	À½qtÿ¸Ñ°³Ã'‘'à”®ápX‹e	–fÀãIp5²m
+¤;ÄéiC(ÂDÊcÆØv³”_$GàD‡˜sï…TLÉÀÊíxΰ&z£T^;N´Ð2 M6gꀻf­ñOE>µ¿“Èò@Ì¡Pq÷–½°R˜¡‘–Åô	±Md}õµÐ¾jŠX«eTž,çìÉ2L)èx¦Âh7Í¡º¶Ž_–pÐáÿr᪠dšJ	½ÆÃì Ë`Æ‘š”ß_ë»ÑK6=ÐMW¾ÅAVIñƒ¸n½ôÜPÛYª&ÃÑw_­;ùDçî!Ž*~?\»š*4ÓFå3–/üÝÕܸ¡¿
Oü
©nÐá¾WÐ1¿Ì óÊí¨îX5<ÄRåÃ\˜Ù„ú*=é‹VPë_9^x²mË£[¹†ü­«¶¥o!!`ôÝ=¸‹ÓL÷~Ï…yól|ç_ D„^ïÎ÷­aïòÔùVó‰ösû3™âקŠÂ_(sê±äaå¹^®a–}Xba"ÜaêRQI*óŒÇ£Ð3_’žà‹Äßc÷KK¨ÂWÞ·ˆùÕ<Óµ@Çó¿øHÏò‡[	µy¯üKƒÏm^¬
+ø…Pߦ94â|½*péÃýîÃ?ZŸäendstream
+endobj
+358 0 obj <<
+/Type /Page
+/Contents 359 0 R
+/Resources 357 0 R
+/MediaBox [0 0 612 792]
+/Parent 338 0 R
+>> endobj
+360 0 obj <<
+/D [358 0 R /XYZ 110.854 691.108 null]
+>> endobj
+82 0 obj <<
+/D [358 0 R /XYZ 110.854 265.455 null]
+>> endobj
+357 0 obj <<
+/Font << /F33 248 0 R /F34 290 0 R /F19 220 0 R /F23 223 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+363 0 obj <<
+/Length 2238      
+/Filter /FlateDecode
+>>
+stream
+xÚÍYËŽëÆÝë+´\ÑlvóuwŽ6²	2@¶”Ä‘ˆ¡(…¤®nþ>uªº)R£ÇÄ—Œ†ý,VWSUM©y@j®T৑™Ç±ñÓ ™¯÷³ÿÌ~ù-˜ofÁüçYàë,Ÿ©ø*Ëæû™	"ߘÐö«Ù¿fÿœ)+l)ƒKehI|W/
+H–´ìê+QP,Ž¢ù2Žhc¬ ío/³ï~T´CùM½¼R+öSÎãÈøqFC›_¼s¹ÙÝâ·—Ÿgéª4õcÚ;÷
ÊYaO”ËŒŸdñH¹¼Y(o{Úõ"L¼wZ†&óƒÐL£¥öXË0Šü0P#-7E»^,•eËcWêkE#2|%Ó(
+L…F?ØöMÈ;~–é?#’µö#òÇc$ë„™²V§®;ê»`¾HœÌõs`è·¼ß)ôºÀ÷‘^=|z­óª*6‹¥cï¼+€äZzzh\LKÝÄ+[fÔWåä|[„©Gbî!Š3N‰ü?³ŠÀ‘>l¨ý@1=,·+Ä€Ëç îÅOßGº:øtý²ˆ"/¯NÅ]O ÝÅ´ëA<Ю)Ž‹%YñÐt»dHo2P»ò1À œÖw;. O¼õÜ@û}€Opú?ßaê§YøQ½ìê{øŽÒŒ6>Áwú*ÎØ+UÙv+ñÌøõ°/r¿AIì‡J:`”l‹Š]»¦Ì}‹}“S(Ùãû‘’=¾JæH£aP¨ÚIïðŠ§±0¦Ž²î8˜S¯¬7嚏ÖÊÀ¯AÐ	é½ó+‘¨i;šU2‚_à±¢5¸L b¥ÞéÓB¯òàå^NÉË¿—CSXxÄ¡lB©©8ӲNJ‘XtRz.îòÆÉš‚6ô²¬êõ4L Û…-÷usdê6Âï2Œ”@A*@ ÅSq^o	Ê‚ÑO4S‰“ÓHUYÜòÚsÙí¬T›cЮyÉù]îZª‡ý·[êϏzM7çg°'wSØK¾ó}({ô²§ Á#EŠ>çÁÚ]ˆð@»ž	íÆL ¯РōÇè>ñHì!û½JÓ!íw®à`VXö yn‘|0·ÂØGtˆÇÙ£/w9‰|ººr8>qçPã¤ÒÝ	×íúIB™Àö“RË}@bGugt;SI27YÊB`¶—EªØ]«ÊÖ¬!u>“±uìýPa†íØÖD¦àDéäöÂvØïÙM>R»9Hå\PåÌ.ã•ÃU䓲‘a|êhäG£÷c¨QÌj8÷•€ûšF¨Š (Jø3>‰R²XëØOb²“Ü„€„ýžþåõFL²´«—aH5QÂ{þ-8ëáÚ¿£ßFTˆcóÁw˜ØíÒcƒµG.j
+ ÍÙoËñˆ¼×S½æ=Òƒñ±©‘EB‡MURNêÈíMÁ˱äTu2šÚ©F«sÛøŽ22*T¹–Yì‡tÄ!Åä›pÊ`µ4„¿ ѳµNç+|‰
+°Øø&{ÁЮ|¸}s°äCG"Öt7ƉŸigÚÏkÚz€ö$Ú’÷ÊQH,qÐ(벃¥š­¼„ËV¼ìžÓ	©Ÿ¤éÈ&q>µä•ùz]´íÀ£:¸znWðv9Ñ–Ì4)Å45ºÝÁQ±ë
gÝÝx[IäÌ´§ãð2ËBožÓêü3ñ“ð&È;€ìO3/o
+i*|Wa¸¬åÉFfHç‹ÃÈžì­‚:Y jU§}-]Ü[+‚×g½=>	ªEÏwyÃèÀÚv}@xBÿ¼“Æ]!U³=íÊB¦V&{!Ì¿@¼vd*c®´‹yÛr:£6œ_¾Ê|^;NŠÿÝ[k»¶Ožü²q ¿ª9©¥½m)ÔÇkr2®øs2áUFn|gæñ|pÿ¢Cu2zù”‡žœ¶°ÔyˆC•…œìi­`>ËÊíÚé®ÒúÕ§úáB¹Uc/*kÿFæ8gÄáûœ>Ë«RŒþ±lñ=
+úÀÛ3£él©:j=ÜáÓ¢AYòX9ø|EyŸI[ÜäL‡¥BšÞta¬äÆPËôj4јâë9&¿”¹r'iù±~zڐ¸¢\èrYÉÑýžl7Ž’7µN¼²“§D/j䵋:eFÂt¯ÎŠ¡w9«•qg´/yƒäox-BC]àŠ¥
‚›Ø‹/9«mÅyâB„úT.:µo °:/¸Ò–¸Ö™2”D-ÛÅ~<ޏ´™…hóZï‹Ž/FxUßÊg¡K+kp²(”ü>uå­)D'viÛ5§5®rAx?uV±Sëʁ­ÕFâîçoW*¡šÓ¹qiŬê£ÌRGˆT‚ÍèéÝQ˜±zÛÞ+"dù‘ŸkÝ„ªÑœRx"µiD€Òs¢¤–ßÔ-BË$EY’òÓ21OFUäÊV²Tú|͉qÅ­Ó.INá6ŠS'ý™7PÞ*ÍhQVP®PÆZwŽ¹
+}*F¨Áüöc.±³{»±5öU¾ÛY‰=•÷Wl‰Ü6<Öœ‚aã¼½Èãªç
»–ì´–+	NCVá¿À\}ášž5¸øbN|â÷g€=ga4€²²ûÍTLP\|·×€
+¿ÉfÑ}¬ÂõÝÛ^d”1~¤?ðû¡¢Û©A”zx-ˆãkQB†ÏÃÀ	r*•ËQ6D^:ÏüŒâ$ÊßÄ"’ãýÀ×ĦðTQd3Æ&
+®Â:ݘßÁg˜GÄÀ³bè0€érÍõó D‚'!ìé¢0ìÖNÚEg®Â…¼¼QˆH2íýTË C½;ÙÜ…‘¦¨Š\j¡Vœ«Pfƒö–=(ñ.Z6\b¥8Õšë<ö‡ÆÅ_ãý£¤‹Ë Úiê²h_nwÖXX4ð†"™5‚òüqŸY>³hå'‘¸He\ÿþ•Óendstream
+endobj
+362 0 obj <<
+/Type /Page
+/Contents 363 0 R
+/Resources 361 0 R
+/MediaBox [0 0 612 792]
+/Parent 378 0 R
+/Annots [ 366 0 R 367 0 R ]
+>> endobj
+366 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [302.861 395.168 310.706 407.788]
+/Subtype /Link
+/A << /S /GoTo /D (table.2) >>
+>> endobj
+367 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.201 251.333 251.925 265.457]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.1) >>
+>> endobj
+364 0 obj <<
+/D [362 0 R /XYZ 110.854 691.108 null]
+>> endobj
+365 0 obj <<
+/D [362 0 R /XYZ 183.676 512.644 null]
+>> endobj
+86 0 obj <<
+/D [362 0 R /XYZ 110.854 475.949 null]
+>> endobj
+90 0 obj <<
+/D [362 0 R /XYZ 110.854 336.098 null]
+>> endobj
+374 0 obj <<
+/D [362 0 R /XYZ 128.787 145.529 null]
+>> endobj
+361 0 obj <<
+/Font << /F19 220 0 R /F23 223 0 R /F33 248 0 R /F25 370 0 R /F7 373 0 R /F8 377 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+381 0 obj <<
+/Length 408       
+/Filter /FlateDecode
+>>
+stream
+xÚíU±nÂ0Ýù
+‹)ÙøÛ€T1 •¡R¥ªÊÖvÄ´‘B ¥íß÷Ά’‚m·.O>;w÷ÞùYÇ­Þ$Š€jÍâ9€bF+ª>‹Ó‡àQj9í@i‡kÐÁ—	Å›dM;*hcp5Fx-KÄ%Þ­,âzÀa„Øî<Å7,2b!ã „R¦ê‘SÍÂ4M|MÚÅØnJÀ¥C("5Ò©‹¥ÖsO1%o…é¨ª!é¤ÈÑMJB¾târOÄË%(—òµ‘4ŠðÞT© ÆüÝŸÔ¤¸äŽU•X«AéK“,9‡âvË/y O(ëþ©îå¤üVméhrJèÁîõvoÉ=6!»Y¢µµ›+±UžÓé‚ê×ýå‰W¼BÀ›…æÍ’›ìÌUYÑr_ Ãð¹XzûÎó¤åN;VE–›Þ1šgNï–:•Ùnz£¿|—$èÅîßaMe•¥68ã9nU9æRôÍÿk¼ä5~óÞ†µÿ‚A»¡Û"
+P¡Jú®u·>œÐvendstream
+endobj
+380 0 obj <<
+/Type /Page
+/Contents 381 0 R
+/Resources 379 0 R
+/MediaBox [0 0 612 792]
+/Parent 378 0 R
+>> endobj
+382 0 obj <<
+/D [380 0 R /XYZ 110.854 691.108 null]
+>> endobj
+379 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+385 0 obj <<
+/Length 190       
+/Filter /FlateDecode
+>>
+stream
+xÚ5N;Â0Þû+2&CbïÚkÓU° sÀAª‰6PLÑ¿o:Ýã{nMµ±aÐ+bæÆ j¥©eµ
+Ûž{â$$ ?zÜÞÝGgsØŒ0D…(kk&±S¨)«ö!ìybÏ>”#¸k4Ë?ÿÌ„Ž¯³+à$Pó· â“_¦Ëâ
+þñ)3ü9À_?`I®Ḁ̊Ŗ÷ôø-Ö…œöJi!£»³*g µjcyIVõ0äÆ	«v¦úð©DCendstream
+endobj
+384 0 obj <<
+/Type /Page
+/Contents 385 0 R
+/Resources 383 0 R
+/MediaBox [0 0 612 792]
+/Parent 378 0 R
+>> endobj
+386 0 obj <<
+/D [384 0 R /XYZ 110.854 691.108 null]
+>> endobj
+94 0 obj <<
+/D [384 0 R /XYZ 110.854 666.202 null]
+>> endobj
+383 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+389 0 obj <<
+/Length 1143      
+/Filter /FlateDecode
+>>
+stream
+xÚ•VËrÛ:Ýç+¼‹Ü©‘z{Ù™vѵw·]Èm©‘%DÅÉß_<HYŠ•I»±) €ƒ€ßvO?T°’¡Âxµ;®¤ôE…«8
+…
+“Õ®øÏ‹ÄZzr½‘REÞ7XÆÀoÛ¬ï~>ýh‰,ŠPß_m”2fÍ]©×›P*ïÚ^JuÝ®Uâ]«æ„'Ò{ÆOývÅ¿¶‰‚5òî„–Î5›µJ=Ó»{iŽ»/ë(„•ôª:ß×ÎÜD‹C§sôÕš†ÿ«¦7¨ÕH% 玆 x„ˆ„`0„@ÅÞ¢†iMš®¶…›‡¶ùåːÜîÈ îV†Q
+‚	J` R`ÆÏÈL~ 5SÁÏ‹ÞÃ/}?Ÿv`k÷`K_‰ .öéŠ=è€?Ï }ê0œÁ¹È±Ñr'?˜êÔ|€!XÎnœö7½ó÷ˆN¢§úS‘¤©õ€ÓV×’£a˜„5úÚñgè»› »¸u­Š“&FÀÇ/?ò¯¥nø‹BÄŹzM)ݤ¾’x–ØÃÐõ.uUï€"F¡{2âÅÁ’\‚HX5G¨A¯KÆæ‹Ð‡ú²Hô—õ†Cêø†_6•d~]š3Dˆ)äc›T0úÕ<!ËÏ9jÕŠŽ
+äÚð'ÊÛ%V„»œãú
+)ßÙ؃öÈvÜmÃ0ÊX¤*Á¸½2tÛžqÚZ>mÉ׫ÝìG©ñX–[SZÁ›V⺇¨s"š+§1¦½ð¢ÖGÃòâN£»O3”Ù‚ÁMë…ÚÏ}®âH„J}Zfd¿vœj3Bš³-¹hÍLI´Ç
+3gl—%Iáû‘uŒ
…
+”Ì9¿ðÚ´ü_Tý¥&>¼áFàè@2¬ܸ ÃàvSMXUqµ€8Â/`Þ[a½˜hà]L DDY0#P{¡Ý6¶¹-£vI]åñÖ ҏ†Þ@¡<þe-î‰zØ]Ñ.s÷ˆ&RD‰ë¨€‡#fëú§-\ï©jyhQäÝm:ئ6o!(cI`)[فr©^uÝ/Ecšò–xv&R,¶Ù0Y».;4Ð:Ýà":à¬ÊëÚ:E}ó}h8CÞγc4Grk¡úU£‹¥X¬cÓÌp,cùÑ+b/”®ÿ°“BãPáž¿	2éqSm+nšÔÐ3IQ¶¼œ;“cMdê¬ç…K’Øqö¹ÇG],;‘—׃“ïY>ï,j RW=âCû•k¬©ïæÓPù—;ÀDÈú4ÔfÌ;JçøZxzkjgóé=j¦v^ã‰YÈ€JE$Ç©î†Ôo‘7ô†ž“pŽ?À³åvãÞ”––pKHwîÚ¸>ïîrùQÂï:÷(ùè-õ±[öîiJt©B¥Y~¤Ò=J]Ê	œÿfÜ^5¥ÄìŸJ~P°’&>6)l;Ð¨
+ØŒeùŽ.‹ò†viæ6ˆCß/=S%"ìQ$ü0¤Û”BÁ‡ï»‡ÿó’5ýendstream
+endobj
+388 0 obj <<
+/Type /Page
+/Contents 389 0 R
+/Resources 387 0 R
+/MediaBox [0 0 612 792]
+/Parent 378 0 R
+>> endobj
+390 0 obj <<
+/D [388 0 R /XYZ 110.854 691.108 null]
+>> endobj
+98 0 obj <<
+/D [388 0 R /XYZ 110.854 666.202 null]
+>> endobj
+387 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+393 0 obj <<
+/Length 646       
+/Filter /FlateDecode
+>>
+stream
+xÚÍU;sã îý+ÔYš±‰@ïöf.ÅÕî.WlGÒHȏ»€Ù!3)Óûø¾o—õ¯Ýêá1IJI•eÁ®]NŠ¸ò,%,-‚øª·ˆ†|?2ú·ûóðH«…G’‘2.ƒØ˜êƒŒ¶)càãà+	u‡+
…£-
û#X^­i×ÚõÝ÷¬Ä^ê
|¤ùÇ©×ÏpåO1MdÚ¦…döê9bÅlŽwC"ØRF’*‡5%Ç ïz4P]QðZsølkpèدí¹9Îæeµj®k+͍˜[–”2X!G\™/8&OsõÈ™æ¤Ês'§‰
ÔÒškÕaV›·Ý}BÉ‹¶»®u'óÕå QQíÃé’Zœ¥Õâ„ÖHzGD+MÎπ󌀴0Ø*Ù|
ò9ÚâÍ ä°qز½3zë¦QÚ35:JXƒ -É®[|¬²¥ú=–N\<4XI2êXô\Õî1~ò‰Ls½?d††|oF¸Â«¾8÷¤§M½ß¼þ\˜•«68zù:#IIÓov†-£{x®M°ùÄ\ð§8‹®F)\ç˜q0µ¯¦+ڍõ” ¯½tŸÈ„±ÑÀîd$€PÔû,àe%ŸÆÈæ-pS öIg‰’´f
øŒøñÆÞF63€ëyªÞÝjì€Wóæº;zÎ*Â
+§¯šEÆÓÌß
¼åC1ÚÕ|.?·úÝU£±šÕsÚ[lÞ%yH/ÚCdj±•ñz0ÒJvg¼¬ï&%y>O`¡®…›ob	쌳÷ØÁ1î¿JOKF23Frf½Y‚–«ß»Õæ—Ó.endstream
+endobj
+392 0 obj <<
+/Type /Page
+/Contents 393 0 R
+/Resources 391 0 R
+/MediaBox [0 0 612 792]
+/Parent 378 0 R
+>> endobj
+394 0 obj <<
+/D [392 0 R /XYZ 110.854 691.108 null]
+>> endobj
+391 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+397 0 obj <<
+/Length 1006      
+/Filter /FlateDecode
+>>
+stream
+xڍVË–›8Ý÷Wx	91±ÄÓÛ™“,²ön2d£ÓXô‘ žüýÔ‚:HUºuëV•ÿ:=}ú¢ÓÊ’4+v§óN©CRåٮȳDgåîÔþåI¬"ï•Òyô7¬k§*úiT‡øßÓ×O_ÔL“cž£“Ãn¯u¢
+6?u&ÞgJGgp
`ß÷C¬ËèfÝwTô‚¯æÇ
ƒ‡-[Ôþ/ÓÕ ¥‹uaÞ§5~ýç¬Tdûú¹Ÿ¯O´h¼©GÜäë4⧧uaD+אIJàΆ ¤dH
+„0b©.¢	B…ksd ¶JþÚò±%R¿2Ãw÷í ²Ëä­ƒ—oÚ‘)LÓ…9d!ÃáHžñ‚æí<ºšñô+ûEždZClÕ ÒµYËxÊÄ ‡3?%RLN‹Üó[ ÷r
C¬ø2
+¹E3CÂq9vK•äe&á*8´
ã9Þ/š ,‚ÉðÃ4¾$è†gèÞ‹…_Ç®^í¦[¡š5ÛM.†€¡$z˜Ðåf( t•J(­ñWëJ¢ÔÑ­3ŽW(?‚ëë0YR&(% ów,ø2íOó—Lˆ‘ó.p¼†D»Ïª¤<(‘nNˆj&!tõ+[~d6D°n͹žú™.ѳ‚Éa‹.&P=÷t‘¸ÏTdfƒ¤¬HðI²dè- ßùÌ•@à‹â½šZEQg at 6ðãRíý„Lë¬âZç=€@B¹‰Ï*ÆS at +ÖŸ›u-þÆŸ""<ÏmÊ›‹ÜÐZý
JÄ£d Ì ²j¦`ÖÀQEœ–ÁRGghž7çÄòµáµ¯ñÐþ@”Ë1ÊäQ?T-í!½±Z‘f[ÞXÓˆçž	Cw½
£‘ãÖ±ÆT•¨²¼kÔ0Eÿr÷g¢Ðàñvãa0‰ÔÜ#:c¡úˆ!nÔ©YÉKíCðf³W‰«u¶:ˍ„Eݦхš‹4K™kÜ[¦ÍÐ/™_Îÿ檑¾R?wÈC–4&nûñ/ÃósCÚ„÷h$ÍoxgK¥ÿÎmÄ/Öóh¯¤‡ßßCZ¤{5ïx~N¼óL}wÜpä
±ˆÛç÷$ãMohäm¹„»9CóËÈŒÁÊñµ
¦ý(MËdr/Ø‘Œ“FêeÚÈ«h‡½Ñ_ì\oUŝ0™ÐÌêƒþƒ¢Ç¥ݏž2)u¾„½JZ\ÉS¢ì,ýèkS»»NÂC膩—¡úsÔà¼7íæødë<Q®{üiþ\¸Fo÷Ué$/ŠÝ>Ía3áÁ§Ï§§ÿ)ù¾¤endstream
+endobj
+396 0 obj <<
+/Type /Page
+/Contents 397 0 R
+/Resources 395 0 R
+/MediaBox [0 0 612 792]
+/Parent 378 0 R
+>> endobj
+398 0 obj <<
+/D [396 0 R /XYZ 110.854 691.108 null]
+>> endobj
+102 0 obj <<
+/D [396 0 R /XYZ 110.854 666.202 null]
+>> endobj
+395 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+401 0 obj <<
+/Length 274       
+/Filter /FlateDecode
+>>
+stream
+xÚ•QËnƒ0¼ó>b©8`ü€k¤æÐ3·ª&A,£4ß]LU‚¨Ô^F³ÚÇŒÇÇ"8œÒ”$	Ë¥$EL1k¢¤`\hRÔïáhhv•k í
Àœí0Ôô£x#1‰¸`"Îý’ƒN‰`žºÙÜu%4®x²±à4âÐá”ä+/2g\Ã".´
R®C<x›ÌËOu1žßÛúlrVåà‰+¯”gá2âü¬QA]}Ë>EyÝõcî-Õ³ÚŽÏT0¥øbl¸‹W±ÍbbcqGr9±ŽèsÄÀ琻©èûò·À·óí0טq0¸xüSäñ'‘M>IÆ™T
+^™§Lr1_â'ƒ×"øûw¢ endstream
+endobj
+400 0 obj <<
+/Type /Page
+/Contents 401 0 R
+/Resources 399 0 R
+/MediaBox [0 0 612 792]
+/Parent 403 0 R
+>> endobj
+402 0 obj <<
+/D [400 0 R /XYZ 110.854 691.108 null]
+>> endobj
+399 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+406 0 obj <<
+/Length 1226      
+/Filter /FlateDecode
+>>
+stream
+xÚ­WÉrã6½û+t35Ѹë˜T搳n™(S¤Š‹eÿ}z¸Hty¦*;^¿~Ý
ý~xzù.ý\?ˆ6‡ÓFÏMÂ`…+ƒxs(þvBw+»B†ÎÐ.U¾õ…óº;=tû~êí?‡¿^¾‹ŽpÓ0ÄüÍNJWD|Ì¡TÛ] ¤s‚£ÜSUÍVÆÎM×gœ±«>nøiZXQðŽ¬=Cg¸(ÜYoeâô1‡f8ú¶
h	GWÙ±²×ÁIÔÈ[•!^sì©ù«ë®Ç]uN[|wBƒÐ '@rÀ„Mðeä䈰$8Ô|…
;ìYFj^—Õ7ílêžÈž–à¨î™>ߟÑ‚'| î÷Rº?Ëñp
?oê¿Ô=#SÍ€+^žt}8Ø£#ŽÙøÜ¢CŒÑÔíÌò^¿!³Š'%`qìÎ^Ãx“¼'‰HÕ—x}7NƒˆSHVÛÐ H€Â
+±¶Üc÷B±1ÜáâÐMgERÎ/ôn¥ª¹G&bãÒ"_ïÏõãháñ|h;ë:ÝY¢Hjx™ùâá&±F‘ô]Û’¡Q—ÌÍ#Qh˜è®Û›;ôé{Ƨd~¥Ïõ,Dò´q*.èÕ{ÿ‚ò¿dH¨ÙV´9·š»ʼž"Ûl×oÐIøÌÚL4'¾ÉÝ×L£ˆÜD&÷7¦nß1O{£§=a½™Án\5N+âÒpÛ—fá´+v
+ՁÕ	͆Ó菾¹r£R§ž×礝Zµ_z(5ƒšÇå¥G_E¡Hùe˜Ñý•ÕTsZ Ž‰iö´Ñ\3Ñ#¬¿`B¸®‰H¸ž`|Q aSɮ܆NßBw׊ôð¾•­áþ¤(ÓqvkÌ[%G,Gú ãù¬ÛÞÚV³x(vÃÔ_¨¹RænjƒÏœ¯)
SVyž”eúùß¡ë!Pž2¤Œ¶7¼
› ¹GFcᆱͨÀ‡fcó§	l)j¹š‘åÆóÙ”Ô–)×ÉjSM®ú]UÝš5Ð\·¤³‰b5Í‘›F‘ͲC
©ÓV-’Öª¬ª(Ê›÷¦au°
+¹/ ìg«h¶dJ¡ê]åC¯Š5[°¹gØ–+•1üèy1³JÛ}šI¡±¨pÎßù©p8©6š“&%ôT•
7—ÂNÅ©œÈ€ö2pi%&E¬}öURé‚×ÂHèdÕ`×w¼>k
k°¤ÒòCãÚ&ÖÄwõé(²üÛ/”3F‡˜ð™FruV”®–ÕùŽæ™ß¯0,7cÕ¶EhÒSè«–"[ò‹P§L8MÚšËÎjÍR‚07”໾ÎÞbýÑÁï6ûèøì­ô9,söW‰4ÞQöëu?¶ð—JŸË¿v¹9jîý.ùÁÀU,|L’Ù¦`ÍÝŸ|¾¸ÃîN.«ë{¥šZ#]·r“¦ÔÅ!õHc/™×4(Š³§M }RðŽ
+CÝM•
—b®Ãï¸w,k-k8ººÇð›Q]Ë9⧺†S¶®Ñ¬]ax$§Ñÿ[Ú6"L]ÚÐ×aÊôɧžþ<<ý©È‚endstream
+endobj
+405 0 obj <<
+/Type /Page
+/Contents 406 0 R
+/Resources 404 0 R
+/MediaBox [0 0 612 792]
+/Parent 403 0 R
+>> endobj
+407 0 obj <<
+/D [405 0 R /XYZ 110.854 691.108 null]
+>> endobj
+106 0 obj <<
+/D [405 0 R /XYZ 110.854 666.202 null]
+>> endobj
+404 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+410 0 obj <<
+/Length 623       
+/Filter /FlateDecode
+>>
+stream
+xÚÍU;“Û îý+TJ3gNÈèÕf&W¤v—KÁd““‘GB~üûìJdÏ\™†A°ì~ß·}Û®^ß6›ˆRRçy´m`W2-£"g$ce´?c¥ËŽX»üÚþˆÒh1ÂÒÚZþáf@ÕÜðþõÖ3ï¬ uQÀ#g<õžR^Uot²ÞdeŒÛÆmÍA⦈¼·ë´?™®.ɉ=¼’Æżc´öAÎʆ4d‹¼d ãŒÎ°ðyÉ;ï¥9sXÚQ†|às‰zÙ¢,Ò’{T¦È	Ë2¯Ø*Ù<Wã#YãM/dÿâE8H½0:vã Ý™¼v	|œ“¬BHsËø
+†åóÈæ¬OHX\4²ŠäÔ³8q!”Þ£ÿ<æ=µð(ÿæS¨áÔrÄtCtRÓì Ú$@¶ƒ8]è¹øæíÿ…Yùlcùü+ÃeϤ¤¢ì‹•áÒ8¸S_&X|bJø{š§=Wƒ¾rD:êO[úŽ앀W{é?‘㼁ÝÙJ ®h°ßày&K—ÙáðhÝyl¨¹%JräH µì˜±ó(Ô˜ß}Únë0â8¤Ík’•^Y5I‰\lj9~-ZĪ¶ãSâ¹Sn‘‡Æ©µ›ÂÞ+äâÎÉDz5"£¾xÝÛÑ!¶võxÍ?ÚI‘%Ù
¡´òl5?z¤]³¨às’cà°gþý¶Tð·COÍÔ
+n[Á‚EÂaš+qA¹y$±a¤(¦1	~Íá	‹ç1½‹¹|dËO¶òPîý³ð´ÊHŽÿÊj˜}œ•h¸ú¾]ýÉÒÖýendstream
+endobj
+409 0 obj <<
+/Type /Page
+/Contents 410 0 R
+/Resources 408 0 R
+/MediaBox [0 0 612 792]
+/Parent 403 0 R
+>> endobj
+411 0 obj <<
+/D [409 0 R /XYZ 110.854 691.108 null]
+>> endobj
+408 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+414 0 obj <<
+/Length 870       
+/Filter /FlateDecode
+>>
+stream
+xÚ•VËv›0Ýç+¼„œ˜X ^Ûž“,ºö®éƒ°I°ðAÇßyÛJšn@Œ43wî<ďõÝãs-„"™,ÖõBˆUÅr‘Ä2eºXW¿¼8ð…'ý¥aì=i?Þ ’$ÞÉÿ½þùø,rÐò8F«Å2‘°öz§ü¥¡WãùÛ¶óÃÔ;6z‹;Â{ÃOu:â«ëáDÅE¿…q¯PSûaæ
fÚ±F”¾û±„•ðš¶Ø´“;°D‹²Wâµî@Gó»Ñf at -]’JDàjC N$r!B&ÞHbQ¡+^?\”~Y	IÐ{rŠÒf`¦¢hÆT\GÀV¤ID®6¨|ƒÇ¶G8£&:nINâ@†! e­¹›«ªÀ á´®æ·
sP!NŠËpiÝ,Cˆ\²34ÙW¨Ö‘W\;ÆTq*-Fp‡Ü06þòœzÂbñ"}7NŸópÄ3äw«˯fS‡æCµÆŠEá0Ûåˆ<À÷-~	Ynñï»Ñ û\x†.á5Lüõ¼‰ß/«ÆڝX€Ìi{ŒbÉëÐÞË*^è\ÖmSñÆ_ÉHç
‹‹ž
 ¹¶1ƒ²Ç óRdHÓ‹’¾/ÇÞP"Í=¸. ,¡M.«P1ˆ û"ÜÀ£°õŠ#¡ºšzhV57š5±®¾ÒdŸêv„uÀT©%µ4z«SÓÆàÈi˜±°)­;›A®®ŽßÄ »êR~™MÜPVuÊ«-‡yw)g[1Š9?„ØÒñýƇ¡£¶—MRvmçÛJíHûd
Ïdî0uÛ":Û¡%90¹Ù¹8·ypªÂsÇ]U‰óü@R*2ãðÔ _FQ•pQ¼¯KëZÉN |ÑgEœ9pΉb¬æ¡ÙS~íÇV&ï^ýÃòÕtu}ŸæƒàQ¿ßŸûJ…Mžk×µ-“ O[X¯£¼ÆÊbhfå=¯§iÏú@»5
8g¹Y§s¨	
+Œ¨ÓX(§o̘è¯f‹‰Sµ+@øµÓuÔ«¶QõçAq‡˜‹û‰î=eï&Ò}ÑU=°€fƨßð÷@éÖìí-e?m»°5úsÁ?Ÿi Øһ/²,# a†[wOë»?öju*endstream
+endobj
+413 0 obj <<
+/Type /Page
+/Contents 414 0 R
+/Resources 412 0 R
+/MediaBox [0 0 612 792]
+/Parent 403 0 R
+>> endobj
+415 0 obj <<
+/D [413 0 R /XYZ 110.854 691.108 null]
+>> endobj
+110 0 obj <<
+/D [413 0 R /XYZ 110.854 666.202 null]
+>> endobj
+412 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+418 0 obj <<
+/Length 300       
+/Filter /FlateDecode
+>>
+stream
+xÚ…Q±nƒ0Ýù
+ ¼Fj†ÎlUL@,Sòù½‹IK¨¥.OÏpïîÞ»céNIB☊,#eŒÓ<Ê	ÏRÊÒœ”õ»?© ö{„Ê|Ê
+àr¾ê`¬ƒòD$d)M#ái,¯âÒ!5 í“°ø#lBõß´/®v8G"(‡ÎH´‚Í®æ	‹§Xl2Ée9QÐ5A˜°Üdž×Y½ü¾ZeùÒÕges¿’£%F^Vøk‰±µ†!¼«ÇاS„vîÖŒÁMoÆaäô÷`fw
:ÖÀøÕÑww«]2IJ9gk4`Ü´Ö—nVÛ»P&×Û=oÿ~ð¾Gª†Aþ·E\0šq½XD™°‹3•Þké}ƒ¸ºMendstream
+endobj
+417 0 obj <<
+/Type /Page
+/Contents 418 0 R
+/Resources 416 0 R
+/MediaBox [0 0 612 792]
+/Parent 403 0 R
+>> endobj
+419 0 obj <<
+/D [417 0 R /XYZ 110.854 691.108 null]
+>> endobj
+416 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+422 0 obj <<
+/Length 1045      
+/Filter /FlateDecode
+>>
+stream
+xÚÍVKs›0¾çWøXEñ¸v¦9ôì[Ûa𠨓ß}§Ê$Ç^l´«Õ~ûí®Vßw_T¼“‰ˆ“twhvRF"×É.Õ‰PI¶;Ô?-Bèp/¥ÒÁCX$ÁT>™ð÷áÇ×Y€‰(´Fãh·WJȔͭ	÷‰TA¦Ágôýª,¸tÃ528áÒ¼\ðoœ`GÍåt„ÅNÀrUÌvÕ¸CK”þ	u_2èúò±_ÝÁIôQM¦œQÉîÀfàÿn°3Z
™Ä®Á€0 #A2 „CˆUÊ! @œ$åPoTxÀÄëj]¿"™—iE€ÊnfÚâxC›Æc üFù}DtÕ	~ŽµÄÍ¿Œ§Z$Jj¶ªÈ­aÌ‚ŠØ±á&¤F¾‰mÀ½sÃsvF!×h6]0Düœ[ÆL
+%#¸‚M~áþZ†	gªÑÓ¸¬„_“rÁ=ä÷hfÇïÀG»gÓ[_(Í–íªÇÄZø±ø1ôF¦|ö)ÎrÈ¬EIÌá€Æm‰ß°*ƒ{çÁbMÍ;o*ÖÐDÀiÙ™¡€¶§âþó܍N^S…—¥5jÌmGa@!G¢HcWКðgj²^k•:aƒœ—ª§–6£¿lf3½S@³3ƒÆÃj ?—hÃÛp…"O%…ÿo&t,¤Ì]&«ïµ¶Éæ‘×þ&}§ôeàÅëoËŸ¼Ä}7Pø çBåÒî ƒJ’`†:Pi„”ÄU9D!wßóêšܶXÔa>P…KÒ’—ä`d˜)T6.vüQ×®öiýq3þ›<amNØ+£/âº+/\ÄO#ó_P^°²»+¶kÌûÈŸugÏÐU°é…D³ÛF9+Ô›œ‘îW¤#]çAßÕ¬x•,´ß²¸œø <®ïìlÜv È­“™e7³àKµL–h´_Àü°°¹P 4‹xÛÙGŒ[¹^Ž­éŽ-3Ä7$%®èë¥Ç5âqîŽÚf«íðrl‰AÒ˜€Ñ{¤[ÕM	7ú¶¸}¦ÕØ_3ÿ™ý3Ii
†ïÊ­%ƒ<czêg9*zmŸsY×nŒjHßÍx›Í³cl­ŸêÆÝYë}÷ù‰Ç®·2Ì—ÿ&³9JZ5ÕÛdúθ{¿ÖìÍt¦©¿ l»©ì`¢Ý³€n¦e8ahf¸gËÉÍh·t…ǧÑ#)x¯¥nªš3Ao·ÆÙŒXÊ‹olëB¨lsõÆîâ™–_ƒ¯D¯oˆª\ÓProXi{µxßìw›‘?˜‹÷fÙ{ç‚êšÀø_iª>ñxz½à5Ÿ‰"JðÃ»>!Û8BÝÝ÷ÃÝ_À¸ÿ.endstream
+endobj
+421 0 obj <<
+/Type /Page
+/Contents 422 0 R
+/Resources 420 0 R
+/MediaBox [0 0 612 792]
+/Parent 403 0 R
+>> endobj
+423 0 obj <<
+/D [421 0 R /XYZ 110.854 691.108 null]
+>> endobj
+114 0 obj <<
+/D [421 0 R /XYZ 110.854 666.202 null]
+>> endobj
+420 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+426 0 obj <<
+/Length 1186      
+/Filter /FlateDecode
+>>
+stream
+xÚ½V;sã8îó+ÜEÞ9+"õN¹3»ÅÍ•în¯-ÚâF–<oþýáAêa+›\sÄàÀ_·Oße¸‘FÉj{X	øY­’8òe”®¶åß^쯅—¬7BÈØûÆÅn½	¥§êõ?Û?Ÿ¾‹Äü<Žñ‚`µ‘Ò	‹n+µÞDBz÷Z­ëv-S瀞#îï§ê튿¶ƒ%KÝ&—“BÉf-3ÏônÇ^Zàêë:Ž`$<]»Ú©ƒ›h°ïTap“ՁLÃÝô¥š=‰„dÜB ºÊÄ«Ñm´µÆyJ:›’Ç”îx¼Çqó#ÑñÒ‘^”Ö†Á
+Ã	X1`` -ÈI[±a£áóªv5Î_ŽˆK{a…÷˜‹@ú!\Ð;3^àô±C[.ÎJv‘†ƒWÅÞèWÄQ^fÆnœ¶7»³÷€F¢¥êC{C?Í2k/ÄJa¨»–¢ ¬- 8ã` mcsS4—®º<*"L~qp­TÃ3r§öÒ+Šì&ü0MfñÝ_º¾ílzÕ؝/VšÄD2ô\s„´ºblÈ3‹Df‚!ã÷úð†3ë‡Lsr¿ÖÇæbyÛõË<!ÙOjÅÊŽòäÚð”ØiÏÃÐ]Î~ý“ŒïlìF{`=îsÃ0ŠÄÏd6ƒñùÊÐ=÷ŒÓ³åÓ3Ùzµ‹ýpjØV„¥ÅÖTöà(•z¥êÁ낈æÒiˆ‡iÏ6=ÕÁL°kT÷a„r›0¡i¾PºUû‘”¦é¯§ÚÃÌ┐æè€CK&Z5Sí0ÃÌ	Ây‰D‚ØÆŠ"	BæTœylZþ—º?×ć7\è†# )Œ×9Ñ”E%gGø Ü…Ì[ã|+­	¼‹	”úqÎÔž©N·ÍÁG®Î(]QUy¼/»?/½Dyüd.îˆ%ZØ]Qs÷ˆ¦ÂSWQGÌÖÕO›:8æ¶À½‹<·‘/Æ¢6/!xÆ’ÀRV7¼uÖ¿TÝ/yc
šò–xv:S©(K
xôxE¸ëß­>pëPˆ¹NnÂ\x\ˆZÍ…†Š`.Èé–‡s2äbàQ.Gl`<';ÄB‚ýÂõíZ—|Vb¯¨/î|Ïç‹ŽðH­{£J^×®e¾¸©é_¨¨“ç_>UªÐ³¬G›ð!NrGS”âóŽv3õÿÆ, ,3?C§s…›+þcïÒ£³jº˜Üà‹PÛ--Ò7,ä¤]ô”L˜:ÊÏõÉŠ'–5Ú26ê÷Þï›eïžÂX¡IuTf¹WfÂ5ËJéc5ó¿)·WÍ”cô7Y6AP•Ç¹m‹ü4üùû¢€Ív7tY<oh•úPƒ8ôý‚&M=€Sê ”A6íÐH&ρH†Ä0À†¼»mþ²C+ˆ\+ÀÕEY\ÃA½`Ï?öÜr½€T0w9…áa™'ÿ{;ø‰ùÜ“xl-ð-ñó$±pÒÝøªßFOrp‰w“dm~[üÑ{QKˆ‘qÎv…T°¾mþŸáo.endstream
+endobj
+425 0 obj <<
+/Type /Page
+/Contents 426 0 R
+/Resources 424 0 R
+/MediaBox [0 0 612 792]
+/Parent 428 0 R
+>> endobj
+427 0 obj <<
+/D [425 0 R /XYZ 110.854 691.108 null]
+>> endobj
+118 0 obj <<
+/D [425 0 R /XYZ 110.854 666.202 null]
+>> endobj
+424 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+431 0 obj <<
+/Length 393       
+/Filter /FlateDecode
+>>
+stream
+xÚÍS±nƒ0ÝóŒ l`­ÔÙÚ46ÄJD"cšäï{g‰Ttï„Ͼw÷Þ»ã¥ÙìöyQJjΣ¦ƒ“ eVF‚„eÔÈ÷øÚ&4–÷ä³yÛíi½Èfá4ÊB–”zè“4g<nÍ0Ó 1,c«îO"–z¼žÛ„Uñ#%ýõeð_{TqÓ²‡
+ÑØúÎO<Sß:e)²zAóñiVŽ€Q 8kDu+\‹ŒT´d:kÈr­i8†öµWvô·_IÒŒTÆ'|d<3­•Üú‹™NÃ	¥©aë‘FK@õ*„¨ŒñÕ ïÛY ¥èšÂ@x9‰ÑB…Ö:c b–XœÓ	]è.´\±×„•Á=ËF^ÓÌ£åTÝ¡‡Ôz•¿<ë¼²ÃÜöYï»c‘éÝ®™\8|6nžÃ³Z¿á‹tdWd悝 Ââu+‹¦V7,”X»ôÿŠ{¦cÿW{Z1Â…€"¢&ðë;tÎ0sóÚl~ ðÅendstream
+endobj
+430 0 obj <<
+/Type /Page
+/Contents 431 0 R
+/Resources 429 0 R
+/MediaBox [0 0 612 792]
+/Parent 428 0 R
+>> endobj
+432 0 obj <<
+/D [430 0 R /XYZ 110.854 691.108 null]
+>> endobj
+429 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+435 0 obj <<
+/Length 1115      
+/Filter /FlateDecode
+>>
+stream
+xÚÍVM“£6½Ï¯ðoYK€Á×Te©}Ëæ ƒ0”1¸øˆgþ}úK,Ë;Ù[.¶h©Õ¯_¿–ôÛáåë7­TFñnu(WJmÃ,‰W»$uœ®Å_A®U®7Jé$øÆæ¸ÞD:°
ŒË&s¡]ÿ}øãë7µ‡]Â}’à~ÛÕFëPíx§Ce×›Xé D§|š¦[ë4¸Õí	gTpÆOû~ÿ®‡{˜þÓÅ¢g»ÖY0nF65hýgÄ0RAݘcãÂÁN4È{kFœäpàÓòÝ#zµ9¹D®Ä„0à'F~ …Sˆô.hÄÚ”½¹ˆÑ´æ{þÎÝwû}«âÓÔ;8YÌ\-˜K °¡·{
+}D€ù~N=n5µDÏ#é»$Œµàì•#—K7˜9 „]Éÿ’ Ö¤8QU¹àFÂ0ÄŒƒQʺõ7L‡cåÁ˜ª0IcÁ¡`‘³ÌR ,‚Éè»É>×å†k(îÉŽÂoË[]ë7Û¾TÍ’íÕmø<ð#è˜4ø{«¹Ê
"´DœÌÈ’è«*xEsLƒ-xårà„8O`»ò&”ÐrW\ëNì‰ÜÍ`C3¸ªšÒ -oÃý.M'„¿»RO·Ó*5CÛ	ƒ"uÑ
ê©¢'+ô›r´ýâ½‡j€8¡¯:
+¡ïkÀ
+E2.†Ò¬D…JeR‰ƒ‹í´-nd;\û›ô‰ôUàÅ+—ò§¨-q_·Ô>ÀY¨3%€kÀ ã8Az·E-Z"ƒS9D#‹»iøk®
+.›œÃzà—¬†?s¨-2ÀÈ°R8YJî8îp®r3sðçÍøïê„Úì±W:_Æ1tW¶—Œ/󿧺 ²ëÛÜß{æ½ãaQWè*Xô΢Y–QÍöúCÍhîû6Ù‚i¾šºà‰–‰Öl6=o€Û5õ0ZY ¹u²P¥éÝuð%Ÿúh¾@8õ©°Y(¥å‘+…‰GéªÆêtò¥#iÃHö{–p¾‰«ãKh^ÊÜzvF±,1kÅþâå¯=ÝÔy×Ì-—Ê5ûÈ<—N…¨jSùáE£ÜMSÙúT-H]ÆŸo§Áe«»à5RR‘º‚¢;ž2œ¹\¹ò”XPêuzæ6š×ÿ$ÔHVz´–/žÇHt%qº1X·¼zc±ò†»üqÏ+®,Þ>‘ðÕ…¼s读÷Ç}:éf ]<ÑD*îBúïO’¥n³Ì÷ÿ/Lf“:«AÆmù™†{ÛÔ¶|ìŸ{ýwÏ'z–¹ÏÅÞÔðäxe'S{ÆÔlûÊž½<¢äSÄÌ»ÑC)xvæy:…Þ×g̳ì°=&ß»*Ù‡:]܍î`è'‡ÃsLð¹b\çñ•’±ç“÷Èq—é›ï@Q™“Ýnµ‰zàê(Â…/¿^þ}WRendstream
+endobj
+434 0 obj <<
+/Type /Page
+/Contents 435 0 R
+/Resources 433 0 R
+/MediaBox [0 0 612 792]
+/Parent 428 0 R
+>> endobj
+436 0 obj <<
+/D [434 0 R /XYZ 110.854 691.108 null]
+>> endobj
+122 0 obj <<
+/D [434 0 R /XYZ 110.854 666.202 null]
+>> endobj
+433 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+439 0 obj <<
+/Length 140       
+/Filter /FlateDecode
+>>
+stream
+xÚMŒ½!„{žbË£`Ÿ…
­‰WXÓîÄÄÄBÔ׸Æff’ofIÌ‹s`Fï!m-dÍ<¡%†”ÏÓç.Íôz7¹>ä%@ƒ²„¤ãÀߎsmR:ÿa¶Möj®E*gÃôÜv¯eí;»­uübŒš@y1²[G‰c?©,Nendstream
+endobj
+438 0 obj <<
+/Type /Page
+/Contents 439 0 R
+/Resources 437 0 R
+/MediaBox [0 0 612 792]
+/Parent 428 0 R
+>> endobj
+440 0 obj <<
+/D [438 0 R /XYZ 110.854 691.108 null]
+>> endobj
+437 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+443 0 obj <<
+/Length 931       
+/Filter /FlateDecode
+>>
+stream
+xÚ•VMs›0½çWø™˜X¾v¦9tzô­éƒ°5!ƒ„íüûî‡H ÆÓäúÚݧ÷v~lïŸd¼I'ëŶ^±Šò4Y¬Ó$’I¶ØV‚4
+E‡K!dü†±¶ž»pË 
áq	ÿn=>‰
ØG›4EO«ÅRÊH¬ÙÇö Âe"dPƒ0AÓ´¡Ì‚³6{ÜÁNÕÛ_m'*¶(º=LúW…–&”yàì°ã¸z
+ÓF ¯)vÍ<Ñ ìT¨}8°1üÖÆ:´2%™Ä®Æမ™+8¼B,×A£-Bñ@äÃ_x³0(2ÊÖ<¯DB—è(<®jÇœÅñˆ³¸7ºÚPТ3§áqR‡oHšá;‘ ãÕV¹(t¾5~J pPuijïEéô‰¤àù±@-OžWéªj?ßü7óÀ´Fùao*Õ5ÚÐÅ2É¢,žÍ”’'U}ã`(Bò-f8YÊ8&¬ìP°òûåê
¥Ë5)ë4J¤ô¤ì€L¸×ØŒ´Ê@"du¬­ùíÇ­P=ŪÏ@ôabÎÁÐeW¡YwƼá;Ì—f‰Ç¡àÐ<¤|(
Ââñ"]Û‰÷ž§g<Cq÷Êù¬3ìê¨/ª±sWñhÆl—=ÀìƒØ×ø°È7ÿkÛ[‰Ãp!$¼ÜÀ_Ç›8oyXi{l
+JS^@æŒ?FwÙÈOÐfÖÅPö®xãc¥§ó–—)½;(a§üq HI*òHdÙ¤äï˾³$¤½ÿRz²öÖ«E؇à†5q§(ñpˆ„šjè1#ªÕvŽÑ!áªÁGI‹iÛp´š6ÜŒ22Rá…©[¯çHËoBÍLMקšà†ºxÓA/ê¸FÔlq0Šñ-	±§ãëå½Kí§©^¶
¹bܸ¿l¦lˆJc˜Ã£	|ÅP«¥÷‡©ãøï5x3¸w5	Žy.1—=A]>Ž|sß´®gÖèy/ÚOI3{ÞÑ*õUƒ<X;©¡äÆã'ª(=äùu’˜Î«údvªÑª¾rJ¤tBê°ÊwAl]¡­ªxòº7/ø‰Ræ-;ßýÔ³ÊÞè?|·J}"³a6·EàźUåù¬‘oéø<#[¥ï÷cÃz0T߈öŠ'é£tË»#Jô\5Š\Féz½XÆi$;S<x÷s{÷™dendstream
+endobj
+442 0 obj <<
+/Type /Page
+/Contents 443 0 R
+/Resources 441 0 R
+/MediaBox [0 0 612 792]
+/Parent 428 0 R
+>> endobj
+444 0 obj <<
+/D [442 0 R /XYZ 110.854 691.108 null]
+>> endobj
+126 0 obj <<
+/D [442 0 R /XYZ 110.854 666.202 null]
+>> endobj
+441 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+447 0 obj <<
+/Length 244       
+/Filter /FlateDecode
+>>
+stream
+xÚ…‘KkÃ0„ïþ:JP)Öke_Í!gÝJÆ–“‡!VHóﻲ\š„@/Íö¯×¾Xm´&RŠÚZâ{t \éX#”qÄwtŠLÒ&I`Ÿ~KJ•¦¬çÛØàÅ> ôc‹z™Rhµ‘õÝX[åðaz0ôŒkåhx¾„·¿Ó.dº¯“Ú6§lb³gª¢K$æ, ”q<·¿Ø‡¯á™›ëV3ý: ¨›i/zj# ÔRkÄ]¦ŒýRâ©âä2â~EßâÚ3Êx8$;¢iq§îa¥¹ãí¿üSkY)a7€ÏÎ34¤`ñî‹G>xendstream
+endobj
+446 0 obj <<
+/Type /Page
+/Contents 447 0 R
+/Resources 445 0 R
+/MediaBox [0 0 612 792]
+/Parent 428 0 R
+>> endobj
+448 0 obj <<
+/D [446 0 R /XYZ 110.854 691.108 null]
+>> endobj
+445 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+451 0 obj <<
+/Length 1010      
+/Filter /FlateDecode
+>>
+stream
+xÚ½V9Û<í÷W¸”‚˜Im€¤ÎÝ—¯%Ê+X–ëì¿ÏÔa/Iš46¯á¼yóf¨Ï‡§O_•ÞÉPè0Þª”H£pG¡Pa²;”ÿy‘ð¥—ù{)Uä}7­¯¥7ùÿ¾}ú*3°Y¡m°Û+%dÌV‡gãïC©¼
+,½®hšÎW‰w«ÛîHïŒSózÿ®‡%[äý	&ÓÅ eë«Ô‡yÇ^šãê‹…0’^ÝäÇfv7Ñ èM>â&»›–ÿëvѪ-ÈD¸
+€‹¹€FA«ØÛ ™p%!¯mÉã
+í{8n2<M=yFûzdº´ÞÐÑ(AFþòŒÇ~^Ì~i~>!3ÝÄß².%4\ÐG°g8}êË4£ä i¸Ä•cý‚Q™5*`Ív?»a¼©/çÐàï
WK¤ÿÙ‰9‰-f†&ÞÑß“ð
+Z¸ÕåøÌCJ+#ÃN<³;”N~Qp{•Â„ƒ/ÄÇ`(Óû4Z©»|S?LÙ0ÓFBCgvgaÝ‚?é"Lib{—¯jæËü6¿Z$ij¹GßQbC«è+@œ±üaðÀ.-<ádå	gTH$­B'ñ?b(³òEÔ[õRWxËJ‰²÷;ÑS963⮺ÃÇÂÁ`u»JtoÝl“x$²K4ëoØ^p8ºTžH%saÎR^`$«6Õ*}* „c!çk®ï™Å3ýÈWÔ-o]럦\ÑX@[ÂÔ]?°߆‚EšÙX{IïÊpÁ¥cÁœIšw<,ëáÚäx蕨=ÚcK¦²@{(N,“¹Á7uÉëÊDç^Î{¾ ¯kêa4ö8 $)ËTÈ$±RŽ(š¤eŠþÃ_(´Äò¾8!²!íÝ2=ˆ«pè™hGË*‘\
+ÜrÊùFá՝ÖlãrqÃü´v3Í*ãztFJ¶ò«fþ²úbYûÓã3ôGÈ%xÅK4/ºü^ò·œs„¿Á”™Ê%oøØ‘ó3Ô›¦6ÕûåúʬõJ­`n{(Ú>¯S~äJÚÔžé…m?²eO
ãdì”ɲ·-ô=AZÀ[2
+ÑP·Ç÷¥k–b~ ƒ>zÎx²ê
+z
+”D™P‰e¤Þ$ªŸfÄŽ´qžsÛ€Æü¼ù¦Xø«8Êbrö&ö»
lD¤TØ]åL^,²8þc¨C…5Y°˜š|®’˜ò™®Ö¯õƒ9†ï9íLC¸#ùµäèâR¨Å96Ô¾){…«q}¤JDè;ÎD˜òiàÁ§/‡§_cGùœendstream
+endobj
+450 0 obj <<
+/Type /Page
+/Contents 451 0 R
+/Resources 449 0 R
+/MediaBox [0 0 612 792]
+/Parent 453 0 R
+>> endobj
+452 0 obj <<
+/D [450 0 R /XYZ 110.854 691.108 null]
+>> endobj
+130 0 obj <<
+/D [450 0 R /XYZ 110.854 666.202 null]
+>> endobj
+449 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+456 0 obj <<
+/Length 1173      
+/Filter /FlateDecode
+>>
+stream
+xÚ­WKs£8¾çWø<µ&H9NÕÌa«öæÛΰ‘6\ âÉ¿ß~H€cR™©Ú‹Ñ£[Ýýéënùëîáé»T+‡*Þ®vÇ•Q˜%ñj›Ä¡ŒÓÕ®ü;HµD´Þ!ãà/
ƒ Y+ûÁZØk›õ?»?Ÿ¾‹ôÃ<Ið¤hµ‘2[>cWZ,dpDí”êº]Ë4¸šæ„;"xÁ©~»â§í@¢d¢;Ád8;»2lïwÜ¡®¾®“F"0u±¯½98‰‡Nè«3:
MÓ[Ôj¤¢È¹#„! 21"!XAÉm0ó„@…·R2ß”<&Ó( ‘ˆOCGöqÕXM©h	€¯ 8°ådµ8€²5ðóª÷ðKó—âÓlí{ÉPÁÁ±ðç¤Oú2x9TŽÑk^16=…Ø-8»ñfØßìÎß#:‰žêOýUašeÎ_ Nã•w-9Ç@X£¯ÏøRa€¾±»)º‹KWSž4&?¢$ºVºá…ˆƒs;ôšnx“E¡J·7÷|ºÞ_é=PD04ãvF¼Ø XKIÉnjÐ늱¹Ç"Ž ñýe½áÐ@ÃßpæâiNá×æÔœ!B¼BÞv—ŠVÿ´OHús€:µ²£|¹6<uô%yúÃ9®?`’ñ™ÛhlÁ}nF±
3™ÝÀø|eèž{ÆéÙñé™|½ºÅ~”·5aé°µ•œ´Ò Ô=D]Ñ|:÷aÛj}´,O	Ø5ºûô†r—0xCó|¡jtWÛ$Œ¥ü4ÍÈ~í9Õo<N	i¾hÉEgfN¢=f˜=cA¸,‘H„Q”8ÇØP,AÉž‹¡jÑ·4ý¥&>¼á‚òt VT KLÇyÕ”U%gˆ#|PîóÖúØJçÅLÏb¥a’«µª×mãrð‘«4jWTUïkîã¿Co!Q1÷ÄŒ=ì®h
‡À¹{DS&©¯¨€‡'fëë§Kï)k¹‡Qäîæ‹©¨Ý–”q$p”5
o]ÌO]÷KÑ8‡æ¼%ž/TjGÊR#ž">`îú«œ:b®“•‹€Qk¸ÐPÌÝòð–¹y”Ë	ß’$±`¿ðý»6%ËÂJõàå{–/:^@‘ÚôV—¼n|1ÊBñ®¦¡¢N‘ù¥RÍ€–†šw™ñ¡óQêÑq|u Üö4Ձ۶7jæ®ÑáŽ]¸™…‰Û¡¯î\Þð›CˆèùâöÝ%à4 ÇÓé‘2§*gö"äÂ<Pr×ÅõyYËÝœD¾›ôùØ-wöܯ
+]2h£²Ë
5¾£VÚœªœ¿gÜ5¿Ã
+oÿTq'fµ|¥QØ®ÜgQ°só]å-­R³j‡¾_°d¨QpÞݤàÕeófÝföfˆ¥"†îÈ0äÝÔ2P´mø;êŽý"öýWuq
¿5Œ—…©aà–od‚¹Ëy¯Ï|ûÿöŒ•HòPÀ ¼ë$gøT†[ßvÿ‘ÐTUendstream
+endobj
+455 0 obj <<
+/Type /Page
+/Contents 456 0 R
+/Resources 454 0 R
+/MediaBox [0 0 612 792]
+/Parent 453 0 R
+>> endobj
+457 0 obj <<
+/D [455 0 R /XYZ 110.854 691.108 null]
+>> endobj
+134 0 obj <<
+/D [455 0 R /XYZ 110.854 666.202 null]
+>> endobj
+454 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+460 0 obj <<
+/Length 458       
+/Filter /FlateDecode
+>>
+stream
+xÚÍT=OÃ0Ýû+2&1qçcE‚90˜Ú)†âVŽCۏÏç ™Åºø>Þ{wß
›Û‡ªJ(%=cÉ0:«!mÑ&
«IY·É žR¥3š
+åŽ-·î<8tö2<&E’—5©‹ÞG¾ÏÎ3AŒ/à¿} ýªzݐ¾i\OV=´vUÕÁåè,¯Ê6sDÓ¾I0šÔʳEë ÃÍâ:e¹ƒ;—%-b^)Ê(òì<ô§¸9¢àÈAë9½ì£ú‘¡ô°”`<k8ÿPj:îyVvé%s)¢
+Úô؃¨„^@š—ÿK»i Ï{Ø9ÆÖ¡ ­Y#÷JŽ¯ ÀK;áík–‡0#¤Á€ç‚†«IŠ¼˜€é¬?@šÔ7˜i”pY;>A‘kVsq_¾®®^OÂo»ÿ-dd,Ìéº0¶Ðþ)ÒÖ“²
]P‹là5/,ák=F·åː8ªüÕ³•mØk5ˆ»céÙF„Ìþ
 ·ñóÔ×j1ýáÉFdV5iš2èt*ì[X´1²hñ_9”X;Ácď°g8îþ‚§]I˜zF:L®zÜÜ›o+CÖendstream
+endobj
+459 0 obj <<
+/Type /Page
+/Contents 460 0 R
+/Resources 458 0 R
+/MediaBox [0 0 612 792]
+/Parent 453 0 R
+>> endobj
+461 0 obj <<
+/D [459 0 R /XYZ 110.854 691.108 null]
+>> endobj
+458 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+464 0 obj <<
+/Length 1142      
+/Filter /FlateDecode
+>>
+stream
+xÚÍWKs¤6¾ûWÌ‘Ùò`Äß’ªì!U¹Í-›1Ö‹)Áþ÷é˜ã]ï-—±P«»¿þú!ù÷ãÍÝ×0ک؏âtwlvJ~žÄ»4‰ý0ÎvÇúo/ñ÷ÊSjP*Œ½¿4,<[®<Á¯Þÿsüóî«*@×/’­»Cú*eýã#¨Ä*ôÔì@§m»}˜y“±'”(ï	?õ넺NÔ¬Qöèb|&ŸvæÞàf‰-q÷ß}ÃJy¦-ÚÙX¢EÕër@!»ËujÙŠT"×`@°#+€!Daê17‡{ùµ5¯´ÐóºÂµý¨ø4öä-˜	‹¢a	ià1(È#@T^õ?Å{†ã Ò ñ¨;ïH"«LóŠ_9C³‚àµædŸµEzs¤t`Ð/ÃÒó<G…»uOÌN–?)9ËÙødê“ná#g›V]Ã~¾Ipo‰ÒƒJý<Ì…Ø„°ßOÌÕ½cvî…Ó{Â:ɦ[N-b
†‹'3<ÊÁ7­Ì«µƒ¨1úa!ÉãНyÑêfX¥«·ºßÈÏ!Œ|(˜Ëaœ5¦iØÎP–ç’¢ß.rDc¯gl½UN<ÃL¼‰ÎœÏ@<§
er(¦üùP¿Qì© äo?ëÒºÙ¹º2>p²•÷BBNQæGYzQûÆ1?ý|¼Ö½®™½ÒÍ)¨çfp·ÂpÙ¶²T°Í_­zGì£
ÿ§Üç„éõª'ø9õHÉhif¼ÏBšøqJÊ
+½¯ÕêUîÛ®gŒ]sQ-í4G¿Õ¾q³.Êgjý„Ý…K(Ô÷3å'Y$ÁÕ\Í#[ú
×TF<"	Ž@F>úNâYÕù„g½Ô¹±,:›ݺ­hКðjDîÃqy!!<w#õi•ËpL¡°g!~w¼¬;·%zå
7tŒb)«,§l-ã¿55ÞvF¹¯h»”"Fs­qƒ–ãfžP¹¯²ì¢ü¿Tcï(—îÍœÏU(µ³Ýaî'J¨jºy&óPâÆBÖëÍôŠ"@ÛK¡YWµÂ³y/AXW+Oý‹
7¬>]V^Õµ«+pWŸEvÑHÌä£AT|‹¡´„­Ïv.,×ö*ªMU@¸”ñrþ®Ú¥ac‘ ç6<}ÇþpôÈ€x£AR¿HS¡íûèƒï‚ªÄñ¿$oÍÖrQ½eÙþ°·7ȧëÏØõËOÊò\Öµ\9	ôÌŨ|4Wd‰w[½‰óÓó}92Ì×ÿ/Lf“¦ÅòÐÍö Wó+­×­ÑÍljæžpcžn-#g]_§k¹ViJŒö	CÓöVniºgNZ>¥AØ=”‘‚æ˜ ^g‚ÞÇOgÓaˍn#ФðÃLâ4«~ïÇÇF÷ó¸(ç4”Ç+
c¯ÆÍ‹Šý®32 Ò—a£C'LSM86"ˆb?MÏîà«*ánƒÿš2¿€®´ð㜽ÄŠnþ8Þü‡áYöendstream
+endobj
+463 0 obj <<
+/Type /Page
+/Contents 464 0 R
+/Resources 462 0 R
+/MediaBox [0 0 612 792]
+/Parent 453 0 R
+>> endobj
+465 0 obj <<
+/D [463 0 R /XYZ 110.854 691.108 null]
+>> endobj
+138 0 obj <<
+/D [463 0 R /XYZ 110.854 666.202 null]
+>> endobj
+462 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+468 0 obj <<
+/Length 783       
+/Filter /FlateDecode
+>>
+stream
+xڍUMs›0½çWø™˜XB€¹v¦9ôÔƒoMdЄW@Üä×w?DŒ’ôb@«Ý}ûöíúÛîêöNÆ+¡¢X¥«Ý~%Ä&Ú&j•&*’*[íª_A…"2\!Uð3ŒePX
ŸAµ>‚ÉتÃÃcø{÷ãöNä%Ê“ãmVk)#‘r¤]nJÈ`Þø¶mÊ,8[£Eø©_Žøèܨأp5|ŒO”׆rýdñA<}o€ª-Ú)D¢—Òéb ȵ÷±ü4¶ÐË–ä¸=„% ?
+ù,!–ip °þµ' rÑ’Qv[ñûã8ö(§¢íýF¨zt„-f`êâxF]ˆ>ȽÉ)÷F.á§vg´ÄÏ{ÖÓ$RRrö*‘̹›WR:¯ÛóÓWˆM©sb|	àÚ§aˆ[NFõVèæHø:43%™ò!\Z†ñ®ß´@X<^$Ãu¾˜ôÔn	æ­õàùµê`þê¶_*Å£™³]Ž˜ ‡Èý¿mîñ?ucés.¤„Ç0ñç؈ß¿V¦?´^záR†¿Fµäò¢d»ß$8zÓyk*6œNFºßóqá8 †kM?h ¢º×b‰,óO¨šërt=5²¿†tb‰0G07g„5^ø€@à·¨¦ù™	d~	¹5¯o~ÑGÓhÅê›a‰~ØSb’O£MÝ0߬!^jùI@¥^”±5GÙþ?8,šøc¨K8I˜ÁZÚ ƒÁÛ¯?¹½m3ÞKOh>“¢Q
µÈ¼v,5jý
›Ÿi‹ºÁ”EûQÏ$Ïe;M‚‚÷_qîtk´Gù1ßýÙÓnÐîT‚+L¯+ºG2Fûˆth{ÞÎO²ÿ¬iè}4Z÷XèG%žu–ÛÕ#M}ƒ‹tİ΄zºx¸òe `b’ÀþÓ@ÇÙ6¼Œ†ö7fSÐVoߍÅÖoJ´’,:«(Må,ÕÓ4ÀŸå… ‹DÎiñyõ}wõ7»¹endstream
+endobj
+467 0 obj <<
+/Type /Page
+/Contents 468 0 R
+/Resources 466 0 R
+/MediaBox [0 0 612 792]
+/Parent 453 0 R
+>> endobj
+469 0 obj <<
+/D [467 0 R /XYZ 110.854 691.108 null]
+>> endobj
+142 0 obj <<
+/D [467 0 R /XYZ 110.854 666.202 null]
+>> endobj
+466 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+472 0 obj <<
+/Length 1223      
+/Filter /FlateDecode
+>>
+stream
+xÚ­WKsã6¾çWøy§VDêcgº‡;¾u{-Úb#K‰Š“_<H=e²;Ó‹ÅàÀþ}ÿðô]†ùa”lö§ŸÅÑ&‰#_Féf_þíÅþVx"Ü‘÷WQêv‡Áø¶ÍöŸýŸOßEÂ~ÇxM°ÙIé‹„/ØWj»‹„ôNp‡‡ÂuÝneêÝtsÆá½àT½ßðÓvp¢d‰¢;Ãd¸(”l¶2óLïv쥮¾nãFÂÓuq¨:¸‰ÇNh«U2
uÓ”jŽ$’q't] X"„\0èB(¯sî£A 
@@{ESò€ãàØ6?‘iÇUm²0œAî!À:ƒœtG¼\ÃÏ«:À/Í_ΈN; Ñå
+ò"~tÅd Ñ8}îÐìML­£4}+ŽF¿"šŠ7@nÅ؝SÃöfì=¡‘h©úÒÞÐO³ÌÚÀ)«kÉÐ(Ê ÂmíxÆ!…ÚÆæ¦h..ÝtyVD˜üâàV©†gä".íÐ+Šï.ü0MQ>]ïB§{ÑÕ؝/VšÄD2ôbK„´ºbl>bs‰þºÝ±k ¡Oï8³~È4'÷k}n.à!†·mPñ€Qoæ	))P+Vv”-·†§xÞ‘Èîröë7˜d|gc7ÚëApŸ†Q$~&³ŒÏ7†î¹gœž-ŸžÉÖ›]ìÇSã¶",-¶¦²'©Ô+U^D4—Nc<L{åA­N†Ï‰;ê¾ŒPn#4ϪEc•Ä~$å—iFúkÇ©ö´°8%¤9:àК‰VÍœDÌ0sÁ‚p]#‘ðƒ ¶†±¢H‚¹W›–¿¥î¯5ñáBG:ÂáÄhÓuN4eQÉÙÇ>¨x!óÖ8ßJkÅLïb¥~œ‡µWªÖmcsð‘k4JWTU§å~üwè
$ÊãOæ⁘Q¢…Ý
µá8÷ÑTøqê**àáˆÙºúiSÇÊZî`乍|1µe	Á3––²Úv“«~Su¿æ5hÎ[âÙ…H±Zf£ÄÏ“ÄUÙ¡ÒéºÑ{UQ×Ö(ª›÷®awp¹o gÇhöd*¡êM£Ê5_¬aóÈ°/WjcúÑ“bæ/6”®ÿ´’BcSáš¿sáqQm5M*è¹ /[.‰‹1'r9ãeâÒI,ŠØûÜK¤Ö%Ÿ…•Ø+êÁïù|ÑYÔàH­{ćֵ+¬™/îúÓ7jPäù·_h;%VŒm§8ÉÝYQ¹Zvç;˜Oä¾YAXf~,Æ®íšÐħØztV-I¶Ä7 OÙtš¸5§%Ôš§dÂÜQ2×úõuõë~·¹GÇgo¥ÏͲwÏíªÐ$:*³Þ÷3á¥ô¹šÁùkÊíUóVýsÅ6APÇÂÇ$¹mÖ<üÙ碀͘vwtY=oh•zjƒ8ôýŠ&M¥‹Sê#@!<ŽƒlÞÓ )Ξ6‘‰a€;2y7u6<Šµ¿£ìØÖ"×ÖpuU×ð[P_;rÆO}
·\_#Ì]Nax$çÉÿÛÚ6"Î}Ñ0ÖqÎðE·þØ?ükxendstream
+endobj
+471 0 obj <<
+/Type /Page
+/Contents 472 0 R
+/Resources 470 0 R
+/MediaBox [0 0 612 792]
+/Parent 453 0 R
+>> endobj
+473 0 obj <<
+/D [471 0 R /XYZ 110.854 691.108 null]
+>> endobj
+146 0 obj <<
+/D [471 0 R /XYZ 110.854 666.202 null]
+>> endobj
+470 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+476 0 obj <<
+/Length 667       
+/Filter /FlateDecode
+>>
+stream
+xÚÍU=“›0íý+(aæ¬ãÜf&W¤v—K¡ a+‡Âÿ>Z­HdNžqy
#ÐJûÞÛ·Ë·ýæõ-Ë‚$!»¢ö­^•¤Š« ,r’æU°g?C!£$dB?ªô³á!£_ûAlÓœäñÎDþ™õÎ1¢½Áþë[²snÏK²+K}ƒ'%Þã$×·Š^Ÿ‘Ñ6K«–-.Ցâ¿*\õÒ~Y¶.ÑV§c}Š+ÌyÇhk“"ÎÚ¤î[È4x¼xë!ÓŸa‚FÞ%n€}fU$OSËJÇ
+Þ>fò;ÚÂÎÈøøb	¹\úyâøML–w¤_ÎQZ$W*¼hö~ê™K} PÌ«‡FZ“"±,ʘ¸¿éDfÉ,ʵ`b:
+˜n€Ž3o‰ h	•òâÄÔ®øóöuaÖ¶Úú€c¡µßcR'ù“ÎÀ2NøÕÚÌÇ–‚¿ÇE<R1qf3ÒY~WÈ<9
+¦O¸}FZ¼MǝúªÄÛ+Ø­Äd(£Q
4~‡#Àm˜úS$Hr¢ˆ§µÌˆ0³„{îQpîÃt[çÉ#m±#ie•‹”Àu^˜ÃÛªEŒj
]
+OQ¹UZT«YÒÞ+„y]2
+^•‡Èl'lÆ#Ò§…„Îgô”dEm)ž£B;¼›-ØÖ8cåßÑôŒ¥8hf¥œ©Š>˜{¦_$ ©%þO#pÕzÊ®n[¦’q ïx£tWù:9¸¢<ÇWÒ“ÍÜ·kšà?Í2<àÖS÷þtÞ]çöïzœ$¥qŽ½žÚ~¤–¯‚ì0rž#{²Ì8ÑÃ8ËIY.?mQu|@ùñ„·W¸†ºÓ‹`ÀãôI’þŒI•‘:GÄy‘›ïûÍ_¨D”endstream
+endobj
+475 0 obj <<
+/Type /Page
+/Contents 476 0 R
+/Resources 474 0 R
+/MediaBox [0 0 612 792]
+/Parent 478 0 R
+>> endobj
+477 0 obj <<
+/D [475 0 R /XYZ 110.854 691.108 null]
+>> endobj
+474 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+481 0 obj <<
+/Length 1063      
+/Filter /FlateDecode
+>>
+stream
+xÚ•VMsÛ8½çWø(ujÖ”¨_w¦=ôº¾m÷ K´Í	-eDÊIúë IUr˜Iö¢’ þuxøö#Ë7\°\”›ÃiÃùŽÕ…Ø”…`™¨6‡îŸ¤`)O¸H·œg"ù»m4üËôßÃÏo?øLؾ(Ðx·Ùfã¥3;\dº<KN`™`£õfUò¬ú3Îðäåë3¾†Vt΢Ïð3]%ZöiV'Ö„¿iƒ£·´ðÅ¥›£î`'úhGÙXœtîÀ¦woÕ‹V}K&9;a@!ÁbyV&´h£i¤‚½:7Eîð£ú_;.ùH>qTYGTž/ˆ*€ãÈÊYUæä©iÁÌ*xÜäžôÿxFN†	¡v¾ù.c9l¼£-Ž`ÀaõyĈ&±òáÑçQÓZuCC<°øŠ€Ý7ÛL0¾Þ¬o—¾({o1–Yö!Ä–ô¨NîíÑ¢dº3‰Ò#tëÝ8ˆŽÒ#²yV”gäQ^ñÑÛȪbUVxFýö^ßÀ8*Êjáô`¢'Ÿjð#¯²Ç£ ½›HŒ{ìp§ñµŠŸöÃÈYQ…\°hÁUEhfœév>Q„ÐóJI¦ ÝYϸÆSlݪwSOêEjÆZª‚²xEž›¨`EÉöeéc8M=hpð~ìàOQ£µu‘ýÛÐP·è¥HÛå#èÅEi1nL¾Èv²²‹Åâ-3Óâ±
À1
+D_ï}(×a2èyOZ at XÊ«À+dt“ø?¸ÏN™'Ýà¢W7‚Âeì>»“=ÍýÚ;¬¡òiÕ¹‰?#­7n¸=+°Vã§q ˆõnËkÆ«jUõ¾´ÓhH—æ¸ã1 tA%]ÖÍçÍšaÐX¸ð„;Ó5µ*ïN~§ÎÊšµ4ǘ]¯PKh-´áÚÉ8×üÕÙ~Š¤!r–›6¾À[*Ù<aQy8ìK©ŸÈk¬˜d5+xÐøàu°$宂ÜaYk'ä‹7]H~y¼Îc	"ËübhŸÿ¯dC{“çuÙhM[½=ŸB)Õ'ês×Ё4_HT:¸ £ïŽËw‘¥iþ¾)`ŸOôgÖ[¥F×#uÆD at j<vGœÖ:sÁÊ2Ðù'£÷I¯CÒçŠøéæç=,ƒÑˆ†íšÉbj
ŠÖÐMˆnCÿQÛ	fó­¬Yãx+ZVb¬]’Žúí¬¯á„âud´
+zÀ{ugÕt\¨$iÈÓGug”ZÉÓû·"‡Ö¬º(5èPŸ0„±QFv_7é$콏d¤6~–þ×ÕíF×V¬Sï…¸*6‹ŸðÑXº+ ˆ›×Hb—+•«Pxµ¸á€ŽˆžÖS±×ÕM—ÎÈ]³ÎXA-rÏêº&c!páÃ÷ÃÃ"endstream
+endobj
+480 0 obj <<
+/Type /Page
+/Contents 481 0 R
+/Resources 479 0 R
+/MediaBox [0 0 612 792]
+/Parent 478 0 R
+>> endobj
+482 0 obj <<
+/D [480 0 R /XYZ 110.854 691.108 null]
+>> endobj
+150 0 obj <<
+/D [480 0 R /XYZ 110.854 666.202 null]
+>> endobj
+479 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+485 0 obj <<
+/Length 340       
+/Filter /FlateDecode
+>>
+stream
+xÚu’?oƒ0Å÷|
+X*ÃZ©:³U\0‘b	œðõ{‡å]Ngßù=ÞO¼W»ý!Ë笔’T-t9S‰"¹,ŠTÍW4w”GvrÑ'¨gC¿«O’8L$¥_ÂIß@1¶f„rtÝÃjñ²:a]ϦÝRu0ÒX̆Ó0”ÖÖøa3.í¼¼K$K–*xˆú–ÆYª"œÎæívêŒï—¾9‡}ÕzôÓM‹(¬8¿›ƒ)á\_m@ÆÞ÷>ŒëÁ¨0ì¸Fšҍdv†Ã}{F®ƵÈÍNÏ/fB;ýsºÂ{æ’1΋ fÔ¿!”mCæ+‘•2Òh݃X¸Dýy¦1ø@…m·Î4^`Y¯V¶OÜã-fþ›îC/˜¢ñ2¯!2Áò<
!@×uÿ¤¸y.+AâLˆõ_Ç·Bâl÷Qíþ Ü«Åúendstream
+endobj
+484 0 obj <<
+/Type /Page
+/Contents 485 0 R
+/Resources 483 0 R
+/MediaBox [0 0 612 792]
+/Parent 478 0 R
+>> endobj
+486 0 obj <<
+/D [484 0 R /XYZ 110.854 691.108 null]
+>> endobj
+483 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+489 0 obj <<
+/Length 947       
+/Filter /FlateDecode
+>>
+stream
+xÚ•VMs›0½çWøˆ3 !Œ¹v¦9ôZßš0[5€¸é¯ï~;0i/$­ö½·O+Ù<<¿Èh!T©ÕbS.„ƒu¬«XR%‹Mñ˃¥ðD¼ô…Êûž[xó«*xl3»ü¹ùöü"RˆÒ8Æ}Â…/e V¼Ãf¯—¾Ò+¯¡ÍR&ÞÙÔ;œÞ?õû+
+ŽÈì>ú£ÆÈz)×^×3nÓGß–±‚7á™*ÛVC:؉^r«³'9ÄÔükê¶Ã¨:§ˆÀ•H)€.
+u
+RˆäÊkHn™’§QÚ£À÷„³â`ÞÔ¯¡PDÀRj5ëE#½bP=Í a˜RÂ,‡°ÎÀãMoáI߇JÓôœí£ì"”A‡´Åb ÏVïp?@d–ôz!–åyC)5O %m¬?¤a¼ëx¤Fs]N L’ •©ÉùUäm—>$Gd¶Ð–Ǭ®U¾äo–^nÀ*F*v“¯až÷Î14rIrlúÖ…ä½mòî·Ç"¹)¸i©È]èNWÖ‹bœ²‰)‘d€Ãn4Ú¢¦ù¸dô
+­â@Iùisrá`·¦¼Á—>¬
+1e:ߥÛnËÀ0{Æ
+âk·Ÿª¢âd°¤‚E#`,`m‡sMpFÇÆ6ŽÏXY\ãÐw¼…©yêd~몝b㠍'ŽG<>|^¨1]Ùæx’l‹gjª‹)Øq=u°N*¼ÓHŽç…S*è»á×´§*ÃEï<€pj·Œ¸¦ò®J4‡ƃ4ô´Ê<qéi}ËÙå
p»Ê´vË Ù[¬‘ÜÚû‘ìOìÿÃÁtª5
+ªk$êì¢ñyg—;©÷Øv{bƒ|÷îºÙÀ9{ºžÍ›êR¶YßÑ(¾á¶íÈ_è‡ãibOò®ÁÀš.êtMýÙ¹Â.—WÖ™Á3g…»
+Ï£ö$±ùÓ°Û¨úO¼”; íLžUsE¼9ÌÒj’‹8ÕžüÊ \Îß×Æ{=æ×î(ØÌ´ºx] }} ìµcbÉ8;í>!üÛþ;GÑ—‹(žð‘uÅpeï%¯4T^ê}o8PM
+pÀõeƒæíÛ		ã4‰SÐŒjlûá\ÅóÌY£Ë£Ëø¢wɪäýdä¼czÝåÃnpçOÍÙ„k‚Q¤‚ÕJÎuû»KGÓm+á¢ÁŠ%ÿT+œzøºyøn†§\endstream
+endobj
+488 0 obj <<
+/Type /Page
+/Contents 489 0 R
+/Resources 487 0 R
+/MediaBox [0 0 612 792]
+/Parent 478 0 R
+>> endobj
+490 0 obj <<
+/D [488 0 R /XYZ 110.854 691.108 null]
+>> endobj
+154 0 obj <<
+/D [488 0 R /XYZ 110.854 666.202 null]
+>> endobj
+487 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+493 0 obj <<
+/Length 846       
+/Filter /FlateDecode
+>>
+stream
+xڍUÉr£0½ç+|„TY±„Ø®S59Ìu|›ÌƒŒ©`H;óõÓ‹HÀV*¹€Po¯_/üØÞ=<ªh%µˆt²ÚîWRnDëUk¡tºÚV‚X„2I¸–Réà÷KÓ…‘
+váž=/áßí¯‡G™ƒ¹ÈãmVk¥„LØÅö`µ–*؃0’AÛö¡JƒsÓÕ(‘Á3~š·3¾ú4*¶(†>NGƒ–]¨²ÀŽ“Ä9-ðö5Œ5œdдٝ':”ƒ),
+9ØtünºÑ¢UW’IDàö˜¦ Äh$R°˜B¤’`D HàÙãñÂÒ¢«ø@¡ñPöÝÓFjÊb øxÛX&-Šf¤ÅÀ}ÄE"M"ŠZ”`fx¼š<éû¹F~ú®<Üˍ8ސ‹Ø §Ï ]˜Ý‰!¦.U:¾gW”¶yÅ|àÎv=…Y+-d®]0Ð/籨’·“Xh¥¾„XR¯LTö{~;´Ø>òJ½á#tíÂ0D¦t‡.‡
+͆3¶íÁƒ1•"NµÃ¡@ÉÛ`êZÂâðyýij‰w’ϨCqkc]?tìꥹ˜vô¥âÐ,RÁ°Ø×}‡Cêد)ì‚}šÇY™®KüFbf¡îƒUiÌ|TfêΪZ5$’åŽÖc‘•fŠYÄÉ‚†œÊ:°‚ó±jÆ—¶@¥7¾@؝S#ŠsuÕ${ÚĤiQ´MÅ‚›é|]ì ݵÍhS€˜óZfB¦ébIÜ—'Çâx᤯Ž0Ý°xå¨pÀGD€›2äQçyXŽúÕ7–{bÝ|mi. y!¬KeZ|”´$™ÐÛ¶Ù“Àzjª2KWÒ}ï*ÈMßóÐê4Ëûe5Q`.Îtª«k‡ùÐï´3Šy–„ØÑñý}»ÛÔËÙ-û–§ãfs~™g1´#VÚú¸¦ò=•;`Íëu0¢<X}þ3|Œ~õ]SHí}T¯@xõ-ÝRwvÈì8z"5HtIt4ŸuMœ•:ÎÇæŸcñj½ân,y¸y>šyƒùþbŸ‚CÎs$¤£¡AøüëKofäv?>ÏÈNEmáû7gJÄIÎr‘e9Ó)*ÞýÜÞý˜iãendstream
+endobj
+492 0 obj <<
+/Type /Page
+/Contents 493 0 R
+/Resources 491 0 R
+/MediaBox [0 0 612 792]
+/Parent 478 0 R
+>> endobj
+494 0 obj <<
+/D [492 0 R /XYZ 110.854 691.108 null]
+>> endobj
+158 0 obj <<
+/D [492 0 R /XYZ 110.854 666.202 null]
+>> endobj
+491 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+497 0 obj <<
+/Length 641       
+/Filter /FlateDecode
+>>
+stream
+xÚ…UKs¢@¾û+8JU ¼Ñ£Qcín4[[Tía³ƒ²"¤`|ýûtOÅ¡¼´3Í7ýøú›ñ)<>»®fÛæØ÷µ(ƒU`†V¨¾g:^¨EéŸa^êö°a`j^Í20<߁eúßè»fi†ãš.RÁK&ß]CèQ)FÞô=Ä`
+J0òn‡Ž2Uàÿí1²Èœñûã³=¾èÓÌqÀ!7<³l/‰y.JÖ
×	‡¢YZò
ÃE0äìÄiU•ÒÓ~:궰F^8å¼â֐I/¨±ù;ªÊìù÷ÉìºFᆵCq²È1Y¦jÐ2G¶'¬Y‘³¬¿©#TÍxCÞwݐ°:e5Þ,ߪã¼aé9ìu_nug4d坬ÅhÖLn‘ˆº’Ñ wÐaÅ ”­$‡
+¾!çC0Ä12C†âs™·šcõ…BxBsš„ã`¶w搜Ù@ .1éæN¶¬=Èîd“
+Çâè{wÀ¡i…í€q>“Õxwýáôu¹”šÄø‰óú…Sx]¬&ÎÌfÆtòòò4ÁÙL|YM–sÚýþ63D}X]8ša{¦çù"ñbŽ#1T!™üËqR@°Å<Â3A?}’€|ží\Ï€‹÷<=߃-U8Ñ}£ ΛN(yËÛ›€RÝ·Âsd´¦«A­$q{åc~çe$ö¤M{Ý
å½ÔÇJO\ÕH¥‘|þPi½Ü`†Jʽ½qQˆ¬Q„ìh»Ã¦ë	MXšÂëM¯cvõ:þ'RAŒqYÒïFü¡¨æÔà5W§(Túì‘cúø躁8Ý!p0Ÿl¿âendstream
+endobj
+496 0 obj <<
+/Type /Page
+/Contents 497 0 R
+/Resources 495 0 R
+/MediaBox [0 0 612 792]
+/Parent 478 0 R
+>> endobj
+498 0 obj <<
+/D [496 0 R /XYZ 110.854 691.108 null]
+>> endobj
+495 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+501 0 obj <<
+/Length 873       
+/Filter /FlateDecode
+>>
+stream
+xÚÅVM“›0½ï¯à;…Å\;Ó=ôœ[·‚àY‚3|4É¿¯$Yº™=õŽ±¤§§'9ß·O/¯<rXDñÆÙîÆ Kbg“ďSg+~¹Ià1—¥žÏÝ­—G®¼ôÞïíÏ—W–ƒI'	‡ŽÏyÀ6Æl[IϏw÷`éjðQ×Úã©{VÍ¿0÷Êë_º…ÂXí~G‰–Ç3·ïÆ/Öi»¼$†sU]ìê1x¢EÙʢǏ&Ø4æ­š®G«¦$“ˆÀí1!LȈ‘H¡Ç"¾q{L˜VE#Ì‚Âà¢ÔÍ[ÈâÃÐŽ±pWY‚¢hFPÜF@DsŠP`ÔcüNžàY “‚6Ún…â<RX…d|®$de©ÛƒDBîvH˜<aríä…Nq´@š1+n;C¯øîUYÔõÕzõ°nfYY󡚘ò7)ˆ&²|%h-±–ï+¹û<
+€üEö;Y¾ÃãÐ"Ø¡!
|L{“1ç6íÝäfF5I¡¨²±0zo‹gªˆÂ¨+Ê}­<¾
c f&‘(Ь=cqÙW+S$i<–F	8´cçù“Þ	‹ÅKUÓÃ(°I|g<CqÒªP5ÆÕI]dÝ­¥bÑÌÙ.£†±?âÁ"Ë-þ£:Ÿ3÷dàBHn$1aÎÙ$X
+՝ê]Í2×Øc”KÎïJ@ßÞÂ$„­©—k%̇ÛÎ@ç;³M-bÝÕªë¥= I—,Xš.úø¹ÚÎtÃ3„cåij//`r"»i“5>Jš)&9;2f$ïéÃÚtäY0Kï^[6M¥µyc}L/÷—Ì.ÆÑȱ-Í\érUâÅ<KBÓákMãO–‚-uM®3S¿€lÑ|†Ì
+Q)S­1Ã]ÅÆŽ«¤:T3Rçñ§NúgpëjÎK¥’Ši!0š=po™Ìí虋àS gj½;Ѭžïi—¦cƒ<tÝJ$ÕÐÕAÝáÕaàa‹h”Ó¼|ÕÈŽ"|ž1¦ ‚=ˆFüîéÊ8RC~Ƕ”ó(x¾³wN隺˜ÜôŠ'ºüÄåAž
+!ì]ÀDYÜ"·î/ƒÆÃ*VèºùêÅ2ïº|óúa:þæ…ÉÆñ£$`ÌçøééÇöé/¹9‘endstream
+endobj
+500 0 obj <<
+/Type /Page
+/Contents 501 0 R
+/Resources 499 0 R
+/MediaBox [0 0 612 792]
+/Parent 503 0 R
+>> endobj
+502 0 obj <<
+/D [500 0 R /XYZ 110.854 691.108 null]
+>> endobj
+162 0 obj <<
+/D [500 0 R /XYZ 110.854 666.202 null]
+>> endobj
+499 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+506 0 obj <<
+/Length 400       
+/Filter /FlateDecode
+>>
+stream
+xڍTËnƒ0¼ç+8‚l0k¥æÐ3·¶'b…@¦¿ï.6RB]5—Õ³³3xà©ÜìöqìQJ
+ν²†.%Y”y)OK2¯¬^ýAÔoYïåËnO‹›‘$"9M¼Èb[¨0f™ßÄmõIb“úŸªj¤ÍÝCZØPÉÁ Þ"
B²Úš€¥þԝ–û²ÛšÉAU0ÕH{Ù EoÙ ÷@'Š½wC+8d	I¢b–=αõª8B97Ô~‚ÒUHÍPîêŽF(ØÄVC9Ý
þÞV/ƒò‘mzvª*éuÑ­:DQÇ
+Ãà‰]<èL`‘-àÁatÌÍOÎh¤îqÃ4:òÄÂ2'µämOËqÏïUšÞÊDå(:Óhaâ²
+_m"r\ÖÞÇÂì½52uxŠ½ÃÈê|Wℤ)³@ >™ý}må­Ä;ÄXŠ[5Ÿ˜qu¨ù1Js|Ú[ü¤.ñW”¾ÿïüÐœž¦^H‹œ0nþ
+<Bäæ¹Üü r,—endstream
+endobj
+505 0 obj <<
+/Type /Page
+/Contents 506 0 R
+/Resources 504 0 R
+/MediaBox [0 0 612 792]
+/Parent 503 0 R
+>> endobj
+507 0 obj <<
+/D [505 0 R /XYZ 110.854 691.108 null]
+>> endobj
+504 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+510 0 obj <<
+/Length 1114      
+/Filter /FlateDecode
+>>
+stream
+xÚÍWMs£8½çWøS1c	0pݪÃž}›™ÙP&Â… NþýöÄ$Ê$ǹ$BR«_¿~­–ÿ9Ü}ÿ¡ãJ¢8ÙoǍR»(O“Í>M"d›Cý3H£P*·Jé$8„Eô0séÌS«ÀtáïÃߨ¬£"MñœÝf«u¤ö|¡1á6Q:8Â!dÜu}¨³àÚÚ®¨àŒŸæåŠÿúvÔlQ'ø˜
ZÚPçÁèæ9´ÄÙ§0M`¤‚¶+ºÙœDƒj0刋ìl,ÿo­ÑÊVd‘1 xIaÄb½Æž—©ãÙÒÖ< —8¨zûk§B?_œmG&+ŽoÈJò‹£T³·ÄTáÏi at D“%FÞó¼O£DkÀÊVÒwkF¨2 ƒœÏÐú£„Â1ajÄIù nÅÍV'‘R);Ã#‡͆+R‹Ã±ñ`ÌT”f‰`W°Éã!Ü.Ù',‚Éúi¦xIÅ÷ß“…_ËG]ÚgÓ9_(‚†CISÕÁ¥ƒ?Î?†âÈRÏ¾w (J>"sgbVdKü†UÜãtLÎÔ¼s©†¿¡&ˆ€ó„åŇP@·§Rém/ó5éº|(‰@Á`~hZ
+介Š}¼’q¡2 k)" ýÛ^ä$HFHO
m8¡¿<Žfø@@£˜A¹¡ÀOäË(Šo%'Q(’ñXRøï3‘Æ°=—Lfß³¶ÅŒæÆž×R–·T,}xñŠã•fð0KÜ·–ŠÀ8t®pt’#è@ïwÁâLÌ`p	Á ‡8Éâî:þZ²‚Û&‡k˜\áÒlÉŸpï`Òf
+;Ž{\kæöéüq3þUܨÍk¥÷Eœ@uå…DüØ3ÿå•Ý.Ø–ú.˜÷ž‡uë.PU°é…'ˆfÙF9+ô›œÑÚ¯]ºƒ©¥tmͯ3íw<]| ×µn4² réä‘ʲUé|«¦Áî¸S_6€†co3úƒ~«æ˱1í©a†ø†¤fÄŠ^.=ֈǹu›­¦Å˱!B‚¢6
÷D·ªt	ix·¸}¦Uß-™_öÿÁÕH³ÔȬá»ò½å#®ØɃႉ«Ÿ=´é<J纔u-
6…Ä®ßhž…ËYY9(KIn³ù&üz/d×·0Ì—¿&³9JZ?Sâ`ºÖˆô>V¡[õmzÌ­r([èu÷<AwÖdÏôr²÷l9H÷–O‘$ŸF:¤à£bóèÝ¡²)Nc?ÑA—’WåŠâkÓrÛ{Ãø¸<z”¼ûZ·n8«îéŠâj?EÏ	¢—èÑ{dò=GÒ"ÒÙMK‰åB¦™E¾Þ_e2¿ªrQy–÷ë*§Gf¾š¼ï&ö{KöäH€ïú	5æ°Q”§ª¯¸\Jÿsk¿×_x-¾^„ðû%‹Š	íG1ÿj!ÍÜý{¸û<<Sendstream
+endobj
+509 0 obj <<
+/Type /Page
+/Contents 510 0 R
+/Resources 508 0 R
+/MediaBox [0 0 612 792]
+/Parent 503 0 R
+>> endobj
+511 0 obj <<
+/D [509 0 R /XYZ 110.854 691.108 null]
+>> endobj
+166 0 obj <<
+/D [509 0 R /XYZ 110.854 666.202 null]
+>> endobj
+508 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+514 0 obj <<
+/Length 577       
+/Filter /FlateDecode
+>>
+stream
+xÚmTÁr›0½û+8ŠL¬ !¹v¦9ôÌLM„£1uó÷ÝÕ
+ÇM¸€¤ÕÓ¾÷v¥oõîéYæ‰P<WER÷‰?h•Zq©Ê¤î~1ÍSÁD•î…Šý´Ý	æfN×?žžE^iè,ÙKÉEA¸úÕ¤{%$ëÊ& 
Ôʒ]íxˆ`gœš÷+þ&;:B4s,o‘c*lök$ÚàêŸT+	f‡æ8¬éà¤0hifR:ÀŒô·£Ÿ5¶’r=
+B	à†B7@ÂŒrY°+¹)KÍØÑà&ÏѼ]çãK&Ôiq+Úè[žßù¦Áó¼ƒÄY‘^{†ÏÉáQËÌùjy¡¹’hªE'ïacÉÚ`ÿN=ý£<¬ICæ[÷1
Q<P² ¹C˜»¢DίKÁu©"GH›¶iÓý­—ÈÍpÓ²þ¹*(w­Š騋ýk¿%%²¹w»]0‡äþÊ_âPEþoÓâ1}%Ø…èBJøÍ«Ž‚8ŸhØYÜôN¡9ⶠ¥’ŸJb/™Î`éÖäƒí(𱲄ýž–Gàqƒõ³‰Û ¶ö^¸(ËØà:¨yhçC!ý¤[†ÉœÃ¥ùÏ0¸„HÓõ[†Á#"Ö‚;3XÓSUèž…áGA¸Áë}ס³L¬>ÚàëM÷H5/ã_ 3>ÒÅ>ˆÓSh™xZx)ð¥Y%‹'x©A”š• ‡Nbl÷½ÞýúD¶endstream
+endobj
+513 0 obj <<
+/Type /Page
+/Contents 514 0 R
+/Resources 512 0 R
+/MediaBox [0 0 612 792]
+/Parent 503 0 R
+>> endobj
+515 0 obj <<
+/D [513 0 R /XYZ 110.854 691.108 null]
+>> endobj
+170 0 obj <<
+/D [513 0 R /XYZ 110.854 666.202 null]
+>> endobj
+512 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+518 0 obj <<
+/Length 2759      
+/Filter /FlateDecode
+>>
+stream
+xÚ•YKÛȾûWöDÍ曹ÙÆnàÀ@€döçÀ©wøPHÊòäקª¾j>$Ž“\Ä~TwW×ó«Ö§Çw~󃓸¾‰Æxn…qº~˜<<ÿpâÝÞ?r~ߧ-Jê9ýn$¡3žJnDΩ£¯qø×sŠÝ?ÿòá7“ÑnnɾÞÃޏ]?dÇ/-¼¾ÐdÛÃHGT]ûžcÝžéÊÃÎOœS[r¢¨1
+VxI^ÕµnÔíÖº¶jÎuÙ”-o0òê±êø"˜Íۍ+ÏóDÿRµÏv3êù6Ì¿	Ý0Œ…ÿz|!‚Èsx¿¾D[¸ùAç:¯Ú²pwûÈ‹¿•yA;M˜ÙG†.| FZ,N|Ò¥.0×R§1õ´ÛczD)Êaà†œþŠ©±Ã	™QzæÓ8ï7nðt¡ýà sNe}¦%aè9Rn?ˆŒZ°Ì•Š¤¸1¨ç;ˬÔÕ¼lj
+aA,ù±s`ò‹Õ kkÒ EèX1žº¡$å‡qê\I&÷|‹šrÚ*uX@º#ߝN*Œ¥è“†kqe2ï(ÊVû<²y„&s_ð­«'¾RÎòMê°žx<G÷Ï|‰ß¿lÓ»Ñî:j4ÎLØ=yÓ@¨DXçÔ"©äü+ò$kIŒï|…ãýŠe8
,'°.Ðû^åhð}Å棐Ne¡>÷¬“Þo4ì‹I@²™V¬ºÓ†×ú¡{‰’±=›ØùÌ[7M×Ö¯»ÔwØUcO¬„¹ “!1iÌ•m8$5„}2»ZÇ;|ËV‡ËXª"ŠFéJq$Ù¢Z¶­d}ÓÁeéÆÎ'6nž½žÈê¤ÕŠ-ÆÎp°Æ[•¨Í›“c‡‘òG)<H‡oÄ_uDQ!?W0V~B~¡¤äC|Â8lpÅ.OÁ4×o[.ûœâÁwn—˜h:9°``ã¾|ô†.#ßMÕåÀ²)*q¯{}¤O²&ŠàýâW^àÈC×4ðþÁ2YlZçfñê@	_ãƉ¡ç&Yrs⹯4ˆ–)lIúY©Y<‰BBo­b¸Ô#+8I|ò^qOš>°à ã$^£
+Lñ±üÕTÚ`£#mñWÞo)hl.y]¿b›ªÕ€h…|¯aÃP*xÌi‘{JA1’LÏJNÔYâÉ}¨õÄ«9Æǁ¦´1šrˆx
o}¯,?äföß]=¥–Uê±ï™·Ìi£Çq+Ct%¹“=LúC°ú·æég‘ó•Nn~ÆÀ|^h{’î½îÈbðènß<P.ÂpŽÏñÒjÊ䞊€›ý¥]
+Vû¼Ápµž6.Og&J³Çqú-6+曆7¢ _ò¨d„™i<)'¥“Ǎa¤„ú~ÕQt\O‚Vl2CËéâÂ÷Z¥çz~¨ê’]÷%ýPàÂÌͽ’÷vÝ*¥ö9#€À$¬göœ€2˜QЏ޵oöEÉÊc?*`ûâ²PÈ.­µE…q¶’GD9>Ïe[ö՝®-9h>[êªsŽ¤YŠÃ2mµO‘VÂPÃ8·€Ú¨ÍI‘Ú«TJ€&MIMú3Šfx]®4#E­g6Ð0ÅXH@`Púk5žtOËÐ9‡ò1Pxó
+ñšCK0 9à²^*Œ‹Wö.+MŽî@¶>ºÎ	L¾Ùçk5œ§gè6­yÓ1úr¼ô¢í SI#[Ǫ÷¼°ûû+HÅ¢HW´AKæ_ˆš™Ö5€ùÁB,8B »~H;" êÓ±²w¹º¢ÖH’!D„œafùp{>â½f‚qÀÌ—aDëÚW£ðÚ¢¯É Ó]íVp}Ýùuõ"óZ
JÚ]Æ3RëÔ5Hû¶Nòo,õ”/ªú@芓ÐÅÒv#ûŽaé ú#ð[¨@íkU<—ŠtÌ\jѤ
gŠ‘5¯NÀŽÈ
+b=2ÙÑ
hü-‡?±wx+Ðûùë_ÿ¾žÁî´^ãÊ×Y·/Ï=R at 9µ¹ºÕkhKɶ,}W©g†
+˜-M&Í2Ý´Û¡ëgPsÅtZoñ4$÷º¾eÿ'Š‘<â'©£>Ì…¤Ÿï×9;2Ïh€äæêYç†îTÄô¨¾‰0‘€â³9ß
Ó	gr
J0¾q¶`"aØ(0º@8pQ?}QîOù‚w.=€=Z—¬‘G×jüênd3IŒ°%	¸¾tÃy–÷fAGÌéèÂÄä­‚©"ÞSMIB8éH ™Á™ì0A9œYõ+ž†­2}¢"ª¼«¦ª«¼¯µoƒëÙs†W	—põ®0*à‡¾ÜE¦GF_°
Ãô'³ç!ya©Ñ†CëVÛÊ&@ïf©¿˜…Tµo”žÉ–zVEÆ‘ëyf£äÚ‚Ð
+£6dÝó’×ÁÿawRyÄsf©f\rÞ¢Pæ$™ŠU
 ²Ÿj@Ém”Âà²p\P§ŽÃD­Às©ZûýjŠ4>ÍÑe
+G”s"ÉÔô[‚š»Yu•¢DõÆ…>¹ÜÇDöå±ÜV¼jÊ*F_q÷bkBP‡ÈO³{'âÁ\ã"·ûò8½3!{Xÿ<õ¤‚ÛêG~š
+ äZ<‹ñV%;Z[fÒÐÍ6Mƒ'Á#¶D²dÓåxð,/
+©`Ùû[I–$^Z–óUÌ$c¡¶r•Ƀ‹÷<g[© ±ævŽ£XÍûÙÿyqºæ`ñJ¦ÕȱÑöé$#D6#D¶8Bþ¸
{<˛ǀ& ·¾™ äõ‹‹·®Ï;>c§Ÿã$+y¡•-:[o~qÛú žäe¶£ŒïÙâHõXw ¤rt¥wÂàwWD!G¼~‡¨åq$}`8úòƒ` ݳ«qg!ÕÛ·ÚËŸêj÷(èLˆ7\/æp”PµùG<IQ7v-¸8Ø÷ߺޔ—ñÔÔÊàÂk¥0m7ÏMÝ ²ùš*?q5>U_§ôêòz­‰7vc
+úk<Š
+Œ0+âÈ€‚ãg²ÙŸH*0$©lSRdMO¶®egë™ïúI¶æäoŸ:[,,9¡P?1‘þ°æªÅã†4Y¿AÞ@ÛD}Hþ2v
þf8XlËðEbu
Nf(	òb/¥©d¡ÑP: 1’À„÷ˆ1£Ý|Á©„;¤Xùæû…§¥£š|@qÂò·-Ëÿ]d°
æöËÀ‘–ì›é¯—“>S‚`yÄ–ò/ë¤–«òšÿÍV³—·Ë/*2;l¾c؝–Œ
+홟k†ãQèšÌüoh%ˆÝÌXZN-±ÌQ8CIî¦/j˜}Cf–¨–ý×E×h%ãHXö•œgÏRòžäUC1#lãù÷ÉóqêNÿ þd]©ìŒ£´%†gì¿PD9ãaÓ%K‡
+#3…¯ÆÚÂô× ‘ ËÊ{Õ [Ïœ'Ü_äÿ©}èeNÅ›gëPãj	º'û&Cm~Î2¶`jOÏ‹tÙCõÍ3¡Øq„šþ²Yþ²Çt³Lÿ·È‚Ùí
+ôU”Rk¥©K%	?¢¹a›‹žz÷ëã»ÿ ÿŸuÖendstream
+endobj
+517 0 obj <<
+/Type /Page
+/Contents 518 0 R
+/Resources 516 0 R
+/MediaBox [0 0 612 792]
+/Parent 503 0 R
+>> endobj
+519 0 obj <<
+/D [517 0 R /XYZ 110.854 691.108 null]
+>> endobj
+174 0 obj <<
+/D [517 0 R /XYZ 110.854 666.202 null]
+>> endobj
+516 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+522 0 obj <<
+/Length 1913      
+/Filter /FlateDecode
+>>
+stream
+xڍXIÛ6¾çWz’ƒ±"Š¤–ÜÒ¢A¦-šCôÐô ±d›°,;ZƝß·Q–m!éEÜùÞûÞJý¼zóî£Ê”
+skVèEafÍCbM›ôaUþ§Ób§AÕ”®ÙB7I‚b¡‚»i0ðêú84h{X·ÑÌpÀï3ßÑòB”vWñ-uÕãI©@ö|UÚÀÔ§~‚N¸Xeƒ®)êúõê|è$^±;¥’ï]#§uÝ-þYýö=,•	IH.<³ï>j=E “\ÃVܲn‘'¼¢—½Wh™(Ôpï=T½'<e#2dž‡Ì+tâõ̃³+·U²Åq°Ú¹§3 ìÉÒ.¿
æ\÷Üç]ÕV(é2‰ÂHçWò®/Üé4%-â´›bM
+Ó)0åú/÷{žé‘=j°êxåTãÔš„ ¾m_Ž²YÚn ›É‚#ìl{žlªóõÕ,:J¡3
0¡Rq¾˜QV7°­‘*1Ð!;ïfF‹6ÓØŠfζ—[Te?¯ÅLÙ»+èZ¶PlÅn™Ö	—2 (}Æ’€ýÌäÿÛ”2¥ïMé;Ìœ[×ÓuMÈ:u&&¾Â퉝²jv„W>;t•\Ý! âàkWÔ<û²°6(Z‡‡žkRµàR´Õûa—ÐM£˜ ÚQF´ßž1th¸o„ûj'Ru=[þá–QÁúx €24ní]„à@Ó½g,Ž141…n7Ã
ðŒÛÂ9	!Ì„™	s–p
×f€ì39ůŸ6U¡Mï„Ý̪¨ œ	â®cíƒ>zvM˜Eoa¦£¤ÏCÕÍq*Ä®tœ4Y œrŽIF§S&MlØåБoK</6‚:fÞqô…ÛK¡}¹»u/od›¸¾œiÜ·Aše¢î×ÈF3Òé(	ãʳì0S1BecYoæÄt|Ô~d×Ñ6	£8½r«÷×k
v›}ç~È¡&õ0:	S¿Eíœ+3†'n |œ)zV?Ã…=×@rà|'·Hòù†s³x ¨fÍ9IÁaÓk#AËx©ÈH–ðý†öR
81g.™µòAöiƒ?
+ªÊÌOF»bë³;&¸4Ç8Âp÷’{睫+>r^H€uì ¸¼9¶r”›’¼_LC’ŸÍÃ<Ò·Éþu`L‡¯‘Ò cÏ5hFÌk×õ‚]ØÊö
+ò0N,˜
$&IÜ(PÅ6øíþ@QLÇ©¨.bÕÜ#	¹.ŽC•pÁõë( ’ŒfçJ§¤gXÃÛ6¼4ÝvvQhé•8RuæÑ®¢8èŽ:.'9©ò™]UŸ.¥Ll†fÝ»cÓñ¬TΖ`]Ê4 -5˜ç+­†œžƒJ<½‡îv¡ŸË©6
­ñyòíü?«å_ð}úŸOh¹Ÿ>†ïïsV›gäÔè—)Õ]$ÄOC{q¥é‚ nb="ÄêbkÃÃ.Inéþ‰˜äº>H.óH£i)Ï5`ô”­]ñŸlfTªÂ-–‹Ú5®å˜"V{Ùñ/’åÊ@höºüP£¾35M§Þȯ—­ o{dÞp€°¥úüôםd¦ØS|§úuZ$âÈù»¨”»ŽnQÕ\ÊFÖÈÍŽ—Š¶š­5îåi+‚âG‰}‰á•Ší,X¡¬’# !·]ÏRk
1V^44‰ìbÛóŽ<EjðUDCâ•bر-Éëò©h¸·¬ ú\SÉÙ3Õ½˜ó<pï¨Ö4Œ¶®³ñF‚Ó13cëì89ƒ}Ìe •Â!ñ‰ð}‰ ¢U3 B Ët6Mi@‘ ’T	w$¯ÀÑ:gìܬ4;Z£…È/ ŸøZ£ˆãæ
+†Úí…ŒÖIÐú¤Bu9ûæÀ8ôÜg&5֍„U0£^õE±[pãŸd3Ťâ(-ÝW÷ÈA.‚×Í9 ÐM²7ÏLÞŠ#'–ðâ«‘á½À‚坽Bå’tI,£ ئœ{YHX>e¿Ÿ¤û¹ú\AãŸ/”|ù^ngH⛕Š£àՀ½r_båŒ	ÆÖÓxvü¢šñá<´Ê[ª©àÆ	<yùÍŒdJânë³,be‰À4&“àÙÜTdr>9Rn}]@´zÄëâËcKñ_„Ág<|->¿Ž ®\¿¼Ô`°­šªå·JÉ3XۍàÝX
rÅ]µD[Ð]rÃñvæu,Œ`±GÜk_L፤±ç„Æmy…$6¾ÌoyOÁӥę»utúÿ r/uå⹮⡊Vc
+–¾ª»7‚¥?sõSƒ WéXÍñßϗԍ3s
+SY …¸«ý9ÙÞVð$éX_0…õO+/™N~€(ñ°Úàÿ°¹Øô#¾êRÉnÔ'Ä8yˈñY%e)é…4u]•Rp<½TÍ¥ 1§,twùmÑÊCä„ý±Fäb¦”š!×Tè9	Ö½\äZƒko~]½ù<Ûºendstream
+endobj
+521 0 obj <<
+/Type /Page
+/Contents 522 0 R
+/Resources 520 0 R
+/MediaBox [0 0 612 792]
+/Parent 503 0 R
+>> endobj
+523 0 obj <<
+/D [521 0 R /XYZ 110.854 691.108 null]
+>> endobj
+178 0 obj <<
+/D [521 0 R /XYZ 110.854 450.884 null]
+>> endobj
+520 0 obj <<
+/Font << /F19 220 0 R /F33 248 0 R /F34 290 0 R /F23 223 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+526 0 obj <<
+/Length 1716      
+/Filter /FlateDecode
+>>
+stream
+xڍXKoÛF¾çW>QFÈðýÈ-nk ­“¨Šhz Ä•E˜&.Ùÿ¾óÍìRbÄ ½p_³óÚ™oFº]¿zsFWAìEqzµÞ]ïåI|•&±ÆÙÕºúÛI½Uà„+7ÂÄù¼*b§¯ÚªÛ‡•e±s?<b’8êûªÕuGc«Wÿ¬}sÄÖ+’ü+7½ Ög‘SkŒ±SÕ_ü ÝŽÙ: îÛ*Ì%¥;ÒÊ›æåD¦Z…Í7¶ÂU+îÛq¤Ñ@Ù~Üu×j9Øwqœ?’¹F,,%›`ù,†ÏÈ
+2›mnõkòƒ:%±‹Ôa)pÅ“ÂFæh^öƒœâ`'ûµÙªÔ&de[i9éZ9öJ&‡rWIB^œe	Jä6Ò¡?ƍ°~Ç—FLõzÁœÍFaá”f„ŸX|ä“­¸ÿthÌÚ2KÃÁñ,›üÏ´a.¡!‡¼¡@NŽãÏŠ}zéÜ™žñE6·“3Ÿ:s[jegfëd,)¢ñž¹sl½3ïVyèt=^,rtùh¢+ÄIäÇÎâYo0i É®ñ;çä”^	%…0ÄÂúóm¯ÊÁÚl)
ûR¤àÑ~¨ËFÖ5¼û¤ZHp† +f$\5ÔÏ·eÓàåSŽˆÆc]= 0GpDĸRäE=p4ª™—$…a˜0Ã5B(1ã^.z@ b[øI°ad{Åk8.e÷¾Ö™ÍÂ÷áDhïïᓝÂXHOY&˦Þô%‡Ç[™(:ƒךf^TälÊ?ñ+HÜ!HÀy´”±s}O‹õoôq×ïéû×µ8%ôÈå3/ƒÓ[¢µ‰sMÓŸ>ÑçÃ|?ºô¹›?~>QêA8sîIâ5±˜ÌÑÍå)$Ò¡ƒÕÃ%O¡½¾¥Ów`|ÿ‰¹^“"h{m?þC ÍI£¸ð %_æ^^“F5‚Ú]öeƒxt9xŸ
ÃTƒÓ¡Dy&™>¥žD(Â,Ï9žˆ‚SÆR<á _¦ðWÕBH1MI"$ÍÕ»Ô+Ž<?
1%{L¹·Í*U"J²úRR’{Q˜Û[,útì¬n£l¸šf^š…s¡ÙZq;ñs{­–â>¢^ÙìµÅÚ‰AîÅIj$z+7C)Éipn”Šœmí”É4¤àªÂýlè—'¬|AÚèÅ ÝâÈÈc6
ÓµKo{Ižâ€j1@¤5Ì·M©­jÐ1RãÄo…~æy<Kʹ^îuª³ÌËB«¢ºÝØn‡	¥*ÜlU%(gë  oo¡S,vSŸš£tö|ïØ´l*+˜Ú‚'VÜפ©uNæ¬Q~±sšXöêëX÷J˪4·¶ÜÒRm¦ÚcŽ;§Ê
+Ò~lEßYÉ0ýƒîl½æ™K"·RBiíŸÊÍÙ9=‰Q“)ÀO{@Ag:–^ö8øJ„¡aÆ‚‰ñ«¥á\i*Ù™L`ÂNÆÃ8Èimt鬞D±Pa÷KyâÙL Ü00â3¸GĪÄÞÝsD!o–Rѧ2ÙÜ8îkF·ý¼ÈÂë<)w{âTíëõÃh*-Ç—Óýr™¤f<."ÃÙ„íŠX}ãD`öJ…Ç´zË’Ê䁈Z¡QRÍâÿ¨~ré¤ÛÎ2n³ “G†IøÌå– {¤ÏÍLƒ
+w*©:7†n‰ç…{^°F…ïeÁ…F}«a&¦á†wƒÎ¡18ø_æ±jg1`ú©^Ч´õ’«Ý×”ý©§XK#mÚƒSAžÉL¬L!˜ï *[ÏÊîGi’ñΗ¤Q2—_RŒ]i!ùB»@V†	YJüÑÄôx `—qÔiCëñs‚EÈOýÝ}ƒ»ÔÖÐFØF L¨H%„Ewì%Ó&^æèd
­ðM-@›b!M0£smô¥ñ/Rcj!™Z^ð¼l\$G3¡üö_‘söŠK/hoiõgÛ(6)·EB —L¶Ý=Ù™Ò­üÞÀÎÀ(=uã´e_^sb¡›ÔÓa˜@œ.×z4gйôa”^ÙÎÆøBÒÁ@K}îÀX*yÓÈœ½¬dŽGÖ1Áøç})9ÅÁtQµÜ£T<Ôøû‚xFq2ÑI4Õ42ßJLV戁Ær;Œ¢Ð‹¡[è[
ÛÓïµ §¦‹,¦NÍÈM0/Ipôê—õ«À6W
endstream
+endobj
+525 0 obj <<
+/Type /Page
+/Contents 526 0 R
+/Resources 524 0 R
+/MediaBox [0 0 612 792]
+/Parent 528 0 R
+>> endobj
+527 0 obj <<
+/D [525 0 R /XYZ 110.854 691.108 null]
+>> endobj
+182 0 obj <<
+/D [525 0 R /XYZ 110.854 666.202 null]
+>> endobj
+524 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+531 0 obj <<
+/Length 2348      
+/Filter /FlateDecode
+>>
+stream
+xڝXKã6¾ûW9,l`¬ˆ©Ç{±$,°˜öä [t[hÛr$9=Ãþö­¯Š”¬¶æ¹H|‹õøªŠ‹Ÿ?¨b©TTX»|ÜS+Žrk–©5‘6Ùò±úmõRWO®Ö«Ôê—õF­úõ&±jUwøëÕåÚK£>Ë¿?¸õ¿þü!Inik™$[ÆL•Ö…Ÿòˆïßôq›š¾çŽ>}‰;OhʤVQ\O¨Ü÷®Ýœ\h֝­*áaßÐövä‡r\n´±‘MÔr£ˆ-“2­Ý±ì:º©ÉâÕ#nzà;&ù*ü]Ù½J«oð§óé¿ÜÙ·ÖĆ“öQ˜jž¥K<j,
+¿È³59h׺²w•tp&^¬ ±°Y|æëÄ“{tuåÞÏ© ‹¬-&K{Hüó}Ê#ôÐÈY²×ÜìMmd´öB¿¬m¼*ûù<ÍihãßDòiÝÝÄD6SßG×&Q’%Á‚ ©"%BíKÉ=ét}ËæôDݼXUâêvm½­Ã˜¨€ƒ
+0ØÈ˪ó”Y0Ñ*ûQ1ÙOœLîø(öB»ú=wGR"¥°xL4ÒûXwií¼Ý:ÙYÒÆœÎ)Ô¬Ó(Í÷{lã
+<íéC€«C}|Õ®øòø°ŽË#¾;úlØùºžY܁ 6˜Õû„z'ž8zømeÍö¥Ð”’™<ƒÒ+@BJGIl&òÑ@:'–çæÎß„ÆOÛϐƒ?ç,“ÿÃÑ?I”.è÷‡‘/ÍÇKÓëɳÁr³be Mï
L‘ÊÓ[Ë’‘ÿvPëº¦•Áýõ¼ëëà 40:.feY€ 
-à&-™Ž_°kÚÖÁ6 çjãÑJaZ O‚@ݱé¥Àœ^ûF„\ïH_¯²à÷X™ãQ`%¼‰ÍàEG©Vß
Ùh}²ã¨à1ÅjâC¤D
8–›„¶Z3ç 9]XH.¸	ãµ6«7p¯™Ìk¡?]˜«®sW,£Þ/©ÏÅ›<Ýf/ÿ€,hoIˆËE×|³ôŽ˜\ÙËAµ§s$ÇäpyÐ*ÿ¯=Hãª:{Lë¡áÑù
WXÊ!h†5$ 5ƒ÷ÿ]“5âN©)•KIøxÌÔ§ËѝÜdêàwzVÒÚ5§cˆï_ƒÕ¾Ýáe—ú)3æ†\÷CÝv>(Ï0|t}7"ã>µ¿éBžEÐ ‹1̇Hn#*ÊFìØßHëýL\šaå>:M¼Åjroã[öŠj†®Î#<j ˆæB0B~ÄrÈU¤’‰·+2B¹[à2éà×Ü"#:þþ¼Fd÷ŽY0ûßÍ	*Ï"­óé•î9LHžiþ†CFŒ†xh…‰I‚Vb§S`¤0Š`ôPï`œ1!¹€„f0D,>¸ãE¦»Cs=V~iïèTŽ	SÈ“^:üšR´ÈíæÂÁ	:æZ¿½¬*ÆæÌÌx<œ%6(*‡$!hÀ!.€<Q ^ŒC¨{Wè8ÎóUÐ3@	|
+ü×+°ZÏ'–R~26Dy*)ÿnÝ=}Ãz{÷yNÑZSš’´Oƒ÷iÀë^Ú>Q\-½½%’+ÍÄ$k£$5HfÙ0Q{‹fÑ…)()‹R€Øß\òèPò›/J"£5ä¢?.Š­?l0Xy	mŒxnÜ4+Ô1ß%ì«òHM¤lîå‘‹<†ÀÞ_Ñ<áóô­òàkâÐ_Åat¯|væöDB&’Yû&Bw·)Y¸š¸Ãã:ÇA£w‘‘‡8 ÆPøÑïìĪ¿ÒKdk?»™¨	HVyöîªí2‹ŠLPSen–„÷IÁÜéY]E”£:I¨V¦PrW.<9ds.jGìô)·_à`2nêo¥0xñ9?B¯{•Žw•YZÞnxï¬I
¹ûLòè#ñM?d1&“´ÎÇ=ª°{™¤ä°yâó—îz|–FY6à
ÕP¢UÿkêJ†82G
•EÊÖ;X8^j”)X$9‘
‡¨JŠžáWÇ9«n&¡˜ÛIšDEb'Ñ&l0Õ¤5b÷UÚ’Qãcÿ,
®‡8œ>¯­¶'‡£ÇŸÔ?ø¤	ÛnÊ&äZ¶X¢Á™î¤¢A$Ò|¤¤æõxë¥lK©Y]ÛÁ{2}S…¼‰œoÒGG£Ã|j‚ôÔfC¤F[„<¿nÈémv‡)¶aÒi®g?Ù7œ¾j‰Û9ÉCa·±cA©µGö%2 'ƒ¾äsl5´' ÂÊËYy:(ÏŒ5¯^¨„~1ë²-E²œY˜Yh©`ƒÕ])òðèÒJŸäÈ”$Š3åKȯGQë¦ñEÊ_Ìlûêóðž•_?n@”2;)G†»¤RX 1¾¢qÑǹý¼s¸<cåâ_ä'ñR
™*%H'à؝.~û#^V‹xùë"Ž’"_¾P;ŽTQ,OÄ
C	ô‹O‹ÿÄ6Úæ†ÜP³eJØlÂg¢r
+ at E¤)ÒÝÀs¾,¢"M°ŠÄ˜œ%QªDš¿ôb".Έш)½üóZ·cþƃÁzÈTr2Xz ÉÆãP{«<„ÝÊíƒÎÞòeñ ¥†u \ñzÄ"`
ü|ÃmW†=!+ÛÁÊëy°8!‘’$xÂÚV5ÖþªÉlÄáA³‡-ÐõÚêÝý

å+ÃÃ2]«äêþ~1-*2zû¿”õüF¢2FX°—:?äõâÚX€’ɧ¨Ôžˆ‰eDê½üÃBµò¤¹Ú§¿(˜¶»Ïuxǐ$"^m¯k\š.ý‰ŸþùQ„Sñdv"›ºãý×p¿ZÅÒô{q”íy|	¥~Î
+áO^¹HKeç¤Å/ï•,í5ÊžK at B™ ½,·›—KZ{iÝÞµ,¯-“–1k8FPCryjÔ‚¾W7Ç©¿…DFFŸñÆTJa'«åe%	â~TIcPá Øþ Ø`«4ÓPôšf4$Mw2==(#Í@cÆNêݸþÎô=-Ïà›Ç¨¡H‹æ <'\*ø0Ï%1·i€»ÿy¥rnendstream
+endobj
+530 0 obj <<
+/Type /Page
+/Contents 531 0 R
+/Resources 529 0 R
+/MediaBox [0 0 612 792]
+/Parent 528 0 R
+/Annots [ 533 0 R ]
+>> endobj
+533 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [409.661 284.7 416.386 298.492]
+/Subtype /Link
+/A << /S /GoTo /D (Hfootnote.2) >>
+>> endobj
+532 0 obj <<
+/D [530 0 R /XYZ 110.854 691.108 null]
+>> endobj
+534 0 obj <<
+/D [530 0 R /XYZ 128.787 167.572 null]
+>> endobj
+529 0 obj <<
+/Font << /F19 220 0 R /F33 248 0 R /F34 290 0 R /F25 370 0 R /F7 373 0 R /F8 377 0 R /F37 537 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+540 0 obj <<
+/Length 1277      
+/Filter /FlateDecode
+>>
+stream
+xڍWKoã6¾çW92qI‘ÔãÖh€½Õ·MŠEÇBlɐäu‚Åæ·w>˱ØChr8ožTþ\Ý|¹×z¡”(¬]¬6´“"·f‘Z#“-VÕ×èAZY-Uä6´ìÝ@붥¥ZÆVÙ艶厖ˆmÓúTÓÒxãåñú”‘oŸJPF’·:˝ ¨z†õ©âh<ïãꟅÊradºˆ•Ƥöo/zc©}O‡çÑâ¹Ô‡ð%ü;öðÀF¬ÒT(™\F„¥í àeã-u¿e·tx/ƒáiTÞá÷ûï´|å8ÆÞäÓFßYRE?Þiy|gGM&RÊËÃY‰‰âN@‚ƒÍÔñïWêäÏõðå2¬ÄÃúõ‘–Û›D©‹«ØF%Ûùb¹Ì6‘gnäu7Éõ§\^ëÛÓú‘ΉÎéSúå^“ڏu*
+EùM2¡®ýûežPr÷`’©è´ŒC~qª{ü&Q.Qåá€Sä:&–À‘y°z¸l¾B
+CÍ'½é
„º=ûpÖH¡hxÍz¨ÛæŽ,àa;ÁÛ¯kªž™ö0<¦áp8ƒ‰–"•—Úe¬eJyðJ¶|*ሖYTz
-§^—»]ÏRÙc¿uáèMbÓá;LúãÓ‘µëµV4X#ôø‚=µ¥Û»fIQ
wiZÁÖ®êέ‡ÝÚȽºõqpŸž ìoÌGÅ26ZEÌ7ñ{kÛ…J¥i‡ºAýx¬Ùˆ‘T1Fbù·î3IÕÒŠ"ù圦Yö)§œmRa‹ËÆß–À›¹½ãÝ·%םòž¡©×¸ÒÒçû …ýÆÁK'8Gü9šÝ_Â÷–U¸{.)ôyÄ‘%R½?ì¦ù ǁ6í²dÇëŸ3/ãñ@_ `?Gµ=’#u´šï•¤2{e:¹h,]GV"Mϝunh²ËESsè˜úסLðŒ w¨N&BÜF´i<Óëù¦ìP'nŒoG.2_Ä¡¦P6D®H£]ÝL*ÃCªã>ð…åÂݺ Yv_·ÄÚxÞ<M½£4•Œêm´08™uë}­SÝôuð°Zî#ÈúîuÕÝLNÛ0ÔˆYýå Á×T™_ÇO5=X´+¨GcNk<$PQ9¤¹ŠþèùöØô!KëšÆˆA›ƒþ‚Bõ@Þ<ßÉÕ…õxƁ}˜!ø²[˜0<>`&…±Õ’\Ü°Hn®ÜƒXô~ÂÍUP¼eãÛ¹Æ\C
í8e¶ã4áQ2;	CQtFý×Î4RZ›¥3}ÿìÓa¦½
+Nrl/N§¶fòÄÐQcˆ¢JhÖ |©ôáßX<Øš³Ï$mÕh- ¼Æ”$"ÍSx,bcš‹Ì¡!%ˆÕš+M¢2¹ˆPûøm[/K õO_Û0k»™ƒksAr at 2ý>ÃÇgŒ/˜ºñŸÓ×>dZ䉢Z&ñ©éºúcþÒñAi3—^-²1O?^1³^ç^¡B$j¬ˆÛ`õ´uŸ"+da/‚øJÚhú‡™‘ŒO7Áã.ö@'ïEÊݐO»Ü\Òg3áÌýg’ÿBöµ¹>Õ”3Ù
+•Ó‹ª)’¢ðœ6ÃÝÍ_«›ÿ~N7endstream
+endobj
+539 0 obj <<
+/Type /Page
+/Contents 540 0 R
+/Resources 538 0 R
+/MediaBox [0 0 612 792]
+/Parent 528 0 R
+>> endobj
+541 0 obj <<
+/D [539 0 R /XYZ 110.854 691.108 null]
+>> endobj
+538 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+544 0 obj <<
+/Length 1761      
+/Filter /FlateDecode
+>>
+stream
+xÚ…WKoÛF¾çW=Q@Ä𱤨Þ£R8E »È¡é¦ÖÒ©pWvüï;ßÌP¢,%½p‡û˜×ÎãÛwoÞ}Ìò«tgiqu÷p•¦I\æª,Lœ™ÅÕÝêŸh1›§iVDí,Â#}æƒÝöø±³ïþ|÷1]Ò¹xY0‡äjž•qV|ö½ŸÍ³ªŒÂ†ö[¡›¾ël\ßῈîiXD6ÌèûŒµì¼q~'{ên%DhÚw¤ÓÎ˸ê;eýDR\­Gd =¤)Ͷ޾¥¹¥‰\˜2(#sÉOäÞÃ.X’šØ˜’-	›&Ӂœ´ØðQ¢°Ç!Ø4ŠÓ°Z+akïÚ¡Õ^ùöº£gù³¬Šì 3µÊjvBøž6ØøÈ~
+ñlnÝAðÆ‘dÖªŒ jÛ2Ëg?ª¬×{§3ý3Ê-ªhåØ{»¶†^/¬&V²ÌfÙôÛÝ>ØÁ¿%inºHâdžé•ÜØ	¥ÉëÖ¯vÜÀŸ¢†LìðYã[oá€tÝ^2¥Eœä	9r·k]Ã×G7ã1).¬Ð]/Wš5ÂUñ¢²’¨ìeœíü®>ÚÇbšfèåøƒ9q&ì  —eÕT‡8­‹‚ä€sSü‹vë)|‹,oH?S%Q
L•²5MØ×m«+O ƒþYÒ¢äðt£Ê /r¶›¤ô8DvÂHö“‚|ò¶wóRÙ൱'ZKò7”rÁi”ä–ýƒŒ5J„}à˜ÐÕÁ~ß»ƒ—¼9\ý8Ý©™ÞÖë!ö+{*%¥é$QQÐÿ%Xºåõý^H{½ì¹CŠ·EžQazädxf—zKŽ1EB–°O3Í6kÛÑÍ»’_+÷"îô2'—˜âð­c§È2ºç›•”ç	Í¢‘|åxQZêfN[¼¨­u%æ½Tí‹byràŽÕ-òÑ‚"S珑Û趎¡Ãx¶e©  ³äÜáúyg/¬mWß·zèØJädÓØ1°ÕI)ž_ÐyïµX,XîDy>éDf—™!×`÷3ª#w!ê^ôU©säüø¨ª	ƒe›<U»~Ú]F{B¶5* «ä:ÊXøa¬•¿R5Mʸ,³s]§ºÈ-²¸ÈO妑VÃ÷ê4
+ü¸\'9y¡‰°«+
C"º>AN)hQïšDüuûI¦®Ç¸ÝöLÝh P¥œ=«zX!E–Êûa¬&i•ÄÜy_þ›y£¼E4/¢Û×7B	[¡§bšÌRC°Y´ß️ÐNJ$‰¡©i0¼	cÌÿ:g²*?–¨¬Ê€8*‰<¤Íw`
+7ØÕdÿ¸Û
+Áõ´uÇ~‰9ö*·U™¸’3,&ÓjTø…}6B¥lµ‹Ésj"¨¦%rP3¸º“)£oI‘<oËF¦yÙÚZ¯W"`lÉQs
áE×*¹Ñšk ÿØÿ\­ÖtŒ¤¥ˆ`h×?EUØz¸°+ùh»A^t%ÊyYÝ8@ïéÌÆj8i4œ')-ÉKªc’ú
:¢‰¦%%Æ·A]‘µMï1Ó1^±2·C¿XOF!Kòuc£”	Ø„Žà(µšˆãûù¸”žÆV@넃”oP¯|F,êŽ+Ù¹×¹$>=\«ù fLâéxb1ŠÿÅ•ñž`YuÍËW¯Ò-_ÆKº5èV½[¶³<¥úð–ٍøØ
+2¢RjDk¾¥¹ÙÚ5Cãg·ZS!ýMVv“ž]®Uk«<QI%PTRqá¡•/÷ù«ò¦Äûò6ìd¢ÏÜÉa¹ÊÿêVó7=ÆLÊ—Ñ'Év=¼¸¼@!Ç8¨à¹ÔKn-‘Ÿ‡~ÐËP˃åºÝ鈒‰&‰>Hw+«\<áË°¶Fë1K„öGÍ¡Ú2 ªôê¬2|0úù!Z¬d‰ôÓxÚaF^	ò¦[M0%ÖöÞ2œÛ·­LtVE¬ÇEcçðVŸJú̚ģ‰s(ñh¸±s<¢2¤”äkÁPÄÝûŸÄd§¥<Âß“°2;ãÔ ½¯Y€æ£™a„&ú„^Ræxɍ¯8/jŽŽy‰_}×ҁ§Ã³oÐf© Oå=ÂkŠÎAŸªuŽ!C:JÄæ’yFJ‰{ŒÞ5UÙy•,GàšêÍ	=ö(f<yÚ0F÷……êó	ó¨9ý “û®Qüê¿Ü¦•-`@Ý·Ý¥ÂnÊxY–
+ØУÏÒu/Êo2ð€O›¾åvq	q^VzBJ™Ç9Òùbç©´ª¢ÂÊ›?îÞüÃ\–Êendstream
+endobj
+543 0 obj <<
+/Type /Page
+/Contents 544 0 R
+/Resources 542 0 R
+/MediaBox [0 0 612 792]
+/Parent 528 0 R
+>> endobj
+545 0 obj <<
+/D [543 0 R /XYZ 110.854 691.108 null]
+>> endobj
+186 0 obj <<
+/D [543 0 R /XYZ 110.854 666.202 null]
+>> endobj
+190 0 obj <<
+/D [543 0 R /XYZ 110.854 342.117 null]
+>> endobj
+194 0 obj <<
+/D [543 0 R /XYZ 110.854 236.173 null]
+>> endobj
+542 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R /F38 548 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+551 0 obj <<
+/Length 986       
+/Filter /FlateDecode
+>>
+stream
+xÚ•VK“£6¾Ï¯ðª‚½ å¶[•­$gß²9ÇªÁ2xgüïÓáÇÚ©Ê^pÓR¿¿þð—í˧¯Jo¤ÚT›ín#e)k6•5B™z³íÿÊ‘ËLå…”Êfû /óãt.|̵̖éœÿ½ýóÓWéÀpÖ¢«rS(%dÅN~órœÀì\€§U¡°-tÓdaæßt‘Åt‰¬XóúW¿ü’¦Ôd½o<©³q:âåï ½Ç3´l¹Çø7áPÞ¥ˆÃÀWCO‹È‹Jºl»÷XVÝ1بb©,ŒÊº5[ÿÉHÀ§¼D½Ï¾gÝ{Xö(AÃöéZwšfòGM9|ÜÆž…ž=D~{Þ!CÓ”Ùh²»:¤	h}3­Ðª0÷_;Lé CáÙ?™Y±šÜbX°Îé*t†&¥œÍÆv¦ÚP†Þ>ÆwN˜z
@ok
qÅP1)ÿ$“Fãêdû¾(PœnòíbÊ$uBœ)Ipˆðâóã.e·OŠw<aP€¸®¶w%“Q"™<Ù.|+¥ÁŠRÙî»%9T`[Ф<ñ%‰‰£ƒè¿çªÉHžø @i¢åiöI;Nž"Ϋƒÿ¬ªEÙØԝ	›ºœpBñI'
HfBÂPÞ¨Lpùºr¢ï·åo	ŸÎQ‘˜Î*#+_9sÖά#, ®çwÚÍädñK!>žÞ„UŒפ=!CØLiC
+“¶Ø”åêóvg-ƒ‡8î«ŠI:Ð
¾Ö2zÁ]»#B𡍨*u¥@(Wˆ‰ïôø@d!2l @É‚I¨XEx|ðX
x9ž_W<ãkõ#†šÄþÂ÷û0CK.fÖ´ly`0âɉhAl½ö/ѼÖõJÔ)íâ#3ò¨€DÌ(‘§!tèà-Aèö2üÄç·h"òmþˆ‘ð´áÆåcrt¶#zgù’Í}Éä2¥1¶yZo&hüT\>õ
Àü ´ªDªãßà~ØNÛˆF»;ÖEÂÃl±ÊG À·¶–+×]ÙšÑè*Ûæ
Ö\ë²Ã‘¨¨»sJ‚ˆ
+„÷â„ßF º‹þÒÞè'éuÅùIò q-¬­îVè[iKÌi	ú=‘8•tH.̍‹ÚŸr9>pµ-Ö¸rHÞOzæD]¯-€pòI›à¯I	Mørģطº’W7%¦êZÿ?²®³±÷Ï2®…Õæ'2îÚÈ$tý£ h]úÄÄRKÀbJn3uxøòÛöå_<çjendstream
+endobj
+550 0 obj <<
+/Type /Page
+/Contents 551 0 R
+/Resources 549 0 R
+/MediaBox [0 0 612 792]
+/Parent 528 0 R
+>> endobj
+552 0 obj <<
+/D [550 0 R /XYZ 110.854 691.108 null]
+>> endobj
+198 0 obj <<
+/D [550 0 R /XYZ 110.854 666.202 null]
+>> endobj
+202 0 obj <<
+/D [550 0 R /XYZ 110.854 540.797 null]
+>> endobj
+549 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R /F34 290 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+555 0 obj <<
+/Length 1493      
+/Filter /FlateDecode
+>>
+stream
+xÚ¥W[›F~ϯظÅQ 0\üÖT‰Ò*ª*u¥<4}À0¶G¼Þý÷=—_ÉîV}¹œ9sn|ßáãý›Ÿ£øNdA$äÝýêNˆ0Èer—Ê$ˆ’ìî¾þÛ+澑ô>=–»¹ð:£s_†¡÷Ë܏³Äû.âä‹2öZ\‘Þ·y‘ÀXx½©g¼TâÉÎhxU æ#ÎÚfþÏýï>‹.
+If„w~”Q.É€û@‹È½AU£†0ɼ
+Q捨J7V¢ä½aT¿Äí'ÀûFR8èX@ás›våށ'ckoèUižéFºµ©}ç‹1m£fè
+/’ IR2¾D¯+v—,Ro?èfÍïã–eSó௏¿¢Ò¯p"À•Ìû¬‡‘÷Ú•6æ=žÐGõže¥j¡áÅcý³Ð;[ô8(³Zpâø*	2(âˆüøÊ°ÆX¬PWYÁs‹šÖp…‰·Øà&i}xlþ)$"
+â0¹ˆê[ ÝX
+éá¼Âs»>ÔC%3töÔ?nᬘµS©ÑĶGY>÷Ó“]¢ª†ï¨ÃwÆEyâ¨I;þ‹³gzC«q"|û†Õì¸ty‚ÇÃ?Å
+»â€½ƒa­à±Ü¯áéãÖöëkÐóL¨x9U‰Ïa}Éy<jØŽsù­8­k[4ͧ@xQÙ`‚iNE á›?7êç%ÆGF…+££KîÈîÏ`øEñ×ÇWCDÁÄ›ú-<§>Èf³ÅzØ‘=õÉhƒFïЊºœFšiÝÄÓJU°Ö|
+íúø„ƾV¾Ø‚±–rÉà]ogWuóŠ¬S({¾«"ԍJ;[ ãY¥_¹ðEäyv“ÝSE5Ï÷-¬ä
+·}Q±Œ/€Ã¢wD厀Œ“ØkÚ‘W¡h`UñdÜØÁÁá|UöøÐs¯, “¯€´÷VåÞêþ_¢{憫Kô®£Ë©b|”,ò².ë‰kàœ,ˆ] gG Îxøh’̽~O¤rz ¦LŠyÁ¸QÈ2ÄC=_à79ôÚ1ÌŒFäÃÀ"ZZ+t1ͼnooÓîÝ°`ÉS-ßÎ%p/bƒ
+&ªëÛF;$ 8ñ,Ù¸˜ñ(zlz¿ÕÌ=¢à«a۝â¸Â€òD!Ñj°BCköÀ:É’-Q®­O;\ÇâÈiÃð:Ñ`¸º‡÷S„ëˆT¯˜üžPQ»ïyõHž®{&þá({A§ð–OÄZòBWR/ÃAN<GÌåTèTÃäÞÓ<<NÀD}ý¡GJkèlÅÆü
 ®œK+æ˜Á{¹×¦æáÉâžn¿лQ½âmJÙ¯ˆ³´îͪ^wîžMiG€ÛƒÁ¢nÙ_ŸÛ/2C«Á…~ûrK1 °T†ÑÊG…ï Ç®Ì,«tøµkf„"
+¢¬¸È#¦wš¸	•­xhš6„Y4'Ž³g@—ÚÙÒñƒ¤#È(¶±³g¼Ú¤ãÀ Ã‰þ‡ÜÇKçÝɏ”ʶ)ÈbÔ qÞùÜøЯs!¨«ó€Y™MH–H±·ü! Q\…
+lmh	¨¬€5’ÆdLYÛ&™–@n¢.Ež"”
¼ÑP5a]"³B3·Š@Bf‰ÙpkBi8œ“	ÅÔY{ˆ%‰Cð[5l<ãlxúq2f˜¸dÒ ¼ú8” >ÌuÒ0äÆk£ÖT·&‰0²Â¹‚À¥ùùQ”Œø8¨8Ë<tNŒ¯`ƒNZÑüˆOÌè¬H½?‘ÎP^,…t†ó’§V%‘µìÜÍ
+þˆÔTBâ~mëÅrµK¥éŸuð/%1˜ž[Ú¹mVb›È•à£ûÁ¬öÔ/,•b>±Ûþós„æðvh[L¡±8ý±…Îç Âd8* sËɺ4ĝ7Ÿîßüãýendstream
+endobj
+554 0 obj <<
+/Type /Page
+/Contents 555 0 R
+/Resources 553 0 R
+/MediaBox [0 0 612 792]
+/Parent 528 0 R
+>> endobj
+556 0 obj <<
+/D [554 0 R /XYZ 110.854 691.108 null]
+>> endobj
+206 0 obj <<
+/D [554 0 R /XYZ 110.854 666.202 null]
+>> endobj
+553 0 obj <<
+/Font << /F23 223 0 R /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+559 0 obj <<
+/Length 926       
+/Filter /FlateDecode
+>>
+stream
+xÚ¥VMsÛ8½çWxr’f"–ŸúÈqgš™îe/¾mö Ht¥­,¹²T7û돤+UÛéôb A ÿØß¼{ÅNV³ÛHâ,7z—ͤÎvûúï课²q¢¹ˆžc™EC,¢ºŒš2–yôÖ°ãin»úzó<z­Fò£]"º#‹äQIz×ùÕì
,“7´g¡³‡7–qîû¶ÿèy4Ö/ÀûtêÚ
+g¹£Ú¡§‹ÿÙÿ¹ã»Dh¦uêRzˆsэ%ÓhjJœs-#Og<—ûÁxž Ó|
+«ˆQíiòú¥õ;S2Úr²ËÁÖ»?
+¥—ì¿.B5#jùÔÙ[¿ýà̶Cv"ºÇµß=(uUJBfL¹KâüDÛ*Šk„Ž’
+j3Zo¡à.
É¿(@W³·ûœg?´ø=¸}GúuWpŠ³,
à×9Ø/¸|~ûÈ
ü#þØ{k06wè°’\\`èõ=¢”.*m¯.ŸÁ/Ø'ØÝšˆn=+®&B1ÉÅ
+“‡8‘…\1ú‰ÀvB»|{|A§>r¡;ëåªì:[oÀ/TÁ„0T„ºÂ÷*­{¦‚2x¯;Ä(?ûÚÇ;–ŸÐFv}AûÕC@àòŒMüܸ%RäLjU#"ìè»	ü®ïå	¥zÛ(néßù\žàòìåÉÉ'ðr”B0ÎÕ/ƒb˜–"x•Óªa¨¿×KSy^O«œå©Yµô>Î)(¡#²¨¦&òSiô†W:8Cþ:,JJPdͯ@&¯Þ7díµ)ŽË`êµµõgMÍhƒ çxÞjaY¤Ì_Zø[|¤f)Ï_HóíA)QqõëVÇð[Z}£}”Ö,Wr…bÙo_*–Šô·x϶¨CÌÙÏ¡(˜Ju؆g€š=P…ò£àæ Ô®œû
+ÕnÜ#¡
+W0Ô±<âåf5àS•½P>t%äÓ9ë†ÄOHC9¥+È^(D{SõÚ8$ÿ°qò‚ñ|ÉþÒÐ	Ô‘4.1	
E¦Çz÷då°‰Ñ*ú0ùŸT.=q½—F2ÿä•6ÝsÖþ‡I£2áÕÁ/…‰@Rå­Ô7±)ÎøB€N„ÍVȬÚ}ܾ<—S³5™*
+6ƒ<Œa”®$˜
+4ÔPÿ
+Ó«\µËHuU±ô¬ŸÃ	Ë ¹Çs²xÐ?ª¤*4ãR:—T`éæýþæύ@íendstream
+endobj
+558 0 obj <<
+/Type /Page
+/Contents 559 0 R
+/Resources 557 0 R
+/MediaBox [0 0 612 792]
+/Parent 561 0 R
+>> endobj
+560 0 obj <<
+/D [558 0 R /XYZ 110.854 691.108 null]
+>> endobj
+557 0 obj <<
+/Font << /F19 220 0 R /F33 248 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+564 0 obj <<
+/Length 1032      
+/Filter /FlateDecode
+>>
+stream
+xÚÝXKs›0¾çWøètAH¼®ifÚ³ol	‚=€óø÷Õ.-FrœN§‡^4
+Ù÷~û¿nnîB¾b‰²hµÙ¯ü4«˜Ç~ÈÙjSü\o
+ùvûkóãþ+ZægÒ+/ä~’	¤Ê··lݼ¨cÛõꔝ:ú»[/bb-àGá‹ CŽm•:^äøà鱗UçáÂ
+u €hÍÔ•ÂX¢¿‹uÞ¡dž)³ÙÊcJ¼ˆQ|˜²l¼p"‡G†€'„ E‘ÞLfd5ù ÆÎWøZ€çZiª&VQ	{-Aþ§->--BcjuThÜœÁT¿«£–Z·ú#¶q5êù#:>’f‡Õ=™64pcø}‹!Yü‚ÏGÅx”oŒ‡ëÛ„Ö	gÆwš+ïIh™rÙÔÑIе…ÈnñCۙȊ`V)òî ’ò'u”-0œ f…Ž	ϪhB6–ÙÃ3B…Í5åMè{LRBÝY<Æ\xLÎIp"ƒ!ƒ§”:°	!‰‘;;€_	G“#tŸáhz¢*šI[´Ûã_ !·8°ÃLC-Ëöê	®ý#è;7ֲȢ÷ÿÏ"Ö
+$íÐPtÛ2GH}uŽ¥RB°¥Âm5|.!?aIbº#à2k ®àÜÛXIIÓáH\Ôa¢.‡“ƒaÏÏ[Ëd°5eì¬ç¨ì§ÛPC fe«Ñ2èV lvArº$H0³õpú¿Ñ韹8 SÊFO¿’VÈPº¡Z8’ ^‰,ôY4À £RcÎ04Ç…Õê.ŒN«‡è‚ó&ºP’6è§WðÀŸ¡Xןí¥1:H8b (xgm!™'c*óŒT#w	o`’WåI#v”YÊ‹Ð7’¶%§lÈõ¶j°Ï͍d–^$¬Ih5tzééQ™_¬Œ3Ž±ŸS$@Ưa­0w%qVØ&Æ9[3GeÑÊF®/Nev¶öú“ÊŽÂ÷ÛÕ'5¶ÃŽƒ]§Äµn^Kñ2–+U|E`q‹n
+°ýÕÉ:*<éejZ%ÿd®RÀºflHÛ
+ÝpͦoߺÙ8J§	~6m/³šÌ…$ gÓ”ŒšçDôT÷´§Yô#m•#D ðûw’ȱÙÓÎÕw´MºHG,U3Ž”‹§ówˆºbxÛ°y$‘|föÙÅ
o.éÇ-M—™ué#xÄ©µO»šämŒ0²ÎŽû$ØmÙ'¹cÀÁÚƒŸïôË á°Æ~Ñö~ÊôVØåC=ƒëò™¿ŸÅÏÚó‚“|PûÙ§/3#’¼ææ[–×`øɃeä'/æ>ã©JYà6øãP»ù¶¹ù
{°ÝJendstream
+endobj
+563 0 obj <<
+/Type /Page
+/Contents 564 0 R
+/Resources 562 0 R
+/MediaBox [0 0 612 792]
+/Parent 561 0 R
+/Annots [ 567 0 R 568 0 R 569 0 R 570 0 R 571 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R 577 0 R 578 0 R 579 0 R 580 0 R 581 0 R 582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 591 0 R 592 0 R 593 0 R 594 0 R 595 0 R 596 0 R 597 0 R 598 0 R 599 0 R 600 0 R 601 0 R 602 0 R 603 0 R 604 0 R 605 0 R 606 0 R 607 0 R 608 0 R 609 0 R 610 0 R 611 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R 625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 656 0 R 657 0 R 658 0 R 659 0 R 660 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R 674 0 R 675 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 681 0 R 682 0 R 683 0 R 684 0 R 685 0 R 686 0 R 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 694 0 R 695 0 R 696 0 R 697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R 729 0 R 730 0 R 731 0 R 732 0 R 733 0 R ]
+>> endobj
+567 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 609.78 197.978 620.739]
+/Subtype /Link
+/A << /S /GoTo /D (page.47) >>
+>> endobj
+568 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 584.375 234.889 596.33]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+569 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.201 584.375 259.497 596.33]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+570 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.808 584.375 284.105 596.33]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+571 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 570.926 164.005 581.885]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+572 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 570.926 188.613 581.885]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+573 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 570.926 213.22 581.885]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+574 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 570.926 237.828 581.885]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+575 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 570.926 262.436 581.885]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+576 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 570.926 287.044 581.885]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+577 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 556.48 241.041 567.439]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+578 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 541.038 234.889 552.993]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+579 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.201 541.038 259.497 552.993]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+580 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.808 541.038 284.105 552.993]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+581 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 527.588 164.005 538.547]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+582 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 527.588 188.613 538.547]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+583 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 527.588 213.22 538.547]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+584 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 513.142 210.281 524.101]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+585 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.833 497.7 204.13 509.655]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+586 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 484.251 167.218 495.21]
+/Subtype /Link
+/A << /S /GoTo /D (page.9) >>
+>> endobj
+587 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 484.251 191.826 495.21]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+588 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 484.251 216.433 495.21]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+589 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 484.251 241.041 495.21]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+590 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [251.352 484.251 265.649 495.21]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+591 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [275.96 484.251 290.257 495.21]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+592 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 471.465 164.005 480.764]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+593 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.833 454.363 204.13 466.318]
+/Subtype /Link
+/A << /S /GoTo /D (page.48) >>
+>> endobj
+594 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 439.917 173.37 451.872]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+595 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 425.471 222.585 437.426]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+596 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 401.063 191.826 413.018]
+/Subtype /Link
+/A << /S /GoTo /D (page.9) >>
+>> endobj
+597 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 401.063 216.433 413.018]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+598 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 401.063 241.041 413.018]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+599 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [251.352 401.063 265.649 413.018]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+600 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [275.96 401.063 290.257 413.018]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+601 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 387.613 164.005 398.572]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+602 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 387.613 188.613 398.572]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+603 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 387.613 213.22 398.572]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+604 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 387.613 237.828 398.572]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+605 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 387.613 262.436 398.572]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+606 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 387.613 287.044 398.572]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+607 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 373.167 164.005 384.126]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+608 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 373.167 188.613 384.126]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+609 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 373.167 213.22 384.126]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+610 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 373.167 237.828 384.126]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+611 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 373.167 262.436 384.126]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+612 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 373.167 287.044 384.126]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+613 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 358.721 164.005 369.68]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+614 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 358.721 188.613 369.68]
+/Subtype /Link
+/A << /S /GoTo /D (page.43) >>
+>> endobj
+615 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 343.279 210.281 355.235]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+616 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 328.834 167.218 340.789]
+/Subtype /Link
+/A << /S /GoTo /D (page.9) >>
+>> endobj
+617 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 328.834 191.826 340.789]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+618 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 328.834 216.433 340.789]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+619 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 328.834 241.041 340.789]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+620 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [251.352 328.834 265.649 340.789]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+621 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [275.96 328.834 290.257 340.789]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+622 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.833 315.384 204.13 326.343]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+623 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [214.441 315.384 228.737 326.343]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+624 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [239.049 315.384 253.345 326.343]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+625 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [263.656 315.384 277.953 326.343]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+626 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [288.264 315.384 302.56 326.343]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+627 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 300.938 164.005 311.897]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+628 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 300.938 188.613 311.897]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+629 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 300.938 213.22 311.897]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+630 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 300.938 237.828 311.897]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+631 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 300.938 262.436 311.897]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+632 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 300.938 287.044 311.897]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+633 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 286.492 164.005 297.451]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+634 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 286.492 188.613 297.451]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+635 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 286.492 213.22 297.451]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+636 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 286.492 237.828 297.451]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+637 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 286.492 262.436 297.451]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+638 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 286.492 287.044 297.451]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+639 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 272.046 164.005 283.005]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+640 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 272.046 188.613 283.005]
+/Subtype /Link
+/A << /S /GoTo /D (page.43) >>
+>> endobj
+641 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 257.601 173.37 268.56]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+642 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 242.159 241.041 254.114]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+643 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 228.709 216.433 239.668]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+644 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 214.263 216.433 225.222]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+645 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 189.855 173.37 200.814]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+646 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 189.855 197.978 200.814]
+/Subtype /Link
+/A << /S /GoTo /D (page.44) >>
+>> endobj
+647 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 175.409 191.826 186.368]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+648 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 160.963 210.281 171.922]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+649 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [152.922 146.517 167.218 157.476]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+650 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 146.517 191.826 157.476]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+651 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 146.517 216.433 157.476]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+652 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 132.071 197.978 143.03]
+/Subtype /Link
+/A << /S /GoTo /D (page.49) >>
+>> endobj
+653 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.833 116.629 204.13 128.584]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+654 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 608.784 397.38 620.739]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+655 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 608.784 421.988 620.739]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+656 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [432.299 608.784 446.595 620.739]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+657 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 595.334 391.228 606.293]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+658 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.539 595.334 415.836 606.293]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+659 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [426.147 595.334 440.443 606.293]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+660 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [438.451 580.888 452.747 591.847]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+661 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 565.446 397.38 577.401]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+662 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 565.446 421.988 577.401]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+663 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [432.299 565.446 446.595 577.401]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+664 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [456.907 565.446 471.203 577.401]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+665 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [481.514 565.446 495.811 577.401]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+666 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 551 397.38 562.956]
+/Subtype /Link
+/A << /S /GoTo /D (page.9) >>
+>> endobj
+667 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 537.551 391.228 548.51]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+668 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 523.105 403.532 534.064]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+669 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [413.843 523.105 428.14 534.064]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+670 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [438.451 523.105 452.747 534.064]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+671 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [395.387 508.659 409.684 519.618]
+/Subtype /Link
+/A << /S /GoTo /D (page.44) >>
+>> endobj
+672 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [413.843 493.217 428.14 505.172]
+/Subtype /Link
+/A << /S /GoTo /D (page.44) >>
+>> endobj
+673 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 478.771 421.988 490.726]
+/Subtype /Link
+/A << /S /GoTo /D (page.45) >>
+>> endobj
+674 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.539 465.322 415.836 476.281]
+/Subtype /Link
+/A << /S /GoTo /D (page.45) >>
+>> endobj
+675 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 450.876 421.988 461.835]
+/Subtype /Link
+/A << /S /GoTo /D (page.45) >>
+>> endobj
+676 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.539 436.43 415.836 447.389]
+/Subtype /Link
+/A << /S /GoTo /D (page.45) >>
+>> endobj
+677 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [419.995 420.988 434.291 432.943]
+/Subtype /Link
+/A << /S /GoTo /D (page.45) >>
+>> endobj
+678 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [432.299 406.542 446.595 418.497]
+/Subtype /Link
+/A << /S /GoTo /D (page.46) >>
+>> endobj
+679 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.539 393.093 415.836 404.051]
+/Subtype /Link
+/A << /S /GoTo /D (page.46) >>
+>> endobj
+680 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [413.843 378.647 428.14 389.606]
+/Subtype /Link
+/A << /S /GoTo /D (page.46) >>
+>> endobj
+681 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [370.78 364.201 385.076 375.16]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+682 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [395.387 364.201 409.684 375.16]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+683 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [419.995 364.201 434.291 375.16]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+684 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [444.603 364.201 458.899 375.16]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+685 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [469.211 364.201 483.507 375.16]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+686 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [493.818 364.201 508.115 375.16]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+687 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 349.755 375.711 360.714]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+688 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [386.022 349.755 400.319 360.714]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+689 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [410.63 349.755 424.927 360.714]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+690 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [435.238 349.755 449.534 360.714]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+691 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [459.846 349.755 474.142 360.714]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+692 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [484.453 349.755 498.75 360.714]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+693 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [509.061 349.755 523.357 360.714]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+694 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 335.309 375.711 346.268]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+695 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [386.022 335.309 400.319 346.268]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+696 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [410.63 335.309 424.927 346.268]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+697 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [435.238 335.309 449.534 346.268]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+698 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [459.846 335.309 474.142 346.268]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+699 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [484.453 335.309 498.75 346.268]
+/Subtype /Link
+/A << /S /GoTo /D (page.43) >>
+>> endobj
+700 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 310.901 391.228 321.86]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+701 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 295.459 403.532 307.414]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+702 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [370.78 281.013 385.076 292.968]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+703 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 267.563 403.532 278.522]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+704 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [444.603 252.121 458.899 264.076]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+705 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [469.211 252.121 483.507 264.076]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+706 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [444.603 237.675 458.899 249.631]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+707 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [469.211 237.675 483.507 249.631]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+708 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [493.818 237.675 508.115 249.631]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+709 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 224.226 375.711 235.185]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+710 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [386.022 224.226 400.319 235.185]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+711 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [410.63 224.226 424.927 235.185]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+712 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [435.238 224.226 449.534 235.185]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+713 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [459.846 224.226 474.142 235.185]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+714 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [484.453 224.226 498.75 235.185]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+715 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [444.603 199.817 458.899 210.776]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+716 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [364.628 184.375 378.924 196.33]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+717 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [426.147 169.929 440.443 181.885]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+718 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [450.755 169.929 465.051 181.885]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+719 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [475.362 169.929 489.659 181.885]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+720 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [499.97 169.929 514.267 181.885]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+721 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [358.476 146.517 372.772 157.476]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+722 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 146.517 397.38 157.476]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+723 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 146.517 421.988 157.476]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+724 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [432.299 146.517 446.595 157.476]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+725 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [456.907 146.517 471.203 157.476]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+726 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [481.514 146.517 495.811 157.476]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+727 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 132.071 375.711 143.03]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+728 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [386.022 132.071 400.319 143.03]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+729 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [410.63 132.071 424.927 143.03]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+730 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [435.238 132.071 449.534 143.03]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+731 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [459.846 132.071 474.142 143.03]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+732 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [484.453 132.071 498.75 143.03]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+733 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 119.286 375.711 128.584]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+565 0 obj <<
+/D [563 0 R /XYZ 110.854 691.108 null]
+>> endobj
+566 0 obj <<
+/D [563 0 R /XYZ 110.854 624.392 null]
+>> endobj
+562 0 obj <<
+/Font << /F23 223 0 R /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+736 0 obj <<
+/Length 1029      
+/Filter /FlateDecode
+>>
+stream
+xÚÕX=sÛ0Ýó+<&w±#R¤%­½k†^Go½²EÙjl+•å$í¯/š"ƒ¶×.
+£  > |YÜ==§éDˆY¡õdQÛS2˵šÌµšI•MՏûº}÷±uÇãÞ>ªÇ‡©ê^$öNýÁ¾Ëü¹ðú^Ú£||ø¹ø6I{˜L…š)5Ç{¤
+¦äÜì»ÜŸ‹ 
+°ïRg3™K5‘ö&àŠ…§Œ.ҝ}”=1Ÿ3Öë¤@ÔxïDL¬Ý…€==xå5¤š%™ÓX¯azPþsÖœù5H4U0_07¥ýû„¶æ¼®ÆîHÆ0Õ9ÀI¤)«~7kûØô$H5DFŠëë(å'*Ž“9ÁIAê$ý9
*!•—Låuð~»…ÔOEÐÖ±@O¢2ˆÎ9Ñšfò§ÌØDz\Ùçü~j§*ÒBzÈ
+DÒ!HWHA2ëÓí«‚m~š’ì¨Íb}Å™SrÎegÕbf»ÛR‚h!-$)IôjHIN‚MÁVª‰tšúvð]€IoW/Ї€¸ÃábWiOºÿJ4‹d/7}è–FNSÿ!ÉÑaƒÔ½&TÆ“Kb&Ôgæ)œ{Ú€'+€§ÙAYöý˜L¹Y:–³ì=ºÛ=qÅ'(MhZc¦pq×/!XÇ%hðè)›Ä«Ï¦°+G%*>?ߌATžïZ‘m"¸RZ\b2öv}v;f]C‹4tþòẪCC^ÉiëKÚ`uoç6Óï~T÷›‹ƒÙ³mEÚ-KæZã5Ζ8Ž[
¶Ê qé­D²©píc·+GàHSœ{ -€ÉIìØ‘Š€û³ü¤î^Ç%ʘ;P#õ¾HH‡ŽÎç)Áz+‚½¡©³ØÇÌäT¶³%n“ 21­¹dƒÍDÓe-fó¼¢áúi±¿vrÚš¢4H㋳l?èì`X3Ⱦ•¸²¢s[U;]ÑúuuÚƒì![ÁåwyqF
*ì“[û@&?jOŸïÃȃ3ˆvØmOJ¢9Üc“}¸uÚ\eNÖQz{…eÜ :Ž§7R”¼¨½<â⁉
+Ÿ\çÕܹ}g­¡ŸdœõƧ=3õûðù…€	
+« ˜œ¶0°%ê˜zLÕ9A1Wp§ ½!"€w¢oèÞ‘žœÉrâ¦ó¶=P`pIrÂ`¾]!å]v~¤3ŠÛ<ZüÞû
_8©ÍY!Øo9œí[oHR’ ف9[0¼¼3[o¶öV
€+)õkéâS}1â§gQ`Le:“yfZÂÎsTœã&u÷uq÷SDÄEendstream
+endobj
+735 0 obj <<
+/Type /Page
+/Contents 736 0 R
+/Resources 734 0 R
+/MediaBox [0 0 612 792]
+/Parent 561 0 R
+/Annots [ 738 0 R 739 0 R 740 0 R 741 0 R 742 0 R 743 0 R 744 0 R 745 0 R 746 0 R 747 0 R 748 0 R 749 0 R 750 0 R 751 0 R 752 0 R 753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R 761 0 R 762 0 R 763 0 R 764 0 R 765 0 R 766 0 R 767 0 R 768 0 R 769 0 R 770 0 R 771 0 R 772 0 R 773 0 R 774 0 R 775 0 R 776 0 R 777 0 R 778 0 R 779 0 R 780 0 R 781 0 R 782 0 R 783 0 R 784 0 R 785 0 R 786 0 R 787 0 R 788 0 R 789 0 R 790 0 R 791 0 R 792 0 R 793 0 R 794 0 R 795 0 R 796 0 R 797 0 R 798 0 R 799 0 R 800 0 R 801 0 R 802 0 R 803 0 R 804 0 R 805 0 R 806 0 R 807 0 R 808 0 R 809 0 R 810 0 R 811 0 R 812 0 R 813 0 R 814 0 R 815 0 R 816 0 R 817 0 R 818 0 R 819 0 R 820 0 R 821 0 R 822 0 R 823 0 R 824 0 R 825 0 R 826 0 R 827 0 R 828 0 R 829 0 R 830 0 R 831 0 R 832 0 R 833 0 R 834 0 R 835 0 R 836 0 R 837 0 R 838 0 R 839 0 R 840 0 R 841 0 R 842 0 R 843 0 R 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R 849 0 R 850 0 R 851 0 R 852 0 R 853 0 R 854 0 R 855 0 R 856 0 R 857 0 R 858 0 R 859 0 R 860 0 R 861 0 R 862 0 R 863 0 R 864 0 R 865 0 R 866 0 R 867 0 R 868 0 R 869 0 R 870 0 R 871 0 R 872 0 R 873 0 R 874 0 R 875 0 R 876 0 R 877 0 R 878 0 R 879 0 R 880 0 R 881 0 R 882 0 R 883 0 R 884 0 R 885 0 R 886 0 R 887 0 R 888 0 R 889 0 R 890 0 R 891 0 R 892 0 R 893 0 R 894 0 R 895 0 R 896 0 R 897 0 R 898 0 R 899 0 R 900 0 R 901 0 R 902 0 R 903 0 R ]
+>> endobj
+738 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 650.594 197.978 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+739 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 650.594 222.585 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+740 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 650.594 247.193 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+741 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [257.504 650.594 271.801 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+742 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [282.112 650.594 296.409 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+743 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 637.144 164.005 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+744 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 637.144 188.613 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+745 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 637.144 213.22 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+746 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 637.144 237.828 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+747 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 637.144 262.436 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+748 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 637.144 287.044 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+749 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 622.698 164.005 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+750 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 622.698 188.613 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+751 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 622.698 213.22 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+752 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 608.252 173.37 619.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+753 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [152.922 593.807 167.218 604.765]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+754 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [146.77 579.361 161.066 590.32]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+755 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 579.361 185.674 590.32]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+756 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 554.288 185.674 566.243]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+757 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [146.77 539.842 154.914 551.797]
+/Subtype /Link
+/A << /S /GoTo /D (page.9) >>
+>> endobj
+758 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 515.766 191.826 527.721]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+759 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 502.316 197.978 513.275]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+760 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 486.874 173.37 498.829]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+761 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 486.874 197.978 498.829]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+762 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 486.874 222.585 498.829]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+763 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 486.874 247.193 498.829]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+764 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [257.504 486.874 271.801 498.829]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+765 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [282.112 486.874 296.409 498.829]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+766 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 473.425 164.005 484.384]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+767 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 473.425 188.613 484.384]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+768 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 473.425 213.22 484.384]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+769 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 473.425 237.828 484.384]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+770 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 473.425 262.436 484.384]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+771 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 473.425 287.044 484.384]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+772 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [165.225 458.979 173.37 469.938]
+/Subtype /Link
+/A << /S /GoTo /D (page.5) >>
+>> endobj
+773 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [165.225 444.533 173.37 455.492]
+/Subtype /Link
+/A << /S /GoTo /D (page.6) >>
+>> endobj
+774 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [239.049 429.091 253.345 441.046]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+775 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [263.656 429.091 277.953 441.046]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+776 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [288.264 429.091 302.56 441.046]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+777 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 415.641 164.005 426.6]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+778 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 415.641 188.613 426.6]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+779 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 415.641 213.22 426.6]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+780 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 415.641 237.828 426.6]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+781 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 415.641 262.436 426.6]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+782 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 415.641 287.044 426.6]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+783 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 401.195 164.005 412.154]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+784 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 401.195 188.613 412.154]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+785 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 401.195 213.22 412.154]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+786 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 401.195 237.828 412.154]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+787 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 401.195 262.436 412.154]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+788 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 401.195 287.044 412.154]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+789 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 388.41 164.005 397.709]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+790 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 371.308 222.585 383.263]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+791 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 371.308 247.193 383.263]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+792 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [257.504 371.308 271.801 383.263]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+793 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [282.112 371.308 296.409 383.263]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+794 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 357.858 164.005 368.817]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+795 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 357.858 188.613 368.817]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+796 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 357.858 213.22 368.817]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+797 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 357.858 237.828 368.817]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+798 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 357.858 262.436 368.817]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+799 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 357.858 287.044 368.817]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+800 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 343.412 164.005 354.371]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+801 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 343.412 188.613 354.371]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+802 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 343.412 213.22 354.371]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+803 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 343.412 237.828 354.371]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+804 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 343.412 262.436 354.371]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+805 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 343.412 287.044 354.371]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+806 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 327.97 247.193 339.925]
+/Subtype /Link
+/A << /S /GoTo /D (page.13) >>
+>> endobj
+807 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [257.504 327.97 271.801 339.925]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+808 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [282.112 327.97 296.409 339.925]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+809 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 314.521 164.005 325.479]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+810 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 314.521 188.613 325.479]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+811 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 314.521 213.22 325.479]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+812 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 314.521 237.828 325.479]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+813 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 314.521 262.436 325.479]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+814 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 314.521 287.044 325.479]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+815 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 300.075 164.005 311.034]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+816 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 300.075 188.613 311.034]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+817 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 300.075 213.22 311.034]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+818 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 300.075 237.828 311.034]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+819 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 300.075 262.436 311.034]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+820 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 300.075 287.044 311.034]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+821 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 287.289 164.005 296.588]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+822 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [165.225 260.556 179.522 272.511]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+823 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [152.922 246.11 167.218 258.066]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+824 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 246.11 191.826 258.066]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+825 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 246.11 216.433 258.066]
+/Subtype /Link
+/A << /S /GoTo /D (page.17) >>
+>> endobj
+826 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 246.11 241.041 258.066]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+827 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [251.352 246.11 265.649 258.066]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+828 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [275.96 246.11 290.257 258.066]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+829 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 232.661 191.826 243.62]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+830 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.833 218.215 204.13 229.174]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+831 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [214.441 218.215 228.737 229.174]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+832 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [239.049 218.215 253.345 229.174]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+833 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 202.773 234.889 214.728]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+834 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.201 202.773 259.497 214.728]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+835 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.808 202.773 284.105 214.728]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+836 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 190.984 164.005 200.282]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+837 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 174.878 241.041 185.836]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+838 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [251.352 174.878 265.649 185.836]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+839 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [275.96 174.878 290.257 185.836]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+840 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 162.092 164.005 171.391]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+841 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 145.986 216.433 156.945]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+842 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 145.986 241.041 156.945]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+843 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [251.352 145.986 265.649 156.945]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+844 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [275.96 145.986 290.257 156.945]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+845 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 131.54 210.281 142.499]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+846 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 131.54 234.889 142.499]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+847 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.201 131.54 259.497 142.499]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+848 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.808 131.54 284.105 142.499]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+849 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.833 117.094 204.13 128.053]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+850 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [214.441 117.094 228.737 128.053]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+851 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [239.049 117.094 253.345 128.053]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+852 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [263.656 117.094 277.953 128.053]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+853 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 651.59 415.836 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.4) >>
+>> endobj
+854 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [419.995 637.144 434.291 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+855 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [444.603 637.144 458.899 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+856 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [413.843 621.702 428.14 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.47) >>
+>> endobj
+857 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [358.476 597.626 372.772 609.581]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+858 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 583.18 391.228 595.135]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+859 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.539 583.18 415.836 595.135]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+860 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [426.147 583.18 440.443 595.135]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+861 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [450.755 583.18 465.051 595.135]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+862 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [475.362 583.18 489.659 595.135]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+863 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [499.97 583.18 514.267 595.135]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+864 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 569.73 375.711 580.689]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+865 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [386.022 569.73 400.319 580.689]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+866 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [410.63 569.73 424.927 580.689]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+867 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [364.628 545.654 378.924 556.613]
+/Subtype /Link
+/A << /S /GoTo /D (page.22) >>
+>> endobj
+868 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 545.654 403.532 556.613]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+869 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.539 531.208 415.836 542.167]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+870 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [395.387 516.762 409.684 527.721]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+871 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.539 501.32 415.836 513.275]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+872 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [370.78 486.874 385.076 498.829]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+873 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 473.425 391.228 484.384]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+874 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 458.979 421.988 469.938]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+875 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 444.533 403.532 455.492]
+/Subtype /Link
+/A << /S /GoTo /D (page.49) >>
+>> endobj
+876 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [419.995 430.087 434.291 441.046]
+/Subtype /Link
+/A << /S /GoTo /D (page.54) >>
+>> endobj
+877 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [370.78 415.641 385.076 426.6]
+/Subtype /Link
+/A << /S /GoTo /D (page.57) >>
+>> endobj
+878 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [395.387 401.195 409.684 412.154]
+/Subtype /Link
+/A << /S /GoTo /D (page.57) >>
+>> endobj
+879 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 377.119 391.228 388.078]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+880 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 362.673 391.228 373.632]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+881 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [358.476 348.227 372.772 359.186]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+882 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 348.227 397.38 359.186]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+883 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 348.227 421.988 359.186]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+884 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [395.387 333.782 409.684 344.741]
+/Subtype /Link
+/A << /S /GoTo /D (page.29) >>
+>> endobj
+885 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 318.34 391.228 330.295]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+886 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 304.89 391.228 315.849]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+887 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 280.814 403.532 291.772]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+888 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 256.737 403.532 267.696]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+889 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [413.843 256.737 428.14 267.696]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+890 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [370.78 242.291 385.076 253.25]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+891 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 227.846 397.38 238.804]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+892 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 213.4 397.38 224.359]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+893 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 198.954 397.38 209.913]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+894 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 184.508 391.228 195.467]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+895 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 169.066 421.988 181.021]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+896 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [370.78 155.616 385.076 166.575]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+897 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [395.387 155.616 409.684 166.575]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+898 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [419.995 155.616 434.291 166.575]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+899 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [444.603 155.616 458.899 166.575]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+900 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [395.387 141.171 409.684 152.129]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+901 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [419.995 141.171 434.291 152.129]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+902 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [444.603 141.171 458.899 152.129]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+903 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [358.476 116.098 366.62 128.053]
+/Subtype /Link
+/A << /S /GoTo /D (page.8) >>
+>> endobj
+737 0 obj <<
+/D [735 0 R /XYZ 110.854 691.108 null]
+>> endobj
+734 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+906 0 obj <<
+/Length 1010      
+/Filter /FlateDecode
+>>
+stream
+xÚÕXM“Ú0½ï¯àÈÎ6þHB®ézæÖé'd,ÿ¾–ˆ±6N{èÅc2z’ü$K2ߦ/oïBçI2˜z'‰¤‰s™
¦‹ŸÃíì•
_z½F	K†LocÜË!“æ»ÞO¬×[Ö}çÂÊp9zý5ý1¹¶Ã“c)S´#b+& ²ÛK" 9ª‰<zÎþžþ/7
+œŽŽz­6°­Dû»°ZìZ½Ìëµ^רfaüÖ?&Å5*ž ªAr*½Ôч^÷  ­7ĘðkÀ½Ù`›•^O€Í?õZ6ðuOá¹Q—‡Ô­ÀUŒ7H	˜˜}~¹@®cy!'5û	9zé@øÈq;9Gœø%ñÌÖFœ¡2€ˆ`쑈-’Û»
+ȝÈ‘åűÛA~;µÀò¢¬š|Xn%Ñs9Of¹½«	¸Âª`»±žÞæÝòn·„lÝ7ÜÜËo‹Øbâ=&Û ƒøW<†8V ½]º§b :jaýj-FÞ0uN™ÝÜp®n衪çè;ˆeÈ"
+¶„mU‚ÿm…T‰‡Â1–ð{½¶zTǹß)¡äIXôÄ&½ØÓ“vp6Úšçü9X„Ŷß&ÞŽÖÉÆÍ­¬âªÄkµ¡…ÐͶÔÇ”"‰æ?V^Xæí¹†ëå“Öp·ošªÀI/ãi¸':0Xö®½¨ÁþB5–iHIÏÁ9é<ÅïÏ ¢^¡;žžã4
+‰
+¹œ²8$<'âF_aN¦Âü¦ÿœßÊÌ¥òœª;I8I ÛëI+ž†m„ÃVv@쌣ÁTED© ±Æß
½Ï,h¨8K<P…)
+®TS-\¢/µÖk
.¼Äºü»+¸œáøæT|~qÀö°Wn‘ðr†½
ƒÑ 0UÒb&¼Á!°Æ•*ú`[SªMIÆcÉæÏ‹^aœ‰?jÒ)ÄÄGP‹#áÞŽ’î}snvìظ󻆎ÿtJ½Ã {Wq2ÊQOwócç&±,áÆ|œŸþ:Ÿ\	ϱ‰PJ½Iú<dç'¨zŽ6ð”"Ó)K]™+jCÃ9#wQá\ºèê/á8y¬/"DÈéÝ÷©ó>Ù:v•iëuQP}t^ÉαÚu¯µG°´ÀQþ9yÈ¸¿Zet§ÂÄ[)ú¸ÅKœþôAܽ}Û¾'«î±r©Œþ•XXK‹­ŸÇšêéy<¡ðuâ°¿²OøûCc{éòåòv–¸JDüdm¤áiÞÞYNþ¤‰¸óI¦y”c‘1§ØÇ_¾O_~4e Ñendstream
+endobj
+905 0 obj <<
+/Type /Page
+/Contents 906 0 R
+/Resources 904 0 R
+/MediaBox [0 0 612 792]
+/Parent 561 0 R
+/Annots [ 908 0 R 909 0 R 910 0 R 911 0 R 912 0 R 913 0 R 914 0 R 915 0 R 916 0 R 917 0 R 918 0 R 919 0 R 920 0 R 921 0 R 922 0 R 923 0 R 924 0 R 925 0 R 926 0 R 927 0 R 928 0 R 929 0 R 930 0 R 931 0 R 932 0 R 933 0 R 934 0 R 935 0 R 936 0 R 937 0 R 938 0 R 939 0 R 940 0 R 941 0 R 942 0 R 943 0 R 944 0 R 945 0 R 946 0 R 947 0 R 948 0 R 949 0 R 950 0 R 951 0 R 952 0 R 953 0 R 954 0 R 955 0 R 956 0 R 957 0 R 958 0 R 959 0 R 960 0 R 961 0 R 962 0 R 963 0 R 964 0 R 965 0 R 966 0 R 967 0 R 968 0 R 969 0 R 970 0 R 971 0 R 972 0 R 973 0 R 974 0 R 975 0 R 976 0 R 977 0 R 978 0 R 979 0 R 980 0 R 981 0 R 982 0 R 983 0 R 984 0 R 985 0 R 986 0 R 987 0 R 988 0 R 989 0 R 990 0 R 991 0 R 992 0 R 993 0 R 994 0 R 995 0 R 996 0 R 997 0 R 998 0 R 999 0 R 1000 0 R 1001 0 R 1002 0 R 1003 0 R 1004 0 R 1005 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R 1021 0 R 1022 0 R 1023 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1051 0 R 1052 0 R 1053 0 R 1054 0 R 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1059 0 R 1060 0 R 1061 0 R 1062 0 R 1063 0 R 1064 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R 1069 0 R ]
+>> endobj
+908 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [146.77 650.594 161.066 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+909 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 650.594 185.674 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+910 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 650.594 210.281 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+911 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 650.594 234.889 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+912 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.201 650.594 259.497 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.23) >>
+>> endobj
+913 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.808 650.594 284.105 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+914 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 637.144 164.005 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+915 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 637.144 188.613 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+916 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 637.144 213.22 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+917 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 637.144 237.828 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+918 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 637.144 262.436 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+919 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [146.77 621.702 161.066 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+920 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 621.702 185.674 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+921 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 621.702 210.281 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+922 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 621.702 234.889 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+923 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.201 621.702 259.497 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.23) >>
+>> endobj
+924 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.808 621.702 284.105 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+925 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 608.252 164.005 619.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+926 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 608.252 188.613 619.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+927 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 608.252 213.22 619.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+928 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 608.252 237.828 619.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+929 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 608.252 262.436 619.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+930 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 592.81 210.281 604.765]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+931 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.833 578.364 204.13 590.32]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+932 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 554.952 210.281 565.911]
+/Subtype /Link
+/A << /S /GoTo /D (page.33) >>
+>> endobj
+933 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 539.51 247.193 551.465]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+934 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [257.504 539.51 271.801 551.465]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+935 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 526.061 173.37 537.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+936 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 526.061 197.978 537.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+937 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 526.061 222.585 537.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+938 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 526.061 247.193 537.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+939 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [257.504 526.061 271.801 537.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.19) >>
+>> endobj
+940 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [282.112 526.061 296.409 537.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+941 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 511.615 164.005 522.574]
+/Subtype /Link
+/A << /S /GoTo /D (page.23) >>
+>> endobj
+942 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 511.615 188.613 522.574]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+943 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 511.615 213.22 522.574]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+944 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 511.615 237.828 522.574]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+945 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 511.615 262.436 522.574]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+946 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 511.615 287.044 522.574]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+947 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 497.169 164.005 508.128]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+948 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 497.169 188.613 508.128]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+949 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 497.169 213.22 508.128]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+950 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 497.169 237.828 508.128]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+951 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 497.169 262.436 508.128]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+952 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 497.169 287.044 508.128]
+/Subtype /Link
+/A << /S /GoTo /D (page.43) >>
+>> endobj
+953 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.833 481.727 204.13 493.682]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+954 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [214.441 481.727 228.737 493.682]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+955 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [239.049 481.727 253.345 493.682]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+956 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [263.656 481.727 277.953 493.682]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+957 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 467.281 222.585 479.236]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+958 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 467.281 247.193 479.236]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+959 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [257.504 467.281 271.801 479.236]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+960 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [282.112 467.281 296.409 479.236]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+961 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 453.831 197.978 464.79]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+962 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 429.423 197.978 440.382]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+963 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [165.225 413.981 179.522 425.936]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+964 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 400.531 197.978 411.49]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+965 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 386.086 191.826 397.044]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+966 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 371.64 191.826 382.599]
+/Subtype /Link
+/A << /S /GoTo /D (page.49) >>
+>> endobj
+967 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [152.922 357.194 167.218 368.153]
+/Subtype /Link
+/A << /S /GoTo /D (page.35) >>
+>> endobj
+968 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 342.748 173.37 353.707]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+969 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 327.306 216.433 339.261]
+/Subtype /Link
+/A << /S /GoTo /D (page.50) >>
+>> endobj
+970 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 312.86 234.889 324.815]
+/Subtype /Link
+/A << /S /GoTo /D (page.50) >>
+>> endobj
+971 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 299.411 210.281 310.369]
+/Subtype /Link
+/A << /S /GoTo /D (page.50) >>
+>> endobj
+972 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 284.965 222.585 295.924]
+/Subtype /Link
+/A << /S /GoTo /D (page.50) >>
+>> endobj
+973 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 269.523 222.585 281.478]
+/Subtype /Link
+/A << /S /GoTo /D (page.50) >>
+>> endobj
+974 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 256.073 210.281 267.032]
+/Subtype /Link
+/A << /S /GoTo /D (page.49) >>
+>> endobj
+975 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [214.441 241.627 228.737 252.586]
+/Subtype /Link
+/A << /S /GoTo /D (page.50) >>
+>> endobj
+976 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 227.181 191.826 238.14]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+977 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 211.739 210.281 223.694]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+978 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 211.739 234.889 223.694]
+/Subtype /Link
+/A << /S /GoTo /D (page.46) >>
+>> endobj
+979 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [140.618 198.29 154.914 209.249]
+/Subtype /Link
+/A << /S /GoTo /D (page.49) >>
+>> endobj
+980 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 182.848 234.889 194.803]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+981 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [245.201 182.848 259.497 194.803]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+982 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [269.808 182.848 284.105 194.803]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+983 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 169.398 164.005 180.357]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+984 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 169.398 188.613 180.357]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+985 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 154.952 241.041 165.911]
+/Subtype /Link
+/A << /S /GoTo /D (page.15) >>
+>> endobj
+986 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [251.352 154.952 265.649 165.911]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+987 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [275.96 154.952 290.257 165.911]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+988 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 140.506 164.005 151.465]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+989 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 140.506 188.613 151.465]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+990 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [189.833 126.061 204.13 137.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+991 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [214.441 126.061 228.737 137.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+992 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [239.049 126.061 253.345 137.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+993 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [432.299 650.594 446.595 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.16) >>
+>> endobj
+994 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [456.907 650.594 471.203 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+995 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [481.514 650.594 495.811 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+996 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 637.144 375.711 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+997 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [386.022 637.144 400.319 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+998 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.539 621.702 415.836 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+999 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [426.147 621.702 440.443 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+1000 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [395.387 608.252 409.684 619.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+1001 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [395.387 593.807 409.684 604.765]
+/Subtype /Link
+/A << /S /GoTo /D (page.46) >>
+>> endobj
+1002 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 578.364 421.988 590.32]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+1003 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 564.915 403.532 575.874]
+/Subtype /Link
+/A << /S /GoTo /D (page.49) >>
+>> endobj
+1004 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 549.473 391.228 561.428]
+/Subtype /Link
+/A << /S /GoTo /D (page.26) >>
+>> endobj
+1005 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.539 549.473 415.836 561.428]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1006 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [358.476 536.023 372.772 546.982]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+1007 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [395.387 521.577 409.684 532.536]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+1008 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 507.132 403.532 518.09]
+/Subtype /Link
+/A << /S /GoTo /D (page.36) >>
+>> endobj
+1009 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 491.69 421.988 503.645]
+/Subtype /Link
+/A << /S /GoTo /D (page.36) >>
+>> endobj
+1010 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 478.24 421.988 489.199]
+/Subtype /Link
+/A << /S /GoTo /D (page.36) >>
+>> endobj
+1011 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 462.798 397.38 474.753]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1012 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 448.352 397.38 460.307]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1013 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 433.906 397.38 445.861]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1014 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 419.46 391.228 431.416]
+/Subtype /Link
+/A << /S /GoTo /D (page.38) >>
+>> endobj
+1015 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [364.628 406.011 378.924 416.97]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+1016 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 406.011 403.532 416.97]
+/Subtype /Link
+/A << /S /GoTo /D (page.16) >>
+>> endobj
+1017 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [413.843 406.011 428.14 416.97]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+1018 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [438.451 406.011 452.747 416.97]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+1019 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [463.059 406.011 477.355 416.97]
+/Subtype /Link
+/A << /S /GoTo /D (page.23) >>
+>> endobj
+1020 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [487.666 406.011 501.963 416.97]
+/Subtype /Link
+/A << /S /GoTo /D (page.27) >>
+>> endobj
+1021 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 391.565 375.711 402.524]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+1022 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [386.022 391.565 400.319 402.524]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+1023 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [410.63 391.565 424.927 402.524]
+/Subtype /Link
+/A << /S /GoTo /D (page.36) >>
+>> endobj
+1024 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [435.238 391.565 449.534 402.524]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+1025 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [459.846 391.565 474.142 402.524]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1026 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [358.476 367.156 372.772 378.115]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1027 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 351.714 397.38 363.67]
+/Subtype /Link
+/A << /S /GoTo /D (page.49) >>
+>> endobj
+1028 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [413.843 337.269 428.14 349.224]
+/Subtype /Link
+/A << /S /GoTo /D (page.49) >>
+>> endobj
+1029 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [389.235 323.819 403.532 334.778]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+1030 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [413.843 323.819 428.14 334.778]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+1031 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [438.451 323.819 452.747 334.778]
+/Subtype /Link
+/A << /S /GoTo /D (page.16) >>
+>> endobj
+1032 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [463.059 323.819 477.355 334.778]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+1033 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [487.666 323.819 501.963 334.778]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+1034 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 309.373 375.711 320.332]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+1035 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [386.022 309.373 400.319 320.332]
+/Subtype /Link
+/A << /S /GoTo /D (page.23) >>
+>> endobj
+1036 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [410.63 309.373 424.927 320.332]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+1037 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [435.238 309.373 449.534 320.332]
+/Subtype /Link
+/A << /S /GoTo /D (page.27) >>
+>> endobj
+1038 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [459.846 309.373 474.142 320.332]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+1039 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [484.453 309.373 498.75 320.332]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+1040 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 294.927 375.711 305.886]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+1041 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [386.022 294.927 400.319 305.886]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+1042 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [410.63 294.927 424.927 305.886]
+/Subtype /Link
+/A << /S /GoTo /D (page.36) >>
+>> endobj
+1043 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [435.238 294.927 449.534 305.886]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+1044 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [459.846 294.927 474.142 305.886]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+1045 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [484.453 294.927 498.75 305.886]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1046 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 282.142 375.711 291.44]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+1047 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [376.932 266.036 391.228 276.995]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+1048 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [419.995 251.59 434.291 262.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+1049 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [358.476 237.144 372.772 248.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+1050 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 237.144 397.38 248.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.24) >>
+>> endobj
+1051 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 237.144 421.988 248.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.40) >>
+>> endobj
+1052 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [432.299 237.144 446.595 248.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.49) >>
+>> endobj
+1053 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 222.698 421.988 233.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+1054 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [432.299 222.698 446.595 233.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+1055 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [456.907 222.698 471.203 233.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+1056 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [481.514 222.698 495.811 233.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.23) >>
+>> endobj
+1057 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [361.415 208.252 375.711 219.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+1058 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [386.022 208.252 400.319 219.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.31) >>
+>> endobj
+1059 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [410.63 208.252 424.927 219.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+1060 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [435.238 208.252 449.534 219.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+1061 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 193.807 421.988 204.765]
+/Subtype /Link
+/A << /S /GoTo /D (page.36) >>
+>> endobj
+1062 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [364.628 179.361 378.924 190.32]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+1063 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [346.172 164.915 360.468 175.874]
+/Subtype /Link
+/A << /S /GoTo /D (page.36) >>
+>> endobj
+1064 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [370.78 164.915 385.076 175.874]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+1065 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [383.083 149.473 397.38 161.428]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+1066 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [407.691 149.473 421.988 161.428]
+/Subtype /Link
+/A << /S /GoTo /D (page.49) >>
+>> endobj
+1067 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [401.539 135.027 415.836 146.982]
+/Subtype /Link
+/A << /S /GoTo /D (page.36) >>
+>> endobj
+1068 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [426.147 135.027 440.443 146.982]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+1069 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [358.476 120.581 372.772 132.536]
+/Subtype /Link
+/A << /S /GoTo /D (page.28) >>
+>> endobj
+907 0 obj <<
+/D [905 0 R /XYZ 110.854 691.108 null]
+>> endobj
+904 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1072 0 obj <<
+/Length 499       
+/Filter /FlateDecode
+>>
+stream
+xڝUMoÂ0½ó+z‰”¤Iúq4;÷6íP(£•ú1•2àßÏNš–€ˤÏö³óÞâÙj͹ØIéÄßàQ7”Âñ¥p=8qú9?V6Ow`š"[¡»\É䜁K•/”/´\ÞŸsªÎ¿â‡GP‰9„	W_UâB}!–O‰zÈ*Àe
+NÇÀ|Øõ儧 h¨¿	 T'iÒ`êìÀ3²¤¾	Ü‚©Ël¢è=—èˆ)HƒÑ)˜¼&`7xÚböºÒ)p®³èÝ‚
2O6…ÑòpM돥=96=_0dæØó.ç.eÌt@ÊI¡‡…÷¨}9Й\]¤âOjø{$ÒjªËRªƒ"±L7+ƺõ
݆7W'Ç̸]·Ý”LÞ^`ÜÅqîSÆgi!ÎS=F—l<Û–¨¦+¼ú„¥3\Õ|Ÿ¡¦úh¤JïÍËíç—
däÂÎÏ€/v°Àª~Ú 
+OlÛú.!ÁÛÎ[Sàv°Ú¹Ÿ±\¯“~QìPæ{»®p¡YO½ÛÍ0¥3>[[,SØÀ·«,=0ß7òÓ«änZ¹óÀöÍÙ¤3%Wê7
+¨DSµ“í±4qy¡‰àÑÜ/¯Z­Ydþ¥…¡+à„0‰£.±/9{gà•endstream
+endobj
+1071 0 obj <<
+/Type /Page
+/Contents 1072 0 R
+/Resources 1070 0 R
+/MediaBox [0 0 612 792]
+/Parent 561 0 R
+/Annots [ 1074 0 R 1075 0 R 1076 0 R 1077 0 R 1078 0 R 1079 0 R 1080 0 R 1081 0 R 1082 0 R 1083 0 R 1084 0 R 1085 0 R 1086 0 R 1087 0 R 1088 0 R 1089 0 R 1090 0 R 1091 0 R 1092 0 R 1093 0 R 1094 0 R 1095 0 R 1096 0 R 1097 0 R 1098 0 R 1099 0 R 1100 0 R 1101 0 R 1102 0 R 1103 0 R 1104 0 R 1105 0 R 1106 0 R 1107 0 R 1108 0 R 1109 0 R 1110 0 R 1111 0 R 1112 0 R 1113 0 R 1114 0 R 1115 0 R 1116 0 R 1117 0 R 1118 0 R 1119 0 R 1120 0 R 1121 0 R 1122 0 R 1123 0 R 1124 0 R 1125 0 R 1126 0 R 1127 0 R 1128 0 R 1129 0 R 1130 0 R 1131 0 R 1132 0 R 1133 0 R ]
+>> endobj
+1074 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 651.59 191.826 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.10) >>
+>> endobj
+1075 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 651.59 216.433 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+1076 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 651.59 241.041 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+1077 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [251.352 651.59 265.649 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.23) >>
+>> endobj
+1078 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [275.96 651.59 290.257 662.549]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+1079 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 638.804 164.005 648.103]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+1080 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [146.77 622.698 161.066 633.657]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1081 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [140.618 608.252 154.914 619.211]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+1082 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 583.844 185.674 594.803]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+1083 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 583.844 210.281 594.803]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+1084 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [214.441 569.398 228.737 580.357]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+1085 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [239.049 569.398 253.345 580.357]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+1086 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 554.952 247.193 565.911]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+1087 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 540.506 173.37 551.465]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+1088 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 526.061 185.674 537.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+1089 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 526.061 210.281 537.02]
+/Subtype /Link
+/A << /S /GoTo /D (page.36) >>
+>> endobj
+1090 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [251.352 511.615 265.649 522.574]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+1091 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 497.169 173.37 508.128]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+1092 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 497.169 197.978 508.128]
+/Subtype /Link
+/A << /S /GoTo /D (page.25) >>
+>> endobj
+1093 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 497.169 222.585 508.128]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+1094 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [159.073 471.764 173.37 483.719]
+/Subtype /Link
+/A << /S /GoTo /D (page.43) >>
+>> endobj
+1095 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [152.922 458.315 167.218 469.274]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+1096 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [177.529 458.315 191.826 469.274]
+/Subtype /Link
+/A << /S /GoTo /D (page.16) >>
+>> endobj
+1097 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 458.315 216.433 469.274]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+1098 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [226.745 458.315 241.041 469.274]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+1099 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [251.352 458.315 265.649 469.274]
+/Subtype /Link
+/A << /S /GoTo /D (page.21) >>
+>> endobj
+1100 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [275.96 458.315 290.257 469.274]
+/Subtype /Link
+/A << /S /GoTo /D (page.23) >>
+>> endobj
+1101 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 443.869 164.005 454.828]
+/Subtype /Link
+/A << /S /GoTo /D (page.25) >>
+>> endobj
+1102 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 443.869 188.613 454.828]
+/Subtype /Link
+/A << /S /GoTo /D (page.27) >>
+>> endobj
+1103 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 443.869 213.22 454.828]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+1104 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 443.869 237.828 454.828]
+/Subtype /Link
+/A << /S /GoTo /D (page.32) >>
+>> endobj
+1105 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [248.14 443.869 262.436 454.828]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+1106 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [272.747 443.869 287.044 454.828]
+/Subtype /Link
+/A << /S /GoTo /D (page.36) >>
+>> endobj
+1107 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 429.423 164.005 440.382]
+/Subtype /Link
+/A << /S /GoTo /D (page.37) >>
+>> endobj
+1108 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [174.316 429.423 188.613 440.382]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+1109 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [198.924 429.423 213.22 440.382]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1110 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [223.532 429.423 237.828 440.382]
+/Subtype /Link
+/A << /S /GoTo /D (page.42) >>
+>> endobj
+1111 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [202.137 413.981 216.433 425.936]
+/Subtype /Link
+/A << /S /GoTo /D (page.50) >>
+>> endobj
+1112 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [195.985 400.531 210.281 411.49]
+/Subtype /Link
+/A << /S /GoTo /D (page.50) >>
+>> endobj
+1113 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 386.086 185.674 397.044]
+/Subtype /Link
+/A << /S /GoTo /D (page.50) >>
+>> endobj
+1114 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 370.643 185.674 382.599]
+/Subtype /Link
+/A << /S /GoTo /D (page.50) >>
+>> endobj
+1115 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 357.194 185.674 368.153]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+1116 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 342.748 185.674 353.707]
+/Subtype /Link
+/A << /S /GoTo /D (page.51) >>
+>> endobj
+1117 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [146.77 327.306 161.066 339.261]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+1118 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [171.377 327.306 185.674 339.261]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1119 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [183.681 312.86 197.978 324.815]
+/Subtype /Link
+/A << /S /GoTo /D (page.14) >>
+>> endobj
+1120 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 312.86 222.585 324.815]
+/Subtype /Link
+/A << /S /GoTo /D (page.18) >>
+>> endobj
+1121 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 312.86 247.193 324.815]
+/Subtype /Link
+/A << /S /GoTo /D (page.23) >>
+>> endobj
+1122 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [257.504 312.86 271.801 324.815]
+/Subtype /Link
+/A << /S /GoTo /D (page.30) >>
+>> endobj
+1123 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [282.112 312.86 296.409 324.815]
+/Subtype /Link
+/A << /S /GoTo /D (page.34) >>
+>> endobj
+1124 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 289.448 222.585 300.407]
+/Subtype /Link
+/A << /S /GoTo /D (page.16) >>
+>> endobj
+1125 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 289.448 247.193 300.407]
+/Subtype /Link
+/A << /S /GoTo /D (page.20) >>
+>> endobj
+1126 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [257.504 289.448 271.801 300.407]
+/Subtype /Link
+/A << /S /GoTo /D (page.27) >>
+>> endobj
+1127 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [282.112 289.448 296.409 300.407]
+/Subtype /Link
+/A << /S /GoTo /D (page.39) >>
+>> endobj
+1128 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [149.709 276.663 164.005 285.961]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1129 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 260.556 234.889 271.515]
+/Subtype /Link
+/A << /S /GoTo /D (page.16) >>
+>> endobj
+1130 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [208.289 235.152 222.585 247.107]
+/Subtype /Link
+/A << /S /GoTo /D (page.16) >>
+>> endobj
+1131 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [232.897 235.152 247.193 247.107]
+/Subtype /Link
+/A << /S /GoTo /D (page.27) >>
+>> endobj
+1132 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [257.504 235.152 271.801 247.107]
+/Subtype /Link
+/A << /S /GoTo /D (page.41) >>
+>> endobj
+1133 0 obj <<
+/Type /Annot
+/Border[0 0 1]/H/I/C[1 0 0]
+/Rect [220.593 220.706 234.889 232.661]
+/Subtype /Link
+/A << /S /GoTo /D (page.16) >>
+>> endobj
+1073 0 obj <<
+/D [1071 0 R /XYZ 110.854 691.108 null]
+>> endobj
+1070 0 obj <<
+/Font << /F33 248 0 R /F19 220 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+1134 0 obj <<
+/Type /Encoding
+/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace 129/.notdef 160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 171/.notdef 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis 197/.notdef]
+>> endobj
+547 0 obj <<
+/Length1 812
+/Length2 1486
+/Length3 532
+/Length 2070      
+/Filter /FlateDecode
+>>
+stream
+xÚíRk<TëŽHm#÷TV¥Sr̃™Ó0¹dP„L3kXÌÌcM¹åÒt!³]…"‰á']¹”ìR¢”K*1ÝQ)"‰œ¡ÝoïÓþxΧó;ïúò>ÿÿó>ﳞÿ»z…;Í„Ä„w‚˜‹˜àÐ8"@v¡zzâ° E­^Mæƒt‚¹vt$8A Î
+ÀYÍ­ˆx	 üH>Œ kÉF³$K€ÄùƒÎ\èH0È‘i0èl€3 ‰D$6ð˜=x€á ÈD£p8€	1`'qQ˜YKT.,¿—™ޏÖ..3¬•™4d™0—	0A
+ã
+ËîeNþ¦~§ØlW:gVþ{L#Ð9;ò
+Ìá	¸ÀLÏý™ºüîÎdBÎÏ]*BgC7ˆ
&8s4Öü{
+§@ ÓBÁ €seËüÙˆ,½9W/Wš/ÉøÇ\çºîtˆ‹xFò@ û'}ãþIJ”øP°‹Æbq2¢ìû±óÿé6{.fBÜ ÀoÐù|z$Jö‚dDá ˆË# 0Bæƒæˆì Kf/À‚ù¨Ù±âd£ÇÀ³µ? )€áýšþ_ €AæàßyÓ&8"J¦fbjfXX ‚ÅÞ§yq¡0HµðX,ÖÒ’0Weø|‹Ì=4Y˜?0’Å‚ ÕÓ3Ö'†dW%—ÄØÞ+U4
+_*.N¼SŸtA¼=ôtýâþ¥»žàòõ$õH¢–õιÃdáûõªHÑ7£h˜¤‡ê7U4NæД†C~òÍù7U9¹Â×=/x—Œ‡­ëÛU¯X±y gY ÷î€BIw×ôhLhlkòQ檗Y(ÿü+›3Aï7}GZ&ß:À…pOQ³Ž_ΘƷ½ÆÞû¡OTÄ„ƒù.ó\!ÝSʇ£&ôÃ¥º
+‹D§¤
bD5­Ôá…ùQZ³æqÕƒÏF¬a3ã«–ÖÉ{•´ÞLÎh+î}ë;²	Ù~þRôù…™.+˜þ®f*—˜UÏ=·Ö0Ao“}æÙ/£aæÑEMo>Þ¦¶.bž—³ÕVHÔï …Šß¾6ÖŒ
+³Ð›ÌcW2R[9áæf&?aè‚QÕˆ£pãû/ö£F7Ê/ñÚ‰ÚóÛhõ¦*èj–v¬;zDQ߃©XMÐ'ÛμUÛˆ‹Áùî M—Ɛ
+ªW·÷–l¦qŸiIÛ—ô¢IÎÍ—êˆ<ûz]pJ‚›Ú&0¢jrvÆ”­“ѽäw¡kÄ»ñµDÃ6ÓHÍÛ±µhtC‹¨ëXüïÁ2ÐØâçŸ#¹®—årû–±»ÃöÕ¥L·g¼ñ’Lâ+ŠÍWÆ7‘õµyöðCewuáÒåšÊi#NΏm¥}1¸=¶XÊIÔ¨¹zƒ9ÝŠ3ôóÉú´ßLñÁ»Íí¯>T¾ÎY °®/¤è¢VŸYMÚ̪Œ`l¤}™å,•
E:y¦ÛÛ+ß·Q¡qáŒþ›§~ÝŽ^a'°:¶Ä1½¦reýf'ý°]£Ož2ÿl¯6xà³¹Ò(:ßµTzm²$ÒÃZ·ÀM°ݦÈi	;'/êøÚòE’w,þÑ£ê_ëE-…¼íÆæk±¢©Œ/Xb@ŽÃ-.SÞï¤-*ói¨%ëk–M-h’øìÈg¿‚¼ã¬ì|ózŸýòŸpaþ¿2 õ¶%54¼š4Ì«%<jç9d£NŠï4µ­s<<­±¡QÒê#×lOCÿ¢Y°N«®`wM|EŁœÒMN=69/%aÒ¯]öÚm‘àÂÇíª÷˜>Ø×Ñ~:J5dÀÛÒy¥dËÊ‚:Zò sʤ4U­ü9áVɯ.WvóŽ¸*ën
+þjÏÏàׯɍ‘XϏ¿ k§'˜Ôò°Ö´ç;k“kËO³¯,^ n3SO¿/ð¼$EG—ûïœJX6È
+È°‹ËT¼ÙÝre«wZwèxxķÄñËüá座—]ß½@èMsåLGº|ÔWù‹ûNQ܇””§Z¤oÒâJ;>?黃šŠ©$la£“ퟭÞoQ½Ãûªo•w«³«’÷yç{ÖŸîNqÊÖ¤ç>­õ0þøÅëÒ­!“êX`ST⁎k:)‡"8gôrߨã·UüÞ=›Õ;ag¥×^¬éVN™_®Ö§ˆ§:]ó™é2°ñ²ýºUk mÞÉY´ONy’•·(J’>½f™eIAít1UU·Õóíã™ÎÚxøî¾7D;ª
+{Ï•׉ð’ûùº#ªÔ'²é^Rï÷Ï™A"i{=dí‹O®¹s×ù¬Ö æzßí—CN5<]uQ.ØvƒÓËÖµôš…òÂsj{º“RJé´m	 1FçLAhóƒ÷Dõi9Ï`B®Õµ‘£e†bÄIóZÜ«ÞÆQ„hUl˜v^*Uk³ÕuÞßÅS‰í¿/¢>±KumE²lpK—¦ÍÓ _kÀê«øÆáKZýbTü×gtê—öÄ[m$Š:»0íKÎvüæà8X«<~öŒ&Úqïí½ÓB9q})‹ÐM«
+  'æ;Ò(;ú¨/¼6ÝK:w9³²ÅÏ»™‚9Äf4œ;™'–­\”¯m‚D%vß’çXkf¥ŸÀþ‡õÿ	¤ó˜C燢þûGkendstream
+endobj
+548 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1134 0 R
+/FirstChar 111
+/LastChar 116
+/Widths 1135 0 R
+/BaseFont /NUNSZA+CMITT10
+/FontDescriptor 546 0 R
+>> endobj
+546 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /NUNSZA+CMITT10
+/ItalicAngle -14
+/StemV 69
+/XHeight 431
+/FontBBox [11 -233 669 696]
+/Flags 4
+/CharSet (/o/p/r/t)
+/FontFile 547 0 R
+>> endobj
+1135 0 obj
+[525 525 0 525 0 525 ]
+endobj
+1136 0 obj <<
+/Type /Encoding
+/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde/dieresis/visiblespace 129/.notdef 160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 171/.notdef 173/Omega/arrowup/arrowdown/quotesingle/exclamdown/questiondown/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/visiblespace/dieresis 197/.notdef]
+>> endobj
+536 0 obj <<
+/Length1 927
+/Length2 3305
+/Length3 532
+/Length 3947      
+/Filter /FlateDecode
+>>
+stream
+xÚí’WXS붆AA:‚€ "LPD¡w„ÐC¯"%$¤¤Ú(R¤‡
+Ò‹Šô.E)‹.MD¤wE\¢wtí}¶gíËs®Îsæœócüc|Ï7~ÐESI-$Î¥‡Ã%!R 
+³´„H)iimFJ@Á‰hVND© ee@O d ˆ´ŠœåcPÞŸ€vs'bPñŸEŠ€E@#àX 'º£0”¸`C QD)@ËË0ÿyÂ0Gù ¾(¤# Ñ"à‚rCcÁ?5]źâ Å¿ÂHþ_)_Á‡"
+û%S ˆDâ°^þ åÊ6ÆQ¦¡(Zþ7dý½¹ÉËËŽùÙþ—Sÿ‘‡cÐ^þÿ¬Àað$"Š ÀpHû÷RÔ_â`($š„ù{ö*î…FhaݼP€ô_!´Ú…4Eî ‘@Bý
+£°È¿k 8÷KØÊZßÄÜTâŸKý•4…£±DKüuýYý‹!ÿfŠ=´`/MñB)¤¼ÿúsøÛ0],‡DcÝ y N Àý)ׇBò@ @c‘(? åG–Â∔# Å“`ÀG`ü¹Qee ŒøúEii Œü
! õÊ `×ßP »ý†r Øý7”Àèߐ2óo¤ØÆþ†”A¸ßÒŠð* `â/üO£µµq~’r€¤Œ¬< (”¤¥ƒÿ{™íMB]Õ䥥¥•de~E$…%þºÚ”þ‹]Ñ”}£P~(ãÔ¡ê‘Z^rK7o¸”öµ¶[]¼qUÛhSÈ›j¯Â?Œ¼/ÍVÚ~/Ëà`]¦]¸yxÞ'ª9Èl at oç®w|Úøñ²¯órF@ÃyÛÝ˜ÿ^ðkÈÆé¦Ú±½Myj“׳}%d»üWÙ»6rMÅt,WèÞ]¤j·÷­nÏUP´ÕËð²ºV)"{Ñœ-Í»$BîþÌM6r"ÍÌPÈ-ûôõÓŸpͤ3ßóès’Ž¨¾!NEß“Ñ~ø¦nÈCý~†ä9¥™:nßf8ðTU…/À —̧íéO£Ç±SM_ß¾ž·h|ÞîO5vøÁåÒÀ¹•îkbtÃÊ>6[tez,æ4*ºuå06OŸ“OB¤eŠt÷¸Éš™&[(‰ëù©¢ÅÕì?.
†ð×°Õ†q§·¢ïÕ¹}js—Ëgt“vuڍ7Y¯¾JÜç£nÖ¶9>óLvïÅzýö¡TNØÄ&þñËöÅÏb¹ EyÐÿÙ¶[býòÙ
+h{k­{0‡Î D-’N–®ÑÏ÷H*=¹tqîÿð¶p	Y_*—õéM7†VöÒ׆ÒSX®‚ÆU¶×så1í¹€Ñ*Á‘jr¡—î×|N/7¥NÏMXòï4ùv(äßÇþˆß¾µ„÷Ãi95$ÐÊ/1Œð¤9ìgÚféǸ~ÄT
++éŠ	ö­ÔX[/VŽŶM]ºÝà×îG;
6>(ÀM<Ço(˜PÏÆýqðìÞ™9“`£0XV]ÐVA;\m‰(ÛYEg0.l…UGõ	
+>är‘MïU_™’÷1|û6€Ó¥}Ìp\#ÏÞfi¸æÉ€X”œŽ=eåúÖ(mRì¯,5×Ü^’HŽ›¯ð‡ä&¦8/BçÓè3ÏŽ9'[Åbëæ¤w‹\ôY,o,×OA¾».«OÓœqp|¼m#±œ¥¦ê˜–m¸|…ñAŸ·“»¾÷MÝÌ›LªNhB#9t{(*KÈì’ƒälZ$¨m¨î…ámš4«5’$1muƒÆ̈ƒï¬ù|¸Ù}Ø{?œ:¼°3æÚ_½Ý9ïÄõÚªÐD…üyçj7ÝÒ!§ÏÊûø3͝Y4»¢#øufþØgÈûäçSpäçŸÜ'×ÖåƯ?Üб[šÞ§(CIºŸïòéÀ¨ùó.‰(õî}½Qô©!Z‘—	âgsvÑÔOo«c³Åh¨¿+‡YãnXˆÊ›ñ÷™×ÕŽáµ+=oŸ™E,4‰¾0©V°%ö³ðòHh/Îqz¶qÁåz$:Zqåö °µ Š·æ¢\îÌgÙl0IiqÝ}ƒq±ë£Ð…ÍU¯Ã˜`ïI͸2Ó»b«5ÿ¥G*ïwÄF:­oàœ:Þ¤½w*ÕðÓNd¡SÛ™
+ϱ5>Á\Ãæ0¾%z`´À#;Ša¸÷(GceÜn¼4½­fäkïhÈ/RoÄëÒwQ	ŽÃùzší:3OãµBw¼Ô¥Œ^ ®ûNùÌË †mô‘»cñtì²²M§wckäÛj	_I\èK[Î-±<o¾S¢ªþûŽ/ëñ_ŧœ¯(t2‘ÔÔò%³bñûæ»"ÇwŠ?™4Û›‘»üÙ‘!¾PluÏ×s¶EùÂ^eɏNÃùásâReåy¦ Öhz!¹¤(þÑ•Çá!·ÛÈ_‰4·¶N´%:sËhuØ"¾<ð–gn
+=¹”kÕ2ÕßØÏåölª« éãú¤ÇÞWmðÛn¦ì
‰Ñ
+¿/xþeÂìòJ/ôƒ¸AñÆéëÌA%-´‰|û•ëgèA¬P1÷Ú7áÈ„¨¦úTÂ=a»”J"÷¦èUšôW¢*UHhN¶j…
nÝÈOOKç|¼°ÝnÏе2Șµ}Å—¥F1©Pfq­¬A»¯¡ÕyӁµÝ€©Kíbèœ9¿>
M›ï*ÂIT‡ƒè¿>ñÙ’u™ßR¯?uerY¾—ÊYž|Í;Òîa»GI«×þWÿBcåÒ™SîL3a†Î¾}Å{µV|èÕNMXVk$³ÃrËäq·‡qЭ@JX]G~¤±Ýbp™Á%D«\µk<fÞm‰ó5Õ~㘓>™U,ø0†îãl\ïLþZÙºF>¡¾Ñz=>§1·Æú…ÈÖIâœV)°õlZ¦sµÞع‰¥GóÕ¬,¶ìVÄÝŠ&Û¦£Ã_îíÑâÆ¢v¨^…6«ímˆ*?¸½trëÀ +³§ÚZ•J‡µÎÄYjõx=4•9¤|mäc!Á¹e©t‡”\táép~B!«x»|qutÓtÃ~¾|•®|”l=tÎåC7Él»ú^­ÇFŸ?¹.ÂÄî%ú.ÊOÿCow’òZqŸ w
5£)þħ?Ã]
-«YÅ[0ÌUƒ¹Ö‡R®¥"Wµ­"ÏI•Ö€Ïܸ„¢gS—õÕcg®ENGœ[Kq©Zûb¸ì+å°ç*ŽNtºTáy¶J®«Vu¯?‰çrf[gs²Û=+}zsëî¸?ƾ/o¦­uÕOö©›šŸ›pÍ~Õ *ڹ靔·?Ó
+WßÚ{!s4锤:áVmÆýÐ2Œ-¤^´ÃXͦö|æŽÁþD»¯Þ©’ä»:é2RÚ¯Ògm=Žæ,—”ÙkL
+” ³™œ`ñ··í©Ã’»ô1þxágnooÜîµË]x¡ãé+
+Kíx óåƒÐZ\aÅ\K€,Ò~ê¦3%V7›ïÎgÍ%Lʹ.Ä¡ƒÆäĖ[n]rƒl³GÒ¥†*x紏íí…¸¿YQïkѪÏ£:,+¯;¾8¯h4.!ÇçyÊ)¨ï"ðè3íèçzsèÄr°¶9¼eÂEfF»Ÿtº;lˆ˜½r•‘z·‹Pñý¸wy‚öÇG‘›yå&³ßêvÄ•Ì`/^ãlŸÊÂdªár=Œ²œßŸDê׈]ÍÐOҏs
+<(|ôféù3ÍÔì—èëŒÝ²â'eÆçŠrs¢öš'?<På¾G½Yüt$û Îù¹‚æ*ÃwCû‰¨±*wV&˜+¤_‘p¶é„—ÁÓó¦Œî­òÅ,¿ZŽ„šºï8š-¾DMÐuK»ÇŸÑŸ†f,1?RàqíËràÖò‹„Þ±GnòŠZëbßl@¹Éº¤ÉÊ.#‰˜ŒR=ªnÂY©/³¦îXÔ˜Gžv›rAÄŸôÍHœ{çÍ°ªgW`«ÑŽéîœi^º\fïÚ‹·§1ÇãrÊ•†æ%\ÅUúY£ßH·q@ÉiÝŽÑ|ù{T½[5Ê)ÁÓ‚^OR
+,6Ýñ"ßãûÆÇöAv£î<]%èu¿¾}ÔÓŸÞÛüîÝ ­•6tÉ=ã(*v„zô‰ºœví×€7VšwUÒÄ!ÂœxË,„žô6Z¸¼[©š”}bñ´*[Ÿ>Ù½.«åXýÀ©ŽÄªÛ¶ÝÐíRá™ä1Ð;u‚T:öT¬L™,kH^¾ÚÇièu3m›-¦6輜cåŠÊ€¾·WA¯+W(k¬gí
ëbǏŠ¾ˆj[åjžJ«gÑ
+’uTÉË×ü’ÔcŽLJ¢÷ÿrz{9Zéâ”ÎY[ï“&ÉœÐñær¶¦	|7kµsÃæ¼ÁëŽÖ9>n¹21”nÃÚi Æq~®§¥ Ü4Õ¬6ïdz>H&4h4
+½¥u ±‚Ý=½Ð{àÀ±l½äöƒÆ±Hv.’|}$þ¨£´Æ–§¤¬rãfÞ°m£	’TÍ ŽÙE–@<8è5’¦Ó£wÑÊXªVO‘Ü`$Ç#†s’BL#´¶ƒæ³;Uã‡[
+ŸóhH–T÷Þ!Áˆ&áÕºS¤Îkj7X.ð±Š*ÿéú¤¨cÔ>jNG³NWºO¤uý”Jmûü0Þ/ï´Ý–ûûôj!q&ƒ³‹oF5ÚÔ–põÎ¯?»|1~h­•ÏwhºO{g®þ‘š{DñŽ­~H
+Á.¼x¥‚ëÛêbìòà;„˜Yôû%‘¦šnsª®¼7‘´jÛú“J¶ïBíôÊ*êUyfSÓ5“ÙEs›œ9]þºÊü
+þUB?³ðOάL4«Loþ—z˜Xø<YÝ9±Š8—uw;C4K/u}ˤ€÷‘aì®x¡çèñª–.Œ·¬aLójÉå»QeR仏ñ3æV¦ûWêÒ§w?é1%óV&Ñ\òñœÚ~—ЏЊÏЯªØYð=Ø'­Ô~sÜ×b/l°^lVR,Zñè8¬ÿt2BˆÇ’=ÔBýî½€ÿ"¬„žO2ðDw 5$_n»µx+S1æÇ”!OE0S»JÀ·40¿ÐžñÕ‰UèKÿÆÿoð¢Â'q8Á“ñ?1½endstream
+endobj
+537 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1136 0 R
+/FirstChar 99
+/LastChar 116
+/Widths 1137 0 R
+/BaseFont /UVGORP+CMTT10
+/FontDescriptor 535 0 R
+>> endobj
+535 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /UVGORP+CMTT10
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/FontBBox [-4 -235 731 800]
+/Flags 4
+/CharSet (/c/d/e/f/g/h/i/m/n/o/r/t)
+/FontFile 536 0 R
+>> endobj
+1137 0 obj
+[525 525 525 525 525 525 525 0 0 0 525 525 525 0 0 525 0 525 ]
+endobj
+1138 0 obj <<
+/Type /Encoding
+/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress 129/.notdef 160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 171/.notdef 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis 197/.notdef]
+>> endobj
+376 0 obj <<
+/Length1 1242
+/Length2 7278
+/Length3 532
+/Length 8060      
+/Filter /FlateDecode
+>>
+stream
+xÚí•eX›Û¶¨‘b)Å¥Eƒ+÷â\‹{‚Cq
++îPŠ{ÅÝK[(^ PŠC“µö={õîóóÞ_÷¹Iž<ß;æÈoÆœù ¥Ë%[Cá.\¼Ü¼b at 9u^ /7,€…Eµò€Á]ä­< b@^QQ> "Ôuz‰	
+ˆ	òX€rpWÌÎÞÈ&ÇþW’0PÆŠ€ÙX¹ Õ­<ì¡Î¨6VN@]¸
êáÃ
”qrêüõ	w ÔŠð„B¸¼¼@ÌÆh
µƒ¹ @)]lá@á…!H×ÿ^ò„"ÜQR@¶¿5ف(IÜÅɁÚ@pT7(Êåÿ†ÖWD:9iX9ÿUþ¯Aýe+g˜“ÏÿJ€;»"=  :E¸ügªô_nêPéüŸ«`+'˜Œ‹Èó¯Ì]æ
…hÁ<l쁶VNîпãPÈJ &÷·HEEO¬Ãù¯=ý{MË
+æâ¡çãúïª%ÿͼÿ0j:˜7Є5^^T"êùßWfÿÑKÁŁ¹Øù…€V„• uzP$ôãÂ\ Po Ô%âv{ >DÍ$ hG þÚP^> ÈöWìo ‚làÎÎVÿD„€ WÔ¦Á!ÿ	¡B²ÿ0$÷oæ‚Àÿ*Síß$‚ZÓý‡P­ôþM¨³ú§©¨dý‰¢¤þM¼<<@ää‚ à__èDõ´ûQMíÿ@A ö¢$ÿ@”…ÓˆÒpþQ
+rùQð?¥áú¢4Üþ@”âDi¸ÿ¨©yü(+䈲òüQV^ÿ ÊÊûDYùüÿó„Êʽý¸øy¨7ž¿æ*
+
øß3õ]`nH(X(ÈÃÃ#,ÊÿwÔ‰@@]<þ¾- Žÿ³-õcB½¡6€o_á6âaiÍå
+…SXè²v-	
]3CçѝJFTÝ8–ë
¯+3I	6±6é½~S»G·ûk+»%¤¹Ûô´ÜÌôm£6ü•©îóÕñ"t—ðCóçÓ=AtÍOË£åÉFEý9G»Zlòz[8‹hÝ&žÝYaB†Š™Nú‘áõOùtˆÒÝÊ_	D.y%¿y°4è‰ÛʹpoG’\âæ'Ý™^ÇÛ´Óóë¬qélIí•EÖÝ÷
ÕHgítÀM¬y\ph.iDMŽ/•‚Åôå„Â+uÏÃgmí†·,BfË%üœöE*sÅ<Go
+áïbY¯p}ïv€©—¢oÛU“^2¯ú&yľ0e7ÆbxÔæÀDiÜŸ™5EæËKpš­O%`t•J¾÷CJgšÉ”¸`ëDײì¿5­ö
HhmçRæ6Ñ©©öéP"@tqÒÇßeã|¸kVMµf^ë«ÿþ¤®‡áßÉB²D`³,­SZ¥Û,ó60x#8Ù;lBЖL.UàˆÀ÷³Òpãy¾Y]F ¡@@‰íé¹ù¡‘#“ù]»d툟¯ø]™æ¾è؍³žI}{_®9E§2'Yßéó.ó¡A–=Zó¢XMØC©6„Pœ¸¬ÇöˆPM¼b7µÜ bŒ$ÎðLu=Ö­ T-3y-©øjpºŠ$Rª™¦ï¢·VÛ¦§þ>Æ&k¯˜ ð½å¹-lB‹4m¥qTv3açSeü¾|œãÖºpš¢õ~'û¸Í¿sp,7–CEIÔì
+
Øf*1Zˆ4 ó#(c»³m­_õ<~U– ‡®€¿ÚN~°ƒ¶ñzÜæÕÉoñùo}hè&PB®3拧u÷ Ø,ß`A¨³)O—㾫»+û÷†<m?£¥™{ù>h*5)‰6¾b©²Í¸˜¦ÜQSÙ“—ît®@ËX¾å³L5µø0„Äü‚í
ùrÒ¼®rònþaU‹“ö‘sp„¯QWy¦Þ6š>T”t³ËÕy©© ÷R帼;™Ådܺ¿—o˜$/!U¢+,÷~.ÙH¯2ñˆÌrP“·]›#¸Œp¬Â^+x at XÃõýÖáÖâ[`E3YŠ}Zi»·F:´–àgcVbÜ+KðñiR2æÎ|«˜úk~nF†šx¸
+XO‹¦¹äiô0Ü5‘ÙSõ«¾ìŠR»ßû¯vt›5‰‘k飾•ÅqRMƒ?m)ºËxŠÊ…{ cle’ûñi´ÎgÅ +7)]¾ÕI¬A½[ÏDøÞÆ¿šÀ÷5™ø{jyöbHeøK:&~ä;Äx_§‰†7õ%álÔЗ3—-3VMë3±ü,ò>´1 ‹Å4àí`1Jí*>¥Ý@[?6Ù¯ÆæÕÝC?·`*ãžo¬?;D¬Te[ºã/8E–|q#Š6‚E½ÐëXð_¢/(¤ñS«²s|
+XŒpÛSÞPR!îçg@þ`Ë·‹À¼4%ä!­®«¯Xªçh#3¤(5·œŽÍhÔ(èŸh1ՙɻfÇ‚q?þ>ê”	$n­ÕcÃîyÄäú“	Pl%ô¶º¨‹r÷Ê™RŒæ£AiÆ¢¥ì‰heR©³n³®Ê{³ØH¹ßzÇ«
0C)NϤäBIE‹‘†Ý÷+£Ì4FÊ­r²¾èêËï˜DÎÒ‡ªÎ `—ÕŠò–z)ÎÊl(|?0wz· þúûù.ãÝLé²Õ5B`ökõËÛ_ ãÞašÂêÍ£Ú›óáò†u%ŸWÇ™àاM'òvßz}õ¾j˨ìêŠXÁ0ùL\¾$`°Ãÿ%¼ ŽÐŽ½nÑô—"º˜nPäǏiü l«¸,Ëé³tq›w‚ãs <»ÏñL¾’<ù&Õ;&䣡xG5#§Bé”RgÏåÈônh÷µêúŽ±wŠ½f«Ò£‰™y­y‘æ­F¯ÒãßîØK¾Ò¹b…¸B5šuÐ;Ück²óùáµLÓõ>—NcäRXoaS'éþ´AöÂë 7U^ô™ä~¤ÎÜ AÅC©mEìŽÔ6ׄ©`7ÄÖ”ê½hÏNj0çë1s);]zä1y#åÞWéyí¾åmôõö‡wHÅdsëC1è»ÿ–>æJgwÜ7-;'3QYo¹‹ÄŸ}3¥ e¸ægEÉpÙ6÷ùq€ƒ"íØÖqÅO“—*üÀÝ<
+¸Ê°w‹¬žfl±ê8‹iör’X>;#!ª¾­ð+ÁÓÄEšv¥‘HZé=8ɉ&(çx
Ï0¦À?ÈÎǸSã.­ÔrÛ—¬0æ#º:Q'ZÁÐ<½ÔÁ1Kå¸èª#t­ûU‚ƒ¹=ámu-‹)/&ìx9÷ñÛ,É–-íØ­kô­Ê„ƒ³w¾µ‹ãÍ“+>P`åªI¸Ôâ‹ìyÇéù}-*˜Øš(ÏP=š~7¢)ć·–+7ñ€ò»äýekÌÍh—yax ëO¹5¶N›˜Íû·}í‡û
°Tëc][‰¹Ø
=™Ë^W‰tÆ'ŸËó‡¬Z±2‚—ÅçÆ»^Û¦R>­“Ì­®ÔK|´0žíݶ
rfsfvRY8¹#ƒ¤DxVKcI‘1®”~²ö»W¯àêÔ>wŽ÷œ¸8ÎŒQ.L!ªw*·V$èëMo¤™àlgOÙö™ý¬Á
jé?O§ý“î¥ÇTjO«“n{,?BП¢=·ºŠ]‚IÈê5ƨšT¥šà¡}íùsÙÚÐ4Sbb‹Q_"Õ­šbïÏìßšŸO|¨xí±9ÅúÄv‡þ“¹6
{Õî[Ïçš¾Â&¯ˆ¨ [FÌšç‡Ñ†ÍÄvœ¬9KÕ©dEqgͱ;†²®ñæã	ÕBëÑGÚÞØ™éw‹hÇ:Pòms{X -ïì_аÎúÛgªnQïGôºÚ´÷_ÙfVè}¦«ðRià­}¿ËXì• ?ôhŸä¬C¯€«¼½ìÒ…‡÷4‰23‰FO­^˜`×´ÒâöY$”쁮#¿‘¹%Ü}ŽS¨z8öy¨½Õ¨»Y/|ηDð¬W“œÏç·¦èÊe·"0]¦ï˜Ã\‘5_ü,°ïä=¶T¬y)=j^§yÃjT0ÿÉç›8è: R”¿J1ï*•¯³
ˆ<d†”íì¯$}K;Þ˜t5¦”âuõ>êub?}¯|SHɯQÅ€¶èš‚ĶçSØè0œcî@(ÓÄ•¾<ð°ªçà“"Vs+ÀªÙC?Ÿí 53äò4ÌÆ¢®;,"¹$th§Ó1|,–U
+îC™!ß¸%ÚÜ„>J5è'†àïØѶ–œJ:Ñ­v	Æ/m7¸ÛØ=ûªKG¿$ž³¤ÚÅ+;§G×Ñ‚ñµ˜×¯½¹-+yk€ÞÖU݈ Skþö`Õ”Â3g÷–D¥Pæ—3߉¯Ê
+f*ž¢ž;p5O…Kò°PŠ¤ú솷¯wû8ËXù[r¡üA5i¡º)(ûÑØÈôÉ÷›vE¿§uטæl`$¸††µü$
ÿ­ÎYƒ£¡µØ²:ßO´­U³©`a€w¦xeík^îºY{¢€S͝L!ªç°è/ý`÷)$„‚¤ùF{7Ñ'*úF_Zñã…Á•µ/ìˆX5ýè vJ¯,â02©“î:VrטEî9‘ÏåÐÇRZ5ƒ‰˜*Ñ9º^˜äž½æË9a3Љ‡—yÈlEx“oÈùvI}4g®K¨{{˽×ü°`ž)9…ˆZ,„îÇì#‡)(=ân®~ýýI>,ØŸ{Ü
+ó8LÕš Œ)ÞíswúBö£XNvåöAÔ^4ÌSB~bº”᧎øÐqvúÁ´²‚…KŒî|®Þë'uÕJÒ|ÂëY/0(¯|:¶õm¶)ÿªC\;®›!Ôo¨šnJð>$ç¸fQ-phöÙb‘–IœjcóR¢E×t3{R^âÙ|
+m`yió^Ó}\›hÁãwú„NÌ›€#NÉG¬-Å^/»¿$ŒY²`˜m¤°£Oýàjß2	Éw?è6oÛeÿýãÓœ\ñdûÚ+'¨©Já$Yu¨½ëþ)Κfe‘q=;!ocÀ!Ï”º1¯ÔÖ“«	kvåm	C§oá?-ÙxÆ'›Ï•Dƒ·ç‰è:aÇCŽŠ“âÇ=€zRèÐp’_gä/sÔ©&}õyéóèL9ª›“ƒWD0LLëNw™Ä耗“WÔ##e·{eu‹G3w|êµ'µŸ0ÊI:K§<ynP0b®C÷(]9#„#MÞPç&Bã&Ùù´k®àKÇiŸ¬Í^x¢Ê¥G›ÙE›X–×Ft±+:i€Àïö'HüX˜øÏü˜°)A.,ë#Bí’	Fç¼»Ñ:¥wL°ò±ß<ÀuÝ+¹{MØá\Èæ
”wW‹-ácô&J$23§·çõ”™™Læ¶
Yônp¯:À9܇¿C<Iûte™Âkóôbk”»Šî,’Ÿ¤Ø•/LúÑ}`™¥VÍnqzŸäù
ŽÉ†£I¶ñd¸Ó¼¤8E󀶢ǫ ñ¤ß£!4ß:TTÎG¡_ÉŒÙqa÷cؐ¼ÿ!O(5ŒýÍS½­ Ë*%Ì«³àÁÑ8¶(¢xî°ˆ?¡¯[YŒ8`‰Ô/èm͏né,ŸV	-b¯&=uËñyã–Rmu‘CÅ Y•&Ø×:£ÚÄÃy =1k.:­±_°dÉ×$´ÊKo¾-›f쳬œeæ^ÓÄmy0e˜-gÊ,w¯yY{=­2˜+Žô§½zs´ý*ÿ…oÿÊEƒäUBE[®øìHª0óZÄÙB¢“w‰ãm˯D‡%½¯\}Y;„c•k@ƒìLjy`GÖVÛ	ãá­ÜJ¡2q©’ÀàðÔSsº.ŸüPað}PpÖîÛUv–JÀ`‡Evòì,‚–wòµÖH£¾­ÞG¤8{“GNa	­-ÒRS‚zØw¹'ŠºGavü<J¼“ãD¸_Òù·]|IŽ»:wF˜==í³1ª?Ð–]ÀHL‹Ek‡@p?ÂÙ[;3{¹Ÿ×ÉèD>ÐΖçHâ žÐþlhöÀdd—Ð{›Í^dÛ_ó˨`Vñïcž4Ñ+åO<ÌÅÌö='柼ß#,¿wÖIØ©·îG˜gÄÀÐöâ–›Å#•
+¿šX™æw=ÏêH€qv”'§‰á˜1û:Ö¦%Õ†¯—›¡Íò,ŠéØúöÕFÚ8q„Pë’ôP å¼%ÇxË¢¼–ÃäU Q®‚8ýí;>LÒr®ù~O9/ˆÈÓ2CMÓYNDlæ‰Öõ4‰] ìñ‡ÔãÊkð£›Ëç¾WÏ‚£éçIûé¢+Eº&]›¶¢“u+Iyã[Õîtc›Û‰èf÷²‚ûíU}n¯>àþŠm†‰®jŽ†´HéF®èî^›Rò+d®uŽšµ/Ø{‚£¬í’Ô;MjÙ¸iü­G?¢û?¯£YúõcaÅÕ­·#2Ù‡ýiÆDº'^ã»…~Œ Zã#±ÇîÚ;
?ßµ? Vyr±\wèêÇyrÇ…¹†R¹5£i™¾Ê¾ä
ôÖþ~¶TîÀQXŽßšIÈM|¥ ;¨ Üðqšwt8K at 2Vž)jbRR¿ÞZÒfWCÁBõtìy?CÞøƒlÅù`ë:tÅîG[sRÕY~Ú3“ò
+—ºk 3ÏSëõÇçÒnÈ¡¨ÅŠ#,…·	øCOÚÚôŸ¬pãá
+›c4Ó¬äî⺈u‡}Â5%ÂH¯/kúê˜|åÁ3G”ªÑGCåDéÕiygüÚc¥,«ñU6.Ãà[n’L°8©ð;~#æÛÂOÒàfÆíW6
+_´Nƒ‚|´Í}-Ÿ=Õ’¶Åàít ß+˜("쉻<2ݲ8×/µ>à(ZxŽGe¯¾ ‘ÆÎleDP­Ø·V/zGÞGÇðÎqÔ/näæ%]®çÍvS¹‡‹èI“°@èß­p„]L
+Q¤0BâR}Ð'‡f[ïÌtœKcÅ+á,zœ¯N¨Û¹”ƒ‘éCñž:óßw°Œ×^î%—³\4e&qSœäqFrry¢©•KP8R
+x”XˆSÀ½Ã°<ÏgióOï+^w°çL©1%cn¶ìÕÞ3»¼^¹)Yg~ô¸ô
í“©ãO<©0m×Gø¤e{.Õ'»?¥–2ðn
Æ“&yiW è’EµLfäØevØú9Kh	±¾+uÚþ*„€Û_âá6|D¥ÌáÚv­ew$”œ×l:y/^Åá>5ê_õ¹Z[¸og™%}¸¯fÊÐêH<3E`,Õm¼ký"_g3!CfPdvÚÿ¦µ,;ˆòs‘¥u	GŸ ŸK—ÅüÎjf¬Þˆä³ú‹KaoÂÎ!‘›{÷IÝ4!ˆ"Þ÷Ã__ç*NRâô{üÂqÈíÖkŒ;Žø:å¦bX¡—áMç¶{²ÆíG"z:Xõ éÚ¯CF‹Cr•·”ðòí ³ábIt:?ƒ×QTMMæ=M²ÆVDȉ¥Š–³ílö‘ßîotæ”hŠ)””<”ƒ(Äu·»è’ýÃðßÊ(» ’T~iÆZ}êãôeáàôŠ
+¨ÌJy›!¾þtj
¹jê¤wØN£˜XKôH-<w@ï•“®Núqö¸H1VÊàBOÇTІ´;á̶ŒóºŒ"Õðì°ø€Ë©BÀ¼¹Ì}ô®‡Ë¦ÂØø^Rf¥6ŸÛO°¥Ô7„Ä¥ÉlWñqVÓœrsõ Õâ¥÷áÀÌñ ZRFÅ¡ÃÏzÙtûµjüŒçvÆÎ/¬l‰Cû@G¦+è¶gWŠ5ë&”PJõªšÊe3ïsÖZÕl,¯íóà|ðÌ!†`œT!y¿½Fa›בd:G5>W$éÌì»”
+¨P"æX_†âR·DÚ´JÇ';ƒ´Ð²ZÄ‘.¬òsñ„ÿ3ÝäÍGeýÁ×]óÑÍñÀGbNØøx𤚍šAzáŸÇë9[VÑúÂèrýl°‡Ë›ê»•£©óÏ4,‡Ž”.—ü	cßï%§ Žµ‡Ðm‰VhÛÃMeÝxܪß>ªÍÚ¼5Q{ü1õpç•çÊÎÊz0%R™Õ×|™ä¾æ—‚)sæAe¸•Oæ7oQQò®“з†ýy¡p±O µ]²=Ž%š*™˜s®ÀÂê7C£v÷TþZ¶`])6cꥐwªÄþ=Œ[±:>-k‰”ÙÃÓ*~¬%"Ù4ƒò0p„ñc£0¹€ÔÅ1 d„½÷‰ùø‚ ü «nìlæàù¯¹hï¼ð}™ ðRvRL6—ž
+™œ"¶•î³Ø¬ê¸y-•r7
+¦&Ñ® |ÈùŽç¥üÅð÷©ÑÒÁA[ïÈL)Î/R‚x‡€ÚºEÛ¯Q²sX,x"¹¡¯çð&ö!ñ,*9ë’³6=R2ij˜dµ ãæÛ·Ò=£5¼«pYQjOõ®•»tüd쭏ɽ›“mD#Ð4¦_‚íR¿üp¬Kë{¿@‰{¢½ƒ­î»~˜ÔÓx¤uYqÁa•âœ™ã7Lë;æÚ÷!mJGS~©õòzŠ7[žçz–$bs?O+‰Ð¦¼É³{Ö%òMÖ]v_†²{g?X?±Oó)6ÁëEê•÷>åã&T7ˆTEx¹À0	Vùê™Ta¤úD”C‹†Ž…³œZ~Ží óï}ëé>®£Ôç·µŽ¯hñÐQÕŒ’âßžüBã(Nw¸6Cn]5ØÃ!¼|îßú¿K-*(H§°°…€I	ô-® %g9<©vÝCÀÏK²ü)©sy8{›ö†ëËo:2róWÂчĺ½ËœWCšêÊ}ƒ˜ªÐ½êÝWÑz÷ÒÝÆÛõ†ÞÔ=œ§ÉõAîàyåh´»©ã(ݱ‘UI¨g¢îÆHç̨9å0‡µ™L‹JM•­¥+"žÍfzî’7zfY_ËʤâÒ¯/ÃÄWCoÆ?yl5ù4å<$0T:ýB€ã·ÌràÃn(þÂÔðÍ’Þ:‡Ï2/w‡¢ôB7s¤_ÿí¯],Ü)ÕèB:|ôþšLïš0^:ËhåD~
ó~¶âE³GÔlxŽµÖßöm¿FsS¶²­:oøõfmõr™ÆCgƒ6”ç¨ßªbg©ÎBÜҪ}ùåɉ¤_v5b–i»£KCA½[_-àe¹I@’Cä/¯‡=FD^R3iŒЄò5°ÑÝ8ú'íòöm¥j¾É¨õ¼ù2|Ëbu3Y¹fâ_sñ’b[åÛŠkJ•JA±S¯û¤"Ë÷qÑé¹"«É(¯Ìµ+\0,­Ÿæá¼s./sú©DsþÒüJ8<²a*zÍu¥®;@>Iº~œF /……ÐGv0='ɵ¯}ã­¾ö^FßÌì6E+=âû³Á‘éå‘èu¸	¶C°œ†¾ÂýHßžpå1nV¥k?ŸyOïó tÒ2L8¤?¤s/³´wʨÖ5ëí2(Æô]FEÂm¹ÞÏU~Ó%ÉëÁ3=³'›ãSÜYÁÇK‹¼Oû)ˆñÜ3 —ðÊm±WÑdSªÍvMAâ>µ:éaÍÄ­aPÓ…sŠŸßâVÞlsûÞL®ÆŸŠiÝ$N¤¡IÝÓЩ³¥Yªžý¡ÄU//`	?6+øWoâ±6eÙ^/)?EÉR
TïÁ\P}”·PâhÚ¸´ë&SfV-BuD,Ÿ’oZ”¶9†f²Ûtל,åv§Þ3n:ÈK¦Zø^5'²°÷Ó‰éÍí¿p½¥háúÁú¼€zªñ©P÷³j®HÒ7Ñãíuƒ)Öõ¤k_Y×sÇK!xoOñï’¾¢´ØÕvç°B3\¥>¤ü±Í;‚7Ø£DœþÛvyû>[Âú¾³XýBýµ¯ÜvU“ÔÚA #³vÝÆ÷a–yííº¥Éeä™{‰Ï7°£/E…ú§êµŸ)Ôš˜ªÚï
긏Ӫ˜wj—‡ilÅ‘×aÖPmå“œ÷÷î)¨îF/ØÌì7_·%™•ãõ"]Þ«JÊ•tº˜íÒüP{(‰¿{·з÷j~Mžz9P- !®Å½0'ýóõÂç…ðÚ¤uцyØÖù¯RƒÜ“ÏÄxäO”¡°õàöéþIa“’Ê5ó¾bê_CG2æ{.äžE;ß¬G\3Êõèˆåö— 
.¹þ©¦Óк+‹í½„—3%§® b)®º«€Fa~:zh ©hi:Ó6Õƒ™è·p6,óËð¨ýVã[fÏ7¤ƒø3ÜZä–µÒšv—²á×%’Bß›ó|õÙFÔ:û;±üCiO?Ó÷²bTÉßð@çõê.5Ów7ðk7
kL.ºÓh$°¾ž$Ä8YÙ†·ÞæÕ_F1µêDu¬2X§µüPôuåù?| þÿ'
+Ø8A­pg+„#à¿ Œéö›endstream
+endobj
+377 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1138 0 R
+/FirstChar 12
+/LastChar 121
+/Widths 1139 0 R
+/BaseFont /JJTCIR+CMR10
+/FontDescriptor 375 0 R
+>> endobj
+375 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /JJTCIR+CMR10
+/ItalicAngle 0
+/StemV 69
+/XHeight 431
+/FontBBox [-251 -250 1009 969]
+/Flags 4
+/CharSet (/fi/comma/period/B/C/I/L/S/T/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y)
+/FontFile 376 0 R
+>> endobj
+1139 0 obj
+[556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 0 278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 708 722 0 0 0 0 0 361 0 0 625 0 0 0 0 0 0 556 722 0 0 0 0 0 0 0 0 0 0 0 0 500 556 444 556 444 306 500 556 278 0 528 278 833 556 500 556 528 392 394 389 556 528 722 528 528 ]
+endobj
+372 0 obj <<
+/Length1 773
+/Length2 1203
+/Length3 532
+/Length 1775      
+/Filter /FlateDecode
+>>
+stream
+xÚíRiXSW†Q#²Ðjá‚"«á&$DJ“•E”M)’ܘÜÂ
$(!
¸!(Vã ‘Š,¢,ÓZ4VD at EvPÔ	#‹¨
+. EÚŽ3ÏП3¿úôž?÷ý¾÷¼ç=ïùl­ƒ¶®ñ梱E°5$"‰øúÓ $ØÚúŠ 6£È6Ñ’»;	ðÇd ¹Ñ]ÝédÁðE…RŸ€ö¾³$à-€D0‡ þl,à6ØŠr`“o>žÝ‘CI(â	$À…9ÅÃÁe֏‡´e®Xø©•‰’pS€=nÒÀ-rQ„/¸PÁ% ÅÏ‚p'ÿSóÅ™b>?€-˜•Ç3úM—-€ùÒõQPŒA"ÀåB"d>5úhÍâÂbÁü®ÆæÃo$žàǜĄ%7Æ8	@›ŸÍÕ!„;ßÛœ—€Í>۝æ^s®Ćl›TøoÑYî&ýãÙˆ`	°$‚ 	'âëÓß×óŽb ”#ø8PÝ ¶HÄ–ð¹ÀØE`„I H‚ûu!"(†oðHÒ€8TD˜}LŠ;à‚"ÐlqSAÀKAçðoïäãƒJv­!Ó€5dœH"‘É 
+¦ý71Őß\iî¯É‹D‚Í
ž×'ãéBâÜC9rÞ±ï%éŒ³í¥‹µ}âȨ¾Þ¥^’Õ›¯Í?wgS¢c_UøT™ÒÔ`xÑ°UÊôò¤}Wwoia¾ÌLÌ;Þ33œ3¬Lýqyø¸Ò_úDh3‘5bxåûî7£TíÀξ撂ˆ¢†S¯GÎÙoØöT÷ïÖZu;’kêNÊÝháL%?$û›ªÕ®ÖÁFÇKr(Ùš£‚Ã5mYé¼l½ËNÆЫb“©³z§ÌD¾½|çJá4¿~ìyyœ23“6èw´²ü—`Ÿ\•~n÷‡¤Á#‘#Ý„×sR–Ë?¿Åªèóοûh?›Ý.ü Þ|-îõ>¨a°T[ªß}Q±;G¶ÖGöáž‘ã³3}\VoÊÂÊ®H¶¬äÎ}0Ô’T)ÆWڏWÈ_Z¬2þË—v‰*¿Òº©mT˜`ßQƒ)Œbni-õêÿ‰aê9ÉRm
+”sÏyþS{T^jóA+
+“§kûìLÈ;úyZÇ[B4ù›þ÷ácVM¯л9'rϐ÷ß–¯»µ˜Ùyc:“ëwŽ;ú³žªU7È­µ˜ZxÇ2ïú;Eý»SŒž¯&Ôº›‡
byY…Ïé[W™Ò%n.`îÁ»}¿~ZËír½ÚÁò^ªÿ?Ÿ<:n§V©2/–<ymä›Q¥g¢2n+1&ÞPzU«×gf6:P²‹QÕ—¥5jfS媵߮fÙ4G˜ñ½ uď<¬Ò©Jiºí¢¹ÙZùl&|Ór³ëXÌÞæÊôù×»ÖŸÞ²èÅ{ÞÓ–yMÀl
+YÉÊMN ‹W¼{€Ô¯U_ëñ~K1,/|Ìàu´e>”ªØrý²"Ø‘‡îÒü™c¡ô Òþ±£9Ùîãñ1Š’LËHåÆô%¯×Û†î/L.Ñ”{p6v×ò"DEØa·6CiYQ"Ÿbx|ËTçAYzï´N±?z›ä‰¥)Îcçc§r_µýPŒ6vºVÖ%›úé–Ñ¢¶–¸ÔKMÍÖÒ›ö®·‡¨O‹,:¶×žŽ¨žŒ]ÉΨö÷jíueÙ¦Ô¶°7÷4QÒˆ_,ß0_5;œþ²æaÍ=Âù·Uîí!2zõSÓfLx"úÐæâÉ¡Uè(+ª3öñ:ÐÝSÒ$“éȝB·?0øŽøüf½ÂÉ%Ú¤mïêå“ò¢È—­ÏFst\pC±xbl¿`pH;¶Ç⠍Ñw_-+=Ã6·¾Awp|F8tÀ°Òìþ
+cs­K3ç3i
]–-BÏ­oÔ€Lq‘nÛú$7ç§Ì¢Œ%	7ÎüU}á}¥.ëOO¥Åšü¨™Å]QjsA³7¢½€˜¯8ó9ûÖçO?yö³ù^(‹kôw6Z=R·…Æ­òýŒ ŽKgkÃГޭ]ªõb7R±-mûµ}›B®BÄ‹»¸o?ƒƒòNΞ–4òvþˆåøÎI§ÔÌ)yªÚ#äU¶ï¾¦az—oc] ¯O“Ì•*M–
«×…§x4›ÑF]6o|oŸš›f¾¶}A·Å‰î*ûeOÅÙñ3ë¿äɯwìZJ¨±ÉK±t®Ty1•rVâ€`ÔÙÓ©­1_‘þáß… ‡±E*`‹v~j°Úendstream
+endobj
+373 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1138 0 R
+/FirstChar 49
+/LastChar 50
+/Widths 1140 0 R
+/BaseFont /NLNBNZ+CMR7
+/FontDescriptor 371 0 R
+>> endobj
+371 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /NLNBNZ+CMR7
+/ItalicAngle 0
+/StemV 79
+/XHeight 431
+/FontBBox [-27 -250 1122 750]
+/Flags 4
+/CharSet (/one/two)
+/FontFile 372 0 R
+>> endobj
+1140 0 obj
+[569 569 ]
+endobj
+369 0 obj <<
+/Length1 773
+/Length2 1206
+/Length3 532
+/Length 1773      
+/Filter /FlateDecode
+>>
+stream
+xÚíRm<”é&DÓ«•—Mî±q*Œ/3^Ž4L¢¢ñ‰1óàaæyÆ3/ޝÍ(/ke"Ê’Búud­÷T¤M"Q"Ωp¡B[‹ÍyètÎï؏»ŸÎï<÷—çúÿ¯ûº¯ûºÿúD¦‡1‹BŽ("2¦(ÖÀÁÅÝPHd‚¾¾±E0Š0Ø"ÈP¬¬(€.¦d@¡Z›YY›ã$à€
+¢088Dv8ì\!Ñ a0‡ ¶(âã6x E‘ Çî+;„ÀB˜â’
+à„‚a„`²âÇ	Bíc™+|jI Lˆ›;p“;n‘‹"¼(À…‚&®(~„;ù=L­wóx®lþŠ<žÑ¯ºl>Ì‹úWåÄ".(µToè£5ˆ‹ùk»Î"6æБ`ÈK°ÐŽ„¸LXÄ	AlžZ­Cw­	<¶U&û™>î>Þ†«¯¹Úb²aDä%ø·è
+wSþƒñl08ø’Id2'âëÓŸßš£ö"”#ø8XPÃØQ|.pdb( F¸P$€"q¿&$á[ IB1ÂÊcš[VŠ«Ø‚LDè*þõìíÑÈc3*06ʼn2hä¸ÿ&Fàp1äÌÀµÈdšÕÇkqÄ!¢Õ!Âóú„ƒ`<]Š„8„'PŽMbhníÉòø½%=
+»díƒÈp½Öú°y£tà[Y^ÙÝá»FªY•ù›7+ŒëF,}!LmŠuër|u<<#¯ÿø$`<?ºþÖl¾KÔ˜@ïô¥Jcmßü”…ì¡Þ‘Îòì#¥í…¯o¿,fî`xþ]ñ)Q憯¤æFA"•ÆrÌçN:Qm`FtWÍ/O6OŽPÍΔî–Ƈ&)Õ½A›Äj%Jç³>ŸèÝã»ål?Õ¹ßÿ8äŸÂþ:ÍÉÐ\7­$½ ¾ai¡ê¬‰]Y­AFÒg{6‹MÝ[÷efÿÝgÚ±5…ñ¤„§}':‹#ŒFõu0iU°/ätqR¾$Ò©Ø­[t_|òQ7A-­ß»cìqÅîòø†‡9Z®wïçs%IôéI‚ï¦Åëæ±O[Hr½r¢·ÔnRióÿ®„Búƒã…_äƒ*7IJ–gÚÖËÖYsð#,=J½¦aFQõØv”QÚyÀ§Ë[[; g£ú(3;õØäçÃf*“ J×Ö½£Üe`j×ËûÌF^;ùN*bE†Aª{l·7æªïr®³¿ñÕh/ëǾSÄïHãŒ@ÊéÆ’3뮵ÏÎË:Ø(δÆ5?éYžvƒ›zlª_³ª‚Óù%sîêFgrvÿìŸú@§îêC7"Acôf»Ï@Q-Ëòû(É››™¹¥î–*²|e7coÄwU0“€þËßNçX¨¢¾*¢¯zbFéû9¹nú½Ø€d\uù=•üy‹;Ÿ¥$l/5,|»­£VxcýáðËu·	Rõ¤¬º{;þyö´[ù‹wç&¹£ñƒ62™ÓÙÊ´óžY¤v×
õ‰K¥•q¤â„¦7Öß1®Æ·NflUŒV8'8GvHìô¿è4«p¨*?Ú¡oÒ>J³™~HQ6‡ÜÚdÚòÁ2÷û4­?†’µn^™‡Q…ZF`«sÍ‹K1ò:¨†´öJé`ÛÛkÌ8i—P©ö¡t¢¹›~Vþ"Ñ2¹ÚgþyVÅý'eÍéìÁ­ö!¹{š'ÞÖ¡Sƒ)Œ
+P ¥€ÈÇœ.øRõÏZ•F?]ØU-òöV^fè½·Í2ó’Qk‡FÏ‘¦äËf
+ü›õlŽt}óBæÂ]ZÆDMw"ï핬ڤ¹‡“ô­—UäÚ¢ÿZ(MŽX·ïµìÜ`rMz]ñtÑüíŸ4è]7ûå:SÏoöd…óD$Š•e=lcï襐j²/éžðˆ,9~7ܱ¬iHwÀì™Ë‘‘‹#ÊZ’Ë1Œ4“ÚC)Aœtý_ºm¼–ãx´ ž_úϧÊtRÚäÅa‹½ï£Gª3YGÅāSN¨ß½Ìé,/–’ÀÏrbHÉ‹ýCx’QÃè Õz]PÑ™WÚ=ELo9{¹¨Óš.Q³ë{¤,Šö*Ó'–zRàúdý³ÅÛ‹»ÞÜÒL	—¹Ú2®Y¾c}ãb¬º^‚ú¾Æ¸\óP»å‘ú’€„DÊqåõ{zæ^Ç¥7Ò>m¸øUÁ»±ƒòŒÏÛþÖ$̼÷<a{Ǧìҏ:ÿÐWÚàj®ÙJÔ<¬X•É¤-©–JÊ€óÎþÛç1•ÆÝäßøþ/ð?!ÀáAlL„òÙXáŸYw¯~endstream
+endobj
+370 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1138 0 R
+/FirstChar 49
+/LastChar 50
+/Widths 1141 0 R
+/BaseFont /JPZRZW+CMR8
+/FontDescriptor 368 0 R
+>> endobj
+368 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /JPZRZW+CMR8
+/ItalicAngle 0
+/StemV 76
+/XHeight 431
+/FontBBox [-36 -250 1070 750]
+/Flags 4
+/CharSet (/one/two)
+/FontFile 369 0 R
+>> endobj
+1141 0 obj
+[531 531 ]
+endobj
+1142 0 obj <<
+/Type /Encoding
+/Differences [ 0 /Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/exclam/quotedblright/numbersign/sterling/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/exclamdown/equal/questiondown/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/quotedblleft/bracketright/circumflex/dotaccent/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/hungarumlaut/tilde/dieresis/suppress 129/.notdef 160/space/Gamma/Delta/Theta/Lambda/Xi/Pi/Sigma/Upsilon/Phi/Psi 171/.notdef 173/Omega/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/acute/caron/breve/macron/ring/cedilla/germandbls/ae/oe/oslash/AE/OE/Oslash/suppress/dieresis 197/.notdef]
+>> endobj
+289 0 obj <<
+/Length1 1297
+/Length2 7473
+/Length3 532
+/Length 8283      
+/Filter /FlateDecode
+>>
+stream
+xÚí”UX\Û¶ qÜ]
+‡ …»»»[E…¤P8w	HpNpnÁ!8!8¬ÙûÜ{vúÜÇî§þzÕËúÇkÌZ1ÑiëqÊظXƒ] îœ<\<¢ 9
}^ 7“låqÊ[¹ƒE<""< ; 0€—G”[PT€ƒ	 çâ
+‡Aììݬrl	dœÁ0È
+
+аr·;?õ Y9ô\@°;œ ãäÐýë7€.Ø
óÛpaðð l  w€5ØÅ þe¤µuý+lãáúß)O0ÌíI
+Àú$ÉxR´q:Á6`[ ¦ËÓXà'“ÿRÿÙ\ÑÃÉIÓÊù¯ö¯ÒÿÈ[9CœàÿUáâìêá†4\lÀ0薁ÿ%§¶x8ÿgVÅÝÊ	’Ú9œ<ü\ÜüÿŠCÜ!^`mˆ;È`kåäþ;†Úü§ÉÓêýíTVÕT1Ögÿ¯mý;©mºëÃ]Á îªÿfžøi‘`/€777ÏSáÓï¿ß,þc0(Èŵð
+¬`0+8÷S+^€ µ{À^OÆ@.¨‹ûÓ'€§•ñغÀ0þÚÕ§Úþûò>!äßÈÏ ‚\œ­þ‰€Þ`˜Ë? Ð
+þ7p€îoþÉ
+€rÿ&᧬ö?ôÔ^ÿßôt¾Ö0+#ØÝ	lëþOœïßñª'žZÿc&òdfý=iþ™÷Ó¸6àÓPà?ð¯YÿOÚýO–ö   ù@‡?ðÉÉñ|’rúŸ¬œÿAž'+èødåò>Y¹þO°?ðIÃí|ÒpÿŸ4<þÀ'
Ï?ðIãÍ{þ¤áõ>iÀÿÆÿy¬ee]¼|8ùœ¼<M€ $Àí÷¿@!¯=À*òOg›[˜Wäï(ÈCÝÿþ;yº2ÿͶ§[{Aßæ\@b!i
a¥þ
+ùe¨lnTÅ!£¡õb\«b3°Æ¯ú`š_ø¡ør¼Ô#µ
+ ­À:yƒŒï€0t ›ˆ-7Sýt`n‰4ø¡¿×9;rçí×FöãE†‹5ÏÔ*õ=¡<ò£(”Òù¹û3Ç€±õo˜é6[©ZÕSÀ†»k	#¿•\ò]¾’šg^>|#ïY™r\ÆΉþ <Wrb¦T•rÌZÚgµ´œÞë{¡«|¶´Õ‰^»+iÛxã·â»þ³ÑÔ«=‰¥S Ýa)ªÏ›ïaæ‰Â5´æ{3ßê+ î‘Ýá,¢»ê¦pÛGæ«iûO.L£MÁK>nr†VIíöþ„*ô&ÁÁÜ,Ó
vÈb؍ÅہEÁ́Óï*ƒ
+g›ì>9E}\#N-ÑBüä Gh´k]GÃPÆG‡ß¾ž—
+àÄ°õ؝¢0¬‹»²<’Øíʍ>¸jžì€i+Ãf¡K,@š´;˜Sƒý ùkn“EòËžõ³
¼Â,—^HæîÛÕ˜0âF¶=泯՜n‰ŽqNij¸Ÿw´hñ›ZH8g0—÷´Ì/²‚iä|nÅ}¬éR_Ý	ÆœM»jTˆÖ[õÄ¿&w*«]R¡’§x†ÁVq 9Iièxh,†jdíÃ2/á랸7«i`‹‹G?™#ć×~IQ/]Š¾þ˜ê
+ˆH†“¬§Mæ·Ø²ÓªªàáxX‰}pÎi™Y¬ëËq-p5¾ Mºáâü˜¼öUÝaÈ¿‡‡Ýiµ‹$+í]¼é¯.¼º“wxÄD—¿Xd}ã›ZQ1¹+°2²Áp«ã	on<†@ŸSdëè`~·q¥éÒ*!0U>CûT\")0Û‚ÅæÐf¢9ÌQëŸôðÍÌÄœn«»˜qÝjDÈgõesL61§öPŒôÛ=0ˆ®³WaÌe”ˆó˜ä»ßÜï‰:2]†šâ¹7DГɴ8Ä`´•Îqhb3^(^•Åª×úo	Áh$º¼CW=údF¦9ZñÕ¥NqõÇ[˃Ñwa‰ݬ)²B;ö-ঝõ8Ý\B—6'%¿ü—^ê,îRciòm”¸þ×Ï5›8†¿¨)ýBù·å_ÎsZØ€±Ì®ƒXÛ"«>`¹…3Æ1"úè üš3géº.y7s,õ;xÖTã{y.»ê°P.»ó‹ª@}1÷ýÁð€21Í{KÖÇ4Ґ<ö•yÛ}Íy©z"çmç
+Dî2Ö{žCŒ2šè´,­͇šAé~Küó¼Gœ„”§ÜåéåÁdÅÚ¾ùE§'š„Çø&jÒ[0Ó/Û­?èÄiJuÊZ˜Èz/ å‘¤_1„|väü(¦.A{ýa¬zƒ€€×dAž»[E.`딣ÙÞºÿXk»ãrTØ
Îñ]”ÔØâ}+Â=?SÈÀhÀo¼ÎÅ°ò¦£Á|-ü
+~ÛT;2„aY­õq˜SâtàÂÌ-=ä¹´ulô°‰éËÏž-Mʶ¥«¸?ÐS"eÓv$][q2„ºö-hÌËôøFÒ‹¿(¼’<,ÇÖ´g3eÐT÷‹ÉÙb
ɘŒ0ÐÑå8å½ÅÃñûŒøÛõ´|ÎFU×RòbwD®ïöþ”ºW«oáEÝÐ…J=”8I3ùlnÿ³±B6'1ÍŠ‰5Ô4-ü1ô»[§¿F³uøš>qbŒÓŠ?Û}õqîˆ^‡cÃíÚé¤L,ªâ,QIøwVËV¾ã×PæZÎx’?Cé‹nÒÖ‰ö•ž_™ph¨ÌSÂ$£“êŒÈìšuð"þiRõeìÿÆöÓÇÜð'ÙA‚¥£Ä¶‘Ù©µ©`ü¶¨¨ë<´ó媡SiÇ?ðÈ)(=¸^ãœbvDö‡(ÓÇÀyéìòfÏ‹œl,I‘Ò<8·²£ñ¨ŒoqœÂ‰$åç»qaŸÁ½Zχ±Å…†;̳üF¶/Ea¨_t‚“Y²Ú48×tbºjøˆ,-ukb¨åxŽ¨¹íÐñè7.³ú—%Š‘nEV-Œ)?@çËFm|µdòX‹úeS9J¢IF›ÁQ” )ò/Ýi"è¯ãJÑá6ùŠqÇHl«ïý²)≮(0¦tõQÈ»Ž¶¿[v'ÐÐT¿áO^ͤçtL ;Wt\a˜ä%CÔÇZ“ÞT=«Áõ(iE]©¢æïg™Ÿ›Ç}sIçÖÈE{û)þùÙ3ÈÞ—„&I‚pÉ62¬]Øï0dÏflÅ©íŽîs&¶ øž£"ÁJP'Ñ
+‰1N5™ŸôRÚTk(hÁØA­¦òFÌÛ õ@0#,v¡cozCþÅwœÁãZ¢¡¯›, „ã:%PuÅ"åê0<mXA,ÙŽ­S<êܶi˜b¨f½IúÕN	[[TçÊËÁ"sŒÎáw39ËHŻ׸Éæ…Ý´y¿<Pó@GxdL|æÕ¾]˜1)´¡lå&‡TÝtƒwäi˜<ׄ˜º¸üªÉl!«fŽ©1PÍݘ¹/!ái—5ŒìG\†ôÕ«ðê´I"Dܧ³rÍÅëId¾RÜ>:{p?©	=A0½ÝŠ\QIsåUŸ%ÒF†_lcz¬ø
+Å¥9r` Djp]´.
µ’Ñ¿PŸ=
+1|•Äþ@¨à€'Å.¸ËòŠ	N.¶ä¦é5Ž*kü
+")®3#¼–z÷Ñ¿]ij²2yìÀÿ×⭏€¸#ÂLV-WÎ\ðæŽKwm°®|òÛQ>›Ç8!yžwÀ\‰˜¼7|2áw³5M‡Å†ªã]±œðævóŒàTV¸èȳvì/Q©œÞê
KÓç/OìgðA6ûì`,qÈ讑ˆ%·…œ8¬º¬‡v£$+Ì0÷ʹì½ødßæk±Tt¶Æ_/®¥W¢œ}Ž_‰/FTÏ`9½\ué‚Áj½©d‘èvå:—K{C
ԏ嘇Êë¹sŸZ5U¶YŽnjˆ=Öt´s94X„ø¯,Ù\×Z–²ŽÚ]kÝ¯Óu›`Ís	GpŠÐ‡™µøë<Á,²~¶•¼SX™NÎö«’S®KÖtNùÂчƒx"W¤E©ÜÒჁªæŸmoÛmkZ§ÌSŸW.¡ò[ÚÎ5iØû yT0š4 ²•ý²ÿí]ãŸ
+Å0å#IÌ@
=*8¡;•qÐI,}CZyÝ·’ôQðLZI#2>µ¯7í9¤sÚœ½¨Ïè,óÊÐOÔfN‚Ð\Y;„”—bc«œ`G`b	عÍc‰aÔÏá¤[Ò+TåûX£$Û¿`:f¤£·È¡H^ë¾½ž}À†ßuY©¹¤a¤dÏAS„¥2>-}~¨/ŽP-X¾RÃöLúN)ŽûáØQw0œ¤A28 ´Ø f™~ˆÒDîf6Iº°|£vUÅ]6UMã	-¯º‘”öHûŒ£™` 
â¡Cs+ãy¶ÞñbS+…Í*MÔdlz™w_wô¼°ðS´IªÆ°÷χ]óã߯(j̐v*lw0)‡Š7õF•ß©	“£úX×LÕÍg×ji1µB‰öù´PÓß­Úÿö›¹Á/ÐNÖZs+­s¬‹ù;Eç™Ù‰×PsZ}+7áýVìzN
&¯a¼_£øqõ(È¿ø#ÍQì²t^Òº!?[f`š„É|j°<÷0¡“øYè( φpI&ü’ÈëÅ1ge¾Cfc¾á Ö
kÇAƒºÌú¯v·#ͱ³‰—zl1þ òÔš…o·{Pªßïg1«Ta_mN¤­Ø¸—L·šsÂô6†eÒ®+ŠsØ½7XPì¢"O¿‘òOâò¬-ÍÆù0Ú³k7e¥`44_vA)%o´‚ѝKr	ç´à†H/†F(C
+~èDíñZѶ×Q|l—8sÍÈ)×oAÜkUl©™•š6¢£]ö‘âj#­ |ß°ã²Õ´9±_EÝ{ª“žg7pŽfMâWôŽ•«¡‹ÛwDlÐeIùŽvJs99a\qg«°mª¥¿=€Ì+,ØÅNcÝw­ìY\¶éš›˜œï¶[YKÉDâjIg}DÑOyçQâ“qªt‚l2*ÙzšhªÀw®-TeÞÂE“q•C©g	ã(ßøekä?‹–_Ø"w½½» Á2—¼ ÝrýNM#al+‡üY+ÀèGq:ŽI¿bÆÍ&«ž½W¨Æ~‹@ò^“"úÐ!æ×ÌœÏô§ä•þ'­ñ‘n^ˆ›­wI¶^ÐÔ÷ö›’ôž‰…2ßû·²ë„ß¹¼«"™ph§/íìRRð!šRÕãH\+DÃð–ý¬
1âÈîË@æ´þš•÷$YëºÉ¹6'ôžGCý,lðl]ÛúŒÍÃw¬Ÿ*œeu
+g#;ASæä*ÒwÉkö|³;¥hå‹émf½)å:5ãgâºy‡1L©k1?¤)—¬žWvZ3åо‹1ϝ«÷#VÃ\u{–ÏÍuÉÜW¤ìž™ïÌKÞ/ÊM1!2…nš"}ÈÊ3øÒg#4*÷s,~÷¦	~½©›µRè –‹eýýVRXxcí-ðy¶ƒ$¾IIÑË@ZAEØÔ‘€J´±çØ.ÑñKm–LÇŸÒ–³îÝÁϾYq-òÓQ.2ڦŌqÜwVW9D ËwÊü8¤¦ ñ æŒ&:š"¢]äùL)?â¶úÅžçÛf|Y!~¼e_Þ]¾—ûÒ©ô2,ØyXxú‚þݪøB†nzx]×ÛÀ–¨·Âäe½Õyrønô¶ü›•xÀž<ÎhV‘ûÀ0ÎY\á‘⤊Ò~œBfEçÕø1[³íW@åä|"I¥:¶»F¹‡|‘ñ³ÎÄ*‰Ýî±
‘«CH½·‹a|A$‡Øá_nûL'Ê¡Ý”1•=ç*v¢jwâ¸[ß0BÐŽ¾Í
+v
fËûs>×wv·ž—§+Ü”î;׬Ïý<1Ê9()Ï>BâùöU\prY ?Ø“<Î"†‰|îù]†…„æÑÒñÞ\¿Õê£XtÜçÄ>Ak@û ÇbyþjÙRŸL•×=Æ3f<QšM<ÊaÌä/$ÒÖ'UQG¢û=l”84O®…DÓ¤eÅŠ†£,Év©Ó§o,'º\}£Söo¾[3ýÚe3u ,*¤¾×æ[ FØ;áM£:vPbêÚ±µïWL<ëRzáæ¯5EƒHÏy3´ºƒ0©ey±ôSÖæ
+l}Í!—ïÐ)UÅÙÅ5»ÃS!¥V%™ßŸ¾L{i×ÂfŽ/ìnX×@èFk×wª«Šwen¼ö’iai¢@#&ðŒ\¡W±U¥]÷†àyQd	E¯êàÚœ	%¶-+AÌ‘ZB*u/yª£¿63‹¸º9•£RÑÿðl¼­iW}óYªè€¿íò´=§7ÿDr&¿u˜XÍ ÷óˆªÌ#½G‹8Mó
$CH–1¼·k¾³4ÚtˆªwN~ב*uñ®-~	^ýCþeLÒ/87³Ðø9$ÌÐLcLWdñl…–„ žËZ)õá݃f6~]ˆ)ï7~t‰?Ê—­Òýã<úªE^_o8Yí¥?3.uzàÎGe•o/K÷ÔélÑC\y”]dYªÛî¦A„"îÔT´ŒêÔ§TN#'o’wt†„:¤†žÇÜ…”q]¨ÍùÂÐo‹¡ÎÀ½z\ÆOü®¬ÊEÎù®¯¦P7B3m1
Ú	çò×ÑÁæùô¬8߁òº/_‘QÇê”ÐÑûfÊ¡\:­„´³…XWˆ@¶"ÂŒ../àm';,LUÒwî£þ!Uä;{ýN-™Õ†Þ/&…”Yeƒ|Yùez<Æ…ÒÒ%‚K‰ÎHìº!ƒp¥Ú!rçJlóÐpûT	±€:ÏX%¨ñ,×p¿¼çäžÿ>ˆ?#j¨¼²²ŠÆ#›ÒýŒG•‡1àÔ“¸˜$|㙫BòÁ.ØW,åçoaö+íà­êF÷‰@ë92ÍÒ'h«.9Ü«3;ÅìEY$ϱîví*К–Íx|Oæ–SKèùJaË`Ró˜Þ
+7f¦F–I™ê³e[WE÷!“-­Ä3…ÛÁ~ÇW>Ä溎wKIÓp|&ð>÷`ï‹‚ÏW…å(*ÛÚšçˆØ>¶ò-/¨ãÅœ"Ǻ;4縂nfj’C­{ßVøɨ
rÖÑ‘ü|æü–Ô”’çÎöµXÅ@ôÑHÐWz¡×ÙÁê‘£?so¢I£0”¨ô¼DÏ·B&±ÚRGWñ·æ~Ý2ÈÜÆÆ8.4Tç‰!8v¨äŸÊöŠlê¸[<<$ýØ°„Æù»Àsüe¥vÕËZGR—¹OÖ6¬3¸¤Ü9–ìƒr!»gúï†ÚÚ[ØkÊè¾P
o£6C§aqÄ'Zo+Yóé$¢BÒ°2º™»Þ¾ä@ÈšpY7³š¸8aÜ÷<ÞXŽ)ˆ	±¬ð¨¢”ÉSm#}Æý‘6$ü~¾Â
+ÍÌ¿úœ;¨Üó.g$ªÞ±N³Öiìö9vqJËó3Ã–H²v™˜Ê|þà&fxNŽM†·	ó¬
Ùv-´z%ïÒL™†¶ ãÝcø# ¼³®Ý_V¿âæ}RvÞt°L›&ºó–œnœ³4TaƏû`îÏaßnh³¥L?7æž-ìYþy¿p
+Kéõ“ш»J‘×òpz¢ŒõL’Æ™3c¸ií¢:QÈø#:´«;ÝjYrî—ç}iÉg G×`Qe»R<Ä÷,Úç
+›Çj¨²‚.½Á<¯'LU…}°ÂÕŒÔßô<²]Y®m4徿ƼEvÿ ¾öè.2öCÍvÔXátE„:gO¹Eá¶Z»b*$µ8M¯¢º/	#òx'Ö^‚¾èÞ¶ƒi&EO{‹uԏG	ö¯KꚌÓCî9`[ øz„„êr¤Z-ìÝàJûÁ·Xo™[¡Èeƒ‘[…Nðky‹PøB"{è7˲uµ™Ó†—ò£¾s‡Ä‹Œó‚蕬GË#'Oò’ûo|(§m¤Ý;ï‘?°¶é³ÌÝ„·WÖ½:åû%ñ60ÁOÑž˜ïš`éÖA®¡eIsˆÇÖ %.¾¶{ðùf3)†lX¬&uIenKœõET)’Íü^º¤Ð¢ø¬}¹Ý5Ó(VµgØz‚2¾öÚ™˜[HKÓö…ª]ÄHiS5ÁFúóŸÈ+#ȶ/u4b^ØàÂf'Íq2N?(dáT§ã^mg–÷£¡Éqà/\ÞRy
+´¸Râ}u%¼O7.b¶ÞÝ~UseˆÚ‚;¢ç?h°ÜЂ۬ìgµÉ)¾Tܬðè‘Jòv†Ó¯ )3•g?wºÇ ¡¶l ;QÂx™ëA!™ãOJòW 	ÄÞú|ÊGîuî>¯¶³¤ÞÌÑ…9'È_º6¼|F0›0F¹ˆ(½¶=+ÍÈ¡˜«?këF8Ñ8¼ÿØP‚M ‰–åi”·÷òf«ð!lïŽÒψoóé–:oÇvy¼@z1G2,2gjŸ—¶s¯ó$·Gƒ:Ra
žpŸìžK?æ*²Þ½98îwWl¼ø”-S¡A‡‘QOÑßÑ‚ò¹® Á›ÑcÆ&A™N+CÄ„úë/¯­ûo£q8ü$V½úGQÏu)´Í—”üxÉFcš_»Þ•×¨ÀVWBC;_çåÌHö`÷ÿèiܽ§Ñ:·RÒÉ<=ÚK‰…¸¯aU:æâáARÚ¦h ìåÞúÓÇò]Îëst"~VNé¦Z/‹+þöÁ´>«3
—¼˜ÿœ#¤K˜MÕpˆíôºŽ,݂ƜςP9¶mf¿{¼™ÞH™†´™º^ë|è—ʺõÕìçÆÄÖѵéûÅ“‹.3™Ü2L@JTïÒ»YûRájZ9¶€\þÌåî74=9ßÌa×
Áº{Ð7êæiËv¯~·Íp1Ù·m×w‰Ý¿îj$¡‡SúÖ±’ŠÂ¨§wR Z‰˜¬6ôD¯Lâ,fœØŽ…ïó­+øšÙàUZø÷öρçxøte2kTßìH¶7O´N¨n±¦¥ä†4-$IÚñ“˜Åjéå”åú\Ô`ÏDÂÔ^¬Þ_/®N'Vk(¿:Ї4•Þð­cà87|²åz.Üù5ãÍ…klp)ãÕ(
+ÉŒ€M»X$Ñoj/‘–}^{ç÷§„çãÅBE‹¢šS]>!9d’µxžP>¦¯&ÈtbSÎóÔø‰:‚QΝ¸$¼w+F#ðÖû
¿/‹Ô@ŒØ£Ü²^Ð̦Ø9†Oý[·¶ÿéŒÈȐ&`Æ2I0Áƒç‹ëYù_›
+œÀ…å3AH†üwþ0šûs™HêÏøÄœµeI],¢äªD’øÀƒÝâ ­ýé{ð^¥õeÔ>i±Sƒ˜MÊÖ’©o·n{Æ»xµªØx(®"‰µ÷s|k«G7[¦žÉâÑÈ ;}ÿ}öM\óm!Ž×ûÚDãàÕ3úBí<aæp^ß–"ÂZ‰µW³vÆkµ“ÌYV}xjã¤ÇuÁÖ—}³þNw#YÞ²öš
+q>«
+9(†“Òòø¨¨W»†µËéáåÅM„FF¯(3SÓfÛÉÕO÷â·™{"3>ÉáuX>¢©6Aö&¢°F&uíxÈ^ú|b’*+ù¹©_勦¥ÛßûH??¢v°µI­“¾‡Yò.¦¡æÐëœÂ‹ëßßµvZÇØkšÎâô¶>G÷áhýºòõ3¿?÷Cis2îm»ÜÅoóFæõéþ£–ZñNc[†¾ùúUèT{°SpiöºjUQ|I6¤ºU°6Õ„YíêéFBOØß4z?ë¾$í:á4ÑwVÁÙë
+#Tf×(_ˆ6{´Øv•}X^k±^ÔƒhùÔ€Ý꽶ÙF
éiÐd9Ø©Ó6úsÙ'¡b>^"GçÑ‘Ê9·¡X÷K6ò”œøª”,l"õð/›¼¦À¶áJPÁwr}óс”[ëÛkú˜Îð9¡úw+"›Ö}öÔú?"MðM¿fÓÓÜW½ŸŸýlŒvXÚàãÄ*½i¢Ì#äÌjᡬ¿Ïæßûþàm¢¤•¬ç×ycœÍ®­µ2"=ÍU
+TÏÁH!ãDÛ­Š—3ÖB‘ãÐÝ0õMÀY°™N“ƒNÞ©ä] 5Îa²ódÿÞWîwÇ!à»ê«G Žo¸KRÛ9Ï	FWk…x’__ˆÍ+Špí$
+¢ïSéï]ÿ2¶2µËòÛûÐ÷žâ9mÚíƒ8~$þïh¤ü̳[’cÿ Æ7?û+‚•–b¥crM¢Ÿ1.·oU/ôÅã›~ðŒ›Pûî=[¶&QRÅõ6
+¬@1
+ ÆojÖýþ}ã ös8FO‘5Ýħ×ãsÉ¿Šìý$	œ Ã,LÞ»
+^›¾	ùþ=ºô>aö>ÝN¦óYGrƒüµK2”ˆ›M8D"ãÆáí«Þ-™3?¾tˆª«ÖîSt–š¥—öt¨éïØÊ°ÔñiJ1"æÌîÍË/™nh'1ñ㟞–/Ÿ:˜+3¤ÉÔÙ±’LÀ'K%«0úØÕG<øöuIô?›¼ús³$JDvãMô‘µ4ÙÕk´÷¢Z©â§Ó½z]eJPzDA\ÿÎu^¾Üµ!üò`9qk“TŠvºÊ‚"_ccý§s—(±ÐÛË&ͳҊB„õ›Tw3i3g;Úzt*&ýÂ*´›ie¼= ª£Yõ÷ÿáƒñÿü?Ñ ä¶‚¹»8[Á1þÆá¢èendstream
+endobj
+290 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1142 0 R
+/FirstChar 11
+/LastChar 121
+/Widths 1143 0 R
+/BaseFont /HJNIXT+CMTI12
+/FontDescriptor 288 0 R
+>> endobj
+288 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /HJNIXT+CMTI12
+/ItalicAngle -14
+/StemV 63
+/XHeight 431
+/FontBBox [-36 -251 1103 750]
+/Flags 4
+/CharSet (/ff/fi/comma/zero/one/two/C/P/T/bracketleft/bracketright/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/w/x/y)
+/FontFile 289 0 R
+>> endobj
+1143 0 obj
+[600 550 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 0 0 0 500 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 700 0 0 0 0 0 0 0 0 0 0 0 0 663 0 0 0 700 0 0 0 0 0 0 300 0 300 0 0 0 500 450 450 500 450 300 450 500 300 300 450 250 800 550 500 500 0 413 400 325 525 450 650 450 475 ]
+endobj
+247 0 obj <<
+/Length1 1998
+/Length2 12084
+/Length3 532
+/Length 13204     
+/Filter /FlateDecode
+>>
+stream
+xÚí•UX]Û¶f!¸»ÛBƒ
Np÷à;Aƒ»»îîÜ5¸;¿kÙÉ9÷±ê©¾‚Ú?Çì½
aLjr%•w¦ c ÈÎù++/@T^U••
ÀÊÄ‚HM-ê4r¶Ù‰9y¬<<¬ as €•“÷=ï{NDj€(ÈÞÃÑÒÜÂ@+J÷× .€°-ÐÑÒÄÈ oäl´×01²¨€L,ÎL a€ò_o8”N at GW )"++ÀÔÒÄ`4·´CdþËHÚÎàúglêbÿïG®@G'°€,I +š‚ìl< ¦@3Df¸lòCê¿‹K¸ØØ(ÙþUþ«ô¿žÙZÚxükÈÖÞÅ萙íþ{¨ðŸrò@SKÛÿ~*íldci"lgn°ü3²t’°tš*Y:›X œ]€ÿˆv¦ÿí ^·0+«hJk3ükCÿñPÉÈÒÎYÕÃþ揄þ³þfðò8ZºtX˜XXXÁÁ¿ÿþKï¿š‰Û™€L-íÀ'‚ƒ`äèhä>`â x±,íLî  ;X˜™Éä~ ^€Èñ¯ýdg0ƒÛÙþ•ÿ3z`vp9Mm~‡ f;[ã¿öÝÜîwÌ
`6²µ§Fàeø;åùW…nÿ¿ã÷, f{#G 
Ð쏔õ_é
fWvú«„“õïlkoãâô; »š€lm~'`Q{àoÉ÷œà·À…@¿
߃½=Ž ßXdü›9À®În¿Ÿs€--Œ š\`93K×?F€åœÀÛø7ƒÕœ€®˜·ŒøÓæ௳åŸ"ÜÍÐôû%N°š
Ðé÷"p‚MÌÿº&€¿e8Á½~—å·þMà¶"¿	ÜRô7û‰ýM\àÒR¿	<Céß®)û›À5å~¸¦üo×TøMà¥Vü›¸Á³QúMà~Ê¿	ÜOå7§¤ú›À4~¸ƒæß¾#™L¬ÎÿqÔxÀՍÁ±“‘“Åï”ýïÑÿyÁóïƒÅnaü›À“0ù›XYÀ³0ýÁÀ?ð¯£ò‚šÿàyYüàeµüÁëjõ‚¬ÿ@°”ͶúýÌÊ
+¶²ûÁV ?leÿ‚­þ@°•ãø×ÙýÁVÎ ØÊå[¹þ`+·ßþt1»ÿ`+?låùþks€ÿ±‘¬lÿŠÿsÇXÙ8ÿº5L,--mLÿ¹ÿûn¹{½c¼c_ulïœ<>ÿ9LÍÎÒÁ(-¾XX¸Á—ä_©‰‹#øšrþÇ·|ëÿ›Í,ÁŸ Ðh‚¸82á²Ji.ù$^0Q
+C)bÞ«P×=݁¸iS4,ë@¿V«ùP–Ž…º³KæöDäÞîýqLâÌß!6uöe×Õp7ݳ…Hó2]ÞcÇžâ.ð­­qæú˜Rqjm¤$QëKÖùÀQž­˜êÜ
+9DŽk}OF'—¦DºZÈçZvreôT‡’Ð÷!«nè‰ñЫ??Y…À73,_€Ú]0
+às^ LÇÔ
_°^!ÛØ1™RHc¨C$:OfçÒ	«N睈5‚*5­/FáŠæ¸ÝÖ[Ô¤|#Z¨†Â³š’*ös	%ZÔé4i­v)?„Du¢ÃeELD7Å×±wbig6	¸¶„¨vÇ6ÓA…³ærDÍÖ,«h2£”y®ÑýˆjEˆŸ-‘p\¿ÇqºŠÊx&ÔØ4Úy—WÍ>Da´íë‘æs• Gï™t—¯‡S×ÛXÊfÊÈ6P«iB:_ÁZ°¦ÅÅZìqX…P®»ÛŸGׇýI=”ÁÏbë»·+nâ«Õ½ ûë'$f2ê·ã(9^ãXÖ°§ÉžÈQ—ò#]i!’oN¨Ì}…¼ë’ÝG?¯>1‹÷+·&ÖÄÕŸ÷mÑ÷M×ùI¬¬r}g^¿¸r at j>Ó-Ð,+/àÿ¤=<×¥×±þíB+=7‰ø—ƒ‹8ÐÏcÉç!Œ£L£›iµÎõïËxšŸ%]yûÏkF1§^ë˜à¡¦?±ù/enÙ¨²ÕhÊyYˆÕª³Î½ô #$-œ¤ÖZ@‚™*ãê«Ó˜-xðÇâ«T‚å1š!¹ã¢0íû¥œú ×@¡¶5Dã¹²oÚD7&r­÷¨Ià[–-BX‹†îÏkž }V]DûœO¹.Ž"’~_ˆz ×†ÞŒTu `X“¥v]Ž9.EªÿÊåRßüŒ|õîVãõšËKô¾àŠ5îþö
+Ô†¼Ä=>5¼ëYç6Ё;Iö:G
+Ó\‡q´?¡„u|1!¨!°¥IˆÍîœÊgby·CkÂIíÖ¨nD3¹¡7|*y·Å)•#w-¾s½¹ªÙ”tt¬#âí6“yËUPVªHf#Âî 9Çp· ×©ð²cþÊàÓž»U¹Ï™ðuÀmn<òÕ¢1¡iŸÚ9ˆb¸r)}"¾’nþ2VvÔ­ŠÐä’–„•ý‰ùíÛ™›/e/”ÅüÕ×b:…_íÒÂÙ`\©^qcH®'2QÞÏÌ-ÁBlÈÈb–7uAðœå0¢wj~u6ÆÜÍ[p_}'Û]½Í•=*Nö|&9š{némëw±$£ÖŽ¬ã8yëÞA“Þgj‡({£Lað¦kô¦Àº	=Ó© ½Ôtü:™„Äo‚êÛíD'|¹Bō¢þ4"ÁrFh:¾×øzp,ÈZùM}=VD€Ô ·Õ†'{Öº·PºÚ즈°ÃêäìP'ÏàÁÜ–òM´sT­ÖMì:×éeð<kZÑÔT¨çŠ‚ÔqýÅÆÖ.d=z¼à.?B¹ðýÄ—åê>É¢'Û%ßÛi¡ñëÌël~
uª-ãs0?)<BÈR„¢]Ü1(}	â–P…Ö‰õXp‚Ç5\¶Ÿ¦89(gCõÔBâÕnû¹¾FT0³7);Üâì¸S|5Öò‡ÊÈß—wå|Çn{±î_GV—):{¿Ue:ñ£ÛQÌÞ×8¤‚¬Ÿg(ÿ“Ê)ô
v†=
Í8 ž÷¨!ìW
<«áÀã<—š'‘>/¢•¤¬+E“é0bòg˜uË·zTýº^ö¶¶aõ¬Ä‡€‹)’~–8V¿qx>6sCÈɉ½Í2Ü'þ3BìKÙ—«hSJIÿÝÅAv_N§µ1ׄ´Š&ªùÜ3d·C2,yb¿~fèœ÷¨îhuKì­Ã„”†Nˆ¤÷üw=8jš:>$“1âä/O§Ì?æµÏm²)Ðù=y¾‰ëY}8¼’ãYî7zVóµøøu„gËWKùs—Í`ôºçD¢5y€xåõ¼gåëˆøºOîÃ3)öÌ2vÙKDÈ
›ÛÅ+½±«ÏV~õÜô°©£Õ'®†QynÐg¥óØÐm35,[%fdG(›åÙÁ¢vÊ‚gH֝ËÎþ@È,œ…ôpsEDÖm–—Jþ*A®øó©¸:&Íñ¤Þz„/f‰v‘7°MÖ÷”Çm…¬G™«–°
+¤§ïÚ¹®Û^Œm›©xt¯ßf 
ŒËvÑ°ê™™fÑJJîH@ƒŠåJ†!‚‘×µÜïxî;H )£Îf¡ŒG^¦êpnê6ސ™pÈO줔\¥4$ ˜ä¤Ïë)<É~:|¨-µ†—³þå÷±*÷¢Áõnñýn9é¬Båmwel`¨0æË'o?3ûš|œËù-›ªœ£çö€£fÿS.Íò£$><Ø­Ôº8ÄX·¤X©ÚÎQú½¥©Öü¶-´»ÇjkØ‹M‡°FFrŽFY![_.$PˆêÅŒ+ûvÝ`ÚÒ|¼¸a®»ç‰QÅ»ž"+mZ¾¢ÚÎÁ4zêåiRÂÊiœb‚_+ó©ý^
–,>êÀÒ7_÷€€ÝÈ,Ec4…j:Y­9äWo¾œ/gÛ›tµµÍ)¹‹Cï6ÉͪsÕ¥Fù^³ùª½…&v$¯c«³ši4M:jR|HÝÏîM×ÎôL-У!Í_(/ò NÑÊ—è#R>Ψ”<ît„³g‘3M£äH™§ÞÓGƒoæ¿F½ã¾“;(ï;ÝUÔˆV¶F8ó°²	­|Šý¬mã‹ù[L±<¯¾bì¡EOÃÈÑä®AObŸŸKNY¡Þº-Üõ‚Yb_î½=I¶x›Ä}B,`Ìš5l‹™E³EôcÔÐ6ôœÐüôróÆ¢aÎÐ$©O>Ï£Mo¹D¬ÅIºOR!ðs£Rÿ¡!,oY>ÖwÌz¼—2É`ž*!´Œýöϵa’×Ý@5›Ê^m-"ÄévîÃ
+-Åé‡ýî[ýŽØÁ/+BòÌ˨²…sßβö`œ2×|]†nûù7¢iÌB1º$ç<j¶PiµàæV0
+kzf[/Î\Ñ\ Ÿ$µ¾ú/ƏݩÈ1w{)ºÁK©.FRt§kýRׁ„×@¿žŒ¬}V(›6lõFçFoLÚ#9õIÁïF¿²¡V—G^C7Ud,WçÌb7<½T‰áæÏ‘×2¤Z¤Ô®©äÃÙÙÑ3'±÷ÔõzeåÅäÏÔ]ÁÔåÆÖ™­C¸bü^.aýe	»¡¡
Rv%ö¸³™à¶Ÿ×|\Jù¸2WPu:Qµ~R²‹Øã B×oœ¤¥—)S(‹cr¥ÜC2kŽ‚Žx­êºÂFq¢ï‡<󞚎
+7Í&:>xºw$"M÷›„B}Ô§ž7ãšÉÐlJ"mG«P7ÇDî¤2¡e+¶ÉÒ
+I²!´fq”Ù8ï4–µ°Õ 04“î4Î³Úï ^ª†Üf©‰ùB¬¼ŽFË|ÕÑü‘·Ò!1kéVÆmáÊ™Ñ;$ºC˜kªt´y?¤_D»ð”!¯ç©’ç5WJyˆò-\år©‰5¸—¯µçÕÈÒeC˜`è#ü.ÕÉLj±zM̈éÛHµg˜ÜáˆÐòßö*G}¢IäWà­æ‚Ùx¼øÒ6ÁC&Ô•n000ó€ÎˆŠž·‚q~™[í•ùN–c´ŸÉ¢gTïaßÉ«è«Í¡_³øFI®[¾â—F!Ë{
Y^('ŒÝ\<œf†x ®?&Òg¢ºØ‚WÊ™…ŸÎïDF¢‚j3	*ö›L]kV.Âr]bX")¹–ð–ÅÞjÔÑ65{sµ*ÏNXã­û:3u!-°>,ýÌô_8yÕ¤é6^ss­]B¦ç¯RÅcÈ%áÒ-“Aæ{: ºR7ËF#ºbÝ·#ý%ÛÅáû9¼¦§jÔ2íèÎ0åæÕ=¦:ZêXo6tÏašŽ”ÐÎë{KöÛGd5ˆ+¹{•ÝÌ5,Mö+7‰/™µœ{±•qVQLhAÒž	zZ¿O(—„´¥E¼T‡êÓ¸CÓ»	¤DÇÁãƒ-çjΘNþ'ùKîâl[ÕÆA·ÏÅ…K«Ñ«<â\_ž’?Ký2ô e·y­òM0àvVœX,»Ò®¶.ë°½ŸKˆ?˜y,•¬úÚdX¹®¹ƒð MD×Q9`0E_ÏÓRÚ¨Ÿ¥+3nQ4õ+?jo}`ƒ•D…½‹´ÐÜ–™û9ìÄÈØb2îÒu½C±[Ä·*ç¸Q;ôt€
]æº'¿uýêá+½éÈé»Ù)1mtì\¢ôÈ`pu˜®ƒÎwþ†>RhüÔÉ’üëÏAUY±Ôâæ­Võü”µþÂüÑ‹¥Ù²3Œ*¼´ƒx¯x­HÞRœï6.r~ÒÓeÀº+â5$ˆ±ÐéJÄ?íMtMzŒûTd×䩹Züȯß×öñÁ&)jškÙV7ØBÕ„ú"/ƒxþ¿ç4Qÿghß•udÇ“ëû®¶Ö‡É
ö
+‹½Ú‰5B؈.e+¯~²;®ñüuþÁ“½Ï‡
ÍqqÊtœ>¤™´öÛ$nM|¦ÝÒÊß]Þpy’rz˜lÁ?㬻“~ø FDy»ùVM¸;àSs"‘uÿXsXi¤};%""8îW±"ìË)£±´~{•7®íùù£ÓêÈÀ±vF]Œ›mRG¼µ¢Ð{ŒÔ¼Ü¦÷¾H³NñœVìÐ𽪦HŠX~ÄKÅ)¡ü󒈡@fŽmæs¨äþuÛÚ_’ú,nE€Kc«FïÎbý#À ¹²85¼7%ýÆ×*&wâ×71£’lsL,ß­!ÓBÕžžAéœ;uTÄ#¥Å8Ù3ÌA^ÂãSæ¤ï”Úg<×6
õTy¾û
.ø>	
+xćtZtsþŒ¿.ŽlÒM™?±rÙ’x›ã´q܍¨d³pO#5ò ?]¹s¦yjZjY¨‘èd©!¦)š à¢Ž82	í\ÙyH‘æñ]®J¼´Ð›}±bó$iåzG—óS“`ó­‹bž Í8TÃDŽÒ¬geÇ™tì´m„ö5ôòZM}¹`ötÄɶ–†ÿ´òø1O	y·R¯Ï—0O'>.×ú:^
{ïÓDZÊ6ªL<ËÇ…ñÏßz¦²´7ïuœ>èÁ<æ›EAJÙ‘kì•øºïB¶Ì‹£ÚWŽÂ€Hž~,+U‹Yê¦ÃÍ„åóÛdÚ¨ð…“U¸ðþ„ºi´4âêÕ]+	â_½¬Bżb„Òƒ'ÙÙ¡2"º/g÷>ªP2½[£;Œ6*ØY&²º"1¬­§éÍ…XØÓáÄÊDˆž!>:}ÁœöŠ3úÁdÅÿÑ“>Õç‚“ó]c/{B=ÞÊQ˜m±Vg÷-}}¤ÛàTLþæâ(EºO»” OÐÜW¤írãò¥t¼yQÛãWX *D¿Õ‘A±¯#¿37ƙӻ#²va{9Á‡ñ0‡Ú•JVÚgÒ¨9éÕwué(£Kì™|Y”9pìÛ±—Ìhê{ùß–"›Ï ñ=;QüŠ&ˆÇæô„K¨e’#ÏãÝہª.ü6äSp5yˆgs˜Ü=Ù™gÞ©‰÷­ô“†^õÓÄIPì^PV†Xˆš”6‰µŒCöTŸÞ
fÕ;{§«!Õ¥"b ®©+à0q•’K/µªœcSò/¬CˆyYãHú´—Þ–!¥V[Ý~;Aiëp攩ÄÓ‹ÞqüŠOp.|ÏɹàG}L¤Ÿè÷ž%”à„c^LZ$¿J_bA¨KÕB܇°¯‡È³“®„µaß9f¸
Ë+ŪØÿƒ}YIðŒ³J¥ê˜v-á¢ü2•$:‡â9|¶¹0þU2;º·+w{„ˆ^çz™þ#ï#Öm)ÍìÂÂt•JÔ-Ævn-7Úé° ²•ÛXGáwÀ<¶æ–íü›ã­w¥êÖz¸5}<Ò[iôfFâôå‹ÍÀáºÑ|Œ“ɐx"åJþ"^Pxè7fÈväå9ÁãåŽ ”d"=læÛ Ûªi¹#6u
£U?uþãsãFñx¤é,#^åö;äëòûÐ5$÷í¨¨ÕL—»„zhü9µ\M¸G:ÓЫÈu—-c~Ñp­FæZQ[ ÖÇúbŠë[S‚°:®;ÍÛCŒ½!ÏšÚŸßܱËÉ»4õÝÆ5‘°)S†|By1m[>ó·ð÷ñ¶j7DÛ­õUÄyÔçcSÖD£;h6Ù`üL‡* ½òžØÊSN‘n}3Å©àãŠB(? ocþkÅðÔM°ÖÄ&ÃÅIó¦kÄCç¹ÎS+zl*ÆGŠ
+ϵtwñ¡ß=f¥à@‡û°IeôþôÛ;»Ît=Ž;@³ˆV	o/d:-h¯ëë£+3î⃺º’]W
+•éш]œÌ©UÌèÈ`Ä;I &wúøfXÐÏ‘s*œ°­o¾•÷@8¢X	‰§p"Å”,[sk'á },¾«"éðËk†Éì#Lò|‚5îâ0£{ìË‹1…*ÆîÓ¯5SŠ¿¤Î–¿cÇNµ„—öP>þ Uv¼HÜc%åjGôà`ÃDøze³L#?â$òÄ0mî{L¢¯ú€Ÿu¢r’‰M°â‚Y¯‰ÔGAágQ«EWœÅËï /!ga²Æ[ ÿ(Ç–ZZXú‚܍×Ô´Ôʶ`ñ‹…KCáEv~´z½°O0VRâ=»Gäv»%eKŸwI©’¢f›…S¯çÕd ?’EIf-t€–P†Ÿ…›bµjÚ]í½X9\_%-R_µ‡{Ððè{ t„ñ¦{#Y˜àúÚ…¡«2ÌnËt
â”?ÚÝׇ*É’;ïÓ[z
+O•q°tÊ”Å3.4Ì‚kQ›²¸ÚÃÄ)˱‘ÔÙ<Zý‘„n?3–7+;–8rúq.­Ì,Ól}Ïdå›IÛÆ"
+]N·£qê{M¬«­<߬2"õi"¹,jè)­béF+7Áa¶o%¿6ž)jwu›ðg¤ú€k¤ÂÑ£’†>¼Ú̼ňЉ˜.¸§dÞ<,Ò^Š´q	8?0t¶û{^Å(˜W†’3›c4uøýbùYÝg‚·*’ò½ð£ucˆk2;WÐòìéGwÜ‘Q9OéÓ{’ŽÕ;EiMˆ)†„¢â\nå2FŸ 7+«>xfK̬œ7iÂ`#SÞ‘ÂóKœÇÁâx%M}6-»öæ×'GoEÚÈa±óI\£¤dHÍ·–›øÉX²%Fqµc¥Â;wBù1Ýð!T„Æ
çyé<Õ»¨îœ’`Ï{áÜ\½Sö$Ã~—ξ}RñbÓìשÞÂŽñ<ŸÐüÖ<¨þî§âGÉ]û‡7WðˆŸbjǝĄ¢ößX¶Ñ³§|jÙ3j*]©ÆU£/ㆻN­½"`bÎІ§³‹.uÍ
+d:³‹ØµÚ¾µí¯•<˜rBBƒc9›<$
+álú#‘™õ¾[y‚1ÊŒçé_Nu*„û`9Ov~KÇW¤¸
9ãSìf£[H´be™ù…¾Fó‡Ô|Í&º‹hF¦13«¾©Z)Бð\×…ItFBáºn¬}Ø›ùâuI²)V?>‚W‘¯©ÀÝZ]8@òÅEn7²/Æh%Wª7¯„ˆlå0Ú#©êê<Í<µ˜´ñx¦dRûZÚE¾þÈ“¿ˆÌìÊù¥Í.wÉúVÉŽúؘÔ‹Ñ^bQ—Öâ]´™{+¿r÷þ®!ݬš.’²Žéí !M¦ˆVjÕ“Þ”>úVs ¤´„ÎPÚé‰O·Â5’…ežV2+ÑZ»¨x6/f€~@[þ¾Ï˜¢ú»·£yw÷ò¬ùûF9¨¨ó=di×ÚËÀÆlE¶JK¡¤gFúäAür¡
'	ñ|¢€‡Áéa=mXAã”Æ5%?™¥’G>ÏClÀ ë÷ã}ù¥æÖFFi·ÌÆ¡dù•H™¢Ë»¯]¥‡¯˜Ð›f]åñ¶oVhâçBàéõ`Å‚=&’=Žhµ…׳2^pŠ0ûx†p«YŽ¸€ujì0‰ËlÅЬÛz40@­~=g‡ûñChÄy.]ãnu_kËØÉOr‡9É’4Y½vìo·v^Zð2BMˆ¯HX­ÜѸ.'­´–º7s¦X¬\='Ogôƒ}èwܮŪtZ[‘ð0Q,Æéø†ò´Cs«î‚†Ø†“̱êiFŒÈ|¶œŠ…Mz·¤–léÓ¾8TDD£6JTrº¢ûJÃNÇØOªåÎl+*Þ_9”?–Ë„ˆíŒMôRjÝ…³^ÕôG,ÊØ	ÕÈs¢'*»ò¡GÜÅצ	—à àö¤/;é+t øF4vç&,ő̈„m¶&Çï+iF6lã¶ö_ø¤|>µ¹ë,=<4îHÄw|ØL‹š#ËòfùžöŒª­O©Áùoš
+á)p LðD|¬âå¨5ÄO„Íu2?É€*ûË÷re
Gødñ¯‡è>ÅO´ÔG§Bïó—õV96­Vz`w`!†Jfk
F!_TSaü<-—ݾK*¼Ðñ„>¡-™$ØÎ,×·‰÷PI¤K;#e¤É2ø6ÿ°áêYÙ@øÈ;ÍìÕD­Í Ã/×í]‰…yw>Ô —ýjsnl4ê¾Í§Ç˜Ð"õ-Ю‰\ž¢¾Sãçm­ILåG‘ÛÔ™™ûD,q6n~²ëzÌW.ð
+1ÙÄÅtm»ºH<aqO“ÍúW½³ïSvfMXàèjòÄáž7O·®j´†ß*õt"E…ºÖ?çÝQ”S‰*Mæ`Mx\òÓ¾Òa¡¡ã—R3"yþ8	/ Òa—â§)0[ˆ|Ox‰ÍÒcSnäÉjÊ‹ïIvñˆ	»&ÊžÉÓD9:좟Á£½¢ðôëlú…Ñ)h[8|n[±•ôQZìÑYÏÃuûiø¾uˆæHаԐž”ÆHÅDq÷ÆcãšÉ¿™¼ØÆnêË” ó§~ýÜ/ñ¶d
«£0‡è†µaÛ,«¸D®%öŸÉÚ¤á…R'4
+3¾y™Ö6MdD1O9ät¸ ÏyY;©6fÛ}#«‰GªUãë¤ô©HŸi“9Quî9oa1g­²šßÁŒþ؏ÕìÁžÇ$³›œùtÑR¼‘¶èhBSctôÏÐÿ)Z’NZh¥&9m+U
UÜBDË%3fQ¢Ý”¿º9Bvrÿ­fˆn¾þ=:b^D[òáÍ©/ìÖž—g÷Óqõ$• –ÛÎm¯éÛVóÝÀt£«í~©>LìXG8êÒI×­ó@2hå8œE*§²Ÿú;R/>ýòɇ¬½–Ì~X(‰T™5x²Ã— üÜØ5%Ë&˜ÜTšá¸e
A“ûláo…_gvTl²P%y챈Í‘÷JÊúƒËÉŒ§¹_‚æÓÜ—'Sn}]ÞË…1Ãü¤2«áÝõ6-EÞ3ÇÚî¹!?Ç¥“'V¶P>ÊSß:èÓ]@êƹà(e©’ùÌȎчÒ˯ӃÒ1I>mUFÙ·«•›CŒH-yšðciƒTÌ"¦WÚw*3‚9öÒH‰`=>>I“j¾´¨g¸y­cß2ÆóFÎÅFÊC‹Ü?eš¿yÇ
+Îë¦Eö‚”šªJö MÏûÎ0D_xe‚®¶ƒ!éK’ º¿û\ªBõˆj»=ä{N¶"Ö;šŸ˜!^öÜ®0æK«U˜¢í)$‰¹VÀüÙGJÊŸ€$'z 4üVcÈ¡ÚÅY7lˏ¢s™¶®ÏN}M^p·o­'?#šs±Æz¾ò…W&ŽV«¶·à|LïåÄ‹Jª°\¡“?âcý¦˜-Úh1‰Z(ï,R,÷NV¸šœƒ4ˆàbìšµWšwXšsªeÔЍ­ìS{À~IÞš!¢Ð'*,¥`AuůT$ã¾¼]˜¤Â_®>‚:ò;è^a4±5D6÷=¿{Ä)éx¶÷¹fœ Ÿ÷›$`lg}ëçT»BTÛo1jü
ts‹—.ÒÀŸí†€ðì_vëŒcÞSP RSh²”†¦}ñ·òA¢QÒùÈSqcóñÔŒ» µh£VÍT|·upYê•ÊóÈ1XÚ9n¿X¦ð?,¾?¯»ÊĦèÙÒw¶Œ%=J ðƒtH$¥ÇõÄò©LŽ¶.w/ò>r:ßß²å}ŒTï3þP¹æ«kfµ¥xÓóµ¨tÒ“%/bö³6 mÕöȬ1/5B}J½½æIÁ\Ùꃃ…„ã¾ín1­Ùö,W›x„œóbúEöMævb\vµÅÛ½àŹ[¦ÑnTš8zB¡þøúÝYÄÛ°Á0ç²:sø•A~Yv…Ÿ8Žë³½l­Tÿ*Ù²Á²‰ê/OHüÄÙèëÙxÔeKã+/µ‹-JÚïÕ;¢“‰ëR‹ípm
Œ¹*ÝõÅÉUœUý®mµwGòF'dE‡%Bmà'Içt3ǶÃu&²”ñàÎ!
+¹Ls樼ÿÜã'å,ƒœK¨@ãûkíUn™>+ÎÇöÀ+1JÆïý™	¶„¦7™l‰±«‡Û[_CXYη@Š£A¸Õ}šê
+Fä$BlH:*Á"á¾öz¬¦¬sO>£çŸy-UP߲뒐#¿¾zH|"	‰Ä<ä÷Ü簐«²ö´y÷%†\I!yªÍ£ƒ¾¡ß÷^1ö¦ç¤Ú\Mè2ñVP†¾ÙPf´e„´ëuß TXû»‰‘uÄ3äèñèòÖ‰Ç-š±™ý™¢rSvI.‚ÒJʾ7 Ö°›U'™&§“Ó´»6¾A¡†B‘µ1µ!—Ý;­ûèþ9Z»«k“|n³Ê±$ÃM=,Iƒ”v+œñb•WCÑÛ’_õZßï`
+^džÖ=1Dl¤Ò
S?&¬¾çXhíØÃÅ	ƒ¾rãêé™I2œ¥
äè­6ŸwûÄU¡’ÒAª®ÉlØ瓘–×,L—™›K$¶¶áXR©Ó”óê’œ}È=…¹k4¹a‘F©Ž­'îH*Ûw‚¢äw­Ð÷ròm³Š–‰Éø×&¦¾=Õbé.ó$ß%ãfÏad§¹HE)ƒL<g
+Úq`Í89L>ÚUH3~”ˆ4‡ð)ÈõÉ6t‹ªÃD¶# –K>/PJÑ€ ´È/›TxÑ	£ù-~)Ë/rL{Æ›Mh/ëÑQûÞ±À(Z¾ÚqY[=OTðË“7²÷ð¯ˆìO9˱s& ʪ3×Á%…juxÆàŸ þ7zBLE	yrvMgÄæó)ÊO箯dPrÃx‘‰!6ßÚ‰.!Þc¿Å
+ÿnn†ÀkÆʺ)ê²þiIØ¥>L/$wµ<‡>^æÞ@')X¬|QNLÖ¾¡ëôšnæº,™&ùómsX¯zߌ@vªÀó<÷Ši*‰o3?[Yl;Å;ÓŠÒvf×!ºVkwzÍzçuæ–ÙV·×Z&E*Òøi»m§T§véû}Í)¢hŠ8À…Α	¥8=ÆÏ??u—)$ŒJ‡˜y¤¼4wê“fYJÎv0šu×(T8u}²ö2#¾>辦-×u h"UHñ÷\ m'Â>s®îºúðšv÷ΏˆŠìîé¾Ç]~<WN¨µ‘Ž7åÞ+—™˜!¸'d’¥¡
š|HUüç¦gN¿ðî3/Ã~gFÿæìp!ð£$ÕË+s£¯..¾ E`-Á‹Ý"³²do'cÒ¾Cg¡ûÈãòÝ4ú˜Õ'r!œÓ¶;âtY~Ù¶„¶¾ó"
+2Ô¶\ÆFå±c³[
;=Ë314#éw}WÆÌ„Â5a¹vZ¢ÁkYSÆÞmöc¢|TdùÙtEîß47ŽôQ†å ­v¶Óæz“Bö	Q¼TÛ(Ê"=uG.Œþ—µÆØcÔf‹šêf­(2¡¯‰ßÚ JHŸ¼Èg'Óþ,7‡|*M[a®—BÝ“×Ð!÷S2h·çò]-j«o¿yQ¢\ög%¼›ì@ûï31Ò&£›Í.>­[bEW8ÉVaKJžG{è^–¿ /^I¢ÃÉŠz‹gFTI²¶üÁuÆK=;|Eý2eV>ÉäÚV
+Â;×»9®‰“³÷:¤Š—f¾sÝ¥J˜UZÕì<è³ò7‚ÞB‰øž®ßk)ÏPìÈëMÖ({¶Â6‡(fÛŒ]¼%,ýÆ!t³‰šŸ²¹&¾‚$V‹;ªÛø‚‰7ýYT«ò;¨nL—ö¶µ’˜ýtТªŒIR3¶«)a“}¡Ñ9Ýd±ba îÏ3㤂Öøì»DÀp)3¥¬›ë‚ó|)¼`ò`±Õ+T.××ï?ÐÏõgù1ÛRqqÂ¹¢¶QÇ’˜ÆÔ‰ðô„ѲŸÞ¤	ÇÏ1྘¸øŒÀ+¯q-ÝAÕeXÐð
?Ô?C`?†rœO¤Û }2ö  
+['Ì`,Ü8´?$×ÑCܪ‹˜š¬k_£Uî¼^büÜ»þÐø•å™TfÅéI®·‹-ðô²: uZ*¤,;··1Ž/:ªf»•ºŠ³Ý®0VÅx;@#…êù>4ë˜ÉôœïÚMyUc.¤$œ9Äð!–xPp3–OVÔ1kîgknwŠv,³%=†ä;Üõåi5âU¸â£ó
+5NêcŠO¸~	Ž:ÎMâˆq	'ucõVb4Ã[S°)*ÉŸ}eÕ£ò#µÞþ·ÇÞå—„šûNœº5˜O8©
+DŽ~	ÊZì²F8歷ÕSP…u¨07Š´p”¸œ!½øàûa¦Ü.Yäµ	»ô¤*Ùh¬…?ŒûšÅ~¤bæÚá”*µkèΛ’ÒkFõd{±øöÉKfÆì£;¿ªñ$ø¡–¾âzѳü<7ò•ìL~ÙœaHÖ‘v†>W¯Tb&‰yáTíûÁQ, „;i¨43½y¨âÙí%Ió	HÆG)¬Â„Ì%—e­?Â	ȆD1jÊõovg­	¶V4ð..«497P‚àGZ‚ûýò±qÕANyʉ"}‡ÔÏüM¬ßfø²cãVZ½E±r‰· ö’׶*i/GÃ/Š|ã`cùeŽª+”ä%g¢³Æˆq‰¯@Ãé䣮´ôFÕœ“zw<YÞ+Žïns_ЂšÂ+P>=*2VÑ°o±Lë£õE´ŽUý&äaÿ­ò´•-Aˆ×ö{±¥VÏHÉ-çM|˜ëœdr?KšC_Aä}5'÷“£Ý㟯gÏUÎèˆ|ûÇÉ©"@WÍÕÅ»—î…´¼Dn‡N»1Ÿ†ÍZ¹H­BdcYêUr¬çÒ·ýEèͦ´ž^Åžï¦j¤·ý<è$ÉYvw`¥à+(a¯_™›ˆ“r…1r=5Ñ€³WÍùI¾iÄßø5m6«eyãùà}¡_I¶'+¼žÄ˜„Ro¾À#.¬H[B­Aå™ðHPlBÒò!•Ûû>
~¸ÕUÅ©ÝÖ"II«¿À…Õ¦ÝXFR°ŽÞ”j€Í+ˆNxÊ>ûˆ5§“¶VxW©g
r±ªêò®Ñ·žœ&oõÿúR¼R¼uf4©qcRQÁC_ãÞMZ²=Ùà$®CH7àpæõIÉ'­æ€Ü$é‡KËæ¼[ãYå
»[	L—wÞ-·=¤ë”ÚƒÿŠ°`oî"qáAÛx3v}º†ð(Æ@³ª@˜Üt!HTGSM›œÜ)“ÂlïIPÛ)·¶ª1§ê™àr¿M)tzŠ8 íˆsmS¶šó=cÄàìC>Ì!ª?]ÎJ(#í ·£ô²dÎó~éÅ%löݸQ*ò!¾üèmc[69?u¶ÂfY!Ò—ºqT†ç¿°ˆ¡_²tÊHØ!™Â´•ŽVWïÕU2óe”&Œaꎅ¾ÐG¹;¤ÓeZèíþN”Ý>k†Ë£PÖÝž8ŒÒÁûúø('@@ŒRâu/†9‚Ï$SÙ´”ó€vãÓð‹N—(.ƒÒ5rÖÌÍ…Â¥F;ÂÊ¿ 9:Άçð]I¤>+VÇæžc9<쁨DªÔ’gŒGûX=q!W%âÇ>‘é©«r…ǯҰÁÑ2ƒ­sÌòm¸"ÅÁ…	yæXfa³5¥žõqˆh‡'Vþ±Yl•±^EXõ«ika
+>¢–°½&Õ#(j¤äŠsTåà).à®"ß>²‘y/DM˜D®þô’ÂD*uøèmMïzÐ}´
µ|áÛ;­Ý‹n$®ÆÄ7#è[Ο¸7'SñBѺÚçHlR”÷`2~Bágè›_·¯<¹΀Ê÷ïòV€/c${JühZmOlò›}¤b–¸AŽ½‘ÄGB†]d‘
}ÉUKë_n ÝÍ€)®_R²Ž*£{µ¤ÐKÌݝ€×)XUå/¨1d{dŽä!!„µ«§W^Íëw£Îˆ}ø|ÆVå	\ê¬Ú›å>dÝÀ¤û
+diË9£Åb­rÆ|…§*jmÉtQ~_2ÚïH† énþA•&š¾Ó°)¸d&â[	•1’îz—$#MYJ,Ž¯C_ª8õVv
+wíCg\0÷ŽrlSUî8U¤'öw]èZ)ʁ5SP<ÆÜ\wFá{,O1¹;\° jé½æQýanª°dÐ̽ŒŠé$Kæ
é*àÐ&ó"¢Cüƒ¯Þ¯óóÞÊ¡Yýidð²Mof«ÀðÚȆƒOi㏥´¸׺ëŒåÁ‚ƒ»¥mu²Ìtš(T€Ü7“‚Á›©®ZÚAî¹VŸÜ?kÕ»–ãíy¬ò#»ÂiÉ1ïà½y Y£Aƒ×:e{²‡”žLKÙ¤ª²¬ˆPœO]Erù7óI¹áÛØt©:§=`˜UU?„«ûQ)¾võKø¿Uˆÿ…¯ä2ˁ9ÒlÆpÕl‘vE!ñÒ£o™jI°ýtÁôÅ÷È ]nò½T\0¶VH`ZðX·Š°d8î³Â6nÖ¹¨~×&“ŽØ‘ÁxåÓ…ÎLf4woýíÄý
+løÔá2
Oú†ê }ÆÏ—w
øR>F,ÓX0¹I[ßP`Š\u~µŽ'JĨróRBמ
¦Ûu#•k&´D×°#¢É>®îx¶ìãjêªL&?¾éÀd}äì}[˜²æz'”Øs0”½§Ÿºq'É(<Ê­Aò¹*œªm|3Áû»?BçºÔ§¥œ7&Œ ¹AëÊ>?…ÄEPÛ!Dx@Û{ø¶Ø¦Q$F¾xCr„4y¡²XBWœwÁg<ä"í'jž_g? Z†/K	»Y)uîØ+Ö[F½â2™¿&Vðµ×o,}Œmæ–jõD È^‘·ô`ÛKMOÎÒæ)ø™¨x[„XŠ3vs ºnF¬gYÿ}"<v¡á0Jæ¼ì_<¸’\µ?öPöÖælúø¾Dt§îûû_Úì:Jߪ4/xº¿…i4žÞ<–À>rÂÍRÐ>:YÀ»‘žILvx²0fÉHå›ï+óoI$ý8‚µ.Ò^-‹=ŸTâÚïre Ñ×ôYF^†&3é'oì5~Ø	J¶~;(ƒYÜF¤atAYüXölïYéêT7‡A>LaºÒb·›t´š¨5khsª½Î-¨-
‡U©á>ƒ·GRr¥èž6ˆ|r%ˆ§ÐôöâqqliÁ_n¾È?Þ[Ç¢©çÃô¢=Ëÿáâÿ/ðÿD ‘£3ÈÖÈÑñ o`‹endstream
+endobj
+248 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1136 0 R
+/FirstChar 33
+/LastChar 126
+/Widths 1144 0 R
+/BaseFont /RASXIZ+CMTT12
+/FontDescriptor 246 0 R
+>> endobj
+246 0 obj <<
+/Ascent 611
+/CapHeight 611
+/Descent -222
+/FontName /RASXIZ+CMTT12
+/ItalicAngle 0
+/StemV 65
+/XHeight 431
+/FontBBox [-1 -234 524 695]
+/Flags 4
+/CharSet (/exclam/quotedbl/numbersign/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/zero/one/two/three/four/five/six/seven/eight/nine/colon/less/greater/at/A/B/C/D/H/I/K/L/M/N/O/P/R/S/T/W/X/bracketleft/backslash/bracketright/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/braceright/asciitilde)
+/FontFile 247 0 R
+>> endobj
+1144 0 obj
+[515 515 515 0 0 515 515 515 515 515 515 515 515 515 0 515 515 515 515 515 515 515 515 515 515 515 0 515 0 515 0 515 515 515 515 515 0 0 0 515 515 0 515 515 515 515 515 515 0 515 515 515 0 0 515 515 0 0 515 515 515 0 0 0 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 0 515 515 ]
+endobj
+222 0 obj <<
+/Length1 1618
+/Length2 9379
+/Length3 532
+/Length 10321     
+/Filter /FlateDecode
+>>
+stream
+xÚí—UTœË¶¨‘ànÁ¡qÒ8ÁÝ58‡ÆÝÝÝ‚‡àACpîîîîNð §×Úg¯äìóxïÓ·û¥¿YóŸõÕ¬úkŒ¦"SRa6±3IØÙ:3²0±ð DåE4YX,L̈TT¢Ž Cg;[1Cg€…›› ìb`e°pò°±óp°#RDíì=-Ì̝´¢t%q„m@ŽƆ¶ yCgs
¸†±¡5@ÅÎØäìÁ¶¶(ÿõ„@ärt™0!²° L,ŒF 3[Dà_FÒ¶¦v ®…M\ìÿ=ä
+rtKhÁ’t °¢‰­µÀdŠT°Ï›üߐúÏâ.ÖÖ
+†6•ÿ»KÿkÜÐÆÂÚã¿3ìlì]œAŽ y;£í¦j€þ%'bgý¿¦‘v6´¶0¶5³˜ÿ²p’°p™(Y8›L
­@ÇA¶&ÿ© nÛß@uM
úÿÞÏ¿•-lU=ìÿ)ûWößÌò›ÁÝq´p|dfbff'‚¿ÿþ¥û“‰ÛÛ™XØ‚'ÀÐÑÑÐ|2ÀÄðbXØš€Ü w°1ÉÖÎü Ü€©#â_Û	ÖšZüûÙØ@;g‰‘õ¿¶îß#ì  ¹‡½9Èöwˆ ´利ÉïÐ{ Ðäh÷;À
 ÚÙ‚þaf ÐÙí÷8˜ÍAdüedçâø;Àö—¢ë`I'p{þa°šÈõ3p+€ ÿ¡ÏÁ ÚZü)65¶³¶ûý'¸Œðo—ùMàÇExQâÿxI¿	¼ Éß^ŒÔo¯Dú7gûMàäÿ¡÷àšJ¿	\Eù7«¨ü&p3Tx
j¿	\Sãâfý½·Ö Óß½¿—@ÃßnŒÑo/Õøba{™üàÅ‚þÀ¿¶î‹šý`Só?¬jñ‚»aù‚¬þ@°”õ¶²ù,`+Û?le÷‚­ìÿ@°†ãø×áùÁÎ XÃåk¸þ`
·ß¾’î XÃãoüß׃ˆˆ»#ød3²‚ß 6n ³ÏÿLT³µppI‹_ff.ð¡û+jìâè²uþû>_=ÿfSðE¹ƒŒçìŒyƒ-SêCK|Åó'JaÞAŠ˜5Ä)ÔtL·"-ÄCZ
É:¼[«Ö|,KÇB݃Ù#u{"tŠlñþ0*qà—:û²çj°—îÙD¨y•.ï±kO~tŒÖ\?s}©8µ6\’¤UЛuÑwœ«D+¦º·BÑùѵ¶3#˜“KS"ÝZ-,¤ššL=Õ¡$œ=lÕ
=)áÍêx¯e|#ýò¥]‹æc>|Nâ‹>´É¨ºÁìY²ʶöcÜÈf•¿nqä¶KŽ|šVlÅ“ÑÇÒL–ÖWÑ34?œuÒ¾µÙ/}›É.Ð~P„Çg/•ŒáB±ˆüÑZ@¦QWIí7Þ°š×bn ­pK2’?Gd.+ùZîÉ{ºQ;û£ŠLÁBwŒZI›AGù*Ã&²øi.Dü¹¢Ö/Ä)®
+õÀR¢°2Ü´\‰rv7”Qz­nádøó¢HP/"'¿yAœƒ˜:ú߶‚8F¤UGM©x"ºøêí‹–‘¼G˜÷•»òâ¸­ÿY.+ÎIø°AZ©Fs³=âÂl&+ at Mg' ÍJ¨£¦K©©±ÏÈbšß;/TSVE3.‚Ìbó ÆŸ#w±Lõ•Ã¹`I‘QW!IVu܏€pY€Ú­3ÉU¡B³7ä:û^ô
+íËú"DŒ)Ê.RÆ|^±cZK¶é| :a“ú6¬hnFâ@²/ÁŽÃf¤MÓ‹¹%½^=\Êé¸ó|ª?I.“ÃŒ*ô˜ «òŠGk	ãæ]3¾ÃȆOú_üò¨Ë4.¼|¼·Q§ŽQ˜9z±cŠ٥رŸ‹·W²­%³ÎÒ1rTýáõŒ	&397´bYR ~_›mÕÆgÏ¿u2¦'»Py:°X1aÇlå:ÑsÒ gH³¢6oíŒ^D 29Ö;`q„ø‘P°y»ìÓÙ“$ζu#¯ø)|vd;AxÀݲçóMÆIEu
+ì3ÌÚÀä±!¤ßÅf<Îiú”;¢g2UÑ°'Içü!O|õ¶”7ê°<V‚ùû+ëœÇ	MyEH·BÑ:E½ÁY8”™9×áqÁ}ñO(OqwÉÅA$5áÚ¢îw
+ßÃ^IÄå½­}Xqû*FS}d¶
+
}»úÓ6Z²OQ©Ó’^þ«
•zªÛËÓaƒm¤Ù²_}Ø=4*a;Øß1y§w‰ŠN¸8s*ÀßÓOS3™UÜ:Œ#åcš´3.Û”Ó>î¢õ®Ãæ£ã³¡!N^¥õ¬};˜‹0R¸ZN´U|²„!ì$7,‰XÕ*;å»½ªGÿ6úæ}§êfk8N´ìÂTÈhµòìvsI@orc­O\™^Ñ‘º#ñˆí²±e4bÕF¡´÷¦¡ò…r~.FñÅsNÂy3´á¬¥V$œMá>9ÉúXoÖ(¯Ð©Ÿd†vçùjdÚ6ÙÍÏbé]8Ç×å!Ú2wk_³4cîÁ¡¸ð%-†eH„”y×"ÓzÏe¶õbâ¤[ÀbAùÌ6
+¦Lîv2å×ÁÒä‡K8ïB•|ÐnA2Ý0‰GØ#Ÿû^2!n
úÜ`U Ó)ËU~£}~9Q051××à÷Œ¿¶Ãû
+§åÑÚɺcéÊZªº~Ô8s(Q¢±KþÕÎh?^[ýëƵÞ‘i8%ÅQÃ(²‰šÑ֧Ĕ÷Bh±ß”UEÄŠ/ºÓI¨Æ©½//kÌ՝fƒÌ/ÚZLexE/ìÚoJÉ1e„ÕVßU9ÍÖ/^Ý›™AÇ›õGi{µ^`´‡’vÚЁñüG|¯¡bFÝž,aGe§U-MÐª²šÅ¨oý&¾Œ~±Õ–©ödÌÀ0ïÍ„¢˜ÁÓªI—&´À„؃M
æ	ÒÝ1±U
ÚšÉw“€¾
+ÏTÔþ¢ÈZø8Úæ¿>G!^BCŸÐØ·^¾cŽC£OÊq’	í×üØýTß±7Úª7ð^ÆJ÷ìEÏIŽ®Ê”¬*†“šysMc/«‘x!ðCdôå &^RSŽ’'¡9SÇt:ì&·h”É > ã=HÜ~ÔG½Pü„·¿)êM0W[Û=°™µ{ñ-ÛšB+ú	š5¨{¤-ú ­%þ!\ÜaBÀRÑßñ9ÈK±ÝC»šz4²Á£,͘ªÜ^ »êr¹:±Ž	êÇ¼êÜÒ‰ŠÚvTþ‰¬yǧ«žÏê3ñ–(<êe–z5¯+[Û_=ú3ƒÑÎ]‰/3ižƒ³›_9VÑt"d¦”8yülíàþŸ0âÔzÙqF.äŸÔª'.¿‘Ҿ…„-)ë´˜Z•¾eÆLo1x‰ã%<™#2žJ-
Ï®£š$ÓhÜænÝïšá7Ì»êóQªÝLj?uþ%Åöa¾Ô‹×U«Ñ`ÏE	mºL~Ź)^aK–2tëS?Lã¸ï%üIʽb¼Q08¨ä9žÀ%¼ßÅNÙØÛwĽǃTí.á˜m§ú4tþÙESçô°¡z23’
ÖNd;7ƒŠH‹eüñ<ï¤D”£RLÎó²´ÔJu‘Ɖ/$i¨W—Al„ˆ1´¶lþ#B»àÉ©Ä;^-ä3¯XµD]K3#˘ũtA¾Œ.}juár
+~(¿ Ÿ]?KR2ÍPÌaýUûœYúxëÑæŠ"åʈÏË@Í&PÍòpÅ=¡õ}”Þ„½‡„ïþ¶'~xÙ"›zȼ0ûÔO)çZÝ]±çë]‰ž’~Q¨8Ýd4¸ä½·Ü¹aÆqüðª uü=ËÏ£raG[J?Sœ#¼!t@²Ógñ¸»#§í¬ërYjBÉíNbh(ÉžÎØÖÚáÕx*µ †ÖÉëšc€?µDk®¬àà;1í8á…U¨ŒMÏK
+Ïf¦qŠÃ€L¬ÌN#`s㜜—3Øfý%R€ÅYrç¥~m3ÚC×!ëLåIŒ ÀUý•XL±J¼ÄëÅȸ§óèr‰èï>®˜;úÓªašÉ‰y[·²Ð©p˯±ü
\ÔCQøç÷;¶ÏPH)íìÖH+SŠº‡qŸÚ€ïèµViÖ &ï_|pç^üG,o÷eÉE¤bˆ¤—‹hÒ õ?䦤¾NÈ+œ˜awCšVºÓ %€¸¾ö‡RÚ›˜Jý@J_fhŠ[ű?Â'xHÑ·âL—P´¿¼•¶ˆV€þ¾IYæ;òÀŒ4–^S7Ùsž:ÿø¹J`¼’õØ:2Ÿ[Ò°®i?è}úÞêVÌ6é¡Æv9{&ˆwT:_4ïççÖ¨ƒ ŤƒV	ae(„çrýûZ/{Ï'ïƒàѸ•õóò´?:ÀÊ€Õ¡ƒýCÚZæÔª³êÃI«íÜß#an’å/áÏ(ûy‘¹|•SoDË^wQÞ‚*Ê¥Šè}cÙ3Úw‡ù(’I×ÃOà»÷µ”/tyÃò']̦ÌþÞYa†àÑþÖø5¼ÐÁK+ïœçX¨'jÕ¡¬¤u3äYß’Ô7l&MÛ~f<]á!EBß[‰Jíû¯‚”x2ã=£ xíøŠ½âŠÖTMÑ/âµ,ßuÈšdýˆ`ÚSF¹7‚·/eU¿	HŒ§¦¬õ}ù"”vBvÉåVÆüEöH`Öø*’N¼TŒS&¢Üm·|ó@±=P#B6´×à‡š)f.B­wÛjè Ñ…q¤„@+¿2]P4+Å;»‚ÂÜ–õ)(÷õ.gaTØÒüCOT˜óŒ§ïhF!L†´‹±ö À…ׁžž
ƒJØ©êSnFœ&{dR¥îR›óúö…mžõkj¨[»Œ¬}Üh$•ÍWü7ûB´ØÄž’úâ‘f¦,ƒœ¡!ò'•;‡‰òW¾(u—Ûíö徆Ä@dÜ¡½ŽtÓ®O¿Þ«×½«¨©hFH®|Þ?¦ûu!Ô&jÛ£ùíÓÂ{¶¹²‘š
+Ñò¡† øæ΢Q‚ây™ï}VçŽÎ
+ª×Zí¼¹5£ßšÂl|ã| Ä¹ÝÙrgÄÖdÉô1FžXº*bóс'f†÷ÅDS+ÆùE]r>bïÍ÷P´qg3…hýè³m5áºíIÇ*T,ÈHÓán㵃}XԐï!‘ú>’R\ö­*×òêÝÑÌñ‚Ì~¤é^)‹eA~ðA_2í9ÍÏ–UÚÜ]h’£¾Z{‡ŠÄù™ÞãŠ)·~t™~‰s
+Û.A?æ©$ç‘m$Q?y%Ò+¿BiÀsð¢Eèà*I«÷ãV0JY«
øb •Ä‰k<÷nßçyòƒçC˜›W}óà¢v?TÑeJwE¼5ÏµÃK؃.Ì@øu<o¿–«ºÉ[nâQ^¦¹¯šìþÅ!.§Ò*òøF:Dƒ—“³wÞÖµ0\
ޏ±ÂtÔèQ- Æ3p(é#Ûmm=q\Ú*áüxÛË4èÎÔ³åR"¬ó±Z™m[ë®ò¹AñJ¾‹¢Š_i唕°øñVd-k_p7W˜ð²Uñ$b嶗÷Ž
+
°lëßÄ-~ܬRéƒhN2tîZizÏ`EÎhƒC…€˜J‡OÅÖxø-¤h¿ª
+ðÊÑÊ »÷;{L÷‰©”öàȧF7¥üÆÈ	c;ÃD5iüŠa^kyÊìâñ¢û{Ê3
+ɤ3j°ÖbŽ
+:'¤±ØÚvÇlüg7ãŸ6@Ü? Œª\h{ßS{Š‡Ø`âÇ[Ùod)7V_xõÌKʲM±‡LÿNîb»·ò‰ê 6ÓØ…ÁW‰‘ׄ?>Šc¿Pâ[åŒBêçËîχžEv(u“Gn~·oոعýg=ˆß?*Œ–·C`=ßÚÀ¬?« ‘ž}XÚyÌ°ŒØõ»%PX-&ÙÔ¿Š\îð ˜Ëﵞü	-õZ÷æ¶ÙwÚÃøL [Ž7D
+¢âå’
+V%ö×s&æ{:V ߪD¡-]s[n{r8Pø$ŽuDzìœõ‹Ôl_P°Ú3QI|A´0¸íÈbd=’;º¦<-}¡<n‹«zCº…,ÿ…+¨ýÜòº(©Ý•Â¹1†7ˆÝaŽ4V¤Ñ;cñQ
+G7àÛ
Ë6µ×®‚HRÆü6–XÊw­ÄÃC¬Dàd?–QµÇ<š-Êöîìeº» Ñg)Q?Ôõ!:c—C3蜶ŒøÈc¥|?ŶTßDŠVmúv—œc3ÏÉâ1Øâ¯7‚08­-pMLÁªÀÕÜEQ«Â~Ý¥›P‚B˜«ÙÌûç¯I3ûnYoø“¶lT»ù=(¸HFðù’ú£ øƝo ×¢46B¨émÏxÞ	]F±‰Êä}êð'ˆ´ê÷šŠ;QA}dXPÅ")“&½C9ÜCXŽmÊϨä„ü¿”¬Œ=C[v¬W¿Lg5èáÔJì«;þTƒ6¯l× Ã¶íü¹$ÍD‡òÜ
+b^‘ë%M%|7;{¶u#Ÿð•üˆr2
£up¤›§Ðšz¤à«ü–7Ï;hÛ·—På‡ÙS…Ø#R‰)êÛíúÉ…þÌä’#®m_lúå+“¨#¼t„HÒ©'ñzsáãS|Xø˜ˆ6¦’$»ï.œêA
°›¯&Ô3?)3o°Oyïñc»‡Å¶ŒØ%n!öy®@x ûÙb£OYu‡R¢7Ǐ†õYD³
67:ŸÑ{FÚá‚"tãl<>üŒWºÎÿQ¬…”ºûÐkBÖYÜ	—âx¡2¤b÷ãMú{!mD/Q6€Ò{ò1:U­êLUå塶'ʹ.5dœô8±liÂS¬ôôrµ¾Ë¨ß—´½š.zñ«±_ªE¦†ñ
&¯tÕ„O`ýy<êîkÝIÜÝR!žíç"Ý;„So¤Hß°i Æw¿Ï^ó%M¾l`qÒph&6¦š‹ÉDŠ¢‹âÆŽÑ©5»6 Ð˜çÏôJØôV¥š×ø…·Â©¤r¥ÖŠöÚLá ¯)MÈÀîvkRMèj5˜JRoÌŸ:‡%ìAî5›ÀØûÅ)ðÝjJ‚¢(à³æn
ŸLoV¢®sBX`Úu(gœ¡T¹¦,ùzDÑX1¦JY³xÅD”Õj¯4ƒ[¦EEߎúÉ<†žMlÿ€ þ•íÚšooA¥ÍGÀi°ž¸)ߪ˜P‹4…N¨—fó=he½ÐFÍCލ· øÎædšÚ×€W°9Vàe¥ÄiŠhœ{©7‹Î»¸ã‚L}ïef„؝[ÿºjÓ4ü0š£EùóÏËp]y»æäÀ!Œw!ûüþœ¸ƒüiÿáZB¿ßrJô[_¬\@¼pÒ'c×]ç*?ÅøtcÓÐO¾)‰‚Äêdœ?–‹~P[öc[	Ý
+ú;›ˆ3?<£YZa]P[`Q
+•Är¯®N­^²cBßQæ|g}ãBŽ¸˜Ï¹ÝÍ¢ò®g_œb±ºÅ+4Ärr²üðÅ‘l)023®VøØ2»8Z‹….3;!¦Ô[‡¡ž­(­Ñ*:Ù7éMDßnŸ)PƒòPƒ@ÑõÛ2cŸ¹®¢cݍ1å-ÍãÞ­?«`'0öY÷Ö-ãr/<cÃ4$öîñxj7o™B«];ÄâŒîÛWån>Œs«ûEçöÇ©7\–Ê>RŸ_Æn
+Ô‚oèC	º0Dô‹ß׫¦ö$¤;ÒDfôèaÑä
÷>ªÙ‹°H E˜g`>drÙÀ^¡ŒpežW˜÷gOCàµÎÏMï#‹$’òýâ_Éã9Üv²¹åJJµ¯q5TÈò´´0ò•í‘‘'“êè9ëˆ6 ¶Jf1ÚLÍ#wqüØC¤Yþnãù^ÖØ×=Ì"ýñ²üÊ\wz=<F¦Ø‚¸I¦NªÌôi)ïº3^+Œ(¢þ‚ðf쌮çu…šRæõ&CE£ª}w߇0ÿ(R¬Â\ËÇwšEÌ©ØþOHs‹»m²QŸÑ»ÿŠˆžà§@¶™ˆM‹›+üñ-DiQÔf@}G,td%fvYCC‡Jõaèn€Ú‹´ÌÉá"Xa£xÕX&ìaÕ¯k>ÉÀôÛþ»DÈð|¾Û9²}#ÏWÿ´®tÛcUúP²Öx<5ÓAÝïÅ 'ÞÞW|)C+Ë)ïØù¤˜†—Â8>69”¬ËÜFF{=oB^»ÈÂ6¿gIìÖh@&¡Xdi¾ÐIç$­Ë1¯±ÈƘÞ6’„US¬N×R† @M…\ýã“WmÜ9c”>¬-e¿%F9Ìw#šE»²Æœøœ
+aªàÐf¼Ø“…XgS]¾ÅÉ¥ì#Ý]Å­Já(ËÊI’ÖK‘V­%ËZ˜{%¦}þÙPM›-RZûÍ/îÓ@ý9*?X	ÿ4öÛ/Á®|©åý_?ÃÇÇlhà÷^J×Ò{—Hdž±Ør}ÊÇ.¿êQï~’zF'Qcô™ºátq&œÊ~Cÿ]ÀÞmâèý³Û@%9}e‚
þ›YÂTv—Ãk–`*¤ØÆŒsçIW¡®k_o:b‘<É Õ–[‰"v‚ãFZ3‡!^7Š}§Uíå~κ&­êáëDßžü Ȩ%×ê6ÛÆšwª)=«Ÿ¸šË\·ß˜i¾ƒ×Éð{]p%Ӑ`Ú˨F¥7q~4_S¡JaÃÿ–;¿ R:ažíU¨mQʸ
¸•ž	&cgRZ<]uÝǍCƒó2uÃè4×P«IËOCh»$½ÜÕ¶Ðv—qãÞû|7…ã2Ž}>fÃf.ãÍLÑßiØ)0eý)’áÁ
+7vŠoNÁñ&</7K]8Ï唞z2é=Kš¾åG”OèWXzãâjÌD€+gx—‚‚Qúf_ Ìe%ëJLJoF抇÷+{ÌØÉä>9ª²;zJ|ê@¸…LS¡-,ëüükšÄÅ+Où¡0,uºØ`è<¾!ŠÒ„<˜)‡«RzÂUÿ)¤å<R¡~ÑÞÊSÌ	ّшÇC€úŽ€/³	òv6c£x¤Lÿý”//öŠ±ËG¹f;Ží<DÂøÚz³Ç* ž'ÏgÝöÙ?~wµ°JšQ
‡îi˜1œÐÒì}	“º•i~#F+¤0`¶299g‰é•pÃë
+"ÁÙäè.W'yfíèå•åâIðs0³@Ñ>qUa½¡J-í6í™ê…¦úä•
+éÕË­
>Þ8äëP™Ÿ‚ˆM¸?òÂ÷z‰ÛüäÒóFÃãœ_åàÞÅù|¥i¦Hp°jÏùP­¨‡SˆûZײ­Qk5Ã1›Þ0©|$VIºãH^½“×ÐË»–À.Ûiˆ¡]7%x¬¬Í]»Æ^Ø$ö8§‰°Æ÷aHê¡ÖÛ¾NF]…Ëjæ 
+µñkšt訃²4'„wÂÌë# ŝÝO?¤eä«Öc…„!\£-,HÓ!Y¿Æ3¢­/\•r†!´•Ÿ=G/'|’՞̻ c0«:ÖIÑ•êÇ_L;‰£]²½(ùå‚¡ànRz+Xž—ÈdĸI†Ýsd*2›Ýó^aa̱âûS›=x^
+ '#Ó¿TLfæåNø;fnœ9`‚µd’! ›Ê(~ßqFA7coQ¶ðؤ&½Ëîb%JV%ùÌ1Lº‡Izúý67b{ë‚9YTIJr›õô™ýékœ‘^Ó›3¯EÓÌY‡j\.dáãFÞŽ¿ÓÔ¼|AAq<ó`[\±L¦¹6ÙíqnÕåá]D7çj¨#ñ®!?ö«ÚŒC«™H49°¸Ï­’ýT²j­ýâOñ™¿A» ÊåiÍPŒMák“—œÒ ¯‰ýØ'zÌož1ñáàÜ<áõi`Ä•¼iÚðæ©Åè)1vÊ5A¸Q­´ñú*ÓE·
A/CQ­Àò™ú—à0ÝWH©†Ït@qlKɧ‹]§F²Å7ΘRÊiVëëÂ2ùnîŸÞ$€Ý>_e0ÈY¶^hÎèk×\ðÁ¦A3}¾Q#S=­Ù}ˆÀ›!ÿ*Æ	Vצ@i¡yOÓ‰Iü%R/A­eB®ä/6‰•ÊËì³à['»ÜÀ1Œ9rÀ/ï&!!!=
+w®…+‹{»ö—·_`{&šÃ»×}üˆÆ*±‹ßá/÷è%â‹I t@û’@ú¯-<R´áŒÎÏñ±ZÅN¼Oñp…ˆ|öìîÚq¬†­jƒ°ºÚ©‡àèšœ
+¿%5äWÄë61ºü]ƒ¹ô¶VÈWëDˆPb…‰™Vvª·^Ž€=¹8î»’îúÓï–ªW•f9lçÞDæ)Ir¸@E:g+7'ë~—à4Vãc«s‚úŸ%rÅ{»U‘LÔÕp3
+åxGr$‰D`Ú:aïݧ²X˜”E¾­œ ­	½¡16Ó•ü±ÆrSÁuIh¥Äk’
+rŠ«WÛÅòW„S¥dÑý,À‡'V’\Átß’ŒEЇ³õ¬83EÐl Á_]ç7Ÿˆ}Zúi|ôñtµfÀću”<ªWí…a¦Lv…åêØæÔ=¬{ËÔÀª^lUå™bHD\‹¿¥®)H¡ ®#ô8KPÿúF­€¶XÁ#•jÿ=Ñ*›¯úŽF€…|]yÙ&PhÐ}ÝŸ\vD1í'½v‚r­\[“UÑܵÇD:ë2‘ºÊž£k¾Ûðø©º/¤æÃêZÖ»ïé`ê8¨„¼§ªlû#Ž“#v at 7ßóÏͯX“mGCè—Qç]³ga¸»rg&°fUÀ%Ñ€ÖþÉA4´vñ¶Õ´7ìWönëè¢íL¤Gna'EwúV|Õo§çªÕûªAp£…(òÉŸ ö¬cÅ‹°›4¨ÓéÀYé
+¹±Å…Æ8ÑçË+uá§(Wo=‘8ÑÏOíJåYŸëèÒHo-òú§ölˍëhâÞ\|¾G:ÅÎïO5žo•(†¶ÎñXsöT]àÍ¥Å}X;»¨Ô?Î$l´¼€qzÑŠ$åÕ)uDÔ»w9FàO÷Þ!ráH·KÄpÐZ4ùŠ‘Î(	=yKáðTDÝ!ý®è¾­/Þkî=jÏðƒu#%œď,}µ¸Àø@W/G7ú”#ä7²h›Ã}EgÖÉ2’/&íüô=Í^_E]½’1°öðøÐüF¼ˆ¾…¿®fCfÝŸÇž=ÀÚàBb·I& ^‘0Ô:“œÆ*ël…(´ë “¬e +Ú	ÒH	¤¼\8ñÀœÏ»s½-¨ìÊìÙƒ›ïÕZïGÑ
+—4kC瘵E!až²ˆVðÆ›J½nû»¬ d	£ómhѹD韥PÔø
+?[6µÃÇ JÍ·QÛ	•ú؇C21Sj‚Ÿ¥÷Hks„­ŸFÿŠã[à,=Àˆ"ú£!r3|ƒ„=ˆ2¿MLZI9åÀre\ãV!†
ºzµâÒpð”p5³1n—±ƈ —”«~ÄŠj_Ð,£5†`0â6ÈúrÉYÅÚ+ªC\yÃ}mX÷zâ¢ê/‚Tèð–ÿ«Î[$rv:Ó_«4æšu´.BkR]óíè‰?f»e¿+~êG»ïEe@¹ž½øü峎¾º‡¸Ê¦-}òhxøc'¦êOֹɥæ‰ôwíZè›	i8×8wYñ¢tÂc’àˆù¦»v¹Æ)U{ûÍçh½ÕYNåè!(ŸÔ\sŸÛ5§‹Ôç.H!·æ
+ô)¸¿›o•ßI(Ä°¦‘žÍëŒ:H*=“¾Ø›ü´Jj.eÆ^]¿”:¦"EåÇöFIô’î¥ÃÑ?‡{ª4½ý•ž‡³å€®53@†P@*`1æ
¼™Z1€Ç˜Ê>Mo<Ö¸ÐAf}ò4=Ò1»ŽCñf=»ûU$C«ÛÛ¤³1ªôŠ³ìM>¶zcÉ
J€èõ)¿õ…-UÔ2@ƦöLáÜqÓ&HqXà«>…aû—</¾aAº)¢<‹!@0?ò*ÓæóßÞ}Ò²À.yŸ
{°aÈ®õµûIÿ‘ëC•ÚÀ•¾aW*†$±Ïôî<”N#yïU7,u
ñrài4r\ëù4µ¡kÃ6œ&‡VüÕ5ñ7­Ù9ûé{¹¹!9ÁC ÙFÓO0¿ÐÜ*¢÷ÃôAñ8¬¤Ÿ¢k®kåù*Ïj–9½éÝ"À¬o¾G¼¤ÒóQ+RqÓ,´†&ËÆP¨ý>|RŒY¡®ÃÙxÚÁ^#¼ï¹1ø™Î<h}bƒ¨Eåĉhßâ@{£z}÷DR€›Çná3϶ÕƥϷtmq#{!c”ÐP.sÿ Èn_¿ •¤ÍÊ«IéÜéIŽÀ_|Š‰ð
+´ò«öxï"0ÍäèÐÆ¢)E!¡GzänØéYñ”—°Æ¿ù÷ó<‚8Üwåºý´¹j.$ôh
+†É¾ì©›lò¤i"þ3P'ôÒ»'%‹ÌÎ6§Ž^£w
+N^rîöé ×õ[P§)=`W#6eÞXõ‚7‰å‘›SÓ6¹‘.r/íeWáuÈxYõ)'mÍx$)m¤é5òFËöLÞ¦&1ïFxW(OUû!VIÒwàí‘9tÌ®¶`ˆnÛlk žíK8{¡uøŠ{8c“¾"̗ljx~L7H*mÅC.ÐÂNÌÃæl$晁Q¼€ïM_gR¼+^Ø«ILûD,?k5‘Ïoi™$0•ï&nßNhäWuqÇ„ÛµÍ	Çá­G0
+dSi¡ZÄ–Ž|èøÝK	A
3ç<^,`‹”¯:ÑßÇW™ôr|F
+µG¿¬ƒòVKeš¡âe§Ì.i8CCó¨ÚAìÔã…÷DQ_ñ¤üéMáeŽ¢é'ಋ7ߎLejøN-ÏÉŠš7Óm³ód‰öÓLKcÀÅ7ï¸mœ1à/Ò´a¶ü`âë…m<¬:Ü𽞾ÝßX¨@›ˆ–¡¯»aÈp`:ïjñC³Oæ×\Ùä[ãíÜõš&e}.¸^2ѪˆœkI!"!éq
*öjÜâþ”ühÛ!÷ÉÃë[$cç>§cŠàˆÂ
ÑyèyåXvÙn¸hsïSúÖy}~X/Ê!é}­êfžMK_dri‘D¼=â'*…É>F±È¿÷‡ÓŸ]œv>•Æh²:¨-Ó@!YNˆ
+jTrk
+åÍ°—¹¸m"ó½4ÕÜpu-z²¾«ÓAM¿Ëmç…pûRh)uÁÅ&:†!¿eqèzspÛµH¢…+0%‚’˜ñµæÅüøAüÿþŸ(`l
2tt¶³1t´Bü/’SÅendstream
+endobj
+223 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1138 0 R
+/FirstChar 12
+/LastChar 121
+/Widths 1145 0 R
+/BaseFont /SVXNWJ+CMBX12
+/FontDescriptor 221 0 R
+>> endobj
+221 0 obj <<
+/Ascent 694
+/CapHeight 686
+/Descent -194
+/FontName /SVXNWJ+CMBX12
+/ItalicAngle 0
+/StemV 109
+/XHeight 444
+/FontBBox [-53 -251 1139 750]
+/Flags 4
+/CharSet (/fi/quotedblright/hyphen/period/zero/one/two/three/four/five/six/seven/eight/nine/colon/A/B/C/E/F/G/H/I/L/M/P/R/S/T/U/W/quotedblleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/w/x/y)
+/FontFile 222 0 R
+>> endobj
+1145 0 obj
+[625 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 581 0 0 0 0 0 0 0 0 0 0 375 313 0 563 563 563 563 563 563 563 563 563 563 313 0 0 0 0 0 0 850 800 813 0 738 707 884 880 419 0 0 676 1067 0 0 769 0 839 625 782 865 0 1162 0 0 0 0 581 0 0 0 0 547 625 500 625 513 344 563 625 313 344 594 313 938 625 563 625 0 460 444 438 625 594 813 594 594 ]
+endobj
+219 0 obj <<
+/Length1 1948
+/Length2 13264
+/Length3 532
+/Length 14338     
+/Filter /FlateDecode
+>>
+stream
+xÚí¶UX̶h‚»»»»÷àÆÝ!¸»»KpwwwwA\§ÿµö^ÉÞçñÞ§ûÝæ¥Ç¬ªYc–5”¤JªŒ"&vF at I;[gFV&V>1yV6V&8JJ1G ÀÙÂÎVàä#aååe%q1#ac!aåâcçácá„£$³³÷p´03w&¡£ý§7‰ˆ
ÐÑÂ`K"p6Ú€r¬ITíŒ-€ÎL$"ÖÖ$*ÿŒp"Q:]&Lp¬¬$&ÆÎ$F at 3[8æ„dlMíH¸ÿ6q±ÿï&W £HŠ„$IKR4±³µö 1šÂ1+؁æ‚LþߐúßÉ%]¬­ 6ÿ¤ÿg‘þ¯f€…µÇu°³±wq:’ÈÛ™ mÿwWMà¿Ýä&.6ÿ»UÆ`ma,bkf
$aùwÈÂIÒÂh¢dállNb
+°vþ+´5ùß uû—³‚‚¦”œ6ý¿÷ó_mJ [g5ûÿdý§ó¿˜õƒVÇѝD—…‰……Ôô÷ßßôÿ×\¶Æv&¶ ÁÉEptxÀNˆ8I¾²’XØš ÝI€î af&[;gÐКx“˜Ú9Âý³ g6ýWìßÈB‹?ÈBë?ÈñOç?Íì fPnk€ÍŸ¨‹ƒ‹3ÐÄÈúß{ÿŸÞÿjùŸaf{€#ÐÖhúW”õ¿¢ÿ«3HàôO
+'«?AДÆv66€?Nfs{s íŸ(!hœÉŸ7	³“5ÀÉüO„‡„Ùèh÷' r¶³þ‡9A²ÎnÚ9AšÎæŽÀ¿zü³€v.Žÿ,¡…ë_=@ºN Íýƒd€®¹‚6’ø?êæ©ÚZü-ÂóOÍÖvqÒˆü!P
+Ñ?.ö‡@cÅÿ¨D‰ÿ7¨@É?*OêJ“þC ºdþ¨(Ù?rùü‡@.rä"ÿ‡@.
+ä¢øâ¹(ý!Ðì*4»êÍ®ö‡@³«ÿ!Ðì4»æÍ®õ‡@³kÿ‡xÙþäÿq4A¯óŸ£ÆJaô‡@)Œÿ\P&!h9á?Gå/•dö‚j2ÿAEýu/Y at UYþ… '«¿$õ×­eYý¹¡¬¬ +Û¿de÷‚¬ìÿB•Ã_²rüÿ9»!ÈÊù/Y¹ü… +׿dåö×òrÿAV!ÈÊó_ø¿´¢¢vî_A#è>ò‚6•›“ÅûöS·µppʈƒn07/Ç¿¢Æ.Ž Æù_?m Gü¿ÙÔôäî@c¸µe;cþ ËÔæ2‰ÂÙr(:pQ³–8…†Þ….øÀÕxpëâñÏtÛõZÏèHGPGÄn¯øN^ÊS’?ýâÒ–ÞŽ\¿ex¶ák]gÈ{Ú“=ž!w4/Þžs‚+ÎoO”%iÊþ5|–¯D#®v½I
+Ö§ëÚØ—ÄÅ­%™a­\OÅNª‚’æPƺ冒” ¹5èc
+ÓJ¿qe×é‚ö\“—ø¦w{:/¬‹•µÄ¥o;½´b¾lcmˆŒ’¦ç Ž*ŒÉlk}®Êbšeo¦ŠK³]ü”•à’h%OXßÅójÌöa
+Ø\žÈ“sccª?*ÉvÚÄUÐî#)XïÈ|`b¸ÖزmR8o×ò¯Xcoò:)Ì›³¢Q^‘Qt‚µ¹ãß4íxLi
+ÝIcõ6 ¬ÁĦɠّo}gy¨wÛJ‡Ò‹DͪÎJÇŒÜUšze0½H8kœ„¥+‡ŽÚ5’Êg×Y`[/Sšÿ\Â#Çþîø£O7ÜÕÖØPb°×¼ÊçÄŒ7öƒ­W›<í;¬·ö{:`.¹LzÕ‹5€(!¹È†4TW$-Ö+_Ë^i`_AL½ƒûZ}¹ž{:åZÍì9?9ØÝð6Î<)kÒãú±Zsé!³mhÆàB?M³-Å;3ejÆiiÙðAç¹ÃÔI§}ÏDÛ‘d4wÎɃÊU6bÖ½ñ‰;*4vú²`«·:lÈgæçg‡8ŽdÂMNóR¹1r‡’p<><{¥ßÅçqBfóè„^R²qª!¶YaGlí¡%\!?jÁÃå1Ó`Óˆ<Y.’˜êQk{î:GHn÷\Ø3Y›tÔº‹!YÂvp{³ 
+à‰ÚBSZ¿øœwZ$Iü(5ˆùpá­(¸1ŽKEwÿØ¬f¦‡‹eLì•Hn*-ÂÉø¡¿Å F‹¥VF	‘žÝ#ìJ©
‡)-ÇMi¿ôӍk°´PÈÜ­³{˜åg_×è¢òð“+cˆŒ-ÙØíEMÓ^ÛRmãÌ„É©ñ»LúÖ¥°qy4Íž+Õ4ùÛDûÄòŸ`ÙlrX/ o3ti镧d°*[3æêǹPs
+×
+{üä[%‰>/ºv«èJàŸö´1µ
8Í|l¾q|@)×NLæ^©ÈY'™Á0²%ƒ3Îß4éßçIeú,ñÞj›ç¦“B%›!ÉÐS5¹vøñ)ýASxqŒö­(k"R„æ% ¾³(¥
+zwqoûE´^IFl(Ñ™Ÿ¼"öËz†2a{Íéj1ãØ®`fH8·l÷÷ÎÔ´ÛcQOŸÝ”#îô,!ô÷b})®6&¸I2À—®ÚËb'8p?µ;3œ1²ÃÀ«
í‹S9ÏíšÈC¸=.ñbjjÝÀT>	sk«3â¥x
bˆ
+yÉÄš¯
H,f©2¿d;Qá"‚¡­-Ä
+Ì×S
+Û!›ò™c VJNÄ°2omSYIMº`3gvg?ù^È?©PÇW—ŠD¹‰ZU|À&Ð(<'Gæ0¼ÒçæÀš:±¸Öòn*äKäâ
úƍóÌ>„P/){µ§Û‚·ýMŸ& zS
ü4*dЗµì[\¯$Þãf®h>è94ˆQmKøó²­ˆ€f]Mñh°Œ0hiC:›~ÊIKòœLöe~]8lŠ#p‰Uó¾Ý11ãW[‡{N èSÙûÆM¬}nµ6Ýg(36¬ Ñjސۊàþ–-󼄝ª‰çà<¥c82§9ßHŠ,XÞ쵆>ª¨ÝÂÌcøD÷8²7''Éâì/TCåI[axlKÑÇJ÷çÙ®0­˜yÇ?³#ÜMèd]ÅÊÆ«zŒT¶ô9“Gùö„­ÅEKõ1%cÏÌ‹€@åÛðmÝh.±žó¦ “Kdå
‘÷Z£\…±Å/bVïU2ëkrGe?`<b;|¼0yn¿Ä¹*ŸMke'"b„T9OC EÃ45îZŽC¥ˆˆ­ÆX衤øÓ	µMxéëÊ¿çX×F„eP¿‡%í¿ŠíH›6ôÝïA\²s¥Iã©ïg½5G2
+{«à_ÔZïR÷ßE'säu×õ;|vP-·ÂyKc×EËˏ"j4tÆRž†ü%%‰™O“Ìd
þÒŠÇ÷€˜5s &¨ÐìC37n­ð Õº‰­Oï_ÜŠ\a?Ñ“àû´%؃Š~À3š óI`èØ	±”±BI(ÃM+æX’ü“®ýû$çÂ-Ìj³²›Ý
+Ìø‰	¢–P¤kgµ•îHbÛnÿãQ žÔ~÷Z½öê|Ò؛ӏ+fçK¼ý)²TÂܬ}ܪò_Öm"¶‹RŠ0¦ë[O•
+»¥¦ÛŒn´Æށ4©kŠgV×–*ù¹Ë‰_Å(àt
+w\²µ˜h5&ƒn§À±nqñ«£Ì/þ\Â]Ì,[àþìÍÔ€"o²^ËŸ°9ìaÇ@V„zÅÇ‚³‘ØCΨ>*<ÚÄÕbapŒN·ýoKä;þ˜ï_ݬb¿9lÒ)ÀÆ~ÍX‚ÿ4ztÖØ»®†@!Ò|ü‰™ZØ™“®ã+1æS9êlÆ\5ÒSëbˆ€þ4±¦ì½|ÐÕMâ7‘u¶Ü’¾‹2-v‘ý¶tÈ¶H/uÛà2#¿Ô¸_pÅ9ÇVÁß“bñIï&ºF=våß®çÐbÉkŸú:Ïû¶4ƒt|ãõ]JCï	ùó4EÓž½Îy|à¬)5~W‚…¯nNJ)¾7ö¦ª’oû¢c$‹´˜KØÜ„¡´è!—–¹y… ^„­)vék«‹) :íöçtÊ>G®¿ÒËÉÇ'Zº1r¼D‡:ì9vÚóý†äq`o~.¾bvxŠ?¢d5†ÑQ3æy€¿ªæK™aLЊÎyrN ÏÑ}w"åáŒ|£yÁí>öûEÎùÑ­Àfž ä¼
å^F;¿j:
Óy˜¡¯mfÅgæU±tS8…ëêÐ.öq°Œ<#fS<îm4‡s[< <žÑr*u‰;AĆÏ?Î/õØÈ´Hpa’üäI7O÷L´1°3¬WEàN*=A³˜Ulá'ž×\]Ë$6b]/­ýÖ¿¾OÚk¶ÂSKí/ƒXMyT½Åd·ö±±áŠ›<IIà>KQ–‘²³«ªÂ†0ËÛÌM/wÐ)•·ÂP{$qçö'_¿5¯P¯³íÏÚäÚfŽ‡ýLõ×íH,~
+×h:ûHqõQ-žˆº2…hd5Èëd?óËò5‹÷. ¥†ql¼#Úž£ë>ä’rá<C
÷‹c&ÆÍ}Ëdp˜È€|'4µ%¡éø[ËÕÒ•“%ä]íဠÖ/d2bCø§wÃd×O(¬f÷k¢J“,»¼¤u°g>“à:ž
+6jÍ血Ŷ„5+—"s×3í爸Çq7R¨›píÃÍ"b±¤ªs/·-æÊs²Æ_ž‡–Oûöï'êgôgï.pÞR¼>1äÏ#£„ïÏa•jå“ùY|lôÚbKA¾N_XdP1$~mwú>þœ“¾V¨SmïÂãŒzÃ#
4åÚM û:­ÒÚ0ÝÛÜRsì9¯­¿Ü”oGuÈub]²àOšF¦ôH¥‹šêp³I [}·ø¢üƒSòÄ‹Ü)mÃpÕÛ®Áˆÿç¬\/ÆŠ¨¦co:”qïòÆÅ´eÊÊRûÛ©¸›ú‘*±kR¾éÕ¡F’iJ	ø)d·/«Tá™ü
+Ž0úiëM·7=V`4&>¿6Ž÷˜Ð-Å#û_\JýÙ— 
+àKcT®ô{¯ˆ7ÕXÚVËïPŠOН2î`¬¦¨"¤ÐÒcpJ‡r͘Fve>¤ÊK´`u%Ò4¿?éÉàUù.ÛY- ÷cÁÏùÎË1Yã¥Þ<ó
+UÅ ŒéÜòи  f֏(;ö§Às§#ôåç½ü=86ÁKù¡M¼úš”z¬Ë:x:£Ê«o§~ø+( ³ Îhç†êpŸŠo¾µ¼¡ï&Ó$×ÄW®cØ[cÏtÍæ›–—}g!e4>k&žnÆñÂÐn×N6Ó¦3Œ¥P»3/î[YîR"óî¼ÕOçXÆX at _jœyùVúãú“|ÛUǧ@*œöö÷´J°®Cuƒ9D¬ú¤d¥ZÉ]"pº¹"­ÈòƒÌUj¼?>äLG*ã6\%R`l
å†Lþ¢)ÆàU#‹ˆ›Æ돹Sƒ”¸Ô<r¬ûÖ¼G¯om©â«~ræþNI âá±ïúbè<O²Œ‚@ fÂO¸Í³;Ì8`'oÉvÙ¯ü³vy±|ϤìºÑÝa±j<jN´ 6]»°CákHpñ>ac•Ÿm•]Cì>Nïl'°LBî¡~=bI
BΉ”##azŽ¼.Å®Üu€ªðÐ4Ÿhs8`Ü¿p}!lù¹þ^Çk˜=F€ÒöºȈûUsñkYL²"†þÛ¯¢çíÃŽ} ï*ñX¢©Ù©ªú[±lüA	“]õB‡+ÉF½“h=äË,Ð¡çò8ÝDZ3l€$ÊÞ»<>²TG PÌó™»?ê¸ëîö:"?U€¤ÿ7Ì{"ü)ðŽz],Åh} #¨r®üÁg¹Î¨þÞÝU7Öí£éu²íº4àü†zL!0Y“”¿r5òÄC?MÂóÿ6¸ÊÃãñö׉ñV5Ü$ö%/>òwsKLU!JÙéd¾@xõ¬#@¥lÌ	-Ž¯1oO,¶ZŠ'»Oò¤I;i¬;þEÈq]IêOÙ"1âVFÚQÜLæ~™•l‡øÄûP<é©·ÓõºÔ'	Ñ©U»/ùº**<8*öʉÈà™€3b“UÞߌcO­¨ªŸqÛ<h&l‡'ÝÛvo>ŸßN'ës­BœÚŽ
¨>Z4ùm~‰n岬÷*ìBœN?(VÇ®1MÌiµÕãCKfh2Wëvw¼b©ÖߝÞ/›JÿéÆ6%{íÚ“mj ^6£äcŒö탅Úñíøƒ–i
™V[}7q†™­˜°aW·Eo¥ºíDiYÜ^«ø›Gd`,\ö{Îaã©t<øâó±Ö&ªúUŒbŸÿIhYïÔ—IaåyòEŽÁÚæó%W÷9äË<uì¦A•nQÝݺ0ŠÑîù:‰|ÚäV×ÚŠg–®üœŒ’d¿ÎˆÜ¡'ÛWRAÄÏ©(ÂÃ¥QÆù,Âᣜ_)Ø,®ë”ð~ÂÑb¸Õâ5
ã=B%;ø#-xȆ:ËôºV%
‡õBÆ„nS’¸ˆ"¶7?áÕüˆH[¶©ÜGùým{kmh†@m/͐1 IâækÁ|Ì~Jf€ƒ¶5É­û£ºÄ~°SR=ß]û˜÷¢Ñà: `	mnÓÂèEÍ'lÛÐ|àzú«\ÕWœ»ÎÏßUçoÈ)Õ„,TqœÁà—Ž°Zê¢Sy«z:rŒ;ÈsÉ"MíQ·]ÎÌ*î„Ê!mlÖ^7m3CÈà½Öoº;²¬ý¸µbQý¡º¾
5÷’a"yX¼(ì·Šq²Ž¬<×w—"°éÐù—²ºîDxªTǨCo;Dõ[Á/“B\çî5©W>Ö‹Ôï†ÃÅ6(±£3ù‘äIÊVæKEœkIÆp–Ã
_Õ/™§zÎhš/f‹6?“R·d£õXÓo­ï•Io` ·¶žØ		ÐÉX[EÖò?Bÿ¦¢Á·c–·£ŸÃ£•q SAÏ”Ÿ‡ƒ»¬qÃjÚqóŠÌg
ÄYà>›Náüró±o¸;¿M·Û¤=úÉØì°>	KÅe{C™ò¡&'HRèdݍe®N<Q5Fê‡Ú+Ø<êª)>*seY{x¬„1‹Qá6b»8Q84A®8ê‹ýªõMEŒ0 žyŸ‹ÈÆyäêÉÝA¥A#yCÅõ(Ÿ{ä&6´mÑ/ïâéé~ÿ”<.¤áž°ß°"H†„çÜ]˜"Bׯ{¬´Ûÿu}Ëšx6‘'64Ë„öDQ¿…|T|o?Âí÷‰d³á[1²µÒ™UÝÑlðZwîýS=Û[YO…ÙˆfÆÈýœ;½à6bs…Ö6o›j‘oyµm¦éY	øRd‰7>iÉڐRäc
+õ‚{Ûv^Á̶JyæB#JH‘ÀÕÔxGpmÛMÏ¤º‰…|,g‘ƒk{éé=y—Âdˆ¼ÊËqÖší¹ðnY=Ÿœ¦• Ɇ/äîˆuP(ľ³û—+;`©ëµ.ûƒÒQ†••S4XcÐÈ^UOƒB“ñšå/=v–1%÷/T}e8`€b¥÷H2~nögïc×==©WÆß²¸ÙÂ-¡¡Â6j+ñd)F¢:D䁪~«V_)~à–ÈköÎ}Št¬a$hWóQ ån…ç-€y at b†f‡7=?
ÿ
ú|@ êƒµeŽu"†¶WfºÃye¨5¦«œW`‰ë¡‚¼Ø7|ÞÀ68ƒ!{=,£Y¦”ïwȸIÞTHãEÅ1p®~²Èˆp¬û`HB¨j[ÏiÙì¤hÈWsLÉ¡VÀ¹„„WåãƒX_ëÕe"ÍSqÈu‰I7Té­PwXOÞ”$¼ú&k²ÃCD…$"KôM½¡°7ó.È]íµ”1b™‹ìxÈn 
‚{ƒ	"ñ¦Ný³úVsc˜ªrToÏUíç+ÁžðVsj =w9îSò d¤uMaÄ5æ%œ‡ÖŽ†
¢Æ¬a&ÄƱ€àˆ›ƒµ+AWØ(5áäz¥R¦Ø—±RDA_°4D¾ü±1q\ä©NŠ‰J寀Ó6ÊœfWԝeõq£ÇR,	ð…—Tm™l^c¦ÓªÖñ‘³*¥Hò|H…\)Ꙣg-ð¢_^—
+ïÁÄ-bu‹÷¥É 3vñxžÚÀ	_3>j|éí+ÈvfqHö¢å³·üˆýnLw'œKIw‹I‡‡WV¨®>È¿ˆßô	ƒü£—GeÊ·ø5y¦E–kGƒ«B\6“v÷¿þ>ðÜÒ‚µÛ>ÇZa&–Ý`DÉΚ¹ 
³Þ	ÔìÇL{C!Óöú­
+‚×¹ÁDÁí#J{ˆá.{ex¥]&«r5ãšÉË™OF]ñ›Ž“äs’SÂ'×A[þËŸ¥#<$†ì5„{y©p=¡xFK÷Í0˜èè‹3ñûïiü¢0[TÑè<bwŽ%W
‹—Ú Þþ¯ssÅLk0ŸˆŽ"ށ:Ÿºr
Ÿ1Ôé
+$ñŠæHä#F»Iæ½ë”Är®­ê;N>ö—üŒßT·Ë#\H,Ê’Ü$Ÿ…~¸,Éœ§'ÿvÀV@á]Œ%
¾N\®·Ei™÷¹+°/Š	€Æ1WãõPúríyf™œé ˜©c©Âœqáw™Ñ^VÛYO‰Ó!q¥Ôz!Î4$¡€Ò7¸ê‚µh0ÞêV#Ã’÷èå;%ÖŬRË€–lûßs*QQò
+c%Jš½¸w~;ž†™ïÇ8<Ó)ŸJ¾L—öb²ãëœu	Ý@A¨ºe"HÞÙƒ[Oÿ‘
+Æ”ƒÎ”wš/ÃH]d³TÒ^ÌTè;ØAû9CÒl”P©mqùi¥mÔ0­Yî?â‘Ä]TÛu½wV¦…O¦ïSCdÆüc±PbŸ¼±1Ï9ž!ù<¡òží„µY»,ò@(†JRÞíô…ÁlÆ¢±å(`(©²º—»Á$Ù¦_Ê×!çÛ#Zò#É…šûFC­wJpSuhYœ·o<ĥ䮲âÛ-‘«ˆø»ñŠªMQ0n­1Oñî©ÅÆ45NLi°#åçóß¿J¼ŸZ©6›ì;”óÑ?$¦j
E`›ë\d=çõ­ÙiŸgSÁ¸TÜ3„>aäO OݔďÖ{àÖ³‹zöÝO³ÇçQ¦Á^ž™šz]‰Ê"ôJ‚½‡Z¥×Âçq:Š1ÖÈc(êaæýœŽÔ‹äÚÀô¤F2= {È*~?=µ†n¡è¹)ȉGoÓÚ,º–÷vf’ïFcúUÎk41<?ÅA³ð"ñLi‹Ž›¸	µ¿6b¿ª^Qçâ
X]O¸ÖsYÕR‡Ég.WSÉ–“Aì“BR¿Ì­4Ø3W¡ªgð£Î¦¾ú.«ûÄ`)&Š£rðpÐÌ‹ëNэ¤4A*®d"®#Uïµ£ª¯è„¿y

eÿDù=×ÖA?&Ê°Ñæà‹KçÃÛA«6G(=I¡òS•·éÞ·ã؏kW×ÓÑ}ŠW¬(÷˜°ç‰xš;sÑó¤ƒqÄx`x>xzŒì|¹%¤ÚË/§øj¯ÙÔ4ßmŸÜçµw󴜁¬¶Úõeo°ºT²
+jf¢ÓŸý=¦A¡^*ÃfˆÈŸ·ãvxo66¤~ÔëßµEÒN	Sï9•Ó÷îNž\ ¬-á½f#§Ý°þº8í6o97n‘@\%Ø5%‰žàô¾"ho©¿z>|ÎçêO¿ž–/’`éX¨= JN”>ÀNwAïòù½NR@õÖÂŒñôC-!]&Ñ,:ö4ãç©"=Ô¼•(ßa¯f6ývz¢“æ?Í7ª;/nô]jÉÂ]Zlˆ·PåtUagåÍÁ/¢Y'Þ“¬·Ç—Ô‰·È=yã[èK·^}•±Ÿ.”Úœ7SU*WÑßî’ÿOw÷×—€¯i¥õ}w&ŸhþJ©¸–ÝïË
+mAë}£"1¦€N9*Ó¶ÑÄxdL–_žzwøyÃŽà7B´Š²´3Zmœª|ÌoCÚô7èá“ÏÃÅIè¦_ÃÝj[D³CË=1{I‡™˜ÀåP/KVTa¾Pa Ñœúšl4SbIvüÚɁռ3E¢é±ÝÍ1òG ÿZÞ…<Ϊ1Ø$’˜ä%¼j1ÖZÜ”2\Q•­=
+”7ü­$xü³{b#ð>Vä%M=‹òRº¬€_ÉÞ•F‡aZ?ûøVèÞ9ÿ·9¼1ÍèÅM:›§Fh}]gí¤…Ä¡ˆÆ§Ê„Ý.”ÔüC׍)"U贏¹œ(˜¹ß6ìS{äõáV;cf?$ ìN~œ^@ßErÌ =1,Ch"Eóý{:Oì—)Ð,›3¨+d?!ځ]"Ó.þýž.x?ób/‚NÑ^ÏKÞmÖ+Äɱ‚0€ÑÛï+Çpgk¯y+®¡Z僉’äÖ,‰?í±y·:òA,•ç:RíÇØ´t·J¤ž
+$ƒÇ¨®No&ú²l¸iÇè…tLæÚ·úÞÄQpÝå7§±Î튜cu9"Í7#äø7“Ìh桳Ñ)0Ü:[øtFñ_¸¢àV¿¦hÁ5’J‰ó jB dµíxÅNÑE=-¡{Ñ™»YêåÅDÔW嚃 hÍëBfš9ŠõÜ„eÆ31ÜM”$H‚§ü]4¼4bø¢55ë4S£Ÿè —hkµ—>Éž›Ð¾;a†¡8À²w»q¬›I+=[½¯</':ÓÁTîëÇ^EÄà‘xÉqÂ$áà:88z™ª(ÃR3ÀšBÉøQ¸Jp‰‹/¢gõ-àçìÃ2:§ù»|XKÆÒ^uÞËXzNhßîã~/¼ã»>$›Ò³‡òÉ@t‰ÿ4ße׆÷j:Eƒ'‚ÍÐ!AÎ#Žu‘b ñõ©¼6á·ü“£JÛWß—%w†º°=6y9mÑå¨î2·q/²/¹¡EPØŒUšE›VÊU{-N¨¸¢¯ 
+ƒNœ[°¾”*·ôõžoÅ5õÊøZe*R|ý`=È`Åñ©Rký‚&ÑåÛ³˜3´`›sÞ8Ϭö	-%ÆC—Ó,ë•¿ ëÞ'!ˆ|öqôõ˜NóL7òh¶Î–'0>4œ}ÞöX˜¦b~Ocsƒ!Œ'ëæmá“ßú™¬:ê³ÙÞŒjãDÍ0íájqù“ZY(üC1êM-ã§×0ÖÅ‘òYçî¯I‘wü.B¶7Ç
ZUUîæ,àÙyÎ÷`#M}çîJˆ|Ù•Æ¿g\PñûF8=«O‡T¾
+z™Ìí<“­Œƒá++!ðÃ:ÿòÁ™cp
+UtêÐ×ìãl at K}£€
S%8_I°Ð2Nœfzˏ‚mMñ/I èuPÆz*[ˆ‰UM“ºEÝßn¾ñqZ’>&Ž§/öPnhÆj­ïIê £Âü(y³‡áG™/ã2ï°F„ENApØMþÃïE­PþqO’ΫFٝùº!!›d}ºßЇXì_Oèü^•(~:NÚBõ×ÐàDzû7K!¾”o—èMo"äW^Ô¢
†oÈÀ™ùíiAN„Ü”štrVN™vQÉšly¦•Êè'hÊXðXa×bV8ò£Ï:3xvnB5Ö:¬ËÂYdËÒ#ß°&˜‰+«ÄAkŽˆ2DÆé¨-ìÝÓƒBÌJóEΟxÅC5¬ôB“'j$D(B¦>©3
õî“Ÿ‚[7CB¶­
•d®Þü´g&8Ný°êOõý3QýpR—•YiÓV6£¡Î
{qQ %§ƒÒT¼PÓR¸­Œ=JsÂ{»”£‹;Žµaýðò¬ñ ¥2úç×…oŹ[»ÓXÖx	:Œ‚zèЊioo·W”„_­­ÚYà÷Ýؔ®îÚ
+gY•xç-ºÂ*PQ×K˽ִOvÓŒ„|}Aç8@Öç€3¹W
Înkk>ÇÂöá¾Y9¶
ÊWúÚ¬q¼ò í’$ ÊíÜÄqðªåÁù±ÜôöÂh+šádWFÌúJ.2
½Œì´ö´±À½” Ôà½
¦ë W:SäYÊ=†`²æ…PñàŽÝÁP	<±Õ7Å«Ñ£…·­©IÓ²<QÙÿÂœ:YîœõeÌ•ùbsH¼ËWš@¤ŠrÝç}æ)‚sŒƒÙùk“_!u Õ-áØó²Ÿ6ÿ¢º;/ǧÔÀÏIs0(µÜ=^Zù6JJ/°®zú˜’/X}ñcF1
+ó+ð¦‹Oß}C5¾½8ïp¼x̶ Ê7Oñ¢†T2§¥Oÿ©ÿ&À¶Èfý!ú f+Û&¬.g#ïL5æ±ÚýDL0ߘñª7•?硉õŠ–ПUçç•ÐZ}ž‚3“³:ÇÂ`ˆR`l.•ü´ôLÞý d{-€ŽJ”^²‹@˜4ÙãÀW–öÖ-EÇÞ¼²1r¬ªq„—8'¿Øìúú0x@"7Á
+)áxÔ:UVEyÆÿ3v×DŠäîMŸá0&šë§¨³Xk庪"¡q¼VÝd,bfŽœ*¼ý47f
bÎ-ºp:dqÚ燇ñ*^bË«UW¡ó>-Þ‚³"X	oiiItþ|Ѧ[6‘€£3Z!7íÄýV°ü¢¦¨K‘wŸ»ñåߟþµ\óÚ‹zTVEþ^]1-‚
I'øÏ&^háÄúòt¡‚™²W•(_]‡ù-äK­ózr¬Í¹XÎ!u¯îSËXèeÌàÓ–£‰
\jž}TutONϦ½çűGd:Íÿ9Ümy>‘$/µÆ%±e¡Ê&Ÿ.ÍÌC2Ñ‚èÝ%uëð>Öa¢šÇîïŽÊÈ8Ÿ#qÎãy‹‹ÍŽê
+ò®¨OðqáB@óµ[bÏ¬Š>¼–º"¨CüÝÐ=ځzŽ Í:Ì6£´³ßì¡ËZëWÝ‚Í9´Ð¯ø%†0½’z¥ì4væÛ>
Y©ùîÑì«…K¿‚$69I3ÏBT¨ˆ>ãA·
+ÀÛpQR<2“,úš}ïŽ21ÞÔ…øV!ë…=†þÜÙÅx†²IKÖÑO¢‚aýKcÓ½‡@I(í-¹é„<É`¿qD³8åóû&É'¹¢h:Dkã&€3jÍJ{™2Wê“ÝC+–ë¢{³VÇ»+˜hNxbÁ‚K¡wˆ	iÞ§«†}Ú7ʪ^Ç´×ivâîv¤†o1ª•%<!á—¿	™¯.¼'ÚžnD-Mªö¡Ôõ»3?÷Ì*iÓÛWó½VЛx0X©³d:pϱC,S”Më‡@Ø“w}F'è›%rwx‘½ò‘p&¬0)²°¦Ü
׺ï	/¬E“c.…Õç╺
IÔv$®Awe§“$!}½Fi×2‘ºWPõ¹5Ô®Òý–nÀYÚ…ï˜Z>Ç 
¼@«¨`B3fü‚¤ºíŽ—¯þvYQ®cÆì,ç/	º¥PËÝ™ùšÝî®E¤h~‘““gær’ƺ`?õô éËKœôŒÚJ’aôW
+(7a¶)õÅs.̹«ç½ŽÀ š¿/põ¶U ôK"÷“Šè’"Ϻ×{#:M†-Çžb\F
×vi3‰
]:’;dü½XÀóy“ëjÂæhb¹cýž{Ýì‚òO`n=à›þÅv[z[ðkË/9£Š¤Ñ‹ä_ã\}zÉúB]Û¡Ê€A‚æ	̍ ´~.Q­–ácÙ'.ß3-DÅë²i¢NÒ:	å–®"±GH)]º„A˜wnd?ËtNZl@î=?"<Ýžâ
©õ+ÀŸË=2Î'~Öõ¹Èk9Y¶¿ÑsßûG9 O=L¿¢µŒ#Øbö´íäÓÃ#)¦®ŽL!ó£¢Ñxÿæ¦B>þàŽ?cM°íó1¹Œ}ƒ",ç&™R‘Oî°O²Õ²HÇÔ,ö0^RW£[š–ag¶ÉçzY°[.Š_:V‰bX{8Žæ=tä¾{¢D'Fª&Ü¥ÐÒ‡¡Àan,aY“T5lI‘J'ФýŠ|²
+($®qðÕ•¸½Æ,9½$~Ô¿'?"ÔúLWé“$<Ø.°ÉnÖ>„]ÛôqSKÂí? s`½Wà’ø5âÄCrÇ#D,Xd|ņ%ñU†-¥übùvÍ èÛ£Áà„¯Ê&2ÂnXÄÆYÒ¸2í·,›ÅBì·s¼Á,_”MçÕãÄ]úH…÷ü¥ZF:Äw¬cõ®ñiä^Œ€]þb”ûµï•‡jpÛËTP	Ç”n÷µqº"{=†‘msgb¾<¢B2§Ë¶È'¼œ)H„×–Ÿ%OCªjȍ=Í">)N]×ïìçÉëF­·.Š‰Âw8½!\Í„4öµQä¡Úïë€S—ÔÝ¿•Øùu揋<“õ)Ç™7h=1`ävIGÖ¤Çq±RR×yH¢¡£Å)=D¸³Õ‰<¤¡“̵\$K-l¸Kwò›Õö2ê{%ÎKށ ‹Y}îÝŽYBƒ›$íwLÃó¾Ð7n´áÎNéÛ¡yÙœt2±BC’x‚a)Ý’~6ŠcÑÜJ¿
+¬¶µ¨ýóV±ŒßwÚùÅgm·U¦FOê'©Þ½ox"¦ð±ª¸ü€ »Ç˧Æ0tï…ën#Ðä-üÙ÷«¶ÒÑÓ+Äð¥:€Ârdª¨¢'‘EœçÖH¡piÅý?ÄiFxËÐV^ïªÔ*KQ¨	Ü^ùª¾îîÁàb$8Äéa/ß;öÕ`îœåIÞÉü`?æ<gü"=
¢l3Óö¤±UÉ{¿6\S„…-œ öÛ]j†ØwnËh>ç’|iöÜ	˜TÁקå¼ÊÖq Z®ô<GgQŒÍÈðÃ,u•"+RQ„;~)áÚ£ÀTÙ»0ÈÑ£™âåÒ„ôðwghÄi=A“­áÆ[Y÷F¦0[؆¾sN¢¢i~<4“€aEŒÇÒGê÷•‚EH}u’K“W¥˜˜Æ7j¹›ò¦áwÈe# P!‰æãâjøŸg7ǮǙ+~/]PâM.Ö£:6œD6è•6vˆh”ÒÕÞ	A@É+»LJÄdâd†<ت'>ÌIð¶ÜÔý`²€ÐešA:'Þ>Åë(1,×ÿ‹à´…z,Kšx ®m÷+ik@åz3©zrÎL>”AÝ¶>óÈïv‹ó*6V¾/e1»t?Ôà#w½k:Øšû«Ý˜¿k”mOºF¤´ªN½E½R½N_9e͹_]ŨiDU¥1á&ÔÃQ­[·”qxª>óÓySïM5ÿ¦™gŽeŠ(â?ŠæCMör8‚]ˆw-¦‘ŸŠ®vVh['Wü WQÙòÀ¸$œ7)–Ý÷êû	kU«QCΛ‚Ýdæ#Òeh0«CIð#ò>6-Ì.ÄØP¤7©x÷ËCÛ¥aÚ &b¾3^
šT¶Xœ¿>eÆIY€Hz”`îwO°}˜msffã{SâÃ(Îœ¡Äç+^ÝT{EãÒ§¥ô9
+`2äÖᙞ¶CiE¥2Ùàæ¤0œI·ƒQo…î㥹#e ˜Ì¨Á0ÛOIÉÕ£}[ސÓ5¦ÐbܾÐ%ea±Í⤚¦vj“̶)›ñYÙð¼LP¯êQª$ò°~W
õ=ÆÚ­ÊB…¹¸â+>›ïß븧Ž"|‡êÐö?¼þ”ýõ¾WOF‚Ñݽ`.ZzE9 ª¯BÙuøú”$Àµ×øØeFýó±çz溍ÿÖÀ°­°B"™Ëš•lYàe5^Ûb™&I0ÂŽ!~aÝþ–D+сX%ÐGKXŒî›d©õ½[ä÷ÚÛ-*b…dÉx÷„”¥‰bð>èøs0„¶ôn*¯ZÈÕî¿`#Ï8ßä&+±m_í4Ò`*qá)š^tr–µ‡ú¬×“=J¤ö¢Æ܈­Jì•M´_aՏeôR`¤Ü¿‡$oYL¡‹]Ëz-ÏI2ÐNÖÖ
Îjíœ?>îf¼ÁÃÙå“fMð«›ßsXMÞˆuɵž¡ñ¶Ô.úBIÊ…ÐÃŤþ
+ëÔ.ð¿¶ÇXƒç>EåÜ!ÍPQDG¢{•ª¡\_^>h¨Ù>’?{!¦hplµžñÖ¡qo¶Xg‰¢
+8ÚeðI¦(d²Këÿ&EàŽÐ2û““«ÕsÛ›ˆ–uNë.èœZb@Œ#Ø4AJk©œÂ;úáé­äZyC0ø,oFn{ïÿ"Š””%XïØa©Žî×éê°ª%¯ƒ_ÏË}»ê—C#¶3¸@¥›*úD‘ÖÖïm{T\¬¤;4ŒŒNÏzöhÆÅL½¤Á¡Âɐ‘ª|ßtˆéûF4Ðj¢¯z™Æ&Ø̃%&R{±ü5_tÐn|œ«îaÐœ ¢Á`{ßE>Kxã©/m"%¡+´ã—ç·&>´Ãqµé` 4±†
+OЦÓ\Ò+V⺳y:V{7 Ú'C»{ɱM‡ñ³_Ô=æÞÇÙåþÀ„ºe]€œ3lUh8¢†P§|ûEª	—B¯€Ùó7ÿ‚	+/"A
+³žÈëÊĕҝ&Wþ™¡lµzv­Ô­kl>À1Œ%Y~’¸«Ù°‡Áø§ÐãuŽA=Ét*ã*•æU½–õÐ]¹0{ÿ›iXødÀÖkæ·S>\+*öQUbÙVæ9pŽ§àÉÌÏõ§"»Ë¼XOC%ZÁÝ­PÍï`pâ”;ü|ÊÆöŸÑx?cq‚}4kÙSÆ2g¹ˆ®´.HsgM”ð%då‘|ÏÊ󍁈çB®ŽLã4t*y§­3(‚ávû-Ž±CŒB2ÓmðÉã2‚]éÕÀm!%/y°¤òΏ»rQ¿K¢jw½ Æ赍HAê†
+Ø-"8ÿŽ{\}ÿH®/냌·“ 4&`g]yQcÄÈÐ=Ó»n>d[š	èk1|£ëÆgyo@Œ}ZT_Cr½óß|lã¾wÅÌ~ÕÕ—¢…×a¾éÜúìáXLÌ1ÛpÏõõ8¿§Þ0x¿ ƒÏì´÷eƒË$eTp’û·§{×dÝiýT¥ö>áqêVÒIÄ
SS-¢gö]Ìü•=—2Ž™v·B‰'sâ²û8a¯"²Ä"‚ýá;^Ád~éúMÀ"êBçÅ9÷ŒñvX€S¶Ý´ø®Yìë Ÿ<ô3ò‡žLüM{MåþæÑZv¸ÌNÅuàS’°8²ñäæ¢pO+³’R‘ïc£SÄl¿’¢_s1OXöÞ(
+^¦ì–Ù4ßa”k}å1è9‹ï$h&îýÍOú"ÁèôEMßš\ÖŸŠSå¶Ñ„ó£SD¯-iOäQ†d~£²ºÏ 0‚ø=ÌEDc,ñ‹‡Ck€-ä“Ë9÷¹~’#YŸéômð
+}V-òwr³Ümö¸¡yî,C¯/'€”ý}5Æ%TøÖ9£`ñé\s|œ˜Ll¢Œ
þ©Ö@úI56)½f€‹PþZõlV*˶¯3E8š^ÿðÍא$×äf¨XɁ
+Ç$?ý}¹Y|f—YÜZ‚¢|
+Íæ;ž<øÙ©×2ÛÜðrMFWpÝŠnÊcë÷³#äÖdÐÂqH÷umý¿w„Š— ùû¨d¬Òòz,´X-¥¹ÔbH¨CïVëƒ 3T­nö´†K9›ï¦¯‹´¡Pú‡Æ
'!‰¯°µi—ú:zX¼D—wõ·+Ù‰ ­;j¡û¬Ç]³5‡ü ?õ›©ê§t˜þ6XÚ…µ1ݾÊðJﺑA9X@é#üä4ª\¢Oïѹ6…TÁ¶©/;Ïâø'f¬´#YyCù„´¾ˆ)m[ó‡cªô÷Ô%·„±~þ˜O~x)ÈdtýÛ ó³›3‰+íÑ8ºr¦+m~7!xaøAiáˆÖâ²ÕS¬«@0aAÄ£óhùoþÑCz<¼þ\kKÑP2Èä a§8©3Á	ú›ÙË«„çÙ†9ša–6Â6sW59¡O5afë–@ô€Ä@ídðEE!ª[”ðq4¤þ<i"L$Z'‹ð€’*'ußu³Õ¼ŽíÞ˜ß1|Ù_`mü
Οî°>–ßùåæëq1_ÙðdÚ<̜̍L¤םâå»­NZ‡)vWÄ°X¸ðXòýP”¢Cאô¢÷ªÖ%ºKBöJá7°„FÝù¡Ôõ¸ñRtfoš}5“‚I~,EGóaš†Äá+¹ôáÍ yó^+¬€ÊdšŸ§{P]gÚ BáÚf¿ó¤ÁLÖýµ¦Œ,A(Å~ÅaáÏSÈtË
+­þÖT);T0G¿šõ#¢…]ÃܨÚ:pô	¨ÊŸζšªÏ–n¥eãT(Õ}¼à›<øeÈzŠû‡¿&Þí4C~ÍŠ$§!K)eOVâî›â»eýÄ}gଷ<#âÕ©¹BÌ©þ0QÃ'=Z3ê5
ñÓü$¤:¨=¨ùYüË]ìÓ)7÷¾ºÉg?UQñ<»üc
+#Ö¶€4æOó‚NÑÝ}x—<@|Qûo,ÿ?pÿ‚ÿO$0¶íl ŽVpÿÏ¡‘endstream
+endobj
+220 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1138 0 R
+/FirstChar 11
+/LastChar 122
+/Widths 1146 0 R
+/BaseFont /NNWGLY+CMR12
+/FontDescriptor 218 0 R
+>> endobj
+218 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /NNWGLY+CMR12
+/ItalicAngle 0
+/StemV 65
+/XHeight 431
+/FontBBox [-34 -251 988 750]
+/Flags 4
+/CharSet (/ff/fi/fl/ffi/exclam/quotedblright/quoteright/parenleft/parenright/asterisk/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/X/Y/quotedblleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z)
+/FontFile 219 0 R
+>> endobj
+1146 0 obj
+[571 544 544 816 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 272 490 0 0 0 0 272 381 381 490 0 272 326 272 490 490 490 490 490 490 490 490 490 490 490 272 0 0 0 0 0 0 734 693 707 748 666 639 768 734 353 503 761 612 897 734 762 666 0 721 544 707 734 734 1006 734 734 0 0 490 0 0 0 0 490 544 435 544 435 299 490 544 272 299 517 272 816 544 490 544 517 381 386 381 544 517 707 517 517 435 ]
+endobj
+216 0 obj <<
+/Length1 1012
+/Length2 3680
+/Length3 532
+/Length 4362      
+/Filter /FlateDecode
+>>
+stream
+xÚí”y<Tÿ÷Ç­‰ìYrí»™ÁØ÷]Œ]b˜‰aÆŒ%û2ˆB¶ìÙ3"KB–Q‰¢‰QY*KÄÇ’Òwêóû~>ý>ß?¿¿~ß½ÿÜç9ç}ÎëžssT4D༑f8,A¢ÑŒau ¢f‘”4Æ#ák' µ ˆ¦&0$úÊ` ¢¦¥¢¡¥¬Ê"	ãÃñ(_? c,û3H0Ä ñ(8€Á	~H5‡
8â|PHB¸`ˆF?OÈ`$>‰Pb@ ʇ x#}QXÐOA–Ø8@ýO3‚øoWLÈPEÊT‰ X at 68j-$UÉÿ†¨&7#¢Ñ6pÌÏô?›ôn8…ÿ¯ &H@âÄcÿê‚üS‰@1ÿôZàh”!֍ÀšPÁf¨0$ÂEðñ.ÀÑÁÈ_v$ñOÔ¾ý’ 2´55>c#ÿç<ùìà(,Á)<ð¯¬?ƒ1äo¦v
+ÜÀJ`0„H½ÿýäñZ¦X…¥.T
€ãñðpêfP	
+D@ aTÁ %,Ž@=P{\ÀáY~ŽS
+€üÂýØŸö_&uªÉêoR@Ö‘†* rú‹¨Áÿ&
 äýAÀ` „ø
! ùª  ßߐš×ï7¤J@ý†Ô:¿!µúo„PaCj!Üo¨€Cjæàߐúv„_øŸ42Â…E(ª¨ ŠÊP0 I픺ªfԏsÆ¢‚ˆHK 
+ƒÕ5¡¿¬>D<‰%üúd¨Ëño¾€¢®†ôa™žÄùh'ú_kK"G›VŽÖ1ÊÑù¶gÚÜî}ÙÚ0u•]3d$7×âúõf!×ñ%Æ%‘Ðo‚Á©Ý‘ö#fŸã‚2ó'—B¼–
+/ÞtýR_ÛMXaïjß^…ÒÚ¾˜{JÎ9[5P²1¸Rn'câ´ÌôF”æ[H냢D5uW³B´s2©EJEԁ#?ˆœ¢š<Ê‘“Å0û<!Ú?™¹C~f×MäüZÉ\–}èÉt¾¬œ…§iq‚¾¤JP¹›[ùìšd•ìm·†pç7åt-™}ÜÐk :ÿ9ñ|tÌmOÓñ¢"怙¥µç‰zƒÈØ®éø:mæ¿ùÓaóò&œ‰‚4û:UëúASúu·§çfå2òßr[|“-öAøÇyI¶
,gÕõ'û­}îÊ	[ÏnXŇ•7•Üøx˶³Q|íÊù(M
óþº›é팖Dlgú¶iãiËH²Dý°î„).]!Z-ÇßmÓF)7?w÷‰­%þÌ=³ÓâI‰ÒYâ¨Ook¦¶ßj´çà_YÐäRñœa`DÃ0lÆç<»§..}ŸË(}Í_DI웩jjpµùH¹Ã/ó²c‹”wí+.ì·DßE)ŽÑDE(KöçÆL=ôb™7€‹b7<4øðÆýÜÉQå}JÚ«p¥Å
+Þ¢H)띱„’®W©pv¶HÐüõ¯ùb?œéÏMHš]cOXñòøÍæ-ú£§ºOT«qvéœWç9Y­Gž„Ö$+|VƒÈ½VšKqœ¹p¾Ç’ŠmÜ7ŽVV#gÒ$0*ùò#ËRi÷	mMb¯¾mÞ‹RžÄÁFÅÇ6ÙäBÕÈ^»r½"ÁZ'è4”Gü¼Sª¯…ïƉÂ2Ƚý»±4\¢ãš¡A»2ßK#£®fu$¯¦è5ÛÙùI	?¤¹%l yFöPÑ͘O· øéZ©ðÓ{#	8é›t<CŒ5½æ«"Þ$ÅìëZê»é6¢„…ƒMeÇâv/ ¼àGÒNåÊBzSù“Ý÷õÝÒfI_{»•»¬¨\:¥º<diõ£›¥/W:t§›èÑÍÏ10sDÖ8§² ëƒþŸ’;ño<š~Éz´”•{Où׿W-sÔ
+Î}½¸ÄüMXÍþÑ«å|(îGÀbИ±ïõ›M^¯YÙCoÎd¡¥d</ŠyêEŸRø¢‰CVƒQÜ·æ⛣1¥=>Ìa% yƒî[“Ï’ë§2¼„â§Ê2sã·›ßâkô1^“0Úï–ðWÛ¸¶Ru9à‘Û÷vs©ÉÑÒlR$*ö‡Ëöš¦Ô”Ô{òT¦²¶Ú¬¦n|FÁ°¶ä´*õ¬Tfr›ªãVzýµÔ#ø1¹uv’Klf¿½vÝõtów·ò¼v_åÕâ>%Eägâ–f³KiÖÔ­Áü©§äçR[^q
=•B,rò„å›ËÜO+(#çY$dµ®'%Ë*5røSvݸ‘ÞùEëv½¢”¬£þ‘ºˆ·ŸŽµžéè“‹¤ëšÏÐ)wn„¿n4‹æFñ‰¿
öÉæXŒ³‘…U±
+z[â=÷óa®Vtž·&vÖ7ÂTÖ•ê²>ÈXh.Fð'ê\Y­…Ñ7Õptë^/¨³­û¾`OÑmÛ21¡³Ob×÷Æû	y$|Í=”ˆ8Bjî?(q*)L”QWË<Õ…ŸV¯Ýöf¢­Èº9xûëÕȏ
+œ)¬wûš¯·²‹È‹·'òtŸ°[½ÎdË‚&¹r‚ˆMŒI5ggœT5*ÆvTº¸=ºÿx%Í)£»²Î·’SÌ;â"4iˆ~Gh´À°UÏuãÃL®óé.Û4ÖüqX`nëO¾
+ó—¶^ËHBŽÜ¨ÓÝM;UhÁ³<¹Å]\¡¯‹–€J~~ ”³Þ“D^\ÓiXBóëÔ»L~x%Kƒ`­2e¥µ¹—KI¤aOŽªö…Á§á¯äJB/€ê¹è©¶Jóöèáy­.8d‡îtÇæm.…ʦM »Ÿv;¤Bøò—F;6?âžÃµ¬žÛ/+¬k0
zŠ_Þ ¬;ÀR£ëÊþh×ôÌ>rk‚QÇcý1EÑæ[Î>'7¹Ï%bÎ7Çe\2+¾´5Úµùv›õ½Ñ
“ŠǝŠáîL6²ÔãÜYšÁŠ“j?%ɇõÙUì?Ÿv_ë=º€ÄB;N		ž¾x5–ƒ#|»ÁhË+é¸?ÀèÁEƒ_ƒôŠŸžié4× ä*g²Ú»¦.:™®ÜFãÚV™˜p³Ææ<ÉiB?ЗY®™ÐT^î)¦¿"òÛýá«e+3nJ¹Xí)ȘŸVÏ|ÿ¡Ê¨ÿþ\}ÀõÇ‚<—¶WCe÷³?ÖL/µÅwÛlT%µšCRµ%ÏÛ[Tß«mYæÉ_>÷²¸€?.ZÝ)Ür“‘­|ü}wónž˜—ë!áõD=RH‡€ ï›Êæ	Ô‰ÕæËÆ·ZcϼgJ£´â+]TXCWlãŒ1ì+¦¬YÖ…Uv¤ý>ÙQxµe”këò~üÄ›KÌ1‚­Úå{ùžX¿¼UÅ#§py³[׍è6çB°Ö-“-	WÜ*ª¿µoìÙ¿	'ÿè{†µÑtG¿+5¨†±ë5òys•ß¬oán}Z™££cuÙZÔlÒÖÆ|q«h¦õ¦Ùé˦w“ûQ³Aå„£n	Í­ãge4Ú__ñ{Yªç¯’ÑðeœÚi®0¾¨Geë4'¯Ò¨ht玀å[hž·ŸM³…4ý‡Ÿl]Õê)ËÀcõVžIƵ+:}ªöJß5Ù›¡J*ÅZC²†'=×ýx§¼_!+ ÖW¥Ž9ÇøçÍÓ™á!4n÷Ž>oW›¹*Á4‡ÀÄݝ۳ŽKË'!‡Ü®Œë-퇉¶|š(	mUÈ㾏=J™m§|øüU{5¹÷ü^+—;r™4u%Ä;œè†kïñ^Ý2Û;8˜J¾•ç¡EÔQX§µ;àoê 8"u-6¡&‰Y¢\ŽI•/,¯NÝ5¼¼.ƒn|ÕÜ;™/Us	"3)u"å‡M”þ“3Fn`i‹—{BùµÁwª#|¾ÜKx§%Ç´eýàäÁ½G&ªBÙ‚~:úïâ“Ö䇟Ûó“Òá…)áÍÜÌ@ó˜ëü
+Rç=*i[\»›šVLM7iSa:!9V”å ‘sR.(WUbçR½Óy髪=ü­Ä-Höðà±GÕËZô¡×ôm!Lëç‰xLKtí$ù½Ø*û¾ )<ìÕ@ìÆI‚ñeÚœo{	¥8qxñ=£Š¡—µxÝh?¸ŽA,Ÿx*MñÆ<VpÙl7½r²ê¤@ƒø(ƒ«çl4W®ë|MéªÔÙ~Í”A»¥ÿ
+„•öÜê¸íþäÓ6Ј‹ßÑÄüj$Þ•œù*d à7¨àý—Î¥bæðÒýCæ¢g!®1øš¤v©-né$w"LÁ2ÿsôh¦ÊÀFåß¡‚lBD‡»šaôÞ}eÓ°eöM&Tí·§bÕR	l…ù\Ǿh˜‰/2ðZX?–ê*Ç>6ס½ÚÇuÚáˆä:Žq÷.}©rÿ8ºgÈSoûÞxÞ´1™Á‹7Åúf
sC0y7øcÿƒVKUp„Uïóaï…ÖãtÐmOiû‡Çb3šØ™D>&//­õ#öNŒOÇkFÆÐGJ÷ßݍ~©£ª¼tΆ5ÈzŒIKŒÊ3 £Ë´3§øê
!%»ÔC΋¼Ž”¨œ’<ë«)·!Ò|ƒ´‹S ™P9»t_$[½^$Þ}e†)]Zi(»MÿèîIŽ”'݉ÏäìAt'Ž®ƒ÷&ùÃԝˆ¾;bÖaÃ,Å@Î%n&„÷=‰‰Úg
+^Ζ¶á™Ñ$þ¤ÀÜÖ'†fY»Íj^¤Nòš"çºÕÆãP,=›~ú=üæÐf¾šƒúººhέh·’ôÁª´ ÊihЗ´ø¡2>oå`ÃBJÓl{ÔÙg¨c<%¦kÓèèSl6ØG7:48=‹æÖ¦íî¤Î6eßžYÏåZïÔ+±*ÿJq›_o{ÐiNôyž	±áÖ¾E„‡ÞÅßµ’Ä/¶~ÌIqªo¨µk#þÑ+ŽPHK£þ>}9Á/äBŒû—¤Vß
+$Í=1Õ×hð.·Ìq^ï¶	[wÉJõÊ+
…
+e!í…DM×™EFʱûo¢3žk!1¹€áÐv²„rä)°¿¡ß]¯-˜uÐî/ê©»3.¤W¶2C⡘”ïl?9™œûnqU§î6WìÖêÔÁ…G^³wƒ¼º…Š?iütò)¹¼ šdøsÅø.ç…´P:Úª{dz±Óëg7xe31oë=ï´#‹™—¾;òœnì¾í'¦yù«ã·xÑ°VÚ´'›Ž½ÒѾñò„²Ó%Pò”¶NÓÞêž2r¦ûŽ³1Kû“i³Qe÷öz³ËŒBB¿cK„„?LÛã•ê¾àæ£êÛÁw´,ø¢Æ„Îú`÷Òìýâ¸d°31Õ‚Xö…#§·ç”ë¡C=Óëá÷š}_<>ÇibeP›foÿýÚOô²s{¡ù)dëu%bpj«"…•“S]¬ÑÓ΢ ãþNAøT'Rót,5fFVRÒ2´4ôœ,´ŸC0„¹X+æúÌ·gp­Ó{%6Rž¶‹ƒUçM
+¾šs†TWfØwÜÞ©»~w)'ŒÛgy„¤«·_ôŽy¶Ë-4Î×
Ü9ÇÍ$+«ß7Ó³Ée¬›Æqü?¼Xþ?Áÿ‰>h$OÀaàø –·µ¬©endstream
+endobj
+217 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 1138 0 R
+/FirstChar 45
+/LastChar 116
+/Widths 1147 0 R
+/BaseFont /AOECVN+CMR17
+/FontDescriptor 215 0 R
+>> endobj
+215 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -195
+/FontName /AOECVN+CMR17
+/ItalicAngle 0
+/StemV 53
+/XHeight 430
+/FontBBox [-33 -250 945 749]
+/Flags 4
+/CharSet (/hyphen/K/L/T/a/b/d/e/g/h/i/k/l/n/o/p/s/t)
+/FontFile 216 0 R
+>> endobj
+1147 0 obj
+[302 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 719 576 0 0 0 0 0 0 0 668 0 0 0 0 0 0 0 0 0 0 0 0 459 511 0 511 406 0 459 511 250 0 485 250 0 511 459 511 0 0 359 354 ]
+endobj
+250 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1148 0 R
+/Kids [210 0 R 252 0 R 285 0 R 292 0 R 297 0 R 303 0 R]
+>> endobj
+311 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1148 0 R
+/Kids [308 0 R 313 0 R 317 0 R 321 0 R 326 0 R 331 0 R]
+>> endobj
+338 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1148 0 R
+/Kids [335 0 R 340 0 R 344 0 R 350 0 R 354 0 R 358 0 R]
+>> endobj
+378 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1148 0 R
+/Kids [362 0 R 380 0 R 384 0 R 388 0 R 392 0 R 396 0 R]
+>> endobj
+403 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1148 0 R
+/Kids [400 0 R 405 0 R 409 0 R 413 0 R 417 0 R 421 0 R]
+>> endobj
+428 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1148 0 R
+/Kids [425 0 R 430 0 R 434 0 R 438 0 R 442 0 R 446 0 R]
+>> endobj
+453 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1149 0 R
+/Kids [450 0 R 455 0 R 459 0 R 463 0 R 467 0 R 471 0 R]
+>> endobj
+478 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1149 0 R
+/Kids [475 0 R 480 0 R 484 0 R 488 0 R 492 0 R 496 0 R]
+>> endobj
+503 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1149 0 R
+/Kids [500 0 R 505 0 R 509 0 R 513 0 R 517 0 R 521 0 R]
+>> endobj
+528 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 1149 0 R
+/Kids [525 0 R 530 0 R 539 0 R 543 0 R 550 0 R 554 0 R]
+>> endobj
+561 0 obj <<
+/Type /Pages
+/Count 5
+/Parent 1149 0 R
+/Kids [558 0 R 563 0 R 735 0 R 905 0 R 1071 0 R]
+>> endobj
+1148 0 obj <<
+/Type /Pages
+/Count 36
+/Parent 1150 0 R
+/Kids [250 0 R 311 0 R 338 0 R 378 0 R 403 0 R 428 0 R]
+>> endobj
+1149 0 obj <<
+/Type /Pages
+/Count 29
+/Parent 1150 0 R
+/Kids [453 0 R 478 0 R 503 0 R 528 0 R 561 0 R]
+>> endobj
+1150 0 obj <<
+/Type /Pages
+/Count 65
+/Kids [1148 0 R 1149 0 R]
+>> endobj
+1151 0 obj <<
+/Type /Outlines
+/First 7 0 R
+/Last 207 0 R
+/Count 9
+>> endobj
+207 0 obj <<
+/Title 208 0 R
+/A 205 0 R
+/Parent 1151 0 R
+/Prev 191 0 R
+>> endobj
+203 0 obj <<
+/Title 204 0 R
+/A 201 0 R
+/Parent 191 0 R
+/Prev 199 0 R
+>> endobj
+199 0 obj <<
+/Title 200 0 R
+/A 197 0 R
+/Parent 191 0 R
+/Prev 195 0 R
+/Next 203 0 R
+>> endobj
+195 0 obj <<
+/Title 196 0 R
+/A 193 0 R
+/Parent 191 0 R
+/Next 199 0 R
+>> endobj
+191 0 obj <<
+/Title 192 0 R
+/A 189 0 R
+/Parent 1151 0 R
+/Prev 187 0 R
+/Next 207 0 R
+/First 195 0 R
+/Last 203 0 R
+/Count -3
+>> endobj
+187 0 obj <<
+/Title 188 0 R
+/A 185 0 R
+/Parent 1151 0 R
+/Prev 175 0 R
+/Next 191 0 R
+>> endobj
+183 0 obj <<
+/Title 184 0 R
+/A 181 0 R
+/Parent 175 0 R
+/Prev 179 0 R
+>> endobj
+179 0 obj <<
+/Title 180 0 R
+/A 177 0 R
+/Parent 175 0 R
+/Next 183 0 R
+>> endobj
+175 0 obj <<
+/Title 176 0 R
+/A 173 0 R
+/Parent 1151 0 R
+/Prev 95 0 R
+/Next 187 0 R
+/First 179 0 R
+/Last 183 0 R
+/Count -2
+>> endobj
+171 0 obj <<
+/Title 172 0 R
+/A 169 0 R
+/Parent 95 0 R
+/Prev 167 0 R
+>> endobj
+167 0 obj <<
+/Title 168 0 R
+/A 165 0 R
+/Parent 95 0 R
+/Prev 163 0 R
+/Next 171 0 R
+>> endobj
+163 0 obj <<
+/Title 164 0 R
+/A 161 0 R
+/Parent 95 0 R
+/Prev 159 0 R
+/Next 167 0 R
+>> endobj
+159 0 obj <<
+/Title 160 0 R
+/A 157 0 R
+/Parent 95 0 R
+/Prev 155 0 R
+/Next 163 0 R
+>> endobj
+155 0 obj <<
+/Title 156 0 R
+/A 153 0 R
+/Parent 95 0 R
+/Prev 151 0 R
+/Next 159 0 R
+>> endobj
+151 0 obj <<
+/Title 152 0 R
+/A 149 0 R
+/Parent 95 0 R
+/Prev 147 0 R
+/Next 155 0 R
+>> endobj
+147 0 obj <<
+/Title 148 0 R
+/A 145 0 R
+/Parent 95 0 R
+/Prev 143 0 R
+/Next 151 0 R
+>> endobj
+143 0 obj <<
+/Title 144 0 R
+/A 141 0 R
+/Parent 95 0 R
+/Prev 139 0 R
+/Next 147 0 R
+>> endobj
+139 0 obj <<
+/Title 140 0 R
+/A 137 0 R
+/Parent 95 0 R
+/Prev 135 0 R
+/Next 143 0 R
+>> endobj
+135 0 obj <<
+/Title 136 0 R
+/A 133 0 R
+/Parent 95 0 R
+/Prev 131 0 R
+/Next 139 0 R
+>> endobj
+131 0 obj <<
+/Title 132 0 R
+/A 129 0 R
+/Parent 95 0 R
+/Prev 127 0 R
+/Next 135 0 R
+>> endobj
+127 0 obj <<
+/Title 128 0 R
+/A 125 0 R
+/Parent 95 0 R
+/Prev 123 0 R
+/Next 131 0 R
+>> endobj
+123 0 obj <<
+/Title 124 0 R
+/A 121 0 R
+/Parent 95 0 R
+/Prev 119 0 R
+/Next 127 0 R
+>> endobj
+119 0 obj <<
+/Title 120 0 R
+/A 117 0 R
+/Parent 95 0 R
+/Prev 115 0 R
+/Next 123 0 R
+>> endobj
+115 0 obj <<
+/Title 116 0 R
+/A 113 0 R
+/Parent 95 0 R
+/Prev 111 0 R
+/Next 119 0 R
+>> endobj
+111 0 obj <<
+/Title 112 0 R
+/A 109 0 R
+/Parent 95 0 R
+/Prev 107 0 R
+/Next 115 0 R
+>> endobj
+107 0 obj <<
+/Title 108 0 R
+/A 105 0 R
+/Parent 95 0 R
+/Prev 103 0 R
+/Next 111 0 R
+>> endobj
+103 0 obj <<
+/Title 104 0 R
+/A 101 0 R
+/Parent 95 0 R
+/Prev 99 0 R
+/Next 107 0 R
+>> endobj
+99 0 obj <<
+/Title 100 0 R
+/A 97 0 R
+/Parent 95 0 R
+/Next 103 0 R
+>> endobj
+95 0 obj <<
+/Title 96 0 R
+/A 93 0 R
+/Parent 1151 0 R
+/Prev 83 0 R
+/Next 175 0 R
+/First 99 0 R
+/Last 171 0 R
+/Count -19
+>> endobj
+91 0 obj <<
+/Title 92 0 R
+/A 89 0 R
+/Parent 83 0 R
+/Prev 87 0 R
+>> endobj
+87 0 obj <<
+/Title 88 0 R
+/A 85 0 R
+/Parent 83 0 R
+/Next 91 0 R
+>> endobj
+83 0 obj <<
+/Title 84 0 R
+/A 81 0 R
+/Parent 1151 0 R
+/Prev 15 0 R
+/Next 95 0 R
+/First 87 0 R
+/Last 91 0 R
+/Count -2
+>> endobj
+79 0 obj <<
+/Title 80 0 R
+/A 77 0 R
+/Parent 15 0 R
+/Prev 75 0 R
+>> endobj
+75 0 obj <<
+/Title 76 0 R
+/A 73 0 R
+/Parent 15 0 R
+/Prev 71 0 R
+/Next 79 0 R
+>> endobj
+71 0 obj <<
+/Title 72 0 R
+/A 69 0 R
+/Parent 15 0 R
+/Prev 67 0 R
+/Next 75 0 R
+>> endobj
+67 0 obj <<
+/Title 68 0 R
+/A 65 0 R
+/Parent 15 0 R
+/Prev 63 0 R
+/Next 71 0 R
+>> endobj
+63 0 obj <<
+/Title 64 0 R
+/A 61 0 R
+/Parent 15 0 R
+/Prev 59 0 R
+/Next 67 0 R
+>> endobj
+59 0 obj <<
+/Title 60 0 R
+/A 57 0 R
+/Parent 15 0 R
+/Prev 55 0 R
+/Next 63 0 R
+>> endobj
+55 0 obj <<
+/Title 56 0 R
+/A 53 0 R
+/Parent 15 0 R
+/Prev 51 0 R
+/Next 59 0 R
+>> endobj
+51 0 obj <<
+/Title 52 0 R
+/A 49 0 R
+/Parent 15 0 R
+/Prev 47 0 R
+/Next 55 0 R
+>> endobj
+47 0 obj <<
+/Title 48 0 R
+/A 45 0 R
+/Parent 15 0 R
+/Prev 43 0 R
+/Next 51 0 R
+>> endobj
+43 0 obj <<
+/Title 44 0 R
+/A 41 0 R
+/Parent 15 0 R
+/Prev 39 0 R
+/Next 47 0 R
+>> endobj
+39 0 obj <<
+/Title 40 0 R
+/A 37 0 R
+/Parent 15 0 R
+/Prev 27 0 R
+/Next 43 0 R
+>> endobj
+35 0 obj <<
+/Title 36 0 R
+/A 33 0 R
+/Parent 27 0 R
+/Prev 31 0 R
+>> endobj
+31 0 obj <<
+/Title 32 0 R
+/A 29 0 R
+/Parent 27 0 R
+/Next 35 0 R
+>> endobj
+27 0 obj <<
+/Title 28 0 R
+/A 25 0 R
+/Parent 15 0 R
+/Prev 23 0 R
+/Next 39 0 R
+/First 31 0 R
+/Last 35 0 R
+/Count -2
+>> endobj
+23 0 obj <<
+/Title 24 0 R
+/A 21 0 R
+/Parent 15 0 R
+/Prev 19 0 R
+/Next 27 0 R
+>> endobj
+19 0 obj <<
+/Title 20 0 R
+/A 17 0 R
+/Parent 15 0 R
+/Next 23 0 R
+>> endobj
+15 0 obj <<
+/Title 16 0 R
+/A 13 0 R
+/Parent 1151 0 R
+/Prev 11 0 R
+/Next 83 0 R
+/First 19 0 R
+/Last 79 0 R
+/Count -14
+>> endobj
+11 0 obj <<
+/Title 12 0 R
+/A 9 0 R
+/Parent 1151 0 R
+/Prev 7 0 R
+/Next 15 0 R
+>> endobj
+7 0 obj <<
+/Title 8 0 R
+/A 5 0 R
+/Parent 1151 0 R
+/Next 11 0 R
+>> endobj
+1152 0 obj <<
+/Names [(Doc-Start) 214 0 R (Hfootnote.1) 374 0 R (Hfootnote.2) 534 0 R (figure.1) 300 0 R (figure.2) 306 0 R (figure.3) 329 0 R (page.1) 213 0 R (page.10) 323 0 R (page.11) 328 0 R (page.12) 333 0 R (page.13) 337 0 R (page.14) 342 0 R (page.15) 346 0 R (page.16) 352 0 R (page.17) 356 0 R (page.18) 360 0 R (page.19) 364 0 R (page.2) 254 0 R (page.20) 382 0 R (page.21) 386 0 R (page.22) 390 0 R (page.23) 394 0 R (page.24) 398 0 R (page.25) 402 0 R (page.26) 407 0 R (page.27) 411 0 R (page.28) 415 0 R (page.29) 419 0 R (page.3) 287 0 R (page.30) 423 0 R (page.31) 427 0 R (page.32) 432 0 R (page.33) 436 0 R (page.34) 440 0 R (page.35) 444 0 R (page.36) 448 0 R (page.37) 452 0 R (page.38) 457 0 R (page.39) 461 0 R (page.4) 294 0 R (page.40) 465 0 R (page.41) 469 0 R (page.42) 473 0 R (page.43) 477 0 R (page.44) 482 0 R (page.45) 486 0 R (page.46) 490 0 R (page.47) 494 0 R (page.48) 498 0 R (page.49) 502 0 R (page.5) 299 0 R (page.50) 507 0 R (page.51) 511 0 R (page.52) 515 0 R (page.53) 519 0 R (page.54) 523 0 R (page.55) 527 0 R (page.56) 532 0 R (page.57) 541 0 R (page.58) 545 0 R (page.59) 552 0 R (page.6) 305 0 R (page.60) 556 0 R (page.61) 560 0 R (page.62) 565 0 R (page.63) 737 0 R (page.64) 907 0 R (page.65) 1073 0 R (page.7) 310 0 R (page.8) 315 0 R (page.9) 319 0 R (section*.1) 224 0 R (section*.2) 566 0 R (section.1) 6 0 R (section.2) 10 0 R (section.3) 14 0 R (section.4) 82 0 R (section.5) 94 0 R (section.6) 174 0 R (section.7) 186 0 R (section.8) 190 0 R (section.9) 206 0 R (subsection.3.1) 18 0 R (subsection.3.10) 62 0 R (subsection.3.11) 66 0 R (subsection.3.12) 70 0 R (subsection.3.13) 74 0 R (subsection.3.14) 78 0 R (subsection.3.2) 22 0 R (subsection.3.3) 26 0 R (subsection.3.4) 38 0 R (subsection.3.5) 42 0 R (subsection.3.6) 46 0 R (subsection.3.7) 50 0 R (subsection.3.8) 54 0 R (subsection.3.9) 58 0 R (subsection.4.1) 86 0 R (subsection.4.2) 90 0 R (subsection.5.1) 98 0 R (subsection.5.10) 134 0 R (subsection.5.11) 138 0 R (subsection.5.12) 142 0 R (subsection.5.13) 146 0 R (subsection.5.14) 150 0 R (subsection.5.15) 154 0 R (subsection.5.16) 158 0 R (subsection.5.17) 162 0 R (subsection.5.18) 166 0 R (subsection.5.19) 170 0 R (subsection.5.2) 102 0 R (subsection.5.3) 106 0 R (subsection.5.4) 110 0 R (subsection.5.5) 114 0 R (subsection.5.6) 118 0 R (subsection.5.7) 122 0 R (subsection.5.8) 126 0 R (subsection.5.9) 130 0 R (subsection.6.1) 178 0 R (subsection.6.2) 182 0 R (subsection.8.1) 194 0 R (subsection.8.2) 198 0 R (subsection.8.3) 202 0 R (subsubsection.3.3.1) 30 0 R (subsubsection.3.3.2) 34 0 R (table.1) 347 0 R (table.2) 365 0 R]
+/Limits [(Doc-Start) (table.2)]
+>> endobj
+1153 0 obj <<
+/Kids [1152 0 R]
+>> endobj
+1154 0 obj <<
+/Dests 1153 0 R
+>> endobj
+1155 0 obj <<
+/Type /Catalog
+/Pages 1150 0 R
+/Outlines 1151 0 R
+/Names 1154 0 R
+/PageMode /UseOutlines /URI<</Base()>>  /ViewerPreferences<<>> 
+/OpenAction 209 0 R
+/PTEX.Fullbanner (This is pdfTeX, Version 3.14159-1.10b)
+>> endobj
+1156 0 obj <<
+/Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.10b)/Keywords()
+/CreationDate (D:20060205170100)
+>> endobj
+xref
+0 1157
+0000000001 65535 f 
+0000000002 00000 f 
+0000000003 00000 f 
+0000000004 00000 f 
+0000000000 00000 f 
+0000000009 00000 n 
+0000017207 00000 n 
+0000305442 00000 n 
+0000000054 00000 n 
+0000000084 00000 n 
+0000018664 00000 n 
+0000305355 00000 n 
+0000000129 00000 n 
+0000000160 00000 n 
+0000023874 00000 n 
+0000305228 00000 n 
+0000000206 00000 n 
+0000000233 00000 n 
+0000023935 00000 n 
+0000305154 00000 n 
+0000000284 00000 n 
+0000000314 00000 n 
+0000030060 00000 n 
+0000305067 00000 n 
+0000000365 00000 n 
+0000000406 00000 n 
+0000032824 00000 n 
+0000304943 00000 n 
+0000000457 00000 n 
+0000000482 00000 n 
+0000036674 00000 n 
+0000304869 00000 n 
+0000000538 00000 n 
+0000000583 00000 n 
+0000052023 00000 n 
+0000304795 00000 n 
+0000000639 00000 n 
+0000000665 00000 n 
+0000053833 00000 n 
+0000304708 00000 n 
+0000000716 00000 n 
+0000000747 00000 n 
+0000053894 00000 n 
+0000304621 00000 n 
+0000000798 00000 n 
+0000000821 00000 n 
+0000055477 00000 n 
+0000304534 00000 n 
+0000000872 00000 n 
+0000000907 00000 n 
+0000056703 00000 n 
+0000304447 00000 n 
+0000000958 00000 n 
+0000001001 00000 n 
+0000059087 00000 n 
+0000304360 00000 n 
+0000001052 00000 n 
+0000001094 00000 n 
+0000059210 00000 n 
+0000304273 00000 n 
+0000001145 00000 n 
+0000001183 00000 n 
+0000061596 00000 n 
+0000304186 00000 n 
+0000001235 00000 n 
+0000001271 00000 n 
+0000061657 00000 n 
+0000304099 00000 n 
+0000001323 00000 n 
+0000001359 00000 n 
+0000061718 00000 n 
+0000304012 00000 n 
+0000001411 00000 n 
+0000001455 00000 n 
+0000064040 00000 n 
+0000303925 00000 n 
+0000001507 00000 n 
+0000001551 00000 n 
+0000064100 00000 n 
+0000303851 00000 n 
+0000001603 00000 n 
+0000001641 00000 n 
+0000066199 00000 n 
+0000303725 00000 n 
+0000001687 00000 n 
+0000001720 00000 n 
+0000069257 00000 n 
+0000303651 00000 n 
+0000001771 00000 n 
+0000001797 00000 n 
+0000069318 00000 n 
+0000303577 00000 n 
+0000001848 00000 n 
+0000001871 00000 n 
+0000070767 00000 n 
+0000303448 00000 n 
+0000001917 00000 n 
+0000001943 00000 n 
+0000072310 00000 n 
+0000303372 00000 n 
+0000001994 00000 n 
+0000002020 00000 n 
+0000074714 00000 n 
+0000303281 00000 n 
+0000002072 00000 n 
+0000002098 00000 n 
+0000076967 00000 n 
+0000303189 00000 n 
+0000002150 00000 n 
+0000002182 00000 n 
+0000079213 00000 n 
+0000303097 00000 n 
+0000002234 00000 n 
+0000002259 00000 n 
+0000081311 00000 n 
+0000303005 00000 n 
+0000002311 00000 n 
+0000002336 00000 n 
+0000082911 00000 n 
+0000302913 00000 n 
+0000002388 00000 n 
+0000002413 00000 n 
+0000085172 00000 n 
+0000302821 00000 n 
+0000002465 00000 n 
+0000002495 00000 n 
+0000086996 00000 n 
+0000302729 00000 n 
+0000002547 00000 n 
+0000002574 00000 n 
+0000089003 00000 n 
+0000302637 00000 n 
+0000002626 00000 n 
+0000002650 00000 n 
+0000090590 00000 n 
+0000302545 00000 n 
+0000002703 00000 n 
+0000002733 00000 n 
+0000092943 00000 n 
+0000302453 00000 n 
+0000002786 00000 n 
+0000002813 00000 n 
+0000094140 00000 n 
+0000302361 00000 n 
+0000002866 00000 n 
+0000002898 00000 n 
+0000095777 00000 n 
+0000302269 00000 n 
+0000002951 00000 n 
+0000002983 00000 n 
+0000098260 00000 n 
+0000302177 00000 n 
+0000003036 00000 n 
+0000003061 00000 n 
+0000100300 00000 n 
+0000302085 00000 n 
+0000003114 00000 n 
+0000003143 00000 n 
+0000101560 00000 n 
+0000301993 00000 n 
+0000003196 00000 n 
+0000003223 00000 n 
+0000103827 00000 n 
+0000301901 00000 n 
+0000003276 00000 n 
+0000003300 00000 n 
+0000106094 00000 n 
+0000301809 00000 n 
+0000003353 00000 n 
+0000003381 00000 n 
+0000107085 00000 n 
+0000301731 00000 n 
+0000003434 00000 n 
+0000003460 00000 n 
+0000110258 00000 n 
+0000301599 00000 n 
+0000003507 00000 n 
+0000003541 00000 n 
+0000112585 00000 n 
+0000301520 00000 n 
+0000003593 00000 n 
+0000003626 00000 n 
+0000114728 00000 n 
+0000301441 00000 n 
+0000003678 00000 n 
+0000003720 00000 n 
+0000121503 00000 n 
+0000301347 00000 n 
+0000003767 00000 n 
+0000003797 00000 n 
+0000121565 00000 n 
+0000301214 00000 n 
+0000003844 00000 n 
+0000003870 00000 n 
+0000121627 00000 n 
+0000301135 00000 n 
+0000003922 00000 n 
+0000003950 00000 n 
+0000123040 00000 n 
+0000301042 00000 n 
+0000004002 00000 n 
+0000004035 00000 n 
+0000123102 00000 n 
+0000300963 00000 n 
+0000004087 00000 n 
+0000004117 00000 n 
+0000125022 00000 n 
+0000300883 00000 n 
+0000004164 00000 n 
+0000004222 00000 n 
+0000005299 00000 n 
+0000009230 00000 n 
+0000004274 00000 n 
+0000009044 00000 n 
+0000009106 00000 n 
+0000298775 00000 n 
+0000294129 00000 n 
+0000298612 00000 n 
+0000293267 00000 n 
+0000278644 00000 n 
+0000293104 00000 n 
+0000277912 00000 n 
+0000267306 00000 n 
+0000277748 00000 n 
+0000009168 00000 n 
+0000005599 00000 n 
+0000005750 00000 n 
+0000005902 00000 n 
+0000006054 00000 n 
+0000006211 00000 n 
+0000006367 00000 n 
+0000006524 00000 n 
+0000006686 00000 n 
+0000006848 00000 n 
+0000007005 00000 n 
+0000007162 00000 n 
+0000007318 00000 n 
+0000007475 00000 n 
+0000007632 00000 n 
+0000007789 00000 n 
+0000007947 00000 n 
+0000008105 00000 n 
+0000008263 00000 n 
+0000008420 00000 n 
+0000008578 00000 n 
+0000008730 00000 n 
+0000266425 00000 n 
+0000252935 00000 n 
+0000266261 00000 n 
+0000008887 00000 n 
+0000299211 00000 n 
+0000015167 00000 n 
+0000010224 00000 n 
+0000009341 00000 n 
+0000015105 00000 n 
+0000010580 00000 n 
+0000010732 00000 n 
+0000010889 00000 n 
+0000011046 00000 n 
+0000011203 00000 n 
+0000011360 00000 n 
+0000011516 00000 n 
+0000011672 00000 n 
+0000011828 00000 n 
+0000011985 00000 n 
+0000012140 00000 n 
+0000012298 00000 n 
+0000012456 00000 n 
+0000012612 00000 n 
+0000012770 00000 n 
+0000012928 00000 n 
+0000013086 00000 n 
+0000013244 00000 n 
+0000013402 00000 n 
+0000013558 00000 n 
+0000013716 00000 n 
+0000013868 00000 n 
+0000014023 00000 n 
+0000014179 00000 n 
+0000014331 00000 n 
+0000014483 00000 n 
+0000014640 00000 n 
+0000014797 00000 n 
+0000014953 00000 n 
+0000017267 00000 n 
+0000017033 00000 n 
+0000015252 00000 n 
+0000017145 00000 n 
+0000252320 00000 n 
+0000243752 00000 n 
+0000252156 00000 n 
+0000018725 00000 n 
+0000018490 00000 n 
+0000017365 00000 n 
+0000018602 00000 n 
+0000021009 00000 n 
+0000024058 00000 n 
+0000020897 00000 n 
+0000018823 00000 n 
+0000023812 00000 n 
+0000023996 00000 n 
+0000025815 00000 n 
+0000030183 00000 n 
+0000025703 00000 n 
+0000024192 00000 n 
+0000029998 00000 n 
+0000030121 00000 n 
+0000032885 00000 n 
+0000032650 00000 n 
+0000030317 00000 n 
+0000032762 00000 n 
+0000299329 00000 n 
+0000034676 00000 n 
+0000034502 00000 n 
+0000032996 00000 n 
+0000034614 00000 n 
+0000036735 00000 n 
+0000036500 00000 n 
+0000034774 00000 n 
+0000036612 00000 n 
+0000038237 00000 n 
+0000038063 00000 n 
+0000036846 00000 n 
+0000038175 00000 n 
+0000039232 00000 n 
+0000052146 00000 n 
+0000039120 00000 n 
+0000038335 00000 n 
+0000051961 00000 n 
+0000052084 00000 n 
+0000053955 00000 n 
+0000053659 00000 n 
+0000052280 00000 n 
+0000053771 00000 n 
+0000055538 00000 n 
+0000055303 00000 n 
+0000054066 00000 n 
+0000055415 00000 n 
+0000299447 00000 n 
+0000056764 00000 n 
+0000056529 00000 n 
+0000055649 00000 n 
+0000056641 00000 n 
+0000059271 00000 n 
+0000058743 00000 n 
+0000056862 00000 n 
+0000059025 00000 n 
+0000059148 00000 n 
+0000058875 00000 n 
+0000061779 00000 n 
+0000061422 00000 n 
+0000059369 00000 n 
+0000061534 00000 n 
+0000064161 00000 n 
+0000063866 00000 n 
+0000061890 00000 n 
+0000063978 00000 n 
+0000066260 00000 n 
+0000066025 00000 n 
+0000064272 00000 n 
+0000066137 00000 n 
+0000069441 00000 n 
+0000068689 00000 n 
+0000066371 00000 n 
+0000069133 00000 n 
+0000069195 00000 n 
+0000068829 00000 n 
+0000068979 00000 n 
+0000242572 00000 n 
+0000240518 00000 n 
+0000242411 00000 n 
+0000240287 00000 n 
+0000238231 00000 n 
+0000240126 00000 n 
+0000069379 00000 n 
+0000237652 00000 n 
+0000229308 00000 n 
+0000237489 00000 n 
+0000299565 00000 n 
+0000070238 00000 n 
+0000070064 00000 n 
+0000069576 00000 n 
+0000070176 00000 n 
+0000070828 00000 n 
+0000070593 00000 n 
+0000070323 00000 n 
+0000070705 00000 n 
+0000072371 00000 n 
+0000072136 00000 n 
+0000070913 00000 n 
+0000072248 00000 n 
+0000073369 00000 n 
+0000073195 00000 n 
+0000072469 00000 n 
+0000073307 00000 n 
+0000074776 00000 n 
+0000074540 00000 n 
+0000073454 00000 n 
+0000074652 00000 n 
+0000075402 00000 n 
+0000075228 00000 n 
+0000074874 00000 n 
+0000075340 00000 n 
+0000299683 00000 n 
+0000077029 00000 n 
+0000076793 00000 n 
+0000075487 00000 n 
+0000076905 00000 n 
+0000078004 00000 n 
+0000077830 00000 n 
+0000077127 00000 n 
+0000077942 00000 n 
+0000079275 00000 n 
+0000079039 00000 n 
+0000078089 00000 n 
+0000079151 00000 n 
+0000079927 00000 n 
+0000079753 00000 n 
+0000079373 00000 n 
+0000079865 00000 n 
+0000081373 00000 n 
+0000081137 00000 n 
+0000080012 00000 n 
+0000081249 00000 n 
+0000082973 00000 n 
+0000082737 00000 n 
+0000081471 00000 n 
+0000082849 00000 n 
+0000299801 00000 n 
+0000083718 00000 n 
+0000083544 00000 n 
+0000083071 00000 n 
+0000083656 00000 n 
+0000085234 00000 n 
+0000084998 00000 n 
+0000083803 00000 n 
+0000085110 00000 n 
+0000085726 00000 n 
+0000085552 00000 n 
+0000085332 00000 n 
+0000085664 00000 n 
+0000087058 00000 n 
+0000086822 00000 n 
+0000085811 00000 n 
+0000086934 00000 n 
+0000087654 00000 n 
+0000087480 00000 n 
+0000087156 00000 n 
+0000087592 00000 n 
+0000089065 00000 n 
+0000088829 00000 n 
+0000087739 00000 n 
+0000088941 00000 n 
+0000299919 00000 n 
+0000090652 00000 n 
+0000090416 00000 n 
+0000089163 00000 n 
+0000090528 00000 n 
+0000091462 00000 n 
+0000091288 00000 n 
+0000090750 00000 n 
+0000091400 00000 n 
+0000093005 00000 n 
+0000092769 00000 n 
+0000091547 00000 n 
+0000092881 00000 n 
+0000094202 00000 n 
+0000093966 00000 n 
+0000093103 00000 n 
+0000094078 00000 n 
+0000095839 00000 n 
+0000095603 00000 n 
+0000094300 00000 n 
+0000095715 00000 n 
+0000096858 00000 n 
+0000096684 00000 n 
+0000095937 00000 n 
+0000096796 00000 n 
+0000300037 00000 n 
+0000098322 00000 n 
+0000098086 00000 n 
+0000096943 00000 n 
+0000098198 00000 n 
+0000099014 00000 n 
+0000098840 00000 n 
+0000098420 00000 n 
+0000098952 00000 n 
+0000100362 00000 n 
+0000100126 00000 n 
+0000099099 00000 n 
+0000100238 00000 n 
+0000101622 00000 n 
+0000101386 00000 n 
+0000100460 00000 n 
+0000101498 00000 n 
+0000102615 00000 n 
+0000102441 00000 n 
+0000101720 00000 n 
+0000102553 00000 n 
+0000103889 00000 n 
+0000103653 00000 n 
+0000102700 00000 n 
+0000103765 00000 n 
+0000300155 00000 n 
+0000104641 00000 n 
+0000104467 00000 n 
+0000103987 00000 n 
+0000104579 00000 n 
+0000106156 00000 n 
+0000105920 00000 n 
+0000104726 00000 n 
+0000106032 00000 n 
+0000107147 00000 n 
+0000106911 00000 n 
+0000106254 00000 n 
+0000107023 00000 n 
+0000110320 00000 n 
+0000110084 00000 n 
+0000107245 00000 n 
+0000110196 00000 n 
+0000112647 00000 n 
+0000112411 00000 n 
+0000110418 00000 n 
+0000112523 00000 n 
+0000114790 00000 n 
+0000114554 00000 n 
+0000112758 00000 n 
+0000114666 00000 n 
+0000300273 00000 n 
+0000117724 00000 n 
+0000117316 00000 n 
+0000114888 00000 n 
+0000117600 00000 n 
+0000117448 00000 n 
+0000117662 00000 n 
+0000228062 00000 n 
+0000223831 00000 n 
+0000227898 00000 n 
+0000119403 00000 n 
+0000119229 00000 n 
+0000117872 00000 n 
+0000119341 00000 n 
+0000121689 00000 n 
+0000121329 00000 n 
+0000119488 00000 n 
+0000121441 00000 n 
+0000222566 00000 n 
+0000220210 00000 n 
+0000222400 00000 n 
+0000123164 00000 n 
+0000122866 00000 n 
+0000121800 00000 n 
+0000122978 00000 n 
+0000125084 00000 n 
+0000124848 00000 n 
+0000123275 00000 n 
+0000124960 00000 n 
+0000126362 00000 n 
+0000126188 00000 n 
+0000125182 00000 n 
+0000126300 00000 n 
+0000300391 00000 n 
+0000154112 00000 n 
+0000127559 00000 n 
+0000126447 00000 n 
+0000153988 00000 n 
+0000154050 00000 n 
+0000129019 00000 n 
+0000129168 00000 n 
+0000129317 00000 n 
+0000129466 00000 n 
+0000129615 00000 n 
+0000129765 00000 n 
+0000129915 00000 n 
+0000130064 00000 n 
+0000130214 00000 n 
+0000130363 00000 n 
+0000130513 00000 n 
+0000130662 00000 n 
+0000130812 00000 n 
+0000130962 00000 n 
+0000131112 00000 n 
+0000131262 00000 n 
+0000131412 00000 n 
+0000131561 00000 n 
+0000131711 00000 n 
+0000131858 00000 n 
+0000132006 00000 n 
+0000132155 00000 n 
+0000132304 00000 n 
+0000132453 00000 n 
+0000132602 00000 n 
+0000132750 00000 n 
+0000132900 00000 n 
+0000133049 00000 n 
+0000133198 00000 n 
+0000133348 00000 n 
+0000133497 00000 n 
+0000133647 00000 n 
+0000133797 00000 n 
+0000133947 00000 n 
+0000134096 00000 n 
+0000134246 00000 n 
+0000134396 00000 n 
+0000134545 00000 n 
+0000134695 00000 n 
+0000134844 00000 n 
+0000134994 00000 n 
+0000135144 00000 n 
+0000135294 00000 n 
+0000135443 00000 n 
+0000135593 00000 n 
+0000135742 00000 n 
+0000135892 00000 n 
+0000136041 00000 n 
+0000136190 00000 n 
+0000136340 00000 n 
+0000136489 00000 n 
+0000136639 00000 n 
+0000136789 00000 n 
+0000136939 00000 n 
+0000137089 00000 n 
+0000137238 00000 n 
+0000137387 00000 n 
+0000137537 00000 n 
+0000137687 00000 n 
+0000137837 00000 n 
+0000137986 00000 n 
+0000138136 00000 n 
+0000138286 00000 n 
+0000138435 00000 n 
+0000138585 00000 n 
+0000138734 00000 n 
+0000138884 00000 n 
+0000139034 00000 n 
+0000139184 00000 n 
+0000139333 00000 n 
+0000139483 00000 n 
+0000139632 00000 n 
+0000139782 00000 n 
+0000139932 00000 n 
+0000140082 00000 n 
+0000140230 00000 n 
+0000140380 00000 n 
+0000140530 00000 n 
+0000140680 00000 n 
+0000140829 00000 n 
+0000140979 00000 n 
+0000141129 00000 n 
+0000141279 00000 n 
+0000141429 00000 n 
+0000141579 00000 n 
+0000141729 00000 n 
+0000141878 00000 n 
+0000142027 00000 n 
+0000142176 00000 n 
+0000142326 00000 n 
+0000142476 00000 n 
+0000142626 00000 n 
+0000142776 00000 n 
+0000142926 00000 n 
+0000143076 00000 n 
+0000143225 00000 n 
+0000143375 00000 n 
+0000143525 00000 n 
+0000143675 00000 n 
+0000143825 00000 n 
+0000143969 00000 n 
+0000144118 00000 n 
+0000144268 00000 n 
+0000144417 00000 n 
+0000144567 00000 n 
+0000144717 00000 n 
+0000144866 00000 n 
+0000145016 00000 n 
+0000145166 00000 n 
+0000145316 00000 n 
+0000145465 00000 n 
+0000145615 00000 n 
+0000145765 00000 n 
+0000145915 00000 n 
+0000146064 00000 n 
+0000146212 00000 n 
+0000146361 00000 n 
+0000146510 00000 n 
+0000146659 00000 n 
+0000146808 00000 n 
+0000146957 00000 n 
+0000147107 00000 n 
+0000147257 00000 n 
+0000147406 00000 n 
+0000147556 00000 n 
+0000147706 00000 n 
+0000147855 00000 n 
+0000148005 00000 n 
+0000148155 00000 n 
+0000148305 00000 n 
+0000148454 00000 n 
+0000148604 00000 n 
+0000148754 00000 n 
+0000148903 00000 n 
+0000149052 00000 n 
+0000149202 00000 n 
+0000149351 00000 n 
+0000149501 00000 n 
+0000149651 00000 n 
+0000149801 00000 n 
+0000149951 00000 n 
+0000150101 00000 n 
+0000150251 00000 n 
+0000150401 00000 n 
+0000150551 00000 n 
+0000150700 00000 n 
+0000150850 00000 n 
+0000151000 00000 n 
+0000151149 00000 n 
+0000151299 00000 n 
+0000151448 00000 n 
+0000151598 00000 n 
+0000151748 00000 n 
+0000151898 00000 n 
+0000152047 00000 n 
+0000152197 00000 n 
+0000152346 00000 n 
+0000152496 00000 n 
+0000152646 00000 n 
+0000152796 00000 n 
+0000152946 00000 n 
+0000153095 00000 n 
+0000153244 00000 n 
+0000153392 00000 n 
+0000153541 00000 n 
+0000153690 00000 n 
+0000153838 00000 n 
+0000181639 00000 n 
+0000155319 00000 n 
+0000154210 00000 n 
+0000181577 00000 n 
+0000156771 00000 n 
+0000156921 00000 n 
+0000157071 00000 n 
+0000157221 00000 n 
+0000157371 00000 n 
+0000157521 00000 n 
+0000157671 00000 n 
+0000157821 00000 n 
+0000157970 00000 n 
+0000158120 00000 n 
+0000158269 00000 n 
+0000158419 00000 n 
+0000158569 00000 n 
+0000158719 00000 n 
+0000158868 00000 n 
+0000159017 00000 n 
+0000159167 00000 n 
+0000159315 00000 n 
+0000159464 00000 n 
+0000159614 00000 n 
+0000159762 00000 n 
+0000159912 00000 n 
+0000160062 00000 n 
+0000160211 00000 n 
+0000160361 00000 n 
+0000160511 00000 n 
+0000160661 00000 n 
+0000160811 00000 n 
+0000160961 00000 n 
+0000161111 00000 n 
+0000161261 00000 n 
+0000161410 00000 n 
+0000161560 00000 n 
+0000161709 00000 n 
+0000161859 00000 n 
+0000162007 00000 n 
+0000162155 00000 n 
+0000162305 00000 n 
+0000162455 00000 n 
+0000162604 00000 n 
+0000162752 00000 n 
+0000162900 00000 n 
+0000163047 00000 n 
+0000163195 00000 n 
+0000163342 00000 n 
+0000163490 00000 n 
+0000163640 00000 n 
+0000163790 00000 n 
+0000163939 00000 n 
+0000164089 00000 n 
+0000164238 00000 n 
+0000164388 00000 n 
+0000164537 00000 n 
+0000164687 00000 n 
+0000164837 00000 n 
+0000164987 00000 n 
+0000165137 00000 n 
+0000165287 00000 n 
+0000165437 00000 n 
+0000165586 00000 n 
+0000165736 00000 n 
+0000165885 00000 n 
+0000166035 00000 n 
+0000166185 00000 n 
+0000166335 00000 n 
+0000166484 00000 n 
+0000166634 00000 n 
+0000166783 00000 n 
+0000166933 00000 n 
+0000167082 00000 n 
+0000167231 00000 n 
+0000167380 00000 n 
+0000167530 00000 n 
+0000167680 00000 n 
+0000167829 00000 n 
+0000167979 00000 n 
+0000168128 00000 n 
+0000168278 00000 n 
+0000168428 00000 n 
+0000168578 00000 n 
+0000168727 00000 n 
+0000168877 00000 n 
+0000169026 00000 n 
+0000169176 00000 n 
+0000169326 00000 n 
+0000169476 00000 n 
+0000169625 00000 n 
+0000169774 00000 n 
+0000169923 00000 n 
+0000170072 00000 n 
+0000170221 00000 n 
+0000170369 00000 n 
+0000170518 00000 n 
+0000170667 00000 n 
+0000170817 00000 n 
+0000170967 00000 n 
+0000171117 00000 n 
+0000171267 00000 n 
+0000171417 00000 n 
+0000171567 00000 n 
+0000171717 00000 n 
+0000171867 00000 n 
+0000172016 00000 n 
+0000172166 00000 n 
+0000172316 00000 n 
+0000172466 00000 n 
+0000172616 00000 n 
+0000172765 00000 n 
+0000172914 00000 n 
+0000173063 00000 n 
+0000173212 00000 n 
+0000173361 00000 n 
+0000173510 00000 n 
+0000173660 00000 n 
+0000173810 00000 n 
+0000173960 00000 n 
+0000174108 00000 n 
+0000174258 00000 n 
+0000174408 00000 n 
+0000174557 00000 n 
+0000174707 00000 n 
+0000174856 00000 n 
+0000175005 00000 n 
+0000175154 00000 n 
+0000175303 00000 n 
+0000175452 00000 n 
+0000175600 00000 n 
+0000175749 00000 n 
+0000175898 00000 n 
+0000176046 00000 n 
+0000176196 00000 n 
+0000176346 00000 n 
+0000176496 00000 n 
+0000176646 00000 n 
+0000176795 00000 n 
+0000176944 00000 n 
+0000177094 00000 n 
+0000177244 00000 n 
+0000177394 00000 n 
+0000177544 00000 n 
+0000177691 00000 n 
+0000177841 00000 n 
+0000177991 00000 n 
+0000178141 00000 n 
+0000178291 00000 n 
+0000178440 00000 n 
+0000178590 00000 n 
+0000178740 00000 n 
+0000178889 00000 n 
+0000179038 00000 n 
+0000179188 00000 n 
+0000179338 00000 n 
+0000179487 00000 n 
+0000179635 00000 n 
+0000179784 00000 n 
+0000179931 00000 n 
+0000180080 00000 n 
+0000180230 00000 n 
+0000180380 00000 n 
+0000180529 00000 n 
+0000180679 00000 n 
+0000180829 00000 n 
+0000180979 00000 n 
+0000181129 00000 n 
+0000181279 00000 n 
+0000181429 00000 n 
+0000208670 00000 n 
+0000182814 00000 n 
+0000181724 00000 n 
+0000208608 00000 n 
+0000184304 00000 n 
+0000184453 00000 n 
+0000184603 00000 n 
+0000184753 00000 n 
+0000184903 00000 n 
+0000185053 00000 n 
+0000185203 00000 n 
+0000185353 00000 n 
+0000185503 00000 n 
+0000185652 00000 n 
+0000185802 00000 n 
+0000185951 00000 n 
+0000186100 00000 n 
+0000186250 00000 n 
+0000186400 00000 n 
+0000186550 00000 n 
+0000186700 00000 n 
+0000186850 00000 n 
+0000187000 00000 n 
+0000187150 00000 n 
+0000187299 00000 n 
+0000187449 00000 n 
+0000187598 00000 n 
+0000187747 00000 n 
+0000187895 00000 n 
+0000188045 00000 n 
+0000188194 00000 n 
+0000188343 00000 n 
+0000188491 00000 n 
+0000188640 00000 n 
+0000188789 00000 n 
+0000188938 00000 n 
+0000189087 00000 n 
+0000189236 00000 n 
+0000189386 00000 n 
+0000189536 00000 n 
+0000189685 00000 n 
+0000189835 00000 n 
+0000189984 00000 n 
+0000190134 00000 n 
+0000190284 00000 n 
+0000190434 00000 n 
+0000190583 00000 n 
+0000190733 00000 n 
+0000190882 00000 n 
+0000191032 00000 n 
+0000191181 00000 n 
+0000191331 00000 n 
+0000191481 00000 n 
+0000191631 00000 n 
+0000191781 00000 n 
+0000191931 00000 n 
+0000192081 00000 n 
+0000192231 00000 n 
+0000192380 00000 n 
+0000192530 00000 n 
+0000192680 00000 n 
+0000192829 00000 n 
+0000192979 00000 n 
+0000193128 00000 n 
+0000193278 00000 n 
+0000193427 00000 n 
+0000193577 00000 n 
+0000193726 00000 n 
+0000193876 00000 n 
+0000194026 00000 n 
+0000194176 00000 n 
+0000194326 00000 n 
+0000194476 00000 n 
+0000194625 00000 n 
+0000194775 00000 n 
+0000194925 00000 n 
+0000195074 00000 n 
+0000195224 00000 n 
+0000195374 00000 n 
+0000195524 00000 n 
+0000195674 00000 n 
+0000195824 00000 n 
+0000195974 00000 n 
+0000196124 00000 n 
+0000196273 00000 n 
+0000196423 00000 n 
+0000196573 00000 n 
+0000196721 00000 n 
+0000196870 00000 n 
+0000197019 00000 n 
+0000197169 00000 n 
+0000197319 00000 n 
+0000197469 00000 n 
+0000197619 00000 n 
+0000197769 00000 n 
+0000197919 00000 n 
+0000198069 00000 n 
+0000198220 00000 n 
+0000198371 00000 n 
+0000198521 00000 n 
+0000198672 00000 n 
+0000198823 00000 n 
+0000198974 00000 n 
+0000199125 00000 n 
+0000199276 00000 n 
+0000199426 00000 n 
+0000199576 00000 n 
+0000199726 00000 n 
+0000199876 00000 n 
+0000200026 00000 n 
+0000200176 00000 n 
+0000200326 00000 n 
+0000200476 00000 n 
+0000200626 00000 n 
+0000200775 00000 n 
+0000200925 00000 n 
+0000201075 00000 n 
+0000201225 00000 n 
+0000201376 00000 n 
+0000201527 00000 n 
+0000201677 00000 n 
+0000201828 00000 n 
+0000201979 00000 n 
+0000202130 00000 n 
+0000202279 00000 n 
+0000202429 00000 n 
+0000202580 00000 n 
+0000202730 00000 n 
+0000202881 00000 n 
+0000203032 00000 n 
+0000203183 00000 n 
+0000203334 00000 n 
+0000203485 00000 n 
+0000203635 00000 n 
+0000203786 00000 n 
+0000203937 00000 n 
+0000204087 00000 n 
+0000204238 00000 n 
+0000204389 00000 n 
+0000204539 00000 n 
+0000204690 00000 n 
+0000204841 00000 n 
+0000204991 00000 n 
+0000205141 00000 n 
+0000205292 00000 n 
+0000205442 00000 n 
+0000205593 00000 n 
+0000205743 00000 n 
+0000205894 00000 n 
+0000206045 00000 n 
+0000206196 00000 n 
+0000206347 00000 n 
+0000206498 00000 n 
+0000206649 00000 n 
+0000206800 00000 n 
+0000206951 00000 n 
+0000207101 00000 n 
+0000207252 00000 n 
+0000207403 00000 n 
+0000207553 00000 n 
+0000207704 00000 n 
+0000207854 00000 n 
+0000208004 00000 n 
+0000208155 00000 n 
+0000208306 00000 n 
+0000208457 00000 n 
+0000219103 00000 n 
+0000209335 00000 n 
+0000208755 00000 n 
+0000219039 00000 n 
+0000210002 00000 n 
+0000210152 00000 n 
+0000210302 00000 n 
+0000210452 00000 n 
+0000210602 00000 n 
+0000210751 00000 n 
+0000210902 00000 n 
+0000211052 00000 n 
+0000211203 00000 n 
+0000211354 00000 n 
+0000211505 00000 n 
+0000211656 00000 n 
+0000211807 00000 n 
+0000211958 00000 n 
+0000212108 00000 n 
+0000212258 00000 n 
+0000212408 00000 n 
+0000212559 00000 n 
+0000212709 00000 n 
+0000212860 00000 n 
+0000213011 00000 n 
+0000213161 00000 n 
+0000213312 00000 n 
+0000213463 00000 n 
+0000213614 00000 n 
+0000213765 00000 n 
+0000213916 00000 n 
+0000214066 00000 n 
+0000214217 00000 n 
+0000214368 00000 n 
+0000214518 00000 n 
+0000214669 00000 n 
+0000214819 00000 n 
+0000214970 00000 n 
+0000215121 00000 n 
+0000215272 00000 n 
+0000215422 00000 n 
+0000215573 00000 n 
+0000215724 00000 n 
+0000215874 00000 n 
+0000216025 00000 n 
+0000216176 00000 n 
+0000216327 00000 n 
+0000216478 00000 n 
+0000216628 00000 n 
+0000216779 00000 n 
+0000216929 00000 n 
+0000217079 00000 n 
+0000217229 00000 n 
+0000217379 00000 n 
+0000217529 00000 n 
+0000217680 00000 n 
+0000217831 00000 n 
+0000217982 00000 n 
+0000218133 00000 n 
+0000218284 00000 n 
+0000218435 00000 n 
+0000218586 00000 n 
+0000218737 00000 n 
+0000218888 00000 n 
+0000219189 00000 n 
+0000222771 00000 n 
+0000222812 00000 n 
+0000228280 00000 n 
+0000228361 00000 n 
+0000237924 00000 n 
+0000240489 00000 n 
+0000242774 00000 n 
+0000242803 00000 n 
+0000252622 00000 n 
+0000266947 00000 n 
+0000278289 00000 n 
+0000293731 00000 n 
+0000299010 00000 n 
+0000300502 00000 n 
+0000300622 00000 n 
+0000300734 00000 n 
+0000300807 00000 n 
+0000305515 00000 n 
+0000308171 00000 n 
+0000308212 00000 n 
+0000308252 00000 n 
+0000308483 00000 n 
+trailer
+<<
+/Size 1157
+/Root 1155 0 R
+/Info 1156 0 R
+>>
+startxref
+308639
+%%EOF

Added: branches/bos/thirdparty/ltk-0.91/remote.tcl
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/remote.tcl	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,38 @@
+#!/usr/bin/wish
+
+#    This library is free software; you can redistribute it and/or
+#    modify it under the terms of the GNU Lesser General Public
+#    License as published by the Free Software Foundation; either
+#    version 2.1 of the License, or (at your option) any later version.
+#
+#    This library is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#    Lesser General Public License for more details.
+
+#    You should have received a copy of the GNU Lesser General Public
+#    License along with this library; if not, write to the Free Software
+#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+wm withdraw .
+set host localhost
+if {[llength $argv] == 2} {
+    set host [lindex $argv 0]
+    set port [lindex $argv 1]} else {
+	set port [lindex $argv 0]}
+#puts "connecting to $host $port"
+
+set server [socket $host $port]
+set wi [open "|wish" RDWR]
+fconfigure $server -blocking 0
+fconfigure $wi -blocking 0
+
+
+fileevent $server readable {set txt [read $server];puts $wi "$txt";flush $wi}
+fileevent $wi readable {
+    if {[eof $wi]} {
+	close $wi
+	exit} else {	    
+	    set txt [read $wi]; puts -nonewline $server $txt;flush $server}}
+

Added: branches/bos/thirdparty/ltk-0.91/troubleshooting.txt
==============================================================================
--- (empty file)
+++ branches/bos/thirdparty/ltk-0.91/troubleshooting.txt	Thu Jan 24 12:14:15 2008
@@ -0,0 +1,30 @@
+Known issues with using Ltk:
+
+Windows
+
+It seems to be impossilbe to use Ltk while internet via AOL is active.
+Similiarly, some programs that hook into the system (like tray utilities) 
+seem to hinder Ltk. (Ltk needs pipes to communicate with the Tk process, 
+so programs fiddling with low level operations may influence that)
+
+ List of programs, which can prevent Ltk from running:
+ 
+ o babylon
+ o The Wonderful Icon
+
+
+Mac OS X
+
+In general TkAqua runs very nicely and behaves very well as a
+native program should, using Aqua widgets and even putting the
+menues in the Mac menu bar. Only caveat with TkAqua is, that
+the screen updates only in intervals, so programs which require
+very fast interactions with the user seem laggy (cpu usage is
+still very low, so I assume it has something to do with the
+update frequency). A way to mostly remedy the problem is 
+to use the X11 Tk (which looks as old-fashioned as every 
+Unix Tk does, but has faster response times. It can be
+installed via Fink. To use it, the lisp program only needs
+to set *wish-pathname* to /sw/bin/wish. You might need
+to put export DISPLAY=:0.0 into your .bashrc.
+



More information about the Bknr-cvs mailing list