simo/0000755000076500000240000000000011267062347012255 5ustar Jussistaff00000000000000simo/bootstrap.py0000644000076500000240000000373111267062347014650 0ustar Jussistaff00000000000000############################################################################## # # Copyright (c) 2006 Zope Corporation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Bootstrap a buildout-based project Simply run this script in a directory containing a buildout.cfg. The script accepts buildout command-line options, so you can use the -c option to specify an alternate configuration file. $Id: bootstrap.py 85041 2008-03-31 15:57:30Z andreasjung $ """ import os, shutil, sys, tempfile, urllib2 tmpeggs = tempfile.mkdtemp() try: import pkg_resources except ImportError: ez = {} exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py' ).read() in ez ez['use_setuptools'](to_dir=tmpeggs, download_delay=0) import pkg_resources if sys.platform == 'win32': def quote(c): if ' ' in c: return '"%s"' % c # work around spawn lamosity on windows else: return c else: def quote (c): return c cmd = 'from setuptools.command.easy_install import main; main()' ws = pkg_resources.working_set assert os.spawnle( os.P_WAIT, sys.executable, quote (sys.executable), '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout', dict(os.environ, PYTHONPATH= ws.find(pkg_resources.Requirement.parse('setuptools')).location ), ) == 0 ws.add_entry(tmpeggs) ws.require('zc.buildout') import zc.buildout.buildout zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap']) shutil.rmtree(tmpeggs) simo/build_env.py0000644000076500000240000000235411267062347014602 0ustar Jussistaff00000000000000import sys, os import shutil def build(cfg_files): run_cfg = [] for cfg in cfg_files: to = os.path.basename(cfg) shutil.copyfile(cfg, to) run_cfg.append(to) buildout = 'bin/buildout -c ' + run_cfg[0] os.system(buildout) for cfg in run_cfg: os.remove(cfg) sys_id = str.lower(sys.platform[:3]) if sys_id == 'dar': print 'building for mac' if len(u'\U00010800') == 1: #is ucs4 print 'building with ucs4' cfgs = ['dev/buildout_cfg/ucs4_buildout.cfg', 'dev/buildout_cfg/buildout.cfg'] build(cfgs) else: #is ucs2 print 'building with ucs2' cfgs = ['dev/buildout_cfg/buildout.cfg'] build(cfgs) elif sys_id == 'lin': print 'building for linux' if len(u'\U00010800') == 1: #is ucs4 print 'building with ucs4' cfgs = ['dev/buildout_cfg/lin_ucs4_buildout.cfg', 'dev/buildout_cfg/buildout.cfg'] build(cfgs) else: #is ucs2 print 'building with ucs2' cfgs = ['dev/buildout_cfg/lin_buildout.cfg', 'dev/buildout_cfg/buildout.cfg'] build(cfgs) else: print 'building libraries for windows' os.system('python dev/buildout_utils/build_libraries.py') simo/CHANGES.txt0000644000076500000240000000030611267062347014065 0ustar Jussistaff000000000000000.5.0 (2009-10-19) ------------------ Complete rewrite of SIMO. Consider this as the base release & contact SIMO devs at Simosol (see www.simo-project.org) if you run into incompatibility issues. simo/dev/0000755000076500000240000000000011267062347013033 5ustar Jussistaff00000000000000simo/dev/buildout_cfg/0000755000076500000240000000000011265414645015501 5ustar Jussistaff00000000000000simo/dev/buildout_cfg/buildout.cfg0000755000076500000240000001404111265351044020005 0ustar Jussistaff00000000000000[config] mypkgs = simo pyamf twisted pythonpath = ${buildout:directory}/bin/python simopath = ${buildout:directory} modelpath = ${buildout:directory}/src/models bupath = ${buildout:directory}/dev/buildout_utils [buildout] develop = . parts = python-2.6 libiconv numpy set_numpy_pth libxml2 libxslt lxml set_lxml_pth sqlite3 geos proj4 spatialite pysqlite set_pysqlite_pth zlib szip hdf5 lzo pytables set_pytables_pth python scripts test_utils set_test_util_paths test root_test post_buildout_config python = custom-python eggs-directory = ${buildout:directory}/eggs unzip = true [custom-python] executable = ${python-2.6:location}/bin/python eggs-directory = ${buildout:directory}/eggs [python-2.6] recipe = zc.recipe.cmmi url = http://www.python.org/ftp/python/2.6.2/Python-2.6.2.tgz extra_options = --with-readline --with-threads # --enable-unicode=ucs4 # use enable-unicode if the python install in the system is in ucs4 # and you get an error saying undefined symbol:PyUnicodeUCS2_AsEncodedString # ucs4 can be tested like so: len(u'\U00010800') == 1 (it's 2 in ucs2) [zlib] recipe = hexagonit.recipe.cmmi url = http://www.hdfgroup.org/ftp/lib-external/zlib/1.2/src/zlib-1.2.3.tar.gz [szip] recipe = hexagonit.recipe.cmmi url = http://www.hdfgroup.org/ftp/lib-external/szip/2.1/src/szip-2.1.tar.gz [lzo] recipe = hexagonit.recipe.cmmi url = http://www.oberhumer.com/opensource/lzo/download/lzo-2.03.tar.gz [hdf5] recipe = hexagonit.recipe.cmmi url = http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.3.tar.gz configure-options = --with-szlib=${szip:location}/lib [pytables-env] HDF5_DIR=${hdf5:location} LZO_DIR=${lzo:location} [pytables] recipe = zc.recipe.egg:custom egg = tables include-dirs = ${hdf5:location}/include ${lzo:location}/include ${zlib:location}/include library-dirs = ${hdf5:location}/lib ${lzo:location}/lib ${zlib:location}/lib rpath = ${hdf5:location}/lib ${lzo:location}/lib ${zlib:location}/lib environment = pytables-env configure-options = --hdf5=${hdf5:location} --lzo=${lzo:location} [libiconv] recipe = hexagonit.recipe.cmmi url = http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gz configure-options = --enable-static [sqlite3] recipe = hexagonit.recipe.cmmi url = http://www.sqlite.org/sqlite-amalgamation-3.6.14.1.tar.gz configure-options = --enable-readline --enable-threadsafe --enable-dynamic-extensions CFLAGS=-DSQLITE_ENABLE_RTREE=1 [geos] recipe = zc.recipe.cmmi url = http://download.osgeo.org/geos/geos-3.1.0.tar.bz2 [proj4] recipe = zc.recipe.cmmi url = http://download.osgeo.org/proj/proj-4.6.1.tar.gz [spatialite] recipe = hexagonit.recipe.cmmi url = http://www.gaia-gis.it/spatialite/libspatialite-amalgamation-2.3.1.tar.gz configure-options = --with-proj-include=${proj4:location}/include --with-proj-lib=${proj4:location}/lib --with-geos-include=${geos:location}/include --with-geos-lib=${geos:location}/lib CFLAGS=-I${libiconv:location}/include LIBS="${libiconv:location}/lib/libiconv.la ${libiconv:location}/lib/libcharset.la" # --target=macosx #comment out target if not on macosx [pysqlite] recipe = zc.recipe.egg:custom egg = pysqlite include-dirs = ${sqlite3:location}/include library-dirs = ${sqlite3:location}/lib libraries = sqlite3 define = HAVE_LOAD_EXTENSION,ENABLE_DTRACE,NDEBUG rpath = ${sqlite3:location}/lib [numpy] recipe = zc.recipe.egg:eggs eggs = numpy==1.3 [set_pytables_pth] recipe=iw.recipe.cmd on_install=true on_update=true cmds= ${python-2.6:location}/bin/python ${config:bupath}/pth_import.py tables [set_numpy_pth] recipe=iw.recipe.cmd on_install=true on_update=true cmds= ${python-2.6:location}/bin/python ${config:bupath}/pth_import.py numpy [set_lxml_pth] recipe=iw.recipe.cmd on_install=true on_update=true cmds= ${python-2.6:location}/bin/python ${config:bupath}/pth_import.py lxml [set_pysqlite_pth] recipe=iw.recipe.cmd on_install=true on_update=true cmds= ${python-2.6:location}/bin/python ${config:bupath}/pth_import.py pysqlite2 [libxml2] recipe = zc.recipe.cmmi url = ftp://xmlsoft.org/libxml2/libxml2-2.7.3.tar.gz extra_options = --without-python [libxslt] recipe = zc.recipe.cmmi url = http://ftp.gnome.org/pub/GNOME/sources/libxslt/1.1/libxslt-1.1.22.tar.gz extra_options = --with-libxml-prefix=${buildout:directory}/parts/libxml2/ --without-python [lxml-env] XML2_CONFIG=${libxml2:location}/bin/xml2-config XSLT_CONFIG=${libxslt:location}/bin/xslt-config [lxml] recipe = zc.recipe.egg:custom egg = lxml==2.2 include-dirs = ${buildout:directory}/parts/libxml2/include/libxml2 ${buildout:directory}/parts/libxslt/include library-dirs = ${buildout:directory}/parts/libxml2/lib ${buildout:directory}/parts/libxslt/lib rpath = ${buildout:directory}/parts/libxml2/lib ${buildout:directory}/parts/libxslt/lib environment = lxml-env [python] recipe = zc.recipe.egg interpreter = python eggs = ${config:mypkgs} [scripts] recipe = zc.recipe.egg:scripts interpreter = python eggs = ${config:mypkgs} [test_utils] recipe = zc.recipe.egg:eggs eggs = minimock interlude [set_test_util_paths] recipe=iw.recipe.cmd on_install=true on_update=true cmds=${python-2.6:location}/bin/python ${config:bupath}/pth_import.py minimock ${python-2.6:location}/bin/python ${config:bupath}/pth_import.py interlude [test] recipe = pbp.recipe.noserunner interpreter = python eggs = ${config:mypkgs} working-directory=src/simo [root_test] recipe = pbp.recipe.noserunner interpreter = python eggs = ${config:mypkgs} working-directory=. [post_buildout_config] recipe=iw.recipe.cmd on_install=true on_update=true cmds= ${python-2.6:location}/bin/python ${config:bupath}/pth_import.py cython ${config:pythonpath} ${config:bupath}/build_libraries.py ${buildout:directory} ${config:pythonpath} ${config:bupath}/copy_spatialite.py simo/dev/buildout_cfg/lin_buildout.cfg0000755000076500000240000000037511265350623020656 0ustar Jussistaff00000000000000[buildout] extends = buildout.cfg [spatialite] configure-options = --with-proj-include=${proj4:location}/include --with-proj-lib=${proj4:location}/lib --with-geos-include=${geos:location}/include --with-geos-lib=${geos:location}/lib simo/dev/buildout_cfg/lin_ucs4_buildout.cfg0000755000076500000240000000066411265350637021622 0ustar Jussistaff00000000000000[buildout] extends = lin_buildout.cfg [python-2.6] recipe = zc.recipe.cmmi url = http://www.python.org/ftp/python/2.6.2/Python-2.6.2.tgz extra_options = --with-readline --with-threads --enable-unicode=ucs4 # use enable-unicode if the python install in the system is in ucs4 # and you get an error saying undefined symbol:PyUnicodeUCS2_AsEncodedString # ucs4 can be tested like so: len(u'\U00010800') == 1 (it's 2 in ucs2) simo/dev/buildout_cfg/ucs4_buildout.cfg0000755000076500000240000000065711265350657020764 0ustar Jussistaff00000000000000[buildout] extends = buildout.cfg [python-2.6] recipe = zc.recipe.cmmi url = http://www.python.org/ftp/python/2.6.2/Python-2.6.2.tgz extra_options = --with-readline --with-threads --enable-unicode=ucs4 # use enable-unicode if the python install in the system is in ucs4 # and you get an error saying undefined symbol:PyUnicodeUCS2_AsEncodedString # ucs4 can be tested like so: len(u'\U00010800') == 1 (it's 2 in ucs2) simo/dev/buildout_utils/0000755000076500000240000000000011265353265016102 5ustar Jussistaff00000000000000simo/dev/buildout_utils/build_libraries.py0000644000076500000240000000255711265353262021615 0ustar Jussistaff00000000000000import sys, os """This script will run all the platform-dependant fixes (compile all necessary files and wrap them) for Simo. """ if len(sys.argv) < 2: print "Buildoutpath not provided, using", os.getcwd() buildoutpath = os.getcwd() else: print "Using buildout path", sys.argv[1] buildoutpath = sys.argv[1] try: scripts = os.listdir(os.path.join(buildoutpath, 'bin')) for file in scripts: if file.startswith('python'): pythonpath = os.path.join(buildoutpath, 'bin', 'python') else: pythonpath = sys.executable except: pythonpath = sys.executable print "using python from", pythonpath simopath = buildoutpath modelpath = os.path.join(simopath, 'src', 'models') os.system(' '.join((pythonpath, 'dev/buildout_utils/cextensions.py', 'build_ext'))) os.system(' '.join((pythonpath, 'dev/buildout_utils/dll_build.py', simopath, modelpath, pythonpath)) ) sys_id = str.lower(sys.platform[:3]) if sys_id == 'win': listsep = ';' else: listsep = ':' oldpath = os.getenv('PYTHONPATH') or '' try: print "Modifying PYTHONPATH" os.environ['PYTHONPATH'] = listsep.join((oldpath, 'src')) os.system(' '.join((pythonpath, 'src/utils/wrapperscript.py', pythonpath, simopath, modelpath)) ) finally: print "Restoring PYTHONPATH" os.environ['PYTHONPATH'] = oldpath simo/dev/buildout_utils/cextensions.py0000755000076500000240000001025211265350433021013 0ustar Jussistaff00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- # # For building the SIMO C extensions # # © 2009 Simosol Oy import sys import os import tempfile import shutil from distutils.core import setup from distutils.dir_util import remove_tree #from distutils.extension import Extension from Cython.Distutils.extension import Extension from Cython.Distutils import build_ext EXT_DIR = 'src/cextensions' OP_EXT_TARGET = os.path.join('simulator', 'models', 'operation') HANDLER_EXT_TARGET = os.path.join('src', 'simo', 'matrix') def get_numpy(): """ we need numpy's path explicitly for this, so we're locating it here. """ numpy_path = None base = os.getcwd() try: for i in os.listdir('eggs'): if i.startswith('numpy'): numpy_path = os.path.join(base, 'eggs', i) except OSError: import numpy dirname = os.path.dirname numpy_path = dirname(dirname(numpy.__file__)) if numpy_path is None: import numpy dirname = os.path.dirname numpy_path = dirname(dirname(numpy.__file__)) return base, numpy_path def build(numpy_path): """ Compile extension modules """ print 'proceeding to build the c extensions...' os.chdir(EXT_DIR) tmp_dir = tempfile.mkdtemp() sys_id = str.lower(sys.platform[:3]) if sys_id == 'win' and sys.version_info[0] == 2 and sys.version_info[1] <= 5: # Windows (with python 2.5) must compile using mingw32, # so we'll need some additional parameters script_args = ['build', '-c', 'mingw32', '--build-base', tmp_dir, 'build_ext', '--force', '--inplace'] else: script_args = ['build', '--build-base', tmp_dir, 'build_ext', '--force', '--inplace'] include_dir = '%s/numpy/core/include' % (numpy_path,) try: # compile the operation model C extensions setup(name="simo_c_extensions", description = "C extension modules for SIMO operation libraries", script_args = script_args, ext_modules=[Extension("operations_ext", ["operations_ext.c"], include_dirs=[include_dir]) ], ) # build the data handler C extension source files from the Cython # files and compile the data handler extensions setup(name = 'handler_ext', description = "Cythonized C extensions for SIMO data handler", script_args = script_args, cmdclass = {'build_ext': build_ext}, ext_modules = [Extension('handler_ext', ['handler_ext.pyx'], include_dirs=[include_dir]) ], ) print 'build complete' except Exception, e: print e return False finally: remove_tree(tmp_dir) return True def copy_ext(base): """ Copy the built .so files to their target directories. """ sys_id = str.lower(sys.platform[:3]) if sys_id == 'win': fend = '.pyd' else: fend = '.so' # define the extension library names and target directories extlibs = ['operations_ext', 'handler_ext'] targetdirs = [os.path.join(base, OP_EXT_TARGET), os.path.join(base, HANDLER_EXT_TARGET)] for i in range(len(extlibs)): fromp = os.path.join(extlibs[i] + fend) targetdir = targetdirs[i] print 'copying:', fromp, 'to', targetdir shutil.copy2(fromp, targetdir) print '##################################################################' print 'C extensions compiled and copied successfully' print '##################################################################' def main(): base, np_path = get_numpy() success = build(np_path) if success: copy_ext(base) else: print '###############################################################' print 'C extensions build FAILED' print '###############################################################' if __name__=='__main__': main() simo/dev/buildout_utils/copy_spatialite.py0000644000076500000240000000135011265350433021636 0ustar Jussistaff00000000000000#This script will copy the spatialite library to the datadb path import os, sys import shutil from os import path as pth datadb_path = 'src/simo/db/datadb' spatia_path = 'parts/spatialite/lib' if sys.platform.startswith('darwin'): libfile = 'libspatialite.dylib' elif sys.platform.startswith('linux'): libfile = 'libspatialite.so' else: #no buildout for windows unfortunately libfile = 'libspatialite-1.dll' if not sys.platform.startswith('win'): print 'copying', libfile, 'to', datadb_path shutil.copy2(pth.join(spatia_path, libfile), pth.join(datadb_path, libfile)) else: print 'No buildout for windows. Copy', libfile, 'to', \ os.path.abspath(datadb_path), 'manually if necessary' simo/dev/buildout_utils/cpuinfo.patch0000644000076500000240000000123311265350433020557 0ustar Jussistaff00000000000000--- distutils/cpuinfo.py 2009-01-12 08:13:03.000000000 +0200 +++ distutils/cpuinfo.py 2009-02-03 11:28:47.000000000 +0200 @@ -143,7 +143,13 @@ self.info[0]['model name']) is not None def _is_AMD64(self): - return self.is_AMD() and self.info[0]['family'] == '15' + if 'family' in self.info[0]: + b_family=self.info[0]['family'] in ['15','16'] + elif 'cpu family' in self.info[0]: + b_family=self.info[0]['cpu family']in ['15','16'] + else: + b_family=False + return self.is_AMD() and b_family def _is_Athlon64(self): return re.match(r'.*?Athlon\(tm\) 64\b', simo/dev/buildout_utils/dll_build.py0000755000076500000240000000235111265350433020404 0ustar Jussistaff00000000000000import sys import os from shutil import move #This script will build all the neccessary dlls from models and #move them to the target directory. #Usage as noted below print "Running from",os.getcwd() if len(sys.argv) != 4: print "DLL creation and move needs three parameters:" print "modelroot, simoroot and pythonexec" raise AttributeError('bad parameters!') modelpath = os.sep.join([sys.argv[2], 'Finland', 'c']) targetpath = os.sep.join([sys.argv[1], 'simulator', 'models', 'prediction']) print "Compiling files in",modelpath #We move to the modelpath, whcich hosts dll_batch.py that does the #actual compiling work for us. Look there (and make_dll.py) for further info. os.chdir(modelpath) os.system(' '.join((sys.argv[3], 'dll_batch.py'))) files = os.listdir('.') print "Compiling complete." print '##################################################################' print "Moving compiled files to", targetpath for file in files: if file.endswith('dll'): if os.path.lexists(os.path.join(targetpath, file)): os.remove(os.path.join(targetpath, file)) print "moving", file move(file, targetpath) print "Move complete!" print '##################################################################' simo/dev/buildout_utils/gnu.py0000644000076500000240000003013411265350433017240 0ustar Jussistaff00000000000000import re import os import sys import warnings from numpy.distutils.cpuinfo import cpu from numpy.distutils.fcompiler import FCompiler from numpy.distutils.exec_command import exec_command from numpy.distutils.misc_util import msvc_runtime_library compilers = ['GnuFCompiler', 'Gnu95FCompiler'] TARGET_R = re.compile("Target: ([a-zA-Z0-9_\-]*)") class GnuFCompiler(FCompiler): compiler_type = 'gnu' compiler_aliases = ('g77',) description = 'GNU Fortran 77 compiler' def gnu_version_match(self, version_string): """Handle the different versions of GNU fortran compilers""" m = re.match(r'GNU Fortran', version_string) if not m: return None m = re.match(r'GNU Fortran\s+95.*?([0-9-.]+)', version_string) if m: return ('gfortran', m.group(1)) m = re.match(r'GNU Fortran.*?([0-9-.]+)', version_string) if m: v = m.group(1) if v.startswith('0') or v.startswith('2') or v.startswith('3'): # the '0' is for early g77's return ('g77', v) else: # at some point in the 4.x series, the ' 95' was dropped # from the version string return ('gfortran', v) def version_match(self, version_string): v = self.gnu_version_match(version_string) if not v or v[0] != 'g77': return None return v[1] # 'g77 --version' results # SunOS: GNU Fortran (GCC 3.2) 3.2 20020814 (release) # Debian: GNU Fortran (GCC) 3.3.3 20040110 (prerelease) (Debian) # GNU Fortran (GCC) 3.3.3 (Debian 20040401) # GNU Fortran 0.5.25 20010319 (prerelease) # Redhat: GNU Fortran (GCC 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) 3.2.2 20030222 (Red Hat Linux 3.2.2-5) # GNU Fortran (GCC) 3.4.2 (mingw-special) possible_executables = ['g77', 'f77'] executables = { 'version_cmd' : [None, "--version"], 'compiler_f77' : [None, "-g", "-Wall", "-fno-second-underscore"], 'compiler_f90' : None, # Use --fcompiler=gnu95 for f90 codes 'compiler_fix' : None, 'linker_so' : [None, "-g", "-Wall"], 'archiver' : ["ar", "-cr"], 'ranlib' : ["ranlib"], 'linker_exe' : [None, "-g", "-Wall"] } module_dir_switch = None module_include_switch = None # Cygwin: f771: warning: -fPIC ignored for target (all code is # position independent) if os.name != 'nt' and sys.platform != 'cygwin': pic_flags = ['-fPIC'] # use -mno-cygwin for g77 when Python is not Cygwin-Python if sys.platform == 'win32': for key in ['version_cmd', 'compiler_f77', 'linker_so', 'linker_exe']: executables[key].append('-mno-cygwin') g2c = 'g2c' suggested_f90_compiler = 'gnu95' #def get_linker_so(self): # # win32 linking should be handled by standard linker # # Darwin g77 cannot be used as a linker. # #if re.match(r'(darwin)', sys.platform): # # return # return FCompiler.get_linker_so(self) def get_flags_linker_so(self): opt = self.linker_so[1:] if sys.platform=='darwin': # MACOSX_DEPLOYMENT_TARGET must be at least 10.3. This is # a reasonable default value even when building on 10.4 when using # the official Python distribution and those derived from it (when # not broken). target = os.environ.get('MACOSX_DEPLOYMENT_TARGET', None) if target is None or target == '': target = '10.3' major, minor = target.split('.') if int(minor) < 3: minor = '3' warnings.warn('Environment variable ' 'MACOSX_DEPLOYMENT_TARGET reset to %s.%s' % (major, minor)) os.environ['MACOSX_DEPLOYMENT_TARGET'] = '%s.%s' % (major, minor) opt.extend(['-undefined', 'dynamic_lookup', '-bundle']) else: opt.append("-shared") if sys.platform.startswith('sunos'): # SunOS often has dynamically loaded symbols defined in the # static library libg2c.a The linker doesn't like this. To # ignore the problem, use the -mimpure-text flag. It isn't # the safest thing, but seems to work. 'man gcc' says: # ".. Instead of using -mimpure-text, you should compile all # source code with -fpic or -fPIC." opt.append('-mimpure-text') return opt def get_libgcc_dir(self): status, output = exec_command(self.compiler_f77 + ['-print-libgcc-file-name'], use_tee=0) if not status: return os.path.dirname(output) return None def get_library_dirs(self): opt = [] if sys.platform[:5] != 'linux': d = self.get_libgcc_dir() if d: # if windows and not cygwin, libg2c lies in a different folder if sys.platform == 'win32' and not d.startswith('/usr/lib'): d = os.path.normpath(d) if not os.path.exists(os.path.join(d, "lib%s.a" % self.g2c)): d2 = os.path.abspath(os.path.join(d, '../../../../lib')) if os.path.exists(os.path.join(d2, "lib%s.a" % self.g2c)): opt.append(d2) opt.append(d) return opt def get_libraries(self): opt = [] d = self.get_libgcc_dir() if d is not None: g2c = self.g2c + '-pic' f = self.static_lib_format % (g2c, self.static_lib_extension) if not os.path.isfile(os.path.join(d,f)): g2c = self.g2c else: g2c = self.g2c if g2c is not None: opt.append(g2c) c_compiler = self.c_compiler if sys.platform == 'win32' and c_compiler and \ c_compiler.compiler_type=='msvc': # the following code is not needed (read: breaks) when using MinGW # in case want to link F77 compiled code with MSVC opt.append('gcc') runtime_lib = msvc_runtime_library() if runtime_lib: opt.append(runtime_lib) if sys.platform == 'darwin': opt.append('cc_dynamic') return opt def get_flags_debug(self): return ['-g'] def get_flags_opt(self): if self.get_version()<='3.3.3': # With this compiler version building Fortran BLAS/LAPACK # with -O3 caused failures in lib.lapack heevr,syevr tests. opt = ['-O2'] else: opt = ['-O3'] opt.append('-funroll-loops') return opt def get_flags_arch(self): return [] class Gnu95FCompiler(GnuFCompiler): compiler_type = 'gnu95' compiler_aliases = ('gfortran',) description = 'GNU Fortran 95 compiler' def version_match(self, version_string): v = self.gnu_version_match(version_string) if not v or v[0] != 'gfortran': return None return v[1] # 'gfortran --version' results: # XXX is the below right? # Debian: GNU Fortran 95 (GCC 4.0.3 20051023 (prerelease) (Debian 4.0.2-3)) # GNU Fortran 95 (GCC) 4.1.2 20061115 (prerelease) (Debian 4.1.1-21) # OS X: GNU Fortran 95 (GCC) 4.1.0 # GNU Fortran 95 (GCC) 4.2.0 20060218 (experimental) # GNU Fortran (GCC) 4.3.0 20070316 (experimental) possible_executables = ['gfortran', 'f95'] executables = { 'version_cmd' : ["", "--version"], 'compiler_f77' : [None, "-Wall", "-ffixed-form", "-fno-second-underscore"], 'compiler_f90' : [None, "-Wall", "-fno-second-underscore"], 'compiler_fix' : [None, "-Wall", "-ffixed-form", "-fno-second-underscore"], 'linker_so' : ["", "-Wall"], 'archiver' : ["ar", "-cr"], 'ranlib' : ["ranlib"], 'linker_exe' : [None, "-Wall"] } # use -mno-cygwin flag for g77 when Python is not Cygwin-Python if sys.platform == 'win32': for key in ['version_cmd', 'compiler_f77', 'compiler_f90', 'compiler_fix', 'linker_so', 'linker_exe']: executables[key].append('-mno-cygwin') module_dir_switch = '-J' module_include_switch = '-I' g2c = 'gfortran' # Note that this is here instead of GnuFCompiler as gcc < 4 uses a # different output format (which isn't as useful) than gcc >= 4, # and we don't have to worry about g77 being universal (as it can't be). def target_architecture(self, extra_opts=()): """Return the architecture that the compiler will build for. This is most useful for detecting universal compilers in OS X.""" extra_opts = list(extra_opts) status, output = exec_command(self.compiler_f90 + ['-v'] + extra_opts, use_tee=False) if status == 0: m = re.match(r'(?m)^Target: (.*)$', output) if m: return m.group(1) return None def is_universal_compiler(self): """Return True if this compiler can compile universal binaries (for OS X). Currently only checks for i686 and powerpc architectures (no 64-bit support yet). """ if sys.platform != 'darwin': return False i686_arch = self.target_architecture(extra_opts=['-arch', 'i686']) if not i686_arch or not i686_arch.startswith('i686-'): return False ppc_arch = self.target_architecture(extra_opts=['-arch', 'ppc']) if not ppc_arch or not ppc_arch.startswith('powerpc-'): return False return True def _add_arches_for_universal_build(self, flags): if self.is_universal_compiler(): flags[:0] = ['-arch', 'i686', '-arch', 'ppc'] return flags def get_flags(self): flags = GnuFCompiler.get_flags(self) return self._add_arches_for_universal_build(flags) def get_flags_linker_so(self): flags = GnuFCompiler.get_flags_linker_so(self) return self._add_arches_for_universal_build(flags) def get_library_dirs(self): opt = GnuFCompiler.get_library_dirs(self) if sys.platform == 'win32': c_compiler = self.c_compiler if c_compiler and c_compiler.compiler_type == "msvc": target = self.get_target() if target: d = os.path.normpath(self.get_libgcc_dir()) root = os.path.join(d, os.pardir, os.pardir, os.pardir, os.pardir) mingwdir = os.path.normpath(os.path.join(root, target, "lib")) full = os.path.join(mingwdir, "libmingwex.a") if os.path.exists(full): opt.append(mingwdir) return opt def get_libraries(self): opt = GnuFCompiler.get_libraries(self) if sys.platform == 'darwin': opt.remove('cc_dynamic') if sys.platform == 'win32': c_compiler = self.c_compiler if c_compiler and c_compiler.compiler_type == "msvc": if "gcc" in opt: i = opt.index("gcc") opt.insert(i+1, "mingwex") opt.insert(i+1, "mingw32") return opt def get_target(self): status, output = exec_command(self.compiler_f77 + ['-v'], use_tee=0) if not status: m = TARGET_R.search(output) if m: return m.group(1) return "" if __name__ == '__main__': from distutils import log log.set_verbosity(2) compiler = GnuFCompiler() compiler.customize() print compiler.get_version() raw_input('Press ENTER to continue...') try: compiler = Gnu95FCompiler() compiler.customize() print compiler.get_version() except Exception, msg: print msg raw_input('Press ENTER to continue...') simo/dev/buildout_utils/makefile.patch0000644000076500000240000000067411265350433020701 0ustar Jussistaff00000000000000--- Makefile.in 2009-04-06 03:21:01.000000000 -0400 +++ Makefile.in 2009-05-20 04:22:13.000000000 -0400 @@ -223,7 +223,7 @@ AM_CFLAGS = -D_LARGE_FILE=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 \ -DSQLITE_ENABLE_RTREE=1 -INCLUDES = @CFLAGS@ -I./headers/spatialite +INCLUDES = @CFLAGS@ -I./headers/spatialite @GEOS_INCLUDE@ @PROJ_INCLUDE@ lib_LTLIBRARIES = libspatialite.la libspatialite_la_SOURCES = spatialite.c \ sqlite3.c simo/dev/buildout_utils/output_tester.py0000644000076500000240000000627711265350434021411 0ustar Jussistaff00000000000000#!/usr/bin/env python # encoding: utf-8 """ This will run the main program. The output will be redirected to output.test which is tested against output.cmp *output_tester.py* Usage: output_tester.py exec program Copyright (c) 2009 Simosol Oy. Distributed under the GNU General Public License 2.0. """ import os, sys from ConfigParser import ConfigParser args = sys.argv output = 'buildout_utils/output.test' cmp = 'buildout_utils/output.cmp' main_mod = 'src/runner.py' main_ini = 'simulator/test/runner_with_warnings.ini' of_cmp = 'buildout_utils/out_files.cmp' exec_path = 'bin/python' if not os.path.exists(exec_path): exec_path = 'python' print 'Running program... (this will take several minutes...)' result = os.system(exec_path+' '+main_mod+' '+main_ini+' 1>%s 2>&1' % output) if result > 0: print 'Program run failed!' sys.exit(1) print 'Program run successfully!' print 'Comparing runtime logs...' nose_exec = 'nosetests' if os.path.exists('bin/root_test'): nose_exec = 'bin/root_test' log_res = os.system('%s --with-doctest --doctest-extension=cmp %s' \ % (nose_exec, cmp)) print 'Run logs exited with %d' % log_res cp = ConfigParser() cp.read('simulator/runner.ini') base = cp.get('program_execution', 'base_folder') output_dir = cp.get('output', 'output_dir') output_dir = os.path.join(base, output_dir) output_formats = cp.get('output', 'output_format').split(';') output_files = cp.get('output', 'output_filename').split(';') outputs = dict(zip(output_formats, output_files)) def compare(f1, f2): r1 = file(os.path.join(output_dir, f1)) r2 = file(f2) ok = True try: out1 = r1.readlines() out2 = r2.readlines() if len(out1) != len(out2): print 'The files are of different length!' ok = False for i, data in enumerate(out1): if i >= len(out2): break d1 = data.strip() d2 = out2[i].strip() if d1 != d2: print 'exp:'+d2 print 'got:'+d1 ok = False finally: r1.close() r2.close() return ok in_res = True bl_res = True or_res = True ag_res = True ex_res = True print 'Comparing output results...' if 'inlined' in outputs: print 'Inlined:' in_res = compare(outputs['inlined'], 'buildout_utils/output_test_files/inlined.txt') print 'matches ...',in_res if 'by_level' in outputs: print 'By level:' bl_res = compare(outputs['by_level'], 'buildout_utils/output_test_files/by_level.txt') print 'matches ...',bl_res if 'operation_result' in outputs: print 'Operation results:' or_res = compare(outputs['operation_result'], 'buildout_utils/output_test_files/operation_result.txt') print 'matches ...',or_res if 'aggregation' in outputs: print 'Aggregation:' ag_res = compare(outputs['aggregation'], 'buildout_utils/output_test_files/aggregation.txt') print 'matches ...',ag_res if 'expression' in outputs: print 'Expression:' ex_res = compare(outputs['expression'], 'buildout_utils/output_test_files/expression.txt') print 'matches ...',ex_res if log_res == 0 and in_res and bl_res and or_res and ag_res and ex_res: sys.exit(0) else: sys.exit(1) simo/dev/buildout_utils/patcher.py0000755000076500000240000000135111265350434020100 0ustar Jussistaff00000000000000"""This will patch numpy (1.2.1) to work on the 64 bit debian server. Once Numpy is updated, look into removing this script. This script requires patcher.sh and gnu.py (from the numpy svn numpy/distutils/fcompiler) """ import sys, os if str.lower(sys.platform[:3])=='win': print "Sorry, we can't patch numpy on windows. Might not matter though." sys.exit() import numpy import subprocess import shutil cpath = os.getcwd() tpath = os.path.join(os.path.dirname(numpy.__file__), 'distutils') subprocess.Popen(['buildout_utils/patcher.sh', cpath, tpath, os.path.join(cpath,'buildout_utils/cpuinfo.patch')]) print 'overwriting gnu.py...' shutil.copy2('buildout_utils/gnu.py', os.path.join(tpath, 'fcompiler')) print 'done' simo/dev/buildout_utils/patcher.sh0000755000076500000240000000006711265350434020065 0ustar Jussistaff00000000000000#!/bin/sh cd $2 echo "applying "$3 patch -N < $3 cd $1 simo/dev/buildout_utils/pth_import.py0000644000076500000240000000472111265350434020640 0ustar Jussistaff00000000000000"""This script will attempt to import param1, and if it fails, will proceed to locate the proper egg from eggs and develop-eggs and add it's path to a param1.pth file under the custom python's site-packages """ import sys import os def test_import(name): """Tests if the module can be imported (== is already in path)""" print "Testing if", name, "exists..." try: module = __import__(sys.argv[1]) try: version = module.__version__ except AttributeError: version = "" print name, version, 'successfully imported!' return True except ImportError: print "Import failed!" return False def get_path(name, egg_path): """Will search for the egg (well, anything in the egg_path that starts with name) and returns the absolute path to it""" path = "" for i in os.listdir(egg_path): if i.startswith(name): path = os.path.join(os.getcwd(), egg_path, i) break if path == "": #see if the path name is a bit off the module name name = name.rstrip('1234567890-._') for i in os.listdir(egg_path): if i.startswith(name): path = os.path.join(os.getcwd(), egg_path, i) break if path == "": #ignore case difference for i in os.listdir(egg_path): if i.lower().startswith(name): path = os.path.join(os.getcwd(), egg_path, i) break return path def set_path(name, path): pth_filename = "%s.pth" % (name,) print 'creating', pth_filename, '...' pth_file = open(os.path.join("parts","python-2.6","lib","python2.6","site-packages",pth_filename), 'w') pth_file.write(path) pth_file.close() print pth_filename, 'created!' def main(): if len(sys.argv) != 2: raise UserWarning("""You must provide the name of the module you wish to add.""") name = sys.argv[1] #Test if the name is already in path if test_import(name): sys.exit(0) #Find the proper egg path = get_path(name, "eggs") if path == "": path = get_path(name, "develop-eggs") if path == "": raise UserWarning("Egg was not found!") print "Egg found from", path #Check if the egg was what we're looking for and fail if it isn't sys.path.append(path) if test_import(name): set_path(name, path) else: raise UserWarning("Import failed!") if __name__ == '__main__': main() simo/dev/buildout_utils/toolgetter.py0000644000076500000240000000173311265350434020643 0ustar Jussistaff00000000000000import sys, os, logging log = logging.getLogger('hook') def get_tools(options, buildout): log.info(' '.join(('compile directory at',options['compile-directory'])) ) log.info('copying tools...'), target = os.path.join(options['location'], 'Tools') import shutil shutil.copytree(os.path.join(options['compile-directory'], 'Python-2.5.4', 'Tools'), target) log.info('done') #May cause rebuilding python #shutil.rmtree(options['compile-directory'], True) pth_filename = "tools.pth" log.info(''.join(('creating ', pth_filename, '...')) ) sp_path = os.path.join(options['location'], 'lib', 'python2.5', 'site-packages') pth_file = open(os.path.join(sp_path, pth_filename), 'w') tools = [''.join((os.path.join(target, path), '\n')) for path in os.listdir(target)] pth_file.writelines(tools) pth_file.close() log.info(' '.join((pth_filename, 'created!')) ) simo/dev/buildout_utils/unzip.py0000644000076500000240000000212611265350434017615 0ustar Jussistaff00000000000000import sys, zipfile, os, os.path def unzip_file_into_dir(file, dir): if not os.path.exists(dir): os.mkdir(dir, 0777) zfobj = zipfile.ZipFile(file) for name in zfobj.namelist(): #DEBUG#print 'extracting', name if name.endswith('/') or name.endswith('\\'): os.mkdir(os.path.join(dir, name)) else: try: outfile = open(os.path.join(dir, name), 'wb') except: makedirs(os.path.join(dir, name)) outfile = open(os.path.join(dir, name), 'wb') outfile.write(zfobj.read(name)) outfile.close() def makedirs(path): pathparts = os.path.dirname(path).split(os.sep) exists = '' for part in pathparts: target = os.path.join(exists, part) if not os.path.exists(target): print 'creating', target os.mkdir(target) exists = target def main(): if len(sys.argv) != 3: print 'Usage:', sys.argv[0], ' ' unzip_file_into_dir(open(sys.argv[1]), sys.argv[2]) if __name__ == '__main__': main() simo/LICENSE0000644000076500000240000003477711267062347013304 0ustar Jussistaff00000000000000GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, 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 or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's 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 give any other recipients of the Program a copy of this License along with the Program. 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 Program or any portion of it, thus forming a work based on the Program, 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) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, 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 Program, 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 Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) 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; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, 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 executable. However, as a special exception, the source code 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. If distribution of executable or 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 counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program 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. 5. 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 Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program 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 to this License. 7. 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 Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program 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 Program. 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. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program 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. 9. The Free Software Foundation may publish revised and/or new versions of the 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 Program 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 Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, 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 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "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 PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. 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 PROGRAM 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 PROGRAM (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 PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.simo/README.txt0000644000076500000240000000175011267062347013756 0ustar Jussistaff00000000000000=============== SIMO - Buildout =============== This is a buildout system for SIMO. It is based on zc.buildout. Installation ------------ If you're using a source distribution, this isn't needed: $ svn co http://svn.simo-project.org/simo/trunk simo Once you have the source, run in the root SIMO folder: $ python bootstrap.py $ python build_env.py Developing ---------- The SIMO code is under ``src/``. It is installed as a development egg so any changes made to the source code are immediately available for use. There is a python interpreter available under:: $ ./bin/python that has SIMO available for importing and use. If you're using multiple zc.buildout based buildouts for your development, you may wish to share the downloaded eggs and tarballs among them to save disk space. To do this create a file:: ~/.buildout/default.cfg and put the following there:: [buildout] eggs = /path/to/shared/egg/container download-directory = /path/to/shared/package/container simo/setup.py0000644000076500000240000000271611267062347013775 0ustar Jussistaff00000000000000#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages install_requires = ['guppy', 'cython', 'pygooglechart', 'numpy', 'ZODB3', 'pyparsing', 'python-dateutil'] # Get text from README.txt readme_text = file('README.txt', 'rb').read() setup(name = 'SIMO', version = '0.5', description = 'Simulation and optimisation framework for natural '\ 'resource planning', license = 'GPL2', keywords = 'simulation optimization', author = 'Simosol Oy', author_email = 'info@simosol.fi', maintainer = 'Simosol Oy', maintainer_email = 'info@simosol.fi', url = 'http://www.simo-project.org', long_description = readme_text, #package structure packages=['']+find_packages('src', 'simulator'), package_dir={'':'src'}, install_requires = install_requires, entry_points=(""" [console_scripts] runner=runner:main builder=builder:main logger=logger:main """), classifiers = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: GPL License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Scientific/Engineering :: Simulation', ], ) simo/SIMO_API.pdf0000644000076500000240000372576211267062347014236 0ustar Jussistaff00000000000000%PDF-1.4 % 4 0 obj << /S /GoTo /D (chapter.1) >> endobj 7 0 obj (xmlobject.py) endobj 8 0 obj << /S /GoTo /D (section.1.1) >> endobj 11 0 obj (class XmlObject\(object\):) endobj 12 0 obj << /S /GoTo /D (chapter.2) >> endobj 15 0 obj (operationmapping.py) endobj 16 0 obj << /S /GoTo /D (section.2.1) >> endobj 19 0 obj (class OperationMappingDef\(XmlObject\):) endobj 20 0 obj << /S /GoTo /D (chapter.3) >> endobj 23 0 obj (text2data.py) endobj 24 0 obj << /S /GoTo /D (section.3.1) >> endobj 27 0 obj (class ConversionMappingDef\(XmlObject\):) endobj 28 0 obj << /S /GoTo /D (section.3.2) >> endobj 31 0 obj (class ValueConv\(Persistent\):) endobj 32 0 obj << /S /GoTo /D (section.3.3) >> endobj 35 0 obj (class Mapping\(Persistent\):) endobj 36 0 obj << /S /GoTo /D (section.3.4) >> endobj 39 0 obj (class LevelDef\(Persistent\):) endobj 40 0 obj << /S /GoTo /D (section.3.5) >> endobj 43 0 obj (class ConversionMapping\(Persistent\):) endobj 44 0 obj << /S /GoTo /D (chapter.4) >> endobj 47 0 obj (operationconversion.py) endobj 48 0 obj << /S /GoTo /D (section.4.1) >> endobj 51 0 obj (class OperationConversionDef\(XmlObject\):) endobj 52 0 obj << /S /GoTo /D (chapter.5) >> endobj 55 0 obj (lexicon.py) endobj 56 0 obj << /S /GoTo /D (section.5.1) >> endobj 59 0 obj (class Lexicon\(object\):) endobj 60 0 obj << /S /GoTo /D (chapter.6) >> endobj 63 0 obj (lexiconlevel.py) endobj 64 0 obj << /S /GoTo /D (section.6.1) >> endobj 67 0 obj (class LexiconLevel\(object\):) endobj 68 0 obj << /S /GoTo /D (chapter.7) >> endobj 71 0 obj (lexiconvariable.py) endobj 72 0 obj << /S /GoTo /D (section.7.1) >> endobj 75 0 obj (class LexiconVariable\(object\):) endobj 76 0 obj << /S /GoTo /D (chapter.8) >> endobj 79 0 obj (aggregationmodel.py) endobj 80 0 obj << /S /GoTo /D (section.8.1) >> endobj 83 0 obj (class AggregationModel\(object\):) endobj 84 0 obj << /S /GoTo /D (section.8.2) >> endobj 87 0 obj (class AggregationModelParam\(object\):) endobj 88 0 obj << /S /GoTo /D (section.8.3) >> endobj 91 0 obj (class AggregationModelOperand\(object\):) endobj 92 0 obj << /S /GoTo /D (chapter.9) >> endobj 95 0 obj (cashflowmodel.py) endobj 96 0 obj << /S /GoTo /D (section.9.1) >> endobj 99 0 obj (class CashFlowModel\(object\):) endobj 100 0 obj << /S /GoTo /D (section.9.2) >> endobj 103 0 obj (class CashFlowModelParam\(object\):) endobj 104 0 obj << /S /GoTo /D (chapter.10) >> endobj 107 0 obj (cashflowtable.py) endobj 108 0 obj << /S /GoTo /D (section.10.1) >> endobj 111 0 obj (class CashFlowTable\(object\):) endobj 112 0 obj << /S /GoTo /D (section.10.2) >> endobj 115 0 obj (class Trend\(object\):) endobj 116 0 obj << /S /GoTo /D (section.10.3) >> endobj 119 0 obj (class CashFlowTable\(object\):) endobj 120 0 obj << /S /GoTo /D (chapter.11) >> endobj 123 0 obj (geotable.py) endobj 124 0 obj << /S /GoTo /D (section.11.1) >> endobj 127 0 obj (class GeoTable\(object\):) endobj 128 0 obj << /S /GoTo /D (section.11.2) >> endobj 131 0 obj (class GeoTableParam\(object\):) endobj 132 0 obj << /S /GoTo /D (chapter.12) >> endobj 135 0 obj (managementmodel.py) endobj 136 0 obj << /S /GoTo /D (section.12.1) >> endobj 139 0 obj (class ManagementModel\(object\):) endobj 140 0 obj << /S /GoTo /D (section.12.2) >> endobj 143 0 obj (class ModelParamManagementModel\(object\):) endobj 144 0 obj << /S /GoTo /D (chapter.13) >> endobj 147 0 obj (model.py) endobj 148 0 obj << /S /GoTo /D (section.13.1) >> endobj 151 0 obj (class Model\(object\):) endobj 152 0 obj << /S /GoTo /D (section.13.2) >> endobj 155 0 obj (class POModel\(Model\):) endobj 156 0 obj << /S /GoTo /D (section.13.3) >> endobj 159 0 obj (class Limit\(object\):) endobj 160 0 obj << /S /GoTo /D (chapter.14) >> endobj 163 0 obj (modelbase.py) endobj 164 0 obj << /S /GoTo /D (section.14.1) >> endobj 167 0 obj (class ModelbaseDef\(XmlObject\):) endobj 168 0 obj << /S /GoTo /D (chapter.15) >> endobj 171 0 obj (operationmodel.py) endobj 172 0 obj << /S /GoTo /D (section.15.1) >> endobj 175 0 obj (class OperationModel\(Model\):) endobj 176 0 obj << /S /GoTo /D (section.15.2) >> endobj 179 0 obj (class Classifier\(object\):) endobj 180 0 obj << /S /GoTo /D (section.15.3) >> endobj 183 0 obj (class OperationModelParam\(object\):) endobj 184 0 obj << /S /GoTo /D (chapter.16) >> endobj 187 0 obj (parametertable.py) endobj 188 0 obj << /S /GoTo /D (section.16.1) >> endobj 191 0 obj (class ParameterTable\(object\):) endobj 192 0 obj << /S /GoTo /D (section.16.2) >> endobj 195 0 obj (class ParamTableTarget\(object\):) endobj 196 0 obj << /S /GoTo /D (chapter.17) >> endobj 199 0 obj (predictionmodel.py) endobj 200 0 obj << /S /GoTo /D (section.17.1) >> endobj 203 0 obj (class PredictionModel\(POModel\):) endobj 204 0 obj << /S /GoTo /D (section.17.2) >> endobj 207 0 obj (class ResultVariable\(object\):) endobj 208 0 obj << /S /GoTo /D (section.17.3) >> endobj 211 0 obj (class PredictionModelParam\(Persistent\):) endobj 212 0 obj << /S /GoTo /D (chapter.18) >> endobj 215 0 obj (table.py) endobj 216 0 obj << /S /GoTo /D (section.18.1) >> endobj 219 0 obj (def table2array\(table\):) endobj 220 0 obj << /S /GoTo /D (section.18.2) >> endobj 223 0 obj (def table2dict\(table\):) endobj 224 0 obj << /S /GoTo /D (section.18.3) >> endobj 227 0 obj (def parse\137classifiers\(ns, elem\):) endobj 228 0 obj << /S /GoTo /D (section.18.4) >> endobj 231 0 obj (def parse\137tables\(ns, elem\):) endobj 232 0 obj << /S /GoTo /D (chapter.19) >> endobj 235 0 obj (conditionparser.py) endobj 236 0 obj << /S /GoTo /D (section.19.1) >> endobj 239 0 obj (class ConditionParser\(object\):) endobj 240 0 obj << /S /GoTo /D (chapter.20) >> endobj 243 0 obj (modelchain.py) endobj 244 0 obj << /S /GoTo /D (section.20.1) >> endobj 247 0 obj (class ModelChainDef\(XmlObject\):) endobj 248 0 obj << /S /GoTo /D (section.20.2) >> endobj 251 0 obj (class ModelChainCollection\(Persistent\):) endobj 252 0 obj << /S /GoTo /D (section.20.3) >> endobj 255 0 obj (class ModelChain\(Persistent\):) endobj 256 0 obj << /S /GoTo /D (chapter.21) >> endobj 259 0 obj (task.py) endobj 260 0 obj << /S /GoTo /D (section.21.1) >> endobj 263 0 obj (class Task\(object\):) endobj 264 0 obj << /S /GoTo /D (chapter.22) >> endobj 267 0 obj (exprparser.py) endobj 268 0 obj << /S /GoTo /D (section.22.1) >> endobj 271 0 obj (class ExpressionParser\(object\):) endobj 272 0 obj << /S /GoTo /D (chapter.23) >> endobj 275 0 obj (objfunc.py) endobj 276 0 obj << /S /GoTo /D (section.23.1) >> endobj 279 0 obj (class ObjectiveFunction\(object\):) endobj 280 0 obj << /S /GoTo /D (section.23.2) >> endobj 283 0 obj (class SubObjective\(object\):) endobj 284 0 obj << /S /GoTo /D (section.23.3) >> endobj 287 0 obj (class UFunc\(object\):) endobj 288 0 obj << /S /GoTo /D (chapter.24) >> endobj 291 0 obj (opttask.py) endobj 292 0 obj << /S /GoTo /D (section.24.1) >> endobj 295 0 obj (class OptimizationTaskDef\(XmlObject\):) endobj 296 0 obj << /S /GoTo /D (section.24.2) >> endobj 299 0 obj (class OptimizationTask\(object\):) endobj 300 0 obj << /S /GoTo /D (chapter.25) >> endobj 303 0 obj (aggrdef.py) endobj 304 0 obj << /S /GoTo /D (section.25.1) >> endobj 307 0 obj (class AggregationOutputDef\(XmlObject\):) endobj 308 0 obj << /S /GoTo /D (section.25.2) >> endobj 311 0 obj (class AggregationOutput\(object\):) endobj 312 0 obj << /S /GoTo /D (chapter.26) >> endobj 315 0 obj (exprdef.py) endobj 316 0 obj << /S /GoTo /D (section.26.1) >> endobj 319 0 obj (class ExpressionOutputDef\(XmlObject\):) endobj 320 0 obj << /S /GoTo /D (section.26.2) >> endobj 323 0 obj (class ExpressionOutput\(object\):) endobj 324 0 obj << /S /GoTo /D (chapter.27) >> endobj 327 0 obj (outputconstraint.py) endobj 328 0 obj << /S /GoTo /D (section.27.1) >> endobj 331 0 obj (class OutputConstraintDef\(XmlObject\):) endobj 332 0 obj << /S /GoTo /D (chapter.28) >> endobj 335 0 obj (randomvalues.py) endobj 336 0 obj << /S /GoTo /D (section.28.1) >> endobj 339 0 obj (class RandomValueDef\(XmlObject\):) endobj 340 0 obj << /S /GoTo /D (section.28.2) >> endobj 343 0 obj (class RandomValue\(object\):) endobj 344 0 obj << /S /GoTo /D (section.28.3) >> endobj 347 0 obj (class ErrorModel\(object\):) endobj 348 0 obj << /S /GoTo /D (section.28.4) >> endobj 351 0 obj (class RandomVariable\(object\):) endobj 352 0 obj << /S /GoTo /D (section.28.5) >> endobj 355 0 obj (class RandomError\(object\):) endobj 356 0 obj << /S /GoTo /D (section.28.6) >> endobj 359 0 obj (class ClassificationError\(object\):) endobj 360 0 obj << /S /GoTo /D (section.28.7) >> endobj 363 0 obj (class RemovalProbablity\(object\):) endobj 364 0 obj << /S /GoTo /D (section.28.8) >> endobj 367 0 obj (class Sigmoid\(object\):) endobj 368 0 obj << /S /GoTo /D (section.28.9) >> endobj 371 0 obj (class UniformDist\(object\):) endobj 372 0 obj << /S /GoTo /D (section.28.10) >> endobj 375 0 obj (class NormalDist\(object\):) endobj 376 0 obj << /S /GoTo /D (section.28.11) >> endobj 379 0 obj (class LognormalDist\(object\):) endobj 380 0 obj << /S /GoTo /D (section.28.12) >> endobj 383 0 obj (class WeibullDist\(object\):) endobj 384 0 obj << /S /GoTo /D (section.28.13) >> endobj 387 0 obj (class BetaDist\(object\):) endobj 388 0 obj << /S /GoTo /D (section.28.14) >> endobj 391 0 obj (class Systematic\(object\):) endobj 392 0 obj << /S /GoTo /D (chapter.29) >> endobj 395 0 obj (simcontrol.py) endobj 396 0 obj << /S /GoTo /D (section.29.1) >> endobj 399 0 obj (class SimControlDef\(XmlObject\):) endobj 400 0 obj << /S /GoTo /D (chapter.30) >> endobj 403 0 obj (lexicontranslationtable.py) endobj 404 0 obj << /S /GoTo /D (section.30.1) >> endobj 407 0 obj (class LexiconTransTableDef\(XmlObject\):) endobj 408 0 obj << /S /GoTo /D (section.30.2) >> endobj 411 0 obj (class LexiconTransTable\(object\):) endobj 412 0 obj << /S /GoTo /D (chapter.31) >> endobj 415 0 obj (messagetranslationtable.py) endobj 416 0 obj << /S /GoTo /D (section.31.1) >> endobj 419 0 obj (class MsgTransTableDef\(XmlObject\):) endobj 420 0 obj << /S /GoTo /D (section.31.2) >> endobj 423 0 obj (class MsgTransTable\(object\):) endobj 424 0 obj << /S /GoTo /D (chapter.32) >> endobj 427 0 obj (db.py) endobj 428 0 obj << /S /GoTo /D (section.32.1) >> endobj 431 0 obj (class SQLiteDB\(object\):) endobj 432 0 obj << /S /GoTo /D (section.32.2) >> endobj 435 0 obj (class DataDB\(SQLiteDB\):) endobj 436 0 obj << /S /GoTo /D (section.32.3) >> endobj 439 0 obj (class OperationDB\(SQLiteDB\):) endobj 440 0 obj << /S /GoTo /D (section.32.4) >> endobj 443 0 obj (class LoggerDB\(SQLiteDB\):) endobj 444 0 obj << /S /GoTo /D (chapter.33) >> endobj 447 0 obj (db.py) endobj 448 0 obj << /S /GoTo /D (section.33.1) >> endobj 451 0 obj (class SimoDB\(object\):) endobj 452 0 obj << /S /GoTo /D (chapter.34) >> endobj 455 0 obj (importdata.py) endobj 456 0 obj << /S /GoTo /D (section.34.1) >> endobj 459 0 obj (class DataImporter\(object\):) endobj 460 0 obj << /S /GoTo /D (chapter.35) >> endobj 463 0 obj (importops.py) endobj 464 0 obj << /S /GoTo /D (section.35.1) >> endobj 467 0 obj (class OperationImporter\(object\):) endobj 468 0 obj << /S /GoTo /D (chapter.36) >> endobj 471 0 obj (brancher.py) endobj 472 0 obj << /S /GoTo /D (section.36.1) >> endobj 475 0 obj (class Brancher\(object\):) endobj 476 0 obj << /S /GoTo /D (chapter.37) >> endobj 479 0 obj (handler.py) endobj 480 0 obj << /S /GoTo /D (section.37.1) >> endobj 483 0 obj (class Handler\(object\):) endobj 484 0 obj << /S /GoTo /D (chapter.38) >> endobj 487 0 obj (ind2id.py) endobj 488 0 obj << /S /GoTo /D (section.38.1) >> endobj 491 0 obj (class Ind2Id\(object\):) endobj 492 0 obj << /S /GoTo /D (chapter.39) >> endobj 495 0 obj (linkage.py) endobj 496 0 obj << /S /GoTo /D (section.39.1) >> endobj 499 0 obj (class Linkage\(object\):) endobj 500 0 obj << /S /GoTo /D (chapter.40) >> endobj 503 0 obj (matrix.py) endobj 504 0 obj << /S /GoTo /D (section.40.1) >> endobj 507 0 obj (class Matrix\(object\):) endobj 508 0 obj << /S /GoTo /D (chapter.41) >> endobj 511 0 obj (hero.py) endobj 512 0 obj << /S /GoTo /D (section.41.1) >> endobj 515 0 obj (class Hero\(Optimizer\):) endobj 516 0 obj << /S /GoTo /D (chapter.42) >> endobj 519 0 obj (jlp.py) endobj 520 0 obj << /S /GoTo /D (section.42.1) >> endobj 523 0 obj (class JLP\(Optimizer\):) endobj 524 0 obj << /S /GoTo /D (chapter.43) >> endobj 527 0 obj (optimizer.py) endobj 528 0 obj << /S /GoTo /D (section.43.1) >> endobj 531 0 obj (class Optimizer\(object\):) endobj 532 0 obj << /S /GoTo /D (chapter.44) >> endobj 535 0 obj (tabusearch.py) endobj 536 0 obj << /S /GoTo /D (section.44.1) >> endobj 539 0 obj (class TabuSearch\(Optimizer\):) endobj 540 0 obj << /S /GoTo /D (chapter.45) >> endobj 543 0 obj (ologger.py) endobj 544 0 obj << /S /GoTo /D (section.45.1) >> endobj 547 0 obj (class OLogger\(object\):) endobj 548 0 obj << /S /GoTo /D (chapter.46) >> endobj 551 0 obj (omatrix.py) endobj 552 0 obj << /S /GoTo /D (section.46.1) >> endobj 555 0 obj (def calculate\137NPV\(value, discountrate, presentdate, eventdate\):) endobj 556 0 obj << /S /GoTo /D (section.46.2) >> endobj 559 0 obj (def \137\137init\137\137\(self\):) endobj 560 0 obj << /S /GoTo /D (section.46.3) >> endobj 563 0 obj (def construct\137data\(self, db\):) endobj 564 0 obj << /S /GoTo /D (section.46.4) >> endobj 567 0 obj (def \137get\137matrix\137dimensions\(self\):) endobj 568 0 obj << /S /GoTo /D (section.46.5) >> endobj 571 0 obj (def \137create\137empty\137matrices\(self\):) endobj 572 0 obj << /S /GoTo /D (section.46.6) >> endobj 575 0 obj (def \137process\137exprs\(self, exprs, db, exprtype, subobj=True\):) endobj 576 0 obj << /S /GoTo /D (section.46.7) >> endobj 579 0 obj (def \137fill\137matrices\(self, db\):) endobj 580 0 obj << /S /GoTo /D (section.46.8) >> endobj 583 0 obj (def \137collect\137values\(self, expr, matrix\):) endobj 584 0 obj << /S /GoTo /D (section.46.9) >> endobj 587 0 obj (def \137evaluate\137operand\137constraints\(self, data, matrix, expr\):) endobj 588 0 obj << /S /GoTo /D (section.46.10) >> endobj 591 0 obj (def solution\137utility\(self, solution, iteration\):) endobj 592 0 obj << /S /GoTo /D (section.46.11) >> endobj 595 0 obj (def \137value2utility\(self, iso, value, maxvalue\):) endobj 596 0 obj << /S /GoTo /D (section.46.12) >> endobj 599 0 obj (def solution\137feasibility\(self, solution, iteration\):) endobj 600 0 obj << /S /GoTo /D (section.46.13) >> endobj 603 0 obj (def compare\137utilities\(self, best, candidate\):) endobj 604 0 obj << /S /GoTo /D (section.46.14) >> endobj 607 0 obj (def get\137random\137solution\(self, iteration\):) endobj 608 0 obj << /S /GoTo /D (chapter.47) >> endobj 611 0 obj (postfixeval.py) endobj 612 0 obj << /S /GoTo /D (section.47.1) >> endobj 615 0 obj (class PostfixEvaluator:) endobj 616 0 obj << /S /GoTo /D (chapter.48) >> endobj 619 0 obj (aggr.py) endobj 620 0 obj << /S /GoTo /D (section.48.1) >> endobj 623 0 obj (class OutputAggr\(Output\):) endobj 624 0 obj << /S /GoTo /D (chapter.49) >> endobj 627 0 obj (branching.py) endobj 628 0 obj << /S /GoTo /D (section.49.1) >> endobj 631 0 obj (class OutputOpres\(Output\):) endobj 632 0 obj << /S /GoTo /D (chapter.50) >> endobj 635 0 obj (by\137level.py) endobj 636 0 obj << /S /GoTo /D (section.50.1) >> endobj 639 0 obj (class OutputByLevel\(Output\):) endobj 640 0 obj << /S /GoTo /D (chapter.51) >> endobj 643 0 obj (expression.py) endobj 644 0 obj << /S /GoTo /D (section.51.1) >> endobj 647 0 obj (def calculate\137NPV\(value, discountrate, presentdate, eventdate\):) endobj 648 0 obj << /S /GoTo /D (section.51.2) >> endobj 651 0 obj (def \137\137init\137\137\(self, datadb, data\137type, id\137list, main\137level, result\137type, output\137formats, output\137filenames, output\137constraint=None, default\137decimal\137places=1, archiving=False, result\137padding=True, aggregation\137def=None, expression\137def=None, opres\137vars=None\):) endobj 652 0 obj << /S /GoTo /D (section.51.3) >> endobj 655 0 obj (def run\(self\):) endobj 656 0 obj << /S /GoTo /D (section.51.4) >> endobj 659 0 obj (def \137run\137expr\(self, expr\137dict\):) endobj 660 0 obj << /S /GoTo /D (section.51.5) >> endobj 663 0 obj (def \137execute\137var\(self, discount\137rate, time\137unit, time\137length, var\):) endobj 664 0 obj << /S /GoTo /D (section.51.6) >> endobj 667 0 obj (def \137analyse\137data\(self\):) endobj 668 0 obj << /S /GoTo /D (section.51.7) >> endobj 671 0 obj (def \137process\137exprs\(self, exprs\):) endobj 672 0 obj << /S /GoTo /D (section.51.8) >> endobj 675 0 obj (def \137create\137tables\(self\):) endobj 676 0 obj << /S /GoTo /D (section.51.9) >> endobj 679 0 obj (def \137fill\137tables\(self\):) endobj 680 0 obj << /S /GoTo /D (section.51.10) >> endobj 683 0 obj (def \137collect\137values\(self, expr, arr, forced\137level=None\):) endobj 684 0 obj << /S /GoTo /D (section.51.11) >> endobj 687 0 obj (def \137get\137values\137from\137db\(self, operand, dates, norm, opresconst=None, forced\137level=None\):) endobj 688 0 obj << /S /GoTo /D (section.51.12) >> endobj 691 0 obj (def \137eval\137data\137constraint\(self, dates, arr, operand, i\137e, norm\):) endobj 692 0 obj << /S /GoTo /D (section.51.13) >> endobj 695 0 obj (def \137eval\137opres\137constraint\(self, dates, arr, operand, i\137e, norm\):) endobj 696 0 obj << /S /GoTo /D (section.51.14) >> endobj 699 0 obj (def \137set\137value\(self, arr, it, uid, br, i\137e, date, value\):) endobj 700 0 obj << /S /GoTo /D (section.51.15) >> endobj 703 0 obj (def \137construct\137strings\(self\):) endobj 704 0 obj << /S /GoTo /D (chapter.52) >> endobj 707 0 obj (inline.py) endobj 708 0 obj << /S /GoTo /D (section.52.1) >> endobj 711 0 obj (class OutputInline\(Output\):) endobj 712 0 obj << /S /GoTo /D (chapter.53) >> endobj 715 0 obj (opres.py) endobj 716 0 obj << /S /GoTo /D (section.53.1) >> endobj 719 0 obj (class OutputOpres\(Output\):) endobj 720 0 obj << /S /GoTo /D (chapter.54) >> endobj 723 0 obj (out.py) endobj 724 0 obj << /S /GoTo /D (section.54.1) >> endobj 727 0 obj (class Out\(object\):) endobj 728 0 obj << /S /GoTo /D (chapter.55) >> endobj 731 0 obj (output.py) endobj 732 0 obj << /S /GoTo /D (section.55.1) >> endobj 735 0 obj (class Output\(object\):) endobj 736 0 obj << /S /GoTo /D (chapter.56) >> endobj 739 0 obj (smt.py) endobj 740 0 obj << /S /GoTo /D (section.56.1) >> endobj 743 0 obj (class OutputSMT\(Output\):) endobj 744 0 obj << /S /GoTo /D (chapter.57) >> endobj 747 0 obj (condeval.py) endobj 748 0 obj << /S /GoTo /D (section.57.1) >> endobj 751 0 obj (class ConditionEvaluator\(object\):) endobj 752 0 obj << /S /GoTo /D (chapter.58) >> endobj 755 0 obj (sim.py) endobj 756 0 obj << /S /GoTo /D (section.58.1) >> endobj 759 0 obj (class Simulator\(object\):) endobj 760 0 obj << /S /GoTo /D (chapter.59) >> endobj 763 0 obj (aggregationcaller.py) endobj 764 0 obj << /S /GoTo /D (section.59.1) >> endobj 767 0 obj (class AggregationModelCaller\(Caller\):) endobj 768 0 obj << /S /GoTo /D (chapter.60) >> endobj 771 0 obj (caller.py) endobj 772 0 obj << /S /GoTo /D (section.60.1) >> endobj 775 0 obj (class Caller\(object\):) endobj 776 0 obj << /S /GoTo /D (chapter.61) >> endobj 779 0 obj (geotablecaller.py) endobj 780 0 obj << /S /GoTo /D (section.61.1) >> endobj 783 0 obj (class GeoTableCaller\(Caller\):) endobj 784 0 obj << /S /GoTo /D (chapter.62) >> endobj 787 0 obj (managementcaller.py) endobj 788 0 obj << /S /GoTo /D (section.62.1) >> endobj 791 0 obj (class ManagementModelCaller\(Caller\):) endobj 792 0 obj << /S /GoTo /D (chapter.63) >> endobj 795 0 obj (operationcaller.py) endobj 796 0 obj << /S /GoTo /D (section.63.1) >> endobj 799 0 obj (class OperationModelCaller\(Caller\):) endobj 800 0 obj << /S /GoTo /D (chapter.64) >> endobj 803 0 obj (operationmemory.py) endobj 804 0 obj << /S /GoTo /D (section.64.1) >> endobj 807 0 obj (class OperationMemory\(object\):) endobj 808 0 obj << /S /GoTo /D (chapter.65) >> endobj 811 0 obj (paramtablecaller.py) endobj 812 0 obj << /S /GoTo /D (section.65.1) >> endobj 815 0 obj (def get\137indices\(tind, table, sim, depthind\):) endobj 816 0 obj << /S /GoTo /D (section.65.2) >> endobj 819 0 obj (def \137limit\137range\(table, searchrange, values, i\):) endobj 820 0 obj << /S /GoTo /D (section.65.3) >> endobj 823 0 obj (def \137\137init\137\137\(self, logger, logname\):) endobj 824 0 obj << /S /GoTo /D (chapter.66) >> endobj 827 0 obj (predictioncaller.py) endobj 828 0 obj << /S /GoTo /D (section.66.1) >> endobj 831 0 obj (class PredictionModelCaller\(Caller\):) endobj 832 0 obj << /S /GoTo /D (chapter.67) >> endobj 835 0 obj (predictionmemory.py) endobj 836 0 obj << /S /GoTo /D (section.67.1) >> endobj 839 0 obj (class PredictionModelMemory\(object\):) endobj 840 0 obj << /S /GoTo /D (chapter.68) >> endobj 843 0 obj (aggregationarg.py) endobj 844 0 obj << /S /GoTo /D (section.68.1) >> endobj 847 0 obj (class AggregationArg\(object\):) endobj 848 0 obj << /S /GoTo /D (chapter.69) >> endobj 851 0 obj (operationarg.py) endobj 852 0 obj << /S /GoTo /D (section.69.1) >> endobj 855 0 obj (class OperationArg\(object\):) endobj 856 0 obj << /S /GoTo /D (chapter.70) >> endobj 859 0 obj (predictionarg.py) endobj 860 0 obj << /S /GoTo /D (section.70.1) >> endobj 863 0 obj (class PredictionArg\(object\):) endobj 864 0 obj << /S /GoTo /D (chapter.71) >> endobj 867 0 obj (runnerconfig.py) endobj 868 0 obj << /S /GoTo /D (chapter.72) >> endobj 871 0 obj (logger.py) endobj 872 0 obj << /S /GoTo /D (chapter.73) >> endobj 875 0 obj (utils.py) endobj 876 0 obj << /S /GoTo /D (section.73.1) >> endobj 879 0 obj (def secs2str\(seconds\):) endobj 880 0 obj << /S /GoTo /D (chapter.74) >> endobj 883 0 obj (Dev notes) endobj 884 0 obj << /S /GoTo /D (section.74.1) >> endobj 887 0 obj (Testing) endobj 888 0 obj << /S /GoTo /D [889 0 R /Fit ] >> endobj 893 0 obj << /Length 311 /Filter /FlateDecode >> stream xڽn@ E /Aj=YC U"TBTuGb2ս)f0xE UFJ՞ .g>NRctuT`,N Lѹׯ%4.9[Qxه`ls{ϽN4njњwWdG@3oGwH!@igvsCea~X({T,lq`6妜˄ Hm4\E5Qr כ~5c>JG-O5mn8ԯNr:oRb"㊚ endstream endobj 889 0 obj << /Type /Page /Contents 893 0 R /Resources 892 0 R /MediaBox [0 0 595.276 841.89] /Parent 899 0 R /Group 891 0 R >> endobj 890 0 obj << /Type /XObject /Subtype /Image /Width 450 /Height 141 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 900 0 R /Length 23768 /Filter /FlateDecode >> stream xwٕܷ3A"I I$ @$`9L1"L,QTnuKvcn{ya}@ nw}Gކ!P:4>9{p 7p 7p 7p 7p 7p 7p 7p 7p 7p 7pe87HMr8*r{Yb\lqaZ:;5UUhij7J z@w{OGʱŷ>,7,fSsC}{ScJQ*d2ߟB"2yƜޮ.[qqq~~yY"=mq~[kΜpTp8\DzdIOˑrRH!#Oe?<殳vOx;YqXS7pRG@q&ũ3ҥbIAϏ@"Sd 䍘éP)2~8EYXtzSOSӫi.Z5@k^ >6sCBr&EM@}QSN`ӠDE3===JOO/ HP D??28#5>C( z2$LtEgz;ঙK-YeOT$5UK䓋M#AKw9[q~ibC8Eq 4fϜp,<%tډiɀ^/=<0lD6OLx#.H|"s{}ZY2EB|79}4gd}1#ǼcwXlP)*%%8Eq BQ@DBlꃻw}߻w{w7:2$hR\'˓ժJNkE+eGghJ/Xѭ^^U#@ H( ~GSDt0\$[d1)!i̥yYkM{fScMM1(n[(?;5~ɓz`Zb"g !:"==[o6c-(+)IIJ}Аn7s8831*qNKyiqKsZrXT0N3<Er9:w=(=KqP6 7#ES*g&''&^YBACOo/o Ri' /QZ\47382ߏD"~iT@o\U_w`_/\D,#btWʅ M" !5ӟO:rڵk/_r![Rdv tw|`^I+Ati.|E[$λ`}n3*VNֿlPV7ՕpNѿ EȰИؗ^$<6 "zz@@oW't EޮNK^@IL:x+ՈǑZ^ .mCEKO' ]&K3%۟}#׽ˆIJQдa 7?Vayy]mNjoo)A l/)):JKn-)w賲rͭMMv+x$IAL&Ds9踘P)TT'Tp,GC"F2^r_U@4ܗIw>w,$^=.,DJ(n;R*&" >tGG$6;f"6hh776`T]Ys ?w>Gj. ɗkG")wBttTe^?Dl>7ND_H$[pNѿ7E!5K 3RS.WQ(Гd"2N"Һʊ*Pbj|ޝ7_v28l?m>X&8rKC 2q?,9(5Qx0K$ݝH XK\mCwEeVOq &E!xTJD"@C PPdBQ_]͍Sϝr oݸ҂,G}}RN]4h.f66Ս A\@3 $BѡnO$T}$s}/Qzb/wΧO]4P!|ɁŢZ\1ۋQZ>:E-ܒ¢䄸2NQpLjTq9qt%%%DG:a*ETxJ͵ַ7qgcsjhHeM$sFF*E;Z[CdR?͂ @aeFхp\$mz>o;l}@#|E '~ogڻij~PD"EF1774gTr ڇjljMߒk1S7[Qtbr|< &"BVsl/^yxzzx 3 J}-Ϝƴ(3;/tܕK.;@%w%z@ :51qd[BllrRb`t1>>wEWHSP-f^}s/6 EHbFi-?fPһJ7BYZ}t8Tѵ'z;;ܠypPN(E <UF4 (ncQt@͍ޮN2_P(d2 1,hTbWЫcCC[kEO./ gOoO )egC5 2J"1Lb~СDfE8ѿX,)e\>v{ܫ_s_/Rt;{SBn~tݾ`C#ӝrbjtdwvrbsmU&xy%Dh>W~T0x# N›J]n)nX>3>>>4$ aa^wq9ё)WO@X ˱w2 x1<4vdrrfbbz|lvj M[RH{o@ ߟF u" xC{;x@ɱD8;6ډXG A8ņL/%|>ۓ+KG@|i4hQd^,{1[OQJv c[Dx5y.hx+hbĹy-!F'S$RTʅ)UՍ5 5-u :MEFjbNIJ3b#",Fcx(R*-%AppwkFwݻuw(:12|jlt7;࿕1;ۨ7$%(ROXӪ%%1BxRfںz/9Pvrta25|H$bs1[pL}u(5G&' —:- yo[M}V fQ#5b"iH)ZRDU"Hf<O՞?{΅sTPa+d2qY\wLa!rkqZjgĠ''&ݸ~W.p)no3?W,q(|99Ϟ^%'ƿDѦJ`lc]# f1槦&1ChSAiQaIaG*c1NdtacC}x`\J_ݛY?s1E{OE MV<#HFdك)֦#GW-yy+y a/H%.MXqav.D.swwߏ뽡Y:z{{?qۛ(}ii$z N d27VO޽y՚⢨2#c|d}Ą)Q pF.fʴTeZ2=--9ɒkj( X8YjUJM{=STHj&P';swOe|wBp(]O CBеLX=~2榦'=}kέLF@JB<T\R }[p~~>-D:TdY=qZ:NQp{Si@"ECЩg@b\LtMEE(EFQBQZXQ '쥥(E3ڪZk*+@R6׻( B^ZHM)5@!SNDdWCCiP=Ҝ"޷ݧ]G {7-E_*{<>?//ꥋׯ\vލ## E|loEsFrYIQa]uS++ b=@`QQmmMmM?qۛ(H4ϟFJ֢٩Iרd{SꉕՓUtr~fFD(E)As3Up6EEI- J* _mQ)xdr"~labW"z.[<rϒݧGE]Zz{%FEeF^(4:4x.sx94*aS'V1fGF.T&{imlhokl@Π!dt9me@)noQN@ʩ2e ?L#Fkom9ow'Ozf!+꽽}@Nu&c1CIerl(HЖǎ/-.c97\ɟZζ͵'Z^n.Entw${*~绨 f0VbD|ZIZ(RRR\"e2pkD/5A&[SY’(??JE6+y?qۛ(B3"kr2VZZ\r1d0L|ч_}/>#՗_~ &IIEDRigf<[1df E-.u+ϞXCJ>Ka^K^k?s]+Μzh'بG}M \&Ο?{IX(eww(TY#WYEhbv΃;}^OW;cQ9Jmionki4̬8ğ`tx3ΝzFrwwOIg2J_5~dz:NQp{SuM"V: %Z<R'bF\˗A:dgj^hZrRVS\&A )ڮ]rf{;gwO;ӧw677׷7^Kρ*ۄXDZ5 wxήh4^r_]J3oBVsGOWCXw/jQqxx‘KV-+Ke@TNwSW+*Nt&SMedgk+bPȀvs+),<0;{;NQp{Sw{;Ϟ9u3/={vg#"Ѹ>RLKN~h1gD%BXFsI$ɓzx"{ڡ.:yʫى-BQt7+8a(h^_]E#8Ye p!~-];XLb ;ѨTnnn2M*w6N@^EQ* {H@yntzPk} i8 S7EZoݽ|tafr <29d>vlm-=`Б a $ s(~~Ņ=,3Fd}MPI|ǎY,@Jڝ!bn+)V "Xr>W6*'᭧߆Rpն4U#(җ(؆667챣%D.vEbB"%T {yyiԤD/OOAO?7d >-hؑޒ‚榮N|74E޽s"v;P4)hlx왝ݛƴ"{w޿W^VSIQP\i{:i>$qq)I*Slm:ϞۍR[]56:;5)vBXdEz@{iIEN()*FEBT(VInQtӐ͏xbh$P(T_TW A epsX^3!IYccbbI%ߜcq-NiI>HaP6ȓu.; o ;l6^'s8Ȧk)NQpP}d9$X>66<gzk*! |vNgPYC#":]\t46:x,X"Z@PT7ֺ(:9:8;?~|A= wfsP=&:҉Kǎ/-8 .I)KUz߈ =Vvgx+CKB9@W$ k*+ɲ&xlh676$C2e%) zC0А \( rN"2X.rww??ɓO?|ݭQ)sr{h{lu2NQpQa Lw)IUz*NJML ~@"= D0,2,,!6F$'&0 =6 E35\_(ywy#jr :]eNQp(γSS#D Zjf&ł3h{xzb#6+bCAuH1a{* W|Kq8j{::\P;-rr_y=mM =m&jxiɝEE;;+Ӥ4@єĄ*~l2LLVF@sP uHzu~z Ek+M#3._j4 AÇ@^ps;;f++@t;3ѭodp'WEX~txׯ\rQA(BByy(B./?DF|o"TVh*p˟};oڒg24JEuENQpAѨp] ?$DERѡʒh=0 HK㝳.@ Xk 3G&'\TE_moŋ1$~qh#D&Omjlpjx߉n=~&9Z_*W._pEQ'B%Ç19U(P`;VDF1tO\?j( UA#66d*@Q )`o6]3UJ_ٙ@Q[IqNV(%&SkccoWW]M 4dF7о /ϒkTSɉȬDtv ><@:31QRQue 啎2ԇ'\'Qp vkiݮVBgfGV7$G$3_ oJTQ"yaPT,GFFپv0T; *ɀN0U^@]X^>hl%QtY*ULTG1QQᡉ뀢5- ,fNQp/LQcvvUy^b^쬪ШTfCr hzJ$Rt)JRlTzzH&'05hFkQaAsŖ|shpmۛ'#ṪM]WS;g7M1KHQe2ͮ޽~ Qt|dBT( I$: ?q몫:25U-C}}Q@O`Ow]UUtdAV*mM:P[c25 %NQp/@ёҢcssSI>+Er`dpPt|hprtdrt8 @.Pw)&  FVۻy?С=%`Fʹi cN/@EҸ$'=dPT|w3iHpej4ϞrFѽׇ@g#Ԇ\c -Z5n^@OP^jknkr8EU|V+Jjs(nS4=9~}} "€yy朜FKlE f''_<35G ㏎8):+7VW#cA^'O?܄N(L{qXΎޞ~SN@tB#Lx[ɕ?XJW$]]|r9:hfbŋ_~9[#B }pM12zPpj1֎r;Μt,p0nvziI AυJK>N_ geaEE"QxxU!="ThP ҅PU( n~?E{ xIO,/_>5"$Z\ !|(J@s$=po wܹ/xSt#8EqMQvD*_LuZ4"#$RB|94 XJ#[vpA^`O`o/ *euvk:eif&F]9z4#cA $  򲲚 ucUjWXPp%⅄J nos'׌Еfi(GVUߺ~ r(B_X*@~{YedZLOmomAZ sM֖nt Ѱ0ܜhl)C򈐐jyAv6`XSYlM@QhBlL1g}sm0޸vXpxlV٩H %@ Fv44g&+`  pLzZ*#"Qo!]ۜ@{'-Q'{7n,; mɤׅ"*nw8T%%|)9>^Wfgr>qSk@W/dxzxCPPRT-ˍ CFtYYp ڳm 7EQ!@a{!njb˜5DQ^VSzybIC ,Yju:{P[Ya6ƃMN/k*/_yx. EQ&И͡8Hϰ8 hrPGsKTD+(OQe5+Hdk~+}*}&> ;e/eGܾ8\VBMUہP@֒P  T-ꢨJ ?nqby)Fci*?V*hJIL#BC 5*U>:<)H9}`u8NQp{S4dwxC屹مֆ<"Es;Z[+l[\?gH4=3 Zz j@>~ݛׯ! hmjg [DXXs}|ᨫ 98MCRAۚkk5!RTtb$i]BEPX9l6CVP L"LtbE)j@s4ezk) V(tcCcL77p H90*EJe~gVyYR)G=8EqMQpD$Zhv3[w榧V\<=1612rtZ_B_ShF撔F}_hc]"-ՐSW._( Z4&2R,DGDu.:RF1QQQc'@aU\{0-P{[ W+Z{?\5aș<bW,-.BvgWج&'Bh oiYuU𤾺:d~fgff*G枼{$b1D([WedLT·@h~nnQGߑDq=C9z=NQp{S b2ѹp?t-ɜ:tly(^/&"Qm\-Tt+6j\P̒B;vjeU?cB9"XFRSY W) mb f*[;[ GJED( KUE6ݑ=frl(@'!6dbbb##1Kb=})II~ Ԓk(9:V6ЂVkHNLl *RS4~/U^)JEI)l>(dn_tHߋ~_XdVl6}{}Pe\@(9BVWV@볲&Cv6 y誎LMLNLLt''645"׵458ʬ@`]PS7~U)RR\Ls8v{VUqq#)d2ěq:miQ =-.,hkj䙁r\(:= 0 Eן{S)Аc*#xyŜ>\F1orp$=(@򹼟*f5 ׎|%R= МcHMJ4JJЧdf11>X?v~Q6P,h9O: pۛ(sezyr[7|[ 5 fgGdž1R(ݜZ1IU##l`HIL(46JƦ\191!5) lR\,P4gjſڣM~[#2W}*TGKI)BСC(BKATv Tebd}-E-,4lVɥ*c㳿g=6 _ K]. X2ۛꪫd42Dߋ)no\˕B ;0wdiqabl Fcso?|}G~GRH6z fАd>y'N z U :TWڪVdr /Q4%)(HM5fgN\:h1RtĤţt:N^)o_Jr{YDMKh777t,Ԥ&a%85*Zt"sNVEk@fZZ4T.r82w?G!t)G ѡ~z- N-/o\^Y_qlWbe 7EQ $B68F=<ɱᡖ{i F|rt^Z h]_=:*S"4AKġRiX,L@ZUlezFLTd^Q٬%֒bRdۭ2k*[IQ_wgɄVe|l,t wDgn#E?/d3LxÓ6|9oo\,(ZZTg4JJJ\3ӒpEz|.'Gi1YFe0.)6w:I$RE&\LBՍJlo_p@!͢RnnpۛpdDOجlk3U厃@tNOMOL${yz"? d2<6["D"a 'XCk!4*&i5iʴ4(RbefutݱUE^W$'2~3W+7u!v'K~^Ar[QT>Bua2T(/kubxHͪr;\\dJbF {bsLv"M: & ?{7^["ZB!D uζ3[u &|ͽ(n)\Z?al[$KUVDQ5}]]| !Z}]]%d,ylN0?PJĢyRB|zJ%\^f+B(i O*e=1"K }Ma܊ #Ypf`Y75UKb}L8G%P\,NA8 rVJZTR0t5<<= hQ/pvP+0nJ\Y ݍxh4 *נJJ\mnh6t8nBL pn 7Eѱ!H}t "S@(ࢶXX[B!C|JP> !FXLľFښ就=ژ.bQ )= vkZ&HOMJ z +M.zg0/%FE F>w\pPD dƓIdB}|@Zlyf# K&=J^H  D&|+%#':esGfj쥥aAq\8?R zC/PU!=mXHwswkk!:ݍS7E.wdBw@YB.TRIb\,DIXavlN1<07(nR8 Aj"1?Q14<$td.Ve6ʹ@j4L ,8L(mV<ů' کIPJIhW EK W!H%H@\ynk2BE{TGsfGf͐w֩/B×Bh)n?)#[II6Z y:*\.Cdg@Z! }^\Ʌ̰{z A#L ng>nXVR\SUX[ZR ID@lСCOfl6dY 4jFHO}g2C7S7~TZ1ߟWYVJV &a GE $%c3]uS/0TRy>_gL'٠'WN$jlmب(}VVJo6,4lп -S>`˃&q8{}1+8MW]B y̭h8/[ܩuctm%<ȤNrWSiK)J l~M $5!a k$ 8"ѱqud380:Lz,vDg:ULi1D@ *{8@K v$lnk@` ciQv864pĢ2Jw/&%&MmYhQANŢ\{Vr8 ꫪ33 ijo(1W; [^\2 C| nv8ТE7o| QTJ'X#ZtP.Xt)XT04Z3uZAnܬ-6z6*;-ʲ XhkjKѢ꺨ەnIl zd!{E}E9NqH zCA~~jJʬ( OɌheyQ"TEQ}*M ϔ}Ȣ0@4h4Z>- Ȭ3?j<ύFh5Uaeˇ =%%p,KТE[j)91cQĢ7Խ/ 69+6"2,ھZ (ŢXT)ELj*+Ѣ|Οߺ%7'gtE2zeǀ30_4 c9m,:jf>ǛM"W- heQۛ7[-TW?V/~BrEgʎAypRn,Hޠg+V rsТ}f-)r33{4+&mRp9`F,3^=M3,~x'' oZhcl0E-:}] )pzZZ0 A\Z"8j_z Eu`ъI=lQA2j.B(эF#ZVUa47,E"Z4"Zj{,Z]Ya2ǜ:EIaP79vrg#5fNeyJ"0i #?7gb4E$8VV5蓝 Z8)JUBs~noo;;m=ʅeHE_ySZRE-X;*b۝ЩCya.00Ĉt9Io} beySR^8ݴZ2lGC"ZtEsv^h8>oO K4\kϜSG~mkϪT.*:?oN\?iny]RnL蹳ӨP|!N ӱC"Zt\':&,9gaV*|\&ͥ/5^k>!?ufJ?\Qo듭zu94_ټ#T5_|_Mxѣ, ]A"aѲb.jjz2)n;ݥFsqVp)}OM}Mv_SsNW:oQԮHt$)n IrWMkQA^2 -))OXх'_x ӻƛ qUwN6t%uHյ'I5Z2I-WmhQy-fU{{[I4M?"$՟`8Ww |{~{G `;N7t%[fLm[RlG01AiEźىvmkmuTJR8Ϋ5ܮӚ gl rGsOX_:pEЦ_8qqkcJUqzsb,:F[q뢡KnGn %.7I)8R ܾO4Cn3~c?54Bn=ϗ_p󛯈#_]wZ'i݁;ՒX'N?/.R-M4E׭^oxmjhk34Epdnio[G'u9Ph0ġʽMIkޏ_Up>&XlE'C-:ź(ZA^zk*)qzp[Sj{ [ԩ4񿒠k¶N.*voJ\^\تeх^IfA69ciTӇKSѢ2-z $IqB-^EG .{+! LubY~٦&,.mX[hnn$&5XteR)EѢ2s- ʊgݗ۝KOCW|:'k4Pj%s KZw0]!YRb#^RoNX2s- hͦjEݒt{]V> stream xw`.K `BH3 JA@@i*$t&RPBo -BI-3v/r33ݙ}晲ZoWnXMp+"z}Ǝ7Z #"|~5|FLgɻb!Wϵp}/ I,inVvp+gOuI ߿ƕRSO$g[9ue$yףN< -8-֕ 0z9=1\O3a_{HKLV6Q!2 ߳ES8GZLwj< |^hyoAq Kt`"=JVn9?0}$^t*p9uvq`'ZN_$uy}y |4ȢŁ H.rBgZ`F8;{b`+]UodX6:"24a#iZFa 6ȮS- 9IJERGS6 cY9A|UaBV1k3' kn!Gz/]|[)7 [1>6fE77&xaL'ihYDAo{~T: 2s5lV&S"ϒV;Ikݺ Wzʏqs;>rΠ@G_?'{%C L|zvblDQʏؓx_S>H%M8̶*xHzw SG>l- <_r=a~g47Nu+?D/Ovѕk NlVM.nEl9{;iCTi06Rhf-z*L>c펛k_= LUA4}O# e#<|ep? Q ''հBD&dk© ,R8f/0`N|疚cJQ$*FZ舦~~ scD')q9t3΅}"{ƻS=Yxμظ/۲UkKU֫Rуu X>ة`{cϔb-nwޛ/({<2϶H 7)*_/pv5(ǀqFn) rs=eU 4^e[>:gKp{kB C'1VmE>>+oj^9o!]LΫj?枤ugL*Sn>VtNCDW'ԧPZo;Ld[Lx1i(?>XWp13O!M|3ꈢp:FNTKGflDyzEv+zfQpjeÅ& jӴiP؅*Qh:wEgDVLN ](l[Ĩ\ؗ>ņՈ]O|]3}x wJZAvԚq6骄d-)^_tXib!t3 (:-1.'ch[-Ф`#IN%b.t_.kw| v,5n Z4O:OkX/RlX R?Okj?5 &URQ0$9:=>h4IIDAye2q]v_)(ǀ"**1m^;y~KkOxa{ai#OQApfqueT)(H!Y͕T4l;:1PvY Dz:Os"U0R[$1rY(v+]uHy \wq_;k1t(M0 Rl\8tvL5` URS'`5?@Uf=G;JCև5I O: KYA/R 6j9o,_Iƹ8l|:S^B/ʚ1MZ]owKfKk9ﯙA"/&=B<&N))Hm'I*؇Ң+TS*&[|1Ju&33HWq@ߴ$ JIxJ7aN{I )<1sŽ&[=u,C28"`|Ӗ;(?;hZ* v`_J?C8xo^ PϢ&4mss/F4W$飖B,m=Ǻ(Ҭb)Ok Ϊ ܊O@{HM76, ƎCOLHHiH~1`Vg?_;6lc3`-ͿhUz1?k>rp7ח村kфNK/lY,޷'t:-)r+ _ۚ.{(+k![ EGk'и.m{Lϯ#n.|%0GFH/b*X= Y,шaA] 7vKcC*uFb)X"> j(轉iq*'&1Z3dF_] (;0ج GJ{Q-@M`ĶNoJBҧ?&V ~T*T$ U AA2]64b(0Um?.gaMN)/M+\:E@  :; TKnKA2eHAK@(|uP2q}RT ?b3!}GjkUidVxG@t%pf&\*HǷD Eʳ,jsD2[޳p3ō?]E;z4d옓6Qp ~IOAf*!smIA<1AYV!B;cp7 XYS&%6(BO&]*>RT3& < q&_}\K%O\^Bo?/[(dJt}Gn{*eOPc5*;w^_tF.6zh#Y{(/aD 'ZyU]!3K}쥰+m R}B*[^$ ,2e6IxȀx:}ɶz$^]6 6ϕ &S +ň$]7QYtW4NQ',*'Mo}۬VYIeGA2FI)*اPq"t|0HP?WUiIjNbo]`㗽]> /0*oҬ_&wVA7V۽}5Ԋ0[Ƿf~;]K 4zw,vԇ] 3>R+|Q|o*U >D:i&ݡОg4u5:Tx/>#%J&fSK@Qo|(nvҵm&kVAf<()2DojWЀ 0, ދ$R1.C~>b_un:Ng{jPj\X6in14vPݢy9╲҅[cUEeLJ=Qƍ4'+uR}y|QopY7yI@>Ȩe+U0Wx,#7P_Qj+8K5f!cJF5C^{.p^!'{(ȏ*Z* Vs&+=k v@ 2)H5:H=!*ɚii3-A1/g8m 5`G--(H5i1h*ϰcb+ N#9K1|[pBKT56$v^>UJt+ؠ`j4*tT[ E9^_ArS*IUvK":̸B"QL  x~& /»@&~w@/ n Њ ({TJVMP@AŇl>nw<+\OAݍdB*p?stMnkY퇹-'뙇,[?VeJJR&a5!̓\۲-QaOno)@:P-!ytqեF-JMJ ZOH~CZ`C^^^r^1 /6Ȟ&$Ss1p:d>`tzhRJq.GړrpSi(Co.M+jpf;ɻODZGC1Yy]>N[ͷfCDvʢrSPoDc|ݜWNS3zQf%9Ow:MBP'=n#z;&|2`({sc *4w%cnX0SGd}pت̹ɬxb?㶡jlڬ3|2o%=+R}w?qಪe4K)Ig;vVSﯩŏ-t9ԍsΧlf݃)W T7E9Go;层]2py(o`(]Iy2~VRh_l"Ԙj\tޙ9GUj0:[_}:XpMl{L)lj;fv42?ЌڈJ'd|\Je8Fo MH)LoqAlkθ+Ge`Iy(YR13۟_()HS`sI?m(;_SE]|h&bOEUJy1(@RJ> #tH;+QYI*_COӦ?ήG\ACip:*"܇s"Z P0T+L3I(Xҭ;m/}b̔c.-'SP)/f~I)iYA,U?z:3m6fGa9ލGOEM =[ X-i](.J*8Cr!onJyjɽGkRQAlER͐ZehfFYA3pÂ}Ya= :G* ,TEUl9;ڲh gg"+%^PHzsqw4˜} BE %i6tέzӨ[hUe a Kt/h-׏t W;0Rs>f c,> s.=ҝ'7?i| 6dup?jM(x{2̽5զAiSpᔸ|2AFJJA!fTn [Un9nfcj|GLs`J]ANl18F** w7_)VlZKoj\lT Pi:.zuB(?!0&DXS :F&dls8߂7]s2BF̕+$![UWT.ǬJb>X=hr_[~v!_5]Gw<}׸LɤmQjUV!g[\A$l|K~ةf؋Nwea4F'G K)Jg/d s)&~?{PE[ROg3嚿 ųun$Jm*<(u8${;?q%"95j'E]Wdm\!* wRaA\aʚ>Knls2Nfvtf} #eyNJFEd|FpڝnA7Qž };͓2 ]=(ghz&OGAwd|L-s>p{-pdoSFO'ʍ3WiNZkV3߽wwS9|iY^ &lRi UӸL׈oDeฌ>W^(#(b >#<{m5_.&ug*. endstream endobj 891 0 obj <> endobj 894 0 obj << /D [889 0 R /XYZ 71 807.752 null] >> endobj 895 0 obj << /D [889 0 R /XYZ 72 769.89 null] >> endobj 892 0 obj << /Font << /F28 896 0 R /F29 897 0 R /F31 898 0 R >> /XObject << /Im1 890 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj 903 0 obj << /Length 19 /Filter /FlateDecode >> stream x3PHW0Pp2Ac( endstream endobj 902 0 obj << /Type /Page /Contents 903 0 R /Resources 901 0 R /MediaBox [0 0 595.276 841.89] /Parent 899 0 R >> endobj 904 0 obj << /D [902 0 R /XYZ 71 807.752 null] >> endobj 901 0 obj << /ProcSet [ /PDF ] >> endobj 942 0 obj << /Length 973 /Filter /FlateDecode >> stream xr0y -EAi;ӡ-PLۅ&ȷ.r&v=t;NA 86:`G DpORSp]^{s(O+,hNғ< cǑ,GB)ӻojyʉ(R\~Z@d :8\.1ַ_2wftc=c@.T||ky*`xHአA-lΓa6\LL :2w>j&Ya҆SaDG$q] 9j @fj&jvB}kqs?!'Z|?",35&s{o&i U%Du‡מH6Ez\*+2EP?ab]NVJc"m+lN t2Ui61C (X5ETS|`dk;i:|t!66 eP7"6/&P ,\»XbVXh`'L"L)N;o$F^S2l@stDOGyFp&uòb>5SdCe塓pBc' V6cѝi^=v1O=a^#Jt5Q!ED\Fz3.5R!'x|3WՂh#kpCջB7_04z5T9$VŠ {W?(TɓY ɧ*JC0}3ju:W}ͶI8#y8`%Wu9L9-[Vu=FGHB>$[Y.xS(s}oj0j.%m̮g endstream endobj 941 0 obj << /Type /Page /Contents 942 0 R /Resources 940 0 R /MediaBox [0 0 595.276 841.89] /Parent 899 0 R /Annots [ 905 0 R 906 0 R 907 0 R 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 ] >> endobj 905 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 575.588 143.003 586.468] /A << /S /GoTo /D (chapter.1) >> >> endobj 906 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 563.499 213.727 574.403] /A << /S /GoTo /D (section.1.1) >> >> endobj 907 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 541.715 179.407 552.595] /A << /S /GoTo /D (chapter.2) >> >> endobj 908 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 529.626 280.128 540.53] /A << /S /GoTo /D (section.2.1) >> >> endobj 909 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 507.842 140.792 518.722] /A << /S /GoTo /D (chapter.3) >> >> endobj 910 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 495.753 285.677 506.657] /A << /S /GoTo /D (section.3.1) >> >> endobj 911 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 484.171 227.724 494.702] /A << /S /GoTo /D (section.3.2) >> >> endobj 912 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 471.843 219.824 482.746] /A << /S /GoTo /D (section.3.3) >> >> endobj 913 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 460.261 221.069 470.791] /A << /S /GoTo /D (section.3.4) >> >> endobj 914 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 447.932 265.214 458.836] /A << /S /GoTo /D (section.3.5) >> >> endobj 915 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 426.149 187.347 437.028] /A << /S /GoTo /D (chapter.4) >> >> endobj 916 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 414.059 289.542 424.963] /A << /S /GoTo /D (section.4.1) >> >> endobj 917 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 392.276 130.839 403.155] /A << /S /GoTo /D (chapter.5) >> >> endobj 918 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 380.186 201.952 391.09] /A << /S /GoTo /D (section.5.1) >> >> endobj 919 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 358.403 149.957 369.282] /A << /S /GoTo /D (chapter.6) >> >> endobj 920 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 346.313 224.238 357.217] /A << /S /GoTo /D (section.6.1) >> >> endobj 921 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 324.53 165.21 335.409] /A << /S /GoTo /D (chapter.7) >> >> endobj 922 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 312.44 235.147 323.344] /A << /S /GoTo /D (section.7.1) >> >> endobj 923 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 290.657 177.145 301.536] /A << /S /GoTo /D (chapter.8) >> >> endobj 924 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 278.567 245.07 289.471] /A << /S /GoTo /D (section.8.1) >> >> endobj 925 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 266.612 270.374 277.516] /A << /S /GoTo /D (section.8.2) >> >> endobj 926 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 254.657 279.371 265.561] /A << /S /GoTo /D (section.8.3) >> >> endobj 927 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 232.874 163.397 243.753] /A << /S /GoTo /D (chapter.9) >> >> endobj 928 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 220.784 235.625 231.688] /A << /S /GoTo /D (section.9.1) >> >> endobj 929 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 208.829 260.93 219.733] /A << /S /GoTo /D (section.9.2) >> >> endobj 930 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 187.045 158.415 197.925] /A << /S /GoTo /D (chapter.10) >> >> endobj 931 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 174.956 231.5 185.86] /A << /S /GoTo /D (section.10.1) >> >> endobj 932 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 163.001 192.896 173.905] /A << /S /GoTo /D (section.10.2) >> >> endobj 933 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 151.046 231.5 161.949] /A << /S /GoTo /D (section.10.3) >> >> endobj 934 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 129.262 136.368 140.141] /A << /S /GoTo /D (chapter.11) >> >> endobj 935 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 117.173 207.939 128.076] /A << /S /GoTo /D (section.11.1) >> >> endobj 936 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 105.217 233.244 116.121] /A << /S /GoTo /D (section.11.2) >> >> endobj 937 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 83.434 181.748 94.313] /A << /S /GoTo /D (chapter.12) >> >> endobj 938 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 71.344 247.48 82.248] /A << /S /GoTo /D (section.12.1) >> >> endobj 943 0 obj << /D [941 0 R /XYZ 72 600.215 null] >> endobj 940 0 obj << /Font << /F28 896 0 R /F37 944 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 993 0 obj << /Length 1220 /Filter /FlateDecode >> stream x[[sF~W#)/}k$3f&$'ӑaMpq%6ݕưk#5ЋMLz~1DPJ2ͷz? {߿$XqH+J``8}c $4hXO"I$dgz^?B7Qaѧuz рA_R?A*L>| ɕIu:6JQL1ߔz1l?DŽ+c1ڄ Z@l~S'R||]^]Q/q䃉4فtiNZZ`M7Mkofl/`[~ַ\ͦ%:8y ^,)<,Vd HX.lG6#_#XgU1X3ӺigŹ'p0m,ׅΊfMТ1wM k0o \doJ?ѩ.hu}5;d.V2/At\_f뫚I¥l]`7̡̫qXQ%~!ӀKɹWSNTs(fQW:Ӽ=YQu::h팡eHDi N,jYPjBa4):neU|.FQ7f-LǔG7ϿS=3蚓F1kRQPH:9텊٢b>Nm=Sgk/3P6oUiމ#|ƣI:QGRaYӅ5*aDL)J |t)[2%*.ln"# cހZ 09rٻPE'q;t^9b(ApM1OʆRnq ;8˜M NḬgR;Ymxn2ʸ<-0/uqh> endobj 939 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 756.774 298.797 767.678] /A << /S /GoTo /D (section.12.2) >> >> endobj 945 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 734.991 126.964 745.87] /A << /S /GoTo /D (chapter.13) >> >> endobj 946 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 722.901 195.466 733.805] /A << /S /GoTo /D (section.13.1) >> >> endobj 947 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 711.319 209.862 721.85] /A << /S /GoTo /D (section.13.2) >> >> endobj 948 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 698.991 191.6 709.895] /A << /S /GoTo /D (section.13.3) >> >> endobj 949 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 677.207 145.783 688.086] /A << /S /GoTo /D (chapter.14) >> >> endobj 950 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 665.118 248.028 676.022] /A << /S /GoTo /D (section.14.1) >> >> endobj 951 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 643.334 167.92 654.214] /A << /S /GoTo /D (chapter.15) >> >> endobj 952 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 631.245 236.97 642.149] /A << /S /GoTo /D (section.15.1) >> >> endobj 953 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 619.29 207.092 630.194] /A << /S /GoTo /D (section.15.2) >> >> endobj 954 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 607.334 260.611 618.238] /A << /S /GoTo /D (section.15.3) >> >> endobj 955 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 585.551 166.794 596.43] /A << /S /GoTo /D (chapter.16) >> >> endobj 956 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 573.461 231.58 584.365] /A << /S /GoTo /D (section.16.1) >> >> endobj 957 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 561.506 241.672 572.41] /A << /S /GoTo /D (section.16.2) >> >> endobj 958 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 539.723 170.51 550.602] /A << /S /GoTo /D (chapter.17) >> >> endobj 959 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 528.007 250.818 538.537] /A << /S /GoTo /D (section.17.1) >> >> endobj 960 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 515.678 228.113 526.582] /A << /S /GoTo /D (section.17.2) >> >> endobj 961 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 504.097 276.122 514.627] /A << /S /GoTo /D (section.17.3) >> >> endobj 962 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 481.94 121.982 492.819] /A << /S /GoTo /D (chapter.18) >> >> endobj 963 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 469.85 202.639 480.754] /A << /S /GoTo /D (section.18.1) >> >> endobj 964 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 458.268 197.12 468.799] /A << /S /GoTo /D (section.18.2) >> >> endobj 965 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 445.94 236.96 456.844] /A << /S /GoTo /D (section.18.3) >> >> endobj 966 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 433.984 220.91 444.888] /A << /S /GoTo /D (section.18.4) >> >> endobj 967 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 412.201 167.481 423.08] /A << /S /GoTo /D (chapter.19) >> >> endobj 968 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 400.112 234.061 411.015] /A << /S /GoTo /D (section.19.1) >> >> endobj 969 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 378.328 150.216 389.207] /A << /S /GoTo /D (chapter.20) >> >> endobj 970 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 366.239 254.125 377.142] /A << /S /GoTo /D (section.20.1) >> >> endobj 971 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 354.657 275.176 365.187] /A << /S /GoTo /D (section.20.2) >> >> endobj 972 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 342.702 233.662 353.232] /A << /S /GoTo /D (section.20.3) >> >> endobj 973 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 320.545 118.665 331.424] /A << /S /GoTo /D (chapter.21) >> >> endobj 974 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 308.455 188.024 319.359] /A << /S /GoTo /D (section.21.1) >> >> endobj 975 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 286.672 146.889 297.551] /A << /S /GoTo /D (chapter.22) >> >> endobj 976 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 274.582 238.474 285.486] /A << /S /GoTo /D (section.22.1) >> >> endobj 977 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 252.799 133.609 263.678] /A << /S /GoTo /D (chapter.23) >> >> endobj 978 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 240.709 243.216 251.613] /A << /S /GoTo /D (section.23.1) >> >> endobj 979 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 228.754 223.291 239.658] /A << /S /GoTo /D (section.23.2) >> >> endobj 980 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 216.799 196.572 227.703] /A << /S /GoTo /D (section.23.3) >> >> endobj 981 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 195.016 132.503 205.895] /A << /S /GoTo /D (chapter.24) >> >> endobj 982 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 182.926 275.465 193.83] /A << /S /GoTo /D (section.24.1) >> >> endobj 983 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 170.971 240.606 181.875] /A << /S /GoTo /D (section.24.2) >> >> endobj 984 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 149.187 133.449 160.067] /A << /S /GoTo /D (chapter.25) >> >> endobj 985 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 137.098 281.592 148.002] /A << /S /GoTo /D (section.25.1) >> >> endobj 986 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 125.143 246.733 136.047] /A << /S /GoTo /D (section.25.2) >> >> endobj 987 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 103.359 133.449 114.238] /A << /S /GoTo /D (chapter.26) >> >> endobj 988 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 91.27 276.262 102.174] /A << /S /GoTo /D (section.26.1) >> >> endobj 989 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 79.315 241.403 90.218] /A << /S /GoTo /D (section.26.2) >> >> endobj 991 0 obj << /Font << /F31 898 0 R /F37 944 0 R /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1042 0 obj << /Length 1177 /Filter /FlateDecode >> stream xv6z ,Y$Α&Vs,(VrPI:߾ )9KrčEj0w @zK Bw''w?OpLb#p=ž2myVVE([9opn!$׍mQC\Gy9r܀2 qll;,y=M.JݠZ{^ =_X쭏GpUh 6Hv"̢< 8 ۸*#+ zW!ga+dx`D?j_."A("D'ñʈ3F Γ7@]}OH:Bbt.2ޡsZ_eX<39f`2~o4w~r0SEPMVw:/"#,Wr2j~%7yɲ l,BR!!01P>BzOBi2SN%;Ӂ29r`8MLӳ"Z'q b|,!`ꮬTM^eQ]C2]YU8(找άtEOJeybsy,fB`;t^¬L6HUw;v ˆ(b֘]#Y\aR9}mٺޡ}ҫ1PP~t+:2\& }DUĂ(WOu7V@]й/ChmvhPeh#m[ྡྷLVىnFǩVAlL{\,TSջ!>u\4 |nU\{0d%{BfAH#gBKC6eDۡe΋*RQ+%NHHenˉ h\ha woC<*Q͝rl^c\8.N=9[Ɓd^fzFYa%ru<;íjtڜˑYeՑ4ι<:Ϥ&aެ4'23\z9 K}K̳$ F! fX54 Y# TKoH7| KCʯ擿&H]BSnjz`N?@hEnޔʐ}p5y^lV N=pZJ`|5?Nb0 endstream endobj 1041 0 obj << /Type /Page /Contents 1042 0 R /Resources 1040 0 R /MediaBox [0 0 595.276 841.89] /Parent 899 0 R /Annots [ 990 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 ] >> endobj 990 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 756.908 172.353 767.788] /A << /S /GoTo /D (chapter.27) >> >> endobj 994 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 744.819 273.502 755.723] /A << /S /GoTo /D (section.27.1) >> >> endobj 995 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 723.036 161.185 733.915] /A << /S /GoTo /D (chapter.28) >> >> endobj 996 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 710.946 260.76 721.85] /A << /S /GoTo /D (section.28.1) >> >> endobj 997 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 698.991 225.901 709.895] /A << /S /GoTo /D (section.28.2) >> >> endobj 998 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 687.036 216.487 697.939] /A << /S /GoTo /D (section.28.3) >> >> endobj 999 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 675.08 236.412 685.984] /A << /S /GoTo /D (section.28.4) >> >> endobj 1000 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 663.125 224.238 674.029] /A << /S /GoTo /D (section.28.5) >> >> endobj 1001 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 651.17 244.72 662.074] /A << /S /GoTo /D (section.28.6) >> >> endobj 1002 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 639.215 246.544 650.119] /A << /S /GoTo /D (section.28.7) >> >> endobj 1003 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 627.26 203.227 638.164] /A << /S /GoTo /D (section.28.8) >> >> endobj 1004 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 615.305 220.372 626.208] /A << /S /GoTo /D (section.28.9) >> >> endobj 1005 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 603.349 216.497 614.253] /A << /S /GoTo /D (section.28.10) >> >> endobj 1006 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 591.394 230.335 602.298] /A << /S /GoTo /D (section.28.11) >> >> endobj 1007 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 579.439 217.164 590.343] /A << /S /GoTo /D (section.28.12) >> >> endobj 1008 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 567.484 204.322 578.388] /A << /S /GoTo /D (section.28.13) >> >> endobj 1009 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 555.529 213.179 566.433] /A << /S /GoTo /D (section.28.14) >> >> endobj 1010 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 533.745 146.151 544.624] /A << /S /GoTo /D (chapter.29) >> >> endobj 1011 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 521.656 250.817 532.56] /A << /S /GoTo /D (section.29.1) >> >> endobj 1012 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 499.872 198.365 510.751] /A << /S /GoTo /D (chapter.30) >> >> endobj 1013 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 487.783 281.034 498.687] /A << /S /GoTo /D (section.30.1) >> >> endobj 1014 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 475.828 246.175 486.732] /A << /S /GoTo /D (section.30.2) >> >> endobj 1015 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 454.044 203.336 464.923] /A << /S /GoTo /D (chapter.31) >> >> endobj 1016 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 441.955 266.25 452.859] /A << /S /GoTo /D (section.31.1) >> >> endobj 1017 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 429.999 231.391 440.903] /A << /S /GoTo /D (section.31.2) >> >> endobj 1018 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 408.216 111.631 419.095] /A << /S /GoTo /D (chapter.32) >> >> endobj 1019 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 396.126 212.073 407.03] /A << /S /GoTo /D (section.32.1) >> >> endobj 1020 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 384.545 220.372 395.075] /A << /S /GoTo /D (section.32.2) >> >> endobj 1021 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 372.216 241.403 383.12] /A << /S /GoTo /D (section.32.3) >> >> endobj 1022 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 360.261 230.335 371.165] /A << /S /GoTo /D (section.32.4) >> >> endobj 1023 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 338.478 111.631 349.357] /A << /S /GoTo /D (chapter.33) >> >> endobj 1024 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 326.388 204.332 337.292] /A << /S /GoTo /D (section.33.1) >> >> endobj 1025 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 304.605 149.1 315.484] /A << /S /GoTo /D (chapter.34) >> >> endobj 1026 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 292.515 223.122 303.419] /A << /S /GoTo /D (section.34.1) >> >> endobj 1027 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 270.732 144.677 281.611] /A << /S /GoTo /D (chapter.35) >> >> endobj 1028 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 258.642 244.153 269.546] /A << /S /GoTo /D (section.35.1) >> >> endobj 1029 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 236.859 139.247 247.738] /A << /S /GoTo /D (chapter.36) >> >> endobj 1030 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 224.769 205.966 235.673] /A << /S /GoTo /D (section.36.1) >> >> endobj 1031 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 202.986 133.17 213.865] /A << /S /GoTo /D (chapter.37) >> >> endobj 1032 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 190.896 201.543 201.8] /A << /S /GoTo /D (section.37.1) >> >> endobj 1033 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 169.113 128.089 179.992] /A << /S /GoTo /D (chapter.38) >> >> endobj 1034 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 157.023 196.014 167.927] /A << /S /GoTo /D (section.38.1) >> >> endobj 1035 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 135.24 131.955 146.119] /A << /S /GoTo /D (chapter.39) >> >> endobj 1036 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 123.15 202.101 134.054] /A << /S /GoTo /D (section.39.1) >> >> endobj 1037 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 101.367 129.723 112.246] /A << /S /GoTo /D (chapter.40) >> >> endobj 1038 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 89.277 196.572 100.181] /A << /S /GoTo /D (section.40.1) >> >> endobj 1043 0 obj << /D [1041 0 R /XYZ 71 807.752 null] >> endobj 1040 0 obj << /Font << /F37 944 0 R /F31 898 0 R /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1094 0 obj << /Length 1652 /Filter /FlateDecode >> stream x\Io8Wh"Q0L KBhCj9ru]bSL}[ދQf%TKd`S]IDof/W^#C1ueuP1BCY9`~Uhoկ%B!0756P["J-MBm,F(sǷT]@OD_ ,>/0e%.#H`y!BKce45ZA˥(4M ޾8!hP rFKFF$&:5y7d2t4QiJR. O? 9U(L$w23ٮa=NdR(EIߡaUZS^mCXIp#,m `Tx]<$n.NҎ%]YDkkd^TDI>ݩe {gL>C*Ng"G%kR yu1}URJPbءkYOxlBu61N/i@]3#YeێKy> Y1$"y/}+mWZhr'{Zl(I"]WpGJ!eU۲.s ?C]zwVTTےr5m#;9k'\ApjLoM x uCq@q-*7 yLC} mu hz 0 endstream endobj 1093 0 obj << /Type /Page /Contents 1094 0 R /Resources 1092 0 R /MediaBox [0 0 595.276 841.89] /Parent 899 0 R /Annots [ 1039 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 1070 0 R 1071 0 R 1072 0 R 1073 0 R 1074 0 R 1075 0 R 1076 0 R 1077 0 R 1078 0 R 1096 0 R 1097 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 ] >> endobj 1039 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 756.908 120.139 767.788] /A << /S /GoTo /D (chapter.41) >> >> endobj 1044 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 744.819 205.418 755.723] /A << /S /GoTo /D (section.41.1) >> >> endobj 1045 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 723.036 112.578 733.915] /A << /S /GoTo /D (chapter.42) >> >> endobj 1046 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 710.946 201.005 721.85] /A << /S /GoTo /D (section.42.1) >> >> endobj 1047 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 689.163 140.901 700.042] /A << /S /GoTo /D (chapter.43) >> >> endobj 1048 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 677.073 209.852 687.977] /A << /S /GoTo /D (section.43.1) >> >> endobj 1049 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 655.29 147.616 666.169] /A << /S /GoTo /D (chapter.44) >> >> endobj 1050 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 643.2 232.088 654.104] /A << /S /GoTo /D (section.44.1) >> >> endobj 1051 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 621.417 131.497 632.296] /A << /S /GoTo /D (chapter.45) >> >> endobj 1052 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 609.327 205.419 620.231] /A << /S /GoTo /D (section.45.1) >> >> endobj 1053 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 587.544 134.705 598.423] /A << /S /GoTo /D (chapter.46) >> >> endobj 1054 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 575.454 366.891 586.358] /A << /S /GoTo /D (section.46.1) >> >> endobj 1055 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 563.872 186.061 574.403] /A << /S /GoTo /D (section.46.2) >> >> endobj 1056 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 551.917 225.892 562.448] /A << /S /GoTo /D (section.46.3) >> >> endobj 1057 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 539.588 251.366 550.492] /A << /S /GoTo /D (section.46.4) >> >> endobj 1058 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 527.633 250.23 538.537] /A << /S /GoTo /D (section.46.5) >> >> endobj 1059 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 515.678 350.793 526.582] /A << /S /GoTo /D (section.46.6) >> >> endobj 1060 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 504.097 222.584 514.627] /A << /S /GoTo /D (section.46.7) >> >> endobj 1061 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 491.768 267.704 502.672] /A << /S /GoTo /D (section.46.8) >> >> endobj 1062 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 479.813 350.852 490.717] /A << /S /GoTo /D (section.46.9) >> >> endobj 1063 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 467.857 289.024 478.761] /A << /S /GoTo /D (section.46.10) >> >> endobj 1064 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 455.902 294.334 466.806] /A << /S /GoTo /D (section.46.11) >> >> endobj 1065 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 443.947 305.063 454.851] /A << /S /GoTo /D (section.46.12) >> >> endobj 1066 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 431.992 286.214 442.896] /A << /S /GoTo /D (section.46.13) >> >> endobj 1067 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 420.037 275.714 430.941] /A << /S /GoTo /D (section.46.14) >> >> endobj 1068 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 398.253 146.092 409.133] /A << /S /GoTo /D (chapter.47) >> >> endobj 1069 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 388.221 204.641 397.068] /A << /S /GoTo /D (section.47.1) >> >> endobj 1070 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 364.38 119.322 375.26] /A << /S /GoTo /D (chapter.48) >> >> endobj 1071 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 352.291 220.93 363.195] /A << /S /GoTo /D (section.48.1) >> >> endobj 1072 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 330.507 144.538 341.387] /A << /S /GoTo /D (chapter.49) >> >> endobj 1073 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 318.418 224.248 329.322] /A << /S /GoTo /D (section.49.1) >> >> endobj 1074 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 296.635 135.571 307.514] /A << /S /GoTo /D (chapter.50) >> >> endobj 1075 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 284.545 234.37 295.449] /A << /S /GoTo /D (section.50.1) >> >> endobj 1076 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 262.762 145.603 273.641] /A << /S /GoTo /D (chapter.51) >> >> endobj 1077 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 250.672 366.891 261.576] /A << /S /GoTo /D (section.51.1) >> >> endobj 1078 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 238.717 524.272 249.621] /A << /S /GoTo /D (section.51.2) >> >> endobj 1096 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 226.762 524.272 237.666] /A << /S /GoTo /D (section.51.2) >> >> endobj 1097 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 214.806 459.634 225.71] /A << /S /GoTo /D (section.51.2) >> >> endobj 1079 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 203.225 166.126 213.755] /A << /S /GoTo /D (section.51.3) >> >> endobj 1080 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 190.896 236.104 201.8] /A << /S /GoTo /D (section.51.4) >> >> endobj 1081 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 178.941 377.282 189.845] /A << /S /GoTo /D (section.51.5) >> >> endobj 1082 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 166.986 209.284 177.89] /A << /S /GoTo /D (section.51.6) >> >> endobj 1083 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 155.031 240.527 165.935] /A << /S /GoTo /D (section.51.7) >> >> endobj 1084 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 143.449 209.832 153.979] /A << /S /GoTo /D (section.51.8) >> >> endobj 1085 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 131.494 197.129 142.024] /A << /S /GoTo /D (section.51.9) >> >> endobj 1086 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 119.165 333.926 130.069] /A << /S /GoTo /D (section.51.10) >> >> endobj 1087 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 107.21 484.38 118.114] /A << /S /GoTo /D (section.51.11) >> >> endobj 1088 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 95.255 361.113 106.159] /A << /S /GoTo /D (section.51.12) >> >> endobj 1089 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 83.3 366.095 94.203] /A << /S /GoTo /D (section.51.13) >> >> endobj 1090 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 71.718 317.009 82.248] /A << /S /GoTo /D (section.51.14) >> >> endobj 1095 0 obj << /D [1093 0 R /XYZ 71 807.752 null] >> endobj 1092 0 obj << /Font << /F37 944 0 R /F31 898 0 R /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1141 0 obj << /Length 1056 /Filter /FlateDecode >> stream x]o6+xiuE@Э]VͨIrђ&I]پhJ_d $2w3xF$MR= /dS#imQGR; -$l 3K'qHr(yҐ u,ʣf6PDEu/p%8=ɫ %}ٖS3F`f1o!o<#TBK ďlV_5  FPEZˌ(Pe V{lUouUFs׮kme9e\u]?= *M^Q7֏^Vs(٪H !'38+pXt/6-}ϿvQfP =S'eI]Ȁ󪩩k_˃ܒ6" 0/y,9ֿ}yc-zTu::$p#}DqP1GI,K q)Mϼ8% Vo&_$'qLr猸&F)Thn?bq4> endobj 1091 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 756.774 225.901 767.678] /A << /S /GoTo /D (section.51.15) >> >> endobj 1098 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 734.991 124.762 745.87] /A << /S /GoTo /D (chapter.52) >> >> endobj 1099 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 722.901 223.7 733.805] /A << /S /GoTo /D (section.52.1) >> >> endobj 1100 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 701.118 124.015 711.997] /A << /S /GoTo /D (chapter.53) >> >> endobj 1101 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 689.028 224.248 699.932] /A << /S /GoTo /D (section.53.1) >> >> endobj 1102 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 667.245 114.789 678.124] /A << /S /GoTo /D (chapter.54) >> >> endobj 1103 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 655.155 184.397 666.059] /A << /S /GoTo /D (section.54.1) >> >> endobj 1104 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 633.372 129.185 644.251] /A << /S /GoTo /D (chapter.55) >> >> endobj 1105 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 621.282 197.13 632.186] /A << /S /GoTo /D (section.55.1) >> >> endobj 1106 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 599.499 116.443 610.378] /A << /S /GoTo /D (chapter.56) >> >> endobj 1107 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 587.409 220.94 598.313] /A << /S /GoTo /D (section.56.1) >> >> endobj 1108 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 565.626 138.341 576.505] /A << /S /GoTo /D (chapter.57) >> >> endobj 1109 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 553.536 247.799 564.44] /A << /S /GoTo /D (section.57.1) >> >> endobj 1110 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 531.753 115.895 542.632] /A << /S /GoTo /D (chapter.58) >> >> endobj 1111 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 519.663 208.756 530.567] /A << /S /GoTo /D (section.58.1) >> >> endobj 1112 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 497.88 173.927 508.759] /A << /S /GoTo /D (chapter.59) >> >> endobj 1113 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 485.79 269.418 496.694] /A << /S /GoTo /D (section.59.1) >> >> endobj 1114 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 464.007 123.745 474.886] /A << /S /GoTo /D (chapter.60) >> >> endobj 1115 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 451.917 193.802 462.821] /A << /S /GoTo /D (section.60.1) >> >> endobj 1116 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 430.134 159.162 441.013] /A << /S /GoTo /D (chapter.61) >> >> endobj 1117 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 418.418 232.287 428.948] /A << /S /GoTo /D (section.61.1) >> >> endobj 1118 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 396.261 178.53 407.14] /A << /S /GoTo /D (chapter.62) >> >> endobj 1119 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 384.171 271.828 395.075] /A << /S /GoTo /D (section.62.1) >> >> endobj 1120 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 362.388 164.701 373.267] /A << /S /GoTo /D (chapter.63) >> >> endobj 1121 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 350.298 259.654 361.202] /A << /S /GoTo /D (section.63.1) >> >> endobj 1122 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 328.515 176.617 339.394] /A << /S /GoTo /D (chapter.64) >> >> endobj 1123 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 316.425 243.605 327.329] /A << /S /GoTo /D (section.64.1) >> >> endobj 1124 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 294.642 173 305.521] /A << /S /GoTo /D (chapter.65) >> >> endobj 1125 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 282.552 282.917 293.456] /A << /S /GoTo /D (section.65.1) >> >> endobj 1126 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 270.597 299.236 281.501] /A << /S /GoTo /D (section.65.2) >> >> endobj 1127 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 258.642 255.391 269.546] /A << /S /GoTo /D (section.65.3) >> >> endobj 1128 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 236.859 167.292 247.738] /A << /S /GoTo /D (chapter.66) >> >> endobj 1129 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 225.143 260.77 235.673] /A << /S /GoTo /D (section.66.1) >> >> endobj 1130 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 202.986 179.207 213.865] /A << /S /GoTo /D (chapter.67) >> >> endobj 1131 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 190.896 270.733 201.8] /A << /S /GoTo /D (section.67.1) >> >> endobj 1132 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 169.113 165.27 179.992] /A << /S /GoTo /D (chapter.68) >> >> endobj 1133 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 157.023 234.37 167.927] /A << /S /GoTo /D (section.68.1) >> >> endobj 1134 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 135.24 156.044 146.119] /A << /S /GoTo /D (chapter.69) >> >> endobj 1135 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 123.15 224.606 134.054] /A << /S /GoTo /D (section.69.1) >> >> endobj 1136 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 101.367 158.635 112.246] /A << /S /GoTo /D (chapter.70) >> >> endobj 1137 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 89.277 225.722 100.181] /A << /S /GoTo /D (section.70.1) >> >> endobj 1142 0 obj << /D [1140 0 R /XYZ 71 807.752 null] >> endobj 1139 0 obj << /Font << /F31 898 0 R /F37 944 0 R /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1151 0 obj << /Length 367 /Filter /FlateDecode >> stream xTAO0+#Zۯ-m=un*mȒ ،ޏ1Tf\ԘBߣ}Q Q8\YMObh(J[esc ,54D I ʈ!jSYIb*4!|fRHnۊ[0KU ǹ/q{,WQXJ0M9`4kd3"LEĐ@kj* \iMP^M6I|S2ڽ{wr4{b;mgbQ6Y}$PO@%aV7"?<̢?Y*rj}I@ ;h:4=nmw/AƄWuW;ծK]31pD endstream endobj 1150 0 obj << /Type /Page /Contents 1151 0 R /Resources 1149 0 R /MediaBox [0 0 595.276 841.89] /Parent 1143 0 R /Annots [ 1138 0 R 1144 0 R 1145 0 R 1146 0 R 1147 0 R 1148 0 R ] >> endobj 1138 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 756.908 155.975 767.788] /A << /S /GoTo /D (chapter.71) >> >> endobj 1144 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 734.991 126.515 745.87] /A << /S /GoTo /D (chapter.72) >> >> endobj 1145 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 713.073 119.222 723.952] /A << /S /GoTo /D (chapter.73) >> >> endobj 1146 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 701.357 201.543 711.887] /A << /S /GoTo /D (section.73.1) >> >> endobj 1147 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [71.004 681.103 129.016 690.079] /A << /S /GoTo /D (chapter.74) >> >> endobj 1148 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [85.948 667.11 143.033 678.014] /A << /S /GoTo /D (section.74.1) >> >> endobj 1152 0 obj << /D [1150 0 R /XYZ 71 807.752 null] >> endobj 1149 0 obj << /Font << /F37 944 0 R /F31 898 0 R /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1155 0 obj << /Length 623 /Filter /FlateDecode >> stream xڕTMs0 WF2ۉ 7J Pz&n7K)9r~]8I$9<FG'UꝘIuO4<#E9<%UCnWL9ԛ^rYDgie5Jʒ":rpRHQY;F_FrNǨdSQ;r}6ݔo$T=P,^$śkzzl:m$zrOniV⻮y Όſ.c=Xh$㯽\9-лST2KS zJ۶tvm]V"8Fzh>b4/Mt-1-C=Z?ԃL,>w/)c;iᴔ ڮB|<̀` #A0}๻֋-%4NXumޣ"$0u)kV/ ȱ j,8|_Ãrx;"j/QnF3\׫ӓõv0zlTdY`x,`fq|.ڨ' zw;iW|p+"4ip86N̨t 4 :nFiY&i' endstream endobj 1154 0 obj << /Type /Page /Contents 1155 0 R /Resources 1153 0 R /MediaBox [0 0 595.276 841.89] /Parent 1143 0 R >> endobj 1156 0 obj << /D [1154 0 R /XYZ 71 807.752 null] >> endobj 1157 0 obj << /D [1154 0 R /XYZ 72 769.89 null] >> endobj 1158 0 obj << /D [1154 0 R /XYZ 72 769.89 null] >> endobj 1159 0 obj << /D [1154 0 R /XYZ 72 686.039 null] >> endobj 1160 0 obj << /D [1154 0 R /XYZ 72 686.039 null] >> endobj 1153 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1163 0 obj << /Length 201 /Filter /FlateDecode >> stream xڕOk@)@N6XŊIMrI*QD_1[^z7I  _7l>a;J]b;)W"uUZ_S>CW_HH&UXEgW*FkʼEӋm%R5^Й"f]ȟ+/_qk&88RoHќyXMo2H endstream endobj 1162 0 obj << /Type /Page /Contents 1163 0 R /Resources 1161 0 R /MediaBox [0 0 595.276 841.89] /Parent 1143 0 R >> endobj 1164 0 obj << /D [1162 0 R /XYZ 71 807.752 null] >> endobj 1161 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1167 0 obj << /Length 1754 /Filter /FlateDecode >> stream xko6}4Il.RMX0dR*u_HYib'i,x<ޛqn`e'6Pٔw!_y7%ܰA0ޟgu yrc45l!C&6Fqf>ѫȲ9AFj!(7w8ĩ FeQdjYO:|>Do.K0܂o#5໗p*U #zl06>fy@|?O&Nom6|a0"Ѭ=sĘm. iGO1M"J3_+}T\dȊHE\r? fb#̈́"W\]PL(jbMay ^"K cJ() s"&a,")[4m:-R>9XH k&k6rMYO~s/:q%r3PwK|=sPAYRUJҧ({qqRE-K.\aenL[ϙ) QE6#̼,FE&rW^z~VnȒR:xWn+ C+,K<]"$#)"Pl <ӖLO[ hMפ"lHgQ@@iFݠɕ҅Ml1Y66rZXq\3"l 2, Ni$dYȕ9Sǻʐ*q@4$X\S'jJ'<0O7JJ'M&y'V_Fۿ.b}W+8QfZmb:*8 m6Ka:-[$\B Աu vld:0!}$fЊr&Fk-}ՀN?miVbpNT 84KݵghmAy4OdšN([rfEǛaZl=06Ď UqP2=mVf *r]ʤʽ[Z:ꡬRiA{{{[,5G3%e O,p\.Biv>!\N_H7Fe nLǥs+*-Vw2J%\<Ŏ8%bGd ɻ6 pi(ή{zٟvgZSk P&׋TDdR\B$ 2oFpwSU:Ur:Q<øs,ܵ)W2uyl뷞 9wvV+ DqJt,{kPy:A. QRX-K-oB՗ܝ;q>z{zt闓KTu8e~ &~Im&o4%*~Ⴚ׺O[W'8^vLZa6T _ I8ȁx)"DlF endstream endobj 1166 0 obj << /Type /Page /Contents 1167 0 R /Resources 1165 0 R /MediaBox [0 0 595.276 841.89] /Parent 1143 0 R >> endobj 1168 0 obj << /D [1166 0 R /XYZ 71 807.752 null] >> endobj 5 0 obj << /D [1166 0 R /XYZ 72 769.89 null] >> endobj 9 0 obj << /D [1166 0 R /XYZ 72 611.174 null] >> endobj 1169 0 obj << /D [1166 0 R /XYZ 72 476.754 null] >> endobj 1172 0 obj << /D [1166 0 R /XYZ 72 239.425 null] >> endobj 1165 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1176 0 obj << /Length 2196 /Filter /FlateDecode >> stream x\mo6_!ۇ MR6v-kDYr%yMĉ䬓l 4"gHp892-l9` MoapHo$/f<)XKE;1g9W7>=x=:(lAn[ؚ[ #; +Yjf9.A:tuS%sK]p==@P04Іgz664DAv\Q6|3nModlF ‡/4('Z.Pźwޏ/Ȳβ4;z_\W(pxuulfC1|Oj4ӊt;H גF\]Ӥ(EFNRMhts>.^7b@i~kit(EI^_73>E-w U/d*TQE#-/-V#@؜'(('o= |m/4oR 6hdjd!( Jc $>3\0|z;-?A4 )>Ŧ8Du'lR(ҌL > niJ&Eb"4γtγa !m\Gۛmm|`EL jw;=f͍N |Ô[9_QVkU^סj2?2%,gq-.R鮵cg 9nTjbk!Ժ1 e&(4ƫof|w*x^Lp{{h!"BɰF]>ywT),&权 k>i&B| :Q\>꡵PիQF[y ?E8>M/oX ʹs>Y v*t T2<3(su%x1*cqegQ24L`]:m<.MTvښUd[3.b+0;ZtUW~/ـhsX3u$ &  :41hZQq=oجM6r6b!wRF5V\wzE4{z?лD2P.=)$?ÑrG؇E|IvO,P޻(/~Mo8e:h>PBʺ@06ET |]+Ļ ?Y *:eBx-^ԧ<s?as&42𣆅f\C3MYF!R)ѵ3>O@9Ox ͜itA#L1|| q  UT;4$1<Iї tO:A{A{r.c{9bDr(cc~ƗYkߐq'LD~2 HK:j};Q{6T丵 SDI3mʢؤT9),x0=)f/֗iڗ?vkFW&JPl9sz si@.  "Ȯπb`p],Ʀ*4)D2y} +غh \ Jl_BOޒKMAn4a'ˮ5&M si2g9ٻ*X<r F"N]FJ>e|6`.V`z6̇)ylH}{G&^LL+ͨcrao:e]N{DTDJvMTݍӄ7϶MsGXVOG9MzkvN. nm&=܉CUy=4欴6g$Emf-A/Z˧*cU&6"+]]g?GXycy>:X)I VsrIIFO`JʒخWCQ]AwNiͥņ7.f7OI\o^1X1> endobj 1177 0 obj << /D [1175 0 R /XYZ 71 807.752 null] >> endobj 1178 0 obj << /D [1175 0 R /XYZ 72 345.869 null] >> endobj 1174 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1181 0 obj << /Length 1943 /Filter /FlateDecode >> stream x[Qo~ϯ8$%JT-n뵻.P`oPd:QW\QdQwHlIq7uo/F3Ù ѡ޵G8=KHțν  8$7yo7~y4W1BMUVJr/BG?}7=qc^́uHD{;̀GIHZx` (gPwÎhqJ}J}mKYG$''`|Do5HJO7iyא|EF-RGQH#.9ҽאq`5||Zݢpjq2UYgkl ug?ـc?XgE§HlUPKU*2?Tf|~1hf)D#ख-*]\@z \QlV< p2|(  #[ZWYU&֯L${$CAcsݚm{fHiCuP}1iv|\cw6.R_}ϠY^L&6 U}=ᔲ?~N~;"p ^؝1F. aMSUG7|1Y{K({5TjoL QFxjxD2蠑xC1ƀz9C>ǣ_sq<3H@#fjhJ}u_ZssGqWU2]U%tf0<-S!baFA(GղVбW:qMZf∨_UrϯHd^+$j֗ZJwMc0P@ EJzP3ddm3}u&+`u )hi&Qq7 Z`s44} yn7oN3Ӻ~:K.r a+9eUb2,U93F;Υ6r5q_x-]ݸ.zu-"֮Y+ WcXfeCsaaq /lb[fDF|S?6imՖIJ蚇 .vzpYYi nn(˷)j.&}ƙQzKI8<DN8K䵘.t2>tuG;&v u~DCY X܆ԯz;0;=7=`{aSǝH31E@@Q5Ah3;g[䓥($BnY1LZ# 4S'n a(rQ驤>4S{ff&E󫍧F`s'lw+N/0 :Р_{>'k?;#Hr-'O=\sX6;Xn>ҭ0/2/ endstream endobj 1180 0 obj << /Type /Page /Contents 1181 0 R /Resources 1179 0 R /MediaBox [0 0 595.276 841.89] /Parent 1185 0 R >> endobj 1182 0 obj << /D [1180 0 R /XYZ 71 807.752 null] >> endobj 1183 0 obj << /D [1180 0 R /XYZ 72 492.55 null] >> endobj 1184 0 obj << /D [1180 0 R /XYZ 72 336.524 null] >> endobj 1179 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1188 0 obj << /Length 1900 /Filter /FlateDecode >> stream x[mo6_!Kl "RR؊hv[ Pl&K%Q=ǒ8قŐwǻ7/?!OPa],Z"2bj]?}:42J4cw.C'R`}x7bR"Fsbp[Sga?ٰ&m /VPtxËFy! ^%C 3DkGeΰv>81lj g#ǍiC8t8Ԇe @=z-k/zp|LHfT~ƘFr(Џ-> *0ꮉo 6B $7_*gO}Z`h9YX]F(bdDMo\@cvDzhC\O 1^W=J"Se.(Ɍ2^t8'=lb'IZsJPSk[Mċ* ݙ Qvr#uuSfnUr$RثYrt-œI'IsRa"ZO9o #p. نa|jJ@MlݘEQZOZe:.lʚw`70+/ %`I\d^KukO|CNqsN,$uk jO[i/L9ݍ3օO&u;:g.lm3klv3w Gnne_!,qΗOK݊˝]ڳ~03R&ocA99k/>յp^q1^g›YtʐĚ~'rU~v&)k\;G!L˓Wme,WJ$ơx2 Q͓18Nwwgsgo)(H}Kҽ<߳2{b~4Of0fIK.}jK^a>PDž弲s_7:ǰ6mzѨ Y6vbL=ުr51 Y e@T^"* TQ3P0j6 ) )Hd)*YUx4CfQKcZ xR ̂ L+ I0+e4BV7d"RrQRBXÊFFQQwRA!:Vr={%q` giTjӠny'w੥=JDd[Uoe?=&3,OB!6C|kE0Z^#=_#d(ȇƟÈUDmλVM-EY OZa~/U_(n~:2j폷l(bIn^]7i\ ûEKxЍ {5)X endstream endobj 1187 0 obj << /Type /Page /Contents 1188 0 R /Resources 1186 0 R /MediaBox [0 0 595.276 841.89] /Parent 1185 0 R >> endobj 1189 0 obj << /D [1187 0 R /XYZ 71 807.752 null] >> endobj 1190 0 obj << /D [1187 0 R /XYZ 72 693.231 null] >> endobj 1191 0 obj << /D [1187 0 R /XYZ 72 298.324 null] >> endobj 1192 0 obj << /D [1187 0 R /XYZ 72 132.558 null] >> endobj 1186 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1195 0 obj << /Length 1069 /Filter /FlateDecode >> stream xXmFίX,ݵ R*QDi"ɁPa>wr3pZ!2x}ֈ׃_fo,@!%hBKL}ͽOo WeuRD&M~( wQ@X -%"y}yU|A1S[iq@\WFv1}]C#%VD<`o@p=  HLrݸ4ĄҺcL 8hu/rED a---( @nB +d2)E;>%jh>x,{e,ua{=&ޥY dCRpXSyF]dZ{p"lT@P Q,hXԅHt߰Ap ,/MBqPLT#;y/5 +Lg$/^n$LASXKD,2 pJP!fAx(5> endobj 1196 0 obj << /D [1194 0 R /XYZ 71 807.752 null] >> endobj 1197 0 obj << /D [1194 0 R /XYZ 72 695.993 null] >> endobj 1198 0 obj << /D [1194 0 R /XYZ 72 599.215 null] >> endobj 1199 0 obj << /D [1194 0 R /XYZ 72 538.83 null] >> endobj 1200 0 obj << /D [1194 0 R /XYZ 72 480.602 null] >> endobj 1201 0 obj << /D [1194 0 R /XYZ 72 384.126 null] >> endobj 1202 0 obj << /D [1194 0 R /XYZ 72 384.126 null] >> endobj 1193 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1205 0 obj << /Length 222 /Filter /FlateDecode >> stream xڕO@W̱M`ܝ~ڮ i)hSp0i޼L޼W0eMȂCIC`Ei%6z~1l:ڼ5AV G G<9{vb{A 3PlPv8Jg᫿!SNWfKƯUoWʐ$l/AJZ\>-?= L(yPOO|ّ~Q endstream endobj 1204 0 obj << /Type /Page /Contents 1205 0 R /Resources 1203 0 R /MediaBox [0 0 595.276 841.89] /Parent 1185 0 R >> endobj 1206 0 obj << /D [1204 0 R /XYZ 71 807.752 null] >> endobj 1203 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1209 0 obj << /Length 1526 /Filter /FlateDecode >> stream xZ[o6~)u 2]t)&kC[D7t$Iw(Ҋ%- l&;Rg k/{X}#5T-L4?}_i]bdQۂveӏȵ&i3Dif(>_|tvU90-*Cӵlm@ 9z>31w4jȈmdQDcRC C yv~7O޼Db¥nQˀO"Z?,t}k9 <lKJߘa0ٔg^ɩ7_#f}]AGRC2cXTmKOVqx,Ty4'LT|r1'%=qGWx`\ŰTX^ K. dKW=Ry_M}!l{I  lȥDl4dCc!P66RF kwAE{ظ2FtFk<()>)ݩs,8`gvl°\*<A8d7 I#diܜ # Dwvn) g(iV,Go8 x_zaOm> endobj 1210 0 obj << /D [1208 0 R /XYZ 71 807.752 null] >> endobj 13 0 obj << /D [1208 0 R /XYZ 72 769.89 null] >> endobj 17 0 obj << /D [1208 0 R /XYZ 72 611.174 null] >> endobj 1211 0 obj << /D [1208 0 R /XYZ 72 572.33 null] >> endobj 1207 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1214 0 obj << /Length 922 /Filter /FlateDecode >> stream xXQo0~WDj<`0Vi֪mi޲(b i`i0tiB:MHwF[F֫3&Pyh@>C~ #4qӅUaɑ e#@0Ǥ?]ZGw+v1|4[Y As_"@r b{pDWgP)y أ=}· #*pBPp[$#@Ci u7r3Ty"W\ +4,C--H[I̹c\A% v]%aT48^Iag H}xSn<8JpԔh'''\39 *jZtnXLJdyk !a.%aވx_' \i9!r7aQvc;M*uLOǕv ry-j>sZJk9tfQ^f*̲86C%ٔ3 7bʃ:<ܺ pSq(`) `S> endobj 1215 0 obj << /D [1213 0 R /XYZ 71 807.752 null] >> endobj 1216 0 obj << /D [1213 0 R /XYZ 72 691.012 null] >> endobj 1217 0 obj << /D [1213 0 R /XYZ 72 526.626 null] >> endobj 1218 0 obj << /D [1213 0 R /XYZ 72 526.626 null] >> endobj 1212 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1221 0 obj << /Length 1349 /Filter /FlateDecode >> stream xZ[o6~())tmzCv:tLMWt~|#Nx'J AA>P8Dǐ'vGQ:_"@˪U\N1\'o(`MΐqLs)td> ?frvqjN]츂)d1Դ<{|'-Â9 d.|!a0$''%G '±T̄GGPT[Ʒ[a2TZ#u0m8 F#FILGr!CI8٧'O4y}Jw`B ˁ;bWA ogq9HLF 1_R7[[Toeֆ4eԡ a@88^qH1'\&[S- MrssŜEIVi:fY-R@H](jTc]-LͺZ|h* Bq_@@#bڶecJ0r3]y+VU&[Ä WO8 'LQ îs1Nv_ C}:u_9>]L8NyQBRR^LV mγ k0onZkۢ<69 prt >T7,ݕ|.F__M e/QiX*?Ã7ꄱ $,†0({bMM߽8yl >f̤Lj-wx6 gzc4ߎ"Jr%^+Bi>ꤋ:U?BJezd:.vqZLW+jgj8ßwt^C۾zfB^@5 H7)15V87$SW*.l_:njj?yR"+Tf>LʣlS~ oȮO> endobj 1222 0 obj << /D [1220 0 R /XYZ 71 807.752 null] >> endobj 21 0 obj << /D [1220 0 R /XYZ 72 769.89 null] >> endobj 25 0 obj << /D [1220 0 R /XYZ 72 611.484 null] >> endobj 1223 0 obj << /D [1220 0 R /XYZ 72 572.33 null] >> endobj 1219 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1227 0 obj << /Length 1068 /Filter /FlateDecode >> stream x[mo6_uf5ERo Ȃ,u6BPe:fLͿ)NYXM>:/B peұ~%0&3)^ħݓˡLyX.b.9L_ B4y9t`XC; |dA;kU+!=qZS@}+3[G%A"! 6Ĉ!ziƷQŎC[ٽY SEKJ "GU]b@ezΦk]BXu *#<[HT InA>@]i,hVlkθFc699V|ɢ4I,x> ӡn{ux`=z[ŞLِ(,ЫǁUÐdJi[˻2t[wBe^}C:3=G/@P&naZEL+h+{nJ5nD/ѝӉ::~u U׳=wm"YfzcY)4_Uá jhb`CUXߏϢx2NW',[!X:Vuczu?C ͇qtG=3m5aØYɳ_4c!ҁUb4ߜ0DVGlɿF`!M~i HXo ZP?Ki)5QjZe e4X+V.G8QjM1}PZCÆX؎LDY(V125 lam8ZdĂ]q-}""ͯLZC[H>iC]ƴ)ڭ01PI*OU~6 QMpٸql|X. BMUcS&7>R嵚1wăl'? Q;:yeu /58&Z(Yۦе7R= !]z~DMa.w,e9H@ endstream endobj 1226 0 obj << /Type /Page /Contents 1227 0 R /Resources 1225 0 R /MediaBox [0 0 595.276 841.89] /Parent 1224 0 R >> endobj 1228 0 obj << /D [1226 0 R /XYZ 71 807.752 null] >> endobj 1225 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1231 0 obj << /Length 1438 /Filter /FlateDecode >> stream x[ko6_o&֐Ȳ4sGTvI]JbɩP&phB<<^ZWHU~A I*":tI/]Tnģ~lNKzԥVD/)?6.4LH14_ba$C~$Wy$j*]GsD`HH9˪T" +˭ϙ rc,ֹE\K27  0| 4%wBܫ̽EBE%Nz*3HCR &9985x-v F_Zyʭ 0aOc!g]! r%]@QE 3<4Y;WO80;f-V􌕎D3 (?kn>9o5钆T0Z7r X]8lY؁,0w(vf4h^aqЉcl4*!>SL3U?OU{DbL`exT.gľnUofI0ubM,x4tl˭J<J4n-;B&Dˣr+ gӡ`dshw:E8&'N'sbܴ]+r>xy5}tA͘ +ik5ԎsS+nf}9W$tXˈ" l=/')JG46]:־uEZ9/KEHptJF>G.'G2C'&߉:6g h:'$ lEgQD4Pĭc`i:nD*QEX˔R;;;#6L[pttp{VQ[Co 7ȍ2yּ}S02^Hp=Y?NF^ ,z|R>X%q>5SA-ZT}rϞ o˵f^wzLWjRE-{eJ7n+^2RU¥5O KH:/MZ8챌A|BK\d}ߩgSq|=ݾJ0,!,G-{sQcwEE;,enU0[V ΠGG1Ѳz{2 'Ug*ОơY"K" sGza9OQJNF#$Yρ\[Њ"VƋ;Dcם3wZf/AfdED^SE{ش["n&$oClɸ \̛z]}Z;E FH}K endstream endobj 1230 0 obj << /Type /Page /Contents 1231 0 R /Resources 1229 0 R /MediaBox [0 0 595.276 841.89] /Parent 1224 0 R >> endobj 1232 0 obj << /D [1230 0 R /XYZ 71 807.752 null] >> endobj 1229 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1235 0 obj << /Length 1631 /Filter /FlateDecode >> stream x[ko6_`1GJV ˲Et A隋,i"%KvZ[K#*[Z?يS3X4rlۺ)Ϋfه'o:bgS^JXuO0GYo i`RV+@;r՚*F@Lv+?ZPPEyɲieb`Au i!MBƲcȚrLs4XkpUJ2)6 izqgϞeaʭZFOVy8`.Yו5*Y0N `D|@|—'GmBĔ$Sq_g/:7'g/ )>~+%% 6&clA`GtoaWs:QP>/NHF^okl*9U{܋a}:L }qdR*BQ2Hv0Z{,00:k'S/hAܨS_=8c\Wמ7]$T8t{bUPj}4񂭃ߊHpjA.px8h@8 әgiZXt] YuYu!5y_Ϊ>LUa@]J$h4UJٚ-sd%=r Wk[ >SSĕ쨺ʢ^7`]C@,n;f Sd>4NY3.v !cP &2 "Fv7J*AB"2.iKdBRLGK a*oYE0|>B*a:p42,p\9 i7nʺ07e]5u"MYuYt_&H "֞EKP9ǭ ]4fBƲǔgV -h_ᷗgn:HzU)S*i>D.u~0 B~#(=Vz"{C7°{۫|>7ӄ7y ^Nx%Ux`RIcqF}E|8>M `oSp|c~-8CϪ5ҌQ=2 [ZBƤtFa8kB0FħSDgJ,}\U⹏'gsVd@n2L]ɮ@Jt| Dyr]Fq_Em5N$ AJ:')Hݪi c*?F1ۦ?W[ aWY¿S\kQ}uy>^}ʓzj8UiP`7^QȷwےKӘ$i <'R ;8%mۅ6Mxt<$TK$Ͼ7YCv d eM CWw}S&4HR/F7)#<;'.uqj/^zۙ^47)߼}!QX@gc|`hf{Ci)n?x߭ ꀭcvU`g endstream endobj 1234 0 obj << /Type /Page /Contents 1235 0 R /Resources 1233 0 R /MediaBox [0 0 595.276 841.89] /Parent 1224 0 R >> endobj 1236 0 obj << /D [1234 0 R /XYZ 71 807.752 null] >> endobj 1237 0 obj << /D [1234 0 R /XYZ 72 636.459 null] >> endobj 1233 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1240 0 obj << /Length 948 /Filter /FlateDecode >> stream xZko0ί$RJݫ괮]I QdL2 w 4 I׎4Dre>q A'=3-7@c!2jGWӳ!3iv݉/I08l]1N,?sL:׽ʻS 5-ruMPe_V>8z. ӥ(DC]tO<&֩ cǽZ9/0)$ȠtKŔռ„҅0Yf\;< ɒ2^]KM*6,QpB?6?tF} LL`e1 B)2GGGK0yo8S'c P",`U0mEK,;> <:(`xky(wQ9+kQa0T,f'J8t۷bދmԃ }$܎E9NnFB4 O(e03Wб KU)]rsA^U ~);Uh73K \ C#'A\Q0|hEJzDԹI5(^ЯHĢd ȑ)v"⤵$Zu˲c6(`+$=4ɰr&+uCi&6' 1 #uF\7Hu] r#|EG9#YΎO?'/=ۢxJo+ካl^@\>5Eb<Ski. ?ްLܹ;jJkX}®@UߊLEѭ-uohYoW4ú5fXrp3kvӫl8=o90K8_=n4H 4BX08q{"Pގ086o ]M%8YmIvC endstream endobj 1239 0 obj << /Type /Page /Contents 1240 0 R /Resources 1238 0 R /MediaBox [0 0 595.276 841.89] /Parent 1224 0 R >> endobj 1241 0 obj << /D [1239 0 R /XYZ 71 807.752 null] >> endobj 1238 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1244 0 obj << /Length 1721 /Filter /FlateDecode >> stream xYko6_!dc1'RP k.EviK@h$C(IlE{xiԲ׃_?J+DG64ycy ʨ9 ֧BbLLW;h* %W$5h F)WD?oo Rw w/][akK s"Čx5au^.|E}) wU$D̀nu="#J ?<(-9{quԻ#8 ~Zwnpj+w?0.,CeuaOG&Dh(ND\ňPiyOD5A&H_(v>У@FD1@Y4)(Qţ?Ej)K*T4 uą@7Y0Ci1W&BTKd+ 9Q}V!EɧFI=4=ȑz2S} JH=RQTgUfq]5#2h@Fh buOs㲴]ք|,B_hN]ɗNC JZaT=ʍzZ~;D2MGNZ@WZJw8EL] Ϭ wy1!Ct)7#~ҔNNϠ=Օ~Êf#z.y%p;(%>zJj=W` n4j"Nœga5+{dKf(o4)-2'5Tigzv BOOģցx͆fFXm#9~GryΖDTAB/P,D]3u=ԪMVPJ KI2!NJ9-rQ63 ԑ ~Vg.[̴0 u6bOFWL%EK&S& B endstream endobj 1243 0 obj << /Type /Page /Contents 1244 0 R /Resources 1242 0 R /MediaBox [0 0 595.276 841.89] /Parent 1224 0 R >> endobj 1245 0 obj << /D [1243 0 R /XYZ 71 807.752 null] >> endobj 29 0 obj << /D [1243 0 R /XYZ 72 558.675 null] >> endobj 33 0 obj << /D [1243 0 R /XYZ 72 488.626 null] >> endobj 37 0 obj << /D [1243 0 R /XYZ 72 325.094 null] >> endobj 1242 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R /F37 944 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1248 0 obj << /Length 1345 /Filter /FlateDecode >> stream xڵXKo8WhkV !n)nah%;$G$iؾ/qff$׹s\ѻO̙yG֡4"^3,2z|u~ddzdU)xYZTov9SN\w}ybc8؇c'-F]'ώK|*~Jd$z0?D$Oԃ Z[{#UQ)Wo_V%O,?(N,3iU4Qdm`R`ŗU67E o'ZlS튛>j4u"'^CPȹahf3V<g7 W"]]6yfܮ=,wD(2Vm>MlxF;^r U`Qm[nRL&#2ِ_e;#FF=zl;)D@t{ZaHRѥ{]S9-'886Ɩkɠosi_pKeQ*=RK{ZhzNsxl4n$+䫦7lۘiRA}2V.5-iFv.6eyRlu`N2g&( n .ո `Cu!ao MqX7~' ; If.(rnDhdldd=N!#b_6+Ua[ֻI,>~I.{5$vT`8VeyCkδ^̄ mQe#C~aP{gI&uru2|(ݦ>gH endstream endobj 1247 0 obj << /Type /Page /Contents 1248 0 R /Resources 1246 0 R /MediaBox [0 0 595.276 841.89] /Parent 1259 0 R >> endobj 1249 0 obj << /D [1247 0 R /XYZ 71 807.752 null] >> endobj 41 0 obj << /D [1247 0 R /XYZ 72 769.89 null] >> endobj 1250 0 obj << /D [1247 0 R /XYZ 72 539.638 null] >> endobj 1251 0 obj << /D [1247 0 R /XYZ 72 482.75 null] >> endobj 1252 0 obj << /D [1247 0 R /XYZ 72 410.51 null] >> endobj 1253 0 obj << /D [1247 0 R /XYZ 72 352.282 null] >> endobj 1254 0 obj << /D [1247 0 R /XYZ 72 296.111 null] >> endobj 1255 0 obj << /D [1247 0 R /XYZ 72 188.005 null] >> endobj 1256 0 obj << /D [1247 0 R /XYZ 72 129.777 null] >> endobj 1257 0 obj << /D [1247 0 R /XYZ 72 85.486 null] >> endobj 1258 0 obj << /D [1247 0 R /XYZ 72 85.486 null] >> endobj 1246 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1262 0 obj << /Length 222 /Filter /FlateDecode >> stream xڕN1 E /g$jgZP+!ͮ"3S { ] u}}pe3.oȂCI߂!0΢| j9'dl5}6]SH/CQ=B^]{D~A3j͡8JgsQazTew! E%(^=CoOb=DUPW6=RfQ endstream endobj 1261 0 obj << /Type /Page /Contents 1262 0 R /Resources 1260 0 R /MediaBox [0 0 595.276 841.89] /Parent 1259 0 R >> endobj 1263 0 obj << /D [1261 0 R /XYZ 71 807.752 null] >> endobj 1260 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1266 0 obj << /Length 1496 /Filter /FlateDecode >> stream xZ[o6~ iR"%+tYҥh.qma(hœ$ݯߑH+9l7 l&;R!E- Qd2 f:Gn "mD7Ũ1Nny/VD!ۦn1c MQC_^ )3|9PG7MbdxPXԍ& [= E100g6GC d )T#X7 4LaMfǶ 4eVɯ}pB4-pҴѭ8:6#ڵHڔk)*F_ 'àp3x !uss^JPǀ^H*8 *FmJWXzR7:ns2g^Ag\1L.9fNJF<ƓL8J#|]~iGɩ&N(^NBe` $f@\&  )BG!86AO"1/| Jg݌[XFI8h'e ¤;Uz`ndE '&uiZ3!Vzࠣ$sd q(M0?Dp'HROcYcOVT>I Դ`r `Liu($inKeQ/{g<ЁXEY [l0:&Y(WzQenn HvJOgN՘4 ./N'.$Piw Sk:y>|D3D"t.5#?IJ?xY~ڥċQϝ s(hxNn-;?)f*jVPE'DlOV 670[͝/g]lkB~-Y Fx9Ͱ\-%g R"I*07=pRcNG7)m;v߹ďp帙-ֹir8A*~/um!ļmV'PkZkqmtAEN*x t,߇d5_6ySzu3~\bQAF"YVMk9j91-*AjW ,zc endstream endobj 1265 0 obj << /Type /Page /Contents 1266 0 R /Resources 1264 0 R /MediaBox [0 0 595.276 841.89] /Parent 1259 0 R >> endobj 1267 0 obj << /D [1265 0 R /XYZ 71 807.752 null] >> endobj 45 0 obj << /D [1265 0 R /XYZ 72 769.89 null] >> endobj 49 0 obj << /D [1265 0 R /XYZ 72 611.174 null] >> endobj 1268 0 obj << /D [1265 0 R /XYZ 72 572.33 null] >> endobj 1264 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1271 0 obj << /Length 1360 /Filter /FlateDecode >> stream x[ko6_K`HJ# t]H,1Y`2EM#-ubYJHb34yyx=dBQE~K L kR$XM("}iFe\2{:nhsnZx:m!>PlZ%{ҺҐ PLCG&Jcg &P$~G).^Y !E5tHv[7oϘ0yss(i4v"5DhmQ`, TmrnX%U$Ws ԵDIb"'Vys\UTLIԘMqcr˗hL ZXx 9Q?&_4%6dSHp x's\R fC/Ny 0ݭ/Laxf8] b$pSz3ʘ9wp&tS'v2{ޮ1ɱ5j}Pe ;]F~U_cAIU0yꌇc~HtbQ?ژDBi$^g8ͱäWl7aA _ӱ2_N@萎H""hgS9 kOay!#4Xkv jqj4RZ ~|`:NON I^#9CPyX ( `syv0tD2 2j:̤awrC0>{=ԕ1'+ޓh7P^+\TȵCب4qB8p3ǞéOq\!}F I2֤eѕW4ŅF1׫b5ӉBrCid}:qMS47e4%kFTV:[~CӔ |r\˲QJ÷!: {ϳB"F@>qj=!(D[e"8> D<ts78)6+mW<re@uժS(Ϸ'(OTv/WKg.^r,s ` |m}6;d#y#*^$T9(c0gU?Y N;%6sOU؞x-C5?H(e endstream endobj 1270 0 obj << /Type /Page /Contents 1271 0 R /Resources 1269 0 R /MediaBox [0 0 595.276 841.89] /Parent 1259 0 R >> endobj 1272 0 obj << /D [1270 0 R /XYZ 71 807.752 null] >> endobj 1269 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1275 0 obj << /Length 1474 /Filter /FlateDecode >> stream x[[o8~W MۉxEҩ:m;-Ziv2t3ʅMB$&@U%jsP{ԠvebGZ҆0,Lͦ0C݇o{v?]qBenћMY`]rtPC9 5/|1A`PGZ<j&AoCC HGl_-![6$  b8݄5AG@Ȕ4yIlQ'LEiq)hH=BiWeO `SRP(idi(Qk=C%HжL⿄D\#(mq$q86EDXg`"?zҎŷ;q*zHQldkسӮ=Stv6É~"DγO!tKE~U|,r2 ?%隒`$쬕52#AS)/pT3dܳ=\$,)&J O3e5$`v`h Ѐ\c6B9=ێhY6*j׬}' ,oD0Y6;n$KbrJ fI$ pGk=^(`QetH{pK^m`6ͧ-'&0 @QLQ)Czݷn2@ MV巓.: |x8|FޱvThv{{`؆oȺ#siHn{q(eV}ou=D%7](y9aܘx'U,BZBy;O$o~6=.I^p] k)aDR5^"d&)wz*tOUs(ޒh/>g,*Fgq8u]|O8-Ξ..пඐ~Y `"\ e endstream endobj 1274 0 obj << /Type /Page /Contents 1275 0 R /Resources 1273 0 R /MediaBox [0 0 595.276 841.89] /Parent 1259 0 R >> endobj 1276 0 obj << /D [1274 0 R /XYZ 71 807.752 null] >> endobj 1273 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1279 0 obj << /Length 1761 /Filter /FlateDecode >> stream x[mo6_!d`5ER^@d]钠jӉ[$~G%9qbIIm`KXҰyG:\ZDf2C;kgGNzvv~:pt3A~S>^ F MaH&bfKA^p.+5LF-xjg?:XA%4prE Ͷ1[AP"W^R _ Xsr T,ZEb3Bn2QfcMԜsT¦(ReDs`h-3Zf erhA6HV(N )Ap8⨤<8Q*(b4b0A姽Ô'|釷Gۃ DwY%=# G0r+Ox3|ً}KO'GϏκR|7X>zJ4|Y4 T̽? \Gvg4+eas^h+(M;oo`(7sRnјO Tμ( B*ƻ q:.aI₽FUrQBӄ(xa. .?"Nnž 3# ()YRW*KsMl2ŐQ 0/8K˞PaVQYpqJ˿aʾxv-(c S\r)wyk-˕)gkUK'͙`C`QΕc.l dA`꿶GA7C?Ja<}AnIoX*a$EB)xTkѷ\o7i l,P6z̫^A8\͑S撸9/!uX[&bY怕;¶=<ـ1f1`I:L@um*o"7,?.p+M˦87vI|ܾ7R+KzP uq8QpJIn[ulbs*\PCY9R+m[q%VRxod,c]iU% gx϶K~?Qv o.|ġ G辁JA=l 2\Gr̃ȳ-Vo9kF`X dytqs`h30JFLDPŁnj0w>.a{(L딋mhd2/i݄FUckz-'?bKЕ^R hwǤORf4I:4l2VZa$h^Bb6uפ ƾeWVjZ7dTzS,[ۃ0 _ʇ2`[Oo:z8G'&|@ҽlLi)Ř%U^g3B !> endobj 1280 0 obj << /D [1278 0 R /XYZ 71 807.752 null] >> endobj 1281 0 obj << /D [1278 0 R /XYZ 72 304.927 null] >> endobj 1277 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1284 0 obj << /Length 1231 /Filter /FlateDecode >> stream x[mo6ίzJtuս;ʇI `lyaIqBI(qsMA统 ,hD)PUb  US v?z׻$3A Qo4ܹt`~;00  o T-<|Q sw~L\ _IfY7U`nG7! LL$HETy'.VQ-0^hר UӍ9&Z)&7  PƽJ͔d;bvj\!sߙ`qEnj0X4O0C Vh`JAZR1 %ZQHYM\ IiRK%*C3LQɍy3>7HB# -6 kNBr ׂ(MnFJ4VS!RWMT#nX7]&tQ B]D|"7H*-+ž?4x.z:Ǚ:Ywqb5U ִuH#F?ll(Qvɟ6!i$3,.*Dy&.*KkS7qaY ׉\ QI̎lt#/*)G^Uf3ŠY/ܦŭ0[Gǂ #9pV*} nϟmp6g*HCמ8 ۛ]Ai\W{gs=*N-WK'咆 &59g!ސ ΋'evM+/%i֢wZV;ulߞͪq a>Uz@ q!߱Fc{f9 ?mZQɷL[dk-9Ŵ&ṗh]*7׷/GτwYBgR';!<wyj\=^_7 0'z}hu}/{( , M9x{"(d=ȯ<> endobj 1285 0 obj << /D [1283 0 R /XYZ 71 807.752 null] >> endobj 1282 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1289 0 obj << /Length 581 /Filter /FlateDecode >> stream xV]o0}ϯoM%z$HT&[׷J㕢)mؘ$-MZ~ d;7a0gˮ!H [0LbЍ_}l /.ϋA$v q:}R:vb [0TȚ}8-ŀUd`x>0Bϳ00ç^ ˔D F`I]d_8fn^q,׊j8HE[-\> endobj 1290 0 obj << /D [1288 0 R /XYZ 71 807.752 null] >> endobj 1291 0 obj << /D [1288 0 R /XYZ 72 644.813 null] >> endobj 1292 0 obj << /D [1288 0 R /XYZ 72 644.813 null] >> endobj 1287 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1295 0 obj << /Length 1241 /Filter /FlateDecode >> stream xZ]S8}ϯ Y%f6vL[8qv+ B"/N;0{=:J1B W0pp80;{q0/0$1t~ ;zp00C`w ߗc mI<0t =\=xs:"rbP."ڎ 1%Gm[!<;?G+ͧu,܅ۀc}@+x\= ˔L}sWxJ"WÔ9tq*QHUY0g)#RF^.]hWS;O{LZsL*& endstream endobj 1294 0 obj << /Type /Page /Contents 1295 0 R /Resources 1293 0 R /MediaBox [0 0 595.276 841.89] /Parent 1286 0 R >> endobj 1296 0 obj << /D [1294 0 R /XYZ 71 807.752 null] >> endobj 53 0 obj << /D [1294 0 R /XYZ 72 769.89 null] >> endobj 1293 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1299 0 obj << /Length 934 /Filter /FlateDecode >> stream xZ]o0}W1c X"Zi]䭪*J [W8U6*{"p81gxAKfAb^ "7nS )w/"7@ Z"J%ҙzj)ZnZeZa9IϨDDڶX* $rJq#&J\G #(Sز$S?_cW]79ς4L29_ŷ<˻7y+xHZi!^}/:$<yX~Y2a}mrTQU%Dĸvt'ͼ|ݼ7|.bqz Y,f҆=&4IWAz-UXXr#ϭpMϝ 7׭ej/^[2 ^KT\ 9OտBC//҃)Qn*#ՃB)>뙩0%5 ; 2Y3$Q}P$7IUtMؗ4+ZvNhUo]V𵣭R}ȥR VvR`{imCԡe+}ni#QL{Ty&:ͩ F{mA *h)b,OG|PkBb:LVED) endstream endobj 1298 0 obj << /Type /Page /Contents 1299 0 R /Resources 1297 0 R /MediaBox [0 0 595.276 841.89] /Parent 1286 0 R >> endobj 1300 0 obj << /D [1298 0 R /XYZ 71 807.752 null] >> endobj 1297 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1303 0 obj << /Length 2101 /Filter /FlateDecode >> stream xZmo6_!uYԫ p.\4M$0d]mEm9Vʻޗ$(P0!p/9w-EԠbd+'1OzɨqdM?m3#HfiB 5ŏJҍLT I%$yHfvJJGX/@9xoCLғS ӛntG,g?;ƾfO9l|p'b|q;lR\@z}@}f'ۄhо=@ ЋbBW BE֨|>Xz "~2x1sk!BphQB5˺RC},bq̖E 9jƚr9A*(fX+gժ4XxylB]I]ZvG0QϚҀCY!괆JCRZώDND >^G}ߢܢ'4vBE0N}w̫q]"?L9; n=JN%~E!?ZE)R_M5N՗m'3T`Q4HLUI9rĠ_fw q!>֝{}( ټ!8 G@i%fG"&^M!oڦ{ hHQ>)!4Ty͒0IU(eЩJ5/:>`DIYUcr"3C߈^ŠrxHXSb*GҏMbL 9m2TA?nVJ: P-@O゚|ts 0>x_oҪY8<xJ&E[C,(n p"-j:K4$ RTSMX_YUo0_1HkdŒs2ϸZ Bz0K$Ǝoj )]ߕ·%ac1fVsRżh#:n9Wmx2P*S P-NiպgGsUmx@6*k,}!M0h2Zإ3T+X(ןfm4,wwgsfnTS>x*0M-;Nɼ'( .d1S1/azxF< ?rHY, MC86}E߈Q(R1;@'o3¢G'AV}hyI6\vJvkS l`F ;1U{5T˲2?jpp8Z6+8C! =KDG'ƖM/j|0~)#Iz?s |½~cL/oxGE.zf endstream endobj 1302 0 obj << /Type /Page /Contents 1303 0 R /Resources 1301 0 R /MediaBox [0 0 595.276 841.89] /Parent 1286 0 R >> endobj 1304 0 obj << /D [1302 0 R /XYZ 71 807.752 null] >> endobj 57 0 obj << /D [1302 0 R /XYZ 72 581.834 null] >> endobj 1305 0 obj << /D [1302 0 R /XYZ 72 345.486 null] >> endobj 1301 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F37 944 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1308 0 obj << /Length 1292 /Filter /FlateDecode >> stream x[[o8~WX2Vt.˨3iE(C\BU5}8IRBB[*T9c с w 44CTg~~hz+/h9^`;mWւd z_Z{[XBKh2Ci?@_Q)PDSŵ ] @^\}N!:T1ʠX9E<c ݍ2TB_a26+Lu!r ^D\UZF.R*Ijdjuv6(wU'AzLnďřit?j؞5|d',H,?kD[ricy֬l:.=g5(ȪX-]'wCy$5Dt-"\l) G ֥9D$TphT"fZ#wg~ܴP(DTDHڹs'oJoBX9^i U_FDʹDC rt w5`O /~CUN߉BiYAI"E"!s`j R#YTi("@Sp2oM/^]4̹.ъ)֝X">L$v1VpTE2^K]Kv]H, r;w"{32:w_c5gWSm Ii A:kpGv%j|%"5Iaxf0<8s/OQI%5O yiT_I=qse 1qzu4Wo N"WתodP@Zd8ѷPG Ϣ?YY2Xrݬ6'Σ#G D:cwݑt1FӾ:Gu 7&|cToxv([ JS>i7k cḂ2wۘ5,$NsarzOKnh7T5˃TO/^IU[Q㺏^3?0FvE. \<6@  m~l&KŽb\b'oU)ny&*"xz0Ks%w7:qnr+Mgo%t:Ee( 2->ўfS(DM/#j7}>|yA^.|>x#*TDTLsQ3=03e()LϿ0F*4|bˇ0B 8¬s= w@z endstream endobj 1307 0 obj << /Type /Page /Contents 1308 0 R /Resources 1306 0 R /MediaBox [0 0 595.276 841.89] /Parent 1286 0 R >> endobj 1309 0 obj << /D [1307 0 R /XYZ 71 807.752 null] >> endobj 1306 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1312 0 obj << /Length 1272 /Filter /FlateDecode >> stream xZ[6~W f\۹ԑZU/e:BĠT$LG81 S 'cCat{f#;&3t4TGccCǟ2}wbw(G7EۃOE`bcñ"Xslwn"ݠY&\h2m@W@Ç d&Րe"ntaS4Jnj vl&nCrD 3C+BAeK Np4i<( l %CÖc4Qm3 /q ^ c[us\Cy0D1BbE7ETk)5=o"zæ7-5 9LY!ڋg%[Pk[Jc8ۢk(;Os *\R[&޴ԑTdr=K9 *)\u_,Ҿry^QɆ;sE]p!6FƮ 3hDA~W h(_Y"D>AyKN/|9_af_mq>Pd"OK* *<'G\E.Jӯɺ%ZאrY2.K)KO*{EĐ"?XBtQ_>dS)ͥp}|m8}+v?wjGbgUd\1r}{" ϸbVԡ*W''h<*A*\d׈\tʳљyϨاVb0lոH X׸DR&)cdP4 !1Yf10SIn`#bļ(-y2lf?cJFH"Tpdӏx6$w jtJ&S2'yaAFHh&dеvY$,UC`qpߠ64lZś7o-q\,0,GIT4> endobj 1313 0 obj << /D [1311 0 R /XYZ 71 807.752 null] >> endobj 1314 0 obj << /D [1311 0 R /XYZ 72 297.128 null] >> endobj 1315 0 obj << /D [1311 0 R /XYZ 72 236.743 null] >> endobj 1316 0 obj << /D [1311 0 R /XYZ 72 178.515 null] >> endobj 1310 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1320 0 obj << /Length 1258 /Filter /FlateDecode >> stream x[mo6_o^6 @.]jcf10Yl%i"%KZ~F SGx=wG.Ao[ ZO|;A 2Gwg~u?B8݌Ui4I^g` ֯- CD kѸu]jco"VS`pӡh  Q})Y>; eL͇A=IH'Tf%otiBQM$BSŪKeV~7BӒ1H3?NGajHYJ2$RUV b[wم~Q2K&P5M e4U(e3/Q=0Ķ'jXA o4K)SU C9h0*,<ʐtYZ;pŢh0>&t!]$OXyX]/$<0HPrkyG!|k GGG`F3oT5YX}5l %p¥6 0,C&uO0abV^Y43I9!poΎ? Oÿ ~ۉکXNqrefг7#Ȝ_ H#pLAz3~FXzJc ^>TVBP7jO! b]lpPN6kB{x/ɤ[87&7~N[pV?3Pfq/?`z'}%PZW}:F*}0aǪ1l&cuɘ)gL-˘ Aq Qx3ρZvlmv͗ucO[ߢZH==%> endobj 1321 0 obj << /D [1319 0 R /XYZ 71 807.752 null] >> endobj 1322 0 obj << /D [1319 0 R /XYZ 72 769.89 null] >> endobj 1323 0 obj << /D [1319 0 R /XYZ 72 550.72 null] >> endobj 1324 0 obj << /D [1319 0 R /XYZ 72 441.741 null] >> endobj 1325 0 obj << /D [1319 0 R /XYZ 72 321.803 null] >> endobj 1318 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1328 0 obj << /Length 1187 /Filter /FlateDecode >> stream xYYoF~ׯXh'lj[NFM*6Jt,x8rt pCH=$A ~3wSĹ@08G 09C{-۹N 3K{ Xb?~{5գ hP8]'(kD0=)_5GBR̔ ~B)HK0syҥh 7:w R})١A†] $!Nvj)qfqN$Ydj MU (@i74[݂qCLFЀ Dt$q>t6K{ZǠĞ&ϤOKZL%=뭸̞zإყa"+oh@x!)1 V bteRj||L(1t!fWKBw/>DXjPJy`nW ,ONNZ~^(ԇ;DXu;@0]:uDMH/N@ l.VE S Ƞdj8N$Nh+=k%`๘(f] Xf&m* X}ΐL9GΨA58*C`ѢEUvl~|uq1 GM=[V2(:*xfnV6n/o&gχdo){o>d^E y ?TxےB.743:ey~:\I ;wץNu4۔ϋE@ߧ7\6iZ"[c(+s+ Sݶڦ\?oܒ"ݒ]*i=PuP/ {@/=o* H;W@/.<6/JV_AF0L)[Р7Ɯ|MN|EjOf6G 8L95M endstream endobj 1327 0 obj << /Type /Page /Contents 1328 0 R /Resources 1326 0 R /MediaBox [0 0 595.276 841.89] /Parent 1317 0 R >> endobj 1329 0 obj << /D [1327 0 R /XYZ 71 807.752 null] >> endobj 1330 0 obj << /D [1327 0 R /XYZ 72 769.89 null] >> endobj 1331 0 obj << /D [1327 0 R /XYZ 72 573.485 null] >> endobj 1332 0 obj << /D [1327 0 R /XYZ 72 335.946 null] >> endobj 1333 0 obj << /D [1327 0 R /XYZ 72 335.946 null] >> endobj 1326 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1336 0 obj << /Length 221 /Filter /FlateDecode >> stream xڕ;O1{-d%wQӝHp8gR Py<ڝpfW]ȁGo@xK`C$vv}s[ɺnE3]j< ,{[y 셉t Pwl$w1Mu@&WVH_q+B!(K:5,z._3rn6Bzx_i]Q. endstream endobj 1335 0 obj << /Type /Page /Contents 1336 0 R /Resources 1334 0 R /MediaBox [0 0 595.276 841.89] /Parent 1317 0 R >> endobj 1337 0 obj << /D [1335 0 R /XYZ 71 807.752 null] >> endobj 1334 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1340 0 obj << /Length 1273 /Filter /FlateDecode >> stream xZo8=[*-ml\v]oN;uSDq!ҭiv4Uc{?B"]{Qd3dK9ȏ{7_ ="u%#.(fv{N'[ I4!n Lis Or4 M7W'_&cK3 h,R3;Kfmql;6-f# C-xy翟_? GLZp$E)Xמۀ1ZH ۲Ĵi~@OG^ / П'yD_ϡEjhmuk(JÂg4ɝ)H6xUdխ N`%d R0 ThvBIdeCE*.zI( |nD9E JYIC\%brs,^O_-WΓdz:ӥ7 !_a3g@X#H%w9Tuj`"Vq0Pus|A ,l4mńҚͅ j ͞l7"kEJAIɵ q[b"x;c/t=wC4,.xB>Xv]E{w#f.T6u}f_w ;P z%TyaΨ%kÎ ?wH'gǜN\l%ftEK0^o^dhK{Gk3Lo;:iK]K*LԾ4ZbZ͎Z׋tPw7ni9\_ofdm,?,l[v%wmSE`6Z6U?͸.{ߌt&᫫q?%lk_7,m^1wr_v+X㖕ؒiC tR_L#5ҖZit3l6M>3Ek}Zԇyke֥_[_m?SLb^^^ ڼ`NC1ϔߟs8Qfȶy@ endstream endobj 1339 0 obj << /Type /Page /Contents 1340 0 R /Resources 1338 0 R /MediaBox [0 0 595.276 841.89] /Parent 1317 0 R >> endobj 1341 0 obj << /D [1339 0 R /XYZ 71 807.752 null] >> endobj 61 0 obj << /D [1339 0 R /XYZ 72 769.89 null] >> endobj 65 0 obj << /D [1339 0 R /XYZ 72 611.174 null] >> endobj 1342 0 obj << /D [1339 0 R /XYZ 72 542.508 null] >> endobj 1338 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1345 0 obj << /Length 725 /Filter /FlateDecode >> stream xWmk0_!'I$ۃҍuueal'e9/vMBF@y$%7wqz{_qEz=p< ?;ZG]i",Qv`l:àάӞb%@ K(Pp||J hUF䆘dbq9x cH%Qj%2`U}J.p,'\AdWr⡸Jŕ4(fqaZ^yjT05 #4[(7ȇ5Ć#,=5}3ұhf,1.6tkyўafN(pu JbwV`0z(Jˌ/t^6݋4z;q1kD%G{lBߌv҄Q5Q8ίD NQ }WLl{e,I)lx^mAm8y5yӠgfܝd$W_lsi^OZlnz<}`kʶӝ_@ֻRYN0 a2a5"δ}`|iƓiCG;'l\hCIy^ާ%LrE +1fF)ՍRW*V~r8LQu%zbjWH(l(3]| a\vk,#?uKL endstream endobj 1344 0 obj << /Type /Page /Contents 1345 0 R /Resources 1343 0 R /MediaBox [0 0 595.276 841.89] /Parent 1317 0 R >> endobj 1346 0 obj << /D [1344 0 R /XYZ 71 807.752 null] >> endobj 1347 0 obj << /D [1344 0 R /XYZ 72 563.967 null] >> endobj 1348 0 obj << /D [1344 0 R /XYZ 72 563.967 null] >> endobj 1343 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1351 0 obj << /Length 1234 /Filter /FlateDecode >> stream xYmo6_o&) @]KS#ؐbәI$9 0(R%6"u&#y"Aw b˿J(rr% 47 "%h#.(fz>5>6ތݷC>%h4EBzr4gUCќrptaiip=궍!qd.2]ϥ$掏$4u i]?{s1^`b`3ӑǚ]cmԕɎt+8]Lmt!qVdY\uT,nK 0kSh~'Tju|CW&xwV ,5 #, {"AL̈́q)? Z7!uqMJDM Ʒa混LES +WيTlz(, z KOfG$|xPy \8Ytt>+iwJzEVTx!(&P~EA˰IcݷuɊU;Z΅pSUkA3+ *[S"9)fw "A߯0皱ZJ43pO,+e,gnFHqZ%+v+fi^ pa B"m^Wnn َڡw0>|eݰS;j2Q,__bDQXHc%҂S,;Λ}[u:@33 ^g{UԃEuKL{I>l@X%y[vZ9s؇ó^q>\i|9'0/'De4|Ї(EujV1ًB%>STVձz +#]}dPwY3lOdympiBش[Jao6w$$1kBQBkw؂c&q+lAYqSš:M7 endstream endobj 1350 0 obj << /Type /Page /Contents 1351 0 R /Resources 1349 0 R /MediaBox [0 0 595.276 841.89] /Parent 1356 0 R >> endobj 1352 0 obj << /D [1350 0 R /XYZ 71 807.752 null] >> endobj 69 0 obj << /D [1350 0 R /XYZ 72 769.89 null] >> endobj 73 0 obj << /D [1350 0 R /XYZ 72 611.174 null] >> endobj 1353 0 obj << /D [1350 0 R /XYZ 72 542.508 null] >> endobj 1354 0 obj << /D [1350 0 R /XYZ 72 120.613 null] >> endobj 1355 0 obj << /D [1350 0 R /XYZ 72 120.613 null] >> endobj 1349 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1359 0 obj << /Length 234 /Filter /FlateDecode >> stream xڕPN0+hKdYo9V&"QJx=ip<X62aR5r~{N籩 XПE1| q ̑/ĕBOt0/,TX _aZ8<:rlԷVO^!8cԚcԨ$%r,/_v1EfsTC2I(Me2͸s8ٞ>KTt endstream endobj 1358 0 obj << /Type /Page /Contents 1359 0 R /Resources 1357 0 R /MediaBox [0 0 595.276 841.89] /Parent 1356 0 R >> endobj 1360 0 obj << /D [1358 0 R /XYZ 71 807.752 null] >> endobj 1357 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1363 0 obj << /Length 1817 /Filter /FlateDecode >> stream x\o654):π׺i;P,:UÓ$Ű}E:\:] Vh{;D­TQPd cu &m'@pr# ֯_Qt+" 'b*#Sp~a8<4|nG2dEd j‘(7NO[[aNAE((@T(B*I\!퓓IP׃3 _\dS4 IP]+ (ZJA @!:G hJJ\DQbKj@RD20Y*|Rt#5)Q\ LQ(rd jRKan^^HT; EIʹPa{lALaXTAse}g.g,@y=n1&}a֞ߚʋeK§[(Hndf3ne7ܠG?[ɯJowܫ$}e4GlKfr¯}.gSZ: n[ٞ}$ixsirn|/3t)>,a,9@{\$"쒨hPqd{NxfF6rq"z }>ӹQv4$-(xM( e=]H$hK cBš# Biԫm+fmeyggEHb#=v\6I0iz5I7L蓡Ma/ eQӯN ̞?Jg3,inR3wR!|P+VPrn)}*Q7^x 럐\d`nhYPfbLZTy$!c2 bFGÞ{7Hu"fr3;B'KhQ?vh)7yF5yN,W7d9Ĭ"Fi+8˴y핌&W? L`n]Zɝs| b%EyKZ41 7v韃ooOWl f,*@A TI%^W@T{ϟHW~ 1VR3Q0YU endstream endobj 1362 0 obj << /Type /Page /Contents 1363 0 R /Resources 1361 0 R /MediaBox [0 0 595.276 841.89] /Parent 1356 0 R >> endobj 1364 0 obj << /D [1362 0 R /XYZ 71 807.752 null] >> endobj 77 0 obj << /D [1362 0 R /XYZ 72 769.89 null] >> endobj 1361 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1367 0 obj << /Length 1649 /Filter /FlateDecode >> stream xZ[o6~Лm fDJ%CWh.À4hZ'iw(R.lNCQss>ʦ11L]M>7c%{,&0n{__}.?W`>ZF<LD]g)W&|輽4m#(ޙF Yg|FEM1"gԦbCK&j\+Hv<`p\6KȅDx 4)$4(vYĸEvEZ܄㍂0 \냥`;?Xj!ק`Yf/f?QUh 8a=!0NGhp=)>I=.`mD>XfxZp-o \iK!V*J= $#*Ul8G#vC%XvIM-P9ÆRJ=ʐnev$x*Vڭ.|킺Qy\'-VɬP&Ozi[;@kw3m/MD,oGnM@>}{PyFRXKKxGo#VjDq,t^e;DjqaS#o2EOCxnfouW6d;e\fJȃ;"H RfޤO{*J~VT][X~N e5c௄jKP?B(j̚ )߬f_%&4JԠQ~Z,USd.Ҭ Uڠk&і|(/]*~vx$7Au>D=)K^î<@-vդPѧCY|r,9d U߇q(eP|6ZжH7dz`0`F}g5mp\n8QPs 8Ndv,| 38] [ 3ۿl8MV5媦|9gSڊ5Z_e?h],ҳ/·6HaJm /ikwkH}ዔ5{rH_"XoEFDzV Q/.> endobj 1368 0 obj << /D [1366 0 R /XYZ 71 807.752 null] >> endobj 81 0 obj << /D [1366 0 R /XYZ 72 690.182 null] >> endobj 1369 0 obj << /D [1366 0 R /XYZ 72 495.676 null] >> endobj 85 0 obj << /D [1366 0 R /XYZ 72 365.864 null] >> endobj 1370 0 obj << /D [1366 0 R /XYZ 72 208.443 null] >> endobj 1365 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1373 0 obj << /Length 1449 /Filter /FlateDecode >> stream x[o8_a>花I*NkN^Rp)7HXsbPB`;4Į{?+ kZq ]N8<S` tָ9l6szӱc/#EBdwNk &Bڠ7!Зoi1 Cbs>7?kHA/r>ȱlΠrtxP2-Յ8I=e6$̚!<< YAIv&MJ5z`N NfYv\a:MsT"m)?R*!I er`'1:ЋVSKc,yIt-0%{K0vYjM-C~$NNi9+V?h lgnK4w]3=moϻwwo6Ԃr{A(iz2DU2T=9)SR`L qUkHjR!q( H,a0mA }k-\2~T.c}-//v> endobj 1374 0 obj << /D [1372 0 R /XYZ 71 807.752 null] >> endobj 1371 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1377 0 obj << /Length 1374 /Filter /FlateDecode >> stream x[Qo8~WXH8NN=JZ[.1v -$p*agj>g0A`R;ڟ <9!`0υk7.ls73!_GMc\? H!j>t/k5,BkhR~X@` AsdTl!a]2bН/+Ȏ lP݌B9"@Rh[&9E1FN=0^Fm V q0|9U\I)Ad!9ʭQ-uTԂ̣ZDIKT"%m[~8FP$$+T'k1NzI Nښes4-G}q?ȟ uu<5eYl95P%]$۪KKyس*ڇm "[2F%WNgklP /Yje' !ŋeK2ԣ#=CINxC"| ̡44ELFE?±lA^2fKFI/oIu|!.nǝ g4pV.t7~'G}b:L7TV ?q & L`eZI ܧa)?cB(|I(bBQ4ŒPwnY2!!%ւ?A,EV` g`0 RH<&Q6LgK&{iSRh\Atd^ 6fQX +󬆸)1n5mwس)z3Wb!8s5| svz6#Il}1,!|˭!K5U&IDϘ-ڛTy$W%IW-~O y'1mfPg-ݫ %\Yxć@bw^R f=/xIL}(0;,T9^9sν:9KAڀO|K;6*E<(i 7,(,sVTDrv}~=RV5& "G&yo.foI$$ϲa:iA} ™<~ۢ]*R{ASa9KA]FziUNNu{mj?FWu;Roz|nyyH^gfZ6$V/-=^M GS"@CҥmS.@Hob$d~r™:df,E j endstream endobj 1376 0 obj << /Type /Page /Contents 1377 0 R /Resources 1375 0 R /MediaBox [0 0 595.276 841.89] /Parent 1356 0 R >> endobj 1378 0 obj << /D [1376 0 R /XYZ 71 807.752 null] >> endobj 1375 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1381 0 obj << /Length 1443 /Filter /FlateDecode >> stream x[o6)ؾbW],@7 kzOm(6z%;)[Ӥ6]PCR:?HAO''G\%T /19Л/1ɫ0KX%EX,ԝH2'KLw?& D@Z`xh޼#h/<ѧUy.#z׀Xs)Ӛcr{DޮchQ7$|ʐK\6 h "RxVcӰ[M 0ޏLrҕ7|m jl%E>::c/&2LkUBˍjTA$]Qz0-ݻm:cJJG^v7\JԼܰpy֦P洆(t5 Ħ55!o+U)TFYEHo$*n;=SN㙾yU_7 Li_/E,<|`g_":,Kk \L5 sU-ͻ-`l~C4Bq`o[Q~$wt6Пn㉯rg#AiUFs2%SbN ysٺXt=u~.æCɨ_ I^сyZ C`fRKcOm{Tuz8p\*o([d{C-R1:wZo @ м㵿\Շ\ߛ`R/X㔎m\ endstream endobj 1380 0 obj << /Type /Page /Contents 1381 0 R /Resources 1379 0 R /MediaBox [0 0 595.276 841.89] /Parent 1383 0 R >> endobj 1382 0 obj << /D [1380 0 R /XYZ 71 807.752 null] >> endobj 89 0 obj << /D [1380 0 R /XYZ 72 180.211 null] >> endobj 1379 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1386 0 obj << /Length 1466 /Filter /FlateDecode >> stream x[mo8ίK5cC;mOjv[U6vw;ABK!gc?6!hEwsC)гMc٥w:GOgC9\A47CIsǃJ Z@ `~Ŏj>DfrAGbmA#.`aDTU14ߍLؙXFɕhYE륑_)da)(Ϣ 1 (9WhkD(Mme  .Ԭ. d(cCa5NIDM|'-8D }%EߏO&vS;\H?ҁBBߧvS Wyfm%Ƞq XuI֙.c`V`||va0,'IԬ4"fzଗ?'Ͻ ǷɑC;YOZ\3wrOb)zRw`7SHOռF{jl*0RoI.II'EX7aRKs䦤2ApydW&k;V$XŻW"ygd4s(=&ƣբ&fq6Fׁ*!1x1k˦|H$DK]HyaA0sr_مP"Զ$-Vwr&te"@p>A&.6c0;x~\?LmpǜF 52ke}c Sg -lg=qƈyG<,dY\&#*Uf-%΋^ˁOrS T76K"UmXTؓ}(hOt| xکh@DMH"SAmac&$1O$GDǶ[BH" I"08\KeTDmX 7WfSk29Dpdzx4kL2@}UKc[Sr05? 8xHY67ff*q|tsq]!Ö3jSWT6E(c޶ӽt/e`(ad1k){PEJp UwF^FDJ(vvKxDG$:O{=Abqa!0s578Ô FO6'ifu=)cV^_\ endstream endobj 1385 0 obj << /Type /Page /Contents 1386 0 R /Resources 1384 0 R /MediaBox [0 0 595.276 841.89] /Parent 1383 0 R >> endobj 1387 0 obj << /D [1385 0 R /XYZ 71 807.752 null] >> endobj 1388 0 obj << /D [1385 0 R /XYZ 72 769.89 null] >> endobj 1384 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1391 0 obj << /Length 948 /Filter /FlateDecode >> stream xXMo8Wps IUd tHć9(6G+N~"U[rؽјzDPz?k:8 q(D{SPa_h:G7O1 5l鼎_YߕNuTi{Cdt;0x;PX 0@lpsK~C3+C\P v "+cdkRaI}H"+ 3Z Kt Ab HCL(]_0~ \jt(r2QKp3r)H& 6&I+T`"}*@5H%1 xHRڽح0"> endobj 1392 0 obj << /D [1390 0 R /XYZ 71 807.752 null] >> endobj 1393 0 obj << /D [1390 0 R /XYZ 72 560.189 null] >> endobj 1394 0 obj << /D [1390 0 R /XYZ 72 560.189 null] >> endobj 1389 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1397 0 obj << /Length 223 /Filter /FlateDecode >> stream xڕMK1sL|UZiAhnWa6 x2_ HhAjIK 8> endobj 1398 0 obj << /D [1396 0 R /XYZ 71 807.752 null] >> endobj 1395 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1401 0 obj << /Length 1589 /Filter /FlateDecode >> stream x[[o6~ )Ru 2]bӉ]ǩ5PTÖiaOL<:Vc2QG,pѴ۫_iv@ݢ"(ՐAWk9ͶY Fr)֩XƶܲЏ vXeLsxjRx8rLt!RjYFQbLfkn+k%:~B hEAH{~YxLHh&2]?77nbrI%i @] @54ie{>N6i'١^lŌ9dKòBԟrNxP$dTKB>*u {NFʣ)N&|Wtp,Zݫvpjjn 6.3qg$ʌh cfd:`t7/e*֒񏐰&&,*銤:}W]LNe:b1JL/>Lp݊ro ''A|TPˋ+Y:n'N0C{Ϟiݓ^C'qàA.SP U= Yca:f0TaϻB0!Oٶ3= }$|4ppA'OJ . @18fVm-\Ӊsn7hʡ ҊUnSLkOؗWsꇜ `ZMfyx vx#cV O*/(eҍ0[ @ۙbsdY7 ֬nD^̽qmV%UiO-˹-ny2_^y}ݛt%EAWg|*_UWܘ3xrX*h:-kY.el.-Eknh$PG,aqFt|x&^O;x]`lBB1-%9eaRyQXF3=e21Aao68mܾ nUS>_oЬ!/k'UZVZ{e۰mNqˋlKԲ({q$wNLxBPe+Ry~5R&X/mp ?s?Ll`,)m4/tTURĸɱ!XXpd$С'Qt; CS[j̏uO@ϔWp\ٸ4޺1_UҖ_:i߁νTDMf|hP"VkQ2!ZxIs@L1BH 0u endstream endobj 1400 0 obj << /Type /Page /Contents 1401 0 R /Resources 1399 0 R /MediaBox [0 0 595.276 841.89] /Parent 1383 0 R >> endobj 1402 0 obj << /D [1400 0 R /XYZ 71 807.752 null] >> endobj 93 0 obj << /D [1400 0 R /XYZ 72 769.89 null] >> endobj 97 0 obj << /D [1400 0 R /XYZ 72 124.882 null] >> endobj 1399 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1405 0 obj << /Length 979 /Filter /FlateDecode >> stream xWmo6_o#),@[ERc-ɱ7wѮe]6( D==b0fr2嵈HLc%,H(HGԏ|2Iwa伸zFZ'2:uut 2fndia)F8C #)F8"~TIɩ0c["]sW0ge3=ط*]H@z;w=-Ӭ@nM|WYM;;ܟ"ۥZ_*ޝ+\ (Go4Șrdg:F9dQ|lIo TO#%prʇO^L=] Yf0fdmV,\K|`X\nfw!]G#՝F+-[Dt;K m~Q4`s*$U~uG!". 9a$ i#ڱgoe?!n2x0vpab๶ZrAU`O BUj~.8<'dci]:n0=6fd8}N&%]Ey! Ǧ\? FWi]VMdm188%>DŽ 01w|{L<)a?.nu3gn+]aLAxoqfEvf1MoСP4Ĝ_ Ch ]j9ȝ@ 5HxiF}ƠeI( mPx[ bׯͰ͞r;pnސd>>?L[2'O~5~Gd6-/(WZU5,pk4ҕ{M endstream endobj 1404 0 obj << /Type /Page /Contents 1405 0 R /Resources 1403 0 R /MediaBox [0 0 595.276 841.89] /Parent 1383 0 R >> endobj 1406 0 obj << /D [1404 0 R /XYZ 71 807.752 null] >> endobj 1407 0 obj << /D [1404 0 R /XYZ 72 716.002 null] >> endobj 101 0 obj << /D [1404 0 R /XYZ 72 562.609 null] >> endobj 1408 0 obj << /D [1404 0 R /XYZ 72 494.351 null] >> endobj 1409 0 obj << /D [1404 0 R /XYZ 72 465.248 null] >> endobj 1410 0 obj << /D [1404 0 R /XYZ 72 465.248 null] >> endobj 1403 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1413 0 obj << /Length 1468 /Filter /FlateDecode >> stream x[mo6_Al`5EJ"%4sy[b۲mQOߏIj[cwE%tw=GR" pZAo+*0(J@׫F?-qrtjPv]VEU)hny1Ak'g7vCM[P'pzwy%4[9|ȀT0 , KĀ[5mAO Վ_4_  Ŀpi5!6Y:"2Qabf@L bbϜ "̈n}m8dfC+`C \M@009O.I, b"3h4`ϴ":MfzVp_aey!Q,e{f3r ۱#6kAgyԹTIXS%ši}9lj|d80$ؚ{zIgzfn!3? @%)*dz=jRB*~q*ODّ:d=֏w)c[x*ԧbI~{{7yvwq;;.r5j])}}y[X!s"8Vת\AE:ݏSi8*x> endobj 1414 0 obj << /D [1412 0 R /XYZ 71 807.752 null] >> endobj 105 0 obj << /D [1412 0 R /XYZ 72 769.89 null] >> endobj 1411 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1418 0 obj << /Length 1800 /Filter /FlateDecode >> stream xZmo6_!tlc G]A EfsADl4+w)[GCb;t%a}Aw)Ye]L$C DHWv.z?uex )N=ק>u"0^>No-Sap*,CO[K,AHL.yk*ACۗ.ZPH'x>#Y7N5d`mtȒ&& XUY!FM- LúU@2oOKiRw8j0 `TR0VB2\_aA."Ue*\n>XN"`((Clr0DvxAEDQFkv) ; `ϥ!:BmT0Iq,0 T\O$6_LAmoŶfٕ?i:gm6.Em\T\kۥD$ &1ݮhl ` -(r`TQI9~D_?m5i<7nO h&Xvc@V S~tb,L4_w$} xl,C͌9wT?mw/3/;d.fb[ J$K) KAs Q 6fu@f(޴D6-w^V,\㬵>nW-W}Ul ŮTLu idQ@He-.ኴ -5H3l37ĉHSث~ҐZO1-;Lh;kspWuÃJ" ^xu3D:~>0 h[LY|#v&A)K.:w;ΨK؁%? ~ *2!Obz,k((Z1V g<.oA nhETUKժ*XAnQa\$'[L%?^\|PjbOcknA'#v7о 1QJޱJ뤂M<5&gH{y"\n0f8O/zSi?{,V-yy%#'(:4` P .cvek-~>g yL? ++Y\$!,阿Ӄqvo[t-"ؕ@06h> "fA,< (qqT4oYoAr/u%QQl =]\ʔ߹." J( $87DŽ컹 Ue<//EͻgLzw<22!jh;yryR{GUo%ST`-vyz> endobj 1419 0 obj << /D [1417 0 R /XYZ 71 807.752 null] >> endobj 109 0 obj << /D [1417 0 R /XYZ 72 505.454 null] >> endobj 1420 0 obj << /D [1417 0 R /XYZ 72 289.979 null] >> endobj 1421 0 obj << /D [1417 0 R /XYZ 72 231.984 null] >> endobj 1422 0 obj << /D [1417 0 R /XYZ 72 174.087 null] >> endobj 1423 0 obj << /D [1417 0 R /XYZ 72 114.134 null] >> endobj 1416 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1426 0 obj << /Length 1392 /Filter /FlateDecode >> stream xZ]o6} $3QEf֢em:U'Y$;ߥHɒ춶#o5%{%AoL7G\qb /19,Ѓu?!|;}HDO탌eK}C4y?m2{@Ay L;X'O-=">z.J#(f 19 n)%\t)^]@"T<XPk!:\p^D9 , 6%l髖NCBА9HѐtRm&M%M8ۚ\,sӧgyuZ9*>2 }[MDm9] G{say&3ZnL#.,M r<{ )67-+穿y$рqk}5Ϭk4C'tE΋hfbfT(L+8p^Eu!6,D]pt0h>2N&= #h A@ܧyCye8u/̶m5m:YRx;O׫:86ChU6Aiq X=s-eYfҺ5p^Qs`P`IZv8HBgVS\ I Ӟ) ^N*QuփU2LF}YLERYڳS&6-=G/ VUإqCNec"´e§ ~A@+YcLCoi 0F5;Lp&ѯUHh ZJZk/14g3j xQ1tqjѪr):}e $F]$>op.+)a1MWd ]i _(˭WN9>:Xs*OjmLcs#~% wgX$գ:-Ilzs.k=qދ~&ՑeyFY* i.Y-cZgয়GzN:뵾wfI_wqy 1vWCNYN`_O(Ha endstream endobj 1425 0 obj << /Type /Page /Contents 1426 0 R /Resources 1424 0 R /MediaBox [0 0 595.276 841.89] /Parent 1415 0 R >> endobj 1427 0 obj << /D [1425 0 R /XYZ 71 807.752 null] >> endobj 1428 0 obj << /D [1425 0 R /XYZ 72 769.89 null] >> endobj 1429 0 obj << /D [1425 0 R /XYZ 72 719.468 null] >> endobj 1430 0 obj << /D [1425 0 R /XYZ 72 661.239 null] >> endobj 113 0 obj << /D [1425 0 R /XYZ 72 601.939 null] >> endobj 1431 0 obj << /D [1425 0 R /XYZ 72 391.658 null] >> endobj 1424 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1434 0 obj << /Length 1861 /Filter /FlateDecode >> stream xZYoF~ׯ K݃#h 8z(%Q ]JTI*QwHEJQāfwfvo [/; :N=GCk0\jǬĺ^yS뾸8WI2^yQ2?VsaY` ^u;Xa(6kglM`=NY6'cGkQ%,5|Yx!r\!XaHxZp$`5a{TAQ} )6wlE9 i-i \OzBK*3ڸXױq9X@DZմĉ#ZlxG2.cXJa"˃4I4#(5>aaB$1c `%I. ~I=hϴ4 y4 T!t}u'PWt3"Wxitm+g!ݯ;W0$H9"Gό .9b%$.UT 9u ZjQq6 &oka Vger ت8C\TM-[c>u'T`rrYO{Dz#W?(2*H@8Q;A<^ƒ60]$=jjhGaM,(ĮJGDۖ{.j8G݇]u>i4!͆8>ANeluLQ-(1,ݠgnh-ͬw2\xꫤP!krqcy* t*%ϗ}ٔPJo_ &yb 5RjܲdʊHC\la&?gJ rߢFAYpȖLaԘ5Pޕ/ɦ; j~MrZ{ӽ'>]#IGQ.,+(7~k<,lB Dp8jec- < lj@wws$pi,kI2 NdVSS8M45z1KS`2ˠ|[;/rm3ft7VK8A&75 Zf0{4 ^t> endobj 1435 0 obj << /D [1433 0 R /XYZ 71 807.752 null] >> endobj 1436 0 obj << /D [1433 0 R /XYZ 72 637.589 null] >> endobj 117 0 obj << /D [1433 0 R /XYZ 72 494.419 null] >> endobj 1437 0 obj << /D [1433 0 R /XYZ 72 246.115 null] >> endobj 1432 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F37 944 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1440 0 obj << /Length 1415 /Filter /FlateDecode >> stream xZo6_oRIUMNC(r %U5'd ~@-"ӠI4!%R`돿3whdYW3wQF hˠgrQ@{X Mሠ)BGLIh{Xq)үե,},)GJ ؏c/Ad  +,g!v+i 2 37If]L}!+k^敞6/%"@Jpa;OHamIZܢL$)KֳģW"hnxJ#b-^٨#[_odSe(V(zf$3c-K=6%`$|J XԪ11j%t^luQ%9Wy/ L+K<ǫK-إy1@(qx`՘mlX&AJA]VdQ*(cVva_̤>LzTth|bQ!Ml1rO㌞YXUbRgα/c(~rCB#(gI v5uY 'I6Z~(O{fڟWK;\ػhc8p<6L?72Й4K[*1 Jr'e8No.uϗh,tw7qU DžOuh]X)$ XS Oms䌺Pm.m:<ZFޖjR|نqsH N ,2n |q8akrZx:d=9G QK=4e/WIV-4IeZ뱥l~|5'&= IXm4!pU&#\u> endobj 1441 0 obj << /D [1439 0 R /XYZ 71 807.752 null] >> endobj 1442 0 obj << /D [1439 0 R /XYZ 72 713.566 null] >> endobj 1443 0 obj << /D [1439 0 R /XYZ 72 655.238 null] >> endobj 1444 0 obj << /D [1439 0 R /XYZ 72 594.953 null] >> endobj 1445 0 obj << /D [1439 0 R /XYZ 72 536.725 null] >> endobj 1446 0 obj << /D [1439 0 R /XYZ 72 478.497 null] >> endobj 1447 0 obj << /D [1439 0 R /XYZ 72 371.433 null] >> endobj 1448 0 obj << /D [1439 0 R /XYZ 72 229.577 null] >> endobj 1449 0 obj << /D [1439 0 R /XYZ 72 123.971 null] >> endobj 1450 0 obj << /D [1439 0 R /XYZ 72 123.971 null] >> endobj 1438 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1453 0 obj << /Length 230 /Filter /FlateDecode >> stream xڕOO0 >&54q @]RV4vą'Lw!`( 7P6y9y.njx7I{mv1 I-˙)Ň)sA݉Œa c\< zg~6G.e'qΨ5'`*3D.ugb҄*+e]/DWP&I ~OyRHR~ endstream endobj 1452 0 obj << /Type /Page /Contents 1453 0 R /Resources 1451 0 R /MediaBox [0 0 595.276 841.89] /Parent 1415 0 R >> endobj 1454 0 obj << /D [1452 0 R /XYZ 71 807.752 null] >> endobj 1451 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1457 0 obj << /Length 1417 /Filter /FlateDecode >> stream x[moFίXKTֻ_"qiOIsӝr¹ MHTw6LJ1 \DY<<3xFۿZ(2Td3߸JGS:\{{MSMdaKWu"fpL`$9/zݏ_{ajz*PKհEOқ^ "1jU A15fb0pϺnj4{i9_$ҿhgˠtTC:Q4\fb \K*L 1L)] 2xbj0&>L͸U#j&)Z`5 cRRJpLWrKÔw:I\+t1xv֥Њ[:!aeY`s5EBsŞl!#"쇎nX̯brq%K@@k7kߊa&%N[3- -㠘Sk#qf3iX"G_ꙛSU±da?'9Ϥ\R<*  'r{J<&|;VzcaܿN0Vj-ٴcΧHN~aFbxy3yDOOaU)%O!M"K!bMMY N*eYHX*A\F*Bߒd|([8 ( cd0`&bx]SMrBWrjA@<־IݭieI`ƒ9"TRH=K'G5?om\>CX@\;z y$:Ph-jn])28Z*\'=\wCUZ & MzСIGeٔ,B`V.a;N_DQٜ>?mgf3Fs#7X[cԊ"ŝ;S^~hCwaw)؈Xxz+m֚Q< k}jvnG+A9#;ίgCoAފvT)[jRgIanu ,Og$>9+T$XkŪ:0H$hGU `9MkԓNWhibvꘁIO/E_)7z~zx aU7k{ B\0hykKHW endstream endobj 1456 0 obj << /Type /Page /Contents 1457 0 R /Resources 1455 0 R /MediaBox [0 0 595.276 841.89] /Parent 1459 0 R >> endobj 1458 0 obj << /D [1456 0 R /XYZ 71 807.752 null] >> endobj 121 0 obj << /D [1456 0 R /XYZ 72 769.89 null] >> endobj 1455 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1462 0 obj << /Length 1955 /Filter /FlateDecode >> stream x[[o8~ϯ[l fHJԥS۝-f0Mne,:Ѯ,e$u^$KزӴ"CS|CRΝwg> E>P'B䆮s;~mCfF;$BBSt PLO)NQ# iQ enCb+ P8!!+k\F{qEi3by|j: 04Yt&/Z#/~ 3yl:=\~' c񭀝G~m!ܠi3l4MF2TU2. D̰(A0+.1\:=Fwٴ?ؓժ?I'w;w}KX,sD";s+ ktHgIoѽ~GHk<= ~|qBKIVH^q<[H_A/;WRqԸVeoXz ATr9Ddb< 5ln5tמT7-ajcֶp#ϤT;PBn ֣7 13׼8 )욬tҤ]HvX(Dn t4R9K~xZڀ{Iw"~r.oڎeQR6Ƅ@ζ~dguھ8IygҀA۬g]VIrYKe%? 7(1|~ڰ>* _2X~S)fꠃ.R6o>v5Tm Pv~sƨr|L(ei,߉zu֊b.[&7, jBF<"H&"_!ƄH\=>}&i^{4 '>#Ծ"y<#7Zz endstream endobj 1461 0 obj << /Type /Page /Contents 1462 0 R /Resources 1460 0 R /MediaBox [0 0 595.276 841.89] /Parent 1459 0 R >> endobj 1463 0 obj << /D [1461 0 R /XYZ 71 807.752 null] >> endobj 125 0 obj << /D [1461 0 R /XYZ 72 548.077 null] >> endobj 1464 0 obj << /D [1461 0 R /XYZ 72 186.803 null] >> endobj 1460 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1467 0 obj << /Length 1839 /Filter /FlateDecode >> stream xZn6}Wb"HlvEfP E;ʒ+i^dKĖH53<3<z QQϹ:y̹Nj O |08,"L앑]TD0`\zGvSP"d޻N wF, r8u>a.qO1smM 081߭=@0RP#yT#[~4D%w(gB8ӭ+,0"SZK^N* ΐrھDi$<"z똭Z:aiHX 5 9!<4[PrLI3ꗶڐUA *xn۟|$q*^2# /Y"EEG(>a P?%|`DŽ% vWZ ƆhdBU 3tgIi2e < `A7NDg-dvwQV6S0JtEB8YfUް {Fl%Fn+x۴o:ft,V4͆IC FwOTД"ṽQeLj5WzJ80'u]/`!NH+jH9ITuk$1u3uZ'h"7$([`wCj^(PGWp?Th?Txy Jխ f`K&&в\Ym'eB `R" #eDFei~+aBRaB"8#&Y`"Ȳ\gG/XVU&JFdp^RwoWQu$) n55ܙtY%>x(͌YšzA}I$@}C4m#3MA`IF֤kqP"uI=3k4ubToլR85%&Jb%y*aF3y83" zL"(;yf˚==%W2fDY$ʧgYj@ųWRɤ-|EV@X"xNEfxo|0qȵ*ti-T0٥Z^it[;雒i5fb(=ڐ\>qb2MGL{ni}*kziLX:Ծ=UtwYFgx8DkZ,{.v<$ V]݀K ~j7/BiW}*1d!=`+ylU!8h6"J(#W?(<<Û( uGѫ]*a=G7⚳ՇR[8![=U5A}PvR}t}q\oUztgC<ldzS=UNŝH'|1ZB|vj߯9 O. 3s[Q;aP{ڑj_o~=Y۵|]; i+@!sו׷6Tje(,kM҃{0d;@wu endstream endobj 1466 0 obj << /Type /Page /Contents 1467 0 R /Resources 1465 0 R /MediaBox [0 0 595.276 841.89] /Parent 1459 0 R >> endobj 1468 0 obj << /D [1466 0 R /XYZ 71 807.752 null] >> endobj 1469 0 obj << /D [1466 0 R /XYZ 72 571.1 null] >> endobj 1470 0 obj << /D [1466 0 R /XYZ 72 512.773 null] >> endobj 129 0 obj << /D [1466 0 R /XYZ 72 451.415 null] >> endobj 1471 0 obj << /D [1466 0 R /XYZ 72 302.967 null] >> endobj 1465 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R /F31 898 0 R /F37 944 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1474 0 obj << /Length 580 /Filter /FlateDecode >> stream xڥTmo0_aM=l'~C2щFBTShR6[IiTQH|zdI(w\FrIQ(!!d⏇7A+ΘIJod6ɭ ޣ0%AG "7R2G5M~VQ \Id}hM˖dA()@Qq]F4-͐ W I 151L PӔH("l3K"7ZPPd*ʐ<QZ2µUMjP1s<$!B`n4:vz5O4/ei2t-Ϩ*)<(1B65>6/޸oG7/`|׿hP(e/UgtehP0¸-RA'$[%1㎳kpnYnߦup"ɖvMΨp fҦM?vӹb]_IkZz㹀!g̅4b".ϚaώوÉS))d ¿<6s1@U9 Xy0jI endstream endobj 1473 0 obj << /Type /Page /Contents 1474 0 R /Resources 1472 0 R /MediaBox [0 0 595.276 841.89] /Parent 1459 0 R >> endobj 1475 0 obj << /D [1473 0 R /XYZ 71 807.752 null] >> endobj 1476 0 obj << /D [1473 0 R /XYZ 72 727.109 null] >> endobj 1477 0 obj << /D [1473 0 R /XYZ 72 727.109 null] >> endobj 1472 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1480 0 obj << /Length 1373 /Filter /FlateDecode >> stream x[koFίKg3~D)ٮJWqelj*Xܪ K :&S{C8P o`#AdSQvhRkwr@ "J(T55BQuGe9AzuEsu} ?}P`x|R4`(XT͑(Z &BB˸а &e`%.͗!8UMXL = =WAlSp Mr%6@rQhMV=:HF^3%+m(; @tַ.[=8tMn>ݕd Gd$EQd05&5ج9Naҙ< '0sR;K>3%P.ˑ;NV'b(@JIdJ"?\兌 įH6ד󈛼wo~OYaY3FRKlR@0τ 3LY3|a:4c {ڬV&QikhhB"b ''\3ժL6pel9fe"&if WLa8l+uwѾ~qy49J "<C&2TCDsc$б 8v<߈ֱ^HzD2NHv,˜eu_v"ߦȷ.Q8Pڞ6\Y""ɫH[ɪ+kQ W9fB]"Z(ro/40X}` aN_K endstream endobj 1479 0 obj << /Type /Page /Contents 1480 0 R /Resources 1478 0 R /MediaBox [0 0 595.276 841.89] /Parent 1459 0 R >> endobj 1481 0 obj << /D [1479 0 R /XYZ 71 807.752 null] >> endobj 133 0 obj << /D [1479 0 R /XYZ 72 769.89 null] >> endobj 1478 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1484 0 obj << /Length 2074 /Filter /FlateDecode >> stream x[mo6_!tlc CQ^.@e]d-lӱV$9i0"YĖd6Eɻ#+ kv~8\XDf2Ck]b;ócYGEf쵬;g&0./]ëK&%P^pF 5o;XA5_ip rmQdcztALxIͲtdS>Ј("zڈP#3mVtFqOI\)ʵLR\PR*44RK5 UM} oooRc1P-x ,(TZf &U`93/d [WfBKFR e,;.1i 7175:9l랕Q6heEwUWBbFU.,)Zm۪-mFq$j?a'UmAm^^kUIqUEྕ HUrj&|d(Dc[UR2k®Fhf2RҩFBo]1ݹc,hE~ Ŕ%i8U:a_Q4[F)^tx3֟kbCK5nȺCv/kiye `5hˠth=G F,C̵J2ϡ0-bad\eo4 $ِS@Oݫ+T!\#Fÿ(-X&e0,.g.Gͼn#Pɛ4!_d Ʋ^5LNU,?V>,;A(oh*z<`yH%{-fcaoDa',E-B|X:Xld%%MJ,z1?⍽g??iV'f;J@+,u=wy.ߨ1 %#{Ų@aUg  mjr2*@E !a: QC(00f]KM3N'ARzY牪LRo6RyJ11&)G5!kc 23J 4-7t`mzl^b>o25mzAX~sofۻ+N 󌑙A b7LDf<< 4奪(+uẘN*aw-4M=vH`,@v R6 )Hxȇ {Y&f F Mb";_A1 ה.)(O3 ]Ⱦį~{-x/N+ /|AۗxGa/Elj '~!9Cs6yR|J䖳Lɭ/%Y ,\갯↗~iX{JX}xwVR ős?ltj;bøbRhB3EY!g[ld%uȶ CA^[Gcy4{m,} Rkjdݧ5w(]f7a46{i78ʳZ[q>OY(y52h|'G#ϫ~8?=<9h㋣go `.r'+pMe"2p⧨0< M| 2KOyAXn/ήY.+;.4}}d߃ 5g"-e1}-$u)N> endobj 1485 0 obj << /D [1483 0 R /XYZ 71 807.752 null] >> endobj 137 0 obj << /D [1483 0 R /XYZ 72 646.346 null] >> endobj 1486 0 obj << /D [1483 0 R /XYZ 72 529.549 null] >> endobj 141 0 obj << /D [1483 0 R /XYZ 72 377.819 null] >> endobj 1487 0 obj << /D [1483 0 R /XYZ 72 308.843 null] >> endobj 1482 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1490 0 obj << /Length 1026 /Filter /FlateDecode >> stream xYao6ί Z1!ӱZcKKώM .PTU [yS֋A3@@ &}` ݻv0^\8-c9|MVF2̤ H!j? ^[Xu(hR(n? 0VWAOphbHXkB./S}p`B~tUxc|%>G endstream endobj 1489 0 obj << /Type /Page /Contents 1490 0 R /Resources 1488 0 R /MediaBox [0 0 595.276 841.89] /Parent 1494 0 R >> endobj 1491 0 obj << /D [1489 0 R /XYZ 71 807.752 null] >> endobj 1492 0 obj << /D [1489 0 R /XYZ 72 436.594 null] >> endobj 1493 0 obj << /D [1489 0 R /XYZ 72 436.594 null] >> endobj 1488 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1497 0 obj << /Length 226 /Filter /FlateDecode >> stream xڕMO0 >&5$!@Xn6Pd ; _^ @p'f^\r 6-p Kr~ vz71 S;E=>!7IBx&t:Etqb&|eSq+Be4a)Z=?zB;K\1j¸J^3fTeZInUb8<"]qGׄ8R endstream endobj 1496 0 obj << /Type /Page /Contents 1497 0 R /Resources 1495 0 R /MediaBox [0 0 595.276 841.89] /Parent 1494 0 R >> endobj 1498 0 obj << /D [1496 0 R /XYZ 71 807.752 null] >> endobj 1495 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1501 0 obj << /Length 1174 /Filter /FlateDecode >> stream xZko6_oq")R3uYZ71 Y!h,M?W8cV1+{%Aoz:ۣp$"! 3w moeqA13 8W븧,dc`O7pjr =9/9X+_03hWml>~꜑Cѧw9n %&6~RƱiZulQ h??vUKQIfhyrİAudPM-4&b ¢@ o@ML r mײ5 [f.L̄vH43iDR0AeLxѥa" "p(OEp8,x%s_nf ?MTƂHhw۲a'y|0򥚸\'(j<"80UmF{ !/V.(ľsT}[R2=eHyl+g{ek9W㯹b^2k ǟ0¨ĩY6󳳳e,7c [21~2iPGI^,pU.h(w;q0(U@+>W`jgwlxY*~}Zq/-_y#<jYqMƶ4ւG;iEbkOM CN\CX|wչrr#nVjJMJt up;E Sq%wʴ;U{/TphUhtCx38PYp\~IVhj{,<顛,>*,J 3ݯ'Q9z>N/;"`nW}-ņT2tWs &T_TԦ뫙;-vl?}=paR Ⱦ퓂ccIA8([ք1 endstream endobj 1500 0 obj << /Type /Page /Contents 1501 0 R /Resources 1499 0 R /MediaBox [0 0 595.276 841.89] /Parent 1494 0 R >> endobj 1502 0 obj << /D [1500 0 R /XYZ 71 807.752 null] >> endobj 145 0 obj << /D [1500 0 R /XYZ 72 769.89 null] >> endobj 1499 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1505 0 obj << /Length 1500 /Filter /FlateDecode >> stream xZmo6_A`jc 56Ec_P, [,QlINd[vnEWɻ=4Fe/Drr}s~n70vuadidQ2Ŭ]Xse^;o;XD i EI#O r̕_bEHK<\+Q#W Lð ^!Q/0A.Ա6jDŽ23-Tѓ MzZ&&R[ <V:oq;|*s nOCH7U"V3VbF ÌU,S3}kr?H|N@PgޤEp|{rq? ^q X iX }$ث"awQcb\0TGΧbn 'nHZk5y pf KpMt9?v *M"?g|^;](Xɔł!O^tjj`ȌdDӱ$^.R5&;3o i9nׅu0w$ X @{.q5E51C*pY-VVh]1)T|J–(<ıyh6+^K<ܢ]s[w\ "5ʄ(̽揌 g˙:pJcm_[a X3i0i⥿ޝז{tM ܼZqhrQ:o! ] FhPl[ ɨ,ؼdt/ ]2}*Ӗ[}JxŮg@Lp3Bα':P+T#R(l0qJ(UVn-ZAPwV=%T uji>LV^,O?]C |3 }Cq!KRyIc?o 񝙷\^^\\ +k_%iz^2?|K/csuQj_wYMcNi7G!g:@]C%{PC`>1݋XqcDl3 |qVBy /DVFZJA8p~()yc_`t 0fD3m˺_xhu endstream endobj 1504 0 obj << /Type /Page /Contents 1505 0 R /Resources 1503 0 R /MediaBox [0 0 595.276 841.89] /Parent 1494 0 R >> endobj 1506 0 obj << /D [1504 0 R /XYZ 71 807.752 null] >> endobj 149 0 obj << /D [1504 0 R /XYZ 72 679.958 null] >> endobj 1507 0 obj << /D [1504 0 R /XYZ 72 467.52 null] >> endobj 1508 0 obj << /D [1504 0 R /XYZ 72 383.01 null] >> endobj 1509 0 obj << /D [1504 0 R /XYZ 72 219.236 null] >> endobj 1510 0 obj << /D [1504 0 R /XYZ 72 158.851 null] >> endobj 1503 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F37 944 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1513 0 obj << /Length 1377 /Filter /FlateDecode >> stream xY[o6~[d fyѵt:XѬ .cщ6ItI ;)Yl{ѹC-"WWEWsĹ*Dc#z.fe"B"=״2"`ǫ c NY2O =T\ 8F_ 1%\}RAjcnLyLp<̹㵠!Ě b:>.B_;N['h|:Rf F* C[f2f*],3'Jwbz8&-"wB6 11˥.p)neҩjh<ȋ,Joz=+6]jdbޖv(YƲYVv2;(˷G7 Y ]f΍żmXٲiU[Yқ㲡7%}5Z^CF}x֢KCX)Ln+LntY w$nb`%;Y=%٧LK:VT*|ZIM}nIh8 Q1ʟP>DŝiDCї_44};r|ląqt\޴ݬ k+\.Pfg&S-`+MN%QoW7}Rd"ٳ*^Ybkb-UԨ+UL_- NVw%p21:45M/:_C%]70Vq@<4._aLOfB98f:ҨNUDrպ4/_bj{q 8n g:H%z;pK9W}L1vD0I M}#aݲuJKK --ldf7 ^KU2ϯb|u(5u([ຶ6q55qqqP@+vFC͊myT;]%.Tw嫈-k1G}h*סT8# @)LEu5*T `U%(2IOUU(} Jh[PDlQށ-%L/vR<3"ģZc:YW?1;à4|د!%q;3/h:vr\Vu=z߅ɲAJ*Jw{khc_ysv }bO_0-KO.3e( a @wmrdU)1nLSeyuC k_~g届5:z wwX]4Φw7dz?_jG'd3ux H U endstream endobj 1512 0 obj << /Type /Page /Contents 1513 0 R /Resources 1511 0 R /MediaBox [0 0 595.276 841.89] /Parent 1494 0 R >> endobj 1514 0 obj << /D [1512 0 R /XYZ 71 807.752 null] >> endobj 153 0 obj << /D [1512 0 R /XYZ 72 769.89 null] >> endobj 1515 0 obj << /D [1512 0 R /XYZ 72 455.235 null] >> endobj 1516 0 obj << /D [1512 0 R /XYZ 72 322.904 null] >> endobj 1517 0 obj << /D [1512 0 R /XYZ 72 262.519 null] >> endobj 157 0 obj << /D [1512 0 R /XYZ 72 203.593 null] >> endobj 1511 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1520 0 obj << /Length 1290 /Filter /FlateDecode >> stream xY[o6~ bh^uY -]RcbӍPd9]Eʖdϋ$'Ybsxxx>/?G\ y yx.1w`tJ<(5+p?KLF7㏃_ F2$\4GD0|x*ABR<15uḃ\7>yWcƞ9bvrDU BpL:yNQZwof9| " S498u_tOU~K{_dlwxlCJUtZ^.[ ZpDk3x˂zlzn}H4xJ__#!X@)*-̡֌o@'rޫɈoJ-A]AAWC"U: :Ϳjjh8, 05fXŖFe4UUBۆJݧ^*&%ׇnTrtUۛw9-|,[ur\<wӰ}ǂ[lw˪ԓxl7m39 x_b[HUv!YyӅzaS 㥂5 i:.M+tu:t&^0YgWWZŕWټVdƙZdjY~y7}NۧSv.ݟ:bjb+X/+pcO'Uē&~~@AƐʢ8 zs>wڗD)J['P1 ,*>\jPࠠ9ŧQUWb endstream endobj 1519 0 obj << /Type /Page /Contents 1520 0 R /Resources 1518 0 R /MediaBox [0 0 595.276 841.89] /Parent 1494 0 R >> endobj 1521 0 obj << /D [1519 0 R /XYZ 71 807.752 null] >> endobj 1522 0 obj << /D [1519 0 R /XYZ 72 769.89 null] >> endobj 1523 0 obj << /D [1519 0 R /XYZ 72 562.284 null] >> endobj 1524 0 obj << /D [1519 0 R /XYZ 72 442.104 null] >> endobj 1525 0 obj << /D [1519 0 R /XYZ 72 359.263 null] >> endobj 1526 0 obj << /D [1519 0 R /XYZ 72 359.263 null] >> endobj 1518 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1529 0 obj << /Length 1146 /Filter /FlateDecode >> stream xڭVYs6~ׯ[AbCNuj3"! I$G]Eĩ_rAkDл# +A łE(-G ʀ$X,@||MQPG4C4EW糳{+NCCQ 8Nϳ1#|6f$Ƃ8Ԙ,1 ȹw1'ށEf× jqynt,`j"+%7h3bB6xip3U,eު%ȧ8]~Qi g#'ZpjDZmu޹J׎(9GfVmƱd9"/*Dib1Hcp>Qmnso!Ϲd,K9Vejhҍ*S`n3#?|pxn.K] tpZkAwC{Y" A!i{rk [c&v50fwdb#x ~(TDޘC. .^qXϞ۰O4tHK_,b]^rY=\TڳLntg+kYVecs",aMx`{|_5EuzJ_ǐ(KEe#nPqBLS]e:]vkSzP*@mPp~+*־&9H2 j0` ;Թ[ 㠿6&jRBɪI0Jx ']̀m! +0![8_Kn =ALmǰiZ7z״2QFsiVE(k"?Bd`Ftg7 ȸv0QʄM3Cylz,T3ɲ~{Gކ& ͞ihfV/=X&ߴnpCKx,gB[ȡ DZ+he9*& fWںm^5RGV};H+; E0oPr$w}b׊O|R2y< ռn:V3 cp~JQI<>Qi3VDC:. endstream endobj 1528 0 obj << /Type /Page /Contents 1529 0 R /Resources 1527 0 R /MediaBox [0 0 595.276 841.89] /Parent 1535 0 R >> endobj 1530 0 obj << /D [1528 0 R /XYZ 71 807.752 null] >> endobj 161 0 obj << /D [1528 0 R /XYZ 72 769.89 null] >> endobj 165 0 obj << /D [1528 0 R /XYZ 72 611.174 null] >> endobj 1531 0 obj << /D [1528 0 R /XYZ 72 416.978 null] >> endobj 1532 0 obj << /D [1528 0 R /XYZ 72 358.75 null] >> endobj 1533 0 obj << /D [1528 0 R /XYZ 72 302.504 null] >> endobj 1534 0 obj << /D [1528 0 R /XYZ 72 302.504 null] >> endobj 1527 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1538 0 obj << /Length 217 /Filter /FlateDecode >> stream xڕOK1sLVZͭvSvUWoCO1y? / MQёOc@4|5oE4Ug.DRl҂M{gj|%Ah6zvlЌ$xՁ ɻQbOLU=ͳ 0)rD>V ?GSOJ endstream endobj 1537 0 obj << /Type /Page /Contents 1538 0 R /Resources 1536 0 R /MediaBox [0 0 595.276 841.89] /Parent 1535 0 R >> endobj 1539 0 obj << /D [1537 0 R /XYZ 71 807.752 null] >> endobj 1536 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1542 0 obj << /Length 1137 /Filter /FlateDecode >> stream xZ]o8}WN"H[:0hU5Rb |M߯cG̨aըIs/L;~`yE#H _:ϪW(ÐX\އGQǸ"6p  XZˑ|'ShRNCnbpALe`4Ȃ$Z ڐಫi(onw]|\>ۿ l 7w4Me(t-h6Dlb2:ZffZNibn˖"͔Y0sm8`]H˞UZCD!Z&a`Lᴘ91!f%~_$:H*i<\p,eHc[6cAE"Qћ " UӾ(M2Z@X UL2W^?@Ei˅(%cR(AV j; tHE ?mWiuVױB"*?J&_4r[QKr*-=v{kMpYHϕ؋>P{a<_:?G=PLWBn0Z"Z%fr\Z^\$N?qӞ 6󗴹XVG2{tāoJE$\g^$Kj8Aܞp|NٝyRghYȼO57[ B[F×FeT8 RznhɎ{ךmKUyٶB$8RwyX6F,C1o0dV`;|tQTJKw:> endobj 1543 0 obj << /D [1541 0 R /XYZ 71 807.752 null] >> endobj 169 0 obj << /D [1541 0 R /XYZ 72 769.89 null] >> endobj 1540 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1546 0 obj << /Length 1376 /Filter /FlateDecode >> stream xZmo:ί4y:i6iZ/EM(%*/\'뿿1\m ~s۩>tw|;p p}Z!ֽKO\{u,t(K_u# gޏλq% iPZTC:Οb ч dǃP"݃E^0>>¶&ƛvdM]HB vBW@$/'lĨR <\ǮK- .PiJom*Qk5U@ HL| BL hx\Ta L#S5B:cdbF0Png pMs\w5v˔W'Ep+aqi' ft&߈nڀJ./&SA<[0 g2.&,'zQj_?^kcv4Kel _Fゝ8w4uq h/s6Bef-`g@ äQ-` 3^ωMN\1Usy>cC*T}r>c 4cۂw}kl/P...=\ͫ6ФPek:E UI, g2XwެYwQlgԃn!A?d3^u͚_,ȳY V(>^7gxS>/B s-qV,yz~cT$JG\ԏPS)y8%sFHziVSoG9 N ٗ'C_/%I,nQ/^mG{Q3/YUA#G<:gSqZƹFf'yhLr{UMۿE桎aɼJm1qJM :'soEx9EV/!멪hEI)# endstream endobj 1545 0 obj << /Type /Page /Contents 1546 0 R /Resources 1544 0 R /MediaBox [0 0 595.276 841.89] /Parent 1535 0 R >> endobj 1547 0 obj << /D [1545 0 R /XYZ 71 807.752 null] >> endobj 173 0 obj << /D [1545 0 R /XYZ 72 262.784 null] >> endobj 1544 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1550 0 obj << /Length 1838 /Filter /FlateDecode >> stream xZmo6_!`,c1GRE!EvM0 HGh[,zIf;HdiYMQsGil lOoo(pkL r /[IdLJGWe!&ՂeXY/>9O>G@6Qm#'bԿ50߸D=ʉqVblhf>-4RGXPw3NGu.,1Y3V6YYLt'p6&aRp7 5|q۬[wlN)_ +/'Ot4KG[%IMk2ϢjRmV JR,jF9L֣1kFُU*hK7 ӷ2̇_ڛ>.7آjXqO~\VNF5#!4;;!#"ĭ , h(ixh|GXs?0_z uV> endobj 1551 0 obj << /D [1549 0 R /XYZ 71 807.752 null] >> endobj 1552 0 obj << /D [1549 0 R /XYZ 72 415.066 null] >> endobj 1548 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1555 0 obj << /Length 1107 /Filter /FlateDecode >> stream xݙ_o6)A6ְ$%O؆HbYl5 UmmIt`wQlII8zlxEޝ Z!~ ^\af6,ÐtM4Yp| sgHFҗaҲK ?C0d4| P U[{ 6錠? MEŨ 8̱)MHe+kmDͱC] #* .e2vw Ld[NaaBi}%7w3wh.$s9E.8׶*r;===-Ti6Q̩)Gz(W1qC` o7rU(hHrJ !lBl49kL8-293k6NNOR<6kֲ?Nh^ HhK~gyG&7Ȕ9vQ eEyzZOC7kp |$E.KH߿;??[~kaF9Z'9L* ^͓zZ~IKuVDۊf=Nn=r =7&{9nӴ3 t|?_ϗk?^Dqd!"㈉#bmH1H<:(/!ajfb)2bd #TF&_vk?H\hʷ~WYBEe?'v#2*D㋪kydRq `"XW .z?Msώ:Q CyCCi"g6`m* *:Zĝ&SbY8RZ}R`.9 soS̚y *=K]C0|^fj"Z(8/"Oߴv[1Af6BMgE=}HwT7smͪ#յ!]T t+uS3QFhӪxVᄫEԺ[պO?$$kTͺ]Ո)E#Y?zegyX#/ >„dUM7=;FxԵ?TLxPSQ R endstream endobj 1554 0 obj << /Type /Page /Contents 1555 0 R /Resources 1553 0 R /MediaBox [0 0 595.276 841.89] /Parent 1535 0 R >> endobj 1556 0 obj << /D [1554 0 R /XYZ 71 807.752 null] >> endobj 1557 0 obj << /D [1554 0 R /XYZ 72 418.523 null] >> endobj 1558 0 obj << /D [1554 0 R /XYZ 72 358.138 null] >> endobj 1559 0 obj << /D [1554 0 R /XYZ 72 299.91 null] >> endobj 1560 0 obj << /D [1554 0 R /XYZ 72 241.682 null] >> endobj 1561 0 obj << /D [1554 0 R /XYZ 72 183.454 null] >> endobj 1562 0 obj << /D [1554 0 R /XYZ 72 125.226 null] >> endobj 1553 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1565 0 obj << /Length 1420 /Filter /FlateDecode >> stream xYn8}W-2PSTd vEmUlV4XbY&e @Lș"+"A%(ũdiy } >zv8bq<{6fT&k≕Wje; L^~?=` b#,M@]Q%,.Ї඿Zz[H2B AĘخ ݭ#AH02Y][!LU Դ} _rF,)4^8ee Un6+UƶU볦s zըOce\_(_޳C&ʳb70 4\.y,A(N09N$۰d!IțDV|HIɸt_m2҃ `֮؄ lo-oל~nrry ЊUwT͍Ñi7l#""򩞖UC)GJat;|IcXr/f= d 3`WgCX)CR ։KJsruJk–s VI_&LNcln/ae}a)N=5s`ܙ84rxok5x: =p#ڂ,tվs􃥈8sw1Y*OC3rdkNöH, WFX>:a}1иE䥚/gCvDbo MV5cI4FZN"Q#| agSxSvCQѲrrK/M~Cތy'=Jcds-X.F `G`S[d$d&C0D SJ8I1x > endobj 1566 0 obj << /D [1564 0 R /XYZ 71 807.752 null] >> endobj 177 0 obj << /D [1564 0 R /XYZ 72 769.89 null] >> endobj 1567 0 obj << /D [1564 0 R /XYZ 72 642.597 null] >> endobj 181 0 obj << /D [1564 0 R /XYZ 72 612.155 null] >> endobj 1568 0 obj << /D [1564 0 R /XYZ 72 391.946 null] >> endobj 1563 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1572 0 obj << /Length 1684 /Filter /FlateDecode >> stream x[[oH~@;d2PUڦjlbJqlTܰ7VEge3PGu^6$KԕiP+ :Wg_y{qnLvE!>̿@x0j[Z %E@3C(b+T /]lAI/xCNn)RW@jܑ /0,!YU@e!cB&ǡL%XU؀kP\'UzKR(WCAr5tM+4*np"s"820xv|Sa⥏'Ǭ4ᗰfk?=b'ǼU@Ŝ>19ꈅ5#}Ν>bM#VHV!NV,d>nqKa`8BP,^z58t.OاӉݻwQj-Wv wIRqm;F~ NLb{NN˗wuPNlӡW[2ynEqx .Fhrf5>EXW/&'LBoie+z5OP q9${wXPҝ򬩐p3 ]1}ΡEuNK;He@9)'pRS`TVTeRʜǮ|p$;n13Ezi~N]:0>@Z@0!,[N endstream endobj 1571 0 obj << /Type /Page /Contents 1572 0 R /Resources 1570 0 R /MediaBox [0 0 595.276 841.89] /Parent 1569 0 R >> endobj 1573 0 obj << /D [1571 0 R /XYZ 71 807.752 null] >> endobj 1570 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1576 0 obj << /Length 1269 /Filter /FlateDecode >> stream xYo6h?XjDJ*Y)cbэW=2IIG%9Kc(ԉ;/_| &`l[` h3tggAbA1IWv"#R1}| :w(#"ksEsrVN1s#tC3a >OfR}ΙP`j(6fAg}Nʱ6xd=ʭ\Q'=J,Www69>s@Z+AV͉^ʬ~PFzXr~s!ͤBffy~^EaQ*4| %[E0\aAm؇w;ÄO`Q}z MYn^cۻƎB&MX&[i`2$6AQƭ1D_Mn 6-iX@OQ_ ?b a+\#i>|.z`o y$/0|KsћVl 2"6X<ܭOة ڧ9Z!xlG ?;%Jfo:oWT3cY#/GAkˏ*ˋ㞭:_y Kپ/,nk4,@ endstream endobj 1575 0 obj << /Type /Page /Contents 1576 0 R /Resources 1574 0 R /MediaBox [0 0 595.276 841.89] /Parent 1569 0 R >> endobj 1577 0 obj << /D [1575 0 R /XYZ 71 807.752 null] >> endobj 1578 0 obj << /D [1575 0 R /XYZ 72 769.89 null] >> endobj 1579 0 obj << /D [1575 0 R /XYZ 72 504.689 null] >> endobj 1580 0 obj << /D [1575 0 R /XYZ 72 444.304 null] >> endobj 1581 0 obj << /D [1575 0 R /XYZ 72 386.076 null] >> endobj 1582 0 obj << /D [1575 0 R /XYZ 72 327.848 null] >> endobj 1583 0 obj << /D [1575 0 R /XYZ 72 269.62 null] >> endobj 1584 0 obj << /D [1575 0 R /XYZ 72 211.392 null] >> endobj 1585 0 obj << /D [1575 0 R /XYZ 72 167.101 null] >> endobj 1586 0 obj << /D [1575 0 R /XYZ 72 167.101 null] >> endobj 1574 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1589 0 obj << /Length 218 /Filter /FlateDecode >> stream xڕOk@)渁:NQK[JM<Ĥ6wӼy oO;xb7d %aJ5lfRL:>[-wC5|tǻcE K'joa߲N@%,%5I7aL^> endobj 1590 0 obj << /D [1588 0 R /XYZ 71 807.752 null] >> endobj 1587 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1593 0 obj << /Length 1501 /Filter /FlateDecode >> stream x[[S6~ϯЇȒl̰t`)dmcb%/e.+يIǹ@X\cR>4A(腍xB 8& A1$)lxmh81 }`XbѴ ,z끫λO؀ay h:8K97:HdAU@ZİBy=8:Hv!xwҁdh0?䍋LX&)G=ц'TXC Oi@MG6-Ɓaؠ$T/' gjF4*=DRY4("i`RG8ُZ@ C|fZ'$B+j"x$}!% V}%}<0XprتqN c .F&t4Ϭwí%F:[X:=[Ɓ!FF72G6ԟ(h/D@託LH2=suP"Ɖ}c˵!X__~ܫ2@sYzT-ܦ%.,{"a'a,iE/9ۼN֡!KYr7BUYW [k +\y,YImYk%BL*`vwtMrz&߬8:. $bMb`{,I"~x^|LڗӓˬnckC^:Vʩuje\h}K؀E,qS??S؁1N/&sn9k7K#,ͱ{b"޽,5T\wݐMRjπsPLDp,` &yH,:0 endstream endobj 1592 0 obj << /Type /Page /Contents 1593 0 R /Resources 1591 0 R /MediaBox [0 0 595.276 841.89] /Parent 1569 0 R >> endobj 1594 0 obj << /D [1592 0 R /XYZ 71 807.752 null] >> endobj 185 0 obj << /D [1592 0 R /XYZ 72 769.89 null] >> endobj 1591 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1597 0 obj << /Length 1531 /Filter /FlateDecode >> stream xZ[o6~ h8u Y-.KlӉ6Y$mP"ْ[&As΍tz-}9;A.Ca˳PwzOs\}u^7Ƴ|*,YF݊HsL:- Ѵ4`5jlN1shGS1R$;V(;v\c= #r%esAZز.VQ}L(]#mbƭr"d# ?0sk-K v}-'i vL};wɶ,K(UjR, x5]OinZm}9)xش 7ЫZ-:%H"+UpŜ18ڏ{XIuK=ZAkM2 M=Qci~oFI!Hq3 2%:g $$G>',0$X=c@|+/tluUz'n~U%~bF@ϝR1CZ} 3 n+8ҿ( 2`̱TV:o<f.z8eس]up%E }:WA7s3t;< ;T WEX^KA`@h%M&᤭L5@8Tw@T%Ӻʲ$J)ep-<3cN#$E yxR9HTO}|W&ȶs[ੇmC'uJEQitY#TwKA򨟿ٽn_ J{E\4S&tX0)3!]4! nhWn6 Ӭ,x)c>+ 'E? Iǜ:Wu -wyJ&#q"=|!baD͓DYdt+\zY3oʚ>19вe}8V67P|Q!"15ͅAltb8L$zi ƲN,xi[ eT"⦭w%ͪ2*;r<1~URuXZ)UÕ݄ (0ͮ4!.~yL^T&x:q_H٠?5hH۞׾t +/ ?H/(m¶a endstream endobj 1596 0 obj << /Type /Page /Contents 1597 0 R /Resources 1595 0 R /MediaBox [0 0 595.276 841.89] /Parent 1569 0 R >> endobj 1598 0 obj << /D [1596 0 R /XYZ 71 807.752 null] >> endobj 189 0 obj << /D [1596 0 R /XYZ 72 536.757 null] >> endobj 1599 0 obj << /D [1596 0 R /XYZ 72 288.453 null] >> endobj 193 0 obj << /D [1596 0 R /XYZ 72 260.068 null] >> endobj 1600 0 obj << /D [1596 0 R /XYZ 72 105.612 null] >> endobj 1601 0 obj << /D [1596 0 R /XYZ 72 77.227 null] >> endobj 1602 0 obj << /D [1596 0 R /XYZ 72 77.227 null] >> endobj 1595 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1605 0 obj << /Length 1323 /Filter /FlateDecode >> stream xZmo6_AKR`IRKYbB`,JY^ߏdǢv*DIw|ݑ6@}׿zX]!IԻ@g˷"@ıսWz?{wlbPAn&xtC:Т6X.t('Ă^]ǣѹVL@X$:*F^OoG‹KtML mlA5,]BĖ&\LKhC؂ &!yT,v=ҸHޔ<8nam}5f^դ7B5#\"YR5O[[mE*_¿~<%~΅Q|%wۖ_Iy.ë$˕Se` oՑ9[E·M?#~"ӃEvyv3UjQU=b98@d4L3TUAG|H[fwUjN4$"K$I$jD> endobj 1606 0 obj << /D [1604 0 R /XYZ 71 807.752 null] >> endobj 197 0 obj << /D [1604 0 R /XYZ 72 769.89 null] >> endobj 1603 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1610 0 obj << /Length 1469 /Filter /FlateDecode >> stream xko6YjE֡źfiP p D邢}LJdIvq7:};6~x>zF>|8w)|kEbUgO'\=` <|>kD6"m#'E:ͱC\X'#EmQo(`cxVȲ]hxȲ<ŘMńb3aeLpZ(^#|>},ɳϧ,6G*E|:\ZZ921Y,6KF5K;Wb^0lȚGJ>ҶYgEyɫ !ĶZ1-zYqv'56^KwG㕰f*m+X!C_ <RSȗ]e!]^  澆x/[AVIni/*08AI꘬ N/Z)olUk5v.^d.`M;]MPHxzBS5Б VW\>O@-.Pn4Fu&F[)_J!EU8$'l78󮚍}Wiqi'OS^DkOm!$&i\;( };vڨX=MZ"Y"]VzKݙ5'wJcW<ի[ &ʋr1{'AӪrq ^IrGCmiOr ~EC_K18~ σ؏3 !dceŲڿ%S]cٲZX_ė Z0Td)3!g^@嵨 ,#{ⶸP҅+˽zEn]m/ܝm.Z^yVU-jqob@-@^[%aya'v=>Ш.ؠ0B(mB:| p&X-˭7⤍ϗ1l`Aa!pFkYr,D(rrr24v$Pڋd܃u!DnR4]6\ %D5ǃ<%@ YD4w"R:XMu!kJzr$4{(ATMuL /P[IJ8Mp O#L4ɎwCI~ǰ)Y12yk; AB2>- G|kf26 Wqgm+oCS,fZTqTȚZ>fô/hc6֬\6y8_W9u,fk1WGVFrl;!nx=ʍϿ};mYEzfg7l@[xĶh?o\`zg.Mu 0n‚pi؈lz6E=s`|yVꃖo"pRr Rdɒ endstream endobj 1609 0 obj << /Type /Page /Contents 1610 0 R /Resources 1608 0 R /MediaBox [0 0 595.276 841.89] /Parent 1607 0 R >> endobj 1611 0 obj << /D [1609 0 R /XYZ 71 807.752 null] >> endobj 201 0 obj << /D [1609 0 R /XYZ 72 769.89 null] >> endobj 1612 0 obj << /D [1609 0 R /XYZ 72 420.346 null] >> endobj 1608 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1615 0 obj << /Length 1519 /Filter /FlateDecode >> stream xZmo6_Atbc5Mz-R^n)KXEwZd˓ۯQ77e祅N񹻇#~n4n^k6rcj&Oc&:3.we3r穗]{ toZq@ BY o̱?S3k }h" ?`dIQ 7j‹@cP@0,̘%2GA]v%2L?vLP?DI -4r5Xl + i"~0A׳l} "RB9!P nl*v/ss7bƌ:Lț eſMlE-bP @W Vi(/НGn6k =P$r50a5xQDNy_%a\1WŽ:Ä{NI}XW^Qj6"Hnܐ򰯁S_in838A|u`6Cl+3!|hքX.N{YcoJ=%dS^G hp18ڷH쏃 ~0ɓVa7ۼ-4fվ8SIMY8^IY0[DqzF1NzXxunek^<9ASW+"IϢ>S,> endobj 1616 0 obj << /D [1614 0 R /XYZ 71 807.752 null] >> endobj 205 0 obj << /D [1614 0 R /XYZ 72 769.89 null] >> endobj 1617 0 obj << /D [1614 0 R /XYZ 72 624.665 null] >> endobj 209 0 obj << /D [1614 0 R /XYZ 72 594.222 null] >> endobj 1618 0 obj << /D [1614 0 R /XYZ 72 529.43 null] >> endobj 1613 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1621 0 obj << /Length 455 /Filter /FlateDecode >> stream xڕSn0+X-I[Au\ ,:We9E(V5bv3K '@L@@j `>=|ΘT|y烬J[u%fo G2]" Ե"@=t\KؖjM s{ i?bNI/R8~ =C @ ] |#)AI$E ]Kd<p[ 7O H52 ,g"> #{aJ8Y,MkJv:Y՝?^Lg>lzf׼"|aF j=lqa؍crz)Lmfrv#ȸ 'W|9^;!0!p hxo61COXJ~f^JSn쌝)k͔hnvm endstream endobj 1620 0 obj << /Type /Page /Contents 1621 0 R /Resources 1619 0 R /MediaBox [0 0 595.276 841.89] /Parent 1607 0 R >> endobj 1622 0 obj << /D [1620 0 R /XYZ 71 807.752 null] >> endobj 1623 0 obj << /D [1620 0 R /XYZ 72 738.068 null] >> endobj 1624 0 obj << /D [1620 0 R /XYZ 72 738.068 null] >> endobj 1619 0 obj << /Font << /F28 896 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1627 0 obj << /Length 1547 /Filter /FlateDecode >> stream xZoHKvTT8.T*p-sӖt>K'TE'ڙ`g=/=#P/q*Ѥwz1_xEͪA40Oz{OiE(Tz N ީÓ7 pĸza#CO~~|xrJ ZIʺhI9 €51E95짊Y)obK2ܐAMSF*BN' x vȓԑ^]N>k7ntӋl6yi'8-l֧¿D,UV#Xj'`]e$atYx(|(Ͻ"$A<E[6"&BM"@Tq[PE 6"jkB\NPJRE0(H4z||܈i !u|1˵FA&;^2TkbFYMNҮrY6o-XItcgJkᰃwu[Lf2I*CXqIoN)-iQ]Z\Ԧ մ(qcj~t~Q/}&oy_Ρyhj:o, Eڊ7 E$:;[Sfn: *ooBbXn VRβ.PAq2wCOhd g2ٍNlѬ QyrqU~sR^%S5vf̜ƫ-Om;B<7ΒjXmRSpP#Aʄ:fUؑځفAA!xϡ,)6w31ɀ؀@q01n1)aHܚj&6"2H܃{dǘ1ebރ˭ex.we,-vuŖ푁H> endobj 1628 0 obj << /D [1626 0 R /XYZ 71 807.752 null] >> endobj 213 0 obj << /D [1626 0 R /XYZ 72 769.89 null] >> endobj 217 0 obj << /D [1626 0 R /XYZ 72 611.484 null] >> endobj 221 0 obj << /D [1626 0 R /XYZ 72 405.322 null] >> endobj 225 0 obj << /D [1626 0 R /XYZ 72 198.165 null] >> endobj 1625 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1631 0 obj << /Length 1519 /Filter /FlateDecode >> stream x[mo6_!K`IJː؊HѭcE'dɓ#%JdDZ4(x|9t$ Aca;%*VTҰ:uYҨ{wǗK_oo۟,fԋـ iSzXWPBjC&J6 ]z5TJw:P$/xǜfU*%M%@dv_ *t & PR  vm\7\ `"g*MjN@ӹY %d \K3תJZ"Bk~줥VȬ>ւiF*݉ka1MAq^l:AA3E4֯$Ȯ?NBP:%.S0 6r7A1Dۼd)JxNdkƽz!ue,й\ݙ^=$յ XӸ5$Ay4@}+1PT-sȟs AMf#uoVXc)nuF]vy'C(̪FKz}@NȻ% >r;slF7d˶8#kɳAo.]Uݬb90 l|M}k$*@Qx|%K½Κx>DB?gNM/} /j_4ʕW6d xiH@ˎ,wRs[tJ,Wi,_lbl<6:SfdkmܔQO8 GoADH2)m W g; F)b$tUVdaíZOw`:kϗX7E@}@UH?xdOR_ӕt=y9uVH_BsiIrmf9mt1f8Q$:n]x頋[s*qERRU0vùz3.fX ^ӥ׵rf z> endobj 1632 0 obj << /D [1630 0 R /XYZ 71 807.752 null] >> endobj 1629 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1635 0 obj << /Length 1448 /Filter /FlateDecode >> stream xY[o6~ ^DJ Y-:,Kl˩6[$i0Păɏ<"]W It7EKL-dGw4~^NnLbQxn%~ X`}rCa9(@[X6;!A殃Qsd -=C?:ĈKďH7n>%ȖDGw0+# )ZA]L(--ac&xh8E  psǶ+cYv`wL,YL%@`WX[Q,|zd0~)[(txLM_"LTmZIlx;o394|LIY;:o d&Jgvy4 Bɋ{Tt!F=J3?'29tЋZpZJ1a9g (H@~Ra)<$)/O{I={ g > Ɗz 'j4O/>b#7fF*Bċ \ bQK] neni2țyF0Tol3A:lY*F萖8炝1$Hb2S̝ڮ̟8]Ǒ2 ƾorgv`kI̖lxM=8K3'&.ASLk>-2g2*=?,Dni,U)&.NNNZ-xσʭcL5 S/A=#v%2'~$ n΋I{kiy7-Z--k)NKy\ ݚފDF΅q, uq %4Gu^2:aVe L'TxKNi~?..BMG{Խ75P z}(Jb5[i\agN9Y-3iU*悰 A$8&M?Bԅs^dI.al9wY *nvizNKrnqom)D^۱_Ѣa;;$j"ޱU5Rj>rDt sfb `6Sd, mrsJa)TC3Ԙ=M-©i|UQXօx sYqjŨMozXs]9ǎ`oK>j"!g\l!! "@ˣL(gCLuI+m2'ׁ/`n0^]O\tJ=V#5 J!O 1h)Wm۬?~BٿU_4% B%6NR7I+8#l ٸls_ Cӛ ^3Lipbۑ>s,v^?N endstream endobj 1634 0 obj << /Type /Page /Contents 1635 0 R /Resources 1633 0 R /MediaBox [0 0 595.276 841.89] /Parent 1640 0 R >> endobj 1636 0 obj << /D [1634 0 R /XYZ 71 807.752 null] >> endobj 229 0 obj << /D [1634 0 R /XYZ 72 691.562 null] >> endobj 1637 0 obj << /D [1634 0 R /XYZ 72 421.706 null] >> endobj 1638 0 obj << /D [1634 0 R /XYZ 72 309.58 null] >> endobj 1639 0 obj << /D [1634 0 R /XYZ 72 141.698 null] >> endobj 1633 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1643 0 obj << /Length 339 /Filter /FlateDecode >> stream xڝRN0+H7@Z hnBnb(MK8qJwfA(\_r RB4Z@^7Q̕Ƨb=3nvo+kV6<(F|.r􆘗uBdB!P"2 ݯ9$RW0BwVe,kMAIql?p.;_e0%4ٜD`;3ZǒKl]фPWlz%N!fdB/g;X-6/|ʙ=^Mbj Nl]s dBxzx 'U!}]MJIoMb7+f'ͽB endstream endobj 1642 0 obj << /Type /Page /Contents 1643 0 R /Resources 1641 0 R /MediaBox [0 0 595.276 841.89] /Parent 1640 0 R >> endobj 1644 0 obj << /D [1642 0 R /XYZ 71 807.752 null] >> endobj 1645 0 obj << /D [1642 0 R /XYZ 72 703.972 null] >> endobj 1646 0 obj << /D [1642 0 R /XYZ 72 703.972 null] >> endobj 1641 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1649 0 obj << /Length 1624 /Filter /FlateDecode >> stream xZ[o6~"2Rt0nɒ'Ywxmək+vA>9\Zb|mÐØR*5/?/.~syտDߕǰ#2\b0A|ٰxDs\c+ oFu.vEG=>(.,vüK]qv󧘔0"?Զ~PbhzfdslO\a^'cRhVũβH$fmXQRt)車"/&$.nx|LΩ11Òe0HLu 8Xzr^O i \^mO0!H=D9[J΅5}PF/U?̯QW5YN,Dfӡyul1hGRk]Lm4T1X?Q3nj{0W嵐iMRkg4@j@M;jJGu冓 {9Oăhm5Cm`U柒XhsQVYnr{'*_5(?t37Ⱥ)7%D܉Č-O#Fc^i{g׫zWʸFe] ۋf ɸA|pC.ECyǓmr ߊn|'Q(oL&b6.@cD-J=u+rYK- 33$hh7j|HcE9_cs p_PI /;`pP_RQ(djHEYHgZtEN{ 392'xqBϛھ endstream endobj 1648 0 obj << /Type /Page /Contents 1649 0 R /Resources 1647 0 R /MediaBox [0 0 595.276 841.89] /Parent 1640 0 R >> endobj 1650 0 obj << /D [1648 0 R /XYZ 71 807.752 null] >> endobj 233 0 obj << /D [1648 0 R /XYZ 72 769.89 null] >> endobj 237 0 obj << /D [1648 0 R /XYZ 72 611.174 null] >> endobj 1651 0 obj << /D [1648 0 R /XYZ 72 542.508 null] >> endobj 1652 0 obj << /D [1648 0 R /XYZ 72 139.389 null] >> endobj 1647 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1655 0 obj << /Length 1097 /Filter /FlateDecode >> stream x[Qo6~ X͒IA Ee߲l`ˮ$wۿIHvHԅ;~w}if/_Bk$= ![+l) 7٪4zyKݺs ]sC?عut(" mɢswOVqA1%hCRW)2۫G’ZȖD׮0ȔT( 2i Hj SR~TcB#3 3a=Ԝam aGJ4Ԃ"< 5XIۄ< ZGłjO94&Kb n /('0̃n{b5^^t겟E擦YQcٍ!/=HP5@|pK*z+'? !+Mu xdih P> ^?58kI*1yjkT(q,HϏ9n lQU2%DSG$ǭV2{P;"7ϗ>] _S%1"Fqv:5woXHvL> qRMJW:<_faiN%SaO2pi8Rirn$tTթ+ӟƦH)UTuUUzUnl<$X H>@Ɣʶ&&,Gʹ{P(grz4aK{M ;^i*1&Y+EFr,)Z~QDƀ~Ig[Plkqn h2b-jYV˲ZuL`Yƛ#zy+` _Y`]N}ϟywðkd-AIPj jKP[5`M˕$z> endobj 1656 0 obj << /D [1654 0 R /XYZ 71 807.752 null] >> endobj 1653 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1659 0 obj << /Length 1064 /Filter /FlateDecode >> stream xZ_o6SXT[=ۉ*U]ի޺ e~c'PXSVQ:>>MA7_eX8AGdY6r-B1 n윹^CVq(0~д;9~* CAA Xۘ AcD[C.g͐)f)t.E/ =Yxءr]ws0șXxd0]@#,LgXlSS kb.f*'=>9TT(w^ΐ:W[\C+tBO(PI&/>K`h)5_$?Oe.]wW9y,ڤ颐jc筮ʃrċ~4FV?3dTI㢽5\&?|aFtzlGi6(&t't*hH68%ɧᄈ4r⹞ ֲK ]˟@F %l rer=ېEY|犺6<KX>vt G(.>\idՃUYվ>7+a@ֶ rTĮ bv1gzFM&*VTs> endobj 1660 0 obj << /D [1658 0 R /XYZ 71 807.752 null] >> endobj 1657 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1663 0 obj << /Length 1316 /Filter /FlateDecode >> stream x[mo8ίPⳝ8-ުڻʂa#A&a'ǟ'VeV+gy8Cn*t*]8@gllΠ n} b[DxF݋pBN]T:,U!hRn}@` ? ɨ 0)Ķd{ ڕ*(*_0q b- mDKgPȄD0La "`ATĶNC񢞸ߤ6$% ׊@P!K=q)L23Rڜ*~Bվ9㙨I;ZMd'N.9/H_3o3/u:B5H!lANqgIv}uwSIwݶ6]ZR DR]葪YH*H\2FjpBSy(-M&}4[B ua'^+sQߟL{3ύnb 3F[yAv{%opC^2;2`$#MgYt.ۦ[嚥UJ1O׋i+7,g+zVcFL/udZ0j_>~k߶70ck``#]$/G !x\s)kDE S ,3ϗ;Е*bpI e"S{^̞cU%,lߧ//C4kuy~.p`&o/u|8E|(]WٿZ v*ٱ2%5!zr&es.D8HN̡\K52N(GX% endstream endobj 1662 0 obj << /Type /Page /Contents 1663 0 R /Resources 1661 0 R /MediaBox [0 0 595.276 841.89] /Parent 1640 0 R >> endobj 1664 0 obj << /D [1662 0 R /XYZ 71 807.752 null] >> endobj 1661 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1667 0 obj << /Length 1273 /Filter /FlateDecode >> stream xYn6}Wy Yht.v7pNʒ*i;#R-{vz"4 Nf0aG|;! bq}In#25n>h,\ϸ( WKVAg;śDTڔfWcWEm%r01a=G-$ͩpr3y_@1x&q~ݣ рoAx\9Է @@lO ߲]*lE.$Yn^',p&:6'ر0ۤo^\\ajPA\l NmÛZxD z-LLc1-lT8/ff|JըF|ԝC^DFX ߼WDEw4kw|>^sVG%@"'+eUjy~sTݧ`;E2)DMfa&bȎVT!yX=i:Fqy_k {Uk<(y#ɶNA4縬>N^<nBӑ\WE':Q`3<4e*ZgÈ"i$@,a1rY-Ϫ5CJVr WR]H(x4!-/ uϬ{uW=LNĩs[|68l6]'eR-dag" ¾".RHq$;C}%2HhD+?kyZO^KOXNu,|s^Z3Zu װRFMGkf u<fqw[*ئQ'v$l '_NsUXㅀ&2 7u=2kO,06P> gQ endstream endobj 1666 0 obj << /Type /Page /Contents 1667 0 R /Resources 1665 0 R /MediaBox [0 0 595.276 841.89] /Parent 1674 0 R >> endobj 1668 0 obj << /D [1666 0 R /XYZ 71 807.752 null] >> endobj 1669 0 obj << /D [1666 0 R /XYZ 72 592.624 null] >> endobj 1670 0 obj << /D [1666 0 R /XYZ 72 532.239 null] >> endobj 1671 0 obj << /D [1666 0 R /XYZ 72 444.123 null] >> endobj 1672 0 obj << /D [1666 0 R /XYZ 72 399.832 null] >> endobj 1673 0 obj << /D [1666 0 R /XYZ 72 399.832 null] >> endobj 1665 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1677 0 obj << /Length 223 /Filter /FlateDecode >> stream xڕKKA+8 yUT[a5}I\P#A|N\]Nm@Xz_TV$xiWYQ)gLc13̲vs ]ܧ!a>R^M?R endstream endobj 1676 0 obj << /Type /Page /Contents 1677 0 R /Resources 1675 0 R /MediaBox [0 0 595.276 841.89] /Parent 1674 0 R >> endobj 1678 0 obj << /D [1676 0 R /XYZ 71 807.752 null] >> endobj 1675 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1681 0 obj << /Length 1493 /Filter /FlateDecode >> stream xZ[o6~xd6i&i[0TYvI׏ؒ6ΆE|E<*5VWdaKK pˏ;?"k_X\WXWըbB#m~>!+#IX5%j&C}_^쿨c RaZ=BztqI0ĥN9PZB `<L=Z$T-TRL=X|󬳴8h'(HaGܺ;+8B]n~H{ɥ&Oѻ8z/ >O(^0RXpXIRBQa!E&9őrΉL)8j59m3 F Tw*ƩyQs)[9#5#L}1=d~*^t#[/_]YȩTr{ 巚`?+G~v_(W%`eӉFkZϰn҅&Y K#o5WGil˘[lDY5\ųogyQ%{?uE{Nf#ڛˀv 9U-+ض K܅Hm,۠VPc6~!60? bfyΞ m_> endobj 1682 0 obj << /D [1680 0 R /XYZ 71 807.752 null] >> endobj 241 0 obj << /D [1680 0 R /XYZ 72 769.89 null] >> endobj 245 0 obj << /D [1680 0 R /XYZ 72 611.174 null] >> endobj 1683 0 obj << /D [1680 0 R /XYZ 72 544.565 null] >> endobj 1679 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1686 0 obj << /Length 1351 /Filter /FlateDecode >> stream x[[O8~﯈v\vY$fPdN.$e%aTHq a{]mc82l8 L4qӾ>`m_F%-, ,f``vx [Z $-@<-4Bn@`zz+1,vlގ_-("c n .i86$OAu)h؞ t%C^O2DhcEEΙ1zy) wAK @kJg UKrRGj֨KXeQ9$ހDd`! G_~+;c  M\y.K :UlJMRBFxYjb? Y.oCxC]p- 9[lFx}yզlI%HTfN*#_USt )[Q2+>XP(1 :!v%Y>?Ѹ`Z'#BW\mZLQ}Kz2JXO(`k^ o;7}w}#SUgԓTA.i0ỏwE) YQ78 ,'iΨS4'ϯqۺAx*ޯ=fsYQ)7;,R85WfS#%x)MJZ*+LM Lb? <՗TvM#)- 9U0H:X^$VNiHU>Λߠd˜w{yگ?s$ ?.v:rU#u4Gc;{6>9OY;VJ ,G7 = 8? `Yg]=kqR zs`"d ,n1\BnA(0 ҞE/k= + endstream endobj 1685 0 obj << /Type /Page /Contents 1686 0 R /Resources 1684 0 R /MediaBox [0 0 595.276 841.89] /Parent 1674 0 R >> endobj 1687 0 obj << /D [1685 0 R /XYZ 71 807.752 null] >> endobj 1684 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1690 0 obj << /Length 1625 /Filter /FlateDecode >> stream x\o8"_J!uC֖ctҮ`hn`IC@LGC>(LhR ^<~q- SAV*RD$@Y H$—3eas;*-b[N@ iN!bZ r' cR~%@2t;}d+|n\($©~W,:P$h4Ql]䉅 Xk Mf%%^0n p yD&.D:zJlSUH&%.lqTvF5 (a'Ύa/N,7\Yf< zcm+z0'n݌{wcǻǡ9 Gd{ō! g.w=sC'I sa;{7O "O$T;LJXiV8qweX%1DSxS.sc8A3$jKV%'z?X{Mŏ$"fsy'-_p:>ojt6F$?MRFrMhdI833^@!8̎?5a0UײDi?XN 3@+)ں̌7yksIuI#}vy8h28 ']V dWK?;s dqQI_Cv~]Z0EX 9PxM̋@6XՒYtʉv'W=Ee#f*Aɕ)dӸ^EB+23$ķp~~Sf'<)/.oσR1';0BEd9 (.9O# )Z8Z1; endstream endobj 1689 0 obj << /Type /Page /Contents 1690 0 R /Resources 1688 0 R /MediaBox [0 0 595.276 841.89] /Parent 1674 0 R >> endobj 1691 0 obj << /D [1689 0 R /XYZ 71 807.752 null] >> endobj 1688 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1694 0 obj << /Length 2032 /Filter /FlateDecode >> stream x\o8޿"}ts7RMbڕhCQL-/\USㄒ!)iVT 9y_ہ-7ãWũ@ '8Em%p1w]]\6Hi+]cnc'uY[X1{@1;;PiHrcR@P[װ͉"]}#Vyy+ Ζ(- Pz 18AB&b+FVUy~yZ/J @ant H+"mDƕxE+q%(ČL1U-5GĒwUW!_ΝLDv !UIkveV7UUY.~SAW_ [P J}Te8Cy/?y6ь!8X |Ti/\? {租é8s]޽_$fB- dJ+l~\^ bXXyP\yyT,hwbm_xCm'e, ٕBu%pTeθ٠{9G֭i;>NWH|Z$\G;aR^S !qV4Hg1 !rLz\VӸ'. if3SSH* (mL[×k(f4zB܎nYx44'F 㙒904_-y<C}6EQaLJF׹{+ ; J-_ gO m"ֽ k(Y _+_ 0yݞL?ۗȷNv:?u=#^> endobj 1695 0 obj << /D [1693 0 R /XYZ 71 807.752 null] >> endobj 1696 0 obj << /D [1693 0 R /XYZ 72 319.893 null] >> endobj 1692 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F37 944 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1699 0 obj << /Length 1343 /Filter /FlateDecode >> stream x[[o6~ XQ2t)R4MNJt`ߡ(+m$o€%I?\$tzXS3QotĪ,ƺ.ON^j}&$b1xį삅˘< bjy|A*4Pm`Xȏ:AC@뎍WEȠ*,CtC sU$~5;g4;:,bG:t(WtXB; ȄkUb* {TGgbCC* jA0I.a|MCF}#B_*BrXQ~}|3ľxy;[qW=xСJCi+'$ی!OiWW>%iʼnfekQ޲лgê*7 VihK% 5iق001d 4 Pg[09ͪnxRj>8VyoWcVyg eA4 IY8pW)CK,ALM@ ^ eɧ!UoktOEW?_.ebvJ˃1&y,"$e? X ^:a/^%)q]#0! ljNX,_,9$b&/X#,qTlPE,t,٦WPyXZdHPN3 $n!zi%N>_E %LcR|4%n$Oqb*YAu I˨5 t>AL<\:1v'q̉E8b/Z;=B_E9Dxta FBXk;l$b_U#@WZ@@ endstream endobj 1698 0 obj << /Type /Page /Contents 1699 0 R /Resources 1697 0 R /MediaBox [0 0 595.276 841.89] /Parent 1701 0 R >> endobj 1700 0 obj << /D [1698 0 R /XYZ 71 807.752 null] >> endobj 1697 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1704 0 obj << /Length 1848 /Filter /FlateDecode >> stream xZ[o6~X͒K2uYuPdѪ+ٲb}"e[-\P$Z>w~XiX{xښZJf96m]YCC-ғ7؛<̏rM|!ܾot/ F$i1Ҽq~!0[;+ FLƯ D%KF9};G#f YƔz45J53Dh,JAV|ĸScA9R҅90agJeTyQc"[@YIm^ʼniW펉q8 y 8v0Nn߸A]<ȲsRҐ9i!9n.^bEvJr'cr&_EXo3-S<uB M?]&~ITI\_om2XpQčk? FI<Fo#7\ Os ufF9/AWZڜbid6 W#ۅ-".6LLH?ZR߫^ }j+@(re,kQN r W#/PH:Ԗ8"91S.HJ #@V ?v{'g3xhgw^{vЭynTQrnIh$&YS͠7ˀb{da[ nsݸdW^9Rjy"p(`O03՛|X6a[y=bȲ%"<žGV#?K,g yIu7:| !`V#mYciN_\qW +¦F24]kjײy +xpb.ߥ.5qT_h3ذi3~ T~ #9Ĕ&:v2ʮ7R!K&^6Iw~*^$˂[8TJ(NL 3d^ۧfK)@&Tm0[XQi 2'o0 |O)onTwH2m!޽2ݚ޵GG7Zuj+?w\S ˴n֭U׮EҎN3ϛa,ln-Vĵx |S l[Ե@\7M↴A7I$`h8$~4*v6pMX')T2l݄խ]p6;Qxy=ǧ:p:'n(q}OeP);Tzsqo=k P{Wb9ފk;N͝(^w*o=^אʁr$V3giOasM_)r;V;%|iNW/m: t5=Y7Lq%Tw|;~;8~*Fy%QТ+/sL'|絮oU[Xː_SXrGRVvҬ}Oa𛩌^Ѫ>uTG7nH$c54Seˋx Z5ʋhys?e|etvH7L.|c5uE-TayBhi*kɁA$I[ǀ> endobj 1705 0 obj << /D [1703 0 R /XYZ 71 807.752 null] >> endobj 249 0 obj << /D [1703 0 R /XYZ 72 202.918 null] >> endobj 1702 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1708 0 obj << /Length 445 /Filter /FlateDecode >> stream xڝMo09m RmT56Momo54a>w-R%G'EUs6 DNY*(Ttŋ|83nԓo|ov8H%:KVτr RgT1Y"t~H*kL2ʋ<Û@bAQ|pF}X$"iSdh#87~A@m$qav>>|t"?w%UxM*3F꺟z_sZMRH&7Rk_䯔K }xc bog,yYݒǝ5c6 "8؇:JHPP%M;6v0A*=pkƨbX}6k)p&1Y4]圿o5+エ%_] endstream endobj 1707 0 obj << /Type /Page /Contents 1708 0 R /Resources 1706 0 R /MediaBox [0 0 595.276 841.89] /Parent 1701 0 R >> endobj 1709 0 obj << /D [1707 0 R /XYZ 71 807.752 null] >> endobj 253 0 obj << /D [1707 0 R /XYZ 72 769.89 null] >> endobj 1710 0 obj << /D [1707 0 R /XYZ 72 696.32 null] >> endobj 1711 0 obj << /D [1707 0 R /XYZ 72 696.32 null] >> endobj 1706 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1714 0 obj << /Length 221 /Filter /FlateDecode >> stream xڕKO0{%7vl)JG}zVʣ@ąΎVN,eCp .x,} \/T˫e|i0{N]S^-ƕUmpb%hgeyXYwO~> endobj 1715 0 obj << /D [1713 0 R /XYZ 71 807.752 null] >> endobj 1712 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1718 0 obj << /Length 883 /Filter /FlateDecode >> stream xڵVn8}W\$Q 6.0-B`$VŕN3_K\h:û{H%"Ɍ+A DJpTukQHnbe(yRT,P,L11*jt<~U1~([81SfQpB89uy.$xy>7fT"pb,2Am4$C) 9aNG/w6)b"yJsy2C0L(XEF1yeT!#A+)Ƞr$d* Vg΅/VjeAY6}҄T8 #DOP%dI ۦzØ_+{J6}̪/!M jA"T77e7Ԫt7CNLOx JKWr;?ۆ8܅|$4 NȖaw8_R3? qHK&vF e5+]V!pc&Qj3fe_m$XUXo-_OI 3O> endobj 1719 0 obj << /D [1717 0 R /XYZ 71 807.752 null] >> endobj 257 0 obj << /D [1717 0 R /XYZ 72 769.89 null] >> endobj 261 0 obj << /D [1717 0 R /XYZ 72 611.174 null] >> endobj 1720 0 obj << /D [1717 0 R /XYZ 72 512.62 null] >> endobj 1721 0 obj << /D [1717 0 R /XYZ 72 456.449 null] >> endobj 1722 0 obj << /D [1717 0 R /XYZ 72 366.276 null] >> endobj 1723 0 obj << /D [1717 0 R /XYZ 72 310.03 null] >> endobj 1724 0 obj << /D [1717 0 R /XYZ 72 310.03 null] >> endobj 1716 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1727 0 obj << /Length 218 /Filter /FlateDecode >> stream xڕN@ E^&5gK@Z .fZIZhel_l^\qy> endobj 1728 0 obj << /D [1726 0 R /XYZ 71 807.752 null] >> endobj 1725 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1731 0 obj << /Length 1627 /Filter /FlateDecode >> stream xXiF_1p$2H "@dqqq(gGJw{_]!~QDQP,D{@$!rm(>q>z(IB4_!IL6$/য়ӳ E DH&:1#K#4U&pGTbB#+音٘<={5=ó7mN;QNVt"#Pǝ_~{90IbWe쟴ʊ1]nhԪ|l#Wݜ=88<øyw1M=1eH x1r13PgeτSy-jzvl‘@J.mUU]j*z~mTP|uXA/Ox5eG9@P_+]uz1v?:rKU +v|bXϕfؽ;7Սn=x0(3df9Na $J/\ʹ?sbcxjp7ݳXVa؃@5(9|gz13*[:]i.uL[+t<^4zj_VkU:j}igv[TX~.Btڇ}b%]$b.@i 0L`.֎<(>4-ic`Wޠyn~6ʳpqzv m m/1UqMUuGiקF}u|W|i[׌׵9zց!|L/c.r?0yGb_i+fa6drԝ)ڥoC8`Aҏ^Ocw/ؖz.0i<۞'"l=qp>a {Yt"*{!e>ݳ2eAZ[p vĀ( x5Zk_h]9Y7wZ 8xuIB 8DR t %z endstream endobj 1730 0 obj << /Type /Page /Contents 1731 0 R /Resources 1729 0 R /MediaBox [0 0 595.276 841.89] /Parent 1735 0 R >> endobj 1732 0 obj << /D [1730 0 R /XYZ 71 807.752 null] >> endobj 265 0 obj << /D [1730 0 R /XYZ 72 769.89 null] >> endobj 269 0 obj << /D [1730 0 R /XYZ 72 527.956 null] >> endobj 1733 0 obj << /D [1730 0 R /XYZ 72 425.172 null] >> endobj 1734 0 obj << /D [1730 0 R /XYZ 72 344.942 null] >> endobj 1729 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1738 0 obj << /Length 1573 /Filter /FlateDecode >> stream xmo6W;mE|3Yv)6KmV6Yn(ْ(i#$;ǔ+;/w/r4҂ {HHS{m*U؞ ؛`8agVηq9AT 89?828_9eBPHH<_BP#(r&*+R MIR)wDX9J}9"5]d,jNC-x] ݖvABuN D/ad zg[  J@s~K `8."BGB  MFTB1rZO/m0kڎM0\yͪ+p65\6L6K4l}z~vieLTT q`X_~YIe:&T#BD:JL`6a׌.T/&NbC1~ۦ-Z{6k %|33EoNFRܚvœzWW~_/e/' $W{ !t14_34`DH5r 7"`8O( Ul` &fÕB=6IW25(S̎QFo eg"q /pB 9IfצE8c)Qc\D|)j; 5IǸJ -1mib(Ұ~o"O/ajNCa5ؠAMַFD!*b(/xCƋQ0*ܼ%}L(mn#BS/ZA;pGV}(C4EUzxIzL hPVFxlh# !&< $WRώwqLaոUV[?n߾x6d;èͶȈ݇KVI`"8urT hK7A(G R  ]\BNQ  Vw۷U]jB{t~GVïÁw37bi*N n1"pWrIHdE7S{},`DH$tqX껾OҲ۔Hw0ܭf3ͮ$ P1H;6njBK63hG3_{//GoEkVC`1qPz0dz([|L]DEw}ܥ0}>iH">-)eHz33S^>ѱA endstream endobj 1737 0 obj << /Type /Page /Contents 1738 0 R /Resources 1736 0 R /MediaBox [0 0 595.276 841.89] /Parent 1735 0 R >> endobj 1739 0 obj << /D [1737 0 R /XYZ 71 807.752 null] >> endobj 1736 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1742 0 obj << /Length 1568 /Filter /FlateDecode >> stream x[[o6~а;M.Xt@Z6/ -Yye׶-ɗX`HyQ^/SHI*{1| 0λi]QAu6ƽxy8\u8#чwƧv#O4GB^oԸ;aT}If<.лhN\ߴ e IK|,SHH$ l#= %GbU* ɲ1\ j~--`JܹWPHJɍ{Cֵca?m%ƭgjO0#:H260O4T g_.3.`i1v$=\q y9uu?`0rvsvRT"QU~.Z *hq61I`%SV8Q02G'1j;CҌa- lqN3##%$gE!#})'''+d)J0o'&S;qPaerD'0׳0nqeT7mi&9s#ݹz8on5HF`}3p6kNuz؅i D}.rb>̇sbrphK¸ˈ0\O^Vkq*✗Y~6]daO< "8̉,DKiMJjf$Y7p|٤P Wӱ(&ŝUv@{#daL x[J'-?m'эpWHPr〲MHB>;edA#t NH} @ʠ%^->äGUkP,Ң,@S>y8tȲF5YW{o ZmOXތg 3$ &[lhن gŐ]A,)sL:ftS7xA+cA$(OxQ{vuQuQuQK*Oszl;DU;&0^X"h*]Qce K=JРZr0!۷gñ=Ǯ֯1A"^U""C%\?]J`.Kۭ]6+a]I h*݃()%UeU Rbn3j!e=O*[]ՕX]=u%wɽd%kػ*_T( }Tj:WQeg :+eW$KpDe/V?K6F&J[#[p6_<ҳx{Sd㿺7.$e3 endstream endobj 1741 0 obj << /Type /Page /Contents 1742 0 R /Resources 1740 0 R /MediaBox [0 0 595.276 841.89] /Parent 1735 0 R >> endobj 1743 0 obj << /D [1741 0 R /XYZ 71 807.752 null] >> endobj 1740 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1746 0 obj << /Length 1556 /Filter /FlateDecode >> stream x[mo6_A`-@V]%A5+/V\~-ۿQl/r-N(AL:#<ǘ6"E׋,Dk$E!CC.Z~~݁TX?:=ͤfغ5Ǒ!X`reF)U`ծ>Ԃ`C5@P̔.:^#Qً92Ērb!L" @fP: +4UcBiSSͣ.Uyc*4v0 +s5g` BldĐda˴8ˉ3$4ӏmFW$@DًJ[OzW>m_DAox=wчoR۞=kik3G85U1޸s\Pl^$zlnijxq$3ާkK͓hxK+8$txNUao&8ՌvGÙĐ|]Mϩv0*ru1SWwRkUb_$mn,:U`{Yh4$dnd5U>Qi9lq4D<~|nL@O?iS1 }ޗyiЙʉ7Y3g1'vς\a9eĂ\K5l&@swa ^l'(i`+.KzRU"T?>oߝ9z}N.O@Lǝ^ͅ`y&G;C56Xzi)0ՁeuYKt΃n׳9nMhڱ\C .@ɍr +L N)5̲ - '@ !NN:B`IށqPmw \a EaѬQ?raz2;;t't>?u -Mi98dTKyZbFg$$&jh XOwAH U:Q`ɗ]5Ș,G[j| ]- NjUԔِ1i|J-S껱vwE)0{2&+/3–~u Le0H`g`E40xzdx`  .?y{; endstream endobj 1745 0 obj << /Type /Page /Contents 1746 0 R /Resources 1744 0 R /MediaBox [0 0 595.276 841.89] /Parent 1735 0 R >> endobj 1747 0 obj << /D [1745 0 R /XYZ 71 807.752 null] >> endobj 1744 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1750 0 obj << /Length 1634 /Filter /FlateDecode >> stream x[sFbg){3nGMP-Mx:)}˂Fr&bYwA7W_ߘll@kĹL?D^FVQx r"oPs:SW,0i\_ڷd@Z6`T$hܶ4`^I٥H o*P6,lPLC`- wdK$, r 놱ADO),QJy] ]tp& enW+ "N lXi8x6fIə)k`\({SR[:;o)SJm#EuT@k)V w7L''2bU:#HH^~?t"7=F$[+Zy$SMWEq=׉Z𙨽fM -IJ-Snk%L$hݪAi\H/fԪ|nFF'r(*#w8~uz9٘RcIr넞ş?r2fq ()nd*+9~b{**g`yE82rqfIh؏RK0!4 l0P>Ԃ֗)&\xP],rO-Տ lQk/”B3B0l1HMQfrrO 0&IbjP y? /3b4!V WH;"f2AVPY {"չ y¢ hh{-~dt`2eS X}`;ө Nn# 9QAk2a0(I$?G endstream endobj 1749 0 obj << /Type /Page /Contents 1750 0 R /Resources 1748 0 R /MediaBox [0 0 595.276 841.89] /Parent 1735 0 R >> endobj 1751 0 obj << /D [1749 0 R /XYZ 71 807.752 null] >> endobj 1748 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1754 0 obj << /Length 1651 /Filter /FlateDecode >> stream x[F_axow5Hq=P3%;]$`=;TƯ+j)6 j(bRŴ-Y+VÙJMuqb]?tBo?suV`>4.Bi1TF`1̿Q0lK+:#gJ{KVSEt_oQ6,dM1 L̊[V$S$, b Q mSRȳUȨ0![i2-d'Dg tΗdfaQ,0'e2m& tb%Ta9ZN bĆoţXtxoj`z.'NrZ(CF3~]}{ ]9\VʨJ«#S_l̨{1FEPj]CX[ړ\?L=50k hKb ۮ%p I=pV϶UahpH YgҼq0hlfgTVɐ:$Elbe$rDzSqfz (ʦgFrZ-u[i;oJJ),N<߸> endobj 1755 0 obj << /D [1753 0 R /XYZ 71 807.752 null] >> endobj 1752 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1758 0 obj << /Length 778 /Filter /FlateDecode >> stream xWmo0_aKR۱TMBKPh7t+sI;V/w9nAg S(dQIL9# !Up=h6\NHl6=4vAyտ:}Ga;(@s, '/Q]i5A\Pb ]z=R 7p %m&A($f/tCUe+e&'m8YejSd~dY4RaI# ±x@ 9O AQJ0arca쇶V1z.bDA^ht}/:{w+' n\v4=4AINZ$&nlQUł&4֐Nk9as)i`o4%!<3 Yǚf}`8?-Y~ҫC`w5;\‡'vʹ)˧.;0#ļu l,Be^9XPd,Wl/i٦w@ns)k:ZhtVs=,.gSk{wD"j#7~co%)yN_Pd Japҥ}ITQC @j _l L AG?T[^Ԧmo>m]mӟ=1JmLb0 djL ClSZL>if3Lzd,6 iٹX͈8kXxMfW%3  At endstream endobj 1757 0 obj << /Type /Page /Contents 1758 0 R /Resources 1756 0 R /MediaBox [0 0 595.276 841.89] /Parent 1762 0 R >> endobj 1759 0 obj << /D [1757 0 R /XYZ 71 807.752 null] >> endobj 1760 0 obj << /D [1757 0 R /XYZ 72 588.628 null] >> endobj 1761 0 obj << /D [1757 0 R /XYZ 72 588.628 null] >> endobj 1756 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1765 0 obj << /Length 224 /Filter /FlateDecode >> stream xڕKO@ +|ܕ:ב"@x4Y Rӆ4l 'Xx>5܉I-.oC`B/na!UqE[}tq;6n{wq}̆ e=7x:"9B:Xi?2x<^uPl'AUOOWZsUQj2,_~CbFUXf6f8}:$?#jQW endstream endobj 1764 0 obj << /Type /Page /Contents 1765 0 R /Resources 1763 0 R /MediaBox [0 0 595.276 841.89] /Parent 1762 0 R >> endobj 1766 0 obj << /D [1764 0 R /XYZ 71 807.752 null] >> endobj 1763 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1769 0 obj << /Length 1143 /Filter /FlateDecode >> stream xYmo6_AKd.q@.,QiEٖki_(zqjGvlCY9wLJw$ ~iP%"!W,Dq3A}#Vk2j G{yHcB Wb 0S w~y2 ̅bf|KQLF-ƱvGn͔F/9J\(\j,sűd)yۋwuZLdJK)7vl1IhNFT;aII[ydt&}{Q Jk?DF2 Dن|p劢<7AP{X3( ZTd% qzMFQg>]Ϲ~%}"X,\0Z\d࢛e37R.aS|㾐}NhФym SXJwffDĩtދAoaot!S-^.T'udBoqU}0r _ZMgM|0*5J<7Ѥ6gJbF. 9ې1j< ɓLX8.&Yg*pD>{!墖N&QdKqeϫĆoͫ$P?-n ʞ;RrKA`II bU룐d拆!aFvD\'j5Q:DaPKb̟5/ǿy[X :oCRMo%5}>%l? endstream endobj 1768 0 obj << /Type /Page /Contents 1769 0 R /Resources 1767 0 R /MediaBox [0 0 595.276 841.89] /Parent 1762 0 R >> endobj 1770 0 obj << /D [1768 0 R /XYZ 71 807.752 null] >> endobj 273 0 obj << /D [1768 0 R /XYZ 72 769.89 null] >> endobj 277 0 obj << /D [1768 0 R /XYZ 72 576.385 null] >> endobj 1771 0 obj << /D [1768 0 R /XYZ 72 509.565 null] >> endobj 281 0 obj << /D [1768 0 R /XYZ 72 364.567 null] >> endobj 1772 0 obj << /D [1768 0 R /XYZ 72 295.591 null] >> endobj 285 0 obj << /D [1768 0 R /XYZ 72 129.917 null] >> endobj 1767 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1775 0 obj << /Length 700 /Filter /FlateDecode >> stream xVo0ڗ=|NHL&!`+TuMAMSTc\bi21Uʏ{Ϝ}es^B1 :%,, DU? j(PG@A > endobj 1776 0 obj << /D [1774 0 R /XYZ 71 807.752 null] >> endobj 1777 0 obj << /D [1774 0 R /XYZ 72 769.89 null] >> endobj 1778 0 obj << /D [1774 0 R /XYZ 72 648.101 null] >> endobj 1779 0 obj << /D [1774 0 R /XYZ 72 648.101 null] >> endobj 1773 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1782 0 obj << /Length 1351 /Filter /FlateDecode >> stream xZ[sF~W^0uҦItڌad`Qv}J"،9;]KA W(-M&`ܸ"DZh#SPl !h0^1صzCdS&N|tǗ/zoܴ.ͦ~?o)GWIll1 Nfb۱V-S r=;^g|!y-抔%l3ޝh1Ag$xIM2J⩿/?&N-H# ޿.j9آ 6rYD,-p(a;$$ *۹SԸPFMp|)8hdR^덻K\S*W%"uܽ\)NֹWQ1[+sXwDoUÚt$Ӷas<8G#wo/mxnSUzh̳_o[8S4pK[Ջٱ$ك͗t5pcocr53q}iNzqX~lcyI(éˎZW^I@b h<Ϡ :FF}f=bu,Ll{u:W:FuɒلċG2鎽ێ9ȔQ]{aȾ*R%jv_6Cu,Y@}yA ÌPe0ITxo UevK*}E:?l|I۔\.?=MFbz'Q8H@ϒ 7[) KL {5exލuHA4QIp!~sѕŃz-6E67*/Ө$[&ٕb~̨-Î&ܯ5Q}M_k?׶,.&(h Sɦc̲7K{ `3dʜGi/ endstream endobj 1781 0 obj << /Type /Page /Contents 1782 0 R /Resources 1780 0 R /MediaBox [0 0 595.276 841.89] /Parent 1762 0 R >> endobj 1783 0 obj << /D [1781 0 R /XYZ 71 807.752 null] >> endobj 289 0 obj << /D [1781 0 R /XYZ 72 769.89 null] >> endobj 1780 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1786 0 obj << /Length 1558 /Filter /FlateDecode >> stream xZYoF~ׯ%Z#H H):FQ1ZZ%lER(A,,9fw(|se.u˩Q ||\N?~`tey&? 9B/ ח{o/{lbDs$ǽkL` |TpA\Ϝ/zتJ/dG.a a]BxMO@A#D`zs+a]REs!*IgQp <_>l}VLJ` ,BHJ/spZ VDjq4SVdqqZCQ (,>ϣ8WCzZrNNNjvG-Eu= s$Pk +[W6B<"bnN^,B8bܥmn }a{.P`(py%p!vW,\#Ww7bgOJeDNmQDhYt@pm~?mfòGf awaJ(ƶCxȐ(O+ ɏZ8dOAnR糳&A`\Q1u5x@ LiR[ޠ pRAm ;47R VG8|'2lV9( x`Vg5N&L$d<3!VEO͗VCRpP)2Kˉ"%V3$)Yt.7fn, ofcҎB}Բ[p-~-j3f7{x.-aގJlu`v_E6ypon̎fIj$ě&i'kǯU9mUX6Q3DwqSMӸ $yy+/V4ol`g^)E:yzu73oU~gK6#ǀɘw/,Jmk+(V3j]YT:A$)Pm6s%Jy/;3t=$gCVa٧-Sm Usg#{7S&uBs}l_:kMQ>y֋+a_R僚rfilFvs< |vr*Yǣ: (}r[(]&a.;DjL1}7g vt\fQ:-r9zav}1t䣬;x/q%ZWTx>ZBJ&ԚD׈\IpΐJfOVGy5*x*nŠg*e(QSRm_ Oa?:8(b CF'?̌KT uJU+{mv endstream endobj 1785 0 obj << /Type /Page /Contents 1786 0 R /Resources 1784 0 R /MediaBox [0 0 595.276 841.89] /Parent 1762 0 R >> endobj 1787 0 obj << /D [1785 0 R /XYZ 71 807.752 null] >> endobj 293 0 obj << /D [1785 0 R /XYZ 72 723.058 null] >> endobj 1788 0 obj << /D [1785 0 R /XYZ 72 683.905 null] >> endobj 297 0 obj << /D [1785 0 R /XYZ 72 463.225 null] >> endobj 1789 0 obj << /D [1785 0 R /XYZ 72 394.249 null] >> endobj 1790 0 obj << /D [1785 0 R /XYZ 72 327.277 null] >> endobj 1791 0 obj << /D [1785 0 R /XYZ 72 163.504 null] >> endobj 1784 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1794 0 obj << /Length 1505 /Filter /FlateDecode >> stream xZmo6_A`,c ,Ev˂@hW-;JT,َ[vm-ޞIA:;oklA1s$\E1R&#T\P.#G L0$^#Rñ'IQ,3$jÄ*=n 3K‰BÕK],}cR0scnA 斶6Daꓓh%U*G=%|7 ;YF5i_`gq>ӕRehPiE -$~2S5O)tj``kNp:rDvN], bJTJ{Xz(f6fخ'9jXT?{TXjz8ڠ{X.h!|8 (;u A,ãDŽu1Ú닻B0XK{S kGbxM7=^ /ֽ]>U-NPK}*U)OF*k։ר~:7\?-\^!m.w+)vҶ)7ȹy:HiKUf cA[ eM) CJۆB>гz[ػ9tRI:4ȶ :a̟>aW%I v'ŭ?R(lo5mu#ڎmh{D#ګF4W#FM7.y|Mn qs?T#Hme468/ 4 [dR6vmwF=0WYI)>6R6ʻB}T NWV5 ?r,,@kr߽6bpWƬAA)iOXBHh-Bi lR(?6 endstream endobj 1793 0 obj << /Type /Page /Contents 1794 0 R /Resources 1792 0 R /MediaBox [0 0 595.276 841.89] /Parent 1800 0 R >> endobj 1795 0 obj << /D [1793 0 R /XYZ 71 807.752 null] >> endobj 1796 0 obj << /D [1793 0 R /XYZ 72 659.619 null] >> endobj 1797 0 obj << /D [1793 0 R /XYZ 72 517.763 null] >> endobj 1798 0 obj << /D [1793 0 R /XYZ 72 408.542 null] >> endobj 1799 0 obj << /D [1793 0 R /XYZ 72 135.332 null] >> endobj 1792 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1803 0 obj << /Length 1034 /Filter /FlateDecode >> stream xZmo6_~ EuX֥әW&;cɆcYBYv;FSh8A>C~1 ?z}k/xqy&.Md•q %&oQQZ`vֹ&h ψ`h#5CBR|C2U)ˏ[Ɗr+}"sz ,4eH1X@oA1W2㱫AUL(ݖcBI4:?솉CJْ" V"was`0Hݖsl;X2v9l.d"{W`"dC\w -p9r}OÛȜ2[R;)*Gm+hzT7-L]u?jc| &slBDRϵ|ɸ@qi7]B4]욉XM8]hңN#LdfoK8?tVTfMbهqz!Z,n1 ǤwofO2+Zca8Ϡ s\9>R8 KαŖc ZHx2P endstream endobj 1802 0 obj << /Type /Page /Contents 1803 0 R /Resources 1801 0 R /MediaBox [0 0 595.276 841.89] /Parent 1800 0 R >> endobj 1804 0 obj << /D [1802 0 R /XYZ 71 807.752 null] >> endobj 1805 0 obj << /D [1802 0 R /XYZ 72 609.806 null] >> endobj 1806 0 obj << /D [1802 0 R /XYZ 72 472.17 null] >> endobj 1807 0 obj << /D [1802 0 R /XYZ 72 472.17 null] >> endobj 1801 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1810 0 obj << /Length 1347 /Filter /FlateDecode >> stream xZms6ίKHg,K% Mڼ\ziBe2(;Sw-  &f#>+#$A ,,A8`#"qUw )f5hiFvsLc IAD:o~sp{n&6L5)E3C;zA*8p fTLlM HyttpK i⓯h1*Y[d~?]DIvՓaC?aRQE}]]6@ܶae7 ǞqƄO,)C6f4ĉMUkd.gpsN 68K&fšG'9X@G,cR^`  endstream endobj 1809 0 obj << /Type /Page /Contents 1810 0 R /Resources 1808 0 R /MediaBox [0 0 595.276 841.89] /Parent 1800 0 R >> endobj 1811 0 obj << /D [1809 0 R /XYZ 71 807.752 null] >> endobj 301 0 obj << /D [1809 0 R /XYZ 72 769.89 null] >> endobj 1808 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1814 0 obj << /Length 1234 /Filter /FlateDecode >> stream xX[o6~ ["`6YS,M00Tv4Ȗ&] }dKr80 G|*4Cys|e.Oǐ'h`__t{3$\.Ł]X4&aCCAA԰v<4wC&@恏O͑#(f ]w~R?)KQ76Wk㨃:a=cjEw=A=2ba`ͺسL4J"]y|/9.`CߜrZsA=πa { ݬ'!l9nڶM6!Xw}6Sh֣B(TWWqʉƮE6K9Q1k)C.1GXp,|VTmR`Bi];Lq&ANX95p!DR%u2G` ࡽ}ttԊQbAP8vE oPL ?6DdO-J9OٲWܣB B٭rc"Ԩ?mV]> c`X,z^b_b컩5@yIR/j$W㘋t|@# b_kr-z=_Ow{)/o#qoޝYY^^QɴBn bL5|ϫD8+Wǿy2YIh}1UNڀ-1;kd(FYXHԀcrlHtEQ&5j]DsBy;@Z3&Y-fTfQ2+%wV,"X*e[KPzEaf˗0ϱk#s+r> A0]-חJQaVJ^^Qg TkKz4A,Y`OUZe`=ih$P܅so3dDߒx9@l uƹ?1pl9C0Al1CzDa{FLL |`Jíh]hz8Y.s387,§?E XA(EbVJ=۟9&?+b_´Ag:ۛ0-df@2f5ļ(( endstream endobj 1813 0 obj << /Type /Page /Contents 1814 0 R /Resources 1812 0 R /MediaBox [0 0 595.276 841.89] /Parent 1800 0 R >> endobj 1815 0 obj << /D [1813 0 R /XYZ 71 807.752 null] >> endobj 305 0 obj << /D [1813 0 R /XYZ 72 769.89 null] >> endobj 1816 0 obj << /D [1813 0 R /XYZ 72 712.271 null] >> endobj 309 0 obj << /D [1813 0 R /XYZ 72 622.704 null] >> endobj 1817 0 obj << /D [1813 0 R /XYZ 72 553.728 null] >> endobj 1818 0 obj << /D [1813 0 R /XYZ 72 377.167 null] >> endobj 1819 0 obj << /D [1813 0 R /XYZ 72 330.719 null] >> endobj 1820 0 obj << /D [1813 0 R /XYZ 72 330.719 null] >> endobj 1812 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1823 0 obj << /Length 1453 /Filter /FlateDecode >> stream xZsF_q/uNi;cצ3pvDݓH &nnjowN%Fj b2 6@}vuM#D,bfpo_:5LԹE%0Kˠ@i]}YqyL| , 4ƱC?>v>]TNIMba*j2[E\nȄgj]>:nPBS.94昊Lp)lPQyИ XFqz5 aC7vaL̡Hw(8S42)G¶0ܱsFژ6e̳ 3SWm~$'Ҽ5n2L PۅI)߀HJ#@SPd_LCB>rmoc61𶣱ѦFJCřea P 3F ۻ=-oThnw#6U*8kr {/1a SJrYl8?wqзzj^]ge2B`&6@+sLXf |}OY<8)B,8"V 3F,]ir`1^TS إިr5K !6bPTJL@Ҋfr.kF,9M>jSP,RºMBһmPR?LoeuyksJm. = E5\fRM.5P&zM2HxͪV)6YɳzB`]*wRLnFʏ)?0Sb`(Yͬͭ=}Ћ) Xǹ=1*MvaJmR/ŹS endstream endobj 1822 0 obj << /Type /Page /Contents 1823 0 R /Resources 1821 0 R /MediaBox [0 0 595.276 841.89] /Parent 1800 0 R >> endobj 1824 0 obj << /D [1822 0 R /XYZ 71 807.752 null] >> endobj 313 0 obj << /D [1822 0 R /XYZ 72 769.89 null] >> endobj 317 0 obj << /D [1822 0 R /XYZ 72 242.617 null] >> endobj 1825 0 obj << /D [1822 0 R /XYZ 72 173.641 null] >> endobj 1821 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1828 0 obj << /Length 995 /Filter /FlateDecode >> stream xڭWYo8~ ݈!RH wbdkMZȖ+=PPlAi4$f3&g͸ J2K3Mˁ9:"oWzyO,Z:̴ X`2?FUQ+BhM-UV3_=R{c $7'%E),t{稇'Y1I Cׂ& ęq0,Tgt7_"Hr:_\`&%%$/ nZ~T9$cKl|638d:^(qYg%$/?0a](2?o H6`I9(8L."ʐ8x(A5˩QPZWc)jWr'DPAxƩ DP&WPE.RRfQ,bsؽvBscCBzn/abpInIq&vz,48V@UHuh  o=-~> endobj 1829 0 obj << /D [1827 0 R /XYZ 71 807.752 null] >> endobj 321 0 obj << /D [1827 0 R /XYZ 72 769.89 null] >> endobj 1830 0 obj << /D [1827 0 R /XYZ 72 712.271 null] >> endobj 1831 0 obj << /D [1827 0 R /XYZ 72 568.789 null] >> endobj 1832 0 obj << /D [1827 0 R /XYZ 72 522.341 null] >> endobj 1833 0 obj << /D [1827 0 R /XYZ 72 522.341 null] >> endobj 1826 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1836 0 obj << /Length 1305 /Filter /FlateDecode >> stream xZS6=nv,ْls,w-=Jqh/gv _g$( 4ˊ|y^tz 'A:2L _@;Dm t] 릀vzZm 394 9t<|{ptv8a =nn`ΟSG$85Cn,cΰi4׬000JKa8iOAua!(Jγ79g) -a`S&U +B-NHI3ptV;F0,q(M?N>A/eBYky"A-ެkrn ʭ~ߏ}Ie0ܥ*6˚ckΰ&+3@?2Gfv%U#. Tmoz$demr]Um7M ơTYJQ]:pu 0"¢=' l,G7mgF 3jnMC N$)y&VA Lqs p Ƅ`:fSnkL8XNİo߱#-mL)Ycݽu((tbL6U lˏByg.S> endobj 1837 0 obj << /D [1835 0 R /XYZ 71 807.752 null] >> endobj 325 0 obj << /D [1835 0 R /XYZ 72 769.89 null] >> endobj 329 0 obj << /D [1835 0 R /XYZ 72 611.174 null] >> endobj 1838 0 obj << /D [1835 0 R /XYZ 72 572.33 null] >> endobj 1834 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1842 0 obj << /Length 1696 /Filter /FlateDecode >> stream xZmo6_` 'R^ ]-1:`a6k%WH%ٱ%K`Дy{w'ڭk[/{_!Gsk!KM4i1Xwn}8;G~q8ZI@=Ob̈EgޛeVi`FVkc6FӁ:Ws bvKV[M _g([Sw"#@ LFB 'h3U-}mR6HZ|1nfr1\T], HԴ3niaTzgL&ŵormve ; ӂ[B3rGfC?HXXT9;1M4ZdF>w#Y\2~ubw3[eMxf¾H9 %H*+, KnF.ԢQ8_ OY.jATрbunF:,/m^4r~|yi!(Y2am uO CmB;/3r8-lK9M7? $wYL6xCZ-xt\wd,|3".t,rӈO֍ّx/TI_tXuӘӋ\]ZI img]w%g~^* s2$!Gik<)h;L̤J_U0 6޽)@:m5Yk)똀 }@TDʗxb ]@87R}H u_ȄK-8/dX2v@QE1;^#0H F߶hn}GttLFc ^&\$)5gYo0rr,apRGMo]b@;M?y%0zU˝+s |(IMU80~';78+sJ*NĀQYb? % c;UJu=gۏ?\뾽rW˛݋buV _$/&q'ҋ٦l-T$\hUHa;5kKBp8U|jc2`~2X&f7Qii7t*uXcMP>r&tK$$MH~p.J岌fP- K2&G"\2tI2LާB\@s%TpRrXN'U*YꎤK,`2q`(CHY ["(Uc0y!Jf|-iH7MlB)T0e5;6HtX b9(ЋBuv b(ܮYh"F}W;W;tUum"U#ncljp^]-[%4ԕ ^_v|JN$9N\ NxL䥜g.74-ytNfEYAM `՛׭ 6 G#娞oh^.BdɶGbV_ w;%[;fUƛ&*"USt[PUw@xo)~rg[ endstream endobj 1841 0 obj << /Type /Page /Contents 1842 0 R /Resources 1840 0 R /MediaBox [0 0 595.276 841.89] /Parent 1839 0 R >> endobj 1843 0 obj << /D [1841 0 R /XYZ 71 807.752 null] >> endobj 1844 0 obj << /D [1841 0 R /XYZ 72 450.158 null] >> endobj 1845 0 obj << /D [1841 0 R /XYZ 72 285.772 null] >> endobj 1846 0 obj << /D [1841 0 R /XYZ 72 285.772 null] >> endobj 1840 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1849 0 obj << /Length 1361 /Filter /FlateDecode >> stream xZ[S8~ϯ !$[0ЅBɘXI=Kj;J1`S8a":|K pA```qع7rT !LeΛaGIL0âe`Ni=8<:|/cI5!11:8>|ۡ Ȃ&%l !|H/Ϗ>}ڷQKsZKJ’G-Oi/ߝ}yqv`G}AD~сLA޸8k:uPu{Ig"Z\aacn6‡;8 @k,nch{8a$FtB%㄁ɓ'7} !HN+asf0Hcsp!#Yq@Q+=\<uH@{ A*8'<r5VsТy.PiŅ,HXǰBKD`)T<aPW$[. tdv oo{fM ks3![;68>^c %q! a 6IVs)y&`Һ+IM6%϶Q'%^\+ 5hԌ kcT 5]6pܦ~uC-fvssot'SݑY7{a-=q2s,W4˹BL O p 5ӀOGyjrq罜\> ,Id|Si&DU>r7[0n/FNy4xsdcc ;`  ,qyǝA&6Κk78EY){V-QAߌ"6ق &nnM!u#?i3|l/x% %O$`FSDZ(LY6U>25 f'@LthA5wUf[ 7F0v#NԉhGrRv+"#eI;[s&0řa5ly._$];T!2lI gw}My}:(Ouwg;RZGYKmAJowEuQu]wlc+Z/[sro^ݽ۶,h5kj@bZ5E&4G Torkz6 endstream endobj 1848 0 obj << /Type /Page /Contents 1849 0 R /Resources 1847 0 R /MediaBox [0 0 595.276 841.89] /Parent 1839 0 R >> endobj 1850 0 obj << /D [1848 0 R /XYZ 71 807.752 null] >> endobj 333 0 obj << /D [1848 0 R /XYZ 72 769.89 null] >> endobj 1847 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1853 0 obj << /Length 1599 /Filter /FlateDecode >> stream xZnF}WC(셻$@&qm(`#j}g/xe劜=sf ;v>~@'D¹;>u0@,`ȹtO|oOOb&rZDEN1{g2Q.FŧޏU!Fx;I;#`G5qV$ _pc^zRxMD@@u"FY m"LHU(gVn&J#N%ydmxA[/oi`FB<[xRВD Ja& $Źpab7r9ɟ}(IrX9)~Jag>1vq cwާ܍8H3Wib)_Gh=BΩ51o_ws77 \&>L4 ԭ K=ad!R563@/3픱‰ل n)x||ܠ2\bCEaK>F}KSC#DcB7Yo,vkр`؅ 6<* ՝H&JneqȹL F+ξ:N2 fݰKI,i3%U՝6SDɂt4ᘥ6g6v **\Zh_ڎQz(~8.'^ %${v,lpv!a.d^˼Wdb@®l#`&-n/VOD%IIxqbT>H_|M~]QtxI3̏VҰqQsz3G#z-.Ӕ`aO𠴶1C.2ŗ4-\]FI<4:03bfF9]₣ v+j| j=KٹAVg7w89cmu}xrjX4C8HX(W@9=?9oYJRiGa:%Y_xowq2DW2AU/H&143wpvb(X0SmJ7;˙lv6sw}k`=vv@A! E(r7+ڛ٨˅\>TI2]"%jAlR;孜L3\TݷM# F<΋|*{c> endobj 1854 0 obj << /D [1852 0 R /XYZ 71 807.752 null] >> endobj 337 0 obj << /D [1852 0 R /XYZ 72 740.136 null] >> endobj 1855 0 obj << /D [1852 0 R /XYZ 72 673.217 null] >> endobj 341 0 obj << /D [1852 0 R /XYZ 72 526.556 null] >> endobj 1856 0 obj << /D [1852 0 R /XYZ 72 421.714 null] >> endobj 1857 0 obj << /D [1852 0 R /XYZ 72 310.907 null] >> endobj 345 0 obj << /D [1852 0 R /XYZ 72 239.552 null] >> endobj 1858 0 obj << /D [1852 0 R /XYZ 72 170.675 null] >> endobj 349 0 obj << /D [1852 0 R /XYZ 72 142.29 null] >> endobj 1851 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F37 944 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1861 0 obj << /Length 835 /Filter /FlateDecode >> stream xڽXKs0WgjEH@nm&$3oI#l ]!lqc|b%!o@yi<8` q(@r]0nq/_#K+EUR܍J,1>uQ386K` gڎh\.vv inmN.`©ĬHm3SꑎJB= (e s{qsc}TeGg cd㈝-4wO:<{%vK]L4Inhڙ\FP^-zJ'?R-${Lu FŋP 4Ӑ&Iҵ[=z Z 5i@FMKSyF Ϛ3ۄ\"db.-f7_"a)|\܃snm#/iek\IwmLަrUCxk^yv8'v{Sܧ9:?NկxU(iwη_b8aJY G=?#Pnl,A endstream endobj 1860 0 obj << /Type /Page /Contents 1861 0 R /Resources 1859 0 R /MediaBox [0 0 595.276 841.89] /Parent 1839 0 R >> endobj 1862 0 obj << /D [1860 0 R /XYZ 71 807.752 null] >> endobj 1863 0 obj << /D [1860 0 R /XYZ 72 769.89 null] >> endobj 1864 0 obj << /D [1860 0 R /XYZ 72 721.525 null] >> endobj 1865 0 obj << /D [1860 0 R /XYZ 72 649.284 null] >> endobj 1866 0 obj << /D [1860 0 R /XYZ 72 591.056 null] >> endobj 1867 0 obj << /D [1860 0 R /XYZ 72 532.828 null] >> endobj 353 0 obj << /D [1860 0 R /XYZ 72 473.528 null] >> endobj 1868 0 obj << /D [1860 0 R /XYZ 72 406.709 null] >> endobj 357 0 obj << /D [1860 0 R /XYZ 72 349.466 null] >> endobj 1869 0 obj << /D [1860 0 R /XYZ 72 280.589 null] >> endobj 361 0 obj << /D [1860 0 R /XYZ 72 223.346 null] >> endobj 1870 0 obj << /D [1860 0 R /XYZ 72 154.47 null] >> endobj 1859 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1873 0 obj << /Length 589 /Filter /FlateDecode >> stream xW[o0~ϯ#Qϗ80ZC*7q:#')S7%)ǭ]cw:Nh 4DDIX$S8>(ޟ U!K#'.w)t 8{9zNqC'H ozAf#v 6`}puE"ňgH@m;$/HX-;!"ǎ(,`:ԧj4NZ>cGS1r <#&n;0_i+k5b)vA-'C]rYWs1WZr1C'"A CCQ1o6S2Y+`#u &Zt\qWRܯ ؎b2XTuB5wa|I [Ţ߆1^\{kz8 j[My7ҋoE9uŻO>Py]G|tHTh{$S Y/Qv'$n,E?zCzכKXq~j9+၅W>[yHw&4HV#kjBJa-ld%l+ endstream endobj 1872 0 obj << /Type /Page /Contents 1873 0 R /Resources 1871 0 R /MediaBox [0 0 595.276 841.89] /Parent 1839 0 R >> endobj 1874 0 obj << /D [1872 0 R /XYZ 71 807.752 null] >> endobj 365 0 obj << /D [1872 0 R /XYZ 72 769.89 null] >> endobj 1875 0 obj << /D [1872 0 R /XYZ 72 712.271 null] >> endobj 369 0 obj << /D [1872 0 R /XYZ 72 683.886 null] >> endobj 1876 0 obj << /D [1872 0 R /XYZ 72 648.916 null] >> endobj 373 0 obj << /D [1872 0 R /XYZ 72 621.562 null] >> endobj 1877 0 obj << /D [1872 0 R /XYZ 72 586.593 null] >> endobj 377 0 obj << /D [1872 0 R /XYZ 72 559.239 null] >> endobj 1878 0 obj << /D [1872 0 R /XYZ 72 524.27 null] >> endobj 381 0 obj << /D [1872 0 R /XYZ 72 496.915 null] >> endobj 1879 0 obj << /D [1872 0 R /XYZ 72 461.946 null] >> endobj 385 0 obj << /D [1872 0 R /XYZ 72 434.592 null] >> endobj 1880 0 obj << /D [1872 0 R /XYZ 72 399.623 null] >> endobj 389 0 obj << /D [1872 0 R /XYZ 72 372.268 null] >> endobj 1881 0 obj << /D [1872 0 R /XYZ 72 337.299 null] >> endobj 1882 0 obj << /D [1872 0 R /XYZ 72 309.945 null] >> endobj 1883 0 obj << /D [1872 0 R /XYZ 72 309.945 null] >> endobj 1871 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1886 0 obj << /Length 1359 /Filter /FlateDecode >> stream xZao6_AK`H3eiעMZtHt͒x;pK歃q>5=cHBSk|sxr%L%-&Nb&K/&HPrUذYL{ENvBe-Gyb {Rė+mRd[W.,kkƗB+C(]#y4C܄v暙J1\ o1p֑od?5­XVjo@N-hH yp d0FytO&ed@, |vNUb+*-rS jMTi6+ʪ%ud t̍MlMFwb[:A V;ChBŜ< WK|0K_eL"cypAݛukƺSxXpnJCͥRtu)f*_ ͪ`bK6Z cLS.9];k:nqN =bROئa63O#VO·͖x8DoG}\w[+Xju aj*9\uh?[EU\||՚ pQ4TlÙn( L|铰}3B:C:i(lvuׁjQ}v ȉכIZjnռnia7D2Ȣ4O_j:l6j^Gj *ӳKNE(ث4Sc]pQG1m?; Kiao~# 󲸪.ZEAQYRC!CP?wuW֎q=H¼+uhQ76-lol1Se\8Ѫ'5f+,gθ`CJ-.V̺;-y6̺;;<4WRe_v|[[K5,u{j-˵Ò]Ύ{z[49kr0N09z|#w3=5$$}0!6 c?e endstream endobj 1885 0 obj << /Type /Page /Contents 1886 0 R /Resources 1884 0 R /MediaBox [0 0 595.276 841.89] /Parent 1889 0 R >> endobj 1887 0 obj << /D [1885 0 R /XYZ 71 807.752 null] >> endobj 393 0 obj << /D [1885 0 R /XYZ 72 769.89 null] >> endobj 397 0 obj << /D [1885 0 R /XYZ 72 611.174 null] >> endobj 1888 0 obj << /D [1885 0 R /XYZ 72 572.33 null] >> endobj 1884 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1892 0 obj << /Length 1343 /Filter /FlateDecode >> stream x[[o6~ {hhRJ*R^f)^/{ AiG,u~H:H,X<Ε$ pmUL`A( FPaP5U0c01 لxanOu ޵o-̆Bs-/ @PLoh:AXO-$b~1%Ą :4 s&fR!F`JD/ 5݀# FOrALa1-AHaZhs*4,BiUaƾʹ(+c,zGό(\:)2{ 4%1n'S91\ o4&']kwbK6O`,$N lˆKXZ7 (w,WS!RoSǞsԞ^>v Bm? 5ˆ?=8a ]R@]!K.1N9_}8#.;rgLh̓lI7#7}JB؛,t91<8I73oU Q:qJ /۾7fi>64L!La&]}Q1*/RKY2%6[IxA&}h/t ՘SYfRlV/1rMyԔYت4c_/n>b;MP{|9= Hn Ĭ^/ mEI 2bH"JJŰK~z(u"UKR !Ш H:@cVFxGxd7?m1pttRA^O|p,(~;q,wN3=00Xt^,:_+mH0> endobj 1893 0 obj << /D [1891 0 R /XYZ 71 807.752 null] >> endobj 1890 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1896 0 obj << /Length 1902 /Filter /FlateDecode >> stream x\mo6_a"c1Q@-aY`2,WEHQ&V&ph<#AJګn7Tc]Bt4hD >>7a/ڲ1Ƒ9x_3Y!o /jnS 堂sMC%Tixhl*5\)qvn)0  a@~ h|L&-.#5jLIJ8`N)&dzR\&+M*EŋXH)U>/ Pă=Fr48˳xr!T["t! 1L,D[ꉉ{K90pd9Cu-u:{]ŐA#A h BYlnm0ĥD33? Xس ¼AjJtng>1d/.Kk27Rb7=Oy[ cxZA¨a 码;ے_\ =+1tDuM-}M31\3e%1hĂv*?﷙=g$U:DJy>\iB|y>FO~rYȪgg}`+ |&wVkUI=5UV%8N sOÐJ%k卒 z @+%I{P3q]w6̡ QCH0tOO6BdĐ`M1η `) 2-wRn zsz~zے" C]XrA!w{qk6}t3aEsV1*%RO X܇"1Ng(uB'2Kk@Rxn!ȗ;"V1;4XlD sh"~hd_l6V!H0.yoS ?Hl}OV*brV&V.M~L@ܭ^gV?A f[xX'1jyD8\1c 2!p)ǙL"7^a!suդbPP(y:jlFIOx/ sP[r#'~ӛO4mN4^D _%2;Tg,gDd gk#h4D:4xMRo`o@Z+ȒVX} Lث"&֧1pF-E˔$٭#S=}}zN| 7ÒdCcK?e_v8 OslħK$$"&~;j檚i`~cF]3T͜/X43%p[ffMdrǡ;yrQ*rNz3\vROOP{`Gi7 BQb8_"c0b$Bb.qYw}+1W9BfƃǯQN2"&FWxOQ}M{$$(?J8ut>;ۓGZ~ow[#l #Jd2HœooOw)p.$sy̕Nf?gN1F1'98huvs$*SG$+h]G0@1GF?U[ "%MŁLsOx 6M) endstream endobj 1895 0 obj << /Type /Page /Contents 1896 0 R /Resources 1894 0 R /MediaBox [0 0 595.276 841.89] /Parent 1889 0 R >> endobj 1897 0 obj << /D [1895 0 R /XYZ 71 807.752 null] >> endobj 1898 0 obj << /D [1895 0 R /XYZ 72 285.94 null] >> endobj 1894 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1901 0 obj << /Length 1489 /Filter /FlateDecode >> stream xZmo6_!t`3GR^.@-6`!(2Ӌ+m}(){Ru(8cI00.å~RFjRa΍zMWw]Lx?hWڷ?<:%3 yݢIۦ hy@_)㩰3BQr@erB$'px_)o h|,tCMUv NrOMv/i@ɖ `Sm˯:|q܉h<8@3eܨܟ36# -G-&@H[^䪓6 @}i3"413AnG t4A|0.iG8Xk$fkW)W @ $,ݮl!\ª0oԎvO8]bp'瞃%,]&7] 5Aefot-/ΎNX2.Oʤ{kΐ!nǸQYGύ:EB=at+8.>_Qy&v~J]m5Z_:F\[(혓vSxh&0pr.:mݓ 9F;!րam`;ᄦB_)J8×`G]ɘD=V%[u8!{Y&{XM2S.w%k 3QWrXۊ9I\ڵyW/]d9/MeW@589[a@G=HnaQFnH7vo3-g~^-=ױ*fPDPbE*lj'tXu;fA*lnlB\JͲO H퓴fF0rW9[IzO3O'zVQ7AT]X'̋P e@ e+HkH`ʶLk l |c/t~lrNc܏]?fDz܏ endstream endobj 1900 0 obj << /Type /Page /Contents 1901 0 R /Resources 1899 0 R /MediaBox [0 0 595.276 841.89] /Parent 1889 0 R >> endobj 1902 0 obj << /D [1900 0 R /XYZ 71 807.752 null] >> endobj 1903 0 obj << /D [1900 0 R /XYZ 72 113.805 null] >> endobj 1904 0 obj << /D [1900 0 R /XYZ 72 113.805 null] >> endobj 1899 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1907 0 obj << /Length 1502 /Filter /FlateDecode >> stream xZmO:_a/؉$.ԍ]6mSZrKDZ[Aj剓SD1o- G(rm 0n}Jo/e+FSl:nzoYl@1b..0}nx[v ;LتpQvOuMOj@k_I\,lg6îReR $/:>`8S{4H9Sm#(’uki֌ֻ0v`hU]NH{yڮp&GYe#8P(_8:Txj\&pˤl>|)UBlBgIBÂ: S߭S{ TaLQQQ`S`h Q=Ж% f|L(]0Č\q&FKY8F+3~өXؒ9EPB0#@1I[#0c*"- Yǂ1 1Q\8'0 /$d% $1$͊Zk8ۃ/SYo3] .bNb4 zEr=?WU:Ie,We|6J=IS3~A[)1biɭ|p|_U 0-rTMtPUj(d0RAYs(察FȋՐ`%}?5&6e?U56\Tujښ(k>v闺 >NUcAgE1yjYX4\yq*JrwO܃^/S&ZKI^Pmr+ hViRjc|aO$,YgV6HcJFz[nn*Au"LYj 8&GO8'En}tj%nmsטjꯁ0^5Cp~3P-- x~ow|ji50Ŧ ]=Հ< y4Mσ;ƑN&k3&fsp/h}gcx.FdC$LDf#X}SXT#),'"`z.#uW8$:jcm;n,IVTs)GQ8?+;cRϊ(}F4ǧf mzu6u1wNB&ł0o|vU_[yki +.;ȏrmm?aˉ̆u7# endstream endobj 1906 0 obj << /Type /Page /Contents 1907 0 R /Resources 1905 0 R /MediaBox [0 0 595.276 841.89] /Parent 1889 0 R >> endobj 1908 0 obj << /D [1906 0 R /XYZ 71 807.752 null] >> endobj 401 0 obj << /D [1906 0 R /XYZ 72 769.89 null] >> endobj 405 0 obj << /D [1906 0 R /XYZ 72 611.174 null] >> endobj 1909 0 obj << /D [1906 0 R /XYZ 72 542.508 null] >> endobj 1905 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1912 0 obj << /Length 1712 /Filter /FlateDecode >> stream x[[o6~bHu)]u-fKCZxE'Jd˕d;)[ıcsKC`Zڻ֯o\ZҺͦ:p kgj;?ˆ'C>J4FKCum}kX kDB.b͇FhdPhŠ*ĿZwdA14bl1`D^pL",Qub R\GF3ksm`d; aS +29`\̍ dL!iJA742$jP @ 0+O3Oea@5s QyNe/zY7YM!oӛo,oUhmm#f|MhܘSW Q H|[2\[oU;ӆO6Vr θ-+;|*ئZ&bp lhKco^YuW KT1B/#klRO9s8:OjB3]|3ޏ5Zgu!m zҿC=^*F Z<焥rzGL/G~ѣqv(2ϸg]w k1Fsf;ZFs%W:ń`DÅ4RkLDV^N! U2^[~:9PGQCMW#f~͍&,.BD$'."KOS;ee1TjWTR#Ke[_Sv_IeW~J&q/sCW C3ҺfLit.'U+R]M󃾐ËwO,x$P |D2ϟ} wF#+:}QJ⋓b)2 G;%r>?7TTZo:PۂG{ "`PX~='y{"[ϊOqp/,)ZJ\WRz[rR?{UҭW6X:d}7Q{ou[/x$˜c)H+-'zSHEfIA0 B/Vp@3x ":!8z"I8ֻef Vtķm۩ﴷ}{Oo> 'ݝט]8ם @ݒTKnbyPt%,OeZ`={F,ޕB.,Hy?]aZ[לBr=Ƀ%> endobj 1913 0 obj << /D [1911 0 R /XYZ 71 807.752 null] >> endobj 1914 0 obj << /D [1911 0 R /XYZ 72 417.483 null] >> endobj 409 0 obj << /D [1911 0 R /XYZ 72 203.128 null] >> endobj 1910 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1917 0 obj << /Length 366 /Filter /FlateDecode >> stream xڝRN0 +|L%&IӅH@ 4 m:N~S^oq0+C!TP.ATRYKk(kӳx\Pu K:]48/ S<:ȠZE[ǀR9lZAbH,eUt$jQT/S57~/? 5:%6NI -ŢaA޵˘PL1u~׊{@ӗ} T,&= bxp\PtCTZ{7ꟛ2 Ӣ~O<&xI} ;J*V(&EƉ6Uߕqbm;n ucݣ vB~xG endstream endobj 1916 0 obj << /Type /Page /Contents 1917 0 R /Resources 1915 0 R /MediaBox [0 0 595.276 841.89] /Parent 1922 0 R >> endobj 1918 0 obj << /D [1916 0 R /XYZ 71 807.752 null] >> endobj 1919 0 obj << /D [1916 0 R /XYZ 72 769.89 null] >> endobj 1920 0 obj << /D [1916 0 R /XYZ 72 735.462 null] >> endobj 1921 0 obj << /D [1916 0 R /XYZ 72 735.462 null] >> endobj 1915 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1925 0 obj << /Length 235 /Filter /FlateDecode >> stream xڕPMO0 WH8nҴǁmcM;6I[vągG wCEp 1S(kXA%r9{GPG۾!Hj].M)ޅO(mV8_aZ9Z0V#l ,œWOL_r:6Zs4S]X6F^TJY6Ai+U {)(Me$qw|OV endstream endobj 1924 0 obj << /Type /Page /Contents 1925 0 R /Resources 1923 0 R /MediaBox [0 0 595.276 841.89] /Parent 1922 0 R >> endobj 1926 0 obj << /D [1924 0 R /XYZ 71 807.752 null] >> endobj 1923 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1929 0 obj << /Length 1513 /Filter /FlateDecode >> stream x[{o6ߟBb(J*閦)KEZE;j-&Q֯9Nf$xC'Fq j>A 2\׮>b#k#gm+6C2h_ bFkPA.%IVh\xuutz]t'ٔYӶH5|^\4,\oo~~v$kGE̲Qע\"'"Ϣ==„L #qc7J'^mpTaEay aƔTbvRԶZ(f,2Mt`(^)Fgh)R\:F J:@l#n:sCz+RRb ͑&GݏvE #Up4:-&/%d/S:IƗJ+`9#.(^e2aN30[*-923-UQeSJHd<g駂?4Yf$̖s?"hJRkv"==9tI%WCQ4zB,k*鷺#kW!A›d~sddtutq&5Go7\Ԟy>y $gi, ΍bsAk >/<7a%%[*Os"TU>fJyGuR$Ҙ7QەI2i0(UGW%I^>0oIw5I++xiukWExR[3MO\kZk-ȑki.6-u(OzP 9!N xa_U n_=)4uDb ^pJŕȑӳG')b3F1(id<ý(k;ωZb?;sDeP,rBWE 1xQ >KaIl// endstream endobj 1928 0 obj << /Type /Page /Contents 1929 0 R /Resources 1927 0 R /MediaBox [0 0 595.276 841.89] /Parent 1922 0 R >> endobj 1930 0 obj << /D [1928 0 R /XYZ 71 807.752 null] >> endobj 413 0 obj << /D [1928 0 R /XYZ 72 769.89 null] >> endobj 417 0 obj << /D [1928 0 R /XYZ 72 611.174 null] >> endobj 1931 0 obj << /D [1928 0 R /XYZ 72 542.508 null] >> endobj 1927 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1934 0 obj << /Length 1628 /Filter /FlateDecode >> stream xn6_!`%%Q-@׵C? Hh[,"$+;lIvs>,JwqIo!\87;#d ࠝvHK!у.× ֱ(\ѷ6ٮ)iy-W:[fbR)1KX]M_r1K%^C¦\+姾PkW''ǧIm&l7!S$C_|DUא.Mg} !NTPhP/;,>ek_6vNاYVK->dAܮI}-fE5Vw,n>/ ?H*xen(Qt'hoILi] D ԴP [۷j>o.+SD: ijy!Ѐ,'v j4u Qㅆʰ֦j6Kw!UAt<]ۆmmW` `u\g&:ï\@X ZY鶷;j"}55*z%h)6]YD|a;xцv;-흭vrv۝8wa=;dA L d.~sQy' ucCKJg ҢVt 0\ხIs(^s&1Y K۝٬ptY r X5mpK׹""ʖMokH%u!=/7[z6-1pN{z죦UV5'Sw_yNo7s> endobj 1935 0 obj << /D [1933 0 R /XYZ 71 807.752 null] >> endobj 1936 0 obj << /D [1933 0 R /XYZ 72 769.89 null] >> endobj 421 0 obj << /D [1933 0 R /XYZ 72 600.063 null] >> endobj 1937 0 obj << /D [1933 0 R /XYZ 72 405.557 null] >> endobj 1938 0 obj << /D [1933 0 R /XYZ 72 313.446 null] >> endobj 1939 0 obj << /D [1933 0 R /XYZ 72 313.446 null] >> endobj 1932 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1942 0 obj << /Length 1809 /Filter /FlateDecode >> stream x[S8*Yew -=Z{0m1C|uv$v\0qLH^K! W64.7  `d[bwFײаAwgOr y~߰9C&6<|ow_w9KoQ1f, P:á \=;jB[JtP]F*.#H3Oj!#0D`A({"mfz-,Sڞ*&ef:)$IfZD+tH+(qbeo$ py AlqQtZ'`ޣ7ɾǰ|8!p8S  Ӽ`ѱrƀǴ'?kEgE#S rZ-Ge^&Nmo6&(-5#;zJhb#ku&oh9kR;@a>䐪:ioC`w3`ka'wZ[~;u>p?7;;6aeUi/YrGF-b8;;1Iʕx+YO vYiCidbi~< Q6D=TZsas#qUglCL!U)"hKE1G>Ꜿpnvasdsks I*.;Mn+dt׈T/D$ 2:S,ah3D _DY6Qg!a=d]o ~%^gF qOGoONsgqvg bz+%>=0ȁF3>퍮A8Gr7ȗn^գKvom[8Ż-A^֖#PQ4;{h͖-NaO)aRqH4 th> endobj 1943 0 obj << /D [1941 0 R /XYZ 71 807.752 null] >> endobj 425 0 obj << /D [1941 0 R /XYZ 72 769.89 null] >> endobj 429 0 obj << /D [1941 0 R /XYZ 72 611.484 null] >> endobj 1944 0 obj << /D [1941 0 R /XYZ 72 518.597 null] >> endobj 1945 0 obj << /D [1941 0 R /XYZ 72 126 null] >> endobj 1940 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1948 0 obj << /Length 2301 /Filter /FlateDecode >> stream x[mo8_o ԫE [d7}Yw[xeu+K^In7#R$Nm9H DgC#**oO^ NF*q,Rc+_^9zZ[xYGg!wS.*v>~> N:a0U`mӱov3U|P;].o5S Ͷ*'P)*S2QDmĦf]- 5])16ֆF4h,x QTPƪ 0mz9x-B+ObwQNviP&S`l(m0q[˗ \41oO3њ0O>vc+-JՋ{IG[QIzMׯ~&GùMW,]tQD]:†3n3(`9o3cJF޸aʛʙak޹sFc:qm}ߧܚYrIM,T|jRB6 m"Id/!(j LkWڨ-\yz+7L9OL#tDٗ욞GC90hSP48a"˷|N{{*̶`/bZ\o֖R!xihe4iiԁ@f'H;)w2+Gm(9^N 7n~K-q=1i-N҅fKf"Jf$!7_uV3m-5KZl b 0:]5ˆ^MX/^Gjڤ< ^4%;f;SHu/K ;qaz/*! 9DT /8$fS. ~yț@$Gi<,c8 c@lFsGkTƩ;;хj3;?\xSUw9 \BU(D ^_T>]_zlۇ9~>^Pȇ ?ۥ;#t?N~(!#(0$<#ŏP٨~,xuL!^Ǒ L1nXCvJ0E"7M2DYEFT lxrpx?e PP%"*Y,QT ã,Ne $7fbYmX"} "R7$F>~W7 _r\p#_ݑR,Yx"Q3A/bƢTʍT(TXR&aja+%1Xv3*.@wCs7qgg^Q>ƶ":& /C1n*UkS.m^ jSe˟RiVbled,gY͝4*077h8sr/3d6}f8,0C` jhϹZ!t,ZL7,!_:n8śxt1OҲw< (TAS >>֙}N؃v V]ҋPbs%@ɟXh$-CDh%-8D9s+;,捎RXDXA]M5\F&FOmg/(bA%U؍^ v/ \6*`LUF;wb!/CQogn})%&8.Zn6:*N2sMb ^3Mp` Httā=H_ #58Hu>wIY/_p&I䱧FYMY ѓ`ǚ-F0=st8Aa``'SuNlԅeu]4'1~/Hkv˒v^FգQ  8 GM< Zb@:0E|<ҔaGCΏ^?#+d]ăfj\ bݕ eڇ77y~]`g[2X.Hjfaw[bLt{/s;D h=C"T("RF؞/x! t+Y)/"P#U,ъ,^6,1h1Ia!"T'qm%EV⢈s!0GiMUMU{0)V O j  4ث\ )QJ endstream endobj 1947 0 obj << /Type /Page /Contents 1948 0 R /Resources 1946 0 R /MediaBox [0 0 595.276 841.89] /Parent 1922 0 R >> endobj 1949 0 obj << /D [1947 0 R /XYZ 71 807.752 null] >> endobj 1950 0 obj << /D [1947 0 R /XYZ 72 608.958 null] >> endobj 433 0 obj << /D [1947 0 R /XYZ 72 422.589 null] >> endobj 1951 0 obj << /D [1947 0 R /XYZ 72 120.468 null] >> endobj 1946 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1954 0 obj << /Length 2299 /Filter /FlateDecode >> stream x\ms8_MI嗛iohBtvMa,7 64H<̀jj;*{_?bP (f+mSݓfK5FD$?0uS? D  `q!Tbm* TICGQoL3 >`=-0ɷYNxŲlҾ"'L{2l~Wu A`,'܄@1Eq>Yf_3rD:3k&yL(jh Z?D.kQ.΅UTzGbeibeUGu]jG}CdOGi?<|ieTSS=-Մ?Z:jrfKXD9YR/GAgߋ,eRTG{Yc.htSo8[uD#MY|kr~rt;WmikBm5ޟ3ڙyV AcgzwGmSP76.SٚƴS7N[NL g!m]SE߬x.h!НxLI%΢۱+F=2~lߵHl|T$$NylĘӋ [~U*uwteu%[/Gׁ~8k aaW _ŃV0VCc^vrt'TQpU\b&>Qx Z#$ eckߵLMy^_U/EvBO 5Zy|6ͺ`FY#K6W 8TeHڛw?(-~f~Q}~IU UI|yѶ:(a:XCΞ| ^#v;Wɹs!)F 9n]8Ķ~'/$Tł`;96se{뤯LxߥeG ;6liڇyW㑗vЅY/`@KMݎtxӯq4t47q '|\u4|U+e)w>ցjt& D>'G:rS=i}h@Z3lv endstream endobj 1953 0 obj << /Type /Page /Contents 1954 0 R /Resources 1952 0 R /MediaBox [0 0 595.276 841.89] /Parent 1958 0 R >> endobj 1955 0 obj << /D [1953 0 R /XYZ 71 807.752 null] >> endobj 1956 0 obj << /D [1953 0 R /XYZ 72 769.89 null] >> endobj 1957 0 obj << /D [1953 0 R /XYZ 72 462.654 null] >> endobj 1952 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1961 0 obj << /Length 2416 /Filter /FlateDecode >> stream xksHΞF=Rl9βGfwo/d1* I񿿞^%eS2f=ӯiTe^`[qcbS +c#֕HԺ~jbn}(s$n錺1*"Hmr}=Ҁhc)gUEEc+w|\1ex\HKM1/`6mdjbY*َF0#E^BakX1f;Pl@fI ۺTV&z9x#*l.R 6eҗ%bpM#.ё!\Soa?SXK (qFL(%wb'4M4H FnBXg WOSj*r#8͛ĪjJ8QRz{A[ -?64|M|}YsF\ K1_נ\tMw/WbpDG'!dk\ϟnHUWJ"%y0҈켧x"%;tׇsɯaϽ3PIcog_;!IgMvlbwyffApxčE~g )d$rszҖJlf{s^ZjLcH˸N%Ԩ[7Dј&k!DCgۮ^5USTP(iDAاW-m"R+# 6Q[<ƩPx)'6uWdiQgj&r[#+ӱ('m8- h[#[m1,ۺںN}H6V[rF옾Z9 ܼ*m"mCm`6#_ ŰQ9Aْ8 7'~J @b޴MZ'Tv`E|/ PUn0a@k * ?Qr8!,8QԜVb7:r,I@X&iͪ9!&"-v!9aO `$[hպ '#'[cW2xe{ Ep*yS !=G}X^vyqKMX L8[!@30c^,UqёؕvgM 0mYdJW9KC'T8XP-IDSp "* s7NݔFT }"Ӳ=~Z.ٹghDmkZSа)Shz ƚ'JG4`F7-Wzv%ɛqm3qzQ2s'ɸpl'4:Wy̼eiOⱮ, 467+5vIAG۞3sjE@cΊI٨ry~NSZI½SAFN/D,4#Ԭ) ╋ѱܓ%puRW׃}@_hX~Y.ۤR$qvlH 3w/f=*0eCIŭ;~<92 Fv5z&1z|bs)Ն\A4 ]̋47s6$ʈBRg2wSim {HZ/|2( ayz&R7Zry2\:YyZLfA,%;y}(^|(y? }='?@:S): &49R,?_5 qLo<{|u*4dF v.]Nx‹AOÒ~7u $fFк5xHcC -;{> endobj 1962 0 obj << /D [1960 0 R /XYZ 71 807.752 null] >> endobj 1963 0 obj << /D [1960 0 R /XYZ 72 636.854 null] >> endobj 1964 0 obj << /D [1960 0 R /XYZ 72 515.919 null] >> endobj 1959 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1967 0 obj << /Length 2024 /Filter /FlateDecode >> stream x[SF_-lwWZ̐@ ɴi#[kPHrI=dK9| dvVo-6. l?z|:,p}Ye's|C]|a%<-2mE;1 &1>88A`;låFw~36B50|ϸfQׁqlm|Z\boj92\!۹{VT,<Z6ؠ.¶0-֭REm",7`& \O@mRNr1}te"v|SA|0_GCޡx^@+ 6nT|Oݖ[w h,6Ȼ̒(HDA"!0kazEVr8*B}ڸJLV rQڤ zjQkįNKͨP4+XoCͧzHiO?φ VxyyD]53L/o]w  bDFd1>pEa+WuE"JXĴ7ȷbn'iWfy8B=[1g /X3H@Q&(5z"x*V,->bB]ДUTGBքR3[t W\Jy*)s>ːNJg"k{Cy(t&g]qK۫ {l6fML 5 bBtF~m3%E/T^U#Rd & .!mU-ڷh[vwƍ NҁNǕA4ߧ+dE-"WX6o}[}CZ:$.lҥ?R~W E^~.@,􅘣vX7Q2U^`7 ;!X]+l an^]kϟpJf {®1f{blayGiy.Cqg, PL,(٭&cP~Vf}jQYLOߝ:uGZhC!SuQhݦ _m3Mț3Ux\E-? w|`yiu}yIK">&߹.HoQAܝy(yF]п騕 2{7T %oʋS5S] Jzy/$ 򵱷+gjE]-ZTqZvkfҮH+̻$Hg9yvgk|Jkgɰ;Jr]lu.6G& /K邭ͻ0ƓW//oV% ]V_QVc }2BVt]@GF[!O%[VS+>YuSʦ(%Ϲ%YmȺ%Y$?|Kw's'ongqw'}W,?c66Eڧ($#B ^ ?pcJk;&ne@?`U endstream endobj 1966 0 obj << /Type /Page /Contents 1967 0 R /Resources 1965 0 R /MediaBox [0 0 595.276 841.89] /Parent 1958 0 R >> endobj 1968 0 obj << /D [1966 0 R /XYZ 71 807.752 null] >> endobj 1969 0 obj << /D [1966 0 R /XYZ 72 724.13 null] >> endobj 1965 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1972 0 obj << /Length 1112 /Filter /FlateDecode >> stream xZmo6_A`l3;X`\$Mf(\[i m~GSr$Yk a@ûE>3^wk?Ai=X)dJzus{@/Z1$G+kwf(vԊǵ H h5fʣujDd*0f~)Or%f> @z \Kmm!xlpa3 s[[qL8`8`X9NʚKPr|@(|I. aKI1_C' —p.\3%!T^B' p ...R3(u>yud;s aؔ ~i{Q.<ޘ> endobj 1973 0 obj << /D [1971 0 R /XYZ 71 807.752 null] >> endobj 1970 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1976 0 obj << /Length 1762 /Filter /FlateDecode >> stream x[mS8_~$wehIi:$NdB~S?b@!j쮴+P9Uz=jۊ蛢i&@b96lM͔culcVwz0 s$q`K# ;_G[QG 栂 S:0KPQ{ͱ 2iS-(E NQg860X,h,nF Ye Y%0c:5LF"d0_ULZ/݃Ѱ7݃޿wQwx[(sͫ.Dr]78 0* Ȭގ'GIDF-!MtX^ǫH_I3$$q}XdWW榲!^[ dž? la1kہ]8|y`Pn+϶4c" VJ"D9923lJYTlW7#VS6NՀE5?jD@_W?&L޸*몕E4~$ M$ v,C A~=P]1}g)0 MtnГ!i{ tY.MM|)gl+<) ay[䏱hӞP'Կ2ֿȝ1ѵ‰k?~! eX1,y9 N;tsdm59#6ԟdċ$FiQ"dFZ$6%<iD~憷0mPI_${8gFOw! rXA)WHP-{V㼕VBٹ%o R&"6SB6 ~PD 7f[^8ѢiתhpH>T?BXId,eQ7֪a4EtHRnU#^_t;ꊹcyuaw$ u*Ul2Tﺃn cee`kL9Ɵڲz٨ח_iN-?cpE}%79nyFbocN";g#4'1jed!}}#:$1mȐ{di&Iru}??de*k:DF%m1ȵױ!d9XS6`/rf?'Q0'2_f,vc5Ԟ'٘ugҘ?%Ng'x<%UְP̢ЇlSȏ1[{'cY|BO^VHQ4'EjEW]ovoܝ,46[|5l1[.ٞVm5LVy˶6-/|+o5S9`6WG b4 b:e;r$W{4{~> endobj 1977 0 obj << /D [1975 0 R /XYZ 71 807.752 null] >> endobj 1974 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1980 0 obj << /Length 1181 /Filter /FlateDecode >> stream x[mo6_A`l ǣ^Y`m]$Mf(\[I Dk+Xw)[UNPy<:d05.O-Vsqyt=uzQdQ<Ǔ腒u`0TQOwv*F@#<2 ןa>7=4T 3#}xC=S*ϩr.i`k"d^#ŶQX ųܖjN`Y~aMpi];5cQO8ʴ0=4hEVt |?] ' (!vv<F# ]? |8(ޜ{@==*WONNr ΄]9vy^u6:+ymN"iNPQ/R$l|p8W[h;m^^(9.w_vlwUGU`.y6_tc<==\lݼS͊ݠ$ C/hZ#;8S(KA->y[llݤ-ʬeB |+gsb)gE}e/+s컔y^cJi-$Og(^Gsx%4'ؑj73Sni^^'C9^oU݋o;vs* 㔃WԺ `+8cbMp? 0?J̃!?x||n0e0|}3#㫜zu֚>3:c3:c3:c˨pGYdXd O<5͜6kr\4l_YNqbD :uؔ;|*e#(t'> endobj 1981 0 obj << /D [1979 0 R /XYZ 71 807.752 null] >> endobj 1978 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1984 0 obj << /Length 2279 /Filter /FlateDecode >> stream x\o8B}}6f&]']0dKNkK,],!['d;pS;o^ u ۡiخÌ[кxwPiP?AziG'oF_o>İ)6wmc0>>b`\"{ Dm ##K /3T6GrEa[٘ /p58Èk 84v.„&"SNct lG )jZ28C˕p_x!ŔQ4םĉ -HuF&,yGN] Oc.zbj`f1[1vqlr. ӽ~זNd)@U]w_wUTA|Q'^4ׅЯnmIm+Kd҅8jŊGAW T q"| 47$D\WEy3ui2Y^2c'8pj!]PF=|f2 a.!T 'I,/{sA[9jYsM`H?///\u{٫FjEje?roq)~x67cLJi8ȈI(Ʈn#Y*tN(X{!I|/"Rmh ml;.qw2Ӄ{p}]_q*;WjY--bUMmrs"iV*)6Evt}FR$Ƕv!7ᾭF_ t6%)l+B*UvXbˑXJt '`yr!`o('-at aV,]`4 gm[.F> }]@͞E~B%H$3ߟ;4[JMy(04}2/gW~zۻzs^vD.[ 3@05 i8M-=wɌ?W#kZ T$#? BBș$l5G2[-6o1KH>LmjO KK$o2A9nE88QY}-(%D&Ԩc#ޜk/8VL-7OS(?-uEͤ Yf/$T/Ԡ+3 y,5(Er9]SZ~{=X034M_>*;6aK>;&`"&bJ[U]_$ gpp,$T\7؆@UVЌUp4'~&!2?ru*$ |Uyx T2UzٜVZ!q<*^iB$ܺ˹8>5E SVXJ뷉s^Lx4s1m4=RkEQ33({o`0t4ml#> endobj 1985 0 obj << /D [1983 0 R /XYZ 71 807.752 null] >> endobj 1986 0 obj << /D [1983 0 R /XYZ 72 515.911 null] >> endobj 1987 0 obj << /D [1983 0 R /XYZ 72 273.433 null] >> endobj 1982 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1991 0 obj << /Length 2047 /Filter /FlateDecode >> stream x[mo6_!`lo5GR^:@V]vbщ6Ydyi/(6$t<>#9ظ6o_SgS۸X5Ek1{?R8U YlW<,LgJv#o:!<#]a(bc,VGKl \V޵2,FulhGGXJ ^qvMLñr0k"#W^Qj6AT؄4TaBDYhNܫ:G#vN[▚LO.# k[2cjr_|)i5ȲZ+ *iI%% Ì5|^H h4fSʃZMR4F5%E)b0Ze9"ƨ"QzF5ۓWI8beL_S~LFID+YS>l/9%7~ JvۚN) 4M@#y=W2h͡-ap4Ն?*2i1v`Y@uYC&q(KdB+KΚKf eJlPbxξٻ㷧<ۊ9SFYCL:yz͏&「EZϷq"\;OIkvU{&0.YͲ 3+DCbk4?ޅxMd'X‹xj DZcJʨ,`#:뒏P bզQhTk³]&O &lϦ<ʛQUs?31#|r0Q4…`~:߉9h9">!lybv ߂m53mx3:աNJyvU¼ɟ/d5+nFL?f~(S]ց؉%RUNj2mQc,mZ#_ P xD^!H(VχB^\ yA,r!Hh{l8p]/e>̐.ޓ11A;V6T⟛-r}.Sl/Бg았Ynthԃ(7,UoIwi3*/%/[;9ЭI D0Α'fN<(KCo>zԠOJ?#iE$wI ~ 4 ?!7F<;Ɓn&o 7/𣙵f 68WAcѲH% uGf+<\> endobj 1992 0 obj << /D [1990 0 R /XYZ 71 807.752 null] >> endobj 1993 0 obj << /D [1990 0 R /XYZ 72 647.418 null] >> endobj 1994 0 obj << /D [1990 0 R /XYZ 72 472.084 null] >> endobj 1989 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1997 0 obj << /Length 2229 /Filter /FlateDecode >> stream x\o6B>j @f[)5R* asQ$_d7uǻj~qukCeGL4Fu=zX%DyIi"A&/GgWG4G fX[]c89Sc_ JL3Taٌpׁrd\vD̐; ?U8;qiM\j/Q0hzre,]B-a^2VmE-%65T 4(ڸ67<0cI.pm:v4 >K5Åi2UF3I_UH{ )lU,E"_&*FAZqhԙraRb ^F8cfD@ZS N[o톌 [tw` ~1E0fnnv#e}i5d_آ0Mȧi|, ADdx6糊sBVvnI`JqM2pZQ ](8GbXkUz-q5/S$jҍcw-4W0y=Έ-VEcmbAv@%5@SVx.p29(l,FK\i{q}BaϮ;O~xszy9pNvC }fmj/4}A#c ;񻎎nrY۾CɴX4'q/w8 &RY:Sd|Z.̎5nUqQPFjKh:MXCP27V"H4!J!p]L}Su|~RZ$:|yuC*PmA<˴! qw@.ouEp",H֜R׋kDaU+bҁVDo{ q>Z)ZæM`aʎ'J ?gPԓ͠?_ǹ//% +cILӫ:9=5m$$)b"jyǗDX+ǟn _'Bbzt*Z:)O?)[> endobj 1998 0 obj << /D [1996 0 R /XYZ 71 807.752 null] >> endobj 1999 0 obj << /D [1996 0 R /XYZ 72 724.13 null] >> endobj 2000 0 obj << /D [1996 0 R /XYZ 72 173.263 null] >> endobj 1995 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2003 0 obj << /Length 1554 /Filter /FlateDecode >> stream x[mo6_o;) [ö4>dDr,/,7ͿQlIvlqAl&G({D/W~grBWҮѕ_>gi_ z7؋}Zvo7KLz7W;]uv(tEME ,]Ɲ|(殃Zc$$L+/;ĪJQzq1'Y9XQXYF& ¡ Qt@ҊXk.&1Bj$G1Z,a"LRɥ5*Vr]Ç2P3%uᗤrς8H:/@Lҽ(͒>ZIBɲ/H*:tqY}a$Fd*JR9Jة^vJ 24m](Y_3w[A۝9g(tkO^\W1gq1=~j~@YsW֪\:[B 4 #v@/F!H^|!5_bD5U4 rwa2$Xp8@{^ʌ՘3x)^. #0`V(Ͱp㢷U₄R`c{?ȄY0rAc; ڲQУ-=/9L-9'H7@$w<0H/@蓐vMǥ5.(b{X*0nh[c)1\7F hW<&U`D*jVe;0fÐZBz[F`*h*730:|Mh5lP%XhP z߀栀*a /0H1(*:jvI *E*m Xs:95wdMeO¯s{^f9~݇Fo#,J[(m:ŚadV:7S6Ad{ al{ByD-^pl'k,Y+s`_b Ƞ +C*Z @'.E' Bgb_ D#%``5{` 9H%v!}noE_<\ 11ܒ0s|g5#&#^ b7-m+~b&f5`(ֱ0Cia&9&˾NV^5XM@%JvR wIkR޿5S?A9yn[yfEOcyp_>\^&^lٳ% )eoLӨ/6ӭ_䛩 bv&)N{n90#f7&)uF13/`)RdJjoWY%hY_qσge!.,ߘyp^cJ48_WuꢇadmOPJ^8=: ӓ_X ! :-9#h:~5d@;@7ּ mpJ/i}\0L=8JE,s_Cюwfd?00uaV endstream endobj 2002 0 obj << /Type /Page /Contents 2003 0 R /Resources 2001 0 R /MediaBox [0 0 595.276 841.89] /Parent 1988 0 R >> endobj 2004 0 obj << /D [2002 0 R /XYZ 71 807.752 null] >> endobj 2005 0 obj << /D [2002 0 R /XYZ 72 692.495 null] >> endobj 2006 0 obj << /D [2002 0 R /XYZ 72 573.938 null] >> endobj 2007 0 obj << /D [2002 0 R /XYZ 72 455.381 null] >> endobj 2008 0 obj << /D [2002 0 R /XYZ 72 301.964 null] >> endobj 2001 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F37 944 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2011 0 obj << /Length 2272 /Filter /FlateDecode >> stream x\moH_>%}H3ٛe7J ,cEꢫj2VOW'@-FA jTKU|zӗ95_/ā{)27 L.Yܔt7W:@sX!ItT V|`ږr5U4 jp*_O~;R\d˟K DULCG&sQ0ud[:XmS*Y,˵VRaBpj8ah%/0"(R:U,PqUdںPf, cSmP@'72šhB֡iRj+#[E˯_p J &n64 hBiM୞JfSzNwy$Τ`0 0"UUO]J]•so~Va)]SinrY jZxAʍjnE׈PGXpIIeS)Uh(YHD4`ㆡBw~up42UM rB6$; ^F"løH`7}AKǃe$%Ra ,y% Lţڽ$8˖e0 &"iu hy`0ZDR3.oK&Oޠ*6s 7qU˛PU͙Ħ~'m_Фcr7+Hͺ1oٞջa{ijt4N2ݽ-1ntPPDj-E&r})姷/Wk jk*jNYsT"]gԝޅ`n{b<WMHC8sexij'gd,fdv zn:qFa|DJgΎ ݔMG$4DӑҾwy*R|EN1 u3hd%s8 ۳yyt;Nר.AAmB-VhmUCZ}]~:룈}ӏd|+A_O3:K\:C%RASYYK~Nj#^D٪Zի]m?_ȗ/ch$խWգT36A/y-+x (>]yvܮYj3[ETo\7V答@%@"5mW?}\9֨iB/;ߖqD<7:TOY\^JGꪪѥ6OwS5aџ<5ǟ W8'zd&z0i)VףݥVaՙ=B|y1ޜ8wpٛr)oL7g} M=o:B}OS Gnԝ1>#FE?"rXL\>zZL[ox 8+g 2kº+y$њ'?ƿ/mFm.GJh)]OR<4Ώ `Zj1 ZjЁ|J endstream endobj 2010 0 obj << /Type /Page /Contents 2011 0 R /Resources 2009 0 R /MediaBox [0 0 595.276 841.89] /Parent 1988 0 R >> endobj 2012 0 obj << /D [2010 0 R /XYZ 71 807.752 null] >> endobj 2013 0 obj << /D [2010 0 R /XYZ 72 691.648 null] >> endobj 2014 0 obj << /D [2010 0 R /XYZ 72 550.187 null] >> endobj 2015 0 obj << /D [2010 0 R /XYZ 72 222.275 null] >> endobj 2009 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2018 0 obj << /Length 2331 /Filter /FlateDecode >> stream xko۶{~ap$%vHl밮n77pIɒ#킢}=c=7wEy66 llkxȳm]5Ekgq>|C__FLS~&Wg?흞X Dc2;F?k| x=Q%I Pl& 9m"Q_jذ:qM `6I czR_G[A%WkAq^'-1eidˈpm.31%/^H1Pa:M199Yf# p.ȵF`m@xr?Igyq3, 8 &@1[_I4ġ0+O_>Oǿ' a$,%FF+9$lDŽFZiK?PdSeTW~凑\IamJ5(׍b cݘmT Yת›LaX}&S: ` e' o k e(aۢ)- !;bax5+IQ$I2uS>8/] Ib`7Kv`iFf@nv@|TQadM_(2X{4m`z4TSemOȖ  q7tkQִ?O3R?'*F.D:l16 ]NPJc~u{%k%Nќg:Jҵ`~7զ|IvQ6YB6ʨ,qo%`5;KNTbCS۔{K*c'x:87[ʤ~"/~zq*ݧFqNi 2]2 ft.\B03o4XȪ*@A[60 ?Kav)IzF?F yS6zI$ԗRw,GasaaGOy%j{4 |RPLmʥ7܋O7BU=E8s,d7REvݷlK2 ʖiYja[_XP-&"R! Y.&||{LgyDGMa0艀F4!C#O(I kW1VKօ.^ʴbNm%ڡ;&dǒ-Dзh!`t]ߞ쨂v]zy#Zҋ:/o%g"N_….=9+ގIbi/u6<[1-wJ񬭼t>;Zy\E\{O ر:M8'sUY}\sU*)uZ?M !ZF*c "LJ^ԝ0޴(F]ώZs˅=9Yeba 070y°-+U.烤xWLh3p/jH-9FV5>o~ r,*@gGc#>>qdk0tSE ũsr_{±|X4 kw|jMƪzL^5J.\f98lT$A^vb5.cY3Y2v M ΨF)=xd>ZQ.U!WWQE1,*3©A4Ú-BZG(,Jb)V!7z`װ5AyK OlŢ ln2[~6inz"EOeܫ;ogS^Qoo(|X >u 2:j{d6]DɊ>d| 9z]_WȒ4e r lh[\dMB}`1\Hyh,.@ F7 W*?kϏ,: H|;Q^St/bRM^}d5Tz%:_$w'[suj- cuPrS^j+-;q I1L!m+KGs}Ay"Dr;l6O_V]>q,:Sѷ LXEm)Ş9gS`2a4*>ufL h!5 endstream endobj 2017 0 obj << /Type /Page /Contents 2018 0 R /Resources 2016 0 R /MediaBox [0 0 595.276 841.89] /Parent 1988 0 R >> endobj 2019 0 obj << /D [2017 0 R /XYZ 71 807.752 null] >> endobj 2020 0 obj << /D [2017 0 R /XYZ 72 637.121 null] >> endobj 2021 0 obj << /D [2017 0 R /XYZ 72 396.301 null] >> endobj 2022 0 obj << /D [2017 0 R /XYZ 72 276.631 null] >> endobj 2016 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2025 0 obj << /Length 1966 /Filter /FlateDecode >> stream x[ms8_>4k$۲L)+WZHKax}#6P`m!sx6B002=,Mu#zCOj{^\Ĉi8Fsw\Q0p m2ذ=dSY,ʵTRaBe;f8^΅.0"1Kj6M ,a^Dg+fxq?O9؍aQ6k\xD0lOq :3–U/P')ӧ5Sl!gYn"pA@DIb_㇕p)CX8n}nK*4M)N9kLQ،1?J&EfպW1nlpŝ(2lWJQ% EگZ7 *ov~}ZdkBkNy 7FGڰ礆Ӝ<`D`l$C$BvA a)F/m 珓 W'q4n%0ȃ[YV bL#P3(~"%Q(I\9TXgY~_qXvHYm p֋ApL&0CBE4R΂jk>lF:P3X1@< eHQwJF%wVS ^,E&OR =<̨ 9qN9Q^o*M@>%HyM2+: a`& Jnd9OO.2ѣެ!޾XGmOk:RW U91([1458"Z7$]Jf2՚PޜSg>'e^#6ѱAɓt$NY7Zx" [5ʤLQ[W>kmVn>h_&@{ٯW't??w_vj E&Ti{e'.|vC?)*=f!dBeS˫8lLIPW'DvRvJMxpu`w|4ؼBl!\>h< A|nW'Sy$.ўuw{V\'ܐ_ꝿ<&t`jCVyn"}$whv/^_ F';P~?IQDߐn!LgW0Qa&Y׽<^$7nnXhl#%nɞG’j:@91![R<'"<)I%}=,ZOfWx.yYJG{ΊVg5I9)dI{V@tƈ -w9pKUM1Ĉ@kt, (P&%cuȅ)4a\qHnA2ݦk{mLP3|gN ~ֶ # 833l}v}Dsjl7y|r g/! Sj+<vսM};Zn׾+b[F', 5 -0&ZnѫGwU=܃s&D endstream endobj 2024 0 obj << /Type /Page /Contents 2025 0 R /Resources 2023 0 R /MediaBox [0 0 595.276 841.89] /Parent 2029 0 R >> endobj 2026 0 obj << /D [2024 0 R /XYZ 71 807.752 null] >> endobj 437 0 obj << /D [2024 0 R /XYZ 72 690.576 null] >> endobj 2027 0 obj << /D [2024 0 R /XYZ 72 651.422 null] >> endobj 2028 0 obj << /D [2024 0 R /XYZ 72 544.536 null] >> endobj 2023 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2032 0 obj << /Length 1955 /Filter /FlateDecode >> stream x]oF B>Y=,]t)l*ɉVYl9m׏CȒlDZ.GH(ڕ7_.Z?R[scRSi,Ffڅ]?pxL-<oM$>cA@`d |عx:h"0ֈ$#ñ4ߺ`͇F̱o⪾Q˄HD?+Ml$LLYXNFpńxMAt@DG:-eAyh!j)aH#|%s\h6('5C*!$4JA6HdjfI:G!MGn 11n?F߸8(C7 t>cX`\˗/3C 23N2u>?~7CaxFF{)?0g-ӸrwgFf<*{} mqC*]'uwfd$#?Q!O9OtĞ.PRki2_ζp /΂̃SCy[$Rq+F0 qzH\^YE#!J,V$+`3: g-1lt`+9 hw_o0Gɗx8]WΠ`VpGؗ20m5"<9ھ@08 iJGg:]X#WWi8f}`dHJZVTAbhkU_6t2มhҲW՚am35E[d-R9kaԄDBB2'#r,RX0G)? h`^vI_.N>}|z|> endobj 2033 0 obj << /D [2031 0 R /XYZ 71 807.752 null] >> endobj 2034 0 obj << /D [2031 0 R /XYZ 72 296.733 null] >> endobj 2030 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2037 0 obj << /Length 1876 /Filter /FlateDecode >> stream x[n8}Wh{pIJԥ@ ݤhx@P,V\INC.N' E&̐LjkrLjj㩦&"f96m]!їكMVsH4/sr/ F x<> ֈfQ6s,m2\^a͇Fckw\3A29._XK4/ii#e2daFP#@$mX3 1¦X[u&ԋ(6(sܘk{8ZUj%Jj6(4r1b:t2^Nxѡp:'T^4&dૃr͗j٫7My=N {T$N:\NVZeIܪ[/\nçh+@Le0j"87W 04X!d5u$j"js6 ``TMN,7GybM+ z6T6 ށ:;aL_"ܹ`nx>3#ލuZSo8((C3э^&Pcj*V[›/Bjz[& k38G) ܮio~CGX/kf_W2)]mPsW6i9ֱ<`Wg4DU<3'6&pܟ+dCjS}Wh|m㣷ȪF\ 0 X7 Dvua|ņOyB'bsg㣳/=ɓě,kc .)Ȣ@=P/b&_PRl=PfX{ngE a'I͗yMFA&P]*Ydα"qvWcFtXk 6h<`!4!^+z)k w!2[]6{ 7 H̽RR${;/x&2ۜa*3_/@5R.oYfm9}u:C03ЫN&*PX}b;%A/ c3{;qԟ]ԓk؏zRcsLE0F,85emǨ~5r % endstream endobj 2036 0 obj << /Type /Page /Contents 2037 0 R /Resources 2035 0 R /MediaBox [0 0 595.276 841.89] /Parent 2029 0 R >> endobj 2038 0 obj << /D [2036 0 R /XYZ 71 807.752 null] >> endobj 2039 0 obj << /D [2036 0 R /XYZ 72 703.454 null] >> endobj 441 0 obj << /D [2036 0 R /XYZ 72 505.732 null] >> endobj 2040 0 obj << /D [2036 0 R /XYZ 72 466.578 null] >> endobj 2041 0 obj << /D [2036 0 R /XYZ 72 382.705 null] >> endobj 2042 0 obj << /D [2036 0 R /XYZ 72 186.055 null] >> endobj 2035 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2045 0 obj << /Length 1496 /Filter /FlateDecode >> stream xZ[o6~`["RR芬K]b`"Pm`KDͿߡHْ%%A<<]AcDЛo֯8L ayQ>vO޽t^}8a:XT#ɑre/t?߶/- [D-kGY'@af3_x["󗍑p#_ q5ÌyE@>>A! c.וPZ=c&x8Shs~`0̩̔VPjWVpAXվ|PRtF!)&kk;{ ػFa>B4^LLy4VA?&B~$j˯]wEFhvS-dIBvw)@B #݈~>?A̙:w͆_(7;'% V]VM]đ _4 i@}WPCϋc=ҩg{t-Q<ҙ5m}HYoiFivU8&j3'L*98W}]Jk ߯c1cNy'*}97\ؓ0lXXI:KP~r!9Gn~9}՟'_IëǍ'3!gSZ+bdƫmweE;MBKG[::)\֌m(PDs]y?kvI{뢮@a Lհ4IV%PL Xu$nR>׺Fl_ DP{öA<[uZ`<2ps=>5q[5^;.µFFf:9;SեUMR[B/PYٻ8@{PYԨ>5Xn8 c*Slņ_'#@$*9+Ǟ{[V>⹖އzd֗Z|Y7>w?}*> endobj 2046 0 obj << /D [2044 0 R /XYZ 71 807.752 null] >> endobj 2047 0 obj << /D [2044 0 R /XYZ 72 658.377 null] >> endobj 2043 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2050 0 obj << /Length 956 /Filter /FlateDecode >> stream xZ]o0}WxOTēViնS׭7V! "%aUlP2!m>>ؾh0:*RIuPkspJPڵuڧ'zӱxLB)~VҪFTCsEq}Q_ۿ! LzvVk @]G}ԬWpB -\/ ;8!b]#@x"b%A@r`<$Lb?΅ T9r`)t D]%gH,(ҐM= ڳ`Ja;UaA.gu sAƢ;dAoPx0# V GXsbcF#c4tKt Cw`(Ud@Ɲx4V@CҪw0I䙹a!8Pg hNj(pk^ߍ"{To ׆u ?%5OGSOP^#e\s" endstream endobj 2049 0 obj << /Type /Page /Contents 2050 0 R /Resources 2048 0 R /MediaBox [0 0 595.276 841.89] /Parent 2029 0 R >> endobj 2051 0 obj << /D [2049 0 R /XYZ 71 807.752 null] >> endobj 2052 0 obj << /D [2049 0 R /XYZ 72 246.159 null] >> endobj 2053 0 obj << /D [2049 0 R /XYZ 72 246.159 null] >> endobj 2048 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2056 0 obj << /Length 216 /Filter /FlateDecode >> stream xڕOOA )zMt:j@bPᰰw`SۗV\E1ae  W[XVݼ4aѥ}hiTBTLLx2"Z 6XڬπPVHdgsx\le'f 4;:(QA~i}z+Y]㱖h3 N endstream endobj 2055 0 obj << /Type /Page /Contents 2056 0 R /Resources 2054 0 R /MediaBox [0 0 595.276 841.89] /Parent 2029 0 R >> endobj 2057 0 obj << /D [2055 0 R /XYZ 71 807.752 null] >> endobj 2054 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2060 0 obj << /Length 1121 /Filter /FlateDecode >> stream xZ[o6~ g)")) ]ڴh.Ê0TYNrѲcɭvtB]s\D ^wHyܡp'"!K̙@~ܹH"G#.(f]up;+f#;Ihq Ct}y{VO\b~4:D=fbΦo.˳Bs Kf68lj‚YHT,RTe7hp CXRI vL^bc"H**l ޘآriaS:Uh#KfL(]2S saa&̅,@j&Y܁&P /Dj# I! Tt}MV0pvhE=IHwq]X%-Rvy^Vqpq[\_~)xfyMEKWF@HbK$1iBlQԣXh~)L~B0vtE*$}wċڀ2#8L@=Rgr̝u cM+ueԙχL*])78H*`/"H ,TFQ062cyywqd(6=ea0R7;5lb+nƫZ:i- ]\g" aȻc{zG vFUdPi"[/L3wRv~ ѻm>$QƝoȭAarsjS<t:8KMQ]M` fS$NO3BŻ+]zP^s/vj p~0 R`JBڠEisnDgk7N4uyRoTZVɱusŏ6LSCn g=7yzHk7 ["Yϛyޢ0suj, jUt)V=}〃Vۍ/m7~GQ|מd=IϤ'thRەڮ]ɏ/'yG~Z}$mn t[gVy|yKVkXWu<*8K?_hImElE9[9+L<Q`P!d݁l1m:-3L)QG0lń endstream endobj 2059 0 obj << /Type /Page /Contents 2060 0 R /Resources 2058 0 R /MediaBox [0 0 595.276 841.89] /Parent 2062 0 R >> endobj 2061 0 obj << /D [2059 0 R /XYZ 71 807.752 null] >> endobj 445 0 obj << /D [2059 0 R /XYZ 72 769.89 null] >> endobj 2058 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2065 0 obj << /Length 1594 /Filter /FlateDecode >> stream x[[o6~RX(Ru)<[Kڴ˚`-1VFIIGE6e[[);WP*Py3flͭbi@uW>/>zvY q'^8'y?O4$/7n *H6v,ŋ@tV"hɯCzPR".>YlDbXonĜx8@?lvM!HZl64/3ܮ<]R(i|Ubs՚\XjT5.`F Ij+$50rxH-MR*p#A<o= 'Vy A`Gp6r݊gG5v|nB89gѲȥ7'] *B'LjhD2LNke&> 'IkC5{Gm4\q+C$%~JdO&0&܂utձx UךTΒg>ۥ,zxHSE$lZFD9& e֭T~- "{!Rpy]E r{`{jUj*$㬈Fju79q4X!i\^!FjdN8 4eB}2Gj^oss1YAG{'Z˻vo m*y<כ 5ĴfK9fo6N%zڬ8Uvɀn/Ӏm.'m/n%XYya\,)a?=%RjT;eIV NqQ_ς8i$U SNW^nF<=$WfiWDA'ͨ<;'׳']uP#QA볂JvZٛZP{izHOR+̚ZLqNY&sM[:f\1K\^42?^||^ե4뮇. \!#U\.򖽨Lw~1[PCM-5YhM`Lr?ؚ|FPwZ Y .s{J<>bij46[,Oݲ$j-sAp,ڲ[VB2'NUۮȂ(MXq^j1尻XPݸ\q u.Zi9tg]3jeh_,g(\_SjQn7N{[e(W, [M IiSDV6sZ{ :^tW!:~ߙtxe3A|EU.UO[*:q9i1 l&\bMd)xAH_Q{!)M#<[M(#S*l~4,uq#gjCOx`4y37"9e '{h' >P4#ڑ\K4vgCz36*Se_o)985|X?<DBwT:6fnu(}yBf),E7 `@m.˗3&:swM!<ސ/?9C endstream endobj 2064 0 obj << /Type /Page /Contents 2065 0 R /Resources 2063 0 R /MediaBox [0 0 595.276 841.89] /Parent 2062 0 R >> endobj 2066 0 obj << /D [2064 0 R /XYZ 71 807.752 null] >> endobj 2063 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2069 0 obj << /Length 1794 /Filter /FlateDecode >> stream x[[oH~ϯM%:TZmm#^J9xKv),8%('7>gΜ`Zʫ`tH-FA e|TKUƮr19F9{Ù$IeN9!N%WQDDf϶r -ź|]U,4[[ϞaLxX.%7Y@\)i/e-1P&g'+ Uc g/)3KO&P凘4e6 $zXa4ɀԵm._8@:;"8NvY伾O[bl]orbxĝD|.!4 ٞtTy˸u~dIx (,\ .^ ٌ%n3LCqS"ҭ46q&49Bu>;ɶ^Gȝ"ӶDLܢ&ZeA}b*/9e"NGF)KR񁮒^7ek{߰^ YOziE7v\kl캙zӊ"}UX~%͢rؼRQhE{:G)f n ڬD?&W\- 11(; U&2t{#iNc٦qu߮F&sfDpޞDusM˖1V4^q:G2R2濍oLw{)gQ2qda>?ߏn[uy-IܥZ[!j4gël > endobj 2070 0 obj << /D [2068 0 R /XYZ 71 807.752 null] >> endobj 449 0 obj << /D [2068 0 R /XYZ 72 328.538 null] >> endobj 2071 0 obj << /D [2068 0 R /XYZ 72 289.384 null] >> endobj 2067 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2074 0 obj << /Length 2078 /Filter /FlateDecode >> stream xioH{H0H {Z[!Ǚ^;k; i,y;c;OOȧ9u(D,dN\o;Al":"?}"q% FUɿ'PahQ$+ BF͚8'>3lH%W8Oo"a7@:~Ӎ `ĀXk#„,.3Z #9?0snT˩j}Ϫ3D\E1ˆwcfEI tRUQGJ :PJh@Y";gGgϞ5 Hqɓ<P=y hKtyo̱uQ6wZ^@z=5clѳū8E"~,k{7J~9[!TA ufld4jdE%17cc!~+r?;NޛWOr87bN}䁖+шNAݣj~mGF~8yY9fl:-Z (9Jz|ˑ6شkb[V=`|-f%L9rd*21kٷd'-B*Ye&S *4笮Qb1z"344 ^1m*-+% W=:k32Xs>=k ֬׭RԶPys-JN` %Vl[^%)MI\!C PUkMe]y2:Ja6X?"B]Ru1/X'T5> tS|:Ւ+.s8*ӥVV|s\??!Pr2Bul@ZaEkE$!K@azȓ`r=\ɀpv7< ֑l'ߵ~3 NV uyDy!|>VS ^ e·)|neppk?L񪣫l<숯?Iʽ8*̲n'DfO۸qrg7usU E;?~_خDAbKx6{U 삩Ȳc,R̳yDӛ^% endstream endobj 2073 0 obj << /Type /Page /Contents 2074 0 R /Resources 2072 0 R /MediaBox [0 0 595.276 841.89] /Parent 2062 0 R >> endobj 2075 0 obj << /D [2073 0 R /XYZ 71 807.752 null] >> endobj 2076 0 obj << /D [2073 0 R /XYZ 72 680.712 null] >> endobj 2077 0 obj << /D [2073 0 R /XYZ 72 451.943 null] >> endobj 2078 0 obj << /D [2073 0 R /XYZ 72 299.15 null] >> endobj 2072 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2081 0 obj << /Length 1792 /Filter /FlateDecode >> stream x[o6B>DjQ`+v]% ٦mYr;>dKrD~.ĦNxw;LaklameԷԵ.Gc.">b>.V׾8ݡo|t0O$(<Ӵs0#p]eE,kI{!Y^pB;.ZXo6tm#0s90G' P],pSh>'>|(I"\dOꢃ{=Yj<G~-^|DNɳRL֚Y%XE-M }:-q(vn]+"/B%SD9BY|(9*9N2t".gٽ2 X;W:UJ% s"&<ԭ\`a .쾰?VL-Fje" ed qxprJNf6^Lģ6PLNm82Cv:9#dsga;cM5 v&vjEqԦܾD(Mjo s0>dx8[aF][6qG[Dk ::St![Qf(iKa?V[Ɓ](6 6 y~8RsgaAY+ b"2 nMÝv_+'S@@z< 1BY*d:&]KLo)C%e;@ #C-f2[ 8i(kUf^u>A ;)zPla5ny laUn|WFV?CHK: ILQJ2Hbk̩0 MxP7{-F endstream endobj 2080 0 obj << /Type /Page /Contents 2081 0 R /Resources 2079 0 R /MediaBox [0 0 595.276 841.89] /Parent 2062 0 R >> endobj 2082 0 obj << /D [2080 0 R /XYZ 71 807.752 null] >> endobj 2083 0 obj << /D [2080 0 R /XYZ 72 713.752 null] >> endobj 2084 0 obj << /D [2080 0 R /XYZ 72 439.973 null] >> endobj 2085 0 obj << /D [2080 0 R /XYZ 72 275.389 null] >> endobj 2079 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2088 0 obj << /Length 1637 /Filter /FlateDecode >> stream x\[o6~ X‘ԽXlE[h,[D;jt.^!}(_d;-q lsx95_>P .@#@3t(۟cNŅX&Ns23qKe]!h*,wuۿ%COy@V0$ʯ]p U1E .?/IVub h5<-] a u$?%q!2{RU"AD EKo=CAld0B΍3*mqs;-jz6\?bK-\,d"p4C<99)I\р`d*Q 2Gaw[jaI2o0]gTxp\t^ҷ;^@'¥$V> VCa;Q\Ы`0c F{T K`;RP!( 2P%!""K^`3׺_G;(CUIɝHcR7ۍ(ͩV2B)ꒀYi34 w_]^uc :1ɪK9Ia|woDɍ?u͸z@]+ +'\s}ӄ503)u٘fJ-`2Cl@M@/PC\-Zf 8.1=n00Ekؔ)&MzB1 [$:>jmPKn=p߶>&lmM:+BYDgعcQM>Q7fܭD򯺈%3*!{eǪ P _C8Jf21aly<Ǜ~0+״Ƭ;5ǩoU%BisB iP1.d̼(S~?ep`lԷyR%ϧfHxZ&62i3SR@!W%q7ݔCӌ9ւU׏ķ˦ʵMX36ץC|PjU8(_;d;!_nLT){Zi<_T:. +NÉCB +Hc*v~xU9(Z^hs:$*qyI(h5bK+XCd VC#qibMH7y,Y ~cQ5P3ĚN3η yiliyw,ɍN:a{ws7y-Rv :bvjn΢QǛڪ"\D7@tWH_Mm s]΄޸%wر)7 uèt#yƎ!_O_l#4k[ewQt-J믉 KMڑ#[AȢ|5@ܸ#1nIڢYo.Xw6 Q鄙IDwʺ݋@gJ?ڣȐ;fƟRj^$U2oa"Q'ICJ0+]/Aα^' endstream endobj 2087 0 obj << /Type /Page /Contents 2088 0 R /Resources 2086 0 R /MediaBox [0 0 595.276 841.89] /Parent 2062 0 R >> endobj 2089 0 obj << /D [2087 0 R /XYZ 71 807.752 null] >> endobj 2090 0 obj << /D [2087 0 R /XYZ 72 298.154 null] >> endobj 2086 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2093 0 obj << /Length 669 /Filter /FlateDecode >> stream x[O0)TgN4m1BkL٘~wN.M:,:G؇9ٛ8x@4h\!0:23јQӘe21 m;&,LsCAOp:J9='9;dcBA{%ē SC[w~4 @1A|%r3=채wl@Ph~mTeluIKpnսe,(AF WuYNJFLV|-@;*ȀEڱ |ZnkM4 iךz ;7vGcE?A?8=ˍ.vtRw(;[n)M-ǚ˳k[x(*Pv ""J_ Y> endobj 2094 0 obj << /D [2092 0 R /XYZ 71 807.752 null] >> endobj 2095 0 obj << /D [2092 0 R /XYZ 72 664.425 null] >> endobj 2096 0 obj << /D [2092 0 R /XYZ 72 664.425 null] >> endobj 2091 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2100 0 obj << /Length 216 /Filter /FlateDecode >> stream xڕOOA )zMt:j@bPᰰw`SۗV\E1ae  W[XVݼ4aѥ}hiTBTLLx2"Z 6XڬπPVHdgsx\le'f ը _4>@Y]㱖h3 N endstream endobj 2099 0 obj << /Type /Page /Contents 2100 0 R /Resources 2098 0 R /MediaBox [0 0 595.276 841.89] /Parent 2097 0 R >> endobj 2101 0 obj << /D [2099 0 R /XYZ 71 807.752 null] >> endobj 2098 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2104 0 obj << /Length 1471 /Filter /FlateDecode >> stream xYmsFί~p;ifmeK:( 9M&޽; $ 䭓aFgw!nA5}SMECI0gE+ v+gE3˄qkhpe` CSX`.'A׸<):7ZLU'nH}\T *PMoqluF&L {zq68 ť/^J0yt`fpMÒw\[rLZn:ocZ6hCeR 75Z̲^$-1H?JaD鴐O`mXF& Pe44 k4_M}hPTH05 3Ԩa"VI)xE }EQH9M#cccbSRaSlm@@bL2eIUA ff>W3P8յ - KY%"Uxa 7P'!bn`DLOVH+b+1iTl `(s^6cB;i9ТV;Q08D.vI(*ib 6_7U"o2Y o4uSxJ5;Lnni nb/;}0Js\,"C )sk9qJP n%Rj>\nC/ ٠#rpQEyD|~tEo2c_Çiq:AzJp:CQ C༴ڕ] C?Fl4 dZi-M]!vdwW &z>cb/`7hEiY:.zgAc1SE⣖|AQGc+`;/gsLW|aV&ԏl> endobj 2105 0 obj << /D [2103 0 R /XYZ 71 807.752 null] >> endobj 453 0 obj << /D [2103 0 R /XYZ 72 769.89 null] >> endobj 457 0 obj << /D [2103 0 R /XYZ 72 611.174 null] >> endobj 2102 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2108 0 obj << /Length 1216 /Filter /FlateDecode >> stream xZmo8ίt:Tv6+rI׭r9bhpIڪZ?;N{UJ3 p^;~D `BS#NnP6d0pmo]^7ZD7K4h0uR/ B֣>u*:5kAfZaPCeA4SEŐk_]qUu.\I^8f^:#Z^(lAcuKB>Iϕ!MѤU/DNM1JOo~@4zi԰̦%C]]%"u 05UhsE%sVL0YR7`"Hz9 T M)X Ј`I9uML &B*l Kf$a:,!r67|.,J%6oRyr )fs ﳁ; ?[92u<r.0j F@9rڜcDs 9~B=KA78TqI낐Дn!UAMt3smtŹv1@m-14Z22~vLR/d2"d1҄\/" endstream endobj 2107 0 obj << /Type /Page /Contents 2108 0 R /Resources 2106 0 R /MediaBox [0 0 595.276 841.89] /Parent 2097 0 R >> endobj 2109 0 obj << /D [2107 0 R /XYZ 71 807.752 null] >> endobj 2106 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2112 0 obj << /Length 1587 /Filter /FlateDecode >> stream xZo6B>-VMTE^XjEZp%APQdYy$w;2:ae`[59&5P4]it}qOԲ W4d0X{yf!2&:7zݷVF@VbQ`#ñATa[#ͱbVA2*_5F RKzA ۮgGiqS4c>o90 }R&c Z>$JPӤAԏryax#F\ fd0oz&fR\N^,BX*|/_ĨsHr C" r5נXj)(QeA<*%drQ2g oT0,gE @Q_:RD}=F&K'r6f[ba"G+01 bUUʂaBpnXZ8ep-2ZVȲW|IҖfņ32¨,#ŋK0.LābrMdf?% hXy#6E HS(qĐvXVuh/O;BbN;Ȃhz? xVTH KNYU = ~%" \"֙yJ-moNp, L~oSyyxv[Q"짐Di$9\I2ɨ,F*Q0u"WK `"u--N[t{_Dy?Ls^z3S[ү=>%A &i=Btۏ_ӟv (=mg: i=;N:ryB& +EXfYλNnum랟;{h|ޡ^UYoЭ[{(})oOI~AI~n<lBf^{pD~TO^bmavcow#{qc<ɽPRg,$M`櫏 :flߗ ,M4,8c9eoŲ?RY*ID:ltJYtsƪ*1u` ͬp'k~c_.xW'kE1˙';ɰZdC^x5 \‰7`N׬}z`BZ` S֛KYIW#:F> endobj 2113 0 obj << /D [2111 0 R /XYZ 71 807.752 null] >> endobj 2110 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2116 0 obj << /Length 1485 /Filter /FlateDecode >> stream xZQo8~Wt'$RcQPJ )$liٱI$l!$pxf4_cKmbS鏕V:tKW2Ю4۸cigW]1pbJ؉0h ZԙSq`qo|m & *H&;h@e m)]Sƾrꨠ.qGzd Mga8 e:-1 ByWζpk=*;*o}W H;=Il&>fZD:[:nY+8X+:d^w ! )ylIȱD(+ӉW#N :דA@§(= )IRp0ib5SȔ/f݄i˜* ^pZ Arn˽{SZUmv6['ά=Y'(njS^mm-W0 3:dY+!GY/̘eT]Z=GIiBKk`6js0:PeH#W Q h!q6RК9פЧ,Vn:/qIJ̬7]yE$+z[ƝŇKyPqM@ pRN44+e[Tf_h;4BViYĽ|'^a/z1ߴga-t_../W났^b >]v{q}u G՗xXrR/ɄF')ϝI۩\/FS%6U/n`LHH]F;9p\7y,< ވ4'Zw2=8rTpi5[WR Tx A9oBZ_WTͩ.jovDl&.6&]WE5nD@ ]wY x︫ E]ǰ@a cg4xOk&Y6n !?Erx.(1PW=z:^:a O?ק0 ;Vh3l4;tHe%MyzRsH[boCEw t"@ԥ(t,dQPCܯ :\9M5X)݋f;-fB -(cÄa'.,:Q!%2*sd*2}+Ll\q0&yQـNUFNqr~f3?2bXс?`o S9H[/؟:nOvUy-4QFHC|e^9 9;,XƐ;iY 怙e*>Ƙc#Zeʧ FJyRt{' Rꕼo  o[!luhsf1đXXaE9㇜e| endstream endobj 2115 0 obj << /Type /Page /Contents 2116 0 R /Resources 2114 0 R /MediaBox [0 0 595.276 841.89] /Parent 2097 0 R >> endobj 2117 0 obj << /D [2115 0 R /XYZ 71 807.752 null] >> endobj 2118 0 obj << /D [2115 0 R /XYZ 72 290.759 null] >> endobj 2114 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2121 0 obj << /Length 932 /Filter /FlateDecode >> stream xXmo0_aM%IL@UBTUhӪ(mFs6/0*J{9={."M{bW2sĹFu0w8Ⱥ\tL9 f_'^ Fvxx[_ZDb`Uhj@~殃Z+d 0}]dp7wL-Lr=SRn 53e6o)QWb E*؟̼H`ޡVK$'BB2V[t> endobj 2122 0 obj << /D [2120 0 R /XYZ 71 807.752 null] >> endobj 2123 0 obj << /D [2120 0 R /XYZ 72 769.89 null] >> endobj 2124 0 obj << /D [2120 0 R /XYZ 72 608.493 null] >> endobj 2125 0 obj << /D [2120 0 R /XYZ 72 608.493 null] >> endobj 2119 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2129 0 obj << /Length 221 /Filter /FlateDecode >> stream xڕ;O1{-m[֏(RX9'D0B{H4T;;ZG[v0Xe!n)pbK݋F9/fUtχn8U)szu!l*ud/LNd6-WρPǫL+Q9;=,#+5$6 TXZ/M~ƒ_+6(/]* G![y=u}P endstream endobj 2128 0 obj << /Type /Page /Contents 2129 0 R /Resources 2127 0 R /MediaBox [0 0 595.276 841.89] /Parent 2126 0 R >> endobj 2130 0 obj << /D [2128 0 R /XYZ 71 807.752 null] >> endobj 2127 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2133 0 obj << /Length 1534 /Filter /FlateDecode >> stream xY[o6~9X"QRH7u6^ltU$:UgYd),ɞ_XM;wQƝ?Z C cdQ 6Bm`y3_Mu8ưKŨu򒺆po|N^cvhCyWU{\h55V>^$0)MߥbY8kBhƲ%UZ aV8LYs{?l`m7tx{y[o7v{Ӥg, :(SyX!AfcNlJ^0g0$1fc!ױ4+ÓEZe8nYZպzxPT"e)CQ8SBI466#|H̛X'9{0\֖eii]Cޤ Y f0"?F!bt* smvsbҕnêB7Q{Ǣ.kIzYOxО(/ղiB|`rZ񵢐nNR:,9A1L_#ߑ_z/wZؘ"kn #-n![sr˅ލjwOKyx8(Ktl&W*<N(&淜ķX n,OyR{cS,xe+#hmxc7ĶfiW9=/? jk$K endstream endobj 2132 0 obj << /Type /Page /Contents 2133 0 R /Resources 2131 0 R /MediaBox [0 0 595.276 841.89] /Parent 2126 0 R >> endobj 2134 0 obj << /D [2132 0 R /XYZ 71 807.752 null] >> endobj 461 0 obj << /D [2132 0 R /XYZ 72 769.89 null] >> endobj 465 0 obj << /D [2132 0 R /XYZ 72 611.174 null] >> endobj 2131 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2137 0 obj << /Length 1307 /Filter /FlateDecode >> stream xZmo6_a`5GRuEdAhGe,(w%[R$-b6y&;ȻZ :&3 6&sd2dV-M<4=?^wiᅳuWꍤ uL':IS+ְnhty@Vm f3Ӏ;tH.*E/lJȆ "бI- # E,k>A3mLl=Ǹ/؃T/tM71 r|'t 0F&kXL]&p L :͌62au)nK\rkrt8!p pXМ9_3W *I<\&y8yFwNVB+0O`E@(s?NR'W+ha]Oxǒ8fsQZw3U`K7rJ=p6?MvL'ǩst<&ԍV|#{Q1AәaPKiAo%@<EC!vb5fXwsC~Q>5O*(ѠWaJ*/*9g?fb,e@dnY-?{VfW^VCMX%n_Z'`\tBpvT]ԬZ>/%rcd<5AR@ p1^ 'I.2UR@X_M}ϊѓܬA)SHq LjA V `Ixl%FDOod ͨ.ehS<0a+հef~D m6/LHlaC@UMb˦]go g Y& emR!i OiTs-9r0` u"sz+@(h'IFaP?FbJCLNj|M;oN7'DC1]P e;Q9`<|{D^s4}p2_#߹Q`)Π4YVChZfKƳu+R}CE(WڑxכʖhJż y;%Z{޽V(5U3Tv_޵x'X {C\ܿv/ d4(Jߕt 3cv>@K5qW> endobj 2138 0 obj << /D [2136 0 R /XYZ 71 807.752 null] >> endobj 2135 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2141 0 obj << /Length 1280 /Filter /FlateDecode >> stream xXmo6ίȴZN~D[qշڴuUC3Kݝq$ Z 9s5\4]1m iL=?PFųeȣ8:mcp7岂Ci7+D1)@٦2 {OXf[yPA4(=\%& E5dB`l;G ހU# kmtĶR&>hי(*+Х50".q`F lg2 6V~fNG-qOF6 Dx8wqGd2?H Smص}V< h'zet%5S~_*V; %Nj{奛h3)a~u230~4\s3Od_k :s? mN+f}U? `<6Ƈș?ޓ/=i. n9f0P|3y(Ghݘ*ǞésWb3MV}tfnr.Mz/?$규ķ×;BMX ytO3hG\ɬ$ia5N2}s57$ CfjڎR#4RSf qÈ(_s~'P4`'K| 47F(6bAjJ"݌TO endstream endobj 2140 0 obj << /Type /Page /Contents 2141 0 R /Resources 2139 0 R /MediaBox [0 0 595.276 841.89] /Parent 2126 0 R >> endobj 2142 0 obj << /D [2140 0 R /XYZ 71 807.752 null] >> endobj 2143 0 obj << /D [2140 0 R /XYZ 72 287.65 null] >> endobj 2144 0 obj << /D [2140 0 R /XYZ 72 287.65 null] >> endobj 2139 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2147 0 obj << /Length 220 /Filter /FlateDecode >> stream xڕ;O1{-m)DB<.Jq]!ĿĤ@JC|^AjFK 8> endobj 2148 0 obj << /D [2146 0 R /XYZ 71 807.752 null] >> endobj 2145 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2151 0 obj << /Length 2102 /Filter /FlateDecode >> stream xkoF=b i-z?\3Zm^DR%&C.%880}k3tzY`_(Gy `[fgWD>]'$%,T_{qo߱H1]x"B7N b]߾ …boߝOX_?ٛAHǐ !EhTx rni}uoߜѨg:Qs(lh4'l遘SI@[8h"Py!C\&(`9m D*A$xd0g%%J e V/^@~@joz3MYdó e"RBYw;yNMQֽ(s\zk>l!f Mѣ%7B˷Xqu4"[uRYR[iqD/ jxR)2S 0a닶'ӏ7yXұ+BR= XqUMf,8_Nh%N5ԉ l>}mq]T53eWu]i8_r"OVD m e]5d&gCa@,fyjqyo:X]bfh=@`pjdBy$4,dfcpPa\]waF7]^衏<;WׄĤd E3ytG(a-еTAOSmWɯ[R^z+3f)HL`7BѠ`qY%}_C/uLQe(x@YW G m#2FV*jc! [)퓟?y25=Q8. +.4DODȆbvG[5cY!eΩz?\:f+C:X`jgjqB3/=kvޛ" tMɈ+xJnLtmZ/h+jzU"'!&,3y(6&M֥fc;XY_VHJunJaS1 $\IZqRL`qpM?ViV,U+~@"5%p c$9XÉ)y0gT}x]%{M e,:ңB`BU䥜N2v| M[2_7F|WjMMA'/T5 9 ")1A$=E7AQ q5C\OS;uG=)K7OO?Q :_7izη/EB_5!=03/&Na6qcP1Ճ޿*K,,E{JU M pY endstream endobj 2150 0 obj << /Type /Page /Contents 2151 0 R /Resources 2149 0 R /MediaBox [0 0 595.276 841.89] /Parent 2155 0 R >> endobj 2152 0 obj << /D [2150 0 R /XYZ 71 807.752 null] >> endobj 469 0 obj << /D [2150 0 R /XYZ 72 769.89 null] >> endobj 473 0 obj << /D [2150 0 R /XYZ 72 551.625 null] >> endobj 2153 0 obj << /D [2150 0 R /XYZ 72 279.633 null] >> endobj 2154 0 obj << /D [2150 0 R /XYZ 72 181.371 null] >> endobj 2149 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2158 0 obj << /Length 1778 /Filter /FlateDecode >> stream x[o:_oƯ8IMJ)ܑЮDZC`i8<9Ilʲ_{_-A,ṈVç:]"ۿ?FR?љ]șR؈#3}lk}kaʶf5 [m@hوzu -1"eQ+K7.ޗ8;.r0Ñn.9 .Й ЏcXlʵSRQd"'oFسeraLˉiS$sl͕ GwՀ :$o3u _/&\V$y07[}dzS@&6G\fUˏHTWq^r O6I \#\Om{R<6F(RpA`q"wu;S?; 5%K 4&wC! _V?_>[s{H@r'X`2USXv [-Pvʤjtp 6{#^^B BSaMpNͮ j*R5!:J ׊?[*:8ԭ/PBg4*Ѩnk@nK4[Anf$jO ȡ <%8v!Lz <-MSS y`9_Cуˎkm%HlJ1?[Ȧh^a>Y|̮ˉ9sxo>I亊 ѭXPvDJ@>%\nL@`[tRh4p&FW9O'=Od0 e9E=Dt1E3K2Q=ĺ|t~[˕LZ*>:g ؀dPER vW2;0jxx^C .Btd*ji/iƏMI 灃/xŽ-Xh~grYњ S<(Vᝰe 5+_ja6xo2x*'ߌ Hj*yi$ .h7(~ڥTFMWJ ˉ;1 ${:3ꯔ/g1c3[iXF^zHrܞF6sXl;O?H= B*.B4xPp3DZ-oZ"oz/{4{'ZaP?m4W%ۊA{[B endstream endobj 2157 0 obj << /Type /Page /Contents 2158 0 R /Resources 2156 0 R /MediaBox [0 0 595.276 841.89] /Parent 2155 0 R >> endobj 2159 0 obj << /D [2157 0 R /XYZ 71 807.752 null] >> endobj 2160 0 obj << /D [2157 0 R /XYZ 72 603.784 null] >> endobj 2161 0 obj << /D [2157 0 R /XYZ 72 428.055 null] >> endobj 2162 0 obj << /D [2157 0 R /XYZ 72 285.203 null] >> endobj 2156 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2165 0 obj << /Length 1617 /Filter /FlateDecode >> stream x[mo6_!`"c1Q/V`"EvAXLՖ 9qnQsZ͛@d*FT4 wx UZQ%Ivj5Vd*ˉd ˟]JQMV g1ImHUKm#^_A*mdyRy}?nn+tJv"B>$A⺢ps[ĬH4rd4ޅ㱈4?`F($ Fs>!jα&+5Rʍ -&rR31'ؕ|N]KGGsW*cEYoιBG9o8Tߌ2volj,tur;1=!!yDVwl9O/0~ZJdBUImXBZ)d}-b\UEp\HvnϫDv:JdEqqZbm@ơ*K(UR1LgoӍT^@t˨6xE endstream endobj 2164 0 obj << /Type /Page /Contents 2165 0 R /Resources 2163 0 R /MediaBox [0 0 595.276 841.89] /Parent 2155 0 R >> endobj 2166 0 obj << /D [2164 0 R /XYZ 71 807.752 null] >> endobj 2167 0 obj << /D [2164 0 R /XYZ 72 174.698 null] >> endobj 2163 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F37 944 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2170 0 obj << /Length 1495 /Filter /FlateDecode >> stream x[Yo6~@u&~s CčmmKaDZ,5#@B1p8p8C!p y#q=`pυԥ`a^8nou#'sHt.t%q?AQo4uT`MڂsdD \zk,!qlўdX@ķ@7.?(.1͠f.odK$\LeH @ 5$VȩidHܬAǕ\ )AdW*=Z+ ZF1 -PSEhY◐ZTIR iQ'F+ ^(@ -x07Ayz /9Jn_jRϥVٿnQRRFBMu CHTF&T,*KguFFV4< .}2-ޗz0UeA9;nѯZm>DNtjN`ͅVM`;R R9o"4Ej@ DAdAFZEQ#V8.4ٔQ-Y8iht}@>Fu֊ <*cKkOOEXcu+uQi's2a.ݍPD,Shl0aLd pKsw7v93m%FLX8"׌zQKp;Pr!vA&;[) Gi"uY(H#"21y/ZOkWMqBSlIoS/]`ĆRJ_ST<%@$Ħ L+ , &օu BMaCh¤MOa$AK즇0X.P;U ֭tΓ_d:0~W@ϣδ9+ԃDzSoH=b %l4Ҍbz}P^`׏T# OusS6kǤ~î {3iԊ}U"ۨĵ-N$4$hKń ~XAwkao6qԽy"6}֚p'B1,UACioM[O]jv X݋Q*|س]rL.t6x(StYص]qE Ĩc{t?Qc*͋+_6HLK5 endstream endobj 2169 0 obj << /Type /Page /Contents 2170 0 R /Resources 2168 0 R /MediaBox [0 0 595.276 841.89] /Parent 2155 0 R >> endobj 2171 0 obj << /D [2169 0 R /XYZ 71 807.752 null] >> endobj 2172 0 obj << /D [2169 0 R /XYZ 72 428.24 null] >> endobj 2168 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2175 0 obj << /Length 1066 /Filter /FlateDecode >> stream xXmoHίXb԰wۑ.ҵjT=]/*KԘ[J)Z!z~fwF^cqB%\a*PGGh\]p(Ӆ,n2)<;uKV%&xe@AA qdJ]]\MG4 xcd'|~E=˳dbGZ/RFc30VpT<&?.ţ8ȟ28s5.YCemR@se6OpGlo{*V-PjC^=ًdNNgzoRz7$Obg?ŀص}B;B @R ()?*)Nuic-CvzCQ=/]1b:–X endstream endobj 2174 0 obj << /Type /Page /Contents 2175 0 R /Resources 2173 0 R /MediaBox [0 0 595.276 841.89] /Parent 2155 0 R >> endobj 2176 0 obj << /D [2174 0 R /XYZ 71 807.752 null] >> endobj 2177 0 obj << /D [2174 0 R /XYZ 72 625.702 null] >> endobj 2178 0 obj << /D [2174 0 R /XYZ 72 498.029 null] >> endobj 2179 0 obj << /D [2174 0 R /XYZ 72 498.029 null] >> endobj 2173 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2182 0 obj << /Length 222 /Filter /FlateDecode >> stream xڕMO0 >&5&!>۴CiCZ1ha]8~m~W Q߰=,bvw*v^^> endobj 2183 0 obj << /D [2181 0 R /XYZ 71 807.752 null] >> endobj 2180 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2186 0 obj << /Length 1968 /Filter /FlateDecode >> stream xkoD{Yv׻kНT]^8 *rc1Gߙ}8R><֕oyG-brFrkc+F/Vj1Nuޏ{_>z|A5d(/~G*tCN!uO4t@=9dpHPgA)CA,c$=:8)gřX򯸲t,C8 [1{ yV&fUS%./`@l"e^v>7`n2 L7oϳ%Ǧo;}Rc%8Ӹzygѝ=B:A pf|\:T{j4 մTbpO1pIϤ> `qjNbk0>QQr]EgA3c=d* UrOU`EUTc/l#_>4yi:[h`eM}6^a#6J`i/.ămv K6HMxw[V݂trJկiqGqnA[-߆ tyH3ÜȔ˥N;XP` jA v֪{ gC?b+2F)O}!˨ꎗ Q&Wnڹݔry:<5sy p&L 91<'{&C[^ xY)ޓ!ӧezsNbF] 묏qq=$25j!("YF[Q_xET͋μk&lNOn2 {>>D=ns,, 9P.o3=}2rqU/GOb _oXQLn_{}->((uo28 E/1|'%= ̍9s3u&^*(كOo9Ws~z㢴V$ .v\,_r)ȐF~BYuI)c}bRnIf|d<5賠0"h0TWJL`YTusy[`F輸 3k*U,tN[U8*+4 |^.Ug$@Hvs`ȸoꌂ$hXhs{$f#0h<> endobj 2187 0 obj << /D [2185 0 R /XYZ 71 807.752 null] >> endobj 477 0 obj << /D [2185 0 R /XYZ 72 769.89 null] >> endobj 481 0 obj << /D [2185 0 R /XYZ 72 574.018 null] >> endobj 2188 0 obj << /D [2185 0 R /XYZ 72 495.62 null] >> endobj 2189 0 obj << /D [2185 0 R /XYZ 72 204.9 null] >> endobj 2184 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2193 0 obj << /Length 1222 /Filter /FlateDecode >> stream x[_s6S̀*ɒ-3Mfr\68ZqtݻB&`C! /!%]v A7Df ĶQ3@-/V̕oĝa~ڏ ?u`IPy۬U Is,<uV? mOӷ @{>W~LToteGbuvXO]bxcF3 m\?I"HE!>۵E.v`SKh&lIM \l ׌r#JZ_݂B_W17x3eQklY8GO!41n)/N&4S&CdjF1'!Čfg*7kknh6Ӥx Z-ff ~ƹ.K̩,D+VˈYK?Y?H'>܊9zVXg=ǵJ0o>|%su뫸A;[a'4j$dLS`'hR5ȈDHN xdcx^z}rq2r=Gs8shNܛS ~3DK<͸3a)=US~o2ؾ]u|{bZsJr%m9&١llzMѠiמT:W-S[9t"Tan^G) c%ku8ޞNTvueT)t'~Q͞ڄpU0G2M a1lJ ɂX~Da Lt;g/ԍO9YhS&ىGJI?z]uC˜=0J9lp lBI z_7Ϥqe1~qɥ60]HaؖluTuR͍D(Nlr;Sd>ώI( ]EyUHEw=ϳ٩vDiS\V?J\l:^|rY(:k; ~Uk.1*0ڵr@8f L Dnʯp0?,u ׳~4L4 eQ0QX(^k endstream endobj 2192 0 obj << /Type /Page /Contents 2193 0 R /Resources 2191 0 R /MediaBox [0 0 595.276 841.89] /Parent 2190 0 R >> endobj 2194 0 obj << /D [2192 0 R /XYZ 71 807.752 null] >> endobj 2195 0 obj << /D [2192 0 R /XYZ 72 230.98 null] >> endobj 2191 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2198 0 obj << /Length 1038 /Filter /FlateDecode >> stream xZo0_o  TD; 2"PT * M" }isA3u,2<+QCN_5!BkJz#`29@PP)Q(2;Bu1/YLT;lF_M─JshgYNf7 ףT+D?a0u sm:nH,_FP5Gdb#k>Z/CpJ>Xuqoi<˂YVjnU6E&#_KmxCwTm=|Ba ǜ0?㘟Ǯ~=a7w"E b6 2*)1HCGʣ3g yM-ImLbXU][of *{}۾jf֒{;E ;xwSKZ/'`9Z 9&N7Zo nBpK\eqT"[1/JP:a18RWXm q]NbYEFjqjZ0#I_ɥlS2=׉sPd'{{l9a;T3OQ xID?۶؈L)L1dR5;}X.O9ͩIc< YC endstream endobj 2197 0 obj << /Type /Page /Contents 2198 0 R /Resources 2196 0 R /MediaBox [0 0 595.276 841.89] /Parent 2190 0 R >> endobj 2199 0 obj << /D [2197 0 R /XYZ 71 807.752 null] >> endobj 2196 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2202 0 obj << /Length 1276 /Filter /FlateDecode >> stream x[YoF~ׯ7IݓGp$U8i@ȿ Ⱥ uLsh ݄bD01Ē:!)bkU xq)g܀rRb ?Đ:v.'ՙt.1аp+k9OR~?L BGj҄¥1jJ"Tz=5F#=5My 761ū_ݧ 0#=%^)XP3-}0+aD| 7Q{~Q`P8{j2G"Q".b'kA[ۏ2&A8=elE_K9 +,#'+p9^!' VFP}l>.WT3Bᬍc?JeH%^HH{ K#FƵZidH 42:y|E#LwR{#xN5TjSKi{"FQJMˋnӕܰ1ꁖF~fE7E끖͉7|WΤZ"?@ίe9mv NtȄJ4:+$XΊY;iY3yO z.Rׅ25 i(> @uN_F+i)\aV0d}_mpP%*=*f=k݉u YCe6bJ?%dU@pSVH-oݰ( ǓEe 'KIxQ LW|Uo;Ηon:9}V*[Qc,“;+%QNnu|UfVBFݞah?Ɉ~Z߯poOJv~j'^KP6Z]yɱ)L2j?cRQ<3M1JIvZ[]3vGV "R>lPAXg&dds U*%D)e畕^USW;4)uΈ3HBnjbbs&ikpj`WB i=mญy)e[a 0 endstream endobj 2201 0 obj << /Type /Page /Contents 2202 0 R /Resources 2200 0 R /MediaBox [0 0 595.276 841.89] /Parent 2190 0 R >> endobj 2203 0 obj << /D [2201 0 R /XYZ 71 807.752 null] >> endobj 2204 0 obj << /D [2201 0 R /XYZ 72 276.057 null] >> endobj 2200 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2207 0 obj << /Length 1966 /Filter /FlateDecode >> stream x\mo6_!`*c1MtKti%.3 fboZr`Ee;qdv"";'l\x]{լtB=GCye0 b!13Zu=é*FɐGI Fс!bn0okr KBaF13eD]ʡqY5׆*\Cv<f\lߏ!hg 9'eOMx:]'C.mHhJ:J[u&a8U*G c>ԙi#,*ۼ?Q5>y hs }΅s2 -"9S"v{ >Cl}[mDw9l9oK!GHhԫvvTL;dk0i:9&> endobj 2208 0 obj << /D [2206 0 R /XYZ 71 807.752 null] >> endobj 2209 0 obj << /D [2206 0 R /XYZ 72 539.071 null] >> endobj 2210 0 obj << /D [2206 0 R /XYZ 72 162.342 null] >> endobj 2205 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2213 0 obj << /Length 2226 /Filter /FlateDecode >> stream x]o=B@_d4fI;mkn&oYشl$y3ʶd%Yǎ7^p83H;;N>2v2tN$({ȹq.^_F݇ jr番|~J:ӪYxop_N > NnG3//k`2 9W':VT1q0f( Xă 0j N̏L,m5a\M>[Q.3$][(FN҂| sCvn( ȹ15U aǏ6 @Hz$`H`!^?#euFO|Ň/0%7x-, bB}!nbRmMCZME޼yӠRi)2S 0E77`"u/L-n,H="܄ަpzⰣG;dPߣ"z䡣XjQ`!EgX [HCۿ~BY/$F =<Z! z HhS=9 }AKJhg>0ǽ~ ;A0U|ٸ LD~֙}E5QUjr~ϵg{iѓ͗i'x BBx,{gWYv~݋[S0HFY+ gO❮]+=cT;n 5NuIOj>贪1FBOKmbH0  60GakjpҹI+-KqaFN,ɬy^-<ac] [²PVVHoE'j8%2dw$cS{mPia;J54Nz&~ϡ!nNw~@ P3< k+U+ a"ʖԟ2emH-asAM2j^6݉/0wzӹ-4_f&[zZv$BON G o+1D!)r^QIĊ6ɮ:B Dzծ}d] 7leZ貆zN#|meBSq?i-Ԥo-][ x\9^l%!\"WL7=h=\8Ô\9 dbfW8GZ?V'tN۹Po^m\L(e|Bi-huB/MrL`\u@fMț}1q.~n U^xl3]xh /sqkڃy]7c拸uv%Qhul?I~ϠQEr^^:}|8wܾOWABzPoΏ> ]ql<CA-}q/RWF@-ܮxjE]yHP,㼬g2'=:A(aD T-'A1tq"h]׬mn" endstream endobj 2212 0 obj << /Type /Page /Contents 2213 0 R /Resources 2211 0 R /MediaBox [0 0 595.276 841.89] /Parent 2190 0 R >> endobj 2214 0 obj << /D [2212 0 R /XYZ 71 807.752 null] >> endobj 2215 0 obj << /D [2212 0 R /XYZ 72 560.566 null] >> endobj 2216 0 obj << /D [2212 0 R /XYZ 72 376.699 null] >> endobj 2217 0 obj << /D [2212 0 R /XYZ 72 358.766 null] >> endobj 2218 0 obj << /D [2212 0 R /XYZ 72 340.833 null] >> endobj 2219 0 obj << /D [2212 0 R /XYZ 72 320.843 null] >> endobj 2220 0 obj << /D [2212 0 R /XYZ 72 302.911 null] >> endobj 2211 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F53 1173 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2223 0 obj << /Length 1046 /Filter /FlateDecode >> stream xZo<_A*َ=I[׽>O72 [qXIH$:z}^z7iÂ`ʷZ aC8&^8grtfB2F2f-ʮ2FvīQT|!yƪbl9{(h֌xWr6}Bf/ !~kL̢޵8b~a܄lx!9KN [D͖d8pԻ+ir=Jk:¥h,?$8 f yR}\U1Bcj$o]}xyq$frs=)|%S|MI&:h9lrs ́N7d6P՗`?Vj?ʽwM{ZG!B|S?钼<ٕWx aіTm+-ɳ*KYK$uFIh+SFhiLr*\W^ЍT(А ͹{<6Y6GtG`E^&R;F󬜣&il m)?0o5 ~7ur]nc* 5n+66ńP [VZ)XX&lV?*&v"g iN} endstream endobj 2222 0 obj << /Type /Page /Contents 2223 0 R /Resources 2221 0 R /MediaBox [0 0 595.276 841.89] /Parent 2225 0 R >> endobj 2224 0 obj << /D [2222 0 R /XYZ 71 807.752 null] >> endobj 2221 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2228 0 obj << /Length 741 /Filter /FlateDecode >> stream xYo0~_ {__*mVҴ卡*0h$XiITMwçrMoF1EW$b$2rpJFOt37dfwdwTR荇ga#@KDd Fc S?#@&jID"e${3OJJSDJntMm@h 2nv!QSCi4m(쒚[ lHٓ N #d^1ݝv|ܯxDeWNVPyC=HeiN,}:,:o&,M%76I' o8ی׻$loI8ukGqtn= 2c*XUFRP`>:d6)dzUoLnߦQVp UR\[?4 endstream endobj 2227 0 obj << /Type /Page /Contents 2228 0 R /Resources 2226 0 R /MediaBox [0 0 595.276 841.89] /Parent 2225 0 R >> endobj 2229 0 obj << /D [2227 0 R /XYZ 71 807.752 null] >> endobj 2226 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2232 0 obj << /Length 934 /Filter /FlateDecode >> stream xYo0#Hųv&]'MZRH)S ZvsPBJ.w}0'>jNxuC(D #HG/_MЦ۹#z]8Lt09EAFeNscQ#h@hII0Cg¨ I8!ˇˉ}∋)dP =E5S Ea8@%*FclP}8cRi J,.("3 A{:3z'Z }f< kZ b(JR6<a$PYvf=ܤ][DA_l> endobj 2233 0 obj << /D [2231 0 R /XYZ 71 807.752 null] >> endobj 2230 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2236 0 obj << /Length 736 /Filter /FlateDecode >> stream xo0W1H/H۴V4mkyc &6%NJ1' m'8;84פsG 'Y* 7>6ZͧKo ?,}$cu{P hI3? = _Y+5%R1ʍF{Bn2C%T3AVԀNG 2 pD;A<: -ɤn JyL֒YuKe 5NOkfKl1 e8vT@A{_@iƳRJl ĊXݮpW(gT#?JL[&] ia&rcx~ Oβǃ*>{Pc ͚WfgA8&c/i|=+[ ]h>R];o7hۄ5y)Uv&9QO^&9YزW)NS*!Ja:*}ο>I8e!{Gd3DIt[O_vR][b j7@y9TGڞ쟠ZAPquuT@w~*7^@aJΊFYхhxM4*};5{ޡx?n]9Gg$zf~ĠʬmWƅFC}KwN'( &҇SSerq~ endstream endobj 2235 0 obj << /Type /Page /Contents 2236 0 R /Resources 2234 0 R /MediaBox [0 0 595.276 841.89] /Parent 2225 0 R >> endobj 2237 0 obj << /D [2235 0 R /XYZ 71 807.752 null] >> endobj 2234 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2240 0 obj << /Length 1743 /Filter /FlateDecode >> stream x[mo6_!`_d,HJ- iMFĴ2II-ɉ&nIw'cg`]n돷;8݁y"Fys}=9ݡ!wD?$Ktٱ:C~ht[qB }ĢйN{C#/έ5v|F H-l%8~Wp BKjX5Py>';1k\S# > eDr.-ș*c`F|`# ˆi;.O RM7).bT"P;_TM^+f֌BçLor(8ڔZ h /Th{MMnAJӕ/uU'ZDE5P_ɍ8e'.ˆ{cH8;)ޛ¬x>|#?Ps %R'B:g8zӫ ~ ŨQ-FÎaUR?_FU*Had"(S'J` e w6}&mk6)/u*֏\Wi*$"0|)I V'Lj+PNJu4U9GgK&I㫻Xؔ4YA&[yLjrך4[ڱ3=iݳ]wWbn,X^ըV%iٴ`.qo$Y k[s*Ix,/CH7ޔ%Z*lcoF ?Y?Nwvu0sD[kg`vtmHƪX%_z RYs)Y 6+MF[ȃ D llJmn%mjy"30K6v K0Y&@["`RICO7 <7mAz`+fHg@ndd&] 9 1|$ɓIeˀNa0rq6N"Ij)B^5-`UP q$&L$?C ij<ErЩq rv'{80SidFZ ^إD7M-ՆiV/藉Z nB k(m]7ŎrU, tƢQ>B⎇iu SڙuJoOKХv(#Ǚ] 933&{IdtLp61r XyPLv2M s˩{#{GU^ߐ،"4&ڹ0VjO6E B8d^"aJx.6r-&4-pTw-g`*-1;X[',/^<XnȠ!)QeG"FGAD1^r,Ҧ2F%o7~ŸK +9/>JBDȫ}Þmg(W:O=8a_9\-~OQ 'گ~0 Eva Խf>2RX K%> endobj 2241 0 obj << /D [2239 0 R /XYZ 71 807.752 null] >> endobj 2242 0 obj << /D [2239 0 R /XYZ 72 250.756 null] >> endobj 2238 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2245 0 obj << /Length 1478 /Filter /FlateDecode >> stream x\O6޿"}Tk=yvHc0nҺ 威Jiߓ8i6Ҙ6pq,ϋ'Xְv 59&5ޕfQrllZ_??<>ie0/bȟdݙ;#ps6⎥]ֆPUÈ9_j jPƟ th_pi#0290_n#hg lB5[qciڱ]u&dQNTop QfȁЮrSm`DmMj 5Ը!Ҹ]fX?KExq#'.&X9-و -[#аM0r^'7#˲#cs lHY#& #^A\%Gí C~bٙhxH2"J7hX~ ]HŚOΓ%8UM(9(ĤMPVʨ+wCFV,nvb۰g{כ-sz~xtM|*bѥb^p'|ɣU~?w>S7x"NZu-a x7~h̝xvDT<3“o3ЩjLE)/a̩ ,t G!xqQ, ĕ&04)ףYf*ϧ<7nbt! t:\NJ{F=ȸMmeh>1AY`pĘU/Y)4Pdi?í -M~ PBoKr!YfBd:vKp#NĊX&&iTGvuE~KU`1@lU)S4 y;!9q-n]ک/$AV[\e=O-Q-o HPQtS:2,i[ĿB& LQ::a*tRb#g>QWWa$\jp2+Ě3ל9sIs3WC >_ [>a[)WNVLûO֌Gg-O[Vpve0u:[o͖_w#_ _Id:[wxWIGM e?*Dzty3艨}p=z$ ;ʼnAI▉,l7ɑeϥ,nOpKP%vS C9-Z[}f:7 1n jZKeұzmFoP1uR߸&mfx?a! endstream endobj 2244 0 obj << /Type /Page /Contents 2245 0 R /Resources 2243 0 R /MediaBox [0 0 595.276 841.89] /Parent 2225 0 R >> endobj 2246 0 obj << /D [2244 0 R /XYZ 71 807.752 null] >> endobj 2243 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2249 0 obj << /Length 1531 /Filter /FlateDecode >> stream xZo6B>TbQb-n"MyFtA3n;-ɎJĦhw{֕o/oo(pkuc.">b>:klQϷ?`ڟDr430#pyhw4< gǍn[gaW-D=ƑuSv+ ΎrȮ\,|=`E^ (s:lqaO1[j0!y:j͑ca WBgfRsj`Q V y7}F4[.t%E$>b_cD uX"QRU@'NS,3iŒ _''E"_O??<9}Nv]mN\\R{Y.3VWgPkr ~ueb\SoKTuL ɳE;3!`4v8yn; )ÏELΕiv[?MQ"'"6jӫR02VK2d]OK>&L 35TVӱt CE͖:qߢ$eD^XY<1ug!Df=ȯ}j/mB>)F"z{Ujx$U:[JԹJԦM0`|МAԡ+Eax Dldl 0MRf?GS endstream endobj 2248 0 obj << /Type /Page /Contents 2249 0 R /Resources 2247 0 R /MediaBox [0 0 595.276 841.89] /Parent 2252 0 R >> endobj 2250 0 obj << /D [2248 0 R /XYZ 71 807.752 null] >> endobj 2251 0 obj << /D [2248 0 R /XYZ 72 162.69 null] >> endobj 2247 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2255 0 obj << /Length 1573 /Filter /FlateDecode >> stream x\[o6~ 9^DR ]t)ֵs gn$|lKE)QK#g1jD #+DσOgCk$\"ŐG :_?~򜷟dyq;8.Ggx_tGAB+t1 GM̵ G͑+(fJ }!+doÒrbtÈ<QŊ exz4k))v^j9^<;LrYY~YVrWh溕b367m}i8ŽqxKr?ѿ>.QfZ@Ü.Śpl~rbd?9~v2S <;<{UXyg ?}3z&Kn۸/.V#'YC^Wyy;?x}^"wr5@X+R1"^k;OBPs4SSMc9A2LAQB W`$ 90wU \kku^+#'^}_R^"|4HZ$a?imVIZVLOJbK" {ޡ8ZP ZFҁ.n-Fx, yo 14zO58J;7 <p9dTI|ӥ¹O.QWw endstream endobj 2254 0 obj << /Type /Page /Contents 2255 0 R /Resources 2253 0 R /MediaBox [0 0 595.276 841.89] /Parent 2252 0 R >> endobj 2256 0 obj << /D [2254 0 R /XYZ 71 807.752 null] >> endobj 2257 0 obj << /D [2254 0 R /XYZ 72 685.276 null] >> endobj 2258 0 obj << /D [2254 0 R /XYZ 72 345.918 null] >> endobj 2259 0 obj << /D [2254 0 R /XYZ 72 193.103 null] >> endobj 2253 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2262 0 obj << /Length 1340 /Filter /FlateDecode >> stream x[mo6_o㻤 [bkbӉ [dukN"jljdYȻ#ޝ"tqg"{)4"9`39,:8XgJϴ`Io4iCA9 H ,=ሠ @sEHH|>w萲MIdR_nqď_D%iF9ou˜8 g `x"(+WFbOJHPs*L`)o zj}S`NTϦ=h^Ato+RT r3d]z/AτzY؏z,3IEn$(\ ̯bE9RĒq19n*$\ʐ`9n"AX̒XmÄ2]H33‘FӵWqSÁJ˕}4$E.O h( cEwFI;'1)䇔wŀQ+mcm~w߀Rרt(PMRn1tHF^=Sb&8$+ tP ¸.A%,oz[@v'kj#U&ތUnIh ?}7xc_U=eŪ,),@s%HHdfK&KupˮVD@OtԌwH|,uEU=]-5.=>۫oeTe8z1&d6kUܸ'phGrnk'*91bEdOg>U%1FRw L*ЊG_ rߎ^&:afo! ,MLobrh/Hc&Elus\͵\%mѼًh Oi>[W(Ty8e=e9.vd'U'`6zM0uTub_ɋxc+iu Qs 0$GϪu›eg\,T ʆLCِ 7:8 .嚡{!Ї˸,-RYbmwx x=fybpw}' ZFlYZ dp:AkUri+es%M(͛1KQ*A@KCR&2B9vwAxS Ylw"':մ,N)@>zY6)$5MA@42]u9Ru/ endstream endobj 2261 0 obj << /Type /Page /Contents 2262 0 R /Resources 2260 0 R /MediaBox [0 0 595.276 841.89] /Parent 2252 0 R >> endobj 2263 0 obj << /D [2261 0 R /XYZ 71 807.752 null] >> endobj 2264 0 obj << /D [2261 0 R /XYZ 72 744.207 null] >> endobj 2265 0 obj << /D [2261 0 R /XYZ 72 637.405 null] >> endobj 2266 0 obj << /D [2261 0 R /XYZ 72 298.684 null] >> endobj 2267 0 obj << /D [2261 0 R /XYZ 72 135.304 null] >> endobj 2260 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2270 0 obj << /Length 1518 /Filter /FlateDecode >> stream x\Qs8~:I Kf^/w-dH,Ǿb6VHc$ϚHj/`E[ iWN+)Ap%s_s+2S(zOc3w$hm ^Go>"̫3N|vF#րO!kUY/h& jSI~2s'rPjHFQ [`CݴJ4p+`68lpő|<&{X5h@ >EAs1#C]ѵO ŌrqbLc!MRXV+E K1 BS08*a i)AUK2!sYv X[M/|JM"J \ M'B 0{*ӌ_sGAN]1?\ |]^䷭?T|8KbaNE4(}Gi:;%LXTaKlp f2V3s1{.(q oxϥ%epIǭxgyI&ońQFaXʗoz{g&QXo׾T\DV*jK! $p=2?Lc#a )a܏aMNc͸`F endstream endobj 2269 0 obj << /Type /Page /Contents 2270 0 R /Resources 2268 0 R /MediaBox [0 0 595.276 841.89] /Parent 2252 0 R >> endobj 2271 0 obj << /D [2269 0 R /XYZ 71 807.752 null] >> endobj 2272 0 obj << /D [2269 0 R /XYZ 72 718.153 null] >> endobj 2273 0 obj << /D [2269 0 R /XYZ 72 367.082 null] >> endobj 2268 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2276 0 obj << /Length 1496 /Filter /FlateDecode >> stream x[mOF_H$_SNrpqjCU{gvb;$`=^?;;;tzy7pl`d&^!ML d966GC>{,tÛM2LğZv.R_,0鍇; ;t( GEh Big4&GD0wl55EY&gdR~k ȦMʑe l4G^)(HM, ) ; zRSJ(!,ρ#V"kA0utHγ ij{)q)d -Gz}0n.gn8;yr9/tlZגtEiA>REz8Znerbf;؀՝J.I`hK Ik1w ,NiWEF U=MOa~r}k  +Zc6o+ڬ2FFƿ\`&6p뻛epj8j.VLP*EȠ4i3lK4>(o[Ш/Ԓ+Q.{t٤Hbnd,,eȓwMddG7f*N"*oz%H7q *`ݙ]-'I/TA F9FѲ ЍHe-A3u󫌲Y03I6Etk534e4`3زòhZ]3ulG0mAL α-ǯԒhꄐAB<=4P1HL5q쥧1VT/IzD?IUeasJb%D ٖlN6r;Vȳe/&&7Iױy`DCKO$?./(4@7 хdtk HjrwW:q4>_> ܔ2:@Z |WO抄y'G=!q!\#̆Djc1wcyK9 r,X6RƼ:L"6+&;e whWG^$mPed|dk|斲nx{ij>Zd 83W#0P_adOȊJ^J2I^"Q7y“ aa^. NܨGL^Z6 M4lALPlFd0NLc0IEV2YV d~x"pecxW|vMV>jegQ)Kmj|5r?"7*r~.Y'\]2ū9 endstream endobj 2275 0 obj << /Type /Page /Contents 2276 0 R /Resources 2274 0 R /MediaBox [0 0 595.276 841.89] /Parent 2252 0 R >> endobj 2277 0 obj << /D [2275 0 R /XYZ 71 807.752 null] >> endobj 2278 0 obj << /D [2275 0 R /XYZ 72 702.213 null] >> endobj 2279 0 obj << /D [2275 0 R /XYZ 72 414.961 null] >> endobj 2274 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2282 0 obj << /Length 1407 /Filter /FlateDecode >> stream xko6?@G؊eha]oa(k%W~GQ0(< Xԑx"Þl4 Ð㹘M4|9fZ%_Dira`7*V~ |itmDAԐXzZG9A?!r I1slD=1I f6ט6EL7{(ŞN1q7ZrFh6X V %Ze%**k6󓥞_UXVqHw-/9ml"A&@:iRM7Rhfl׷*34F| J .3LKjp2+3A^N\c*߁kȢfG?!P_Bj{hn>{[9Ǯ͛N;bny%8m-fcFtv XX=P˧ Į{5)L?v|>^' l=oUnKfPkm,] 䘱qKT:~٘֝:_~.Hq_4uؙs;e܀>FjK1@*ܨ6]$qAɣGg+--lԤHf6ne#6H&`G3% 2$<*#Ak h}H&Ol4\H3k™BA=ܹDlA *)rIlQ%P P^O/gKLxebJ-Hyv@!ͬ@z=Oeb(.wCE}63&DO*C3;gl6oV]zL~p<ҧ iˎ0Eحyýfdc<ނaߦi#zGt> endobj 2283 0 obj << /D [2281 0 R /XYZ 71 807.752 null] >> endobj 2284 0 obj << /D [2281 0 R /XYZ 72 769.89 null] >> endobj 2285 0 obj << /D [2281 0 R /XYZ 72 709.57 null] >> endobj 2286 0 obj << /D [2281 0 R /XYZ 72 635.337 null] >> endobj 2287 0 obj << /D [2281 0 R /XYZ 72 360.252 null] >> endobj 2288 0 obj << /D [2281 0 R /XYZ 72 360.252 null] >> endobj 2280 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2291 0 obj << /Length 1263 /Filter /FlateDecode >> stream x[mo6_o=J*ْ&.KEjd޺QlIvD~I2u;lY ?k ߁0rj+rۯ]] Q}M>Z}"w_k?k_q\vHWQMW2+uu$Rsߔ.&gV}޺lppN[gmcV;mj. Kz.N=ƉFU!h['uзS P^fd /js➚ZPW'eV\5skq]i B Ïtn'b/r==%Xf'&B_ (AMw4`V?Fa(œLz,Nעts ͍iuB T$Q: z@0XRlCʥfH_RImfv΅2xy[(\xl^ŧX# WQt:<^{a)堌HIVb@ͳc.k\Z';'y2λ/>n\c]/]z\f/5ElA԰y͌}DI˧~lV8P[D?xFJGbEء2 rg0^9VR 2Y&WɫivHbXy xH9#W FŰo]{Y1ծ\*:LbOXy\U\e*9C*^q>7%Src.ʧ>kx5??/f 믜[\N߹\fJR8Dhqrcܦ;|o A endstream endobj 2290 0 obj << /Type /Page /Contents 2291 0 R /Resources 2289 0 R /MediaBox [0 0 595.276 841.89] /Parent 2295 0 R >> endobj 2292 0 obj << /D [2290 0 R /XYZ 71 807.752 null] >> endobj 485 0 obj << /D [2290 0 R /XYZ 72 769.89 null] >> endobj 489 0 obj << /D [2290 0 R /XYZ 72 611.484 null] >> endobj 2293 0 obj << /D [2290 0 R /XYZ 72 542.508 null] >> endobj 2294 0 obj << /D [2290 0 R /XYZ 72 424.484 null] >> endobj 2289 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2298 0 obj << /Length 937 /Filter /FlateDecode >> stream xYYo@~7@ ۝݇H=DD`C8RBYր b!3~a"x^斄4\zNLh#(__y[rc]hڏ;yY-͇`TQV_P#%U!~иa$BaT|rGK }Foj)dmAV0R\1@Xrv#B:@,kICj\*CSQL+`B2I-qĢkV jB]]44=)Z213D@H2RFCz zTݮ_K%`vhHP+`}=4>2<EcԹ={%-]Ռ-#&A•{j-d~҂%cPmV>7F#&DLɤ (ʟԁچ9cfyNr)\IL I-)SS#5jna@EO`( (n{ZTx}{ QoGAzqT[K~1]<]Hzy9APE<͊Vrߍ<o'B6"ye->^BuPSj$o&%o&hO%}-5f>> endobj 2299 0 obj << /D [2297 0 R /XYZ 71 807.752 null] >> endobj 2300 0 obj << /D [2297 0 R /XYZ 72 714.552 null] >> endobj 2301 0 obj << /D [2297 0 R /XYZ 72 573.938 null] >> endobj 2302 0 obj << /D [2297 0 R /XYZ 72 477.16 null] >> endobj 2303 0 obj << /D [2297 0 R /XYZ 72 400.051 null] >> endobj 2304 0 obj << /D [2297 0 R /XYZ 72 400.051 null] >> endobj 2296 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2308 0 obj << /Length 1840 /Filter /FlateDecode >> stream xnF]_7SٓGH['qI J,6tm#wfdW5 ;.ez{1׀z Hrpz3(;TKO*Fx{ ~<87{2TJϼcחގ?_ir&GI $fzSћCd{K]% n BY@*]7?*8$o?h[T[F \E ^l ߿lZIV5  k *"x(<ሇ:+$CFGh936O ֊PD$],)\~>aAYVeec%MbeTBc)K?MA^iI[JPj#++]"KUʿD T)c,(LSdgMY3'Wicrnn_̲ij&nPF/9Wi $U~=TҹɭȚ̩:f/ .oqP) ³dgMZw9=)XHbaȹj# [z""^h&T˧lY]ERٸgb7eoK/&FNdd^粚eEYfg{iOP">IE+Bpe1P4IVl9ѥ/ݻXP0(]mkNMkL$Uc<ͫri jt~Tesb%ȸ7nt,-#<,4Iر쩛I+8|Axι~=9ZrČr 8Pۀ-c^hY5e_Lbn5$@nAMR%VNUea_g8;zpҝD/pKF`RV!93G9ZX^cO_e6ťt`‖B`EGPhS$}ILtgLʟy_Jmj'-p$)T独Jl V}-X I#e앂Bj]f`p!v V4 87w͖gXgÅ N*-oiC PINV;g#0=17l; "eYXQ,VGᎈq8BD5MLKM _VxB•pԛoqvYaHSB9t07A@q&zG55ZX0]\"E`)^g߬-<-pW-+)C `9FLn/ֽE[تs'{ H{)urw0h{&g/+'%׫-&cSHl|z3 U&{,}fMn܏}'[?&sG?(cr?&;ՃvIfQzG|XYٲ$_/#[~-fqłtntvqAX;0܏7\x@${6>9EDw㉒niE@0f8x_ endstream endobj 2307 0 obj << /Type /Page /Contents 2308 0 R /Resources 2306 0 R /MediaBox [0 0 595.276 841.89] /Parent 2295 0 R /Group 891 0 R >> endobj 2305 0 obj << /Type /XObject /Subtype /Image /Width 222 /Height 80 /BitsPerComponent 8 /ColorSpace /DeviceRGB /SMask 2311 0 R /Length 314 /Filter /FlateDecode >> stream x+PPB+@P!,K8ڙtdyOIn_M&l$|>F!4M*vi^z-˲dWz<K~wYV~_Dlx\,""T3?nTD{g3v̢(C@IoJ2`\.y:˥&HӴgY־-@`NlӉu:^D:hiNu:qi8Z-td[p endstream endobj 2311 0 obj << /Type /XObject /Subtype /Image /Width 222 /Height 80 /BitsPerComponent 8 /ColorSpace /DeviceGray /Length 2441 /Filter /FlateDecode >> stream xmlwgsqGIP;qBB]i45f!aIcl @Bhb4H4Ԗ BciIg񝝜^&M{UHZ֬!+v,x%Ygtҩj(A8Sv{+כ czE_I\n7?A-[ p4O7j7MW\VՁkt}^n%D<ڝ~Ln6E\ڝ6b NAv=y ^ꭾ/eYvkpxWv{פUk5^ԪSո{۸9+l@Eh74U)Zg@ ] bW=|h2y;ϱFJ Flg2x`8a9K˥7™ 3f*v8^f:X&&UgO]ﯹ|:53{g:F2p4crs]I5P:MG>Xczէ3U.]=VAt4? ^[bTy:JZ=μ-5tdަn_FT1͎ږvw:.F>}+6?fg}{ߵ\w7{&=xg]{x8spJ,@x0~DkcQY/!\{k)S(!<Ůo/GZklfuז_pK_,^;R;Foc+_sZv:swNO}nmEc -:QO 4󩓃fO,ܞʟ]ԭ#'Μ]dz,v!ubB8h+ۢCS'fM㫇*O>}49<?q- + MfC@{dpd|b|d  T?ݼ}DzfoMSgщ}~שd/@RO%y!Ţ].k]"qr>\O􀮑?Tuď%mPkc&0ZîԶAlP&z*P2${h@ j=.+245CuQHqi1]5~Y ƋA {պL( V[3hZ#:&6{f.ص7z&ReuJPW̬SvE ?(?jٮFpP맿__JC_kaLSصb$qB(Bu7 Κq;xvoqZ/E6^x7w7=VtBHV0$0^U:i`m;#&P-3z)WAp徶o=S߉4{ /wNewz7V[w~f@Z4occ|9tj='/d%>;+xAMZ ]Z/pU&qNxcӏ.]G|؁HKCB2:x ۞uS=pzfb VN"z׹kl~>pgt\<⾠KWw.q+gH%x,C!кM}&RKOtvoC'=`LSk$S^LoomR^.J\KN(h}[BFm@&.#{кL'wx)5k}-#Zpߛ*SR}cGRS֋JC*p> endobj 493 0 obj << /D [2307 0 R /XYZ 72 769.89 null] >> endobj 497 0 obj << /D [2307 0 R /XYZ 72 611.174 null] >> endobj 2310 0 obj << /D [2307 0 R /XYZ 72 530.552 null] >> endobj 2306 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F37 944 0 R /F51 1170 0 R /F52 1171 0 R >> /XObject << /Im2 2305 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj 2314 0 obj << /Length 1894 /Filter /FlateDecode >> stream x\o6Be`fIԣC t:^AXtՑ2Yn wQ/IcB<:Z~4={}+ ]k8HS':wMru,L!/dk_,"]끞s[@8(?,C3+=o)5 eP!߫(G8'4*f †"ք$ϥ}TO p:ŮIFi@Ke-'t={V3 jFLS%O>Q8`T3_WjERaaR8Oy~Ğ1Q4=Zu(kX2$ rSU7 QL.(8d4-U&6umU)Fxi \pвg3#^U# jiTnd-})1K؅[G9z~ ib&},)3h'pRp}iF{~b%]ȧע4KubeZ-A\{9}#q`l(l!>t [O>gmՇ3;F2qz>$v&'C뙟;z|?ksvIo{%BJ_Wڏ sAQ G4=ny|s'c.3`.3\vli.D b$wK""a)0BFf`+x&hu`L:Iʰ.TX(t&WEiEU|1oJЌ`k EF]E +4aEh"q"%8C8f{Aޣ=c'k8}b_.k˺ؗ?u:;=^uW'bX]c 1p1 J8栄2|vdy*_ l[5q?MV.qh\傗'n|s7QZJRcPWu$60evTx7|l+)u]bz6R* ;ƴ2@{Hq LawqeίwB`g0j 뭎}F/k:ô@gp38T~>Gӆ!Gp:[ ?rd,ӄ - Vӽl?tvsn0SC/[͛CyK">m.; 胝+) "3fE9/+ד:/=_DZV?(>7&A endstream endobj 2313 0 obj << /Type /Page /Contents 2314 0 R /Resources 2312 0 R /MediaBox [0 0 595.276 841.89] /Parent 2295 0 R >> endobj 2315 0 obj << /D [2313 0 R /XYZ 71 807.752 null] >> endobj 2316 0 obj << /D [2313 0 R /XYZ 72 769.89 null] >> endobj 2312 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2319 0 obj << /Length 1016 /Filter /FlateDecode >> stream xYoH~_oHT Н yU86`gֻNb &3;kJ.%/O=!\ɌIHɔo^p(xLjaeMfʸ |jl24`hFBTt18;dW#ZP8#owW^7@h&HTF5DABL.JDJNOcmrBJ4!kXP`1YJG2ӫ8pzkrS>4=?q#[Ob8ༀZlI"c(1 b9@YrƝ.H ꣶڒUԆ}|z$>$צ.Im! 켷#`G4(7rtfp_X/Y䠸TBTH+ZoI1-3 ВjmUafRliŐy[{oҥXeِj{b=J<&܂$Ye,Au(Rj]p9sh}Eff=5Qtn<+%YKnH~x[+ endstream endobj 2318 0 obj << /Type /Page /Contents 2319 0 R /Resources 2317 0 R /MediaBox [0 0 595.276 841.89] /Parent 2295 0 R >> endobj 2320 0 obj << /D [2318 0 R /XYZ 71 807.752 null] >> endobj 2321 0 obj << /D [2318 0 R /XYZ 72 713.566 null] >> endobj 2322 0 obj << /D [2318 0 R /XYZ 72 441.04 null] >> endobj 2323 0 obj << /D [2318 0 R /XYZ 72 441.04 null] >> endobj 2317 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2326 0 obj << /Length 224 /Filter /FlateDecode >> stream xڕN0EYfWu5T$i cj@bfW;lZ7D4| h\nnU>ȳY}HNxRԧ-"U3x:"źF=\tY>WV#{^Ocgkd/?kF3 ;gSk2Ue[InT73I+m4HP@ endstream endobj 2325 0 obj << /Type /Page /Contents 2326 0 R /Resources 2324 0 R /MediaBox [0 0 595.276 841.89] /Parent 2295 0 R >> endobj 2327 0 obj << /D [2325 0 R /XYZ 71 807.752 null] >> endobj 2324 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2330 0 obj << /Length 1300 /Filter /FlateDecode >> stream xXK6W(5˧) miM>+k6Jr#[^,R8!-a' qĨdꚑ%$iD:(ͩ#7/DBRF""QXqTd$W/>yxv^/^v\Q"D4P`=[Ld1/qsgVj%HR)ؽ|}s[cwF\8& j`DʥF q>▕в[duV1$a44eʉLV@^svH9a u*)Ǐ;Z8GmuZj h5MaL|Fa?FQ-|ۮ۱ F%jFvu-liޢUӚv׌k`v*ӡy݃fE~Ue "iBx 7݁]i[ Nyڢ ㇪Dqf[XDvw@<;b;VҎc?jH'D 9`rj? endstream endobj 2329 0 obj << /Type /Page /Contents 2330 0 R /Resources 2328 0 R /MediaBox [0 0 595.276 841.89] /Parent 2347 0 R >> endobj 2331 0 obj << /D [2329 0 R /XYZ 71 807.752 null] >> endobj 501 0 obj << /D [2329 0 R /XYZ 72 769.89 null] >> endobj 505 0 obj << /D [2329 0 R /XYZ 72 573.542 null] >> endobj 2332 0 obj << /D [2329 0 R /XYZ 72 502.628 null] >> endobj 2333 0 obj << /D [2329 0 R /XYZ 72 484.695 null] >> endobj 2334 0 obj << /D [2329 0 R /XYZ 72 466.763 null] >> endobj 2335 0 obj << /D [2329 0 R /XYZ 72 448.83 null] >> endobj 2336 0 obj << /D [2329 0 R /XYZ 72 428.84 null] >> endobj 2337 0 obj << /D [2329 0 R /XYZ 72 375.042 null] >> endobj 2338 0 obj << /D [2329 0 R /XYZ 72 359.166 null] >> endobj 2339 0 obj << /D [2329 0 R /XYZ 72 341.233 null] >> endobj 2340 0 obj << /D [2329 0 R /XYZ 72 323.301 null] >> endobj 2341 0 obj << /D [2329 0 R /XYZ 72 231.58 null] >> endobj 2342 0 obj << /D [2329 0 R /XYZ 72 215.704 null] >> endobj 2343 0 obj << /D [2329 0 R /XYZ 72 197.771 null] >> endobj 2344 0 obj << /D [2329 0 R /XYZ 72 179.839 null] >> endobj 2345 0 obj << /D [2329 0 R /XYZ 72 159.849 null] >> endobj 2346 0 obj << /D [2329 0 R /XYZ 72 106.05 null] >> endobj 2328 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2350 0 obj << /Length 1405 /Filter /FlateDecode >> stream xZmo6_o㋨ kKoY`kӋ'Y_Hٖ%sZx<>;w6> ގ?!Ϧ15Ee80nOWGq͟~T b~ɹ]HP7q㏃ǃQ-=ǘŃ[l h`<|*6,NulhGƧm*# S9RG&a1 Qs,%a3 bxY \aʵϊ0kj =t[y6Z U(%h!\-+c+f WI&zFˆLl#r5)Ђ Av !Ryf1X,K&r&rr͇ڛ"1$ܼQ~)6W,b音tr[pX([MoLBv RI +T XUmلB?.|5.eIؠCU:ڶ%[x=[AL[nv-~|&֑̉–ؖdczO...:dYҳZ(Y7,YlBHm7N/"iV4&,. T+ښ6UFC {QlX@ ī ٭rI&,MM^dDkeWTf5`~ k! 1aY E_#?a^kDf_.*-oK y弴{m ULwօO;LԴ]4QlKJ"JWrAˠj8M3?-D!8AY|.,eV Hߛ'#Hn#<=M责I|(+TVFTaYȲ4wX0L F[0tڜJ}V.ut@*mjbp eõs-EQ-/fH4u-kr$jlSپR=+w!I,,gڇ$a GxG2zp$[9R(RDuvuw7q/̂ppe8 dS7Q!H0ueia3M-+hK ȳ죧va> f߳;x`M)~A0)NEn"vMtP-]<,Y@EI^>IݥExU,DegJ獮*e{'TڦSr_Cm8Gλ([;򿌻q> endobj 2351 0 obj << /D [2349 0 R /XYZ 71 807.752 null] >> endobj 2352 0 obj << /D [2349 0 R /XYZ 72 732.377 null] >> endobj 2353 0 obj << /D [2349 0 R /XYZ 72 450.47 null] >> endobj 2354 0 obj << /D [2349 0 R /XYZ 72 364.302 null] >> endobj 2348 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2357 0 obj << /Length 674 /Filter /FlateDecode >> stream xYMO@W1tf?l/V*$D Ā8qPi}YCbH-hHf4~ff!#Sp(B0h|C&DJsq|z |r!'hL'{v(BO}6C ,Bm`d'@(M?^)((ߎp}.C݂ !,!57h=K! Z0fbBAA>S5H̫qr -g1 B6XH*Op-10%ibA#*w]ܙ/ 9)6IH/YlpW"Ҍ6.A 2O8sEez,,6u5Qr*1_pfݧ V-MVxXEXB^77!׳h2$20u `j.]t\&bz ^\[D^^UVKzF;tCw/TQ* ^9Y{{#GnL{&rΫa{^mϫsI&j|KRB %k}Rjƞϖ@,6/d~EgH8/ږ UWfyda@fQ  DgGYCﲜ2$TA:?  endstream endobj 2356 0 obj << /Type /Page /Contents 2357 0 R /Resources 2355 0 R /MediaBox [0 0 595.276 841.89] /Parent 2347 0 R >> endobj 2358 0 obj << /D [2356 0 R /XYZ 71 807.752 null] >> endobj 2359 0 obj << /D [2356 0 R /XYZ 72 334.811 null] >> endobj 2360 0 obj << /D [2356 0 R /XYZ 72 334.811 null] >> endobj 2355 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2363 0 obj << /Length 220 /Filter /FlateDecode >> stream xڕnA E RpPDJ}}0Gv62Xrft\غef8qj[\@y BW2[+¢9A VjAilM0~^/?Ϳ$VRrf2ѡR鰗 ˁa.ں;.+.>{kDjP endstream endobj 2362 0 obj << /Type /Page /Contents 2363 0 R /Resources 2361 0 R /MediaBox [0 0 595.276 841.89] /Parent 2347 0 R >> endobj 2364 0 obj << /D [2362 0 R /XYZ 71 807.752 null] >> endobj 2361 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2367 0 obj << /Length 1569 /Filter /FlateDecode >> stream xYmo6_u"w1wI&ERgk CGde4;-ɩņ-ɻ=wy &޴pO7Pˑq*Q [c0oa4;e8s >R*B[*4rr%Ji\;cpN|8TeAttN%5e)KP _ٵXN'v|(p((E,7Y/Fϟ_ [j:ك) A!2)EGᗠJAjTKКg$aMR`[!a1焚 .*0[r挊eז%3„T(9WRͳqu&kXO J[J+08<YXIt|콆[ZTE  NFSD=!|^ѕ?ڶ{p7plm q77t!T NI™1Z9p;լW"8el$5Qn*:׷ysV%JAS-G~cީ IYܫV^Gao}͸Pt^6&bs#m0䧽EPSۆsW1Z"Uv~P.WU4HrU_״ew?bnTN&< ^-ɅZ3Y(v$ÞmԬaN5G!+|)1D*#Xr?Msƞ-dy ,8H0E=Bc?wMil eQ:6WtOш N*"\MGO#dn/wӓ?O݋Gݵpts=4)fLH; :J򿀩~k̃R{GpdIV6Y.y_W~WJ (} 잞_\<=tyNOR=~,=> Yƍ+=஻E_U8=s%@H"҄b1ƿj endstream endobj 2366 0 obj << /Type /Page /Contents 2367 0 R /Resources 2365 0 R /MediaBox [0 0 595.276 841.89] /Parent 2347 0 R >> endobj 2368 0 obj << /D [2366 0 R /XYZ 71 807.752 null] >> endobj 509 0 obj << /D [2366 0 R /XYZ 72 769.89 null] >> endobj 513 0 obj << /D [2366 0 R /XYZ 72 611.174 null] >> endobj 2369 0 obj << /D [2366 0 R /XYZ 72 508.699 null] >> endobj 2370 0 obj << /D [2366 0 R /XYZ 72 265.719 null] >> endobj 2365 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2373 0 obj << /Length 885 /Filter /FlateDecode >> stream xZmo@ ί8i_@+rIUkHʚFHPF8)J 7I,tf CZFTfY<ǻm`w{/푌o(vPi~PceAզQsBAL+.}4 4$|=og3utԈ 0ȶnҘO0QdJʲ@niLLDjEq0 mjؗ R,=I= @b|Za8Q&V:Qg-I|#}/0O/DV20p ޘc* GKI,mzU*딆G2m|RUFr~qR~t|6+J N/>Ni)XŠtbv໿'o:ޠ30iBfHXR\pU)~wnpz}ߎ6-z?tm ? :#)kcyПd([,dՒ'+Ǥ+@)`8ʋ\0q`h2QaBv\~m֙=|-[!6a~2a9?h9?𜟕aaǥFa |)~X{QVb#1s!?lKʏ(pi.\ Ai#n?MOͭOqSO?żCO)?V qU_F4Oݶg]؟@!C^Y7t:> endobj 2374 0 obj << /D [2372 0 R /XYZ 71 807.752 null] >> endobj 2371 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2377 0 obj << /Length 744 /Filter /FlateDecode >> stream xWko0_oMb;v!1`ЉTUx!"8}lQ[4iS=:7a8NS[̹@wRn` {Q"Wfuq_q,2~Ať.L]H|yWh֬Y}Ǥ6(օZBeuxk(zzzzrY4:,VmQ){yvN{N!]X֕(]D6ȩ LM#{ ZPޭYͺ2ri4ݜ @ YOEQE72iE6ȵ L}_ endstream endobj 2376 0 obj << /Type /Page /Contents 2377 0 R /Resources 2375 0 R /MediaBox [0 0 595.276 841.89] /Parent 2381 0 R >> endobj 2378 0 obj << /D [2376 0 R /XYZ 71 807.752 null] >> endobj 2379 0 obj << /D [2376 0 R /XYZ 72 507.931 null] >> endobj 2380 0 obj << /D [2376 0 R /XYZ 72 507.931 null] >> endobj 2375 0 obj << /Font << /F28 896 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2384 0 obj << /Length 219 /Filter /FlateDecode >> stream xڕMKA +r6fyJ GVzXݪ+wرKOI^7C&{,[\Xb ^WSv^^?,K.fx폓=Cj>R R+1M@k&8ub%h:x:F!;ţߨhd{ݿĚQ).Pʻ|8ʳ}s{ e0O2{d>?vPC endstream endobj 2383 0 obj << /Type /Page /Contents 2384 0 R /Resources 2382 0 R /MediaBox [0 0 595.276 841.89] /Parent 2381 0 R >> endobj 2385 0 obj << /D [2383 0 R /XYZ 71 807.752 null] >> endobj 2382 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2388 0 obj << /Length 1328 /Filter /FlateDecode >> stream xX[o6~b^DJ[t :$K E[MJt$iw(R$yDw."A DϿ{Q1I]&4}B Z WP< }m;>c> p D9r=) =Nf_/GW/j9u1w%뇜c.2j]\ qFG;u%-s{R%IXʹU倂`|]E*f/bxm+9Cɱ'.ô-ɂЧ ęj(CڀDU%?!%ʁBn;>:NqYޥNęNL>Œ2#Gf338V8JUh߮lI$i=΍ ᄰE>ED%v1^e@?˝Bwb!x}ڛLCpg<Ҩ; W8 ]Ɯ8[ºw oRzaIo/FKS$JכD;Q@ZݖG&=xc4n0kA>ؐ(!:gXQZ38[ERPR)}[8x7 X׍ bU?‚@=c[mJCN M9 3לsފuz~kC\- 쭊*v[A '''AVl3 MX(R`ߢt3Ux{m$ዬix`gogzf>z F0j?27)ZMjfà8QE.&w7 zHNCs&WWW`>$I5\iY %?`y/o3> endobj 2389 0 obj << /D [2387 0 R /XYZ 71 807.752 null] >> endobj 517 0 obj << /D [2387 0 R /XYZ 72 769.89 null] >> endobj 521 0 obj << /D [2387 0 R /XYZ 72 611.174 null] >> endobj 2390 0 obj << /D [2387 0 R /XYZ 72 508.699 null] >> endobj 2391 0 obj << /D [2387 0 R /XYZ 72 188.612 null] >> endobj 2392 0 obj << /D [2387 0 R /XYZ 72 128.227 null] >> endobj 2386 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2395 0 obj << /Length 1514 /Filter /FlateDecode >> stream xYmo6_mfI}lA;4 Ŧ5Ir(R$9  dJA~y\af6X"!sbfO80z^5b]MdؼV}S ` UQ%Ėz0"hg`s|̱O?DZc lC>iS^t8JgYXeZ0fn"dK|.1F~m_^]LD!c£"T7mÄҪoZfQN8ZJ 27ۢfUMaFu;99iDn:$N=x?MXCyɕzTLao>SŌzCS6]A ?DZJhDDzB 4 %;7m&7t>YRK5Ե],lj.20p"a*/*W{~fl6 :¿Z!5-fcl2Avy}1@<%zƉ,95C&|.}Tލlo׾Xv9Zt(v3TMCwN5׽bFi5_O)'}J\m8U8I w뒱gXdݠYP@N_m^2H-Gco+!ƒwa:&Y} L!< t*jLG qL9ljR6f;wA7")=iPOEjiQK&ƸyHIӒE6L5 L_\7 [|i/-~!#/{~f_^Dah0͢)BR5"檁Vg/_¿7(POZ͝Qu5DCCy$rܽLk cOy!@(d1n !eݘ7XR Bڇpz}X'*RLdKM盚Y"9psyp7?{64?;h1 BYAH#׀~ʿ,66"uOEh4BYrBN}rA˕<ʻe8W;Վ2VhM薉+z~҉z bq@q\ eLf>qP endstream endobj 2394 0 obj << /Type /Page /Contents 2395 0 R /Resources 2393 0 R /MediaBox [0 0 595.276 841.89] /Parent 2381 0 R >> endobj 2396 0 obj << /D [2394 0 R /XYZ 71 807.752 null] >> endobj 2397 0 obj << /D [2394 0 R /XYZ 72 769.89 null] >> endobj 2398 0 obj << /D [2394 0 R /XYZ 72 683.602 null] >> endobj 2399 0 obj << /D [2394 0 R /XYZ 72 589.508 null] >> endobj 2400 0 obj << /D [2394 0 R /XYZ 72 531.28 null] >> endobj 2401 0 obj << /D [2394 0 R /XYZ 72 378.028 null] >> endobj 2393 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2404 0 obj << /Length 1817 /Filter /FlateDecode >> stream xZmw6ί>@ZP%KpiI h!aĩm_+K$`4[ON,^?z|HV.+ JXҩ &haH5Ue0V*Afqq0O?c7𫢮x9#*pLkY2α2#2TAС)%,% /QKYMU1t nn"h41a*FX* ic=[C&$k@_-2hzm)hfT1uw0"bs؞j:ƕvpy .S'KfqPk#YO9'aL-v\2mz> Od0:u fw/}U"V!vqxdXn{̉<$tty2gap9S/Lcu$#C%#&U"FZ`5<i\p lZmujJz2YlEAYq2vX8G{]KNd!:dBJeӉZ:€N%rKÏ$UЌP0 Sl:{puH,^=:aS^0à^b-ưrEdo\f9Y1Ll%m9 (?u )fEg#5"|~%f:[ϲsDby,zV ax+wNoMq7Nk: k5YC/ǽ{YjuO|DbU OUfEXmN,NZqտmtVuZ],5aƛkahs \]F*>\}C?I' WÐ= kuh5_3tU?njznt~k:nttz7nGxa%76[Vr1ݠ00EIE4GgF×:oVH <[vgJ;0HąUV D$ 9wé!\f%[3Lꌾ(⽡jHX|&[rDn#oaoSۼg_s4Pj*ۆ,c!h9 l/ɋ=nc8A2VI{Z^B k˧`bBxf*շڡ/C#462؞Eb}}!~őj*fYD P endstream endobj 2403 0 obj << /Type /Page /Contents 2404 0 R /Resources 2402 0 R /MediaBox [0 0 595.276 841.89] /Parent 2381 0 R >> endobj 2405 0 obj << /D [2403 0 R /XYZ 71 807.752 null] >> endobj 2406 0 obj << /D [2403 0 R /XYZ 72 615.783 null] >> endobj 2407 0 obj << /D [2403 0 R /XYZ 72 427.103 null] >> endobj 2402 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2410 0 obj << /Length 1398 /Filter /FlateDecode >> stream xZmo6_+b2KR^5@;ERbщ:Yr%9NlKIR0"=w;1f0fr2xZ$+\2O/d?_?Q6]UZe;V o>N&K15Ce|pvjԜ8Sp̈ D_@v}rxwF  "}z@0gqS;E (|swGWȹ"[k6Y`HW q]6sm<.)lTEyvbRYX/OQXeWձ^zݻzRl̨[ۨǜ@ZhFQigk_\gZdyô@e{1*,`4K ZnWm{nX{%[?}PJ;6 iƅzFn8g/*޳5"ә{4v. _Q4Ixև0<S. |#-8(<[ԁ:T6zP!m$Y>yϥp3onĐwcR -\+:E@=0@irA9-Wz!r2OgQCPlQ0*ɳ+|J,jqߏy8WPT3+h`:n KI6<W1Se7eKhQrP_d2DžA;D%̜͠QYs~|ʘHTgͲ\Q}+`>jNu 8-Z|DٜGzbF#]ϕY2E00x0  ,̸B̈CT8]0!oW81 q8jC xn?:FH (;HjdyJ-՞Z5Qg$axDžw wkޚ:zbF~;o%,2]ˋN) 0[@U'ΜcS-VA*Zh'61JkYrG6ں?تŨ X5V=٢-Ffo&U7l߻E'^d}p Ҧ~ \Qs>>c#C[Wmٝ1%;cHc91~}Ż{uS}]>WaC Y0gl[-TXO:\κ l`ǭ|`zoܚ߾qk~ƕ%P^κ l߷_κ l7no߸ܟ> endobj 2411 0 obj << /D [2409 0 R /XYZ 71 807.752 null] >> endobj 2412 0 obj << /D [2409 0 R /XYZ 72 570.392 null] >> endobj 2408 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2415 0 obj << /Length 367 /Filter /FlateDecode >> stream xڝRn0+HĬ8ڪTDh!7&EʃJ:8ޱwvv{@x6"c:c>$p 8w u |}Q ks5]X6|mit,۸ͪreH mOiPCDAR-BA \uae8=EBZ$}KV7< $yz:JZֶ@4SW6+o˦h ldS]48`3GQ -*Vq 4C 岙ʋqMez*:Qյ}˱ G=E/b,eL,fe)s×Zkso2*.7 endstream endobj 2414 0 obj << /Type /Page /Contents 2415 0 R /Resources 2413 0 R /MediaBox [0 0 595.276 841.89] /Parent 2420 0 R >> endobj 2416 0 obj << /D [2414 0 R /XYZ 71 807.752 null] >> endobj 2417 0 obj << /D [2414 0 R /XYZ 72 769.89 null] >> endobj 2418 0 obj << /D [2414 0 R /XYZ 72 733.405 null] >> endobj 2419 0 obj << /D [2414 0 R /XYZ 72 733.405 null] >> endobj 2413 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2423 0 obj << /Length 217 /Filter /FlateDecode >> stream xڕn@{-m)l[&"PQX@6sDjwG8|,8t40Y,le^=MRMwe=6u(B:8*Oȳ#%*g`ݰC)p,sj@*dtkXwƯUoOH_qw%IKu(D.zy).`M\ǽuؿjO. endstream endobj 2422 0 obj << /Type /Page /Contents 2423 0 R /Resources 2421 0 R /MediaBox [0 0 595.276 841.89] /Parent 2420 0 R >> endobj 2424 0 obj << /D [2422 0 R /XYZ 71 807.752 null] >> endobj 2421 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2427 0 obj << /Length 1408 /Filter /FlateDecode >> stream xY[oH~W@7vH*-Yj `7SQ6{3mR-&g|!Ո^IE.C"X0W0 =&HH~jO|+Pw+1[WP)Pw'gǗV>_NB1Eاfid=ZzWխJ\V&T+砜K,۾8ObN : 3Hq.Lijnh(`<(,?Mmʨ}KʂIIZ6Q0&˫L00; zBJS3cOEA8l:^/FYsa2wtcq<ңfSL!\;Q,HorH[4o6cFD:^|u|*7onC]PpV3Sϕ2!Q0~Z #"57(+ʑD A}>&r>%pA'lLA E5z^f1h'!>)yUzyS؛㬤])x e~ttTb9XRû4C/\}iƔڧC^gSYl7҄k]ٱ^@@O;uiÅ1'[Y5LIu0mu4 "hyokN4le+,mjoF㰂 t&gPɃԨWZkS1GYfy6rOxCO2 zwAvkW}q?=oc@yf.0 xC'.ؑ%v ySqJ*p|6|| J[ve+Ϲ}o&JG2 ͉}"{ڞ }ыf{$ݚƒ^$V^4IGk x[A4 4XPzj '$'BKZ2I6,R^D^t[.Gf[`ؾG<'Rf bd337c k|kFlw>_n>;ﶮ.OZճře2e{q80j/!`FK^dn{V6 Q8z,R_"Vq/#H`"Sb*h:boTAwwWW/5T08wz:ٿM}+WS Oi%)k{[~x@l/$`30oU( NQ2 . endstream endobj 2426 0 obj << /Type /Page /Contents 2427 0 R /Resources 2425 0 R /MediaBox [0 0 595.276 841.89] /Parent 2420 0 R >> endobj 2428 0 obj << /D [2426 0 R /XYZ 71 807.752 null] >> endobj 525 0 obj << /D [2426 0 R /XYZ 72 769.89 null] >> endobj 529 0 obj << /D [2426 0 R /XYZ 72 576.385 null] >> endobj 2429 0 obj << /D [2426 0 R /XYZ 72 475.757 null] >> endobj 2430 0 obj << /D [2426 0 R /XYZ 72 320.053 null] >> endobj 2431 0 obj << /D [2426 0 R /XYZ 72 211.074 null] >> endobj 2425 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2434 0 obj << /Length 1503 /Filter /FlateDecode >> stream xZmo6_!`lc1Q/͒EtCDlyzYERd'-i€ER)ljyqNEE-c|k԰]11]/j;o0f_^D#6CK|Y#ܿ;uM]ۘ-:l̡sC09AԶם_;X "#ňZLÍzr sgaԖ3"̇c2~ӹz`?+9xqH sl ҸOAǽhg", COy 3?8Z{Ȓk~\I߃`Fu1Ig4}9%b@# G斃,w\?nwa^"!VyL$򺒚r^δ{L9xąNoZ M&%~C20-rP>]zzFYv~iۛ37l(p]^)VU34ƍzoA([UUWL]bp-TW6c㧍(N8p8LCp0!T4TzvϳPg.OMnQ[MrԭA|^r&M7i7W˗Ϧ~Ϯ߾<=k mI9jCλ8H!lkTJ HJz۲Bm-DhqF5ۛtU8G̩F':f L+R`j@ V`l3;F02>D('VYXMeЈw}L*KJ| bF%X,ݣobAR 5=OL198 -Y{oS@VR#>7-{'1N endstream endobj 2433 0 obj << /Type /Page /Contents 2434 0 R /Resources 2432 0 R /MediaBox [0 0 595.276 841.89] /Parent 2420 0 R >> endobj 2435 0 obj << /D [2433 0 R /XYZ 71 807.752 null] >> endobj 2436 0 obj << /D [2433 0 R /XYZ 72 769.89 null] >> endobj 2437 0 obj << /D [2433 0 R /XYZ 72 528.802 null] >> endobj 2438 0 obj << /D [2433 0 R /XYZ 72 376.382 null] >> endobj 2439 0 obj << /D [2433 0 R /XYZ 72 73.121 null] >> endobj 2440 0 obj << /D [2433 0 R /XYZ 72 73.121 null] >> endobj 2432 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2443 0 obj << /Length 1420 /Filter /FlateDecode >> stream xYYo8~v"[Rh.u܇"[8B,;+H_CR%ݗ4%|3(FR^PDQPLAڹFQНJ@ww^g!pB+$)@!}|s?u?[v*0~_QqQe} uN+w*8jls0)`弜k.%ޗ7wW7sNk fn}F?y$^Zϲ$/#jTx4͒:Rdr7MUHh#@PRPQJATpj)53&LI+UW"0"- XKB&Zq7"T.N_`WZŒF2<O'N bc7(`]U5a 6( Apц&7D2x}6-raLM )n#U"Vk;&ql8Ml@Kz`8sXA3g:뿉$E&?>tB@B@B˲=SV"8'2,eH۱N,KɼOHqS;;w7fKwgnٰTuifFU,ۨT?Bgo|4PR:g$=v d2 h􁖒H{=l,<+/P 1WT04`n ƼtdF2d>(I81+vI:Ln`"#̠fڤ{:+]*iWOrUVz~ȖY[t,A-{t,*!![S$ÂF*5=˴ s$Vk(W4mJ{I,,d.հUl+;y+ DadՓr?W]ЃdM8*t^H\ ?2˰ew5ONC+Ѝ{e(,>V5*w uB{=Z =6JqV\[M 7\ͮt{aó%qQb6?4_ ϗE\6E*41ƫ>-#Ut`HiT- M7w^&??nX~Swx.~,Ty<ҋBؔ,GLZJOz!<38$Uoe#I'o&/ ^ 'W?=;`k6ɡGmĢ9SOaXv>ѡV8+`0b.v.wtT;۬μ6:4D`o6YyGeG uߥ$QXA SZBhԶ/\$' endstream endobj 2442 0 obj << /Type /Page /Contents 2443 0 R /Resources 2441 0 R /MediaBox [0 0 595.276 841.89] /Parent 2420 0 R >> endobj 2444 0 obj << /D [2442 0 R /XYZ 71 807.752 null] >> endobj 533 0 obj << /D [2442 0 R /XYZ 72 769.89 null] >> endobj 537 0 obj << /D [2442 0 R /XYZ 72 549.708 null] >> endobj 2445 0 obj << /D [2442 0 R /XYZ 72 468.777 null] >> endobj 2446 0 obj << /D [2442 0 R /XYZ 72 139.546 null] >> endobj 2441 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2449 0 obj << /Length 1514 /Filter /FlateDecode >> stream xio6}I:5@%bӶPD-~)ʶl%U=zwzƫ^ ljP\d͛uMySdG<X/n0bzo A bc 6\A DиiUbȿtl@fE61 fy.% P2 b(4UƞeCE:rb̜aN1E]jcW zCؒ,t1\0mƶ)}rrVbta;%QEVEH0P++@v bXg@0yq2TpQ02bIf*+]% @RHS> /n$I)!K >T\8KiFcǼ`/&E|$[[P䩈e 0Ħ1-dy& akźتz.x&^w?^^v<;ywzvA)CѭtWBЩhC>,^#eXɺ1R:GZ}*}GǛcw]ܝq031O}<N"0k3-|"$ڍcP T9$q&D+0(ǣ?nBMmz"a#QC` u|\0{pdTKοORb[$_tJ5%WM#1f\("1_^vtn'հx}bL_E&PQ'W'ۅKso:xO{IQLˬ!uuK*>()i+KO^$s]i&^J/RI]UA_ Ԝ[j+lנeYG^t/oOWkk ;o/} ]b<}VD}!r0<Hʶ"C1*CMu89R>EX菷9Z̰^EeZڵd+dS̐'kOW]!`FUmbd1$Ѵ>u.vij{\ Ғ! %KDAUȂllS! :r؝O AYL )F^ӲAf*1nL>*| !Ŵ(nP!(EpSϚ o8E7eD^,I0œ܃Zt:"yyCq$IFK`Z5!z:Q8O5> endobj 2450 0 obj << /D [2448 0 R /XYZ 71 807.752 null] >> endobj 2451 0 obj << /D [2448 0 R /XYZ 72 235.961 null] >> endobj 2447 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2454 0 obj << /Length 1067 /Filter /FlateDecode >> stream xZmo8ί 휴jW:]7.^wm8f?3g "CvfPCj Sth07}sŴ q6,FڱR4OۍDfZ`jԟ4:]0 Cͩ&HHV0_ RK{%_~(qV+ʑVk"s7(+, e)A"hSXVl!&y!5f?qN,d=G`fn K X g`JBdX[sS vT[Ww[x {|x7 ᵩ̀6`ZI& +|kvdK>O p\ve! p1L&6)lhPu$#`B:R`qRǑDްڜëYxq[ϭϷY,;01xWtd0g?{ö*α7q= ~Kmvn 3>p@9Yļ< F%FJs޺Ec$z8Qܟ$g~A8!h661u2^U!O|)nJuW1SD\ Y[oӹtp%SX>KԬu< wh>c8P&onJ195PLqйI7{7ۨ\ v> endobj 2455 0 obj << /D [2453 0 R /XYZ 71 807.752 null] >> endobj 2456 0 obj << /D [2453 0 R /XYZ 72 253.292 null] >> endobj 2457 0 obj << /D [2453 0 R /XYZ 72 134.596 null] >> endobj 2452 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2461 0 obj << /Length 782 /Filter /FlateDecode >> stream xWmo0ίGgIMkJӶ4߲*I"%~g $Y4몭oWQͱ 1/jqA1Sst}H*EWL[2ƒFHIc +DL\4^w؎koJn  t'r+V lXzuE1Z\k+WӪh *,gbA5ܩKsxsa5a8J1+Aj$ 0>QԱ8$tr6@b:!%X 2q́m܇cJAb"+)';r!|xK !<@;,e2LF{ln{kI\qV 0.9ceAPMDw8 )M7Riiij^eE/n$%Ff'E,Z`0J4A,2zt+I*uzo*N!?a endstream endobj 2460 0 obj << /Type /Page /Contents 2461 0 R /Resources 2459 0 R /MediaBox [0 0 595.276 841.89] /Parent 2458 0 R >> endobj 2462 0 obj << /D [2460 0 R /XYZ 71 807.752 null] >> endobj 2463 0 obj << /D [2460 0 R /XYZ 72 675.559 null] >> endobj 2464 0 obj << /D [2460 0 R /XYZ 72 569.558 null] >> endobj 2465 0 obj << /D [2460 0 R /XYZ 72 569.558 null] >> endobj 2459 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2468 0 obj << /Length 1452 /Filter /FlateDecode >> stream xYmo6_o廤 IPdڲM,z]7 Y07O&2'wDs/̧#U`IS=x“?8p4%}נHG砅cSJ3j\(GBA@ʭ=.&r5.e$ԗ88xrlRaBiE& t&y7 |'-7X["/(M"qBppNOOL@9,,n(ƽ_S8i}C\=k^Ax{4 gq'Idguy@f4.ZvsD%9[Ct~6B6ٷMcVHK.]'±}Խ2-J  VWّ+`mպ -߾/?.n[I.֍vJimMҗSSRRg_v ͷ*~+ro_N(&z̻;w>}hg[K%U hũE'ww,*^vb&{.TssMl cZSom.װ_,}+pe֨@5]? *E3YQ _S(a8#'1z"6Ċ>r~8P[敞lܔ O+J8hPPc}egX<صsч[u0'9((ѧ#? 6}\oy]u`؝awosDd5; ?AZjZ0ۺvC;[A8(%KGDn,gT_%Y4R> endobj 2469 0 obj << /D [2467 0 R /XYZ 71 807.752 null] >> endobj 541 0 obj << /D [2467 0 R /XYZ 72 769.89 null] >> endobj 545 0 obj << /D [2467 0 R /XYZ 72 576.385 null] >> endobj 2470 0 obj << /D [2467 0 R /XYZ 72 509.565 null] >> endobj 2471 0 obj << /D [2467 0 R /XYZ 72 369.624 null] >> endobj 2472 0 obj << /D [2467 0 R /XYZ 72 128.896 null] >> endobj 2466 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2475 0 obj << /Length 1239 /Filter /FlateDecode >> stream xZ]o6} XőIQ` "]tI޲l [$gH.Eʶ$ǩ4(\C+MAz_~y/D1 Ect??t:p}>6q2ZyQ2c8 \,0\]|콻ۣ` j9FAcv}+!.(fr{*E?"S8,E#b7D ^P!V1űhvlgW}L(ݴ0 9 d+t7VO&\7՜YE Ȗ${0pϐ}xxXVlqF>)-4Kbs0_ґXlqk(/adA, d۸ԠTj uw"lӝ]n*5Q4aڽǡlR4Ymip4|}0rV(&5,񲔵^}Wlh{ DEITnN/C[E;d.!QN[ӓN/Fw0f{BfGa. N7*1[bwsnF _VJU}me[09[ōk!bǺKfI \kg~J@\b!/h{;C '4 ˓qYOAiq#ۚ $@'d:SsLw~ڊE͢/ SHQCrNd*> k3 %ӝ' K~Y)e&ڵDž4 Lh~' (}W@W] 8 L00C3|0 ׾iam[u>q=X-1pN+3]"L'I:+]-GdǷ&0Ʀ0k)0sx |` % R! xXQVǼ]inyiG3' s8/&1ΤڇFKxDj*70˃<{Ԝ*0Pkiey4ȳQ8/颾!'RsɹV*9}z>L8˂M1>[K |̋R]Fe".?$·^APg[)mN/euo 1Xla6@nKBۊI  endstream endobj 2474 0 obj << /Type /Page /Contents 2475 0 R /Resources 2473 0 R /MediaBox [0 0 595.276 841.89] /Parent 2458 0 R >> endobj 2476 0 obj << /D [2474 0 R /XYZ 71 807.752 null] >> endobj 2477 0 obj << /D [2474 0 R /XYZ 72 466.492 null] >> endobj 2478 0 obj << /D [2474 0 R /XYZ 72 247.924 null] >> endobj 2479 0 obj << /D [2474 0 R /XYZ 72 87.129 null] >> endobj 2480 0 obj << /D [2474 0 R /XYZ 72 87.129 null] >> endobj 2473 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2483 0 obj << /Length 1782 /Filter /FlateDecode >> stream xZmoH_b鼷/յRR)M.V"\ M;`viz*̳Pl]Yzs~E,Zȡ lEJ,D]uv__S/cq9"0t5Y?_ ^.or *)C {'zsjHPES sܚ{U^|:5ff`bsD1vvxtSlZI-(,ՔQPze}l"_Yzpi ➋-eWC m8'-FIJj˔6>„ԷtСU[9lp;E^uXpopЇ:4?^HŠi]%Ay_`l4678],Y2i1m,c`e#pGZ0γII~#zii9kI8k9|woLdm_`ڣYZpA4(-G kG=kKm- ]3$F| #tMY3_ * ~k@.*ÉW?BRMgZlpJyEc|ķrˈn~{ >CSO&ȏLT/Pee~y*CDs *D:-9R2R76``K*%(2: QjZRi#xm6٭Фw&rxJZKCl;kCpYw;O VVf,ъ)R0gߊZwײ)kwԎh-I;ɸXy3*z=PQIk}?a ocL'I^Wq#u<˜];dZK ) ~[dUz]$ e+lEO]>>Rw|yn?QX: Tޕ8}&Ɖ$JFӋ2˃HecMH@r(YX@1odKΨ&\G&r!2("TupHMBbQ23_f2AN P5h 7&_x+ #1è0KF  䕟o/L Dhz7)> yآ{p5i\"fj ۥU:C`\f\ܔZKyU S5(|퍘tX> endobj 2484 0 obj << /D [2482 0 R /XYZ 71 807.752 null] >> endobj 549 0 obj << /D [2482 0 R /XYZ 72 769.89 null] >> endobj 553 0 obj << /D [2482 0 R /XYZ 72 516.59 null] >> endobj 2485 0 obj << /D [2482 0 R /XYZ 72 304.132 null] >> endobj 557 0 obj << /D [2482 0 R /XYZ 72 188.877 null] >> endobj 2481 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2488 0 obj << /Length 1861 /Filter /FlateDecode >> stream x\oH_ai?dvfQ4mSmlR vo fme !ƪ̛{̛*_mxMuwX1,߹:;=Ɔyyq&`<؎`z$.]ߵ#W@@z[-D 5@,COZTZ^@L5Q46t+WZP/˷)ʺ t*Nf&5&Š tM4VȪ B~XF Z҉4 0L+\]K%*0,"})JTuAW^#hOۀ yZx8OahnJ:jPȩj* 3%ˆJ},"쎥4)1X7SYx[ SJ3$R[Ae"PokcՌh> FػuZń5]2%vжjtL:<" qzj'tk=QZQ4UM5&ᜆZMkxTD"M ^ zH)>Swnf1~Lȭ9ή|vL8i\Ӹi7q.!R3RMtM6;^=(""{ B؄␖9 ;bP1BvA=s͍sl0eۤ-3[uQHdjusL-Lgcdi$a}Fg2{?Y2s;'JN*ydYYHJiUȩnidI,rYek`uQn碹Q]$ߖ)5jʉ eț "`,KdF/Cu(q3R$.aE'?9d},\RuoRPV͕@-*u&ʱIF"Ҩ{L?[`0WӁU½PλbAMLPc _w7gĐxSTPn9' I%v#JXOIx !}I"߼&ߘ[5#;i휲fhVlRtU4S*8e7, )J8gH_;6˚A!N뾸sJ4&apZS&$˲j-]MC/v1";&B{:i,ixhY8gͫ:52 @Tm_MZհD6t{&mC߽uND5@u!ObnCPh Z}l$]KnaZcc!lH#xHHx"Ac #h"sA3'xF#hO>9SOp3'h&K'N9Ac)#@O#XJU]oZЎvܝf>} Xs̭p¹=dJnX!q-)NJ@@* GQs&=k\UgLE*ta{VlZōU`Έ Ʊ>^zW/ON-eGDtؾ:ׯ;-[̰Ckl[b_^盲7,wGdtF<\'.`|z2f[NQ~sÑIur=tXY ~Wׄ3H\65V`K}vQ^#M.ҞNֈ~J.~hv^^ U|vaBx-cS3vҋt@qG!f]D:?2B/ endstream endobj 2487 0 obj << /Type /Page /Contents 2488 0 R /Resources 2486 0 R /MediaBox [0 0 595.276 841.89] /Parent 2458 0 R >> endobj 2489 0 obj << /D [2487 0 R /XYZ 71 807.752 null] >> endobj 561 0 obj << /D [2487 0 R /XYZ 72 533.988 null] >> endobj 2486 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2492 0 obj << /Length 1045 /Filter /FlateDecode >> stream xZ]o6} aa tI؋jE$+#EZd/-Ս[À,R2/. <ԆBR0?p_G'q/_0 ,1g ZMo!C -dOE \l8@~[n_אmژǶ](Z,.{ ۣ#WCD׆զ@b 8`yѤUsk ڦtk~YMumy#Nl!e\0bxN֍]LƮ2a0K㧳8e9% .en,^pi -ci_ܳ`yA@h㸚s eܳ,b7174Ѳ0ir(_V1UPXG 6 {_õ>t[E}[18 e웴_#\Up;!pA\uWդ+ܥ[]WiWLWL> ޮy.'ﺇ{ȻJsx@,M?]ѝHo>i:.~m-.TPµW쬹(^h+j&-4x6j!l+1 -lu]p_Kɓs>K7r TkI_HtV+ tZJل¡'&j ncY^E®4$Dyk=BLEkKvX]Q 2q7w1*>S!(^ syG& C,*F)'Boh+x#=:)7NXĆpW )˄I c 0QaaڐB !d:1yVL+).x<;hl7rM q 2'_y endstream endobj 2491 0 obj << /Type /Page /Contents 2492 0 R /Resources 2490 0 R /MediaBox [0 0 595.276 841.89] /Parent 2494 0 R >> endobj 2493 0 obj << /D [2491 0 R /XYZ 71 807.752 null] >> endobj 2490 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2497 0 obj << /Length 1598 /Filter /FlateDecode >> stream xZmo6_o#)Q/Zڢui/h%Of~K:mp3y |Sh>Ű{>dڰ)Ĉz7x֩VMlt;j!3fCq1N|T^gS%^ U)ɟ6ԥ5" 2щe\|m8c eyEƩ8"$ W]#Ԅ{F6ah?{-5cFkRCHIlb6M1G|Sm'5!c8!0n=ܧ<8UJر[TWfN][YF YUَKMǠ zH_Z#.Pi/y!ǐgƚ'8x?0JAZ% X3<WyV,KI)] n;Q0C e5-"1fՈG܌[2r_t_5]۰kZBfP)_čgۣB/6 VTluLnߚ\c ?rׯ@6VТYS'n /;fj>=xWʰe-ܠ.I$k '`%^ߨƘ&-:u${P7K, גCo.s(RW$t>}$[f\ pqHvze+VPpMVDI8Uةtn²}%_I^YT&& q8K mDԶ.]z@ëCZ֣7ݳ'=% پm4eV9Bp}l#-ny ֪,l=͞SP 6<7w5(ze)B`? ^ YZ4]2Mŭ t-p]( AL8eԇq\O=:ڤܩex<ϖ+uٓXm ?|EX'&05q(t}N:1tsWg9ϋ>}+*&w+.G)YS!gyx2{e:UIu"޺XN&M Ǩ[y)Nbxc2U"hTo6M5O*7lGkZCyxҞY:bGCa,L㮤0_F*_>|NNlyp;Yq/su[wϏ1MJM˫p%TeJ)2D̛bAiH endstream endobj 2496 0 obj << /Type /Page /Contents 2497 0 R /Resources 2495 0 R /MediaBox [0 0 595.276 841.89] /Parent 2494 0 R >> endobj 2498 0 obj << /D [2496 0 R /XYZ 71 807.752 null] >> endobj 565 0 obj << /D [2496 0 R /XYZ 72 581.834 null] >> endobj 569 0 obj << /D [2496 0 R /XYZ 72 511.786 null] >> endobj 573 0 obj << /D [2496 0 R /XYZ 72 443.894 null] >> endobj 577 0 obj << /D [2496 0 R /XYZ 72 376.003 null] >> endobj 581 0 obj << /D [2496 0 R /XYZ 72 308.111 null] >> endobj 2495 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2501 0 obj << /Length 1612 /Filter /FlateDecode >> stream x[o8_>ZKjEvlǮ븂vq0S ]ߟǐڒކ*5?y^N6ՠ[ 46D#HL"ZwjSlZvKh5g fD]39K&o wfpPChPFJ1A@lKk:E/ZgF"MSM$0L[P",5jQ>4#zݫ BaDNM)Q}MvJVoKfqpM忙Ӧҽț VYP= ]e A`S[J;[)`6g@DmNJa +W+o!U8(|2ec)W`ʂWL|o>p-s^5VUH.l\LRsl]3Vv}sqݼGD_(gu)*QE$B$hRdHHL\NϾd',>QB1"^#WK'89dbwN9|ӋBx n;%\.. bl\|V4ٻ<7nr0gQ"&0hjP5!⦿ @R:}v4IL 9wsM  G8n kuLkbKy?|Yp־lB}ewІ0Y YMzj- qba?`{Xx|qP<0O_$6OHµ:?gwjϺH{/:Qaf-LE{3J5{uZGYջ&}zOʥY~L\kIJ=$j6 H| rd^HwW$T>~:Lmxj'vlɥ؇nl/x\y2%,>g_V3{ #t|n"(ʼnAD7&VD[g" ')WnΗmL^8!E(0qH ~:` IrqP ABH YHl1bQcbmi ÿd 將Y9@<:iMj3  ˿'OG) ÂXNVÞ|y~՞ LXL]R`#۟Ar1:ai36f}1Ȓ:HuV7U`1Ʀɽhuu endstream endobj 2500 0 obj << /Type /Page /Contents 2501 0 R /Resources 2499 0 R /MediaBox [0 0 595.276 841.89] /Parent 2494 0 R >> endobj 2502 0 obj << /D [2500 0 R /XYZ 71 807.752 null] >> endobj 2499 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2505 0 obj << /Length 1756 /Filter /FlateDecode >> stream xks6;3`UߝKfw˥ 3)PB 61vr,l ?#d-Y^ J} J+ʯ)Yұ.5$KeT#ߎj0g ~xpD{nȐh_*f塂TPB 4ːzJ % P,SzF$UC:J?+P$%~s9Y75`@m5t1a\A()C Z BiXkJ 'R1- @4Cznk5,Xt͒ MqZG5dBX/U~niK 'xg 5#fF)F4y.Ѣh {8$hC;|@a447Om`wD+ kFŠa8 A]u_ %g*l߷-4}NA7h癧f/Ϯl\OC\%$iB7wnPu`Hc(CYY@9A;0n|<}t;;w7 #2,Ж{ B?D&E26AlMqS\Le~oSq{Cb]@s߆;܃ݸDc'k,рvPvdʎQ!^vJҘAQr6wiwf._wi(Wwh2|X'Fف?ͽĈUTj|-/\D!&TM= aD MOXȸ/PI21c^@&Kq}۸ͫo7_.;ho.QVPl`S6)dxr9rrY.U 0܅8!9i%.ɔ)gB5'+r,R)&";>p:`?w }bœ}j(Sٚ Ps*aN.)WvpUS950f5)RA|{ endstream endobj 2504 0 obj << /Type /Page /Contents 2505 0 R /Resources 2503 0 R /MediaBox [0 0 595.276 841.89] /Parent 2494 0 R >> endobj 2506 0 obj << /D [2504 0 R /XYZ 71 807.752 null] >> endobj 2503 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2509 0 obj << /Length 1386 /Filter /FlateDecode >> stream xYs6_oJGNr9Q1 =c&+KhI{ 3FZֿ]V9"C=s=٨?Cicj!s隨?E_t~Ti> endobj 2510 0 obj << /D [2508 0 R /XYZ 71 807.752 null] >> endobj 585 0 obj << /D [2508 0 R /XYZ 72 548.11 null] >> endobj 589 0 obj << /D [2508 0 R /XYZ 72 478.062 null] >> endobj 593 0 obj << /D [2508 0 R /XYZ 72 410.17 null] >> endobj 597 0 obj << /D [2508 0 R /XYZ 72 344.336 null] >> endobj 601 0 obj << /D [2508 0 R /XYZ 72 274.387 null] >> endobj 2507 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2513 0 obj << /Length 585 /Filter /FlateDecode >> stream xڥTn@}W[m)ݻ}@j&Jm"%4 (*,ev}a0~ty%,8tF!9J`|"o7a1Z7s(X..|aP#K~; `8 FdYxoAi"3}=b 팜2FV+:82 2Ng(eSx!Irq/Fz9T4[8&kEWyswx\^IWڗY) _=tin~hN]u1Y̊(氠8;4 Oڷim9; eҼ@ 4B6Ԏ-{n2TvE*Z+G#h`*hci9P݌Q1\˂NT.*jK-;dc+9 A:߷LvYHo)8 ¾BHB]KQiF#AkaPQϗѣ xLߜ2OvuE/7CHRP2OTBQ;LR#-/W|J_:ͮ`6 endstream endobj 2512 0 obj << /Type /Page /Contents 2513 0 R /Resources 2511 0 R /MediaBox [0 0 595.276 841.89] /Parent 2494 0 R >> endobj 2514 0 obj << /D [2512 0 R /XYZ 71 807.752 null] >> endobj 605 0 obj << /D [2512 0 R /XYZ 72 769.89 null] >> endobj 2515 0 obj << /D [2512 0 R /XYZ 72 688.968 null] >> endobj 2516 0 obj << /D [2512 0 R /XYZ 72 688.968 null] >> endobj 2511 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2519 0 obj << /Length 1579 /Filter /FlateDecode >> stream xZ[sF~Gyjo:PP6'%xLږvebX2&|t|gEz#GJE!,DW{@}}ιHHr~z~~~#lt>:ѫzIVxT+c9rskūGg񅱛ӒCC@7K^?d8*ѿAKCYivg}&[o,Nr7<3'w)JAxW'ACa´*xor( qtFAs}NZF㗊Z:)V chSܭ0M!vU=i\K(;sUjK9kR=yu9UDx!Ba"KAiMJI e5.$D.Ɇ"LT(69"Ȝ G؁P, ~||\Kd%vԇ'9sJ9l|#W_ t;Dl2e܀>x5 }֥ Ɯ\n1kċZ`RYF{ xbf]xۚ-Vq̦򱒴HVYZC \m*fCڲĺc$KVh4n6hVZ4@M E/%_pG7 s(30yJYg`Xb_ 0iH׃Jh<p CC|&%,JeU;ax$Jㄎ$G3q$[\]`)UvV9SJMC.s, q>$Ipo3sͮ04l(>-szBܡFrbr5fEd+"n kUUUfC~5`n^ݍ4:eygIb1a~]aVٶ˧Zlu.kV,Hʃ]&(?YF٠&^h.Kn\Wa,sT%{CbRn"O:Le%5 ~ N1yW 9p^Z)IM3c}5eMx(gR:1a7[c{^}ϯwFt~N.TmD°4N3Ja. kS-ǀ='˛~Wjmge> endobj 2520 0 obj << /D [2518 0 R /XYZ 71 807.752 null] >> endobj 609 0 obj << /D [2518 0 R /XYZ 72 769.89 null] >> endobj 613 0 obj << /D [2518 0 R /XYZ 72 576.385 null] >> endobj 2521 0 obj << /D [2518 0 R /XYZ 72 450.407 null] >> endobj 2517 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2525 0 obj << /Length 1393 /Filter /FlateDecode >> stream x[oH)此M&s6vWݪMiHjɗv.564E< gΜ30?F *P i5{#Mǿa4xtE(F%&7i;' 5[\ki_R&(8{ V#$Dn0ȌL`e+M%4GSeVzj14ߌ+Rc&yfxXX%D Y(9KS-)2j%T IOOOeV:UgKjaO\f<]'`/@w N -OD KR`eÃI?Dlంqr}3Bxi0JҼQI1ƫw,Of?!iZ]HnCӕ()#&  ^\5Vd˪.q|!@ZL, 6'b .܆B8h)9̔툦$;AQg|dmYZ5eG !ܸuD/0ʹ?pX4_$K?mJ `P2U>gBYUH!U:F˻&dp) C7J'U8ޞG׃(پ)O&(Ycu8VBLVͱfʱ 8VX9sXϱsl{9sX(k+ڦI:rϙZ7EH !ɾ(T@Y (KB̬YW uH6JdY K=z9ߏؖI`t;EϣpHSSEd'`{Hʨ[mgX۔5ėITVk[G>BZF\bK^?x^?xlOٓʨZegAs%< h3R!?^)}O={2ʏM3Kyg=PnϨ\ӿ %v&bM?|-$}>SU Lc @]C {Շ}X(>b^xVct/}m6o{߃bk%^1_fT&; ԈT.Qۏ]C1be%#3mUFluw"21獈N8n z=٬U:nҐY[٭6]wL`=`jt,u;e~ٯe1V/eФLU )M'PLJ%ElBcHcOվ\q? k' endstream endobj 2524 0 obj << /Type /Page /Contents 2525 0 R /Resources 2523 0 R /MediaBox [0 0 595.276 841.89] /Parent 2522 0 R >> endobj 2526 0 obj << /D [2524 0 R /XYZ 71 807.752 null] >> endobj 2523 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2529 0 obj << /Length 1356 /Filter /FlateDecode >> stream x\]OH}ϯ:-W+uVZm桔AH I; 81d|{xXPW7$PsMD LZV9>n}zr6>Whv9IaM hwy|0F GThs< ? "{kDb!C3wq? +X4hzGnd2N4)3VRպe8kh+qgylP0y*]Jab"Z:J U .$0V;/tg.[I) *g @y`G'רҠhy0mU%^dQUZ`Ra灵Xl2'@:=P\.c&B.8s@:?$`d=K>iE8UCJ[?,g2sppP:vU,#Og?Ğ@_ #i> endobj 2530 0 obj << /D [2528 0 R /XYZ 71 807.752 null] >> endobj 2527 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2533 0 obj << /Length 819 /Filter /FlateDecode >> stream xXO0_77A*61}R:~ѯK&: yj\ߝGIPrZR|- \1Ȃ[\}3wOIoC'L:I>V{Bw@d xdsTOUMڜ/lᑸJHhr )ˡq4>N{ .˱5vT=UF!RcֹEs0xWٱZ6rvܒZ(qr< vn[-a@+;6 `Ul`xkKg'g|} ϙwv{Xo&7"P/濈)Msx>MX07:'\+%.O& b<ѩt>axWԛLFQ|e6Y)ćKD.TZ}X۷*rU5H\wEJ3Z&e'_.c|b2LƮb&dty$pQ leNr`̗NaUHx0N' g[JshLӐclt`> :M endstream endobj 2532 0 obj << /Type /Page /Contents 2533 0 R /Resources 2531 0 R /MediaBox [0 0 595.276 841.89] /Parent 2522 0 R >> endobj 2534 0 obj << /D [2532 0 R /XYZ 71 807.752 null] >> endobj 2535 0 obj << /D [2532 0 R /XYZ 72 613.616 null] >> endobj 2536 0 obj << /D [2532 0 R /XYZ 72 613.616 null] >> endobj 2531 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2539 0 obj << /Length 1967 /Filter /FlateDecode >> stream xZOHi{3s { Ñ"cwo;k;òV?NkJHI]UՏ4/Ru0Զ"laj,nD]ʉ=,u⮍]N%zuǓMN8bܡ~s):!goz^VV"uR\% ,@U ؓ[7uVvaD!V/7 62~:Cc wrGmƸJ(zϓr<)Om[ @z<:cdn0|EDNceKRqbyA%_(e6U0K&|aZB~2Nm'0(ƘP0653<2mP$m|4.}ib!vǥD1=˧1_ՠ8'qQ* N0>n}梘$|Ko1QB6O_ }G_ pz Nh (s|wSJ$:Klzsuo@ŠD?NPlD<E(x°; )fe=c8d(n=':c0à jQ>oUW1 UT)9ɍʩs? ehL䩊A"C/N|J |VOkC$P͛9A"Xa{bk*<ԃ4`%sY7RmQM,ռv=ڪĆat.Gf%8|Ą@)Zt@٨XF65ɬm2H%",uţq\5_uM2,1D+_җoޙjJ=j icD7H$6F1L$Sk V*!dmRoy502Cyig hu` "~Zcix9. w5Fx'PV0֊K B {Z2 vᣉgai!oաS\ٌWcZJT]L1w,0|+>53F.:Ԯs 5L _iCӭa(aܮ{=E ò<('-ѼaVQ5Bw*$'=CD{fȘRKo!!dj8y֜8o_fáȫen|R@A-S*NH% %rWGgpS-=yjUd5}?HǭnSEf gop7̃cE!߈'oni V Xnӗeީ̟˰E=.Sf-ۙhl~vMOQ~u7'Kq2C *8CMmĉXj"mz\|u5No c} u8ad|6S`9NM8 v4%5El 6y_[xnȟY0nxYv4~91Nya}D\9y c?3ԒKd%R\w =;TQ_/ϲ3[OGk'9;uaHK~^]_ji ? ?°ԿĿ[vWel GGS#GT5kZa{`ʾ7nJ;Ѭ@ogFIoqn{ipy?SpoYcU h\i(0Jtk ًO+!PG'lV°տ//N뛤\a !Ӯ~k&ϫh\$S9)؁Y"B &6F endstream endobj 2538 0 obj << /Type /Page /Contents 2539 0 R /Resources 2537 0 R /MediaBox [0 0 595.276 841.89] /Parent 2522 0 R >> endobj 2540 0 obj << /D [2538 0 R /XYZ 71 807.752 null] >> endobj 617 0 obj << /D [2538 0 R /XYZ 72 769.89 null] >> endobj 621 0 obj << /D [2538 0 R /XYZ 72 611.174 null] >> endobj 2541 0 obj << /D [2538 0 R /XYZ 72 542.508 null] >> endobj 2537 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2544 0 obj << /Length 1736 /Filter /FlateDecode >> stream xYYoF~ׯ IރC 88uWv!0J&B*;=(|06p9; [ [o.gwc]-Z!1rd].Nhw뵎O41T̲ فE$T8weU"ZZi[#࿳0bgݩQSQ:.4*_24Sx!r\!QlAo?$[ӃՉ=8UaBz$.-$']X#[ qƹZ8ױ r\k'z0 ٦.}&mH*0TTl-T_d{H: V/;,mx@AUCi?R }2QrHl(:.幻"ԔW` u\1Y,IL1b*GBVvz0lz0aR]XhUC1`$R.?$V8ZbOHDUGZo#Y_؁Yc \BϪ7|乼pn+FpEPi p +2G }xգKn]bÝV B?!3i9|zwoeמy;==98ظ!faW ϑh,;"\ nޔqӔ=R}֨uY1!mCTl:,6 a83H?X"wґ~Cwڃ@wK5v MM%jTҌL8¶+#/!E endstream endobj 2543 0 obj << /Type /Page /Contents 2544 0 R /Resources 2542 0 R /MediaBox [0 0 595.276 841.89] /Parent 2522 0 R >> endobj 2545 0 obj << /D [2543 0 R /XYZ 71 807.752 null] >> endobj 2546 0 obj << /D [2543 0 R /XYZ 72 462.358 null] >> endobj 2547 0 obj << /D [2543 0 R /XYZ 72 401.974 null] >> endobj 2548 0 obj << /D [2543 0 R /XYZ 72 343.746 null] >> endobj 2549 0 obj << /D [2543 0 R /XYZ 72 285.518 null] >> endobj 2550 0 obj << /D [2543 0 R /XYZ 72 134.86 null] >> endobj 2542 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2553 0 obj << /Length 1907 /Filter /FlateDecode >> stream x[o6"~jvĩSwie=IPCQ’p[u}_IH V!Axq߷`g`UNT8 <9"\:m}xM}:{a.Q~#i3C&#|nw5tX34= nu0N=858sq*#{o.ȘX ؁6u-U6J LHEgGX:õ3]"_()Ak3Hri͉#SV`> 7~6Z\sJ'эyj##X| g \dz՟I2e|w-Gգ {D$5 2 ˀ,JE߮I,˺٤z7Ogl3 ŨMa~AYw, endstream endobj 2552 0 obj << /Type /Page /Contents 2553 0 R /Resources 2551 0 R /MediaBox [0 0 595.276 841.89] /Parent 2559 0 R >> endobj 2554 0 obj << /D [2552 0 R /XYZ 71 807.752 null] >> endobj 2555 0 obj << /D [2552 0 R /XYZ 72 718.547 null] >> endobj 2556 0 obj << /D [2552 0 R /XYZ 72 467.102 null] >> endobj 2557 0 obj << /D [2552 0 R /XYZ 72 347.559 null] >> endobj 2558 0 obj << /D [2552 0 R /XYZ 72 163.109 null] >> endobj 2551 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2562 0 obj << /Length 2035 /Filter /FlateDecode >> stream x\o6B>jD=@umۀĴ-T=INZ w|Ȗe9v,&GwGx[U;~:귳ߴzwzs73#Γ9[8K3]@U OgY՞\#Ѕ#]+;!Z,.v<xC.>yZv#Zyʛފ6I%=]=Z /:Ř{fo" MzDY)DC("ab;kupwCy$G,l^TXn Òi;I  w/ZEjX>EiB/hPVxGJn3J](IvTZ"*Դ(r-x %s8Eyw2-DfNAnMs?(YR2Q?VIiEOgm]r+=q tGcz=+؄s-;ز-[e(ǚHdƌs0f߹??[qfz.4}dE-$om'oȿ_wL#,T:;%I?c%Q?l=lݵ[ڵI)}~l۫]q^GwyMu.HvŬ G2`vXs#EoԒ60N?J)㊓XiJ|E| H$`n endstream endobj 2561 0 obj << /Type /Page /Contents 2562 0 R /Resources 2560 0 R /MediaBox [0 0 595.276 841.89] /Parent 2559 0 R >> endobj 2563 0 obj << /D [2561 0 R /XYZ 71 807.752 null] >> endobj 2564 0 obj << /D [2561 0 R /XYZ 72 647.418 null] >> endobj 2565 0 obj << /D [2561 0 R /XYZ 72 502.573 null] >> endobj 2566 0 obj << /D [2561 0 R /XYZ 72 328.513 null] >> endobj 2560 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2569 0 obj << /Length 2023 /Filter /FlateDecode >> stream xko6{~} z[lKl% զ]cJraQǒMw5ϩkyȳm]O-lDx.b.'ְwuQ:n\&xO]@ n>8>x@`:lˡ#9xq0?[1ϵ>w-,. :r~?0. [ ]wdK(\B-AlE3g'cr=ZC\c/yθ{V}0);[>;OVW#nLyWMs=O @l"ԯϞ=+3JPUoFB%QkP 3F3>Jƣi.FB!b3x+VFi:J47c?~7ǽ\q4!MsPLu3C9$B.a[(ӽ FSŠM[dn&d-Ǔg N"E`1VREHA,$Z_L~1ZVMw*-?Qh'{INNt;|pO/NBͿyRP26/mD#fw_Mq"İW/8KE[l|1^!_﫟Ľ@'Mopm|'Jk]zޱ6 ٍ6]AxͿTYjFY0/&;!QK݄@:E^T $r{Wl4M-8ݣ~qZھd,ɤGD>d4ʝT|tr htwf!'Vj M'U6 #=[<_3,_+r>8\p벿Aڭ)r 갽P`߿G@ʻ Hxcts6I PtN8JW~ViP&`?~VډԳO2$ C\[x! ưOo777` n+F}?K_"9K;5 4;k㾯c;2yqz4rDH_As^K3G$2 +fs?D.lA5 2G;]"CK{TLCϧ)0?]g(5GJnWɱW s:u* ${ eZ'6xi2Ou<fk@V0p)kV.k{V=E%꬛.F!q3 Yv7/R뭵jM>,8p6`=sj.Eqo޲+$W0l$i0ה佂rRʥLK?F(!#YFMma,͡&\*HbݰH;ij RXTIdBǺH/b''}rV Յ4[Wz0Ku'vX@"`cAy0L]sƞ йEOSt{)fjW-xܬk#ٵqEa&R֧' Yq985b}Tb;Ӏ2(2;ԚfWL.))Z~Jg W:ҡb_^ΞuuaRn. x^Ƀ,!̉m: 9hA"X=U{v[5., ŵTDρR:' wgv]Vl8KڼiGn5o3'+ 8i|jڦ5x(/?j { endstream endobj 2568 0 obj << /Type /Page /Contents 2569 0 R /Resources 2567 0 R /MediaBox [0 0 595.276 841.89] /Parent 2559 0 R >> endobj 2570 0 obj << /D [2568 0 R /XYZ 71 807.752 null] >> endobj 2571 0 obj << /D [2568 0 R /XYZ 72 504.952 null] >> endobj 2572 0 obj << /D [2568 0 R /XYZ 72 397.215 null] >> endobj 2567 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2575 0 obj << /Length 642 /Filter /FlateDecode >> stream xVmo0_qSiuNBꠌ*i MMIR=8eKU@Vrz|cp +@3Z1Oy0=?:{hPGǣ,({73> c;p>;R!p 3C͝˜ǀ n93dy`Y*L{ȁb $ QFW"H1w `DxXB5Cg ^l^wpw O$V PDl௉nIhܶS%Q_O3 :P`#RN;ӣ^/cMeJ&qb u4%-[VeŭClk}Kng<~OHZ(Ȩ֑\xLԇjf |WY|.5VYX&[4o.(x\-vO-2.6, DM`n/vU4K4[Ml!޾hcJQC*\!b| t#Ee"`>}k0A`Xcހ^DPk:T1hV~Oȧ: hĎbDnNKemoFy endstream endobj 2574 0 obj << /Type /Page /Contents 2575 0 R /Resources 2573 0 R /MediaBox [0 0 595.276 841.89] /Parent 2559 0 R >> endobj 2576 0 obj << /D [2574 0 R /XYZ 71 807.752 null] >> endobj 2577 0 obj << /D [2574 0 R /XYZ 72 553.008 null] >> endobj 2578 0 obj << /D [2574 0 R /XYZ 72 553.008 null] >> endobj 2573 0 obj << /Font << /F28 896 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2581 0 obj << /Length 1836 /Filter /FlateDecode >> stream xZ[oH~WX݇n՗TDjw6UvS^4lwӫlC seW-"İaq*uu 9i|g . geutFmAIM?4%[Xɍo\}sO'1nR98B]ʐCwrQ_[Ȥ#˶A6P3a*cZ֗/.~}~ .¹^QH֒T89ɐej-H֌=hEtRneYnOX`w茑0i#oCIN8gQo؏Kfa$kiM<52 f#|Ξ[/ygW CؾP,kIMd;sa6&LǍ,/BhUQ@Q;r R(lbew3!i8N [$frW0Ȧl)-Q,T*r}yFAZfPV{IvRJi9{<SgwH*<KQ F_'HMfIxp;/eq ê*&j] ؋w4ʰ϶8aT;i/g]\kyO"à,l'VǑMŅ',fq =q=!!"h53XGʽ_3 @<ʊ_#$?sw+¯F(cQܷn݁$o*;VC99))qy=Q+FԬ\d~Qn'ӷo8uzb#N;ǝJ&A™٫s%.[/ ;6qN}Ӛ 84i" U}g-$s/( (O06K87l^Cpop,2@C+睁0/k,D,n/s[Ԋ._LZ'X6UG$G7U{ӏ]w~|w ]F.?J٤?~5e'2C燒lwG9k捃N?пC,SwD'*\Փ!9ΦGb`DIKn|G7Hoy7F@XdO/LGԴSSM8U0j9 endstream endobj 2580 0 obj << /Type /Page /Contents 2581 0 R /Resources 2579 0 R /MediaBox [0 0 595.276 841.89] /Parent 2559 0 R >> endobj 2582 0 obj << /D [2580 0 R /XYZ 71 807.752 null] >> endobj 625 0 obj << /D [2580 0 R /XYZ 72 769.89 null] >> endobj 629 0 obj << /D [2580 0 R /XYZ 72 611.174 null] >> endobj 2583 0 obj << /D [2580 0 R /XYZ 72 542.508 null] >> endobj 2579 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2586 0 obj << /Length 1675 /Filter /FlateDecode >> stream xZo6_!%6P)iEl:͞Pl&K$/;~Ȧdj`$OHݏw~|w;x^"Aw;QXȼۙw7Gcoyk*|Yɬ$^{ʸGxtnG k(=f@aĢ{ԽV z}:VmHL+nqsZbi`VGfӢ~<ݘc<ɹY~>bKΡ$4ؿzÈSq#o, nqڼWdIejUnJTi\r-GPMرl($3%cs^y{{a5P0gwىww jPtQXd^MʪקX͔zm'\=={4"_"d*/VqUəi(IhL"y .nIVOq)e=K\T^T`'B$D@O`0Z`EH'GA% %ۧ8D̢>[HoxOѶ R5( Ao aJ nnnZA8JwڠjU{42Y4(Jd%[^RcB`J'<ѝgptwe?=US Qf2!Kp5å&c-=9==[Z9d6<8$&uVnygŤs;&dLFz4~ ´yVM4/ iQ䛵q!!m9ȇ+6p!O}e@?gL*>,;P8S(PIYZ>72Q]јq%39Վ/ ]v075q \THlh~ՙYReC}Pzb iNe5tSz݂cBEK&&1 gvavw.kKVvgv}?R^L% \Kn3ݨvov,)B7Nq;ĞPJQ  P8(-E)oʚN!MΒBJiI.5p5in j uY=8傕d.\>X1"0#OXria|>J#=?t6KR?!.x%_jXbݖDۤNs7="CF/fnZ˜aԅIn֤MV5j۶&J]<):Yg9@X0#A}1( 9jrhC]:eR_ϘC nPvZICWxmeUװ:e/ܦp+d LaSre&~GdNhhp9.(t.߿Zĩ6V F&p4'->f *65 T$s v-xfbvfz4 CDYє3E)Єa@s-ȍܟ4wSVOz7_Ku`=7=cV,0 /'3 xb P.9q&SX>E^8_p/u]?C!:Zf‚a endstream endobj 2585 0 obj << /Type /Page /Contents 2586 0 R /Resources 2584 0 R /MediaBox [0 0 595.276 841.89] /Parent 2559 0 R >> endobj 2587 0 obj << /D [2585 0 R /XYZ 71 807.752 null] >> endobj 2588 0 obj << /D [2585 0 R /XYZ 72 769.89 null] >> endobj 2589 0 obj << /D [2585 0 R /XYZ 72 719.468 null] >> endobj 2590 0 obj << /D [2585 0 R /XYZ 72 601.444 null] >> endobj 2591 0 obj << /D [2585 0 R /XYZ 72 491.469 null] >> endobj 2592 0 obj << /D [2585 0 R /XYZ 72 381.695 null] >> endobj 2593 0 obj << /D [2585 0 R /XYZ 72 283.675 null] >> endobj 2594 0 obj << /D [2585 0 R /XYZ 72 173.901 null] >> endobj 2584 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2597 0 obj << /Length 1557 /Filter /FlateDecode >> stream x[m6_ܗ3gUARL2Mڤy]= gd)6.i{WH~;Kf27c`Vewϭ7^QpkS۸i#buM`ܶ?~ӥi?Z`6xrh"~*F NMMA NB`ܺc##uQcbQnyd|jš]bȿddWm4l;`jP6l0 2ÎXgl+.„#2scz.#䆰%)Q1PmIK0q)e_]]jp2Ĉ wAgB G,bO^mƸ+k>`mTA~ k00CIH@(nr{Z`DVkI].en߈^(ئB)P.P%~6WyIYO;9ӷ҈r۾ia$n%0|ù**13K^ ڛ!#fZs/SIBS?C? ȉ;9j/?qG~=cJ}t76E ux~C~y r% ѻH"˩n"k[VP8=eu3&?'aa Ȓ|ch;ƳK毵{$2/_w b/Dw}^:Б'%Ҁp218z78!́z;v .rjDg)Qv6DxWB %w8ٶ-asCn,gKɶ)I^ _uO+Kvk:Q2nibK+.) F$,jqF˲iLW[V!*](JuY(*կPug \āHŴ$js4ޅ($E BQTo/ciߌ"uI'7|]Ɠ,(^Ꟊ,4ބ):jSׇZ4ijH d3흇~o#ND |AI/"x6#,ƙ3@ 8ENE;1[]#6| @+!YMr5l8l,ILz8}߶lNTa7q\|%(fw/3*s~B_6 лB&1LݣlPR̓yD^6A2HTC42\7{.+1TyްCq;Nƾʢb*anyuc%d]I-D7P!Lu3UT`'2DG%K"E(*Yi{}E%kh>\ȓH,x}QGatO=XsU4c2JO0\ٻOqSZu*Ov]WO3ޯją`h{kEc*B@i{ OS}eYa zQ]3> 2R endstream endobj 2596 0 obj << /Type /Page /Contents 2597 0 R /Resources 2595 0 R /MediaBox [0 0 595.276 841.89] /Parent 2600 0 R >> endobj 2598 0 obj << /D [2596 0 R /XYZ 71 807.752 null] >> endobj 2599 0 obj << /D [2596 0 R /XYZ 72 221.263 null] >> endobj 2595 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2603 0 obj << /Length 1315 /Filter /FlateDecode >> stream xZmo6_AKfHJKKX-5nP(%O(Ҳ$;%nx<>|{Do'k dllcO>| j!˂8zd7"^*j2{@+RmbhLo Al@&܇Ѧ3ː--x% Rr֣0Xfљ.*[wcNs5ċf#JAtpp.5XK/{1}Sڠ hL+K?L2 4p2Pyg#8K> endobj 2604 0 obj << /D [2602 0 R /XYZ 71 807.752 null] >> endobj 2605 0 obj << /D [2602 0 R /XYZ 72 769.89 null] >> endobj 2606 0 obj << /D [2602 0 R /XYZ 72 466.027 null] >> endobj 2607 0 obj << /D [2602 0 R /XYZ 72 466.027 null] >> endobj 2601 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2610 0 obj << /Length 1979 /Filter /FlateDecode >> stream x[[o6~ϯX[HMYctP$֠'Ia}"e[ķ&)2Ex5x;~A ;g ZUY*6I-HG;ݝ1\Z2}&"9Y7{'݃۲8q Cr*|xt,t,VH9i"JaAQ4ϽOD5]Ke0'_4Pt,lK+gBzK7duL[~VyCma\hu)/*RE燌`kk` kV?dTVZ U0Q_ȼ/_(e:U9?qG>{jwwZUa2P_ "ZZ02RZw[կq G|(DxE^m-͔ƐE&Ʋ)s D Z^E'EomwlJJ>^q=e( ]$¤U33bd sG :4IK~E/ߧIhۤc/"K;mٜ21w^<^OZĮ@ dnlb?JKsAa` ufB95hj;ll0"Lm-&93͸2ӌ榍&3aJIၹZ-/Z \ϫW:ĹLI娀`A@giܬ ,#DDǓZδhGrҬh142UtD(-gm :4.2q!8KE=B)фAA|1 wq:`*U 9n"$n),Gc>/ԏZT5:ҮVRJ~:5&RY=\ls֧:H} |4%i.,#{ã2Ye0ђY&_j9 ϳƠtJr^U>k꿫1ZڴY/WyC+_\?'{ DbҀBar}q݋ĥHqaaK@ݯ IU5qӪ#w.?K9+P Z8qK߇mT Q5µ+V'a#{fH*sW_7݉j!!&L.di2_zfFew˭utF|ɑ~5܅to?j^>j>ݸ}i,S?FWi<"̟QxPrûE%P䏨g+9}F~^^c Ud׋",eN /f)/G-ӚѻQI A˹ ѩ~}㻽?z9zPry8qnskl^?`D2g;g;X[}Fڂ6La3fȄ)6(Lĝg ‘;=Ju%bA]i&_mdFX6<ھqpy hn r; a> endobj 2611 0 obj << /D [2609 0 R /XYZ 71 807.752 null] >> endobj 633 0 obj << /D [2609 0 R /XYZ 72 769.89 null] >> endobj 637 0 obj << /D [2609 0 R /XYZ 72 608.509 null] >> endobj 2612 0 obj << /D [2609 0 R /XYZ 72 530.552 null] >> endobj 2608 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2615 0 obj << /Length 2118 /Filter /FlateDecode >> stream x[moF_A>Hś}%pu\\m:@K+ԑTt7BdY4Bg8\gggf5ه?RPǺX.\Ccغ?9׿8-"΃g^-Eۈ5?`k _,Y+5jnٜ :@G3lT%N-MTx!r\wK(DxZ&%[2cHTk>„"6w嬔 kUpa \Oj6BؖC[X,c r}! ie pG %q 62/%Z4/UHrm'g- *.]nniZm`s7P1өqt=l8K=e}V6~(Rx0J*I'I<@h3^d_>_4G3gr8_1']74;_2,so1jrMq2f1eEWfp=0rW?~\~jLl{.D7^J6CӛQ3yGIq񯗮cqd/[oF⛈Pb<=xPg30 v$鮰v^Q`Cs /]?qt(UP{#B+/0;94pqn .=qWP!7g;JąUfAVYIQs>"%۫n-MoEI&3V.i)` =KO+s/0A-0ꕘqR;pUD}a۫K zn$3T Ĭa=fhNm<2.ūH[ U/a_$.SҲxjWo66*+rмPP֩MkW񕷩BBv4O9t^ySTzWՙiSZ΃ٞjSXrKG }j"N룇)ƤGixa v}rD@6}LaxmzEb1gK2-Dbw lH, Ȝx Ij&sM5'xā&FQeB¯ӑ6 ݐ'SvNx_DkM;ôC*ff6ǂ<p&H7g~Vp7 *(2256 P5z(7b\N#&_Iτ/[&-rV틝ajlkGF'~GȡVoԃLIYf- [Eoqwj[ "±Arg|?ôd;ػ{tߜ׋f3^n؞˲v.9y=r\"zo:CKR{a=ʘFCi:$jnY%"!+x#ᲯǛ+}do,.CLX&ݱ'Tꊇ U`ERAw+H>4B݁H+Td'+n~@)dhmH$52Tc$ aܸ)a\r"H)4g9S]I s3"ѡLsQUT'TG)Gw`vL.*3#؇vñ}ZwA# R8KsyV޷ssg[b!! p s]wݗ6~j(jMM#4 \&2u ΧpqC lxZ-UdF$M(Q0fvA&6bU$zb3QK'5;W^󪉞PHF_[ ;'-қ )\n'sc?%kO̧w8<0_, }g"Ǫ]Q|&-o t+A&$r4j?k6~նw6E@ZRj{R?΂E.['I'"D2 -$QN! endstream endobj 2614 0 obj << /Type /Page /Contents 2615 0 R /Resources 2613 0 R /MediaBox [0 0 595.276 841.89] /Parent 2600 0 R >> endobj 2616 0 obj << /D [2614 0 R /XYZ 71 807.752 null] >> endobj 2617 0 obj << /D [2614 0 R /XYZ 72 527.265 null] >> endobj 2618 0 obj << /D [2614 0 R /XYZ 72 466.88 null] >> endobj 2619 0 obj << /D [2614 0 R /XYZ 72 316.222 null] >> endobj 2620 0 obj << /D [2614 0 R /XYZ 72 206.246 null] >> endobj 2613 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2623 0 obj << /Length 1690 /Filter /FlateDecode >> stream x[moHίlvv~驕S{ת|K+I,٦i;ؐIHP$23kv .-j{{;}|+ \lbqp,/ u6>o~x6ZLxмoQy/(};\Z`y E;D5Rk%]%8cgÚmNq]kM )Cx-zqAZ_c_O6.7ê{͓C~PʒF^՘ԮGok1DS բEbP,4i32]_CpfՓ&ՠY([\,\gqeER.zkv[7NtM)diד}6ա f0ZҡͶ\e+?^(l6R؅ĝĄV jpz$Tv(N1IraR.vujɃp.-Xlbͦr ˝6r4 !^QG}^76%mzyhrN&dɠvILtz ̲Mxr $l&aKUiW( @="w/^VꍄM~;ܻϻ=|ڙ?aEsps[>fg<(aѱ#yyOC7'ښul2 w+*X endstream endobj 2622 0 obj << /Type /Page /Contents 2623 0 R /Resources 2621 0 R /MediaBox [0 0 595.276 841.89] /Parent 2600 0 R >> endobj 2624 0 obj << /D [2622 0 R /XYZ 71 807.752 null] >> endobj 2625 0 obj << /D [2622 0 R /XYZ 72 769.89 null] >> endobj 2626 0 obj << /D [2622 0 R /XYZ 72 360.433 null] >> endobj 2621 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2629 0 obj << /Length 563 /Filter /FlateDecode >> stream xWn0 }W [ö4oEQdm?i\Zd :b(PfL@8>فWް5XJ\\_vl]iF$v6}Sz8,jJ+\ϢOWDUS$D P%k&y=š*AY@z')C XE=SopĠ!xEDuĶR eicžjX'ȋ @E_ҫ$פErSx:QV6/tր n"Sqj#b1 KO JW09H%T^Sa,L ]a,HGM{ޭ}"J4՞_}M>\W/S> endobj 2630 0 obj << /D [2628 0 R /XYZ 71 807.752 null] >> endobj 2631 0 obj << /D [2628 0 R /XYZ 72 595.996 null] >> endobj 2632 0 obj << /D [2628 0 R /XYZ 72 595.996 null] >> endobj 2627 0 obj << /Font << /F28 896 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2635 0 obj << /Length 1671 /Filter /FlateDecode >> stream xZo6*6CR$% HKCF"+ Œm1In{}8fGwWjMbАxX2IvU]0IVԋ?_|S~HK"I|LJ 2$|R H KaS͑ J+\0f-f1o%LJH4F`^P| y0\߂K *0pl5PE7}ILh`JjWWG֫dkf{pË݋6 `&]ms4K=]xˌ] 0hڽB}3 2؇W$|22)qz0(G`z\:,YՆ='R|}%-r&Sk4Q+٥K+o20gsѫRn w0;hcNWqa^cRUU<3lZ0잆x ˁ6 s*vcBcHh>rB;<;zD"EohP;ʹp]")D62 4-B'>Ԩb] U T͓y;t꿀̯Ҽ=Z&ܤu%W)tYOfz%1]ZW, oؒ ^פ-"V0$ ܲ]@&yX)D}ޮ6+Y@DžBXSg8L@a8wMEO0/R ŪfUI4Lo0 S[Ǧ`eZhQ|ñy6 |q/ 4812PG` (Yq~5yq@Q2 " Gq~Nw7s#]e+ (r/MݟW3TpFj}&>qeudD4J[kz@4XCӔdjz;Xvv9TCmֆx6.gwq@oѫģ劢r9-gV[nms.s1aN%Ǟ.|:oGEUUR;iS %Џi (oٟZʨ XbU4%r$`Ovö]i9h0[N`SanGyHvqt:mvp*^Vs<$5aN.vLhsH${F49 pȠ~+U?1LgmEO:(Ӗ`n36wFPM iݿqtbJ]%F:IpNjo$rc?8<8\_1?#A$sƨLsT0 endstream endobj 2634 0 obj << /Type /Page /Contents 2635 0 R /Resources 2633 0 R /MediaBox [0 0 595.276 841.89] /Parent 2638 0 R >> endobj 2636 0 obj << /D [2634 0 R /XYZ 71 807.752 null] >> endobj 641 0 obj << /D [2634 0 R /XYZ 72 769.89 null] >> endobj 645 0 obj << /D [2634 0 R /XYZ 72 573.542 null] >> endobj 2637 0 obj << /D [2634 0 R /XYZ 72 428.08 null] >> endobj 649 0 obj << /D [2634 0 R /XYZ 72 366.623 null] >> endobj 2633 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F31 898 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2641 0 obj << /Length 1520 /Filter /FlateDecode >> stream xZmo6_!`jc5KR^j@;tEl_Pe KH%ͿQlKqۑFbDsw7XHNaTB?1dܭ{j}G?G4V'}}z{6O?yH1OOlg<\pXPU P׮oKx}@d;.5EAvgQe:~~QOj*lXPqU5 .@ m ukQdk݊!'7Le+Q 19oHKySk6jdâlX t =ͯ3"xhշf8Gs@<*ee̓۟jV!2ocz\͍I>x}™Sr'LeГ"+}ކ9N7VCBGje Ș5y%MFV_@Z5du&9=ဿEȖ8 F8W&u!0<7{&PD2 i ;}mg}J[ؠ p? endstream endobj 2640 0 obj << /Type /Page /Contents 2641 0 R /Resources 2639 0 R /MediaBox [0 0 595.276 841.89] /Parent 2638 0 R >> endobj 2642 0 obj << /D [2640 0 R /XYZ 71 807.752 null] >> endobj 653 0 obj << /D [2640 0 R /XYZ 72 460.439 null] >> endobj 657 0 obj << /D [2640 0 R /XYZ 72 390.391 null] >> endobj 661 0 obj << /D [2640 0 R /XYZ 72 322.499 null] >> endobj 665 0 obj << /D [2640 0 R /XYZ 72 236.675 null] >> endobj 669 0 obj << /D [2640 0 R /XYZ 72 168.783 null] >> endobj 2639 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2645 0 obj << /Length 1285 /Filter /FlateDecode >> stream xo6Wm24`]-5kbӱ$9hɒı "~wGݏ't0}c²Pgee/wkߧµLI3"_VZoF $ԏ;^Jyi5 AkP`77!T&]pW'݇dș@k]$Yc߽l_^c5 qkI,u"p 8+ʑaF-^wDD!%fRAFiҶ3.Lr/hWr/\ۗd|Q/%Dp;goM7$]U[`i\e5O\Bj&b;zյd t ӳ4~d  2<"}GXB6D YGq0 ۰-tdvJynh2^vnp*󹮡r=6,Ĭnf͞+}Oe`/q 8Gpn(XFKlM.}x>kC&z-0xǶ"5]]:OCol*ٚմ@{Vl.3ˡ ]@f\5SV-C`Wv^p}tDHP@GkNc,idgx0qTtC47t!FU\^N<"Qo7직u(!=WcK?hn{H ު ǵezo<2(6F:PBtq3XBO`zKԝ@q9ZS/y-`햚}Mоo׵ͨgS5؛+ҏU/3^#F?BU!32W\4I*!5톻ת>?wwQux}M[#SD1?G,ή®f endstream endobj 2644 0 obj << /Type /Page /Contents 2645 0 R /Resources 2643 0 R /MediaBox [0 0 595.276 841.89] /Parent 2638 0 R >> endobj 2646 0 obj << /D [2644 0 R /XYZ 71 807.752 null] >> endobj 673 0 obj << /D [2644 0 R /XYZ 72 769.89 null] >> endobj 677 0 obj << /D [2644 0 R /XYZ 72 711.199 null] >> endobj 681 0 obj << /D [2644 0 R /XYZ 72 643.307 null] >> endobj 685 0 obj << /D [2644 0 R /XYZ 72 519.848 null] >> endobj 689 0 obj << /D [2644 0 R /XYZ 72 343.422 null] >> endobj 693 0 obj << /D [2644 0 R /XYZ 72 168.238 null] >> endobj 2643 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2649 0 obj << /Length 864 /Filter /FlateDecode >> stream xVQo0~Wڎ$}۪jm][WL8];$@YY+M<}>}6AާQE(Ʊdf(d(#DM]˷Q3EZja.v*)s GWϣޯc({wM!~G Y(Rd9梅,#,iB)pHaÈQ( ~ ɱCuJ8!f"hB^lcQyK 1NP׆Ń`CJp,bh1*_:ѫ5D,AK.LZi rN3bOr6VDԪ,w\S*4K}FR61yQ| mcY09l-@[!о3DY׽t<8yHIh@MiPXqi`A)|6RMxʦޚt$;*oDhkBdEL@aC+jXشZ9"'Fg>dҭhً*(L-qxP(R'2J/CeOCI"̏| ! 1[5M[>=ȧ!^\'_|fZ> endobj 2650 0 obj << /D [2648 0 R /XYZ 71 807.752 null] >> endobj 697 0 obj << /D [2648 0 R /XYZ 72 685.446 null] >> endobj 701 0 obj << /D [2648 0 R /XYZ 72 505.429 null] >> endobj 2651 0 obj << /D [2648 0 R /XYZ 72 450.39 null] >> endobj 2652 0 obj << /D [2648 0 R /XYZ 72 450.39 null] >> endobj 2647 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2655 0 obj << /Length 1892 /Filter /FlateDecode >> stream x[nF}WC$Z\) iD"p &)E$e'-P")[nhw̙X}@İasLj.7ndaZQC96~?x;8:"Sni[@6 4^`~}cVV'&b&~q8|3U{Mqhs@m)[)tg;6P1E;i''q6aD9OƉsc ^:!k -H;2;-_{yPi}IM( ?c g(x rm ]L4Z5H3UST*U(QWQy^$)e6e=?'$ͩWvho.0T+ƘP`Z32ζ6(~_ ;6%/mEA?BWyQuZ$.-\D 5:ty}}Ec⍦=v۾&yA?ųiRy6iAgAG#/cgDuwW5xٱxq>Uˉ]{z[٤Riyס¡WDi05Bdvj4mDIZ"̄\VYAiH0[:eWLU8>]=8ZFUaYY#>B2(&Rh Q 0kٓ;"f \AipRE4`ݕyhJ7.„TbӲTq[54mG)|`SEoMm\a2".9&3d4ϟ7Rt4E.`JkMiV4[r`&lrdi[0Ѻ rGъ,#la=HjxSjS9{e.F)RA(N˿BwG(5mdׄv`YI:,MPY-1Er7C_,VӯuQ ෳؿb[q !@h%p= Fp@HkDHIhxeVY'I8ڗ~Wd!n&j W 5lW#--&u>ioW%5m{rxKJ; =,#yx- e$WOߨh 7*Jh@5 !լiK!alŷay9h;!2FP9.b-~q` iS"C2Gpm/[ D- I.Vr]ѱi^~VC|iܹC|g&Mv3|Lw݋e%UG-oFGyyS}]a5,BBB~Ի.7ŗ;nW{s[ oEd%ږߒ9TäJ dO endstream endobj 2654 0 obj << /Type /Page /Contents 2655 0 R /Resources 2653 0 R /MediaBox [0 0 595.276 841.89] /Parent 2638 0 R >> endobj 2656 0 obj << /D [2654 0 R /XYZ 71 807.752 null] >> endobj 705 0 obj << /D [2654 0 R /XYZ 72 769.89 null] >> endobj 709 0 obj << /D [2654 0 R /XYZ 72 611.484 null] >> endobj 2657 0 obj << /D [2654 0 R /XYZ 72 542.508 null] >> endobj 2653 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2660 0 obj << /Length 1673 /Filter /FlateDecode >> stream x[o6B>jQ+횢A8ۗ405Ȓ'(R#cYvlFt`cj`u.r-jæ:9̸7ŗ>"h9a~R+/#Ο]a(&m杛[l-k57LN-cĐ?P/%ɖ, |tA\xECamRęEk.„lۈr cVrF#6eJZfnZΐreZPf\*4殅fÛ( tJ}o3A7} tr X65Me&)$|pR!+o:c{} V`rw|otה[z8N6^"wˏF^2N.w3w<Esbo-/Hߣ`g@h1v`0p4 lz.(~sW+}Szie6m7eȳ4ŭҸsҚĀv!2JEQO?rp>9BL<#Td&~Pw3^$V8?jh!º73'h.ki~q][Ev~ 00 8LxSZNNf[{5)L9m$ GRii26,M@ya}ZyC4prQ|% rҷ mC`efrJ3!wz&l,}oQ"3E\euJJOR8c/D,"q^h)z6-J*IcRK@j1c&=pdz[vNeN^Xjf8˹VK?f{$vAl㜘Wf9pH֑t5J)̏uJ IJڻ+Yc:du\6Ǡ`N-ds_)¶IsTzŲp~Yc^'U&v5ڜ"hr;8DPdLjMmH = H%5|_E ]iL(bxIObŘW*: bxuxa4!b%tٞNqO@ރ΄7|Jѝ@}aծ5DäLshFhcM }6 tb! #2 A>3͵ j(&t\(uS7?~m➿xa*X{|UڂVnXל)˴^p{Iiv=mQTe!m{K={tU!U"/8h5޶=ěOLG.GGͲNi{d@bzo"FW]"Qh$n>A x^MDKzaLڤwBb`h ")w-;q=a'1 yqZԙF*ѕybN4_eswz8O֗bӋ;Zh!Nv.2ALEP _fi2ܒh n-JWIj @Ҟڊ&L+ã endstream endobj 2659 0 obj << /Type /Page /Contents 2660 0 R /Resources 2658 0 R /MediaBox [0 0 595.276 841.89] /Parent 2638 0 R >> endobj 2661 0 obj << /D [2659 0 R /XYZ 71 807.752 null] >> endobj 2662 0 obj << /D [2659 0 R /XYZ 72 428.634 null] >> endobj 2663 0 obj << /D [2659 0 R /XYZ 72 368.25 null] >> endobj 2664 0 obj << /D [2659 0 R /XYZ 72 250.468 null] >> endobj 2658 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2667 0 obj << /Length 2188 /Filter /FlateDecode >> stream x\[o8~ϯR5"Nm-!O8ƐYķ=580a~ K&e@a/}b 20r'aQfI>0`}|sfӠ(±-0Gy*҉f [m5" jdTʼnjX)| +՜0pUG.JQ<@a@8r&x/.PܼNgZwi:V" .G[!7#\sDY:)# Ӻc_(9e= ]8F \ńOMC}?65 %7AӸDF|⥺c\*]Cʇ=rA U]tNOLS׍MN7ξ 60aK葆w8?"Bj"剒8Jq+[>Q:]ka$SZ_hm&]aĐ9)ʰod`NJNxYuPnpvߢ^-=A*[kjDcMƖ zsNTL׉ ]q1ե"^!{6X'u ^`S`L( p!{߀x;C/9ú\zwNo7%)act&~h }(;6l/;#[hR5vIz)?.s 9 8|e'ېl,3SQܭ*1Vٲw=)J8^띄ONQzeiiV{mZ 7~~<(G}(Kx xa>xO٭4 (:Y'v*Q޾r+ mQN5,}LJzFșWeKQze+8{2ߗ٥ľζG/{k\bbwKUWǮkM ؜06by;o{*.^}b\4j8^ endstream endobj 2666 0 obj << /Type /Page /Contents 2667 0 R /Resources 2665 0 R /MediaBox [0 0 595.276 841.89] /Parent 2671 0 R >> endobj 2668 0 obj << /D [2666 0 R /XYZ 71 807.752 null] >> endobj 2669 0 obj << /D [2666 0 R /XYZ 72 769.89 null] >> endobj 2670 0 obj << /D [2666 0 R /XYZ 72 347.253 null] >> endobj 2665 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2674 0 obj << /Length 744 /Filter /FlateDecode >> stream xYmo0_qA'V]JZʷ2HHv4ݴ?;/R&$"\Ώ>_Ν3)L{|_+&:W_=U}mIDL6'af da~x 7BjIh# Wk | :7r#d`pS|O2evLByEB3vޤ8\Dzaj/]3byC d\Cy1] ɕLUqZfAk,Hަ-ޣ\@@N3,J/lb:82_=35f:()oDI8K2o$$NEO[[kj^]P2 Â- =^%54gxI 2ɤZ2SGӗoX~?ttf^_jĮ^Kl*uPoPZݙTGu(#ԂzʫۆE5f;.H9M6W3nJ~ mJꟼ8AE&UۺkmkӁۄoĶ ߮_';Vwmy=ۄo9GlJ|ݯPY딘*6i۔jVWAUmNp~ۨX[t͜ ,] Q$탩)x1.$%1>Q''Ql a/].;+Tu~ endstream endobj 2673 0 obj << /Type /Page /Contents 2674 0 R /Resources 2672 0 R /MediaBox [0 0 595.276 841.89] /Parent 2671 0 R >> endobj 2675 0 obj << /D [2673 0 R /XYZ 71 807.752 null] >> endobj 2676 0 obj << /D [2673 0 R /XYZ 72 332.983 null] >> endobj 2677 0 obj << /D [2673 0 R /XYZ 72 332.983 null] >> endobj 2672 0 obj << /Font << /F28 896 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2680 0 obj << /Length 1891 /Filter /FlateDecode >> stream xZmo6_!`jc5WtHvKݒ%ހ"-U Ir(R$;N֤@iûco E ĈSaOmjbpALx˃^Om81i G"jq=1 o_/#M*8F2c@rj~rz20|{q|,{;8LNʑe[D f' M@//JnMˆ $F?,T^9XP@)d`2dZ=i X[q5>Ž+ZvlZf,#X፼h;]ܛ a.(&ZfY|ֵlZfK̟ \N';y!6OfVfe4 GfHBġ UE嗝QqwDƕQ5"ф`kݓe ^N{mG[L["]7ڕt?d^qvߠ}$_ݦia3;&_{~3[C/`}O$LHsVWi \_WB^4-څw]P9/7v/TO/O/;'}t?C*8CtEq7~ox^c,L${sM;j* Vr\#mqwS8BFr [H8NX\~g\̸rYi=i^yߧ;ęrZ|$'ۮ2˗m]X0ˌd(di"]ׇykӒ;qZxPw9@8o_Mzٍ]2ԯQtYtAPUy;:T|;[7I5̜% & l4%w=Ī[O'E:ΨQ<*7mPd\A1{Ʀ>΃MV}p2 N!z*ֿ endstream endobj 2679 0 obj << /Type /Page /Contents 2680 0 R /Resources 2678 0 R /MediaBox [0 0 595.276 841.89] /Parent 2671 0 R >> endobj 2681 0 obj << /D [2679 0 R /XYZ 71 807.752 null] >> endobj 713 0 obj << /D [2679 0 R /XYZ 72 769.89 null] >> endobj 717 0 obj << /D [2679 0 R /XYZ 72 611.174 null] >> endobj 2682 0 obj << /D [2679 0 R /XYZ 72 542.508 null] >> endobj 2683 0 obj << /D [2679 0 R /XYZ 72 141.545 null] >> endobj 2678 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2686 0 obj << /Length 1763 /Filter /FlateDecode >> stream x[mo6_o%)R/-R`+auM/i`(6mk%M"E]'6u|;sQgl--l2r.u˅Q |u9_cXqחG?_ [Dmǚ&cb.êg,t"Oך\20WMNt̘-aY )R҅nc'. P 'ZΆ9*ERE4\BEIDŽ_嗀XqXȻ2̅Lԋj^)K5vmؽ],Yx+Id& `->rcyA̧#kp8qȾ!"ƨcmJcaBH:ܩG΅9k<{,|aܢT8 ೘wu9%jTT@KMߢhG#9o`Wfes_(->k{uCzu^QWbVNOFAA`vڹRC"UYgM(BQɜ9\VJl*QUEY10mj uGUWR?(L"ɮUW.] \,E6,}bL1ùaja`~​ )80o8+(&%vb!uʘb4N,vw7œ>w뵲?F:OFV;bVLj:Z)@/㻼 |3CtS:j7 M 37dirUM˕.(,#x3̀ :L?/A<}J mD4uˆ|ur6l.S@2xcOPؑ/$x?4i?.Q nHá 5L Y㼨y8J*QxRqRS! x3k3=\wcN"e43=1`=M?0s!TH}qo:L9)6(9:p${s ^v0 *AQ#,=^D&$x"s;~9q88GWb{w( Pfr6YBZѝvgW44z6o.8N> ي[ ^!ZJ_L RU"4DK^ HPP( endstream endobj 2685 0 obj << /Type /Page /Contents 2686 0 R /Resources 2684 0 R /MediaBox [0 0 595.276 841.89] /Parent 2671 0 R >> endobj 2687 0 obj << /D [2685 0 R /XYZ 71 807.752 null] >> endobj 2688 0 obj << /D [2685 0 R /XYZ 72 769.89 null] >> endobj 2689 0 obj << /D [2685 0 R /XYZ 72 502.505 null] >> endobj 2690 0 obj << /D [2685 0 R /XYZ 72 320.037 null] >> endobj 2691 0 obj << /D [2685 0 R /XYZ 72 320.037 null] >> endobj 2684 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2694 0 obj << /Length 1589 /Filter /FlateDecode >> stream xZmo6_!`jc5KR%Hvݒ" Œm z$9iw|m΋m%"Ps/"޵EkDf1 jjøuq5k9nDX3LŠi֟7֋592m0 DA |oo?v.Esb `ꔗ.ՑCdiowIth`b 1oȲ-"p^Dz4Mu]<4ظ? %KXXe:> endobj 2695 0 obj << /D [2693 0 R /XYZ 71 807.752 null] >> endobj 721 0 obj << /D [2693 0 R /XYZ 72 769.89 null] >> endobj 725 0 obj << /D [2693 0 R /XYZ 72 611.174 null] >> endobj 2696 0 obj << /D [2693 0 R /XYZ 72 542.508 null] >> endobj 2692 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2699 0 obj << /Length 1455 /Filter /FlateDecode >> stream x[mo8ίtJuŵ]]%Zq^AuW(9 aoہݨRq\gf̌k k*\Z}ͦ:Hwtj);0?  7a#/Fo+A@kkQ z0AHw[j&AԶ`hʟ,E%ܽl9"f[&`"#rwYv$EVJ"L>m6_JYaq/XR5j-CԑB4OӚqb?ÁxT5kcq9^^OIb/HrDΒ93Q(r4E {L<<2O2j3fiLa[VgJO?^5BvI/†`pB\\\(b8ܐapuA177r ďW n# 7b)@MKPy92=#Y&ul?>ԯ7:7ۍm+l5A:^%CGX϶Vh_)Lmhܻ glyoYLJzR`Kι&0CC6N8@zqVl6ދ6na€]:%c~D* 6^ΤkYBYIĂ=i dmȀݽP6 @ya g%8sTQq1DB|x.;g6$i!X~]ؠe؋e `e4]Dl$7]9h 0nsZ#ɔ"gro!P> ӢW>}e̦fgrXkaH6Od7M39`Ş5h4ȽrFJrHRV.JKY6W/@$|س{ 4-S1@Z;OjtÃl溎eJi$plk\`ws"XmQV(.G ~xXwje;l竰iZag [䖨ȕϝc/%J kEuʢO~[KbOw~>>/5;,yKae~G4٤l}Q>GXxA=}X7,kbYsD3Xgz#_Q0$~, zaD߶N.NI%RVfYgfyȪ w܄go☳vͅ'zJikIː-OQـy[^}Oڢ\[4!໛ \Hw 3w46LB*D-t l1)u5z')&?2 endstream endobj 2698 0 obj << /Type /Page /Contents 2699 0 R /Resources 2697 0 R /MediaBox [0 0 595.276 841.89] /Parent 2671 0 R >> endobj 2700 0 obj << /D [2698 0 R /XYZ 71 807.752 null] >> endobj 2697 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2703 0 obj << /Length 1460 /Filter /FlateDecode >> stream xZ[SF~IbZE]S!S a27Hr!hW%:%20j-}|{V AZ/.Z;/@K9q`j!W Gt0WΎLcc$^2 mw|\lcuuuxԢ \AR[}Y6u^ԥ(4_ʑ%rtxBPPrAAkJsbnv18Ryf ]VJo)g)^Jݛؕqv6زQ =.;!$\x$$bǖ5NmǠz5 P--/Qq5W?z|>%t,-*PJEb׶PDŽp=U gгަ '*(< #6ɻE?[f=$|i2&;v0RCM8K6{^#ЖhQ#iivl8;\Ѳum1Yd1Z5grn6QdSl72%.MN#V-$2;Kw+ 'qyQDgvp0(Qn@;3fSen5RGKgC[blΣGccc]TŇF*H\w⩟fOK7$Rq 3N٦Q}SYOǗЫH/' f 4j1V 5uqT3=zgYz!lάܬ+HK&-i;]d@3 )dGJS`h-8,[9[5ծL( xb<ζɎ; ?U[le$ k]J۳N0_t8ŽnnG΢pFi[HW{nrd2*AsN7H3UcUAdt'Cd:KJ*نl˕E28 AAe5 ̩&G6jPdޯ^/<#|ӱj i 3b1$I:z5!V >>"WG oU =߿io~8{p~x\ fp)6BF^ ,-+3(tfZնu{hA4`͇`4MVE^пm.pb5Cڵ%({jݦ;Y}H]GzkƑ&(.o&Y$ڠ27j4ISW"F=1 ~U}U*G 'lU, O?`r#psd߅zq (3H[}/ͱD'٫θS| @ endstream endobj 2702 0 obj << /Type /Page /Contents 2703 0 R /Resources 2701 0 R /MediaBox [0 0 595.276 841.89] /Parent 2705 0 R >> endobj 2704 0 obj << /D [2702 0 R /XYZ 71 807.752 null] >> endobj 2701 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2708 0 obj << /Length 1508 /Filter /FlateDecode >> stream x[msFί$|w3v'ɐ:qjad8ZS$Q'w;$c)޾޶N7)Ye]L$C DHtޟwdl|3Ev0.Ki_ ޵^Z[Xaphi!f+,NHL65T aJo-,D%R\ &҉" G7Hs&enCn)`S@ܕk„ddU3) Jȩ.0"|)ʅ0&K&VWSjaٟON>z8Up!Yűx(clwtۗ}Mݣ#>/ %^¥, ϣOX * Q{lv@ùmͽ n.v2I-2_=GlS̥}#6 B*KGba+ 1?rfgsCT{;NXt0Hyl/7tJ8ÓT#WJ)=6ya4d2@+ -p"pt>r7`(K7 ]wUA0}{: k{?y?pZt1A6H([Hߙ;YlSmߟC@Y6=3<VNg$K)Wz9f8)gg^tYN7a|$X8MšÝ|c$`4Xuj0 lIt0OLwԤq$rWjˣt`%i} ˒ehZ'7zn()+D(D}_וtm#_eOP K\[QD*1vUAXY=qbQ\ 0z\uܭkRȱY+,y*$A){n* _un$ز^xUwс~.DJ&@עeM-E=o ڨr7 -d-W(We#cVVZ,kӞf!bŴW^tƟJf#4=5LV: J(c0( *W9vi\`Ij,si1izSM-j0oW{j'_{{W{??.PD4H?DuI.LWEZBmnR]%]g@p,xcj!Mԣ*^w E'MJKnr"wDCVr+&2oaЉx]T$nìPDzu5VЧZ}~P(q-} Ԭ] endstream endobj 2707 0 obj << /Type /Page /Contents 2708 0 R /Resources 2706 0 R /MediaBox [0 0 595.276 841.89] /Parent 2705 0 R >> endobj 2709 0 obj << /D [2707 0 R /XYZ 71 807.752 null] >> endobj 2706 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2712 0 obj << /Length 409 /Filter /FlateDecode >> stream xڵMo0 <@͑56`-Z`&n!X`tM!d ŗ .U\DNT`C.ǀ&&p\~r!7&zۺQ3mUZ쾺JUɟ:/.FYr{O0Q&jeԞM3!]n-7F.cYdj,ࢦ.< :iDb~}M/Gf ^6_!o> endobj 2713 0 obj << /D [2711 0 R /XYZ 71 807.752 null] >> endobj 2714 0 obj << /D [2711 0 R /XYZ 72 694.627 null] >> endobj 2715 0 obj << /D [2711 0 R /XYZ 72 694.627 null] >> endobj 2710 0 obj << /Font << /F28 896 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2718 0 obj << /Length 218 /Filter /FlateDecode >> stream xڕn@ E^&Rq=NlT UfXDd"B۠ϐR7]پ!x-8t570 Y,lu=' v!i˰wHB7~*F^| _d]rXoOp~J%Vb!VTe'q(%'` -<]Jm>Y{K lOC endstream endobj 2717 0 obj << /Type /Page /Contents 2718 0 R /Resources 2716 0 R /MediaBox [0 0 595.276 841.89] /Parent 2705 0 R >> endobj 2719 0 obj << /D [2717 0 R /XYZ 71 807.752 null] >> endobj 2716 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2722 0 obj << /Length 1676 /Filter /FlateDecode >> stream xZo6B"5ˇdžhצM-](P$֠+I~G%9M?x=~;ccb`m_{c5#r#H{lFr 8{5=?!Ϧ1ciи0{d'bM2=.{f?9=~99FLv)Lj!u\, XSv}~4DH(,ˆ &F_?86C\R[)6,ټͫ1?Q F䗖'4 .eKñyQ= lIRʥ[W%|'a43=ς*3?}h+aqNc!X 0a99Y\F2J}pYPb~W ԌQbI8%Qp:JyR5g%˭ݫ 42?]h: ʪ=yy,8,<&N9:.N8 6q3?Ulo'QD_l0cܲR|A(Ay<2BF)YFJfEWQyGȐyVK_hJXZj&-UzPC LCtr=Jl WRĸMsE/iK PAu6$_V2Vm[4x#wl!W}+cتEĀiۖpYBŋN`,BX-E yd\iw. %* (˹euAd&~Aq:ˋ{=dv&$*jkAw@B*nǸkAxڦXd[ߒ~ߢ,=?nWD]+6r6 >uNQ!|٭ةNg{HZ<<!DIDpyBt pގM⺈Zճ @6VBv;jY'gJ*([Aע,u0_gzdQwC沂;<ى͗?eX˄zUpl2GF*NR> endobj 2723 0 obj << /D [2721 0 R /XYZ 71 807.752 null] >> endobj 729 0 obj << /D [2721 0 R /XYZ 72 769.89 null] >> endobj 733 0 obj << /D [2721 0 R /XYZ 72 611.174 null] >> endobj 2724 0 obj << /D [2721 0 R /XYZ 72 542.508 null] >> endobj 2725 0 obj << /D [2721 0 R /XYZ 72 273.052 null] >> endobj 2726 0 obj << /D [2721 0 R /XYZ 72 212.667 null] >> endobj 2720 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2729 0 obj << /Length 1807 /Filter /FlateDecode >> stream xko:{~ߚHgcҝM۽tw~ˢA t]=~@46RUcs||>vqc`ч5<6C sU`Ɨ_3RAqaQ q?#d~Aj 11602=׸n Dڑq9w5'"@)F6ŗ61R/#ybu K:A$n2&)Sj$Lz 3B.^ޫ04 f:zZĞF0 ;.b~J0 O>BO@2@Z5}ZR}E/`,Z󕱸/X^5)0~kN[\A4YȖb+,as/5OcߡuM6%]a#2F.ĮTD 1.h[aĤ:5m柪!b!S"dJ\9Mb u@ D;uNV}RBwUP4a vQ}XOiR`F(F*D"P`$B 2! 7 RBCV7Rݷ.ռX@`VT(.Mu+5L9;baSyfRj˦μqU֓)[$q>[S' a ݽ}<0Fl} ##^|(⌽}naQqv~lX`my>Y ۣbp^C믛E*'s"r" ЪNz' }t-RYwi!R;C' )$1oH TL$44+oS"Ջ*aq)F^Ut$bb4 <$ זwHJ22P^N2Tۏr(tR.:Y|O^MCl󖳢0]Ut8Ӈ3,ۓwxZy$p;{52֓ p ?}n[1@>æ;Ca:✽t|.3q$Y1>R0loh}Pҝ+ Úq@ʰB.JQwޢy)ᨮ(^c%t%!/~ߢ)[vGѐY]1;\U10o'})yPk׭pu ` ϲa=jV4F/V~p,DNlIE!6EmW*ϴDf!Џ+T4CMMrV+s8?g& endstream endobj 2728 0 obj << /Type /Page /Contents 2729 0 R /Resources 2727 0 R /MediaBox [0 0 595.276 841.89] /Parent 2705 0 R >> endobj 2730 0 obj << /D [2728 0 R /XYZ 71 807.752 null] >> endobj 2731 0 obj << /D [2728 0 R /XYZ 72 769.89 null] >> endobj 2732 0 obj << /D [2728 0 R /XYZ 72 615.477 null] >> endobj 2733 0 obj << /D [2728 0 R /XYZ 72 495.539 null] >> endobj 2734 0 obj << /D [2728 0 R /XYZ 72 354.078 null] >> endobj 2727 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2737 0 obj << /Length 1061 /Filter /FlateDecode >> stream xXM6Wf")*@hnoP$:V#K[N,6K@p>ޚ_&?.&/nB1%hFa(1(UZo~}=H?vY4ɫ;'{ 4},0&?/&N(#4"P,We c> Y$a\'ě۽1k f2;%E5LH)`f;b՚z BL1 kLb=$β~4}90mH{BМqP%ŋ.yW":AvoJ_r+şsq̿toyH΃vȝaPVktӟfLIӍ=(l!xk80k3坵wvAdIk7y7fSen\=:1HR/ޅ2Џ pAtK% QD#ç\a" (ʐ )԰SIOK =-VEFGOKH ] $t)m}68n5Wzsss bAci 6 ݣ` q*!Q(¥G63/iQR[ Sbb/p. $鰒>kc _i<=ymx< ƹ9%Pd3"ڍ !/ [u\S/y>SH=BTxk QWaALb]OڄE6qm$œ M6Is%&yd.<5c9O~ܷo@<(ȇM*_7X'\Onh6IFz`o3( JK` H>uQ>WWDDEe׿zBv $.[6KFc.KvBz5zOx5;ԝ\PE;);~8`0׆03=&i/_IRC;& np#F endstream endobj 2736 0 obj << /Type /Page /Contents 2737 0 R /Resources 2735 0 R /MediaBox [0 0 595.276 841.89] /Parent 2743 0 R >> endobj 2738 0 obj << /D [2736 0 R /XYZ 71 807.752 null] >> endobj 2739 0 obj << /D [2736 0 R /XYZ 72 769.89 null] >> endobj 2740 0 obj << /D [2736 0 R /XYZ 72 648.354 null] >> endobj 2741 0 obj << /D [2736 0 R /XYZ 72 521.677 null] >> endobj 2742 0 obj << /D [2736 0 R /XYZ 72 521.677 null] >> endobj 2735 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2746 0 obj << /Length 219 /Filter /FlateDecode >> stream xڕMO0 >fMB|,ij 0i];HD ; q+px&;r2^XP: M^>> endobj 2747 0 obj << /D [2745 0 R /XYZ 71 807.752 null] >> endobj 2744 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2750 0 obj << /Length 1691 /Filter /FlateDecode >> stream xZmoH_tufw*RKZWM۫}/4`Kޯli8NJ%,3. XiX{G5TF&4;;Z4\iWbB3-͠kg u42mbL.I`R_{qOt!s5Pb^VTD*(UBQ˽2 BhYB2N2Jf**Ulܗ}ba,@D5ҋC0 1B077%xn]kvGVS5ˆm`Nކ>DITN&0 @EdR~z&qTj‹ _â|v QBa!}4OzDc-\4)oҤ5,>AY‹'Y UGquTHy,yt 3~x;XeĮg^Gr8&ՙÙv1m;3:hRǓDo\ 9Q!LiȢc*!Yq:K*0s`_F_-%r7Byp>xl' F 4Q]LX&*ဥ;&X1ul= =.„4~Ӳ<Ԧ׊^ eێSæV+Dh3jR !ӧ2M )#S {^A.$*zVBOt ~P"Td-6-4/; WSF&PCP)kpNg02nApA"S,pdٜ ieSnd;YĭDb#('zVf/Z i#wM:أڮv.29f*6%<=>xv@7又žҁ0`Q,r)"YO}5R ܭxŢJ0j"ճa67ǫMfK߇e?]d v["zY!tgTpr J2ZDɗO;dH)'Hհ]=ջۇ%F;o,KZgkpuD1?u=fH[)dW[ Mv]ia3-|rS6|{z4M.r/k<5vvXr>"z|~"~}?Ǔ^ǣwGϏ5*W[ٳ]n\UxSx 80'}(+{ ȞBx'b$ ZdE(Ʈ:QiX"L{#'#?}TZ@2dB٠VP$ 2:K+ M5bPPQ§[,ڰ*>iT(ꢭZD| ި?GPթJB?{UKn~d`}|% 3`dR*M6_ endstream endobj 2749 0 obj << /Type /Page /Contents 2750 0 R /Resources 2748 0 R /MediaBox [0 0 595.276 841.89] /Parent 2743 0 R >> endobj 2751 0 obj << /D [2749 0 R /XYZ 71 807.752 null] >> endobj 737 0 obj << /D [2749 0 R /XYZ 72 769.89 null] >> endobj 741 0 obj << /D [2749 0 R /XYZ 72 611.174 null] >> endobj 2752 0 obj << /D [2749 0 R /XYZ 72 530.552 null] >> endobj 2753 0 obj << /D [2749 0 R /XYZ 72 152.75 null] >> endobj 2748 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2756 0 obj << /Length 1196 /Filter /FlateDecode >> stream xZmo6_A`bc1ˣH*in)s XZL'l); 2t:RƇ4'Fn #ތ{qE|%)8|E\/?SOg7 FzTF%eOP#`D *}{WL0|)z͉@"=#{̚S@K宓IN3Iu S\%coC`}]YF_LTϦx6aGHoضI67 ׋(̊kfz@erJ.LQd≡nuffajܭ+asCewht06<2mՄQڱHZÎ ДGQ&P 2D#"+m[SSPՓ(RrA-.sxa€)/(ā+J#o||܀ NUwT-EDFzk3\G5/6ӧ 8)V 2]F`3*t*NdudOB\pe>O~;_ƧNޞ jy1C3jEw  $Oѩ$N ixL bnB<\đڮQJ :8cm^T=1xI ]D:t("|Fx#F^ĢU%&ՠT&>ƘN~ VXm|.t?И)<RbYPZn[R6u VGL-+*wQg]ϫ FC7߉Ǽ1.g eEl^T&bo(Xր.9j9Jb[GgT)sWtRQXQۮ(\7 D07K L@?"O9pċC}aWR&UnQCFZOʚ4߇?\T,gDECE~s҇ !-0q6E Ũx쁝qUtqYTKW_P! }X3d;s\_ށՍǭg;7eŻڹ[d<9?|-cR`c~&8 y 'a.tb¤y>>O4es endstream endobj 2755 0 obj << /Type /Page /Contents 2756 0 R /Resources 2754 0 R /MediaBox [0 0 595.276 841.89] /Parent 2743 0 R >> endobj 2757 0 obj << /D [2755 0 R /XYZ 71 807.752 null] >> endobj 2758 0 obj << /D [2755 0 R /XYZ 72 769.89 null] >> endobj 2759 0 obj << /D [2755 0 R /XYZ 72 276.747 null] >> endobj 2754 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2762 0 obj << /Length 1444 /Filter /FlateDecode >> stream xZmoHίo1R컽*U]·$Ēs^}gk %` D(/geA{?X4֊)4":4+ʑ$ܬ=0RPP/7ٚb´ӱ l#T u;f\H3MתA\'Lr`%LM$Ǿ6e*0զ3%M9)H,ڛ(4F 8]Jj9ˋQ2gE} Xȼ&3ByV0$$v *lTgtȶVnP`%r Q7@`a.7W]oWk("xizDbt}宁g\,u+TU]qNfS}y5x$cY"(LYDzgO©mY0)\pKQXĄe4i|75|]rZ^ uDrvCoߢ84,ƏV,C+\Z̎ϤoJ/LPm vݟ[vQ4ktnjЖh\9E[8QGI89`ۣ|A:<^L!,`d >yYvwB'ݍJW?v-f0v& cQۣǯecwehžAXng endstream endobj 2761 0 obj << /Type /Page /Contents 2762 0 R /Resources 2760 0 R /MediaBox [0 0 595.276 841.89] /Parent 2743 0 R >> endobj 2763 0 obj << /D [2761 0 R /XYZ 71 807.752 null] >> endobj 2764 0 obj << /D [2761 0 R /XYZ 72 560.141 null] >> endobj 2765 0 obj << /D [2761 0 R /XYZ 72 499.756 null] >> endobj 2760 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2768 0 obj << /Length 406 /Filter /FlateDecode >> stream xڕS]k@ |УNޮ--JL8%S&N F쎆`ec<m=<C+fM|g]oTMbYu4x<"0t=A{ 1vL wZO%yNh#YL+F;.3$|"hBS4 uT٥Y3b GwAh"|tmֺlkXeeSJ ^j^ !-fU8 ;a^nB36vfM/ilzIg \MϽ%;+OG#1VlM VGT.PaNu_#߾e@ endstream endobj 2767 0 obj << /Type /Page /Contents 2768 0 R /Resources 2766 0 R /MediaBox [0 0 595.276 841.89] /Parent 2743 0 R >> endobj 2769 0 obj << /D [2767 0 R /XYZ 71 807.752 null] >> endobj 2770 0 obj << /D [2767 0 R /XYZ 72 721.277 null] >> endobj 2771 0 obj << /D [2767 0 R /XYZ 72 721.277 null] >> endobj 2766 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2774 0 obj << /Length 1918 /Filter /FlateDecode >> stream x[o6B>HIZ뒵zl Y)6hJr{([sCl-,l|~cXM5Nϰ5_,wr=؈ق6F9!e#W'?pF88:iȉ$(#':D1*2V OG.<C/u0'JV?H[: 9¬;tfdr')œϲ)pr'/xA]/pI'8[rhj?fbC s_~ 9dA YɨSN)\ò`B,K( v͠E0sV"6p ծ'G.eA-ZC*o)g%TZ[)j Sz`v_N,02gT/lٳbٶrVP#{hys6qd1W̎W1)#۳s?yɾ7|ZLQQ2gDwӊwpmSzJjaIK$ i*iRa&+[ѽZRSMi+sklHelt*'Q{!Fy1atX&OФ& FIc-Wj\T=5ffZ*0Y,xaF*wND-_) 39[Nk?d㯡NAt4BfKK2l  %   /O:0-{tyTDž-ёN,# aA%-lazTɕWk*O$^G+C^d?=dSB'b`i(Ewt :`Lr_uxrVM\Ůp.)TEW~<MKVSCJ r?I3FJe<Ӏxwa 0,_S%݁y&r#s =B 7!e8pJMA3L$ӳG`V>bAH~ YIРSmG1ߛe'e܌tvז;2hz< sxߖ5D;g%[QqӆAo`kA9,7{[BJg9-3l%ԿQJۣ$}/,瑿|Nsaa6.8!+ }6@jCNi7"Iq}V)Cۥv)S]ox-$yGFhg,gѧa|(ØےTwx8 ŕR~ZI eVYDр^Z%ʡUeMUxu*eߦnj)J]D29s(AŜ j1]-B%\FQ2v vQ_[] G\mhHkm7RAo/Q5K*/̐ m.XdSoHl#;@  J%!n@NR=Zb~'Gk? Pr4{׻AEs$Nն;oRTWc^1pQ\"zb͂> endobj 2775 0 obj << /D [2773 0 R /XYZ 71 807.752 null] >> endobj 745 0 obj << /D [2773 0 R /XYZ 72 769.89 null] >> endobj 749 0 obj << /D [2773 0 R /XYZ 72 611.174 null] >> endobj 2776 0 obj << /D [2773 0 R /XYZ 72 460.996 null] >> endobj 2772 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2780 0 obj << /Length 1444 /Filter /FlateDecode >> stream x\[8~ϯ୉6fiV4oi4K7EJ %d:KMe"k4}?QiTXC-ǕȖZ>w#!Da:-UcTzG~l~Ic &^[C(hadԚXDcKΚJ,t}YH$m9#A! c@M10.„rD@}#t-rn' aOY)͉͂%!؂fNҐ$777IrTN )AMRY=L6bЇGbTޕ}] {_1NJ% RU eϓs}6dny~6IqJ%)YVV%B7U9ӹHWYj\\ ڕM.l29s dRiFVi pC{^{s0Pۜ3Ds}DCt&:9k-?Rb82c5L1A'qXZX$pfCn1+aggW_tR-d#1w{Ƚbg-ƏSu- kMۇ8;1vDV(S -&E꿷P" V(p2~{?_D`VHP_.AmQ3DY6euGLQpdS(|NU(FI0v\{I=28&aһl$m,?$a> _6X._@ݍ/jS9X!LS$8YG a*) xv a2p}?9_JF&ldҾ|I/-l Hdj%*+˶K^, g{; ri]uF4)Zllʚu s1*aN:h D[>2v֢3) #z4tAC_.!s¹eK(di~tg 1<;rݦtzk5!0qRuΡToPRFyIy fNyÑh^Cݍ歮y5ѻFRFk~pt[]c = %mJ^z:Y<"U wЪn7JHեRpT #ȖXݫY Qpb?6|2}E3Kq̬y69 Ƚ."DybBF/$d(֗3LUJ,u2CT~o";iWYoj`J]+y,E'Ϲ՛oK ?^f E{Pse<'7?ie &b:Q 1l4%GM endstream endobj 2779 0 obj << /Type /Page /Contents 2780 0 R /Resources 2778 0 R /MediaBox [0 0 595.276 841.89] /Parent 2777 0 R >> endobj 2781 0 obj << /D [2779 0 R /XYZ 71 807.752 null] >> endobj 2778 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2784 0 obj << /Length 1536 /Filter /FlateDecode >> stream x[[oH~W-FJfqFjmJK7L"vdgQȗT:WcxBL1b_=r^bgqٱ;̵H _||`xHs$|N;>vF0/5u z'ΟK{q9GY*$ s<)z x"ԑEZC;>YJ,ZI} ɳ1\x s(LY~Լ: +1ѿ`AX~&=H_8@sa<a g$&|?a<7Wu F丱AF^[_r5ؑ$ ,Kh3L.z^u<$>N7F IIMbCUO$fH͓'tFr "^ ɜZm}RET-; gybz˄^.xϏu=lA\!,+ zzؑ&Y9&Sg_)#%2C&,-!+I=̓Nw78,+]1Km|:[feЁy×dRa$F8:aY0#iRɏX:L1$& #hW d d^?Sߵi@FTci%Ni+ĒVWom5iӢ&Ы8E0M\% 7S=]Aj \]gOM[vP] E[@H’m HӑN\ONGURJ6>C3+p$`%< V&ڏZM#U$ʅ'H-;Ѧ5?j~#j6Z:0_5q-AbJSv^= u #ځa] \XvH KqFtRG< U2 ,$~pwe0XUNh{[Ӫ/&q+^t(/g>Va*ֹ'goI"/%:B@V61Z}m`zS#p\5[`]%PWNZl?Qu_HmW@PdSoYޗ- d8EAa(u]I0v?d(Llfc4rIz^A6t endstream endobj 2783 0 obj << /Type /Page /Contents 2784 0 R /Resources 2782 0 R /MediaBox [0 0 595.276 841.89] /Parent 2777 0 R >> endobj 2785 0 obj << /D [2783 0 R /XYZ 71 807.752 null] >> endobj 2782 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2788 0 obj << /Length 1523 /Filter /FlateDecode >> stream x[moHίt]/^TJ\6 t✰!Mm^훉 `쐗Hػgvgyv<^Cch@SN㷏1\Z2:7 uqٷ>:1 /`>bP۽Ηq񽁸*h %Եqۃƀ1 cW "meCE:l9Bİ- lHKw" >@Ӳ4a- BY-ߤ6h3n vĘ7sKpZfXJRCT*g.Pȋ#OD]χP(~,=s!e,bd޷ Q8yZ_\G\,{qk#\TȻRUR ua֔[atRpg8Ui pem 8<* 3&L-x54珛Br- Dd#Uzj+p;/Yě&HijAwҀܰ[{ ݩ̸_I󐄴:g_D9-!/:;C&rѫAz<;IFF5kpul0a^F+Eu׬ѵ<؝Z ^y%`O.T9] <] ;O{s;OwFNxXkr[Sb4n$~8;:={Yt4iP@LSMl]h<$7eQa)(id- 41)zC՞mjU^{ۺP#J.U5 qou̫\PDf_<2ˏ3'=|)bnCpa`3fz}F՟?b+BX9N{ [o Ӣ6X"mݵ1ly>}~ endstream endobj 2787 0 obj << /Type /Page /Contents 2788 0 R /Resources 2786 0 R /MediaBox [0 0 595.276 841.89] /Parent 2777 0 R >> endobj 2789 0 obj << /D [2787 0 R /XYZ 71 807.752 null] >> endobj 2790 0 obj << /D [2787 0 R /XYZ 72 271.933 null] >> endobj 2791 0 obj << /D [2787 0 R /XYZ 72 271.933 null] >> endobj 2786 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2794 0 obj << /Length 2318 /Filter /FlateDecode >> stream xZo8޿*ɖwp5_&NgNvCߒumm(P#E{ޜp'I/ҜRyogqkõB%4_'ON_˙XKW^)&5 H|}_Շɿ Yj@1*o* bW޼ɫN1-c!f01ai` k?V"nÙ*#~xs?5SHɩCV}*DrHz2?HiSVpˋd@@Vg,D?PqFr+2P(#"4U~a7Y}6i eVb0rC0ޤn"/$ PIיŇOG@&B7X=,ǴR45CPw@,[)ɢ TPܾFSEm%.KӢ*^rd=,I/ +Ḋfr|&-s,뼹7Ԃ"ڷq5wo";K@!ٍa8D-sr&MB??4NՀ}*e5Go&Y^I擆)#32W_B$6 #Q4Zpfᑔ۬2F*4pT!ßN4 Ykt1B~4.񺡼%kIm4f0cEώɨИtSzri6M+Mm9ch> `H"6)̕ ѵR,e 9]Z;n"$z Ҁy:po)3SQg3$t2ì*|Nf\eD\Tr9|C>{K+ujmjDBkL=3jP~ٲKKSAщ$UY@oF `aLѫ=-Vq3L>Pg0 äQ4- d<01"??I`I֟k iRX >H̰pnV+qg9X=5,*>H\@;b ;s/ʲL+\|N.E+V1o5VkԪo\M֭U`PSg0$”:,GfYܚfUj*ۻæ7i9{кy38ֽTn9ISEB;vڙ7MItUmYxAf ifh~[t[xȗU ɲ$0۪y[aYi`\/-XᬜpV]6]Seu㔙 `3<[sSƆ* 0ITg #"(& j9 8`)x,#CB4nk0@:bQ6 L'؃aoܙbkJ6ޛ64d.u=RVUh8H=0(ա KkԜ?'*?  V~pgLQ8b!g㪽W@`$$Vw!pO)&"[OipdRʼA4i%_<\P@\(XudUfm^x1JtƱ0 u@Ӑ~z[VX J' ;Jv$u'P2(9iז͏ڪ*Z5gӭdeBX\B`VuZO|V|Goގ7EAtD,_K31xYL>޿}Oָ;{AXr {PWEWmim'Ӣp骬`YmZ7K`˴w( ^hzpfXF utgpVydB;Nc۠& endstream endobj 2793 0 obj << /Type /Page /Contents 2794 0 R /Resources 2792 0 R /MediaBox [0 0 595.276 841.89] /Parent 2777 0 R >> endobj 2795 0 obj << /D [2793 0 R /XYZ 71 807.752 null] >> endobj 753 0 obj << /D [2793 0 R /XYZ 72 769.89 null] >> endobj 757 0 obj << /D [2793 0 R /XYZ 72 611.174 null] >> endobj 2796 0 obj << /D [2793 0 R /XYZ 72 345.247 null] >> endobj 2797 0 obj << /D [2793 0 R /XYZ 72 123.823 null] >> endobj 2792 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2800 0 obj << /Length 1344 /Filter /FlateDecode >> stream xZ[s6~LkEN73M6il\١&s74,Ĺ~p Kd;:'6pc"rl:{`ҿ]^ IJ? (|h,`n tw6BX6 u,0_&Sꂏv?> }:WGtQAm0Lj0yeGa*CӱZr$-Z ddK5ZDyuKv}<9M$]fzv.WB˜ ׷`倶3A5 eW Eׇ̔4ְŨd7BoN@6!6k2]B![B2 c݂&uGJ7&} LsE*nCy{oHz{HBYLvL]'[4EQ6 !l6|(RȬlj޻.S筈(b[<ݳ`C~2Xpz!̿oˏsnpkƮܷ Jz]9a`a>͢qX> endobj 2801 0 obj << /D [2799 0 R /XYZ 71 807.752 null] >> endobj 2802 0 obj << /D [2799 0 R /XYZ 72 769.89 null] >> endobj 2798 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2805 0 obj << /Length 757 /Filter /FlateDecode >> stream xY[O0~ϯc+3ۉ{Bc UUHL-MX%0z5_atjuw(GK]ԽAq'8FWgfzii0$(Mإ?nIme#<`C1 9` U#0sU;FW7 %6\fOsP+ (Z.B6KUT&dΌv3LJi,0>Ԓ˒^FWW351< 4l74:i(~@&ain|Z"ԗ4ۣ!hzL-cAz+b`$Gi~?eςY߳% kwBOBuV6!忟eY=pْ+芥Ɇa2Y̜\z[yw/M*)-r: Po~lǭ i0rw ZěZ{"8b NQ$ h$WLXn6;?^iW ;Kn'ǣXxP?>6ikz^vye_vE}ݘ=u^z-,{p{ ϩ-uq SE2$֨T/]ZvT0rPUeFФ㱩+^E#=364&ux߫^P0w endstream endobj 2804 0 obj << /Type /Page /Contents 2805 0 R /Resources 2803 0 R /MediaBox [0 0 595.276 841.89] /Parent 2807 0 R >> endobj 2806 0 obj << /D [2804 0 R /XYZ 71 807.752 null] >> endobj 2803 0 obj << /Font << /F28 896 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2810 0 obj << /Length 1263 /Filter /FlateDecode >> stream xY[o6~[d bIJ% 4e)zReA[U1h in~IܒocnMdLn@ȓL4LEQt)1/E."(,ŵ՝nU&{[-GC;t5ܻ8I5Riίz?n:S1׉Dы<(vO> ##w)sW{*&QKk1[NTMJ="IhZB2ѝ~\Lm_8YxpJח}N4.fVtZһhȪ.RǟPRyFi>-Nql^MO2mpt!Nȍ~]Q)wYKM)^rYKKM'7Ut)|V%v5uč`1K $ev껻M8US1ܼ ?q)Y)*/○ 0UUkKsr _:z˙MTZ2eq(W m} TJNH>]5# dT)Ld6SSnSw" =ي%XגRsghW^q]LUO:] T͍eQU8VX.A4)$x5׼<6t}sZnaɫU b}U4!--j5jim$RtӇ22XاڗYb V,륯K endstream endobj 2809 0 obj << /Type /Page /Contents 2810 0 R /Resources 2808 0 R /MediaBox [0 0 595.276 841.89] /Parent 2807 0 R >> endobj 2811 0 obj << /D [2809 0 R /XYZ 71 807.752 null] >> endobj 2812 0 obj << /D [2809 0 R /XYZ 72 144.14 null] >> endobj 2808 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2815 0 obj << /Length 954 /Filter /FlateDecode >> stream xYQo6~ o$%JbXӴuѬ0XɼI+w؊v y;~'\J^w^;? =qK|8dhpˇmlEy8ʴP@O&㷝qs!%]'s9$D[BZ+pvDF:.#^BC|OO5x"`8A}xF>{g*2Ec̮ 8yL5ܱ p F px)!m~5*[9$~S  ..RPW,Há42H-h iWXW*l c9YeXZ_?~G7a 8в:۹E:*xBQHE2@euGB1k}+BY#bmHxdb`^ÚtdyF|BA@G@;9_xYEEL)$KXIzo|CrV^ӞkRO"#}-T&]+ݺ UE!|i~M)z::]5UyI5B(O},¹&\@amn%_!Z:#;0F6n䔺={zU&%og[]Eӗ*WAI"5Jx> endobj 2816 0 obj << /D [2814 0 R /XYZ 71 807.752 null] >> endobj 2813 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2819 0 obj << /Length 1644 /Filter /FlateDecode >> stream xZmo6_!`bc1CR^5&]vWh[,~GzE 0 QGtGkS k{oFsjkrLjjfQrlۺ6ŧ?Cj_?_Ȇ{927 X.yݔƒч٨G@ֈdm X7]` #ݱof0eB;ԮzRhL5ٸ|_l$f Ymn#Q0o M, [XUl„,D^rN6Y˺@#h(ʸj64q1賘,I)C>BH6~s#? Y|Gqn]!aւ]N4YHDwY) _ >;ɍ.nڝːܿ޺a};7s߽Ao7fA4$.! M%.OmPwΏe;g|[w?aSDBGe7Iy^ /'&"FS ҅ "${n,}1XCp͚*)x7n~,oexѶQMxѽ.;t^U/x'wia(KڇoRQ1j"j=ʦM0`9Wo%^nPbDM]L4E^BA(d&$ L.;ѮL >(^ܟA <Nk|ed# ȫ':%mL,/i-ȪE6Յ?~يʛ2'M)rCUĪ31*poA̓(qD1] @)~o91h#u~ő/A&978/6W7IiɥĶSɈhKTDD @N^JjI5P9B(jL`%~j[+m;x5`Q#HL]jCA9I@J? c\!FRGq$r)e1OOO[qqxRX⺰m>nPd9{EUN Y\ Y4*5mQK~mz cGmu`(jȔZs#pe|m{… p|^AhxONYdDi2M"_<8{J5IJ'(S*M>9#]I csgzF"mkL>vI. MI-YfqPN_ gӥȤO]UeaPOaf ւ"Qk+KI}+Ǐ.v>o9$nY|{^)L$NPaP{\vkElȢNP[:"BT [A!'(4)-a^B9 endstream endobj 2818 0 obj << /Type /Page /Contents 2819 0 R /Resources 2817 0 R /MediaBox [0 0 595.276 841.89] /Parent 2807 0 R >> endobj 2820 0 obj << /D [2818 0 R /XYZ 71 807.752 null] >> endobj 2821 0 obj << /D [2818 0 R /XYZ 72 406.322 null] >> endobj 2822 0 obj << /D [2818 0 R /XYZ 72 333.982 null] >> endobj 2817 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2825 0 obj << /Length 1546 /Filter /FlateDecode >> stream x[ms6_L?OcEA暙&һ&z\b1= .7l6OXKҳ4n h|v9<;ذ, ۠ ,2FƵyyv5rnFnʢς8:T 2?e`sz8h bģpڹCc ,5da0u}h\v@=\dOrkΎ d!B4w9 aؖ څRby\OA X9㕜s, @M* ^ ױz= %Q}wv{&@G%'R {x$ߐkxB$rIjB|F^F[Hꭘ*%~%,M6?곀YKi ](!_ Dl's|.Ϳl{?C~".1, ܄\N"JK jdi[8n}o *`ITP\J F91u\)cRD,E7谘X8 C}L-d~U=Dݥw7Kh  VtĢ6]9mT'))# I +8mHKy АmNNNJ hTl l>]+{M<׮X3Dc)f%dfT,tNWo2jsak^MHMP0F'sFDYtaw#m`0ܯn[rbG(Qֈx}9@o[,zoK7\PiR#&o#Wȅȵ 5zwu㭚@_2Z ؽQ/z_8<`!s_,ODci q VS*Va8"O'(f,͎ϧ>} %GPC?MU;NGDX\Tl%%96=` endstream endobj 2824 0 obj << /Type /Page /Contents 2825 0 R /Resources 2823 0 R /MediaBox [0 0 595.276 841.89] /Parent 2807 0 R >> endobj 2826 0 obj << /D [2824 0 R /XYZ 71 807.752 null] >> endobj 2827 0 obj << /D [2824 0 R /XYZ 72 360.152 null] >> endobj 2823 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2830 0 obj << /Length 731 /Filter /FlateDecode >> stream xYQO0~ϯEĎ-MHb }$:Kæ9qZ- u,]w+ѡD 9w||).ꅨ9?lR_t>Y!LX2 ю=;ӑVm7A99?bTaD,L(М# wq+F#@}n;_\JPI!s |V 07fA\0E hJK%`Bɏ=e8r)DwsYZF0^Z%p&\%cAqg{<|Ì\K8,Q['[5pK2G!~20ۨH(TNXI:پ[mp:Ȭ%\o?7'П(m6w\Ui]ZdZ5+6>5ݲLRj\a4}JDIq> endobj 2831 0 obj << /D [2829 0 R /XYZ 71 807.752 null] >> endobj 2828 0 obj << /Font << /F28 896 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2834 0 obj << /Length 1830 /Filter /FlateDecode >> stream xkoH{#>~ trWD[o%q]fv׉혶ӖCQwgf3SgPϽW{ЉHs9t s8g^LJC3HL͋v*ΕP" 흟;8ǀup@pwvNoJD:_IFxxG-1?+L8/I@C+J5!& X? ,und4" {2 \oVĥ$(aKc\ɝ{\F# A$v(ϧ-1d_+XԔ/O-&S.K`[Kzg[myVa:O&.3&#(w,ݶH#&UPrVj{ԸPə}uRkL67YOJY۱*2qPLg=#UdӚ6}Q^LῨ_5,rlni Q2'I0JSS6ڙŸ"r"7*$@F9Ot(Fݣ -K.=sOdv5avGmg1~iTNfYU1Xt mh1{̭1X7 J6blbib8Dqu<+1v#Dk#[1HNI]BBR.@Zu +tapP:qd+JIQd߰Zj{h8z1?t ϭ ԗ2vAcNHf`L|D:u~@E'~,1Y4T0 1hNn@sFXX9/n ;[3 A+!Fc "HVZkY&:yٸ^TܞvGqӶr4AHD%}1G:5Id7S&n.zwNOŭuqC$} 144_% .ީdt9<+㵲.,K*2RHosm~H_H]zOLk=nMHb Do!-gjS"dt4@Y@A;XJV03edY]Hύ\M.jqv^zE]OέY?߯gbCXOnnQHCD#vUҞl {nSԿ+Sr`P#kL/V̝źFE^ȧyo^/<ݫ*j_t x2]U-ΪTF>55z-69$˯5G .\$S"~}m O_?H BE_*Rb`jk3Q* ᔲ5`ǻ+_iEQKG{;v&PSxTTS$G3)qw/'qmZZ:Z& VjôZԒ6ZVhhm\߭-4QFEoW|]:@~CPuv  `yfhOr7=>0pyD bbX endstream endobj 2833 0 obj << /Type /Page /Contents 2834 0 R /Resources 2832 0 R /MediaBox [0 0 595.276 841.89] /Parent 2840 0 R >> endobj 2835 0 obj << /D [2833 0 R /XYZ 71 807.752 null] >> endobj 2836 0 obj << /D [2833 0 R /XYZ 72 735.5 null] >> endobj 2837 0 obj << /D [2833 0 R /XYZ 72 663.176 null] >> endobj 2838 0 obj << /D [2833 0 R /XYZ 72 583.111 null] >> endobj 2839 0 obj << /D [2833 0 R /XYZ 72 266.274 null] >> endobj 2832 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2843 0 obj << /Length 1358 /Filter /FlateDecode >> stream x[mo6_A`fc1Q4V]O۫,y ~GQ-Yq"KZCH4^yG)"CQEKhtbr4U?C_> ?*Lt'fBK!X`2}Q E5AE ?"t]6k,A1sleYHSd..>l .)G-CntÌR,` 1ɪĄM:zf? B J)\!k[rǎFo P`h @&&_"{q/H嫭0+o3h0qH Bv{Xqz\0 JiP@tC̳bEbb92Lh##[_q ƙp 2,n }J^ D<Ë*m)M&V^]faK8hsĀ0BX =U6ZxYWV_`ja }l<m`K#Kf/c㾐lSw>K\0QϠ k^((a`b^ qrv;vڴd6;-Gx:ܙ$-w -°dBRoe}䜶M8h^8NDa=\D!K)P߻1_ i ʷY [U wlϺ8L)]8&AH'jN'{ gɹ^NլR~k΋}?_6o$r҃Z9b5=>^zi|0ڢ-KH{R6{Y.kOm8.)~b/ σ endstream endobj 2842 0 obj << /Type /Page /Contents 2843 0 R /Resources 2841 0 R /MediaBox [0 0 595.276 841.89] /Parent 2840 0 R >> endobj 2844 0 obj << /D [2842 0 R /XYZ 71 807.752 null] >> endobj 2845 0 obj << /D [2842 0 R /XYZ 72 483.236 null] >> endobj 2841 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2848 0 obj << /Length 1567 /Filter /FlateDecode >> stream x[mo6_or㋨ vkbYUא89u{A^ƥLKR4%`?v֗R"!=!JGmh*ze,ۑA NLUXUqvvVBXfD M1HR  KȢbt%ue7Mje1bAS[XqN\QqNs/$RĢαfRyp o.4ɕ+DaiڂDŽ|<(HFI*}>JnySO0ꨑ>bi*ARdfDL!ҾCp${Lu>Ifv1Hb]u̺Bf7."ip2r |0^pG,d`,I`aր6MBr\+l+QpPmNgn|8QKaM#Ly6KŘ(,?Wʯv@=!@Cl)qK5+,":gqfOm2֎ls]nIe'5U~IOZ֬kzurYG%{ӵo18_B?aWӈ(&|Oo CnTv[Rcjknxl`jNj3Ӻtka;uPLiנِQr O"g\pc*2:J 098 KP#qHg'@Gh|:EGXGRz(je&ihPic9x)u3]zic1neq..۽mV,ݓw{zAU]3W,Հ,Jj{g*K)1u}Ud&X< x+ME<_)P=VL>ZJ);ܩfDD~(ݡYƟbϭd:YM2!´בCr/KB+KA~9 V*?ԟo>_2E~} +[>3֑ lhÚdQ(hXp˵cAGnqBk{M0Ⱥ׸x'˾W>X̪ak]l]Mhz$z7hf׭^@VF9ym*keJuq˰w4+M@n5Xvn`0&=Bot}1SR،T}=⚎%[RP՟ endstream endobj 2847 0 obj << /Type /Page /Contents 2848 0 R /Resources 2846 0 R /MediaBox [0 0 595.276 841.89] /Parent 2840 0 R >> endobj 2849 0 obj << /D [2847 0 R /XYZ 71 807.752 null] >> endobj 2850 0 obj << /D [2847 0 R /XYZ 72 669.336 null] >> endobj 2846 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2853 0 obj << /Length 1583 /Filter /FlateDecode >> stream x[mo6_oq%)Q/`+nmyXtmL4YNi[$F2s$xM'FF~kzzs%\mq׬m*} &nՄؒS:Pȷ_-fFʨp,pAR9Ω/k'AYjG9v1H#kjs.۷炵h?rs~o&TECo+xse.t . Y;aa M\ Zԕ[Ca02RWq>WA+nJ]\W|Dѽ-r7GAAQG1U1 oߍT%֞'u0K&\CԴ hYYi&yY]b[6J5gE5GV $H&J3%` 8[%:".vaQ&QUaqAF&#Y1X:$ǧҥBZ Ι"ÍעsWD" ng- *0DHb׎2E3U>0pq&1!`/b[>j}f#0Iw@|Bb/.U(gխ:][/h g|b 3BDOZqV 2&R*:pl$QbuE*׊P>R Z8Ms^T}+:7ږsrn{#w+`q17KvrLbCo8PnWk.&D !X.uz+}Du"=kYCZgÜrTMxlش^-Vש3YH-e5t2YY6UMw dV|p Ykȃ9¬@%+{-M:/"{:O|7 L"Zd_cQ2L]7FTR>iw-RRkBzpƇ6.o@RΟ6|_.}Kz){=]v'/NӧllrnkԯQ5[~omA9Y 3 `Kos> ͋OR]?; >HSxb_h endstream endobj 2852 0 obj << /Type /Page /Contents 2853 0 R /Resources 2851 0 R /MediaBox [0 0 595.276 841.89] /Parent 2840 0 R >> endobj 2854 0 obj << /D [2852 0 R /XYZ 71 807.752 null] >> endobj 2855 0 obj << /D [2852 0 R /XYZ 72 769.89 null] >> endobj 2851 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2858 0 obj << /Length 1479 /Filter /FlateDecode >> stream xZmo6_abc1GR$h9, Ţozqe]dKrD4Ħ(9xo4ASD/Ͽ2 ,Y\a˳0@݋z}z$e$fI|l2B9&ٰCA m̅Q_#-OzTlN1sh{˥HSd%dp0@x!aXg& sJsͅm]~qkJ4T rs<c+ r]鱖T`ا . '!Q>; "Wm[.vT ? e`_qOe6 L*7'èA`_G`t)+P1șm8; 05 H%oڱmM2I71^)4ta/'I:Vj\uoeTgp~Q ^K1@92,۞M`Avq8иw7v=FpF+=+AK.Ci.r}yEk&6 ^"3۰Շ&]Q벋+:(Lg+(3JeLAe γֳ9r So h$dm[rg%b{ #qflDw@Χ&;T$3pVAy>^Jz&ߍGΌL4ZJJSJOzR~@XE廅~frCz_ mm$f6gkLwX9XW?)^I7M!ca s6'1?WQNLqt4p&|/Q2-29&~!ÉIT2sfcR'94"YCej$9iۨY#Sb܏qo=]ߘSylz7k<'rMHТ=kGZa3UU/ay]!4?° 0֬R jqfiQ'--I2:bMHE' V5r~Bmz(4 dC%`$p( _]+xn$yh6|@ح'Vzv6Yr }>lEJ6q-I)޵>)1[JˣL`Jb}?G:g~{7x{ϳ·gO_5wk|SDëQ;TG@9M2d:{ّ>@g`nS{aSis}t'AM?}dW̱UlfuIu9;"֪mώO%}k8**c}u߇o^ywۘ9~CquS g`$cݱ:P`C$U,Mp=DU endstream endobj 2857 0 obj << /Type /Page /Contents 2858 0 R /Resources 2856 0 R /MediaBox [0 0 595.276 841.89] /Parent 2840 0 R >> endobj 2859 0 obj << /D [2857 0 R /XYZ 71 807.752 null] >> endobj 2860 0 obj << /D [2857 0 R /XYZ 72 438.752 null] >> endobj 2856 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2863 0 obj << /Length 1692 /Filter /FlateDecode >> stream xZmo6_o#)Q/Z+7`ݖf؇4dɒ'IwQ%Iuy<yG9Sԙ:yk918'NGċ<2u܏~y0arB%*+gHLjJ/{C>q罫k@Pősg/aGѿj`͖ "0$~FxKDĸqpজƬ]55&nt_ o-df6(ayKra+s_;7@z#a,}%k5iq!q(Eleûo!rPHVX.'^ɤ Bx2g^ iv(25Òj4L[YXZ6ZF _8+UHb-șqNk0P( <ζr&Jj2h~ # Hԧ47D cj'lU["¼0mR%  XS #8 V@p'Hn%f"h & G:Ub22<3욯<֬rYAH H~m8|J )d]]/H:X@VC}@ Qrtd*$TF_vX3;M=cL#i8\/_Ni!pqm)x?X}!Ai63!#H2`i!urk#%\XYKfі.ue %T5jB[̐mk4ifE$h p/`/4R-=0p/{: >vzBOH'$ hSapA~,H$_1{ij9=`AXm8oU Oc{-'y<@k&z@oZ"<=bblZ%r#}asWr\ 4 wW$g$~WBkZ؀wP$1je>Ѝ[ |ܫjȴ<,ϻUe:9RbT֑gO¸UYmyXymReɨJ9BitAdz6.6^BO~աcE˧,FTW!$nwƪ,ö;Vm-B}l=](k_wo>DA7Ak̬'b3lfB P:zdk5h endstream endobj 2862 0 obj << /Type /Page /Contents 2863 0 R /Resources 2861 0 R /MediaBox [0 0 595.276 841.89] /Parent 2840 0 R >> endobj 2864 0 obj << /D [2862 0 R /XYZ 71 807.752 null] >> endobj 2865 0 obj << /D [2862 0 R /XYZ 72 648.66 null] >> endobj 2866 0 obj << /D [2862 0 R /XYZ 72 153.819 null] >> endobj 2861 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2869 0 obj << /Length 1416 /Filter /FlateDecode >> stream xZms6ίL?AՋ%7mfz7nr/M2֘;ۤʲvdvWգ#4EÞd]^#%6r<s z}ݟ?L!O3g~Sw"<,0.w^_vv(#"h AYg8"(`诼 قbH(GkR)2ŒrH"bhQ p)C) IL8-dlv&Vz[8 (tUt9q0oغZypA vmTh*łzK8 g1aˏ\uTCs\ , n$"Tq$SM~cfՑuokNnS==Ɠ,{f? H5rDvqȚ3QoPO@ ܐF#GD! !5M &6|Hnjԉɺmvl:Kjo:BV$5fE 69/w& T0O߿>;|\osZ}ȭ֜o,>c-_(RQΏH%8Q ȣ{j8O O3TV>*jH=>Nl >Ԇ0xjF$pλI0aS?,W/gl|ikQpZ\-jE-K$eN0PHLZnhFDjHG[4.h~άPDPDQ6*^k: uF5z-1=}ebsK1 Tqy(N/ /T؆j 24;(QeL|VT*WD"0b3|Aԭ{soEw k3& lGI$WNYDaqk/֎0+N`4yj En{QfY~ңnl24 )έ endstream endobj 2868 0 obj << /Type /Page /Contents 2869 0 R /Resources 2867 0 R /MediaBox [0 0 595.276 841.89] /Parent 2872 0 R >> endobj 2870 0 obj << /D [2868 0 R /XYZ 71 807.752 null] >> endobj 2871 0 obj << /D [2868 0 R /XYZ 72 455.139 null] >> endobj 2867 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2875 0 obj << /Length 1483 /Filter /FlateDecode >> stream xZmo6_ov#)Q 4ڭ]ݒ|ChW,ezIH98zKӬAϝǻ6at{qppibvr9u_e^+5w,BB`>8;8t+lm!b3YaÇF&wjcX 0ɟE%Kֆ .i86Cf]%x %԰ <;@jAcWr se9NRȌ@Ҙ9epUL?ώ<-Zl_e )E 8?HPZHYP k|H9@Ce}~e [=wl<>,UC? R?AjT.Y:g]JZH}/)i#%=D نjC&wӜ5rCDAR̀z`6iTZXq1`colk3*!RRn T@TKMM\Q`7Ѵ"\0ԲbymX^(sGu?VKnQVTU%dՉ1MJQKGEI BYfj$peãhNB=nүqj|" =5:ꀲǪ{r%%^ \6K]0Hׅ P&re25L§i*3y2OR<'S<- } HD'Q"Di BYyX(Ii# ZE,ޗ?<j>A"(EP}vLUM@w b˖}")1,MݗFZ>]a_Z@8SUGۢtQ :RZ¦RV3}; ; m Zt*%<}GSJ TQP,2chL߾1"Y,@JJS7NgFR/` TY+\I+nYO8YYYꦀTUAxe c|.}ӵx݀ÑYLl#· J~Fv), !J VwmN\ }3}>rn!27˂ȗ,H5ʠM>xǺ$Mq\-mg=Nlb#b5&0~ aR=A6kZ!m փgU#Řͱ3%CDS\RQ/jd]ya>#y9%Kv a+'27.cn /YF&$OFiFk"Y26Z׃l0JaFoZd{tw>#12P~oS1h͎FFQ(#^*G{ ;v-wBY_[[> R:׻e& AϔJC7wS.h?( endstream endobj 2874 0 obj << /Type /Page /Contents 2875 0 R /Resources 2873 0 R /MediaBox [0 0 595.276 841.89] /Parent 2872 0 R >> endobj 2876 0 obj << /D [2874 0 R /XYZ 71 807.752 null] >> endobj 2877 0 obj << /D [2874 0 R /XYZ 72 437.057 null] >> endobj 2873 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2880 0 obj << /Length 1393 /Filter /FlateDecode >> stream xZmo6_AKl "bȆ6kc` P- ˞$7˿QlI(q- BD=G"h:8Ha3 >*[*&4 .$op=ʟE-baX5{ĝD"ߥ'U 1L2Վ6>ijkP B+ `huuttTm{djcpP^>2.Gy? aiC60aÂGq`MzCgzg, oLejZ'N6G nV&m;,JmVBx#X `<)+,nƺ#s,!r$E,*˔hNoݎ endstream endobj 2879 0 obj << /Type /Page /Contents 2880 0 R /Resources 2878 0 R /MediaBox [0 0 595.276 841.89] /Parent 2872 0 R >> endobj 2881 0 obj << /D [2879 0 R /XYZ 71 807.752 null] >> endobj 2882 0 obj << /D [2879 0 R /XYZ 72 395.363 null] >> endobj 2883 0 obj << /D [2879 0 R /XYZ 72 279.41 null] >> endobj 2884 0 obj << /D [2879 0 R /XYZ 72 163.457 null] >> endobj 2878 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R /F37 944 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2887 0 obj << /Length 1705 /Filter /FlateDecode >> stream x\ms8_䋝X^ 3י4kk^B?g+.ƽ?uc3ңvjZ_ڻ[q64 3z8ָi5[wWnۘWɉ3M`$e7xܱ>4.]A %Pka5G MC75Es&=WJQ}-9}Af`H8CF 0R!*Q1ZKEV jPP0S#p܈c ̕JESBь:&M͛Xe)31N\9NRfs%o lL A ~KaV:Jpr% 9):+#*"tR-jΜ@Svl&U6fǵ Ç^ S}+ w;Ns!Pt|$}Ǎr%IK TT/P/[)Ө-/ t\I"MsNk5fk,Us&*+n9@wlj_o;tp>&a)_g%[SJ,]\x ,C̅zH qDPAaN}wK.db /+%e@*!CzD$bD%Ft $ 悮8οGͿAL|nzࢋW˄u\tw )Ϻp%KlIԧ]؞:N?}7кRO7t I͓p+2p>}xn]\'pg]~Nΐ\vZw% *Ryi>LY}}Fi 0ʗtˆ/FAd=yo?n/p,L´іpOqzA%,O/(buvpZD taS/d۬:@Nꀑgh?x'AvR䗣s^N5TN{D;^o&,9#{nƁ+}[\aɻ]ӽ޽{ѯѧsdۥp˺,/0l6ꭋټy|6>]}!C*!1B 6L X[rdȚɑ1-W=> endobj 2888 0 obj << /D [2886 0 R /XYZ 71 807.752 null] >> endobj 2885 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2891 0 obj << /Length 1434 /Filter /FlateDecode >> stream xYo8"Պk;qTJ6v]C(%fKvӴciOwjEkS koj/MMD rlۺAysܤh}//g|O\>`>F4ciYm0ĚwFck_V3`Q˄@~a._4MMٴIt20ێn#h lB5ad9[!51ETl57B+k{3k@o[vBMJr0# 6 `=??OݔBskN bā7i؟W? Q#hN + D~L]$N;?>n7+/3ˇI^|w'>N<5]QH a%I;[DH<K{2`ߧ_:dw^"*#92. 4[w^kWmF]5ݴzEEu}7ڗFq5izQվrBO:Ũ ب,I`0܁9*5d\I]NB oH^b1ݐC ,{|"i)cϣpx#VỸpY dSj s)H/ X>h U6+1!ǡ^qDm"ws~n!<g(S9?[Q ;#hEEeA=_JPy1~Y.&\K9)ĸA 9c9E!|0"dZ<إ4 솎 ]Cq8[s?2:ǤsZw'gh7Mk%6ˌI &h#. Kd[)&ٚ{gH) ?^xe 1ƷT,3sA-$ sfLI$@fYOr±8CݫUCS7o кl|-Ilb]? |Saab{UPC hEvܯt-2Ko?|o=0 5[+^K*Kg`ɚڬ(5o#w>ˀ+ O',eEJ*ǰҁзC> endobj 2892 0 obj << /D [2890 0 R /XYZ 71 807.752 null] >> endobj 2893 0 obj << /D [2890 0 R /XYZ 72 636.459 null] >> endobj 2894 0 obj << /D [2890 0 R /XYZ 72 399.104 null] >> endobj 2895 0 obj << /D [2890 0 R /XYZ 72 399.104 null] >> endobj 2889 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2898 0 obj << /Length 217 /Filter /FlateDecode >> stream xڕ;O@SY,! Q"!.JaD F# ΎVIBb*nc@E|cbe?#vyemuu﮲>H2$UIGW*Gk2a݊J9$Usj"v[,ē?U/W_qk&8sL ο{VrdӦCL5^:moO= endstream endobj 2897 0 obj << /Type /Page /Contents 2898 0 R /Resources 2896 0 R /MediaBox [0 0 595.276 841.89] /Parent 2872 0 R >> endobj 2899 0 obj << /D [2897 0 R /XYZ 71 807.752 null] >> endobj 2896 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2902 0 obj << /Length 1523 /Filter /FlateDecode >> stream x[msFίopw2PvIKxTWtH`Ŏ;g|˳ϮeAt"O(I4 [D 5ABR<1SHcBN=AAR]}\vo۩\(f2'ǚ淟?]_Ib&bL`ٗjk_#rnu$i]:^޽;>eq#3E \X[&rY%>ek))WVźi++hL(]Ƭ a&y8 h.3Y@D fD&)jTJT!  8߼ySA(,QA%-Rsd4ؑATrx `@ΥÜ53'hICCa: U0T=rG~}}y5/{Q}f=́>Zc"Dcز~> endobj 2903 0 obj << /D [2901 0 R /XYZ 71 807.752 null] >> endobj 761 0 obj << /D [2901 0 R /XYZ 72 769.89 null] >> endobj 765 0 obj << /D [2901 0 R /XYZ 72 611.174 null] >> endobj 2904 0 obj << /D [2901 0 R /XYZ 72 506.642 null] >> endobj 2905 0 obj << /D [2901 0 R /XYZ 72 377.66 null] >> endobj 2900 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2909 0 obj << /Length 1548 /Filter /FlateDecode >> stream x\[o8~Wmzm'ΥR+mF3vƢC e'6 Fun4 JCDh'8F`xbC?xqEt˧wх化3>?uQ=9x{X V!5u0C,Q ֚bHtM\s] q' P 5 uD[7Ϙ0p6 h12b~mԄmbPem`\h9A(AUr%1CP TI#j!!IUQcS*BQmQ} 3%MƸp+*>UaLIhl;4#_xWI?0&5{W Boq- *.f6]r&5h'\1{ :~qކpڟέcqk﴾aW;|]BRU 1o [1a!%@ b36F dJ"QauO7DG\/yCD "yjB}Yb$y +Dι]&b>jZXuJNT:~(Uz.g/DZ5rN՜S-K6_W_Oɵ(bi*Tf 9υb>`M}Qµ@MbwqB=SZV=È@ד]j4]'4L34x07wsC%T M!H\q)ʝR]:;%MiU9(8 &2<6+h1=?Я`&nΗ!X"JCHΆ֎u `'/AabT:q hcr\) yנ.7ʅ78A*ooo1CIv0Hvjطug3z٭ᚠ9)ЮBȔD.NJw[sW6iN(I!{^jD=yõ-x󨺉S@Rjlx "Man| ( Tq>_C@t(FPaPWP9)@n:(618+'Hdm2NOHNH's*\ enXem|kT@cX^:݋˭y+ l rajY}Zq YRu0oW+F|\p(Q +@X1wʾؼ.A`}LpƧ'`oYKBaY|̖76 /+J.hJ+; +.]˙+ƮyE 沙׮S3@vQu'_<;_\ҦٿxǮ t8ѪAN@grdɂ [=Gܚ77?rpeJ4 <ey2xyǿ3?SυS)L"#u-@MM(HH]`ԟ.'Vmz endstream endobj 2908 0 obj << /Type /Page /Contents 2909 0 R /Resources 2907 0 R /MediaBox [0 0 595.276 841.89] /Parent 2906 0 R >> endobj 2910 0 obj << /D [2908 0 R /XYZ 71 807.752 null] >> endobj 2907 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2913 0 obj << /Length 1585 /Filter /FlateDecode >> stream xko6}%"%XHI%3 RcJr(JÞm=xG_QK-_4"fb6n>Ϩi &˹x,N=' Fhw9} 5Pۦ6#alK{Lf5DMc_)DTSB0on!!/C݂kA)urj#LHD qi_6bdiI@JrJr CWʟ3d\%P3s .ah'Y^}>@)*T $_?X$ c;J 8<4)f(3|{e,cŰb-8*/OA g.yGdkMJb@\6A2A3[͂2Lp-"bDaVMCTAmhOLZ9*)ni@b#݉{p)ou%$JI ʟŽE!5-؂L:7wWw8qr&3 d0V=:﹩1/|- e7w"oB!͇,|GTYa9%rVD)+6ڸ ]˿%:+:Iz<(p=7j: = 4z>&.WĶqqZ?bZ&0ZY_x՟Yc gl"^Li#Ofb&hdi"S*lc c+؊ysl[1֊bMa6ű=qlOllOt#e*6E,3GQ?s{_C4RSQ4?4rmD(R}ҧX(J3 N>o䶒l?0WJm *\jOt endstream endobj 2912 0 obj << /Type /Page /Contents 2913 0 R /Resources 2911 0 R /MediaBox [0 0 595.276 841.89] /Parent 2906 0 R >> endobj 2914 0 obj << /D [2912 0 R /XYZ 71 807.752 null] >> endobj 2911 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2917 0 obj << /Length 1769 /Filter /FlateDecode >> stream x[o6BC?jQ-ٖbIXcTSYN~LJlQ,x݋K3t[]˯4pBzs:ǧEVAӉēZ(MƯعHD4 FVqi|k ;Dv}ݸb'F, ;5q9A86a8':s[ 081 H: j%!b$44ղ"LHq9rQS Ѩ$®\R97 @؞ ۷or0S80(z>r5 ddm@a|S/` %><)Y#5F(L6k_둜5fDӱF4Rj#^Ekba,(tҙ(s!<<-#"y|ibIHFZBuBhrSy$Lf "\<ߎ@n~/A2Y>/-#}y!ġ)enn -ǎLNLF8%V$ ̉ema DiY%Tl_ Ň8"i'4S4@N3 h"iiCJ糪eWe=S]=+;WfZ.d_st:%VDy bK>`ň\B Ϸ |?}q:Y >i8o˝ ] ft-hdB݆/oi^sw켠 C=P=cC=P}z,OoQ%s%ixEv֏ypnjqIg:ym,t3\4JFI%d64 Y3x2C6#y}mA#Iwrl~-;PK(d,ONJ\9,gfx;K9oLP|vS۝} &XՖG哅`> endobj 2918 0 obj << /D [2916 0 R /XYZ 71 807.752 null] >> endobj 2919 0 obj << /D [2916 0 R /XYZ 72 218.919 null] >> endobj 2920 0 obj << /D [2916 0 R /XYZ 72 160.691 null] >> endobj 2915 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R /F31 898 0 R /F37 944 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2923 0 obj << /Length 477 /Filter /FlateDecode >> stream xڕSMo0+h[[Q"Emn(rK%5l*UN |1E? 9͵PAJMy Yn4 VK̐_/Quun{b7qwaTQWѧ"qc!RgPA+`T~OY-SiEleK~ JȂ;!Ԥ` Vb Տ"Pbc78kBh6[2HxFs)CoO謏!^H,b~ݵO1g9{ouݓ"l]Fckp尀dcZ<8 \-Jq^ )spx.Ei.r밈m\s]/9&lHP]FMsʾ_a> endobj 2924 0 obj << /D [2922 0 R /XYZ 71 807.752 null] >> endobj 2925 0 obj << /D [2922 0 R /XYZ 72 707.967 null] >> endobj 2926 0 obj << /D [2922 0 R /XYZ 72 663.677 null] >> endobj 2927 0 obj << /D [2922 0 R /XYZ 72 663.677 null] >> endobj 2921 0 obj << /Font << /F28 896 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2930 0 obj << /Length 225 /Filter /FlateDecode >> stream xڕMK1sLl>**-ͭv*춵ްbxg[v0Xe!>S7;^,aYn~y7u;V(P,R< I1 mgAHÿfńoT endstream endobj 2929 0 obj << /Type /Page /Contents 2930 0 R /Resources 2928 0 R /MediaBox [0 0 595.276 841.89] /Parent 2906 0 R >> endobj 2931 0 obj << /D [2929 0 R /XYZ 71 807.752 null] >> endobj 2928 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2934 0 obj << /Length 1328 /Filter /FlateDecode >> stream xYio6_Ab1 nm]E{ݵTRwxȖ4Őoo8G)"u O(  I4N; J-"8͎J@A{n:wv^}BH1$)4Aa@vߜ] ׽÷v8 xU㈺7?2#;a?`.10 I rrpa_>Eq ) 5x 1Ko!eH!D 1L랭ԬDPZb 05< LZ[e&@2&Li\K*% >qL'RB%>[TtWt'yX2 s=l1K]m,/aP]&k2Yۨ!hlQcnR` 'YE&"Š3G 2V 11ҝE ?I_=iŊYErýJGf6qOw4KoƋ5nTE Fc8X8+|vgP&z Mlr$?IiӶ^`q1mb E{+5^-(x1ֻ8-jAO#gYa0,?É/?U?^%gײC-Jݣ;5OM3%X)m-9_eڡr-ehdIV~~nmpN(ܽY<Ȥ-J2>%<"y*ڧ&ԋ~̹)ѿZ!!3r-s W lQٯBP,iT9P_/vU:Yd:W1YAq&v jߍ cPՏ(+]}iMi[Vm+]XI%V',j JsHRLnsskG]xMOTꢈzHeYH錓9Ke~9Ha#F B_۬؉_RzvY vk;߬uqb٥rc~-t 5-aC TjAz yE֗.I66;Ľ}wg?F?nY Rqr"`y.n nXu/Oߣޒ݇ԇ#HʦkEetH{ȗO R@ F{IV2D^p מ endstream endobj 2933 0 obj << /Type /Page /Contents 2934 0 R /Resources 2932 0 R /MediaBox [0 0 595.276 841.89] /Parent 2939 0 R >> endobj 2935 0 obj << /D [2933 0 R /XYZ 71 807.752 null] >> endobj 769 0 obj << /D [2933 0 R /XYZ 72 769.89 null] >> endobj 773 0 obj << /D [2933 0 R /XYZ 72 573.542 null] >> endobj 2936 0 obj << /D [2933 0 R /XYZ 72 396.97 null] >> endobj 2937 0 obj << /D [2933 0 R /XYZ 72 267.988 null] >> endobj 2938 0 obj << /D [2933 0 R /XYZ 72 207.603 null] >> endobj 2932 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2942 0 obj << /Length 662 /Filter /FlateDecode >> stream xڭVmk0_qKhԓ,vaemeeX y%'&ju= |>+Ar-4 Ɛ H%YセHÏkP.FO33a1?u[35Ҹda~p}D#NL)f$ K ]33jz]3B?)29Tax.s+%+RW&G&TþBK3ve碚?'PLٲ_uE_y*b 0ee1!Egf,&p{t4OUEDh%X*ꈐj&U!S۶lrڥJPI \Dޒr%i5тXڦQ2A˶gd{⢣zL4΁Ib4%M>lIP5eǸ6˺׸u/A;=}tx#ө9d({-O=&b[6D&sӅ~;?<{Ai8;),NﻇӴv:m֯_ :w/[0n{55-J=|nr {,~V睿 `ne r2i6&hƘ=_đ endstream endobj 2941 0 obj << /Type /Page /Contents 2942 0 R /Resources 2940 0 R /MediaBox [0 0 595.276 841.89] /Parent 2939 0 R >> endobj 2943 0 obj << /D [2941 0 R /XYZ 71 807.752 null] >> endobj 2944 0 obj << /D [2941 0 R /XYZ 72 769.89 null] >> endobj 2945 0 obj << /D [2941 0 R /XYZ 72 652.328 null] >> endobj 2946 0 obj << /D [2941 0 R /XYZ 72 652.328 null] >> endobj 2940 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2949 0 obj << /Length 1450 /Filter /FlateDecode >> stream x[ko6_AK`H=() H.1]a(jÓ<0zĖ3Ǒ^{"-RMA'-jQ8D"_r"ضWH7(VM>lz5h)oU f*C1MS85u :s㏃y9ձ3U\Q5uhW&i6ZMˤkUF RMˡuڤ}?^I xEhŒjQZ"R9x&FnE!BAfb2喹nlL(F4놉UC+L*2* c J DY <@B [S$^ ú]uFH{GAXƆ*v6_<1"Nbi @:G4ЍH gfkZSP ~* j0R]d -Rh[bjV,"*eQI| /ߟĭ#aY2AR6Kle\i=i]T)(v2]GpvpPʺe)%:0?1#EbJ֙џ|(ڏL1Sa#L}IUBRށ:^N8/qrR2ɪ$trisyR}\^.7K?#I(>c?tlĢP`/IazG}W)q(y[enK8=a"y86; z]E %=B8q>qO0(vIP{r꽳-iaz60䞛L {'᧮R~8mG"FQ0B/*YHF}TE4ni|%S*S'to LO?˗\7]/c476.!!^"yu(6loc;IRwbAp: %*ViYUslGb %£ګI'iU[At;oy80$_ !i+ [Z)_zi'Q b)vWáspFK?nfeK.嚤}  fL.P -o~^ttFwßѢ&[ǯlܙ(o~jl.yuǝ쌪'&kɴxGU {dO0 Z>.d"zGE(e8m#_5(u/` @/H.L{dUk^0 *WW1j& x endstream endobj 2948 0 obj << /Type /Page /Contents 2949 0 R /Resources 2947 0 R /MediaBox [0 0 595.276 841.89] /Parent 2939 0 R >> endobj 2950 0 obj << /D [2948 0 R /XYZ 71 807.752 null] >> endobj 777 0 obj << /D [2948 0 R /XYZ 72 769.89 null] >> endobj 2947 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2953 0 obj << /Length 2065 /Filter /FlateDecode >> stream x[o6B* #RV`֢Emi}ChG$C$'pRE:;mh+ޞ|}v0-ƆQ~# 8E|1Ӈ!^tUrlSnOnSڸڸiz![vT&j^b"VX'/4|`􇈨,^/_nJxtb(k;،bڌ$ Y|D{I/kVS?aߖi\p^mb*ґcpUCD FiYi-ʎCuUbj1Uu붫Ds΅Q>j`Cug}?]F;%zjgW)`r;΀7ͭ__ؒόC)A[q*XOOcW|iŲEGFj tXFN>(mOҮԡ{@M,L*t ҟޛOGd\s7r7JvNJݛA/yC-!eVY`J$;j>Zۃ—M*T;īm [ȴl 5TƨsL{O fc(d%-ˮg3̏\^qrcԭ*<ög^a;X :K2%_\!Whs `B64uPԜ,¡sBL)QšmnQ W~d"],4* !OEB4oӃ\Yw󂅏w!Ro:7Pia{W!CB8NYT^ "#)Y[ӗ;rʏe-J#e &o%%A:˽{Bj瞅1S2mAV$P&{(sP,F˭{]33?\,7i 2,=:X$Z瞃ζl:raw{Ҩt>6gZE7'2aD=G瑓ApҢ4 $*KJ5,yh+P_(,JVϟ k+DvEճD K.ŖmAKFlАQ( _>0JR?ի JaYi^,1[yZQJbQR|]cF(rmC(aߗVe TT 2gU#ʏEhx[/A@`S@fU+d/s! ѮRR܈h8@Aǂd> M!NͫhVTo:Tvl3WTi<:UK-n*~( Gr@l;:A ,1vf>]-9-)`I_z_('z5&LO1dS_ce+P)~U@uN'Np_stxŴi@c5 ;A1F݄&';gIɡGyz\$ i!ˣ߼ʬgMwTVY|ظzо7!d)W LL:0({dנe&z/RNv!tFQ~I-D^?|AKMÅس ~}Kq stBlCGk~Na endstream endobj 2952 0 obj << /Type /Page /Contents 2953 0 R /Resources 2951 0 R /MediaBox [0 0 595.276 841.89] /Parent 2939 0 R >> endobj 2954 0 obj << /D [2952 0 R /XYZ 71 807.752 null] >> endobj 781 0 obj << /D [2952 0 R /XYZ 72 547.716 null] >> endobj 2955 0 obj << /D [2952 0 R /XYZ 72 478.74 null] >> endobj 2956 0 obj << /D [2952 0 R /XYZ 72 360.716 null] >> endobj 2957 0 obj << /D [2952 0 R /XYZ 72 286.384 null] >> endobj 2958 0 obj << /D [2952 0 R /XYZ 72 228.156 null] >> endobj 2951 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2961 0 obj << /Length 1977 /Filter /FlateDecode >> stream x\[o6~О ͋K6h]ajLӦCH]lwIFQfssD\5~6Z԰t !@ Qr׼}֍&cEV޳ Y ytPA9iPSW]*6@@LC_5VT5vƟ /)I*GY3k萮n~EF@@Xdu$: "ckY5D(?W0%SSKIgh@/d&U0EBBݤr2r\%% 5fr>rwA|^"/µƭE!(R艩4ehL*H2Г>+rwU10ui}q=eJAk.b]1A`RBrsLڹ?觉>aXd,Pg-F& oH#)LT1LarqC;A|,A)k$qp~, T3YqQ#q#,w&{!skUiEQ h~^8t;T2o2Ky.Xf--*Ӏ]3 #(ylʃ!4`ײʨyerȀ,ZT;Ͱ~V~sx)D"Cg%B}Lcs `9s7+p)UKr$':Kqr%ݕ_n"jj*2!xD^%J즌ahCh,ڎ8Z}PsVLʢgbp3R,dw7JIBEZVMjVnKJ;umf}ej ֊'24w鰂eMJTTSaT:iPޏ< q*H@\j729s*mag ;Ωs* ;Ω ;{L8#O6>IO龱.Ʀn.bO8l`K>@{{{08d"k{k@V-V=1&JͪTU0ߔC*ZZg6vx|:3hʣt5{; r)#7A"sV?K BxZH$/ua~x/:_p_+ cg[%%T ^I8 D.rp.XkerVCղoKB##:ms:柝xn-AlMl?3L3v,v/ [IGԚ Y[t Y|]yZ3 U3~L*Z_d_`^Is|5\QK "+ Q'V`ɉvW |/(EA*qޑJh 6X*ǯ¡9 g`]IJl|vLM`h(QoP{'1mZc'?Ś}ǔP6!l:m(7Oӆ濫> UpQ449pQpʴZgrQKp>H{qJ*V哳82۩nnlٍ2t`DbWa:IVra"$c"a0I/wLKd"25!"Im^"QH /YO.X{xV%t΢Siz 9P,YY+VJw ɯcWtoe}~TUvfx<$儌 ޛ}*Z,dT wK 876]+ 56܀M9ccp-t/Llh pj endstream endobj 2960 0 obj << /Type /Page /Contents 2961 0 R /Resources 2959 0 R /MediaBox [0 0 595.276 841.89] /Parent 2939 0 R >> endobj 2962 0 obj << /D [2960 0 R /XYZ 71 807.752 null] >> endobj 2959 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2965 0 obj << /Length 1172 /Filter /FlateDecode >> stream xZn8}Wpчؘ; 6KjŸd++iK-ɮol5g(B`x%Q t$@ REA9pf;~( Zٹh{ iv[B[ rWuC77A*55cH0\>P1U xlUIPP` P"\fDyEP 6KT @*t.Da29N'c jA I΋(eKR5).{0Q#rRsmۓa$h`Onp98w٘].Z8>!./ѡŵbV"?l ^g:TBa*'cVE0^+QHn]Z8M9iUF^jmo퍀9GOAqĿ~A} '^DWy,ݝ㽲Zׅr_!+w7uy)%񁯇; /0s޶NIX9"msJBW j`T~@q]5b|rA8r>B{f"qѹm36NY繭VXd4B!T̶dM+!BII_)ͫkz )1ɴǥ?[2ơU\JA};2C]d;ҁF8 -{âbALV+Kr ݶVL_e2T!;Mӥ{,~!2)w &'NwF:e8WfIާ?ۂoўLtW$3C+p\0j)K |+鄹򰸀Mf5sC! 3eML 0a 3Lˢr#y4O6P̲͌Ɗdvcky ֽZ=Է:lj5{]Rp> "&Œ@l]ϊ\ +L o8gӋ'g;5|[ЏFp`XXW#olG:xwxd1IB-|I} fdBK029eB8'_T 8!dȔ1mn[ĴrM*6f"n! endstream endobj 2964 0 obj << /Type /Page /Contents 2965 0 R /Resources 2963 0 R /MediaBox [0 0 595.276 841.89] /Parent 2939 0 R >> endobj 2966 0 obj << /D [2964 0 R /XYZ 71 807.752 null] >> endobj 2963 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2969 0 obj << /Length 545 /Filter /FlateDecode >> stream xڥTێ0}+F %S`chW&mWLE%kpȆUH51,P & ! b%1!$12ĭC/R/8^@ob;]& UTRKH7f>OY׺2 'tCk~SRsJPqu-ekӶMQlLrLkg|4S:njӗz]qxhn;[;"Mkdz ߸m*G[5ِiC}.9f6=e6j9Ki* >}s/CXuV _HxLLҺKI4CjoHю1? n.L)W脨יPJ!76^> endobj 2970 0 obj << /D [2968 0 R /XYZ 71 807.752 null] >> endobj 2971 0 obj << /D [2968 0 R /XYZ 72 694.627 null] >> endobj 2972 0 obj << /D [2968 0 R /XYZ 72 694.627 null] >> endobj 2967 0 obj << /Font << /F28 896 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2976 0 obj << /Length 229 /Filter /FlateDecode >> stream xڕN1 E /1'VB<]E ))0D ] ak˺ ᚝vzE> endobj 2977 0 obj << /D [2975 0 R /XYZ 71 807.752 null] >> endobj 2974 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2980 0 obj << /Length 769 /Filter /FlateDecode >> stream xڭVmo0_ ߝLZ%hתt]i EH tj~α$Br.}s%wπF 'FS\IR2E)EvD*hsr| >I3" OJOMg/iIRs5HS@oui= Rj@s\ 9$ ᡎhxggK`F)p-pQ^;2*=-h^Y,7ag̓.n״Hb$;Ut# GժJ>!Dx٢tBe.a@wgn;qXl1(eѷ4l<[6o4=+kX{<%y'ݛt?hfHL" k &BƉD>f*,"ԼD@{z p%2%w B+]Cg++Fa82@v8< ]4D_*"U endstream endobj 2979 0 obj << /Type /Page /Contents 2980 0 R /Resources 2978 0 R /MediaBox [0 0 595.276 841.89] /Parent 2973 0 R >> endobj 2981 0 obj << /D [2979 0 R /XYZ 71 807.752 null] >> endobj 785 0 obj << /D [2979 0 R /XYZ 72 769.89 null] >> endobj 789 0 obj << /D [2979 0 R /XYZ 72 611.174 null] >> endobj 2982 0 obj << /D [2979 0 R /XYZ 72 542.508 null] >> endobj 2983 0 obj << /D [2979 0 R /XYZ 72 446.402 null] >> endobj 2984 0 obj << /D [2979 0 R /XYZ 72 399.955 null] >> endobj 2985 0 obj << /D [2979 0 R /XYZ 72 399.955 null] >> endobj 2978 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2988 0 obj << /Length 228 /Filter /FlateDecode >> stream xڕ;O0wmcP+!Vu"%i ķǭԅN$ܱY`7d %ajr~ *_=K!S^wE=>ŏT J vSyU56B;ZB X{_ǩtqK'GH_rg5RTkZI~)(C(*Cć8FQehc9#9jtq~S endstream endobj 2987 0 obj << /Type /Page /Contents 2988 0 R /Resources 2986 0 R /MediaBox [0 0 595.276 841.89] /Parent 2973 0 R >> endobj 2989 0 obj << /D [2987 0 R /XYZ 71 807.752 null] >> endobj 2986 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2992 0 obj << /Length 1617 /Filter /FlateDecode >> stream xYoF_q>Zܫ_*R5Uf Sץr#f0=ݴ}gP Uɘwˏ3Aw_Z~oQ$"!!X0qb I1sOU֏C> Wb SA;N.y ̅Y|c\~ueovv="rn}uѿ<38{/ޔzsdf:ޓ.vT I$A(],)dyV~O;i쨼W]*;E\ٽ;~WyLݹR6h͒<Å E f+w(`xKNz܃p8u; @=I.#$Ȍp ciD}Rۈh@K۩e zʌ(Ó6N\ǷFk6:Xp-c<]ut{΅VQNJUO? XR c"⾷("b^D5N>x$(-UV)51> ͭkFk9<\/Q&^{~!)$qaRwO\$]hWEȞ>}( b2LyɹF) F% %CA8Q<.iX 5JQ1vC6ex}\6cHxeb#<l K )AzGK9VhXqX{`rypQ'Tja# u}jm pM-h9qϭ<+XM֚d w X, j)S `Db,;4ԨcaUj+yFrsƟϯ̗؛u{o7[+- 쥐], _6 Lm@6{8g |vuNAô/j Wv+ڰaZb ꘀ'3kp\}$_ۻHM vzaq6'M0?]\8KǠeV1r(Q=)f#\foy*[-UU΍Jb7AB'uWh=YQl(|9Y%0*JCsW/N_?;.NN;X4|ѣҁbqND$?112h1wa.ѣ >?oGLE] zAB؊b3/yëUa:*;@=VxqM0OIO~;_0B]nmV_#CBFk \'_J@rRƌK p$q endstream endobj 2991 0 obj << /Type /Page /Contents 2992 0 R /Resources 2990 0 R /MediaBox [0 0 595.276 841.89] /Parent 2973 0 R >> endobj 2993 0 obj << /D [2991 0 R /XYZ 71 807.752 null] >> endobj 793 0 obj << /D [2991 0 R /XYZ 72 769.89 null] >> endobj 797 0 obj << /D [2991 0 R /XYZ 72 576.385 null] >> endobj 2994 0 obj << /D [2991 0 R /XYZ 72 414.147 null] >> endobj 2995 0 obj << /D [2991 0 R /XYZ 72 283.209 null] >> endobj 2990 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 2998 0 obj << /Length 854 /Filter /FlateDecode >> stream xY]o0}W "5m֪զuI,qR$>R ۪i}&@4]16\fs@;>9ᔣَ0`FNxsuQ4&eGGE_OMeqB0ä3\jڍ (-y64Q`rT,\>k (%3T4z+\`&96aV#*5`6`ر㡰RLVy~٘29h?5+(ʹʝ똘k63zvGvaP@Ü:7`w.5S7}?\n'f!r*.;&*7In8$Gcu9g^D~W=_.B@otKz< IIQ1I<OD_x ^Ɓ.q2w H9Isɯ0p V-N> endobj 2999 0 obj << /D [2997 0 R /XYZ 71 807.752 null] >> endobj 3000 0 obj << /D [2997 0 R /XYZ 72 165.226 null] >> endobj 2996 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 3003 0 obj << /Length 1485 /Filter /FlateDecode >> stream xYmo6_A`_d,fIQ eibYHMRIn^&qlC;2AsDϓw|컶&3Ęƾ$B֧{s݈pI49cW"A.t`fap6|PPGEcD;c.7E0|}Sc14c@v'[mɕ.EX Bcm0Ŏ'ĊL? |1OaM?!ַi)bpx&{ /0mm;FT4v(K-ݺiދLA65WmX Gs*c#nrJ/H;n`pD7y6vu[  [Gwy&yb m'}+{yBy/^yK݊"0'iDadž%L9HEcsxton,8-u=Mt͉{Drmqg"'Y-oKYyDkr*oaѥZA#,nETG:E,ك᧏W^s,$n(cMvdYŁ+*/o3LduWeþ\--qcc cjg@`4Hh(k=OYJggUS%qIDlUȾʣ(cnXd۬B>`V>T,tXJr%gstZ@k?b+ANJ/"(}5&W.;ńa;]YRKW p֧.ez`2c0A5%£60LL&>f[[i1F;|m*@^kZES C5R~~yc>QׁI;飞nS̩oh\>\QS[#*_X%f ,oqdb~U~Vj5ڤ mH L Vp9ѮMVV閙x:62R(og z`$R5𩅭za,0 Vl_ ;dK@/:[@YP\c̤2Kn BJ\Y_"DvTaںh7;!&)lHKzuYyz75TC&j>6/=nQJskDkf YÄU~0ȋW'u6٧'g+ؓvlAŹgk1571V!=j)}N٪bo^ˮU >.SPw+ϭ܁+F( b]Г:B~y= XdǑ> endobj 3004 0 obj << /D [3002 0 R /XYZ 71 807.752 null] >> endobj 3005 0 obj << /D [3002 0 R /XYZ 72 769.89 null] >> endobj 3006 0 obj << /D [3002 0 R /XYZ 72 719.524 null] >> endobj 3007 0 obj << /D [3002 0 R /XYZ 72 661.353 null] >> endobj 3008 0 obj << /D [3002 0 R /XYZ 72 603.182 null] >> endobj 3009 0 obj << /D [3002 0 R /XYZ 72 545.011 null] >> endobj 3010 0 obj << /D [3002 0 R /XYZ 72 486.839 null] >> endobj 3011 0 obj << /D [3002 0 R /XYZ 72 428.668 null] >> endobj 3012 0 obj << /D [3002 0 R /XYZ 72 370.497 null] >> endobj 3013 0 obj << /D [3002 0 R /XYZ 72 312.325 null] >> endobj 3014 0 obj << /D [3002 0 R /XYZ 72 243.175 null] >> endobj 3001 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 3018 0 obj << /Length 2000 /Filter /FlateDecode >> stream x[[oH~W #ٙ=R*V۪vM#`jD٪}m($Ma<;׹x+ \W-otoxjs7}F7IQ29m"a&JB[Wo_5>76qkjAƝ56l@Ƈ_ 2CCCKȮO\f:}= ϸႂAPã 5IJ^k5 e,FێGc0+ _Pc]j-Z>ֵUh=9GG#uh'L^QKq5`gGÞs~2k0J<'0R.ǝ?-|ƙP 5e<_F2P[+Sieq6s jx[s6gđΓp,2}_" ,Is9hc î ;G{dXƋ,6bDT-fV!cvK3CfycpRAbZbf <!ѓH"0; 2:m<pe7otXDJEvRUY)-̆]+8m?9%6{i?[S>țOK;G}-n` "yǛDJlbWZYQ.);'%v$U- d5ln^.ةRlҲ*:J p25O{:V.u8b;.zҢ٬UAbZTn~+p>b?8Y8O֕Bׁy9Qb'ãf6+G1Q.I=Ik G?UfS'fɏX皱%Y;remBzSղ˨X嶸%=dܢ%ON6&E5z5t.`&Dʛv%mw:+ҥZ;~4j痚'[67kʜjPeb'fl:/< d^C!xs/+tf3?tf{DJ3TղrPW-o%JY]fyj4 j4 llpl`R^ԢjwpvEX۳jS%TI}TũFy,l4&[ϼmϷÃ'M2'+rST|" X˥G,^Y~!Syiб wwzgpk6'[mP͗pa=_@TKM2UT  endstream endobj 3017 0 obj << /Type /Page /Contents 3018 0 R /Resources 3016 0 R /MediaBox [0 0 595.276 841.89] /Parent 3015 0 R >> endobj 3019 0 obj << /D [3017 0 R /XYZ 71 807.752 null] >> endobj 3020 0 obj << /D [3017 0 R /XYZ 72 680.295 null] >> endobj 3016 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F51 1170 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 3023 0 obj << /Length 1349 /Filter /FlateDecode >> stream x[[o6}[e x k]oiPx/>RbKˢ\LGw!!pxu- O|03  `0?O/7p9p1MOLEGa7rW=n(hy pһB`?i ]kǐ_]sb`..ޭ!s(ߍ.ꑃ $VDvA @UvZ@mt;Ns$s.XQ]J-ֽ3^?Pܸ (yTCu<<"g" >B2F}7WMADkZO<O{ lf=K1f*8aһpO׻\}A+$IX(ɇӑEFb.jG͙AT!)d ( W)d~< ˯PHm*^PBCZbZCۊ{~~^J$Т2ːd>Kъg -d~_[6T\O/,ݫв2 l.JfR;BKwRcqebo eTFu.zp: !ռDHCe)%r-pg&IxRVjtm𵵃b g < m-6pkL[y- {_CyG֒5ykk̝̓Z_HJaz4WX7+: + t!C|.ZT}B*dg5^BCۮ8ϞOF.O1ʂFS¨0dڗ+Ӻ=dxumѾց|iixă1hP:Ө5dϢ#d6ln,[cCv`\6(u̾;Oq(!寅'L9įi9XĘ} 1T Do> endobj 3024 0 obj << /D [3022 0 R /XYZ 71 807.752 null] >> endobj 3021 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R >> /ProcSet [ /PDF /Text ] >> endobj 3027 0 obj << /Length 2209 /Filter /FlateDecode >> stream xkoB>|״wM~p V TIʮ}gwOѶdnvfvf9sP_ϾC'"}| P8K1 t?bQYWI}ka_UR %g;?QaGd8%uѡDDsg6'32G7|g |I*X;~GYP' QM#BpOKQ3.\ۂ9?@@k%wBpծJ>k@f\w,@3J"=̙ѓf/;=krٓ^<$J{Urx7omæ!-{vzJ/4461azh0dG r.,T+Lnm\ě*1J{TJ0UGKU` ]FTa 5Uvx;ҍӝ*Vnq1c{cw9>40(( }ѵj.򬬊e\#FK>֨?Eͷ0Nl;Zl.@3+N-qātmNfsv3ޫEYۉbΘtU6)BǷ[tVJ7ϔ 9(68ilw"jR5] Uf$\CkwwzhwίQjzGזY/u+ pA:N2;Dvz WG9I{&F= <ɖJOR-ר7k(d2Kê7h\+BXoۻۭ{: |cVCI 8 Z\11C' 1U@c D աl'\ ̾,ЈXdIz` IGSY!OTIw;pG(Uib:b*&e#ْ0F0M0.XUoF12c䳎I=!68Tf!F=l1xxݚ5ڴ8ձf['iB*HyL2{=ܬ2+{]n!YD_UU$ڭJ!79 pG4Y&ؐ{' t7I9,KJED[YH鳩иUT1? 7:qE]"Jºђ@F !f]4 HaFl!٘q$VFr]#oDse9> H %F̞Ռ;hjc+7cNXBL`y)t wU4hõ ^|X!''@> #3̴|&4:rM]?Ӄ4]%* *@`ÇA8#R73,ră4T<_7!^+xX/ wG2M?>K&݅b@&{} ֋@0~^T..!tϷG!eM>1Bˆ0qf\Okon}6mZ(hg[_V[uL jzV!A,Qb8] ڞ樒qkOohx&|"x}`* T'O41nU'ޖo˺9ySN<:P}v&+{OqZ`.?wt!'#Ä?pyo8s$) Hp#Nv4%CR*F>]f岅Fʿ<g Ogb7.ӊ5~5~8 Ǟy?o}FYN{yDM > endobj 3028 0 obj << /D [3026 0 R /XYZ 71 807.752 null] >> endobj 3029 0 obj << /D [3026 0 R /XYZ 72 680.689 null] >> endobj 3030 0 obj << /D [3026 0 R /XYZ 72 620.304 null] >> endobj 3031 0 obj << /D [3026 0 R /XYZ 72 502.3 null] >> endobj 3025 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R /F51 1170 0 R >> /ProcSet [ /PDF /Text ] >> endobj 3034 0 obj << /Length 1384 /Filter /FlateDecode >> stream x[Yo8~@% [-P- r/òd&Mif8SAWwߧ_3=JWx=jڨxmTo$+0|.6}Cs<ܳeeLMp2)Ώs|D򧻩 _ endstream endobj 3033 0 obj << /Type /Page /Contents 3034 0 R /Resources 3032 0 R /MediaBox [0 0 595.276 841.89] /Parent 3015 0 R >> endobj 3035 0 obj << /D [3033 0 R /XYZ 71 807.752 null] >> endobj 3032 0 obj << /Font << /F28 896 0 R /F51 1170 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 3038 0 obj << /Length 1382 /Filter /FlateDecode >> stream xZmo6_A`,c1 ,@ֹkvbӎr%9i0쿏"%[]*I5l$s{B` s-N8莀Eؐtg\heg1 @L/-b jnsK(VmBX`4z}R Hܫ`2 e׍(3u Aiړc +«0c$%Cl+[6C;| ¡?!bZS mN.wvhafܵ2<%- M^w^YйK=ԭCy<(D q#$^bw46g<+qݮE)1Á*/aekyӡnI"qUaˑMi6Lh!y!biӂ oTE:NbմUIƁH/rY0+ռ ,[Z~ S3$ɟ; [FcQuzzZ dvɎn^h,>rIgb)+o䇊ryd LEN D H|ڎ2,{"Y4Vw/&[=' S]#|ry^yE:V~e \BV@i|qZ s= ''jy.B.S55=U7a0sI%_Hlf\󵆠[CjTKf]Q85ԶY8 Nf=8e~Tr|"ȩ7O/ ph#UAJzڣ-$,"#ẙ16Tǖ0ZJ&"Z =Ƌ>%,.cKKj,ȁ=\KLӕ~ҋG7# TI Koy%ˎq+._|/L(UboHQì9٧797gk<|a& h5jj\թ$ѝ&ӤjAaG:%;/x7'7{ezlb$ڬf%;u y \I88&w7X^_cluRkA7%\.<$ʓ뾓E09s=`qR-(3/=Y+{ٻ(^̥fRz^ZI U)!6q!ƛ[oHop KtS#rdYzPrtNG[ endstream endobj 3037 0 obj << /Type /Page /Contents 3038 0 R /Resources 3036 0 R /MediaBox [0 0 595.276 841.89] /Parent 3015 0 R >> endobj 3039 0 obj << /D [3037 0 R /XYZ 71 807.752 null] >> endobj 3040 0 obj << /D [3037 0 R /XYZ 72 769.89 null] >> endobj 3041 0 obj << /D [3037 0 R /XYZ 72 719.468 null] >> endobj 3042 0 obj << /D [3037 0 R /XYZ 72 661.239 null] >> endobj 3043 0 obj << /D [3037 0 R /XYZ 72 603.011 null] >> endobj 3044 0 obj << /D [3037 0 R /XYZ 72 233.175 null] >> endobj 3036 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F51 1170 0 R /F52 1171 0 R /F53 1173 0 R >> /ProcSet [ /PDF /Text ] >> endobj 3047 0 obj << /Length 1015 /Filter /FlateDecode >> stream xYn8}WM2PٷHjY/eC]KR˱]`$hj 5"nt-SHc-D\b!_+G%W>'WW`/ Ͳ~0Mn&1/F OWϗ3jݵ;8u3]LptgBrTB"Gg!SbKʜ󤧽L!ᱸqbϥa`'nBzAĚ^yˮp^M |vI^{.Ye5zvޞN _-O|0 0텒V&oB0\bZaR-Q!Ō7 &PܥY&3 esyU85jL[5e ɫqZop^t J3W7p^z7&)i<~rL+OL9HˍzG2Psd{C>0?%:NLrI3[䷴+pI|`֞T47BKI6AD4iǰ2_-Xyzw%Vz*f> endobj 3048 0 obj << /D [3046 0 R /XYZ 71 807.752 null] >> endobj 3049 0 obj << /D [3046 0 R /XYZ 72 318.651 null] >> endobj 3050 0 obj << /D [3046 0 R /XYZ 72 258.266 null] >> endobj 3051 0 obj << /D [3046 0 R /XYZ 72 200.038 null] >> endobj 3052 0 obj << /D [3046 0 R /XYZ 72 155.747 null] >> endobj 3053 0 obj << /D [3046 0 R /XYZ 72 155.747 null] >> endobj 3045 0 obj << /Font << /F28 896 0 R /F52 1171 0 R /F31 898 0 R >> /ProcSet [ /PDF /Text ] >> endobj 3057 0 obj << /Length 221 /Filter /FlateDecode >> stream xڕMO0 >3}hmڡjԮe!=QH\vz> ]GvyGK W[ZiYvh>tm8\%uHehPT۸b3_ Z mڬ@ H澃5{f73ɞe/& ") 78c 0]Vp+i|ʙ;Q endstream endobj 3056 0 obj << /Type /Page /Contents 3057 0 R /Resources 3055 0 R /MediaBox [0 0 595.276 841.89] /Parent 3054 0 R >> endobj 3058 0 obj << /D [3056 0 R /XYZ 71 807.752 null] >> endobj 3055 0 obj << /Font << /F28 896 0 R >> /ProcSet [ /PDF /Text ] >> endobj 3061 0 obj << /Length 1426 /Filter /FlateDecode >> stream xYmo6_2|)@dAҥ@,uI(k%O~GV,Il'K֭0 Q4ǻ$A7bv( cȓLs~IPA m5j\A1$[~!Q$ L(]ԏйI{P .dz|sz |{KE9$o&s{Te`! #9ju?}GqQfLм kTES D%v$`L-cWGE4Ӟ8|e4J P8LLG:Ofyhq92dIi&k>cX*0dFWF0 s6lYt0z$4 pvb%-8Wi9Slz}cFYaBB+% H M^]i\^] -T2\+D]4Ju&w2 Muqd Eh@'㑪s};fhmfhoArBklSPy΍cfӛQuE5-*6媨!T TQYǙ[<ǩ;iO1@n3`W!+r,7関bkFmY\8l4[>T#T|U=iy9j/w~O{*]B2*g d"9qZ5&y^`9KJP]$\a2eQzSCR hNf 2_`bIj_ {zDb 2Lh+#7\` endstream endobj 3060 0 obj << /Type /Page /Contents 3061 0 R /Resources 3059 0 R /MediaBox [0 0 595.276 841.89] /Parent 3054 0 R >> endobj 3062 0 obj << /D [3060 0 R /XYZ 71 807.752 null] >> endobj 801 0 obj << /D [3060 0 R /XYZ 72 769.89 null] >> endobj 805 0 obj << /D [3060 0 R /XYZ 72 611.174 null] >> endobj 3063 0 obj << /D [3060 0 R /XYZ 72 520.714 null] >> endobj 3064 0 obj << /D [3060 0 R /XYZ 72 504.704 null] >> endobj 3065 0 obj << /D [3060 0 R /XYZ 72 486.771 null] >> endobj 3066 0 obj << /D [3060 0 R /XYZ 72 466.781 null] >> endobj 3067 0 obj << /D [3060 0 R /XYZ 72 448.848 null] >> endobj 3068 0 obj << /D [3060 0 R /XYZ 72 416.978 null] >> endobj 3069 0 obj << /D [3060 0 R /XYZ 72 320.873 null] >> endobj 3070 0 obj << /D [3060 0 R /XYZ 72 157.252 null] >> endobj 3059 0 obj << /Font << /F28 896 0 R /F31 898 0 R /F37 944 0 R /F51 1170 0 R /F52 1171 0 R >> /ProcSet [ /PDF /Text ] >> endobj 3073 0 obj << /Length 1431 /Filter /FlateDecode >> stream x[mo6ίG$nmڪ{i[}bJEBz;߱@^4*5؏<> #;?]u~(b ]!!/19Р{{}Dlj0M㓬Bu8%&՗/W:"fC`HP_<ѓ5ABR<ctCP)2=n. NJr)="7j%2$ ÞP b *)QƑPZƔ a&yht9vŞoF a"LJɅ3S+Zx0m/3ٙ5Z Y:X'YU,`R t q  gQ꿉$(N\Ǵ4*X"KxhkFXS$`tbV2%a|GPR ]Jwe+mrP i}ڶ$ ҃AO}MfxRp+g} QsP+{܇~ْ]*nb YR&Mj*ކ.BGbZ*ߊ_ۨT5{_Bӣ$~IIK`(xkIst ^FV+9b/_OY]ڮڹN%uV ), Z@H5H3ŭ#V /V dJ0xV0ˌ%%0eۼP(K}ȟa|`URFta$L'6}@4M=%NWxc*>j&fo:rrUza.c_rG .˟)S{;v8ϭ?Nntˮ t4%j4v!+K}Qe WfVO8X`>)>}p{އ}Zcw=ڤr9u#lǯ&-Axy$^&eOIͅR]<$qb^t 2^X;BovL+2!7:a|<jX٩mwvSL2m6Z5O3w%Jo;ގsT^^w// SVq#$$o