pax_global_header00006660000000000000000000000064146524433260014523gustar00rootroot0000000000000052 comment=f1dc7bc86fc4d69faddd79ed2804d98c11802ba8 tinyows-1.2.2/000077500000000000000000000000001465244332600132415ustar00rootroot00000000000000tinyows-1.2.2/.github/000077500000000000000000000000001465244332600146015ustar00rootroot00000000000000tinyows-1.2.2/.github/dependabot.yml000066400000000000000000000004771465244332600174410ustar00rootroot00000000000000# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file version: 2 updates: - package-ecosystem: "github-actions" # See documentation for possible values directory: "/" # Location of package manifests schedule: interval: "weekly" tinyows-1.2.2/.github/workflows/000077500000000000000000000000001465244332600166365ustar00rootroot00000000000000tinyows-1.2.2/.github/workflows/linux.sh000077500000000000000000000021551465244332600203370ustar00rootroot00000000000000#!/bin/sh set -e apt-get update DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ gcc libxml2-dev libpq-dev libfcgi-dev \ autoconf make flex libfl-dev \ postgresql-12 postgresql-client postgis postgresql-12-postgis-3 postgresql-12-postgis-3-scripts \ wget ca-certificates patch valgrind cd "${WORK_DIR}" ./autogen.sh CFLAGS="-Werror" ./configure make make install cp /etc/postgresql/12/main/pg_hba.conf /etc/postgresql/12/main/pg_hba.conf.bak echo "local all postgres trust" | cat - /etc/postgresql/12/main/pg_hba.conf.bak > /etc/postgresql/12/main/pg_hba.conf echo "host all all 127.0.0.1/32 trust" | cat - /etc/postgresql/12/main/pg_hba.conf.bak > /etc/postgresql/12/main/pg_hba.conf /etc/init.d/postgresql start rm -f /etc/tinyows.xml make install-demo cp -f demo/tinyows_no_checkschema.xml /etc/tinyows.xml make check # wget https://github.com/MapServer/tinyows/commit/633ca487113d032e261a4a5c8b5f3b7850580f4f.patch # patch -p1 -R < 633ca487113d032e261a4a5c8b5f3b7850580f4f.patch # rm -f /etc/tinyows.xml # make install-test100 # rm -f /etc/tinyows.xml # make install-test110 tinyows-1.2.2/.github/workflows/linux.yml000066400000000000000000000006361465244332600205250ustar00rootroot00000000000000name: Linux build on: [push, pull_request] jobs: linux_build: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout uses: actions/checkout@v4 - name: Build run: docker run --rm -e WORK_DIR=$PWD -v $PWD:$PWD ubuntu:20.04 $PWD/.github/workflows/linux.sh tinyows-1.2.2/.gitignore000066400000000000000000000003151465244332600152300ustar00rootroot00000000000000Makefile configure demo/install.sh demo/tinyows.xml src/ows_define.h test/wfs_100/config_wfs_100.xml test/wfs_100/install_wfs_100.sh test/wfs_110/config_wfs_110.xml test/wfs_110/install_wfs_110.sh tinyows tinyows-1.2.2/LICENSE.md000066400000000000000000000021101465244332600146370ustar00rootroot00000000000000Copyright (c) <2007-2024> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. tinyows-1.2.2/Makefile.in000066400000000000000000000056311465244332600153130ustar00rootroot00000000000000# compiler flags CC=@CC@ CFLAGS=@CFLAGS@ -std=c99 -pedantic -Wall # postgresql ... required POSTGIS_INC=@POSTGIS_INC@ POSTGIS_LIB=@POSTGIS_LIB@ PGFLAGS=$(POSTGIS_INC) $(POSTGIS_LIB) # libxml2 ... required XML2_INC=@XML2_INC@ XML2_LIB=@XML2_LIB@ XMLFLAGS=$(XML2_INC) $(XML2_LIB) # fast-cgi ... optional FCGI_INC=@FCGI_INC@ FCGI_LIB=@FCGI_LIB@ FCGIFLAGS=$(FCGI_INC) $(FCGI_LIB) # install path PREFIX=@prefix@ # Revision number if subversion there GIT_FLAGS=@GIT_FLAGS@ SRC=src/fe/fe_comparison_ops.c src/fe/fe_error.c src/fe/fe_filter.c src/fe/fe_filter_capabilities.c src/fe/fe_function.c src/fe/fe_logical_ops.c src/fe/fe_spatial_ops.c src/mapfile/mapfile.c src/ows/ows_bbox.c src/ows/ows.c src/ows/ows_config.c src/ows/ows_error.c src/ows/ows_geobbox.c src/ows/ows_get_capabilities.c src/ows/ows_layer.c src/ows/ows_metadata.c src/ows/ows_psql.c src/ows/ows_request.c src/ows/ows_srs.c src/ows/ows_storage.c src/ows/ows_version.c src/struct/alist.c src/struct/array.c src/struct/buffer.c src/struct/cgi_request.c src/struct/list.c src/struct/mlist.c src/struct/regexp.c src/wfs/wfs_describe.c src/wfs/wfs_error.c src/wfs/wfs_get_capabilities.c src/wfs/wfs_get_feature.c src/wfs/wfs_request.c src/wfs/wfs_transaction.c src/ows/ows_libxml.c all: $(CC) $(CFLAGS) $(POSTGIS_INC) $(XML2_INC) $(FCGI_INC) $(SVN_FLAGS) $(SRC) -o tinyows -lfl $(POSTGIS_LIB) $(XML2_LIB) $(FCGI_LIB) @rm -rf tinyows.dSYM flex: lex -i -osrc/mapfile/mapfile.c src/mapfile/mapfile.l svn-clean: clean doc-clean @find . -name '*~' -exec rm {} \; @rm -f configure clean: @rm -f tinyows Makefile src/ows_define.h @rm -rf tinyows.dSYM @rm -f demo/tinyows.xml demo/install.sh @rm -f test/tinyows.xml test/install.sh install: @echo "-----" @echo "TinyOWS Schema install dir in $(PREFIX)/share/tinyows/schema" mkdir -p $(PREFIX)/share/tinyows rm -rf $(PREFIX)/share/tinyows/schema cp -rf schema $(PREFIX)/share/tinyows/ @echo "-----" @echo "Now:" @echo " 1) copy 'tinyows' binary to cgi-bin directory" @echo " 2) - put a workable tinyows.xml file in /etc dir" @echo " - OR launch 'make install-demo' as a superuser" install-demo: @chmod +x demo/install.sh @demo/install.sh cp -i demo/tinyows.xml /etc/tinyows.xml check: @demo/check.sh install-test100: @chmod +x test/wfs_100/install_wfs_100.sh @test/wfs_100/install_wfs_100.sh cp -i test/wfs_100/config_wfs_100.xml /etc/tinyows.xml install-test110: @chmod +x test/wfs_110/install_wfs_110.sh @test/wfs_110/install_wfs_110.sh cp -i test/wfs_110/config_wfs_110.xml /etc/tinyows.xml doc-clean: @rm -rf doc/doxygen doxygen: doc-clean @(which doxygen 2> /dev/null > /dev/null \ && mkdir -p doc/doxygen \ && doxygen doc/Doxyfile \ ) || echo "doxygen seems not installed" test-valgrind110: @test/unit_test test/wfs_110/cite 1 test-valgrind100: @test/unit_test test/wfs_100/cite 1 astyle: astyle --style=k/r --indent=spaces=2 -c --lineend=linux -S $(SRC) src/*.h* rm -f src/*.orig src/*/*.orig tinyows-1.2.2/Makefile.vc000066400000000000000000000056131465244332600153150ustar00rootroot00000000000000# # makefile.vc - Main Tinyows makefile for MSVC++ # # This VC++ makefile will build TINYOWS.EXES. # # To use the makefile: # - Open a DOS prompt window # - Run the VCVARS32.BAT script to initialize the VC++ environment variables # - Start the build with: nmake /f makefile.vc # # $Id: $ # TINYOWS_ROOT = . !INCLUDE nmake.opt BASE_CFLAGS = $(OPTFLAGS) CFLAGS=$(BASE_CFLAGS) $(TINY_CFLAGS) CC= cl LINK= link # # Main Tinyows library. # TINY_DLL = libtiny.dll TINY_OBJS = src\fe\fe_comparison_ops.obj src\fe\fe_error.obj src\fe\fe_filter.obj \ src\fe\fe_filter_capabilities.obj src\fe\fe_function.obj \ src\fe\fe_logical_ops.obj src\fe\fe_spatial_ops.obj \ src\mapfile\mapfile.obj \ src\ows\ows_bbox.obj src\ows\ows_libxml.obj src\ows\ows.obj src\ows\ows_config.obj \ src\ows\ows_error.obj src\ows\ows_geobbox.obj src\ows\ows_get_capabilities.obj \ src\ows\ows_layer.obj src\ows\ows_metadata.obj src\ows\ows_psql.obj \ src\ows\ows_request.obj src\ows\ows_srs.obj src\ows\ows_storage.obj src\ows\ows_version.obj \ src\struct\alist.obj src\struct\array.obj src\struct\buffer.obj src\struct\cgi_request.obj \ src\struct\list.obj src\struct\mlist.obj src\struct\regexp.obj \ src\wfs\wfs_describe.obj src\wfs\wfs_error.obj src\wfs\wfs_get_capabilities.obj \ src\wfs\wfs_get_feature.obj src\wfs\wfs_request.obj src\wfs\wfs_transaction.obj \ $(REGEX_OBJ) TINY_HDRS = src\ows_api.h src\ows_define.h src\ows\ows.h TINY_EXE = tinyows.exe # # # default: all all: $(TINY_LIB) $(TINY_EXE) $(TINY_OBJS): $(TINY_HDRS) $(TINY_LIB): ows_define.h $(TINY_OBJS) lib /debug /out:$(TINY_LIB) $(TINY_OBJS) $(TINY_EXE): $(TINY_LIB) $(CC) $(CFLAGS) src\ows\ows.c /Fetinyows.exe $(LIBS) if exist $@.manifest mt -manifest $@.manifest -outputresource:$@;1 svn_update: svn update .c.obj: $(CC) $(CFLAGS) /c $*.c /Fo$*.obj .cpp.obj: $(CC) $(CFLAGS) /c $*.cpp /Fo$*.obj ows_define.h: src\ows_define.h.in copy /y src\ows_define.h.in src\ows_define.h ms4w: all if EXIST builds rd /s /q builds mkdir builds cd builds svn export http://www.tinyows.org/svn/tinyows/ms4w cd ms4w\apps\tinyows-svn svn export http://www.tinyows.org/svn/tinyows/schema svn export http://www.tinyows.org/svn/tinyows/demo cd ..\..\..\.. copy /y tinyows.exe builds\ms4w\Apache\cgi-bin\ cd builds zip -r -q -9 tinyows_ms4w-svn.zip ms4w clean: del *.obj del $(TINY_EXE) del *.lib del *.manifest del src\fe\*.obj del src\ows\*.obj del src\struct\*.obj del src\wfs\*.obj install: $(TINY_EXE) -mkdir $(BINDIR) copy *.exe $(BINDIR) tinyows-1.2.2/NEWS.md000066400000000000000000000102751465244332600143440ustar00rootroot000000000000001.2.2 (2024-07-31) *in memory of Olivier Courtin* - Include stdlib.h for atoi ([#105](https://github.com/MapServer/tinyows/pull/105)) (Bas Couwenberg) 1.2.1 (2024-05-17) *in memory of Olivier Courtin* - Fix JSON encoding ([#100](https://github.com/MapServer/tinyows/pull/100)) (Kévin Dubuc) - Use stdbool.h instead of custom definitions ([#99](https://github.com/MapServer/tinyows/pull/99)) (Bas Couwenberg) - Handle check when using TINYOWS_MAPFILE ([#97](https://github.com/MapServer/tinyows/pull/97)) (Jeff McKenna) 1.2.0 (2021-06-11) *in memory of Olivier Courtin* - Fix custom types conversion (Vincent Mora) - Add support for geometry-less tables (Even Rouault) - Do not list non-existing tables (Even Rouault) - ows_layer_storage_fill(): fix crash when several bad configured layers are found (Even Rouault) - Fix crash when invalid 'pkey' is specified in configuration file (Even Rouault) - Implement matchCase for PropertyIsLike filter (Louis Jencka) - Fix axis order issue on GetFeature 1.1 (Even Rouault) - Avoid repeated prefix of the typename (Even Rouault) - fe_distance_functions(): fix crashes / incorrect behaviour (Even Rouault) - Fix unable to use separator chars as underscore in typename (Olivier Courtin) 1.1.1 (2015-06-29) - security release (Olivier Courtin) 1.1.0 (2012-11-13) - Add include_items and exclude_items config handling. To choose exactly which columns to retrieve (Serge Dikiy) - XSD max length and enumeration constraint handling (Serge Dikiy & Alan Boudreault) - First real support of typename namespace provided in request (Olivier Courtin) - Generate PK value using PostgresSQL DEFAULT value if present (Serge Dikiy) - Add pkey configuration in layer config. Usefull for instance when retrieving data from a VIEW. (Serge Dikiy) - Buffer copy performance improve (Serge Dikiy) - Rewrite/fix max features handling (Olivier Courtin) - Extent layer's properties allowed to inherit (Olivier Courtin) - Several bugfixes as usual (special thanks to Andreas Peri, Serge Dikiy and Jukka Rahkonen for detailled reports) 1.0.0 (2012-02-08) - Configuration change with broken backward compatibility: * default config file is now /etc/tinyows.xml * default schema dir is now $PREFIX/share/tinyows/schema * rename server and prefix to ns_uri ans ns_prefix * rename wfs_display_bbox to display_bbox - Encoding support, written by Carlos Ruiz: cruizch@gmail.com - Estimated_bbox option for GetCapabilities response (default is false) - Schema cache for fast-cgi mode (huge performance improvement on transaction operations) - Improve drasticaly GetCapabilities performance on huge layer (Thanks to Nicklas Aven for report) - Add ability to use different names for layer and storage table (table property) - Mapfile config file support (use related TINYOWS_MAPFILE env. var) - Debug option available from configure step (--enable-debug) - Improve result from --check option - Add wfs_default_version config file option, to set server default WFS Version - Add gml_ns config file option, to set if any, layers properties using GML namespace - Add log_level config file option, to allow more granularity in log output - PostGIS version init check (support 1.5 and coming 2.0) - Update XSD schema (WFS, FE, GML), so need a new 'make install' step if you upgrade - CITE WFS-T 1.0.0 SF-0 full compliant (require PostGIS 2.0) - CITE WFS-T 1.1.0 SF-0 full compliant (require PostGIS 2.0) - Lot of debug stuff (a special thanks to Boris Leukert, Jukka Rahkonen and Even Rouault for detailled reports) - Security fixes (SQL Injection vulnerability - Reported by Even Rouault) 0.9.0 (2010-06-19) - Fast-CGI support - Error log handle - Improve --check behaviour - And a still a lot of debug stuff 0.8.0 (2010-05-01) - PostgreSQL schema support - Command line --check option, to check configure stuff - JSON output format for GetFeature (use OUTPUTFORMAT=application/json) - PostGIS geography support (Need PostGIS 1.5) - Input request log mechanism - Ability to deactivate XSD schema and/or OGC SFS validation - Up to date documentation and OpenLayers integration step by step HowTo - Slighlty improve performance for GetFeature operation - And a lot of debug stuff tinyows-1.2.2/README.md000066400000000000000000000015261465244332600145240ustar00rootroot00000000000000# TinyOWS TinyOWS is a simple WFS-T server based on PostGIS spatial database. ## Documentation Home https://mapserver.org/tinyows/ ## Approach TinyOWS was written with the following things in mind: - KISS approach ! - As OGC standard compliant as possible, aiming to support: - WFS (1.0 and 1.1) - FE (1.0 and 1.1) - Performance is important, maps are cool when they're quick to display - Clean source code ## Code quality policy All code must meet the following rules : - gcc -c99 -pedantic -Wall compile without any warning (make) - Unit test with Valgrind error and leak free (make valgrind) - Pass throught OGC CITE WFS-T tests (1.0.0 and 1.1.0 SF-0) Code dynamically linked with the following other librairies: - PostgreSQL - libxml2 - flex ## Credits In memory of Olivier Courtin, the original developer of TinyOWS and visionary. tinyows-1.2.2/VERSION.md000066400000000000000000000000061465244332600147040ustar00rootroot000000000000001.2.2 tinyows-1.2.2/autogen.sh000077500000000000000000000005151465244332600152430ustar00rootroot00000000000000#!/bin/sh # # Autotools boostrapping script # giveup() { echo echo " Something went wrong, giving up!" echo exit 1 } echo "Running autoconf" autoconf || giveup echo "======================================" echo "Now you are ready to run './configure'" echo "======================================" tinyows-1.2.2/configure.in000066400000000000000000000134661465244332600155640ustar00rootroot00000000000000AC_INIT() AC_CHECK_FUNCS() dnl --------------------------------------------------------------------- dnl Look for libxml2 dnl --------------------------------------------------------------------- AC_ARG_WITH(xml2-config, [ --with-xml2-config=PATH Specify path to xml2-config.],,) if test "$with_xml2_config" = "no" ; then AC_MSG_ERROR([LibXML2 support is a need to TinyOWS !]) fi if test "`basename xx/$with_xml2_config`" = "xml2-config" ; then LIBXML2_CONFIG="$with_xml2_config" if ! test -f "$LIBXML2_CONFIG" -a -x "$LIBXML2_CONFIG" ; then AC_MSG_ERROR(['$LIBXML2_CONFIG' is not an executable. Make sure you use --with-xml2-config=/path/to/xml2-config]) fi else AC_PATH_PROG(LIBXML2_CONFIG, xml2-config, no) fi if test "$LIBXML2_CONFIG" = "no" ; then AC_MSG_ERROR([couldn't find xml2-config, try using --with-xml2-config=PATH]) fi XML2_VER=`$LIBXML2_CONFIG --version` AC_MSG_RESULT([checking for libxml2 version... $XML2_VER]) xml2_vers=`$LIBXML2_CONFIG --version | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` if test "$xml2_vers" -lt 2009000 ; then AC_MSG_ERROR([You need at least libxml 2.9.0]) fi XML2_INC=`$LIBXML2_CONFIG --cflags` XML2_LIB=`$LIBXML2_CONFIG --libs` AC_SUBST(XML2_INC) AC_SUBST(XML2_LIB) dnl --------------------------------------------------------------------- dnl Debug dnl --------------------------------------------------------------------- AC_ARG_ENABLE(debug, [ --enable-debug enable debug mode], TINYOWS_DEBUG=1, TINYOWS_DEBUG=0) AC_SUBST(TINYOWS_DEBUG) dnl --------------------------------------------------------------------------- dnl Git dnl --------------------------------------------------------------------------- AC_CHECK_PROG(git, git, yes) if test "$git" = "yes" -a -d ".git"; then GIT_FLAGS='"-D TINYOWS_GIT_COMMIT=\"$(shell git log --abbrev-commit -n 1 HEAD | grep commit)\""' AC_SUBST(GIT_FLAGS) fi dnl --------------------------------------------------------------------------- dnl PostgreSQL / PostGIS support dnl --------------------------------------------------------------------------- AC_ARG_WITH(pg_config,[ --with-pg_config[[=ARG]] Include PostGIS Support (ARG=yes/path to pg_config)],,) if test "$with_pg_config" = "no" ; then AC_MSG_ERROR([PostGIS support is a need to TinyOWS !]) elif test "$with_pg_config" = "yes" -o "$with_pg_config" = "" ; then AC_PATH_PROG(PG_CONFIG, pg_config, no) else AC_MSG_RESULT(yes) PG_CONFIG=$with_pg_config fi if ! test -f "$PG_CONFIG" -a -x "$PG_CONFIG" ; then AC_MSG_ERROR(['$PG_CONFIG' is not an executable. Make sure you use --with-pg_config=/path/to/pg_config]) fi PG_VER=`$PG_CONFIG --version` AC_MSG_RESULT([checking for PostgreSQL version... $PG_VER]) pg_vers=`$PG_CONFIG --version | sed 's/PostgreSQL //' | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` if test "$pg_vers" -lt 8001000 ; then AC_MSG_ERROR([You need at least PostgreSQL 8.1.0]) fi POSTGIS_LIB="-L`$PG_CONFIG --libdir` -lpq" POSTGIS_INC="-I`$PG_CONFIG --includedir`" POSTGIS_SHARE=`$PG_CONFIG --sharedir` POSTGIS_BIN=`$PG_CONFIG --bindir` AC_SUBST(POSTGIS_INC) AC_SUBST(POSTGIS_LIB) AC_SUBST(POSTGIS_SHARE) AC_SUBST(POSTGIS_BIN) dnl --------------------------------------------------------------------------- dnl Shp2PgSQL dnl --------------------------------------------------------------------------- AC_ARG_WITH(shp2pgsql,[ --with-shp2pgsql[[=ARG]] shp2pgsql directory Support (ARG=path to shp2pgsql)],,) if test "$with_shp2gpsql" = "no" ; then AC_MSG_ERROR([shp2pgsql is a need to TinyOWS !]) elif test "$with_shp2pgsql" = "yes" -o "$with_shp2pgsql" = "" ; then AC_PATH_PROG(SHP2PGSQL, shp2pgsql, no) else AC_MSG_RESULT(yes) SHP2PGSQL=$with_shp2pgsql fi if ! test -f "$SHP2PGSQL" -a -x "$SHP2PGSQL" ; then AC_MSG_ERROR(['$SHP2PGSQL' is not an executable. Make sure you use --with-shp2pgsql=/path/to/shp2pgsql]) fi AC_SUBST(SHP2PGSQL) dnl --------------------------------------------------------------------------- dnl Flex check dnl --------------------------------------------------------------------------- AC_PROG_LEX if test "$LEX" != flex; then AC_MSG_ERROR("TinyOWS: Need flex to compile") fi dnl --------------------------------------------------------------------------- dnl FastCGI dnl --------------------------------------------------------------------------- USE_FCGI=0 AC_ARG_WITH(fastcgi, [ --with-fastcgi[[=ARG]] Include FastCGI support: recommanded (ARG=no/path to fastcgi dir)], [FCGI_PATH="$withval"], [FCGI_PATH=""]) if test "x$FCGI_PATH" != "x"; then AC_MSG_RESULT([checking user-specified fast-cgi location: $FCGI_PATH]) FCGI_INC="-I$FCGI_PATH/include" FCGI_LIB="-L$FCGI_PATH/lib" fi if test "x$FCGI_PATH" != "xno"; then AC_CHECK_LIB(fcgi, FCGI_Accept, [ AC_CHECK_HEADERS([fcgi_config.h fcgi_stdio.h],[ USE_FCGI=1 ]) ]) dnl Some platforms use fastcgi subdir in include if test "$USE_FCGI" = "0" ; then echo "checking now FCGI in alternate fastcgi include dir" AC_CHECK_LIB(fcgi, FCGI_Accept, [ AC_CHECK_HEADERS([fastcgi/fcgi_config.h fastcgi/fcgi_stdio.h],[ USE_FCGI=1 ]) ]) if test "x$FCGI_PATH" != "x"; then FCGI_INC="-I$FCGI_PATH/include/fastcgi" else FCGI_INC="-I/usr/include/fastcgi" fi fi fi if test "$USE_FCGI" = "0" ; then AC_MSG_WARN([\n\nNo FastCGI support. Performances will be strongly reduced !\n]) else FCGI_LIB="$FCGI_LIB -lfcgi" fi AC_SUBST(FCGI_INC) AC_SUBST(FCGI_LIB) AC_SUBST(USE_FCGI) AC_OUTPUT(Makefile src/ows_define.h demo/tinyows.xml demo/install.sh test/wfs_100/config_wfs_100.xml test/wfs_110/config_wfs_110.xml test/wfs_100/install_wfs_100.sh test/wfs_110/install_wfs_110.sh) rm -rf autom4te.cache rm -f config.log config.status echo "------------------------" echo "NOTA: This TinyOWS version will need at least PostGIS 1.5.x" echo "------------------------" tinyows-1.2.2/demo/000077500000000000000000000000001465244332600141655ustar00rootroot00000000000000tinyows-1.2.2/demo/ABOUT000066400000000000000000000005711465244332600147650ustar00rootroot00000000000000======= 1) Documentation HowTo Launch Demonstration ======= Cf ======= 2) Datas ======= World Administrative Boundaries http://www.cipotato.org/diva/data/misc/world_adm0.zip EPSG:4326 ------- France Sub Administrative boundaries http://professionnels.ign.fr/DISPLAY/000/526/741/5267418/GEOFLA-dep-L2-SF.ZIP EPSG:27582 ------- tinyows-1.2.2/demo/check.sh000077500000000000000000000066541465244332600156140ustar00rootroot00000000000000#!/bin/sh set -eu RET=0 PGUSER=postgres DB=tinyows_demo for i in demo/tests/input/*; do echo "Running $i" QUERY_STRING="$(cat $i)" ./tinyows > /tmp/output.txt if ! diff -u /tmp/output.txt demo/tests/expected/$(basename $i); then mkdir -p demo/tests/got mv /tmp/output.txt demo/tests/got/$(basename $i) echo "Result got put in demo/tests/got/$(basename $i)" RET=1 fi done if test "$RET" -eq "0"; then echo "Tests OK !" else echo "Tests failed !" exit $RET fi i=demo/tests/transactions/input/wfst10_france_insert.xml echo "Running $i" QUERY_STRING="$(cat $i)" ./tinyows > /tmp/output.txt || (cat /tmp/output.txt && /bin/false) cat /tmp/output.txt | grep SUCCESS || (cat /tmp/output.txt && /bin/false) echo "select st_astext(geom) from france where id_geofla = -1234;" | su $PGUSER -c "psql -t $DB" | grep "MULTIPOLYGON(((2171610 802820,2171611 802820,2171611 802821,2171610 802820)))" echo "delete from france where id_geofla = -1234" | su $PGUSER -c "psql $DB" i=demo/tests/transactions/input/wfst10_world_insert.xml echo "Running $i" QUERY_STRING="$(cat $i)" ./tinyows > /tmp/output.txt || (cat /tmp/output.txt && /bin/false) cat /tmp/output.txt | grep SUCCESS || (cat /tmp/output.txt && /bin/false) echo "select st_astext(geom) from world where name = '-1234';" | su $PGUSER -c "psql -t $DB" | grep "MULTIPOLYGON(((2 49,2 50,3 50,2 49)))" echo "delete from world where name = '-1234'" | su $PGUSER -c "psql $DB" i=demo/tests/transactions/input/wfst11_france_insert.xml echo "Running $i" QUERY_STRING="$(cat $i)" ./tinyows > /tmp/output.txt || (cat /tmp/output.txt && /bin/false) cat /tmp/output.txt | grep "1" || (cat /tmp/output.txt && /bin/false) echo "select st_astext(geom) from france where id_geofla = -1234;" | su $PGUSER -c "psql -t $DB" | grep "MULTIPOLYGON(((2171610 802820,2171611 802820,2171611 802821,2171610 802820)))" echo "delete from france where id_geofla = -1234" | su $PGUSER -c "psql $DB" i=demo/tests/transactions/input/wfst11_world_insert.xml echo "Running $i" QUERY_STRING="$(cat $i)" ./tinyows > /tmp/output.txt || (cat /tmp/output.txt && /bin/false) cat /tmp/output.txt | grep "1" || (cat /tmp/output.txt && /bin/false) echo "select st_astext(geom) from world where name = '-1234';" | su $PGUSER -c "psql -t $DB" | grep "MULTIPOLYGON(((2 49,2 50,3 50,2 49)))" echo "delete from world where name = '-1234'" | su $PGUSER -c "psql $DB" i=demo/tests/transactions/input/wfst11_world_insert_srsname_in_wfsinsert.xml echo "Running $i" QUERY_STRING="$(cat $i)" ./tinyows > /tmp/output.txt || (cat /tmp/output.txt && /bin/false) cat /tmp/output.txt | grep "1" || (cat /tmp/output.txt && /bin/false) echo "select st_astext(geom) from world where name = '-1234';" | su $PGUSER -c "psql -t $DB" | grep "MULTIPOLYGON(((2 49,2 50,3 50,2 49)))" echo "delete from world where name = '-1234'" | su $PGUSER -c "psql $DB" i=demo/tests/transactions/input/wfst11_geometry_less_insert.xml echo "Running $i" QUERY_STRING="$(cat $i)" ./tinyows > /tmp/output.txt || (cat /tmp/output.txt && /bin/false) cat /tmp/output.txt | grep "1" || (cat /tmp/output.txt && /bin/false) echo "select textcol from geometry_less where intcol = -1234;" | su $PGUSER -c "psql -t $DB" | grep "minus 1234" echo "delete from geometry_less where intcol = -1234" | su $PGUSER -c "psql $DB" tinyows-1.2.2/demo/france.dbf000066400000000000000000000365061465244332600161120ustar00rootroot00000000000000gdWID_GEOFLAN CODE_CHF_LCNOM_CHF_LC2X_CHF_LIEUNY_CHF_LIEUNX_CENTROIDNY_CENTROIDNNOM_DEPTCCODE_REGCNOM_REGIONCCODE_DEPTC 49053BOURG-EN-BRESSE 8231 21379 8244 21380AIN 82RHONE-ALPES 01 812408LAON 6932 25081 6929 25085AISNE 22PICARDIE 02 1418190MOULINS 6763 21743 6758 21740ALLIER 83AUVERGNE 03 1603070DIGNE-LES-BAINS 9124 19067 9124 19065ALPES-DE-HAUTE-PROVENCE 93PROVENCE-ALPES-COTE-D'AZUR 04 1802061GAP 8973 19579 8961 19602HAUTES-ALPES 93PROVENCE-ALPES-COTE-D'AZUR 05 2002088NICE 9977 18680 9952 18690ALPES-MARITIMES 93PROVENCE-ALPES-COTE-D'AZUR 06 2249186PRIVAS 7792 19730 7789 19716ARDECHE 82RHONE-ALPES 07 35395105CHARLEVILLE-MEZIERES 7718 25331 7716 25334ARDENNES 21CHAMPAGNE-ARDENNE 08 2526122FOIX 5403 17738 5406 17739ARIEGE 73MIDI-PYRENEES 09 34410387TROYES 7292 23680 7292 23678AUBE 21CHAMPAGNE-ARDENNE 10 2807069CARCASSONNE 6012 18014 6005 18007AUDE 91LANGUEDOC-ROUSSILLON 11 3369202RODEZ 6189 19276 6184 19286AVEYRON 73MIDI-PYRENEES 12 3515055MARSEILLE 8470 18152 8507 18149BOUCHES-DU-RHONE 93PROVENCE-ALPES-COTE-D'AZUR 13 3667118CAEN 4025 24683 4026 24686CALVADOS 25BASSE-NORMANDIE 14 4268014AURILLAC 6081 19916 6083 19915CANTAL 83AUVERGNE 15 4527015ANGOULEME 4303 20744 4292 20742CHARENTE 54POITOU-CHARENTE 16 5205300LA ROCHELLE 3307 21347 3289 21351CHARENTE-MARITIME 54POITOU-CHARENTE 17 5417033BOURGES 6044 22315 6051 22305CHER 24CENTRE 18 5942272TULLE 5557 20296 5549 20304CORREZE 74LIMOUSIN 19 6174231DIJON 8044 22616 8042 22616COTE-D'OR 26BOURGOGNE 21 33634278SAINT-BRIEUC 2235 24027 2234 24029COTES-D'ARMOR 53BRETAGNE 22 6735096GUERET 5638 21301 5640 21293CREUSE 74LIMOUSIN 23 7186322PERIGUEUX 4727 20217 4722 20226DORDOGNE 72AQUITAINE 24 7482056BESANCON 8788 22557 8786 22571DOUBS 43FRANCHE-COMTE 25 8370362VALENCE 8016 19957 8035 19946DROME 82RHONE-ALPES 26 8612229EVREUX 5133 24479 5125 24475EURE 23HAUTE-NORMANDIE 27 9143085CHARTRES 5372 23834 5385 23834EURE-ET-LOIR 24CENTRE 28 9659232QUIMPER 1202 23526 1207 23527FINISTERE 53BRETAGNE 29 9727004AJACCIO 11320 16794 11290 16802CORSE-DU-SUD 94CORSE 2A 9864033BASTIA 11834 17704 11815 17687HAUTE-CORSE 94CORSE 2B 10264189NIMES 7629 18726 7619 18735GARD 91LANGUEDOC-ROUSSILLON 30 10962555TOULOUSE 5276 18451 5268 18442HAUTE-GARONNE 73MIDI-PYRENEES 31 11008013AUCH 4587 18508 4577 18517GERS 73MIDI-PYRENEES 32 11520063BORDEAUX 3693 19861 3699 19883GIRONDE 72AQUITAINE 33 12162172MONTPELLIER 7244 18466 7238 18469HERAULT 91LANGUEDOC-ROUSSILLON 34 12532238RENNES 3009 23537 3008 23534ILLE-ET-VILAINE 53BRETAGNE 35 12687044CHATEAUROUX 5506 22012 5509 22005INDRE 24CENTRE 36 13147261TOURS 4755 22671 4762 22677INDRE-ET-LOIRE 24CENTRE 37 13341185GRENOBLE 8663 20264 8660 20258ISERE 82RHONE-ALPES 38 13977300LONS-LE-SAUNIER 8460 21910 8463 21911JURA 43FRANCHE-COMTE 39 14431192MONT-DE-MARSAN 3718 18806 3726 18816LANDES 72AQUITAINE 40 14589018BLOIS 5240 22886 5225 22874LOIR-ET-CHER 24CENTRE 41 15070218SAINT-ETIENNE 7606 20502 7629 20495LOIRE 82RHONE-ALPES 42 15339157LE PUY-EN-VELAY 7220 20059 7228 20042HAUTE-LOIRE 83AUVERGNE 43 15550109NANTES 3054 22536 3059 22552LOIRE-ATLANTIQUE 52PAYS-DE-LA-LOIRE 44 15881234ORLEANS 5676 23226 5672 23202LOIRET 24CENTRE 45 16029042CAHORS 5286 19389 5286 19392LOT 73MIDI-PYRENEES 46 16326001AGEN 4625 19128 4631 19128LOT-ET-GARONNE 72AQUITAINE 47 16732095MENDE 6925 19470 6910 19482LOZERE 91LANGUEDOC-ROUSSILLON 48 16834007ANGERS 3820 22788 3820 22792MAINE-ET-LOIRE 52PAYS-DE-LA-LOIRE 49 17502502SAINT-LO 3496 24628 3506 24622MANCHE 25BASSE-NORMANDIE 50 36143108CHALONS-EN-CHAMPAGNE 7485 24417 7496 24426MARNE 21CHAMPAGNE-ARDENNE 51 34913121CHAUMONT 8086 23494 8088 23480HAUTE-MARNE 21CHAMPAGNE-ARDENNE 52 17708130LAVAL 3685 23460 3687 23447MAYENNE 52PAYS-DE-LA-LOIRE 53 18215395NANCY 8832 24173 8827 24170MEURTHE-ET-MOSELLE 41LORRAINE 54 18431029BAR-LE-DUC 8081 24229 8078 24221MEUSE 41LORRAINE 55 19153260VANNES 2172 23074 2176 23079MORBIHAN 53BRETAGNE 56 19575463METZ 8804 24648 8819 24636MOSELLE 41LORRAINE 57 20037194NEVERS 6623 22217 6624 22212NIEVRE 26BOURGOGNE 58 36521350LILLE 6511 26266 6504 26266NORD 31NORD-PAS-DE-CALAIS 59 20823057BEAUVAIS 5819 24930 5818 24932OISE 22PICARDIE 60 21456001ALENCON 4338 23835 4338 23837ORNE 25BASSE-NORMANDIE 61 21990041ARRAS 6316 25882 6306 25883PAS-DE-CALAIS 31NORD-PAS-DE-CALAIS 62 22829113CLERMONT-FERRAND 6583 20868 6605 20875PUY-DE-DOME 83AUVERGNE 63 23572445PAU 3800 18147 3817 18168PYRENEES-ATLANTIQUES 72AQUITAINE 64 24112440TARBES 4159 18060 4152 18062HAUTES-PYRENEES 73MIDI-PYRENEES 65 24280136PERPIGNAN 6458 17439 6462 17438PYRENEES-ORIENTALES 91LANGUEDOC-ROUSSILLON 66 24814482STRASBOURG 9990 24120 10006 24107BAS-RHIN 42ALSACE 67 24947066COLMAR 9737 23543 9757 23577HAUT-RHIN 42ALSACE 68 25381123LYON 7948 20873 7944 20869RHONE 82RHONE-ALPES 69 26063550VESOUL 8869 22983 8868 22994HAUTE-SAONE 43FRANCHE-COMTE 70 26357270MACON 7921 21482 7906 21475SAONE-ET-LOIRE 26BOURGOGNE 71 26842181LE MANS 4403 23360 4405 23342SARTHE 52PAYS-DE-LA-LOIRE 72 27098065CHAMBERY 8797 20692 8787 20711SAVOIE 82RHONE-ALPES 73 27352010ANNECY 8942 21069 8940 21060HAUTE-SAVOIE 82RHONE-ALPES 74 27570101PARIS--1ER-ARRONDISSEMENT 6003 24290 5999 24293PARIS 11ILE-DE-FRANCE 75 28118540ROUEN 5104 24946 5098 24944SEINE-MARITIME 23HAUTE-NORMANDIE 76 28566288MELUN 6238 23935 6237 23940SEINE-ET-MARNE 11ILE-DE-FRANCE 77 29024646VERSAILLES 5851 24229 5839 24226YVELINES 11ILE-DE-FRANCE 78 29204191NIORT 3845 21510 3842 21514DEUX-SEVRES 54POITOU-CHARENTE 79 29360021AMIENS 5972 25439 5966 25449SOMME 22PICARDIE 80 30128004ALBI 5846 18807 5847 18804TARN 73MIDI-PYRENEES 81 30546121MONTAUBAN 5212 18911 5219 18916TARN-ET-GARONNE 73MIDI-PYRENEES 82 30753137TOULON 8929 17980 8930 17993VAR 93PROVENCE-ALPES-COTE-D'AZUR 83 30777007AVIGNON 7986 18861 8012 18847VAUCLUSE 93PROVENCE-ALPES-COTE-D'AZUR 84 31097191LA ROCHE-SUR-YON 3120 21924 3135 21921VENDEE 52PAYS-DE-LA-LOIRE 85 31387194POITIERS 4466 21776 4485 21778VIENNE 54POITOU-CHARENTE 86 31564085LIMOGES 5164 20932 5155 20954HAUTE-VIENNE 74LIMOUSIN 87 31810160EPINAL 9059 23607 9081 23596VOSGES 41LORRAINE 88 32129024AUXERRE 6921 23116 6932 23112YONNE 26BOURGOGNE 89 32556010BELFORT 9389 23032 9386 23038TERRITOIRE-DE-BELFORT 43FRANCHE-COMTE 90 32717228EVRY 6079 24039 6076 24034ESSONNE 11ILE-DE-FRANCE 91 32866050NANTERRE 5902 24324 5905 24331HAUTS-DE-SEINE 11ILE-DE-FRANCE 92 32882008BOBIGNY 6074 24346 6074 24343SEINE-SAINT-DENIS 11ILE-DE-FRANCE 93 32922028CRETEIL 6092 24213 6086 24205VAL-DE-MARNE 11ILE-DE-FRANCE 94 33053500PONTOISE 5827 24503 5823 24503VAL-D'OISE 11ILE-DE-FRANCE 95 971100505 BASSE-TERRE 573 21521 577 21525GUADELOUPE 01GUADELOUPE 971 972200909 FORT-DE-FRANCE 666 20306 677 20330MARTINIQUE 02MARTINIQUE 972 973300202 CAYENNE 1460 19104 1467 19101GUYANE 03GUYANE 973 974401111 SAINT-DENIS 657 16928 651 16854REUNION 04REUNION 974tinyows-1.2.2/demo/france.shp000066400000000000000000030120741465244332600161460ustar00rootroot00000000000000'  @Ϲ8AF2A`mDA4'A?A@A(A:?@AZ(AC@A(AC@A(AD@A(AE@A(A6F@AT(AKG@A<(AH@A(A3J@A(AL@A (A N@A(AP@A`(AP@A(AQ@AD(AR@A (AT@A!(AW@A!(AVX@A!(AX@A$(AZ@A)(Ad\@Ah*(A ]@A-(Ata@A-(A.b@A`2(Ad@A8(A h@A9(Ah@Ad8(Ak@A$8(Ajl@A7(Am@A8;(A/q@A=(AXr@AN?(Ar@A|@(Ahs@AC(At@AK(Ax@ABL(A]{@AL(A{@A.M(A}@A^M(AA~@AHM(A~@A8M(A@AM(A@AN(A$@A Y(AB@A$Z(A@AZ(A!@AY(Alj@AY(A @Aa(A@Aa(A@Ab(A @A$c(AM@A.d(A@Ad(A@ANl(Ad@Al(A@Ao(AA@Au(A@Ay(Am@A(A@A܏(A@AZ(A@A(A:@Aڔ(A@A@(A̋@A(Ad@A (ANj@A(Aϋ@A|(A@A((A@A(Ad@A(A@A(A@A(Aa@A*(A9@A(A@A)AG@A,)A@AR)A"@A )A@A)A@A )A@A>)A@A8)Aˈ@A)AȈ@Aj)A)@AD)A@A)A=@AB")A@At')Ar@A/)A)@A2)AԄ@A0H)A@AxO)A׀@AlH)A@ABJ)A}@AG)A}@AB)A}@AH)A|@AW)Az@AJ`)Az@Ai)Ax@A l)A^x@A n)Aw@Ar)A w@A.q)Awv@AXk)At@A|j)ALt@Ar)Ar@ABr)Aq@Aq)A,q@Aq)Ap@A6)A+m@A)Aql@AĄ)Ai@A)Ah@A)Ah@Aj)Ag@A)A[g@A)An@AR)Ao@Aȗ)Ai@A)Ah@A)Ai@A)Aj@A.)Aj@A6)ATi@A)Ai@A)Agh@A )A?d@A)Ac@AF)A`@AЮ)A^@AT)A9^@A̿)A_@A)Ax_@A)Ay^@A)AA^@A)Ai_@AH)Ab@Ap)Aac@A)Ad@A)Ad@A)Ad@A)Af@A)Ah@A")Ai@A)Ai@A*A_l@A*Am@AD*An@A8*Ap@AL*An@A*ABn@Ad*A1l@A^#*A%l@A**A k@A,*Aj@A-*Aoi@A?*Ai@AB*A f@AA*Ac@AE*AQ_@AG*A^@AvJ*A_@AL*A_@Av]*Ap`@A`*A`@A|*A`@A*A_@A"*A_@A*A_@AF*A_@A"*Asa@AF*A`a@AL*A`@AF*Ad@A*Ae@A*Ae@AP*A g@Ax*Aj@A|*Ak@A*Aj@A*Aj@An*Apk@A*As@A*Av@A*Ay@A*A|@A+A@A* +A@AF +Aւ@A!+Ak@Ad'+A@A/+A~@A@+A{@A*I+Az@AL+Ay@A+Ar@A<+AXq@A5+Am@A"3+Arl@A2+Ak@A3+Ai@Ah++A0g@A)+Af@A0+Ac@A2+Ab@AP5+A&b@A$7+A_@A3+A]@AZ,+A\@A"+AR^@A+A&^@AZ+A ]@A+A]@A +AZ@A+AZ@Ap+Am[@A0+A~[@A`*AZ@A*AZ@Az*AiX@A*AW@A*A+W@A*AV@AL*AS@A$*AR@A*AR@A**A(P@A*AM@A*AXM@AT*AI@A*A@G@Ab*AKE@A*AvD@A*AD@A|*AC@A*AaC@Aj*AC@A*A B@A*AbA@A`*A,A@A*A?@AZ*Ay<@Aʱ*AC:@A*A9@AH*A9@A:*At:@A*A@=@A*A=@A`*A7=@Av*Ae:@Â*A7@An*A6@AZ*A4@A0*A3@A*A2@AZ*AN0@A*A/@A0*A-@A*AN-@AT*A+@A*A4*@Aj*A)@Aބ*A(@A^*A'@A8*Ac%@A*A#@At*A @A*A* @A*A@A*A@A*A @An*A@A *Aj@A*AB@AN*A@A*A6@Al*A @A*AQ@A*A9 @A*A@A*A@A`*AQ@A*A@Â*A@A}*AT@A|*AD?A6}*AY?A}*A?A{*A3?A0{*A?A6}*A?A}*A ?A{*A?A~*A?A|*A?Avz*A?ALv*A?A\w*AI?Az*A?AFs*A?Am*A?Ah*A[?A&`*A?A^*Aq?AV[*A?AzM*Ab?A*M*A ?AO*AN?A|Q*A?AS*A,?AR*A5?AE*A?ATE*A?AG*A˵?AH*Ap?A4H*A?AZF*As?AbA*A?A3*A?A0*A?A/*A?A**Aߧ?A)*Ah?Ab)*A?A$*A?AF"*At?A *AŤ?At*A?A*A%?A*A>?A*A ?A*A,?AN*A?A)A?A4)A?A)A?AL)A?A )AH?A*)Ak?A)A5?Aj)A?Aj)A?Az*A?A*A?A&)A?A)Ad?A~)AN?A)A?A)A?A,)A?Ar)AG?Ab)A1?A8)A?A)A?AP)At?A)A?A)Az?A°)AI?A)A?A)A ?A~)A?A")A?A)AF?A)A?AR)A?A)A@A)A@A0)A@A)A`@AК)A@Ap)A8@A)AQ@A)A@A)Af@Au)A @A.m)A @Ak)A @A"j)A@Ai)A@Abg)A@A])A@AV)A@AP)A$?AP)A?AO)A5?AI)A ?ADC)A?AA)A?A<)A=?A::)A?Ar3)A?A1)A?A*)A-?AX)A?A)A?A)A#ABAB#ABA*#A;BA\#ABAp#ABA#ABA#ABA#ABA#ABA#AxBA#ABA#A_BAd#ABA#ABAr#A;BAh#ABA#ABA#ABA*#AhBA#A;BA#AJBA#ACBAL#ABA#A BA#ABAA&A =CAA&AG&A +CAv &A*CAJ&A6)CA&AO&CA'&A%CA&A!CAZ&AE!CAN&ACA2#&A|CA'&ACA'&ACAd'&A+CAz&ACA^&ACA&ACA&A%CA&A CA&AmCA&ACA&ACA&ACA*&ACAF$&A> CA!&A CA&AG CA&A CA6&ACAL&ACA&ACAP&AECA&ACAx&ABA&ABAZ&ABA&ABA &ABA&A#BA&ABA&ABAh%ABA~%ABA%ABA%ABA%ABA%A6CA%ACA%ACA%ABA%AJBA%ABA%ARBA`%ABAخ%A=BAL%ABAt%ABA%ApBA%ABAz%AVBA%AZBA2%ABA$%ABA%ABA%A7BAL%AOBAP%AMBA%ABA%A5BAΈ%ABAf%ALBA%ABA%ABAv%ABAp%A0BA|m%A BAm%AlBA(n%A-BAj%AlBA0h%AGBA^]%A BA^Z%ABA~R%ABA@O%AgBAD%ABAzC%A>BA8%ABAZ7%ARBA&6%A+BA3%ABA4%A BA=%ABA?%ABA;%ABA@%A)BA|C%ABA@%ABA=%AkBAF%ABAI%ABAJ%ABAD%ABAj<%ApBA^>%ABAp>%ABAB%ABAJ%AdBAN%ABAV%ANBAX%A/BA[%ABAZ%AIBAW%ABA^\%ABAxg%ABAo%ATBAu%A&BAt%ABAt%ABAZr%ABAo%ABAl%A4BAb%AfBA"`%A4BA[%ABAX%ABAV%A=BAO%ABA@M%ABAZ?%ABA.%ABA$,%ABAp+%AFBA+%ABA('%ABA^&%ABA %AdBAn!%ABA:(%AbBA(,%ABA-%ABAf3%ABA\7%ABA"7%A,BA3%ABAj%%A̷BA#%A3BA!%AµBA%A5BAX%ABAB%AJBA2%ABA%ABA*%A}BA*%ABA,>%AHBA C%ABAE%AlBAdN%AԫBAtI%ABAbG%ABAD%A=BA8%A BA7%AoBAZ0%AiBA.%AԠBA8,%ABA\$%ABA%ABAh%ABA#%ABA,%ABAP%ABAj%AښBA%ABA%AjBAP%AJBAD%ABA$ABA2$AxBA~$AMBA`$ABAF$A|BA$A1BA$ABA$ABAB$ABA$ASBAh$ABA$ABA$AgBA@$AÄBA$ARBA$AÅBA$AcBAt$ABAD$A#BAv$AbBA$ABAJ$A#BA$ABA$A7BA$AnjBA$A͌BAj$ABA$ABA$ABA$ABA$ABA$A4BAҚ$A0BA$ABA6$ABA~$AuBA~$A;BAL~$ABAy$AnBAw$ABAm$ABAe$ABANc$A@BA0`$ABA`$ABAa$AdBA_$ABA]$ABA0]$AʟBAW$ACBA~O$AcBAN$ABA6N$ABAK$ABAJ$AZBAB$A BAB$ABA<$ABA -$ABA($ABA@($A BA/$A-BA22$ABA7$ABA7$A#AGBA`#ABAL#ABA #ABA#ABA#ABA\#ABA4#ABA8#ABAZ#ABA#ADBA#A%BA#ABAP#A{BA#ABA#ABA.#ABA#A|BA#ABA#ABA#AmBA`#ABA8#ABA&#A6BA#AABA#ABA#ABA #A/BAD#A}BA#ABA8#A~BA#ABA#AhBAڱ#AQBA#AzBA #A@BA4#AUBA#ABA#ABA#ABA#ABA0#A BA0#A$BA#ABAT#ABA#A%BA#A)BA#ABA#ABA#ALBA#ABA#ANBA#AbBAN#ABA#AhBA#ABA#ABAķ#ABA#AHBA#AWBA #AgBAV#ABA#AwBA#A BA#ABA#AmBAd#ABAF#ABA#AaBAv#ABA#ABA#AzBAP#ABA#ABA#ABA`#ABAh#ACA#ACA#A1CA#ACAb#ACA$ACAx$ACA $ACA"$ACAl%$A*CA#$ACA%$A|CA$$A CA$A CA($AG CA,$A CAp$A CAF$A CA$AeCA\ $ACA $ACA` $ACA $ACAZ$A CA#ACA $ACA$ACAP$ACAp$AhCAp$A!CAN$AU"CA$A#CAf$Az$CA$A%CA&$A%CA $A(CA $A&*CA $A*CA$$A-CA#A-CAT#A.CA#A.CA$A/CA$A0CA$A"1CA$Ao2CA$AR4CA#A4CAR#A5CA$An6CAJ$A7CA$A7CA $A7CA $A8CA $A9CA$AV;CA $A>CA$A@CA $A@CA$ADCAb#AGCA#AGCA#AICA#AKCA#AMCA#AMCA#AMCA,#ANCAN#AVOCA#AQCA #ASCA#A[SCA#A TCA#A!VCAH#ALWCA`#AvXCA#AXCA#AUYCA|#AYCA.#A}YCA#AZCA,#A![CA#A[CA#A-]CAN#A]CA#A]CA#A%^CAJ#A5_CA#A_CA\#A_cCAz#AeCA*#AeCA#A8fCA\#AeCAr#AcCA#AqcCA$AAgCA~$AgCA$AhCAR $AjCA$AdmCAd$AmCA $AnCA $AVpCA$ArCA$A"uCA $A[uCA!$AuCA$A!vCA $AvCA$AxCA#$AyCA/$A{CA5$A}CA.3$A}CA/$Ad~CA-$A*~CAz'$A}CAT $A~CA$A~CA$AqCA#$ACAp$$AdCA5$ACAD$AoCAF$A CAFL$ACAL$ACAM$ACAR$ArCAT$ACA0W$ACA8Y$A{CA8[$AXCAZ_$ACA\$AYCAc$ABCAl$AτCAn$ACAp$A6CAL{$A{CA$AքCA $AdžCA$ACA$A8CAV$AوCA($A CA|$ACAt$ACAƢ$ACAX$ACA$A%CA$ACA\$ACAj$ACAV$AxCA$ACA$ACA>$ACA`$ACA$AŒCA*$A,CA$A6CAn%ACA%A=CA%ANjCA^%ACA%ACA%A&CA%ACA%ACA%ACA!%AUCA$%ACA+%ACA(4%AӈCAz6%A&CA3%AkCA"4%A>CAF8%ACA:%ACAnN%ACAQ%ANCAS%ACA8W%AяCAXc%ACA e%ACAJs%ACAu%ACAFw%ACA%ACA%ACA%ACA%ATCA`%ACA%ACAP%AnCA%ATCA%ACA֯%AXCA%AjCA.%A+CA.%AiCA&%ACA%ACA%ACA %ACA%ASCA%A4CA%ACA%ACA\%ÄCAZ%AWCA%A,CA%AqCA%ACA4%ACA&ACA<&ACAX&A~CA &ACA&A~CA!&A~CAz$&A|CA-&A|CA/&A|CA|A&A(~CAC&Aq~CAK&A}CAS&A~CAV&A}CAb&A)|CAb&AzCA,d&AYyCA8u&A2zCA4x&A1zCAw&AyCAdv&AwCAq&AuCAnp&AqCAs&AoCA~y&AoCAt{&AtnCAĀ&A'nCA&AnCA&AmCA&AeCAv&AdCA:&APdCA&AcCAz&AsbCAy&A_CAlu&A^CAq&A#YCAs&AXCA6x&A^VCAw&AUCAn&ASCAl&AYSCA$p&A2RCAxq&AQCA4w&AQCA<&AdPCA,&AKNCA&{&AXLCAx&AICAy&AHCAx&AHCAu&AGCAZm&AFCAk&A|FCAe&AcECAdf&ADCAb&A;BCAb&AACA_&AACA0W&A@CAT&A_@CA|O&A?CAM&A?CAHM&A=CAA&A =CA,"A@A@;&A@A\%AN@A%AM@Aܽ%AVJ@A %A:H@A%AE@Ap%AA@AT%A@@AJ%AP@@A%A=?@A%A>@A%A9@AX%A5@A%A05@A%A1@A~%A0@A%A/@A%AC.@A%A(@A%A(@Ab%Aw!@A%A@A%Af@A%AK@AN%A>@A4%A@AV%A@A8%A@Az%A@Av%AQ@A4%A@AN%A@A%A@A%A@Aʎ%Aj@A0%A@A%A]@Aԅ%A@A%A@A8%A@A~%A @A}%A@A{%Ab@At%A|@Ar%Aq@ADd%AW@A_%A`@A^%A @A[%AF@AFT%A=@AS%A@AJ%A @AD%A!@AB%A!@Ab>%A @AX0%A @Ap/%A@A,%A @A*%A@A|&%A-@A$$Ay-@A8"$Ax-@AV$A-@A$AI.@A$A0@A0$A4@A#A1@A#A3@Ax#A2@A#A2@AR#A1@A#A2@A#A4@A#A`6@A#A6@A#A6@A2#A{6@A#A7@A#A68@A#A@@A#AL@@A#AVA@Ap#AA@Aީ#APB@Aڮ#A#C@AR#AD@A#AG@A#AI@A#AJ@Aܶ#AK@A#AK@A#A"L@A~#AM@A#A P@Aֻ#AP@A#AQ@Ab#AQ@A#AtR@At#AQ@A#A.S@A#AR@AHr#AO@ABr#A5O@Apq#AM@At#A1K@ANr#AJ@A^q#AG@A>m#AF@AXj#AF@A^#AF@AB]#A$G@AT#A%I@AN#AH@AF#AK@A6>#AK@A<#A5K@A7#A^I@A<#AE@AV8#A0D@A8#AB@A|6#AlB@A\,#AB@AF*#AB@A!#AyA@A#A@@A#A=@A#A<@A<#A9@A#A99@Ah#A6@A #A5@A#A85@A"A5@AL"AX6@A"A7@A"A]7@A^"A6@A("AU7@A"AQ:@A"AA@A "A,A@AX"AA@AH"AfC@A"AD@A$"AhE@A."ADG@A("AO@Aһ"A9O@A"A>O@A,"AP@AL"AQ@A"A>"Af@AP?"Ah@AG"Aj@AO"Aj@AvO"ATk@AN"A l@AlL"A]m@A A"Al@A:"An@A1"Amn@Ah0"Ao@AJ0"Ao@A,"As@A."Agt@A<-"Au@A.."A{v@A,"Aw@A`0"A3}@A<"Am@ArA"Aj@AC"A@AnF"A@AL"A+@A\K"AЃ@AH"A@A,N"A@A_"A@Ab"AË@Al"A@A}"A.@A"Az@A8"A@@A¤"Av@A<"A@Ad"A@A"A@AV"A@A"AI@A"Aԍ@A"A@Av"A@A"A@A"A@A~"A@AT"A-@AF"A@A"A@AF"A@A"A@A:"AL@A"A @A@"A@A"Aʟ@A\"A5@A"Aѡ@A"A@@A"A@A"A@Az"A@AP"A@Al"Ac@A"A@A8"A#@AV"Aש@A"A|@A#A:@A"A@A"A@A"A'@A #A߰@A|#A@AD#Adz@A^#AJ@A`#A@A!#A@Ar*#A @A+#A @Ab+#Aǻ@A:#A@A=#A\@AB#A@AxI#A@AK#A.@A0S#A@A8U#Ay@AY#A>@AJ`#A@Aq#A@At#A@A|#AY@A#A3@AZ~#A@A~#A@A #A@A#A@AL#A@A #A@A&#A&@A#A@AL#A@A#A:@AX#A@A#A@A޾#A@A8#A@A"#A@A$#A@A#AJ@A#A@AN#A=@A#A"@A#At@A#A0@A $A`@Ap $A@A$A-@A"$A@A($A@Ad1$A@A3$A@A4$A@A?$A߱@A,S$Ao@A6V$AG@Ac$A±@Ag$A_@Av$A@A$|$Au@A$A@AƄ$AG@A$AQ@Ač$A@A$A@A$A@A$A@A$A?@A:$A@A$A)@A$A5@A$Av@An$A@A $A@A$Aϴ@A$A_@A\$A@A$A@A$A@AB$A*@A$A@A$Aԩ@A$AR@A$A@A2$Ah@A6$A߫@A%AN@AR%A@AD%Aձ@An %A@A$%A@A2'%A>@Av*%Am@A#%Aǵ@A"%A@A"%Ao@A,%A@A1%Ax@A>4%A@A|6%AU@Av?%A,@A4%AV@A<%AO@AB?%A@AB%A@AVQ%A@A.S%A@AR%AǾ@AXO%A@AxX%A @AX%Ah@A`%A@Ac%A@Ac%A+@Am%A@Al%AϮ@Ay%A@A}%A@AX~%A&@A~%A@A%A@A%A@A%A@Aƈ%A@A%A=@Ap%A@A2%Ax@A,%A&@Af%A@A&%A֛@A%A@A %A@Al%Ac@A%A@AĔ%Ak@A%A@A%A9@A%A@A%A,@AF%A@A%A@A<%A@A&%A@A%AM@A%AĐ@A\%A$@A%A@A%AČ@AD%A@A%AH@A%A@AN%A@AP%A@A%A9@A%A/@A~%A@A%AM@A%A%@A&AJ@A &A:@A,&Ax@A&A2@A&A@A&Al@Aj &A@A%&A@A06&A'@A6&As@AL4&A@A7&A}@A/&A|@A~3&Az@Az3&A z@AZ1&Ay@A,&Ax@A:-&A8x@A.&Aw@Af/&APv@AR)&A(t@Ax+&Ar@A",&Ajq@A82&A?n@A0&Aj@A0&Ai@AD0&ABi@Ap/&A+e@A4&Ad@A@;&Ad@A/&Ab@A6'&Afc@A&Ab@A&A `@A&&A_@A&A]@A%A3]@A<%A_[@A%AsY@A%AX@A<%A#Y@A%AX@AT%AV@AL%ANV@A`%A;V@A%A*U@A%A Q@A~%AXQ@A%AQ@A%AQ@A%A_Q@A\%AN@A~ *A\A*AL=A*AN=A*AP=A*AU=A*AY=A*AZ=A*Af[=A*AJ\=A(*A`=A*Asc=A*Ah=Ar*Ahk=A*Al=A`*Al=A*Ai=A>*Ai=A*Ac=A*A`=A+AX=A+AW=A +AJW=A +AX=A +A<[=A +A]=A +A_=A+Ae=A +Avh=A~+Aj=Ar +Akm=A +An=Af +ASr=AN +As=A +AAt=A+Ar=A*At=A.+Az=A*A|=A+A}=A+AA=At +A"=Al +AF=A"+A=A+A =A+A}=A+A=A+A]=A:$+A=A&+A?=A8*+A=A0+A=A3+A&=A,E+A+=AF+A=A(K+A=AW+A,=AhY+Ay=AV`+A$=Ad+A=Ad+A=Ah+A,=Ae+A=A+A=A +Af=A8+Au=A|+A=A+A=A+A=A+A=A+AY=A+A=A+Aӽ=A&+A=A+A=A+A%=A(+Aߺ=A&,A=Ab,A=Ab,A =AT,A=A,A=A ,A_=Av,A=Ab,A=A,A=A ,A=AT,A=A:,A=A,A=A),A=AR,,A$=A1,A=A2,A]=A3,A=A8,A=AE,A9=ARJ,A#=AS,A.=A>Y,A"=A_,AI=Aa,A=Al,A\=Ar,A#=At,Aշ=Az,A)=A,A=A,Aڶ=A,A=A,AR=A,A/=AZ,At=A|,Az=A,A=A`,A=A,Al=A2,A=A|,AH=A,A!=A,A=A,AZ=A,A=A,A=A,-AD=A^-AD=A -A=A|-A=A-A[=A-A=A%-A=A--A>A;-A>A?-AD>AFC-A >AQ-A >A_-A>A`-A,>Ad-A>A4i-AB>Av-A>ARy-A:>A}-A>A-A >A|-A>A{-A>At-A=Anr-A+=Ak-Aq=A8e-A?=AS-AP=AN-A=AE-A=AI-A=AK-A=AO-A=AQ-A=AT-A=A~W-A=Avg-A^=Am-Ai=A|-A=Ap-AI=A0x-A2=Ao-Aȳ=Ard-AͰ=Ae-A=Adb-A=A`-A=AX-A=ApW-Aג=AS-A=AQ-A=A4F-A;=A;-AƊ=A3-A=A0-AЄ=A2,-A=A<+-A=A,-A{=A'-Av=AV*-Ao=Az'-Ao=A-Aq=A-Aj=A -Ah=A^ -AUf=A-Ae=A<-Ae=A-AZ=Al,AV=A,AR=A ,AFJ=A,AMF=A^,AD=Af,AC=A,A@=AD,A6=A",A-=Ab-Aw+=A-Ae)=A-Al(=A-AL#=A-AK=A"-AA=AL-A=A-AT=Ad-A=A-A/=A-A1 =Aj*-A=A5-A=A:-At-A+A 4*A)*A'=A(**Ak'=A 6*A7'=A<*A1*=A3*A/=A1*A0=A8*Au8=AF*A9=AZH*A=:=AL*A9=A R*A4=ALZ*A 3=A8`*A/=An\*AT*=A\*A(=Ab*Af(=Ad*A(=Av*A(=Ay*A'=A{*A-=A{*A$/=Ad*A_0=ABc*A1=Ag*A8=A\g*A :=Av*A.;=A~*A9=A*A(9=A҃*A;=A*A1==A*AK?=A.*A@=A*AC=A*A8D=A*AB=A*AD=A(*AE=A *AeE=A*A0A=A*A?=A*AM?=A*A==A+A>=A+Ax>=A +A9D=A*A.F=A*AG=A*AJ=A*AL=A)A(9=A-A>A +AJW=A+AW=A+AX=A*A`=A*Ac=A>*Ai=A*Ai=A`*Al=A*Al=Ar*Ahk=A*Ah=A*Asc=A(*A`=A*AJ\=A*Af[=A*AZ=A*AY=A*AU=A*AP=A*AN=A*AL=A*AJ=A*AG=A*A.F=A +A9D=A+Ax>=A+A>=A*A==A*AM?=A*A?=A*A0A=A *AeE=A(*AE=A*AD=A*AB=A*A8D=A*AC=A.*A@=A*AK?=A*A1==A҃*A;=A*A(9=A~*A9=Av*A.;=A|*A==A0v*AD=ALx*AJL=Ax*AM=As*ALP=Arr*AR=As*AW=A~v*AY=Anz*A[=Ax*A\=A.s*A_=Ap*A_=Aa*A[=A&a*A]=ADX*AIb=AW*A e=AY*A%f=A\*AOh=A2X*A!j=AfU*A0j=AL*Am=AH*Al=AJ*ASp=AT*Au=AS*Ahx=AP*Ax=AN*Aw=A:*Aw=A9*A w=Ab7*Aw=A0*Aww=AB-*A$w=A'*Aw=A#*Av=AP*A v=A*A{=A*A{=A*A}=A8*A?{=A)Ax=Av)A'y=A)A}=A)A}=Ab)AI=AJ)A=A)A=A)AƄ=A)A:=An)A=A@)A=AR)A=A )A=A)Aқ=A)A.=A)A=A)A==A)A0=A)A#=A)A֟=A\)A=A$)AϠ=A()A9=A)A=A)A=A0)A=A )A=A)A=A)AU=A)AY=A)A=A)A=A)Az=Ap)A =A)AѺ=A*Au=A*AK=A*A=Al*A=AF$*As=A&*A=A)*A=A<*Au=At?*A/=AG*AU=AK*A=AbL*A|=A~P*At=A[*A|=Aa*A=Ac*A=Ab*A=AW*Am=AU*A==AK*Aa=AD*A=AhB*A=A8*A=Ap<*A=A=*A=A=*A=AA*Av=A~F*A=A&I*A =AI*A=AN*A=AT*Aj=ANV*A=AR*A=AO*A>AXP*A7>AT*A>AHV*A#>A>[*Ao>AFj*AI>A*A=A*A>Ah*A>Ad*AR>Av*A>A*A)>A *A>A*A0>A*A>Aܻ*A>A*A>A@*AT>A.*A>Aܵ*A0>A.*A>A*A>A*A'>A*A_,>AȾ*AN2>A*A3>A*A2>A<*A0>AL*A0>A*A.>A*A@/>A*A2>A*A"4>Ar*A2>A:+A6>A +A36>A +A5>A +A[9>Az +A:>A+A>>A+AL?>A:+A@>A+AC>A +AG>A+AH>A+AN>A+AO>A)+AP>A0+AJW>A`9+AX>AG+AO>AJ+AmO>Ab`+AX>Ab+AY>ABl+A']>A:v+Ad>AX+AZc>A+Ala>Aڎ+A`>A̜+A5c>A+AA+Aa>A+A@b>A@+Ai>A+A@l>A+Ak>A&+Awd>A+Aa>Ab+Ac>AV,Ad>Al+Am>A+Ap>A,A s>A+A7w>A,A{>A+A>Ap+A >A6+A>A>+A>A+AΌ>A+A>A +A>A+AՔ>A|+A>AP+A!>A+AP>A+A>A+A>A+A>A+A$>A+A>A+As>Ah+A>AX+A>A$+A>AԤ+A>A+At>A+A4>A©+A>A+A>A+Af>A+A|>A+A>A`+A>A+Ac>Av+A>A+A>A,A>A+Aq>A,Af>A@,A>A ,Ao>A(,Aq>A4,A!>ATF,AF>A^I,Am>AI,Am>AbE,A>AS,AE>AJU,A>Aa,A>Ag,A>At,A>Au,A>A{,A>A:},A>A,AX>A ,A>A,A>A,A>AB,A>A,A>A,A?>A,A>Aش,Aӿ>A&,Aһ>Ah,AH>A,A5>A>,AV>A,A'>A,A>A,,A>A,Ao>AZ,A>A,A>A2,AR>A ,A>A,A>A",Aj>A,A^>A,A>Ar,A>A,Al>A~-A>A-A{>A-A {>A-Au>A+-Ao>A4-A`n>A;-Ak>AD-Ak>AhG-Aj>AY-A/j>Ab-A6p>Ag-Axq>A}-A%l>AΑ-Ai>A-A(d>A-Ac>A-A^>A“-AT>A-AS>A-A@Q>A-AJ>A2-A-C>An-A:>AR-A5>Al-A3>A-A'>A-A &>A-AU%>A:-Aq)>A-A%(>A-Ar(>A-As'>AL-Ah">AR-A">A~-A >A~-A>Az-A>ARy-A:>Av-A>A4i-AB>Ad-A>A`-A,>A_-A>AQ-A >AFC-A >A?-AD>A;-A>A--A>A%-A=A-A=A-A[=A|-A=A -A=A^-AD=A,-AD=A,A=A,A=A,AZ=A,A=A,A!=A|,AH=A2,A=A,Al=A`,A=A,A=A|,Az=AZ,At=A,A/=A,AR=A,A=A,Aڶ=A,A=Az,A)=At,Aշ=Ar,A#=Al,A\=Aa,A=A_,AI=A>Y,A"=AS,A.=ARJ,A#=AE,A9=A8,A=A3,A=A2,A]=A1,A=AR,,A$=A),A=A,A=A:,A=AT,A=A ,A=A,A=Ab,A=Av,A=A ,A_=A,A=AT,A=Ab,A =Ab,A=A&,A=A(+Aߺ=A+A%=A+A=A&+A=A+Aӽ=A+A=A+AY=A+A=A+A=A+A=A|+A=A8+Au=A +Af=A>+A=A+AӖ=A(+A=Ab+Ad=A+A=Aޠ+A=A+A=AP+A=A+AȮ=A+A<=A +Ap=A +A=A+A=A+A=A }+A=Ay+A=ARu+A=A-Aret-A/A&A=A8&A=A5&A(=A(&AA=A'&A=A$&A =Ar%&A=A&A =A&&Aa=A&A=A&A=A&A=A&A:=Aj&A=A&A=A&A=A&A0=A&A=A &A>A&A>A &A7>AJ&A=>A&A>AX&A >A&A >A8&A8>A> &A;>A&A>A&A>A|&A>A&A">Ax&A9#>AX&A#>AZ$&AD$>AB&&A!%>A%&A%>A!&A)>A-&A1>Ap1&A;>A 2&A=>A&:&A>>A<&A{?>A?&AZ;>AF&A8>AH&A7>AK&A9>A*H&A>>AJ&Ay@>AS&A=>AJY&AA>A]&A&@>A`c&A@>A,e&AB>A b&AF>A_&AF>Ad&AO>Aj&AR>A&AQ>A‚&AQ>A &AhQ>A"&AQ>A&AU>A&AU>AP&AS>A&AS>A8&AW>AX&AY>A&Ac>A\&Ad>AN&Ae>A*&A@m>AF&AMn>AH&Ao>At&As>A&&A{>A&Ab|>A&AM}>Ad&Az>AR&A(}>Ar'AP}>A'AE~>A'A:>A'A>A'A>A'A>A'A>A2'A#>A'Aw>A'A>Al('A->A)'Av>A0'A>A,9'A>A8:'A>A8'AV>AL3'A>Ar-'AJ>A>%'Aw>A0$'A>Ah)'A>Ax+'A>A.'A@>A+'Au>Ab.'Aݷ>A2'A>A;'AO>A ='Ar>ATD'A|>AB'AͿ>A3'A>A25'A >A7'A>A^B'A>AJ'A>A V'Ag>ATU'A̿>AZ'A_>A\'A>A,^'Ac>A\'A >Ad'A>Adg'A>AZf'Ao>Aa'A'>Aj^'A>A4^'A>A`'AB>Af'AW>Ag'A.>AZo'A?>As'A>Ar'AK>ALq'A>As'A>Av'AC>Ax'A,>As'A>Ax'A>A'A>AL'A>A2'A3>A'A,>AL'AN>A'A>A'A>A'A+>A'AN>A'A?A@'A~?Ap'A?At'AM?A'A ?A'A ?Az'A ?A'A ?A'A ?A'Ao?A'A?A'A ?A'AC?A'AK?A'A?A'A"?A'A0?A'A`$?A>'A!%?Av'A$?A'A&?A(A)?A(AJ)?A(AF,?A(Av.?Af(Ag.?A!(A*?A"(A)?Aj"(A%?Ax(A8%?A8(A"?A$(A!?AT(A.?A('(A3?A)(Am?A3(A2?Av5(A.?A:(AX?AB;(A ?A;(A}?A;(A,?A$<(A?A:<(A?A;(A?A7(A>A|8(A%>AX9(A>A=(A>A0?(A.>A;(A>>A<<(A>Al?(A>A>(A!>A>(A2>AD(AF>AG(A>AI(A,>AJ(A&>AJ(AT>A=(A{>A<<(A>A<(A/>Al<(AM>AA(A>ATC(A>A|G(At>AI(A|>AK(AQ>AL(A>AZN(Ab>AM(Aߴ>A>L(Ax>A:M(A>AXQ(A>A(\(Al>A_(A\>A`(A>A^(Ag>A(](AA>AW(A#>AV(A>AAW(A>AW(A>A2T(A=>AT(AU>AdW(Aa>Ad](A>A](AE>A8^(A>A^(A>A~c(A>A j(A~>A>l(A}>Ao(Az>Ap(Ax>As(Av>Adt(Avu>Al(An>Ak(Al>AAa(A>e>Aa(Ac>Ajf(A[>Ae(A!Y>Ac(A X>A_(AU>Af^(AT>A\(AuM>AX(AK>AU(AYK>A P(AJ>AlN(AF>AO(A A>A8J(A(@>A~G(A?>AB(A>>A*C(A;>A@(A:>A@(A6>A9(A82>A1(A}0>A.(A/>A+(Av->Ah+(Al,>AP,(A+>A0(As'>A+(A">Ab.(Ar>Ab.(A">A.(A>A3(A6>AF:(A >A:(A>A8(AT=A9(A=A46(A=A.(A=AV-(Ai=A,+(A=A$*(A;=A #(A=A%(AR=A#(A`=A#(A=A!(A=A(A=AH(A#=AV(A=A(AK=A:(A=A (A=Ap(Ar=A(A=A (A=A(A=A(A@=A(A=A(AI=A (AC=A\(A=A (As=A (A\=A (AШ=A8 (A=A(A,=A(A=Ap'Ae=A'A=A*'Ad=Ah'A8=A0'A=A'A_=AT'A~=A'As=A'Am=Ad'Ak=A'A>j=A'A\=Ax'A[=AL'AY=A 'AQ=AF'AS=A'AW=AZ'AX=A'AU=A'AT=A'AY=A8'AZ=A>'AZ=A('AZ=A'Aq^=A'A]=AƸ'A_=A4'Alf=Ap'Ag=A@'Ah=A'A3h=A'A+j=A'AO(ACBAdI(ABAA(ABA>(AYBA<:(ApBA;(ABA9(A0BA>)(ABA%(ABA(AcBA(ABA(A>BA`(ABA(ABA (ACBA(ABAf'ABA'ABA0'ABA'AgBAx'A|BA'ABAr'AzBA'ABA'A-BAT'ABA'AxBA'AFBA'ABAj'A3BA'AsBA'ABA<'ABAJ'ABA'AdBA<'AFBA'AiBAВ'A BA'ABA'AbBA&'ABAJm'ABAb'AzBAb'ABAd^'ABA0^'ABA8['ABAS'ABAR'ABAV'ABAJ'A|BA>'A&ACA;&ACA/&ACAZ,&ACA)&A CA&ACAP&AECA&ACAL&ACA6&ACA&A CA&AG CA!&A CAF$&A> CA*&ACA&ACA&ACA&ACA&AmCA&A CA&A%CA&ACA^&ACAz&ACAd'&A+CA'&ACA'&ACA2#&A|CAN&ACAZ&AE!CA&A!CA'&A%CA&AO&CAJ&A6)CAv &A*CA>&A +CA&A+CAz &A.CAl &A 0CAD&A@1CA$&A4CA&A4CA&Ac3CA#&A3CA1&AG2CA9&A3CA<&A;3CA^=&A5CAA&A7CAA&AGk'A7CA:w'A.CA&z'A[CA v'AqCAt'ACA^v'ACAt'A CAv'ACAdz'AOCAy'ACA4t'ACA,q'AœCAz'AJCA'A)CA 'AKCA'ACAb'AUCA'ACAr'ACA4'A՟CA'AMCA,'ACA'A8CAt'AoCAR'A!CA'ArCA'ACCA'A@CA'ACA'AeCA'ACA4'A١CA'ACA('ACA2'A͙CA~'ACAx'ACA$'ACA:'ACA'ACA,'ACA'A#CA'AۓCAD'AْCAJ'ACA'ACA'AЏCA'AqCA'ACA'AϊCA&'A CA'A)CA*'ACA'A?}CA0'A||CAr'A{CA,'A{CA>'A*zCA'AkwCA'ACtCA'ArCA|'AoCA'AiCA'AgCA'AeCAB'AdCAj'AcCAb'AbCA'A^CA.'A\CA'A'YCAv'AXCA'AXCA'AXCA'AbXCA'AWCA'AXCA'AoWCA(AWCA(AWCAj (AYCA\ (AXCA@ (A"ZCA8(AZCAb&(A[CA`,(AYCA1(A WCA.4(AVCAC(ATCApF(ATCA0S(ASCA^(ASCAb(ARCA:r(AbLCAs(AKCAs(AVJCAs(AICA|w(AHCAF}(AHCA~(AGCA"(AICA^(A\ICA (AHCA*(ACA>(A;A`AK;AAU;AA8;ADA;A0A=;A0A;AAs%;A AF&;AA%';A8A';AhA*;A\AG-;ApA -;AlA-;A@AB5;AA6;AtA4;A(A4;AA04;AA7;AA7;AA9;A$A<;A0A>;AAxA;A4AB;AAD;AxAIF;AAJ;AA}M;AAM;AAP;A<AT;AAT;A0AT;A<AO;Ah(A=N;A9AV;AH;AZ\;At6A^;A;Aa;A4=Aa;AHA^;AcAB];AhA\;AiA@_;A}A`;AA`;AAa;ȦAb;AԌAcc;APAhf;AA[^;AAi[;AA<_;AA^;A A\X;A@A#W;AAS;A ABP;AlAtH;A8AG;A*AG;A@0AG;Ap5AQH;A(EAfI;ADAP;A\[AkQ;A_AR;AL`AS;AiAW;AyAV;AuAW;ADYA8_;AUAb;A@>Aa;At8Aa;A'Ab;AAd;A@ ADg;AAYm;APA(s;A+As;AL5Ar;Ax7ALq;Ah<A~q;AJAs;AOAwt;A@MAt;ATAv;AHsAs;AzAu;AlAv;AAt;AAs;AASt;AAv;AܝAv;APAy;AA4z;AAT};AA};AA|;AAc;AtA;AXA>;AAʇ;A`AՈ;A(A;A(AV;ApA;A A;AA;AA9;AؐA;AA;AdA;ADrA;ALsA;A{A;ApAȞ;A@|Ae;AAZ;AA;A4A˧;AA;AA[;AA;AA&;AA;AA;AA4;At Ao;Ad A;A Al;A A;Az A~;AV A};A A};A$ A$|;A( A};A+ A ;A, A;AX3 A%;A> A;A > A`;A0> A҃;A; A?;A6 A;A9 A;A> A;A= A;A`: AY;A7 A,;A5 A;A@7 A;A6 A/;A4 Ap;A8 A;A9 A;A; A;AX@ Aw;AC A;A4F A8;AF AӚ;A6G A;AI A5;AS A;AV A;AV A;AX Aј;A.` A;Ave At;Adi A;Ah A8;Ak AA;An A;Atp AA;A| A ;Ad A;A A;A A;A. AÈ;A AI;A| Av;At AF;AԞ AB;A A;A A;A` Aj;A` Aڗ;A A;A Aޕ;A A;A AĊ;A AF;A A;A A~;A AX|;A Av;A Ar;A A;q;A Aq;A Ap;A A>l;A Af;A Ae;A Ab;A A d;A!Aa;A!A`;A !A_;A!A_;A !Ac;A!A5d;A!Ae;A !A^;Az+!A^;A4-!A_;A-!AcX;A3!AJU;A4!AR;AD.!Am:A%!Al:A`&!Ai:A !Ah:A!Aj:Ad!Ai:A!Ah:A@ Ae:A Aaf:A Aj:A Ai:Ah Aum:A0 Ahp:A Au:A Av:A Ay:Aj Ax:AF Ax:A A|:A A{:A̕ A}:A A~:Aw A}:AVk Aρ:ARf AP:Ac AZ:A_ A+:A0X A:AU A:A$L A6:AvD A:Ap7 AV:AB2 AՉ:A>) Aڈ:A,# A:A*% Aw:A Avt:A At:A A}:AA:A Aj:ATA :AxA :AزA:AxA :APA:AԶA#:AA:AA<:AAh:AyA:AgAE:AVA:AFA:AD5Aå:Al#A:AAK:A $AĿAAr (AwlBAЩ'A@AA8'AAA'AlAA'AAA'A5AA'A#AAX'A6AA'AAA'AAA'AAA<'AAA'AaAAN'A AAJ'AAA8'AAA2'AAAB'AAA'AAA'AAAj}'AAAi'APAAVa'AdAAd\'AAAD['AAABW'AAA~Q'A\AAlQ'AAAV'AAA~]'AAAt`'AAA^'AWAA\'AAAO'AbAA4G'AAA:'AAA'AAA'AAA2'A)AA 'AAA&A$AA&AAA&AAA&AAA&AAA&AAA&A AA&AAA&AAA2&AAA&ASAA4&AAAj&AAA&AAA&ARAAʞ&AAA&AAAޚ&A~AA&AAA&AAA&AAAh&A&AwjBAF&AkBA&AakBA&A.iBA&AwhBA&AeBA&AqcBA&A`BA&AB`BA&A_BAd&A^BA&A\BAP&Au\BA&A[BA*&AF[BAd&AYBAr&AVBAn&AMVBA&ASBA&A!SBA&ASBA6&ALBAv'AJBAR'AIBA'AIBA'AHBA'AHBA*'A GBA2-'AFBA(4'A4HBA6'AHBA9'AHBA;'A4HBA@'ADBAF'AwDBAI'ADBAVQ'AGBAv['AZIBAp^'A'ArBA'ABA4 (ABAr (AcAA(A%AA(AAA(AZAA2(AAA'AAA|'AuAA'AHAA(A AA (AAA'A~AA'A;AA.'AAA'AAA'AAA'AAA'AAA'AAA 'AAA4'A AAn'AAA 'AAA'AAA<'AAA0'AAA'AHAA'AAAЩ'A@AA  A:Af$A>;Al#Aɞ;A#A@;AL&#Ay;A'#Aȧ;A -#A;Al.#A;A6#AŦ;A5#A;A9#A;A6#An;A@8#Aӗ;A9#Aϖ;A <#Au;AA#AL;A~N#A;ARP#A;ADV#At;AW#A>;Aa#Al;Ad#Aŏ;Ae#A*;A>i#A;ABk#A;Am#A;Am#A;Am#A`;Am#A;Av#A4;Afy#A;A{#A;AF#Aۥ;Ay#Am;A.#A;AD#Aq;AԒ#AK;A#AE;A^#Aq;A#A;A#A;Ad#AW;A6#A;A#Al;A>#A;A#A1;A#A;A#A-;AT#A;AJ#A;Aj#Am;A#A;AP#Ae;A#A;A #A;A#A;A#A;A#AO;At#A;A#Aէ;Al#A;A#A٪;A#A;Ap#A;A#A;A#A!;A#A;A#AC;A#Aј;A $A;Ar$A;A%$A;A+$A ;A0$AX;A3$A;A5$A;A=$A.;A@$Ȃ;AO$AV;AR$A;AHR$A;A`Z$AP;A:c$A;Aj$Af;Ao$A;A>u$Ao;A$A;Af$A`};A$Ag|;Aj$Aj;AW$A];AT$A];AI$AP;A2A$AL;An,$A8;A4 $A(;A!$A&;A$Ag;A:$Ag;A$A;A$A;A$AA:A$A:A^$A\:A$A:A$A:A#AH:Az#A:A#A1:A0#A:A#A:A#A:AD#A~:AV#A:AL#A:At#AA:A#Ag:A#AD:AN~#A{:AJ{#A<:Ao#A:A_#Az:AZ#A:ARY#A:AR#A :AI#A~:A,#A:A!#Ab:AP!#Al:A#A :A#A:A2"A:Ap"A2:An"AU:A"A:A"Ap:A"A :A"A:Aп"A:A^"A5:A"AQ:A"A:Av"A:Az"AP:Ax"AO:Av"A:Al"AN:Ale"Ab:Ab"A :A0O"A:AH"A:AjF"AK:AL"A3:AL"AW:A@Q"A:A2T"A:A@T"AF:AdT"Aſ:AS"A:AW"A:AY"A:AlX"A:A@Y"Aq:AY"AW:AbZ"Aڱ:A\"Ap:A["A:AS"A:AtF"AA:AC"A:A0"A:A:("A:Ab!"A:A:!"A:A8"A:A"A:A"AÐ:A!A:A.!A:A!Aʇ:A!A:A!A:Av!A):Al!AW:A!A{:A!A:Av!A:AR!AГ:A!A:AJ!A:AH!A:Al;A Ap;A Aq;A A;q;A Ar;A Av;A AX|;A A~;A A;A AF;A AĊ;A A;A Aޕ;A A;A( A`;A A~;Ad A^;AP A%;A Aߢ;Aֽ A;A A;A AH;A4 AS;A AI;A> A;A AH;A As;A A;A A=;A Aշ;A" Ah;Ad AZ;A AŴ;Az A;A A;A A۳;A Aw;A!A:;A!A;A!A;A^ A.;A A;AB!A;A !AO;A !A;A@!A;A^!AG;An !AX;A!A;A!Ak;A!A;A!A;A!A/;A`!Au;A)!A;Aj*!A;AP9!A;A7!A;A=!A;AA!AW;AD!A;AB!A;AI!A;AO!A;A^X!A^;A_!A;A^a!A;ABc!AF;Ab!A ;Ad!A;Ai!A;At!Ah;A>!A;A|!Ac;Av!A;Aڑ!A;A!A\;AЍ!A;A!AU;A^!A;A!Ap;At!A;A̦!A;AF!A_;A$!AV;Av!Ae;A>!A;Al!A;AN!AM;A!A;A!A;A!A;A!A;A!A;AB!A;A&!A;A!A/;A!Am;Al"A;A "A;A"A;A:"Ao;A"As;A"Af;A,"A;A"A;A"An;A"A>;A|!"Ak;An""A;A$"A;A,"A ;A."A;A$8"At;A:"A;A&A"A;AV"AY;AL`"A;Ab"A.;Axe"A#;Ag"A;Av"A;A|"A{;Az"A;A|"A;A("A;A"A#;A"A;A\"A;A"A;Ax"A5;AX"A;A"Az;A~"A;A"AQ;A"A+;A"A0;AH"Aq;A2"A;A "AS;A"Av;A,"A;A"A;A"AQ;A""A';AJ"A;A\"A;A0"A;AL"Ad;A"Aa;A"AN;Ar"A;A:"A;A"A;A"A;Ax"A;A"Aɧ;A\"Ad;A"A;A$#Ap;A#A;Ar#Aj;A #A ;A#A;A#Ao;A$#AM;Al#Aɞ;A `X!ALA)8#AI/>A#A(>A#A'>AP#A'>AX#A*>Ax#A+>A#A&>A#A%>A0#AK$>Av#A>Aܼ#A\>A(#A>>A#AB>A #A>A#A>A#A>A#A">A#A>A̺#A >A#A >A#AI>A#A>AP#A=A#A=A#A=A #AL=A#Ac=A6#A=A#A7=At#A?=A#A=A#A=A#A=Ad#A9=AV#At=A#AM=AN#A=A#A=AT$A=A$A=A $A=Ah$A=A$Ai=A$A=A $AT=A$A=Ab$A]=AJ$A=A8$A=Ax$Aˮ=A$A=A *$A=A,$AV=A(5$A=A9$A{=A@$A=AA$A=A@A$A=Az@$A#=AD$A=ARD$A=Ax=$A=A;$A=A=$A=A B$A{=A&B$AA}=Aj7$Az=A9$AAx=AD9$As=A 8$Amr=A:$Ao=AJ?$AFn=A=$Al=A<$A j=A@$Aqd=AZK$Ab=ApH$A\=AM$AY=A;$AO=A9$AF=A;$AD=ATA$AE=AD$AE=A0E$A%G=AH$AK=AM$AI=AR$A2>=AZ$A==Ac$Am?=Ah$A;=A}$A7=Az$A}3=Ay$A.=A&w$A?,=A u$A0+=Ar$An(=A~m$Ae'=A{$A:&=Ah~$A%=A҃$AN&=AH$A&'=Aj$A*=A$AT*=Ad$A-=AF$Ae-=A$$A*=A$A<,=Ap$A,+=Ap$AU+=A@$Aj(=A$A"=A$A-=A$$A^=AZ$AU=Az$A=A6$A=A$A=A·$A =A:$A =A$Al=A$A=A$A=Af$AU=Al$A6=A$A"A.J!Ay=APL!A}=AG!A=AK!AO=AQ!A=A"[!AͲ=A^!A=A*d!A=A*l!A=Al!Aw=An!Aʺ=Aq!A#=At!Aֿ=A!A=A(!A=A!Ar=Ab!A=A!A=A!Al=A|!A2=A!AZ=A!A=A !A =A!A=A!A=A!A7=A!A=A\!A$=A!A=Av!A=A>!A9=A!A=A!A=A!A=A!A=A!A9=A!A=AR!A=A"A=Ah!AG=A"A=A"A=A"AL=A"A=A "A=A*"A=AD#"A=AD&"A=A)"A=A0"Ah=A<"A =AG"A=APK"Af=AL"A=AO"A=AN"A=ArX"Ai=APa"A=Aj"A=ALr"A=Au"A=Aw"A;=Ay"A=A"A=A"Ah=A "A)=Av"A!=A("Af=AZ"Ab=AV"A =A"A=A"A=A"A5>Av"A>A<"A>AH"A4>A"A >AJ"Av>A"A>A8"A>AD"A>AT"AR>A"A>A4"A>A"A{">A"A#>A"A`'>A("A&>A\"A'>A"A*>Ab"A6>AV"A:>A"A8@>Aj"AD>A#AK>A,#AL>A#AK>A#AM>A^#AR>A##AZ>A$#A7\>AX)#AZ>Al1#A\[>A3#A#\>A:#Ae>A>#Ad>AD#Ai>AF#Aj>ALG#Ak>AI#Ag>A:R#Ag>A^#A[]>At\#A,Y>A^#AT>Ap`#AS>A*[#AN>AY#A\J>A\#A;F>Azb#A~F>A^d#A6I>Ato#AM>Ajr#AM>Av#AK>A#AM>A#A)N>A#A=N>A#AL>A$#A)D>A #AB>A#Ac>>A$#A:>A8#AI/>A &Ai{;A*AJ.*ACR*Aք;AF*A;A*A;Ay*A;As*AV;Ar*A};A:o*Ai{;A[*Ap;AP*Aބ;AN*A;AI*A;AI*A;AD*A~;A@?*A;Av3*Ak;A1*A;A>.*A;A*AS;Ax*A;A)A ;A)A*;A0)Av;A0)AI;A)A;A^)A4;A\)Ar;A)A;Ar)Ab;A)A;A)AĢ;A)A;A)A;A)A';A)AN;A|)A;A()A;A)A;Aز)A;;AF)A;A~)A;A)A;A.)A^;A)A;A )A[;Aw)A;A^)A ;A \)A;AV)A;AR)A;A4G)A;A>)A;A&)A;A!)A ;AZ)Aܼ;Av)A;A0 )A;A)Aν;Ap(A;A(A;A(A;A(A;A(A0;A(A;A(AD;AN(A;A(A;A(A ;A"(A;AF(A;A(Ay;A(A;A:(A;AD(AS;A(Aw;A(Ad;A(AJ;A>(A;A,(AX;A$(A;A^(A;A:(A2;A(A;A(AE;A((A;A(AR;A|(Ar;An(A;A(A=;A^|(A;A0|(AS;A(AO;Ax(A;A(A;AF(A;A~(Ag;AL(Aq;A(A;A(A:;Aʔ(A9;A(A;A6(A;A$(A;A8(A;A"(A1;A(A;A҈(A;A(A;Ar(A;AW(A;A;(A;A(A;A'AD;A'A;A'A;A'AB;A|'AL;A'A;Af'A;A,'A;A'Aw;At'AH;A'A;AB'Ae;Ay'A;Azj'AJ;A['AZ;A'Ap;A&Az;AD&A;A'A ;A'A{;A'Ap(ABAATBA@ABA,ABAhsABAteABA_AeBA\ABAX]AIBA|RAgBAIASBA|3ABA8ABAAABAx;A>BA6ABA01APBA|/ABA`JABA|NA|BAJABAIABANABA MABAiACAHmA)CA ACAACAhAzCATA.CAA_CAA CAHACAACAACA"ACA(ACA\2AECAl6ACASA:CAXACA0kABAoA]BAABAABATABAAaBAADBAA2BAt ABAABA,DABAJABA^ABA|cABAsABAyABApABA؝ABAABA<AyBAA~BAABAABA (ARBA-A*BAMABASAzBA4vA BA{ABAABA<ABAABAxAQBAظABAxASBApABA\AiBAA9BAABAABAABA7A=BA@<ABARABADvABA8|ABADABAA5BAABAABAABA\A|BAABAh ABAABA\*AABA/ABAKAyBAOABA_AhBAcABAyABA }A!BAABAARBAABAArBA ABA<ACA`ACAA\CA8ACAACATA/CA$AACAwACA}ACAACApACAACAdAnCAADBA(ABA8ABAA+BAArBAAEBAANBAЛABAAfBAABAABAABALABAABAlABATABAABA@ABAdA`BAABAXAGBAABAABAABAAuBAAWBADA)BAABAA'BAANBA|A BAABAA8BAlABAXA"BAdAiBAABA<ABAlAGBA<ABAAtBAABAABA ABAABATA/BA"ABAAHBAPAxBAABAABAAZBAABAABAAbBAAOBAABAAVBATA BAAMBAABAT AuBAAúBAABAAڸBAABALABAA!BAABA0A8BAA9BA A4BA<ABAD-ABA*AӬBA0 A^BAABA(AcBAABAXADBAAHBApABAA:BAXAZBAA۟BA4ABAA>BAABAAUBAABAAyBAęABAXABAXAJBAToAsBA4jABAhA BAcABARABACABA?AޞBA8AϝBAp,A̝BA)AhBA!A,BAABAABAABA(ABAXABAXABA,ABAXAԋBAA5BAAtBAA BAИABAܖABA}ABAABA8A^BAԅABAABAPnA5BAhAxBAZABA`WA{BAUABAPAUBA?ABA@A]BA7A BAAԑBAx A6BA|A`BAABA@A9BAABA<A0BAABAABApA]BAABAXABAPABAuABAqABA,nABAiA BAXABAAAGBACABA,DA?BA$9A‹BAAŒBA ABAABAABA ABA|AOBA@ABA<ABAAUBAABAABAA)BA A9BAABAԝABA|ABAA{BA4|AI{BApmAzBAx[AzBAx_AzBA\tA}BArAT~BAnA}BADeA|BApMA|BAIA6|BA:A-{BA)Ai{BAt!AF}BA`A~BA8AfBADABAABAdA؁BAA1BAABA<AjBAdAbBAĒABA |ABAvABAbABAGACBAD;ABA06ABA>A BA|;AYBA 9ABA4A$BAl0AlBA$(A]BATABAABAΦ!AG=A0$AU?AJ"A>A"A>A"A>A!AV>A!A>AD!A>A!A>AD!A>A!A>A!A)>A!A>A"Ag>AB "A>Ad"A>A"AY>A"A>A"A>A "A>A!"A8>An%"A?A&"A?A("A?Av*"A^?A*3"A~?AV<"AV ?A<"A ?AzC"A?AN"A?AQ"A?AY"An?A"]"A?A\"Al?AX"A/?A`"A?A`"A&?A_"A])?AAK$Aj>AW$A>AX$A>Af$A>A~n$A>Apq$A>Ar$A>A0o$Ag>Aju$A^>ALw$A>A`{$A>AP~$Au>A.$A>A$A>Aƍ$Ab>AP$Ai>Az$A>A$A:>A܋$A>AD$A>A$A>A$AH>A$$A>AΠ$A>A\$Ac>A$Ac>A$An>Al$A>A$A³>A$A>A$AT>A$Aԯ>A:$A>A$AN>A$A=>A$A>A$A>Ah$A>AL$Aì>Aƥ$Aw>A$A1>Az$A>A$A>A$A>A^$A>A$AR>A$A>A2$Aّ>Aη$A/>A$A>A$Aɋ>A$A6>AH$Ab>A0$AD>A@$A>A$A>A$Ai{>Ad$A.z>AN$Ay>A$A t>AJ$Ar>A$Ar>A $A s>A$A r>A$An>A$Ak>A^$Ak>A$Ae>A$AWg>AĊ$Ai>A$Al>AĆ$Al>AN$A%l>A$Ak>A"$APj>A$A.h>A$Aza>Aw$A0_>At$A^>Au$A]]>Au$AY>A0z$AjU>At$AR>Am$ArO>AJb$AN>A^$AI>AY$AJ>AfX$A5L>AN$A[O>A"L$A`S>AnJ$APT>AF$AuW>AjD$A~X>A8A$A[>AF8$A[>A2$ARV>A($AES>A0*$AR>A$*$ALK>A)$AI>A#$AF>A^'$AA>A%$A@>A&$A<>A#$A<>A $A<>A $A,>>A2$A8>A$AN8>A:$A07>Ad$A 0>Ah$A-->A$A,>A$A~&>A$A%>A<$A">A$A>A:$A>A#Ap>A#AI>A6#A>A#A>A$Aj >A#A >AZ#AG>A#A=A#A=A#A=A#A=A#A=At#A?=A#A7=A6#A=A#Ac=A #AL=A#A=A#A=AP#A=A#A>A#AI>A#A >A̺#A >A#A>A#A">A#A>A#A>A #A>A#AB>A(#A>>Aܼ#A\>Av#A>A0#AK$>A#A%>A#A&>Ax#A+>AX#A*>AP#A'>A#A'>A#A(>A8#AI/>A$#A:>A#Ac>>A #AB>A$#A)D>A#AL>A#A=N>A#A)N>A#AM>Av#AK>Ajr#AM>Ato#AM>A^d#A6I>Azb#A~F>A\#A;F>AY#A\J>A*[#AN>Ap`#AS>A^#AT>At\#A,Y>A^#A[]>A:R#Ag>AI#Ag>ALG#Ak>AF#Aj>AD#Ai>A>#Ad>A:#Ae>A3#A#\>Al1#A\[>AX)#AZ>A$#A7\>A##AZ>A^#AR>A#AM>A#AK>A,#AL>A#AK>Aj"AD>A"A8@>AV"A:>Ab"A6>A"A*>A\"A'>A("A&>A"A`'>A"A#>A"A{">A4"A>A"A>AT"AR>AD"A>A8"A>A"A>AJ"Av>A"A >AH"A4>A<"A>Av"A>A"A5>A"A=A"A=AV"A =AZ"Ab=A("Af=Av"A!=A "A)=A"Ah=A"A=Ay"A=Aw"A;=Au"A=ALr"A=Aj"A=APa"A=ArX"Ai=AN"A=AO"A=AL"A=APK"Af=AG"A=A<"A =A0"Ah=A)"A=AD&"A=AD#"A=A*"A=A "A=A"A=A"AL=A"A=A"A=Ah!AG=A!A=AB!A=A!A=A!A =A!AF=A!A=A!A=A!A-=A"!A=A!A=A6!A>A!A>A!AE=A!A=AN!A>A!A>A!A>A!A >A!A6>A2!A>Ab!A>A!AF >A!Ai >AR!A!>A&!A!>A!A%>Af!A&>A~!A/)>A!A[*>A!A,>A:!A2>A!A7>A!A7>A!A8>Aj!A?>A!A`@>A!AjB>A̻!A L>Ad!AL>A!AS>Az!AcX>A!A]>A!A^>A!Aa>A!Ah>A!ARo>Aή!Aq>AΦ!A*z>AF!A|>A!A}>A!A!~>A!AK|>A8!A~>AR!A*>A!A>A!Aԇ>A8!Aڍ>A(!A>A!A>A!A#>A!AD>A2!AS>Ar!Aԧ>Ad!A>A!AƩ>A!AB>A!A{>A!A>A!A@>A!Añ>A!A>A!A>A!Au>AP!A,>An!A>A"A'>A"A>Ap "A>AJ"A>AxSA>AA;@A A,@AA_-@AA.@AA0@AA1@A8A1@AA2@AA3@AA4@AA'5@AA6@A8A5@A8A8@A8A:@AAO:@AA;@AAO;@A4A;@ApAX8@ATA6@A A3@A"A1@A$$A0@At4A1@A\@A1@AMA*/@ApaA/@AfA.@AfA-@A@uA.@AsA<0@AwA1@A8}AL1@A̅AF2@ATA1@AA2@AA2@AA2@AAK6@A\A 8@AAQ:@AA;@ALA;@AAM;@A A;@A4!A;@AMA9@AjA(;@AHxA9@A |AT9@AlvA 9@AmA%8@AA 4@AA1@A,A0@AA0@A0uA;.@A(}A+@AtqA)@ArA'@AwA}'@ATAH%@A0A$@ApA#@AĢA!@AlA @AA!$@A\A"@AA%"@AA#!@AA @ApA@AA@ATAO@A Ak@AA@AA@AA=@AA<@AA@AAh@ApA@AA@AA@AA@A`A @AĢA @AA @AA @AsA@AgA@AeA @AcAz @AkA} @AkA @ALhA@AxA@A(tA@A`AA@AcA@ADmA @ATpA@AljA?APA"?A?A ?A=A?AD@Aa?A8AE?A@Am?A>A!?A0AV?A-A?AX&A?AA1?A Ai?AA?AA?AxAI?AAQ?AA?AA?A(A\?AA?A8A?AxA8?AA?A0A?AA?AA?A<A?AA?AhA?AA%?AAQ?AmA[?AcAy?A_A?AXA?A@]A?A\MA0?APMAM?A3A?A;A?A=A?A$0Aɝ?AA?A$A?AA?A A?ALAA?AAޜ?ADA?AlA˗?AA?ATA?AA?AA܎?AA?AA?AA?AdA"?ADAo{?AAw?A,At?AAt?AAt?AAWu?AAr?AAKo?A,An?AAXl?AAj?AėAvi?A Ae?A A#^?A0AA^?AD}Aj]?AxAb^?AkA`?AFA]?ATGAf\?A?A[Z?A3AZ?A+ALV?ApAS?A AS?A A_O?AAL?A0AjS?A8AS?AXAM?AA|I?A$AG?AlAH?AA:H?A0AE?AAqB?APA3A?A$A=?A$AA|cA>ACA>ACA>AdDAH>A@A>A>A6>AD>AK>AxBA9>A-A>A8!A>AdA>AA>A Ay>AA>AA>AA>A0A*>AhA>AA>A|A>AA>AA>ADAJ>AAV>AA>AvA>AoA>AjA>AHgA>AAprA2>A0rA>ACA>Ap;AM>A@6A>A3AF>A/Ac>AAP>A$A>AA>AdA>A A>AA/>AAD>AA>AdA ?A<A6?AA?AA\ ?AԽA?AdAC?AhAH?AA?AtA?A`A\?AXA?AxA?A?A AA??ADAB?AVAB?A TAF?A0HAF?A @AmH?A|CAfO?A?AP?A?AQ?A2AT?Ax/A`W?ApA$X?AAW?AAY?A0!Aw_?A1A"^?A@<Aa?Ad>Ad?ALAf?AQAe?ASAg?ALAk?A0AAk?A8Am?ACAr?A 6Aau?A%As?A A's?A$#Au?AAw?AA3w?AA/z?AA/z?AA1}?AA7?A AÆ?A A`?AAA?AA?AdA(?A(A?AA#?AAא?AA:?AA{?A A?APA}?AA:?A8As?AAĠ?AhA?AA?AA?AAݞ?AvAT?AqA>?A<A|?AA¯?AA?AXA?A$A'?AA?AAT?AA?AA?AA?AA?A@A7?AxA:?A A?AdAc?AA?AVA\?AUAz?ASA?A`dAS?AteA?AA?AhA?AAD?A4A>?AA:?AAn?A|AU?AAQ?AA?AA?AD A5?A@A?AA?A$'Ah?A@7A?A;A}?A@\A?AeA?AbAn?AdA(?AiA?AmA?AoAm?AwA?AzA?AD{A|?AؐAn?AAP?AA?AA?A A?A Av?A|A?AA?AhA?A|A6?AA_?AA?AA?AA?AhA??AA@AA1@AA#@AA@AA@A An @AAG @AAT @A8A @AA @A A @AxA @AA@AA@AA@@ADA@AA:@AA*@A A@AA@ADA@AA@A$AC@A$&A@A<(A,@A"AE@AAJ@A|AG@A@A]@AAA@ATGA[@AlPA@AUAT@A4`A@AUA!@AH]A#@Ap]A'%@AnA[%@AyA'@A8iA*@AgAx+@AlfA-,@ApA,@A$A,@AhA^-@AAP,@AHA+@AA-/@AAf/@A A/@A,A1@ApA(4@AdA4@AHA3@A AU3@AdA3@A A5@A A}6@A A6@AAE5@A#A4@AT(A!5@A7A6@A<Au6@A^A2@A$bA2@AxiA1@A,nA1@A A34@AxAR4@APA3@AܩA 3@A`Ax2@AA1@A4A0@AHAv0@AlA-@A0A,@AA*,@ATA,@AAG-@AhA,@A'A4-@A7A,@A<A,@AlAA-@AdA,@AmAn-@ADxA,@Al}A,@ApA *@AAn)@AA)@AA+@A$A-@AA,@AHA>AprAu@A Q,A(@AA )@AA)@A AL,@AAt,@ApAK,@A<A+@AA+@AD A!+@A A*@ALA)@A,A(@AA?AAA?A A`?A AÆ?AA7?AA1}?AA/z?AA/z?AA3w?AAw?A$#Au?A A's?A%As?A 6Aau?ACAr?A8Am?A0AAk?ALAk?ASAg?AQAe?ALAf?Ad>Ad?A@<Aa?A1A"^?A0!Aw_?AAY?AAW?ApA$X?Ax/A`W?A2AT?A?AQ?A?AP?A|CAfO?A @AmH?A0HAF?A TAF?AVAB?ADAB?A AA??A($A>?AhAAAD>AA/>A A>AdA>AA>A$A>AAP>A/Ac>A3AF>A@6A>Ap;AM>ACA>A0rA>AprA2>AAHgA>AjA>AoA>APkA>AfA>APA>AVAy>AlhA>AA9AH>A|;A>AAA>A2A9>A3A>A$,A̹>A"AM>AAk>AA_>AAt>AAS>ATA>AA>AA>AlA>AXAĸ>A@yA>AcAp>A_AV>AXUAҿ>AT7AC>A *A;>AA>ATA >A4A>AA>ADA>AA>AA>AAM>APAh>AتAd>AAD>AA>A A>AHA]>A~A>A`}A@>A\{AB>AjA>A@hAk>AdpA>A pA`>A$zA>AuA>AdA >AlkA?AXmA?AlA ?A[A ?ATVA ?A=A?Ax8A?Ah+A ?AlA>?A<Aj?AA]?APA?AA?AA?AA?A0A?AA?A8A$?AAh%?AA)?AA$?ATAl ?AA ?AhA!?ADhA?AbA ?ASA!?A As$?A( A$?A`A$?AA&?ADA2?AXA<5?AAXD?AlAE?AAL?AABN?AlAS?A\A6U?AXAX?ALAZ?AA+[?AAu^?A`A_?AħAe?A8Ad?AAg?ApA@AHA>@ALAS?@AFA.B@A0AB@A/AC@A 'AD@AtA=E@A AHH@A|AHH@AA2G@AA(G@AAG@AXA H@A\AH@AAuI@A AJ@AA L@A AN@ApAO@AtAP@AAS@ADAwS@AAYU@A AW@ATADW@AHAW@A7AZ@A8;A0[@A`EA]@A gAL_@AWAii@A(UAj@A\Aj@AL_Al@AdAl@AhAmk@Ad~Aj@AxAk@AdA\l@AԙAMm@AAlq@A$Ar@A8Ap@AAr@A Aq@A@AJt@ApAt@A.As@ALAu@A$EA;t@ApCAs@AAAr@AT6An@AD#Ak@AX@ASi@AHWAi@AZA6i@AnAi@A$wAzk@AyAl@AAk@AAk@A0Ak@AAKj@AAj@A@A_k@AAwm@AAn@A Akn@AAm@AAn@AAn@AAn@A$Al@AACk@AAj@AAi@AAi@AAf@AdAcf@A8Af@A!Aa@A#A[`@A<+Aa^@AAZ@A(AY@AdA"Y@AXPAT@ATAaT@A|cA^R@AdAQ@A$gAN@AWAN@AUAM@A^AK@A({ATK@A܅AH@AAUH@AГAG@AAG@AAF@AhAF@APAE@A A2E@AAD@AAB@AXAA@AArB@AAA@ATAWB@A,AC@AAjB@AAnB@AAA@A,AtA@AA@@AA?@A%A>@AD1A>@A(-AV>@A$(A>@A2AZ<@A)Ap;@A/A-;@A6A?:@AXGAW:@A]A9@AHxA8@AA7@A8A17@A,A9@AԗA:@AĜA;@APA6@ADA+5@AA4@AA_7@A@A6@AA}4@ADAG3@A A2@A4A3@Ah A3@Ad#A2@A1A4@A5A4@A:AR4@A4KAq0@APLA5.@AQA-@A@|A,@AA+@AdAN+@AAW,@AA+@AԮA*@AhA'@AA'@A`A(@ApA'@AA&@ATA\%@A|A$@A\A"@AAM"@AA("@ALA@ATAe@A0Aq@A@A!@AA@A@A]@A|AG@AAJ@A"AE@A<(A,@A$&A@A$AC@AA@ADA@AA@A A@AA*@AA:@ADA@AA@@AA@AA@AxA @A A @AA @A8A @AAT @AAG @A An @AA@AA@AA#@AA1@AA@AhA??AA?AA?AA?AA_?A|A6?AhA?AA?A|A?A Av?A A?AA?AA?AAP?AؐAn?AD{A|?AzA?AwA?AoAm?AmA?AiA?AdA(?AbAn?AeA?A@\A?A;A}?A@7A?A$'Ah?AA?A@A?AD A5?AA?AA?AAQ?A|AU?AAn?AA:?A4A>?AAD?AhA?AA?AteA?A`dAS?ASA?AUAz?AVA\?AA?AdAc?A A?AxA:?A@A7?AA?AA?AA?AA?AAT?AA?A$A'?AXA?AA?AA¯?A<A|?AqA>?AvAT?AAݞ?AA?AA?AhA?AAĠ?A8As?AA:?APA}?A A?AA{?AA:?AAא?AA#?A(A?AdA(?AA?A<AP@AA6U@AA)U@AhAS@A8eAU@A]AX@A8[A\Y@AXJA\@AHA^@A_A^@APuA_@AAaa@AܕAa@AA^@A,A[@AA[@AAW[@AЛA\@AA\@A|A5Z@AAaZ@AA[@A<Am\@A~A[@APAX@AApV@AxA?V@AAV@AԶAX@AAZ@AAeZ@A AhX@ApAfW@AXAVU@A|AT@AdAT@AP1ATU@AGAT@AxLAS@AfAP@A xA!A%mAA!ApAA!A4rAA!ArAA!A0tAA!AvAA!A8xAAD"A{AAZ"A%{AA$1"A|AA3"A|AAL6"A{AA;"AzAAF>"AXzAAG"AqxAAS"AwAAb]"AtAAd"AlsAAh"AtAArq"A uAAt"AGvAAp"A`xAA&"AxAA"AxAA"ABuAA"AzpAA"AoAAr"AoAA"ApAA"AqAAh"A]pAAR"AoAA"AmAAJ"AmAA4"AlAA"AkAAP"APiAAV"ASgAA"AfAAn #A8cAA #A_AA#A]AAz#A]AA#A]]AAz#AU]AA.#A^AAh4#A`AA5#A`AA:2#AaAAf4#A=cAA:3#AfAAD5#AhAA8#AIiAAt>#AfAA$J#AtfAAV#AZdAA]#AaAA^#A}`AAa#A_`AA$d#A_AAo#A`AA~x#AcAA#AeAA#AeAA#AucAA#AbAA8#AaAA#A`AAr#A^AA#A]AAڥ#ARYAA#AXAA#A9XAAX#A{SAA*#ARAA#APAAB#ApNAA^#AMAAڗ#ADAAj#ADAAx#A9BAA #AAAA#A@AA#A>AA#A@A8U#Ay@A0S#A@AK#A.@AxI#A@AB#A@A=#A\@A:#A@Ab+#Aǻ@A+#A @Ar*#A @A!#A@A`#A@A^#AJ@AD#Adz@A|#A@A #A߰@A"A'@A"A@A"A@A#A:@A"A|@AV"Aש@A8"A#@A"A@Al"Ac@AP"A@Az"A@A"A@A"A@A"A@@A"Aѡ@A\"A5@A"Aʟ@A@"A@A"A @A:"AL@A"A@AF"A@A"A@AF"A@AT"A-@A~"A@A"A@A"A@Av"A@A"A@A"Aԍ@A"AI@AV"A@A"A@Ad"A@A<"A@A¤"Av@A8"A@@A"Az@A}"A.@Al"A@Ab"AË@A_"A@A,N"A@AH"A@A\K"AЃ@AL"A+@AnF"A@AC"A@ArA"Aj@A<"Am@A`0"A3}@A,"Aw@A.."A{v@AR+"Av@A"Aw@A"Aw@A"Aw@A "A/w@A8!A6x@A!Aw@Ar!Aw@A!Aw@A,!AMw@A!Ay@Ah!A~@A!Ag@A!A@A!Ax@A!A@A|!A@A!A~@A2!A@Av!A"@A!A@A!A@AP!A@A!A@A!A@A!A=@A!A@A!Aa@A!A@Aj!A@AB!A@A!A @A!AH@A>!A@A!A@A!A@A!AΦ@Ax!A@A!Aŧ@A!A`@A!A@Af!A4@At!AȰ@AL!A@A!A>@Ab!A@A !AM@A>!A@A!A@A|!Aе@A!A@A!A@AN!A`@A!A@Aܭ!Ay@A~!A@A!Ab@A!AF@A!A@A!A@A!A@A!A@A!A@A!A@AZ!A @AV!A4@A!Aj@Aּ!A@A*!AV@AD!AD@A!An@A\!Aw@At!A)@A!A@A!Ad@A!A@A\!A@A^!A @A$!Az@Aȷ!A@A!Ac@A!As@A4!Af@A!A@A!A$@A޿!A@A!AY@A:!A@A!Ag@A(!A@A!A@A!Aj@A!A@A !Aq@At!A@A^!A@A,!AH@A!AAAn!AXAAr!AAAܨ!AAA!A> AA!Al AA!A AAt!A+ AAz!AX AAЋ!A AA!Ay AA!A AA !A% AA!A AA!AAAl!AAAy!AAA,r!AfAAh!A AAf!An AAb!A AAX!A AAvP!A AAXH!A AA|E!A> AAB!AS AA@!A AA-!A AAB+!A, AAR"!AAA!AAA!AAA!AAA>!AAAf!AAA`!AAA|!A{AA@!AAA!AAA!ASAA(!AAA*!AAA(!AAA)!Ab#AA*)!A'$AAv1!Ah$AA>!Aw!AAP!A#AA$R!Ap$AAV!AQ'AAT!A(AAR!Ah)AA K!A*AAI!A-+AAJ!A+AAZ!A-AA[!A/AAe!An3AAw!A0AALz!AU0AA`z!AM0AA8LNA+b>At"A?A"A8+?Aʎ"A,?A~"A,?A"A-?Ax"A0?A"A0?Ax"A1?A&t"A2?Afr"A5?Aj"A7?A:h"A#8?A^"Al8?AZ"Aq8?AhX"A7?A Z"AE3?A4`"A0?AA "A>A"A>A"A>A"AY>Ad"A>AB "A>A"Ag>A!A>A!A)>A!A>AD!A>A!A>AD!A>A!A>A!AV>A"A>A"A>AJ"A>Ap "A>A"A>A"A'>An!A>AP!A,>A!Au>A!A>A!A>A!Añ>A!A@>A!A>A!A{>A!AB>A!AƩ>Ad!A>Ar!Aԧ>A2!AS>A!AD>A!A#>A!A>A(!A>A8!Aڍ>A!Aԇ>A!A>AR!A*>A8!A~>A!AK|>A!A!~>A!A}>AF!A|>AΦ!A*z>A"!Ay>Aܛ!AK}>A8!A|>A!Az>A\v!A y>A2e!Ar>Aa!A+p>A^!ARp>A[!A`r>A[!ALx>AX!Ax>A$S!AX{>A.G!A"{>A";!At>AR:!Aq>A $!AWm>A!A`i>AD!Ai>A!Al>A&!Aj>A!A h>A!Af>A!A%e>A !Aye>A!A5b>A!A+b>AV!Ad>At Aih>A Aki>A Af>A Ad>A Ac>Af Ad>A ACe>A Ag>A APj>A" A3k>A Al>A A'r>A As>AH As>A4 Av>A Av>A Av>Ap Aw>A Ay>A< A->Ah AO>Ap AЁ>A A>A A6>A A>A A>A A_>A̩ A>A A_>A֝ A;>A A>Aȏ AI>Ab AΑ>A Aғ>AN A>Ax A>ATl Aˑ>A^g A>A@e Aܘ>A\ A>A\Z A >AO A>A? AG>A.> A[>A4> Ae>A3 Aˋ>AR, A(>A) A~>A $ A>A" A>A A>A A>A A>A$ AС>A Ai>A A>AJ A+>A8 A>AB A=>A A>A. A>A, Aɱ>A A>A Aܳ>A A>A  AĶ>A A=>A A">A A׼>A A>A AI>A A>A A>A0A>AAS>AAm>AA>AA>A0A>AA>AtA>AA>AA:>A4mAW>AnA>AH~A#>A\A%>A܎A>AA>A@A>AAb>AĔAp>AA>AdTA>ALNA^>ARA>ATA>A(UA>AZA>AvA:>AA>AA >ATAt>AA,>A$sA9>A,]A>A@^A>A\A>AXNA>ATA?Ad]A@?A`Ag ?A\A ?A`A0 ?AHZAn?A<`A?AwA?A`A?A@A?ApAA?A$A!?A8A!?ATAe"?ALA%?AA,?AHA-?A$A1?AA-?AĊA1?AA3?A~A\3?AzAH4?AxA+:?AA;?AtA:?AA;?A8A=?A(AB?AԉAQD?AAyE?AxrAgG?AtuAJ?A(AK?AAaQ?AȆAJU?AAU?AAU?AA W?AAY?AܚAD[?AdAQ?AtAP?Ax AZ?A A\?AN A,]?A. Aj]?An A=b?A Ab?AN Arj?Ax Ak?A"$ Ak?AL) Ajh?A+ Ag?A4 An?A4 Au?A@ Au?A@D Akx?APE Ae{?AI Ay?AvL A&y?AK Apu?AL A+t?A X ALu?A[ Aw?A[ Az?Aj Atv?Am A3v?At At?A| A|v?A Av?A A~?A A?A A~?A A?A& A?Al AQ?A Ah?A A?A> Aŏ?Av A*?AN Ax?Ax A[?A` AF?A A?Al A?A A?A Al?Ad A?A A,?AN!A=?A!Av?A !A?A> !Ah?A8!A?A!Ak?A!A~?A!Aa?A!A?A@$!A?A)!Aۧ?A^6!A@?A8!A?A:!Aѫ?AF!A>?AK!A?AHJ!A?AE!AR?AE!Aͳ?AbL!A-?AJQ!A¹?AV!Aq?AZ!A:?A`!As?A`!Ag?A,h!A?Av!A1?A&x!Aؼ?A}!A,?Al!A8?Aԃ!A?A!A ?A!A?AF!A?A!A?A!A?Aҧ!A?AJ!AC?A!Ao?A8!A?AV!Az?A !A?A6!A?A!A?A"Az?A~"A?A"AY{?A"Av?A޷"At?A"At?Ah"As?AR"ARp?Ad"A2o?A2"Aj?A\"A5h?A"Ae?A("AY`?Aи"A~]?Aȹ"Aj\?Aһ"AJZ?A"AT?A"AL?A6"A5L?A"AG?A"ArF?A"AD?A"AdAAm)AAAg)AAA|f)AAAf)AAAb)AAAb)AAA,[)A@AAR)A AAP)AAAO)A AAbH)A} AAE)A AA@)Af AA;)A AA3)A AA.)A AAF-)AQ AA*)AAAn$)AAA& )A[AA: )ANAA")AAAp9)A AA*:)Ah@A|7)A!@A1)A@A.)A@Ad#)AM@A!)A@Ar)A"@A)A@A)A@A )AF@A)A@A)A*@A@(A@A@(A?@A(Aj@A*(A@A (A@A(A@AH(A}@A~(A@A(A}@AZ(A=@A(A@A(A@A(A@A(A?@Av(Am@A8(A@A(AH@A(A@An(A7@A:(A@A(AB@Aĥ(A/@A(A@A8(A@A(Ag@At(AC@A(A @A(A@Ap(A@A(A@A|(A3@A(AG@A.(A/@Az(A@A~(A@A\k(A@Ai(A$@Ad(A@A0b(A+@A\(A!@AK(A@A4I(Ax@AA(A%@A>(A?@A?(A@A.=(A@AV2(A @A/(A@Av(A0@AL(A@A (A@A(AG@A(A@Ap(A@A'AW@Ad'A@A'A@A'A/@A'A@A'Ab@A'A@AP'A6@A'A@A'AH@Av'A@A|'AZ@A'A@AF'A@A'A@A'Ah@A8'A@A'A@Az'Ad@A'A@A4'A@A6'A@A'A@A'A@A'A-@Aڐ'A]@Al'A@A'A@A'A@A'AB@At'A@A4}'AG@A\}'A@A{'AM@Apu'A@A$q'A@A@v'Az@At'AN@ABg'A@A`X'A@Ao&A]9AAvl&A9AAnk&A:AAq&A:AA^o&A0@AA:v&ABAAy&AKDAAw&ADAAxr&A?DAAk&A AAAd&A1@AAd&A@AAd&ACAA_&ADAAXc&AFAAc&AHAA^&AIHAAS&AIAAR&AyJAAW&AHLAA"K&ANAAJ&AOAA&O&APAAU&AgRAAT&A SAAT&AKUAA$S&AUAAU&AVAA[&A2UAA]&ATAAb&A`VAA`&AWAA:c&AWAAg&A)WAAi&AWAAn&Av]AAl&A^AAi&A_AArh&A<_AAf&A_AAi&AaAAh&AbAAf&A^cAAe&AcAAd&AdAAf&A eAAe&AgAAh&A gAAs&AhAAzt&AiAA@v&AjAAz&AkAAy&AkAAw&AlAA{&AmAAV&AnoAA&AoAAl&A7oAAj&AoAA<&A_sAA؏&AsAAj&AuAA&AyAA&ABzAA&A'zAAr&AzAA&AzAA&AAA&A'AA&AAA&AAAF&AdAA&AlAA,&AAAZ&AAAִ&A&AA &AыAA&AAA&AAA|&AAA&AAA&AqAA4&AҒAAЪ&AAAԫ&AAAl&AAAʶ&AAA&ApAA&A6AA&AAA*&AKAA.&AAA&A/AA&AAA&A؟AA&AAA:&AʠAA&AAA&AAA(&AAA2&AȧAA&A(AA&A2AA2&AAA&A AA&AAA&AAA&ABAA̵&AAA>&AAA(&AAA^&AhAAj&AйAA8&AkAAF&AbAAj&AAAh&AAA&ApAA"&AAA>&AÿAA&AMAA&AAA&AAA&A AA&AAA&AAA&AAA&AAA&AAA&A$AA 'AAA2'A)AA'AAA'AAA:'AAA4G'AAAO'AbAA\'AAA^'AWAAt`'AAA~]'AAAV'AAAlQ'AAA~Q'A\AABW'AAAD['AAAd\'AAAVa'AdAAi'APAAj}'AAA'AAA'AAAB'AAA2'AAA8'AAAJ'AAAN'A AA'A,AA¼'AAA'AAA'AwAAD'AAA'AAAf'AAAV'AuAA'AAAx'AzAA'AAA'AAA"'AjAA('AAA(AAA (A1AA(AVAAH(AAA(AAAn'AAA>'A+AA (AAAh (AAA(AAA`(AAA%(AAAP*(AAA+(ApAAD2(ABAAT4(AAA6(ALAA9(A$AA9(AʷAAC(AAANI(AAA^N(A5AAfN(AFAAU(AAAAJ\(AAA,\(AAA\(AAA_(A'AAb(A߬AA^(AAAFL(A*AAG(AAA4E(AAA9(AAA8(A?AA\6(AAA9(AӠAA6;(AAAC(AAAG(AAAL(AMAA4O(A#AATS(AAAP(AיAA.S(AKAArW(AAAW(AΘAAS(AAAS(AAAO(AAAM(AAAO(AAAX(AAAV(AAAe(AAArj(AAA^k(AAADn(A*AAy(A6AA4|(AAA{(AˑAA&(AAA0(A؍AA(AAA^(AAAZ(A*AA(ACAAV(A,AAt(AAA(AAA`(ALjAA*(A`AAZ(A-AA@(AٌAA(AAAF(AAA$(AAA(AvAA(AAA(ADAA(AAA(AWAA(AقAA(AAA(AAA(AlAA(A܂AA)AaAA)AAA(A~AA(A@}AA*)AuyAA )AkzAA)AzAA)A|AA)AfAAF%)AqAAd))AAAL/)AGAA2)AAA5)AAA5)AN~AA=)AK}AA>)A}AAB)AAArG)A/AAI)AAAP)A@~AAT)As~AAV)A~AAt`)A߃AAd)AtAA`m)A AA~)A)AA>)AAA)AAAV)A5{AA`)ATxAA)AwAAH)A0uAAd)AptAAΌ)ApAA)ApAAr)ApAAt)AmAAy)AjkAA>v)AiAAs)AhAAo)AgAARm)A hAAj)AiAAY)AniAAX)AhAAdU)AgAAS)AfAA\S)AeAA\)AdAAx_)AdAAv])AEdAALO)A/bAA,J)AaAAP)A`AAP)Ax_AAO)A^AAa)AXaAAc)A aAAf)A_AAn)A^AAp)A_AA(t)AJ^AAr)A]AAzo)A\AAn)AXAA*u)AbVAAlu)A UAAs)ATAApq)ARAAz)A\QAAj|)APAA)A(SAA)ARAA)APAAN)A8OAA)ANAA4)AMAAv)AJAA>)AJAA)AGAA2)AEAA)ADAA)ACAA)ABAA0)AAAA)AAAA)A@AAr)A@AA̦)A?AAP)At=AA)Aj;AA$)A;AAP)A<VBA(n AVBAxy AkVBAx AXBAP AWYBA AYBA@ A[BA A`BApD A eBAi AdBAh AfBA AfBAH AUjBAp AlBAH AbmBAH AnBAHAoBAtAnBAXvAkBAPqAjBAAkBA0A7lBA؍AnmBAХAmBA0AoBAApBApiAuBAzA(sBAAHqBA(iAjBA8AhBAX/AhBA9AgBAMAgBAUAfBAhA*fBAAhBA0AhBAA/iBApAiBAXAIlBA`AlBA@AkBAHAejBApAhhBAA5fBAAdBAAaBA|%A`BA!A]BA&A]BA*A_]BAx+A^BA<A/aBA;A*dBAEAcBAACPBAKAOBA(OARBAPAWSBA_AHUBA,bAUBApdAUBAtkATBAiASBADqAQBA(xAABA@0ABAxABA ABA ABA A/BAz ABAq ADBA AwBA ABA. A,BAX. AAA AAA@ AAA( AwAA A\AA( A'AAX AAAЭ AAA AAA AIAA AAA AAAA AAAH A'AA AAA AAA AAA APAA AAA AAA AUAA AAA` AAA A~AA AAA AAAH AAAH ABA AQBAȯ ABAx AAA0s A_AAg AAA@; A{AA AAA AAA AAA AAA AAAX AAA AAAh AWBAЃ ABAw ABA(' ABA AIBA A\BA( A BA A| BA A; BAS A BA% A/ BA A BAA BAA BA8A BAA BAPA}BAABA@ABAPABAABAZA"BAH7ABA`(ABAxA,BAHABAhABAXAcBAABAABAA2BAPA3BApABAAzBAxABA8xA< BA`ZA% BAP;A BA1A BAP&A BAAJ BAA BAA BAABAA BAA BAwA^ BAYA BAUA BAKAr BA6A BAh(A BAA} BAA BAAS BAhA BA A} BAXAtBAAWBA0AbBA`kABAEA BA$A BA8AN BAA BAAX BAA BAPABA`ABAxABAABAA%BA@AzBAH{ABAqABATABAIAQBAABAABApABAABAABAAkBA!ABAABAHAqBAhABAABAABAA!BAAC"BAA#BAAO$BA,A$BA)A@%BA$A%BA(A'BAh=A[*BA1AK*BAH"Ak+BAA-BAXA.BA@A=.BA0A.BA-A1BAEA2BA;A2BA+A2BAAW1BAA1BAA7BAhA8BApA=BAAP?BA8AABAAOBBA A,DBAADBAAAEBA(AIBAAKBAANBAANBA(A;OBAAOBAAkQBAARBAXARBAASBAATBA8ATBAAUBA`AWBApA,YBAAZBA AYZBAH&AZ`BAhNA bBA-AbBAXAkfBAAeBAHAgBA@AhBAAsjBA0ASlBAAlBAAlBAhAmBAhAmBA|A oBAptAoBAyA~rBAPeA#sBAZAltBAZAuBAOAn|BAVA|BAZA}BAbA~BAAIBAABAABAHAwBAA0BAABA#ABA*A{BA3ABA+ABA ( A?A"AL~@A| A;@A.l A@@Ahk A@AFi A@Avk A @Ao A"@Ar A#@A4k A&@Ak AW'@Ai A(@A0o A ,@A"f A-@Ae A/@A] A.0@AZ A@/@AV A0@AU Ab1@AxT A2@APO Ac3@AjR Aq5@ATY A6@AW A8@AS A8@AS AV:@AK A:@AD Aj<@AR9 A=@AA A8?@A> A*A@AT? AB@AV: AJC@A7 AB@A/ A=B@A+ AB@A% AB@A AC@A AC@A AF@A. AlG@A AwK@A| AK@Ax AO@A AP@A# A5P@A$& AP@A' AR@A AHS@AZ AT@A$ AtV@AH* AV@A1 A%W@A. A>"Af@A:"Ae@A@"AO@Aһ"A9O@A("AO@A."ADG@A$"AhE@A"AD@AH"AfC@AX"AA@A "A,A@A"AA@A"AQ:@A"A9@A"Aa9@A\"A|7@A2"A6@A"A5@A"A3@A"A0@A "A/@A"A.@AT"A+@A"Ay%@A\"A"@Az"Ak"@A"A!@A"A@A"A@AX"A@A"Al@A "Aa@A "A@A"A^@A,"A@AX"A@A^"A@A6"A@A"A@A"A @AB"A @A."A' @A"A]@A"A@A"A{@Aй"A@A"A@A"AF@A"Aq?A "A?A"A?A"A?A"A=?AX"A?A"A1?AX"A]?A$"AJ?A "A?A"A?A܉"A?A"A?ALw"A?An"A|?Ao"A?AΈ"A?Ad"A?Å"A?Aȏ"A?AȔ"A?AZ"A?A̞"Am?Ah"A?A"A?A"A?Af"A8?A"A?A"AƼ?A"A?A"A7?A0"A|?A"A?Ab"A?A|"A?Ak"A?APf"A?Ald"A̹?Ab"A?A~_"A?AV"A-?AT"A?A8V"A1?AV"A4?AfR"AS?A~E"Ac?An="A%?A8"Aϧ?A1"A?A'"A?A'"A?A$"A?A"A+?A"A?Av"A ?A"Al?A2 "AB?A&"A¹?A"AH?A"AF?A!AӴ?A!A?A!A%?A!A#?A!A?A4!A}?A!A,?A,!A#?A!A!A?AbA!A~?A;!A?A6!Ai?A=!A1?AAP# AU>A% AU>Aj' A$R>A.' AP>A% AO>A| A%N>Al AM>A A)N>A$ AN>A A*K>AZ A~J>A A%E>Ab AbD>A AD>AAA>AAB>AA @>AA@4>AA4>A A3>AA2>AA1>AA.1>AXA.>AxA+>AA*>A\AA)>AA~%>A<A#>A\A">AA>AxA>AA>AAH>ApA>AAg>AAc >AA >AvA >ArA >AHkA>A(ZAu>ASA>ACA>A =A*=A<A=A6A&=ADA =APAV=AA=AA =A(A=ApA.=AHA?=ATA=A0A=AA=AxA=AA=ApA4=A0A=AA==AA=A`A;=AAQ=A،Aj=A@Al=AA=AA=A|A=AjA=A@^A=AMA}=AXHA=A4A=A!A=AAN=A( A=AA=AA=AA=AA=AA==AA=AA=AA=AA=AA=A}A=AlsA=AnA=AWA=Ah[Ak=APA=A,MA=AKA:=AAA=APYA=AYA=A cAY=AcA%=AljA=A,oA=A8jAY=A(ZA=ApNA=ARA=A,UA=ATRA>ADEA >A.A>A A>AAH>AA=A8Ap>AAH=AA=AA=AA=AAB=A A=ADA=ApA =A}A=A}A>A|A'>A sA~>AT]A >AYA >AtRAs>AxTA>AOA>AKA>A,A>A'Ag>AA>A A=AA=AA=AdA=A4AO=AAC=AA!=AxA=AA=ApAM=AؕA=AAh=AH~A=AxA=AaA=AhRAh=A2A=A A=AA=AA=AAn=AA=A@A=A< A>A A >AXA >A A >AA>>AhA>AA>AA>AA8>A(AG#>AA#>A\A-%>AA3&>AĮA*>AA.>AA/>AtA3>AA35>AAE;>AA?>AAJA>AdA9A>A̷A?>AxAKC>AA2B>ApAD>AAI>A4A-J>AtA Q>AAQ>APAFU>AAO>AAN>A~AM>AjAyI>AdAHI>AZA:H>A|VA/G>ADAq?>Ax@A$?>A(:A@>A7ARA>A82AA>AA!B>AAjC>ApA&C>A`A?>AdA?>AA?>ADAMD>AtAE>AAtE>A4AD>AA?>A A?>AA-B>AA6B>ȂAFB>ATAB>APA&E>AAH>A|sA[M>AbAK>A\AK>A-A O>A0AiP>A$LA(R>ASAU>A4WAV>AZAY>AZA6Y>ApiA\>AlA_>AnA`>AoAa>AsA%b>A<Ai>A$wANn>ArAo>A4pAp>APcAw>AAAoA>AtA\>AAs>A|A>AܐAË>AlAԔ>A<A >AA+>AA>AȘA>AЦA>AA>AA>AAS>AA>AذA>AAÿ>AAz>ApnA>AiA>AFA>A3A>A2A9>AAA>A|;A>A9AH>AAlhA>AVAy>APA>AfA>APkA>AoA>AvA>AA>AAV>ADAJ>AA>AA>A|A>AA>AhA>A0A*>AA>AA>AA>A Ay>AA>AdA>A8!A>A-A>AxBA9>AD>AK>A>A6>A@A>AdDAH>ACA>ACA>A|cA>AhA>AoA?ApA?A\|A ?A}A ?AИAw ?ALA ?AA ?ATA^ ?AA ?AصA ?AA?AA)?AtA?AA?A\A$?AA%?AAL)?AأA*?AA2?AеA8?A$AA\A>A@^A>A,]A>A$sA9>AA,>ATAt>AA >AA>AvA:>AZA>A(UA>ATA>ARA>ALNA^>AdTA>AA>AĔAp>AAb>A@A>AA>A܎A>A\A%>AH~A#>AnA>A4mAW>AA:>AA>AtA>AA>A0A>AA>AA>AAm>AAS>A0A>A A>A A>A AI>A A>A A׼>A A">A A=>A  AĶ>A A>A Aܳ>A A>A, Aɱ>A. A>A A>AB A=>A8 A>AJ A+>A A>A Ai>A$ AС>A A>A A>A A>A" A>A $ A>A) A~>AR, A(>A" A>A AԈ>A A>A Az>A" A%x>A As>A| An>Az" Adn>A*" Aj>A4' Ab>A  A]b>A AK^>A A]>A~ AZ>A AX>A *A@A"1-AAA!+A@AH+A1@A+A@A+A@A+A@A+A@A+A@A+At@A^+A7@A|+Af@A&+A@A(+A@A(+A@Ar,+A@A5+Ad@A6+A@AR9+A1@A;+A@A<>+A@A,E+A1@AE+A@AF+A@AS+A@AQ+A#@A8P+A@AL+A@ArD+A@A8+A@A>2+A@AV/+A!@A61+A@A.+AU@AX+AC@AX+A-@A+A @A+A@A( +Aq@AV +Az@A"+AU@A*Aq@A\*A@A*A@A*A@A*A@A*A@A*A@A*A@A*AR@AH*A@A^*A@A**A@A*A@A*Ad@A*A@A>*A@A*A@A*A@A*A@AN*A@A.*A@A*AY@A*A:@A*A@A6*A@A*A@A*A^@A*A@AN*A@A*A@A*A@Aj*A}@Ar*A@A*A@A"*A/@A*A@A`*A\@AR*A@Al*A\@A"*AAA*AAA*AAAT*A@AĊ*A@Aƈ*AHAA*AhAAz*AAANt*AAA2t*A6AAJr*AAA\p*AAAo*AyAAbo*A9AA*m*AAA8b*A[AA4a*AAA`*A_AAFa*AEAA_*A AA\*A AAY*A AA W*A[ AA>U*AAAV*AAAR*A~AAP*AAA F*AEAAB*AAA@*AXAA9*A AA7*AAA4*AAAt9*AAA9*A#AA2*A AA1*A AA~7*AS AA@*Ae AAfM*Ar AAL*A AAI*AAAG*AaAAC*AEAAC*AAAG*AAAM*A_AAN*AAAO*AeAApU*AAAV*AAAHW*AAA<]*AAAc*AqAAa*AAAZ*A= AAh[*A AAX*A4"AAX*Aa$AAxV*A$AAM*Au%AA8I*A$AAI*A0%AAH*An(AAF*A(AAVB*Aj)AAL:*A)AA7*A*AA8*A*AA6*A+AA,*A*AA,*A+AA%*A^.AA"*A.AA.!*Aj/AAH"*A 0AA*AF2AA:*A2AAp*A}3AAv*A7AA*Aw8AA*A.9AA*A9AA%*A8AA6(*A\8AA,*A8AAv0*Aj:AA3*A:AA4*AL;AA0=*A;AA?*AAAAG*Av>AAJ*Aq>AAS*A?AA&V*A?AA,]*Am@AA_*A@AAe*A@AAg*A2AAAk*ABAAk*AgCAA,r*ADAAw*A[DAAz*A}EAA}*AEAA*ACAA*ADAA҄*AGAA*AGAAZ*AHAAΓ*AGAA*AkGAA*AGAA*AJAA*AAKAA2*AJAA*A4,AyAAN6,AzAA7,AzAA9,A_{AA4<,At|AA@,AR~AA8B,A~AA@@,AAA7,AAA;,AAA>,A!AAL,AAAK,AhAAJ,AAAANX,ARAA\,AS~AAp_,A;~AA_,ABAA`,AAAb,AAATk,ASAAtn,A~AAp,A}AAt,Ap|AAv,A,|AA*{,A{AAf},An{AA,AT{AAd,A<{AA,A~AA~,A4AA,AAAL,A.AAR,A~AA,A ~AA,A}AA,A^~AA,A^~AA,AR~AA,AAA,A-AA,AAA,AAAL,A&AA,AD~AA,A}AA,A }AA,A{AAP,AIzAAr,AxAA,AxAA|,AxAA>,AsxAAR,AwAA,AwAA@,AwAAx,A\tAA,AqAA\,AqAA,AsqAAb,AqAA,A"tAA,AtAA,A tAA,AAA,A=AA,A'=AAh,A;AA,Ah:AAH,A9AA,A8AA,Ac5AA,A4AA,A/AAd,A.AA,A,AA,A1,AA,A*AA,A'AA|,A&AAܮ,A%AA|,A%AAФ,A3#AA؎,A AA,AAAt,AiAAv,AAA,AAAp,AAA>i,AAAu,A{AAk,AAAb,AAA_,A AA\R,A AAxG,ApAA@,A$AAT7,AAAX1,AAA,,AAA*,AAA,AAA +Aa@A+Ax@A.+A@A,+A>@A*+A@A+A@A2+A@Az+A@A8+A@A+A@A+A@A^+A@@AH+A~@A+A/@A.+A`@A+AQ@A+As@A+A@A+A_@A6+A@A+A@A+A[@A+A@A"+A@AV+AD@A+A@AV+A@AЯ+A@Ad+A@A+AS@A+A@A+A@A}+A;@APx+A@AAp^)A>A `)A>A`)A >Ah)A>Ai)A >As)Aޮ>Ar)A>Ay)A >A|)A*>A\|)A>A )A;>A)Aد>A$)A>A)A>A܏)Aj>A)AP>Aģ)A>A$)A>A̫)A4>Aƣ)A>A)AU>Af)Aܪ>A)A*>A)A>A)A>A)A>A)AU>A")A>A\)A>A&)A>A,)A>A*)A>AF)Aٶ>AN)AS>A)A>A@)AЫ>Ap)AJ>A|)A>A)A>Ax)A>A)AB>A<)A>A)A1>A)A>A)A>Av)Aw>A)A6v>A)Aek>A`)Ab>A~)A/^>AD)AgM>A)AK>Ap)AJ>A )AJ>A)A+D>A)A@>AR)A=>A)AB=>An)A:>A*A4>AD*A7>A*A<>A@*A>>A4$*A89>A&*Aw8>A)*A2>Az7*A?/>A@*A.>AC*A_.>AhC*A->AE*A*>A:L*A%>AN*A-%>A4P*A#>AQ*A!>A~Y*A >A]*A">A\l*A!>ANq*A">At*A$>A(}*A>A*A1>A*A>A*A>A\*A>A.*A>Aܵ*A0>A.*A>A@*AT>A*A>Aܻ*A>A*A>A*A0>A *A>A*A)>Av*A>Ad*AR>Ah*A>A*A>A*A=AFj*AI>A>[*Ao>AHV*A#>AT*A>AXP*A7>AO*A>AR*A=ANV*A=AT*Aj=AN*A=AI*A=A&I*A =A~F*A=AA*Av=A=*A=A=*A=Ap<*A=A8*A=AhB*A=AD*A=AK*Aa=AU*A==AW*Am=Ab*A=Ac*A=Aa*A=A[*A|=A~P*At=AbL*A|=AK*A=AG*AU=At?*A/=A<*Au=A)*A=A&*A=AF$*As=Al*A=A*A=A*AK=A*Au=A)AѺ=Ap)A =A)Az=A)A=A)A=A)AY=A)AU=A)A=A )A=A0)A=A)A=A)A=A()A9=A$)AϠ=A\)A=A)A֟=A)A#=A)A0=A)A==A)A=A)A.=A)Aқ=A )A=AR)A=A@)A=An)A=A)A:=A)AƄ=A)A=AJ)A=Ab)AI=A)A}=A)A}=Av)A'y=A)Ax=A8*A?{=A*A}=A*A{=A*A{=AP*A v=A#*Av=A'*Aw=AB-*A$w=A0*Aww=Ab7*Aw=A9*A w=A:*Aw=AN*Aw=AP*Ax=AS*Ahx=AT*Au=AJ*ASp=AH*Al=AL*Am=AfU*A0j=A2X*A!j=A\*AOh=AY*A%f=AW*A e=ADX*AIb=A&a*A]=Aa*A[=Ap*A_=A.s*A_=Ax*A\=Anz*A[=A~v*AY=As*AW=Arr*AR=As*ALP=Ax*AM=ALx*AJL=A0v*AD=A|*A==Av*A.;=A\g*A :=Ag*A8=ABc*A1=Ad*A_0=A{*A$/=A{*A-=Ay*A'=Av*A(=Ad*A(=Ab*Af(=A\*A(=An\*AT*=A8`*A/=ALZ*A 3=A R*A4=AL*A9=AZH*A=:=AF*A9=A8*Au8=A1*A0=A3*A/=A<*A1*=A 6*A7'=A(**Ak'=A(**A>'=A$*A1 =A*A=A*A=A~ *A=Ah*A=A)A=A)A=A)A =A)A =A)A"=A)A'=A)A&=A)A%=AH)A'=A)A&=A)A'=A)AL)=A4)A:2=Aj)A7=A`)A:=A&)A;=A|)Aj<=A)AU==A`)A==A)A@=A)AV<=A)Af>=A)A >=AF)A<=AΊ)A0==A̅)At@=A~)AB=A{)AC=A@o)AF=Al)A'G=A>j)AG=Ag)AF=A4e)AF=Ae)AYE=ATd)A7?=AQ)Ae?=A =)AA=A8)AC=AN5)AD=A,)AG=A-)AI=A1)A.K=A|3)AdL=A3)AM=A82)AU=A))AxV=A+)A\=AP6)A`=A*7)Ac=A6)Ad=A8)Ag=A5)A:j=A^4)Aj=A1)Ai=AN,)ASh=AB*)A)d=A)AZ=Av)A5\=A>(A*\=A(A`]=Ab(A4f=A (A3e=A(Aa=A(Aa=A(A_=Ax(A^=A.(A[=A(A[=Ah(A[=A(AY=Av(A>X=Av(A\T=A(A>Q=A(A Q=A(AO=A(AQ=A΍(AQ=Ar(AkP=Aڀ(AO=Anu(AUI=As(AH=Ab(AfA=AN_(AA=AZ(AC=AzY(A.G=AZ(AH=AFY(AN=AS(AR=AT(AZU=AS(AV=AR(AW=AS(Aa=A8P(Aa=AC(Axg=AT>(Ag=A8(Aj=A5(Aj=A(Ak=A(AZh=A(Ah=A'A'k=Ad'Ak=A'Am=A'As=AT'A~=A'A_=A0'A=Ah'A8=A*'Ad=A'A=Ap'Ae=A(A=A(A,=A8 (A=A (AШ=A (A\=A (As=A\(A=A (AC=A(AI=A(A=A(A@=A(A=A (A=A(A=Ap(Ar=A (A=A:(A=A(AK=AV(A=AH(A#=A(A=A!(A=A#(A=A#(A`=A%(AR=A #(A=A$*(A;=A,+(A=AV-(Ai=A.(A=A46(A=A9(A=A8(AT=A:(A>AF:(A >A3(A6>A.(A>Ab.(A">Ab.(Ar>A+(A">A0(As'>AP,(A+>Ah+(Al,>A+(Av->A.(A/>A1(A}0>A9(A82>A@(A6>A@(A:>A*C(A;>AB(A>>A~G(A?>A8J(A(@>AO(A A>AlN(AF>A P(AJ>AU(AYK>AX(AK>A\(AuM>Af^(AT>A_(AU>Ac(A X>Ae(A!Y>Ajf(A[>Aa(Ac>Aa(A>e>AAk(Al>Al(An>Adt(Avu>As(Av>Ap(Ax>Ao(Az>A>l(A}>A j(A~>A~c(A>A^(A>A8^(A>A](AE>Ad](A>AdW(Aa>AT(AU>A2T(A=>AW(A>AW(A>AAV(A>AW(A#>A(](AA>A^(Ag>A`(A>A_(A\>A(\(Al>AXQ(A>A:M(A>A>L(Ax>AM(Aߴ>AZN(Ab>AL(A>AK(AQ>AI(A|>A|G(At>ATC(A>AA(A>Al<(AM>A<(A/>A<<(A>A=(A{>AJ(AT>AJ(A&>AI(A,>AG(A>AD(AF>A>(A2>A>(A!>Al?(A>A<<(A>A;(A>>A0?(A.>A=(A>AX9(A>A|8(A%>A7(A>A;(A?A:<(A?A$<(A?A;(A,?A;(A}?AB;(A ?A:(AX?Av5(A.?A:(A?A0V(AQ?AX(A?A0Y(A?AY(A>?Afd(A?Ap(A?As(A?A>(Ah?A(Ar?Av(A?A (A0 ?A(A ?A(A#?A2(A$?At(A'?AF(A&?AJ(A&?Az(AF?A(A?A(A ?A>(A?A(A?Al(A?AP(Af?AX(A?A@(A?A2(A ?A^(A9 ?AF(AI?A(A/?A*(A?A(Ap?A(A?A)A?A)A??A$)A?A&(A>A)A>A)A?A)A>Ab)A>A<')AV>An,)A>A-)A>A")A>A )A&>A)A>A)A>A)AS>A)A>A&)A>A')AP>A@))Ac>Ab%)Af>A|()A>A')A>A ()A}>A')AD>AB)Ai>A)A>A)A>Ap )A_>A )A>Ad )A.>A)Aɴ>A)A>A)AR>A)ADZ>A$)A`>A5)A>A8)A>A`=)A}>A?)A;>AXA)Aж>AB)A>AD)A>AI)A>AL)Aٱ>ATN)A)>AY)Aˮ>AZ)Ah>AN(AΔ=AN(A=A(AҒ=AV(A=A(A=A(Ar=An(A =A(A=A(Az=A(A[=A((A4=AR(A=A"(A=A(A=A(Aـ=A(A~=An(AJ}=A(A{=A|(Aw=Alz(A{t=Ab(At=A4(Ar=A(Aq=AЂ(Al=Az(Ag=A(A7d=A(Ab=A(Ae=A(ABe=A(A_=A*(A^=A(Ag=A(A3j=A(Am=AV(AMn=A(Aq=A(Au=A(A}=AZ(A~=A^(A,=A(A2=A(A=A(A%=AF(Ai=A(A=A(A=AZ(A-=A(A=AN(AΔ=APAt`BA!A,CAGoABAzA\BAABA AfBAA\BA@ABAxAoBA@A BAAcBAAvBAABApAdBAATBAA?BAABA@AUBAABAABAASBAPA,BA\ABAABA A{BA ABA ACA A;CA ACA AZCA ACA AMCA ACAR ARCA ACA ACA* A CA4 A= CA6 A CA&8 A CA^3 AW CAVC A CAP A[ CAX AA CAg A} CA

BA!ABA!AgBA!ABA~!ABAB !ABA !ABAr!ABA !AHBAN ABA ABA ABA ABA ABA ABA A BA ABA ABA ABA ABAf A:BA ABAl A2BAr ABA ASBA AnBA ABAt APBA ABA A5BA" ABA2 AEBA ABA6 AyBAl A)BA AQBA ABA~ ABA ABBA ALBA: ABA AyBAޯ ABA@ ABA` AzBA A2BA ABA ABA> A\BAh ABAV ABAH A1BA} ABA} AƶBA@{ ABAw ABA>y AABAps A0BAnp ABAi ABA(d A BA[ A.BAbS ABAU ABAS A-BAX AUBAX AޭBAY A!BA^ AЫBAa ApBAd ABABb A~BAd A,BAe ABAe AݧBAT` AvBAZ ABA^ ABA` ABAbd AߢBAPm AߢBAbu AϣBAx ABAT{ ABA(y A"BAm ABA,q A=BAv A>BAu ABAVq ABA AsBA AsBA AgtBAr AtBAAtBAlATuBAACtBAA"tBAA#sBAtA$sBAAsBAAtBAAuBAAuBAAFuBAȠAtBA@AsBA AMsBAAsBAwAvBA|ZAuBAUAuBAKA{wBApNAnyBA0IAHyBA@+A?zBAX(AyBA@,AuBAL!ApBALAtqBAArBA4A5sBATArBAAqBA\AsBAAXsBAAoBAHAmBAABmBAxAnBA`AnBAA% AAAz AEAA AiAA A4AAPAcAA8AAAAAAAsAAAAAAiAA(AAAAAAAOAAvAAAgAAADlAAAqA_AAhcAAASAAA`NA*AAOAAAEAAALAjAAHAAA1AAA-AAA$A,AAAKAAAAAA AAA9AAAAAAAA(AcAAApAAtAAAAAAAAA@A AAA\AA AAA AAAAPAAAiAAAxAAخAAAĖAAAAAA0WA AAKAAA(LA(AAJAAADAAAp9AAA&AAA< AAAXAAAxAAAAAALAAA|AbAAhAfAA(AAA+A~AA#AAA%A@AA#AAAAAApAAAAyAA|AAAAAAAA#AAAAAԢAAA0AAAحAAAAAAAuAAA BAxAtBAxAC BA@A BA A\ BA̫A8BAXABAHABAAOBApABA{ABAxABĂA*BAABApA\BAABAABAABAAZBA|AyBAAsBA4ABAABAA+BAAOBA`ABA\ ABA<ACBAABA$AG BA((ABA9Aa"BA>A"BApBA$BAXAx&BAUA *BA\vA-BA0zAv.BAwA*/BAkA0/BAaA 0BA QA33BANAq5BAXMA5BADLA6BAt`A7BAcA9BAcA8:BA^Ad:BASA;BA cAAHBA1AIBA,AFJBAAKBAdALBAANBAASBAATBAASBA$AUBAAXBAhA YBA,AYBAA[BAA\BA<Ag]BATA_BA$A'aBAAbBAHAicBAxAcBAAdBAT AajBAAjBAAkBA*AiBA AAjBABAXiBAeAjBAoAxlBAAmBA$AmBAAmBApAlBAA AsBA A4wBA AwBAx AwBA AdxBA& ACxBA`( AyBA& A{BA$ AC|BA`# A|BA" A}BA  ABAh A7BA ABA,. ADžBA0 ABA4 ABA,5 ARBA*9 ABA@ ABAʞ A#~BA؜ A}BA AxBA< AvBA AtBA AsBAB A+sBA ApBA$ AnBA AmBA AmBA AhBA A hBA AWfBA AeBAz A.eBA AcBA* A}cBA AbBA( AxaBAx A^BA A]BAʫ A:]BAv A0[BA< A_[BAԾ AYBA` AXBA AXBA A;WBA AQVBA6 ATBA ASBAL A-SBA ARTBA ASBA& ASBA ARBA ASBA ARBA AQBA AMBA ALBA ALBA A`KBA A;JBA A{JBA\ AJBA!AIBA!AGBA$ !AqFBA\ !AEBA!AEBA!AFBA !A,@BAX !A%=BA!A!9BA!A|8BA!Aq7BAl!A6BA!AW6BA@!A3BA!A2BA,!A23BA.!A1BA0!A,1BA4!A.BAH:!A.BA!ABAt!ABA.w!ABAw!A BA|}!A BA!A BA(!A BA!A BA@!ABA!AdBAv!AXBAj!ABAxx!ABA.v!ABAx!A3BAx!ABAw!AAAdv!AAAZ~!AAA{!AAAr!A AAJp!AAA&z!A AAz!ABAAz!AAARx!AAAo!AAAe!AcAAa!AGAA(]!AlAAj[!AAA\V!A_AAS!AbAAW!AoAA]!AgAAX!AAA(V!AAAHQ!AUAAK!AAADJ!AAAF!AAA=!ATAA$=!AAABA@=BA`w@>BAq@>BA0@9ABA @gABAP@>BA@R?BA @2FBApo@GBA0@#JBA d@LBA@MBA@NBAЮ@NBA@MBAQ@=PBAg@hPBA A@UBA/@VBA@@,UBA@TBA@BTBAj@yQBA%@QBA@JOBAm@.OBA@W@MBA @@MBA-@]MBA @lMBA0@LBA e@MBAC@MBA4@MBA@JBA@KBA}@JBApL@&KBA@JBAO@FBA@ @zGBA`@GBAО@EBA@oCBA@CBA@CBA@iCBAe@EBA@$@EBA@GBA@GBAR@EGBAD@_DBA@)CBA0@CBA@/CBA@DBA@DBA@@oEBA@@GBAp@IBA@TJBAp @uJBA@O@IBAg@IBAm@JBA@KKBA0S@JBA@JBA@JBA@JBAp@KBA@3KBA@?@KMBA`C@NBA@5PBA`@_TBAP@TBA0@VBA@ZBAP'@[\BA@\BA%@^BA0g@`BA@`BA0}@_BA@aBAD@4bBA@5@vbBA(@bBA@.bBAP@AbBAP@/bBAe@VcBAh@dBA`P@PeBAC@3hBAg@~kBAЀ@kBA@lBA @nBA@@\oBA@@qBA`A@sBAn@XtBA@sBA`@erBA@vBA@vBA,@ vBApe@/wBAP|@uBA@svBA@qvBA@wBA@uBA @sBA@qBAP@ rBA@qBA@rBA_@krBA @qBA@oBA0@pBA$@oBA @@pBA(@VpBAPl@sBA@sBA@uBA@UvBAw@vBA@IxBAЙ@ |BAp@ }BA@.|BAP@zBAV@zBA @zBA@pyBA@wBA^@wBA@tBAp@LtBAx@wBA4@^xBA@{BAu@|BAT@~BApd@BA0@BA@ZBA @BAP@ŁBA |@eBA @BA`8@BA@VBAS@nBA@j@6BA@ BAP@YBAw@BA0I@BA`_@LBA@؈BA@{BA@BA @BA5@IBAH@+BA#@WBA@(BA@BA@'BA@BA`@BA`@PBAD@BAK@BA@wBA@IBA-@DBAPr@قBA t@-BAС@ÁBA@UBA@!BA@@fBA6@BA0@BA@BAI@ĊBA@%BA@@gBA@BA@TBA1@^BAP@BA@RBA`@ڄBA@΅BAx@BA@*BA@ƇBAABA@vBA @ZBA@ҋBA A$BA88ARBAJA9BANABAZABAxRAӎBA]APBA~ABAABAAƊBAAIBAPA`BAAhBAABAABAhA-BAAr~BAAf|BAxAxBAXAsBA@AqvBAAwBAAZwBAȳAlyBAA }BAA#BAABAXÀBAAdBA>ABA?ABA&AkBA'ABA3A}BAMA|BAXXA{BAAyBAA.yBAhAvBAA uBAoA:tBAeAsBAAtBA AsBAAuBAAwBAAxBA0AxBAAxBA(AyBAABAAdBAȢA=BA(ABAХABAABA A4BAABAAEBA&AdBADABA(QABA8yA~BA`A;BA؛ABAAFBAABA:ABAqA0BAABAAфBAABA|ABAhpAЂBAȅASBA8sAeBAhABA^A~BAZA}BAVA|BAOAn|BAZAuBAZAltBAPeA#sBAyA~rBAptAoBA|A oBAhAmBAhAmBAAlBAAlBA0ASlBAAsjBA@AhBAHAgBAAeBAXAkfBA-AbBAhNA bBAH&AZ`BA AYZBAAZBApA,YBA`AWBAAUBA8ATBAATBAASBAXARBAARBAAkQBAAOBA(A;OBAANBAANBAAKBA(AIBAAAEBAADBA A,DBAAOBBA8AABAAP?BApA=BAhA8BAA7BAA1BAAW1BA+A2BA;A2BAEA2BA-A1BA0A.BA@A=.BAXA.BAA-BAH"Ak+BA1AK*BAh=A[*BA(A'BA$A%BA)A@%BA,A$BAAO$BAA#BAAC"BAA!BAABAABAhABAHAqBAABA!ABAAkBAABAABAABA wARBA82A_BAH'A(BAABA@ABA~ABAh}A]BATABAUA BA6Am BA=A7 BAA BAh#ABAAqBA%AEBAhTABAhqAcBAhABAZABAxVAAAZAIAAAAAxAAAAAAHA}AAAAAHAAAh2AAAIAAA[AAAnAAAAAApAAAA_AAAAAAAAAAA7AAA@A&AATAAAxZAAAhdAHAA0mAmAAAAAAPAAAAAhAAAAuAA AAA A@BApV@BAU@BAп@BA@@BAj@IBA@RBAo@AAK@AA4@AA@AAw@jAAPU@XAA=@ZAA`@BAA`@3BA@BA{@AAJ@AA@cBA@BA@cBA`a@BAq@zBA`U@3BA0l@6 BA@\BAp@@ BA@; BA@ BA @ BA @ BA@U BA `@H BA@P BA4@, BAz@ BA@n BA@ BA@ BA@BAp@JBA @BA@BA.@< BAN@BAR@BAL@ BAs@ BA@ BAp@/ BA@ BA 4@ BA@<@m BAF@ BA`@BA@BAP@BAP@BA+@BA%@BA@@BA1@BA@ BA@A!BA@"BA@"BA@M#BAp@#BA @)&BA`d@;'BA0S@'BA@")BA@))BAp@W*BAU@+BA@l+BA@+BA@)BAP@c(BA^@Q&BA@7"BA@I BA@BA@BAq@BAg@BAP@ BA0@H$BA@@=*BAa@0,BA@-BA@/BA@0BA@u1BA4@^0BA0@0BA@2BA~@2BA@4BA@6BA@7BA@|7BA0'@5BA|@6BAp@7BA`@8BAj@y?BA@iBBA0&@BBA:@ABA@@@BA@S@{6BA|@7BA$@6BA@X@3BA@2BA@2BA @L3BAP @43BA i@4BA@4BA@4BA]@6BA@6BA@4BA0@ 4BA@n4BA@n3BA@p1BA@/BA@@/BA @-BA$@L-BA@@,BAL@o+BA @,BA @*BA@(BAP@F*BA<@3*BA@l)BA2@'BA@(BA@k(BA0@$BAЀ@O#BA j0AϹ8A&2Aa:A !2AӺ8A2As8A2A۾8A2A8A2A8A3 2AŽ8A` 2Ah8A2A8Au2A8Aj2AD8A!2AӺ8AV 1AA:A1A@:A1AA:A~1AD:A1AB:AF 1A[D:A[ 1A8G:Ax1AL:A,1AO:AT1A@T:A 1AU:A 1A&V:A1ASU:A1AM:A0AcM:Ap0A0Z:A0AZ:A0AK[:A0A-^:A=0A^:A0A-]:A1An]:A1Ao_:A1Aa:A1Aa:A1Aa:A 1A]:A1A_:A1A^:Ab1A_:A&1A_[:A%1AZ:A$&1A?V:A'1AV:A01A=W:A31AT:A41AT:A=1AS:A(C1AN:AD1AN:A&I1AYO:A?S1ApL:A^1ApS:A`1AR:A`1AE:Acf1A{C:AKi1A5@:Ah1A;:Ah1Ad::Ao1AN4:Ap1AF3:A6r1A3:Av1A4:Aw1A4:Ax1A2:Az1A 1:A|1A-:AG1A+:Aׇ1A+:A$1A~):A1A[(:A[1A(:A1A$:A1A#:A.1Av":A1Aq":AƘ1A :Aߟ1A#:A1A :Av1A:A1A:Aӡ1AK:Ac1A:A1A:AY1A:A>1A#:A.1A1:A71A9A1A9Ai1A9AӼ1A9A1A9A1A9A1A09A1A<9An1A[9AX1A9A1A 9Aj1A9A1A=9A1A9A@1A9AC1A{9A1A9Al1Al9A%1A9A1A|9A1A 9A1A9A-1A9A1Ah9A1A9A1A9A1A9A1Ax9A 1AH9A1A9A1A:9A1AZ9A1A9A1A9A1A9A1AY9A1A 9Al1A79A1A9A2A\9A2A9A=2A9A2Aȉ9A2A9A2AƘ9A2AV9Al 2A9AA 2A`9A"2Ao9A 2A {9A,"2Av9A!2Ap9Ai%2An9Ar&2AZ9A%2AX9A&2AW9A%2AN9A2AJ9A2AgF9A!2A5B9A"2A]<9AY"2A:9A2A49AJ2A59Ab2A^59A62A29A2A\-9A2A?,9A2A+9A 2A.9A 2A/9A 2A.9Ad 2A)9A2A$9A#2AN 9Am2A9A2A9Aa 2A9A2A%9A2A$9A2A!9A2A"9AV2A"9A2A!9A2A:9AC2Ah9A2A9A>2A,9A 2Al 9A2As9A2A9A2A8A2AQ8A2A 8A2A8A2A8A 2A8Aj2A8A2A8A)2A88Ah2A8A1A8A1AA8A1A8AX1AE8A1A8A1A8AZ1A18A1A8A1Al8A~2A8A2AY8A 2A8A2A8A}2A8A1Ah8A1Aj8A1A%8A1A8A1AϹ8A1A8A/1A8A-1A8A1A8A1A8A1A&8A1A8A1A8A<1A8A1A?8A1A78AH1A8AG1A8A1A8AF1A8A1A8A1A8A1A8A1A8A1A8A#1AI8AG1Aa8Aʾ1AR8A91A8A1A8Aٷ1A8A1A8A:1Ab8A٬1A8A1A8Aު1A8A 1Ag8A1A8A1A8AǠ1A8A41A8A1A8A(1A8Aז1A8AВ1A8A1A 8A…1A%8A1Ay8A1AD8A{1A8Ax1A8Av1A8Ay1A8AGy1A8Awu1AO8ALo1A8Ak1A9Aj1A9A.f1A9Ac1A19A d1A9Ag1A 9Ac1A9A`1A9A_1A9Ab1A9Ab1A9!9A4e1A#9Atf1A%9Ak1A"9Au1A*9Az1Ae+9AY{1A*9AT}1A,9A~1A59A1A[:9A1AO;9A1AJ?9A81A>9A`|1A0@9Ap1AG@9Ak1AD9Aj1AD9Awf1AdF9A0^1AGA9AY1AF9Ao\1AM9AU\1AO9A Z1AQ9A0W1AP9A1F1AG9AD1AsG9A1Ae9AD1A9AD1Aj9AC1AI9AC1A9AB1A9AK@1A9A<1A9A:1A9A91A=9A61A9AL71A9A541A9A-41A9A+01A9Aq-1A9A'1A9A#1A.9Ay!1A9A1A9A1AU9A1Al9AQ1AD9A 1A[9A1A9AX 1A/9Ag 1A9A1AE9An1A[9A1A9AJ 1A:A1A:A[ 1A:A|1A:A1A:A 1AL :A 1Ac :A 1A :AM 1A* :A 1AC:A 1A:A1A:Ah1A:A'1Ab:A1A=:A1AY :A1Ad :A!1A:A0A :A]0A9#:AJ1AV#:A1A):Ae1AF+:A#1A+:Ap1A-:Ae)1AV1:A*1A1:A+1A2:A*1A6:A +1A7:A)1A9:A3(1A9:A%1A::Av$1A>:Av 1Ab@:AV 1AA:A @1A9AF2A!;AE*;2Ae:Ao?2AZ:A?2ANY:AB2AOR:A@B2AdF:ABB2AD:A!B2AA:AB2A?@:AB2A6:AE2A,:AE2A%:AE2A:ArF2A:AF2A:ALF2A:AZ82AN9A72A9A72A9A,2A9A'2A9A'2A9A 2A9AK 2A9A 2A9A|!2Ab9A,"2A9A 2Aު9A2A֦9A02A9An2A9Al 2A9A2AV9A2AƘ9A2A9A2Aȉ9A=2A9A2A9A2A\9A1A9Al1A79A1A 9A1AY9A1A9A1A9A1A9A1AZ9A1A:9A1A9A 1AH9A1Ax9A1A9A1A9A1A9A1Ah9A-1A9A1A9A1A 9A1A|9A%1A9Al1Al9A1A9AC1A{9A@1A9A1A9A1A=9Aj1A9A1A 9AX1A9An1A[9A1A<9A1A09A1A9A1A9AӼ1A9Ai1A9A1A9A71A9A.1A1:A>1A#:AY1A:A1A:Ac1A:Aӡ1AK:A1A:Av1A:A1A :Aߟ1A#:AƘ1A :A1Aq":A.1Av":A1A#:A1A$:A[1A(:A1A[(:A$1A~):Aׇ1A+:AG1A+:A|1A-:Az1A 1:Ax1A2:Aw1A4:Av1A4:A6r1A3:Ap1AF3:Ao1AN4:Ah1Ad::Ah1A;:AKi1A5@:Acf1A{C:A`1AE:A`1AR:A^1ApS:A?S1ApL:A&I1AYO:AD1AN:A(C1AN:A=1AS:A41AT:A31AT:A01A=W:A'1AV:A$&1A?V:A%1AZ:A&1A_[:Ab1A_:A1A^:A1A_:A 1A]:A1Aa:A1Aa:A1Aa:A1Ac:A6 1Ae:A 1Ai:A 1Al:AY 1Ap:AB1At:AA1A t:A1As:A1Aq:A 1As:AI1Ay:A1A}:Ad1À:A1A2:Ah1A :A 1A܉:A41AX:A1Ad:A1Aĕ:A 1A:A91Aq:A!1A:A$1Ac:A*1A:A*1A:A')1AB:A*1AQ:AZ'1A]:A}'1Aչ:Ae(1A:A*1A:Ao,1A:A.1A:A/1AA:A61A:Ao61A:A:1A:At>1Ad:AB1A:AB1AQ:AD1A:AC1Ag:AE1AZ:AfD1A:AI1A:AL1AY:AP1A?:AQ1A:AR1A:AV1A:AW1A:A,Z1A:A\1A:Ad1AF:A|g1A:Ah1AW:Al1A:Ao1AF:Ap1A:Any1A:Az1Ap:Ap}1Ao:A71A:A 1A:AW1A:A1A:AL1A:A1A:A51Aw:A|1A:Aۑ1A:A1AT:A1A:A1A:AI1A:A1A:A1A;A1A;A1A;Aƨ1A;AU1AG ;A 1A;A1A ;A1A> ;A1A4 ;AF1A;A1A\;A1A;A1A;A+1AA;A1A;A1Ap:A1A:A1A#:A1Az:A$1A;Ak1A;Am1A ;AH1A;AX1A ;A1AW;AD1A;A1Ac;A1A"(;A1A-;AD1A0;A1A0;A1A9;A1AG;AX1AH;A1AL;A1A5Q;A?1A U;A1AW;A1AS^;A<1Aa;A1Ad;A1Aj;A1AEo;A1Ar;A1As;Ai1Au;A1Ajy;AG1Aρ;Ah1A;A1Aׅ;A1A;A!1A;Aa1A;A1A,;A1A!;A1A;A2A;A2Au;Ad2A$s;A2Aq;A 2Aj;A 2Ai;A 2Ac;A 2A];A2AH[;A2AT;Ar2AwS;A^2AQ;A2A$J;A2AG;A2A?;A2A;;A2A}:;A32AY/;A2AE!;A2AR;A92A;A2A;A2A% ;A2A ;A02AP ;A2A;AO2A;Af2A:A2A:A 2A:A2A*:A62AF:A2A:A2Ai:A(2AO:A_,2A:A,2A:A02A :A02A:A802A):A\02A:A12A:Ao12An:A22AX:Ao32A:A52A:A62A :A!62A:A62A0:A{72AƐ:A62A$:Au62A:A@62A$:A862Aҁ:A52A|:A52AB{:AR72A t:A72Ar:A72A@q:A#:2Agi:A:2Af:A*;2Ae:A $Az;A u(A=A%A(%A%A=AD%A+=AP%A^ =A~S%A =AfV%A =A8j%Ai=Az%A =A||%A8=Az%A=Ax%A=A}%Ao!=A%At#=A~%A#=A%A !=A%A"=Aڑ%A]%=A%A$=A%A$=A>%Ah#=Ab%A=A%A =Ah%A;=A@%A =A@%A=A6%A=A%A=A%A=Al%A=A%A=AB%Ay=A%A=Az%Ap =A%A=A%As=A%A=A%A=AJ%A=A&Aq=A&A=A &AF=A4&&A=A,(&A=A(&AY=A0&A\=Af2&A=A1&A%=AO&A=AvP&A =AL&A"=AfJ&A!=AE&A'=AE&A*=A8&Ab,=A\=&Ac3=A=&A4=A2@&A?5=A<&A?=AB&A{C=AI&AC=A6L&AC=APN&AH=AJ&A,J=AC&AL=A|>&AL=A<&AJ=A4&AN=A6&AQ=A48&AGR=A7&AS=A3&AW=A~.&AY=A-&Aq[=A9&Aa=A<&Ac=AN>&Ae=A">&Ag=A5&Ah=A-&AKm=A-&Ap=A$&Aw=A&A%~=A&A'=AL&AV=A$&A$=A&AB=AB&A=Ax"&Aօ=A`'&A†=A;&ADž=A;&Aʈ=AC&A7=AhI&A_=A:J&A=AtI&A=AK&A=A@Y&A=A\&A=Ac&Am=Ad&A=A~i&A^=Aq&AN=A$w&A=Ar&Ao=AV}&A=A&A‡=A&Aۂ=Av&Aς=Aw&A~=Ax&A}=A|&A4|=A&At=A}&As=A}&A#r=A}&AJk=Az&Ah=A s&Af=At&A f=Az&A9b=A}&Aa=A&ANb=Av&Ab=A֊&Af=Av&Ai=A6&Ash=A&Ag=A&Ag=A&Aj=A&Ae=Az&Aa=A0&At`=A&A`=A &Ab=A&Ab=A&A[=A&AZ=AX&AtW=A&AnV=A&AcQ=A&A~P=Ax&AO=A&AM=A&AL=A'A\O=A.'AW=A'AUX=A'AY=A'ACb=A'Ab=AH#'Ake=A*'Aj=A''Al=AVC'Am=AK'Ao=AM'Ap=AP'Ap=AW'Ak=AW'Ah=APV'Ahg=A~Q'A^=AR'A:Z=AVY'AW=Ak'AiX=Arm'AU=App'AU=A,v'AZ=Ax'A%\=AVu'A[=Au'Abj=Au'Ak=A6{'A0o=AB~'ADo=A'Am=A'Ao=Aܛ'Al=A'A'AZ=A8'AZ=A'AY=A'AT=A'AU=AZ'AX=A'AW=AF'AS=A 'AQ=A'AP=A'AM=A'AK=A(AB=A,(A;=A(A9=A(A8=A(A:=A(A9=A(A6=A(A2=A(AS0=A"(A.=A8 (A&=AF (A6%=A@ (A#=Ab (A="=A!(AV=A:"(A=At!(A@=Av(A =A$(A =A#(A=A#(AW=A()(AQ(A&AZ&!A;At!Ah;Ai!A;Ad!A;Ab!A ;ABc!AF;A^a!A;A_!A;A^X!A^;AO!A;AI!A;AB!A;AD!A;AA!AW;A=!A;A7!A;AP9!A;Aj*!A;A)!A;A`!Au;A!A/;A!A;A!A;A!Ak;A!A;An !AX;A^!AG;A@!A;A !A;A !AO;AB!A;A A;A^ A.;A!A;A!A;A!A:;A Aw;A A۳;A A;Az A;A AŴ;Ad AZ;A" Ah;A Aշ;A A=;A A;A As;A AH;A> A;A AI;A4 AS;A AH;A A;Aֽ A;A Aߢ;AP A%;Ad A^;A A~;A( A`;A A;A` Aڗ;A` Aj;A A;A A;AԞ AB;At AF;A| Av;A AI;A. AÈ;A A;A A;Ad A;A| A ;Atp AA;An A;Ak AA;Ah A8;Adi A;Ave At;A.` A;AX Aј;AV A;AV A;AS A;AI A5;A6G A;AF AӚ;A4F A8;AC A;AX@ Aw;A; A;A9 A;A8 A;A4 Ap;A6 A/;A@7 A;A5 A;A7 A,;A`: AY;A= A;A> A;A9 A;A6 A;A; A?;A0> A҃;A > A`;A> A;AX3 A%;A, A;A+ A ;A( A};A$ A$|;A A};AV A};Az A~;A A;A Al;Ad A;At Ao;AA4;AA;AA;AA&;AA;AA[;AA;A4A˧;AA;AAZ;A@|Ae;ApAȞ;A{A;ALsA;ADrA;AdA;AA;AؐA;AA9;AA;A A;ApA;A(AV;A(A;A`AՈ;AAʇ;AXA>;AtA;AAc;AA|;AA};AAT};AA4z;APAy;AܝAv;AAv;AASt;AAs;AAt;AlAv;AzAu;AHsAs;ATAv;A@MAt;AOAwt;AJAs;Ah<A~q;Ax7ALq;AL5Ar;A+As;APA(s;AAYm;A@ ADg;AAd;A'Ab;At8Aa;A@>Aa;AUAb;ADYA8_;AuAW;AyAV;AiAW;AL`AS;A_AR;A\[AkQ;ADAP;A(EAfI;Ap5AQH;A@0AG;A*AG;A8AG;AlAtH;A ABP;AAS;A@A#W;A A\X;AA^;AA<_;AAi[;AA[^;APAhf;AԌAcc;ȦAb;AAa;AA`;A}A`;AiA@_;AhA\;AcAB];AHA^;A4=Aa;A;Aa;At6A^;AH;AZ\;A9AV;Ah(A=N;A<AO;A0AT;AAT;A<AT;AAP;AAM;AA}M;AAJ;AxAIF;AAD;A4AB;AAxA;A0A>;A$A<;AA9;AA7;AA7;AA04;A(A4;AtA4;AA6;A@AB5;AlA-;ApA -;A\AG-;AhA*;A8A';AA%';A AF&;AAs%;A0A;A0A=;ADA;AA8;AAU;A`AK;AA>;A̛A;AXA;ALA:;AA;A ~A9;ASA0;ATA;AX`A;A$_A;AQA;AEA;A;A;A*A3;A&A!;At"A9;AA:AA:A"A:A(A:A8A:Ad#A):A.A':A8AP:A<AT:A$:A:A\4AW:AA:AA:ATA:A8Ai:AtA:ADA:A|{AU:AtvA:AfA:A@TA:AUA:A;A:A|;AE:A4=A:AHA:AAA:ACA2:AA:A?Ak:A?Aa:A0;A:A8A:A:A:AH;A=:ABA:AFA:ADCAP:A=A:AIAW:AMA:AMA:A;A\A;AA@;AdAV;AA;AA3;AA;AdA!;AAڊ;AA;AA;AAD;AAW;AA=;AhA;AA;AA;AA;AA9;A`A;AhA+;A\Ap;A.A;A*A!;A|A;A Aj;AA9;ATAs;A\A\;A:Aʬ;AxJAخ;AXNA;AaA ;AbAA;A0vAǼ;A|zA׽;A$A;A܁A;AA;ĂA;AA&;AA;ADAP;A̻AN;AAm;AA;AA;AA3;A4Ap;AA|;A A\;ATA;AH A;A A;AtA;A`A';A6Aq;A;A;AHGA;AKA;ATUA_;AcA;A|iA;AlA;AoA;A\A;ĀA;AA;AA;AAx;AAV;A<A;AA;AйA;A A;A̼A;AA;AA;A(A;AA ;AA;AA;AA3;AHAh;AA;A!Aj;AAUA;A<A2;A|;A;A`5AL;AAF;AA!;AHA;AHA;AAn;AHAZ;AAr;A0Ao;AA ;AA;APA;A|AL;A A;A`AN;A Ab;AA;AA;A܈A;A8A;A$A7;AdA);A^A;A(AOA>AVAk>AdAl>Ad`A>A0XA>ASA>A(QA;>AJA>ALIA>A|BAx>A4=A2 >A,7AZ >A1A>AD/A>A'A0>AA>AA>AA>AA>AAo>AA>AA >ALA1>AdA>AAS>AtA >AA8 >A$Ah>AA>A0AA>AA>A,A>AA>AA=AA=AA=AAf=A`Az=A.A=A 1A:=A@/A#=AL)AL=A`%A/=A4A=AA=AA=AtAT=APA=AA=A<A=A\ A`=AA=AA=AA=AA=AA=AA=AxA=AA=A\A=AA\=AA:=AXA=AA-=A<A"=AwA=A0qA=AlA=A(bA=A]A0=A`GAZ=AGA=A]A=ARAT=AMAd=AHAھ=AFA˽=AAAm=A2A=A1A=A|1A=A3A=A:A;=AH@A=APIA =ALA=AIA=AP?A=A9A3=AX:Am=A;A=A43A_=AHA;=ATA=AWA=ATAA=ALA4=A4YAU=AlMAL|=A|=A~=A1A ~=AAny=ATAy=AAy=A Ay=AAy=AAv=A,Aw=AA+p=A(An=A\Am=A@Ag=A A+_=AA]=AAz\=AXAT=AAQ=A@AP=AAI=AtAH=AAJ=AA&E=A0AqB=A,ASC=AAE=AAnF=AAC=AA2A=AAk@=AlAjA=AXhAG=A\]AN=ALA\S=AAA9S=A8A{Q=AAQ=AtA|M=ATA9=AAW8=AA4=AAZ4=A8A3=A<Ao7=AA8=AjA9=AdAh:=AhUAW;=A8PA;=AIAG=AX[Am[=A\A\=A WA]=AEA]=A#A d=Ad"A4m=AxAZm=A@An=A|AWu=AAv=AA=AxA6=AA>=AhyA=AXQAҌ=A@LAp=A0"AM=A'A=A5A=A5A=A5A=Ad,Ax=A'Ac=Ap"A=AA=A$A=AAL=AAţ=AAm=AAܤ=AAЦ=A A6=ATwA=AqA=AeA?=ATPAN=A,A=AA0=AA^=A A =AA=ALA=AdGA=APAA=AEA=A\A=AqAC=AHtA=AA;=APzA=ApA=A8^A=AFA5=AD Ap=AA2=AdA=AA=AA6=AxqA=AkA=AP-A=A4AF=A,A=APA=AiAH=AtuA_=AxwA=AHxA >AԆAX>A̐A >AA >AA>AA>AA>ALAL>ADA >AA>AXA>A4A>ApA=AAl>A Ad=A9A>A?A>A|HA>A\A=A0dA>AlpAt>AnAT>AT`A>AaA8 >A^A >A0YA?>A8A>A ,A6>A3Ah>A$KA >AJAs>AA">AAR*>AA->AA/>AhA0>AXA1>ApA0>A8A/>AA0>A`A:>AA4>AA0>AA->ATgA>AaAL>A^A>ARA>A4QA8>AFA>AIA>ADA=A<A=A1AA=A2A>A(aAH>A8bAOJ>A~Av>AЁAz>AAʸ>A4AP>AȳAO>AAB?AA?AA?AAM6?AtA D?AAE?AA+L?AAZ?ALAwe?AHAf?A4Al?AtAy?A#A_~?A(Az?A=A?AGA1?AXcA?AhA?AmAo?AmAN?A<A?AA?AԅA*?AA^?AuA?A(qA?AaA~?AbAaz?A(vAt?AzAs?AxAp?A|Al?A$Ak?AAa?AA`?A AW?A#A]K?A#AI?ANA*B?ARA;A?A0hAHAA>AdA#>AA>AA>AAX?A A?AA1#?A`A$?A( A$?A As$?ASA!?AbA ?ADhA?AhA!?AA ?ATAl ?AA$?AA)?AAh%?A8A$?AA?A0A?AA?AA?AA?APA?AA]?A<Aj?AlA>?Ah+A ?Ax8A?A=A?ATVA ?A[A ?AlA ?AXmA?AlkA?AdA >AuA>A$zA>A pA`>AdpA>A@hAk>AjA>A\{AB>A`}A@>A~A>AHA]>A A>AA>AAD>AتAd>APAh>AAM>AA>AA>ADA>AA>A4A>ATA >AA>A *A;>AT7AC>AXUAҿ>A_AV>AcAp>A@yA>AXAĸ>AlA>AA>AA>ATA>AAS>AAt>AA_>AAk>A"AM>A$,A̹>A3A>AFA>AiA>ApnA>AAz>AAÿ>AذA>AA>AAS>AA>AA>AЦA>AȘA>AA>AA+>A<A >AlAԔ>AܐAË>A|A>AAs>AtA\>AoA>AAAPcAw>A4pAp>ArAo>A$wANn>A<Ai>AsA%b>AoAa>AnA`>AlA_>ApiA\>AZA6Y>AZAY>A4WAV>ASAU>A$LA(R>A0AiP>A-A O>A\AK>AbAK>A|sA[M>AAH>APA&E>ATAB>ȂAFB>AA6B>AA-B>A A?>AA?>A4AD>AAtE>AtAE>ADAMD>AA?>AdA?>A`A?>ApA&C>AAjC>AA!B>A82AA>A7ARA>A(:A@>Ax@A$?>ADAq?>A|VA/G>AZA:H>AdAHI>AjAyI>A~AM>AAN>AAO>APAFU>AAQ>AtA Q>A4A-J>AAI>ApAD>AA2B>AxAKC>A̷A?>AdA9A>AAJA>AA?>AAE;>AA35>AtA3>AA/>AA.>AĮA*>AA3&>A\A-%>ADA#>A8Ao!>AA >A4A >AwA&>AkA&>AiA9%>APaA1#>AXA>AT`AV>AJA>A# "A`};A&A\%A;A\Z%A;AK%Am;A<%A;A7%Aj;A%A[;A>%Az;AF%Aɟ;A8%A;A4$Ac;A$A;A$AC;A@$AŖ;A4$A;A$$AÏ;A$Aώ;A¡$Aq;Ar$A;Af$A`};A$A;A>u$Ao;Ao$A;Aj$Af;A:c$A;A`Z$AP;AHR$A;AR$A;AO$AV;A@$Ȃ;A=$A.;A5$A;A3$A;A0$AX;A+$A ;A%$A;Ar$A;A $A;A#Aј;A#AC;A#A;A#A!;A#A;Ap#A;A#A;A#A٪;Al#A;A#Aէ;At#A;A#AO;A#A;A#A;A #A;A#A;AP#Ae;A#A;Aj#Am;AJ#A;AT#A;A#A-;A#A;A#A1;A>#A;A#Al;A6#A;Ad#AW;A#A;A#A;A^#Aq;A#AE;AԒ#AK;AD#Aq;A.#A;Ay#Am;AF#Aۥ;A{#A;Afy#A;Av#A4;Am#A;Am#A`;Am#A;Am#A;ABk#A;A>i#A;Ae#A*;Ad#Aŏ;Aa#Al;AW#A>;ADV#At;ARP#A;A~N#A;AA#AL;A <#Au;A9#Aϖ;A@8#Aӗ;A6#An;A9#A;A5#A;A6#AŦ;Al.#A;A -#A;A'#Aȧ;AL&#Ay;A#A@;Al#Aɞ;A$#AM;A#Ao;A#A;A #A ;Ar#Aj;A#A;A$#Ap;A"A;A\"Ad;A"Aɧ;Ax"A;A"A;A"A;A:"A;Ar"A;A"AN;A"Aa;AL"Ad;A0"A;A\"A;AJ"A;A""A';A"AQ;A"A;A,"A;A"Av;A "AS;A2"A;AH"Aq;A"A0;AH"AY;A"Au;A"A;An"A(;A:"A;A"A;A#A;AR#As;A#Ax;A#A;A#Ap;A#A6;AT!#A;A|#A;A#A;A #A?;A#AH;A`#A"!(%A&AZAAA03A!AA08AAA9AiAAKAAA}AAA`AKAAHAKAAAAA@AAAA?AA#AAA\ A>AAXAgAAAAA(AAAAAAAAAyAAAyAAAA/AAAtAAAAA(AAApA:AA?AEAA(IABA@KABAPVABAhwABAHA}BAAQBAAcBAAuBA@A3BAABA0ABAABAA BAABAABA A BAA BAHAYBAABAtABAATBA&AVBA*ABACAtBAHABAtKA7BAiA!BA,}ASBA {ABA\ABA\{A BAzAoBAA}BAAABAܢABAPA BA,ABAABAABA$A BAA0BA A|BAABA"ABA8-ABAx&ABA2A#BA1AX$BA'A(BA=A(BARA)BA(QA@+BAAA.BAKA'2BA(MA2BA(WA3BARAQ4BAxKAx5BAOA6BAKAx7BALPAu9BA,AA;BAPGAH?BANA?BAQAZ?BAaAABAbACBA]AZDBAbAEBA(hAEBAwAFBAuATGBAiAJBA|wALBA(xAARBA9ASBA(BAUBA`@A,WBA4AWBA3AYBA*A\BAt1Ab]BAEA[BAAGVBA,7A4UBAD/ARBA=ASPBAD?A.NBA(BACNBASAIBAVAZIBAVAHBA[A4EBA`AxEBADmAVDBALwADBAADBAAZDBAAVBBAA ABAxA>BAA>BAAs>BAAh=BA,A=BAA@BAlA+BBATA$DBAPADBAA]CBAAFBAAOFBA "AEBA2AEBACAGBAGA1HBAKAGBAPAHBA]AJKBAL]ALBAYAXMBA@pALOBAuA[OBAHvAXOBA܈AMBAANBAANBAAKBAAKBAAKBA$AJBAdAIBATAIBAAIBA| AIBA\AGBAAAFBADAEBA;ADBA08ABBA\;AK?BAEA=BAAAAjAAGAAACAAA|2AAA1AOAA8A+AAl.AAA/AAAHIAϥAA0GAAAxLA֦AAtAAAAtAAyAiAADhAtAA\bA AAD3A3AA<5AAAHAjAAJAƯAALPAAA[AAAsAɱAAxAɳAA{AֵAA(|AAAAAAAAAؾAtiBAA6jBAAiBAA9iBAAgBA AfBAAnfBA|AeBA0AtdBAAdBAtAbBA|A"bBAAaBAA _BA$ Am^BA<A ^BAA\BA A[BAAYBAh AyYBAANXBAAWBAXAVBAATBAATBAAWBA AYBAA[BA4AZBAA[BAA`BA؈AaBAAbBA0qAhBArA@iBAAiBAAiBAAjBAA;iBAؾAtiBA% 8TAgg@A!A0AA!Ay@Aj}!Ay@A$z!Az@Aw!Az@AY!A#y@A.U!Az@AfP!A{@AXI!Az@AF!Az@AB!A${@A?!AUy@A@AHA@AA@AA@AA@A@+A(@A=A@A CAz@AMA@AQAm@A\A@AHaA@AqA@AT|A*@A4A@AA@AHA@AA:@AARAAAAAAOAAAAAAVAAAAAA AA|A AA`A AA@ A AA AG AA A AAJ A~AA& AAA AAA A9AA AAAv AAA8AAA`AjAA AQAAd A"AA! At"AA) A#AA+ AR$AAF0 A5&AA2 A&AAE A(AAM A(AAP A(AA`Y A(AA] A'AAb A'AATp A<%AA$q A$AAt Au%AAs A&AAp A(AAp A+AAo A^,AA8 A-AAД A,AAЗ A,AA Ah0AAĝ A0AA A0AAR A0AA֧ A/AA A\0AA^ A/AAH A-AA A,AAp A.AA A'0AA A0AA A*AA AS*AA!AZ'AA!A&AA !A&AAT!A'AA!A7(AA!A&AA!A&AAx&!An$AA*)!A'$AA)!Ab#AA(!AAA*!AAA(!AAA!ASAA!AAA@!AAA|!A{AA`!AAAf!AAA>!AAA!AAA!AAA!AAAR"!AAAB+!A, AA-!A AA@!A AAB!AS AA|E!A> AAXH!A AAvP!A AAX!A AAb!A AAf!An AAh!A AA,r!AfAAy!AAAl!AAA!AAA!A AA !A% AA!A AA!Ay AAЋ!A AAz!AX AAt!A+ AA!A AA!Al AA!A> AAܨ!AAAr!AAAn!AXAA!AAA,!AH@A^!A@At!A@A !Aq@A!A@A!Aj@A!A@A(!A@A!Ag@A:!A@A!AY@A޿!A@A!A$@A!A@A4!Af@A!As@A!Ac@Aȷ!A@A$!Az@A^!A @A\!A@A!A@A!Ad@A!A@At!A)@A\!Aw@A!An@AD!AD@A*!AV@Aּ!A@A!Aj@AV!A4@AZ!A @A>!A@A!A@A !AM@Ab!A@A!A>@AL!A@At!AȰ@Af!A4@A!A@A!A`@A!Aŧ@Ax!A@A!AΦ@A!A@A!A@A>!A@A!AH@A!A @AB!A@Aj!A@A!A@A!Aa@A!A@A!A=@A!A@A!A@AP!A@A!A@A!A@Av!A"@A2!A@A!A~@A|!A@A!A@A!Ax@A!A@A!Ag@Ah!A~@A!Ay@A,!AMw@A!AEw@A!Av@A!Av@A~!Apt@A!AKt@A!AZt@A !At@A!A{v@A!Av@A!Av@A!Azw@A@!A x@AJ!Ax@A!Ay@A& ,A@AJ AÐAAASAAXApNAAtA:LAAAsJAAAHAAAHAAAFAAAqEAAABAAAAAAtAT>AADA=AAA=AAA77AAA6AAA5AA2A0AAH@A3AA@AA=4AAJAk3AAt\AG3AAqA>4AAxrA4AAvA:5AA{AW5AAA3AAHA3AAA1AATAL1AAثA?-AAA,AAA)AAA%AAA%AAAj$AAA^AAAAA8AAAv AAA AAA A9AA AAA& AAAJ A~AA A AA AG AA@ A AA`A AA|A AAA AAAAAAVAAAAAAOAAAAAARAAA:@AHA@AA@A4A@AT|A*@AqA@AHaA@A\A@AQAm@AMA@A CAz@A=A@A@+A(@AA@AA@AA@AHA@AA>@A`A@AԭA@AЧA@AXA@ADA @AA@A|A@AA@APA@AĕAS@AԓA@A|A@ApA@AԅA@AzA\@A~A@A`Am@A{A$@A@rA7@ApA@ASA@AiA@ApdAw@A|oA@AdqA7@AqAe@AkA@A OA@AdKA@A4A@A,$A@AAh@A<A@A<AX@AA@AA@ATA@A0AP@AXAX@A@A@AЪA@AؘA@A<A1@A0AH@ATA+@A(A-@A؂A@AAE@AAm@APqAH@AThA@A(tAj@ATrA@A4VAE@A`PAY@A WA@AOA]@A$AAj@A5A@A0A@Ah%Ad@A"A@AA@AA'@A0A@AA@A A@ALA@ApA@A@Aj@AAp@AAg@AA@AAu@AA@AA'@AA@AA@AA@AA@AȄA@A<A@AiA@AhA@AiA1@AqA@ApoA@AoA@AsA@A\A@A0A:@AA@AlbA@AWAL@A8RA@A&A@AA@ALAS@A A@AA@AA@AAC@A0Am@ALA@AA@AХA@AAo@ADA@ATA@AuA@AaA<@A[AS@AlFA%@AXAA@A<5A@A+A@A-A-@A`1A`@A'A@A@2A@A A&@AH&A@A8A@A5A.@A1A@A-A@Ap8AF@A7A@A6AuAA+AAA0'AAAAAAAqAA8A=AAAAAA~AAAAAAAAA$AAAQAAAAAAAAAAAAAA4A AA$ACAAlAAAXAOAAAEAA,AAA`AAAlAhAAkAAA0tAAApAiAAdA-AA|`A{AApPA AA`IA;AA88AAA.AAA+AMAAt+AAA( AnAA|AAA,AAAAAAXAxAAA^"AA$A"AAAc$AA"A'AAT(A'AA,A(AA(A(AAh*A+AAL%A-AAT.A/AA3A4AA|7A4AA<A4AA@>A^6AA,7A^7AAhMA;AAZA=AA0cAT@AAbAAAAHxAAAA4A@CAAACAAAFAA\AcGAALAGAAAHAAAKAAALAAܡANAAAYOAAAOAA̱ASAA8A0UAAAUAAxA[AAA[AAA`AA<AaAAtA8bAAA|eAAA0fAAAjAAAjAAdAElAAAmmAAXAnAAAtAAA uAAAuAAAvAA AywAA4A{AAA|AAA}AAA>}AAAI}AAt)A[zAA `AWyAAtAvAAlsAuAA̜AsAA4AUsAAlA8uAAAjuAAA9xAAԵAxAAAQ|AAA}AA(AAAAĂAA|AAAAAA0AAAAB~AAA}AAA~AAAAAAaAAhAAAAfAAh+AAAD1AuAA8GAAAQA[AAhAAAXuAoAAyAAA$yAAAAAAظA\AA<AAAPAύAAAÐAA`AAAxAAAAAAAAAAAAAAA@AAA'AAAt-AϊAAD6AAAEA2AAIAAAlA`AAtAAATAAAA^AAlAeAAtAAAtApAAXAAAA`AAXAAAALAA@AAAAtAAAAAPAj~AA A}AAAp{AAA={AAAxAATARyAAAT{AA A{AAA~AA@AAAd.A~AA3A~AADA ~AAOAl~AATA~AA\]A }AAnA|AAsA|AAkA;yAAmA]vAA wA{uAAxAtAA|AtAAAtAA|AxAAAyAAAzAAAyAAdAsAAA}qAApApAAAqAA`ArAAAUoAAHAkAAAmjAAAIiAAHAfAAAcAAA`AAlA_AA@Am\AA@A[AA4A ZAAAZAAAZAAAfWAAXA$WAAAoVAAARAAASAA'(A>A,A @A3")A?A~)A?A)A ?A)A?A°)AI?A)Az?A)A?AP)At?A)A?A8)A?Ab)A1?Ar)AG?A,)A?A)A?A)A?A~)AN?A)Ad?A&)A?A*A?Az*A?Aj)A?Aj)A?A)A5?A*)Ak?A )AH?AL)A?A)A?A4)A?A)A?AN*A?A*A,?A*A ?A*A>?A*A%?At*A?A *AŤ?AF"*At?A!*A?A"*A+?A+*A`?A -*AR?A0*A?A1*A?A A*A?AVA*A?AC*Aމ?AB*A?AG*A?A6E*A?A C*A΅?AlB*AS?AE*Ar?AtN*AH?A>O*A}?AN*A|?AQ*A{?ABS*Az{?AT*Az?AD\*As?A]*Adr?A:a*Am?Aa*A[l?Avj*Ah?ABl*Ag?ATj*A6_?Ao*A(Z?Ao*AX?Aw*AW?Az*AW?AZ|*A~X?A}*AY?Ax*AZ?A*AY?A*AiT?A"*AR?A"*AzR?A*AR?A*AyK?A*AE?A*AUE?A*AJH?A~*AKO?A*AP?Ax*A/O?A*AP?A*AW?AR*AX?A~*A6Z?A*A*^?A*Ag?A*Aj?A>*Ak?A*Al?A*A@s?A*Aq?A+Al?A+A_k?A+Af?A+Ae?A+Ad?A+Ac?A)+A]?A,+A]?A/+Ax^?A*7+A`?A<+A_?A~B+A_?A,E+Ag`?AG+A_?APH+A\?AjH+AI[?AJ+Az[?ABM+A\?AX+Aa^?A^+A]?Ah+AS?Av{+AL?A+A@?A|+A=?Ay+AAy+A>A{+A>AV{+A>AVs+A>As+A>A.r+A>A|+Aj>A+A[>A+A>A+A>Ab+A>A+A>Ax+A>AD+AV>A+A<>A|+AP>A+Af>A+A>A©+A>A+A4>A+At>AԤ+A>A$+A>AX+A>Ah+A>A+As>A+A>A+A$>A+A>A+A>A+A>A+AP>AP+A!>A|+A>A+AՔ>A +A>A+A>A+AΌ>A>+A>A6+A>Ap+A >A+A>A,A{>A+A7w>A,A s>A+Ap>Al+Am>AV,Ad>Ab+Ac>A+Aa>A&+Awd>A+Ak>A+A@l>A@+Ai>A+A@b>A+Aa>A+AA̜+A5c>Aڎ+A`>A+Ala>AX+AZc>A:v+Ad>ABl+A']>Ab+AY>Ab`+AX>AJ+AmO>AG+AO>A`9+AX>A0+AJW>A)+AP>A+AO>A+AN>A+AH>A +AG>A+AC>A:+A@>A+AL?>A+A>>Az +A:>A +A[9>A +A5>A +A36>A:+A6>Ar*A2>A*A"4>A*A2>A*A@/>A*A.>AL*A0>A<*A0>A*A2>A*A3>AȾ*AN2>A*A_,>A*A'>A*A>A.*A>A\*A>A*A>A*A>A*A1>A(}*A>At*A$>ANq*A">A\l*A!>A]*A">A~Y*A >AQ*A!>A4P*A#>AN*A-%>A:L*A%>AE*A*>AhC*A->AC*A_.>A@*A.>Az7*A?/>A)*A2>A&*Aw8>A4$*A89>A@*A>>A*A<>AD*A7>A*A4>An)A:>A)AB=>AR)A=>A)A@>A)A+D>A )AJ>Ap)AJ>A)AK>AD)AgM>A~)A/^>A`)Ab>A)Aek>A)A6v>Av)Aw>A)A>A)A>A)A1>A<)A>A)AB>Ax)A>A)A>A|)A>Ap)AJ>A@)AЫ>A)A>AN)AS>AF)Aٶ>A*)A>A,)A>A&)A>A\)A>A")A>A)AU>A)A>A)A>A)A>A)A*>Af)Aܪ>A)AU>Aƣ)A>A̫)A4>A$)A>Aģ)A>A)AP>A܏)Aj>A)A>A$)A>A)Aد>A )A;>A\|)A>A|)A*>Ay)A >Ar)A>As)Aޮ>Ai)A >Ah)A>A`)A >A `)A>Ap^)A>AZ)Ah>AY)Aˮ>ATN)A)>AL)Aٱ>AI)A>AD)A>AB)A>AXA)Aж>A?)A;>A`=)A}>A8)A>A5)A>A$)A`>A)ADZ>A)AR>A)A>A)Aɴ>Ad )A.>A )A>Ap )A_>A)A>A)A>AB)Ai>A')AD>A ()A}>A')A>A|()A>Ab%)Af>A@))Ac>A')AP>A&)A>A)A>A)AS>A)A>A)A>A )A&>A")A>A-)A>An,)A>A<')AV>Ab)A>A)A>A)A?A)A>A&(A>A$)A?A)A??A)A?A(A?A(Ap?A*(A?A(A/?AF(AI?A^(A9 ?A2(A ?A@(A?AX(A?AP(Af?Al(A?A(A?A>(A?A(A ?A(A?Az(AF?AJ(A&?AF(A&?At(A'?A2(A$?A(A#?A(A ?A (A0 ?Av(A?A(Ar?A>(Ah?As(A?Ap(A?Afd(A?AY(A>?A0Y(A?AX(A?A0V(AQ?A:(A?Av5(A.?A3(A2?A)(Am?A('(A3?AT(A.?A$(A!?A8(A"?Ax(A8%?Aj"(A%?A"(A)?A!(A*?Af(Ag.?A(A0?Aj(A^2?A(A6?A(AT(A'g?AhF(Ai?AH(Ai?ABK(A9k?A6M(AZl?AT(Aq?AZ(Au?A:[(A(Aw?AH(A?A$K(AE?AP(A?AR(A?AQ(A?AB^(A?AXb(A?Ad(A?Aq(A?A6z(A>?A}(A?A(A?A(A?A(A?A(A?Ar(A?A(A@?Aԟ(At?Aʧ(AG?A(A?AȾ(A?A(A?A((A?Aּ(A?A(AA?A(A5?A(A ?A(A^?A(A?A(AX?AV(A?AT(AA?A6(A?A (A?A4)AG?AD)AD?A)A?A8)A4?A)A?A(A ?A*(A?A (A?A$(A?A(A?A(A!?A(A?A(A?A(Ap?A(A"?A(A?A(A_?A(A?A(A?Ab(A?A(A(?A(A?A(AU?A(A?A*(A?Av(A^?AN(A?A)A\?A )A?A )AN?A)Ae?A8)A ?A)Ab)A~@A>d)A@ANf)A@A:i)A@As)A@Av)A@Ax)A@Az)A@A)AZ@AD)A@A–)A@AĒ)A@A)Ac@AN)A@AB)A:@Å)A@A6)A@Ad)A@A~)A@A{)A @Aq)A@Ano)A@A q)A2@Afj)A@Ai)A$@Ag)A@Ad)A@Aa)A-@AnW)A@AzQ)A|@AK)A@AH)A@AzD)A@AJD)A/@A;)A@A9)A@A8)A@AJ8)A@A6)A@A46)A@A-)A@A8*)A@A0#)Am@A )A@A)A@A)Ab@A)A@A)AO@A)A@AN)AT@A)A@A)A@Ar)A"@A!)A@Ad#)AM@A.)A@A1)A@A|7)A!@A*:)Ah@Ap9)A AA")AAA: )ANAA& )A[AAn$)AAA*)AAAF-)AQ AA.)A AA3)A AA;)A AA@)Af AAE)A AAbH)A} AAO)A AAP)AAAR)A AA,[)A@AAb)AAAb)AAAf)AAA|f)AAAg)AAAm)AAAAATl)AYAAo)AgAA@o)AAA:u)AAAw)A AA^})AkAA:})AAA|)A_AAr)AAA)A AAl)A!AA҇)A$AA)A'AA)A'AA)A(AA`)A)AA)Aa+AAʏ)A+AA)A -AAΏ)A/AAr)A1AA)AO1AA$)A~5AAl)A'6AA)A9AA)Ax:AA)A:AAĕ)A;AAP)A<U*AAA W*A[ AAY*A AA\*A AA_*A AAFa*AEAA`*A_AA4a*AAA8b*A[AA*m*AAAbo*A9AAo*AyAA\p*AAAJr*AAA2t*A6AANt*AAAz*AAA*AhAAƈ*AHAAĊ*A@AT*A@A*AAA*AAA"*AAAl*A\@AR*A@A`*A\@A*A@A"*A/@A*A@Ar*A@Aj*A}@A*A@A*A@AN*A@A*A@A*A^@A*A@A6*A@A*A@A*A:@A*AY@A.*A@AN*A@A*A@A*A@A*A@A>*A@A*A@A*Ad@A*A@A**A@A^*A@AH*A@A*AR@A*A@A*A@A*A@A*A@A*A@A*A@A\*A@A*Aq@A"+AU@AV +Az@A( +Aq@A+A@A+A @AX+A-@AX+AC@A.+AU@A61+A@AV/+A!@A>2+A@A8+A@ArD+A@AL+A@A8P+A@AQ+A#@AS+A@AF+A@AE+A@A,E+A1@A<>+A@A;+A@AR9+A1@A6+A@A5+Ad@Ar,+A@A(+A@A(+A@A&+A@A|+Af@A^+A7@A+At@A+A@A+A@A+A@A+A@A+A@AH+A1@A+A@A+A@A+A @Az+Ae@A@+A@A*Aj@A**A@@A4+A@A:+A@AV-+A@A/+A@A1+A@A3+A @A>+A@A :+A+@Ah4+A@A,+A@A(++A@A+Ao@A(+A[@A8+A*@A+A@A+AՈ@Ap+A@AF +Aւ@A* +A@A+A@A*A|@A*Ay@A*Av@A*As@An*Apk@A*Aj@A*Aj@A|*Ak@Ax*Aj@AP*A g@A*Ae@A) |A =AxA6=AA=AAv=A|AWu=A@An=AxAZm=Ad"A4m=A#A d=AEA]=A WA]=A\A\=AX[Am[=AIAG=A8PA;=AhUAW;=AdAh:=AjA9=AA8=A<Ao7=A8A3=AAZ4=AA4=AAW8=ATA9=AtA|M=AAQ=A8A{Q=AAA9S=ALA\S=A\]AN=AXhAG=AlAjA=AAk@=AA5=AA!=A|A, =AtA=AܮA!=AtAR!=AdAU=AA=AA=A /A=Ap/A=A[Aq=A(^A,=ApA=AtAu=A<AQ=AA =A Ay =AA< =AخA=AHA =AA% AAAX1 AAA @ AAAB AAARD AAAB AAA@ AAAE AAAM AAAFb AAAc A_AA n AAATs A8AA AAA A`AAv AAA A*AAR AA AAA AOAAʅ AAAz AAAv A AAVt ADAAu AAAP AϼAA, AAA AAA AAAT AxAA AAAl AbAAX A%AAl AjAA AAAJ{ AAAx AԨAAtv AAAu AѦAA} ALAA A[AA A١AA, AAA~ AAAn AAA AAAž AoAAr AɓAA AVAAʕ AAAL AYAA> AAA> AAA AkAA AAA AHAA AAA AAA AuAAR AAAH/!AAAt.!AAA1!AAA4!A7AA9!AAAd;!AHAAJ!AAAN!AˆAAT!AAAW!AAA_!AAA:e!AAAh!A'AAjp!A.AAvu!AAA|!AAAj!AAA!A%mAA!AkAA!AokAA!AjAA"AQeAA!AB^AA!AR^AA "A_AA"A`AA~"AN_AA<"A_AAz"A]AA"A"ZAA"A-XAA"A;VAA"A^TAA"AaNAA"AMAA"ALAA "ALAA"A~LAA!ARAA!ALAA!AOAAH!AOAA!AMAA!AbIAA6!ADAA !A.DAA!ADAA!A DAA!AX?AAL!A!Aw!AAv1!Ah$AA*)!A'$AAx&!An$AA!A&AA!A&AA!A7(AAT!A'AA !A&AA!A&AA!AZ'AA AS*AA A*AA A0AA A'0AAp A.AA A,AAH A-AA^ A/AA A\0AA֧ A/AAR A0AA A0AAĝ A0AA Ah0AAЗ A,AAД A,AA8 A-AAo A^,AAp A+AAp A(AAs A&AAt Au%AA$q A$AATp A<%AAb A'AA] A'AA`Y A(AAP A(AAM A(AAE A(AA2 A&AAF0 A5&AA+ AR$AA) A#AA! At"AAd A"AA AQAA`AjAA8AAAAAAA^AAAj$AAA%AAA%AAA)AAA,AAثA?-AATAL1AAA1AAHA3AAA3AA{AW5AAvA:5AAxrA4AAqA>4AAt\AG3AAJAk3AA@AA=4AAH@A3AA2A0AAA5AAA6AAA77AAA=AADA=AAtAT>AAAAAAABAAAqEAAAFAAAHAAAHAAAsJAAtA:LAAXApNAAASAAARAAAoVAAXA$WAAAfWAAAZAAAZAA4A ZAA@A[AA@Am\AAlA_AAA`AAAcAAHAfAAAIiAAAmjAAHAkAAAUoAA`ArAAAqAApApAAA}qAAdAsAAAyAAAzAAAyAA|AxAAAtAA|AtAAxAtAA wA{uAAmA]vAAkA;yAAsA|AAnA|AA\]A }AATA~AAOAl~AADA ~AA3A~AAd.A~AA@AAAA~AA A{AAAT{AATARyAAAxAAA={AAAp{AA A}AAPAj~AAAAAAtAA@AAAALAAXAAAA`AAXAAAtApAAtAAAlAeAAA^AATAAAtAAAlA`AAIAAAEA2AAD6AAAt-AϊAA'AAA@AAAAAAAAAAAAAAAxAAA`AAAAÐAAPAύAApACAAlA4AAdAʌAA@AAAAܑAA@AAAA!AAеAAAHA.AAXAAA AAAAAApA-AAA{AAAAAAAALAAAAΝAAXAʜAAAAAx%AAA8AAA@&A@AA0AAA$2AgAAFAAALKAAASAAAH\AhAA|fAAAiAAAtAAA{AAA{AIAAXwAAAjA0AAoAvAAiAyAAlAAAqAAAvARAA AAA<AAAXA}AAAAALAAA8AԸAAAAA$AAA(ARAAAAAATAAAAAAAA<AAA@AAAAAAAAAAAAPAAADAAAAAAAnAAبAAAAAAAAAAAAhAAAAKAAAAAAXAAPA$AAxAAAAsAAAAAxAAAXAAA< AAA&AAAp9AAADAAAJAAA(LA(AAKAAA0WA AAAAAĖAAAخAAAAxAAAiAAAPAA AAA AAAA\AA@A AAAAAAAAtAAAApAA(AcAAAAAAAAA9AAA AAAAAAKAA$A,AA-AAA1AAAHAAALAjAAEAAAOAAA`NA*AASAAAhcAAAqA_AADlAAAgAAAvAAAAOAAAAA(AAAAiAAAAA+ԅ%A>A(AsY@AX&AAE@A\&AfF@A^&AF@ADc&AF@Aj&AG@Al&AG@Anv&AH@A y&AII@A&AE@AJ&AD@A&AD@Ap&AD@AN&AD@AX&A,D@Az&AD@AD&AE@At&AG@A&AG@A&AtG@Aض&AH@Aμ&A>G@A&AF@A|&AE@A&A2E@Av&A\E@A@&AE@A&ACG@Al&A^G@A^&AF@A&AD@A&AC@A&AB@A&A@@A&A@@A&A@@A&AC@A&AyD@A&AD@Ab&A|D@A&AD@A&A)D@A&AuF@A&A&G@A'AF@A 'AG@A'AF@A'AkG@AL'A2G@A'AG@A|'ABJ@A 'AL@AD$'AM@A#'AN@A*/'AN@AH7'AL@A~8'ASL@AP9'A|K@A)'AI@A|)'A\H@A-'A^G@A/'AF@AR2'AF@A4'ArF@ApA'AUD@AC'AC@AZ?'A2A@A:'AB@@Az7'A<@A1'A=@A#'AK?@A!'A?@A'A?@A'A5=@A'A&=@Al'At<@A'A;@A"&A7;@A&AY8@A&AT7@A&A6@A &A4@Ad&A3@A&Ai1@A&A0@A&A!0@A&A/@A2&AA-@A&A,@Ap&A*@A&A*@A&Av*@AT&A)@A&Aj)@A(&AD'@A&A&@A&A&@A&A$@A &A#@A&A"@A&Ao#@A4&A#@A&A#@AZ&Ae!@A&A @A&A @A&A@A&A@A &A@AL&A+@Ab&A:@AD&Ax@A&&A@A &A@A&A8@At&A@A0&A@A^&Ay@Ah&A@Al&A@A&A@A&A@A\&Ar@A<'A:@A8 'AD@A'A@A 'A@A'A @An'A @A>'A @A'A' @A'A@A` 'A:@A'A @A'A_@A'A@A,'A@A/'A@A0'A@A-'A?AX)'A?A+'A?A.'A?A)'Aq?AJ('A?A%'Af?A)'Ay?AJ('A;?A4-'A?A*'A?A%'A?A&'A?A'AU?Ad'A?A'A?A'AE?A%'A?A-'A?A0'A>?A6'A?A7'A?A0'A?A2-'A}?A''A?AD&'A?A!'A?A$'A?A&'A2?A"'Aô?A$'A?A"'A?Af0'A?AB3'A?Ar5'A?A~3'A8?A\;'A?A='A0?A>'A?AC'A?A4F'A?A|O'AЛ?AQ'AY?AW'A?AD^'A?Ate'Ar?Af'AQ?Ac'A?Ab'A_?Av'A?ARy'A?Ay'Aև?A'A‡?A$'A"?A'Ah?An'A?A'A??A<'AO?A'A?A'A?A'A݅?A'A݅?AH'Au?A¼'A+?A'A!?A'A|?Ah'Azz?A'Ay?AN'Az?A'Az?A'A?A'A~?A'A?A'AG?A'A{?Ad'A΅?A'A#?A('A?A$'A{?A'Az?A\'Auz?A'Ax?A'At?A'Ag?A'Azf?A6'Aa?A'Ab?A 'A<`?AZ'A]?A\'A_?A'A@_?A'A^?A.'Ad?A(Ae?An (Ab?A. (AF]?Aj (A\?A(AV?A(A|U?Ax(AoS?A(AR?A(AQ?A(AIO?A(A N?A(A|K?A(A[J?A(A F?An(Ad@?AH(A^=?A(AT'A!%?A'A`$?A'A0?A'A"?A'A?A'AK?A'AC?A'A ?A'A?A'Ao?A'A ?A'A ?Az'A ?A'A ?A'A ?At'AM?Ap'A?A@'A~?A'A?A'AN>A'A+>A'A>A'A>AL'AN>A'A,>A2'A3>AL'A>A'A>Ax'A>As'A>Aq'Ae>A(o'A>Aj'Aq>Ad'A >A0b'A>>A\'A>AU'A?AL'AE?A@J'At?A;'A>A(9'A@>A1'A>AL/'A%>A"'A?A''A?A('A ?A.-'A?AX+'A?A"'A7?A'AE?A('A?A+'A?AR&'A#?A2'A<*?A'A+?A, 'A~,?AB'A,?A'AO)?A&A)?A:&A'?A&A'?A &A(?AJ&AN.?A&A,?A&A2?A&Ar2?A,&A83?A&Af4?AF&A3?AX&A0?A&A4?A~&A3?AЩ&A2?Aʡ&A_1?A&AH0?A&A+?A&A8)?Ad&A_*?A&Ap'?A&Ae$?A&A%?A*&Ag&?A`}&A%?Ay&A#?A y&A?Au&A?Ap&Aj?Ak&A"?Abc&A#?A`&A#?AzY&A ?A W&AB?AS&A\?AHS&A?A R&A?AtK&A5$?AH&A5$?AA&A(?A@&A*?AD<&A,?AR9&A],?A1&A$*?A)&A+?A($&A|*?A!&A@&?A&A"?A&A?A$&A?A&A?A:&A?A&A?A|&Aq?A &A$?A&A)?A$&AP5?A &A:?A&AV&A\?AN=&A]?A=&Av`?A6&Ab?A4&A"c?A1&Ac?A 0&Ad?A-&Anh?A%&A5u?A~*&Az?A\$&A}?A"&AK?A!&A}?A&Aԃ?Ax&A?Ab&A?A &AY?AD &A?A(%A?Ar%A?A%AS?A%A?A%A?A%Aϗ?A%A?Ap%A?A%A?A%AC?A%A?A%AG?A%AE?Al%Al?A %AŬ?A%A?At%A?A%A{?A@%AB?A%AF?A%AO?A%A?A%A?A %A?A %A?AV%AN?Aj%A?A%A'?A%A ?Aܝ%A?A%A"?AJ%A?A%A?A@%A?A%A ?A%A7?A%A?A>%A?Av%Aw?Ar%A?Al%A}?A֚%A.?A%A?A%A?A%AQ@A%A@A0%A'@A֨%A @AD%Ai@A`%A@AZ%A @Ar%Ar @AΙ%A @A%AJ @A%A @A%A@Aԅ%A@A%A]@A0%A@Aʎ%Aj@A%A@A%A@AN%A@A4%A@Av%AQ@Az%A@A8%A@AV%A@A4%A@AN%A>@A%AK@A%Af@A%A@Ab%Aw!@A%A(@A%A(@A%AC.@A%A/@A~%A0@A%A1@A%A05@AX%A5@A%A9@A%A>@A%A=?@AJ%AP@@AT%A@@Ap%AA@A%AE@A %A:H@Aܽ%AVJ@A%AM@A\%AN@A%A_Q@A%AQ@A%AQ@A~%AXQ@A%A Q@A%A*U@A`%A;V@AL%ANV@AT%AV@A%AX@A<%A#Y@A%AX@A%AsY@A$%A Y@A &AV@A`&A(V@A&AR@A%AQ@A%AN@A%AL@AL&AJ@A&AJ@Ad&AI@A&AnJ@Ar"&AI@A`%&AI@A)&A#I@Ap)&AF@A./&AKE@A1&A9C@A4&AB@AE&AEC@AK&AB@AM&AMC@AV&AD@AX&AAE@A,($A>Ax'A@?A~&A3?A&A4?AX&A0?AF&A3?A&Af4?A,&A83?A&Ar2?A&A2?A&A,?AJ&AN.?A &A(?A&A'?A:&A'?A&A)?A'AO)?AB'A,?A, 'A~,?A'A+?A2'A<*?AR&'A#?A+'A?A('A?A'AE?A"'A7?AX+'A?A.-'A?A('A ?A''A?A"'A?AL/'A%>A1'A>A(9'A@>A;'A>A@J'At?AL'AE?AU'A?A\'A>A0b'A>>Ad'A >Aj'Aq>A(o'A>Aq'Ae>As'A>Ax'A,>Av'AC>As'A>ALq'A>Ar'AK>As'A>AZo'A?>Ag'A.>Af'AW>A`'AB>A4^'A>Aj^'A>Aa'A'>AZf'Ao>Adg'A>Ad'A>A\'A >A,^'Ac>A\'A>AZ'A_>ATU'A̿>A V'Ag>AJ'A>A^B'A>A7'A>A25'A >A3'A>AB'AͿ>ATD'A|>A ='Ar>A;'AO>A2'A>Ab.'Aݷ>A+'Au>A.'A@>Ax+'A>Ah)'A>A0$'A>A>%'Aw>Ar-'AJ>AL3'A>A8'AV>A8:'A>A,9'A>A0'A>A)'Av>Al('A->A'A>A'Aw>A2'A#>A'A>A'A>A'A>A'A>A'A:>A'AE~>Ar'AP}>AR&A(}>Ad&Az>A&AM}>A&Ab|>A&&A{>At&As>AH&Ao>AF&AMn>A*&A@m>AN&Ae>A\&Ad>A&Ac>AX&AY>A8&AW>A&AS>AP&AS>A&AU>A&AU>A"&AQ>A &AhQ>A‚&AQ>A&AQ>Aj&AR>Ad&AO>A_&AF>A b&AF>A,e&AB>A`c&A@>A]&A&@>AJY&AA>AS&A=>AJ&Ay@>A*H&A>>AK&A9>AH&A7>AF&A8>A?&AZ;>A<&A{?>A&:&A>>A 2&A=>Ap1&A;>A-&A1>A!&A)>A%&A%>AB&&A!%>AZ$&AD$>AX&A#>Ax&A9#>A&A">A|&A>A&A>A&A>At%AB>A%A>A%A >A%A3>Ax%AE$>A%A%>At%A'>A%A%>A%A$>A%A">AV%A#>A@%A$>A%A+>A%Aj2>AN%A1>A%A4>A%A6>Af%AP8>A޼%A8>A2%AA>A%AB>AL%A)A>A4%A>>A6%A@>A%A>>An%AU=>A%Aw>>A%Az@>AZ%A4A>AT%AB>A%A`H>A%AI>A%AMK>A%AkO>Aw%A7R>At%AR>Ao%A;R>A$n%AOS>Ad%AQ>A`%AR>A]%AR>AX%AcQ>AZ%AI>A4T%A@>AV%A6=>AQ%A;>A I%A0?>A@%Am;>A8%Ae<>A4&%A:>A:#%A:>A%A4>AN%A3>A%A2>Ah%A 4>A* %Ai9>A~%Ac=>A>%AA>Av$AAF>AT$AOG>A$A,Q>A@$AR>AP$AX>A$AE]>A$A^>A$Aa>A*$Ab>A:$Ac>A\$An>A$Ao>AL$As>A$Aq>A$A~s>A$Ax>AB$A{>A$A{>AN$Ay>Ad$A.z>A$Ai{>A$A>A@$A>A0$AD>AH$Ab>A$A6>A$Aɋ>A$A>Aη$A/>A2$Aّ>A$A>A$AR>A^$A>A$A>A$A>Az$A>A$A1>Aƥ$Aw>AL$Aì>Ah$A>A$A>A$A>A$A=>A$AN>A:$A>A$Aԯ>A$AT>A$A>A$A³>Al$A>A$An>A$Ac>A\$Ac>AΠ$A>A$$A>A$AH>A$A>AD$A>A܋$A>A$A:>Az$A>AP$Ai>Aƍ$Ab>A$A>A.$A>AP~$Au>A`{$A>ALw$A>Aju$A^>A0o$Ag>Ar$A>Apq$A>A~n$A>Af$A>AX$A>AW$A>AK$Aj>AM$A>AI$A?AH$A?AE$A?A%AB3?AA%A5?AG%A.?A$I%Ar-?AL%A +?AM%A)?AbL%An(?AhO%AW"?AR%A!?A8`%AC?A f%A?A2n%A?Ap%A"?A{%AC%?A}%A.+?A$%A-?A%A-?A%A,?A%A)?A%A1)?A%A&?AN%A.$?A,%A$?A4%AN$?A%A$?A@%A$?Aڥ%A$?A%A\!?A%A!?AT%A"?A(%AW ?Ax%A ?A%A"?Ab%A)?A%A-?A%Ak/?A%A/?A%Az2?A%A(0?A%A-?AF%A.?AX%A)?A,%A'?A%A?)?A(%A$?A"%A)#?A&A0#?A &A$?A|&Aq?A&A?A:&A?A&A?A$&A?A&A?A&A"?A!&A@&?A($&A|*?A)&A+?A1&A$*?AR9&A],?AD<&A,?A@&A*?AA&A(?AH&A5$?AtK&A5$?A R&A?AHS&A?AS&A\?A W&AB?AzY&A ?A`&A#?Abc&A#?Ak&A"?Ap&Aj?Au&A?A y&A?Ay&A#?A`}&A%?A*&Ag&?A&A%?A&Ae$?A&Ap'?Ad&A_*?A&A8)?A&A+?A&AH0?Aʡ&A_1?AЩ&A2?A~&A3?A-`) A:@A,AAAfA.EAAjAEAAA+DAAACAAAEAAAFAAВAcJAAԌAJAAAAA<A$AAPBAcAAAAAAUAAAVACAAXAAAWAAA|KAAA^AAA AAÄA]AA AAAlAHAAЬAǖAA8AAAAכAAlAYAAARAAAAAXAAAXA8AA<A;AA AfAAlFAAAHLAЛAAQAқAAjA~AA$pAiAA}AĝAAlAAAAAAAAAAAA,AAAAUAA8AAA(A"AALAAAA}AAAAAAzAA(4AAAQAiAA`AAAAAA;AAAK9AA A6AAA4AA#AL4AA8A5AA>A6AA DA 7AANA6AAZA4AAP_A?4AAUAo0AAUA/AAaA.AAeAu.AAcA-AA ]A,AAcA+AA`A)AAmA(AAqA-(AAiA%AAgA$AA`dAZ$AAPPA^"AALA!AA6AAA +AAAtAAAAAAAAAAAAAOAAtA,AAA8AAAAA AAAAAAVAAA[AAAAT`AAA8cAAAiA!AAxAAAA AA8A* AAHA9 AAARAA{AvAAuA1AA=AAA.A AA\&A AAA'AAARAALAAAAAAA AAPAHAAAAAAQAA<A\ AA\AO AAARAA AHAAA]AAėA AAA AAAL AAxA AAhAAAhqAAAprAAAsAAAdA@AwA@AxuA@AmA@AdmA@AtdA@AX_AQ@AOA)@A1A@AhA@AdA @AA@AA+@AAl@AtA@A\A@AAH@AA@AA1AAAAAAAAAAAA AAAg AAA/ AAA AAHA AAAAAXAAA̒AAAAYAAAAA؏A@AԛA6@A A~@AA@AhA@AĴA@A A2@A0Ac@AA@AA@AA@AA@AA @A̛Ao@APA@AA:@AiA@ATOAi@ADA@A@@A@A A@AA@A0AC@A<A@AA@ATA@AA@AA)@A A{@AıA@AAX@AAw@ApA@AآA@AA@A\A @AvA@A@jA@AAA@AEA@AJAR@A\IA@A2A@AA@AA;@AxAAAAAAA,AAhAAAA AAxA AAA AAȚA. AA\A)AATtAAAoA AA`AiAALA?AAc#AKAAb#AAA0]#AAA[#A,AA\#A}AAv^#A4AAf#AAA8i#AAAj#AAARs#A3AAj#AAAȃ#AAA4#AAAD#ACAA#A_AA #A#AA"#AEAA:#AAA#AAA#AAA#AAA#AAA#AAA#AAA#ASAA#A AAj#AAA#AZAA@#AGAA#AAA#AAA#AAA#A1AA#AAA#AAA#ARAA4#AAA#AAA#A AA$AAA~ $AAA$AsAA $AAA$AAA$AAAr$A;AA $AAA^$AAA$AAA$A#AA$A AAH$A"AA0$AAAr$AAAJ$AAA$A AA,$AyAA $AAA$AAA$AxAA#AھAA#A(AAR#AAA,#AAA#AAA#A4AA#AշAAV#A AA#AAAX#A AA#AAA#AAA#AAAAF#AAAx#AAA#A[AA#AAA#AAA#AbAAX#AHAA#AKAA#AAA#AhAA#A~AA#AAAj#AeAA~#AAA#A AA\#AȜAA"#AAAr#AAA\#A^AAj#AEAA #AAAd#A_AAP#AAA#AAA~#AJAA<#AAA}#AAA{#A%AA&}#AѐAA{#A3AA#AAA#AAA(#AAA#AeAA#AAA@#AAAޕ#AXAA2#A҈AA#AAA#AAA#AAA#AkAAB#AVAA#A܀AA#AAAA#A~AAX#Aw}AAX#A|AA#AxAAd#ABwAAp#A?uAAx#A#AfAA8#AIiAAD5#AhAA:3#AfAAf4#A=cAA:2#AaAA5#A`AAh4#A`AA.#A^AAz#AU]AA#A]]AAz#A]AA#A]AA #A_AAn #A8cAA"AfAAV"ASgAAP"APiAA"AkAA4"AlAAJ"AmAA"AmAAR"AoAAh"A]pAA"AqAA"ApAAr"AoAA"AoAA"AzpAA"ABuAA"AxAA&"AxAAp"A`xAAt"AGvAArq"A uAAh"AtAAd"AlsAAb]"AtAAS"AwAAG"AqxAAF>"AXzAA;"AzAAL6"A{AA3"A|AA$1"A|AAZ"A%{AA"A{AA@"AAAl "AAAZ"ADAA"A0AA"AAA!AjAA!AAA!AAA!AaAA !AAA"!AԅAAF!AAA!AnAAԵ!A|AA!A(AA!AAAP!AAA`!AAAAA6!A"AA !AAAB!A~AAr!A~AA!AuAA2 !AAA!A[AA^ A;AA| AXAA AAA AAA AċAA2 A#AA AAAR A AAA> AAAL AYAAʕ AAA AVAAr AɓAAž AoAA AAAn AAA~ AAA, AAA A١AA A[AA} ALAAu AѦAAtv AAAx AԨAAJ{ AAA AAAl AjAAX A%AAl AbAA AAAT AxAA AAA AAA, AAAP AϼAAu AAAVt ADAAv A AAz AAAʅ AAA AOA AAAR AAA A*AAv AAA A`AA AAATs A8AAfs AAAt AzAA2p AAA.w AGAA AAA AAA AsAA AAAƎ AAA ABAA AAA AAA A=AA AAAҮ AkAA^ AAA6 AAA AkAA A0AAt A_AA AAAV A'AA AAAZ AAA AZAA AAA: AAA!AWAA!AAA/p A+=A"Aܘ>AxA=AA=A0A=ATA=AHA?=ApA.=A(A=AA =AA=APAV=ADA =A6A&=A<A=A =A*=ACA>ASA>A(ZAu>AHkA>ArA >AvA >AA >AAc >AAg>ApA>AAH>AA>AxA>AA>A\A">A<A#>AA~%>A\AA)>AA*>AxA+>AXA.>AA.1>AA1>AA2>A A3>AA4>AA@4>AA @>AAB>AAA>A AD>Ab AbD>A A%E>AZ A~J>A A*K>A$ AN>A A)N>Al AM>A| A%N>A% AO>A.' AP>Aj' A$R>A% AU>AP# AU>A AX>A~ AZ>A A]>A AK^>A  A]b>A4' Ab>A*" Aj>Az" Adn>A| An>A As>A" A%x>A Az>A A>A AԈ>A" A>AR, A(>A3 Aˋ>A4> Ae>A.> A[>A? AG>AO A>A\Z A >A\ A>A@e Aܘ>A^g A>ATl Aˑ>Ax A>AN A>A Aғ>Ab AΑ>Aȏ AI>A A>A֝ A;>A A_>A̩ A>A A_>A A>A A>A A6>A A>Ap AЁ>Ah AO>A< A->A Ay>Ap Aw>A Av>A Av>A4 Av>AH As>A As>A A'r>A Al>A" A3k>A APj>A Ag>A ACe>Af Ad>A Ac>A Ad>A Af>A Aki>At Aih>AV!Ad>A!A+b>A!A5b>A !Aye>A!A%e>A!Af>A!A h>A&!Aj>A!Al>AD!Ai>A!A`i>A $!AWm>AR:!Aq>A";!At>A.G!A"{>A$S!AX{>AX!Ax>A[!ALx>A[!A`r>A^!ARp>Aa!A+p>A2e!Ar>A\v!A y>A!Az>A8!A|>Aܛ!AK}>A"!Ay>AΦ!A*z>Aή!Aq>A!ARo>A!Ah>A!Aa>A!A^>A!A]>Az!AcX>A!AS>Ad!AL>A̻!A L>A!AjB>A!A`@>Aj!A?>A!A8>A!A7>A!A7>A:!A2>A!A,>A!A[*>A~!A/)>Af!A&>A!A%>A&!A!>AR!A!>A!Ai >A!AF >Ab!A>A2!A>A!A6>A!A >A!A>A!A>AN!A>A!A=A!AE=A!A>A6!A>A!A=A"!A=A!A-=A!A=A!A=A!AF=A!A =A!A=AB!A=A!A=Ah!AG=A"A=AR!A=A!A=A!A9=A!A=A!A=A!A=A!A=A>!A9=Av!A=A!A=A\!A$=A!A=A!A7=A!A=A!A=A !A =A!A=A!AZ=A|!A2=A!Al=A!A=Ab!A=A!Ar=A(!A=A!A=At!Aֿ=Aq!A#=An!Aʺ=Al!Aw=A*l!A=A*d!A=A^!A=A"[!AͲ=AQ!A=AK!AO=AG!A=APL!A}=A>J!Ay=AE!AL=A9=Aa A7=A^ Ay6=AW A9=AU A7:=AnP A@=A8T AD=AL AH=AJ A!J=AB AI=AP= AI=A; AwL=A4 AN=A8. APH=A( AG=A2' AB=A| A==A A<=A A<=A A<=A A7=AdA7=AAD2=AA+=AHAO6=A AE8=AA*7=Ax~A9=AxAP:=A{An;=A|AA=AXA]B=A\AF=AhAH=A A&J=A`AS=A`A(T=A{AQ=AnAN=A,]A#O=AtYAKP=AVAO=ASAcI=A KAG=A,IA.I=ACAK=A4AM=AP$A4J=AdA!O=AAN=AAQ=AAQ=AAQ=AxAT=AAo[=AhAZ=AAX=AA?[=ALA0Z=AAd^=AAt^=AA]=AرA^=AlAa=AA{g=A|Aj=AAl=AAl=AAn=AATo=A\At=AAIt=AAv=AtAkv=AAfw=AA<}=AA=AТAM=A\A =AAt~=AAz=AXmAy=AhA~=A]A=AgA=AkA=AhA =AkA@=AfA=A^A=AYAf=A(WA=AEAa=A0FA+=A|:AL=A<A.=A9A|=A4?A=A8<A]=A<AУ=A/A4=A+A=Al3A=Al5A=A!A=AA=AAɿ=Ap A=AA=A*A?=A1A=A2A9=AdPA=A|UAq=A\WA=A eA=AvA=A}A=AA=A@Al=A،Aj=AAQ=A`A;=AA=AA==A0A=ApA4=AA=AxA=A0AAH@A=A:A;=A3A=A|1A=A1A=A2A=AAAm=AFA˽=AHAھ=AMAd=ARAT=A]A=AGA=A`GAZ=A]A0=A(bA=AlA=A0qA=AwA=A<A"=AA-=AXA=AA:=AA\=A\A=AA=AxA=AA=AA=AA=AA=AA=AA=A\ A`=A<A=AA=APA=AtAT=AA=AA=A4A=A`%A/=AL)AL=A@/A#=A 1A:=A.A=A`Az=AAf=AA=AA=AA=AA>A,A>AA>A0AA>AA>A$Ah>AA8 >AtA >AAS>AdA>ALA1>AA >AA>AAo>AA>AA>AA>AA>A'A0>AD/A>A1A>A,7AZ >A4=A2 >A|BAx>ALIA>AJA>AT`AV>AXA>APaA1#>AiA9%>AkA&>AwA&>A4A >AA >A8Ao!>ADA#>A\A-%>AA#>A(AG#>AA8>AA>AA>AhA>AA>>A A >AXA >A A >A< A>A@A=AA=AAn=AA=AA=A A=A2A=AhRAh=AaA=AxA=AH~A=AAh=AؕA=ApAM=AA=AxA=AA!=AAC=A4AO=AdA=AA=AA=A A=AA>A'Ag>A,A>AKA>AOA>AxTA>AtRAs>AYA >AT]A >A sA~>A|A'>A}A>A}A=ApA =ADA=A A=AAB=AA=AA=AA=AAH=A8Ap>AA=AAH>A A>A.A>ADEA >ATRA>A,UA=ARA=ApNA=A(ZA=A8jAY=A,oA=AljA=AcA%=A cAY=AYA=APYA=AAA=AKA:=A,MA=APA=Ah[Ak=AWA=AnA=AlsA=A}A=AA=AA=AA=AA=AA=AA==AA=AA=AA=AA=A( A=AAN=A!A=A4A=AXHA=AMA}=A@^A=AjA=A|A=AA=AA=A}A=AvA=A eA=A\WA=A|UAq=AdPA=A2A9=A1A=A*A?=AA=Ap A=AAɿ=AA=A!A=Al5A=Al3A=A+A=A/A4=A<AУ=A8<A]=A4?A=A9A|=A<A.=A|:AL=A0FA+=AEAa=A(WA=AYAf=A^A=AfA=AkA@=AhA =AkA=AgA=A]A=AhA~=AXmAy=AhAx=AhA3t=AWAr=A;At=A8Aqs=A"A@t=AAu=AAq=AAq=A Ao=AAWk=A@AWk=AAl=AAu=AXAz=AйA|=A A|=AAB|=ATA{=A Az=A4Ax=AؕAv=AAot=AAp=AAn=AAcl=ALAk=AAd=AAGd=A}Ab=AAna=AxA{\=ApA[=APAW=A$AV=AtAX=AA&Y=AAU=A|A~T=AA8M=AA,M=A|AK=ADAH=AAI=AAB=ALA^==AA ;=AA9=A̞A(=AA(=A@jA*=AhA)=A$fA(=A`AG&=At`A+"=ADmA!=AtA=AA!=AȍA=AhA=A4A5=AA=AA=APA=AHA=ATAN=A4rA =A dA =A`A=A5A=AA=A A=AA=AA8=AA=AA =AlAg=ALA]=AA=A,A =AA4=AAZ=AAjAqo%A;R>At%AR>Aw%A7R>A%AkO>A%AMK>A%AI>A%A`H>AT%AB>AZ%A4A>A%Az@>A%Aw>>An%AU=>A%A>>A6%A@>A4%A>>AL%A)A>A%AB>A2%AA>A޼%A8>Af%AP8>A%A6>A%A4>AN%A1>A%Aj2>A%A+>A@%A$>AV%A#>A%A">A%A$>A%A%>At%A'>A%A%>Ax%AE$>A%A3>A%A >A%A>At%AB>A&A>A> &A;>A8&A8>A&A >AX&A >A&A>AJ&A=>A &A7>A&A>A &A>A&A=A&A0=A&A=A&A=Aj&A=A&A:=A&A=A&A=A&A=A&&Aa=A&A =Ar%&A=A$&A =A'&A=A(&AA=A5&A(=A8&A=A>&A=Ad@&A=A"C&A=AC&A=AD&Au=A4L&A׹=ANJ&A=A M&A=AfQ&A=AR&A=A@Y&A=AK&A=AtI&A=A:J&A=AhI&A_=AC&A7=A;&Aʈ=A;&ADž=A`'&A†=Ax"&Aօ=AB&A=A&AB=A$&A$=AL&AV=A&A'=A&A%~=A$&Aw=A-&Ap=A-&AKm=A5&Ah=A">&Ag=AN>&Ae=A<&Ac=A9&Aa=A-&Aq[=A~.&AY=A3&AW=A7&AS=A48&AGR=A6&AQ=A4&AN=A<&AJ=A|>&AL=AC&AL=AJ&A,J=APN&AH=A6L&AC=AI&AC=AB&A{C=A<&A?=A2@&A?5=A=&A4=A\=&Ac3=A8&Ab,=AE&A*=AE&A'=AfJ&A!=AL&A"=AvP&A =AO&A=A1&A%=Af2&A=A0&A\=A(&AY=A,(&A=A4&&A=A &AF=A&A=A&Aq=AJ%A=A%A=A%A=A%As=A%A=Az%Ap =A%A=AB%Ay=A%A=Al%A=A%A=A%A=A6%A=A@%A=A@%A =Ah%A;=A%A =Ab%A=A>%Ah#=A%A$=A%A$=Aڑ%A]%=A%A"=A%A !=A~%A#=A%At#=A}%Ao!=Ax%A=Az%A=A||%A8=Az%A =A8j%Ai=AfV%A =A~S%A =AP%A^ =AD%A+=Ah>%A=A*%Ae =A%Ap =A%AD =A.%A =A$A =A$A=A$A=A$A[=A$A-=A$A"=A@$Aj(=Ap$AU+=Ap$A,+=A$A<,=A$$A*=AF$Ae-=Ad$A-=A$AT*=Aj$A*=AH$A&'=A҃$AN&=Ah~$A%=A{$A:&=A~m$Ae'=Ar$An(=A u$A0+=A&w$A?,=Ay$A.=Az$A}3=A}$A7=Ah$A;=Ac$Am?=AZ$A==AR$A2>=AM$AI=AH$AK=A0E$A%G=AD$AE=ATA$AE=A;$AD=A9$AF=A;$AO=AM$AY=ApH$A\=AZK$Ab=A@$Aqd=A<$A j=A=$Al=AJ?$AFn=A:$Ao=A 8$Amr=AD9$As=A9$AAx=Aj7$Az=A&B$AA}=A B$A{=A=$A=A;$A=Ax=$A=ARD$A=AD$A=Az@$A#=A@A$A=AA$A=A@$A=A9$A{=A(5$A=A,$AV=A *$A=A$A=Ax$Aˮ=A8$A=AJ$A=Ab$A]=A$A=A $AT=A$A=A$Ai=Ah$A=A $A=A$A=AT$A=A#A=AN#A=A#AM=AV#At=Ad#A9=A#A=A#A=A#A=A#A=A#A=AZ#AG>A#A >A$Aj >A#A>A6#A>A#AI>A#Ap>A:$A>A$A>A<$A">A$A%>A$A~&>A$A,>Ah$A-->Ad$A 0>A:$A07>A$AN8>A2$A8>A $A,>>A $A<>A#$A<>A&$A<>A%$A@>A^'$AA>A#$AF>A)$AI>A$*$ALK>A0*$AR>A($AES>A2$ARV>AF8$A[>A8A$A[>AjD$A~X>AF$AuW>AnJ$APT>A"L$A`S>AN$A[O>AfX$A5L>AY$AJ>A^$AI>AJb$AN>Am$ArO>At$AR>A0z$AjU>Au$AY>Au$A]]>At$A^>Aw$A0_>A$Aza>A$A.h>A"$APj>A$Ak>AN$A%l>AĆ$Al>A$Al>AĊ$Ai>A$AWg>A$Ae>A^$Ak>A$Ak>A$An>A$A r>A $A s>A$Ar>AJ$Ar>A$A t>AN$Ay>A$A{>AB$A{>A$Ax>A$A~s>A$Aq>AL$As>A$Ao>A\$An>A:$Ac>A*$Ab>A$Aa>A$A^>A$AE]>AP$AX>A@$AR>A$A,Q>AT$AOG>Av$AAF>A>%AA>A~%Ac=>A* %Ai9>Ah%A 4>A%A2>AN%A3>A%A4>A:#%A:>A4&%A:>A8%Ae<>A@%Am;>A I%A0?>AQ%A;>AV%A6=>A4T%A@>AZ%AI>AX%AcQ>A]%AR>A`%AR>Ad%AQ>A$n%AOS>Ao%A;R>A2@A@AAAAA2AAApAAAAAAA^6AA<A4AA|7A4AA3A4AAT.A/AAL%A-AAh*A+AA(A(AA,A(AAT(A'AA"A'AAAc$AA$A"AAA^"AAXAxAAAAA,AAA AAAAAADAAAAAA`AAAAAAPA:AAtAAA$AAA0AAADAAA@AAAAq AA8A AAhA AA{A AAzAAAfAAAbA1AAWA AAUA AATAG AADOAn AA@QAAAhKAAA0AAA+A AA&AAAAC AA<A# AAxA>AA\AAA<AAAAn AA|A AA%AAA$AAAAkAA,A9AAAAAxA|AALAAAA>AAxAbAA(AnAAAAA A AA|qAAA YAAASAAA<8AAA 6AAAx'AAA "AxAAAFAAAAAA]AA8AGAAXA AAA AAA2 AA,AN AALA AAAqAAAC AA0A> AAԥAz AAA AA,A AA0hA AAbA AAH2A AA`6A AA5AAACAAA@?AgAA.AAA<'AAAA@AA@AA@AA@AA@AA!@A@A'@A8A@AdAy@AAF@AAq@AxA;@AAT@AxAb@A8A@AAU@AuA@Ap_A@ATJA@Ah>A@A1A,@A!A@A A@AA@AX AX@AA@AA2@AA.@ApA@AhA@AA%@AA@AA@AA@A A@AA@A(A[@AHAO@AtqAAAiA@ASA*@A>AAA5AAAx"AuAAAAAA@ATAAAAAADAbAAAAAA=AA<AAA\AAAALAAAAAuA1AA{AvAAARAAHA9 AA8A* AAA AAxAAAiA!AA8cAAAT`AAA[AAAAVAAAAAA AAAAAAA8AAtA,AAAOAAAAAAAAAAAtAAA +AAA6AAALA!AAPPA^"AA`dAZ$AAgA$AAiA%AAqA-(AAmA(AA`A)AAcA+AA ]A,AAcA-AAeAu.AAaA.AAUA/AAUAo0AAP_A?4AAZA4AANA6AA DA 7AA>A6AA8A5AA#AL4AAA4AA A6AAAK9AAA;AAAp>AAA?AAXA1@AAA@AAA BAAABAA`ABAA@AYBAAA$CAAAEAAlAFAAAHAAAdIAA0AJAA\AJAA<AJAA%AiKAAH+AKAA 0A9LAAJAKAA`ALAAeALAAuAOAAГAOAAA,OAAANAAANAAAOAATAOAApAOAAA+NAAA4NAA/AAzBAh(AezBAd$AzBAA|BA A(BAxA‚BAABAABAABA AŏBAABAAnBAlABADA$BA ABAABAABA@ABALABA AڜBA.AФBA3ABA0ABA5AKBAL8A`BA9ABADABA0=ABA/ABA0A3BA0ABA2ABA2AůBA03A{BA$8A1BA:ArBA?AmBAAABA@ABA;ABA=ABAVABAhABAmAMBAqA¸BAvAXBAxABA(tABAhSABANA^BA?AyBA|:AӼBA|.A$BAL%A\BAD%ABA`ABA ABA4ABA8ABAdABAABAABAABA A"BAABA%A(BAH+A5BAAVBAXABAABAABAAjBAA:BA|<ABAAABAxAABA+AEBAhABA(ABAABAABAABADA_BA<ABAAoBAABAABAA7BAA3BA\ATBA@ABA AjBAABAABAABAA BA$A7BAABA4ABAPAkCA~ACA{ACAXuACArACA]ACA^AICApACA\iACA]A!CATNACA<ACA|;ACCAh/A CA0ACA0ACA2ACAx2ACA)ACA|&A3CA8ACAA=!CAxA!CAA$CAtA%CAPA%CAA@&CAPA'CA0A+CAA,CAA?.CAAk.CA(Aw/CA'A!2CA*A2CA*Av4CA*A5CA+A@8CA$+A;CAACCAlAcDCApA;ECAAECAA(FCA<A#GCAAGCA0AGCAԾAyJCAAbLCAAMCAAPCAA7TCAATCAATCAABQCAAPCA A(PCAALPCAd!AQCA+ARCA.AzQCA,9APCAEALCANA;LCASAKCAiAKCAAICAAYICApA@ICALAGCAA7GCAAGCAAGCAXAFCA@AYFCA$AECAA$DCAACCA ACCA!ARDCA%ACCA!ABCA,'AjACA8AACAx>A ACA?A9CCA$OAwBCAeA/CCALvABCA(|ABCA0ABCA0ADCAAqDCAAECAA!ECAA8GCAA#HCATAJCAAJCAAKCA ALCA1ALCA4OAyLCA^AKCAcAbKCAwAKCAt|AJCAAICA(A\ICAAgICAAFCApAJECALADCA8ACCAAHCCADA?CAdA&?CA`A!:CAA7CA A\6CAAZ7CAAn7CAA~.CAA5/CAA?1CAA1CAA$2CAA0CAPAh0CA0A-CApAj,CAA)CAPAN)CAA'CAHA&CA|A#CAA5#CAȞA!CA|A CA$Am CAACAACAACAdA^CAACALACAA+CAACAxAMCAA(CA,ACAACA(AHCAAf CA$ACAHACAlArCA ACAA0CA(AwCA5AGBA6ABAIABAJABA|NA|BA`JABA|/ABA01APBA6ABAx;A>BAAABA8ABA|3ABAIASBA|RAgBAX]AIBA\ABA_AeBAteABAhsABA,ABA@ABAATBAA>BAxA%BAAABA@A%BAABAxABAABAABAABALA}BAABAHABA,ABAT"A{BAABAh!A}BA<6ABAA BA06ABAD;ABAGACBAbABAvABA |ABAĒABAdAbBA<AjBAABAA1BAdA؁BAABADABA8AfBA`A~BAt!AF}BA)Ai{BA:A-{BAIA6|BApMA|BADeA|BAnA}BArAT~BA\tA}BAx_AzBAx[AzBANAxBARA>uBAXAtBA`dA$uBAgAuBALsAruBA4AsBAAqBA AxpBA0AoBAAnBA(AmBA A>mBADAlBAA+kBAAiBATAjBA̶A[hBAXAPfBAAdBAA9dBAxAcBATAv_BAAx^BAA-]BAA&]BAlA\BAطAFYBAAmWBAA)WBA@AVBAARSBAAQBA|AYNBAuAMBArAMBAH9AFBA8AREBAp3ACBA.AsCBA ABBA$A"CBAA%CBAACBAAFBAA GBAAGBAAFBAADBAACBAAABAABBA8MAHBAxJAGBAAAFBA\AGBA| AIBAAIBATAIBAdAIBA$AJBAAKBAAKBAAKBAANBAANBA܈AMBAHvAXOBAuA[OBA@pALOBAYAXMBAL]ALBA]AJKBAPAHBAKAGBAGA1HBACAGBA2AEBA "AEBAAOFBAAFBAA]CBAPADBATA$DBAlA+BBAA@BA,A=BAAh=BAAs>BAA>BAxA>BAA ABAAVBBAAZDBAADBALwADBADmAVDBA`AxEBA[A4EBAVAHBAVAZIBASAIBA(BACNBAD?A.NBA=ASPBAD/ARBA,7A4UBA>AGVBA7A8XBA7AXBA'AmYBA,A]BA%A^BAA_BAA!`BAA`BA$ AcBALAdBA`#A-dBADAjcBAhHAbBA@IAZaBALA`BAMA;`BARAdaBAxqAZaBAvA?aBA\A3bBAĖAbBAAKdBA(AeBA`AeBAA@eBA8AfBAAieBAAcBA4AcBA A cBATAQcBA A+cBAANcBAAfBAdA{fBAlAqgBA\AgBAAkiBAAnnBAAnBAAxoBAxApBAAFpBAAwmBA\AmBA AkBA`AAiBAAiBAAkBAAlBApAoBAPeApoBA|[AHpBAhYApBApOAvBA NAvBA4 $Ae?BAY(ACAA'AFBA'AEBA"'AVFBA'AKHBA'AEHBA'AFBAܔ'AAGBAF'AEBA'AGBAj'AGBA}'AHBA6~'AIBA'AJBA.~'AJBA8e'AJBARa'A*IBAp^'A&AwjBA&A`kBA&AwlBAz&AOiBARr&AhjBAi&AiBA$g&AiBAd&AiBA(X&AteBAxU&AeBA2?&AhBA<&AQhBAZ:&AhBA2&AyeBA3&ArcBA,1&A bBA&&A_BA#&A_BA&A`_BA&A5`BAh &A_BAF&A]BA&A:YBA&AXBA|&AXBA%AXBA%AXBA%ARBA%AbSBA:%AvRBA%AoRBA%ALBA%A'MBAl%AMBA%AiMBA:%AfMBAH%AKBAL%ATKBA%AHBA%AEBAb%AEBA.%AEBA%A(DBA%AABAN%A?BA%A?BA`%Ae?BA%A?BA"%A BBAJ%A;BBA%AABAv%AoBBA%AABA%ABBAt%ADBAq%ACBA f%ALCBA(c%A8CBA[%A3DBAM%AfCBAL%A4CBArJ%AhCBAA%ACBA`;%A~EBAJ:%A&KBA8%AKBA5%ALBA0%ALBA.%ALBA,%AKBA*%AGKBA)%AKBA#%AiNBA%A NBA~%ANBA %ACRBAT%A)RBA%AQBAT%ASBA%AUBAX%AWBA$AeXBA$AYBA%A4[BA$A[BA$AZBA$AF[BA,$A:YBA$AtXBA$A\BA@$A^BAN$As_BA:$A`BA$AbBAP$AcBA$A fBA$AXfBAh$AChBA$AjBA$AkBA^$AlBA$AmBA$AoBAt$AnBA$ApBA0$AuqBA$A-rBA$ArBA$A rBA$ArBA$AxBA$AxBA$A+xBA$AyBA$AyBA$A|BAF$A|BAX$A}BA|$A/BA$ABA$A~BAp$ABA6$ABA$ABA$ABAx$ABA$AzBA$ABA$ABA$ABA`$ABAh$ABA$ASBAB$ABA$ABA$ABA$A1BAF$A|BA`$ABA~$AMBA2$AxBA$ABAD%ABAP%AJBA%AjBA%ABAj%AښBAP%ABA,%ABA#%ABAh%ABA%ABA\$%ABA8,%ABA.%AԠBAZ0%AiBA7%AoBA8%A BAD%A=BAbG%ABAtI%ABAdN%AԫBAE%AlBA C%ABA,>%AHBA*%ABA*%A}BA%ABA2%ABAB%AJBAX%ABA%A5BA!%AµBA#%A3BAj%%A̷BA3%ABA"7%A,BA\7%ABAf3%ABA-%ABA(,%ABA:(%AbBAn!%ABA %AdBA^&%ABA('%ABA+%ABAp+%AFBA$,%ABA.%ABAZ?%ABA@M%ABAO%ABAV%A=BAX%ABA[%ABA"`%A4BAb%AfBAl%A4BAo%ABAZr%ABAt%ABAt%ABAu%A&BAo%ATBAxg%ABA^\%ABAW%ABAZ%AIBA[%ABAX%A/BAV%ANBAN%ABAJ%AdBAB%ABAp>%ABA^>%ABAj<%ApBAD%ABAJ%ABAI%ABAF%ABA=%AkBA@%ABA|C%ABA@%A)BA;%ABA?%ABA=%ABA4%A BA3%ABA&6%A+BAZ7%ARBA8%ABAzC%A>BAD%ABA@O%AgBA~R%ABA^Z%ABA^]%A BA0h%AGBAj%AlBA(n%A-BAm%AlBA|m%A BAp%A0BAv%ABA%ABA%ABAf%ALBAΈ%ABA%A5BA%ABAP%AMBAL%AOBA%A7BA%ABA$%ABA2%ABA%AZBAz%AVBA%ABA%ApBAt%ABAL%ABAخ%A=BA`%ABA%ARBA%ABA%AJBA%ABA%ACA%ACA%A6CA%ABA%ABA%ABA~%ABAh%ABA&ABA&ABA&A#BA &ABA&ABAZ&ABA&ABAx&ABA&ACA)&A CAZ,&ACA/&ACA;&ACA\>&ACA@&ACA4N&AKCAP&ACA[&ACA^&ACA6l&ACAj&AzCAp&ABA,r&AGBAv&ABAy&A5BA&ABA&A BAމ&ABA&ABA&AgBA&ADBA|&ABA&AiBA|&ABAj&ABAޯ&A6BA$&A8BA&AFBAD&AHBA,&A3BAN&ABA"&A'BA&ABAv&ABA<&AjBA&AzBA,&AFBA&ABA&A5BA&ABA&ABA'ABAH'ArBAn'ABAB'ABA'ABA'ABA'ABA(''A'BA2'ABA;'ABA>'ABA(ABA(AcBA8+(A2BAJ.(ArBA/(ABA06(A}BA7(ABAB7(A.BA0(ABA"(ABAp(AvBA(ABA"(ABA#(AxBA *(ABA*(ABA0(ABA1(AnBA2(ABA4(ABAp6(ABAb8(ABA=(AHBA>(A3BA:>(AwBAC(AsBAFD(A3BAzA(A%BA/(AIBA`.(ABA/(ABAtG(ABAT(ABA@V(A=BAV(AϱBAT(ABAhT(A:BADH(ABA@(AUBAC(ABAT(ABAY(ABAU(AeBAT(ABAtL(AjBAL(ABAK(A}BAB(AyBA5(ABAh,(ATBA*(ABA'(AȝBA (ABAz(ABA(ABAz(ABAF(ABA(ABA(AVBA<(AWBA(ABAP(AdBA(ABA4(AwBAT#(AߋBAv"(A6BA(ABA&(AIBA(ABAR(ABAX (ADBA (A1BA (AGBAD (ABA (ABA>(AfBAD(AbBA(ABAb (AoBAB#(A]BA$(A~BA`,(A{BA/(AzBA=(A"wBA?(ArvBA?(AuBA^D(AuBAO(A uBAN(ApBAT(A'nBAR(AmBAJ(ABnBANO(AkBAM(A1kBAF(AiBAfE(AhBAB(AhBAv1(AhBA+(AgBA)(A'ArBAf'ABAL(ABA4'ABAx'ABA'AZ BA'A BA(A BA'ABA (ABAH'ABA'ABA'ABA'ABA'AEBA'AzBAl'ABA'ABA.'ASBA'A2 BAn'A BAb'At"BA'A#BA'A 'BA'A(BA'AZ(BA'A'BA,'A(BA'A)BA'A)BA2'A,BA'A-BA'A-BAZ'A.BAT'Al0BA'A1BA'A\2BA'A2BAV'A~5BA|'Ag7BAz'A7BAR'A7BAv'A8BA2'A8BA'A:BA'A=BA\'Ao@BA'A[ABA|'AhABA$'AUCBA|'AXEBAF'AEBAܔ'AAGBA'AFBA'AEHBA'AKHBA"'AVFBA'AEBA'AFBA'AFBA'A{KBA'A,NBAT'ANBA'APBA"'ASBA'ATBA`'AOUBA'A2XBAJ'A\XBA'AXBAD'A YBA'AjZBA'A]BA'At^BA'A{_BA'A9`BA 'AHaBA'A`BA$'A{`BA'A~`BA'A`BA'A}aBA'AdBAx'ApdBA'A~eBA<'A,fBA'AfBA'AfBA'AeBA'AveBA6'A7eBA'ABdBA'A$dBA'AkdBAz(AAdBA(ApeBA(AgBA(AhBA(A)iBAX'(AfBA)(ABA$)A=BA')AY=BAv')Ak=BA4,)At`)A2BArb)A2BAc)A1BA`)A1BAzV)A~0BAA)Al+BA:)AZ+BAt8)A+BAlA)AV)BAR)A )BA**A[AA/*A+AA.*AAA(*A AA&*AAA\-*A;AA5*AAAh7*AAA<*ARAAE*AAAJ*A1AAJ*AAAM*AAAO*AJAAR*AbAAR*AAA8S*AAAP*A)AA(U*AAAY*A?AAhf*AAAf*AAAi*AHAAj*AAAi*A AAh*AAAf*AxAAS*A|AA R*AAAP*AAA&M*AbAAL*AAAD*AAAF*A9AAG*A7AAH*AAAE*AAAn;*AzAA8*A`AA6*AAA,7*AAAAv1*AAA!*A͹AA*AAA~*AkAA*ANAA*AAA*AgAA4*AAA,*AAA *A;AA*ANAA*A\AA)A8AA)A:AAZ)AAA)AߧAA)AAA)AAA)AAA*AAA*AAA|*A=AA*AAA*AAA*ARAA *AAA^)AϞAA)A"AA)AٜAA)AHAA)AAA)AAA)A'AA~)AiAA)AAA*AnAA)AAA)AAAr)AAA)A~AA~)AXAA,)A=AA)AAA)AAA")A8AA)A\AA)AAA)AAA)AՐAA)AAAR)AAA)AQAA)AAAf)AAA@)AAA:)AݖAAܠ)A+AA)AAA)AAA()AAAv)A1AAT)AAA|)AAAtn)AAAvh)AAA`)AAA X)A\AAU)AAAjT)A܊AA*V)AމAAzX)AӉAA*W)A&AArN)A#AA`G)A׃AArG)A/AAB)AAA>)A}AA=)AK}AA5)AN~AA5)AAA2)AAAL/)AGAAd))AAAF%)AqAA)AfAA)A|AA)AzAA )AkzAA*)AuyAA(A@}AA(A~AA)AAA)AaAA(A܂AA(AlAA(AAA(AAA(AقAA(AWAA(AAA(ADAA(AAA(AvAA$(AAAF(AAA(AAA@(AٌAAZ(A-AA*(A`AA`(ALjAA(AAAt(AAAV(A,AA(ACAAZ(A*AA^(AAA(AAA0(A؍AA&(AAA{(AˑAA4|(AAAy(A6AADn(A*AA^k(AAArj(AAAe(AAAV(AAAX(AAAO(AAAM(AAAO(AAAS(AAAS(AAAW(AΘAArW(AAA.S(AKAAP(AיAATS(AAA4O(A#AAL(AMAAG(AAAC(AAA6;(AAA9(AӠAA\6(AAA8(A?AA9(AAA6(A>AAB(AҤAA4E(A'A+AAn'AAA(AAAH(AAA(AVAA (A1AA(AAA('AAA"'AjAA'AAA'AAAx'AzAA'AAAV'AuAAf'AAA'AAAD'AAA'AwAA'AAA¼'AAA'A,AAN'A AA'AaAA<'AAA'AAA'AAA'AAAX'A6AA'A#AA'A5AA'AAA'AlAA8'AAAЩ'A@AA'AAA'AHAA6 HAAA8ANBAAAA$AAAXA)AAAӳAAAAAHA/AAXAAA A AAAAAAAA|*AAA+AةAA-A0AA2A AA3AWAA6AvAAh/AUAA$-AǡAAADAA8 AAAA|AAAAA<AAAAAApAAAAhAAAMAAAlAADAAAA%AAČAmAAAAA}AAA$xA-AA^AAAXA|AANAٟAAAAAA=AiAA!A%AAtA;AA(AAALAAAAAAAAA<AtAAԮArAAܣAߝAAA*AAAAAA:AAwA)AAnAAAxXADAABA]A>BATbA=BATaAZBA|Ak?BA ABA{A/=BA{A?BAȏA'ABAPABBA$AEBA$ADBAAxDBAADBATACBAAABBAlAABAADBAAOFBAA9HBA|AJBA<AKBAA MBA@ANBA AMBAAMBA(AMBAX1ALBA5ALBAT8AKBA :A(KBAt<A{JBAGAHBAoAEBAmAQDBATACBAMAN@BAPSAw@BAd`AP>BA|`A=BA`A0BADA/BAA/(BAAv'BAPAN&BAPA%BAA$BAA$BAA<#BA4AA$BA4AC$BAA"BAoA!BArA)BA~ABAyABA`ABA[ABATABAVA#BApWAdBA4[A]BA^ASBAeABA@iA*BA4\ABAYAiBA [A(BA$XABA,IA BA@LABAOABA\]AVBATABAZAAAUAhAAEAAA4AAA@1A7AA8,A,AAl'AAAAAAXAgAAAAAAFAAAAAAOAAxAAAAnAAA,AAA*AAAAAAAA|AOAAtAAAAAAAAATAAA8AeAAA^AAAAAAAAAAAPAAAAAA|AAAxAAAhpAAAvAAAHqAAAܒA(AAhA*AAA0AAAAA0AAAAAAAAAXApAAAAAAAA<AAAAAA(AAAAAAvAYAAnAmAA5ANAA1AAA@&AAA`A1AAAAAAɾAA<AAAA[AA*AAA ,AKAA1A!AA<AϻAABA#AAAAlAA:A[AA>AAA=A\AA7AAA-AεAAAAA7R%)A%BA-A+CA6)ACAH4)ACA%)ACA))ACA .)ACA;)AaCA6)ACA6)ACAj*ABAl*ApBAdn*ABAy*ABA:*A[BAB*A~BA*ABA*A6BAJ~*A\BA{*AABAw*ABAr*AdBA u*A,BA`n*ABAo*AwBAp*ABAzu*ABAs*ABAz*A8BA|*ABA^{*ABA`v*ALBAXj*A0+ABAf-+A˔BA'+A6BA)+ABA@5+ABA.:+ABAB+ABAD+A[BAG+A%BAC+AhBA;+ABA2+A܎BA.4+A|BA6+A>BAC+AގBAD+AFBAF+ABAH+AEBAP+ABAR+AMBAM+AʊBA(R+ABAR+ADBAT+ABA~Y+A_BA[+AɆBAvc+ABA>f+ABAj+A΄BA|+A܇BAP+A4BA҄+ABA.+A*BAT+A BA +ARBA+AYBA+ABAj+ABAF+AeBAܫ+A;BAX+ABA+ABA+ABA"+AeBA+AҀBA+A`BA+ABA+ABA+ABA+A7}BA+A}BA|+A4zBA+AyBA+AwyBAf+AxBA+AwBAz+AwBA,AGxBAP,AwBA,AtBA ,AsBA ,ApBA ,AapBAh ,AoBA,ArBA,AqBA| ,ApBA#,ApBA+,AoBAb-,AloBAf4,A5pBA`<,A>pBA=,ApBA@,ApBAXA,ATnBAB,AmBAC,AmBAxK,AwmBA0K,AlBAI,A;lBAhM,AkBAN,A,kBA`,AQlBAl,AkBAo,A}jBAq,AqiBA8r,AhBAlu,AgBA{,AgBA|,A=hBA$,AgBA,A8gBAp,AKhBA,AiBAn,AjBA,AjBA ,A"gBA,AyfBA ,AweBA,AIeBAn,ABAV,A;BAΓ,A;BA$,ABA,AM>BA(,A=BA$,A=,A9BA8,A9BA1,A:BA),A8BA',A8BA!,A9BA ,A;BAD,Ae:BAl,A:BA8,AB;BAV,A1;BA ,A;BA ,AMBA,A@@BA,A|BBAv,ADBA+ADBA+ADBA+ACBA+ACBA +ACBA<+ABBAn+AFBBA6+AJABA+A=BA<+A8BAX+AC8BA +A:BA+A:BA+A_;BA+A:BA+A9BAt+A9BA+Au7BA+A7BAP+A7BAܬ+Af7BA+A6BA+AK6BA+A7BA+A7BAT+A6BA+A5BAl+A,2BA+A1BAd~+A2BA{+AX2BAv+A1BAt+A=2BAt+AN3BAx+Ao4BAo+A5BAjh+A4BAg+A4BAe+AG4BAc+A4BAX+A 4BAU+A4BA4H+Aq5BAD+A9BA A+A:BA":+A9BA7+A7BA1+A<8BA,+A3BA**+A3BA"+AA3BA+A1BA+AY2BA+A_2BA> +A1BAb +A1BA*Ae1BA*A 2BA*A3BA*A04BA*A3BA*A3BA*A3BA~*Af3BAn*A-BA~*A3-BA*A)BAT*A)BAH*Ap*BA2*Ax'BAl*A'BA*A'BAN*A{)BA*A)BA*Au-BA*A-BA*A,BA,*AO,BA@*AV)BA*A(BA*Aq(BA*AV(BA*A^(BA*A(BAb*A)BAF*A(BA$*As(BAʦ*A'BA*Au(BA*AP(BA,*A!(BA`*A&BA*A&BA*A%BAX*A&BAF*A%BA*A%BA~*A&BA}*A'BA~*AK)BA"|*A')BAN|*Ao*BAw*A+BA}*A-BAH{*A5.BAy*A/BAx*A/BAt*As0BAm*A.BAlk*AS/BAh*Ac0BAg*A 1BAlb*A1BAK*A'1BAPH*AN1BAB*A1BAC*AN2BAD*AV3BA$Q*A%7BA"R*A7BAR*A%8BAXY*A:BAR*A )AfBA)ArgBAh)AhBA)AiBAv)AxnBA)A oBA *ApBA*ApBA)A.sBA )A=uBA)AeuBA)AuBA)A!wBA)AHxBAp)AyBA8)AszBA)AzBA)A|BA)A}BAT)ABA*ABA*ABA*ABAZ*A BA*ABAZ)ABA)A BA)A4BAN)ABA~*A5BA*AÍBA*AGBAD*AoBAB*ABA)ABA)ABA)AԕBA*ABBA*ABA*ABA *ABAp *A5BA)ABA)AΝBA)AvBA)AsBA)ABA)ABA)A2BA*A:BA *ABA*AtBA*A)A`CAJ=)ACA@)ACA=)A0CA;)ACA=)A CA;)AYCA=)ACA@)A~CAbB)ACAbE)ACApC)AXCA>)ACA>F)ACA])A CAp`)ASCAa)ACAf)A[ CAl)A"CABu)A"CAh)A!CAr)ACA)A[CA)A9 CA)A!CA)A#CA2)Ap%CA̘)A%CA)A&CAr)A(CA*)A(CA)A'CA)A'CA)A&CA)A1&CA)A&CA)Aq'CA)Ad&CA)A2'CA()A*CA)A+CA)A(CA )A'CA*A&CA.*A\&CA *A'CA*A$CA *A2$CA~ *A"CA *ACA**A2CA-*A"CA21*AnCA0*ACA4*ACA9*A CA<*A/CAf@*ACAB*ACAtF*A\CAH*A1CAF*ACA K*ACAE*ApCA0K*ACA,L*ACAI*ACAdD*ACA?*A1 CA=*AK CA;*A CA>*A CA@*A@ CA,F*A CAJ*A7CAD*AoCAI*ACA:N*ACAS*A6CAV*A&CA[*ABA:a*ABAd*ABA(a*ABA>[*ABAdP*ApBAzP*ABAXT*ABA^`*ABAi*ABAk*ABAo*A"BAt*A4BAHt*ABAs*ABAhs*ABAx*A%BAw*ABA y*ABAPx*AMBA*AhBA*ABA^*ABA}*A1BAz*A$BAu*ABAw*AQBAZs*ABAn*AZBA m*ABARn*ABAVj*ABAj*ABA8RR(A/BA)*AE5CA'4 *ABA*ABA*ABA*ABA*ABA*ABA *A!BA *ABA *AqBAd*AֿBA*A2BA*AhBA'*AcBA)*ABA*ArBA*A÷BAD*ABA*ABA*A{BA*ABA*AخBA(*A'BA(*ABA*ArBAR*ABA)*ABA)*A"BA(*AtBA&*ABA *ABA*A)AfBA)AdBAL)AcBA)AcBA*AbBA*AKaBA*A_BA*A$_BA*A_BA*A^BA*A`BA*A`BAh*AC`BA*A]BAB*AG\BAf *Ak\BAt*A?\BA*A[BA)AYBA&)AXBAp)A\XBAN)A-UBAZ)AtTBA2)ARBA)ARBA)APBA)A@PBA)APBA*ANBA*ANBA *ANBA*AMBA*AMBA *AKLBA*A}IBA *AXHBA *ADBA2 *ADBA*ApBBA*A?BA)A.?BA4)A/=BA()A=BA)A;BA)A|BA)A=BA)Ap=BA~)A>BA)A>BA)Ab=BA)A;BA.)A^:BAd)A#:BA2)A8BA)A7BA)A5BA)A7BA2)AD7BAx)A*7BA)AW6BA)A4BA)A5BAޚ)AW5BA)A 6BA>)A6BA)A6BAV)A4BAl})A$4BAz)AL1BA6})A/BAjz)A/BAc)A1BArb)A2BA>`)A2BA [)A-2BArU)A2BATT)AO3BA\Q)A4BA`K)A4BA?)A6BA<)A8BA=)A3;BA;)A;BA:)A=BA<)A$?BA8)A;DBA*)A'DBAX)AEBA(ADBA(ACBA(ADBA(AZDBA(A EBAb(AEBA(AmHBA(AuGBA(AGBA(AGBA(AHBA(AIBA(A_JBA(AKBA((ALBAj(AMBA(AOBA (AOOBAv(AqNBA^(AOBA(AOBA(APBA(APBAZ(ARBA4(ASBAڒ(ATBA|(AUBAȐ(AUBAN(A(AfBA (ABAD (ABA (AGBA (A1BAX (ADBAR(ABA(ABA&(AIBA(ABAv"(A6BAT#(AߋBA4(AwBA(ABAP(AdBA(ABA<(AWBA(AVBA(ABAF(ABAz(ABA(ABAz(ABA (ABA'(AȝBA*(ABAh,(ATBA5(ABAB(AyBAK(A}BAL(ABAtL(AjBAT(ABAU(AeBAY(ABAT(ABAC(ABA@(AUBADH(ABAhT(A:BAT(ABAV(AϱBA@V(A=BAT(ABAtG(ABA/(ABA`.(ABA/(AIBAzA(A%BAFD(A3BAC(AsBA:>(AwBA>(A3BA=(AHBAb8(ABAp6(ABA4(ABA2(ABA1(AnBA0(ABA*(ABA *(ABA#(AxBA"(ABA(ABAp(AvBA"(ABA0(ABAB7(A.BA7(ABA06(A}BA/(ABAJ.(ArBA8+(A2BA(AcBA%(ABA>)(ABA9(A0BA;(ABA<:(ApBA>(AYBAA(ABAdI(ABA>O(ACBAW(ABAV(ABAY(ABA[(AfBAPZ(A,BAZW(AUBAQ(ABA.K(ADBAO(A BAK(ABAI(A#BA(I(ABADH(A5BAW(ABAV(ABAY(A,BAvg(A BA,j(ABAp(ARCAo(ACA^r(A[CAXf(AzCAq(ACAt(ACAw(A CAZs(A CAXr(A CAn(Ao CAs(ACA~o(ACA4n(ACAzk(ACAc(ACAc(ACAzd(ACAa(A9CA^(ADCAU(AYCAU(ACA8W(ACA_(ACAc(ACAc(ACADf(ACATj(A!CAf(A"CAbf(A$CAh(A&CAJm(A&CAo(AX&CAq(AR'CAJr(A'CAn(A$,CA\r(A.CAt(A.CA(A-CA(A+CA2(A4+CA(A)CAv(A)CA(Ax(CA(AF)CA(A)CA(At)CAڣ(A)CA(A*CAֶ(A?)CA(A(CA(A'CA(Ac'CAd(A$CAf(A5$CA~(A$CAl(A$CAJ(A&CA&(A'CA(AD(CAl(A)CA(A)CA^(A0CA(A/CAl(A)/CA(A/CA)A/CA)A0CA,)A1CA)A2CA )A4CA)AE5CA#)A0CA$)A0CA#)Ag/CAV*)A?+CA2)A*CA.)A'CA,)Al'CA,)A'CA(:)A$CA9)A!CA0)A CA:)A*CA<)ACA>)ACApC)AXCAbE)ACAbB)ACA@)A~CA=)ACA;)AYCA=)A CA;)ACA=)A0CA@)ACAJ=)ACAV>)A`CAF)ACAH)AyCAlF)ACAE)A CALA)A CAN)A CAP)A CAU)Ah CAN)A3CAF)ACA@B)ACAH7)ACAx4)AHCAF4)ACCA=)ACA&C)ACA0E)ACA"D)A2CAfH)ACAJ)ACAP)AuCAQ)AOCAd)ACAo)A CAu)A@ CAx)Ap CA|y)A CA)AE CA)AO CAR)Ar CA)A2 CA)A| CA\)A CA)ACA)ACA,)A CAD)A CAȾ)A CA0)ACAt)ALCAt)A;CA)AqCA.)A CA)AxCAL)AICAL)ACA)ABA\)ABA)AzBAj)A BAV)A[BAd)ABAr)ABA)ABAH)ABA)ABA)ABA6)ABA)ABA)ABA)ABA)ABA)ABA)ABA\)ABA)ABA)ABA&)AQBAz)ABAd)A9BA)AQBA)A BA")AIBAv)ABA)AmBA)ABA<)ARBA.)AmBA)ABA,)A!BA)ALBA )A%BAN)A[BA$)ABA)AhBAL)ABA|)ADBA8)ABA)ABA )A BA)A BA)A#BA)ABAV)ASBA)A+BA)ABAT *ABA4 *ABA6)ACA6)ACA;)AaCA .)ACA))ACA%)ACAH4)ACA6)ACA9ALAAA,BA#3DOPsAAA gAAA [AAA0NAAA(9AAApAAAAӛAA@A_AAAAAxAAApAAAAAA(AAAAAA AAA`AuAA@<AJAAUA8AA0fAžAAHAAAtABAAPsAAA8% AUAA AVAA0 A6WAA AYAAp A_XAA& AaXAAx8 APXAAI A_YAAO AXYAAxS AWAA0R AWAAJ AVAA8% AUAAA_AA~A`AA0zAaAAWAzbAA?A@dAA.AdAA,AfeAA2AeAAcA%dAAAcAAAcAA@AbAAAaAA`A`AA`A_AAA_AA AAAx AAAX AAAx AAA AAA AAA A AA AOAA ABAA AAA ATAA@ A'AA( AތAA AAA AwAA AAA AAAx AAA@ AΊAA AAA A>AA AAAX' AAA. AAA< AiAAh" AAA( AۊAAx AAA(`AAA(RAAAHTAߊAA>AAAA.AAAAAAAAAA AAA AJAAAAAAAAAAAAAAAAAfAÊAATAAA fAAATA{AAP!AdAAHABAAAƍAAX+AŌAA AˊAAAAAAAAPAAAA~AA(Ag}AA A{AA8IA"yAA_AgvAA<AvAAAwAAAwAAhAIxAAAyAAA1}AAA}AAAAAhA݂AAxA@AAAAAA AAA݉AAA{AAAAAAABApiABAsABAtABA@tAhAAxAAAAAAAAAXA1AAHAAAAAAAAAHAAA3AAA?AEAApA:AA(AAAAAAAtAAA/AAyAAAyAAAAAAAAA(AAAAAAXAgAA\ A>AA#AAAA?AA@AAAAAAHAKAA`AKAA}AAAKAAA9AiAA08AAA03A!AA>AAA8$AAA!AnAAXAAAAAAxA/AAA|AAAAAAAAD.AAA8AAAl=AAAIAvAA`NA AADQAdAA [AAA0]AAAaARAAhAAA|AAAxvAiAA,xAAAnAAAiAlAA@^A?AA|ZAAAPA!AA\PA2AA`AAAPVAAAHRAAA]AϽAA`bAAApATAAAiAA$AAA0AAAlAQAAPAAALA AAA{AAAAAAAAAAAAAA(|AAA{AֵAAxAɳAAsAɱAA[AAALPAAAJAƯAAHAjAA<5AAAD3A3AA\bA AADhAtAAyAiAAAtAAtAAAxLA֦AA0GAAAHIAϥAA/AAAl.AAA8A+AA1AOAA|2AAACAAAGAAA\>AjAA;AaAAOAiAANAAADACAADAAAGAAA|KAAAWAAAXAAAVACAAUAAAAAAAPBAcAA<A$AA>AAAFAAADAGAA`;A}AAhBA{AA?AzAA AyAA8AxAAPAwAAAuAAAFsAA`ArAAAqAAArAAAsAAAuAAAvAAAnvAAeAuAA!AsAAAsAA`AtAA AvAAA/wAAA+wAAXASxAAЧASxAAhAvAAAsAA(}AnqAArAmAAAkAA AmAA AmAA AhlAA AmAA AnAA@z AqAA(o ApAA O AnAA0 AmAA A$kAA AokAA` AAjAA AkAA AmAA ApAA ARtAA AuAA AuAA A6sAApB AtAA s AtAA} ArtAA AuAAhY AouAAXS AvAA! A}xAA A yAA AAzAA8 AzAA AT{AA( A|AA| A|AAg A|AA@d AR{AAG AzAA A!{AA AR{AA AxAA AyAA A]zAA0 A{AAPY A|AAO Am|AA$ A9wAA AyAA A'zAA0~ AxAA5 APxAA AvAA AvAA AwAA` AwAA0 ADwAA0 AyAA A~AA8m AҀAAe AiAAE AAA, AsAA$ AAA% AlAAH A-AA AAA AAA AAA$ AAAHU A@AAP` AAAr AAAP AAA؁ AAAP A)AA AAAX A܃AA AƒAA AAA AnAAH AAA AAA@1 A1AAN AAAq A>AAX AAAث AAA A AAP ÃAA AHAA AއAA AAA ATAA A AA AAA AAA ATAAj A}AAX` AAApv AAA AAA AAAP A AA` AAA0 AҖAApY AvAAZ AAAS AAA7 AAAp AAA AAA AAAȇ AAAP AAA( ARAA@ AAA{ AAA\ AAAQ AAAE AAA* AƌAAh AAA( ArAAAAA AAAAAA(AnAAA7AAXA"AA A.AA`AAAAAAAAAAAA8AAAA AAPA0AApAޜAAAsAAȍAAA8AAA@AAA(A[AAARAAHAAAAގAAОAAAAcAAAAAAAAABAAAAAAAA8AAAAAAH]AˌAA(`AAAAWAAAZAA A1_AAAtaAAAYbAAPAQeAA(AeAAAcAAAbAAAwaAAAaAA1AaAAJAp`AA`A^AA0AXAAA$WAAA|VAAHAVAAhATAAfAfTAA`yARAAHJA+NAA+ALAAANAAANAAPANAAAVPAAA#PAA8kARAAJA'QAA@'AQAAA,QAAASAAXAsUAAAEWAAAWAA:0-*AHUBA#.A#CALZ,A;BAZ,ABAPR,ABA],AgBARj,ABA$m,AVBAo,ABAr,A7BA,ABBA,A$BAt,ABAl,AfBAv,AWBA|,ABA,AZBAt,ABAr,ANBA֮,ABA&,ABA@,ABAt,ABA ,AzBA,ABA,ABA$,ABA,ABA,ABA,AfBA,ABA,A+BA,A>BA,ABA,ABAf,A)BA@,ABA,ABA ,ABA,AyBAd,A2BA,A BA,ALBA-ABA -ABAr-ApBA$-A6BA"-ABA$-A1BAr'-AnBAX+-AjBA>-ABA@-AKBAHR-ABAU-AyBAZ-A BAP_-A~BAZ`-ABAe-ABAk-AwBA-A-BA4-ABA>-ABA-ABA-ABA-ABAz-ABAث-ABAb-AUBA-ABA-A'BA-ABA^-ABAd-ABA-A5BAB-AxBA-ABA-ABA\-ABA-ABA-A!BA4-AQBA-A`BAt-ABA .ABA|.ABA(.ABA!.ABA#.ABA.A&BA.AwBA.ABA.ABA.AIBA".A=BA$ .AٽBA .A=BA .ABA .A=BAB.ABA.AbBA.AcBA-ABA-ABA-ABA(-ABA-AŲBA-AϲBAj-ABA-AfBA-ABA0-ABA-ABAҢ-ABA(-ABA(-AABA-ADBAH-ABAȋ-ABAІ-ABAp-AVBAl-ARBAz-A1BADw-ABAt-AtBAk-ABARj-A³BAa-ABAa-A.BA(a-ABAb-ABA*B-ABA4-ACBA2-ABA0-ABA)-AպBA0$-ABA"-ANBAR-APBA-A BA-AMBA-ABA-AȼBA,,ABAX,AJBAV,A;BA,ABA,ABA,A=BA,ABAz,ABA,ABA,ABA(,A=BA,ABAp,ABAp,A;BAb,ABA,ABA,ABA,ABA,A-BAJ,ABA,AYBA,AȼBAJ,A޺BAJ,ABA,ABA ,ABA6,A:BAB,A2BAL,A1BA.,AXBA ,AzBAn,AϱBA,AvBA,A#BAd,AzBA|,AخBA,ABAV,ABAƩ,ABBA,ABAz,A+BAx,AݫBA,ABA,ABA,AèBAl,ABA,A-BAR,ABA8,AТBA@,AѢBA,ABA,ABA,AQBA,ABA,ABA,ABA,ABA8,ABA,A[BA.,A!BA,,A BA,AߙBA>,ABA&,ABA,AaBA,ABA,ABAp,A_BA ,AĒBA,ABA,AjBA,A2BA6,ABA(,ABA,A'BA,AΌBAP,ABA*,ABA,A;BA&-ABA -ABA -ABAT -AlBAR -ABA -AiBA` -ABA -ABA$-A3BAh-A BA-ABA %-ABA(-AMBA +-ABA41-AJBA--A=BA.4-AݖBA6-ABA;-ABA>-A~BA@-A(BAD@-AoBA"?-ABAhD-ABBAO-ABAT-ABAV-A+BAW-AǕBABY-AlBAV-A+BAO-AkBABR-ABAjW-A@BA|Y-AڐBA>[-A8BA^-ABA`-ABAj-AUBA>k-A-A^XBA*=-AWBA4-ASVBA2-AUBA2-AzUBA/-AUBA)-AUBAR!-A`UBA -AWBA-AHUBA$,AVBAx,AVBA@,AWBA,AEWBA-AWBA,AYBA,A[BA,A_BA,A_BA,,A_BA,AXbBA,AdBA,A\fBA,AeBA,AeBAn,ApBAf4,A5pBAb-,AloBA+,AoBA#,ApBA| ,ApBA,AqBA,ArBAh ,AoBA ,AapBA ,ApBA ,AsBA,AtBAP,AwBA,AGxBAz+AwBA+AwBAf+AxBA+AwyBA+AyBA|+A4zBA+A}BA+A7}BA+ABA+ABA+ABA+A`BA+AҀBA"+AeBA+ABA+ABAX+ABAܫ+A;BAF+AeBAj+ABA+ABA+AYBA +ARBAT+A BA.+A*BA҄+ABAP+A4BA|+A܇BAj+A΄BA>f+ABAvc+ABA[+AɆBA~Y+A_BAT+ABAR+ADBA(R+ABAM+AʊBAR+AMBAP+ABAH+AEBAF+ABAD+AFBAC+AގBA6+A>BA.4+A|BA2+A܎BA;+ABAC+AhBAG+A%BAD+A[BAB+ABA.:+ABA@5+ABA)+ABA'+A6BAf-+A˔BA>0+ABA/+ABA.+ABA5+AqBA5+AvBA3+ABA3+ABA^-+AxBA5+ABAj:+AHBA=+ABA=+ABA;+ABA3+ABA3+ABA@1+ABA&+ABA\&+A`BA%+A7BA#+AXBA+A3BA0+AQBA+A+BA8+ALBA+ABA+AQBA +AABA+ABA+ABA*ABAx*A7BA*AΦBA*ABA*AFBA$*ABA8*AvBA*A̧BA*A¦BA*AvBA*AGBA*AYBAV*ABA*A˨BA*AƨBAn*A:BA*ABA*AԬBAĵ*ABAP*ArBA*A̫BAҫ*ArBA*AyBA^*AܮBA*A;BAJ*ABA*ARBA*ABAN*AׯBA̗*AװBA*ABA*A)BA*AnBA$*AѶBAr*AbBA*ABA*AúBA*AnBA}*ABAy*A(BA,x*ABAHt*ABAq*A7BAl*AûBAi*A̼BALd*ABAb*A}BAB`*ABA\_*ABAxW*AvBAlV*A$BAV*ABAY*ABA$P*ABAQ*ABAR*A(BA(\*A1BAg*A:BAXj*A[*ABA(a*ABAd*ABA:a*ABA[*ABAV*A&CAS*A6CA:N*ACAI*ACAD*AoCAJ*A7CA,F*A CA@*A@ CA>*A CA;*A CA=*AK CA?*A1 CAdD*ACAI*ACA,L*ACA0K*ACAE*ApCA K*ACAF*ACAH*A1CAtF*A\CAB*ACAf@*ACA<*A/CA9*A CA4*ACA0*ACA21*AnCA-*A"CA8*AGCANC*ACAE*ACA0K*ACAN*ACA Q*ACAY*A,CA\*ACAc*ACA6`*AbCAa*ACApl*ACA|z*ACA|{*ACA0*ACA *AqCAZ*A\CA*ACA*AwCA *ACA*ACA*A1CA*ACA>*ACA³*AqCA*A+CAf*ACA|*ACA*A,!CA*A"CAf*A?"CAl*AN"CAf*As"CAj*A$#CA*A6#CA *A"CA*A#CA(+A("CAN+A CA +A' CAD+ACA+ACA"+ACA +ACA&+ACCA`(+ACA-+ACA/+ACAB2+ACA8+ACA :+A9CA<+ATCA,>+ACAI+ACAO+ACA$Z+A=CA_+ACAb+ACAd+AWCAl+ACAt+A CA|+ACA~+ACA+ACA+A3CA +ACA+ACAƞ+ACAx+A CAΦ+A CA~+Al CA<+A CA+ACA+A\CA*+A CA.+AvCA+ACA+ACAr+AFCA8+ACAj+ACA6+ABA+ABA+AQBA+ABA+ABAF+AIBA,+ABA>+AMBA>+AXBA+ABAj+ABAT+ANBA+ABA+A BA+ABA+AaBA+ABA+A/BAD,ABA4,ABA,A"BA` ,AEBA,A-BA,ABA<,ABA6,ABA,ABAv!,AjBA"0,ABA5,A1BAP,A3BAzS,ABAV,ABAX,ABAZ,A`BA6Y,ABA=&A>AAA&A@AANM&A@AAR&A!AAA:a&A@AAd&A@AAd&A1@AAk&A AAAxr&A?DAAw&ADAAy&AKDAA:v&ABAA^o&A0@AAn&A>AAr&Ao&A]9AA\t&A:AAs&Ag9AA j&A6AADq&A|-AA v&A+AAJw&A*AA(&A^.AA&A,AA&A*AAZ&AH'AAl&A#AA&Av"AA&AAA&AAA:&A AA&&AZAAv&AAA&AAA$&AAA&A1AA{&AzAA|p&AAAm&AAAk&ArAA4n&AAAi&AAA0n&AAAm&A&AA"j&A4AAJc&AAA\`&AAAa&AAA^&AAAJM&ARAA6J&AAAF&AAA I&A" AA B&A AANA&AZAALC&AAAH&A.AAT&AAAM&A@AM&A-@AN&Az@A|O&A@AK&A@AbD&A@AlA&A|@A?&A@An,&A@A)&A@A)&AI@A@)&A@Aj1&A@A<&AB@AB&A@A|L&A\@AJ&A@AZD&A@AG&A@AB&A @ABC&A@ArG&AJ@A$H&A@AP&A[@A(X&A2@AXZ&A@Af&A@Ai&Aj@Afj&A@AM&At@AK&A@A2I&A@A6J&Ao@AQ&A@AQ&A*@AS&A@AT&A@AT&A-@AZQ&A1@AK&A@AI&A@AhF&A@A;&A@A/&A@A6&A@A2&A@A&A@A&AE@A&At@A&A@A&A@AV%A@A%A@A%A@A%Ao@A%A@AR%Aƺ@A>%A@A%A@A%A@A%Ad@A%A@Ar%A2@A8%A@Ar%A@Aʬ%A\@AR%AR@A%A@A}%Aɾ@ABf%A @AF^%A@A\%A@AV%A`@A.S%A@AVQ%A@AB%A@AB?%A@A<%AO@A4%AV@Av?%A,@A|6%AU@A>4%A@A1%Ax@A,%A@A"%Ao@A"%A@A#%Aǵ@Av*%Am@A2'%A>@A$%A@An %A@AD%Aձ@AR%A@A%AN@A6$A߫@A2$Ah@A$A@A$AR@A$Aԩ@A$A@AB$A*@A$A@A$A@A\$A@A$A_@A$Aϴ@A $A@An$A@A$Av@A$A5@A$A)@A:$A@A$A?@A$A@A$A@A$A@Ač$A@A$AQ@AƄ$AG@A$A@A$|$Au@Av$A@Ag$A_@Ac$A±@A6V$AG@A,S$Ao@A?$A߱@A4$A@A3$A@Ad1$A@A($A@A"$A@A$A-@Ap $A@A $A`@A#A0@A#At@A#A"@AN#A=@AR#A@A^#Aq@A#A@AR#A@A#A=@A#A@Ad#A@A#A}@A$A@AZ$A@A#Ao@A#A@A#A&@A<#A@A$A@Ah$Aq@A$A@A$ $A2@A$A@A#A@A$A2@Af$A@AZ$A@A$AC@A$AU@A$A @A#A@A#A@A\#AE@AL#A@Aj#AAA#A?AAt#A'AA#AAA#A; AA#A AA#AG AAH#A AA#AAA#A8AA#AAA#AAA#AAA#AHAA#AAA#AS AA#A AA#A!AA#A<"AA#Am&AA#A+AA#Ag,AA#A-AA#AL/AA#A2AA<#Ao5AA.#A5AA#A6AA#A7AA#A 8AA#A8AAV#A8AA#A:AA#AAA#A@AA #AAAAx#A9BAAj#ADAAڗ#ADAA^#AMAAB#ApNAA#APAA*#ARAAX#A{SAA#A9XAA#AXAAڥ#ARYAA#A]AAr#A^AA#A`AA8#AaAA#AbAA#AucAA#AeAA{#A"jAAz#AjAAX#A4lAAZ#A!kAA0#AlAA#AlAA8#AmAAL#AnAA&#AoAAt#AmAAH#AmAA#AoAA#ASpAAj#A pAA#AmAAF#AnAA#AxnAA*#AuoAA#AIpAA#ArAA#ArAA $AItAAd$AsAA$AsAA~$ArAA $ArAA$AqAA$AoAA$AjAA$AjAA&$A.jAA-$AgAAJ5$AfAA7$AOeAA?$AeAAZC$AfAA*N$AfAA_$A`AAr`$A__AAvi$A"_AAn$A_AAw$A_AA}$AbAA,$AaAAr$A`AA@$A_`AAț$A]AAH$A[AAD$A>[AA$A\AAj$A^AA $A?_AA.$AaAAB$AUcAA$AcAA$AcAA$AcAA$AcAAR$AcAA$AAdAA$AbAAb$A%bAA0$AObAA$A`AAx$A`AA$AfAA$A`nAA$A%oAA$A%oAA$AYoAA%AmAAJ%AhAA%AgAAX %AfAA%AeAA|%AReAA%AbAA%%A0bAA(%AbAA+%A3aAA(%AS_AA)%A^AAX)%Am^AA,%AZAA-%AYAA0%AZAA3%A*YAA48%AZAA:%A [AA@%AZAAbA%AYAAE%AXAAH%AXAAK%AXAAX%AbWAAc%AWAAve%AWAAf%AWAAe%A{VAARc%ATAAg%ASAAi%A6TAAk%ASAAt%ARAAz%APAA&|%ANAA|%AkNAAt%A;MAA%AYLAA>%AMAAd%ApNAA%A=NAA6%AKAA&%AKAA%AJAAȮ%AJAA%AHAAN%AWIAA%AJAAȻ%AlMAA%A~NAAR%ANAA%A,OAA%AKSAA%AUAAn%ATAA%ATAA%ASAA%ASAA%A&SAAP%AQAAZ%AOAAP%A^MAA%AKAA %ADA"H$A DAI$AY DA2M$AA DA`N$A DAM$ADDA6U$AlDAhU$ADAY$ACDAX$A8DAX$ACA[$AZCAY$AICAj]$A9CAX$AoCA[$A3CAZ$A^CA_$A}CA^$ACAr$ACAv$ACA,x$ACAy$ACA $ACA:$AcCA$ACAP$ACA@$ACAԱ$ACA$ACA$AzCA$ACA$ACAn$ACCA$ACA*$ACAr$AXCA$AjCA$ACA$ACAP$A2CAD$ACA$AVCA%ACA%AcCA%ACA%AfCA$%A CA%%AvCA+%A]CA/%AICA/%ApCA3%AlCAb4%ACAn6%ACAV7%ACA`7%AgCA@3%AcCA/%ACA6/%AUCA44%ACA3%ACA9%ALCA8%ACA:<%AfCA>%A CAdB%ACAJ%ACA4L%A)CAM%ACAQ%ACAO%ACAjV%ACAHY%ACAW%ACAZ%A4CA\%A&CA~a%A CAzg%ACArj%ACAxk%AfCAt%ACA|%ACAԁ%A=CA%ACA%ACAJ%A"CA%AdCA^%ACA%A)CA %AzCAО%ACAH%ACA%A(CA%ACA %AtCAD%AQCA%ACA%A>CA%ACA%ACA%ACA:%AhCA%ACA^%A@CA%ACA%ACA0&AWCAb &A}CA&ACA&AfCA&A$CA%&ACAP+&ACA0&ACAV5&AVCA3&A)CA4&AuCAN:&ACA<&ACA;&AgCAE&ACA K&ACAL&A>CA@D&AXCAH&APCAzN&AHCAS&AeCAd&A CAk&ACAJb&ACA:_&ACAV&ACAM&ACAD&ACAJ&ACAJH&ACAH&ACA(E&ACA&H&AvCA@G&ACAZ@&ACAj:&A CA9&A]CAC&A!CALM&ACAF_&ACA:d&AYCA$a&A CA&e&ACAe&ACA~r&ACAnt&AHCAs&AۑCAd&ACAp^&ACAPV&A#CAS&AbCAO&ACAM&AvCA>@&ACA2@&AXCAG&ACAO&AaCAvL&ATCAF&A~CAC&Aq~CA|A&A(~CA/&A|CA-&A|CAz$&A|CA!&A~CA&A~CA &ACAX&A~CA<&ACA&ACA4%ACA%ACA%AqCA%A,CAZ%AWCA\%ÄCA%ACA%ACA%A4CA%ASCA %ACA%ACA%ACA&%ACA.%AiCA.%A+CA%AjCA֯%AXCA%ACA%ATCAP%AnCA%ACA`%ACA%ATCA%ACA%ACA%ACAFw%ACAu%ACAJs%ACA e%ACAXc%ACA8W%AяCAS%ACAQ%ANCAnN%ACA:%ACAF8%ACA"4%A>CA3%AkCAz6%A&CA(4%AӈCA+%ACA$%ACA!%AUCA%ACA%ACA%ACA%A&CA%ACA^%ACA%ANjCA%A=CAn%ACA$A6CA*$A,CA$AŒCA`$ACA>$ACA$ACA$ACAV$AxCAj$ACA\$ACA$ACA$A%CAX$ACAƢ$ACAt$ACA|$ACA($A CAV$AوCA$A8CA$ACA $AdžCA$AքCAL{$A{CAp$A6CAn$ACAl$AτCAc$ABCA\$AYCAZ_$ACA8[$AXCA8Y$A{CA0W$ACAT$ACAR$ArCAM$ACAL$ACAFL$ACAF$A CAD$AoCA5$ACAp$$AdCA#$ACA&!$AVCA$ACA*$AӄCA$A>CA$A CA$ACA$ACA$A:CA#ACA#A[CAb#ACAJ#ACA#A6CA #ACAN#ACA8#ACA#ACA,#ALCA$A˔CAJ$A|CAD$A|CAv#ArCA#A0CA:#ACA#ACA(#A"CAv#AÛCA $ACAX$AYCAl$ACAt $A,CA.$ACAP$A^CA#ACA$ACA $AФCAT$A CA$ACA$ABCA $ACAz$ACA$A}CA$ACA $A CA@ $A̬CA$ApCA$AmCA%$AtCA&$ACA($ACA~*$ACAF*$ACA'$ACA2#$A5CA$ArCA$AQCA6$ACA$A^CA$AɹCA$ArCA $ACA$ACA#ACA#AICA#AXCA\#AŻCA*#AԻCA#ACA$#ACA#ACA#A7CAX#ACA$#ACAP#AzCA#AߺCA#A;CA#AQCA#A)CAR#A5CAV#A CA#A1CAV#ACAR#A$CA#ACA#A CA#AeCA#ACAd#ACA#AaCA(#ACA~#AtCA#ACA#A2CAJ#A CA#ACA&#ACA#ACA#AtCA#ACA#ACA#ACA #ACA#AqCA#ABCA#ACA#ACAt#A{CAȷ#ACA#A2CA #ACA6#ACA #AICA#A{CA#A$CAl#ACA@#ACA(#A?CA<#ACAJ#A1CA#ACA#A6CAX#A{CA#ACAJ#AjCAR#ACA#ACAZ#ACA#AUCA#ACA#A[CA~#ACA#AwCA#ACA#ACA#ACA#A}CA#AxCA#A CA#ACA#AACA#ACA|#AGCAԼ#ACA`#ACAR#ACA#ACA#ACAV#ACA#ACA#A:CAl#ACA #ACA`#AyCAx~#ACA}#ACAJ#ACA#AkCA#ApCA~#ACAN|#ACA8s#ACAxp#ACAm#AoCAj#AGCA^#ACAX#ALCAV#ArCAR#ACA&P#A=CAzQ#AICAN#A>CAM#ACAU#A;CAW#ACAX#ACAU#AVCAL#ACArJ#AW"AMDABQ"A2DAR"Aa!DA~^"A#DAh"A~$DAx"A'DAv"A&'DAt"A(DAr"A(DA$k"Ag)DATh"A)DAbd"A*DA_"A(DA\"A(DAQ"A#*DAE"Ay*DANB"A+DA`@"A +DA5"AL)DA4"A*DA4"Am+DA,"A*DAf""A+DAP "A ,DA"A-DA$"A.DA"A0DA"Au0DA "A0DAT "AE1DAp "A2DA* "A93DAZ"Ab4DA"Ab6DA"A7DA"A7DA6"A#9DA!A=DA!A=DA!A>DA!AEDAV!AFDA!AZGDA!A3KDA^!AMDAV!AsNDA!AQDA!ARDA6!AeSDA!ASDAR!AYUDA!AuVDA.!A)WDA !AWDA!AZDA!AW[DAr!A[DA|!A [DA!AXDA!A$XDA!A[DA!A_DA!AE]DAv!A\DAl!AX\DA!AN_DA!A`DA!AaDA!AcDAJ!AbDA( "A`DA"AaDA"AFbDA%"AZcDA'"AcDA9"AdDA<"AdDA$W"AfDA`"AeDAi"AdDAH"AfDA""AhfDA`"AhDA "AZhDA"A{hDA"AhDA."AiDA "AiDA"AmDA"A`mDA"AiDA"A*iDA "AwhDA"AcDA$"A4cDA"Aa]DA:"A\DA"A[DA"AcYDA"AWDA"ANDA`"AKDA"AJDA"AHDA "AKHDAJ"AGDA""AjGDA"A+FDAD"AEDA"AUCDA"A,>DA"A7"A'1DA$#A1DAR#A1DA#A2DAF#Ao1DA##A 1DA(%#A0DA&#A-DA,#A*DA-#A6*DA5#A)DAH6#A(DA9#A'DA69#AK&DAE#A#DAJ#ADAT#ADA(W#AhDAj#A}DA*u#ADAv#AgDA|~#ADA#ADA#AVDA#ADA<#ADAĐ#ADA#AnDAȗ#AbDAΗ#AUDA#AaDA#A3 DAě#A"DA#A"DA#A$$DA#A#DA#A$DA#AV%DA#A'DAl#A(DA#AG(DA#A9(DAt#Ai)DA#Al*DAd#A*DA\#A(DA#A7)DA#A*DA#AN-DAX$A-,DA$A,DAt$As)DAF$A(DA$A%DA$$A#DA($A!DA*$A#AۥCA#ACA #ACA#A*CA#ACA#ACA#AםCA4#ACAb#ACA= ABA%$ALCA #ABA#A BAL#ABA#ACBA#AJBA#A;BA*#AhBA#ABA#ABAh#ABAr#A;BA#ABAd#ABA#A_BA#ABA#AxBA#ABA#ABA#ABA#ABAp#ABA\#ABA*#A;BAB#ABA>#ABA#ABA#AOBA#A BAT#ACBA#A4BA#ABA#ABA#ABA#ABA#AiBA#ABA#AҺBA#AgBA#AZBA#AӸBA#AӶBA#ABA#AXBA#ABA #AjBA#AƺBA#ABAn#A1BA#AԸBA#ABA#AmBA#A BAґ#ABA#ABA#A BAd#AuBAJx#A-BA>w#AڶBAq#AeBAo#A9BAPd#A˹BAf]#ABAZ#ABAnS#A}BAHQ#AFBAO#A(BAvQ#ABAF#ABAH#ABAO#AJBAA#ABA.?#A>BA,3#ABA2#ABA-#AUBA+#AIBA #ABA2#AմBAp#ABA#A,BAj#AʶBA#AsBA#A!BA#ABA$"AxBA"AXBA"ABA"AQBA`"A;BA"AjBA*"ABA"ABAP"A.BA "ABBA"AܸBA"AںBA"ABA"AMBA"ABA""AGBAp"A BAt"ABA"AdBA"ABA"AٽBAX"ABAZ"AOBAة"ABA"ABA"A7BAޝ"ABA"AkBAD"A BA"ABA"AaBA"AyBAx"ABA "AiBAy"ABAp"AGBAjd"ASBAb"ABA["ABAY"AkBAG"ABAD"ABA@"ABA>"ABA^;"ABA:"ABAV4"ABA2"AyBA 0"AMBA'"ABA%"ABA#"ABAZ"ABA^"ABA "AGBA "ABA"ABA< "ABA "AwBA"ABAx!AbBA!A:BAb!ABA!ABA ABA" ABA ABA A8BAr ABA A'BA ABAB ABA\ AHBA ABA ABA< ABA ABA ABA ABA A BA ABA ABA ABA ABA ABAN ABA !AHBAr!ABA !ABAB !ABA~!ABA!ABA!AgBA!ABAf!A>BA!ABAP!AIBA!ABAl!A4BAt !A!BA !ABA!ABA!ABA!ABA&!AmBA!ABA^!ABAb ABA ABA ABA. A8BA AgBA: ABA2 ACA ACAH AFCAt ACA. A<CA4 ACAH!A( CA!AR CA!A CA !A CA !AJ CA!A CA!ACAN!AnCA!ACA !ABCA!ACAT!AVCA !APCA(!ACAL!ACA AJCAZ ACA AbCA( A7CAF ACA A4CA!A<CA!APCA* ACA" Ag CA> A!CA@ A!CA A"CA A#CA\ A$CA" Az#CAp AJ%CAz A%CA A'CA A>'CA A&CA A('CA A(CA A)CA A,CA A.CAn A/CA A0CA A1CAj A(2CA A2CA4 A)3CA A3CA Aq5CA8 A;6CA A6CA A9CA!A:CA!A;CA0!A;CA!AM>CA!A>CA!AI?CA A>CA A;CA A4;CA A=CAL Al@CA~ A@CA A1BCAT AeFCA AFCA!AGCA>!AGCAd A&JCA!AJCA!ALCA !AKCA!AKCA!ANKCA!AJCA !A[JCA&!AJCA4+!ACHCA,!AGCA5!AGCA7!AFCA"/!AqDCA~,!A DCAv-!AdCCAb5!ABCAb6!AACA<6!AACA:!A@CAjCAS!A>CACA!A>CAj!Ac?CA8!A?CA!A?CA!A?CAF"A>CA"Al?CA"Ak?CA"A\?CA"AC?CA""A=CAz$"A=CA4"A"A2CAp"A0CAh"Am1CAT"A1CAҜ"A0CA "A /CA:"A.CA"A-CA"Af1CA"A1CA"A1CA"A/CA"A /CA"A/CA."A,CAv"AV-CA"A+CA\"A*CA"A:)CAp"A(CAn"A(CA"A)CAh"A*CA"Ah+CAJ"A+CA"A*CA""A+CA"A+CA"An+CAH"A*CA"A(CA:"A&CA"A$CA"A#CA#A#CA #A$CA #A6%CA #A;)CA\#AB)CAH#A)CA#As,CA#A$-CA#AE.CA#A.CAL#A.CA#A.CA&#Am.CAr(#A-CA&+#A.CA5#A.CA:#A.CAr=#A-CA>#A+-CAzE#Ah,CAG#A,CAP#A,CAR#A-CAPS#A/CAO#A1CAQ#AT5CAS#A5CAV#A6CAT#AG6CAxU#A6CAk#A6CAm#A6CAq#A6CAo#A#8CAn#A8CAo#A9CA.w#A:CA(u#Ad;CARw#A;CA#A;CA#A39CAN#A8CA#AC;CA#ACAR#Aw?CA#A@CA#ADACA<#A#:CAN#A:CAܧ#A9CA#A7CA#A9CA>#A:CA#A;CAԩ#A=CAδ#A>CA#AH@CA#A @CA0#A{@CA#A@CAV#A?CA#AG>CA#A=CA#A=CAj#AN;CA#A:CA#A;CA#AA>CAL#A=CA$#A>CAV#AD@CAB#AACAZ#AZBCA #AACA#ABCAt#Au?CA#A=CA#A>CA#AT?CA#A@CA$A@CA$A@CA $A>CA$AV;CA $A9CA $A8CA $A7CA$A7CAJ$A7CA$An6CAR#A5CA#A4CA$AR4CA$Ao2CA$A"1CA$A0CA$A/CA#A.CAT#A.CA#A-CA$$A-CA $A*CA $A&*CA $A(CA&$A%CA$A%CAf$Az$CA$A#CAN$AU"CAp$A!CAp$AhCAP$ACA$ACA $ACA#ACAZ$A CA $ACA` $ACA $ACA\ $ACA$AeCAF$A CAp$A CA,$A CA($AG CA$A CA$$A CA%$A|CA#$ACAl%$A*CA"$ACA $ACAx$ACA$ACAb#ACA#ACA#A1CA#ACAh#ACA`#ABA#ABA#ABAP#ABA#AzBA#ABAv#ABA#AaBAF#ABAd#ABA#AmBA#ABA#A BA#AwBAV#ABA #AgBA#AWBA#AHBAķ#ABA#ABA#ABA#AhBAN#ABA#AbBA#ANBA#ABA#ALBA#ABA#ABA#A)BA#A%BAT#ABA#ABA0#A$BA0#A BA#ABA#ABA#ABA#ABA4#AUBA #A@BA#AzBAڱ#AQBA#AhBA#ABA8#A~BA#ABAD#A}BA #A/BA#ABA#ABA#AABA&#A6BA8#ABA`#ABA#AmBA#ABA#ABA#A|BA.#ABA#ABA#ABAP#A{BA#ABA#A%BA#ADBAZ#ABA8#ABA4#ABA\#ABA#ABA#ABA #ABAL#ABA`#ABA>#AGBA#ABA#AdBA*#ABA$A!BA $ABA $ABA*$ABA&$AtBA$ABA<$ABAl$ABA$ABA $ABA $AgBA $ABA$ABA#ABA$#ADBA#ABA#ABA,#ABA#A)BAj#AUBA#ABAL#A[BA#ABA>Hp3AAA0zA>BAFԢAَBAdABAHAkBAASBA<A$BAABA,AaBAABAAKBAA΍BAAkBAABA<A&BA,AfBAABAABA A BAhA҃BAA`BAAtBAd ABAAƀBA,A_BA,<An|BAdFA%|BAKA{BA8QA{BAhVA+{BAYAzBA4jAyzBA(tAxBA$AwBAA wBAA=vBAAtBA,A~pBAAoBAPA`nBAAElBA`|AkBAvAkBAiAiBA`eA^iBAgAhBA AhBA،AUgBATAfBAALfBAAeBAAbBAA bBA\Ay`BAxAt`BA0AAHBATCAHBA0PAkFBA@A(DBAIAKCBAmAABArA@BApA=@BA cAA"BA9Aa"BA((ABA$AG BAABA<ACBA\ ABA`ABAAOBAA+BAABA4ABAAsBA|AyBAAZBAABAABAABApA\BAABĂA*BAxABA{ABApABAAOBAHABAXABA̫A8BA A\ BA@A BAxAC BAxAtBAA BAAuAAAAAحAAA0AAAAAAvAAAqAQAAlAAAp^AAA0WAAATMAAAKAiAAIAAAIAAA$ACBA BAZA BAFA(BAJABA8TASBADDAOBA1ABA\#ABA ABAA?BAABA|A3BAABAABAlABAXABAAEBA8A~BAXAdBATABADA/!BAA!BAA9$BAA$BAHA %BAA%BAA*BAA+BAA=-BAAu.BAA/BA|A0BAA0BAĵA3BA4A4BAA4BAA>5BAȗA5BAA7BA~A7BAxA8BAkA9BA[A9BAUA9BAGA:BACAJ:BAAA9BA<>A8BAAC8BA0AV8BAA8BA AM8BAAf6BA\A6BAhA;6BAA6BAA5BAA3BALAh3BAA5BAA4BAA4BAA2BAA2BAA0BA(A0BAAB0BA A0BA8A0BAA/BALA.BAA-BAAR+BApAg+BApA5+BAlA*BA]Ad*BAYA)BAMAG'BAVAi%BA@<A$BA\7A$BA)A$BA$AH%BAA'BAAz(BA A(BAA!(BA$A&BAA$BAA-$BAPA%BAPAN&BAAv'BAA/(BADA/BAA>0BA8A3BAtA65BAA5BAA6BAA4BAAD4BAA[4BArAq5BAmA5BADfA6BAgA9BAbA:BAeA,;BA`ABAPSAw@BAMAN@BATACBAmAQDBAoAEBAGAHBAt<A{JBA :A(KBAT8AKBA5ALBAX1ALBA(AMBAAMBA AMBA@ANBAA MBA<AKBA|AJBAA9HBAAOFBAADBAlAABAAABBATACBAADBAAxDBA$ADBA$AEBAPABBAȏA'ABA{A?BA{A/=BApmA>BAgA?BAxbA?BASA@BAtNA$ABANACBA JA6CBA0FABBA)ABBA*ABBAx&AMCBAAlDBA ACBAADBAAABAAABAAkCBAABBAAABApA?BAئA=?BA0A;BAABAAo=BA`ABADXAM>BACABBAp3ACBA8AREBAH9AFBArAMBAuAMBA|AYNBAAQBAARSBA@AVBAA)WBAAmWBAطAFYBAlA\BAA&]BAA-]BAAx^BATAv_BAxAcBAA9dBAAdBAXAPfBA̶A[hBATAjBAAiBAA+kBADAlBA A>mBA(AmBAAnBA0AoBA AxpBAAqBA4AsBALsAruBAgAuBA`dA$uBAXAtBARA>uBANAxBAx[AzBApmAzBA4|AI{BAA{BA|ABAԝABAABA A9BAA)BAABAABAAUBA<ABA@ABA|AOBA ABAABAABA ABAAŒBA$9A‹BA,DA?BACABAAAGBAXABAiA BA,nABAqABAuABAPABAXABAABApA]BAABAABA<A0BAABA@A9BAABA|A`BAx A6BAAԑBA7A BA@A]BA?ABAPAUBAUABA`WA{BAZABAhAxBAPnA5BAABAԅABA8A^BAABA}ABAܖABAИABAA BAAtBAA5BAXAԋBA,ABALA>BA|A*BAlABA,ADBAABAABAhABAA=BAA!BAABAABA,!ABA/A BA7AъBA;A@BAAABAVABA]ABAvALBAzAƅBAĎABAAbBAABAABAlABA\ABAdABAANBAA1BA`A͉BAAcBAdA͉BA$AgBAABAdABALABA4AbBAABAA{BA ABA ABAAؑBA AzBA8DAΔBAbABAlAЖBAlAhBApABA sAUBAuA[BAAMBAAޝBAHABAtABA4AHBAAŠBAAWBAAȞBAtA'BAXABA4ABAA۟BAXAZBAAtBADABA,AQBAAtBA ABAABAAlBAA.BAx,AEBA$AƐBA $A.BA.ABAd4A͏BA6ABA4HATBADaAtBATwAȏBA@}AϏBA@AdBAԢAَBA? ACA~*$AW[DA|8#ACA6#ACA2#ACA4#A6CA>#ACA=#ACA:=#AiCA.?#ACAD#ACAH#A(CAG#AUCAF#ACAF#ACA:H#ACAF#ACA>#A]CA6#AژCAR5#ApCA+#ACA(#AɛCA#AɛCA"#ABCA#ACA#ACA##ACA%#A[CA##AےCA:#ACA#ACAP#AKCA&#ACAb #ACA #A*CA#ACA0#ACA"AɔCA"AXCA "ACAF"ACA&"ACA0"ACA"ACA"A.CA"AfCA"ACAZ"AݘCA"ATCA"AgCA"ACAh"ACAl"ACA"A?CAH"AyCA6"AɝCA""AHCA"ACA"AΝCA"A#CAX"ACA"A:CAP"AӞCA"AΞCA"A!CA"ACAؙ"A@CAb"A՜CAґ"ACA"A#CA"ACA!A>CA!AƬCA!ACA!AWCA!ACA!A+CA`!ACA!ACA>!AlCAr!ACAԹ!ACA!ACA>!A=CA!ACA!AWCA!A޶CA!AطCA!A˷CAܮ!ACĄ!ACAڦ!A)CAb!ACAZ!ACA!ACA!ACA~!AACA!ACAp}!A~CA{!AKCAw!ACA~u!ACA&o!AsCA}!ACA!A}CA!A.CAu!AmCA*s!A@CAg!AUCA[!ACAd[!ACArX!ACAU!ACAxN!ACAK!A"CAA!ACAdA!ACAd>!A$CA0!ACA.!A CAJ'!ACA$!ACA4 !ACAZ!ACAt!A$CA !A(CAn!ACA A,CA$ ACA A)CA ADCA A%CA ArCA ACA ACA A[CA ACA ACA` A7CA ADCA ACA: AoCAL ACAҼ A>CAʵ AsCAت ACA ACA ACA AyCA AkCAn AuCAܧ A5CA& ACAx ACA AOCA AwCAr ACA A CA AaCA ACA> ACA APCAf ACA ACA ACA ACA ACAV A`CAh ACA ACA\ AoCAD AWCAX A CA ADAL ADA\ A* DA A DAJ ADA` A8DA> ADAR A]DA ADA ADA\ ADA ADA AiDAd ADA AXDAʴ AO DA( A)#DA A#DAn AE'DA. Av/DA A/DA A0DA| A1DA A2DA A5DA A5DA A:DA, A=DAv A[>DA A>DA AT?DA~ A?DA ABDA A+GDA AGDAR A+IDA4 AIDA AOLDA !AMDA!A9PDA4!AQDA7!AQDA=!AhRDA B!ARDAM!A]TDAY!ATDATc!AUDA6f!A:VDAv!AeWDA!AWDA!AWDAВ!AXDA!AYYDA!AZDAʸ!A=[DA!AW[DA!AZDA !AWDA.!A)WDA!AuVDAR!AYUDA!ASDA6!AeSDA!ARDA!AQDAV!AsNDA^!AMDA!A3KDA!AZGDAV!AFDA!AEDA!A>DA!A=DA!A=DA6"A#9DA"A7DA"A7DA"Ab6DAZ"Ab4DA* "A93DAp "A2DAT "AE1DA "A0DA"Au0DA"A0DA$"A.DA"A-DAP "A ,DAf""A+DA,"A*DA4"Am+DA4"A*DA5"AL)DA`@"A +DANB"A+DAE"Ay*DAQ"A#*DA\"A(DA_"A(DAbd"A*DATh"A)DA$k"Ag)DAr"A(DAt"A(DAv"A&'DAx"A'DAh"A~$DA~^"A#DAR"Aa!DABQ"A2DA>W"AMDAjW"ADAX"ApDA]"ADA`"ADA`"ADAj"A6DAx`"ADAt^"A-DAa"ADAb"ADAf"AhDAs"A&DAw"A1DAz"ADA{"ADA~"ADA`"ADA*"ADA̎"AdDA~"A DA4"A* DAb"A DA&"A DA֭"A DA "A DA"A DA8"A% DA"ADAB"ADA"ADA"A DA"A= DA""A DAT"A[ DA"A DA"A DA"ADAj"ADA"ADA.#A[DA6 #AQ DAl#A DA#A DA#A4 DA*##AD DA`'#ADA3#A DA5#AeDA4#ADAF:#A DA<#A, DAG#AF DAL#AA DAI#A DA9#A DA9#ADAN?#ADA8N#ADAdS#AkDA&U#A DA&Z#ADA[#AKDA6a#A-DAg#ADAXi#AZDA@u#AY DAv#A DAt#AQ DAr#ADAo#ADA8g#ADAa#AQDA`#ADA]#AlDAT#ADAL#ACArJ#ACAzQ#AICA&P#A=CAR#ACAV#ArCAX#ALCA^#ACAj#AGCAm#AoCAxp#ACA8s#ACAN|#ACA~#ACA#ApCA#AkCAJ#ACA}#ACAx~#ACA`#AyCA #ACAl#ACA#A:CA#ACAV#ACA#ACA#ACAR#ACA`#ACAԼ#ACA|#AGCA#ACA#AACA#ACA#A CA#AxCA#A}CA#ACA#ACA#ACA#AwCA~#ACA#A[CA#ACA#AUCAZ#ACA#ACAR#ACAJ#AjCA#ACAX#A{CA#A6CA#ACAJ#A1CA<#ACA(#A?CA@#ACAl#ACA#A$CA#A{CA #AICA6#ACA #ACA#A2CAȷ#ACAt#A{CA#ACA#ACA#ABCA#AqCA #ACA#ACA#ACA#ACA#AtCA#ACA&#ACA#ACAJ#A CA#A2CA#ACA~#AtCA(#ACA#AaCAd#ACA#ACA#AeCA#A CA#ACAR#A$CAV#ACA#A1CAV#A CAR#A5CA#A)CA#AQCA#A;CA#AߺCAP#AzCA$#ACAX#ACA#A7CA#ACA$#ACA#ACA*#AԻCA\#AŻCA#AXCA#AICA#ACA$ACA $ACA$ArCA$AɹCA$A^CA6$ACA$AQCA$ArCA2#$A5CA'$ACAF*$ACA~*$ACA($ACA&$ACA%$AtCA$AmCA$ApCA@ $A̬CA $A CA$ACA$A}CAz$ACA $ACA$ABCA$ACAT$A CA $AФCA$ACA#ACAP$A^CA.$ACAt $A,CAl$ACAX$AYCA $ACAv#AÛCA(#A"CA#ACA:#ACA#A0CAv#ArCAD$A|CAJ$A|CA$A˔CA,#ALCA#ACA8#ACAN#ACA #ACA#A6CAJ#ACAb#ACA#A[CA:#ACA#ACAv#ACA#ACA#ACAJ#ACA#ACA<#A\CA#ACA#A1CA#ApCA#ACAܿ#ACA#ACCAj#ACA#ACA#AjCA#ACA#ACA#ACA#AvCA#ANJCA֞#AQCA#A CA#ACA#A0CA4#AcCA#A6CA}#AJCAj#ACAJ{#ACAr#ACAnr#ACAq#ACAt#ACAz#ACA~#A CArw#AqCA:u#ACAr#ACAq#AaCA r#A]CA2o#AaCALh#A CAd#ACAb#ACAY#AbCA4W#ACAU#AWCAP#ACA(P#A#AۥCAv#AoCA#A%CA#AXCA`#ACA#ACAD#ApCA#ACAF#ACA#ACA#ACA#A9CA@(n"A?A>&A.S@AB"AJ?A"ARL?A8"AKT?AZ"AhT?Af"AU?A"AT?Aһ"AJZ?Aȹ"Aj\?Aи"A~]?A("AY`?A"Ae?A\"A5h?A2"Aj?Ad"A2o?AR"ARp?Ah"As?A"At?A޷"At?A"Av?A"AY{?A~"A?A"Az?A"A>?A"A?A"A;?A&"A?A""A?A"A?A"A?A"A&?A"A ?A"AC?A"A?Aػ"Ad?Aܻ"A$?A"A?At"A?A"A?A"Aʱ?A"An?A"A\?A"A?A"A?Ah"A?A̞"Am?AZ"A?AȔ"A?Aȏ"A?Å"A?Ad"A?AΈ"A?Ao"A?An"A|?ALw"A?A"A?A܉"A?A"A?A "A?A$"AJ?AX"A]?A"A1?AX"A?A"A=?A"A?A"A?A "A?A"Aq?A"AF@A"A@Aй"A@A"A{@A"A@A"A]@A."A' @AB"A @A"A @A"A@A6"A@A^"A@AX"A@A,"A@A"A^@A "A@A "Aa@A"Al@AX"A@A"A@A"A@A"A!@Az"Ak"@A\"A"@A"Ay%@AT"A+@A"A.@A "A/@A"A0@A"A3@A"A5@A2"A6@A\"A|7@A"Aa9@A"A9@A"AQ:@A("AU7@A^"A6@A"A]7@A"A7@AL"AX6@A"A5@A#A85@A #A5@Ah#A6@A#A99@A<#A9@A#A<@A#A=@A#A@@A!#AyA@AF*#AB@A\,#AB@A|6#AlB@A8#AB@AV8#A0D@A<#AE@A7#A^I@A<#A5K@A6>#AK@AF#AK@AN#AH@AT#A%I@AB]#A$G@A^#AF@AXj#AF@A>m#AF@A^q#AG@ANr#AJ@At#A1K@Apq#AM@ABr#A5O@AHr#AO@A#AR@A#A.S@At#AQ@A#AtR@Ab#AQ@A#AQ@Aֻ#AP@A#A P@A~#AM@A#A"L@A#AK@Aܶ#AK@A#AJ@A#AI@A#AG@AR#AD@Aڮ#A#C@Aީ#APB@Ap#AA@A#AVA@A#AL@@A#A@@A#A68@A#A7@A2#A{6@A#A6@A#A6@A#A`6@A#A4@A#A2@AR#A1@A#A2@Ax#A2@A#A3@A#A1@A0$A4@A$A0@A$AI.@AV$A-@A8"$Ax-@A$$Ay-@A&$A>-@A'$A,@A*$Af,@A-$AV+@A J$A5*@AL$AY*@AL$A+@Ab$A9,@Af$A*@Apj$AH+@Am$A+@Ak$A*@Ao$A)@Ar$A)@Ay$A)@A{$AO*@A:$A)@Ad$Ae*@A$A*@AJ$Ac*@A8$Af)@A$A)@A2$A(@AΩ$A'@A*$Am&@At$A%@A$A+&@A¿$A(@A$AH*@A$A*@A$A},@A$A+@Ax$A)@Aj$A{)@A$AC*@A$AP)@A $A(@A$Ac'@A$A/%@A.$A$@A$A$@A~$A"@A$A6@A$A}@A2$A@AR%A@A%A@A%A @A|&%A%A @AB%A!@AD%A!@AJ%A @AS%A@AFT%A=@A[%AF@A^%A @A_%A`@ADd%AW@Ar%Aq@At%A|@A{%Ab@A}%A@A~%A @A8%A@A%A@A%A @A%AJ @AΙ%A @Ar%Ar @AZ%A @A`%A@AD%Ai@A֨%A @A0%A'@A%A@A%AQ@A%A?A%A?A֚%A.?Al%A}?Ar%A?Av%Aw?A>%A?A%A?A%A7?A%A ?A@%A?A%A?AJ%A?A%A"?Aܝ%A?A%A ?A%A'?Aj%A?AV%AN?A %A?A %A?A%A?A%A?A%AO?A%AF?A@%AB?A%A{?At%A?A%A?A %AŬ?Al%Al?A%AE?A%AG?A%A?A%AC?A%A?Ap%A?A%A?A%Aϗ?A%A?A%A?A%AS?Ar%A?A(%A?AD &A?A &AY?Ab&A?Ax&A?A&Aԃ?A!&A}?A"&AK?A\$&A}?A~*&Az?A%&A5u?A-&Anh?A 0&Ad?A1&Ac?A4&A"c?A6&Ab?A=&Av`?AN=&A]?A>&A\?Aj=&AP[?A`6&AX?A3&A&V?A3&AT?Al7&AP?AN5&A%AB3?A9%A&2?A4%A3?A$%A5?A"%A6?AT%A_9?A%A@?A%A??Aj %AC=?A%A7?A*$A4?AD$A4?At$A4?A$A4?A$A2?Ax$A14?A$A5?A$A;4?A$Aw5?A$A4?A$A8?A$A9?A$A=?AƼ$A=?A$A&=?Ax$A2?AЬ$AE3?A$A%6?A,$A;?A$A;A A;A؛A;AA];AԉA$;A4sAt;A4jA;AlA;A]A;AXA;ASA;AOA;AIA ;A@2A;A3A`;A(A;ANA=;ARA;A^A;AaAŶ;AfA;ApjAĶ;A{A;AAij;ADA;AAն;AحA;AвA*;A0A;AԺA;AA;AA;AA;AA;A4A;AA;A A;A Aj;A|A;A*A!;A.A;A\Ap;AhA+;A`A;AA9;AA;AA;AA;AhA;AA=;AAW;AAD;AA;AA;AAڊ;AdA!;AA;AA3;AA;AdAV;AA@;A\A;ADA>;ALA;AA|;AAy;At|Aq;AHMAg;A4HAf;AdEAe;At4A`;A1A_;Al2Af_;A BAS];ALMAY;A@DAX;A$?AVW;ANAV;AxhAW;AmA4X;AoA]U;AzAT;A@AzO;AĖA"N;AAwN;AAN;A AjJ;AAE;A AE;A4AA;AA@;AA8;AAX7;A`A5;AAo5;AA8;AHA+7;AԤA5;AA+;AHA);APAy&;A4A0&;A8AW';AHA(;ApA,;AA-;AdA.;AA%.;AA/;AAP/;AA/;AA0;AAm3;AA4;AA;4;AA4;AA/;A A.;A A.;A( Ac+;A A *;AA$';A0A)&;AA";A|AT!;A A ;APA( ;A Ag;A4Ak;AH A;AA5;AA;AX"A;A\#AX;A\,AD;A)A;A($Ax;AA ;A A ;A\A ;ATA;AA;A0A;AA ;AA6;AA;AAD:AA:AA:AA:ApA:AA:A,A]:AA:AhAX:AA+:AA:A0AD:AA:APA:AA|:A|A:AБAI:A8|A:AXvA:ApA:A|ZA#:ATAK:AA:AH=A:A85A:A3A:AX<A%:A=AĽ:A`9Af:A:A:A\;A:A<-Ag:A\SA:ATA$:AMAɣ:AGAأ:A9A/:A A1:AAC:A$A(:AA,:AAG:A4Aͭ:AA:AAI:AA:AbAc:A=A;:Ah?A:A7Ak:AA:AA:AA:AAյ:ATA:A0AS:AA:A4}A:A qA:Ax[AZ:AOA:AAA:A1A:A%Aϥ:AA:A A:AA:AA:AA@:AA`:AA:AA:AlA:A\A:A]A:A[A):A`<A`:A-A:A/Aq:A'A>:At"A:AA:AAn:AĿA:A\A:AXA|:A̷A:AtA:AA:AA:AA:AiAg:A_A:A\bAV:AhAu:A^Ap:A _A:ATA;ApRA| ;AdXA ;Aj!A2/:Ay!A.:A|!A_/:A~!A\1:Az!A3:Ajx!A3:Ajq!A<6:Avn!A;:Ar!A6?:Au!Am?:As!A@:A2p!AC:A@j!AC:Ah!AA:A^!A;:A\!A*9:AB[!A2:A\!A1:A$AHr:Ah$Ap:A$Ao:A$As]:A$AW:A$AV:A($A#V:A+$AU:Af7$AQ:A@:$A/Q:A?$AQ:AxP$AN:AQ$A4M:A:L$AI:AFL$A'H:AP$ALF:ADP$AD:AM$ANB:AO$A~?:A]$AL=:Alb$A6:AB`$A5:A8e$A4:ANe$A(1:Al$Ae,:APk$A*:AJ$A*:AH$A,:AzF$A#+:A@$A *:A;$A&:A/$A':A$A4:A$AJ;:A$AM;:AP$AV8:An#A::Ad#A;:AN#A::AV#A>8:AZ#A/8:A#A>:A#A=:A#AL;:A#A::A#A3:A#AR5:A#A4:A#A7:A#A2:A`#A^3:A#A3:Aē#Af4:A̍#A-:A@#A*:A:y#AP#:Av#A":AXh#A:A`#A":AD^#Ab%:A8[#A%:AX#A%:ApK#A_$:A>I#Ai$:AlF#A$:AP4#A-:A)#A:A&#Ac:A$#A}:A&#A:A#A:A#A:Az!#A :A)#A:A*#A :A&#A:A#A:A"AK:Av"A:A"A:A"A:AR"AZ:A>"A9A"As9A|"AZ9A"AN:A<"A0:A"A:A"A:A\"A:A"A:A"A :A"Ag:A"A:A"A:A"n"AR:A.\"A:AV"A:AT"A :A8I"A!:AC"A%:A>"A&:A4"A8$:A>"A*:A"AG*:A8"A&:A"A%:Av!A!:A!Au$:A!A!:AR!A :A!A:A!A:A~!A:A!A[:A!A:A!A:A!A :Aʧ!A :A!A`:Af!A:Az~!Ah:A8o!A :Ab!AT:AZ!A:AZ!An#:A[!A$:AQ!A':AQ!A-:AJN!At1:AK!A2:AA!A.:A9!A/:AR6!A[0:A-!A]0:A'!AV5:A!A 7:A!Ak6:A!A::A!AI<:A2 !A>:An A?:AX AbA:A& A@:A A9D:A AC:A AG:A8 AUO:A AT:Ap A-\:A A?a:A Ab:A Asb:Aj Ae:A Aaf:A@ Ae:A!Ah:Ad!Ai:A!Aj:A !Ah:A`&!Ai:A%!Al:A>.!Am:A2!Ao:A2!ADt:A 6!Av:A$7!Ax:A=!Au:AF!AKu:AL!As:AQ!ABu:AdW!Ax:Af!Ay:A h!Az:Ag!Ao}:Afq!AÅ:Av!A:Ax!A:A !A:A.!ALj:A!A:A&!Ak:A!A:A!AI:A֦!A:A̻!A:A!A:AH!A:A,!AM:A!A=:A!A:A!A{:Al!AW:Av!A):A!A:A!A:A!Aʇ:A.!A:A!A:A"AÐ:A"A:A8"A:A:!"A:Ab!"A:A:("A:A0"A:AC"A:AtF"AA:AS"A:A["A:A\"Ap:AbZ"Aڱ:AY"AW:A@Y"Aq:AlX"A:AY"A:AW"A:AS"A:AdT"Aſ:A@T"AF:A2T"A:A@Q"A:AL"AW:AL"A3:AjF"AK:AH"A:A0O"A:Ab"A :Ale"Ab:Al"AN:Av"A:Ax"AO:Az"AP:Av"A:A"A:A"AQ:A^"A5:Aп"A:A"A:A"A :A"Ap:A"A:An"AU:Ap"A2:A2"A:A#A:A#A :AP!#Al:A!#Ab:A,#A:AI#A~:AR#A :ARY#A:AZ#A:A_#Az:Ao#A:AJ{#A<:AN~#A{:A#AD:A#Ag:At#AA:AL#A:AV#A:AD#A~:A#A:A#A:A0#A:A#A1:Az#A:A#AH:A$A:A$A:Ad$AN:A$Aǿ:A$A:A$A:A$AO:A$Aۧ:A\$Aw:A$A:A$As:A$AHr:AD (,A(BAy/ABA,ABA,ABA,ABAb,ABAp,A;BAp,ABA,ABA(,A=BA,ABA,ABAz,ABA,ABA,A=BA,ABA,ABAV,A;BAX,AJBA,,ABA-AȼBA-ABA-AMBA-A BAR-APBA"-ANBA0$-ABA)-AպBA0-ABA2-ABA4-ACBA*B-ABAb-ABA(a-ABAa-A.BAa-ABARj-A³BAk-ABAt-AtBADw-ABAz-A1BAl-ARBAp-AVBAІ-ABAȋ-ABAH-ABA-ADBA(-AABA(-ABAҢ-ABA-ABA0-ABA-ABA-AfBAj-ABA-AϲBA-AŲBA(-ABA-ABA-ABA-ABA.AcBA.AbBAB.ABA .A=BA .ABA .A=BA$ .AٽBA".A=BA.AIBA.ABA.ABA.AwBA.A&BA#.ABA!.ABA@7.ArBAA.AvBAD.ABAlC.A BAQ.ABAZW.ABAX.ABA[.ABA@l.ABAfr.A#BA@x.ArBAJ~.ABA.ABA.ABA.ABA.ABA.ABA.ABAV.AmBA.A&BAb.ABA(.AnBA.AlBA.ALBA .ABA .ABA.AIBA/A+BA</AnBA&/ABA")/ABA>/ABATA/A(BAI/ABAvR/ABABA.A?;BA.A7BAƒ.A 7BA.A_6BA\.AK2BA:.A1BAz.AG/BAj.A-BAt.AC+BAn.A)BAj.ABA~i.ABAh.ABBAc.ABAV.ABAU.A$BAVT.ABAQ.ABAXH.A BA@.ABAA.AwBAr7.ABAL6.A8BA\3.A(BA.ARBA.ABA.ABAX.A)BA.ABAL.ABAn-A}BA-ABA-AK BA-Ae BA-A BAj-ABA-ABA`-AEBAR-ABA-ABA6-ABA-ABA-ABA-ABA-ABA-AfBA-ABAp-ABA-ABA-ANBAz-ABA-ABA-A%BAb-ABA -ABAH-ABA-A!BA6-A9#BA8-A#BA-A$BA-Ak$BA-A%BA|-A/&BAs-A&BAp-A4&BAVk-A%BA`[-A&BAR-A&BAO-A&BAN-A['BAJ-AI)BAD-A)BAC-Ar*BAE-A,BAt=-AP-BA;-A,BAp1-A)+BA/-A*BA--A*BA*-A*BA-A+BA-A$-BA-AM-BA-A.BA -Aq0BAt -A1BA-A3BAP-A4BA -A4BA-A6BAr-A7BA -A/8BA -A8BA -AQ9BA-A?:BA -A;BAP-AE>BAT-A>BAV-ALABA-AABA-ABBA|-ABBA-ADBA-ABIBA-AKBA-AKBA -ALBA -A.MBA-AOBAP -A0PBA -AOBA-AOBA-A RBA6-ARBA-A RBA-AyQBA-AQBA,A=RBA,ASBA,ASBA$,AVBA-AHUBA -AWBAR!-A`UBA)-AUBA/-AUBA2-AzUBA2-AUBA4-ASVBA*=-AWBAj>-A^XBA@-AeZBAD-A8[BAjJ-A1[BAVO-A[BA^Z-A#`BA`-AbBA8b-AcBAd-AcBA&g-A@dBAb-A;eBAk-AkkBAi-AZmBAr-A*pBAy-AusBA2w-AjsBAf-AsBAc-AsBA`-AuBA2^-AuBAZV-ANyBAT-AyBA_-A:{BA`-A{BARb-A~BAk-A‚BAm-ALBAx-A BAk-A[-A8BA|Y-AڐBAjW-A@BABR-ABAO-AkBAV-A+BABY-AlBAW-AǕBAV-A+BAT-ABAO-ABAhD-ABBA"?-ABAD@-AoBA@-A(BA>-A~BA;-ABA6-ABA.4-AݖBA--A=BA41-AJBA +-ABA(-AMBA %-ABA-ABAh-A BA$-A3BA -ABA` -ABA -AiBAR -ABAT -AlBA -ABA -ABA&-ABA,A;BA*,ABAP,ABA,AΌBA,A'BA(,ABA6,ABA,A2BA,AjBA,ABA ,AĒBAp,A_BA,ABA,ABA,AaBA&,ABA>,ABA,AߙBA,,A BA.,A!BA,A[BA8,ABA,ABA,ABA,ABA,ABA,AQBA,ABA,ABA@,AѢBA8,AТBAR,ABA,A-BAl,ABA,AèBA,ABA,ABAx,AݫBAz,A+BA,ABAƩ,ABBAV,ABA,ABA|,AخBAd,AzBA,A#BA,AvBAn,AϱBA ,AzBA.,AXBAL,A1BAB,A2BA6,A:BA ,ABA,ABAJ,ABAJ,A޺BA,AȼBA,AYBAJ,ABA,A-BA,ABAE ,A"fAAV].A&BA:R5.ANAA;.AJAA6.A7AA4.AAA*.A^AA).AAAr(.AkAA-.AAA/.AXAA1.AœAA9.AAAJ.AAA|L.AAAM.A`AA~Q.AAAR].AAAV].AۏAAY.A AAT.A AARN.AAATJ.AAAI.AlAAJG.A AAD.AAA4.AAA..AAA,.A*AA).AoAAT,.AAA9.AAA<.AAA;.AAAz6.A}AA0.AE}AA,.A}AA*.Ac~AA*.A}AA1.A |AAf1.AyAA%.AuAAB".AvuAAX.AuAAB.AvAAz.AwAA.AlxAAT.AxAA`-AtAA$.A"uAA.AsAA(.AqAA.AQpAA.AmAA-AckAA-AjAA-AiAA-A1jAA2-AgkAA<-A]kAA-AjAAƼ-AjAA-AfAA̛-A"fAA-A6fAA-AfAA`-AAhAA|-AiAAД-AiAA-A-jAA-A@iAAx-AhAAp-AXjAAn-AjAAp-AmAAq-AmAAq-AoAAu-AMsAA{-AtAA~-A8uAA{-AuAAg-AtAA:S-AwAAV-A6xAAY-A{AAW-Ai|AA2V-A}AARU-A}AAR-A~AAQ-AAAO-AjAAJ-AAAJG-AAAB-AGAA6C-AˁAAB-A܂AA(C-AAA>?-AkAAb:-AAAV9-AAA6-AAA5-AaAA45-AAA4-A#AA/-AAA--ALAAj--ALAA-A7AA-AvAA-AAA -AAA> -A AA -A]AA-A׊AAd-A͋AA-A:AA-AAAH-A#AA-AAA\-AAAF-AAA-AuAA -A͔AA> -AyAA -A AAP-AAA-A(AA-AϖAA:-A"AA-AAAT-AAA-AAA*-AAA-AKAA0-A3AA-ALAA-AʟAA^ -AAA@ -AAAJ-AAA-AAA -AAA@ -AAA-A7AA-AרAA-A!AA2-AAA:,A}AAD,AAA,AAA,AdAA&,AAAh,AAAT,AAAv,AAAV,AMAA*,AAA,AAA:,AAAx,AYAA,A߷AAV,AAA,AAA,AAAz,AAAо,AoAAn,AڿAA,AvAA@,AAA ,A"AA,AAA\,AzAA,AAA,AAA ,AAAr,AhAA,AAA,AAAt,AAA*,A)AA,AAAj,AAA ,AAA,A"AAb,AAA,AIAAR,AAAB,AxAAN,AaAAB,AAA,AAA,A`AA,AiAA,A~AA,AwAAZ,AAAt,AAAv,AAA,AAA ,AAA,AAA,AAA$,A@AA-AAAz-AAAx-ALAA-AAA-AAAD-A[AA&-AAA,-ALBA-ABA@-AWBA-A7BAB-ABA -A4 BA-A BA -A BA!-A` BA-A BA%-ABA*-ABA.-ABAf--AjBA5-A9BAp8-AxBA:-ABA;-A.BA<-ABA,<-A<BAC-A!BAA-A#BAC-A$BAM-A$BAO-A&BAR-A&BA`[-A&BAVk-A%BAp-A4&BAs-A&BA|-A/&BA-A%BA-Ak$BA-A$BA8-A#BA6-A9#BA-A!BAH-ABA -ABAb-ABA-A%BA-ABAz-ABA-ANBA-ABAp-ABA-ABA-AfBA-ABA-ABA-ABA-ABA6-ABA-ABAR-ABA`-AEBA-ABAj-ABA-A BA-Ae BA-AK BA-ABAn-A}BAL.ABA.ABAX.A)BA.ABA.ABA.ARBA\3.A(BAL6.A8BA6.ABA@8.AAAr8.A\AA6.A>AAz5.AAA3.APAAF7.AAA5.AAA>:.AAA<<.AOAAjM.AAA.O.AHAAX.AAAP.AAA$O.AAAHM.AtAA*D.AAAHC.AoAAC.AAAJF.AAAE.AAAnC.AAAz8.AAA7.AAAR8.AAA|=.AAA=.AAAz5.AAA4.AQAA63.AAA..AAA/.A|AA0.AdzAA44.AAAR5.ANAAF  &AU?A8)Ab@A4&A#@A&Ao#@A&A"@A &A#@A&A$@A&A&@A&A&@A(&AD'@A&Aj)@AT&A)@A&Av*@A&A*@Ap&A*@A&A,@A2&AA-@A&A/@A&A!0@A&A0@A&Ai1@Ad&A3@A &A4@A&A6@A&AT7@A&AY8@A"&A7;@A'A;@Al'At<@A'A&=@A'A5=@A'A?@A!'A?@A#'AK?@A1'A=@Az7'A<@A:'AB@@AZ?'A2A@AC'AC@ApA'AUD@A4'ArF@AR2'AF@A/'AF@A-'A^G@A|)'A\H@A)'AI@AP9'A|K@A~8'ASL@AH7'AL@A*/'AN@A#'AN@A"'A;P@A%'AR@An#'AT@A!'AT@Af#'AU@A%'AX@A ('A#Y@A''AJZ@A''AZ@A('A]@A-'A^@A,'A_@A/'Ar_@A8'A_@Ax9'A"a@A @'A_@A*A'A_@AbI'A_@AN'A]_@AW'AU]@A['A]@A^'A*^@A g'ATZ@Ah'AY@A'AZ@A'AZ[@AĂ'Aa]@A'A'_@A`'A_@A'A_@A'A^@A'A$\@A'AZ@AD'AQZ@A"'AZ@A'AY@AF'A\@AP'A]@AR'A_@Aڶ'A'a@Aڸ'Aa@A'A*b@Ax'A`@Ar'Ab@A'A)b@A'Aa@A6'Ax`@A'Ai^@A'Af^@AH'A[@A'A([@A'AZ@A'Az[@AZ'A9Z@A'A|Z@A'AVX@A'AV@AF'AW@Ar'AV@A'AU@AH'A[S@A'AR@A'ACR@A('AO@A'AN@AR'AL@Ad'AeK@A'AJ@Av'AH@A'AQG@A(AF@A(AG@A( (AG@Az(A]G@AT(AKG@A(A6F@A(AE@A(AD@A(AC@AZ(AC@A(A:?@A<(A>@A(Ad=@A(A<@A(Aq:@A (A9@AP (A8@A(A 7@AJ(A6@A(A-6@A2(A4@Ad(A2@A(A1@A(A(0@A (A/@A(A#.@A(A-@AH'A+@AB(Ar(@A(A'@A(A&@A'A2%@A(A_"@A(A!@A(Aj!@A(A @AN(A(@A(A@A(A@A(A@A(A@A4'A@Ap'A@A\'AJ@A"(A7@A (A@AJ (A@A(A@Ap(Av@A&(A @Az(Ai@A((A@A6*(A_@A*(A @AR'(A @A((A @Af?(A@A2B(Aa@AD(A* @AO(A_ @AP(A @AP(AL @AS(A @AU(A! @AW(A)@A&X(Ak@Ad(AU@Ag(AD@A@c(AK@Ab(A@Al(A@An(A?Ap(A?A`o(AF?A:o(A?Ar(AG?A`(A?A<(A?A(A?A(A1?AД(A?Ad(A?AΞ(A:?AZ(A?A:(A?A(A?AH(A?A(AN?A(A?A(A?A(A4?A(AS?A(Ae?AL(A?A(A(?Ab(A?A(A?A(A?A(A_?A(A?A(A"?A(Ap?A(A?A(A?A(A!?A(A?A$(A?A (A?A*(A?A(A ?A)A?A8)A4?A)A?AD)AD?A4)AG?A (A?A6(A?AT(AA?AV(A?A(AX?A(A?A(A^?A(A ?A(A5?A(AA?Aּ(A?A((A?A(A?AȾ(A?A(A?Aʧ(AG?Aԟ(At?A(A@?Ar(A?A(A?A(A?A(A?A(A?A}(A?A6z(A>?Aq(A?Ad(A?AXb(A?AB^(A?AQ(A?AR(A?AP(A?A$K(AE?AH(A?A>(Aw?A3(A(?A0(A͏?AZ(AԎ?A* (A\?A2(A?A6(AІ?A7(A?A9(A?A:(A?A,B(A}?AD(A|?AU(Az?A:[(A(A'g?Af8(Adb?A1(A+`?A/(A_?A2-(A_?AF$(A[?Af$(AvZ?Ah%(AV?AZ$(AhU?A4"(AU?A(AU?A(A|U?A(AV?Aj (A\?A. (AF]?An (Ab?A(Ae?A.'Ad?A'A^?A'A@_?A\'A_?AZ'A]?A 'A<`?A'Ab?A6'Aa?A'Azf?A'Ag?A'At?A'Ax?A\'Auz?A'Az?A$'A{?A('A?A'A#?Ad'A΅?A'A{?A'AG?A'A?A'A~?A'A?A'Az?AN'Az?A'Ay?Ah'Azz?A'A|?A'A!?A¼'A+?AH'Au?A'A݅?A'A݅?A'A?A'A?A<'AO?A'A??An'A?A'Ah?A$'A"?A'A‡?Ay'Aև?ARy'A?Av'A?Ab'A_?Ac'A?Af'AQ?Ate'Ar?AD^'A?AW'A?AQ'AY?A|O'AЛ?A4F'A?AC'A?A>'A?A='A0?A\;'A?A~3'A8?Ar5'A?AB3'A?Af0'A?A"'A?A$'A?A"'Aô?A&'A2?A$'A?A!'A?AD&'A?A''A?A2-'A}?A0'A?A7'A?A6'A?A0'A>?A-'A?A%'A?A'AE?A'A?Ad'A?A'AU?A&'A?A%'A?A*'A?A4-'A?AJ('A;?A)'Ay?A%'Af?AJ('A?A)'Aq?A.'A?A+'A?AX)'A?A-'A?A0'A@A/'A@A,'A@A'A@A'A_@A'A @A` 'A:@A'A@A'A' @A>'A @An'A @A'A @A 'A@A'A@A8 'AD@A<'A:@A\&Ar@A&A@A&A@Al&A@Ah&A@A^&Ay@A0&A@At&A@A&A8@A &A@A&&A@AD&Ax@Ab&A:@AL&A+@A &A@A&A@A&A@A&A @A&A @AZ&Ae!@A&A#@A4&A#@AG`G)A5AAl,AAA2f},An{AA*{,A{AAv,A,|AAt,Ap|AAp,A}AAtn,A~AATk,ASAAb,AAA`,AAA_,ABAAp_,A;~AA\,AS~AANX,ARAAJ,AAAAK,AhAAL,AAA>,A!AA;,AAA7,AAA@@,AAA8B,A~AA@,AR~AA4<,At|AA9,A_{AA7,AzAAN6,AzAA>4,AyAA4*,AxAA$,AxAA ",AxAAj,A?yAA,AyAA.,A5zAA,A{AA0,AH{AA,AzAA$,AnxAAp,AxAA,AVwAAZ,AvAA,AsAA ,ASqAAd ,ApAAt ,ApAA,ApAA,AhoAA+A pAA+ArAAt+AuqAAF+ApAA+ApAA+AqAA+APsAA+ArAA+AoAA:+ApnAA+A nAA +ArAAH+A{sAA+AsAA8+A4tAAh+AtAA+AuAA+AtAA«+A&uAA+AGtAA+AqAAܝ+ArAA(+ArAA+ArAAԒ+AsAAx+ArAAƇ+A#qAA+AqAAh+AqAA}+ApAA}+AoAAx+AmAA\u+AlAAr+AmAA,p+AmAA@m+AmAAk+AkAAl+A2kAAm+A iAAi+A$hAA~h+AtgAArc+AdAAAAG*Av>AA8C*A$>AA?*AA)AJAAv)AJAA4)AMAA)ANAAN)A8OAA)APAA)ARAA)A(SAAj|)APAAz)A\QAApq)ARAAs)ATAAlu)A UAA*u)AbVAAn)AXAAzo)A\AAr)A]AA(t)AJ^AAp)A_AAn)A^AAf)A_AAc)A aAAa)AXaAAO)A^AAP)Ax_AAP)A`AA,J)AaAALO)A/bAAv])AEdAAx_)AdAA\)AdAA\S)AeAAS)AfAAdU)AgAAX)AhAAY)AniAAj)AiAARm)A hAAo)AgAAs)AhAA>v)AiAAy)AjkAAt)AmAAr)ApAA)ApAAΌ)ApAAd)AptAAH)A0uAA)AwAA`)ATxAAV)A5{AA)AAA>)AAA~)A)AA`m)A AAd)AtAAt`)A߃AAV)A~AAT)As~AAP)A@~AAI)AAArG)A/AA`G)A׃AArN)A#AA*W)A&AAzX)AӉAA*V)AމAAjT)A܊AAU)AAA X)A\AA`)AAAvh)AAAtn)AAA|)AAAT)AAAv)A1AA()AAA)AAA)AAAܠ)A+AA:)AݖAA@)AAAf)AAA)AAA)AQAAR)AAA)AAA)AՐAA)AAA)AAA)A\AA")A8AA)AAA)AAA,)A=AA~)AXAA)A~AAr)AAA)AAA)AAA*AnAA)AAA~)AiAA)A'AA)AAA)AAA)AHAA)AٜAA)A"AA^)AϞAA *AAA*ARAA*AAA*AAA|*A=AA*AAA*AAA)AAA)AAA)AAA)AߧAAZ)AAA)A:AA)A8AA*A\AA*ANAA *A;AA,*AAA4*AAA*AgAA*AAA*ANAA~*AkAA*AAA!*A͹AAv1*AAA,7*AAAA6*AAA8*A`AAn;*AzAAE*AAAH*AAAG*A7AAF*A9AAD*AAAL*AAA&M*AbAAP*AAA R*AAAS*A|AAf*AxAAh*AAAi*A AAj*AAAi*AHAAf*AAAlm*A^AAZl*A]AAs*AAA"v*AAA&y*AAAx*A`AA z*AAA}*AAAn*A!AA *A#AA*AAA*AAA*A]AA*A'AAf*AAA*AAA܇*AAA؊*AAA*AIAAX*AAA̖*AEAAn*AAA*AiAA*AAA*AaAA*AAA*AAA޴*A,AFAAC,AAAHF,AjAANJ,A@AAV,AcAAY,AAAZ,A;AAZ[,A~AADw,A,AAz,AAAp{,AAAZz,AAAN|,AAA,A%AA,AAAp,AٶAA,AAAV{,AAAFu,A AA^s,AAAJl,AAATm,AAAm,AAAn,ANAAZn,AyAA,v,A\AAu,A[AA{,A*AAN|,A|AAx},AAA|,AuAA{,ANAA,AהAAz,AHAA,A~AA6,AAAl,AXAAt,AAA̅,AAA,AAA~,A͍AA~,AXAAb,AAA6,A%AA,AAA ,AAAt,AAAp,AOAA:,AAA,AAA`,AAA^,A AA,ÃAAl,AAA*,A8AA,A|AAL,A.AA,AAA~,A4AA,A~AAd,A<{AA,AT{AAf},An{AAHXO%A@@A–)AZAAʊ)A@A)A@A()A@AҌ)A@A,)A$@AȌ)A3@A@)Ay@Ax)Ay@A)A@A)A@A*)A@A&)A@A)AK@A)A:@A,)A@A)A@A)A@AN)A@A)A @A)A@Aʊ)A@Az)A@Ax)A@Av)A@As)A@A:i)A@ANf)A@A>d)A@A>b)A~@A_)A@A8T)A@A^P)A@AJ)A@AI)AD@AF)A,@AH)A@AI)A@AVO)Am@ALR)AZ@AfW)A@A a)A @Ac)A@Ah)A`@Am)AX@Am)A@Ab)A@A_)AC@A\_)A@Az])A@A_)A@Ap)AC@An)A@ALr)As@Aq)Aƾ@Ay)A@ANz)A̻@Aly)A!@As)AҸ@At)AR@A^)A^@AT)A@A.)A@Af)Aٳ@AΆ)A@A\)A.@A)A;@A)Aܮ@A)A@A)A-@Af)A@A~)A@A`w)A%@Adx)An@A)A+@A|)A@Ay)A@Aj)A@Ag)A@Ab)A?@ARd)AǠ@Af)A @Ad)A~@A`)A@Ac)A@Afc)A@ALc)A@Ab)A@A,e)A_@Aq)A@A8w)Aq@A)A@A )A@A)A@A )A@AR)A"@A,)A@A)AG@A(A@A*(A9@A(Aa@A(A@A(A@A(Ad@A((A@A|(A@A(Aϋ@A (ANj@A(Ad@A@(A̋@Aڔ(A@A(A:@AZ(A@A܏(A@A(A@Ay(Am@Au(A@Ao(AA@Al(A@ANl(Ad@Ad(A@A.d(A@A$c(AM@Ab(A @Aa(A@Aa(A@AY(A @AY(Alj@AZ(A!@A$Z(A@A Y(AB@AN(A$@AM(A@A8M(A@AHM(A~@A^M(AA~@A.M(A}@AL(A{@ABL(A]{@AK(Ax@AC(At@A|@(Ahs@AN?(Ar@A=(AXr@A8;(A/q@A7(Am@A$8(Ajl@Ad8(Ak@A9(Ah@A8(A h@A`2(Ad@A-(A.b@A-(Ata@Ah*(A ]@A)(Ad\@A$(AZ@A!(AX@A!(AVX@A!(AW@A (AT@AD(AR@A(AQ@A`(AP@A(AP@A (A N@A(AL@A(A3J@A<(AH@AT(AKG@Az(A]G@A( (AG@A(AG@A(AF@A'AQG@Av'AH@A'AJ@Ad'AeK@AR'AL@A'AN@A('AO@A'ACR@A'AR@AH'A[S@A'AU@Ar'AV@AF'AW@A'AV@A'AVX@A'A|Z@AZ'A9Z@A'Az[@A'AZ@A'A([@AH'A[@A'Af^@A'Ai^@A6'Ax`@A'Aa@A'A)b@Ar'Ab@Ax'A`@A'A*b@Aڸ'Aa@Aڶ'A'a@AR'A_@AP'A]@AF'A\@A'AY@A"'AZ@AD'AQZ@A'AZ@A'A$\@A'A^@A'A_@A`'A_@A'A'_@AĂ'Aa]@A'AZ[@A'AZ@Ah'AY@A g'ATZ@A^'A*^@A['A]@AW'AU]@AN'A]_@AbI'A_@A*A'A_@A @'A_@Ax9'A"a@A8'A_@A/'Ar_@A,'A_@A-'A^@A('A]@A''AZ@A''AJZ@A ('A#Y@A%'AX@Af#'AU@A!'AT@An#'AT@A%'AR@A"'A;P@A#'AN@AD$'AM@A 'AL@A|'ABJ@A'AG@AL'A2G@A'AkG@A'AF@A 'AG@A'AF@A&A&G@A&AuF@A&A)D@A&AD@Ab&A|D@A&AD@A&AyD@A&AC@A&A@@A&A@@A&A@@A&AB@A&AC@A&AD@A^&AF@Al&A^G@A&ACG@A@&AE@Av&A\E@A&A2E@A|&AE@A&AF@Aμ&A>G@Aض&AH@A&AtG@A&AG@At&AG@AD&AE@Az&AD@AX&A,D@AN&AD@Ap&AD@A&AD@AJ&AD@A&AE@A y&AII@Anv&AH@Al&AG@Aj&AG@ADc&AF@A^&AF@A\&AfF@AX&AAE@AV&AD@AM&AMC@AK&AB@AE&AEC@A4&AB@A1&A9C@A./&AKE@Ap)&AF@A)&A#I@A`%&AI@Ar"&AI@A&AnJ@Ad&AI@A&AJ@AL&AJ@A%AL@A%AN@A%AQ@A&AR@A`&A(V@A &AV@A$%A Y@A%AsY@A<%A_[@A%A3]@A&A]@A&&A_@A&A `@A&Ab@A6'&Afc@A/&Ab@A@;&Ad@A4&Ad@Ap/&A+e@AD0&ABi@A0&Ai@A0&Aj@A82&A?n@A",&Ajq@Ax+&Ar@AR)&A(t@Af/&APv@A.&Aw@A:-&A8x@A,&Ax@AZ1&Ay@Az3&A z@A~3&Az@A/&A|@A7&A}@AL4&A@A6&As@A06&A'@A%&A@Aj &A@A&Al@A&A@A&A2@A,&Ax@A &A:@A&AJ@A%A%@A%AM@A~%A@A%A/@A%A9@AP%A@AN%A@A%A@A%AH@AD%A@A%AČ@A%A@A\%A$@A%AĐ@A%AM@A&%A@A<%A@A%A@AF%A@A%A,@A%A@A%A9@A%A@AĔ%Ak@A%A@Al%Ac@A %A@A%A@A&%A֛@Af%A@A,%A&@A2%Ax@Ap%A@A%A=@Aƈ%A@A%A@A%A@A%A@A~%A@AX~%A&@A}%A@Ay%A@Al%AϮ@Am%A@Ac%A+@Ac%A@A`%A@AX%Ah@AxX%A @AXO%A@AR%AǾ@A.S%A@AV%A`@A\%A@AF^%A@ABf%A @A}%Aɾ@A%A@AR%AR@Aʬ%A\@Ar%A@A8%A@Ar%A2@A%A@A%Ad@A%A@A%A@A>%A@AR%Aƺ@A%A@A%Ao@A%A@A%A@AV%A@A&A@A&A@A&At@A&AE@A&A@A2&A@A6&A@A/&A@A;&A@AhF&A@AI&A@AK&A@AZQ&A1@AT&A-@AT&A@AS&A@AQ&A*@AQ&A@A6J&Ao@A2I&A@AK&A@AM&At@Afj&A@Ai&Aj@Af&A@AXZ&A@A(X&A2@AP&A[@A$H&A@ArG&AJ@ABC&A@AB&A @AG&A@AZD&A@AJ&A@A|L&A\@AB&A@A<&AB@Aj1&A@A@)&A@A)&AI@A)&A@An,&A@A?&A@AlA&A|@AbD&A@AK&A@A|O&A@AN&Az@AM&A-@AM&A@AT&AAAH&A.AALC&AAANA&AZAA B&A AA I&A" AAF&AAA6J&AAAJM&ARAA^&AAAa&AAA\`&AAAJc&AAA"j&A4AAm&A&AA0n&AAAZo&AAA6t&AAAv&AFAA {&A]AA&A*AAn&AAA&AAA&AAA&AAAܐ&A3AA̗&AAA&AAA&A1AA$&AAA&AAAv&AAA&&AZAA֧&AAA&AFAAڵ&AAAJ&AAA@&AAAl&APAA&AAA&AAA&A'AA&AIAA&ACAA&AAA&A:AAv&A|AAz&A[AA&A AA&A- AAN&AAA&AAA&AAAj'A"AA'AAAN 'A AA'AF AA|'A AA"!'A' AA'AnAA'AAA'A4AA('A5AA|:'AEAAC'A;@AM'A@A2Q'A@AhS'AF@A|U'A@A(A?@AA(A%@A4I(Ax@AK(A@A\(A!@A0b(A+@Ad(A@Ai(A$@A\k(A@A~(A@Az(A@A.(A/@A(AG@A|(A3@A(A@Ap(A@A(A@A(A @At(AC@A(Ag@A8(A@A(A@Aĥ(A/@A(AB@A:(A@An(A7@A(A@A(AH@A8(A@Av(Am@A(A?@A(A@A(A@A(A@AZ(A=@A(A}@A~(A@AH(A}@A(A@A (A@A*(A@A(Aj@A@(A?@A@(A@A)A*@A)A@A )AF@A)A@AN)AT@A)A@A)AO@A)A@A)Ab@A)A@A )A@A0#)Am@A8*)A@A-)A@A46)A@A6)A@AJ8)A@A8)A@A9)A@A;)A@AJD)A/@AzD)A@AH)A@AK)A@AzQ)A|@AnW)A@Aa)A-@Ad)A@Ag)A@Ai)A$@Afj)A@A q)A2@Ano)A@Aq)A@A{)A @A~)A@Ad)A@A6)A@Å)A@AB)A:@AN)A@A)Ac@AĒ)A@A–)A@AD)A@A)AZ@Az)A@AIHAUsAA+A:BA<A_BAABAA\BAxABA,ABAAGBAAJBA<ABAAwBAABAAG BAAdBA}AAA}AAA|AAHA}AAhA}AA8A3|AAA9~AAA~AA AzAAAyAAA\yAAAvAAAewAAlAyAA0sANzAA nAj|AAAAA:A[AAAAlAABA#AA<AϻAA1A!AA ,AKAA*AAAA[AA<AAAAɾAAAAA`A1AA@&AAA1AAA5ANAAnAmAAvAYAAAAA(AAAAAA<AAAAAAAAAXApAAAAAAAA0AAAAAAA0AAhA*AAܒA(AAHqAAAvAAAhpAAAxAAA|AAAAAAPAAAAAAAAAAAAA^AA8AeAATAAAAAAAAAtAAA|AOAAAAAAAAA*AAA,AAAnAAxAAAAOAAAAAAFAAAAAXAgAAAAAl'AAA8,A,AA@1A7AA4AAAEAAAUAhAAZAAATABA\]AVBAOABA@LABA,IA BA$XABA [A(BAYAiBA4\ABA@iA*BAeABA^ASBA4[A]BApWAdBAVA#BATABA[ABA`ABAyABA~ABArA)BAoA!BAA"BA4AC$BA4AA$BAA<#BAA$BAA$BAPA%BAA-$BAA$BA$A&BAA!(BA A(BAAz(BAA'BA$AH%BA)A$BA\7A$BA@<A$BAVAi%BAMAG'BAYA)BA]Ad*BAlA*BApA5+BApAg+BAAR+BAA-BALA.BAA/BA8A0BA A0BAAB0BA(A0BAA0BAA2BAA2BAA4BAA4BAA5BALAh3BAA3BAA5BAA6BAhA;6BA\A6BAAf6BA AM8BAA8BA0AV8BAAC8BA<>A8BAAA9BACAJ:BAGA:BAUA9BA[A9BAkA9BAxA8BA~A7BAA7BAȗA5BAA>5BAA4BA4A4BAĵA3BAA0BA|A0BAA/BAAu.BAA=-BAA+BAA*BAA%BAHA %BAA$BAA9$BAA!BADA/!BATABAXAdBA8A~BAAEBAXABAlABAABAABA|A3BAABAA?BA ABA\#ABA1ABADDAOBA8TASBAJABAFA(BAZA BAHjA> BAxoA! BAvABA wAYBAvABAABAԡABA\AcBA<A_BAJ !*A!>A:-Aj@AN*A?A@*A?A*Ay?Ab*AJ?A*A#?A(*A?Ab+A=?AF+Ah?A+A?AR#+A@?A0+A?A9+A?A<+A?A<=+Ap?A=+A?A@+A?Ax?+A?A?+A"?AlN+A]?AVS+A?AT+A?Ac+A?Af+A?Af+A?Ak+A?ADn+A-?Ao+AC?Aq+A8?ARy+A?A&x+A?Aw+A?Ay+A?Ad{+A?A}+Ay?A+AW?A+A)?A:+A?A`+A5?A+A?A<+A?A+A@?Ap+A?Aܢ+A*?A+A?A+A?AR+A?A+A?A$+A-?A2+A?A+A ?A+A?A|+A?A+Ak?A+A?A+A?A+A?AN+A??A+A?A+A?Ar+A?A+AM?A+Ac@A0,A@A ,Af@A ,A@A,A@Aj ,AF @A ,A @Ab ,A~ @A,A- @Av,Ao @Ax,AC@A>,A@A(,A=@A/,A@A0,AC@A4,A@A>,A@AM,A5@AN,A@AT,A@A8V,A@AW,A@AtU,A}@ApU,A@AR,A@AA,AA@AG,A @AM,A@AS,A@A$V,Ax@A0X,A@A],A@Ab,A[@Ah,A?Ak,A^?Am,AK@A,AR@A4,A@A,A@A,A@AD,AP?A ,Aq?A£,A?A,A6?AX,A?A,A?A,A?Ab,A%?A,A?A,A?A,A?AZ,A?A,A?A,A?A ,Ae?A,A?Aj,A?Ar,Al?Ar-Ai?A-A?Ax-Am?A-An?A(-An?A.+-A?A,-A?A)-A?A1-A?A2-A$?A.2-A?A=-A?AQ-A?AX-A?A f-An?Ade-Aw?A^-A`?A^\-A?Ag-Af?Ad-A?Ah-A?A.g-A?Ao-A?Am-A,?Am-A?A${-A?A-A܆?Av-A?A-A?A -A\?Aj-A|?A-Ah}?A~-A{?A-Au?A-Ap?Ar-Am?Az-Ah?A-Ad?A-Ab?A:-Aa?A-A5[?A~-AW?AN-AS?A-AM?A-AH?A-A@?A-A>?A-A??Af-Ad>?A-A9?A-A7?A-A1?A-Ay+?A-A'?A$-A?A-A?A&-A?A&-A?A-A- ?AT-A ?Ab-AR?AF-Ap?Ab-A?A -A. ?A}-A4 ?Av-A ?Aj-Ae?Af-A?Ag-A?Aa-AA?Af`-A>Ap[-A*>A\-A>AX=-A>A9-A>A@-A>A'-A>A-A>A,A>A,A>A(,Aa>A,A>A,Az>A,A>A8,A>AH,A*>A,A>A,Ab>A,A>A,A>A ,A>A,AX>A:},A>A{,A>Au,A>At,A>Ag,A>Aa,A>AJU,A>AS,AE>AbE,A>AI,Am>A^I,Am>ATF,AF>A4,A!>A(,Aq>A ,Ao>A@,A>A,Af>A+Aq>A,A>A+A>Av+A>A+Ac>A`+A>A+A>A+A|>A+Af>A|+AP>A+A<>AD+AV>Ax+A>A+A>Ab+A>A+A>A+A>A+A[>A|+Aj>A.r+A>As+A>AVs+A>AV{+A>A{+A>Ay+A>A4m+A>Al+Ai?Ae+AV?AZd+A?ARc+AL ?Azk+A?Ag+A?Aje+AQ?Ahk+A ?Aj+A,"?Axq+Ar$?At+AI(?AL+A*?A0+A!+?A&+A0?A+A1?A+A4?A +A(:?At+A:?A}+A-;?Ay+A*Ak?A*Aj?A*Ag?A*A*^?A~*A6Z?AR*AX?A*AW?A*AP?Ax*A/O?A*AP?A~*AKO?A*AJH?A*AUE?A*AE?A*AyK?A*AR?A"*AzR?A"*AR?A*AiT?A*AY?Ax*AZ?A}*AY?AZ|*A~X?Az*AW?Aw*AW?Ao*AX?Ao*A(Z?ATj*A6_?ABl*Ag?Avj*Ah?Aa*A[l?A:a*Am?A]*Adr?AD\*As?AT*Az?ABS*Az{?AQ*A{?AN*A|?A>O*A}?AtN*AH?AE*Ar?AlB*AS?A C*A΅?A6E*A?AG*A?AB*A?AC*Aމ?AVA*A?A A*A?A1*A?A0*A?A -*AR?A+*A`?A"*A+?A!*A?AF"*At?A$*A?Ab)*A?A)*Ah?A**Aߧ?A/*A?A0*A?A3*A?AbA*A?AZF*As?A4H*A?AH*Ap?AG*A˵?ATE*A?AE*A?AR*A5?AS*A,?A|Q*A?AO*AN?A*M*A ?AzM*Ab?AV[*A?A^*Aq?A&`*A?Ah*A[?Am*A?AFs*A?Az*A?A\w*AI?ALv*A?Avz*A?A|*A?A~*A?A{*A?A}*A ?A6}*A?A0{*A?A{*A3?A}*A?A6}*AY?A|*AD?A}*AT@Â*A@A*A@A`*AQ@A*A@A*A@A*A9 @A*AQ@Al*A @A*A6@AN*A@A*AB@A *Aj@Aƙ*AY@A*Ax@A *AT@A*A@A*A@AJ*Ae@A&*A;@A*Aj @A$*A @A*A@Az*AW@AX*AA@A*A@A*A@At*A@A*AO?A*Ac?An*A?A*A?A*Ay?A@*A?A*AW?A*A'?A*A?A*A?A*A?Al*A\?A(*A?A*A?A*A?AN*A?AK @Z*A?Ap-A@AeX+AFw@A+Ay@AR+Ay@A+AXz@A+Az@A,A}@AB ,AW~@Ad ,AR@A(,A@A ,A@AH.,A@A<,AĂ@Az?,A @AW,A;@A[,AR@A],A@Axf,A@Ali,A@AB,A@AV,A@A,AG@A8,AɄ@A,A@A,AՃ@A,A7@A(,À@AB,A@A:,A}@Az,A}@A6,A1|@AB,A z@A,Any@A,AWv@A,A v@A,As@Aj,AXr@A^,Ao@A~,Am@Az,Am@A,An@A,Ak@Ap,Alf@AT,AId@A,A.b@A*,A`@A,A-_@AV,AoZ@A~,AY@A,AY@A,AU@A,AT@A6,AQ@Ad,AwP@A,AO@A,ARL@A$,AK@A,AJ@A,AWK@A,AKJ@A-AI@A,-AF@A -AD@A -AIA@A -A?@Ar-A=@Az-AI:@A$-A8@A-A:@A!-A =@A:*-A=@A+-AV;@A3-Au:@A:-A7@A<-Ak6@AG-A4@AK-A1@AY-A/@ARa-A>,@A]-AZ*@AZ]-A(@A4l-AF&@Ap-AC @A e-A@A4^-AE@A\-A@A[-A@AnX-A@AHV-A@A?-A}@A6-Aw@At!-A3 @A-A@A-A @A-A @A -AN @A-A @A -A @A-A @Af,A @AP,A< @A,A@A,A@A,A@AF,A@A,A@A,A?A,A?AZ,A?A,A?A,A?A,A?Ab,A%?A,A?A,A?AX,A?A,A6?A£,A?A ,Aq?AD,AP?A,A@A,A@A4,A@A,AR@Am,AK@Ak,A^?Ah,A?Ab,A[@A],A@A0X,A@A$V,Ax@AS,A@AM,A@AG,A @AA,AA@AR,A@ApU,A@AtU,A}@AW,A@A8V,A@AT,A@AN,A@AM,A5@A>,A@A4,A@A0,AC@A/,A@A(,A=@A>,A@Ax,AC@Av,Ao @A,A- @Ab ,A~ @A ,A @Aj ,AF @A,A@A ,A@A ,Af@A0,A@A+Ac@A+AM?Ar+A?A+A?A+A?AN+A??A+A?A+A?A+A?A+Ak?A|+A?A+A?A+A ?A2+A?A$+A-?A+A?AR+A?A+A?A+A?Aܢ+A*?Ap+A?A+A@?A<+A?A+A?A`+A5?A:+A?A+A)?A+AW?A}+Ay?Ad{+A?Ay+A?Aw+A?A&x+A?ARy+A?Aq+A8?Ao+AC?ADn+A-?Ak+A?Af+A?Af+A?Ac+A?AT+A?AVS+A?AlN+A]?A?+A"?Ax?+A?A@+A?A=+A?A<=+Ap?A<+A?A9+A?A0+A?AR#+A@?A+A?AF+Ah?Ab+A=?A(*A?A*A#?Ab*AJ?A*Ay?A@*A?AN*A?A*A?A*A?A(*A?Al*A\?A*A?A*A?A*A?A*A'?A*AW?A@*A?A*Ay?A*A?An*A?A*Ac?A*AO?At*A@A*A@A*A@AX*AA@Az*AW@A*A@A$*A @A*Aj @A&*A;@AJ*Ae@A*A@A*A@A *AT@A*Ax@Aƙ*AY@A *Aj@An*A@A*A @A*A@A*A@A*A* @At*A @A*A#@A8*Ac%@A^*A'@Aބ*A(@Aj*A)@A*A4*@AT*A+@A*AN-@A0*A-@A*A/@AZ*AN0@A*A2@A0*A3@AZ*A4@An*A6@Â*A7@Av*Ae:@A`*A7=@A*A=@A*A@=@A:*At:@AH*A9@A*A9@Aʱ*AC:@AZ*Ay<@A*A?@A`*A,A@A*AbA@A*A B@Aj*AC@A*AaC@A|*AC@A*AD@A*AvD@A*AC@A*AD@Ah*AD@A`*AsE@AB*AF@A*AG@A+AE@A+AG@A+AG@A+A$I@A(+AyI@A,+AYH@A`>+A}G@AC+AG@ArG+AH@A@J+AH@AVM+AJ@A.X+AnK@A [+AK@Aa+A7M@A`+A_O@A`+AP@Abn+AiS@Ap+AS@Aw+AU@Az+AU@A2|+A~V@AP+AV@Ah+AX@A+AZ@A+A [@A+A^@Aܥ+Aa@A+Aa@A+Aa@A̞+A2b@Ad+Ac@An+Ac@A+A`@A+A_@AČ+A5`@A+A`@A6|+Ae@A{+Ag@A +Arh@A\+A3i@A+Ak@A||+Ak@A+Al@A+Alp@A+As@A(+Au@Aҕ+Aw@A.+Ax@A+Ax@A+Ay@Aޣ+Az@A~+Ahz@A+Az@A +Az@Av+A[z@Ab+Av@Aj+A4v@A+At@AT+Av@AX+AFw@AL0"A~BA"AVBACK"A;BABN"A>BALX"AOBAN`"ATBAb"AVBAm"A=BAr"AnBAs"ABAt"AsBA8x"ABAz"ANBA{"A$BAZ|"ABA|"ACBAN}"ABA}"AcBAd}"A˂BA"ABA"AMBA0"A3BA"A'BA6"ABA"AIBA"AÃBA"ABA:"AǁBA"ABA"A;BAt"A~BA`"AsBAu"ABA|p"A=BA$n"ABA b"ABA_"A~BA]"A~BArZ"A~BAX"A:BAS"A~BAL"A~BAJ"AcBArB"A BA@"ACBA$;"ABA8"ABA4"A_BA 2"ABAh*"AjBAT%"ABA,%"ABA8""AłBA"ARBA"A҆BA"A&BA"A\BA""ABAf"A؋BA "AyBA#"ABA/"APBA1"ABA:"ALBA<"ABAC"ABAE"A$BAH"A+BAK"A;BAMABA !A^CAA6+CAA/CAlA/CAA3CAA3CAA7CAA9CADA;CA|AuBCA ABCA:AECAKAFCAQAFCAcA>GCAxAHCA~AICĀAjICAlAJCAğABKCA,AVKCAAoKCAAKCAALCAALCA<ANCAAmNCAhAPCAh AQCA4ATCA9ATCAhsAYCAxAYCAA[CAA[CAA\CAA]CAA^CATA`CAA_aCAdAbCAA,cCAPAcCA0+AeCA0A*eCA6APeCA<AneCAJAeCAyAfCAAfCA8AkfCA,AnfCAXAxfCAxAgCAHAgCAA.jCA AjCA8IA lCANASlCADlAZmCArAmCAA_pCAAKpCAAApCAAuoCAAoCAApCAAOpCAAqCA4"AsCA>A7tCATCAtCAbAvCAgAvCA\{A4xCAAxCAA$zCA A^zCAA+{CAXAj|CA<A|CAtA~CAA~CA@ACAA$CAXA*CAACA A}CA^ ACAp" AMCA1 AێCA|7 ACABE AbCAG AWCAM A[CA&O ACAT A^CAD_ A|CA` A܎CAc AqCA_ ACAc ACAk A'CAm ACAr A΅CAv A΄CA2y ACA ACA A-CAl ACA\ ACA\ Ap|CAv A{CAd AR{CAƣ AzCA AxCA ARtCA AsCA APrCA: AlqCA A qCA ApCA AnCA AmCA A$kCA AjCA AiCA AQiCA, AhCAt AgCAj AeCA6 A"eCA AhdCA AIcCA AgbCA A_CA Ac^CA A]CA A\CA4 AWCA!A[VCA!AUCA!ASCA!A?SCA !A]QCAJ !APCAd!AOCA!ANCAl!AMCA!A2MCA!AKCA !AKCA!ALCA!AJCAd A&JCA>!AGCA!AGCA AFCAT AeFCA A1BCA~ A@CAL Al@CA A=CA A4;CA A;CA A>CA!AI?CA!A>CA!AM>CA0!A;CA!A;CA!A:CA A9CA A6CA8 A;6CA Aq5CA A3CA4 A)3CA A2CAj A(2CA A1CA A0CAn A/CA A.CA A,CA A)CA A(CA A('CA A&CA A>'CA A'CAz A%CAp AJ%CA" Az#CA\ A$CA A#CA A"CA@ A!CA> A!CA" Ag CA* ACA!APCA!A<CA A4CAF ACA( A7CA AbCAZ ACA AJCAL!ACA(!ACA !APCAT!AVCA!ACA !ABCA!ACAN!AnCA!ACA!A CA !AJ CA !A CA!A CA!AR CAH!A( CA4 ACA. A<CAt ACAH AFCA ACA2 ACA ABAN AhBA ABA ArBA" ABA< ARBA| AnBA ABAD ABA ABA AIBAf ACAz AICAں AJCA ACAt ACAD ACA| A~CA؟ ALCAL ACA ACA ACA* A~CA AfCA$v ACA@t A~CA

BA#A BAN#At BA#ABA#A'BA#ABA(#AAAJ#AZAA*#AAAh#A>AA#AAAf#AAA#AAA#AAA#A-AA#AAAت#AAA"#AEAA #A#AA#A_AAD#ACAA4#AAAȃ#AAAj#AAARs#A3AAj#AAA8i#AAAf#AAAv^#A4AA\#A}AA[#A,AA0]#AAAb#AAA>c#AKAAD\#A$AA8W#AAAQ#AAAVO#AAAB#AAA7#AAA9#AAA\B#AAAB#A?AA@#AAA/#AoAA&#AAA#AAA#AAAp#AAA #A[AA"AAA"AAA,"AAA"A AA"AAA`"AAA"AyAA8"A_AA"AAA"AAA"AAA"AAA"ACAAB"AAA("AAA"A{AAt"AeAA,"A AA"AAAƤ"A4AA"AAA6"AtAA0"AHAA"AAAl"AfAAB"AAAһ"AAA"A8AA"A AA"A AAR"AAA"A6AA"AIBAf"ARBA4"A`BA "ABA"ABAl"ABAH"AyBAf"ABA("ABA"AuBA"ABA"ABA"AcBA"ABAV"AuBA~"ABAu"ABAq"A6BAp"ABAo"AhBAu"ABA(z"AtBA"ABA"A BA؅"ABA"A BA"ABA"ABAz"ABA"AzBA"A7BA"ABA"A BA"AD"BA"A#BAڱ"AA#BA"A?%BAR"A$BAl"A9%BA"Aa*BA"A*BA"A.BA"A.BA\"Ar/BA"A0BA""A0BAȭ"A01BAj"A1BA^"A6BA"A7BA"A8BA"A9BA"A)BAA#ABAO#AJBAH#ABAF#ABAvQ#ABAO#A(BAHQ#AFBAnS#A}BAZ#ABAf]#ABAPd#A˹BAo#A9BAq#AeBA>w#AڶBAJx#A-BAd#AuBA#A BA#ABAґ#ABA#A BA#AmBA#ABA#AԸBAn#A1BA#ABA#AƺBA #AjBA#ABA#AXBA#ABA#AӶBA#AӸBA#AZBA#AgBA#AҺBA#ABA#AiBA#ABA#ABAL#A[BA#ABAj#AUBA#A)BA,#ABA#ABA $A~BA$ABA$ABAX$AkBAv$AlBA%$ABA($ABA %$A͸BAT*$A BAd1$ABA^2$AߴBA1$ABA7$ABA*g!AK9BAnf!A-6BAc!A5BA]!A4BA\!A@2BA_!A1BA^!A.BAY!A{.BAU!AA-BAI!A7-BA8G!A]-BALD!AI-BABA ABA AABA@ A&BA A_BA AiBA@ A?BA ABA" ABA" AbBA~ A‰BA@ ABAV ABAΒ A0BA A|BA ABA8 ABA ABA ABAx ABA2 AFBAv} ABABx AUBA:v AܖBAw ABA~q ABAVq ABAu ABAv A>BA,q A=BAm ABA(y A"BAT{ ABAx ABAbu AϣBAPm AߢBAbd AߢBA` ABA^ ABAZ ABAT` AvBAe AݧBAe ABAd A,BABb A~BAd ABAa ApBA^ AЫBAY A!BAX AޭBAX AUBAS A-BAU ABAbS ABA[ A.BA(d A BAi ABAnp ABAps A0BA>y AABAw ABA@{ ABA} AƶBA} ABAH A1BAV ABAh ABA> A\BA ABA ABA A2BA` AzBA@ ABAޯ ABA ABA ABAR A>BA ABA| AѸBAL ADBA A#BA ABA AUBA AJBA0 AhBA AVBA A԰BAr ABA ABA ABA A|BA!ABAv!AJBA!AĴBA: !ABA2!AsBA!ABA!ABA!ABA!ABA%!ABA*!ABA2!ABA<4!ABA4!ABA@!ABAZB!AgBAjA!ABA&:!A-BA>!AcBAj@!ALBA>!ABA?!ABAH!ABAK!A%BAL!ABAZ!APBAr\!ABA^!AְBA"]!ABA j!A2BAk!ABAp!APBAVu!A-BAv!ABA{!ABAr!ABAr!AbBA!ABA֑!ABAf!ABA!ABA!AXBA"!ABA!A1BA!ABA!A&BA!A%BA!ATBAF!ABA!AѨBAh!AŪBA!ABA!AnBA!ABA!A_BA!ABA !ABA!ABA!A͞BA!ABAP!ABA!ABA"ABA"A͛BA"ABAh"ABA"ABA"ABA"ABAR"ABA"ABA,!ABA!A̐BA!ABAT!ABA"!AÌBA!ABA!ABAf!APBA!AFBA!ABA!A?BA!ABAX!AfBA!ABA!AABA!ABA!AwBAPA]@AAAAA@AA#@ALAQ@AA@A8AJ@ApA@AA@AإAG@AA@A(A|@AA@AܥA?@AAb@AA@AA@AA@AA@AtA(@APA@A\A@AA@AԵA:@AA@AAK@AA=@A܇Az@AhAI@AA@AAE@AA@@AA@AA@A̸AJ@AA@A@AE@AdA{@AHA@A(A@AtA`@AhA@AA@A@A7@AlA@A0A@AA@AA@AAj@A A@AHAE@ALA@AA.@AAѻ@AA@AA<@AA$@AA@AAz@A$A۱@AAֱ@ApA@AdA@AfA@AdA@AjA@A$A@AܟAK@AخAc@AAG@A8AN@A̶A#@A|A@AA@AA@AA@AA@AA<@A@AH@A(A>@AA@AA @AAƖ@AA@AA2@AA@AHA@A~A@A}A@AA@APyAT@AwA.@A{A@AAz@AAʆ@A A$@AA@AA@AA$@AA|@AAx@AAw@AlAu@AAt@A8Au@A8A6u@AAr@AAq@AA]q@AAfn@AAm@AAmk@AAj@AlA3g@AAg@AA9f@ADALb@AAe@A4Ag@AANh@A2Ai@A9A/k@AJAk@A`AIj@ADwAg@AyAf@AdkAd@AXoA(c@AiA b@A [Aa@AoAf]@A8qA/\@ATdAY@ABAY@AT<AY@A=A4Y@AEA U@AGAS@A(IAHS@A8KAQ@ABAP@AX=AQ@A,A7N@A'AN@A4!AI@AA\H@AEAF@ANAFE@AHUAB@AVAA@AeAA@AjAA@ApAI@@A|A@@AASB@AAB@AA@A@AȟAc>@A0A;@AA$;@AA:@A A;:@AA9@A,}A7@A Ad6@AA4@AxAR4@A A34@A,nA1@AxiA1@A$bA2@A^A2@A<Au6@A7A6@AT(A!5@A#A4@AAE5@A A6@A A}6@A A5@AdA3@A AU3@AHA3@AdA4@ApA(4@A,A1@A A/@AAf/@AA-/@AHA+@AAP,@AhA^-@A$A,@ApA,@AlfA-,@AgAx+@A8iA*@AyA'@AnA[%@Ap]A'%@AH]A#@AUA!@A4`A@AUAT@AlPA@ATGA[@AAA@A@A]@AA@A@A!@A0Aq@ATAe@ALA@AA("@AAM"@A\A"@A|A$@ATA\%@AA&@ApA'@A`A(@AA'@AhA'@AԮA*@AA+@AAW,@AdAN+@AA+@A@|A,@AQA-@APLA5.@A4KAq0@A:AR4@A5A4@A1A4@Ad#A2@Ah A3@A4A3@A A2@ADAG3@AA}4@A@A6@AA_7@AA4@ADA+5@APA6@AĜA;@AԗA:@A,A9@A8A17@AA7@AHxA8@A]A9@AXGAW:@A6A?:@A/A-;@A)Ap;@A2AZ<@A$(A>@A(-AV>@AD1A>@A%A>@AA?@AA@@A,AtA@AAA@AAnB@AAjB@A,AC@ATAWB@AAA@AArB@AXAA@AAB@AAD@A A2E@APAE@AhAF@AAF@AAG@AГAG@AAUH@A܅AH@A({ATK@A^AK@AUAM@AWAN@A$gAN@AdAQ@A|cA^R@ATAaT@AXPAT@AdA"Y@A(AY@AAZ@A<+Aa^@A#A[`@A!Aa@A8Af@AdAcf@At9Af@ADCAgf@AAArh@ADFAh@AxQAi@AYAj@A]Aj@AvAh@A<{Ah@AHAWh@AAh@A4Ah@AAi@AtA'j@AAOl@AXARm@ApAn@AAq@AAp@AAq@AAAr@AArv@Ah!Aw@A\Aw@AAnx@AlAx@AAJz@A\Az@AA }@A8A/}@ALAy@AAVx@AAy@AA1{@AA~@AxA@AA@AA@AA@A@A@A4A@AA@@AAˋ@A@Am@A̶Az@A4A3@AA@AAc@AA@A AA@AA"@AA7@A(A@A AI@A A@APA@AAm@AA:@AA@AA@AtAB@AA@ApA @AAɩ@A(A@A`A@AA@AA]@A AƮ@AA@AAD@A A+@AxA@AبA#@AA@AA@AdA»@A AM@AA@AA{@A\xA@A|A@A4yA @AmA@AdcA@A_A$@AXA@A4[A@AaAm@A0dA@AvAE@A|A@AyA(@AoA_@AiAf@AXA{@ATNA@Al7A@AL3AU@A%A@Al A@AAg@AA@AA@AD An@A,A@AlA@AA@AA@AA@AA>@AA@AA@A0A@AA@AIJA.@AAz@AA:@A(A@AdA2@AıA5@AAF@A$AE@AA@AA@A A@AA@AA@AA@AA%@AhA@ApA@AA.@AA2@AA@AX AX@AA@A A@A!A@A1A,@Ah>A@ATJA@Ap_A@AuA@AAU@A8A@AxAb@AAT@AxA;@AAq@AAF@AdAy@A8A@A@A'@AA!@AA@AA@AA@AA@AA@A<'AAA.AAA@?AgAACAAA5AAA`6A AAH2A AAbA AA0hA AA,A AAA AAԥAz AA0A> AAAC AAAqAALA AA,AN AAA2 AAA AAXA AA8AGAAA]AAAAAAFAA "AxAAx'AAA 6AAA<8AAASAAA YAAA|qAAA A AAAAA(AnAAxAbAAA>AALAAAxA|AAAAA,A9AAAkAA$AAA%AAA|A AAAn AA<AAA\AAAxA>AA<A# AAAC AA&AAA+A AA0AAAhKAAA@QAAA[AAA\AAA]AAA^A@A_AL@A!A$CAdA!ACAA!ACAK!A"CAxN!ACAU!ACArX!ACAd[!ACA[!ACAg!AUCA*s!A@CAu!AmCA!A.CA!A}CA}!ACA&o!AsCA~u!ACAw!ACA{!AKCAp}!A~CA!ACA~!AACA!ACA!ACAZ!ACAb!ACAڦ!A)CĄ!ACAܮ!ACA!A˷CA!AطCA!A޶CA!AWCA!ACA>!A=CA!ACAԹ!ACAr!ACA>!AlCA!ACA`!ACA!A+CA!ACA!AWCA!ACA!AƬCA!A>CA!A>CA$!ACAR!AjCA:!AHCA!ACAd!AͭCA"AdCA2"ACA"ACA "AwCA"AwCA"ACAt"ACAr"ACA!"ACA*"ACAB4"ASCA5"ACAd9"ACA<"ACAbE"AׯCA.I"A$CABJ"ACAL"AgCAF"AҲCA0D"ACA\C"A*CA#A]CAF#ACA:H#ACAF#ACAF#ACAG#AUCAH#A(CAD#ACA.?#ACA:=#AiCA=#ACA>#ACA4#A6CA2#ACA6#ACA|8#ACAE#ACAH#AڊCA(P#ACA*$AӄCA$ACA&!$AVCA#$ACAp$$AdCA#$ACA$AqCA$A~CAT $A~CAz'$A}CA-$A*~CA/$Ad~CA.3$A}CA5$A}CA/$A{CA#$AyCA$AxCA $AvCA$A!vCA!$AuCA $A[uCA$A"uCA$ArCA $AVpCA $AnCAd$AmCA$AdmCAR $AjCA$AhCA~$AgCA$AAgCA#AqcCAr#AcCA\#AeCA#A8fCA*#AeCAz#AeCA\#A_cCA#A_CAJ#A5_CA#A%^CA#A]CAN#A]CA#A-]CA#A[CA,#A![CA#AZCA.#A}YCA|#AYCA#AUYCA#AXCA`#AvXCAH#ALWCA#A!VCA#A TCA#A[SCA #ASCA#AQCAN#AVOCA,#ANCA#AMCA#AMCA#AMCA#AKCA#AICA#AGCAb#AGCA$ADCA $A@CA$A@CA$A@CA#A@CA#AT?CA#A>CA#A=CAt#Au?CA#ABCA #AACAZ#AZBCAB#AACAV#AD@CA$#A>CAL#A=CA#AA>CA#A;CA#A:CAj#AN;CA#A=CA#A=CA#AG>CAV#A?CA#A@CA0#A{@CA#A @CA#AH@CAδ#A>CAԩ#A=CA#A;CA>#A:CA#A9CA#A7CAܧ#A9CAN#A:CA<#A#:CA#ADACA#A@CAR#Aw?CA#A>CA#A?CA:#A-BCA #A#BCA#AlACA^z#A?CA|#A?CA#A#A+-CAr=#A-CA:#A.CA5#A.CA&+#A.CAr(#A-CA&#Am.CA#A.CAL#A.CA#A.CA#AE.CA#A$-CA#As,CAH#A)CA\#AB)CA #A;)CA #A6%CA #A$CA#A#CA"A#CA"A$CA:"A&CA"A(CAH"A*CA"An+CA"A+CA""A+CA"A*CAJ"A+CA"Ah+CAh"A*CA"A)CAn"A(CAp"A(CA"A:)CA\"A*CA"A+CAv"AV-CA."A,CA"A/CA"A /CA"A/CA"A1CA"A1CA"Af1CA"A-CA:"A.CA "A /CAҜ"A0CAT"A1CAh"Am1CAp"A0CA>"A2CAD"A2CA""Ai3CA"A4CAVz"Ay6CAt"AQ6CAr"A5CAm"AQ5CAd"AW5CAb"A5CA]"A7CAY"A7CA@W"A6CAN"A8CAM"A:CAlJ"A%;CAC"ACA!A?CA!A?CA8!A?CAj!Ac?CA!A>CA:!A>CA!ACA|N!A>CAL!A?CAD!A?CAj A_CAJ ArCAL ACAO AICA_ A'CAha AǘCAi ACAnr A`CA2 ACAЕ AOCA ACAʟ ACAd ACAl A CA ASCA ACA AwCA̱ A'CAX A0CA AשCA ACA A6CA ACA A֧CAb AgCA2 ACA AfCAN ACAp ACA ACAF AٯCA AOCA AYCA ACA AtCA AfCA AcCAD ACA ARCA ACAf ACAR X A;A#A )=A A;] A1=A A=A A=A A=A AL=Al A;!A=AD!AF=A^J!A =AvL!A*=AR!A=ADX!Ag=Aa!A=AJi!A=Ar!AH=Av!A=Aj|!A=AP!A=A!Al=A!A=A!A=Ax!A[=A!A=A!A2#=A!A8$=AR!A$=AF!A!=A:!Am"=Al!A=A!AD =Av!Ah!=A!A(%=A!A&=Aj!A'=A(!A#'=A!A)=Az!A)=Ad!A )=A!A%=AX!A&#=A!A =A!A=A!AW =A!A\=A!Ak=Az!A=A!A=A!A=A "Aq=A"A=A!Am=A6!Ar=A!Ay=A!A =A!A =A!A=A "A=A"A: =A "A=A*/"A=AZ1"A=A7"A =A2"A=A.="A[=A6G"A=AL"AM=AQ"A?=AV"A=A(Y"A=AT["A/"A.!;A"An;A"A;A,"A;A"Af;A"As;A:"Ao;A"A;A "A;Al"A;A!Am;A!A/;A&!A;AB!A;A!A;A!A;A!A;A!A;A!A;AN!AM;Al!A;A>!A;Av!Ae;A$!AV;AF!A_;A̦!A;At!A;A!Ap;A^!A;A!AU;A!AR;AЃ!A;A!A;AL!A;A"!A;A!Aq;A!A;A@!Al;A!A;AN!A;A!A;A!A;A$!A;A!A;Aj!A;A!A;Aw!A;Ar!A;Aj!A;Ap_!A;Al\!A;AY!Aw;AFH!A';A F!A;A5!A;A4!A&;!A=AG!A=AI!A(=APG!Aa =AT@!A =A 9!A=A3!As=Al(!A=A<!A =A!AV =Ar!A=A!A=A!A =A!AE=A!A=Az!As=A!A6 A1=A A =A A=A A%=A| A=A A1=A: AW=A. Ar=An A=AV A9=ANv A<=Ax A==Az A?=Aw AC=Au AH=An AJ=Am A0L=Azt AN=Aq AT=As AU=Azy ADU=A(| AU=A AU=Ax AS=Aj AS=AL A4T=A AR=A AK=Ab ATH=Ab AI=A AM=A4 AQ=A" AS=A AR=A£ AS=A AN=A AM=A AAQ=AT A Q=A¯ A4R=AF APT=A AT=Av AZ=A AJ[=AR AiZ=A A\=A AQ`=A A^=A AZ=A A[=AZ A8^=A A`=Al A`=A Aoc=A!ADd=A!Ad=Ap!A.c=A !A`=A\!A^=A!Ac=A!Ad=Ab!Ae=A!Ac=A$!Ab=A 4!Af=A65!Ad=AP6!Ac=AP3!Ac=A.!Ab=A&!A*^=A2!AU=A+!A*Q=AV.!AP=A?!A~K=A*E!AzL=AU!A3L=A(X!AL=AZ!AK=AVh!AJ=Ak!A.J=Ag!AE=A`e!A<=Ae!Ak;=Ab!A-;=AY!A==AW!A<=AR!A;=AC!A.=AV;!A.=A8!An,=Az@!A*=A6B!A%=AF!A$=A|E!A"=AfH!A"=AL!Ad$=A4R!A#=AS!A =AW!A=A[!A!=Apd!A#"=AHo!A =Ap!A=Al!A=Am!A=A {!A=Av!A=ATf*A5;A-A;A],A@;Ad,A D;Ad,AE;Aj,A>F;ALt,AH;Av,AH;Aw,AE;A{,AF;Az,A D;As,A>;Ao,A*>;An,A=;AP+A5;A+A!6;A&+A^8;A+AW9;AX+Av;;A+A<;Al+AP=;A+A?;A +A@;A+A5>;A+A>;A+A@;A+AB;A2,AB;A,AOC;A,A~H;Av ,ACH;A ,AF;AP,AE;Af,A@;A:,A=;A&,A\=;A2 ,A<;A,A:;A+AN9;AD+A26;AP+A5;Ac+A\+A -Are*Ao;A*Aq;A *Ahq;A:*Aq;Az*Au;Aҩ*A u;A*Ay;A֡*A:{;An*A~;A*A;A$*AŃ;A0*A5;AF*A;A>*Aք;Ar*A;A8*Aʑ;A*AR;A؝*A;A*A ;A*A;A*A;AΪ*AH;A*Aq;Ab*At;At*A;AZ*Ah;A*A;AT*AL;A *A޹;A**Am;A*A^;AJ*Aҽ;A*Aa;A*AA;A`*A;A *A;A*A;A*A;A*A_;A*A;Ab*A;A*AL;At*Av;A*A;A *A;A*A-;A*A;A*A;A *A;A*A;A*A\;A*A;A4*A(A*\=Av)A5\=A)AZ=AB*)A)d=AN,)ASh=A1)Ai=A^4)Aj=A5)A:j=A8)Ag=A6)Ad=A*7)Ac=AP6)A`=A+)A\=A))AxV=A82)AU=A3)AM=A|3)AdL=A1)A.K=A-)AI=A,)AG=AN5)AD=A8)AC=A =)AA=AQ)Ae?=ATd)A7?=Ae)AYE=A4e)AF=Ag)AF=A>j)AG=Al)A'G=A@o)AF=A{)AC=A~)AB=A̅)At@=AΊ)A0==AF)A<=A)A >=A)Af>=A)AV<=A)A@=A`)A==A)AU==A|)Aj<=A&)A;=A`)A:=Aj)A7=A4)A:2=A)AL)=A)A'=A)A&=AH)A'=A)A%=A)A&=A)A'=A)A"=A)A =A)A =A)A=A)A=Ah*A=A~ *A=A *A=A *A=A*A=A*A=A%*A=A(*A=A>)*A4*A.*ACRj=Ad'Ak=A'A'k=A(Ah=A(AZh=A(Ak=A5(Aj=A8(Aj=AT>(Ag=AC(Axg=A8P(Aa=AS(Aa=AR(AW=AS(AV=AT(AZU=AS(AR=AFY(AN=AZ(AH=AzY(A.G=AZ(AC=AN_(AA=Ab(AfA=As(AH=Anu(AUI=Aڀ(AO=Ar(AkP=A΍(AQ=A(AQ=A(AO=A(A Q=A(A>Q=Av(A\T=Av(A>X=A(AY=AV Aa@Ah!AAA$Hx A@AX A$@A Ah@A A>@Ap A@Ax` A0@A@R Ai@Ah; AB@A8 A_@A! A@A A@A8 A@A A`@A A@A( A@Ax A@A. Ao@A< A4@AhB AZ@AT A]@Ax A*@A( AH@A8 A@A A_@A A@A A@AA@AAx@A("A@A#Ag@AA=@AXA@A A@A( A@Ah A@Ax A@Ah3AhAA4AAAxLA AA@:AAAwAhAAPAKAAhAAAA AAA* AAPA AAAvAAAAAAXA(AAжAAAAAAxAOAAAAApAqAA03A@AX=A8@A|A@AA@A8A@APA @A8mA@A(KAW@A)A@A!A&@AA@AAKAAAAA0AE@A AAAZAAA<AAAh3AhAAdA@AA@AnAܒ@ATmA@A\cAs@ATA@AHA@A?A@A0A@A+Ac@A+A#@ApA@AAѪ@ADA@AA,@AAV@AA|@AA@AA=@AШA@AlA@AAh@AA@A~A@A\zAK@At)A!@A%A@AXAn@AA@AA@AAp@A|A@AA@A8A2@A0A@AAN@A(A@AP"A8@A%A@A$A@Ad7A @AGAD@AIA1AAT`AaAAA AAȚA. AAA AAxA AAA AAhAAAA,AAAAAxAAAA;@AA@A2A@A\IA@AJAR@AEA@AAA@A@jA@AvA@A\A @AA@AآA@ApA@AAw@AAX@AıA@A A{@AA)@AA@ATA@AA@A<A@A0AC@AA@A A@A@@A@ADA@ATOAi@AiA@AA:@APA@A̛Ao@AA @AA@AA@AA@AA@A0Ac@A A2@AĴA@AhA@AA@A A~@AԛA6@A؏A@AAAAAYAA̒AAAXAAAAAAHA AAA AAA/ AAAg AAA AAAAAAAAAAAA1AAA@AAH@A\A@AtA@AAl@AA+@AA@AdA @AhA@A1A@AOA)@AX_AQ@AtdA@AdmA@AmA@AxuA@AwA@AdA@AsAAAprAAAhqAAAhAAAxA AAAL AAA AAėA AAA]AA AHAAARAA\AO AA<A\ AAAQAAAAAPAHAAA AAAAALAAAARAAA'AA\&A AA.A AA=AAAuA1AAAAAALAA\AAA<AAAA=AAAAADAbAAAAATAAAA@AAAAx"AuAA5AAA>AAASA*@AiA@AtqAAAHAO@A(A[@AA@A A@AA@AA@A$AE@AAF@AıA5@AdA2@A(A@AA:@AAz@AIJA.@AA@A0A@AA@AA@AA>@AA@AA@AA@AlA@A,A@AD An@AA@AA@AAg@Al A@A%A@AL3AU@Al7A@ATNA@AXA{@AiAf@AoA_@AyA(@A|A@AvAE@A0dA@AaAm@A4[A@AXA@A_A$@AdcA@AmA@A4yA @A|A@A\xA@AA{@AA@A AM@AdA»@AA@AA@AبA#@AxA@A A+@AAD@AA@A AƮ@AA]@AA@A`A@A(A@AAɩ@ApA @AA@AtAB@AA@AA@AA:@AAm@APA@A A@A AI@A(A@AA7@AA"@A AA@AA@AAc@AA@A4A3@A̶Az@A@Am@AAˋ@AA@@A4A@A@A@AA@AA@AA@AxA@AA~@AA1{@AAy@AAVx@ALAy@A8A/}@AA }@A\Az@AAJz@AlAx@AAnx@A\Aw@Ah!Aw@AArv@AAAr@AAq@AAp@AAq@ApAn@AXARm@AAOl@AtA'j@AAi@A4Ah@AAh@AHAWh@A<{Ah@AvAh@A]Aj@AYAj@AxQAi@ADFAh@AAArh@ADCAgf@At9Af@AdAcf@AAf@AAi@AAi@AAj@AACk@A$Al@AAn@AAn@AAn@AAm@A Akn@AAn@AAwm@A@A_k@AAj@AAKj@A0Ak@AAk@AAk@AyAl@A$wAzk@AnAi@AZA6i@AHWAi@AX@ASi@AD#Ak@AT6An@AAAr@ApCAs@A$EA;t@ALAu@A.As@ApAt@A@AJt@A Aq@AAr@A8Ap@A$Ar@AAlq@AԙAMm@AdA\l@AxAk@Ad~Aj@AhAmk@AdAl@AL_Al@A\Aj@A(UAj@ABAk@AH?Ak@A1Al@A,AZm@Ax%AYl@AAk@AHAk@AdAih@AA[e@AAd@AAAd@AhA-b@AAa@AAc@AгA_h@A,Am@ĀAm@AԌAUh@A$Apf@AtAWf@AA&g@AAg@AlAIo@AXA.r@AMAr@AHATs@Ah=As@A4A{s@AGAsr@AIAq@A3Ar@AAr@AAs@AAr@AAss@AAt@AA y@AAy@AA@AxrAe@A@lA[@AbA@ARA@A8AӃ@AA2@AA׆@A@A@AA@AdA@AWDOAn)@AZAAAl}A,@ADxA,@AmAn-@AdA,@AlAA-@A<A,@A7A,@A'A4-@AhA,@AAG-@ATA,@AA*,@A0A,@AlA-@AHAv0@A4A0@AA1@A`Ax2@AܩA 3@APA3@AxAR4@AA4@A Ad6@A,}A7@AA9@A A;:@AA:@AA$;@A0A;@AȟAc>@AA@A@AAB@AASB@A|A@@ApAI@@AjAA@AeAA@AVAA@AHUAB@ANAFE@AEAF@AA\H@A4!AI@A'AN@A,A7N@AX=AQ@ABAP@A8KAQ@A(IAHS@AGAS@AEA U@A=A4Y@AT<AY@ABAY@ATdAY@A8qA/\@AoAf]@A [Aa@AiA b@AXoA(c@AdkAd@AyAf@ADwAg@A`AIj@AJAk@A9A/k@A2Ai@AANh@A4Ag@AAe@ADALb@AA9f@AAg@AlA3g@AAj@AAmk@AAm@AAfn@AA]q@AAq@AAr@A8A6u@A8Au@AAt@AlAu@AAw@AAx@AA|@AA$@AA@AA@A A$@AAʆ@AAz@A{A@AwA.@APyAT@AA@A}A@A~A@AHA@AA@AA2@AA@AAƖ@AA @AA@A(A>@A@AH@AA<@AA@AA@AA@AA@A|A@A̶A#@A8AN@AAG@AخAc@AܟAK@A$A@AjA@AdA@AfA@AdA@ApA@AAֱ@A$A۱@AAz@AA@AA$@AA<@AA@AAѻ@AA.@ALA@AHAE@A A@AAj@AA@AA@A0A@AlA@A@A7@AA@AhA@AtA`@A(A@AHA@AdA{@A@AE@AA@A̸AJ@AA@AA@AA@@AAE@AA@AhAI@A܇Az@AA=@AAK@AA@AԵA:@AA@A\A@APA@AtA(@AA@AA@AA@AA@AAb@AܥA?@AA@A(A|@AA@AإAG@AA@ApA@A8AJ@AA@ALAQ@AA#@AA@AA@A<A3@AA@AXAh@AȑA@AAT@AA @AAP@A A@AA@A_A@AaAb@AYA@AXA@ApeA@AA!?A@Am?A8AE?AD@Aa?A=A?A?A ?APA"?AljA?ATpA@ADmA @AcA@A`AA@A(tA@AxA@ALhA@AkA @AkA} @AcAz @AeA @AgA@AsA@AA @AA @AĢA @A`A @AA@AA@AA@ApA@AAh@AA@AA<@AA=@AA@AA@A Ak@ATAO@AA@ApA@AA @AA#!@AA%"@A\A"@AA!$@AlA @AĢA!@ApA#@A0A$@ATAH%@AwA}'@ArA'@AtqA)@A(}A+@A0uA;.@AA0@A,A0@AA1@AA 4@AmA%8@AlvA 9@A |AT9@AA9@A\Ab:@ApAc;@AA=@AЇAT?@AAYA@AAXB@A܃AB@AAD@A8{AE@A,rA[H@AfAH@AbA8I@A$dAJ@AL^A\K@AT\AK@AaACL@A@mAN@AAO@AhAO@AAP@AA6Q@AA A*A@AA A8?@AR9 A=@AD Aj<@AK A:@AS AV:@AS A8@AW A8@ATY A6@AjR Aq5@APO Ac3@AxT A2@AU Ab1@AV A0@AZ A@/@A] A.0@Ae A/@A"f A-@A0o A ,@Ai A(@Ak AW'@A4k A&@Ar A#@Ao A"@Avk A @AFi A@Ahk A@A.l A@@A| A;@A~ A@A AC@A A@Aڃ A@AT A@A } A@Aw A@Aj A@A` A@A^ A{@A_ A"@A"Z A@A\ A @A@h A @ADo AR @A$q A @AZv AR @Aƀ A{ @AB A @A A @A A @A8 A3 @A A @Aؠ A @A( A @A A @AΠ Ag @A" A'@A. A@A AR@A A@Az A0@A A%@A A@A$ A@Ad A^@A A@A A~?A A?A A7?AС A;?A A ?A AP?A A?A̴ A(?A A2?A2 A?A A[?A An?A AA?A. A?AZ A?A A?A( Aj?A A?AJ A-?AL A?Aj A?A A?A A?A!A?A~!A?A!A?AH!A?Ab!A?A!A"?A$!AK?A+!An?A+!A ?A.!A?A~!A?A@:!A?Ax:!A?AC!A)?AE!Aͳ?AE!AR?AHJ!A?AK!A?AF!A>?A:!Aѫ?A8!A?A^6!A@?A)!Aۧ?A@$!A?A!A?A!Aa?A!A~?A!Ak?A8!A?A> !Ah?A !A?A!Av?AN!A=?A A,?Ad A?A Al?A A?Al A?A A?A` AF?Ax A[?AN Ax?Av A*?A> Aŏ?A A?A Ah?Al AQ?A& A?A A?A A~?A A?A A~?A Av?A| A|v?At At?Am A3v?Aj Atv?A[ Az?A[ Aw?A X ALu?AL A+t?AK Apu?AvL A&y?AI Ay?APE Ae{?A@D Akx?A@ Au?A4 Au?A4 An?A+ Ag?AL) Ajh?A"$ Ak?Ax Ak?AN Arj?A Ab?An A=b?A. Aj]?AN A,]?A A\?Ax AZ?AtAP?AdAQ?AܚAD[?AAY?AA W?AAU?AAU?AȆAJU?AAaQ?A(AK?AtuAJ?AxrAgG?AYht8)AAAO-A RBAJ-A.BA-AM-BA-A$-BA-A+BA*-A*BA--A*BA/-A*BAp1-A)+BA;-A,BAt=-AP-BAE-A,BAC-Ar*BAD-A)BAJ-AI)BAN-A['BAO-A&BAM-A$BAC-A$BAA-A#BAC-A!BA,<-A<BA<-ABA;-A.BA:-ABAp8-AxBA5-A9BAf--AjBA.-ABA*-ABA%-ABA-A BA!-A` BA -A BA-A BA -A4 BAB-ABA-A7BA@-AWBA-ABA,-ALBA&-AAAD-A[AA-AAA-AAAx-ALAAz-AAA-AAA$,A@AA,AAA,AAA ,AAA,AAAv,AAAt,AAAZ,AAA,AwAA,A~AA,AiAA,A`AA,AAAB,AAAN,AaAAB,AxAAR,AAA,AIAAb,AAA,A"AA ,AAAj,AAA,AAA*,A)AAt,AAA,AAA,AAAr,AhAA ,AAA,AAA,AAA\,AzAA,AAA ,A"AA@,AAA,AvAAn,AڿAAо,AoAAz,AAA,AAA,AAAV,AAA,AFAA,AAA,A%AAN|,AAAZz,AAAp{,AAAz,AAADw,A,AAZ[,A~AAZ,A;AAY,AAAV,AcAANJ,A@AAHF,AjAAC,AAA>,AFAA=,AAA <,AAA9,A3AA1,AAA#,AAA,AAA,AAA,AAA,AAA* ,A"AAN ,AMAA,A?AA,AAA +AAA|+ADAAB+AAA+AAA+AAA+A AA+AAA+A$AA*+A3AA+ATAA+A\AA+AAA4+AAAl+A2AA~+AAA+AAA0+AAA}+A`AAz+AAAd+AYAA[+AcAAHS+AVAATJ+AAAH+AVAAHB+AAA@+AAA|;+ApAA8+A{AAL4+AAA1+AAAv)+AyAA&+AJAA#+AfAA +AAA|"+AAA!+AAA+AAA +AJAAl +AAAz+AAA+AAA+A@AA+AqAA@*AAA+AAAP+AAA+AAA*AAA*AAAf+A{AA,*AAAR*AAA*AAA*AAA*AYAA**AAA*AfAA^*A9AA8*AAA*AIAAl*AAA*AAA޴*A**A[AA**AAA#*AHAA#*AAA#*AAA*AAAF*A0AA *AAA*AAA *A[AAz*AAA)AeAA)AAA)AAA)AHAA,)AAA0)AJAA)A&AA)AAA)AAA)AAA)AkAA)AAA)AAAF)AAAR)AAA )AAA|)AAA)AAAt)A_AA)AAA)AWAA8)AAA)A-AAd)AAA)AAA@)AAA)AAA)ABA*ALBA*ABA *A)BA8*ABA)A(BAV)ABA,)ABA)A$BAD)A BA)Ac BA)A} BAV)A BA)A+ BAJ)ABAf)ABAN)ABA)AHBA)ABA)ABA8)ABA)ApBA)A|BA)A"BA)A BAĆ)A*"BA.)A"BAd{)A"BAv)A#BAbh)A#BALg)A"BA`)AY"BA@W)ABA&M)A'BA0L)ABAG)A BAPJ)A"BAG)A$BAFI)A"%BA)A6BA)A 6BAޚ)AW5BA)A5BA)A4BA)AW6BAx)A*7BA2)AD7BA)A7BA)A5BA)A7BA2)A8BAd)A#:BA.)A^:BA)A;BA)Ab=BA)A>BA~)A>BA)Ap=BA)A=BA)A >BA)A}=BA)AN=BA)A|K*A'1BAP*A0BAZ*A1BAH`*A%6BABZ*A7BAj*A7BAm*A7BA j*A5BA +A1BA+A_2BA+AY2BA+A1BA"+AA3BA**+A3BA,+A3BA1+A<8BA7+A7BA":+A9BA A+A:BAD+A9BA4H+Aq5BAU+A4BAX+A 4BAc+A4BAe+AG4BAg+A4BAjh+A4BAo+A5BAx+Ao4BAt+AN3BAt+A=2BAv+A1BA{+AX2BAd~+A2BA+A1BAl+A,2BA+A5BAT+A6BA+A7BA+A7BA+AK6BA+A6BAܬ+Af7BAP+A7BA+A7BA+Au7BAt+A9BA+A9BA+A:BA+A_;BA+A:BA +A:BAX+AC8BA<+A8BA+A=BA6+AJABAn+AFBBA<+ABBA +ACBA+ACBA+ACBA+ADBA+ADBAv,ADBA,A|BBA,A@@BA ,Ar>BA ,AM,A9BA@,A9BAjA,A8BALM,A8BA"Q,A6BAV,A6BAY,A7BAv\,A6BA\,A5BArc,A7BAm,A5BAs,A9BA$t,AF:BA$,A=BAn,A>BA$,ABAj,AZ?BA`,A8@BA*,AABA,AGBA,AHBA,A2IBA,AIBA,A%JBAD,ALBA,AzMBAZ,AMBA,AWNBA -AMPBA$-APBA-APBA-A RBA-AOBA -AOBAP -A0PBA-AOBA -A.MBA -ALBA-AKBA-AKBA-ABIBA-ADBA|-ABBA-ABBA-AABAV-ALABAT-A>BAP-AE>BA -A;BA-A?:BA -AQ9BA -A8BA -A/8BAr-A7BA-A6BA -A4BAP-A4BA-A3BAt -A1BA -Aq0BA-A.BAZp{#A:AA(&A%BAK(#AAA#ABA#A'BA#ABAN#At BA#A BA#A> BA#A BA#As BA#AABA#A1BA#ABA0#ABAd#ABA,#AFBA$#ABAX#ABA#ABAZ#ABA`#AVBAF $A BAt $A\BA $ABA4$ABA$ABA8$ABA $ABA#$ABA2$A{BA3$A! BA9$ABA:$ABA?$A]BAHC$AMBAF$AABAJ$ABAK$ABAJP$ABAR$ABA^$ABAa$ABAe$ALBAjj$A* BA m$Ao BAr$Aj BAvs$A!BAĀ$APBAz$ASBA$A BA$AdBA$A0BAp$AnBA$AwBA$$A BA$A BA$ABA$AXBAx$Aw#BA$AY$BA$A %BA@$A%BA$Ae#BA$AW#BA$AK#BA@$AN BA$ABA$ABA0$ABA$ABA$A BA&$ABAp$AlBA$ABA$ABA$ABA0 %ABA %AvBA. %ABA0 %AABA%AiBA%ABA|%AYBA$%ABA"%AQ BA2%A BA*5%A' BA9%ABA:%ABA:%AgBA,%ABA-%AgBA/%ABA1%ALBA28%ABA9%AAA2%AAA!%AKAA%AAA'%A AA**%AAA*;%AAAB%AAAE%AAA"J%A+AA@K%AAAP%AAAT%AAAU%ASAAc%AAAxd%AAAd%AAA(g%AvAAk%AAAt%AAArq%A AA%AAA^%AAA%AWAAЀ%AAA%AeAA%AAA^%AAA%AAA%A4AA%APAAj%AnAAΝ%AAA%A AA%AAAP%AAAl%AGAA%AAA%A%AAJ%AXAA%AAA%AMAA~%AMAAڰ%AAA%AAA%AdAAB%A`AAx%A&AÿAA"&AAA&ApAAh&AAAj&AAAF&AbAA8&AkAAj&AйAA^&AhAA(&AAA>&AAA̵&AAA&ABAA&AAA&AAA&A AA2&AAA&A2AA&A(AA2&AȧAA(&AAA&AAA&AAA:&AʠAA&AAA&A؟AA&AAA&A/AA.&AAA*&AKAA&AAA&A6AA&ApAAʶ&AAAl&AAAԫ&AAAЪ&AAA4&AҒAA&AqAA&AAA|&AAA&AAA&AAA &AыAAִ&A&AAZ&AAA,&AAA&AlAAF&AdAA&AAA&AAA&A'AA&AAA&AzAAr&AzAA&A'zAA&ABzAA&AyAAj&AuAA؏&AsAA<&A_sAAj&AoAAl&A7oAA&AoAAV&AnoAA{&AmAAw&AlAAy&AkAAz&AkAA@v&AjAAzt&AiAAs&AhAAh&A gAAe&AgAAf&A eAAd&AdAAe&AcAAf&A^cAAh&AbAAi&AaAAf&A_AArh&A<_AAi&A_AAl&A^AAn&Av]AAi&AWAAg&A)WAA:c&AWAA`&AWAAb&A`VAA]&ATAA[&A2UAAU&AVAA$S&AUAAT&AKUAAT&A SAAU&AgRAA&O&APAAJ&AOAA"K&ANAAW&AHLAAR&AyJAAS&AIAA^&AIHAAc&AHAAXc&AFAA_&ADAAd&ACAAd&A@AA:a&A@AAR&A!AAANM&A@AAA&A@AA>=&A>AA7&A=AA@6&A;AA1&A:AAX&&A:AAt&A%AMAA%AYLAAt%A;MAA|%AkNAA&|%ANAAz%APAAt%ARAAk%ASAAi%A6TAAg%ASAARc%ATAAe%A{VAAf%AWAAve%AWAAc%AWAAX%AbWAAK%AXAAH%AXAAE%AXAAbA%AYAA@%AZAA:%A [AA48%AZAA3%A*YAA0%AZAA-%AYAA,%AZAAX)%Am^AA)%A^AA(%AS_AA+%A3aAA(%AbAA%%A0bAA%AbAA|%AReAA%AeAAX %AfAA%AgAAJ%AhAA%AmAA$AYoAA$A%oAA$A%oAA$A`nAA$AfAAx$A`AA$A`AA0$AObAAb$A%bAA$AbAA$AAdAAR$AcAA$AcAA$AcAA$AcAA$AcAAB$AUcAA.$AaAA $A?_AAj$A^AA$A\AAD$A>[AAH$A[AAț$A]AA@$A_`AAr$A`AA,$AaAA}$AbAAw$A_AAn$A_AAvi$A"_AAr`$A__AA_$A`AA*N$AfAAZC$AfAA?$AeAA7$AOeAAJ5$AfAA-$AgAA&$A.jAA$AjAA$AjAA$AoAA$AqAA $ArAA~$ArAA$AsAAd$AsAA $AItAA#ArAA#ArAA#AIpAA*#AuoAA#AxnAAF#AnAA#AmAAj#A pAA#ASpAA#A qAA#AhqAAx#AAA*#AAAJ#AZAA(#AAA[Jl,AQfAAY-AFAAb,AoAA,AmpAA,A,AsxAA|,AxAA,AxAAr,AxAAP,AIzAA,A{AA,A }AA,A}AA,AD~AAL,A&AA,AAA,AAA,A-AA,AAA,AR~AA,A^~AA,A^~AA,A}AA,A ~AAR,A~AAL,A.AA,A|AA*,A8AAl,AAA,ÃAA^,A AA`,AAA,AAA:,AAAp,AOAAt,AAA ,AAA,AAA6,A%AAb,AAA~,AXAA~,A͍AA,AAA̅,AAAt,AAAl,AXAA6,AAA,A~AAz,AHAA,AהAA{,ANAA|,AuAAx},AAAN|,A|AA{,A*AAu,A[AA,v,A\AAZn,AyAAn,ANAAm,AAATm,AAAJl,AAA^s,AAAFu,A AAV{,AAA,AAAp,AٶAA,AAA,AFAAV,AAA,A߷AAx,AYAA:,AAA,AAA*,AAAV,AMAAv,AAAT,AAAh,AAA&,AAA,AdAA,AAAD,AAA:,A}AA2-AAA-A!AA-AרAA-A7AA@ -AAA -AAA-AAAJ-AAA@ -AAA^ -AAA-AʟAA-ALAA0-A3AA-AKAA*-AAA-AAAT-AAA-AAA:-A"AA-AϖAA-A(AAP-AAA -A AA> -AyAA -A͔AA-AuAAF-AAA\-AAA-AAAH-A#AA-AAA-A:AAd-A͋AA-A׊AA -A]AA> -A AA -AAA-AAA-AvAA-A7AAj--ALAA--ALAA/-AAA4-A#AA45-AAA5-AaAA6-AAAV9-AAAb:-AAA>?-AkAA(C-AAAB-A܂AA6C-AˁAAB-AGAAJG-AAAJ-AAAO-AjAAQ-AAAR-A~AARU-A}AA2V-A}AAW-Ai|AAY-A{AAV-A6xAA:S-AwAAP-AvAAH-AuAA?-AuAA5-AsAA&-AQuAAX-A~uAA-AWvAA-AHvAA,AsAA-AqAA0-AoAAn-AEoAAh-ArnAA-AmAA-A|mAA"-AjAAp-AiAA,A{iAA ,AfAAL,A`fAAp,AQfAA,AfAAF,A+iAAf,AcjAAH,A kAA,AkAA ,AmAA,AnAA,AoAAb,AoAA\\!A BAN"AuBAN"A.LBA|"AJBAV"AJBA,"A JBA"AJBA "AHBA6"AGBAp"AhCBAJ"AYCBA"A=BAر"A=BA$"A.!ABAX~!ABAF!ABA{!AlBA~~!ABAP!ABAV!A)BA\!ABApy!A5 BAz!A BA!AF$BAL~!A$BAv!Ag%BAVt!A%BAd!AX%BA.d!A'BAa!AB'BAi!AK)BAh!A.,BAk!Ab-BADi!Ay-BAe!Aa.BAd!A(0BAc!A0BA_!A1BA\!A@2BA]!A4BAc!A5BAnf!A-6BA*g!AK9BA2q!A>BAr!AJ?BAx!A=@BAvz!A?BA!A,@BA!AABArw!AABAPg!ADBA`i!AGBAt!A&GBAw!ATGBA!AEBA!AFBA!AtFBA~!AFBA!AHBAj!A%MBAn!AMBA.!ANBA!A{OBA!APBA.!AQBA"!AQBA֮!ASBA!AUBAܥ!AUBA!AUBAh!AVBAơ!AXBAZ!AYBAL!AYBAn!A[BA`!A\BA!Ar\BA0!A ]BAd!A]BA2!AHaBA"!ASaBA!AbBAޭ!AbBA!AbBA!AbBA!A%cBA!AbBA!AjbBAF!A%eBA!AdBA,!AEdBA!AeBA!AhBAf!AhBA!A\iBA!AjBA!A\mBA2!AmBA!A{nBA!AmBA!AmBA!AnBA!AoBA!AqBA$!ApBA!ArBA0!AyqBA!A&qBAj!AtBA!ARuBA!AuBA"AuBA<"AtBA"AuBA"AuBA"AtBA"AsBA "ArBAR&"ArBA&*"ArBA,"AqBA0"ASoBAp."AnBA,"ANnBAL."AlBA;"AnBAB<"AlBA<"AkBAC"AlBAFF"A*pBAJ"AipBA.L"AoBAQ"AgnBAW"AQnBAY"AmBA_"AroBAb"AoBAb"A;lBAc"AkBAc"AkBA(c"AiBAJl"AiBAVz"A.kBAz|"A jBA6|"AdiBA"AjBA4"AjBA"AjBAn"A jBA̎"AhBAP"AhBA"A3jBA"AdkBA"AkBAX"AkBA"AkBA"AkBA"AmBAF"AmBAf"AkBA޷"AiBA"ANhBA"AlgBAL"AfBA"AfBAn"AeBA"AVeBA "A8eBA`"AcBA"A0cBA"AcBA"AcBA"AIcBAN"AMaBA"A`BA."A`BA$"A^BAb"A_BA"At_BAh"A^BA"AE\BA<"A[BAD"AZBA"A#WBA\"AVBA0"A'VBA:"AmTBAƼ"ASBA"ARRBA8"AQBA"A&OBA\"AtNBAN"A.LBA]!AkBA(O"ABAm2A"AdBAD"A6BAN"ABA(O"AҗBAJ"ABA2I"AqBA6G"ABAZF"A~BAbD"A>BA`B"ABAC"ASBAE"A$BAC"ABA<"ABA:"ALBA1"ABA/"APBA#"ABA "AyBAf"A؋BA""ABA"A\BA"A&BA"A҆BA"ARBA8""AłBA,%"ABAT%"ABAh*"AjBA 2"ABA4"A_BA8"ABA$;"ABA@"ACBArB"A BAJ"AcBAL"A~BA K"A2~BAG"AZ}BAjE"Ag}BAH"A)|BA:H"A{BAvG"AzBA.E"AxBAfG"AgxBA@I"ALwBAE"AtBAD"A tBAA"ArBA\A"ApBAFF"A*pBAC"AlBA<"AkBAB<"AlBA;"AnBAL."AlBA,"ANnBAp."AnBA0"ASoBA,"AqBA&*"ArBAR&"ArBA "ArBA"AsBA"AtBA"AuBA:"A=wBA"AwBAR"AdxBA"AyBA"AzBA^!AzBA!AH{BA!AO~BA~!A~BA!A ~BA!Au~BA!AeBA!A~BA!A)BA!AwBA!ABA!AABA!ABAX!AfBA!ABA!A?BA!ABA!AFBAf!APBA!ABA!ABA"!AÌBAT!ABA!ABA!A̐BA,!ABA"ABA "ABA "AsBA"ABA"A BAP"AtBA"ABA"AgBA("ABA$4"ABA6"ABA2A"AdBA^3"A|BA"AtBA}|"ACBAZ|"ABA{"A$BAz"ANBA8x"ABAt"AsBAs"ABAr"AnBAm"A=BAb"AVBAN`"ATBALX"AOBABN"A>BAK"A;BAH"A+BAE"A$BAC"ASBA`B"ABAbD"A>BAZF"A~BA6G"ABA2I"AqBAJ"ABA(O"AҗBAN"ABAD"A6BA2A"AdBA6"ABA$4"ABA6"A1BAz4"A?BA3"A̝BA7"ABA9"AfBA="ABA"B"ABAH"ABAJ"ABA"L"AuBAM"ABA R"ABAV"ABAY"AHBA]"ABAv`"ABA0c"AѠBAf"ABAg"ABAi"AyBAu"ABAx"A.BAy"AzBA}"ABA"ABA@"A BA؍"ALBA"ABA"ABA"ABA "AÞBA"ABAƪ"AΠBAv"ABBAZ"A]BA"A"BA"ABA"ABA"A&BAV"ABA"AgBA"AtBA"ABAd"AӦBA"ABA"A~BA"ApBA"AyBA"AÛBA"A*BA""ATBA"A)BA"AlBA:"ABA "AyBA "ABAP"ABAV"ABA"A&BA0"ABAF"A֍BAx"AZBA"AjBA<"ABAp"ABAV"AnBA"ABA"ABA"ABA"AoBA"ABA"A]BA"ABA"ABAV"Ah~BAV"A|BA"A~BA"ADBA<"ABA"ABA"AۄBAķ"ABAB"AqBA "A-BAp"ABA"ABA"A^BA2"AIBA"ABA"A_BA"AMBA"A_BA."ABA~"ABAN}"ABA|"ACBA_A"A0cBAl"ABA} "A8eBA"AVeBAn"AeBA"AfBAL"AfBA"AlgBA"ANhBA޷"AiBAf"AkBAF"AmBA"AmBA"AkBA"AkBAX"AkBA"AkBA"AdkBA"A3jBAP"AhBA̎"AhBAn"A jBA"AjBA4"AjBA"AjBA6|"AdiBAz|"A jBAVz"A.kBAJl"AiBA(c"AiBAc"AkBAc"AkBAb"A;lBAb"AoBA_"AroBAY"AmBAW"AQnBAQ"AgnBA.L"AoBAJ"AipBAFF"A*pBA\A"ApBAA"ArBAD"A tBAE"AtBA@I"ALwBAfG"AgxBA.E"AxBAvG"AzBA:H"A{BAH"A)|BAjE"Ag}BAG"AZ}BA K"A2~BAL"A~BAS"A~BAX"A:BArZ"A~BA]"A~BA_"A~BA b"ABA$n"ABA|p"A=BAu"ABA`"AsBAt"A~BA"A;BA"ABA:"AǁBA"ABA"AÃBA"AIBA6"ABA"A'BA0"A3BA"AMBA"ABAd}"A˂BA}"AcBAN}"ABA~"ABA."ABA"A_BA"AMBA"A_BA"ABA2"AIBA"A^BA"ABAp"ABA "A-BAB"AqBAķ"ABA"AۄBA"ABA<"ABA"ADBA"A~BAV"A|BA"A|BA"A_{BA"AzBA"AzBA""AyBA"A.yBAX"ACwBAz"AuBA"AuBAl"ArBA"ArBA"ApBA"A&oBA"A;mBA"A}lBA"AjBAZ"AhBA"AgBA"A"gBA"A%fBAR"AeBA|"AdBA$"AydBA"AcBA"AcBA"A0cBA`"AcBA "A8eBA` Pޯ ABA"ABA'"ABAR"ABA"ABA"ABA"ABAh"ABA"ABA"A͛BA"ABA!ABAP!ABA!ABA!A͞BA!ABA !ABA!ABA!A_BA!ABA!AnBA!ABAh!AŪBA!AѨBAF!ABA!ATBA!A%BA!A&BA!ABA!A1BA"!ABA!AXBA!ABAf!ABA֑!ABA!ABAr!AbBAr!ABA{!ABAv!ABAVu!A-BAp!APBAk!ABA j!A2BA"]!ABA^!AְBAr\!ABAZ!APBAL!ABAK!A%BAH!ABA?!ABA>!ABAj@!ALBA>!AcBA&:!A-BAjA!ABAZB!AgBA@!ABA4!ABA<4!ABA2!ABA*!ABA%!ABA!ABA!ABA!ABA!ABA2!AsBA: !ABA!AĴBAv!AJBA!ABA A|BA ABA ABAr ABA A԰BA AVBA0 AhBA AJBA AUBA ABA A#BAL ADBA| AѸBA ABAR A>BA ABA ABAޯ ABA AyBA: ABA ALBA ABBA~ ABA ABA AQBAl A)BA6 AyBA ABA2 AEBA" ABA A5BA ABAt APBA ABA AnBA ASBAr ABAl A2BA ABAf A:BA ABA ABA< ABA ABA ABA\ AHBAB ABA ABA A'BAr ABA A8BA ABA" ABA ABA!ABAb!ABA>!A:BA!AABA!AnBA!A)BA|!ABAp!A7BAX'!A/BAx/!AiBA2!A9BA1!ABAj3!ABA9!ABAjE!ApBAH!ABAhI!ABAL!ABAL!A7BAi!ABAk!ABAw!AjBAdz!ABAL!A2BA!ABA!A=BAX!ABA!AOBA !ABA!ABA!ABA!ABA!ABA!ABA|!ABA޽!ABAҽ!ABA.!AkBA!ABAZ!ABA!ABA!A6BAZ!ABAX!ABA!ABAF!A\BA!AYBA!A"ABA@"ABAD"ABAG"ABAY"AkBA["ABAb"ABAjd"ASBAp"AGBAy"ABA "AiBAx"ABA"AyBA"AaBA"ABAD"A BA"AkBAޝ"ABA"A7BA"ABAة"ABAZ"AOBAX"ABA"AٽBA"ABA"AdBAt"ABAp"A BA""AGBA"ABA"AMBA"ABA"AںBA"AܸBA "ABBAP"A.BA"ABA"ABA"ABA"ABAn"A߰BA"A]BA"ABA"AjBA"ABA8"ABA4"A7BA"ABA"ABAV"ABA"A&BA"ABA"ABA"A"BAZ"A]BAv"ABBAƪ"AΠBA"ABA "AÞBA"ABA"ABA"ABA؍"ALBA@"A BA"ABA}"ABAy"AzBAx"A.BAu"ABAi"AyBAg"ABAf"ABA0c"AѠBAv`"ABA]"ABAY"AHBAV"ABA R"ABAM"ABA"L"AuBAJ"ABAH"ABA"B"ABA="ABA9"AfBA7"ABA3"A̝BAz4"A?BA6"A1BA$4"ABA("ABA"AgBA"ABAP"AtBA"A BA"ABA "AsBA "ABA"ABAah@I@AuA'AA (EtT bA@A^Aδ@ApNA^@A BAj@A,A@AHA@A@@A@@A@׮@A`@@Aw@@A o@Ȭ@An@+@Au@@A0@@A@@A@)@A@w@AE@@A@n@A@@A`@4@A0@@A@@A`@ܵ@ApA@Ap-A@Ap9A @AIA@A\A+@A`A@AgA@A(pA@A(pA@A8pA@A8sAA@AuA@A`pA@A0lAV@AbA@A @@A@@A@@Ap@@A@@0@A@@AЬ@@A`@@AP@Ւ@A0@@A@@@A0@@A@@@A$@@Ap&@ @A (@@A'@@A )@@A-@@A3@Ē@A9@@A;@W@A 3@@A02@@A@ב@A@Ƒ@A0@@A0@@A @@A]@@AG@@A@H@A @@A @ @A@O@Ay@,@A >@@AV@@A+@@A @@A@[@@A@M@@AD@O@A^@@A@Z@@Ab@@Aw@@A@@A@\@A @.@AQ@}@A@w@A@@A7@@A\@@Aq@@A@@A(@@A@n@`@A@@A`@@A`@@A`@ @A2@y@A`u@@A@@A]@7@A`@@A @0@A@@A`d@x@AP@A@A@5@A`@@A @@A]@@AL@$AAG@$AAl@+%AAy@h%AA@%AA@%AAx@&AA@R&AA@X&AA@n&AA@{&AA@&AA%@&AA*@&AA@9@ 'AA5@B'AAO@Q'AAy@J'AA@~'AA@m'AA@s'AA@@`'AA@'AA@~'AAD@'AAL@'AAL@'AA.@h'AA@/@U'AA@@G'AA@+'AA@*'AA@#'AA@@ 'AA@&AA@@&AA@&AA@ @&AA @&AA@@y&AA@!@t&AA6@~&AA@<@s&AA7@_&AA-@Q&AA@!@R&AA@!@:&AA@,&AA@ @$&AA@%AA@%AA@%AA@%AA@%AA)@%AA@w%AA@@R%AA@%AAL@$AAB@AA@AA@`AA@AA@AA@/AA@(AA @AA@AA@AAZ@AA@AA@OAA@8AA@AA(@AAx@AA@AA1@AA@AAAt@,AA*@UAAz@XAA?@SAA@AA@$AA@|AA@AA&@AA@fAA@AA@-AA4@AAR@\AA@!AA@ "AA@Q"AA!@r"AA@ "AA@"AAU@u#AA@c%AA@%AA@&AA2@%AA@Y%AA@@x%AA$@%AA@6@&AA@'AA@'AA@w@?'AA@7'AA@'AA@&AA@Z@L$AA@h#AA@@ AA@?@\AA@AA@cAAX@AA@@AA@@#AA@AA@yAA@AA*@AA@ AA@3AA@AAK@AA@d@AA@AA@@AA@:AA@(AA@AA@AAk@8AA@AAB@AA@I@A @I@Ay@FJ@A@t@>J@APg@J@A`N@J@A6@WK@A`!@K@A`@K@A`@K@A@ L@A"@#L@A0&@]L@A"@L@A"@L@A,@L@A@/@M@A1@+N@A1@N@A@/@N@A0@N@A5@N@A8@|N@A0>@cN@A@@@`N@ApD@jN@AG@{N@AO@N@A]@N@A^@N@As@P@Au@P@A`x@P@A}@P@A~@+P@A@P@A@ P@A@O@Ap@O@A@O@A@O@A@vO@Ap@0O@Ap@!O@A@N@Ap@N@A@N@A@VN@A@ N@A@N@A@N@A@@M@A@M@A0@M@A` @MM@A`@L@A@L@A0@(M@A@@&M@A@M@A0@L@A@L@A@L@A@wL@Ap@L@A@M@A@8M@A@QM@A@LM@A@@ M@A@L@A@L@A@L@A@xL@A@K@A@K@A@K@A@J@A`@rJ@A@?J@AP@PJ@A@@FJ@A@I@Ap@L@A@L@AP@L@A{@L@Apv@M@Ak@!M@AP_@M@Ap]@M@AY@M@ApR@M@AO@M@A`E@M@AA@M@A=@M@A=@M@AB@M@AE@,N@APQ@UN@AT@DN@A@Z@@N@Ad@@N@Ah@\N@Ai@lN@A@j@N@APp@O@APo@#O@Apj@AO@Aj@eO@Al@sO@APn@xO@Ap@wO@Aq@qO@Aps@\O@At@.O@A y@O@A@>O@Ap@1O@A@RO@A@O@AЭ@O@A@O@A@LO@A@LO@A @&O@Ap@)O@A0@2O@A@@uO@A@@O@A@O@A@O@A @O@A@P@A@JP@A@jP@A@P@A@P@A@(Q@A@@Q@Ap@dQ@A @Q@A@Q@A@@Q@Ap@R@A@8R@A@R@A@R@A@R@A@R@A@{R@Ap@lR@A@@Q@A@Q@A0@Q@A@Q@A @Q@Ap@Q@A`@lQ@A@]Q@A@KQ@A@1Q@A0@3Q@A @dQ@A@bQ@A0 @Q@Ap@qR@AP@~R@A@R@A0@R@A@S@A@S@A @S@A0@aS@A@JS@AP#@XS@A&@HS@A*@bS@A.@cS@A.@TS@A(@R@A,@R@Ap0@R@A0@R@A/@R@A0@R@A@3@R@A@;@R@A;@R@A ;@R@A@8@R@A9@R@A;@R@A>@zR@AP>@cR@AP3@R@Ap:@Q@A0:@Q@A7@Q@A02@Q@A/@tQ@A'@AQ@A'@6Q@A'@Q@A(@ Q@A.@P@A@0@P@A`2@P@A5@P@A<@P@AD@ Q@AF@ Q@A`L@P@A M@P@AJ@P@A@A@P@A?@iP@A7@{P@A+@`P@A+@OP@A.@AP@A`*@O@A%@O@A@O@A@O@A`@O@A @O@A@O@A @O@A@N@A@N@A@N@A@JN@A@=N@A@ N@A@N@A @M@A @M@A @M@AP@M@A@M@A@[M@Ap@hM@A@M@A@M@Ap@M@A@M@A@@M@A@M@A0@M@A0@M@A`@M@AP@M@A@@M@A0@M@A@M@A@M@Aн@"N@A@*N@A0@M@A@M@A @M@A@+M@A@@M@A@L@Ap@L@Ap@L@A@@A@*@Apf@@A@W@A@[@A@m@Ae@D@Ap@@A@0@A@@+@A^@S@APe@@A|@q@A@:@@A@[@@Ap@'@A @@A`h@@Aj@@A@c@@A@S@A@@3@A@l@@A@[@A@x@Ap@y@A@@Ap.@@A`C@(@A0@@A@r@A@@A@@A @@A`@@A@6@@A@@A@3@A;@s@A`@@A@@A)@٣@Aj@@Ad@y@APU@@A@C@A]@q@A@5@A`@.@A`L@@Ap@@A0x@ơ@A @@Av@.@A3@?@A@ܠ@Ad@"@A0@/@A@@A@@A@B@A@$@Ap@@A0O@U@A@@AR@@A@C@A@@Ap@@A;@@A)@Н@A(@ם@A@@AP @5@A@@A0@@A@|@A@@A@j@A @@A@@7@Ae@<@A@@A@A@A`@Y@AP@@A@@A@ڒ@Ap@@A@@A@2@Ap@X@A @@AP @@A0]@@A)@ˆ@A`,@@A=@@AT@Ѓ@A@o@(@Aj@z@AP@ x@A@Yq@AL@l@A@?@~k@A@kj@A@i@A@i@A @f@A@e@A @e@A @Zd@A l@d@A@@c@A@ob@A@a@A:@a@A @e@A@f@A@h@Ag@Ci@A@@i@A@@k@A@@Xl@A@n@A @o@A @s@A@xt@A@Iy@A @ @A @@A@@A`@т@A@@Ո@Ai@S@A@Џ@A@@@A @@A/@ݔ@A`@z@A@@A@&@Й@A@@М@A.@@A @)@A@^@A @@A#@@Ae@@A*@@A@@A@г@A@@A8@ߵ@A@u@÷@A@@@AI@&@A`@)@A @L@A@^@A@W@A@@A`@@A=@ɲ@A@@@A @@A@@y@A@@Q@A@*@e@A @@A3@ϰ@A;@d@A@@A @S@AF@@A@@@A`"@I@A @=@A@@A@@A@]@A0@m@A@@@A@@A@̦@AO@@A`p@j@A@^@A@@A@~@A@5@(@Ae@@A0}@:@A@@A@W@A@@A@@A@F@A@'@A@հ@A@)@A @ִ@AM@@A@@̶@A@@A@@A`@\@A@3@A@@A@@A"@@A@(@@A@B@A0@»@A @@A@<@A@@A@@A@V@AO@@A@2@@A@@@A@@A5@e@AI@)e@A@'a@A@A^@A@;[@A@Z@AP@W@Apd@dV@A"@+T@A0@Q@A^@TQ@AF@:Q@A@^P@A@`S@A@T@Aw@V@AE@_@Aд@b@A@@$g@A @h@AR@l@Ab@m@A @m@A@6n@A@O@l@A `@l@A@j@A5@e@Ab8@i>A@p?A`@>A@]>A@@p>A0@>A@D>AL@Ѿ>A`@h>A @>A@>A@Y>A@>A@>A .@>A@>A@>A)@Z>AA@A>Ap@)>A@>A@,>A0U@>A @>Ap @>A0@>A0>@>A0@>A0@.>A0B@>A^@6>A0S@o>AP0@$>A@0@p>A :@ >A0@>A@>A@h>A@L>A@S>A@>A0@S>Ap@>Ac@>A0"@>A` @G>A@>A@>Aj@>A`@>A@;@>A@z?A @?A@@?A@?A @ ?A 0@ ?A@?A@?A@@?A@?A@?AL@h?A@@%?Ab@'?A@1?A@:3?A@7?A@NA?A ^@KE?A@F?A@gJ?A@S?A@kX?AK@]?AU@s_?A@@-g?A_@i?A@Hj?A@|@n?A`\@p?Aw@p?A@p?A@p?Aw@n?A`@.n?A@j?A4@(g?A@@e?A@d?A`S@a?A`@^?A@]?Ap@^?AP@^?A@ ^?A@]?A@\?A@?@C\?AD@Y?APn@tX?A@VS?A@R?Ap@S?A@R?A@O?A0"@J?A`L@I?A@5??Ap@f>?A @<5?A8@4?AD@5?AJ@8?A@\=?A@??A+@>?A0@F?APN@VD?AW@jA?AB@??A@aA?A @"@?A@:?A@L7?A @6?A@4?A@@3?A0m@4?AS@7?A@9?A@::?AP@:?A@@v9?A@@;7?AК@2?A@z0?AP@,?A @%-?A@+?A@@X)?A@E(?A8@S*?A@#?A`@"?A@@?A@?A@7?A`@?A@)?Ap@?AX@ ?A@?A`@$?AP@>?A@?A`@?A@ ?A @?A@?A@/?AU@?A@)>A@>A@>A @2>A@>A@>APE@a>AP@>A@>A@>AP@>A0a@>A@+>A@>A@>Al@>A@l>Ap@ >A@J>A@@>A@p>Ao@i>A@>A@ >A`@;>A@U>A`@X>A@>A@>A@A>Ap@>A@@g>AP@7>AP@>A@>A@>Ap@>Az@>A&@Q>AB@>A@>A@i>A2@>AP@#>A;@l>AP?@>A @>A@>A`@q>ApN@>A@>A@$>Ay@>At@>A\@>A@<>AO@>A`@ >A@@>AP@j>A @>AM@a>A5@D>A@ @>A @>Ap@>A @>A`@>Ac@@O:AA=A`A;AخA;AA;AМAa;AzA;APMA;AAD;AxAz;AA;AAF;A|A;AwAi;AlA;A^A.;ARAc;AMA;A"A;AXA;A A;A A^;AHA;AA?;AxA;AA֡;AдAJ;A0A;AxA;A`A/;AA;A(Ao;A0AÕ;A@A:;A Av;AA;AAS;AAv;AXA;AA,;A{AHz;AnAx;AHhAu;AhAt;AxmAos;AxAr;A{Ar;A8zANq;A@qA?o;AmAn;AhA%n;AbAm;A0PAm;A9Al;A4A6l;A 1Ak;A .Aj;AAV;AA9R;AAM;AAM;AA[L;AA!G;AyA9;A\A8;AWAq8;AXTA7;A8RA7;AQAO6;ARA5;AX_A2;A0\A0;AP^A/;A(sAO.;AvA-;AzA3,;AhzAl+;APzA*;A(yA);AhA%;AVA\%;AQA$;AJA#;AIA";AHA(";AJAe!;ALA ;APVA;AWA;A WA9;AxTA;AXPA;AAq;A A;AA;A@E;A@;A@z;A@;A @ ;A@$ ;A@ ;A@ ;A@? ;AP|@ ;At@ ;Ae@c;A`B@(;AP9@S:A/@:A0'@U:Ap@S:Ap@:A @:Az@2:A`@:A0V@,:A@m:Ap@7:A@:APs@:AG@D:A@:A@H:Aм@R:A@:A0@:A[@:A A@:A"@Z:A@:A@F:A@:Ap@a:A@@:AV@:AK@:A(@:AP@!:A@ :Ap@:A@U:AP@:A @:AP@:A@s:Ap@:A @_:A@:A`@:At@:Ah@:AO@:A@:AP@:A@:A@\:AG@:A@:A@:A`@I:A@:A@j:Ap@}:Ap"@:A*@k:A g@(:A`w@X:A`@:A~@Y:Aq@:AS@:A`G@H:A @:A@:As@:A\@B:A W@:APV@W:ApL@:AP@:AP@W:A@L:A@P:A@:AP@:A,@}:A@P:A@:A@:A@u:A@@:A}@:AN@d:APP@:APf@:A@[@:APP@m:APD@8:AP@:A@:A~@h:A 8@:A@:A@:A_@:A &@:A@:A@:A@:A@:A@:A@:AP@^:A@:A`@:A@<:Ag@:A[@:APO@:A0C@:A:@c:A1@:A@:A@B:A@@:A@:A0@:A@:A@":Av@y:Ap@:A u@:A`@:A@:A@:Aн@:A@P:A@@:A`t@3:A@:A|@m:AP3@:A&@+:A`@:A0@:Ap@:A@5:A`@:A@:A@@j:A@T@:A?@?:A-@:A @:A`@:A`@F:A@:A@:A@}:A`@:A@@R:A@:A :@+:A!@:A@@:Aa@:A`I@:A`5@:A,@:A @:A @A:A@:A]@N:AI@t:A5@:A@4:A`@:A@:A@&:A @l:A@:A@:A@Q:A @:A@:A@:A`@:A@O:A@:A@F:A @:A`h@N:A R@:A&@-:A@@:A@@[:A@:A @:A@@:A@{@:A c@:A@6:A\@G:AE@:A1@:A@&:A@:A@X:A *@|:A @O:A@d:A(@:A@&:A@m:A@:A@E:A @:A@\:A;@:A`,@2:A@:A@:A@:A`@:A @?:A@:A @#:A 4@:A@:A@:A@@:A`z@l:A@t:A@}:A@:A@:A@:A @~:A S@l:A>@:A/@z:A%@1:A`"@:A'@:AX@i:A@H@:A1@:A@@:A#@:A@:A@:Ae@:A@6@:A@:A@:A@@:A@:A@:A@"@7:Ag@O:A;@:A@E:A@@u:A@5:A@:A@W:A@:A@:A@@I:A@:A@v:A@8:A@:A@W:A@:A2@g:A@@:A@:A@g:A@w:A@.:A@l:A|@:AL@:AS@:A!@:A/@&:A@I:A@:A@@B:A@:A@@:A@e:A@:A@:A@V:A@V:A@@q:A@H:A;@:Al@:A/@3:A@Y@:Ae@L:AJ@:Aj@<:A@4;A@;A@m;A@ ;A@#@k ;AE@ ;A@k@ ;A@ ;A@@ ;A%@} ;A@A@ ;Ah@G ;Aj@ ;A@b;A@@8;A@@;Ar@;A@b;A@x ;A@8!;A @%;A@%;A@';A@@O7;A@7;A@:;A@;;A@c@,=;As@=;A@p>;A@@;A`@A;A@ D;A`@H;A@)I;A`F@UK;A@\N;A @Q;A ,@XR;A@:@R;AF@S;AP@aT;A@[;Ay@^;A{@_;A@g`;A@`;A@`;A@a;A@a;A@Ob;A @>e;A"@f;A@@f;A@h;A@Ii;A@~k;A@Dl;A`@o;A @s;AJ@hw;Ai@8~;A @;A 2@d;A6@(;A 2@;A@e;A@ ;A @~;A@B;A @;A@&;A@;A@*;A9@ۙ;A9@;A4@;A1@;A-@;A%@C;A@;A @;A @۠;A@;A@;A@(;A@v@?;Ac@Ÿ;AU@d;A`M@;A`X@;A@<@v;A`@Я;A@;A@;A&@̱;A`]@g;A @;A@;A@;A$@ ;A@@;A @;A@@;A`$@X;A`<@;AT@n;A@%;A`@1;A @F;A@@;AH@;A@;A`@;A@@;A`x@;A@;A`@;A@;A@B;A@@;A@{=ApU@;=A@M=A/@0=A<@=A @=A0@J=A@$@.=A_@=Aк@=A@=A @=A``@Y=A0@Ș=A@۔=A@=A@B=Ap@<=A@=A 8@=A`A@=AH@=Ae@)=Av@=A@=A0@{=A)@^y=A C@w=AM@Lw=A@@Kp=Ap@n=A.@k=AB@Rl=Ap@i=A`@h=A@@f=Ap@d=A @Oc=A U@_=A@^=A@[=A@uY=A@X=A0@X=A@5V=AAU=AAcT=A"AR=A?AM=ACAK=ApKA|J=ApQANJ=A@dAgG=AAF=AAA=AA9=A#A3=A@^Ap-=A A$=AhA"=AA!=AAu!=AA:$=AA/'=AA'=AAX)=ApAW'=A*A&=A.Av%=A2A$=A@VA =ANA=APRAF=AhA=A@pA=AH{A*=AA=AA=AAv=AA=AAX=AA8 =AA =A( A[ =AA =AAO =Ap A$ =A*A =A0A =A1A=AA3, /dev/null 2> /dev/null || /bin/true" su $PGUSER -c "$PGBIN/createdb $DB" if test -f "$PGBIN/createlang"; then su $PGUSER -c "$PGBIN/createlang plpgsql $DB" fi su $PGUSER -c "$PGBIN/psql $DB < $PGSHARE/postgis.sql" su $PGUSER -c "$PGBIN/psql $DB < $PGSHARE/spatial_ref_sys.sql" echo "Import layer data: world" $SHP2PGSQL -s 4326 -I demo/world.shp world > _world.sql su $PGUSER -c "$PGBIN/psql $DB < _world.sql" echo "Import layer data: france_dept" $SHP2PGSQL -s 27582 -I -W latin1 demo/france.shp france > _france.sql su $PGUSER -c "$PGBIN/psql $DB < _france.sql" echo "Import non spatial layer" echo "CREATE TABLE geometry_less(id SERIAL PRIMARY KEY, intcol INTEGER, textcol TEXT);" > _geometry_less.sql echo "INSERT INTO geometry_less (intcol, textcol) VALUES (123, 'foo');" >> _geometry_less.sql su $PGUSER -c "$PGBIN/psql $DB < _geometry_less.sql" rm _world.sql _france.sql _geometry_less.sql tinyows-1.2.2/demo/tests/000077500000000000000000000000001465244332600153275ustar00rootroot00000000000000tinyows-1.2.2/demo/tests/expected/000077500000000000000000000000001465244332600171305ustar00rootroot00000000000000tinyows-1.2.2/demo/tests/expected/wfs10_describe.txt000066400000000000000000000076261465244332600225040ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/2.1.2; tinyows-1.2.2/demo/tests/expected/wfs10_getcaps.txt000066400000000000000000000114431465244332600223420ustar00rootroot00000000000000Content-Type: application/xml TinyOWS Server TinyOWS Server - Demo Service http://127.0.0.1/cgi-bin/tinyows tows:world World Administrative Boundaries EPSG:4326 tows:france French Administrative Sub Boundaries (IGN - GeoFLA Departements) EPSG:27582 tows:geometry_less Geometry less layer abs acos asin atan avg cbrt ceil ceiling cos cot count degrees exp floor length ln log min max radians round sin sqrt tan trunc tinyows-1.2.2/demo/tests/expected/wfs10_getfeatures_france_bbox.txt000066400000000000000000000267711465244332600255740ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/2.1.2 missing France FRA Europe 9.219166,41.366379 9.0975,41.392769 9.080555,41.474709 8.882221,41.506649 8.779999,41.588871 8.794722,41.632488 8.913887,41.67638 8.878887,41.69804 8.680275,41.751659 8.724722,41.776932 8.802219,41.894428 8.754164,41.93166 8.614721,41.89777 8.589441,41.966099 8.658609,41.978039 8.726387,42.040821 8.696665,42.10944 8.561943,42.14888 8.572777,42.214161 8.641109,42.25499 8.688055,42.27026 8.612221,42.349991 8.555832,42.376659 8.672222,42.461929 8.663332,42.507771 8.937498,42.636379 9.053053,42.6586 9.083887,42.710819 9.210554,42.73082 9.290833,42.673321 9.34111,42.73415 9.320833,42.894989 9.346388,42.958881 9.344721,43.00082 9.430277,43.005821 9.465832,42.927212 9.489443,42.81443 9.459999,42.6036 9.502857,42.56636 9.497221,42.600819 9.543055,42.429989 9.508055,42.06554 9.406944,41.906651 9.348888,41.618881 9.282776,41.607769 9.355276,41.59388 9.25083,41.41193 9.219166,41.3663792.901285,50.697048 3.035277,50.773869 3.113055,50.79332 3.193333,50.741371 3.281388,50.594151 3.28,50.538319 3.367222,50.495541 3.602222,50.497211 3.668889,50.444149 3.671944,50.346371 3.725277,50.313599 3.763611,50.351929 4.090833,50.31443 4.21611,50.26527 4.137777,50.13776 4.226388,50.0811 4.15,49.98637 4.168332,49.981369 4.458333,49.938591 4.67361,49.99638 4.7575,50.129429 4.876388,50.15498 4.851943,50.07943 4.800832,49.97776 4.88111,49.9147 4.858054,49.796379 5.097777,49.768589 5.216944,49.69054 5.276111,49.698589 5.329721,49.659981 5.307221,49.63081 5.423332,49.60915 5.473055,49.5061 5.705208,49.535229 5.783038,49.527271 5.963333,49.488319 5.981388,49.448318 6.165277,49.504711 6.362221,49.45998 6.493888,49.447201 6.594722,49.363041 6.589722,49.320271 6.78722,49.162479 6.838888,49.15498 6.847499,49.21526 7.026666,49.188869 7.038332,49.11832 7.088332,49.125259 7.361388,49.14777 7.375277,49.171928 7.486943,49.16415 7.539999,49.088871 7.74111,49.04166 7.93861,49.04887 8.192221,48.968868 8.227394,48.963711 8.133333,48.88554 7.921515,48.690029 7.801943,48.59248 7.807499,48.513321 7.771666,48.49165 7.750833,48.336651 7.604999,48.156929 7.571666,48.037209 7.615832,48.002769 7.513333,47.686932 7.588799,47.58456 7.521388,47.525822 7.452777,47.469978 7.39561,47.439671 7.178332,47.44582 7.198054,47.495258 6.990555,47.497211 7.007777,47.45499 6.978333,47.444149 6.88111,47.35693 7.023055,47.371651 7.061665,47.345539 7.010833,47.30526 6.948332,47.291931 6.694443,47.068321 6.702777,47.038601 6.587221,46.987759 6.434721,46.926929 6.452777,46.774429 6.325022,46.704479 6.129999,46.593319 6.078055,46.460819 6.124443,46.40192 6.114444,46.257771 6.060832,46.250542 5.96611,46.205261 6,46.17416 5.965833,46.14027 6.152222,46.153591 6.305554,46.252491 6.242221,46.297771 6.243931,46.322392 6.246387,46.357769 6.328333,46.406929 6.633611,46.464149 6.79611,46.432491 6.808887,46.411091 6.804937,46.405499 6.767499,46.352489 6.844443,46.27137 6.795277,46.217758 6.788054,46.142208 6.884444,46.126091 6.871387,46.051929 6.929166,46.065262 7.038747,45.931721 6.808887,45.831379 6.799166,45.780819 6.824166,45.714989 6.990832,45.63998 6.999443,45.518318 7.181388,45.411652 7.133054,45.355549 7.122776,45.301929 6.850277,45.136101 6.760833,45.16832 6.620172,45.110661 6.746666,45.02026 6.743332,44.947762 7.009999,44.848591 7.068889,44.689152 7.000833,44.69915 6.950832,44.6647 6.960278,44.628868 6.852777,44.540821 6.857222,44.507771 6.934999,44.443039 6.88611,44.415821 6.935832,44.323318 7.279444,44.156651 7.672776,44.182758 7.704166,44.072208 7.492221,43.869431 7.534765,43.783451 7.457388,43.758652 7.4407,43.757824 7.4383,43.7603 7.4358,43.7631 7.4342,43.766102 7.4325,43.769199 7.4294,43.7714 7.4247,43.773102 7.42,43.772499 7.4161,43.770599 7.4128,43.768299 7.4097,43.7658 7.4064,43.763599 7.4031,43.761398 7.4003,43.758598 7.3972,43.7561 7.3939,43.753899 7.3906,43.7514 7.3878,43.7486 7.3864,43.745602 7.3864,43.741901 7.3883,43.738899 7.39,43.735802 7.3908,43.732201 7.391187,43.728031 7.349536,43.721825 7.345833,43.720539 7.15861,43.663052 7.133888,43.564159 7.005278,43.558319 6.854444,43.427212 6.748055,43.434711 6.669722,43.31554 6.589444,43.29221 6.681389,43.22443 6.615,43.16943 6.593888,43.197491 6.375278,43.149712 6.368055,43.09277 6.201943,43.12999 6.166666,43.115551 6.18111,43.056381 6.088611,43.05249 6.126943,43.07555 6.117499,43.098049 5.934722,43.133598 5.911111,43.099991 5.862222,43.057491 5.781111,43.082489 5.780555,43.139149 5.431944,43.220829 5.36361,43.221931 5.361666,43.33527 5.322222,43.36665 5.063611,43.34082 5.012777,43.3736 5.018332,43.400829 5.230555,43.464161 5.227221,43.496101 5.162222,43.47694 5.031388,43.55666 5.016109,43.496658 5.060833,43.465549 5.06111,43.430538 4.957777,43.424992 4.876111,43.42387 4.87361,43.373322 4.756944,43.41943 4.741666,43.417488 4.816388,43.37999 4.821666,43.359989 4.606944,43.361931 4.573333,43.37999 4.601666,43.424992 4.537837,43.451408 4.399444,43.455818 4.321111,43.458321 4.312499,43.509708 4.247222,43.49194 4.240555,43.471661 4.195276,43.46138 4.124722,43.498322 4.133055,43.536652 4.062222,43.56332 3.860555,43.484711 3.471389,43.278599 3.341111,43.271099 3.102222,43.084148 3.043333,43.10693 3.030278,43.069149 3.085278,43.05027 3.037777,42.940269 3.036944,42.897209 2.963889,42.84832 2.975277,42.809429 3.012222,42.798038 3.052499,42.878601 3.049444,42.553879 3.176962,42.437611 3.150833,42.433319 3.038333,42.474979 2.678333,42.401649 2.671111,42.338322 2.476666,42.35165 2.254167,42.434711 2.086944,42.363319 1.976666,42.374699 1.953055,42.437199 1.7875,42.490261 1.710967,42.473499 1.781667,42.581661 1.541111,42.65387 1.435247,42.597149 1.383611,42.689701 0.815833,42.841091 0.667778,42.839149 0.668055,42.748039 0.676111,42.689152 0.4125,42.695259 0.291111,42.675819 0.261944,42.71748 -0.0575,42.694149 -0.123889,42.757488 -0.187778,42.78582 -0.306667,42.849152 -0.392222,42.796379 -0.500833,42.822208 -0.519167,42.790821 -0.656111,42.863602 -0.746944,42.965542 -0.818889,42.946091 -1.300556,43.071659 -1.288333,43.106091 -1.360278,43.031651 -1.440556,43.048321 -1.472778,43.091091 -1.381945,43.196651 -1.409167,43.273041 -1.62,43.256378 -1.655833,43.309429 -1.810488,43.385891 -1.652223,43.399429 -1.493333,43.561378 -1.424445,43.758881 -1.294167,44.259708 -1.208611,44.62582 -1.192222,44.66193 -1.054445,44.659988 -1.037222,44.683041 -1.134444,44.763599 -1.168889,44.7761 -1.248889,44.630821 -1.259167,44.691929 -1.194722,45.1236 -1.095278,45.552761 -1.058333,45.571381 -1.057778,45.520821 -0.808333,45.36721 -0.735833,45.24749 -0.714722,45.13055 -0.661667,45.0536 -0.560556,44.98666 -0.589167,45.021648 -0.495,44.998878 -0.519445,45.030819 -0.62,45.060261 -0.668333,45.124149 -0.737778,45.400269 -0.85,45.519161 -1.245326,45.70779 -1.230834,45.788052 -1.146111,45.803322 -0.985278,45.71526 -1.138056,45.839989 -1.071944,45.958881 -1.111389,46.006649 -1.055556,46.008598 -1.103889,46.100269 -1.152222,46.15527 -1.2025,46.15527 -1.193889,46.21526 -1.105834,46.258598 -1.112222,46.313599 -1.195,46.319149 -1.214445,46.273319 -1.405556,46.346661 -1.448611,46.338039 -1.472222,46.395821 -1.511945,46.419159 -1.673889,46.451931 -1.799445,46.486931 -1.914167,46.688599 -2.108056,46.813599 -2.13389,46.887211 -2.011049,47.020031 -1.984445,47.034431 -2.051667,47.09721 -2.239722,47.135818 -2.163611,47.165272 -2.165556,47.264992 -2.025,47.29694 -1.815834,47.237209 -1.998889,47.31749 -2.159445,47.30999 -2.273334,47.24165 -2.495833,47.29137 -2.4425,47.2911 -2.448612,47.322491 -2.553611,47.37693 -2.396111,47.40527 -2.434167,47.421101 -2.488889,47.48138 -2.361389,47.504162 -2.662222,47.5261 -2.736111,47.504162 -2.809722,47.49165 -2.912222,47.551659 -2.877223,47.564709 -2.736945,47.54388 -2.680556,47.613041 -2.768611,47.620541 -2.88,47.606098 -2.936667,47.59721 -2.960556,47.56443 -3.125278,47.59943 -3.120278,47.500542 -3.149167,47.521381 -3.132223,47.576649 -3.200556,47.659431 -3.148056,47.741379 -3.212778,47.652489 -3.354445,47.706661 -3.281389,47.78249 -3.441389,47.701382 -3.712778,47.811939 -3.847778,47.793598 -3.951111,47.89888 -4.085556,47.86832 -4.182778,47.881378 -4.155556,47.831928 -4.209723,47.799431 -4.361945,47.802761 -4.343889,47.8536 -4.419723,47.960819 -4.529445,48.022491 -4.613056,48.020821 -4.725613,48.040989 -4.662223,48.073601 -4.295,48.098881 -4.297501,48.178322 -4.43139,48.240551 -4.493056,48.236099 -4.537223,48.176102 -4.563612,48.233601 -4.623889,48.28194 -4.513056,48.30027 -4.235001,48.303879 -4.323611,48.319988 -4.318334,48.357769 -4.448611,48.33054 -4.405556,48.381939 -4.293334,48.427212 -4.763889,48.33527 -4.790556,48.421379 -4.744167,48.545818 -4.631945,48.579708 -4.428334,48.650539 -4.314167,48.670818 -4.222778,48.648319 -4.176667,48.6861 -3.968056,48.73193 -3.953333,48.65221 -3.900278,48.67638 -3.854167,48.629162 -3.810833,48.726101 -3.596111,48.675819 -3.571111,48.6861 -3.582778,48.72665 -3.532222,48.739159 -3.580834,48.76693 -3.512778,48.837212 -3.263056,48.8386 -3.220834,48.870541 -3.224167,48.79388 -3.101667,48.872211 -3.079167,48.826931 -2.948611,48.768879 -2.883611,48.68082 -2.824722,48.654991 -2.765556,48.572208 -2.653334,48.53054 -2.464723,48.62999 -2.314336,48.6926 -2.284445,48.669159 -2.329167,48.62471 -2.226389,48.61137 -2.176389,48.57943 -2.105834,48.646099 -2.0025,48.58305 -1.9825,48.514149 -1.956944,48.550819 -2.03,48.650829 -1.849167,48.709148 -1.87,48.64999 -1.840556,48.615551 -1.638056,48.61665 -1.433889,48.663601 -1.560833,48.744709 -1.605834,48.841099 -1.549167,48.922771 -1.556667,49.01582 -1.585278,49.008881 -1.610278,49.097759 -1.549445,49.219711 -1.629445,49.215549 -1.774167,49.381649 -1.8125,49.377769 -1.845834,49.49971 -1.884444,49.529148 -1.84,49.57832 -1.851944,49.642769 -1.945833,49.675541 -1.941945,49.723881 -1.482778,49.675541 -1.410833,49.70499 -1.258333,49.694439 -1.259722,49.586102 -1.299445,49.57888 -1.301667,49.54388 -1.142222,49.34388 -1.013889,49.394711 -0.436389,49.341099 -0.218333,49.274712 0.218333,49.426659 0.393055,49.458881 0.143611,49.47694 0.078056,49.511662 0.184444,49.70277 0.611944,49.857491 1.131111,49.948879 1.435555,50.09832 1.505555,50.201931 1.555,50.21944 1.656944,50.184158 1.645,50.217209 1.548055,50.266651 1.534167,50.288601 1.552778,50.359989 1.610278,50.36832 1.558889,50.402489 1.576944,50.612209 1.576111,50.864429 1.943333,50.99527 2.472777,51.070541 2.541667,51.091099 2.6125,50.887211 2.629444,50.824711 2.781944,50.75555 2.901285,50.697048 tinyows-1.2.2/demo/tests/expected/wfs10_getfeatures_france_onefeature.txt000066400000000000000000000217171465244332600267720ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/2.1.2 missing 49 053 BOURG-EN-BRESSE 8231 21379 8244 21380 AIN 82 RHONE-ALPES 01 801150,2092615 800669,2093190 800688,2095430 800780,2095795 800589,2096112 800333,2097190 799095,2098505 799136,2098838 799690,2100360 799329,2100395 797715,2100950 797655,2101330 797410,2102850 797149,2102788 796755,2102425 796738,2102785 796612,2103487 795234,2103892 794905,2104515 794547,2104359 791555,2102570 791465,2102760 791935,2104075 791835,2105023 791670,2105295 790205,2105555 790035,2105875 789304,2107116 788617,2107148 788005,2106760 787670,2106708 786705,2106990 786350,2107029 785720,2107335 785562,2108399 786670,2109486 786930,2109775 787055,2110010 787208,2110344 787367,2111056 786900,2113550 786795,2114260 786830,2114370 786811,2114751 786384,2116197 786550,2116940 786560,2117563 786465,2117860 785956,2119206 787211,2120474 787415,2120775 787600,2121475 787536,2121809 787137,2122743 786610,2123110 786457,2124100 787138,2124890 787365,2125160 787545,2125377 787880,2125830 788198,2126745 788225,2127075 789130,2128290 789370,2128585 789790,2129209 789995,2129525 790445,2131460 790237,2131793 789585,2132230 788993,2132742 788830,2133100 788650,2133655 788638,2134028 788673,2135142 789501,2136382 789510,2137110 789596,2138174 789680,2138520 789845,2139015 790050,2139590 790594,2140547 790750,2142011 790740,2142380 790739,2142716 791139,2143599 791749,2144456 791860,2144790 792199,2147049 792285,2147420 792880,2148815 793615,2150425 793737,2150782 793650,2152285 793618,2152660 793480,2153400 794012,2155103 794347,2155696 794535,2155980 794686,2156241 795135,2157025 796115,2159030 796193,2160314 796250,2160635 796311,2161408 796335,2161795 796324,2162102 796316,2163021 796385,2163470 796495,2163785 797830,2165380 797970,2165700 797959,2167362 797910,2167695 797905,2167835 798850,2169845 798930,2170117 798980,2170395 799122,2171035 799255,2171335 799340,2171435 800295,2171593 800326,2170924 800757,2170498 801505,2170754 802043,2171611 802820,2171760 804846,2171217 805165,2171380 805338,2170485 805485,2170210 808352,2168729 808655,2168520 809605,2168719 809930,2168735 811710,2170150 813076,2169640 814292,2170568 814670,2170640 815189,2171442 816978,2171075 817045,2172530 818290,2171719 819798,2171534 819990,2171205 819753,2170948 820496,2169812 820305,2169145 820810,2168648 821023,2167568 821020,2167190 821753,2167185 822453,2166355 822690,2166075 823263,2166394 823585,2166285 824250,2165476 825284,2165330 825600,2165160 828440,2165065 829372,2163119 828470,2162490 828705,2161655 828395,2161531 827745,2161519 828485,2161005 830445,2159908 831525,2159915 832747,2158958 833030,2158780 833286,2158494 833885,2158105 833687,2157807 832940,2157040 832830,2156696 833866,2155806 833825,2155445 833752,2155097 833675,2154750 835995,2153047 835930,2152675 836194,2151171 836185,2150780 836190,2150680 836405,2150149 836690,2150070 837059,2153840 837545,2154400 838628,2151187 838735,2150820 840056,2151192 840530,2151708 840855,2151840 841371,2151081 841670,2150965 841591,2150606 841093,2148479 840525,2148155 840483,2146631 841576,2145603 841898,2145394 843750,2145800 843973,2146033 844372,2145523 844675,2145410 846805,2146002 848292,2147688 848440,2148035 848651,2148733 850029,2148841 850390,2148775 851184,2149407 851650,2150710 851857,2150922 851710,2151180 852195,2152638 853883,2153465 854050,2153815 854684,2154550 854950,2153948 855010,2153605 854706,2152546 856495,2152522 857425,2151954 857675,2151680 857795,2151135 860115,2150917 860522,2149401 860356,2147845 860868,2145955 861160,2145690 861499,2145842 861800,2146060 863931,2146529 864270,2146675 867954,2146311 868320,2146245 868625,2146162 868940,2146145 870819,2146227 871569,2147047 872099,2147009 872230,2146655 873891,2148801 874080,2149145 875215,2148900 875688,2149908 875836,2151749 876350,2152270 877249,2151866 877575,2151825 877751,2152160 879950,2156500 880577,2157904 882757,2159490 884049,2160898 885600,2163565 886165,2164270 886435,2164140 889069,2163415 889778,2162493 890867,2162099 893000,2160395 894101,2160083 894575,2159465 894622,2158743 893375,2156340 892712,2155944 892540,2155185 891600,2153375 891281,2152677 891245,2152295 891340,2150917 890292,2149984 890080,2149695 890987,2147869 891235,2147615 891560,2147405 891794,2146272 891337,2145258 890413,2144570 889185,2145445 888822,2145356 887853,2144792 887180,2145110 886092,2143618 885735,2143730 885432,2143963 884760,2143997 883760,2143495 883455,2143280 882749,2142419 882058,2142149 881989,2141782 880591,2141448 880422,2140052 879890,2139555 879855,2139435 882197,2138192 882019,2137078 881408,2136753 880810,2134940 880202,2133632 880177,2132631 879600,2132205 879351,2132001 878142,2131755 877449,2131650 876853,2131962 875845,2130970 875089,2130628 874800,2130520 874322,2129464 874925,2128114 874725,2126982 872900,2126720 872100,2126810 871837,2127080 870648,2128513 869972,2128829 869296,2128495 869435,2127050 868710,2125650 868663,2125275 868525,2123780 868760,2123569 868985,2123070 868525,2121885 868617,2121591 868760,2120685 868864,2120349 869034,2119679 868545,2118760 868661,2118458 868975,2117935 868911,2117610 869020,2116295 869215,2115554 870970,2114005 870979,2113621 870925,2112855 871130,2111817 870721,2110485 870455,2110250 870800,2110165 870344,2109573 870311,2108843 870897,2107500 870710,2106390 870615,2106018 869975,2103410 869465,2101545 869314,2101232 869040,2099875 868989,2099512 868710,2098080 868050,2097320 867940,2096964 867995,2094425 867975,2094056 867825,2092595 867736,2092277 867995,2091670 867979,2091277 867788,2090131 868170,2088645 867935,2088380 867643,2088330 867110,2088110 867246,2087753 867588,2086334 866723,2085607 866013,2084278 865294,2084187 864275,2084575 864000,2084465 863659,2084328 861885,2084450 861845,2084109 862185,2083150 862398,2082820 862694,2082092 862533,2081333 860925,2079632 860842,2078870 861160,2078155 861300,2077808 861210,2077080 860973,2076787 860337,2076386 858511,2076155 858205,2075110 858072,2074811 857453,2074591 857320,2073960 857265,2073584 856650,2073221 856355,2073460 856182,2073797 855610,2074780 854744,2075941 854474,2077758 852864,2078730 852620,2079020 852647,2079386 851685,2079920 851354,2080021 850753,2079717 850470,2079917 850320,2080840 850069,2081131 850023,2082613 850741,2082507 851509,2081230 852157,2081554 852073,2082291 850451,2083206 850375,2083940 850111,2084174 849805,2084350 848375,2084500 848150,2084810 847545,2086215 847281,2086449 845980,2087620 845694,2087856 844840,2088564 842895,2091270 842098,2091898 841825,2092105 841604,2092424 841170,2093065 840895,2093318 839825,2094355 839769,2096198 840798,2096536 840745,2096910 840580,2097185 840305,2097470 839320,2098117 839165,2098880 839016,2099191 838200,2099825 836342,2100899 836100,2101165 835840,2101453 834252,2102554 833175,2102260 833017,2102031 832785,2101525 832719,2101162 832433,2100482 831189,2099710 830330,2098550 829565,2095140 829550,2094745 829422,2094389 828638,2093577 827810,2091920 827523,2091724 826955,2091325 826653,2091135 825785,2090510 825487,2090257 824587,2089517 822700,2089735 822339,2089692 821748,2090044 821660,2090765 821459,2091109 820815,2092110 820470,2092273 819281,2093148 818215,2093260 817851,2093406 816405,2093980 815735,2093715 815844,2092629 815501,2092497 814830,2094120 814502,2094025 814175,2093925 813785,2093907 811510,2093620 811202,2093793 810503,2093796 809935,2093390 808612,2093210 808305,2093030 807965,2092976 807085,2093490 806759,2093370 806450,2093210 805480,2092960 804700,2093105 804426,2093280 803230,2093210 802864,2093269 801150,2092615 tinyows-1.2.2/demo/tests/expected/wfs10_getfeatures_geometry_less.txt000066400000000000000000000020471465244332600261730ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/2.1.2 missing 123 foo tinyows-1.2.2/demo/tests/expected/wfs10_getfeatures_world_onefeature.txt000066400000000000000000000155261465244332600266640ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/2.1.2 missing Afghanistan AFG Asia 65.627296,37.333199 65.646927,37.458881 65.70137,37.53693 65.766083,37.534161 65.785522,37.568878 66.30275,37.323601 66.538765,37.360512 66.586906,37.368038 66.665253,37.338322 66.744423,37.36137 67.021637,37.377201 67.200256,37.246651 67.229424,37.191929 67.266373,37.185261 67.424408,37.234989 67.521637,37.27248 67.557457,37.215542 67.649406,37.24609 67.774139,37.206089 67.777153,37.185799 67.791641,37.088322 67.885529,37.061371 67.910522,37.014431 68.035522,36.924709 68.28331,37.019981 68.278313,37.086929 68.301643,37.111099 68.413017,37.104431 68.412193,37.148041 68.524979,37.16193 68.654694,37.246929 68.825813,37.247761 68.809402,37.322491 68.85025,37.324711 68.904968,37.272209 68.924408,37.28471 68.891647,37.31749 68.999687,37.307758 69.246628,37.094151 69.333038,37.124981 69.45137,37.22998 69.381348,37.344151 69.382736,37.455818 69.515808,37.580818 69.91803,37.611931 69.958588,37.564991 70.134979,37.529148 70.255539,37.62109 70.276917,37.741371 70.165527,37.872211 70.170242,37.94165 70.203857,37.92054 70.378304,38.057758 70.491913,38.16721 70.584412,38.278591 70.596359,38.334148 70.685516,38.375259 70.672203,38.414429 70.880524,38.453041 71.101913,38.40609 71.363022,38.248871 71.363861,38.18803 71.284698,38.019981 71.264137,37.918049 71.37468,37.905819 71.546356,37.942478 71.591919,37.903042 71.588577,37.81609 71.528847,37.764431 71.49025,37.284161 71.446907,37.20776 71.43219,37.05859 71.568314,36.741371 71.695236,36.672211 71.842743,36.692478 72.011368,36.812199 72.346626,36.989979 72.663589,37.026089 72.798859,37.22998 73.08136,37.320541 73.150528,37.400822 73.314407,37.463322 73.776642,37.434429 73.752762,37.331379 73.649406,37.304428 73.619957,37.26276 73.634407,37.239979 73.792473,37.22942 74.363861,37.4286 74.400803,37.399429 74.699692,37.39193 74.898827,37.240299 74.816933,37.219151 74.763313,37.30109 74.669418,37.266102 74.651077,37.234711 74.537193,37.243038 74.392197,37.175259 74.400528,37.139149 74.567749,37.02647 74.558006,36.96526 74.482193,37.011101 74.336906,36.958881 74.251923,36.899429 74.158859,36.906651 74.06218,36.821659 73.963028,36.837761 73.779694,36.901089 73.113022,36.873871 72.492462,36.771931 72.181641,36.71471 72.191643,36.6572 72.073303,36.628868 72.074692,36.58942 71.795807,36.491928 71.817749,36.41666 71.753036,36.40749 71.646637,36.46804 71.563019,36.372478 71.582748,36.335819 71.248581,36.133041 71.188019,36.047211 71.291077,35.96859 71.380524,35.946091 71.545242,35.711102 71.508591,35.626652 71.613861,35.561932 71.606918,35.48193 71.647202,35.436939 71.549133,35.32832 71.553574,35.28915 71.659126,35.207489 71.618027,35.131371 71.543297,35.0947 71.496078,34.959431 71.313858,34.886929 71.225517,34.744431 71.09581,34.676651 71.094971,34.56805 70.995796,34.55859 70.978027,34.510818 71.073029,34.39415 71.153313,34.36137 71.135529,34.166088 70.981079,34.008881 70.905533,34.013321 70.900528,33.973591 70.491348,33.943039 69.902763,34.031101 69.907471,33.881931 69.985519,33.75304 70.132736,33.735538 70.196617,33.64082 70.197739,33.485821 70.306084,33.396099 70.32692,33.33194 70.144974,33.202492 70.067749,33.20499 70.033577,33.139431 69.881073,33.089981 69.791351,33.126942 69.561081,33.081928 69.492462,33.008598 69.515259,32.873878 69.394974,32.773869 69.456917,32.682209 69.397751,32.587761 69.287483,32.526379 69.248016,32.443871 69.283043,32.21777 69.287483,32.069149 69.333862,31.94389 69.029694,31.64555 68.833038,31.60388 68.731918,31.69944 68.712479,31.778879 68.54747,31.829161 68.444122,31.79472 68.447739,31.77277 68.57164,31.76527 68.53775,31.72666 68.221626,31.81559 68.166077,31.83305 67.98053,31.63583 67.887482,31.63999 67.738022,31.53083 67.581093,31.5336 67.646362,31.40999 67.766922,31.4111 67.799698,31.38249 67.791924,31.341101 67.288017,31.2136 67.256363,31.22249 67.069702,31.239161 67.034698,31.25444 67.051643,31.297779 67.036911,31.318609 66.891647,31.296101 66.723022,31.21221 66.684128,31.086109 66.56636,30.97777 66.404968,30.94611 66.281921,30.57527 66.35025,30.45055 66.259697,30.114161 66.238297,30.071381 66.361359,29.966101 66.256638,29.85194 65.417473,29.640551 65.034126,29.5411 64.695511,29.58638 64.273857,29.52389 64.193024,29.48749 64.131348,29.394159 63.5872,29.50388 62.78693,29.43388 62.484428,29.406099 61.743599,29.615829 60.99387,29.826099 60.866871,29.862431 61.25304,30.259991 61.812759,30.843611 61.803871,30.94582 61.84721,31.04888 61.76582,31.24527 61.771099,31.318331 61.7136,31.383329 61.619431,31.395821 60.843868,31.498329 60.810261,31.8736 60.857769,32.234718 60.74165,32.578869 60.581928,33.071659 60.591091,33.16304 60.85165,33.418049 60.858318,33.49387 60.9286,33.504429 60.901649,33.554428 60.649151,33.574989 60.522758,33.653042 60.50526,33.739151 60.55415,33.81332 60.52137,33.999149 60.513599,34.150822 60.67165,34.313599 60.911091,34.31638 60.89777,34.345821 60.756649,34.483318 60.733601,34.54166 60.863602,34.576389 61.065262,34.812759 61.11388,35.201649 61.104431,35.279148 61.1861,35.29694 61.239151,35.481091 61.27776,35.52026 61.278721,35.60675 61.365822,35.639709 61.464989,35.52721 61.576649,35.450821 61.802479,35.411091 61.97221,35.45998 62.100819,35.394711 62.259159,35.297771 62.305538,35.145538 62.459431,35.286381 62.62331,35.224979 63.110538,35.481369 63.095261,35.626091 63.23888,35.69553 63.10416,35.825821 63.119431,35.861931 63.317211,35.852211 63.538879,35.90971 63.595539,35.9622 63.933868,36.03915 64.063858,36.000271 64.059692,36.088039 64.169418,36.167488 64.282471,36.15192 64.32164,36.216381 64.458862,36.247211 64.570534,36.35638 64.627747,36.45998 64.61525,36.629429 64.795242,36.923038 64.779137,37.095821 64.798019,37.124981 65.072746,37.244431 65.530807,37.2486 65.627296,37.333199 tinyows-1.2.2/demo/tests/expected/wfs11_describe.txt000066400000000000000000000076271465244332600225060ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/3.1.1; tinyows-1.2.2/demo/tests/expected/wfs11_getcaps.txt000066400000000000000000000226171465244332600223500ustar00rootroot00000000000000Content-Type: application/xml TinyOWS Server - Demo Service WFS 1.0.0 1.1.0 1.1.0 1.0.0 text/xml ServiceIdentification ServiceProvider OperationsMetadata FeatureTypeList ServesGMLObjectTypeList SupportsGMLObjectTypeList text/xml; subtype=gml/3.1.1 text/xml; subtype=gml/2.1.2 results hits text/xml; subtype=gml/3.1.1 text/xml; subtype=gml/2.1.2 application/json text/xml; subtype=gml/3.1.1 GenerateNew UseExisting 0 0 Query Insert Update Delete tows:world World Administrative Boundaries urn:ogc:def:crs:EPSG::4326 -180.000183 -90.000000 180.000000 83.623032 tows:france French Administrative Sub Boundaries (IGN - GeoFLA Departements) urn:ogc:def:crs:EPSG::27582 -6.091001 41.347435 10.812651 50.803540 tows:geometry_less Geometry less layer gml:AbstractGMLFeatureType text/xml; subtype=gml/2.1.2 text/xml; subtype=gml/3.1.1 gml:PointType text/xml; subtype=gml/2.1.2 text/xml; subtype=gml/3.1.1 gml:LineStringType text/xml; subtype=gml/2.1.2 text/xml; subtype=gml/3.1.1 gml:PolygonType text/xml; subtype=gml/2.1.2 text/xml; subtype=gml/3.1.1 gml:MultiPointType text/xml; subtype=gml/2.1.2 text/xml; subtype=gml/3.1.1 gml:MultiLineStringType text/xml; subtype=gml/2.1.2 text/xml; subtype=gml/3.1.1 gml:MultiPolygonType text/xml; subtype=gml/2.1.2 text/xml; subtype=gml/3.1.1 gml:Envelope gml:Point gml:LineString gml:Polygon gml:Triangle gml:PolyhedralSurface gml:Tin EqualTo NotEqualTo LessThan GreaterThan LessThanEqualTo GreaterThanEqualTo Between Like NullCheck abs acos asin atan avg cbrt ceil ceiling cos cot count degrees exp floor length ln log min max radians round sin sqrt tan trunc tinyows-1.2.2/demo/tests/expected/wfs11_getfeatures_france_bboxwithcrsuri.txt000066400000000000000000000266401465244332600277140ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/3.1.1 France FRA Europe 41.366379 9.219166 41.392769 9.0975 41.474709 9.080555 41.506649 8.882221 41.588871 8.779999 41.632488 8.794722 41.67638 8.913887 41.69804 8.878887 41.751659 8.680275 41.776932 8.724722 41.894428 8.802219 41.93166 8.754164 41.89777 8.614721 41.966099 8.589441 41.978039 8.658609 42.040821 8.726387 42.10944 8.696665 42.14888 8.561943 42.214161 8.572777 42.25499 8.641109 42.27026 8.688055 42.349991 8.612221 42.376659 8.555832 42.461929 8.672222 42.507771 8.663332 42.636379 8.937498 42.6586 9.053053 42.710819 9.083887 42.73082 9.210554 42.673321 9.290833 42.73415 9.34111 42.894989 9.320833 42.958881 9.346388 43.00082 9.344721 43.005821 9.430277 42.927212 9.465832 42.81443 9.489443 42.6036 9.459999 42.56636 9.502857 42.600819 9.497221 42.429989 9.543055 42.06554 9.508055 41.906651 9.406944 41.618881 9.348888 41.607769 9.282776 41.59388 9.355276 41.41193 9.25083 41.366379 9.21916650.697048 2.901285 50.773869 3.035277 50.79332 3.113055 50.741371 3.193333 50.594151 3.281388 50.538319 3.28 50.495541 3.367222 50.497211 3.602222 50.444149 3.668889 50.346371 3.671944 50.313599 3.725277 50.351929 3.763611 50.31443 4.090833 50.26527 4.21611 50.13776 4.137777 50.0811 4.226388 49.98637 4.15 49.981369 4.168332 49.938591 4.458333 49.99638 4.67361 50.129429 4.7575 50.15498 4.876388 50.07943 4.851943 49.97776 4.800832 49.9147 4.88111 49.796379 4.858054 49.768589 5.097777 49.69054 5.216944 49.698589 5.276111 49.659981 5.329721 49.63081 5.307221 49.60915 5.423332 49.5061 5.473055 49.535229 5.705208 49.527271 5.783038 49.488319 5.963333 49.448318 5.981388 49.504711 6.165277 49.45998 6.362221 49.447201 6.493888 49.363041 6.594722 49.320271 6.589722 49.162479 6.78722 49.15498 6.838888 49.21526 6.847499 49.188869 7.026666 49.11832 7.038332 49.125259 7.088332 49.14777 7.361388 49.171928 7.375277 49.16415 7.486943 49.088871 7.539999 49.04166 7.74111 49.04887 7.93861 48.968868 8.192221 48.963711 8.227394 48.88554 8.133333 48.690029 7.921515 48.59248 7.801943 48.513321 7.807499 48.49165 7.771666 48.336651 7.750833 48.156929 7.604999 48.037209 7.571666 48.002769 7.615832 47.686932 7.513333 47.58456 7.588799 47.525822 7.521388 47.469978 7.452777 47.439671 7.39561 47.44582 7.178332 47.495258 7.198054 47.497211 6.990555 47.45499 7.007777 47.444149 6.978333 47.35693 6.88111 47.371651 7.023055 47.345539 7.061665 47.30526 7.010833 47.291931 6.948332 47.068321 6.694443 47.038601 6.702777 46.987759 6.587221 46.926929 6.434721 46.774429 6.452777 46.704479 6.325022 46.593319 6.129999 46.460819 6.078055 46.40192 6.124443 46.257771 6.114444 46.250542 6.060832 46.205261 5.96611 46.17416 6 46.14027 5.965833 46.153591 6.152222 46.252491 6.305554 46.297771 6.242221 46.322392 6.243931 46.357769 6.246387 46.406929 6.328333 46.464149 6.633611 46.432491 6.79611 46.411091 6.808887 46.405499 6.804937 46.352489 6.767499 46.27137 6.844443 46.217758 6.795277 46.142208 6.788054 46.126091 6.884444 46.051929 6.871387 46.065262 6.929166 45.931721 7.038747 45.831379 6.808887 45.780819 6.799166 45.714989 6.824166 45.63998 6.990832 45.518318 6.999443 45.411652 7.181388 45.355549 7.133054 45.301929 7.122776 45.136101 6.850277 45.16832 6.760833 45.110661 6.620172 45.02026 6.746666 44.947762 6.743332 44.848591 7.009999 44.689152 7.068889 44.69915 7.000833 44.6647 6.950832 44.628868 6.960278 44.540821 6.852777 44.507771 6.857222 44.443039 6.934999 44.415821 6.88611 44.323318 6.935832 44.156651 7.279444 44.182758 7.672776 44.072208 7.704166 43.869431 7.492221 43.783451 7.534765 43.758652 7.457388 43.757824 7.4407 43.7603 7.4383 43.7631 7.4358 43.766102 7.4342 43.769199 7.4325 43.7714 7.4294 43.773102 7.4247 43.772499 7.42 43.770599 7.4161 43.768299 7.4128 43.7658 7.4097 43.763599 7.4064 43.761398 7.4031 43.758598 7.4003 43.7561 7.3972 43.753899 7.3939 43.7514 7.3906 43.7486 7.3878 43.745602 7.3864 43.741901 7.3864 43.738899 7.3883 43.735802 7.39 43.732201 7.3908 43.728031 7.391187 43.721825 7.349536 43.720539 7.345833 43.663052 7.15861 43.564159 7.133888 43.558319 7.005278 43.427212 6.854444 43.434711 6.748055 43.31554 6.669722 43.29221 6.589444 43.22443 6.681389 43.16943 6.615 43.197491 6.593888 43.149712 6.375278 43.09277 6.368055 43.12999 6.201943 43.115551 6.166666 43.056381 6.18111 43.05249 6.088611 43.07555 6.126943 43.098049 6.117499 43.133598 5.934722 43.099991 5.911111 43.057491 5.862222 43.082489 5.781111 43.139149 5.780555 43.220829 5.431944 43.221931 5.36361 43.33527 5.361666 43.36665 5.322222 43.34082 5.063611 43.3736 5.012777 43.400829 5.018332 43.464161 5.230555 43.496101 5.227221 43.47694 5.162222 43.55666 5.031388 43.496658 5.016109 43.465549 5.060833 43.430538 5.06111 43.424992 4.957777 43.42387 4.876111 43.373322 4.87361 43.41943 4.756944 43.417488 4.741666 43.37999 4.816388 43.359989 4.821666 43.361931 4.606944 43.37999 4.573333 43.424992 4.601666 43.451408 4.537837 43.455818 4.399444 43.458321 4.321111 43.509708 4.312499 43.49194 4.247222 43.471661 4.240555 43.46138 4.195276 43.498322 4.124722 43.536652 4.133055 43.56332 4.062222 43.484711 3.860555 43.278599 3.471389 43.271099 3.341111 43.084148 3.102222 43.10693 3.043333 43.069149 3.030278 43.05027 3.085278 42.940269 3.037777 42.897209 3.036944 42.84832 2.963889 42.809429 2.975277 42.798038 3.012222 42.878601 3.052499 42.553879 3.049444 42.437611 3.176962 42.433319 3.150833 42.474979 3.038333 42.401649 2.678333 42.338322 2.671111 42.35165 2.476666 42.434711 2.254167 42.363319 2.086944 42.374699 1.976666 42.437199 1.953055 42.490261 1.7875 42.473499 1.710967 42.581661 1.781667 42.65387 1.541111 42.597149 1.435247 42.689701 1.383611 42.841091 0.815833 42.839149 0.667778 42.748039 0.668055 42.689152 0.676111 42.695259 0.4125 42.675819 0.291111 42.71748 0.261944 42.694149 -0.0575 42.757488 -0.123889 42.78582 -0.187778 42.849152 -0.306667 42.796379 -0.392222 42.822208 -0.500833 42.790821 -0.519167 42.863602 -0.656111 42.965542 -0.746944 42.946091 -0.818889 43.071659 -1.300556 43.106091 -1.288333 43.031651 -1.360278 43.048321 -1.440556 43.091091 -1.472778 43.196651 -1.381945 43.273041 -1.409167 43.256378 -1.62 43.309429 -1.655833 43.385891 -1.810488 43.399429 -1.652223 43.561378 -1.493333 43.758881 -1.424445 44.259708 -1.294167 44.62582 -1.208611 44.66193 -1.192222 44.659988 -1.054445 44.683041 -1.037222 44.763599 -1.134444 44.7761 -1.168889 44.630821 -1.248889 44.691929 -1.259167 45.1236 -1.194722 45.552761 -1.095278 45.571381 -1.058333 45.520821 -1.057778 45.36721 -0.808333 45.24749 -0.735833 45.13055 -0.714722 45.0536 -0.661667 44.98666 -0.560556 45.021648 -0.589167 44.998878 -0.495 45.030819 -0.519445 45.060261 -0.62 45.124149 -0.668333 45.400269 -0.737778 45.519161 -0.85 45.70779 -1.245326 45.788052 -1.230834 45.803322 -1.146111 45.71526 -0.985278 45.839989 -1.138056 45.958881 -1.071944 46.006649 -1.111389 46.008598 -1.055556 46.100269 -1.103889 46.15527 -1.152222 46.15527 -1.2025 46.21526 -1.193889 46.258598 -1.105834 46.313599 -1.112222 46.319149 -1.195 46.273319 -1.214445 46.346661 -1.405556 46.338039 -1.448611 46.395821 -1.472222 46.419159 -1.511945 46.451931 -1.673889 46.486931 -1.799445 46.688599 -1.914167 46.813599 -2.108056 46.887211 -2.13389 47.020031 -2.011049 47.034431 -1.984445 47.09721 -2.051667 47.135818 -2.239722 47.165272 -2.163611 47.264992 -2.165556 47.29694 -2.025 47.237209 -1.815834 47.31749 -1.998889 47.30999 -2.159445 47.24165 -2.273334 47.29137 -2.495833 47.2911 -2.4425 47.322491 -2.448612 47.37693 -2.553611 47.40527 -2.396111 47.421101 -2.434167 47.48138 -2.488889 47.504162 -2.361389 47.5261 -2.662222 47.504162 -2.736111 47.49165 -2.809722 47.551659 -2.912222 47.564709 -2.877223 47.54388 -2.736945 47.613041 -2.680556 47.620541 -2.768611 47.606098 -2.88 47.59721 -2.936667 47.56443 -2.960556 47.59943 -3.125278 47.500542 -3.120278 47.521381 -3.149167 47.576649 -3.132223 47.659431 -3.200556 47.741379 -3.148056 47.652489 -3.212778 47.706661 -3.354445 47.78249 -3.281389 47.701382 -3.441389 47.811939 -3.712778 47.793598 -3.847778 47.89888 -3.951111 47.86832 -4.085556 47.881378 -4.182778 47.831928 -4.155556 47.799431 -4.209723 47.802761 -4.361945 47.8536 -4.343889 47.960819 -4.419723 48.022491 -4.529445 48.020821 -4.613056 48.040989 -4.725613 48.073601 -4.662223 48.098881 -4.295 48.178322 -4.297501 48.240551 -4.43139 48.236099 -4.493056 48.176102 -4.537223 48.233601 -4.563612 48.28194 -4.623889 48.30027 -4.513056 48.303879 -4.235001 48.319988 -4.323611 48.357769 -4.318334 48.33054 -4.448611 48.381939 -4.405556 48.427212 -4.293334 48.33527 -4.763889 48.421379 -4.790556 48.545818 -4.744167 48.579708 -4.631945 48.650539 -4.428334 48.670818 -4.314167 48.648319 -4.222778 48.6861 -4.176667 48.73193 -3.968056 48.65221 -3.953333 48.67638 -3.900278 48.629162 -3.854167 48.726101 -3.810833 48.675819 -3.596111 48.6861 -3.571111 48.72665 -3.582778 48.739159 -3.532222 48.76693 -3.580834 48.837212 -3.512778 48.8386 -3.263056 48.870541 -3.220834 48.79388 -3.224167 48.872211 -3.101667 48.826931 -3.079167 48.768879 -2.948611 48.68082 -2.883611 48.654991 -2.824722 48.572208 -2.765556 48.53054 -2.653334 48.62999 -2.464723 48.6926 -2.314336 48.669159 -2.284445 48.62471 -2.329167 48.61137 -2.226389 48.57943 -2.176389 48.646099 -2.105834 48.58305 -2.0025 48.514149 -1.9825 48.550819 -1.956944 48.650829 -2.03 48.709148 -1.849167 48.64999 -1.87 48.615551 -1.840556 48.61665 -1.638056 48.663601 -1.433889 48.744709 -1.560833 48.841099 -1.605834 48.922771 -1.549167 49.01582 -1.556667 49.008881 -1.585278 49.097759 -1.610278 49.219711 -1.549445 49.215549 -1.629445 49.381649 -1.774167 49.377769 -1.8125 49.49971 -1.845834 49.529148 -1.884444 49.57832 -1.84 49.642769 -1.851944 49.675541 -1.945833 49.723881 -1.941945 49.675541 -1.482778 49.70499 -1.410833 49.694439 -1.258333 49.586102 -1.259722 49.57888 -1.299445 49.54388 -1.301667 49.34388 -1.142222 49.394711 -1.013889 49.341099 -0.436389 49.274712 -0.218333 49.426659 0.218333 49.458881 0.393055 49.47694 0.143611 49.511662 0.078056 49.70277 0.184444 49.857491 0.611944 49.948879 1.131111 50.09832 1.435555 50.201931 1.505555 50.21944 1.555 50.184158 1.656944 50.217209 1.645 50.266651 1.548055 50.288601 1.534167 50.359989 1.552778 50.36832 1.610278 50.402489 1.558889 50.612209 1.576944 50.864429 1.576111 50.99527 1.943333 51.070541 2.472777 51.091099 2.541667 50.887211 2.6125 50.824711 2.629444 50.75555 2.781944 50.697048 2.901285 tinyows-1.2.2/demo/tests/expected/wfs11_getfeatures_france_bboxwithcrsuri_srsname.txt000066400000000000000000000231361465244332600314410ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/3.1.1 France FRA Europe 1026273 5066534 1012729 5070449 1010843 5082615 988764 5087362 977385 5099592 979024 5106086 992289 5112625 988393 5115854 966284 5123852 971232 5127623 979859 5145178 974509 5150748 958986 5145678 956172 5155903 963872 5157690 971417 5167096 968108 5177387 953111 5183307 954317 5193114 961924 5199253 967150 5201549 958708 5213551 952431 5217569 965387 5230427 964398 5237347 994918 5256788 1007781 5260151 1011214 5268059 1025314 5271089 1034251 5262379 1039848 5271594 1037590 5296002 1040435 5305715 1040250 5312097 1049774 5312858 1053732 5300899 1056360 5283769 1053082 5251829 1057853 5246199 1057226 5251408 1062328 5225609 1058432 5170802 1047176 5147006 1040713 5104060 1033354 5102405 1041425 5100337 1029798 5073292 1026273 5066534322970 6567879 337885 6581391 346544 6584815 355480 6575672 365282 6549815 365128 6540030 374837 6532541 400998 6532834 408419 6523553 408759 6506479 414696 6500764 418963 6507448 455389 6500909 469335 6492343 460615 6470168 470479 6460333 461976 6443916 464017 6443050 496299 6435648 520264 6445649 529602 6468721 542837 6473159 540116 6460043 534426 6442425 543363 6431516 540796 6411087 567482 6406296 580748 6392854 587334 6394240 593302 6387597 590797 6382582 603723 6378861 609258 6361176 635101 6366171 643765 6364807 663835 6358129 665845 6351277 686315 6360938 708239 6353274 722896 6351085 734121 6336688 733565 6329380 755550 6302476 761302 6301199 762260 6311466 782205 6306970 783504 6294962 789070 6296142 819466 6299972 821012 6304085 833443 6302760 839349 6289954 861736 6281933 883722 6283158 911954 6269581 915869 6268706 905399 6255462 881819 6222429 868508 6205995 869127 6192682 865138 6189041 862819 6163045 846585 6133002 842874 6113047 847791 6107316 836380 6054929 844781 6038017 837277 6028328 829639 6019127 823276 6014137 799088 6015149 801284 6023291 778185 6023613 780102 6016659 776824 6014874 766002 6000530 781803 6002949 786101 5998658 780442 5992043 773485 5989856 745222 5953233 746150 5948377 733286 5940076 716310 5930155 718320 5905333 704098 5893970 682388 5875944 676606 5854506 681770 5844993 680657 5821754 674689 5820590 664144 5813304 667917 5808303 664114 5802856 684862 5804997 701931 5820904 694881 5828196 695071 5832164 695345 5837868 704467 5845801 738450 5855044 756540 5849929 757962 5846473 757522 5845570 753355 5837017 761920 5823944 756447 5815314 755643 5803168 766373 5800578 764919 5788675 771351 5790814 783550 5769414 757962 5753369 756880 5745295 759663 5734793 778216 5722842 779174 5703493 799428 5686562 794048 5677670 792904 5669180 762569 5642973 752612 5648059 736954 5638960 751035 5624712 750664 5613301 780349 5597717 786905 5572717 779329 5574283 773763 5568889 774815 5563282 762848 5549521 763342 5544360 772001 5534261 766558 5530019 772093 5515614 810344 5489716 854130 5493768 857624 5476623 834030 5445258 838766 5431992 830153 5428169 828295 5428041 828028 5428423 827749 5428854 827571 5429317 827382 5429794 827037 5430134 826514 5430396 825991 5430303 825556 5430010 825189 5429656 824844 5429271 824477 5428931 824109 5428592 823798 5428160 823453 5427775 823085 5427436 822718 5427051 822406 5426620 822250 5426157 822250 5425587 822462 5425125 822651 5424648 822740 5424093 822783 5423450 818147 5422494 817734 5422296 796893 5413446 794141 5398241 779824 5397344 763033 5377226 751190 5378375 742470 5360124 733534 5356555 743769 5346195 736378 5337796 734028 5342080 709693 5334787 708889 5326103 690397 5331779 686470 5329576 688078 5320558 677781 5319965 682048 5323478 680997 5326908 660650 5332329 658022 5327204 652580 5320727 643550 5324536 643488 5333176 604681 5345645 597074 5345813 596858 5363143 592467 5367947 563679 5363993 558020 5369012 558638 5373183 582263 5382891 581892 5387791 574656 5384851 560092 5397089 558391 5387876 563369 5383104 563400 5377735 551897 5376885 542806 5376713 542528 5368969 529541 5376033 527840 5375735 536158 5369990 536745 5366927 512843 5367225 509101 5369990 512255 5376885 505150 5380935 489744 5381611 481024 5381995 480065 5389879 472799 5387152 472056 5384041 467016 5382464 459162 5388132 460090 5394016 452204 5398112 429755 5386043 386433 5354474 371931 5353327 345338 5324789 338782 5328262 337329 5322503 343452 5319627 338164 5302885 338071 5296339 329939 5288913 331206 5283010 335319 5281282 339803 5293512 339463 5244312 353658 5226758 350749 5226111 338226 5232397 298151 5221336 297347 5211794 275701 5213801 250933 5226321 232318 5215559 220041 5217274 217413 5226696 198984 5234703 190464 5232173 198334 5248512 171556 5259435 159771 5250853 154023 5264860 90818 5287815 74337 5287521 74368 5273699 75264 5264777 45919 5265702 32406 5262758 29160 5269068 -6401 5265533 -13791 5275132 -20903 5279428 -34138 5289039 -43662 5281030 -55753 5284949 -57793 5280187 -73038 5291234 -83149 5306728 -91158 5303770 -144777 5322885 -143417 5328134 -151425 5316791 -160362 5319330 -163949 5325847 -153837 5341952 -156868 5353624 -180338 5351077 -184326 5359189 -201543 5370894 -183925 5372968 -166237 5397814 -158568 5428204 -144066 5505721 -134542 5562806 -132718 5568455 -117380 5568152 -115463 5571760 -126286 5584382 -130120 5586342 -139026 5563588 -140170 5573152 -132996 5641001 -121926 5708966 -117813 5711927 -117751 5703890 -89983 5679518 -81913 5660568 -79563 5642097 -73656 5629964 -62401 5619422 -65586 5624930 -55103 5621345 -57824 5626375 -69018 5631013 -74399 5641087 -82129 5684757 -94622 5703626 -138629 5733645 -137016 5746449 -127584 5748887 -109681 5734836 -126688 5754744 -119328 5773762 -123719 5781415 -117504 5781727 -122884 5796432 -128265 5805266 -133862 5805266 -132903 5814912 -123101 5821887 -123812 5830747 -133027 5831641 -135191 5824258 -156466 5836077 -161259 5834687 -163887 5844008 -168309 5847776 -186336 5853070 -200313 5858727 -213084 5891393 -234668 5911702 -237544 5923683 -223869 5945344 -220907 5947696 -228391 5957956 -249325 5964271 -240852 5969092 -241069 5985435 -225422 5990678 -202138 5980879 -222515 5994051 -240388 5992820 -253066 5981607 -277835 5989763 -271898 5989719 -272578 5994873 -284267 6003817 -266734 6008477 -270970 6011081 -277062 6021005 -262869 6024758 -296357 6028374 -304582 6024758 -312777 6022696 -324187 6032588 -320291 6034741 -304675 6031305 -298398 6042718 -308200 6043957 -320600 6041572 -326908 6040105 -329568 6034695 -347904 6040471 -347348 6024161 -350564 6027596 -348677 6036711 -356284 6050382 -350440 6063937 -357645 6049235 -373415 6058192 -365283 6070745 -383094 6057318 -413305 6075625 -428333 6072585 -439836 6090049 -454802 6084976 -465625 6087143 -462594 6078939 -468624 6073552 -485570 6074104 -483560 6082533 -492001 6100339 -504216 6110597 -513523 6110319 -526053 6113677 -518996 6119108 -478117 6123321 -478396 6136573 -493300 6146968 -500165 6146224 -505081 6136202 -508019 6145806 -514729 6153889 -502391 6156955 -471438 6157559 -481302 6160256 -480715 6166583 -495217 6162022 -490424 6170633 -477932 6178224 -530314 6162814 -533282 6177246 -528118 6198145 -515626 6203845 -492960 6215772 -480251 6219190 -470077 6215398 -464944 6221766 -441722 6229497 -440083 6216053 -434177 6220127 -429044 6212171 -424220 6228514 -400317 6220033 -397534 6221766 -398833 6228606 -393205 6230717 -398617 6235406 -391041 6247285 -363242 6247519 -358542 6252923 -358913 6239959 -345276 6253206 -342771 6245546 -328238 6235736 -321002 6220876 -314447 6216522 -307860 6202583 -295368 6195576 -274372 6212310 -257631 6222862 -254303 6218910 -259282 6211421 -247840 6209174 -242275 6203798 -234420 6215024 -222917 6204408 -220691 6192821 -217846 6198986 -225979 6215821 -205848 6225653 -208167 6215679 -204890 6209878 -182348 6210063 -159620 6217973 -173751 6231654 -178761 6247942 -172452 6261767 -173287 6277546 -176472 6276368 -179255 6291465 -172483 6312224 -181389 6311515 -197499 6339869 -201767 6339206 -205477 6360081 -209775 6365128 -204828 6373566 -206157 6384638 -216609 6390274 -216176 6398593 -165062 6390274 -157053 6395341 -140077 6393525 -140232 6374902 -144654 6373662 -144901 6367656 -127152 6333413 -112866 6342103 -48579 6332938 -24305 6321603 24305 6347569 43755 6353086 15987 6356179 8689 6362130 20532 6394959 68121 6421632 125915 6437427 159805 6463321 167598 6481320 173102 6484366 184450 6478230 183121 6483978 172329 6492584 170783 6496407 172854 6508855 179255 6510308 173535 6516274 175545 6552983 175452 6597348 216331 6620457 275268 6633781 282937 6637424 290822 6601367 292708 6590345 309685 6578167 322970 6567879 tinyows-1.2.2/demo/tests/expected/wfs11_getfeatures_france_bboxwithoutcrsuri.txt000066400000000000000000000266401465244332600304440ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/3.1.1 France FRA Europe 41.366379 9.219166 41.392769 9.0975 41.474709 9.080555 41.506649 8.882221 41.588871 8.779999 41.632488 8.794722 41.67638 8.913887 41.69804 8.878887 41.751659 8.680275 41.776932 8.724722 41.894428 8.802219 41.93166 8.754164 41.89777 8.614721 41.966099 8.589441 41.978039 8.658609 42.040821 8.726387 42.10944 8.696665 42.14888 8.561943 42.214161 8.572777 42.25499 8.641109 42.27026 8.688055 42.349991 8.612221 42.376659 8.555832 42.461929 8.672222 42.507771 8.663332 42.636379 8.937498 42.6586 9.053053 42.710819 9.083887 42.73082 9.210554 42.673321 9.290833 42.73415 9.34111 42.894989 9.320833 42.958881 9.346388 43.00082 9.344721 43.005821 9.430277 42.927212 9.465832 42.81443 9.489443 42.6036 9.459999 42.56636 9.502857 42.600819 9.497221 42.429989 9.543055 42.06554 9.508055 41.906651 9.406944 41.618881 9.348888 41.607769 9.282776 41.59388 9.355276 41.41193 9.25083 41.366379 9.21916650.697048 2.901285 50.773869 3.035277 50.79332 3.113055 50.741371 3.193333 50.594151 3.281388 50.538319 3.28 50.495541 3.367222 50.497211 3.602222 50.444149 3.668889 50.346371 3.671944 50.313599 3.725277 50.351929 3.763611 50.31443 4.090833 50.26527 4.21611 50.13776 4.137777 50.0811 4.226388 49.98637 4.15 49.981369 4.168332 49.938591 4.458333 49.99638 4.67361 50.129429 4.7575 50.15498 4.876388 50.07943 4.851943 49.97776 4.800832 49.9147 4.88111 49.796379 4.858054 49.768589 5.097777 49.69054 5.216944 49.698589 5.276111 49.659981 5.329721 49.63081 5.307221 49.60915 5.423332 49.5061 5.473055 49.535229 5.705208 49.527271 5.783038 49.488319 5.963333 49.448318 5.981388 49.504711 6.165277 49.45998 6.362221 49.447201 6.493888 49.363041 6.594722 49.320271 6.589722 49.162479 6.78722 49.15498 6.838888 49.21526 6.847499 49.188869 7.026666 49.11832 7.038332 49.125259 7.088332 49.14777 7.361388 49.171928 7.375277 49.16415 7.486943 49.088871 7.539999 49.04166 7.74111 49.04887 7.93861 48.968868 8.192221 48.963711 8.227394 48.88554 8.133333 48.690029 7.921515 48.59248 7.801943 48.513321 7.807499 48.49165 7.771666 48.336651 7.750833 48.156929 7.604999 48.037209 7.571666 48.002769 7.615832 47.686932 7.513333 47.58456 7.588799 47.525822 7.521388 47.469978 7.452777 47.439671 7.39561 47.44582 7.178332 47.495258 7.198054 47.497211 6.990555 47.45499 7.007777 47.444149 6.978333 47.35693 6.88111 47.371651 7.023055 47.345539 7.061665 47.30526 7.010833 47.291931 6.948332 47.068321 6.694443 47.038601 6.702777 46.987759 6.587221 46.926929 6.434721 46.774429 6.452777 46.704479 6.325022 46.593319 6.129999 46.460819 6.078055 46.40192 6.124443 46.257771 6.114444 46.250542 6.060832 46.205261 5.96611 46.17416 6 46.14027 5.965833 46.153591 6.152222 46.252491 6.305554 46.297771 6.242221 46.322392 6.243931 46.357769 6.246387 46.406929 6.328333 46.464149 6.633611 46.432491 6.79611 46.411091 6.808887 46.405499 6.804937 46.352489 6.767499 46.27137 6.844443 46.217758 6.795277 46.142208 6.788054 46.126091 6.884444 46.051929 6.871387 46.065262 6.929166 45.931721 7.038747 45.831379 6.808887 45.780819 6.799166 45.714989 6.824166 45.63998 6.990832 45.518318 6.999443 45.411652 7.181388 45.355549 7.133054 45.301929 7.122776 45.136101 6.850277 45.16832 6.760833 45.110661 6.620172 45.02026 6.746666 44.947762 6.743332 44.848591 7.009999 44.689152 7.068889 44.69915 7.000833 44.6647 6.950832 44.628868 6.960278 44.540821 6.852777 44.507771 6.857222 44.443039 6.934999 44.415821 6.88611 44.323318 6.935832 44.156651 7.279444 44.182758 7.672776 44.072208 7.704166 43.869431 7.492221 43.783451 7.534765 43.758652 7.457388 43.757824 7.4407 43.7603 7.4383 43.7631 7.4358 43.766102 7.4342 43.769199 7.4325 43.7714 7.4294 43.773102 7.4247 43.772499 7.42 43.770599 7.4161 43.768299 7.4128 43.7658 7.4097 43.763599 7.4064 43.761398 7.4031 43.758598 7.4003 43.7561 7.3972 43.753899 7.3939 43.7514 7.3906 43.7486 7.3878 43.745602 7.3864 43.741901 7.3864 43.738899 7.3883 43.735802 7.39 43.732201 7.3908 43.728031 7.391187 43.721825 7.349536 43.720539 7.345833 43.663052 7.15861 43.564159 7.133888 43.558319 7.005278 43.427212 6.854444 43.434711 6.748055 43.31554 6.669722 43.29221 6.589444 43.22443 6.681389 43.16943 6.615 43.197491 6.593888 43.149712 6.375278 43.09277 6.368055 43.12999 6.201943 43.115551 6.166666 43.056381 6.18111 43.05249 6.088611 43.07555 6.126943 43.098049 6.117499 43.133598 5.934722 43.099991 5.911111 43.057491 5.862222 43.082489 5.781111 43.139149 5.780555 43.220829 5.431944 43.221931 5.36361 43.33527 5.361666 43.36665 5.322222 43.34082 5.063611 43.3736 5.012777 43.400829 5.018332 43.464161 5.230555 43.496101 5.227221 43.47694 5.162222 43.55666 5.031388 43.496658 5.016109 43.465549 5.060833 43.430538 5.06111 43.424992 4.957777 43.42387 4.876111 43.373322 4.87361 43.41943 4.756944 43.417488 4.741666 43.37999 4.816388 43.359989 4.821666 43.361931 4.606944 43.37999 4.573333 43.424992 4.601666 43.451408 4.537837 43.455818 4.399444 43.458321 4.321111 43.509708 4.312499 43.49194 4.247222 43.471661 4.240555 43.46138 4.195276 43.498322 4.124722 43.536652 4.133055 43.56332 4.062222 43.484711 3.860555 43.278599 3.471389 43.271099 3.341111 43.084148 3.102222 43.10693 3.043333 43.069149 3.030278 43.05027 3.085278 42.940269 3.037777 42.897209 3.036944 42.84832 2.963889 42.809429 2.975277 42.798038 3.012222 42.878601 3.052499 42.553879 3.049444 42.437611 3.176962 42.433319 3.150833 42.474979 3.038333 42.401649 2.678333 42.338322 2.671111 42.35165 2.476666 42.434711 2.254167 42.363319 2.086944 42.374699 1.976666 42.437199 1.953055 42.490261 1.7875 42.473499 1.710967 42.581661 1.781667 42.65387 1.541111 42.597149 1.435247 42.689701 1.383611 42.841091 0.815833 42.839149 0.667778 42.748039 0.668055 42.689152 0.676111 42.695259 0.4125 42.675819 0.291111 42.71748 0.261944 42.694149 -0.0575 42.757488 -0.123889 42.78582 -0.187778 42.849152 -0.306667 42.796379 -0.392222 42.822208 -0.500833 42.790821 -0.519167 42.863602 -0.656111 42.965542 -0.746944 42.946091 -0.818889 43.071659 -1.300556 43.106091 -1.288333 43.031651 -1.360278 43.048321 -1.440556 43.091091 -1.472778 43.196651 -1.381945 43.273041 -1.409167 43.256378 -1.62 43.309429 -1.655833 43.385891 -1.810488 43.399429 -1.652223 43.561378 -1.493333 43.758881 -1.424445 44.259708 -1.294167 44.62582 -1.208611 44.66193 -1.192222 44.659988 -1.054445 44.683041 -1.037222 44.763599 -1.134444 44.7761 -1.168889 44.630821 -1.248889 44.691929 -1.259167 45.1236 -1.194722 45.552761 -1.095278 45.571381 -1.058333 45.520821 -1.057778 45.36721 -0.808333 45.24749 -0.735833 45.13055 -0.714722 45.0536 -0.661667 44.98666 -0.560556 45.021648 -0.589167 44.998878 -0.495 45.030819 -0.519445 45.060261 -0.62 45.124149 -0.668333 45.400269 -0.737778 45.519161 -0.85 45.70779 -1.245326 45.788052 -1.230834 45.803322 -1.146111 45.71526 -0.985278 45.839989 -1.138056 45.958881 -1.071944 46.006649 -1.111389 46.008598 -1.055556 46.100269 -1.103889 46.15527 -1.152222 46.15527 -1.2025 46.21526 -1.193889 46.258598 -1.105834 46.313599 -1.112222 46.319149 -1.195 46.273319 -1.214445 46.346661 -1.405556 46.338039 -1.448611 46.395821 -1.472222 46.419159 -1.511945 46.451931 -1.673889 46.486931 -1.799445 46.688599 -1.914167 46.813599 -2.108056 46.887211 -2.13389 47.020031 -2.011049 47.034431 -1.984445 47.09721 -2.051667 47.135818 -2.239722 47.165272 -2.163611 47.264992 -2.165556 47.29694 -2.025 47.237209 -1.815834 47.31749 -1.998889 47.30999 -2.159445 47.24165 -2.273334 47.29137 -2.495833 47.2911 -2.4425 47.322491 -2.448612 47.37693 -2.553611 47.40527 -2.396111 47.421101 -2.434167 47.48138 -2.488889 47.504162 -2.361389 47.5261 -2.662222 47.504162 -2.736111 47.49165 -2.809722 47.551659 -2.912222 47.564709 -2.877223 47.54388 -2.736945 47.613041 -2.680556 47.620541 -2.768611 47.606098 -2.88 47.59721 -2.936667 47.56443 -2.960556 47.59943 -3.125278 47.500542 -3.120278 47.521381 -3.149167 47.576649 -3.132223 47.659431 -3.200556 47.741379 -3.148056 47.652489 -3.212778 47.706661 -3.354445 47.78249 -3.281389 47.701382 -3.441389 47.811939 -3.712778 47.793598 -3.847778 47.89888 -3.951111 47.86832 -4.085556 47.881378 -4.182778 47.831928 -4.155556 47.799431 -4.209723 47.802761 -4.361945 47.8536 -4.343889 47.960819 -4.419723 48.022491 -4.529445 48.020821 -4.613056 48.040989 -4.725613 48.073601 -4.662223 48.098881 -4.295 48.178322 -4.297501 48.240551 -4.43139 48.236099 -4.493056 48.176102 -4.537223 48.233601 -4.563612 48.28194 -4.623889 48.30027 -4.513056 48.303879 -4.235001 48.319988 -4.323611 48.357769 -4.318334 48.33054 -4.448611 48.381939 -4.405556 48.427212 -4.293334 48.33527 -4.763889 48.421379 -4.790556 48.545818 -4.744167 48.579708 -4.631945 48.650539 -4.428334 48.670818 -4.314167 48.648319 -4.222778 48.6861 -4.176667 48.73193 -3.968056 48.65221 -3.953333 48.67638 -3.900278 48.629162 -3.854167 48.726101 -3.810833 48.675819 -3.596111 48.6861 -3.571111 48.72665 -3.582778 48.739159 -3.532222 48.76693 -3.580834 48.837212 -3.512778 48.8386 -3.263056 48.870541 -3.220834 48.79388 -3.224167 48.872211 -3.101667 48.826931 -3.079167 48.768879 -2.948611 48.68082 -2.883611 48.654991 -2.824722 48.572208 -2.765556 48.53054 -2.653334 48.62999 -2.464723 48.6926 -2.314336 48.669159 -2.284445 48.62471 -2.329167 48.61137 -2.226389 48.57943 -2.176389 48.646099 -2.105834 48.58305 -2.0025 48.514149 -1.9825 48.550819 -1.956944 48.650829 -2.03 48.709148 -1.849167 48.64999 -1.87 48.615551 -1.840556 48.61665 -1.638056 48.663601 -1.433889 48.744709 -1.560833 48.841099 -1.605834 48.922771 -1.549167 49.01582 -1.556667 49.008881 -1.585278 49.097759 -1.610278 49.219711 -1.549445 49.215549 -1.629445 49.381649 -1.774167 49.377769 -1.8125 49.49971 -1.845834 49.529148 -1.884444 49.57832 -1.84 49.642769 -1.851944 49.675541 -1.945833 49.723881 -1.941945 49.675541 -1.482778 49.70499 -1.410833 49.694439 -1.258333 49.586102 -1.259722 49.57888 -1.299445 49.54388 -1.301667 49.34388 -1.142222 49.394711 -1.013889 49.341099 -0.436389 49.274712 -0.218333 49.426659 0.218333 49.458881 0.393055 49.47694 0.143611 49.511662 0.078056 49.70277 0.184444 49.857491 0.611944 49.948879 1.131111 50.09832 1.435555 50.201931 1.505555 50.21944 1.555 50.184158 1.656944 50.217209 1.645 50.266651 1.548055 50.288601 1.534167 50.359989 1.552778 50.36832 1.610278 50.402489 1.558889 50.612209 1.576944 50.864429 1.576111 50.99527 1.943333 51.070541 2.472777 51.091099 2.541667 50.887211 2.6125 50.824711 2.629444 50.75555 2.781944 50.697048 2.901285 tinyows-1.2.2/demo/tests/expected/wfs11_getfeatures_france_onefeature.txt000066400000000000000000000216141465244332600267670ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/3.1.1 49 053 BOURG-EN-BRESSE 8231 21379 8244 21380 AIN 82 RHONE-ALPES 01 801150 2092615 800669 2093190 800688 2095430 800780 2095795 800589 2096112 800333 2097190 799095 2098505 799136 2098838 799690 2100360 799329 2100395 797715 2100950 797655 2101330 797410 2102850 797149 2102788 796755 2102425 796738 2102785 796612 2103487 795234 2103892 794905 2104515 794547 2104359 791555 2102570 791465 2102760 791935 2104075 791835 2105023 791670 2105295 790205 2105555 790035 2105875 789304 2107116 788617 2107148 788005 2106760 787670 2106708 786705 2106990 786350 2107029 785720 2107335 785562 2108399 786670 2109486 786930 2109775 787055 2110010 787208 2110344 787367 2111056 786900 2113550 786795 2114260 786830 2114370 786811 2114751 786384 2116197 786550 2116940 786560 2117563 786465 2117860 785956 2119206 787211 2120474 787415 2120775 787600 2121475 787536 2121809 787137 2122743 786610 2123110 786457 2124100 787138 2124890 787365 2125160 787545 2125377 787880 2125830 788198 2126745 788225 2127075 789130 2128290 789370 2128585 789790 2129209 789995 2129525 790445 2131460 790237 2131793 789585 2132230 788993 2132742 788830 2133100 788650 2133655 788638 2134028 788673 2135142 789501 2136382 789510 2137110 789596 2138174 789680 2138520 789845 2139015 790050 2139590 790594 2140547 790750 2142011 790740 2142380 790739 2142716 791139 2143599 791749 2144456 791860 2144790 792199 2147049 792285 2147420 792880 2148815 793615 2150425 793737 2150782 793650 2152285 793618 2152660 793480 2153400 794012 2155103 794347 2155696 794535 2155980 794686 2156241 795135 2157025 796115 2159030 796193 2160314 796250 2160635 796311 2161408 796335 2161795 796324 2162102 796316 2163021 796385 2163470 796495 2163785 797830 2165380 797970 2165700 797959 2167362 797910 2167695 797905 2167835 798850 2169845 798930 2170117 798980 2170395 799122 2171035 799255 2171335 799340 2171435 800295 2171593 800326 2170924 800757 2170498 801505 2170754 802043 2171611 802820 2171760 804846 2171217 805165 2171380 805338 2170485 805485 2170210 808352 2168729 808655 2168520 809605 2168719 809930 2168735 811710 2170150 813076 2169640 814292 2170568 814670 2170640 815189 2171442 816978 2171075 817045 2172530 818290 2171719 819798 2171534 819990 2171205 819753 2170948 820496 2169812 820305 2169145 820810 2168648 821023 2167568 821020 2167190 821753 2167185 822453 2166355 822690 2166075 823263 2166394 823585 2166285 824250 2165476 825284 2165330 825600 2165160 828440 2165065 829372 2163119 828470 2162490 828705 2161655 828395 2161531 827745 2161519 828485 2161005 830445 2159908 831525 2159915 832747 2158958 833030 2158780 833286 2158494 833885 2158105 833687 2157807 832940 2157040 832830 2156696 833866 2155806 833825 2155445 833752 2155097 833675 2154750 835995 2153047 835930 2152675 836194 2151171 836185 2150780 836190 2150680 836405 2150149 836690 2150070 837059 2153840 837545 2154400 838628 2151187 838735 2150820 840056 2151192 840530 2151708 840855 2151840 841371 2151081 841670 2150965 841591 2150606 841093 2148479 840525 2148155 840483 2146631 841576 2145603 841898 2145394 843750 2145800 843973 2146033 844372 2145523 844675 2145410 846805 2146002 848292 2147688 848440 2148035 848651 2148733 850029 2148841 850390 2148775 851184 2149407 851650 2150710 851857 2150922 851710 2151180 852195 2152638 853883 2153465 854050 2153815 854684 2154550 854950 2153948 855010 2153605 854706 2152546 856495 2152522 857425 2151954 857675 2151680 857795 2151135 860115 2150917 860522 2149401 860356 2147845 860868 2145955 861160 2145690 861499 2145842 861800 2146060 863931 2146529 864270 2146675 867954 2146311 868320 2146245 868625 2146162 868940 2146145 870819 2146227 871569 2147047 872099 2147009 872230 2146655 873891 2148801 874080 2149145 875215 2148900 875688 2149908 875836 2151749 876350 2152270 877249 2151866 877575 2151825 877751 2152160 879950 2156500 880577 2157904 882757 2159490 884049 2160898 885600 2163565 886165 2164270 886435 2164140 889069 2163415 889778 2162493 890867 2162099 893000 2160395 894101 2160083 894575 2159465 894622 2158743 893375 2156340 892712 2155944 892540 2155185 891600 2153375 891281 2152677 891245 2152295 891340 2150917 890292 2149984 890080 2149695 890987 2147869 891235 2147615 891560 2147405 891794 2146272 891337 2145258 890413 2144570 889185 2145445 888822 2145356 887853 2144792 887180 2145110 886092 2143618 885735 2143730 885432 2143963 884760 2143997 883760 2143495 883455 2143280 882749 2142419 882058 2142149 881989 2141782 880591 2141448 880422 2140052 879890 2139555 879855 2139435 882197 2138192 882019 2137078 881408 2136753 880810 2134940 880202 2133632 880177 2132631 879600 2132205 879351 2132001 878142 2131755 877449 2131650 876853 2131962 875845 2130970 875089 2130628 874800 2130520 874322 2129464 874925 2128114 874725 2126982 872900 2126720 872100 2126810 871837 2127080 870648 2128513 869972 2128829 869296 2128495 869435 2127050 868710 2125650 868663 2125275 868525 2123780 868760 2123569 868985 2123070 868525 2121885 868617 2121591 868760 2120685 868864 2120349 869034 2119679 868545 2118760 868661 2118458 868975 2117935 868911 2117610 869020 2116295 869215 2115554 870970 2114005 870979 2113621 870925 2112855 871130 2111817 870721 2110485 870455 2110250 870800 2110165 870344 2109573 870311 2108843 870897 2107500 870710 2106390 870615 2106018 869975 2103410 869465 2101545 869314 2101232 869040 2099875 868989 2099512 868710 2098080 868050 2097320 867940 2096964 867995 2094425 867975 2094056 867825 2092595 867736 2092277 867995 2091670 867979 2091277 867788 2090131 868170 2088645 867935 2088380 867643 2088330 867110 2088110 867246 2087753 867588 2086334 866723 2085607 866013 2084278 865294 2084187 864275 2084575 864000 2084465 863659 2084328 861885 2084450 861845 2084109 862185 2083150 862398 2082820 862694 2082092 862533 2081333 860925 2079632 860842 2078870 861160 2078155 861300 2077808 861210 2077080 860973 2076787 860337 2076386 858511 2076155 858205 2075110 858072 2074811 857453 2074591 857320 2073960 857265 2073584 856650 2073221 856355 2073460 856182 2073797 855610 2074780 854744 2075941 854474 2077758 852864 2078730 852620 2079020 852647 2079386 851685 2079920 851354 2080021 850753 2079717 850470 2079917 850320 2080840 850069 2081131 850023 2082613 850741 2082507 851509 2081230 852157 2081554 852073 2082291 850451 2083206 850375 2083940 850111 2084174 849805 2084350 848375 2084500 848150 2084810 847545 2086215 847281 2086449 845980 2087620 845694 2087856 844840 2088564 842895 2091270 842098 2091898 841825 2092105 841604 2092424 841170 2093065 840895 2093318 839825 2094355 839769 2096198 840798 2096536 840745 2096910 840580 2097185 840305 2097470 839320 2098117 839165 2098880 839016 2099191 838200 2099825 836342 2100899 836100 2101165 835840 2101453 834252 2102554 833175 2102260 833017 2102031 832785 2101525 832719 2101162 832433 2100482 831189 2099710 830330 2098550 829565 2095140 829550 2094745 829422 2094389 828638 2093577 827810 2091920 827523 2091724 826955 2091325 826653 2091135 825785 2090510 825487 2090257 824587 2089517 822700 2089735 822339 2089692 821748 2090044 821660 2090765 821459 2091109 820815 2092110 820470 2092273 819281 2093148 818215 2093260 817851 2093406 816405 2093980 815735 2093715 815844 2092629 815501 2092497 814830 2094120 814502 2094025 814175 2093925 813785 2093907 811510 2093620 811202 2093793 810503 2093796 809935 2093390 808612 2093210 808305 2093030 807965 2092976 807085 2093490 806759 2093370 806450 2093210 805480 2092960 804700 2093105 804426 2093280 803230 2093210 802864 2093269 801150 2092615 tinyows-1.2.2/demo/tests/expected/wfs11_getfeatures_geometry_less.txt000066400000000000000000000017511465244332600261750ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/3.1.1 123 foo tinyows-1.2.2/demo/tests/expected/wfs11_getfeatures_world_onefeature.txt000066400000000000000000000154231465244332600266610ustar00rootroot00000000000000Content-Type: text/xml; subtype=gml/3.1.1 Afghanistan AFG Asia 37.333199 65.627296 37.458881 65.646927 37.53693 65.70137 37.534161 65.766083 37.568878 65.785522 37.323601 66.30275 37.360512 66.538765 37.368038 66.586906 37.338322 66.665253 37.36137 66.744423 37.377201 67.021637 37.246651 67.200256 37.191929 67.229424 37.185261 67.266373 37.234989 67.424408 37.27248 67.521637 37.215542 67.557457 37.24609 67.649406 37.206089 67.774139 37.185799 67.777153 37.088322 67.791641 37.061371 67.885529 37.014431 67.910522 36.924709 68.035522 37.019981 68.28331 37.086929 68.278313 37.111099 68.301643 37.104431 68.413017 37.148041 68.412193 37.16193 68.524979 37.246929 68.654694 37.247761 68.825813 37.322491 68.809402 37.324711 68.85025 37.272209 68.904968 37.28471 68.924408 37.31749 68.891647 37.307758 68.999687 37.094151 69.246628 37.124981 69.333038 37.22998 69.45137 37.344151 69.381348 37.455818 69.382736 37.580818 69.515808 37.611931 69.91803 37.564991 69.958588 37.529148 70.134979 37.62109 70.255539 37.741371 70.276917 37.872211 70.165527 37.94165 70.170242 37.92054 70.203857 38.057758 70.378304 38.16721 70.491913 38.278591 70.584412 38.334148 70.596359 38.375259 70.685516 38.414429 70.672203 38.453041 70.880524 38.40609 71.101913 38.248871 71.363022 38.18803 71.363861 38.019981 71.284698 37.918049 71.264137 37.905819 71.37468 37.942478 71.546356 37.903042 71.591919 37.81609 71.588577 37.764431 71.528847 37.284161 71.49025 37.20776 71.446907 37.05859 71.43219 36.741371 71.568314 36.672211 71.695236 36.692478 71.842743 36.812199 72.011368 36.989979 72.346626 37.026089 72.663589 37.22998 72.798859 37.320541 73.08136 37.400822 73.150528 37.463322 73.314407 37.434429 73.776642 37.331379 73.752762 37.304428 73.649406 37.26276 73.619957 37.239979 73.634407 37.22942 73.792473 37.4286 74.363861 37.399429 74.400803 37.39193 74.699692 37.240299 74.898827 37.219151 74.816933 37.30109 74.763313 37.266102 74.669418 37.234711 74.651077 37.243038 74.537193 37.175259 74.392197 37.139149 74.400528 37.02647 74.567749 36.96526 74.558006 37.011101 74.482193 36.958881 74.336906 36.899429 74.251923 36.906651 74.158859 36.821659 74.06218 36.837761 73.963028 36.901089 73.779694 36.873871 73.113022 36.771931 72.492462 36.71471 72.181641 36.6572 72.191643 36.628868 72.073303 36.58942 72.074692 36.491928 71.795807 36.41666 71.817749 36.40749 71.753036 36.46804 71.646637 36.372478 71.563019 36.335819 71.582748 36.133041 71.248581 36.047211 71.188019 35.96859 71.291077 35.946091 71.380524 35.711102 71.545242 35.626652 71.508591 35.561932 71.613861 35.48193 71.606918 35.436939 71.647202 35.32832 71.549133 35.28915 71.553574 35.207489 71.659126 35.131371 71.618027 35.0947 71.543297 34.959431 71.496078 34.886929 71.313858 34.744431 71.225517 34.676651 71.09581 34.56805 71.094971 34.55859 70.995796 34.510818 70.978027 34.39415 71.073029 34.36137 71.153313 34.166088 71.135529 34.008881 70.981079 34.013321 70.905533 33.973591 70.900528 33.943039 70.491348 34.031101 69.902763 33.881931 69.907471 33.75304 69.985519 33.735538 70.132736 33.64082 70.196617 33.485821 70.197739 33.396099 70.306084 33.33194 70.32692 33.202492 70.144974 33.20499 70.067749 33.139431 70.033577 33.089981 69.881073 33.126942 69.791351 33.081928 69.561081 33.008598 69.492462 32.873878 69.515259 32.773869 69.394974 32.682209 69.456917 32.587761 69.397751 32.526379 69.287483 32.443871 69.248016 32.21777 69.283043 32.069149 69.287483 31.94389 69.333862 31.64555 69.029694 31.60388 68.833038 31.69944 68.731918 31.778879 68.712479 31.829161 68.54747 31.79472 68.444122 31.77277 68.447739 31.76527 68.57164 31.72666 68.53775 31.81559 68.221626 31.83305 68.166077 31.63583 67.98053 31.63999 67.887482 31.53083 67.738022 31.5336 67.581093 31.40999 67.646362 31.4111 67.766922 31.38249 67.799698 31.341101 67.791924 31.2136 67.288017 31.22249 67.256363 31.239161 67.069702 31.25444 67.034698 31.297779 67.051643 31.318609 67.036911 31.296101 66.891647 31.21221 66.723022 31.086109 66.684128 30.97777 66.56636 30.94611 66.404968 30.57527 66.281921 30.45055 66.35025 30.114161 66.259697 30.071381 66.238297 29.966101 66.361359 29.85194 66.256638 29.640551 65.417473 29.5411 65.034126 29.58638 64.695511 29.52389 64.273857 29.48749 64.193024 29.394159 64.131348 29.50388 63.5872 29.43388 62.78693 29.406099 62.484428 29.615829 61.743599 29.826099 60.99387 29.862431 60.866871 30.259991 61.25304 30.843611 61.812759 30.94582 61.803871 31.04888 61.84721 31.24527 61.76582 31.318331 61.771099 31.383329 61.7136 31.395821 61.619431 31.498329 60.843868 31.8736 60.810261 32.234718 60.857769 32.578869 60.74165 33.071659 60.581928 33.16304 60.591091 33.418049 60.85165 33.49387 60.858318 33.504429 60.9286 33.554428 60.901649 33.574989 60.649151 33.653042 60.522758 33.739151 60.50526 33.81332 60.55415 33.999149 60.52137 34.150822 60.513599 34.313599 60.67165 34.31638 60.911091 34.345821 60.89777 34.483318 60.756649 34.54166 60.733601 34.576389 60.863602 34.812759 61.065262 35.201649 61.11388 35.279148 61.104431 35.29694 61.1861 35.481091 61.239151 35.52026 61.27776 35.60675 61.278721 35.639709 61.365822 35.52721 61.464989 35.450821 61.576649 35.411091 61.802479 35.45998 61.97221 35.394711 62.100819 35.297771 62.259159 35.145538 62.305538 35.286381 62.459431 35.224979 62.62331 35.481369 63.110538 35.626091 63.095261 35.69553 63.23888 35.825821 63.10416 35.861931 63.119431 35.852211 63.317211 35.90971 63.538879 35.9622 63.595539 36.03915 63.933868 36.000271 64.063858 36.088039 64.059692 36.167488 64.169418 36.15192 64.282471 36.216381 64.32164 36.247211 64.458862 36.35638 64.570534 36.45998 64.627747 36.629429 64.61525 36.923038 64.795242 37.095821 64.779137 37.124981 64.798019 37.244431 65.072746 37.2486 65.530807 37.333199 65.627296 tinyows-1.2.2/demo/tests/input/000077500000000000000000000000001465244332600164665ustar00rootroot00000000000000tinyows-1.2.2/demo/tests/input/wfs10_describe.txt000066400000000000000000000000661465244332600220310ustar00rootroot00000000000000service=WFS&version=1.0.0&request=DescribeFeatureType tinyows-1.2.2/demo/tests/input/wfs10_getcaps.txt000066400000000000000000000000621465244332600216730ustar00rootroot00000000000000service=WFS&version=1.0.0&request=GetCapabilities tinyows-1.2.2/demo/tests/input/wfs10_getfeatures_france_bbox.txt000066400000000000000000000001201465244332600251060ustar00rootroot00000000000000SERVICE=WFS&REQUEST=GetFeature&VERSION=1.0.0&TYPENAME=tows:world&bbox=2,49,3,50 tinyows-1.2.2/demo/tests/input/wfs10_getfeatures_france_onefeature.txt000066400000000000000000000001201465244332600263110ustar00rootroot00000000000000service=WFS&version=1.0.0&request=GetFeature&typename=tows:france&maxfeatures=1 tinyows-1.2.2/demo/tests/input/wfs10_getfeatures_geometry_less.txt000066400000000000000000000001111465244332600255170ustar00rootroot00000000000000service=WFS&version=1.0.0&request=GetFeature&typename=tows:geometry_less tinyows-1.2.2/demo/tests/input/wfs10_getfeatures_world_onefeature.txt000066400000000000000000000001171465244332600262100ustar00rootroot00000000000000service=WFS&version=1.0.0&request=GetFeature&typename=tows:world&maxfeatures=1 tinyows-1.2.2/demo/tests/input/wfs11_describe.txt000066400000000000000000000000661465244332600220320ustar00rootroot00000000000000service=WFS&version=1.1.0&request=DescribeFeatureType tinyows-1.2.2/demo/tests/input/wfs11_getcaps.txt000066400000000000000000000000621465244332600216740ustar00rootroot00000000000000service=WFS&version=1.1.0&request=GetCapabilities tinyows-1.2.2/demo/tests/input/wfs11_getfeatures_france_bboxwithcrsuri.txt000066400000000000000000000001771465244332600272470ustar00rootroot00000000000000SERVICE=WFS&REQUEST=GetFeature&VERSION=1.1.0&TYPENAME=tows:world&bbox=222638,6274861,333958,6446275,urn:ogc:def:crs:EPSG::3857 tinyows-1.2.2/demo/tests/input/wfs11_getfeatures_france_bboxwithcrsuri_srsname.txt000066400000000000000000000002421465244332600307700ustar00rootroot00000000000000SERVICE=WFS&REQUEST=GetFeature&VERSION=1.1.0&TYPENAME=tows:world&SRSNAME=urn:ogc:def:crs:EPSG::3857&bbox=222638,6274861,333958,6446275,urn:ogc:def:crs:EPSG::3857 tinyows-1.2.2/demo/tests/input/wfs11_getfeatures_france_bboxwithoutcrsuri.txt000066400000000000000000000001201465244332600277630ustar00rootroot00000000000000SERVICE=WFS&REQUEST=GetFeature&VERSION=1.1.0&TYPENAME=tows:world&bbox=49,2,50,3 tinyows-1.2.2/demo/tests/input/wfs11_getfeatures_france_onefeature.txt000066400000000000000000000001201465244332600263120ustar00rootroot00000000000000service=WFS&version=1.1.0&request=GetFeature&typename=tows:france&maxfeatures=1 tinyows-1.2.2/demo/tests/input/wfs11_getfeatures_geometry_less.txt000066400000000000000000000001111465244332600255200ustar00rootroot00000000000000service=WFS&version=1.1.0&request=GetFeature&typename=tows:geometry_less tinyows-1.2.2/demo/tests/input/wfs11_getfeatures_world_onefeature.txt000066400000000000000000000001171465244332600262110ustar00rootroot00000000000000service=WFS&version=1.1.0&request=GetFeature&typename=tows:world&maxfeatures=1 tinyows-1.2.2/demo/tests/transactions/000077500000000000000000000000001465244332600200375ustar00rootroot00000000000000tinyows-1.2.2/demo/tests/transactions/input/000077500000000000000000000000001465244332600211765ustar00rootroot00000000000000tinyows-1.2.2/demo/tests/transactions/input/wfst10_france_insert.xml000066400000000000000000000024401465244332600257460ustar00rootroot00000000000000 -1234 2171610,802820 2171611,802820 2171611,802821 2171610,802820 tinyows-1.2.2/demo/tests/transactions/input/wfst10_world_insert.xml000066400000000000000000000023521465244332600256410ustar00rootroot00000000000000 -1234 2,49 2,50 3,50 2,49 tinyows-1.2.2/demo/tests/transactions/input/wfst11_france_insert.xml000066400000000000000000000024611465244332600257520ustar00rootroot00000000000000 -1234 2171610,802820 2171611,802820 2171611,802821 2171610,802820 tinyows-1.2.2/demo/tests/transactions/input/wfst11_geometry_less_insert.xml000066400000000000000000000015751465244332600274020ustar00rootroot00000000000000 -1234 minus 1234 tinyows-1.2.2/demo/tests/transactions/input/wfst11_world_insert.xml000066400000000000000000000023731465244332600256450ustar00rootroot00000000000000 -1234 49,2 50,2 50,3 49,2 tinyows-1.2.2/demo/tests/transactions/input/wfst11_world_insert_srsname_in_wfsinsert.xml000066400000000000000000000023731465244332600321670ustar00rootroot00000000000000 -1234 49,2 50,2 50,3 49,2 tinyows-1.2.2/demo/tinyows.xml.in000066400000000000000000000012341465244332600170300ustar00rootroot00000000000000 tinyows-1.2.2/demo/tinyows_no_checkschema.xml000066400000000000000000000020131465244332600214310ustar00rootroot00000000000000 tinyows-1.2.2/demo/world.dbf000066400000000000000000000343271465244332600160020ustar00rootroot00000000000000fEWNAMEC(GMI_CNTRYCREGIONC Afghanistan AFGAsia Albania ALBEurope Algeria DZANorthAfrica Andorra ANDEurope Angola AGOSub Saharan Africa Antarctica ATAAntarctica Antigua and Barbuda ATGCaribbean Argentina ARGLatin America Armenia ARMAsia Australia AUSAustralia Austria AUTEurope Azerbaijan AZEAsia Bahamas, The BHSCaribbean Bahrain BHRAsia Bangladesh BGDAsia Barbados BRBCaribbean Belgium BELEurope Belize BLZLatin America Benin BENSub Saharan Africa Bermuda BMUNorth America Bhutan BTNAsia Bolivia BOLLatin America Bosnia and Herzegovina BIHEurope Botswana BWASub Saharan Africa Brazil BRALatin America Brunei BRNAsia Bulgaria BGREurope Burkina Faso BFASub Saharan Africa Burundi BDISub Saharan Africa Byelarus BLREurope Cambodia KHMAsia Cameroon CMRSub Saharan Africa Canada CANNorth America Cape Verde CPVSub Saharan Africa Central African Republic CAFSub Saharan Africa Chad TCDSub Saharan Africa Chile CHLLatin America China CHNAsia Colombia COLLatin America Comoros COMSub Saharan Africa Congo COGSub Saharan Africa Costa Rica CRILatin America Croatia HRVEurope Cuba CUBCaribbean Cyprus CYPAsia Czech Republic CZEEurope Denmark DNKEurope Djibouti DJISub Saharan Africa Dominica DMACaribbean Dominican Republic DOMCaribbean Ecuador ECULatin America Egypt EGYNorthAfrica El Salvador SLVLatin America Equatorial Guinea GNQSub Saharan Africa Eritrea ERISub Saharan Africa Estonia ESTEurope Ethiopia ETHSub Saharan Africa Falkland Islands (Islas Malvinas) FLKLatin America Faroe Islands FROEurope Fiji FJIAsia Finland FINEurope France FRAEurope French Guiana GUFLatin America French Polynesia PYFPacific Gabon GABSub Saharan Africa Gambia, The GMBSub Saharan Africa Gaza Strip ISRAsia Georgia GEOAsia Germany DEUEurope Ghana GHASub Saharan Africa Greece GRCEurope Greenland GRLNorth America Grenada GRDCaribbean Guadeloupe GLPCaribbean Guatemala GTMLatin America Guinea GINSub Saharan Africa Guinea-Bissau GNBSub Saharan Africa Guyana GUYLatin America Haiti HTICaribbean Honduras HNDLatin America Hong Kong Asia Hungary HUNEurope Iceland ISLEurope India INDAsia Indonesia IDNAsia Iran IRNAsia Iraq IRQAsia Iraq-Saudi Arabia Neutral Zone Asia Ireland IRLEurope Isle of Man XIMEurope Israel ISRAsia Italy ITAEurope Ivory Coast CIVSub Saharan Africa Jamaica JAMCaribbean Jan Mayen SJMEurope Japan JPNAsia Jordan JORAsia Kazakhstan KAZAsia Kenya KENSub Saharan Africa Kerguelen Antarctica Kiribati KIRAsia Korea, Peoples Republic of PRKAsia Korea, Republic of KORAsia Kuwait KWTAsia Kyrgyzstan KGZAsia Laos LAOAsia Latvia LVAEurope Lebanon LBNAsia Lesotho LSOSub Saharan Africa Liberia LBRSub Saharan Africa Libya LBYNorthAfrica Liechtenstein LIEEurope Lithuania LTUEurope Luxembourg LUXEurope Macau MACAsia Macedonia MKDEurope Madagascar MDGSub Saharan Africa Malawi MWISub Saharan Africa Malaysia MYSAsia Maldives MDVPacific Mali MLISub Saharan Africa Malta MLTPacific Martinique MTQCaribbean Mauritania MRTSub Saharan Africa Mauritius MUSSub Saharan Africa Mexico MEXLatin America Moldova MDAEurope Monaco MCOEurope Mongolia MNGAsia Morocco MARNorthAfrica Mozambique MOZSub Saharan Africa Myanmar (Burma) MMRAsia Namibia NAMSub Saharan Africa Nepal NPLAsia Netherlands NLDEurope New Caledonia NCLAsia New Zealand NZLAustralia Nicaragua NICLatin America Niger NERSub Saharan Africa Nigeria NGASub Saharan Africa Northern Mariana Islands MNPPacific Norway NOREurope Oman OMNAsia Pakistan PAKAsia Panama PANLatin America Papua New Guinea PNGAsia Paraguay PRYLatin America Peru PERLatin America Philippines PHLAsia Poland POLEurope Portugal PRTEurope Puerto Rico PRICaribbean Qatar QATAsia Reunion REUSub Saharan Africa Romania ROMEurope Russia RUSEurope Rwanda RWASub Saharan Africa San Marino SMREurope Sao Tome and Principe STPSub Saharan Africa Saudi Arabia SAUAsia Senegal SENSub Saharan Africa Seychelles SYCSub Saharan Africa Sierra Leone SLESub Saharan Africa Singapore SGPPacific Slovakia SVKEurope Slovenia SVNEurope Solomon Islands SLBAsia Somalia SOMSub Saharan Africa South Africa ZAFSub Saharan Africa Spain ESPEurope Sri Lanka LKAAsia St. Christopher-Nevis Caribbean St. Lucia LCACaribbean St. Vincent and the Grenadines VCTCaribbean Sudan SDNSub Saharan Africa Suriname SURLatin America Svalbard SJMEurope Swaziland SWZSub Saharan Africa Sweden SWEEurope Switzerland CHEEurope Syria SYRAsia Taiwan TWNAsia Tajikistan TJKAsia Tanzania, United Republic of TZASub Saharan Africa Thailand THAAsia Togo TGOSub Saharan Africa Tonga TONPacific Trinidad and Tobago TTOCaribbean Tunisia TUNNorthAfrica Turkey TURAsia Turkmenistan TKMAsia Turks and Caicos Islands TCACaribbean Uganda UGASub Saharan Africa Ukraine UKREurope United Arab Emirates AREAsia United Kingdom GBREurope United States USANorth America Uruguay URYLatin America Uzbekistan UZBAsia Vanuatu VUTAsia Venezuela VENLatin America Vietnam VNMAsia Western Sahara ESHNorthAfrica Western Samoa WSMPacific Yemen YEMAsia Yugoslavia YUGEurope Zaire ZARSub Saharan Africa Zambia ZMBSub Saharan Africa Zimbabwe ZWESub Saharan Africa tinyows-1.2.2/demo/world.shp000066400000000000000000056721701465244332600160520ustar00rootroot00000000000000' <fVf@T@p 0`@N@d=@`R@@9C@#%hP@@B@@giP@B@@lP@ B@qP@`_B@FrP@B@@`P@kB@ {P@@%B@P@B@P@ NB@P@`AB@bP@ HB@P@@B@P@ B@@ P@B@)P@ B@bP@B@`P@B@P@B@P@ aB@P@@ȗB@@P@ NB@P@ۇB@FP@؁B@FQ@\vB@!Q@B@Q@ B@ NQ@8B@nQ@^B@`aQ@B@@!Q@ B@)Q@`B@ 4Q@B@@3Q@`GB@j6Q@ B@9Q@עB@);Q@`qB@9Q@B@?Q@dB@OQ@ B@PUQ@`B@@\Q@pB@hXQ@ B@~XQ@@XB@aQ@@XB@zQ@SB@Y}Q@QB@Q@ B@ZQ@B@Q@@B@Q@B@@Q@B@ Q@@B@ 6Q@dC@{Q@ gC@gQ@#C@*Q@`*C@߫Q@0C@`Q@ 5C@ZQ@@9C@Q@3C@;Q@C@IQ@`C@8Q@C@Q@B@Q@B@Q@ B@Q@B@@Q@uB@Q@B@@`Q@`_B@ Q@B@Q@B@@_Q@@^B@~Q@ VB@Q@ XB@@R@ gB@ /R@~B@@x*R@VB@ 3R@pB@5ER@B@@IR@ NB@@TR@ NB@qR@`B@@-pR@jB@iR@B@`gR@ B@ hR@B@rR@]B@IR@`ܶB@R@ B@ǬR@*B@`R@ žB@HR@ B@ ڰR@ B@תR@B@@R@ B@`aR@B@R@nB@@R@ϑB@VR@`cB@`R@{B@@ܞR@kB@R@zB@R@ sB@*R@ tB@R@ ,iB@@}R@;kB@qR@VsB@;GR@oB@R@bB@ R@{[B@C R@ TB@R@~PB@R@ rKB@Q@>B@VQ@ U5B@1Q@(4B@bQ@;B@Q@`/B@KQ@ *B@Q@B@Q@ B@Q@A@ZQ@A@@Q@`A@Q@ 6A@IQ@`A@Q@௽A@kQ@A@%Q@`A@mQ@A@ /Q@A@Q@АA@`Q@ A@Q@zA@@Q@qA@nQ@I_A@!Q@VA@Q@HA@ Q@GA@Q@bAA@Q@s2A@Q@`A.A@Q@`BA@ʾQ@#A@@Q@A@@Q@@@@rQ@@@yQ@ A@zQ@ @@Q@c@@~Q@ &@@`Q@`@@Q@`/@@Q@`@@@Q@}@@@GQ@@@@VQ@ =@@ &Q@ؑ@@cxQ@@@rQ@?@@cQ@|@@_Q@@@`Q@@o@@@GYQ@ c@@ >]Q@RW@@tYQ@;K@@ fRQ@``C@@OQ@8@@`RQ@@@ fRQ@@@^UQ@?@AQ@B?@P5Q@?@.Q@?@@-Q@d?@ #Q@C?@lQ@r?@Q@@?@$Q@?@j"Q@`?@ /Q@?@ Q@B?@P@Ţ?@P@`֣?@;P@?@0P@?@^P@ h?@@P@=i?@@.P@a?@P@`RW?@nP@6?@@hP@ 8?@vP@9=?@8P@#A?@ NP@@;L?@\P@`Q?@P@@K?@FP@`S6?@ȫP@@ ?@@?P@ O>@P@@4>@ P@D>@jP@@Ws>@P@9>@@@P@F>@ P@`R=@lP@=@ZP@ =@ /BP@=@@,P@=@P@=@Z P@ |=@hP@d=@`)O@@=@ dO@o=@>O@ g=@@.N@=@ 7N@@{=@nN@@=@cN@B>@N@>@@N@@!>@`qN@` ?@`N@>?@`N@ ~Q?@@WN@!b?@IN@Te?@lN@?@gN@@?@`mN@@ @@`^N@`J@@|JN@ ,@@KN@ޔ@@mN@@@`mN@ 7@@`vN@ @@@isN@@@`SN@@@@BN@@@`@N@@@`FN@@@@BN@ @@AN@ NA@UN@$(A@tN@ (A@ rN@C,A@`N@`=A@]N@ UEA@nN@ IA@ZN@hA@N@ϙA@^N@ A@ җN@ A@N@`A@N@A@ N@A@@ӮN@A@N@{A@N@A@N@A@`qN@A@ O@A@ ,!O@`A@'O@A@:O@ A@OO@ ̜A@ &O@A@1O@#A@O@ A@ UO@A@IO@SA@`O@@A@O@`qA@:O@`)A@O@B@@P@B@P@D B@ P@@pB@P@ rB@P@`B@^P@B@$P@-B@-(P@:B@@`'P@ PB@@2P@ &vB@`1P@CB@3P@`B@DP@IB@aP@ ҟB@%hP@@B@@QH3@ yC@ 5@TE@\e3@(E@>x3@23E@Ţ3@`ME@`3@TE@ ~3@QE@ %3@EE@3@ x@@@T}@@m@@٠@@@@ I@@ gE N@@m @@0u A@l0A@s>A@@LA@_A@hA@`0ÌA@`A@@B5A@DD{A@ v %A@@-A@xVbA@ `A@@SA@2A@ iA@@l޿MA@޿#A@&տA@@ѿ >A@@TvA@-?@?A@?B@k?5B@u? ,B@_? 1B@@ff? 9B@?@B@@Q?vHB@rw@PB@@w@PB@G@KB@@KB@ M<@VB@@'@@peB@~1@mgB@`N @@^B@[ @`B@ $ @`gB@ S @cB@`4 @`NcB@!@@XrB@@@XrB@`(@!rB@h@2cB@L]@`ZB@ @TB@xV@RB@ @@iB@ M@@-hB@ =@ ,qB@@^ @yB@@#@ x~B@ D@`B@b @ B@_@|B@f@ wB@@qB@@vB@@ ,B@n@@XB@@@B@@B@@ چB@`ڀ@ |B@33@ ~B@` @5qB@`p=@SnB@ 4@UlB@@Uu @@FzB@ @)sB@B!@xB@;!@rB@@P!@ oB@L!@jB@ @`0eB@ @aB@} @c`B@@W @@[B@ @@SB@@xv @`HB@^ @`CB@a @`>B@I @8B@ @VA@ @A@@8 @A@t @A@`o @ஶA@ݝ @@iA@ @@äA@ @ =A@@ @A@@^ @`A@ԅ @`tA@ē @Z`A@@ t @ YA@~ @RA@ [@ 4A@@@`AA@@2A@ @ A@@w@)@@ @@@@>@@@ɟ@@[@`@@@ @n@@8. @@@ @`j@@ij @ C@@J"@ @@d"@?@e#@`n<>@"@[>@!"#@=@#@n=@@%#@<@#@BE<@`#@\;@ #@ ;@#@;@#@;@@Qx#@R;@X#@:@@q#@:@#@d:@F#@aj:@"@[:@`("@ ;:@@>"@.:@"@@':@` $@eV9@$@8@o$@H8@#$@8@@-$@az8@7n%@48@&'@pM8@'@7@Z'@#q7@$@6@!@5@e@@%4@?@3r3@ @l%3@@ҧ @2@@@"3@`: @93@- @@_3@@ @@ 3@`% @?3@G @3@ g@3@`_@ 4@`@34@ @wG4@ l@`G4@@`84@ Ί?;;4@?@'M4@ ?M4@?4q4@ߛ?>4@`?4@?@Q4@ :?4@?4@ ?4@ 7?5@`Zc`5@6@^`7@99@ x69@@zD:@V! G;@V!9;@V!<@@ a<@. N<@ =@@} Vd=@@e=@?=@^M@4=@` 3=@B=@=@@I=@$`=@ b=@z/>@~>@&^Z>@@ >@>@`>@_, >@Y >@ @ ?@@ H0?@@B '?@ .?@@_8?@ n@V?@; e?@8w?@@ x?@?@ d?@@& :?@ ?@@@ @@ !2@@@ @@`h{ @@-@@-^@@8_@@{@@X? 7E@@?SE@`?IE@?`oLE@d?SE@@?sJE@`?@-)@ .*@D=**@)@5j)@`(@^`)@{` )@Z(@Xk(@ h \O(@N(@@k`)[(@ b*r(@`#` u(@@d5(@ (@].w(@@!"(@2:(@'(@ `%[*@`=pʮ*@*@ajl+@k@+@W@ͫ,@].@`|s i/@8o@J^0@ih0@t0@ `0@z10@S0@2t0@@Tv@^0@ 0@@0@'@!0@U x1@;`1@@[\.1@` %1@@61@`Z@I1@`lH1@;rk1@ido1@1@ @1@' @W1@@42 1@ 1@@;, \1@w 1@ 2@@S7 82@@6 2@@' "2@ 2@s2@2@`2@@_3@[3@@n `3@`cI`x3@BF ,3@@ @3@`h43@W@3@@T6Ί3@(`3@O4@ U4@@d4@@d<4@࢑໊4@#a5@!5@m 5@^M5@`\@ۿ5@` %5@ 5@ :5@@!@5@yu"a5@"5@5#e6@#%6@# P6@$C6@`I%M6@W%$P6@ш%/6@%a*6@ %%`?6@ h%&>6@S&@{6@`B& 6@z&@6@`&=6@/&@6@&`Y6@0& 7@ /&e7@%ǀ7@``%7@ 9&7@`&7@ @%8@ &S8@ b&7@`'7@`ff( 8@@A(@^ 8@`C(<7@V)7@@) V8@t)B8@E*T7@*6@*5@"*5@ʁ*@5@ -36@+0!6@@:=0#6@~0?6@037@z1`y7@@1 x6@I1ql5@ 2a5@2 &>5@714@`f14@2d4@@31@4@`C1 O3@1k3@13@T1u3@`1@2@1>2@1{2@@p1`Gh2@c11@ Vd1@/@@c1@o,@ c1*k,@c1`#`,@j1`/+@l1+@"1n*@@1*@ 0)@1h)@'=1@(@@@1 N(@41n~(@:1`?(@%11'@`)1'@ B1'@41'@0G'@@q0}'@`.0`ݝ'@ /Tv'@/{'@`/@'@/`'@ ȑ/ (@#/#!(@`l.J(@X.`(@ ,j(@\,W(@+t(@l+ )@:+ )@* G)@`̭*D)@z* yu)@o*)@ ))@@)O)@=)jb*@}2)*@5) *@*)@+@t(50+@(`+@ E'`+@`&&@+@w&3+@%r+@@%+@`d%`+@` U%9 +@$ +@h$*@$`*@@#@`*@_# r*@@s;#GI*@U"@-)@f&" *@@! F*@! H*@"@ *@;," \o*@Ȑ!{*@!v*@@c!`f*@{!`5*@N!ࣰ*@ i*@ n*@ n?*@x@)@~``)@>)@ )@ S`~(@o@!(@6P %(@8Z(@ |)@Q)@1*@`S`%[*@`=p7fVf@@BN 2R_v @d@@fPd@ zPd@ 7Pd@Pd@PŎd@Pd@`Pd@`P5d@%P@d@@fPPzP PzPדPHwP)PuPaP qPP2nPPfiP@zP`eP lPdP hPfP@fPhlP0pPnP wP[rP`}P'wP نP`ZzPPzP`(M`P$&MP8M WP FM P8MmP` M P;M5 P8MBPc+MFP$&MO MVOLXO`L`IOL`IPL@.PLLP=L P PO@P OPണOP`@O@rP߯O_PGO-P >OP}OP`;O#PO/'P`O%P@xO#PmOu%P gO(PO-P`UO`.POk1PUOL4P`=P 4P\P`3P P`0PP.PxM@Oq}M`O$vM@O@jMO]M$OLRM@! O`_EM5O`O=MO.M`tOxMN LN`WL`.N gL`*OL` OL- O MOM@;OJ,MO#6M+O@LM@#O ZM#O@fMOxM@O` V`1Q@CV*5QVc9Q@V?Q`V@BQ V`YBQV+@QV>;QV`5Q|V1QV0Q` V`1QTO)#P7TO~P=O`_P`FOP%FO P,O P O1P O P` O` P O PQOkP *OjP4.OP`>O P`}JO` PTO)#PRQRQR`rQ@RQRQNR`~Q jRp|QRvQS`erQnSnQR`rlQ`R@lQ #RMfQnR`dQRqQ GRuQ`ZRnyQ&R}QR@=Q@вR QRQڌN_ON\O NjWO@sNTOmN *RO`cN iLOfVN JO?NJONIOI NFOy NHOsNNOMXO@i N$aON5dO`.NaOe6N^OkGNYO\NYO`kN[ON^OڌN_O9blR`8b5R` Fb@RSbR ^b`"R"gbR@l_bnRUbR@Gb >R=b@aR9blRG G[lSAGlSGkS!H@5gS6)H "aSG\S`vG=`SGeS FjSG G[lS`+,e@3RR0e@QRy3e@ SR+e@VR`+,e@3RR9ZQRb8ZNR,ZMR Z`OR`ZTR= Z`XRH Z ]R Z@^R M"Zl\R2Z`XR9ZmTR9ZQRݥ>@sDQ?#DQݥ>FQ 9 JQݥ>}QQs?NVQ@r?d_Q9?gQ Ql5@5Q 1S5@%Q4@Q5@CQ5@CQ@u6@hQ`E7@Q 6T7@>QT7@PQ?`8@Q 8@܎QY8@Q;8@ Q`8@ Q`H9@@'Q`9@EQ`\9@ BQJ:@ QG:@8Q@^%:@@~Q@m:@@Q;@`rQȁ;@~Q ;@`Z{Q`;@@xQ`~<@/tQ<@qQ<@oQ@w=@@2TQ3^>@kMQv>@FQ@->@` HQ8?@@LQ ?@@=KQp?@LSQS@@ZQ:/@@aaQ s@@dQ͇@@_Q@@ SQ/@@`AQQ@|@@ KQf@@@Q @@`'/Q@@,Q`b@@ /Q#A@@9QEA@AQ A@ LQA@9XQ A@B\QA@cQ@J'B@`iQ@*GB@mQNB@nQhB@lQ B@ujQ`B@rQ B@QQ RC@QXDC@CzQ@PC@sQTnC@LnQ˼C@`OiQbC@dQC@@aQ C@aQC@XQ`ͧC@ SQC@`3LQzC@`qFQFC@P>QC@=QqC@;Q$D@2QLD@y/Q D@` *Q D@R#QD@nQE@Q@ 0E@QME@` Q`JgE@9QE@ P@>E@`P`"F@PgF@ P1F@`PPÐF@P F@P`F@P@G@-POXG@@P>uG@@P@0G@aPஂG@@PwG@ P XG@ P aG@P}G@P@HG@`KP G@`P@ H@`P 0H@-P`d H@@P QXH@`P`^H@PzH@ P9_H@PNH@P/H@PH@*Pa H@P 5H@P`RH@pPI|H@PH@P`H@ IPgH@P`H@*PH@@P@"I@P=I@PI@`Pp I@`P1I@`P@f1I@@$P`I@P`H@/P@I@1P ;I@ɗP`fI@̕P aI@ఓPI@sP J@PEJ@@P6iJ@nPFJ@`GPJ@^PK@@PSK@PK@ ?P`K@`P@K@ÎP`K@ ٗP@} L@ PO L@@nP L@@kP7L@PfL@@PwL@^PwL@@ PL@P@'\L@@&P;L@PW9L@@PHL@ P{OL@@_PgL@P L@ ZPEL@P`xL@ &PL@`PL@dP`+M@ IPM@uP@)M@`RP GM@XPzoM@P \M@`P 69M@PTM@P uM@`KPJM@ PM@PrM@KP౸M@~P`M@P M@Pb N@ P`MmN@ PN@WP|N@`cP N@PWN@@@P N@{P N@PN@P/(O@VPJO@ PtO@P@O@DP@PU@ P\-U@@P:U@ PRU@qPonU@ 5PU@`NPU@@XPU@P@U@PV@P V@P:V@@+PbV@P(V@`GPV@PoV@ PW@ۥP)W@PP@BW@`PhW@ͨP@ۂW@@PIW@PW@@|PǿW@@ęPW@@P;W@ےP@W@ $P`W@eP;W@JP#X@@KP@HTX@[PgX@mmPX@lrP#X@uP8X@xP`sX@zPX@@rP Y@ RkPY@rcP1Y@ I\P`BY@`[P QY@`P`dY@ gP/~Y@`nPY@IoP`\Y@kPY@`P@Y@ TP׷Y@@KPCY@HP`Y@`PPY@ 1XPZ@WP@!Z@@t[P`o3Z@fP`@Z@ WtP SZ@@P@Z@ P@hZ@@uyP Z@@vPKZ@xPgZ@}PwZ@P06Z@P;XZ@ P[uZ@PZ@ PZ@ PKZ@+P Z@Pg[@cP/[@@{P[@P-[@P+C[@@PI[@PQ[@PSi[@uP`z[@קP [[@P`[@P?[@P'[@(P[@P S[@@P[@P[@P?[@ )zP\@wP\@tPw7\@opP`kP\@SnP(e\@yP x\@CP\@P\@Pן\@hP{\@`PӶ\@P\@P\@@P\@@ęP@\@P@]@fP`/+]@ۥPK-]@`P<]@PU]@P_n]@@qP@Ć]@/P/]@ .P`]@ P@C]@/P^@@P^@P"<^@P@KS^@Pj^@P`B^@Po5^@ P`7^@asPL^@WlP X^@`mPb^@~P'u^@ÎP<^@P˚^@ P^@@P@#^@P^@P@^@@̰P^@aP^@ PK^@tP@;^@ P<^@@ʢP@^@qP@h^@@]Pd^@P^@{Pc_@ P7_@ಎP@Y_@@BP@3w_@P ߋ_@YP_@ʚP_@VP@_@]P@_@P`k_@өP _@`lP _@िP{`@iP`@P$`@Pl.`@Ps2`@ nPV1`@ۥP H7`@P!7`@`PS:`@P<`@~PoH`@`/{PM`@`UP!^`@ Pi`@P|`@@P`@yPɐ`@@P7`@PL`@P`@YP`@cP`@muP`@jP`@\P]`@RPO`@ EP`@DP'`@ %NP`@o]P`@oP`@`}P}`@Pu`@IP`@@/P{`@P `@YP <a@Pa@9Pm&a@IP3a@PZa@P]a@uP Vma@P}a@ FPa@ TP˫a@EPa@@ݰPźa@ SPa@P .a@Pa@ZPa@`P a@Pa@@9Pob@Pb@`POb@LP1b@=P:b@ $PM0b@`PP$b@`:P)b@KP*2b@_P?b@@PIb@`P!Nb@ PSb@tP`b@lPob@Q ڀb@Q#b@:Qb@bQwb@ZQ{b@Qെb@QWb@Q˛b@`DQb@Qb@Q!b@`uQb@ !Qb@` QKb@Q˷b@Qb@Q ܻb@2Q?b@Qb@Q b@@Qb@MQc@Q[c@ Q,c@PQFc@"QOc@ >(QMc@)Q >Lc@.QLc@`M8QVc@@8BQ]]c@R"e@FRe@MRw e@TR e@@ZRd@s]Rd@IlRd@ yR d@@Rid@@Rd@ Rࣞd@Rd@RWd@=Rd@@סRd@Rd@Rфd@@/R{d@Rmd@RWpd@R|d@R ԋd@R d@ \Rnd@RSVd@RVd@RW\d@@WRNd@R)Rd@R[d@Snd@`S ,ed@ STd@ *SKYd@ ~S}Ud@"STd@+SXd@ 6S{Nd@9SId@;SPd@d>Scd@~ES#ad@7OSohd@TS/od@p[Ssnd@ddS}d@kSd@@qSKd@ zS๠d@_vS7d@ovSd@tSCd@@;pSd@`mS=d@fS d@\Sd@@?SSd@`KSd@(GSgd@`GSd@@KSad@LMSd@MPS d@KUSe@ YSe@(ZS%e@ U\S2e@`dS L=e@`_S p@e@ ^SDUe@aSge@ iSe@.nS?e@@qSe@ ttSf@zS9.f@`S Pf@`S1~f@Sf@NSf@VfVfMS[_f]S 5f@ΞS 7 fKSe%S`veSֻe@S@e{SzeSOe S.eSO eRS dɠSdSןd@"S~d@S`dํS 3od@؊S`MdS`33d@)S dR|S cwSRc rS`=cgSc@]Sc=PS c JS`;c IS`fc@FS@^c`]ESSKc OHSS;c HS)c OS cNSb2NS6bDS@b6SPb[/Sb+S`Ab`%SrbuS`bES bb`S]fbS@f:b` S`BbSjTb~R `!b`R@a0R@a@RaRA0aR`!` uR`z``Rr` JR`>R`R@`~R-n`R`T`ΊR"7`ΊR. `7R`G_`axR|_`kR `_UR_@\R^eR ^ lRpM^@qR ^+wR^wR ^xR]@zRx]@.}R]`R॓]Re]"RK]R:']@R\`RS\ R*\R x\@~R`~\R\OR !p\R \\:R L\R'\`R`\RY[`ÓRE[ڌR[R٦[R`ʁ[`gRk[ଚR k[R 9L[R[@;R VZ`R ZR`Z@RmZǤRZ@R VZ@pR Z@RfZ`R2Z@R9Z@)R@OZR^Z R$NZ?Rs;ZıR@r(Z@ROY5RYR`Y@#RQ`Y`iR tKYR@fVY`^RhYRxY`ʧR~rYRB{Y`RYRB{YֆRgY|RYsR IYnRYamRcY VnRGIY nR8YjR5>Y`cRRY]ReY`f[R Y`]R`Y`^RCY`^RY YR YVR`YPR@Y LRYGR`+YBRY/?R@KYX;R@WYR:R`CY@6R@Y@$5R@Y`.R߿Y`(R`OY@$"R`Y@R/Y/R`Y@RYZRʑY RY@ R^rY$RMY1R -YRtY Q[X`RYRGX$RX RX R XR XDR?X" R`XeRXRRX@gR@dX R@lXRXR XKR`X`VQN}XR`1X` R2sX@Y RdXRNbXR`WXRTXr REX" R =X`SR3X R"XQ (X`R`%X@.R`XL RWm R&W@R@ X R X`RWZR WR}XI RW&R@W,RSWm.RW+R`W`Z+RW )+RW,RW+R`WX(R"kW +R QW`-R@8W -RWE-RV4*RVa$R`V R TV@R }VR[VmRI4V3R@ VR U!R U R@U&RU0RsUk6RRU@6RUv5RAT 6R T~9R`TD=RnT@ROT{>RTBR ^TyCRS@?R@SCR"SNROS@pZR}S \R@lS`SR@SIR`7S`@R?S 6RS4RpS@2R@bS`}.R}S'R ŀS#RSkS!RrHS!R\7S@#R33S"R(SJ#R (S`(RUS *R S)R 5S*R ' S)3R`5R@R"RKAR`R@2:RR8RRP7RAR 9RqR qQ_R qQ@"SRpQc@RpQ,R nQ(R kQ)RgQ`t3RdQ2RcQ)R^Q`"RZQ@R@6ZQ NR1\QQaQMQ`bQQ@`Q`jQ`VQ@QOQ` RLQ@QLHQQBQ$Qa>QuQ :Q Q29QQ 9Q QfPRPtPJP O`GP$O`FPO JPsOGP3OCP`GOjAP dO8P@S3O8PCO5P M@5O`jlMO4M;OMO`?L4OLկOpL@OL OʁL@OwLۻO@2L@O7L@OjL XO@LO`L&OL]O5L mOLOmLOMsO'1MO9DM O WMP gM P`tM8PkM`%P`ztMY.Pj|M`ENQN Q@NQB@NRvN@;RMaR@N@AR:N@u*RN@6RM ?RQM`SRM@iVRzN@>WREN [Rh\NeR@mN@rR@mN|RJN@IR`NR`-}N RVN@.RXIN@RNRݿN UR&N`+R`NARKNR`HM RaM@R MR ,LHRLs SK S +wKDS`K (SlJ r0S@~J@4S.JZ7S I @ShIBSIFS> I mMS.I7OS`kI`QS fI>[Sy)I@hS dHmSHjS`G@3lS{G.nS_G [xS@FS@ZtF`ʅSl7FSE ‰S9tE`{Sg6EFrS@DiSffD@rS@WC@}SWC {S'B}S@1B`|SA@QySAuS D{AdSj@XSk@{JS?`]ES.?`FS`6?X3Sl<>+S=`)$S`G=[S<S l<S A; c Ss; SA ;S y:OR`:R|:`R :`@sDQ N]0@LN1@@@Nd1@ N=1@oN<1@@>N1@N@P1@uN1@3Nq1@{N`1@ N1@ N1@ N`1@ N࣐1@ N`[1@LN1@@N{1@ NZ1@ 8N 1@ NÔ1@eNz1@4N1@N ?1@N1@qN21@N`21@zN@1@`2NF1@zN`f1@`N 1@NQ1@N@1@N)1@`N1@`N41@N ˠ1@`N31@`Nף1@NF1@`N1@N*1@ LNQ1@@Nq1@N1@ 8N`1@@N1@ N 1@N[1@`N@ı1@ Nײ1@N21@N@{1@`NZ1@N41@`N1@\N41@N;1@N@<1@8N)1@ NP1@qN)1@)N` 1@N1@N ¦1@jNz1@@{Nף1@N 1@N[1@@Nߞ1@N]1@@{N`]1@@N)1@ QN(1@`N1@@N1@N1@kNF1@QN`1@GN1@`[N 1@kN@r1@@Nପ1@`N@ͫ1@ uN1@ N]1@N;1@N 1@N˯1@BN|1@N |1@N1@@N 1@`Nவ1@`N1@LN1@N` 1@N H1@ N0@uN40@@#N40@N0@ N@1@No1@N 1@N`1@`N 1@ NZ1@fN`1@$NS1@N 1@N 1@aN11@N@y1@`[N 1@` N] 1@N 1@N1@N1@`[N 1@`N1@NZ1@N1@$N`1@fN 1@N 1@$N1@@N1@[Nf1@` N1@N1@N1@N1@N1@-N@1@N@1@QN 1@ N1@ 8N 1@`fN@<1@N1@N`1@@N 1@@{N 1@@{N1@2No1@N1@LN 1@`VNh"1@ N`#1@ N@$1@)N@%1@N&1@@WN'1@`N` )1@@N`)1@N*1@N@*1@@>N)*1@ \N`)1@@N *1@N)1@N=)1@`N`(1@N'1@`N&1@@WNf%1@N@g$1@ N #1@@N !1@@WN 1@`)No1@ N@p1@@GN1@@N1@ N1@N 1@N'1@N| 1@$NG!1@`N !1@BN#1@N"1@`fN@!1@@N 1@N`1@N 1@@N`o 1@qN 1@`N 1@ QN1@ QNH1@N1@ N@<1@ CN1@N 1@N<1@zN1@N 1@N 1@@gN 1@ N1@@{N11@ Ny1@`N1@-N1@N`1@7NQ1@`N`1@`N*1@ LN 1@`N1@N1@N 1@ LNZ1@Ng1@`N@{1@N1@N31@N`[1@@>N@1@oN`o1@ N1@`N1@N1@]N( 1@LN 1@pNd 1@N 1@N 1@$N`1@ \N@ 1@N ?1@ N1@uN ?1@@GN1@N@ 1@`N`1@`NQ1@`2N`1@`N1@RNy1@ NR1@`N S1@]N21@`2N1@No1@(N0@BN@p0@N@0@zN]0@@:eR˅K`6"PF6;$P\6P6 :P١6@"P 6P6@PF6Z Pn6iP`W6@vO76gO`5` eOn6QO<6OO?6dPOM6 !Oք6`fO#6b!O6@O66N6 \N,I7ÜN&7N 7N@]7RN`C7`(N 18N 8 N}8 M]?8MPI8Me8`ѐMP8ZqM8WM@8:M=8@E+M \8 CM78L9 nLx9`AM;EM ;`$HM`;`lQM!#;VTMo.;#MM`OK;`lM 1E;&L&N;ųL`l;L'}; \wLMl;oLk;`dL` ~; wbL;\L@;/VLv;JLr;ALv;9L;42L ;8.L ;"Lv;*#Lge;L@O;pLM;KyU;`K:o; CKX; tKLM; K`*; ٹK`e;K@;K`:`$K:ۗKx:`$K: K:yK`C:wK7:qK:fKѨ: QKE3: TK +9MK`9 tRK-9JK9`MLK*96K \90Kד9#K9K`9Kؒ9K9 D K9 K69X K,9K9J@9`J9 J@9J9J`9J!3:`;dKV<KQ8<K`?<KpM<K@dX<Kh<K`<[<K`<[<` L .>L0>`$L,I> Lm>L#>L`>L@> L>`$L@>`L%>L@ ?Lf? M`t? M{?`TL@q? UL@;?MP?M?`M?M?M`@ M,!@` M)@aM`:@MT@bMs@M @ sM@)@@3MY@7M@5Mo@ =M@DDM@@:EM@:M@@:M`@`~1MAQ0M`A8M`"A,AM@"A@dHM@%A`=M`-A`*CM8A [8M`SGA t*MSA L qA`LA L^A4L@ALAbL@AGL`A \L B ͌L`$BwL`r,B`xL,1BlL+BFbLz,BFbL`&B8^L)B`XL@A7B@LULd`BVL 9vBcL@3B`LB`fLB L BLh CLnCL-C?M_DCˍMYC@dMiC7N vC NC@N 9~CUOwC@LOgC.OLeC2O@ciC+O=rCN+O`yC +"O{C)O`C@,OC`'O ߜC4 O>C`O@dC@OhC@ OVCOwC$O C"O`C@OC [O@C,!O`rC .O`DE+O D/OD7OD>O'Dg5OE;D t*O?D`l)O`CDG!O`GDOND #OQD@,O`MD`)OVDxOQD`O`~QD(O nD.OqD`tOD༲OD6O@DO?D`P…D_P DB.PjD68P@kDb:P`IhD 8PfD@5P [hDn/PeD1P^]D :P`}ZDJ;P C]DO:PbDAPcDHP`lDiKP DGP ŦDi?PGD@AP \Di?P DEP`D@3CPE;P@EB.P`E!PeEgPX"E@+"P`Z)E@&P y6Ey%P 7EP`7E@*P 1EP (EZP`"EPEPE@ PE O` E&O2 E O*E`$OaE@O,iE PqE@ PSoE6P@`E PQEP`EEZP @E(P`*CE=PfVE`@PkbEBP`1}E@2PyEP~E PE`t2PE`APEbBPtEVHPE#UP zEUUP E@PP EyMPGENP`F@SP@jFNPh,FUP$8FQP>FcPLFnPWcF~mPjFbP@3sF@leP`TvFfP`FiP`F@|wP~FrxP`ƂF }P tFP`|F]P`<{FPF=PӎF@PѐF˝P@F_P F@PF@PFBP`+F 0PFiPFPFEP`FGP`FPFhPFPGPGXPG@P;GPXG@ PGB~PZGpqP@cGnP GrpP^GrxPG}P@{G#yPG@wP@|GrPGrP 2G}P@"G@T~P`CGZyP a H@yP: H@P H@uPHP`0&HP@;,H P8HQPuIH@޽P@LHP WHWP QiHP tzHP.H@APxH@PɟHP`}H PϲH@:PSH(PdHP`HP H@3PH@P HQ@c I@QIQ%I@QI@"Q`H%QH=&Q?H'QH#QH@m Q IQ,IQDI!QI4Q'IZ=Q3IFQVLI@LIQ,qI LQ{IJQ IQI_HQIWQ 8IJgQITQIbJQNIgMQ [I#AQ@I>Q I@ 3Q4I-Q JJ@Q +J@wQ`0JQ"*JNQXJ]Q bJ@QIQI@Q I@QI2Q`~I/Q@)IR@vI 1R*I@RI` R@IRIRIRIRVI@R4IR lIR 8_IR`*SIR@NI@"R]NIB&RUUI)R UI.ROI1R`PI(AR_IQHR bI`%KRS_I?PRGIPR.IQRS-IQR })IRR(I VR IaR IKbRI]RI@cR`Hq\R)H@]bRH``RH@:eRHaRH }bRdH@\RH]RۧH@HRݦHqHR@cHWKRVHDRdH`B.Q@BQB Q$BQUBQ|BQQ`*{BQ`lBQ mXB@QxVB QYBQ`WB Q HBkQ8>B;Q >B 1Q|3BŮQ@]6B֬Q`_4B :Q #BQBNQYB QB9QWA@QwAQ bAZQA@~Q AQA7Q@ArQ AQ@A@Q@A`%Q=A*QA`ߐQfA Q_A@Q^UAaQ 2LA@ Q_4AQ`0&AQ3#AuQ A tQgA nwQ`kAXvQh@@yQ@yQ t@@KvQ@wQ?@qQ`@sQ@yQf@{Q/@ ~Q`B@yQ@@TQ@Q`׃@Qr@ :Q~a@Q M@ZQ@@Q@:@Q6@@ Q)@@Q>@QQ @@:Q@yQ '@@؎Q ?`БQ@?@Q?@Q ?Q@? "Q$0?@+Q?Q?Qw'?XQ ? Q-?Q ?Q>7Q>@Qp>Q`^>ZQZ>ӂQ e>q|Q [`>@uyQR>tQ(>uQ>}Q>@yQ=`zQ=}Q 9=@2Ql==Q@Z=Q-H=7sQ=mQ <jQ< jQ`g<aQ@O< }^Q0<@BZQ`f6<|SQ@<@KQ@A;r@Qyu;@C@ G@2C@@#G@C@ G@)C@,G@eC@4G@@C@AG@`C@LEG@@>C@`EG@C@=AG@C@@#BG@C@`M3G@೹C@0G@`fC@3G@vC@ QBG@@GC@`EG@C@ OG@ÜC@@EG@@>C@9G@ C@B5G@ǙC@`B6G@C@@.?G@vC@aAG@@gC@`CG@`C@`R?G@zC@@EG@`8pC@MDG@woC@ g-G@tC@`G@`lC@ G@ wC@zG@C@2F@LC@@gF@ uC@#G@@C@`2F@ףC@aF@ C@@F@C@@F@C@@WF@ C@=F@C@ HF@ \C@`[F@`C@ CF@C@F@ QC@7F@ C@`F@@.C@MF@C@F@C@ \F@FC@@F@C@F@`C@)F@=C@F@@#C@F@C@`F@C@owF@VC@mF@C@cF@sC@PF@QC@'EF@C@#F@D@*F@D@1E@ D@E@ ,D@LE@ gD@@E@2+D@E@2D@E@Z8D@sE@VD@`/E@(dD@E@@~D@`E@D@E@^D@ E@`D@ BOR@`~J3c@k%Q @L\g}&M\@ %:I\@Q:G\@:+=\@9!:\@ 9_<\@`~9 H@\@~9>\@&9aI\@9@N\@:&M\@ %:يb@ m@D`܊b@b@0y6Tb@`6`b@@f6b@@V6Ab@SW6b@j6@wb@[6 (b@@v6 Sb@6b@6b@~6b@o6@Eb@ǡ6;b@ 6b@u6b@@c6 b@\6sb@`6@ib@87`b@>7b@H7b@ P7-b@ {7 b@G7b@܏7jb@L7Jb@7b@7`b@7b@8Tb@@]7@wb@`e8b@@j8b@Q8`b@ 8b@@8 |b@= 8 b@8ab@7kb@`C8b@ 8 b@|8`xb@8b@`'8 b@.8b@ &8c@Κ8c@µ8b c@8c@8c@O8Xc@`'9c@+9@c@`G9`fc@ 8?9@%c@`J9 c@`k9c@,y9`c@@q}9c@m9$c@9 c@|9` c@ 9"c@ 9 !c@Y9$$c@9z&c@9`"c@UE:d"c@`W:2$c@!c:#c@@:$c@`ˮ:$c@@:&c@; %c@;K#c@`;F!c@=*;@E!c@1;#c@2;T#c@B;!c@=J;m"c@@jS;T%c@ 9^;J&c@Tv; )c@ ;+c@(;3.c@;@.c@@;@r/c@@ <`2c@`C<1c@A<3c@V<@i3c@<s.c@@c =p+c@=k=z(c@=s&c@ !>s c@ b> c@>`"c@|>_ c@ i$? Sc@`H?`]c@ a{?c@ɏ?c@ ?Vc@$?`c@ 8@ c@`I@`c@<@gc@? @ |c@ 8@ c@uA@Fc@P@c@`Z@`c@@U@ c@Y@!c@`\@c@`+b@b@`p@Xb@`ד@b@@@Eb@E@b@?@b@@`b@ɯ@Db@f@@b@@b@@b@O@ b@@+b@@b@@b@`@b@@@ b@u@-b@@b@@ Sb@@@b@`@ b@`A b@@b@ATb@ Akb@`Ab@ Ab@ Ab@ %A b@ 8ADb@DAyb@`~AABb@hLBBb@\Bb@`eB@b@0vB!b@Bb@'B`b@vBAb@ B@b@ tB@b@ڠB8b@`BYb@@B@b@ B@b@B b@Bb@XBab@B"b@Bb@ZB b@@LBpb@ B׆b@WB xb@B ib@%C\b@ QC`Zb@`XC`Zb@@;TC`Mb@^C`2Kb@ XC Fb@_CHb@ tCIb@uC@Mb@geC`Nb@@eCOb@puCMb@kC@Ob@bC Lb@OC;Jb@CJb@ C@NEb@onC;Bb@hC@b@iCH@b@krC=b@ tC|:b@]C8b@ TC:b@FZCO:b@`SC8b@`QC3b@WC`0b@MC /b@HC,b@ CEC-b@ 2a@@A``@OBA@i`@WKA (`@QA!`@ ?QA@i`@YA``@#aA `@fA`@ hA 6`@ hA`@^A`a@ [`Aa@gA`@@nAHa@`0~A`@@AZ`@@oA*`@mA`@uA`@yA`@@zA e`@ PrAH`@ ]A Q`@vXA`)`@SA `@`IA`I`@IA `@qMA`[`@@LAm`@ 8A``@$@A`2`@W\@"> \@`R>\@`G> \@>Խ\@ =\@=`\@@=೵\@O=\@<.\@t<`\@`<\@`s;<\@@<\@;\@|; \@}R;o\@:0a\@L:&R\@fg:`RO\@C:_H\@&:pM\@(-:?P\@<:OQ\@-:R\@O :U\@[: 1X\@@A':Z\@/:`k^\@`b:_\@`X: n_\@@F:.b\@@U:`c\@A:d\@=: f\@{:`dg\@g:Oi\@ :Ok\@@:o\@:s\@: Jw\@@|:@Ew\@SW:r\@$@:@j\@y5: 1\\@@9]\@9Y\@N90Y\@9^\@ 9_\@9-`\@u9`n\@9 k\@:m\@1:p\@ 24:@.w\@`:`xv\@`k9y\@@9x\@`k:}\@~Q:;\@`Bv:\@W:@\@`J:`\@`1:q\@`:\@@9@W\@[:\@9`Ŏ\@`9࣐\@ +9a\@@39 t\@@19 l\@%9ai\@\8j\@t8 8g\@`8@3g\@8`Z\@M|8vX\@o>8 [\@`-8&Z\@` 8+i\@7 8o\@`7`r\@@T7 Hp\@"7-t\@ 7q\@@ 6m\@6Ej\@`6l\@|6 lx\@ 6\@Z5\@5\@5O\@5&\@`#6 \@UU6ى\@L6\@OZ6`\@y6\@6D\@ i6\@ t6`x\@&~6\@Nk6v\@O:6&\@T6 \@ 6\@J5@\@@ 6\@5G\@@35 \@5@3\@`J5 8\@=5\@5G]@L5 ]@`4 H ]@4`]@4-]@ 42]@@c45]@ߌ4E2]@4-4]@`l47]@4!J]@ ?4 K]@K4MT]@ b4b]@D4`f]@4n]@?4v]@4q]@]^4@i]@RX4@]@_4@]@N4O]@T4d]@xF4]@R3x]@m4`]@4`}]@@4]@ 3@^@231^@E3A^@`3^U^@ U3 c^@]2Gi^@`r2@g^@2 1p^@`r2q^@@2@n^@02t^@Uu2Ky^@`x25^@!c2^@@332@^@(2`R^@!2`^@72-^@U1q^@@2`^@1O^@1@^@#1^@ݎ1@3^@K>1ԑ^@ %1^@1`;^@w0ೝ^@0J^@0^@ 0 J^@0^@`0v^@0`;^@20 ^@0^@$p0@U^@`I`0 ^@s0@^@={0@i^@Qy0^@@Η0^@ 0T^@`0Y^@߬0&^@S0^@Q0@^@Z1^@7P1 ^@ k1 ^@1T^@`ˎ1^@_M1G^@`.1^@@1 ^@1 Z^@`0=^@ 0^@{$1v^@~11^@@1`^@1 ^@g1 ^@ h0h^@0@^@0@.^@0@^@0^@ 0 ^@0_^@ 0@E^@m0.^@=0^@0`^@%0@^@@0^@@0^@`s{0 Z^@Nk0K^@h0^@`n0M^@%_0^@ a0^@`W0 8^@H03^@ )0k^@+*0^@ 30^@50^@`r<0`^@@B0@^@W0^@@_0_^@(m05^@`BV0`^@!c0`^@I0&^@@90_@vH0 _@xf0T_@ i0_@Y0$_@`g0@/_@b0}5_@n09_@=j0h$_@ S0$_@uY0v_@RH0O_@0^_@J0#!_@-0%_@@:0$_@/5)_@ /a._@ڠ/)_@@ /'_@/ _@&/O_@/h_@=/_@/_@`W/_@fG/D_@ b /_@ /_@@ .!_@.`'_@ / (_@..@*_@.`;+_@@;.`._@ .!*_@4.._@ੋ.0_@@.`?_@0.@?_@@.A_@(.MD_@.K_@ /D_@ .E_@ ¶.OI_@ .A_@@. ;_@.?8_@`.^=_@m.@_@Uu.@3C_@@U.@_@N.@?_@`.`_;_@@dh.@7_@؂.@6_@c.4_@U.p9_@@33.`=_@`CE.JB_@&.@@_@-D_@`-D_@(.F_@.kI_@M.@J_@4R.I_@Z.`J_@t.Q_@1.Q_@`D.`Z_@ \O.\_@A.`)W_@ 6.@[_@`.@K_@`-@O_@`-Q_@-?T_@@G-M_@ ¶-H_@-@{K_@d-`R_@@I-`N_@`CE-P_@c)-JV_@I,U_@6-Y_@ 1-@[_@H-ab_@-a_@O-e_@Q-`}f_@ v,g_@@r,l_@ –,m_@@d,i_@ེ,k_@.,h_@@-Jj_@,9-`o_@@,n_@`,u_@,t_@ &-y_@@I-`z_@ hE-z_@ -!_@ -_@,`~_@`,&_@t,?_@7,@i_@r{,_@ d,_@<, _@ &,5_@@^-,~_@ ,`~_@++_@`,s_@@ +}_@`,_@4+̀_@O+x_@@+@_@@d,ь_@?, ҋ_@O,`k_@Sw,\_@Z,@_@Y2,_@@3+&_@+_@Q+3_@ +_@",_@@+,8_@#,_@H, H_@`fF,;_@n,n_@u,#_@&,_@@,@_@, _@,_@Z+@_@+@_@`+ _@+_@ ١+ _@O+_@f+_@+8_@@u+@i_@7+_@,+_@+`_@+G_@`+ _@@+_@+_@ + _@K,_@`X,D_@@,_@(-`@I-K`@ f-@%`@`h-=`@}-`@Qx- `@-h`@-`@--`@- 6`@@3.|`@. e`@ ._`@`l.d`@p. e`@.``@@G.@`@@Ĕ. `@e. `@`^.`@.` `@ .b `@ෟ.`@+.`@ . `@~-` `@ V-@ `@@-.`@. `@@j-`@-* `@ -``@ౄ-`]"`@-%`@-$`@}r.&`@p].&`@Oz.3(`@.`&`@0- '`@-@1`@].@2`@` 5.2`@/W.v4`@@F.K5`@J.t5`@@Ag.p7`@`d.3`@-4`@ -;`@-V<`@ ߜ-p?`@`- ?`@m-;`@ -8`@-y9`@Љ-B7`@-@N3`@tY-`2`@@$A-@3`@ 6-`x8`@-j8`@@-F5`@(-`21`@,-}+`@,0-`@Tv,K/`@wW, /`@[0, S/`@.,2`@ 1,3`@,'7`@,8`@ n+6`@`+8`@ཚ+ :`@ 9+@N9`@+ 9`@lb+ ?<`@A*@<=`@+0?`@`+D`@``*@WG`@Ȱ*H`@@*HJ`@0*qJ`@@* C`@ X*C`@}) uD`@)E`@)F`@`)2H`@")J`@) eK`@@G)KK`@@Y)MP`@Q) O`@@4)Q`@ \O)S`@ o) V`@ ?i)!T`@@U)Q`@D)S`@)<) S`@`0)jR`@,)sR`@ 9( S`@(`X`@(+Y`@))zZ`@`)`^`@ A)&^`@=+)\`@`")[`@` )F]`@)`]\`@(Z`@(mZ`@`(\`@@d(ya`@I(_`@b(``@L( f`@`h( g`@|(g`@m(h`@ !( i`@#(k`@tz( n`@` (Kw`@`5(`x|`@`p(}`@`(`@`&( `@Q(``@tz(` `@f(``@Tv(@r`@`(F`@t( S`@(;`@ޝ(}`@=k( `@P(/`@-(ؕ`@G($`@C(ൔ`@-( `@z(``@,'`@`'$`@R'`@z'` `@&`@$&b`@ 'ԁ`@'p`@&<~`@&+`@&{`@`&x`@@&` y`@/&`[y`@E&`z`@@ʏ&z`@`& z`@j& (|`@Y&}`@`l&t`@@u&``@@jC&*`@E&y`@ 9& `@@& `@&'`@&`@}&`@ ¶& n`@@&``@آ&`@J&`@B&ଈ`@&`@@-x&`@`W&̊`@"B&3`@ \o&`@@&b`@ &`@ 9n&`@m&`@&`@ '``@@ &ԛ`@Ϊ& `@S&`@U& #@@1G@ .1@`H@@0@ {]H@`0@NH@y0@\>H@*0@5H@@0@./H@ 0@#H@0@KH@o1@sH@@1@ = H@ .1@;H@1@G@@.1@ G@` 1@G@`1@@G@g1@ G@0@`G@0@G@J0@ =G@ɯ0@ 7G@J0@G@@Q0@{G@@Ws0@`YG@o0@ G@0@`G@e0@`G@B0@`G@@Ws0@ G@`}0@`֣G@Hp0@ZG@t0@ΒG@B0@ߓG@0@5G@ w0@1G@ V0@ȇG@u0@`ăG@X0@`GG@P0@`lG@/@jG@/@\^G@0@TG@`L/@ZG@l/@OG@5.@ TG@-@@NG@#-@ AG@50-@`7G@&-@@1G@ N,@"9G@ Q,@l8G@``+,@ >G@p+@DCG@*@IG@@)@nNG@ (@@XG@`/(@cG@`5(@KeG@@ (@nG@I(@9uG@ C(@G@`h(@G@l(@G@ '@ }G@;'@G@ &@@z|G@`&@mG@1T&@`){G@`&@bG@x%@8fG@d%@`jG@vX%@`oG@ %%@lG@Y$@FoG@$@UqG@ +$@`wG@9$@$G@ %$@@yG@@Y$@mG@l $@nG@I#@`zG@@H#@G@#4#@ZG@ 5#@ eG@8#@GG@ <#@G@@>#@@G@1B#@G@AD#@@G@*H#@pG@F#@G@@)D#@G@@E#@ uG@wF#@vG@B#@G@@A#@OG@@5?#@uG@;#@`G@6#@G@3#@eG@#0#@XG@`v+#@G@@&#@`iG@`%#@G@@S&#@@G@`'(#@G@_*#@ yG@t*#@@G@(#@G@,%#@eG@m #@xG@#@G@#@֝G@^"#@]G@.%#@oG@h&#@G@W #@ G@#@G@`#@`G@#@@,G@5#@ G@zT#@аG@N#@ OG@#@`G@"#@ G@ 6#@ G@_t#@ G@#@G@#@ G@U#@G@9#@`G@$@G@;+$@ G@ y5$@@G@ ,$@ G@O$@@@G@@;l$@tG@`m$@ZG@V$@ G@`$@G@@X$@G@$@G@-$@G@7$@G@%@ G@`_%@G@}%@ G@%@G@ N%@G@ %@ G@}%@DG@6&@G@ g&@G@+y&@mG@zt&@DG@@&@`G@&@#G@&'@G@CD'@1G@ '@G@hd(@G@i(@`G@Z(@G@`(@G@ |(@G@"(@`kG@`)@@G@@;)@JG@b)@ 7G@W)@ rG@)@G@`*@@G@`)*@`G@%*@G@W3*@`G@`*@ aG@)@G@#)@`qG@@*@ UG@@j)@mH@)@`H@*@ -H@&*@5H@*@HH@+@`JH@ t+@FBH@@+@tYH@ +@\H@ +@dH@-,@VH@U,@@NH@ ,@IH@,@ RH@ f-@jJH@-@dH@-@!bH@-@`H@M.@@-H@Q.@xH@\.@`/~H@@/@@QpH@/@`jH@@0@PaH@`^0@]H@@ 0@gH@0@dH@0@\H@@0@ {]H@ jcF@@1C@`G1I@D@ ) gF@EC@`eF@`kC@cF@sC@mF@C@owF@VC@`F@C@F@C@F@@#C@)F@=C@F@`C@@F@C@ \F@FC@F@C@MF@C@`F@@.C@7F@ C@F@ QC@ CF@C@`[F@`C@ HF@ \C@=F@C@@WF@ C@@F@C@@F@C@aF@ C@`2F@ףC@#G@@C@@gF@ uC@2F@LC@zG@C@ G@ wC@`G@`lC@ UG@kC@`F@ pC@F@`C@;F@ C@`F@ C@@ӎF@ C@ yF@ȷC@qF@C@ gF@EC@9G@D@HG@D@HG@fD@KG@fD@\G@D@aaG@@D@bG@@D@oG@LD@zvG@D@ \wG@D@ G@ HD@@G@`vD@[G@ D@G@ D@̖G@`[D@=G@D@#G@\D@G@aD@G@ D@@G@͢D@G@D@-G@`D@qG@ (D@)G@D@G@D@ CG@8D@`G@D@@3G@D@ H@RD@ H@D@H@QD@`)3H@jD@VD@.I@-D@`G1I@UD@`'I@e'D@I@r+D@ I@ +D@PH@@.D@H@ +D@H@jD@ xH@`/D@`˽H@C@@µH@JC@`H@@.C@մH@H@ `{C@H@@-C@ H@@WC@2H@sC@ >H@9C@`H@`ˍC@H@`C@ZH@@?C@{H@SC@ wH@@C@ wH@@W{C@sH@`rC@jH@nC@$nH@ Z8C@ 0UH@@1C@ &NH@3C@ 7H@#PC@`*H@LC@@.H@ gUC@ 7H@@']C@`0 H@MdC@H@mC@jH@_tC@V#H@}C@t)H@ `C@%H@ fC@`GH@C@[H@C@;H@@C@ .H@ >C@ `+H@ xC@G@ C@@@G@C@`G@C@*G@`C@ yG@`C@@ÌG@C@DG@>C@ NkG@ߓC@@EG@`8pC@`R?G@zC@`CG@`C@aAG@@gC@@.?G@vC@`B6G@C@B5G@ǙC@9G@ C@@EG@@>C@ OG@ÜC@`EG@C@ QBG@@GC@3G@vC@0G@`fC@`M3G@೹C@@#BG@C@=AG@C@`EG@C@LEG@@>C@AG@`C@4G@@C@,G@eC@ G@)C@@#G@C@ G@2C@G@@>C@G@C@@F@C@`F@kC@F@C@`F@C@F@C@LF@D@@F@ D@F@D@RF@ D@ F@D@[G@2D@F@"D@F@!D@@F@"D@F@&D@F@@0D@(F@:D@ F@AD@F@DD@ ǺF@aJD@@ֵF@LD@F@WRD@ೱF@UD@F@`V]D@F@dD@`vF@lD@F@`oD@vF@[pD@@pF@-yD@ F@{zD@-F@@D@)F@D@`̝F@ ǂD@@F@D@F@@D@F@BD@F@ D@aF@D@`kF@`܎D@F@D@F@)D@ F@D@ †F@D@෇F@fD@@F@8D@F@ QD@F@@3D@@WF@ҶD@F@ lD@F@`D@F@@D@ F@` D@`F@(D@F@D@G@`̕D@`G@`D@$G@ QD@ l0G@`VD@[8G@VD@`=G@D@BG@`fD@`EG@2D@=IG@@֍D@ OG@D@UG@דD@ZG@D@XG@ D@ lPG@ D@@OG@`D@@KG@ D@?G@ײD@4G@@3D@=*G@@D@ *G@)D@ L&G@@pD@ +G@ \D@q,G@D@`)G@ D@$G@jD@2$G@ D@!G@RD@ G@qD@\G@)D@@G@@gD@`[G@D@G@D@{*G@-D@@5G@=D@9G@D@ veSA6@uR:@)DTq@RA6@RR6@@RcX6@@CRf6@@RBu6@@KzRx6@@wR@ 6@@;xR6@@zRt6@R +6@@R`ݭ6@$|Rk6@vR;6@wR6@uR6@~RvX6@@RA6@@NS 9@@YS:@NS%:@@mPS@ 3:@ }NSF:@`tNSq:@IS`0:@IS`:@US`*:@WWS :@@3[S:@GaS:@5yS`:@|S@:@`uS:@=fS:@YSg:@JS@ :@JCS U:@r@SN:@ 1ISC:@KS #:@rLS V9@@NS 9@@TjS@Q7@nS@7@EkS`7@@dS`/7@ngSB7@@lS@7@pS7@jSJ7@0rS7@GuS@7@,uS8@@zS 8@`lS`H8@@hS@8@QpS#8@lS88@woS`8@lS` 8@@hS58@fS68@bS8@aSj7@ aSh7@MdS97@8gS<7@ iSj7@@TjS@Q7@@R[8@R '8@R@98@RG8@@"R``K8@R@ 8@ 1R`/8@yR@ԕ8@@R@8@RF8@R`դ8@ RH8@GRO8@R$8@iR@Q(8@@R[8@^S@E8@SF8@S[_8@Sh8@S@8@@St8@S8@@2S8@@S8@@S8@@:S8@ZS`8@S@ۏ8@S@8@bS8@@S߻8@S 8@S8@S 8@ SL9@S`39@S'9@rxS8@JoS8@mS8@qS r8@vSMl8@wS@]^8@^S@E8@] S@8@ S8@S`68@S*8@ S`8@ S@8@Q S@8@ S78@@ S8@G S@X9@@ S9@@ S&9@ES@=9@ S7@@R@']7@Rp7@@*R7@Rɟ7@@R7@FR2S7@@R-7@@R@7@`R O7@ R 7@@:R` 6@R 6@X ;I@a9@ xNI@=:@II@a9@ ;I@9@@?@I@=:@LI@@7:@`FI@@0:@ xNI@ :@@MI@9@II@a9@ B`V@@4@*W@:@EV@5@^V@d6@V@6@V@`6@#V@6@V@6@V@[6@V@6@V@ x6@ ~V@6@@WV@~6@@V@ti6@`yV@6@V@5@@V@`::@CV@>:@?V@U:@:V@ &^:@ =V@@4r:@DV@b:@IV@ V$:@[V@9@`V@:@dcV@`S9@@hV@!:@eV@`R':@@QhV@ ,9:@kV@s::@vV@9@@%wV@9@@@wV@@9@vV@`9@@tV@`t9@tV@ ̼9@@@wV@9@@tV@_9@uV@@K9@V@[/9@ fV@&9@@V@-9@V@T&9@V@`059@sV@#9@1W@.9@@W@p-9@W@`9@W@8@@W@8@W@?8@W@ y8@W@8@W@`j8@FW@@`8@`aV@@`8@V@|S8@`V@tY8@@V@S8@`V@F8@@V@@-(8@*V@n.8@@V@a:8@V@9=8@VV@`(8@V@&8@V@b98@lV@8@@V@@.8@V@M8@ V@8@V@`8@V@7@V@t7@ /V@@.7@V@_7@ V@7@@V@7@@(V@47@"V@iC7@DV@C7@@V@%7@V@7@EV@k6@V@7@@V@17@V@A7@V@i7@@V@z7@V@D7@V@7@`QW@7@@W@`07@) W@|7@ > W@`7@@W@7@$W@ 7@|W@@47@ W@7@W@`H7@@OW@>97@ >W@6@kW@ s6@@W@6@ W@Ѹ6@&W@@&6@#W@@W#6@{&W@o5@@(W@ d5@*W@@L5@&W@$@5@t%W@iC5@m#W@@_5@W@@(\5@W@ a5@W@Io5@@W@by5@ W@`W5@_ W@`-5@@W@ 5@ W@ N4@ >W@@z4@@W@@4@@.W@4@rW@ '5@V@r5@{V@@5@^W@<5@`W@b5@@V@5@V@5@V@`5@`V@5@KV@@5@8V@ 5@)V@6@RV@'M6@`QV@@6@@V@6@V@`6@V@6@@V@6@V@6@V@@6@V@D6@@V@t6@ fV@@6@V@ &6@3V@ 6@V@z6@V@@X6@V@ 7@aV@0F7@ V@!R7@@V@`7@`V@y7@@V@{7@:V@ ف7@@OV@`}7@V@7@@?V@P7@ɣV@h7@V@7@V@` 7@7V@Fb7@V@u7@V@Dd7@#V@H7@2V@`87@@OV@7@V@}7@ќV@7@V@`_ 7@HV@ 6@`V@@6@@2V@@6@V@z6@YV@6@0V@@ۿ6@ V@Ʊ6@V@`6@V@i6@V@6@@V@v6@V@K6@֣V@146@V@6@V@v6@@V@P96@ >V@H6@@pV@b5@$V@`5@V@5@V@@P5@@ V@5@`V@Q5@@gV@5@{V@ 6@V@`Y!6@@܎V@H06@V@@5@V@6@=V@ ~6@ƁV@ \6@~V@5@|V@`5@@OzV@ 6@@ xV@`H6@`V@Ds6@ÂV@@`6@~V@ z6@(|V@ n6@`uV@hD6@ wV@v6@@vV@#6@rV@6@vV@6@lxV@j5@ &rV@i5@jV@5@@iV@5@hV@`5@lV@`5@kV@ 5@eV@!5@fV@5@cV@5@bV@@5@|fV@ 6@eV@@26@gV@ VT6@dV@ E6@#eV@6@|bV@`_5@raV@@>6@=bV@h6@s^V@J6@]V@56@'aV@B6@@ aV@Q5@`^V@ 5@`]V@5@jZV@Ե5@VXV@ ҷ5@V@ U6@ W7V@6@@7V@`07@%?V@!27@86V@ &>7@.V@J>7@-V@ O7@2V@@u7@Z$V@7@F&V@7@ N'V@[7@.V@s7@@.V@ 8@K-V@ 8@U-V@+8@@/V@`/8@2/V@`6@8@:,V@Q8@#V@7O8@V@@48@@V@ 8@`V@ %8@s V@8@V@8@ V@8@BV@8@V@9@ V@09@@#V@`.9@u @$I@i @II@~1 @I@2 @I@@-X@I@{s@`ěI@d@ਛI@(@@FI@@@`I@,@7I@ @3I@0@ I@@@ԭI@H@I@/@^I@@|I@ 2@ ˽I@`*@I@ɯ@I@@@ZI@M@I@`@ I@C@ xI@@!@I@@ `I@a*@JI@`j@`I@@O@I@`W@ǨI@3@wI@@ I@@I@k@I@ 6@I@s@`I@`@{I@b @}yI@&@pI@ `@`I@@`I@L@[I@n@`\I@`@OI@@ OI@@BI@ .w@9I@@@!*I@~@I@@@`I@m@ yI@ @ I@eG@ >I@`;@`H@`@sH@i@H@@`H@?H@ H@@`H@(\@H@!@}H@"@`H@h@H@~@H@ :@`H@`Q@@zH@@`kH@&@cH@d@ aH@n@H@A@H@@ 4@@'H@ch@* I@k@`I@ @ I@Ʊ@`H@@U@#H@@_@H@@`AH@@@a I@`@ I@L@`!I@`]@@?(I@ @ -I@^ @$(I@ $` @U,I@Y @8I@Y @?I@  @m?I@p= @DI@`H@ @ LI@ @@^I@`@eI@@?H@ cI@5@8YI@kA@`I@ @ iI@`f@ qI@UU@ I@@`I@@ @I@MV`/@@CV]}2@4@'V[72@Vw2@V]}2@ V6|2@Vh2@V@`2@@;VY2@?Vo^2@V K2@Z VaZ2@ V@ V2@0V@_2@VbY2@@CVZ12@Z V ,1@ V1@V1@V آ1@V 1@@ V}1@G V@^}1@@V {1@@*V@z41@V1@ V0@V0@V@0@@*Ve0@=V O0@@V0@@Vp0@@#V1D0@6,V>0@r/V70@/V%0@%;Vt/@ M:V/@>V@/@MV`/@ LV|#0@@KVy0@@"JV@0@ :IV%1@@#IV{1@IV1@-IV1@KBVk2@O6V 1@@1V` 1@y-V@2@@+V@/2@@'V[72@s?@@@ @@a(@`f6@`'@G@'@I@`'@`@@'@`@^ (@@ 1U(@A@{(@)@@(@}@(@@<+@`F(@{@@a(@~ @ (@ @(@@n @ '@`H @`/'@@x @'@ @@%b'@@ @@&@঍ @E&@ @;&@@%@@ g%@@ @ +%@P@7$@ׂ @A$@ @ $@@ҧ @@$@y @@^M$@ $ @g#@`3 @6#@ @J#@ @@#@  @@']#@ @E#@`N @E#@!" @"@\ @"@@\."@`f@I"@N@@"@ @-!@@* @u@@@ @<@@@*@`0@0u@;@ \@@@`:@`@r@e@`b@@(@^@Y@`d@"@@|@@3u@[@L@ ?@X@%?@@?@W?@V4?@?`@`?`)@ G?@r@O?`@@'?. @?ۿ @Œ?o @?@!@_ ? !@@ϊ?;"@ ?E"@`ff?#@ ?}1#@?#@s?$@ ?` %@[?@%@?`%@ S? )&@?@&@?`G&@?WS&@?&@@Tv?&@L]?&@ ? 1&@)\?#&@?`&@$?@&@A? s&@^q?n&@@'@&@Ȃ@['@ V@`'@f6@`'@`6P`[!@@ *P0@@[4P`[!@@05Pu!@@5Pu!@@&6P!@@6P!@@`6P@#"@@@6P"@@6P"@@@6P@"@@5P"@@T5PW"@@4P u"@@z4P"@@4P`"@@ 3P@"@@ J3P #@@@2P`M#@@@2P #@@82P #@@1P$@@1P$@@`1P%@@82P@%@@s2P&@@@2P L&@@1P&@@f1P`&@@1P`'@@0PH'@@h0P'@@0P '@@/P '@@/P[(@@@{/P(@@=/PQ)@@ .P)@@ .P=*@@@.P`*@@8.P+@@-P+@@-P ,@@-P,@@^-PB-@@+-P@-@@,P`f.@@,P.@@,P/@@Q,P0@@ ,P[0@@ +P0@@ a+P0@@ *P0@@ &+P0@@x+P/@@ +P \/@@ ,P.@@ H,P.@@,P .@@,P]-@@,P ,@@,P +@@v,P@{+@@Q,P *@@v,P=*@@,P*@@:-P)@@-P`)@@-P=)@@`+.P(@@`k.P(@@@.P (@@@.P '@@@3/P@.'@@ n/P`&@@ /P`B&@@/P`%@@ 60Pf%@@q0P$@@0Pz$@@0P@$@@G1P#@@1Pq#@@`1P"@@!2P"@@`}2PW"@@@2P"@@ &3P!@@@i3P!@@ 3P`!@@?4Pk!@@4P`[!@@ 0V@:@RW@R<@< 0V@%;@@3V@@;@9V@?H;@:V@/R;@ &>V@>y;@ HV@G;@nNV@ ;@ WV@ %;@eV@#<@9uV@?<@@V@R<@mV@@A<@YV@M<<@@zV@h<@@gV@ <@V@ O;@V@;@(V@<@@V@p <@!V@`;@V@;@ 6V@@;@sV@@;@FV@`;@hV@@P;@V@t;@V@j;@W@x;@RW@ ,I;@W@`+;@W@@;@UW@@;@.W@:@zW@ :@V@:@V@`:@V@@:@}V@@:@@V@:@@V@:@V@:@V@:@@V@@:@`V@@.:@`V@0:@V@`R:@@V@:@'V@@:@[V@`_:@uV@:@@gV@:@hV@g:@ WV@@(:@!NV@:@ GV@C:@:V@:@7V@@z:@7V@;@5V@@;@ 0V@%;@iQ6L]#\=Q+70 >Q50sFQ@.70IQ70MQ (0[Q`rQ),r@QΪ, ?Q@u,6Qe,7QQ8,@>Q`+>Q,+yEQQY+EQ@I+@@QD+=Qw*a>QO)q8Q@)w3Q@u).QV)1QM<),Q` )U1Q (@IQ`C'PdQ%vDQ%7Q?&)0Q&@42QL=&0Q`G&@%Q 5& Q`% Qi%Q~Q%PS%P@{c% 'PP8%8P"$`PW$ݱP@j$ͣP#ɃP#݁P(#tPE#`sP@# rPv#@pP=# 1mP$#@M`:+4iM3MR3` MY3MK3 NN u3 N3 N{4`}"O@4,!O@5QO<6` eOn6gO`5@vO76iP`W6Z Pn6@PF6P6@"P 6 :P١6P6;$P\6"PF6#P@]>6*P+6B.Po.6@E?P@A6@TfP6(qP+6J{P5P5P5ӎP@5P 5PL6*P=:6PLm6@uP@6P@6Pҷ6@PQ6P6P6P6@P7p6PK6@ P`=6P 6gQ5Q5  Q`<5  QL5Qm4 Q4@#Q4Q$Q4Q 4@EQ4+Q}4/Qn4{0QH`4*Q`S4`x.Q*;4@u-Q0&41Q !4@]2Qt4)Q4$Q4"Q@@3,Q`3@+Q@j3Qq3Q@o3Qf3i/Q-30\=Q+70` y/@@BHE@3@ F@]1@@xE@@<1@`M{E@'1@}E@`[1@׉E@ t1@E@`d1@zE@@PL1@@E@A1@ E@@E1@ E@B1@׺E@@*1@E@`0@`E@>0@E@` 0@E@0@E@0@F@[p0@@F@Z0@ u F@]M0@ F@?0@-F@@$0@F@ -0@@{F@ /0@$'F@90@*F@`(0@`k2F@ 0@@F@@ 0@@FF@/@YF@@/@q[F@/@@WcF@` y/@ hF@/@zmF@ /@`uF@@3/@fF@/@kF@/@fF@`/@ F@@/@F@ /@BF@@E/@`F@0@ F@`I 0@@gF@0@eF@0@)F@(0@F@50@@gF@@J0@F@Z0@F@`ff0@F@e0@$F@@u0@{F@y0@F@0@ F@Q0@@F@ 0@ F@0@ F@ 0@ F@0@F@ 0@F@ 0@`F@@0@ F@1@ F@ 1@ F@  1@F@1@F@`I-1@F@@=1@F@@gD1@`F@H_1@ F@2@F@2@@ёF@@2@]F@2@F@42@׊F@f72@F@`o@2@F@R2@`2F@n2@F@Qy2@QF@2@ F@2@F@2@2@znF@ 3@ (nF@@<-3@.vF@f53@ asF@@3@8uF@ Z3@ ^rF@a3@@pnF@Z3@(mF@`]\3@`kjF@@U3@@cF@`X3@ ubF@ HP3@)ZF@`2E3@@ WF@`73@ KF@@/3@IF@@03@.FF@ 3@WBF@ %3@@8F@#3@4F@)3@3F@3@-F@ Q*3@@g$F@33@p%F@`I=3@!F@`Q3@@"F@[3@`F@Gq3@3F@ z3@qF@@>x3@eF@3@q F@3@F@`[3@@F@`3@F@3@F@3@aF@3@E@@_3@E@=3@F@`'@3@`)E@|3@E@Â3@`E@}3@`E@ׂ3@aE@h3@E@'_3@@E@@P3@@E@I3@`E@:3@E@@<-3@`E@3@E@` 3@E@3@@.E@2@E@ 2@4E@@2@)E@3@E@F3@)E@`R3@E@{3@E@@P 3@E@F3@ E@=2@`E@F2@E@@2@QE@]2@஭E@2@E@2@@E@2@QE@2@qE@֤2@@ёE@`2@@GE@`f2@`E@ 2@3E@{2@@g|E@ }2@ LnE@@gt2@jE@ 2@]E@o2@`)[E@ד2@SE@`̍2@@OE@t2@@BHE@@ri2@ME@\2@7PE@D2@$OE@@2@@`E@1@uaE@)1@ gE@ 1@hE@e1@ nE@ 1@ sE@@G1@`uE@Q1@sE@1@vE@ѧ1@rE@ U1@xE@]1@@xE@3@ :^=@31 4@AQ2ev5@`M2J7@1Av7@92`7@6Q2!7@w27@@;|27@R2@'7@`*2a8@Y1@v8@@2`8@ 828@`C28@/1@D9@31<9@1 %O9@2@d9@\2Ѩ9@2@(9@29@@2+9@@2A9@3#1:@`s3Y:@ 3iS:@3`g:@@3p:@*3:@`3^:@@3>:@}4@;@`4@Q8;@w4L;@@qM4I;@~4r[;@@ w4ƶ;@ 4;@G4i;@N4@-;@4m;@`I5@K;@`C%5;@ [P5D<@܏53<@`5r[<@ b5}<@ ,5k<@`5@=@"5U=@ ;5@ =@ 5@ =@@c5=@ 6(=@6 B=@6^=@@06e=@@c96<@7P6@<@b6<@Uu6j<@76p<@ؒ6 %/<@J6`/&<@ 6 <@S6@^ <@6A<@6 H;@6;@7G;@7>;@O*7;@@:7;@@d87;@`J7B;@@4b7Te;@ d7 O;@74;@ ,7@Q;@7:@@ 7@:@@7c:@C8:@@o8@v:@8 #g:@d8@(\:@o89@8 9@/9K9@9b9@`9@&9@ 9t 9@ 98@9#8@W93r8@M9@d8@E9D8@Y9 x&8@%98@9 8@\97@9@7@Tv97@yU9Tu7@@AG9@7@ L9@'6@Fb9$6@ [9 6@96@96@9 6@@9 x6@9Av6@@ 7:-6@m:46@_:5@:5@:5@#:S5@U:k5@a:@ 5@t:=Y5@:$5@ :4@`s:@=4@ :4@`:`4@r: ~4@b:^4@@4":4@-94@`94@ 29ơ4@ք9^4@u984@Ga9`c4@u 9 ,4@ i8`\4@@}83@@:m7 %3@63@[64@ 85@J4@@4\4@L3 4@AQ23R@`TfA-@ t #+3CKTI`II@@jI.gI hIBvIII`HH;`$@Hm;5H@c;`/H`q;`BH;HH;v8I?BI Y?DI`5?6Ia?7I?j/In?(I?N+I h$?v8I?HŲ` I@lV?N+I Y?`<3I?42I H?Hd?,H?kH@a? \Hܾ?yHHŲ@lI6ѿ`lI@Ϳ༂Iƿ|I= @SI@NI@'`SGI @lI6ѿI߿ I}ۿI^Mؿ@dIDD̿I_9ŋI`п CIG޿I߿Im I;L`I#I`X@I@dI I'I ZI[I`5I#I]n ƢI :xIsBI @Im \I?@&I`A?`(I`A? I@%?, I?`*I` ?IW? \I?H Ŀ`}H@@(HnHմ?ࣸH`O?ٱH?铿`ѰHH@8H Ŀ9IK [PI@z5RINfI `neI`( aIGI YOIz=Id`CIi4RI@z[I tbI4 eI K~`? 1LI?`ʦLó?`TL@'? ߌL@0@ࣈL/@`ʆL >? U}L? UL&? mPL ? GL@ t?FK`kA@LK y5@ࣰK l@XKR@K@_,@#KO@``I@Iy4IࣸI%dI^M I ~I 6I G˅I@{I kI IzI`ƂI@yIWkI.`lI ƒ`dIp`liIg_I޼VI`@|[IVIBNIX@NI3I^MVH -@":H `<3H t*H@|#H(H,#H=H@33@3H`ukHrHj`}GGףGTv G`2xGA G 9GKGܾG QGQ\GE#GੳG@jDG@@G@@{G``ףG7G@G,GG@ dœG@Gn G`` GPG@ Gh4zG`ϊ xG @vGhG@hGcG`G :m<[G8WG@J@NG|0NG RG@_ 1UG`AdXGWSGg JGTv HG+`KG @!G 'GWG@ G N<GSz G@33`l G;L`NGSF`FA-F F uF@TvFh$`F`q@?F fGFų@:MF x^F``WF :DTFL]`ZF`ZF`I@`OFh$>Fd(U5FyV.F H1F%? AF`+?F_@)TFGGF`JEF p@dPF ƒRFV\WFLWF`OF`EPF@ϊ eF@ dF J ``F_ uaF QFX HFb z5F@tZ].Fa`&F*;` FOF@Fa FҧF,`lF_ F !F[(F q= $F |sFF۟| F`F4E%qE`l E`E@`E`ZEOzE$ yED;E  ̽EfftEE ̽E`<@)E@(ѨE`nE@ d@E@3Ea @#E@ E'!EԆEXr,D`߼DA`ZE`D D?KD*;4D|sKD+D  ̥D`lA ƊDlD@ PjDd@Dd`C QCɯC#`C@ ̭COz C C  `C AC C`B`:m@cB4BH!`TBB !`ţB Y@ΛB(}B@TxB@(`jBEB@OCB@8oB@eA5 hA~qAQA[ ͔A% zAˎA ЩA fAȐlAޝqAB@)lA@WdhA@`mA% vA qAn? `T~Ax # JA@A#A#DB p$ b2B)$E;B %mBtz%Bv%Bz%#B%97HR9?HU94H@k97Hmp9HHw9 YHPi9_H`r\9`SWHz9]H+z9SHy9OJH9`S?H@9v0H@9.H09JH)9]H9 bbH`9GH9`}JH.: WH&>:^Hf7: `H`3:`cHgF:MH`Ip: QHH:WHɯ: UH: IH`:PH:IH ;NH*;`lIH`*;AH%; =H*;@H`8; FH0;OH>;NHKN; GHW;PHp;`SH{;@uIH ; +RH;GIH h;OH`r;LH <_Ho<`cHL}<gH p<LeHZa<@jH V<oHvX<mHz<@3cHఅ<H<ôH$=@H@_= H@@=4I!3>`0I`l>VI>I \? I@?EI?J`B@X J`Z@J? J?@| J`?`SJ?@I?I6?I?I i?I?`IM?kI4?@|I?`TI`}? IIf?I@G?ɗIa? I $?I?ڀI`?PI@c? C}I"?xI ? ~IM ?zI> |I{>)tI`C> ^I@;>@YI+>xVI>`\I@q]>@VI)\>`SI7p>`LI {>HI u>`DIQ> FI[@>"RI`0>nWI;>@SI6A>`0VIJ>^IJ>.gI2T>mI@P>`TvIU>vIp>I`a>5I bJ>`IB>]I0>໛I%>@I@c >I> I9>UIJ_>`I`W>IZ>`I@e>Ixf> \I t>`I>I>I`>ɧI@@> I`>`I >I>@uI`>BI > tI2>@LI`>UI ?I h? I?ZI`(? IB?@IO?I+j?I? J ? J ? J@ڐ?` J?`J?` J?VJ 8?JS? J?@uJ?J@? J? J@`~J @J @` Jy@ J @@|J$@ J5 @ JU@NJ Q@%'J m0@:J4b@SJ3@ yJ@|J@J@J 8@`J@@JY@`$J;@`J@J@@@KJ`_@)J\@JAU@J@(M@`?0K>`K>>K>>4K#>K6>`K4?`L ?L>@K@;>?L@>`L`C>#L`e>PL`sK> JOL @>eL >|L@>,L>`L \/>@ELK>>iLJ> LxF>@L@@>L4> L .>ML)>L=L= L=&LD=@LLij= [XLU=@"RL@42=,IL@=5Lo=3L`f<d(L@<` %L <LS<aL< bK@v<`;K`;`$K`;K;ໃK; ƂKy;`}K b;ZK ;K@;tK;.gK`;@d`K;4JK`r;DK`};Y9Kw;@":Kui;U-K 2t; D,K`Bf;`e'Kn;#K`l;KX;yK@;KJ; KH; [J@; aJ+;lJ:`J:`JV:` J@:`L)6QLEC6YL@66@cL@6 jL`L6@pLH6oL>6 L ;6 L@A76@L36 +LJ/6 LM,6`L@c6L`l!6`L6L 15 tL5`+L5@"L`Ƃ5LT5` LG5`NLW35L4L4@L4BLD4LN4 L4L@4LL@ 4L4Lp4 M_4 MC4FM`G4M`<4SM|34>M`:+4L3M3@L@3@4L` 3L`k2 L 2L'=2ܾL=2Lh42L-2dL 2$2L`2`Q & :Q +&QL%qQ &QQ%2Q@Ϫ# Q^#aQa#/Q@T6#rQ##@+Q@d"gQI"^Q/# Q@m#`%Q&#Q $ R$@ R# RP#ZR@K~#@R\# nR@S"%R@"@#MR"o>R8O"?]QZ?hTQ@?fMQ?HQ`(?` HQ? KQ@l?@IQ?LQi?_LQSv?QQd?@E[Q`o? \Q?umQ?@"nQ`o?uQ?uQ@r?JoQ`?c]Q@*?-XQ }?` Q /?@QP?z Q@Q ?Q`a?PF? "P >?@P@@*P&@uP@ IPR?P"?@cP@*?P@?P͛?QP 4?HPr?&~Pt?.wP:?mP?cPW?@`P{?@`P"?ZeP`:? dPJ~? :aP?@[P@_?XP/?NSP@? LP`Œ?@KP?HP?OFPS?@APg$?24P@? 0P?,PU4?@~!P?P@.?@fP$?P8?|P@?@P?VPZ?Pg?P? DOy? O6?WO@OO 6@˭Oc(@ӮO_@`TO`g@@]P@@ P`N@O~@Pj@ P@Pv @@ Pn^ @ P G @Pͫ@+P@?H@@E3P@@3P@ :1P(@Z,P`@)P G@@C%P|@P@|Pd@P)@O~@zO@@ O`@`$O`(@ tO@/O@OC@HOŒ@]~O @pOr{ @`@O\@@\@l@\@E@\@Zp@@\@@@`V\@ @ \@`@\@S@`T\@ 4@DZ\@!@ϵ\@@@\@`)@\@@7o@ n\@@E\@ @@\@@@\@n@@ \@@q@v\@@6@@\@ @ൔ\@@\@`@`\@` @Ӆ\@\@a\@zT@ \@~@@\@@ l\@S6@`\@%@@Ͼ\@@@ \@`@8@\6@ D@;<@F@F;@F@aJ;@D F@ef;@F@ ;@@pF@;@{E@@;@E@;;@F@;@KE@ I;@E@9<@E@v<@E@9<@VE@<@E@;<@E@<@@E@`x<@E@a<@E@?(<@E@<@E@` <@E@@-;@E@;@ gE@`0;@uE@;@ZE@;@[E@;@VE@;@PE@;@@GE@;@GE@@Ws;@=E@ ;@w7E@@ ;@9E@@;@5E@`;@0E@@;@*E@ ,;@@'E@@;@ >!E@<@E@@W<@D@@;@@?E@@X;@ D@h;@`D@;@1D@\>;@ E@3;@E@@;@ E@:@`qD@:@`D@:@@XD@ `:@5D@`0U:@cD@ \:@`D@9:@ID@:@ D@G:@@D@@:@}D@`2:@>D@":@KD@J9@@D@@.9@`D@@Wc9@D@@K=9@ D@59@D@ 8@D@`8@ gD@@8@D@8@D@8@ >D@@']8@`D@N8@8D@>8@`D@I/8@!D@?(8@BD@8@@D@28@@ͻD@7@D@ 7@`D@`7@D@G7@D@-7@@PD@`6@@D@ 6@|D@M6@D@ 7@:D@D7@`D@6@D@6@`E@@6@9 E@ch6@`#E@]6@ (E@@^6@U)E@6@`3E@`܎6@T=E@@(|6@ %GE@ Hp6@ IE@Av6@eE@@p6@hE@6@FrE@6@qE@J6@E@7@@E@@6@ E@ 6@E@@6@1E@}6@E@@\6@ E@j6@`F@ \6@ F@`ݝ6@F@`"6@F@@6@~F@@ 7@ F@ 7@@@F@6@F@@-6@E@6@`E@6@9E@H7@E@i7@E@ 7@E@TV8@ E@l8@tE@Z9@E@9@uE@99@`E@\9@ E@9@E@9@E@:@E@z:@SF@^:@}F@F;@F@'"@f6@*.@l@+@@eO+@;`}q+@W`F+@ 1,@@?`,@M,@ 9 H`,@~@3,@s H-@`+/u-@@.-@@33*.@hܿ*.@` ؿ.@Ͽ '.@7?-@L]?`f-@@%?-@?#-@UU?@ -@??,@?@!,@ף?,,@?^+@@?l`+@`??I+@Z?`#+@@'?*@@z? +*@??*@/?۾*@ ?@J*@@?@-*@ $?@*@ @?`B)@X? 7)@@}?Tv)@`@@{s)@M@ B)@`@(@I@@(@@ww@(@f6@`'@ V@`'@Ȃ@['@@'@&@^q?n&@A? s&@$?@&@?`&@)\?#&@ ? 1&@L]?&@@Tv?&@?&@?WS&@?`G&@?@&@ S? )&@?`%@[?@%@K~?@J%@""?%@8?G&@ Rÿ`NG&@AҿTU&@&ѿ`B&@`ֿE#&@qؿ7&@`Wۿ 1&@I߿ %%@<+@%@%@@G%@H`%@`#&@@&@@ ປ%@u`B%@$@&T$@ @$@@  $@@_$@#@[x#@~"@"@2T"@`^M#@t#@@B2s#@#@`o #@@e #@  3#@l R#@$` 9#@`M#@ )@P#@|@#@&ka#@K>@X2#@=*#@`P#@ c O#@:l#@!J~#@@I_#@h@Yq#@ Y#@ $#@+y#@@#@p#@@q#@@#@#@ r$@@$@@31$@` $@=J+$@ C +$@'$@J%@Wn~%@ %@&@V@'&@`4R:&@0`I&@[0i&@L}&@=&@``x&@` ''@d(;'@@ '@PY'@`'@hd'@'@ܾ`(@ #l(@```# (@R(@d(`G(@Gf(@ (@ @-(@͌I(@n(@v)@P)@$s)@n)@@2@d)@@} k)@ SWP8*@@ 1U*@$ \*@@,x*@ ߜ*@ +*@@@!+@Q8`*@`@;*@F*@UU+*@2T [*@ V*@b e*@h @<*@) @{*@@<+ @g+@ p+@ [+@`@XR+@`Ce9+@l@+@H <@>@`CeF`pl=@`B`b=@@ޝ;=@z7?=@k +7=@@ @7=@`f 5=@ ==@8=@@<+ &=@ =@@n <@|<@(.=@=@x #=@@1T=@:@Y=@ v#a=@  q=@@] =@==@ 8gj=@@.A=@g=@j=@ =@p>@3>@৵`>@y>@a !>@f`R'>@`q9>@@z`K>@ 9@Z>@࡯,[>@`wa>@`Ce@>@ 1mo>@$`o>@ f9}>@@]>@t2 u>@j>@`C3|>@ o>@@& &>@>@ >@`>@`B >@ 9 @z>@`ff >@ ɟ>@ >@ >@ s>@Mb f>@IU>@~1 ~A>@v`05>@ >@`` >@`M=@f=@p =@A=@3=@``pl=@`B ;+7@[I@z^@@fL@*<@=L@P<@`fL@Z<@HL@@3c<@M L@ S<@z L@f<@ L@`ó<@ L@@<@FK@<@K@<@@]K@`#>@ K@9>@`K@`L>@`K@]}>@`fK@~>@K@P>@K@>@ 8K@஥>@K@ >@K@ >@`K@|>@BK@ >@`2K@ \>@@K@`)>@ K@|>@K@ >@`VK@>@ ǺK@|>@K@>@BK@ H>@K@>@QK@>@ K@4?@WK@ >@ LK@`?@K@ ?@jK@>@ CK@@>@`K@`>@|K@z>@xK@Q>@pK@>@pmK@ >@fK@G?@[K@R?@@{SK@o/?@3RK@/?@NK@ !?@` IK@?@@K@o!?@B=K@ 1?@z=K@2?@:K@];?@ u:K@C?@`1K@O?@,K@O?@@%K@@T?@`fK@P?@WK@?@K@෯?@`2 K@?@8 K@?@K@?@@>K@?@ HK@2?@uJ@`?@@J@4?@@J@ S?@ J@`R@@J@`[@@zJ@)*@@J@@>0@@J@;@@J@`[A@@@J@5@@@J@8@@4J@` I@@ J@zL@@`ܾJ@@U@@@J@2T@@J@z^@@`J@`B^@@$J@\@@ J@R^@@׫J@]M@@J@ N@@ lJ@J@@HJ@@3;@@`vJ@M<@@J@@?@@`J@7@@aJ@`2-@@HJ@`B&@@ J@@@J@ @@@J@@@@J@@.@@`)J@@@J@;?@?@FJ@@?@FJ@e?@ DJ@ ?@BJ@?@@>J@ ?@ 3J@?@2J@4?@o/J@2?@(J@@?@"J@?@`!J@`ó?@fJ@2?@kJ@Q?@8J@?@@ J@\?@J@M?@ J@`G?@`J@`o@?@@J@ e)?@ J@>@a J@>@-J@`>@ LJ@@p>@ CJ@>@@3J@`>@J@@>@I@>@I@@>@ I@>@I@4>@@I@>@uI@ >@`I@*>@I@>@@I@F>@ I@@ؠ>@ I@ >@GI@>@I@z>@I@>@I@அ>@ I@>@I@ >@I@@ؐ>@I@>@I@>@@#I@@>@ I@>@BI@ä>@`vI@@ġ>@zI@@>@@I@ >@I@Z>@I@>@[I@z>@`I@u>@I@@Gb>@`RI@U>@)I@@Y>@ܭI@ Y>@I@(->@I@=@`BI@ =@I@ S=@@I@`=@ ҷI@Z=@vI@=@HI@q=@ܿI@'=@`I@*=@ I@@=@I@{=@`I@ h=@I@@Z=@I@`'P=@GI@*H=@I@q<=@I@`4@=@I@H>=@I@z4=@I@@/=@\I@ S=@I@= =@ I@>=@ CI@<@I@`<@@I@e<@I@ <@ I@<@]I@<@I@<@ܵI@<@I@`<@$I@ <@׹I@ <@I@y<@3I@[<@I@ V<@I@B<@ I@3B<@I@ H0<@ QI@`"<@@GI@<@QI@@;@I@{;@ \I@`;@fI@;@@WI@G;@I@4;@I@@ͫ;@I@;@@>I@@>;@I@@3;@I@`x;@ I@r;@I@G;@I@L;@`I@@33;@`I@@4;@I@.;@`I@y;@{I@:@ I@R:@I@ u:@ I@`op:@` I@o:@I@H.:@`BI@`:@pI@ 9@I@9@7I@ 9@@I@9@,I@q\9@I@>9@I@ -9@I@8@I@ e8@`I@`4P8@GI@G8@@pI@ 8@@I@27@@I@ 7@aI@7@ I@ପ7@ I@@͛7@@I@f7@I@7@I@7@I@ˍ7@wI@Z7@ I@7@I@7@ UJ@ ,7@J@`_|7@J@;K7@`J@67@J@;+7@ $J@@Xb7@`@J@H7@JJ@F7@VJ@7@`)[J@[7@@qJ@@7@ J@v7@J@g7@uJ@7@H;@K@Y;@K@`ff;@@K@`;@]K@ ;@K@஥;@ LK@;@@K@;@=L@@;@eL@ ;@L@<@uL@H<@fL@*<@=L@`}Y@$@Z@h-@&Z@$@Y@@$@Y@$@Z@$@pZ@$@`Z@$@&Z@$@FZ@,@ Z@,@ Z@ -@@Z@2-@@,Z@,@@Z@`,@Z@,@׿Z@N,@6Z@,@@Z@@^,@Z@-@@Z@}2-@Z@6-@@ Z@`R-@Z@-@Z@ c-@Z@h-@EZ@@'-@Z@,@`Z@,@Z@,@@Z@Z,@ Z@`l,@ Z@`,@ZZ@@*+@Z@ਗ+@?Z@@+@Z@i*@ Z@*@Z@)@@UZ@)@OZ@)@ !Z@x(@ 6Z@ ف(@hZ@`(@Z@ 9(@@Z@;+(@ Z@!(@@Z@'@Z@'@Z@}'@)Z@)'@@Z@'@ XZ@@AT'@)Z@'@Z@'@}Z@J'@tZ@`='@`]tZ@`1'@yZ@f&@xZ@&@ wZ@&@DŽZ@ 6&@.Z@`0&@Z@@{%@Z@%@TZ@%@Z@%@G}Z@%@@{Z@Ϊ%@`wZ@ %@rZ@`&@pZ@ &@]Z@%@@[Z@%@VZ@`}%@FZ@=%@`BZ@%@?DZ@`%@aFZ@`s%@8Z@z%@4Z@= %@O&Z@`}%@Z@Q$@Z@ $@ Z@@!"%@Y Z@%@ Y@C$%@@Y@b%@Y@%@@Y@ %@`;Y@&$@ ZY@ N$@Y@&>%@Y@Tv%@@Y@`){%@3Y@r%@Y@%@Y@ZP&@Y@ T&@Y@ s&@Y@`%@Y@%@Y@ %%@ Y@@%@Y@@PY&@Y@Ȑ&@YY@&@Y@ &@Y@ &@@Y@,&@Y@&@@Y@@^&@&Y@/'@ Y@'@5Y@O'@@EY@E'@`Y@jB'@ ۽Y@V'@ܿY@j'@-Y@ g'@KY@`s'@aY@@^m'@Y@m'@Y@`#'@@Y@OD'@@Y@`L|'@ Y@@'@`)Y@r(@`xY@t(@Y@@)@ǠY@zT)@Y@`)@ Y@*@`}Y@ш*@ Y@$+@Y@"+@`ڧY@6+@@ߣY@N+@ Y@ \+@8Y@+@`Y@n+@`ܺY@5,@OY@ g,@`Y@ b,@Y@,@.Y@`C,@Y@G,@Y@ ,@OY@,@ Z@,@_Z@,@ $Z@,@-Z@`#,@2Z@q,@ Z8Z@Q,@ @Z@C,@BZ@~,@qDZ@o,@HZ@z,@@wMZ@,@pMZ@ ,@`MWZ@8,@aZ@H,@JfZ@`M,@nZ@@9,@@YvZ@`,@ vZ@,@@|Z@+@Z@@ +@`)Z@@,@Z@_,@Z@s,@Z@ɯ,@ρZ@@u,@kZ@ H,@@͏Z@@,@Z@,@FZ@,@ @G!@vw?@40@``+*@ e&,@ )*@,@``+*@@^ -@)@ -@G)@ M -@`)@-@)@-@)@n-@k)@j-@`N)@}-@X)@ H-@ (@`-@ I(@`.@ +(@r.@(@ s.@'@`8.@`'@`# .@]'@ G.@ '@ 6.@&@.@I_&@?(.@d%@.@q%@ ,.@~%@`G.@` %@ .@` u$@[/@@#@@-.@#@-w.@#@`.@#@--@}#@-@#@@,@m#@a,@#@7,@n#@,@u#@+@D#@,@D"@A-@I!@@-@@!@b.@@ @ .@ @.@@ /@@(/@ @+/@ %@.@@.@-@.@U@z.@@@J.@K@-@@7@)-@ b@{-@ @,@`Մ@1,@9-@Q,@@l -@త@/-@@@J>-@ N[@?-@@`--@@j@3-@@5-@ ,@ `-@ u@ g-@@7o@-w-@~@-@@x.@r@@4.@@>.@`&u@a.@0@x.@`@d'.@L]@ B.@`d @@'/@@-@@/@@P@M0@@0@/@@X0@`_@ 0@@ {0@@@`0@`H@@*0@f@@40@ @ 0@@T@@0@Œ?0@r?)0@l?}0@vw?0@-?/@@'}?n/@@33?.@I? .@?.@ $?M.@@YQ@@dH.@@$.@?-@`kA@c-@@e@ -@`@@X-@`9m@ -@e@`L-@|@"-@ǡ@@; -@H@,@J@u+@@?H@*@P@`*@!@C*@>@@+*@@@*@` @`)@@@&)@`1@@z(@ȉ@S(@>@@?'@#@&@ m@@F&@PY@`X%@W@ $@V@#@`@#@@#@@-X@#@@@#@9 @@.#@O @I#@ gE @@ܞ#@`` @ ]#@k @@p=#@2 @ #@i@3#@23@@0#@2@M<#@@T#@@<@b#@x@@|#@@@g#@@r[#@ A@#@@@l@#@ @:#@@r#@@f@@B#@@@p#@ @"@p@"@<@@#@@`("@@@ "@@"@`8@"@`%?@"@`D@"@@@"@`(@ע"@@̌"@@@ w"@7@h"@ @;"@` @!@`o@>!@7@[!@@ӆ@!@0@!@@6@!@[@N!@e&@@!@U@!@@8@@!@)@Yq!@@Q@_!@a@H!@`%@s!@@eg!@@O@!@ @@G!@kA@!@!@1@@!@`@!@@.!@n@Ϊ!@@!@$@@!@ G@!@;k@E"@֣@"@d@ "@@@"@M@"@O@@"@@&@@@'#@ @t9#@`/@;l#@R@R#@`4@ۿ#@s@U$@@h$@*@E$@ـ@@%@ @`51%@b@p=%@@6@T%@ @`%@O@ %@@@` &@K@*&@@%&@K]@;&@@7O&@ @&@R@&@Ec@`'@@j@ '@@@,'@ $@@'@H@,'@ @ 1'@ 4@@'@`O@`'@~@@'@ @Q'@ߛ@T(@O@T(@ y@r(@@~(@ @@(@N @(@M @(@ !@(@9!@'(@A!@E#)@{3!@`)@@XR!@t)@Մ!@ )@!@@)@!@`ɮ)@+"@Z)@ux"@)@@"@)@@\"@*@D#@`P*@#@`5q*@M#@@*@Z#@t*@#@ *@@Q#@ |*@5$@@d*@,$@@*@`8$@*@@!b$@*@Nz$@(+@p]%@`fF+@ %@@+@`RW&@,@&@P,@w&@Cd,@l&@`L<-@'@J-@@&'@?H-@;K'@`-@7n'@`L-@z'@=-@3(@+Y-@9M(@ P-@@_(@-@v(@ N,@(@ Y,@(@ H`,@E(@],@_(@ e&,@ )*@!{ a xD@NJ@T@a]/ 'R[c F  bp ! J V _ U _ m q Cn}@JYL_qcl(5P[ySߋO@@SO@S@O@SZO@SO@@;hSO@`gS`qO@ `S@O@cSeO@ySߋO@`N7OL@ zN`RL@`}N ^L@ N nL@@dNyL@`NtL@ͳN`pL@N`mL@?NvhL@@ּNkL@tNbL@Nc`L@`N`0eL@ PN cL@.NWL@`N7OL@+SwO@B6SPO@ OSO@AWS`NO@)\S gO@@]S{O@BZS O@ LSmO@-SO@@ 'S =O@@+SO@@$S`O@+SwO@S UK@S`6K@S^ L@SL@QS@oL@0S K@T `K@@SL@8S L@S\6L@@+SEL@S`NCL@S8L@GS DL@SL@BS@L@WS@L@JS >9L@9SBML@SML@@2S@FL@S)CL@fSD;L@S6L@@S6L@@"S+L@QS@-(L@?S*L@S{K@S`6(L@@"S1L@S &.L@ SL@S ~L@S`_K@S &L@>SL@@8SL@@SK@S`AK@VSK@@dS`K@S UK@T`L@T`L@T'L@S7/L@FS*:L@@S ?L@tS*L@SL@T`L@`\SL@@S L@MS`%L@@S@5L@@+S`8L@@KS@5L@JS@.L@`\SL@ 3_H@r8_`H@G=_}H@`I_`H@@YN_yH@=U_(|H@P_H@`0V_:H@@W_ U}H@$`_ yuH@ x_`NH@`v_`/H@=o_H@@f_`YH@ sg_H@`n_ߓH@hp_MH@@ o_@H@Ts_H@q_@ӮH@}_՜H@ s_ H@0_H@`~_ H@{_H@y_ɷH@_ ,H@)_H@ a_H@-_`NH@_H@_رH@f_ &H@@_H@@_൸H@ԝ_`H@ _ѰH@;_H@`_`YH@_H@@_`H@_ xH@_ gH@ _@H@@p_ H@@ _@H@ԝ_@H@_|H@ǥ_*H@_H@ Ԯ_`H@ J_H@`+_ `H@|_`_H@d_H@@Ϻ_H@ _@oH@_`0H@ J_H@ n_ ,I@ _I@B_ I@:_`HI@`B_sI@@ _` I@`_!I@_ I@[_@WI@`_) I@_ I@ _`I@_!I@`_ I@_ xI@`_` I@T_ I@_`I@ _ I@8_#I@|_#)I@_v(I@_`q,I@_5I@m_`A>I@_=I@@^_0I@_`0I@z_ AI@`_ UEI@d_ ,II@_`_LI@_SNI@_@II@`_FI@@_@DI@`@=I@`P9I@ A` &FI@`9 `MI@`B `TI@U `sbI@, `fI@8_`oI@a_cI@ _uYI@`+_@_I@3_`AVI@@W_@oNI@@Y_GI@=_ FI@`_AI@_=I@ n{_@0I@d_.I@[_ 'I@ W_`0I@ R_ I@BM_`H@=7_H@8_KH@;_ H@@^>_H@ 2_iH@`_H@^`_H@8^QH@^@ӎH@^`H@^ U}H@L^|jH@^ geH@Q^I_H@z^`H@^ VH@`^rCH@@G^kIH@k^WH@^^VH@`^#AH@@^=H@^`q4H@ ^2H@[^8H@+^:,H@T^&H@$^*H@5^ g-H@_CH@ !_`EH@ JG_]H@K_gH@z5_`H@1_|H@ 3_H@JmU O@esUjO@@UO@ UO@@U O@`бUaO@U xO@hUO@UO@U@O@OU@.O@λU O@@KU >P@@UU P@@U[P@U%P@@U@6P@~UD8P@‰U:P@U>P@-UDP@ֈU ~IP@@UQP@U@VP@@UMXP@UbmP@GuU@GuP@ gUzP@@r`U{P@^U|zP@UaUuP@aUsP@@]UrP@rXUtuP@MUsP@pIUP@@RXT`P@=TO@B:T O@0:T ~P@B>T@`P@O@FT`O@@TT@ pUćT@@)UT@@UT@@ηUKT@ZUT@WU@T@^UT@@ZUT@@bbUT@@`UT@yU2T@vtU@T@'FU@ӞT@`k*U@T@m(U@-T@2TT@T~T@StT@S:tT@S T@`CS@T@*T$T@ ;T@T@ p>TT@7T@T@eTT@ T`T@@BT ژT@T!T@UT(T@ {T`yT@T)T@@ΗTT@ǍT ʪT@2`TT@@:TAT@:%TT@q9T@T@dTsT@ueT@T@G^T̴T@ T T@" TT@@ T@T@@IST@ESbT@@ST@SYT@:ST@@ZSRT@ST@ST@ST@@S`iT@@r TT@zTT@@ZS@XT@`CST@DS@T@@ST@@cST@@IST@ST@ S`T@ST@:ST@@ST@@sST@|S@T@@1qS T@7HS@T@@;SزT@@$S@T@R=T@R@T@v ST@ST@@SvT@@RצT@RT@5 SUT@3S@WT@@S@-T@}R8T@ S@T@ XST@@)PST@<S >T@S{T@RT@@jRĻT@VtRT@ +RT@@RT@>R*T@@VRT@[R0T@hR ʺT@@gR:T@+RT@@QAT@@Q@T@@QPT@@QT@QκT@ɷQcT@@QkT@QvT@@JQT@@Q@T@ lQT@jQ`T@\QJT@NQT@@@QT@`k>QT@@>QT@@Q`T@@ QnT@ QT@P^T@PkT@@JPT@@P ڸT@ٵP@T@@b&Q@©T@)Q;T@@P@`T@mP@T@]PUT@aP T@`LPT@JP@GT@VP`T@@FP@FT@SP eT@>PT@+PT@n+PT@`;PķT@P@T@P9T@OYT@ĴOT@,OT@`ZOT@@OϭT@\O T@OT@ 'O`T@ OT@ s{O`yT@ yOT@`OT@|OٝT@FOT@O@T@N@ܞT@N@T@@NT@ljN`T@@cN֏T@@N T@\N@ӆT@#O@T@OEsT@@P,qT@ PoT@P*nT@`CUPpT@ VPoT@mhP`lT@@̀P lT@@sP kT@VPHlT@w[PjT@@wP$hT@P@iT@ PgT@P fT@@ QcT@@(QcdT@@HQ^mT@RQnT@@sOQlT@Q`dT@QjbT@Y6Q@%cT@@J/QaT@Q`aT@P$dT@PbT@P`T@\?Q@PT@:Q@KT@@AQ@XJT@@hQ[KT@QFT@@BjQHT@]QKT@`PK]T@59PjbT@`k"P bT@@P^T@@Z)PbYT@@\P@hPT@@~PSNT@ PGT@PDT@@ZPHU >%S@@AU$S@@JCU S@>UES@uU'S@@:US@XUeS@җU@S@UjS@˚US@=U S@}U"S@@U (S@U@!S@@U7S@US@@rUS@`U@FS@`US@@US@@US@ XUvS@U >S@US@ UA"S@U%S@@bU'S@U 'S@UU!S@U@? S@eUBS@US@@UvS@@U`S@@U@S@@RUS@US@U<S@ }VS@@VS@VS@VS@V S@U!V@'S@V@)S@@#V.S@@V1S@@V 3S@@"V@4S@,V@o.S@@Z)V@`+S@@C%V(S@G*V f&S@@Z!V:$S@SV@6 S@*'VS@@B&VS@ X+VS@"*VsS@(V#S@,V%S@2V7#S@@1V!S@@L5VS@2VS@9V!S@@@VjS@BVS@GV`S@@ZV{S@*[V#S@@jV$S@fV'S@[V@x*S@]ZV@+S@?]V-S@YV.S@ `V3S@"bV@6S@V1DS@@VES@VGS@U@-HS@UFS@]U FS@UBIS@`UwKS@XU HS@`|U$HS@@ZU ~IS@@UJS@U LS@nU@MS@"UPS@UQS@@USS@:UVS@U{WS@@U'US@UVS@@UZS@U@?\S@U^S@@rUabS@@b VhS@OV fjS@ V@onS@ V@pS@@j VrS@VtS@`[VtS@U`yyS@`UuS@ y~UmS@mU]S@@`Ua^S@`|_U]S@@`U@[S@YUUYS@K>U$XS@.U SS@URS@`UVTS@\'UXS@@8#UYS@^T@\S@@JT]S@@JT_S@%TYqS@ੳT)sS@*TuS@@֠T5}S@@եTS@oT@S@ߔT@-S@`T@ S@TBS@ԲTS@T@{S@%TrS@T'mS@*T@aS@*T_S@5U@obS@@s7UdS@UlS@@jUAnS@U@nS@@Z!UlS@ ;U@fS@%SU@FjS@SUEkS@@(QU@lS@TVUnS@US@=U@S@@ZUS@~U@S@U@?S@U5S@US@|US@tUS@UuU`QS@eU S@US@UьS@ܟU@ˍS@@U͇S@US@`U@6S@US@@U:S@U@S@@U@S@ pUٍS@5US@@U`QS@UAS@US@U7S@@sUS@2US@UcS@U@S@ US@@bFUS@TS@@TS@T@hS@T@=S@@ΣT`S@@rTS@@ƎTS@ݎT S@yT S@`T@S@~TS@@soTS@KjT@-S@2pTaS@@iTS@ !_T@S@bTS@TtS@`T@xS@2TS@*TֻS@UPS@.US@@1U`S@2UqS@"U@ S@3US@eT@NS@ pTS@TS@TS@ TDS@US@@RTS@@T/S@`US@US@zU$S@U@ S@ US@T@3SAT@@JS GT@S@GIT@@BS!JT@@0Sn[T@1Sq\T@@ZyS`yUT@éSLT@'S`KT@@ISHT@7SGT@S@FFT@ !SzLT@SJT@SET@SlDT@VSCT@S@?T@@S>T@@S`=T@Sq4T@7DTB)T@%T"T@?T@"T@@T$T@T@&T@@T@G)T@T/T@@pT@3T@i|TP5T@5T,T@@JT@,T@@rT@N/T@@T@h4T@"TY5T@@Tj2T@T.T@T.T@KT5)T@@T`$T@ T"T@U T@@vU`"T@dU@`'T@vlUE'T@ĀU!"T@@JU$T@OU=&T@@BU@*T@`qU@T@? V(@T@@RU@T@@uUDT@xUGT@@1UQT@/URT@?UST@@1qU`OT@UGT@@IhV@T@ĀV`BT@ VvDT@=V@XJT@`V KT@łVROT@>V{OT@Q@?ZQ@$ZBQ@@RKQ@RQ@R@WQ@R'!Q@`R$,Q@bR0-Q@)R+Q@ R#!Q@R@`Q@R@pQ@ٹR@NQ@@R@FQ@@JRMQ@@;R`Q@ߴRQ@@RKQ@5uYH$Q@`ޕYr+Q@zYq4Q@mlY'1Q@ kY@X*Q@lY(Q@tY)Q@@rY@?(Q@5uYH$Q@V@S@@bWAS@N+WS@*W5S@&W@S@@cVS@V@S@@V S@ XVS@`#W`iS@&"WS@WS@W S@@1%WS@6WS@K>WS@BW@xS@:IWsS@@CWS@@WS@ 9VWS@WW@S@ !OWS@ OW@S@UWS@`_W@S@jWS@~iW@S@@{pW &S@~WzS@>W@pS@ WS@@uW`S@@WS@ WMS@zW@S@@rWS@`W@S@rW@WS@`dWBS@WS@WHS@wW`S@WS@W@S@@WS@@WaS@@uW S@%W fS@wW|S@@W@ S@WS@WzS@zWS@W@pS@@jW@ S@@WS@iXS@@XT@'W@=T@"zWBT@WFT@3SWET@@GW@`GT@wKWHT@"FW`IT@GW KT@`ZWNT@@s{W@ MT@ pWOT@WPT@ّWUT@@[W@WT@`dW@`ST@`[`WUT@@)dWXT@@cMW WT@@ WnOT@@V!JT@@VET@V8T@@VM0T@@JV-T@VK)T@@cV`$T@@sV#T@V@"T@pV@T@DpV T@tV0!T@eV"T@ TV "T@@CVT@vPV@gT@@ZEV ~T@@FVT@@rPVT@@PVT@EV T@ $VT@@VT@@VT@"VT@@b V`T@; V[T@V@ T@@rV T@V@ T@$VT@-V`T@`)VDT@+VT@@j#V T@VcT@UAT@@UT@@UtT@U: T@@jU T@%V@ T@:UvT@3UqT@UT@@BUS@:UBS@UDS@4US@@U5S@2US@US@$US@US@:US@DU@S@U8S@U1S@@U@S@PUS@@޽U@S@@޵U@S@vUS@+U2S@U|S@@{U`QS@ U)S@US@eU#S@@US@U`yS@ ́UaS@GUS@U(S@ĀU@-S@@yUS@BvU*S@oU{S@@gU@XS@PUBS@S@US@@sU@S@йU S@U`S@@US@*UǼS@ U஺S@@U@S@US@@US@ pU@S@UzS@7V`S@U/S@GUƽS@UͿS@bU S@2U`yS@Q VS@z VS@ V`yS@VS@VVҫS@V &S@'U3S@US@ U@S@# V`S@@#V@S@}2V7S@/VJS@ X#VS@P"V S@ 92VS@@B6VS@LVS@'bVS@ yV@`S@>}VS@VjS@tV@.S@ VS@BrV`yS@]VQ@ZS@GEQ@;SHQ@mSzPQ@@SqPQ@@bS0UQ@@ZS`XQ@SWQ@S2SQ@`ϖSLQ@^S3NQ@SCQ@λS8Q@@JS`4Q@VOQ@9VQQ@VVQ@ٝVXQ@`SV[Q@@|V@XQ@8V@ZQ@ˍV:\Q@VZQ@݉VVQ@VOQ@q9SFQ@^=S@IQ@KS@GQ@@KRS`IQ@@rXSOQ@ WS#YQ@@JGSD\Q@`3J@`+B`PJ@I`J@`H`J@ E`MJ@7`9J@`0`J@2`@J@-` %J@.`J@`t0`wJ@#/` J@/`ΚJ@BW`TQ@@WWQ@~WYQ@rWbQ@6W@dQ@W@`Q@W@]Q@.W@FVQ@`W*VQ@W`XQ@@W|ZQ@X@]Q@WfQ@ WngQ@JW1dQ@@ W`Q@W`XQ@WTQ@BW`TQ@V`-Q@`.Q@@`0Q@@`=Q@`2?Q@@E``=Q@`>Q@@`n;Q@`f`U9Q@``Q=Q@y`@=Q@`@@Q@O`BQ@ `R?Q@@``@Q@`BQ@`aFQ@@`MQ@`MPQ@ n`KIQ@@E`'QQ@'`SQ@ s`,UQ@`DTQ@`JNQ@`@NQ@`vTQ@M`UQ@u`PQ@`@ORQ@` SQ@0`@ZQ@``^Q@ ``^Q@`H\Q@@w`@]Q@`r_Q@@3``Q@``Q@@`j^Q@@` `Q@q`cQ@ J`@xbQ@` hQ@`mQ@` &nQ@>`jQ@5`@kQ@@`hQ@`@ eQ@`@eQ@`bQ@ J``aQ@O`@h`Q@ǹ`bQ@U`@dQ@`bQ@ s`@6\Q@``VQ@-`@FQ@ `#AQ@U`0=Q@` 7Q@`2Q@V`-Q@QS\Q@S)_Q@@ ShQ@S^iQ@@SlQ@S kQ@2S8jQ@ S`jQ@5S@nQ@@SoQ@~SvlQ@@|SbiQ@S@dQ@QS\Q@bS$`Q@@ TaQ@!TcQ@Z TgQ@T gQ@TcQ@TjQ@3TlQ@*ToQ@TmQ@TpQ@TrQ@: TsQ@`TpQ@@ T8nQ@ToQ@ZS@%oQ@SsQ@@RSrQ@:SmQ@SZlQ@`kS7gQ@@S@fQ@hT0iQ@?TZhQ@ S bQ@bS$`Q@&X@GQ@]FX%Q@GXD$Q@ FX@"Q@_HX@!Q@f^X@F"Q@ xX*Q@@3Xz,Q@ X@*Q@X/Q@@X1Q@@X3Q@@X6Q@X5Q@@CX1Q@`ߜX/Q@0X@ 0Q@X2Q@=X4Q@QX6Q@X@F:Q@Xw;Q@ʾXX@PQ@X SQ@?XSQ@ 1XSQ@֘XUQ@FX[Q@X\Q@X^Q@X]Q@X^Q@ X`Q@ XJbQ@MX@dQ@XUeQ@XcQ@X _Q@X[Q@?X@[Q@X@F^Q@@X@xfQ@X8nQ@X)sQ@X$tQ@XvxQ@wXzxQ@`tVXtmQ@@UX@lQ@`S_X kQ@@YXeQ@rSXlQ@JGXgQ@(=X ~aQ@ XSQ@@ XPQ@XIQ@ X1HQ@@ XDQ@ XsBQ@X@AQ@ XsJQ@@X@NQ@(W@IQ@@*WEQ@W@%CQ@@W$8Q@ W7Q@W4Q@ aW9Q@yW6Q@W@`3Q@@W*Q@8W,Q@WJ.Q@W@-0Q@NW.Q@W@W'Q@-X$Q@@X@FQ@&X@GQ@ %` J@%` &J@ 8%`J@@J@ `J@`k"`J@ %` J@=`:J@`F` J@ I` ,J@M`J@K`J@XN`J@P`J@@P`J@L`J@`<`DJ@U7`J@`08`@ÔJ@=`:J@|V3S@:V S@ V@p-S@`kV /S@V@1S@ZV4S@~V5S@ lV@/S@kV,S@uV@o*S@3wV=&S@rV!"S@jVD S@ sVS@%{V S@|V3S@OߛG@O`G@ N G@`NG@@;NG@4N*G@@N`G@NG@VN`AG@hN7G@N gG@ N@G@N`ĻG@ NG@4NiG@4N yG@`*NG@DN`YG@ NG@OߛG@``qLJ@` kJ@`` sJ@`zJ@`<{J@ S`tJ@6` =rJ@`` uJ@ `@hJ@@`]J@2`UJ@``TJ@`XJ@M`RJ@ !`\J@#`5iJ@#`@oJ@@"`cpJ@ `sJ@`̓J@@`J@_ `J@``qJ@`J@``J@!`tJ@b#`sJ@O%` &vJ@$&`J@,%`J@"``J@!`J@"`@äJ@ a!`J@`4`֣J@`ԕJ@`J@`zJ@`@o^J@@`NJ@``qLJ@@,TYJ@@HTdJ@ WTmJ@{T{J@T`J@zTiJ@jT3J@rGTJ@@ETJ@@1T`xJ@*TrcJ@@,TYJ@ s`@9J@H `DCJ@O#`SFJ@ X)` ~aJ@ e'`vhJ@ `NJ@ e`CJ@2`N@G@2N G@ 0N`HG@?N`rG@`'NlG@`r,N WG@2N9UG@D,N`/NG@FN G@g=N 'G@`T6Ns*G@5N$G@NNwG@ nNG@N@FF@MN@oF@%N F@qN G@_N G@]N G@nN@F@N F@ NF@N{N`F@}NF@NF@ !N F@NQF@xNF@oNF@ fN`F@-hN`0F@`C]NF@_NF@ \NF@5NF@@6N &F@WNF@dNF@XN@?G@7NG@`f&NG@@)NG@2NDG@MN G@|SN@-G@BFNG@.N 'G@$N#)G@`N`G@ %NG@~NaG@N`G@NG@UN'G@ NG@M*G@MiG@@uM gG@M@ G@MSG@M UG@@"M1G@M`G@GMG@]M`F@`N F@@"NF@, NF@N NMF@`TNF@/NF@\NZF@ wNF@NF@@*S` I@@SI@MSJ@xS J@@ S` J@@2S# J@S J@vS(I@S I@@*S` I@`@.I@`t``6I@`9`I@``I@~`rI@`9``I@@``I@```J@ _J@_`/J@`"`@-I@`I@;`(I@`@.I@XS@nX@6S@XS@JXMS@ZXeS@XUS@@XS@YS@ YS@-YS@Q Y@T@2Y@T@X@ T@XZT@GXbT@ 1XS@@ޱXS@XZS@X &S@XS@_ObF@`uO`G@`lqO[G@ sO@G@ +rO G@@yO@?G@4zO `G@vO@G@@:}O5G@@LOG@O'%G@`<{O`(G@OG@ mO`G@ bOG@O@G@ĜOG@FO@G@]O(G@\Om/G@@Ob1G@ O f6G@`SP3G@Pw7G@rPPG@P OG@PwOG@PUG@P@h\G@O G@OG@P#iG@@P cG@@RP _G@OZG@O`RG@ONG@ O`HPG@`O@IG@O >G@ tOBG@OG@iO?G@O)3G@O`6G@VO9G@E;O9=G@N :G@N`:G@0O ,G@-O-G@*O'G@ \?O"G@6O@.G@`5O(G@JOG@`HO G@ AO3G@@YS@`I]\S@x3]_S@=1]@ aS@]cS@@.\{[S@\WS@\SS@-\MS@]`HS@ ]@BS@Q\ ~=S@ \7;S@\k9S@];S@ ]9S@`\@h0S@B\-S@`]'S@ ?]"S@D]1 S@@>]@S@)@]S@<]S@@F]S@@V]@hS@d]5S@׃]/S@@i]@S@]`S@`y]!S@ }]@$S@J~]*&S@`y]Z(S@@i{]@N+S@o]1S@@Eo]/2S@Dt]`4S@x]@h4S@z}]@G1S@r]`y1S@є]0S@x]@-S@ ]-S@+]$S@@]S@]!S@`]V S@#]S@]@S@`]`S@;]@S@̨]@oS@]@S@] S@]e S@]US@] S@ ]@ S@@] S@0]ZS@]S@]9S@8]S@!]5S@]S@] S@]@o S@I] f S@]S@ a]@S@ ]RS@@.]tS@?]S@`T]0S@`]!R@]@R@]VR@]@OR@3]R@G]DR@^@R@ ^^R@B^ R@2^R@SwR@SMR@MS!R@SMR@ 9S@R@:SR@@(SeS@SS@"S S@`CSjR@@JSR@SR@mSR@SR@VSR@@cSR@rSR@@S@FR@SwR@`_\ S@!\S@ u\S@[ R@@[R@[BR@@W\1R@ \R@@p\R@[R@[ R@@[@R@@[]R@![ R@^[@pR@@3[ER@ෟ[lR@[@xR@?P[R@9[|R@+;[R@A[nR@5[7R@O;[eR@J>[R@l[@R@j[rR@ |[R@[@R@`0Z[vS@@Z[JS@Q[S@VX[9S@ S[@oS@ca[ S@cu[S@x[ S@`k[S@[@FS@ܗ[S@ ![@S@ࣘ[S@q[ S@@Yn["S@8v["S@pa[+S@][.S@K[q4S@@:[3S@`x2[@6S@`)[`Q4S@Q,[@G1S@? [c0S@[@O.S@I[`,S@2$[)S@-[^)S@-['S@$([$S@![r#S@ 6([#!S@`![ S@%[S@[,S@@ '[nS@@&[@FS@ [bS@[@S@@[ S@`[@S@! [' S@5[ S@:[@XS@[S@[aS@ZS@8ZMS@ZR@[BR@[*R@+Z`R@`0ZZR@ Z`R@`ZR@`ZkR@޼ZR@`ZR@ZR@ָZR@cZR@(ZJR@@iZ`R@ ZR@$ZR@+ZR@ZeS@DZ[S@uZR@@fZR@]Z`R@XZR@_Z@R@@ioZR@TiZ@FR@`eZ@R@mZR@^iZ@`R@xZYR@x{ZR@`vZ R@xZR@OZR@Z3R@ZR@ Z^R@@3Z ~R@dZ R@ZͻR@`ZR@|ZR@cZ`R@@WZR@ [R@IZR@[@FR@5![]R@`![ZR@`2[lR@ a;[RR@`=[R@@[`R@!V[vR@`[rR@ [ٱR@[@R@[@˥R@[R@\R@20\R@Y\sR@\ϡR@ !\R@d\@R@`ܚ\R@\R@T\ ʶR@N\@R@N\@%R@aR\@R@,\@ӾR@`[R@:y\@WR@|\R@@G~\*R@ {\@ R@`fz\@R@`kz\@R@@s\R@T\R@^y\ R@\R@Ä\1R@\JR@@\@R@̈\R@\*R@Ѡ\$R@`\@R@\R@`\R@ \\ R@ \@R@\!R@`+\ҿR@\R@ \R@`}\ R@ \R@d\eR@\R@\R@\#R@c\R@\HR@`f\R@@\@R@2\R@ ]@WR@@] R@]@R@)](R@ ]@XR@]PR@O]@R@!]R@x+]@R@ Z]R@@ik]R@j]@R@P]R@`]R@$]`R@ \@ R@0\!R@ \R@ \@6R@ a\R@=]R@zL]R@P]R@@N]R@`;]R@0]2R@\R@`}\R@v\@pR@ \@R@\`R@@]R@O+]R@@^.]R@@.]R@v(]R@@]R@- ]R@]S@*]S@Y-]S@ )]@S@] S@\ S@@p\ S@ &\S@@ \S@r\@-S@@3\@XS@\@hS@3\`S@`\,S@^\aS@\@!S@`ʒ\S@z\@S@ԅ\@S@`ʆ\S@;\@S@`~\@S@\ S@mp\ S@@\S@9\@?S@ 0\ S@`_\ S@@KI@ K I@K@I@K@XI@ִK@oI@½KI@K`˵I@K@I@KI@`K`ܦI@LeI@) LtI@ tLI@LeI@L5I@ K I@K`I@K`ěI@`KcI@K =I@@KI@LicI@ L D\I@@L L:\I@@dL`kI@L L rI@`L`YqI@)LlXI@ LWI@LMI@ CLbII@L`CI@3L/I@MLLI@_L I@ dL@pH@ \L`H@^LH@ sLZH@dLH@ hLH@lLH@>LH@ s;LH@`T6L H@`T6LH@L-L`0H@xL I@LDI@| LlI@`L , I@$L`AH@ L8H@ L@I@K`HI@=K I@K I@KJH@`KI@KH@@ K gH@L`6H@@:L H@L@H@DKH@`K H@`$KBH@vK H@KH@= LSH@ L xH@K`H@DKH@@KH@`TK H@KH@eKeH@@{KH@`ZK`6H@`KH@K`ܾH@`K H@ \K H@bK@FH@`SK`H@K@pH@"K H@K@FH@ K@WH@K@ӮH@`K yH@ۧKH@`K H@ۧKH@LKH@`K`H@ KH@K`H@ K =H@ӮK'H@ \K@pH@ K9H@eKeH@ǨH@@K`H@K ~H@K@hH@K௭H@K`ݥH@K(H@{K H@rK H@@mKH@`rKH@UmKH@@iKβH@jK H@`iKsH@LEKiH@>9KH@`CK`H@8K̼H@>9KH@>K@H@9K@H@`T>K >H@\/KH@`l!KH@@)K gH@ K@H@KK^H@J`H@˽J{H@J`H@`J`H@\J H@J`H@JH@J(H@`TJ >H@@J >H@@{J|H@ bJ {H@eJwH@J@htH@JrH@J >qH@JjH@K@fH@5KaH@J@gH@ 1J cH@,JkiH@4JjjH@JegH@@ JbH@J]H@K@^H@wJ`YH@`lJKUH@ \JOH@JVH@JTH@JVH@`}J_H@ JYH@J`6XH@@{JSH@J`XH@J^UH@DJGH@JGH@Jl@H@@K1H@GK^-H@@JT:H@J;H@Jj2H@J@/H@iJ8H@`kJH@J4H@`J`@H@ J[OH@ JLH@@ϢJDH@J BH@໓JvPH@J3RH@J@XH@}JMH@@J`8H@ J,H@DJ ~1H@үJ$H@`J@XH@J`H@J`H@JH@JD H@`J H@ IJ@H@BJ H@`J`G@JH@@KJ`G@JG@`J@G@ JaG@JG@`}JIG@J G@ZJ G@`$JG@JG@`G@@LK#G@DKG@`דKG@@K`YG@ K`wG@@:K sG@PK`nG@ aKQpG@G@ +M UG@jMBH@LM`/6H@=M6H@.M@H@F"M AH@`0&MCH@BM@H@ TMFH@M ;H@ ̝MBH@kM RH@@3cM`cH@oMYH@`ZyM@FRH@`zMNH@`rMFH@mMJH@_MGH@4ZM IH@`TNMfH@`@M`wH@m@MH@/M gH@`.MH@`[McH@ M}H@ LszH@ L@|H@`M~H@ M`H@`}M`H@@LH@7M@ӖH@LH@ M2H@ MஞH@M H@`M`H@MKH@L &H@ L H@LjH@L`H@L`H@ L3H@L H@LH@ L`0H@`~LH@gL I@@RLJI@#LNI@LNI@LXI@ԭL@h\I@ ̕L_I@}L %oI@@vLuI@~L`vI@<{Lr{I@ sLI@wLI@`tL1I@8nLI@`rdL I@gL@I@_L*I@ eL I@-XL I@uL I@K@?I@`ZK@.I@ QK`I@`lKeI@PKI@K௽I@K`I@K`YI@@KI@S;P@N@yMP N@`PP`YN@LP`N@`[DP`AN@APN@T>P@N@ 5P!N@6PN@S;P@N@S`N@@2T7N@ TZN@ }TN@{T#N@@T`0N@ T O@T-O@S `3O@S4O@ S!O@SO@@SN@S`N@?SN@DS@FN@S`N@N@"(P?N@!!P`7N@O@6P AO@@6PEO@1PHO@#PzDO@ !P &FO@P`NCO@!P?O@P=O@:P;O@ %P/O@ JY`R@@Y@R@@Y`R@Y@R@ YR@?Y@WR@ JYR@:Y@_R@YR@kYR@ JY`R@`DXwsS@GX@`wS@@?X@zS@@[pX@S@oXS@iXRS@kX@S@ziXυS@?XфS@8XPS@9X@ӆS@@7X`S@TX@GS@N{XS@@{X@%S@yqXIS@@wXS@@X@NS@XS@bXkS@@BXZS@X`S@XͣS@@X]S@@2X5S@@ΗXS@VXɯS@ XX'S@|XHS@BJX`S@@ X:S@ X fS@@cX@xS@WS@WYS@@:WS@2W@ S@:W@WS@W8S@@W S@"WS@`WlS@ȸWS@oW}S@W{{S@FXwS@@-XwS@z-XvS@`DXwsS@@cS/R@@S/R@@S<7R@@ TBR@TRGR@@J T HR@` T fJR@@JT)KR@, TMR@T@ PR@ 3TQR@9TWR@@*7T^YR@6T^R@4T@N_R@,T^R@@u9T/fR@-4ThR@2TlR@J7ToR@c1ToR@@TqR@SZhR@SjR@@LSZ`R@%CS)WR@0S@hTR@%SNR@(SKR@@cSGR@nSER@SAR@ S?R@:S>R@SVcdS@@V@gS@ViS@QVzdS@;pV@F^S@lV@XS@:mVVS@iVTS@@bvVOS@@VLS@@X@h|R@@;X{R@XwR@yX sR@@:XsnR@XlR@oXlR@@X@oR@ӶX@-pR@XuR@xXyR@@oX=zR@.oXyR@uXwR@rXvR@`gX5yR@ONXvR@=XEoR@;XMlR@>X`hR@LX`cR@\X@eR@[X@aR@hX@xbR@jX^R@@gX5]R@OX@o^R@@ KXt]R@KXc\R@OXw[R@@IX`XR@KXVR@ZmX@SR@X @R@`\XcR@fNX(XQ@cEXQ@[X@Q@ZyX@Q@@X0Q@ŖXAQ@֔XQ@ X:Q@VX@Q@֐XwQ@֜X@Q@@ןXQ@@XQ@XQ@X@OQ@yX`QQ@@"XQ@rXQ@ XQ@XR@hY@8R@dY8R@]Y`4R@@ZY@O2R@TY1R@@RY/R@ CY +R@5Y@,R@G5Y@o.R@4Y0R@Y/R@-Y[3R@YY@F6R@ 6Y:R@YR@mYuR@@.YwR@Y@yR@@X@h|R@@XKuR@rXwR@X@gyR@MX{R@{pXR@iX fR@hXR@pX@R@fXwR@@XKuR@@Z'R@0-ZMR@`;ZYR@ ,ZR@01Z R@fZR@` ZR@@iYR@Y,R@@YR@ Y`R@@YR@TYR@+Y`R@@Z'R@WQ@VW R@@WQ@@W[R@ZWAR@@WR@@+WR@W R@@+WR@!WnR@@WtR@ZW`+R@kWA.R@8W@1R@@W@x2R@8W`5R@W;R@W?R@ 1W CR@ W'ER@@uWwGR@ W:HR@@W@IR@ 9W NR@yWSR@WSVR@`tWlXR@W fZR@W\R@WaR@WrcR@WdR@WgR@@KW`hR@JWjR@WmR@WYqR@&W9qR@W@kR@@WiR@ WjR@WnR@W!rR@nWsR@UW >uR@ WvR@WtR@WxR@W`|R@WীR@W^R@@֔W@R@|W@R@noWR@pWDR@nW`݉R@ [W`R@2WR@/W@R@0W`yR@(WR@hWR@WeR@@W`Q|R@JW|R@@AW~R@V5R@hV R@fV &zR@ˍV1xR@@VuR@VwR@VjvR@VsR@@ZViR@VcR@WV`icR@V`R@@V _R@V@PR@VNR@ V`yMR@@V LR@"V/6R@W@N/R@W0-R@BNW1R@gUW3R@@fW@1R@֐W1R@W 0R@W/.R@rWI/R@rW,R@tW@)R@>qW'R@fW%R@@_W@g!R@]WR@@2hWR@brWR@`W| R@ IWR@WR@-W9R@ WR@WQ@[@S@@[YS@`[S@d\S@A\tS@ L\@GS@GU\@ S@G\S@\S@([S@;[@S@ [,S@=[$S@`Y[S@P[,S@TU[2S@Y[S@`̭[S@x[zS@[S@@W[S@ [S@[!S@[@S@\TS@@p\ VS@%\[S@`x&\#]S@2\:\S@L\aS@ aO\eS@`+F\@NgS@N\@OnS@)T\*rS@S\uS@`N\`yS@@\@S@[@S@@[ S@[AS@@r[@XS@@f[S@0e[S@`j[/~S@[byS@[wS@T[ vS@[KuS@[qS@d[pS@O[/rS@#[ pS@ J[VlS@@[hS@`k[fS@5[`dS@ [bS@$[t]S@ [!ZS@[@.[S@\TS@`YY@`#S@lY%S@/Y@60S@@ Y3.S@VLY`$S@`YY@`#S@[\lS@2\vpS@\pS@\|S@\}S@v\@F~S@`}\@-S@&\ɃS@@p\S@@f\0uS@e\sS@!z\|nS@[\lS@P_R@<_@-$R@>_&R@D_r'R@D_(R@p=_+R@`=_#-R@A_4R@@3G_j6R@`fF_7R@ _@:R@ _>R@`x._l@R@@37_@hDR@`2_HR@B)_JR@`*_ KR@3_wWR@_@OZR@_@^R@`}_aR@`}_eR@_@gR@V_iR@`^lR@^@pR@`^kuR@_JvR@ _@wR@__}R@`_R@O_`R@#_R@[,_ >R@@&_R@1_lR@[0_R@ s^@R@ ^{R@i^R@I^R@$@^R@`0>^R@]R@]R@x]R@] R@Q]R@ ]R@ ]R@ ]njR@] R@d]R@]@WR@+]R@k]R@ ]7R@@G]@R@=]!R@ॳ]`R@@]R@൸]R@)]R@ׇ]R@`]ER@=2]҃R@\@kR@\eR@\q`R@)\^R@k\@UR@5]@oJR@O]@CR@i]@?R@]c,R@`+]'R@]@G%R@`]"R@ ]vR@G]R@ \]@R@@^]@OR@` ^`R@@E ^R@^#R@ n^R@^@WR@L ^@ R@@@ ^ R@^UQ@^`Q@D^`Q@ J^Q@)^lQ@@G^1Q@`"^Q@1^kQ@=Y^VQ@`fb^ fQ@`b^{Q@=e^@Q@m^ ~Q@`ł^@Q@:^Q@^eQ@^Q@^@Q@@i^Q@@^`Q@^=Q@_@Q@ =_Q@<_Q@@Z_@XQ@`kr_@Q@an_RR@m_*R@@r_<R@ml_ R@hd_@% R@ k_ R@`j_R@`b_R@`^_]R@3b_R@P_R@@T>R@@T@?R@JU ~MR@LUNR@@jGUTR@@2ER@)T>R@'T@O:R@'T@1R@@T].R@T*R@@#T@&R@!T`$R@@4T@R@BTR@@XTrR@NTR@@[8T@ R@#T R@ TR@ TMR@+TR@@4TvR@@5T R@=T` R@@r$TR@$T@_R@@Z)T@ R@^1T@R@?TDR@`CTwR@CTR@=6TR@2TR@5T(Q@>T@Q@9TQ@`d0TQ@@/TQ@#TqR@ pTlR@T`R@#Tb R@*T R@`T R@TVR@TR@@r TjR@wS@N R@S@6R@@IS R@%S1 R@ TR@eTR@@SR@@*S@R@SR@SR@S ~R@?SrR@:SaR@"SkR@5S R@`CSsR@@S R@SR@KS0R@@Sz R@@SR@SJR@SR@SR@@S@R@нSJR@ļSR@YSqR@:S@%Q@2SUQ@ɿSQ@zS`iQ@S@WQ@@:SVQ@R/Q@1R Q@0RQ@5R@hQ@(RQ@@$R`Q@QQ@"QQ@;QQ@@JQ@Q@WQQ@QQ@zRQ@ RQ@ RQ@cR:Q@RwQ@@b R@Q@R`'Q@'RQ@@"R Q@ RQ@QQ@QQ@ !Q@.Q@Q@xQ@Q >Q@`QRQ@`[QeQ@QQ@@Q1Q@`CQ|Q@@QQ@@jQMQ@PQQ@ QQ@XQ@@8QYQ@`QצQ@QQ@@bQ`iQ@Q(Q@@jQQ@zQ fQ@@QQ@`[QQ@@bQQ@QQ@/Q`Q@Q=Q@QQ@`Q@ Q@2Q@.Q@@bQPQ@QQ@Q@Q@QQ@@QQ@ QKQ@:Q:Q@ Q:Q@@jQeQ@ҿQ@ Q@@wQ`Q@qQQ@rQٵQ@@J{Q`Q@Q ڨQ@`Q@èQ@Q@ӦQ@QQ@QQ@QQ@ғQߟQ@Q@gQ@Q@`Q@QQ@QQ@@8Q@Q@=vQ Q@@jQ`Q@`iQ ʮQ@@rdQ@gQ@ZQ@xQ@QMQ@@Q@Q@QQ@ Q3Q@Q֗Q@QQ@@1%Q`ݙQ@#Qড়Q@H%QQ@]*QQ@ *QQ@ 02Q@ۓQ@MQQ@Q@XQ@ pQ̀Q@ QQQ@vQQ@`tQ@~Q@Q}Q@Q@XzQ@mQwQ@@ƖQuQ@ɋQAzQ@`oQa~Q@SoQQ@sQ|Q@+rQQ@iQ@GQ@ NQ@ Q@@CQQ@@QQ@MHQQ@+QQ@:)Q@pQ@;,QqQ@z]Q@ tQ@=fQuQ@@BrQtQ@Q@iQ@@~QegQ@sQnQ@sQ@pqQ@mQsQ@XQqQ@ LQxQ@7Q|Q@@R,Q{Q@v$Q`Q@QQ@`d QQ@lQQ@@Q Q@Q8Q@@Q৔Q@P`Q@P@|Q@@jPnQ@/PmQ@PqQ@QcpQ@Q@?hQ@UQDhQ@UQbQ@@lQqdQ@`|Q@\bQ@kQ cQ@3SQc`Q@+>QcQ@&Q`yeQ@P]Q@P@]Q@@jPXQ@@JPQQ@@cPMQ@$P]JQ@@P@?HQ@PnKQ@@BP/JQ@q QSQ@@@QVQ@@sOQ/RQ@ OQPQ@@jGQ`iSQ@ QBQQ@@QNQ@@RQLQ@@QMQ@V Q`LQ@`C-Q HQ@@Q`GQ@@EQEQ@S;QJFQ@@1=Q/BQ@@@Q@x>Q@;Q@?Q@@J;QAQ@@j'QHQ@Q`JQ@`kPBQ@'P@Q@Q*>Q@Q@Q@`Q>Q@@jQ?Q@Q@;Q@Q9Q@Q8Q@*P6Q@GQ9Q@Pa2Q@@Q5Q@*'Q ~5Q@ Q4Q@wQ@2Q@=Q$4Q@SCQ/6Q@*WQ 7Q@?YQ6Q@`OQ|6Q@IQ4Q@@VQ5Q@ WQ@4Q@H=Q2Q@@=QH0Q@@!Q/Q@@QH,Q@"Q*Q@ Q@-(Q@+Q@)Q@8Q&Q@@&Q(Q@ Q&Q@@#Q9%Q@Q%Q@ Q($Q@P"Q@@P,Q@zP@gQ@`P`Q@SP)#Q@P#Q@P!Q@P@%Q@PQ@PQ@P@?Q@@JPQ@ P7Q@@PQ@@IPIQ@ pP`Q@@8PQ@P@Q@@jPQ@}PQ@P@Q@YPUQ@P@Q@@P`Q@PUQ@UP@XQ@OP`Q@P Q@PQ@P:Q@PQ@PQ@P Q@`P5 Q@P Q@PQ@P(Q@P@6 Q@P Q@P`Q@=PQ@`CPnQ@PQ@ ̽PQ@@PQ@PlQ@P@ Q@@jP`Q@ P@P@lPQ@P@ Q@PP Q@@PvQ@PQ@@ΗP9Q@@PqQ@zPQ@@΋P5Q@@cPP@PP@ XP@-P@P@P@ PP@HPP@nPP@`PP@u}P3Q@@R|PQ@z}P > Q@@zP] Q@@vPQ@vPQ@@ށPP@@r|P5P@hPP@@~PwP@@1}P@_P@@rPP@@pPP@tPP@@B^PP@`d\P@P@ QaP@P@@jgP@OP@@JWP=P@@UPP@@WPP@@AcPP@tZPP@7LPUP@'JP$Q@@CPQ@@PQ@P.PeP@-P@P@7PP@P@O9P@4Ok9P@O;P@O>P@`O@P@O@>P@O@P@O@oBP@O CP@O@AP@@cO@EP@LOJP@\OKP@LOHP@`lO@oFP@@P GP@5PDP@PBP@PSFP@?PLP@GPLP@vP ~IP@@ZPBMP@P@RP@PQP@@P{SP@%P[P@yPn[P@`PRP@ PGP@#PEP@$P(HP@@)P@IP@'P`QLP@@-P@IP@-P(LP@`,P OP@:-P@QP@3P`NP@@c9P ~QP@9P SP@,PUP@@.PUP@ 0:PkUP@~-P`XP@MPZP@@ P^P@:Pz\P@@=PYP@ X?PWP@HP [P@`JP^P@2PbeP@5PIgP@4PiP@h-P@iP@i4P]jP@PmP@@j3PmP@@4PnP@CP@mP@@JP@iP@@[P@jP@V\PlP@WPKqP@@YPrP@@B^P oP@`[`PoP@"ZPwP@GP@}P@2P@PP@@BPP@VP@P@`P@hP@@PP@PEP@`kPrP@P@P@7PP@,PzP@P2P@`PP@PP@PtP@ !PP@PqP@PP@ P8P@`P$P@P]P@`PP@PI{P@ P/zP@PP@h|P@P@pyP@@P7{P@P`y}P@`P{P@@P'yP@P`xP@P`zP@SPP@QP@@jP@P@Q^P@@Q@P@QP@`Q2P@Q#P@5Q^P@z!Q)P@Q]P@Q`P@ QYP@ pQzP@KQP@Q P@Q̄P@ XQ@gP@nQnP@Q`~P@@QP@ Q@P@@( Q@-P@QS~P@Q}P@@ZQ ʂP@Q@?P@QK}P@@2Qk}P@@ZQ{P@Q*zP@ Q{P@` QxP@ Q@vP@ 1Q@guP@@( QrP@P8rP@P sP@P'qP@@BPbmP@P,iP@ P2gP@@PHdP@ P@_dP@Q_P@P@hP@`PRkP@P@gP@@rP@XfP@`P,eP@PaP@/PcP@@PBaP@zP_P@:P`P@Pq\P@2PY]P@@P@WP@+PbUP@ PHTP@PSP@@P'QP@P@PP@`PMP@@jPLP@һPNP@@cP@FP@PFP@P@CP@zP(DP@ PIP@PKP@7P@GP@@PFP@*P$DP@P*BP@~P`AP@ P?P@үPU=P@#P@6P@`PP@pO@3?P`YO@DO@%P\O@@PO@(P`O@1P@O@h5P ҿO@`dLPO@IPO@QPO@ LP9O@BAP`O@?P O@~EP@-O@@FPO@BP׺O@GPP͛O@`APO@CPRO@4P`O@70P`_O@S7P `O@1PO@@2P`˅O@^1P`}O@ 06P{O@,PyO@)P@FrO@@O@SQ`CO@QQ OO@@SQ`_LO@`WQ DO@"ZQ`HO@YQLO@@1]QOO@@j[Q`/FO@=fQTO@`_Q@ZO@@cQaZO@cQ\O@`dXQ``O@gQdO@@bjQ %_O@@kQaO@:uQ5iO@tQdO@pQ ^O@.|QeO@ Q``O@6Q`O@Q@nO@:QvO@QyO@@RQ{O@@Q{{O@@2QrO@'Q@p}O@@cQO@@FQO@Q@O@+Q`ݕO@eQO@@ZQ@O@)Q ,O@QՌO@ Q)O@"Q O@?QeO@QO@zQO@+QO@2Q xO@@QO@QaO@QO@2QO@@Q@hO@Q(O@`LQUO@QϱO@RO@QٸO@QO@BQRO@Q`/O@6QO@:QcO@QO@@JQO@.QO@zQO@@1QO@QsO@ Q`O@ 0Q O@@QMO@Q`O@@Q`O@Q`O@+Q O@@QO@/QMO@QO@QO@QO@"Q`O@@IRZO@QtO@Q@O@Q O@ aQ`O@,QO@+R'O@m R`O@@ RO@@RRJO@@JRO@VRO@2RPO@R(O@RO@q R OO@@JR@O@@R`0O@R`O@@RO@@R(O@h!R O@`[ RO@Z!RO@G*RO@ )R`O@`%R'P@@J+RKP@*RO@@.R`O@2QR%P@SR *P@ 0VR)P@WSR^%P@@jSRs"P@]R( P@^R`$P@@"ZR#P@:YR:$P@~]R@.'P@cRU%P@@gR@)P@}jR(P@:iR:$P@?pRA"P@ZyR$P@vR P@FrRP@2tRbP@@JwRP@"~RP@@R0P@RP@%RIP@RP@@ޅR@P@RYP@ RP@R`P@@ςR@P@2R`"P@z}R P@ڀR#P@R#P@ R@%P@R$P@@R&P@ZRc(P@@AR f.P@'R0P@;R@.P@Rq,P@+R*P@R&P@@R'%P@ !R(P@ڐR`y)P@@Rw+P@@:R@?(P@ R=*P@=R%P@rRz$P@R*&P@R/P@wR6P@R ~5P@R9P@`R@9P@R 7P@R7P@@R5P@:R<3P@@bR^1P@R{3P@R2P@`kR#P@`ߠR!"P@7R"P@@JR@!P@@bR P@RP@6RP@R P@@"RP@@RP@`RP@@R`P@ R "P@2R1$P@@RJ"P@@RP@ QR<P@@R fP@"R`P@@*RrP@zRP@S|P@`SP@S@6P@@ S@P@@JSP@S@P@@2SP@@ SP@%SP@"*SP@ 1-S@P@@*/SJP@0.S@P@@B*S P@"*S( P@@5S P@@4SP@GSP@US`P@WSP@\SP@XS(P@iSP@iSP@@wS P@yS@P@:uS fP@fvS@`P@|SP@S[P@G~SP@S$P@S(P@{S)P@Sq,P@@ S,P@@ׇS1P@ S]6P@ZS@ ]P@zMS@]P@`ESZP@+S@XZP@@RNP@@RIP@=RtEP@GRAP@@R8>P@:R;P@ pRP@@RR@@P@REP@3RFP@PR@?@P@@BRKP@@RKP@"R`NP@@mRSP@RTP@@RSP@`\RUP@@BR@RP@RPP@R^QP@@RUP@!R@XP@R(XP@@R@[P@@JR@VP@R9UP@&RZP@@R]P@`R3bP@oR@aP@lR]P@\_R\P@M`R_P@mhRfP@`fRhP@lR@kP@lR1pP@xRtP@`RxP@hRP@R@܎P@aRP@#UR8P@FRJP@Q@P@@Q@P@`Q@P@@QP@Q@pP@Q^P@`QP@'QP@QৄP@@Q@˅P@@BQ@WP@@Q@x~P@7QB}P@QP@@QRP@үQ@oP@Q &P@Q@ P@`Q P@hQՐP@@ޝQ@GP@QP@:QP@Q P@rQP@@joQP@@AkQP@hQ@6P@KjQ ~P@"fQ:P@`QkP@aQAP@IQ'P@zIQ@P@@jOQ@gP@[QbP@@j[Q@P@@RdQP@ lQBP@bQP@@bQ#P@S_QPP@;TQ|P@NQP@QQkP@@{`QޠP@ ![Q@ P@ gQΦP@oQħP@oQ@P@`QP@@QP@@ΧQ@ôP@ 0QP@ QP@2QkP@QP@QbP@ɫQ@P@Q@P@`CQP@Q@P@@QP@ !QP@QP@Q P@`,RbP@=RP@@R &P@@=R)P@4RP@)R5P@R &P@R@NP@RsP@ R`P@R P@@R8P@`d RP@ R@P@RP@(R@P@J+R@hP@z%R@?P@A/RwP@6RsP@":R@P@-9Q@RYAQ@vR@Q@@1R@o>Q@@ RE;Q@Sw+Q@@$S@%+Q@K*S@,Q@@ ,Se/Q@*S91Q@#SZ4Q@!S8Q@@)S@.;Q@(S@Q@%SBQ@`LS{CQ@R@?@Q@R`BQ@@TREQ@@rR!JQ@RIOQ@mRQQ@ SSZQ@@S@YQ@)ScQ@'SeQ@@cSiQ@@( S`igQ@ SjQ@$S1lQ@@r(S@jQ@"S@.kQ@@B"ShQ@H-ScQ@7S5eQ@8S!fQ@4ShQ@=SeQ@KShQ@ISkQ@@j?SlQ@@ yQ@@J_S@%wQ@`StQ@@r\SrQ@:aS@qQ@@fS@`oQ@@iSqQ@@jkS@Q@qSQ@|SQ@SHQ@@cS ʎQ@SDQ@ XSތQ@@SɓQ@SBQ@@ISQ@S@Q@SQ@@SQ@@{SQ@`S@Q@@SQ@SQ@ !SQ@SSQ@S*Q@@S7Q@`S/Q@SQ@SըQ@SQ@S@Q@StQ@S=V^Q@V@V Q@PUV۲Q@\V@¹Q@[VQ@hMVQ@LVQ@@cVQ@\VQ@HVQ@.VQ@VzQ@VQ@VQ@ U@fQ@UqQ@U=Q@U'Q@UQ@U@OQ@UQ@ 9U@Q@YVQ@yV|Q@2V^Q@,}VQ@V`Q@@rVQ@ੇVIQ@*VQ@VR@fVK R@peV@ R@ 9vVI R@z}VR@uVR@xVzR@rVR@oV 'R@ikVH(R@dV{'R@O^V +R@dV#-R@@rdV]2R@@YV@_0R@@OVA2R@vXV@N3R@@TZV05R@@mTV8R@%SV ;R@@VV=R@UV@ @R@}NV@R@SVBR@KVJR@HVKR@@8VMR@@AV@xNR@KBVzPR@8VnSR@,5VRR@@,V RR@6VUR@4VaR@@bUiR@UpR@UwR@@rDURsR@5UoR@5=UjR@"NUafR@zUnWR@@U?R@"UE7R@eU=.R@UB)R@U@%R@@RUcR@`U@GR@@ZUR@ UR@UR@U`Q@@dUQ@;UQ@U@xQ@y=UQ@2@UQ@@UQ@@Z=U׺Q@%3U`Q@/UR@"RU=R@mDU1@R@ 9JUBR@@jKUl@R@@bbUAR@2\UHR@@RXUHR@ PUCR@@HU@CR@PJU@DR@FNUHR@@RHUIR@5U`yER@KU@NCR@@T>R@dW@\S@W]^S@ W]S@  XbS@XfS@XhS@@[X$lS@ WsS@eW`isS@WoS@WoS@@)W@xrS@@vW7oS@ jWqS@.KWmS@FW fjS@]^WcS@`k^W*^S@dW@\S@Q]R@ \]R@-]`iR@]@R@p]R@]R@] ~R@`Ŋ]R@`]S@g]RS@`+^]S@d]R@ {]AR@5}]R@ \{]R@ސ]{R@ ]SR@Q]R@OH@4OޜH@O H@OH@O*H@O`_H@Q P yH@ P@.H@P`H@ P@H@@ OH@`zO H@%O@WH@NͣH@`N`H@NH@OH@;h\P-S@ࣴ\@60S@\0S@@\2S@@Ϧ\`i7S@-\8S@ s\@8S@_\U5S@\\1S@;h\P-S@_@.H@`T_`H@`)_8H@`*_ H@'_^H@ _`/H@h_`NH@_UR@UR@@DUR@bBUAR@EU`QR@PUeR@@JWUR@^U*R@UaUR@ScUAR@`^UwR@_UR@@1eU@R@GU@R@ņUqR@UR@ىU`R@`ЍUR@U٥R@GUR@UR@`UR@iUkR@2U@GR@UER@*U@`R@ U ʢR@UR@`dUR@@ UR@@*U@R@wU/R@UR@@JUעR@@U١R@UR@~U ~R@QUޠR@U8R@@!VR@$V2R@@sVR@"VeR@@V >R@.VR@hVR@@b"V R@M$VVR@@"V@FR@@j'V1R@'V*R@*VR@@3V@`R@.7V*R@:VR@:V`yR@EVR@CV R@@@VR@ CV=R@@PV@hR@"FVR@HV@ӦR@NVR@n{VR@@JVbR@V R@@AVR@V@xR@@VR@`dV'R@2V@ӮR@ZVR@VR@@jV=R@MVR@ yVR@GV`R@@mV:R@@JVR@@VR@VR@%VYR@:V R@@ V,R@V^R@@JVR@@V$R@@VѬR@VR@VsR@UVR@@V &R@V׮R@WR@?W@ R@W!R@@WR@WR@}W@R@@8W@?R@WR@WR@@; W@R@ WR@ZWR@@{W@R@ WR@W@%R@YW{R@@* WR@W@R@WR@D(W`S@(W`iS@MDW@%S@@2DWAS@@bJW@S@aW@S@gW@S@ iW@`S@hWS@pWS@BW S@W@S@`CW@S@@bW@S@ W S@WS@WS@WS@@WS@W0S@WS@@WS@@:W@GS@XS@ X S@W5!S@cWJ&S@W@&S@nWe#S@`\W%S@@X(S@X+S@@6X@,S@S@XAS@.WcDS@W >S@W@:S@@+W@8S@}W;S@iW`:S@]W`4S@`LW/S@KWJ*S@@SW$S@ SW`"S@@RhW@S@rhWnS@cWS@]WS@(eWS@GW$S@FWr'S@ W@W'S@W*S@@J H@J H@J`H@cJH@JH@`JcH@JH@@fJ` H@@J H@VXR@Y@R@Y@R@zY &R@`"YZR@Y@OR@YR@Y@R@@YR@IYR@Y@XR@vY@ R@ YR@0Y*R@ J+YR@ Y@`R@Y@R@h%YIR@FX@R@%XR@!Y`R@@XR@@XIR@S@HY@`S@@i;YsS@V(Y`S@r(Y`iS@ n/YS@pYrS@YR@ Y|R@JXR@GXR@ XaR@X@R@QXAR@Y|S@+Y|S@!YvS@X`S@XRS@X! S@@X@o S@Y@ S@Y@ S@ Y S@Y@S@YHS@@ YS@YS@,YS@=>YS@=Y S@Y@6(S@@^Y (S@@X'%S@@:X S@5X S@rX`S@XS@@;XS@X@S@žX/S@XS@ XHS@@X@!S@AX@O"S@@X@x&S@)XE'S@oX'S@X`)S@@"X+S@QX+S@ݙXS*S@X`Q(S@UX &S@X@$S@pX S@kjX S@lX ~S@fjXS@@qXS@yaX, S@@_X5 S@`CiXR@cX R@jX`R@@{XR@@wXR@<[XMR@@WXR@%[X`R@zYX`R@QX@gR@@UX5R@._XR@@3_XR@tXMS@$XZ@MS@DTZJNS@dZTS@ !cZWS@$lZZS@`iZH\S@pZ]S@ akZv`S@`uZdS@tZ*fS@@{Z@ojS@`ޅZmS@@ZoS@iZoS@@KZ@.gS@c=Z`S@R@T[(@R@ [@@R@@z[@=R@@v[:R@@ o[;R@g[3:R@p[`8R@&j[6R@=[{+R@G=[!*R@&B[e'R@`B[`Q$R@`x6[`Q$R@8[A&R@-[#%R@'[2#R@`%[Z R@`x*[7R@`T"[ R@[R@a[[Q@@[|Q@L[@Q@f[Q@? [`yQ@$ [ Q@@[qQ@[]Q@@ [MQ@[@Q@Q [Q@[Q@`xZQ@@Z`Q@Z7Q@ nZ@Q@`xZDQ@=ZRQ@ZQ@ Z@Q@ZQ@@GZQ@Z`Q@Z$Q@ZQ@!Z Q@TZHQ@Z`Q@Z)Q@`Z`Q@ JZR@Z@?R@@ ZR@ZR@ZR@@ZR@ \ZR@ZR@Z!R@ZR@IZ#R@Z@R@@3ZR@Z@R@Z5R@Z@OR@ Z R@ Z!R@Z%R@['R@Z(R@[@*R@_[`,R@[/R@@E[2R@ [7R@`}[9R@@[`BR@ [CR@[ER@@3[HR@0[JR@@ [@ MR@ZKR@ZMR@h[OR@ [[SR@[SR@G[VR@[VR@DZ@QR@`Z{KR@ZKR@LZ LR@ ZOR@`ZRR@zZSR@ Z@RR@Z2OR@BZMR@Z@NR@ZIR@ZCR@ vZCR@pZ>R@bZM8R@TZ/R@`VZ.R@ _Z1R@B]Z,R@ SZA*R@SZ@?(R@_TZ#R@=OZ#R@LZ`yR@TSZ#R@G=Z R@`>Z@ R@`fBZR@`2ZQ@%ZQ@ sZQ@ Z@ Q@ZQ@ZQ@`ZQ@@Z[Q@`+Z@xQ@@ZQ@ZQ@ZQ@)ZQ@sZQ@ZQ@ZvQ@@ YQ@ Y1Q@fY@Q@@YQ@@YQ@YeQ@`YVQ@`YߣQ@Y@Q@Y)Q@YAQ@JYQ@@ YѠQ@YQ@={YQ@@^vYlQ@@nY`Q@eY@gQ@iY*Q@cYEQ@ uZYQ@XY@`Q@ JOYQ@+GYQ@ ?YQ@J>Y@Q@-@YQ@`;Y}Q@=Y|Q@ 7YtQ@28YbqQ@Q@QY@=Q@ Y7Q@ Y7Q@@Yb9Q@Y8Q@֬Y6Q@@iY2Q@Y@5Q@@ Y4Q@Y/2Q@Y3Q@ZCQ@= [;Q@@[G@`U :G@-$U`;G@@1USG@E7UsG@?hU`՜G@UG@@vU@XG@@V 'H@,V` H@VV gG@@UeVlH@@eVH@*kV@H@yVG@@VH@-V` H@@V`H@V`r H@iV H@ԱV@ H@V`H@qV\H@aV HH@@4VH@ V H@ VcH@5V`/H@SWK-H@@W1,H@@<W 'H@W@H@JWH@@W-H@@W+9H@2,W 8H@,W=H@'W?H@(W DH@ OW@QH@VW NH@`%WWMH@ :]W(LH@]WGH@iWBH@rWFBH@xW`PH@ WUH@ ّWYH@W YH@-W`)cH@WGnH@ WmnH@֬W)sH@@:WuH@lW0H@@W 6H@@W@ H@W`H@WH@LXH@YH@ Y`H@ZH@+[H@3b\`H@@@3]`H@V^H@w^ H@ɷ^`ʆH@@3^*H@@Ϻ^)H@@^@pH@@Y^H@^H@T^@H@a^H@^H@k^`HH@^`H@$^H@`^H@^`H@_^`_H@m^ H@$^@۷H@^ &H@^H@@.^\H@c^H@Q^sH@ !^ZH@|^H@ ^@hH@ ^!H@^ H@`x^ H@^tH@^@H@k^`YH@_H@_ H@`k^eH@ ^wH@^PH@ ^H@L^DH@^H@^@H@ s^`H@^ H@^H@^`H@^@H@=^ &H@ 6^ I@^`_ I@@^ `I@@@^I@^ I@^^I@^ ~I@ n^H@O^RH@`B^H@_QH@(_`_H@`_H@h_JH@`_H@ _H@)_H@|/_@H@4_I@4_I@I,_`H@*_I@ &_ I@-_5)I@`*_k1I@;_6I@ _ f>I@@_@I@ $_`5I@@*_@6I@@i3_`(I@<_ )I@@E?_3I@?_-I@D_`(I@E_U,I@C_` =I@ 9_`FI@4_\I@@Y:_dI@@^2_5qI@@3_`uI@@6_ wI@`k:_ kI@ >_gI@h9_ g]I@`>_JI@ 8G_ f>I@@WG_7I@ aK_ 4I@ O_);I@ nO_?I@`S_@:I@U_@>I@V_DI@X_EI@LY_=I@V\_:I@Md_a:I@b_`HPI@f[_ OZI@ ^_YI@ c_RI@@g_ DQI@8n_@UI@g_``I@)h_gI@ui_`NkI@g_`AnI@c_ gmI@v`_vI@Oc_ gI@h_@hI@f_`~I@`b_xI@Dd_@WsI@`Tj_cpI@ k_@XjI@ i_`eI@ \o_ZI@+_`UI@8_vXI@ف_1dI@__ UeI@`_bI@D_dI@_@pmI@@_ hI@ॣ_ `kI@ _`6pI@_BuI@ u_`sI@B_`yI@ _@ovI@_`YyI@Ǡ_I@ _I@z_lxI@`T_oI@_sI@@_[wI@_`uI@ _`pI@_`hI@_vI@`_`{I@`B_I@`_zI@ _I@r_`ċI@`_`0I@8_I@a_` I@`_I@_ ,I@`_I@T_lI@ _`I@=_լI@_`I@_8I@O_I@ _I@!_I@Q_*I@ _@I@@_DI@a_I@_I@[_@I@_`J@`}@`mJ@,C` J@vB`K@GA`@K@ =`K@9`@K@=` K@ =`mK@:`@K@3`K@/``/K@1`` K@u3`@K@@:`@K@ XC``K@@H` =K@ &I`K@`BF``G!K@`TH`2+K@ SI` D,K@`tN``+K@ |O`i3K@N`P9K@ML`9K@M`?K@M`RGK@`L` ,IK@N`\NK@M``PK@`4J`HK@B`+K@ A` &.K@B`3K@A` U=K@B``>K@@B`7K@C`6K@>K`OK@K`SK@J``WK@E`ZK@@`NK@ >``OK@`tF`` ]K@D`ZhK@A`pK@A`@XrK@ jE` kK@A``yK@?`(|K@h>` =zK@=`QxK@7`@}K@ 8``K@?`@K@?`@K@<`K@_6` DK@9`K@ :`'K@:9` K@:`*K@@8` K@`B``6K@ 8C``~K@ !E`@K@B`K@V>` `K@ AC`7K@dB` K@ D``qK@C` K@@>`@K@)@` 'K@@`K@`t@` L@B`L@UG` L@ AM`~L@N`L@T`!L@X``.L@d`J6L@Cq`_LL@z`(LL@{`\fL@L``nL@@` L@NJ` NL@ A`3L@Ô`@@L@```M@@b`bM@O` H0M@`J6M@ݵ`:LM@v`\M@ `mM@``wM@`r{M@@`@}M@`M@` 6M@ `M@ ` %M@Q`M@``M@`M@@`M@`LM@v`M@'`M@@ a'M@aM@ |a NM@ aLM@a M@baM@@a`M@a@'M@ -atM@/a tM@;0axM@Y/aM@2a M@@?a M@ ?a`͹M@`RaM@@Ta HM@Va@M@aa`M@ fa ` N@ba (N@-ba@-N@ua+N@@WaN@ma'N@@a`qN@a _'N@ a O@`a@GP@a@iQ@ a]fQ@`xa ffQ@va@dQ@da``Q@`^a@YQ@TaRQ@ 8Sa@%OQ@@ MaQQ@@MarSQ@gKaSQ@`Ja@NOQ@@GaKQ@)(aQ@`"``@Q@`EQ@`x`8JQ@5`MPQ@` fRQ@ࣸ`sVQ@m`^UQ@``VQ@ s`XQ@F`^Q@`x`@ dQ@`fQ@`iQ@ \`hQ@࣊`jQ@ `@lQ@@b`iQ@``lQ@@E`jQ@L`kQ@L``ioQ@ j`UmQ@@`@kQ@}`@pQ@x`@rQ@t`[wQ@ em`yQ@m`{Q@ !m`B}Q@g`{Q@`f`xQ@ g`@uQ@e`tQ@`d` wQ@ se`qxQ@@b`xQ@&``@?Q@]`^Q@``ƁQ@Y`Q@V`Q@W` >Q@CU`مQ@ U`Q@@O` Q@Q`(Q@@P`Q@@L`Q@ !I`@Q@J`@ Q@@wE`Q@2F`Q@@ E`Q@ \C``Q@B`UQ@;`@XQ@G9`Q@'5`(Q@2`Q@$4`JQ@.`@pQ@ 0`Q@`.`@Q@`-`Q@@,`߇Q@-` Q@ /`)Q@ 1`Q@/`Q@`B`wQ@@P`rQ@`R`PmQ@Y` ~iQ@ j]`MdQ@``@eQ@Ga`iQ@h`^aQ@```^Q@`ZQ@@`WQ@`܊`SQ@`@OQ@`SQ@`0` RQ@Ѝ`@hPQ@`jJQ@)`LQ@`,QQ@`` fRQ@`*NQ@`GQ@`FQ@@`DQ@;`?Q@`?Q@ j`DQ@ݥ`BQ@@`@Q@@<`@x:Q@൪`n7Q@Ǭ`@h8Q@``#9Q@ `@6Q@`j6Q@~` 3Q@@`/Q@b`@-,Q@@b`@-Q@`b1Q@`@X2Q@2``y5Q@``7Q@`2Q@Ǟ`@6Q@@`c4Q@`]2Q@`4Q@`t5Q@` 7Q@6`9Q@>`(8Q@q`8Q@@`]6Q@`Ә`6Q@``@_8Q@`9Q@`;Q@ `@N;Q@b`?Q@Ǜ`AQ@`@_DQ@`4`DHQ@V`JQ@`NQ@`NQ@`IQ@`@FQ@Q`HQ@ߊ`@NQ@ n`NQ@U`@ MQ@M`MQ@`z`SQ@`v`tYQ@@~`kYQ@$|``i[Q@`t``ZQ@u`@\Q@ps`J^Q@ m`$\Q@@q`UUQ@@wm`@%WQ@ l`\Q@Mj`_Q@ h`YQ@mh`^Q@;h``Q@@f`\Q@`f`@YQ@Gm`ISQ@`0f`@`WQ@@d`@_\Q@g`dQ@c` `Q@`d`WQ@@3c` >YQ@a``Q@;f`@ eQ@e`fQ@c`@WgQ@b`@ofQ@ Xc`dQ@@`cpQ@`$` fvQ@!`wQ@`@}Q@`}Q@`zQ@``xQ@`vQ@#`AvQ@l%`tQ@&$`oQ@$`lQ@G`@.kQ@`kQ@ &`/nQ@_ `|Q@ `Q@ `ăQ@ `@Q@~``Q@_/Q@`_Q@`SQ@ ``Q@=_Q@_,Q@ `Q@`K`@Q@#`rQ@@`@`Q@_@˥Q@_ޔQ@_Q@+_`Q@_{Q@_zQ@+_qQ@ J_[Q@s_`XQ@ J[_SQ@Y_WQ@z]_YQ@@J_lXQ@+G_ZQ@E_\Q@O_]Q@g_ZQ@d_/^Q@T_aQ@mH_`_Q@K_v`Q@@R_@%cQ@`M_dQ@=Z_1hQ@2X_nkQ@E_@oQ@`k>_`nQ@ <_UiQ@ s7_ kQ@4_@mQ@p9_pQ@ sO_pQ@Q_ sQ@@K_`vQ@J_tQ@D_@rQ@+9_@-|Q@!*_@}Q@-(_ Q@`*_Q@0_!~Q@4_Q@4_̀Q@ G_~Q@ 6L_{Q@L_@Q@A_@ Q@ >_@ÄQ@ &?_@Q@==_Q@-_lQ@L)_ Q@`B&_Q@&"_ >Q@@#_`Q@_SQ@?_ބQ@/_@.Q@/_$Q@@3#_Q@5_Q@_Q@x_Q@@_Q@3"_@}Q@_|Q@_@xzQ@_7wQ@Q_KuQ@; _`nQ@_lQ@v_@OnQ@`B_rkQ@ _`gQ@f_7cQ@L_)_Q@_\Q@ _jZQ@ _!ZQ@8_ WQ@@_AVQ@ ^`VQ@ _DXQ@`^@YQ@^@`WQ@ ^@6XQ@ ^VQ@ ^ ZQ@^ \Q@ n^|^Q@@E^l`Q@ ^_Q@^dQ@a^gQ@`+^jQ@^'qQ@c^YuQ@ෳ^ rQ@^`tQ@෋^@rQ@{^tQ@;^iQ@^`YQ@`]VQ@ ¶](PQ@B]@MQ@] GQ@Ta]=Q@@>]@9Q@>]:Q@@:]@;Q@m0]`8Q@]6Q@h]z8Q@] 3Q@?\3Q@]Q@`\;Q@\@P@2ZVP@3ZJP@xZ@oP@=Z ~P@Z@P@fZtP@@ZP@[P@Z`P@ZUP@Z1P@`BZEP@Z9Q@@Z Q@Z Q@QZQ@TZQ@ZQ@@vW@g=Q@ uW@h@Q@0zW?Q@@mW9Q@@[W@N7Q@0WU5Q@WV0Q@ W@_0Q@@KW@-Q@{WD0Q@W8Q@WcQ@.WWQ@@6WQ@":W`ԹQ@6WQ@{ WiO@-W@O@@WO@ZW ,O@"W %O@9W O@WPO@W`qO@ W`AO@{ViO@@:V`O@VO@VO@@V`O@V %O@V@ӶO@@TV`O@)V`O@V &O@ڼVײO@VO@VPO@wV ~O@ΫV@O@V`ʖO@@ V1O@@2V %O@@uV UO@rV %O@@LV`GyO@VvxO@VMtO@VkO@@KV@hO@oVeO@oV\fO@rW'mO@gWgO@J W gO@W kO@WjjO@gWgO@ZWZO@@W SO@VrSO@V OO@V@WKO@V@DO@f W gEO@ W >IO@ WLO@W1LO@@W`HHO@WCO@W8FO@W`KO@&WOO@9&W`KO@@#WEO@$W ?O@"W;O@b"WZ8O@@u-W;O@`-W`Y1O@b.W-O@@u%W&O@@(W  O@9WO@@&W@O@n/W $O@2W@O@2W O@J3W`O@@CW xO@`SGW O@ HW`O@@:EW^ O@WCN@©W@AN@©W ?N@ಫW UԥK@@KUעK@TK@ TjK@TK@TK@TSK@T ~K@TͣK@@T >K@fT@K@@TKK@gT஖K@@TK@@:T3K@ݕTPK@@T@ӎK@fTKK@ IT`AK@ΏT`ŊK@bTK@@TlK@.TR'K@ΛTK@T`K@rT`J@@T J@ݍTKJ@JTJ@BTeJ@ΏT J@NT UJ@TwJ@QTgJ@JT aJ@@cT`0J@@^T&J@hT&J@xvT[J@xT`J@@pTJ@`T`J@eWT J@?TtJ@:T I@'TI@@TkI@JTI@)TI@9TiI@>T$I@?T I@;T\I@;TI@6TI@@ 'TiI@@!TMI@@T)I@@TI@;S`s\I@@SkI@S DI@@SI@ SI@S `I@@CS`I@SSI@@:S I@WS`GI@SI@-SI@SI@S I@S`0I@źSI@@"S fI@@S I@S`I@S൸I@ S I@S I@SI@SKI@FSrI@=SI@@S`I@@KSI@ S`I@^S[I@@SJ@S`J@֨SRJ@fS %J@ңS yJ@ S J@S@oJ@S"J@iS@F"J@SU4J@SAJ@ySDJ@ڰS@?HJ@MSMLJ@ݱS SJ@@2SZXJ@kSaJ@bSdJ@{S@?hJ@oS\nJ@S`vJ@]S|J@@SsJ@@ƺSJ@bS`J@@S'J@κSJ@žSJ@SJ@S J@5SJ@@S#J@SJ@QS@?J@SJ@S J@@ SJ@ S@hJ@vS`J@S =J@NS@XJ@VSJ@SM@pSwOM@SMM@@S'EM@ S >IM@@+SJNM@@*SKMM@SPM@SXM@SYM@S]M@@ SaM@SdM@@S{cM@JSiM@@*StM@S{M@`ϞS wM@ڜSztM@SyM@S ,yM@JStM@@S@.wM@@S M@MS &~M@SM@@"S@M@-S`ݍM@ ՉS{M@`S M@@S@XM@`qS@M@EsS@.M@@TnS M@@lySײM@HySM@OvSM@wS`ʾM@@+nS@M@@CqSsM@JsS@oM@nSM@jSSM@@aSM@F^S`GM@@]S)M@@VS$M@VSM@@2\S@M@\SM@bS`M@@_S`M@@bS7M@RSM@JWS`M@XSM@%OSRM@TS@N@BVS`N@ hSN@@:eS7N@YS`6N@JcS@N@^S`NN@@gS@X"N@ fSZ(N@@oS:4N@MlS ;N@xZSEN@caSHN@jS\FN@@uSQN@@ gS`N@lS`aN@JoS@FbN@aS OjN@rSdN@xS_N@vS^eN@@}SKeN@xSiN@@S dN@@S gmN@rS@oN@qS9N@@lSN@@lS `N@)pS^N@`\oS8N@rSN@ dS N@QdSN@jSsN@`gS N@@^S N@@_S %N@ymSN@@"rSkN@yS@N@~SsN@5S@O@=S"O@S@X2O@@*wS`6O@^S`KO@)S`_ R[N@kR@N@ RN@R`N@eQN@(R` N@QN@QN@UQ|N@@8QUN@QN@@*Q`N@@:QN@QN@QUN@@QN@Q:N@Q %N@Q UN@Q`N@`tQN@Q`AN@QߓN@QN@QN@iQ N@QRN@Q@pN@@Q %N@iQN@iQ`N@ !QN@~QsN@Q xN@ Q`N@Q %N@nQN@=Q؁N@`Q@|N@Q rN@@QlN@yQ^mN@rpQuN@@nQpN@'jQ@?pN@:iQsN@@ lQazN@jQ`܆N@ffQ|N@@CaQbN@`WQiN@`[XQeN@ZmQWN@iQJN@mQEN@tQCN@ 0nQ7/N@oQ@&N@@fQ`N@gQN@@LuQN@vQrN@rQM@bQcN@єQ M@pQM@nQM@@+nQM@@pQM@ dQM@/gQ@hM@@bQM@iQPM@gaQM@bQ M@nQM@pQ7M@ iQM@hQM@oQM@@JoQ M@*[QM@WQ`6M@PQϩM@@ OQM@@KRQ@M@@jWQ M@VQ@M@ZQM@ZQM@:aQ`6M@@bbQ M@`QM@]Q M@ WQ@oM@iWQtM@)\Q M@@_Q5M@^Q &~M@]Q@rM@@b^Q oM@aQ`nM@bQgM@jQdM@mQnM@@ kQrM@@kQwM@ mQuM@hmQ`|M@tQM@@KvQ M@wQ@M@UyQzM@tQkyM@@sQDkM@vQ` mM@~yQoM@#yQjjM@$QbM@zQcM@{Q@FZM@FzQXM@sQZM@sQ@?XM@xQaRM@mtQ@WKM@fQ``M@HQ `sM@8Q@?pM@*Q@WsM@@QdM@ pQ^MM@ Q KM@QCM@ QEM@@JQ,M@QQM@Q`M@@71Q@2L@@1QL@@)HQ L@WQ@L@@2Q(L@2Q=L@\2QSL@72QcL@2Q~L@1QL@@1QL@1QL@1Q`L@s1QL@U1QL@)1QL@@1Q`L@0Q` L@0Q` L@0Q*L@ `0Q5L@C0Q`EL@*0QKL@0QUL@/QcL@@Q@hM@Q M@@QM@  QK-M@Q `CM@@QAM@QkIM@P DM@:P?M@"P`/.M@@P(M@P!M@@"QM@QQ M@@Q M@JP%M@,Pj*M@fPr;M@ XP7M@PM$M@@ZPl M@P M@-PM@`P`L@@ PQL@P yM@9P`M@P !M@Pc0M@@"P ,M@P1M@ P ?M@ȸP &>M@yP8M@@ȴP9M@DP`6@M@P`A>M@PKM@SP[M@P`[M@@P^M@ XP `M@`ߘPlM@JPYM@VPSM@@|PNM@M|PJM@hPS>M@%P`/6M@@JP`-M@zP9M@~PP@-M@@J[P`NM@@bP yM@[_P`1M@VP@FM@TP DM@eGPM@NP`HM@HP@.M@@1IP`M@2HPM@DPM@ GPN@DP`N@@APN@DP N@8P@N@5=P`H N@@c5P`Y)N@6P .N@}&P*N@@rP N@<'P` %N@'.Pk!N@.0PBN@(Pj"N@P`N@#PJN@@PN@@ PN@P`/N@@3P@N@e3P gM@P N@P` N@PN@@{PN@%P`6N@PM@#PM@ PM@P`M@@PMM@@bPeM@P`N@ ! PN@ P`M@PM@@P`6M@ PM@@ P M@PM@PM@ P`M@@ P M@PM@ P@FM@ P@M@@OM@ bOtM@~PsM@PM@ P\M@P`M@ OM@/O`M@4OM@`OM@@O M@O@WM@`OM@P >M@O M@O@M@OѠM@`O8M@`OM@`O{M@O2M@MOM@ POM@`lOM@DOM@༺O@M@OƙM@ \OM@NO @M@GO f>M@ PO U-M@SOO'M@,iO@? M@NO M@`kJOM@SO@oM@O M@`O`YM@໓Ok M@`OM@໫OL@OM@ O[M@@uqO@M@RO@M@`lIO@M@GO`M@`BOM@`:OrM@CO' M@AO[M@`;O` M@ 8/OJM@.O M@42O`M@ )O@M@S'O M@`~1O7L@ tBO`M@wOO`GL@ DO`_L@6O L@6O L@@j3O@.L@`$0OL@*O`L@+O(L@@O L@4 O`L@O@L@`ZO{L@`O &L@-OYL@N@WL@VN RL@L@nN=L@5NMNK@2DN)K@=NZK@O3NK@1NK@=:N`K@`S7N`K@L-NK@(NtK@g-N@ӾK@9N௵K@ C=NzK@ 5N@K@`B6NK@@(NK@(NcK@`$NK@#N %K@N`ܾK@`NஶK@ h-NK@`*3N`K@ bBN K@@NN@K@/N`YK@.NSK@@UNK@`wWN[K@`NK@N`K@`1NעK@@:NQK@$N@ӆK@<#N@hK@@M ,K@YMK@`*MK@ MK@MiK@`5P`_G@@6P VG@Q4P#YG@.P#YG@,-PsRG@P.P OJG@`+P@G@-P@p=G@)P`Y9G@@*'P`q4G@-(P+G@%P@)G@#P`.G@5!P)G@`d$P$G@#P(G@ PG@. PG@?P `G@@P G@FOG@O G@O`G@@[P`G@P`G@`lO F@ O F@˽O`HF@O3F@OF@O@F@-O|F@ࣰOF@O@hF@@OF@`lOJF@@dOF@.OF@^OF@QO F@@:]OF@ NOF@AO`F@@K>OBF@@K.O gF@ 2OF@@NF@xNkF@@NF@NF@NF@`NF@NF@UN@?F@N`F@N F@N F@N F@D|N ,F@@;|NF@@NZF@N F@@|N`0F@`TN`F@XN`F@ۯN#F@ N`ʖF@=N!F@#NF@N@WF@@LN`F@NNF@`3N`߅F@@OрF@ O{F@$O`vF@:O3jF@=O`rF@ KO`iF@hO@_F@ fO D\F@@OZF@@dO`bF@ ObF@ O`N[F@0OVF@@O DdF@O`_F@FO$XF@O\F@4O &VF@O]F@DO`HPF@O!RF@O@.WF@ ǹO VF@ ߴO ~QF@OKF@`OUF@^O KF@O@F@?O{;F@UO`;F@O=F@4O BF@`O>F@O5AF@`$O`NF@~O WF@PQF@@PAF@UP ;F@@P@F@@ P|JF@PEF@@ P `;F@Pk9F@ 1PU4F@rP:4F@P`0F@@Pj*F@P ~)F@fP g%F@`SP%F@@"Pc F@PM$F@JP@XF@@*#P`F@#P F@-PF@B*PF@.PE@5P\E@4PE@5P >E@9P$E@59PE@@8P`E@:P xE@@mF@@vlR`F@ eR`F@kR!F@`R`uF@@ R\F@R`.@`&u@@4.@@x.@r@-@@-w-@~@ g-@@7o@ `-@ u@5-@ ,@3-@@`--@@j@?-@@@J>-@ N[@/-@@l -@త@Q,@@1,@9-@,@`Մ@{-@ @)-@ b@-@@7@@J.@K@z.@@.@U@.@-@.@@@ /@@`/@ v@@ǐ/@@@Z@0@`@`g0@ #@`Rg0@@ 0@J~@`60@B@0@@@G0@0@`B0@/@@X0@@Ô@ s*1@@1d1@ׂ@@^1@`@31@U@@ 2@` @2@ @`2@j" @ 2@@J @ɯ2@m @72@ @3@d'!@5 3@uX!@ S2@!@2@R!@@3@"@c3@@!@p3@"@G4@BE"@1T4@@y5"@t4@P"@ 4@"@4@"@4@"@4@s"@ 4@.#@74@@^#@D5@S#@W5@#@`h5@$@`*z5@@^M$@`5@`L|$@5@=$@i5@ %@@P5@`H%@@6@@-x%@6@%@Z6@%@7/6@E%@36@%@`Rw6@@&@@z6@%@$ *@@@7@@Ws7@R.@@7@`60@@Ws7@]2@@-X6@ e5@`*4@ 7@@m3@@7@d2@7@f/@m7@ /@@z7@s/@ a7@^/@@J7@@k/@6@ /@``6@/@6@.@6@Tv.@6@r;.@@J6@Z0.@@6@1-@;6@T-@`ֳ6@a-@j6@V3-@@Xb6@-@ a6@@ -@#q6@,@p6@ ,@t6@#,@ &6@v,@#6@ T,@p6@`=,@z6@3,@;6@@+@6@+@@{#6@t+@`R'6@`D+@ 76@``++@K6@`l*@:6@*@@z6@@N*@ 5@,*@@5@)@5@ sZ)@`5@`G)@ 6@L)@+96@~)@w6@@J>)@Fb6@7(@m6@_(@`z6@`}(@$6@*(@`6@T'@$6@ '@6@`&@@J6@&@@6@@n&@6@ %@@z6@%@`Rw6@@&@36@%@7/6@E%@Z6@%@6@%@@6@@-x%@@P5@`H%@i5@ %@5@=$@`5@`L|$@`*z5@@^M$@`h5@$@W5@#@D5@S#@74@@^#@ 4@.#@4@s"@4@"@4@"@ 4@"@t4@P"@1T4@@y5"@G4@BE"@p3@"@c3@@!@@3@"@2@R!@ S2@!@5 3@uX!@3@d'!@72@ @ɯ2@m @ 2@@J @`2@j" @2@ @@ 2@` @31@U@@^1@`@1d1@ׂ@ s*1@@@X0@@Ô@`B0@/@G0@0@0@@@`60@B@ 0@J~@`Rg0@@`g0@ #@Z@0@`@@ǐ/@@@`/@ v@@ /@@.@@+/@ %@(/@ @ /@@.@@ .@ @b.@@ @@-@@!@A-@I!@,@D"@+@D#@,@u#@7,@n#@a,@#@@,@m#@-@#@--@}#@`.@#@-w.@#@@-.@#@[/@@#@ .@` u$@`G.@` %@ ,.@~%@.@q%@?(.@d%@.@I_&@ 6.@&@ G.@ '@`# .@]'@`8.@`'@ s.@'@r.@(@`.@ +(@`-@ I(@ H-@ (@}-@X)@j-@`N)@n-@k)@-@)@-@)@ M -@`)@ -@G)@@^ -@)@,@``+*@ e&,@ )*@m+@I*@+@ +@@+@@o+@@+@+@ *@`),@@{*@,@T+@ y-@@J^+@%-@@XR+@@J-@ +@-w-@ш+@3-@+@W.@ ߼,@ w/@ +.@ x0@O /@ }U1@Z//@2@/@3@@J/@aZ4@ #/@4@`/@j4@;+/@4@#A/@4@ .@@q5@ g.@~5@`c.@5@R.@@7@%WR;K PZ1* .@M_l+;w\pxq)Y,RkGRG MRGR'G]RG@R`GRG`uR~G]tR`@G uRG{R'GL{R`QG,RkG@R*E R bE@ R`[EREREV|REwRErR,EpRE@vREBzR@EewRE>}R E~RvEzRE@R*E3RIrRIBR˾I@TR IRIVRIRI@ RIQRI-RiI@ RI0RIRyIR4IRIRgI3RIzQKyQ K|Q`{K?|Q5yK vQ~yK@A{Q@:uK`S{Q`rKtQ@dpKeoQxK IlQuK@LqQ5qKWoQ oK@aQ trKaQPyK\Q@sKLQ`xK@JQW{KzQKRQXH@R@XHRTH IRTHRPHROHWRQHR KHR@c9H@+R 87HR @H-R LHRQXH@R GR GR 9GR@G@uR F~R=F@ RFR`fFR.F@2RhFRFŻR@F@RGFಯR &FR`F@R`FR,G@R GR¥HRR@ HQRH`RHRѐH@*R@ΓHRUHZRBH@RHRH@R੃H@:R ƊHR¥H@*P@KP)KyP@dK@PWK@"P`KP˕K!PK P ǡKP@KvP.KPKP`wKPKQ`TK Q`KNQoK  QKi Q@~K)QeK`SQ xKZQuK@"PuKPE{K P୍KPK@PK@*P@KQK@2Q_KQ@KQǙKQK IQK@3QK֤Q҇KQKrQKQ@RKQ,KrQ PKQK@Q KQ }K@[QzKQ JwKJQ@|KQ'}K@Q$xK>Qz|KBQzK@:Q tKtQsK@QwKΟQ,yKQ\K@Q4KQ`}KQ&K@ Q`ѐKśQ@KÜQ`K@Q͓KQK'Q bRJ@'Q`J?(QJ(Q@K(QFK@(Q`MTK(Q`dK(QdK@)QfK(Q \gK (Q8qKB(QqK)QqK@":QfK/Q`~qK0Q uKCQyK@hQiKhQHYKjQaK^mQXKmQ fKpQdK`pQ\KbrQ)\K@sQfK@RtQ`hK X{Q`hK~Q=bKU}Q`wWK~Q`WKQ]K]~Q iKQ`CmKQ CeK@ֈQjK QgmKQgmKQjKoQdKܖQjKQ \gK QkKQbiKgQ eK%QSKQ QKQ PKQ 1UKoQ@`KBQ bZK˱Q IXKQQ VK$QUK@QGaKQcK@QbaKQ-PKQ`KKQSKQQRKQ`WKAQ`UKQ SKQ`QKQ`JK5QCK!Q`CK QHKQFK@KQIKQ0NKQ`SKQ?XK@CQ VKwQ`KKQ sSKQNKQ`}JK#QSK!QSKQmPKQ LKQ)TK@Q SKQ%OKQ bJK)RtBKQ@AK RK&Q`DKQ`IK@QeGKQ>AKxQFKQ@CKQE;KQDK xQQ(KnwQ`$KkQ@u)KcQ?8KyaQ06KdQ`$0KbQ s+KVPQ@d8KNQ;KxZQ 8OK`XQWK@sSQHKOQCKMQCK`KQXJK~IQ FKJKQ`?KJQF:K@Q`IR`B6IR 5IR@;R5H@R2HR+HR`4H#R6HRM4HRG1HR'HRL%HBR@)H`SR^%H@RHR@H R; H`RH }R@HR4HR`3H@KRVQ *K]Q*KQ [ K@Q^KRK R`KR`KRKR K R K@: R K@RK@ RK@2R@|JQRJrRJ@R@KJR@JQXJ@QJ6QJ@QJQ`JQ5JQ`J 9QUJ@QJ@Q K@Q KrQ`J{QK@ Q` KQ`k KQKWQK@QK`QK Q`}KQ@KQ>!KrQ2$K>Q *K@"R`TI@2R@ϊINR ǁI>R`IRI`߸RI Rq}IR zI_R`B~I@R{I>RvIFER`l1F`S?R &/Fn;R5F }>R=BF5=RtBF@:9R8F`t2R:F.R DF3RHQF@9R@uJ7R`J`4:R IJ8R]Jn7R@J3R`J7RJ@2RpJ%+RqJM,RyJ@(R J@(RJ*RJ%R7J"R`JRbJ`R`[JR@;JR zJRJ6R7J R`JRJ@R@uJ@ RJ RJR`JR`J@*RJ@R@JR`JFR@J RJRJ IR`SJR^K@;RK R`fJ!R@; K%R K@2(R Kr4R@cKWR@cHRH)R yH]RH@RH=R{HR@{HR~H6R z}HRXzH@R/oHFRlHR tH@2RtHR`~iHRWsH RlHeR\oHR`HWR@cHvlRJ@]nRJ|R J@؆R CIRIyqR IJ lR4JvlRJ@nRhFrR`ڢFtRF@ RF@KR ؒF@RFR@(FRMF@2RÄFyR`F0vR [FnRqFlRVF@nRhFQ;KQK@ Q KQ`K@QK@[Q K Q K!Q K"QKB&QK*QK.Q`K@T2QoK1QeK8Q`K@>QܶK@2QK3QژKQKBQFKGQZK8GQ`KKQKVPQOK@2XQNKQQ`K`SSQ ͜K@]Q ǡKVQK@JSQVKeOQK`SSQBKcIQ`fKoJQ@uK@:UQ@KKVQOKXQK@YQ KA[Q [K[Q^K@`QzK 1aQٱKUYQK@3_Q@3K dQ-KgQ KfQK=nQథK@`Q KbbQ K:uQ5KzQ'KvQ hK>Q@KQ࣐KrQ`K@eQUKdQmK&bQ઒KbQ…K[QK@UQ`K@XQKRQ ~K`4Q }K !Q%wK Q%|K@Q@KQ K@QbKQ ̈́K@Q༊K QKk&Q@uK=&QKh$Q]K%Q`}K0QK@AQ KCQ ߄KCQ KQ$QK@Q`Ky QK@Q@:K%Q`K`,QOK=&QKQ ǩKQhKQੳK Q PKH QyKN QEKQ@;K9Q`lK@QKPK@"QK@PKQ;K@RoI@*R H8R@I?RIJRIR`0H@R`HfRFHyRHRHR HRvHR HRHNR`HR H5RHִRH@RH@3RZH@ RHøR@;HRnHRH@R HRHүR`IHRHRLH9R@(H%R`HROHyRKH!I^R6 IiRIoR@dI@:ReIRmIRIyRI@ RIRI-RIyR I`R JIRIERIʶRIR@IR !IR IऺRXIJR`%IZR7IRfFR cF@mR^FVR@3[FBR,YFbRQF֐RMFRMFzR@QF@wR@WFRfFRFRFRGFrR 'F@ȜR`FRF`RFRڸF@KR FR@KF@"R^FRFRFR`qI@RmI@RjI@"ReI>R_IּR`\I R_IR`kZI@|R`WIRZI R UIRYI@ǭR`fIfR lIR?hI@RnIR`qIR7H@[R HR HR|HZR sHRH@R)H R`T.HR7H|R`ZJ@+vR MJ@"~RUJ}ReOJwRGJxRFJRPJR`SOJ@RCJUqR3J@nR`4JjR QK Q` K@QKQ^K@*Q"K@JQk*KQ&KZQ+KQQ0K@Q,1KReIyR \_IRNcIRtbIR a[I@RVI@RpUIR.OI@ RKIR@cAIR@;I@"R@?IQRoFIRGIQRDLI R`rLIRFIR@uIIRPIReIFR J_TRJ@ZRJ^R`J@eR@J@*gRyJ `R`JnRuJ nR@J-xR@AJ@yR JER JZRzJWR JRiJ@R J R 2|JäR wJRpJ@+RiJ`SR@"bJ`R \JRY]J IR%oJR uJ@RzJwR yJ@R J@uR{J|R`J}R@cJyyRքJZyRȀJgRWJ{hR JJjR҇JfR [JObRJ@dR [JZaRbJ ^RJ-`RJ@T^RZJ@YRKJSRJ@WRJFR`ūJFR JЙQY2iQ 2T2`}Q`A2uQ@ 2 :qQ`k1@KvQw1)tQ1@kQ1_QZ1r_Q1yUQ 1iSQ1PQ 1 HQ@ 2EQ2DQ`2yIQE#2@AQ`ew2 @Q 92;Q2uQ>tQ(>@uyQR>q|Q [`>ӂQ e>ZQZ>Q`^>@Qp>7Q>Q>Q ? Q-?XQ ?Qw'?Q?@+Q? "Q$0?Q@?@Q ?@Q?`БQ@?@؎Q ?yQ '@@:Q@QQ @@Q>@@ Q)@Q6@Q@:@ZQ@@Q M@ :Q~a@Qr@Q`׃@@TQ@yQ@ ~Q`B@{Q/@yQf@sQ@qQ`@wQ?@@KvQ@yQ t@@yQ@XvQh@ nwQ`kA tQgAuQ AQ3#AQ`0&A@ Q_4AaQ 2LA@Q^UA Q_A`ߐQfA*QA`%Q=A@Q@AQ@ArQ A7Q@AQA@~Q AZQAQ bA@QwA9QWA QBNQYBQB :Q #B֬Q`_4BŮQ@]6B 1Q|3B;Q >BkQ8>B Q HBQ`WB QYB@QxVBQ mXBQ`lBQQ`*{BQ|BQUB Q$BQB.Q@BQ>BJQNB QB@"Q5CڴQ FC@uQ LC@QQC QXCQ `C@uQ CuCQzCQ@CQCFQ`kCQ@CQCQ\C@Q`CQ`eCQCyQ`C@QCQCQ D Q@ D@Q D Q DQwDQ&DQ a#D Q&DQ6DQ'5D@Q DDQ`]DQ`zDQʎD`Q@DQ`DQ-D@ QL EQEQE@#R E@mR$ER@.E@R`7E@R=EER`CE@vRzTE@R@lE R~ER@ E eRgE QqEQ`E*Q`E@ Q@dE QEQ`kEBQ@E@QE@CQ@E-QEQBEQE|QYEzQ [E QE`Q *E=QE@QE@Q z FQ`(FQ.FZQ2FQ6FQCFQ IF@QmPFQTF Q]FZQeFQfFQ J_F` Q`dFWR`F 1R`*cF@RrFQV|FQFQ_FQ9F@Q%F@mQ FQF-QFGQ FiQ F@Q F@Q FQ4F QFcQ \G@uQGQ0G@QGQ+GQ`+G@ QCG@Q`VG@Q`dGQ.gGQ`xGQGQ`BGQuGSQG@Q`eG-QgG@RGR/G@$R ¢G RZG`R]G`RG@ RhG R GR sG@RGB"R`_G!R`GR@ HaR+H`&R=H@&R=HS#R`[H e#RMdH +R)pH,RrHi3R`xH`QXJQ@L]JQ]^JQQcJ@QyeJQ PrJ6QtJwQ !{J@QJ@QJQ)JQ`lJiQ`JQbJ@:QnJ`SQJQ IJ@QgJR@KJARJR JRJ@R`JRڨJBR%JRڠJRGJ@"RJJR۷J R`ѸJVRZJyRJ@Q`J`SQ`JyQeJbQࣸJ@QJMRJvR`JQJQJMQ J@Q͛JQJ9Q`J QJ@QJeQxnJQngJ@Q 2dJ@:Q]JQ,iJ@Q`{JRɏJnRJR@JRJ#R J@ROJR4JFR@J  RJ RJ{R,J@"RJR JO"RJR`J{R ͤJ@""RJ_ RnJ` R J'R`J@R`׳J@uRिJRLJ$R@J@0R@"J2R mJ 4R@uJyIR@ϢJESRJ@;RtjJw+RZJ@&RaJ@K.RmJG-RoJ%R8fJRSgJRmJ@RHYJ@QPJ)QWJQ-XJkQQJ4Q`GJ@dR AJ~R`rDJ RPJ R@SJ@ #RJJR 2DJ@REJRGAJ@3R@@J$RGJ6R@J7RIJ>RGYJ@=Rr\J I4REKJA+RRJi+RUJ@ 3R^JR J@*?RJ@*CRJ DR@J@*?RJ@*7R!J@C5RJ/RmJ@1RJ4RN J6RJ@9R JI5RI RIBRrI.RXI@+6R@dI@DRDI@CER@:IOR`*IhPRvIBR IFBR@I@ERI=FR`CI>RDI0ReI5-R I #R CI@#R,I,)RIi?RI>R`CI@JRuIOR@IRR@I@NRINR=IKRI@ERIAR`I?RyI@CR`}IBR~IDRPILRIAKR@"I>RIIyeR`8IeR 3I#iR^=I@oR@cAIqR@KFI@mtR5aIwReI`RiIɇRaIɃR`1]IRYIiR\I~Rx^IR NI`RFIrREI@"RI@R9I`R`RG@R_GR@KG@*RGR !G@׏RQGBRGRGRGbRGRG@R GR`1G@RG@ȘRG@RµG!R`G¡RoGMRGFR GR`GRzGR`GRGRnGRܟGy}RQG.R`GiRVG{RG@|RkGR ~G@uRqGR`jGR JoG@R@gG‘R`cGcR@L]GಟR`}bGR fGReG@R lGқR nGŞRsG R`pGݭR lGvRicG`RDTGR`OGһR?G@R 9G@:R`~IGnR`+RG@R PGBR`VGRbGR`cG@R~YG R=ZGR`1]GbRcG@R 2dGRiGRnGR@oGRsGRtzGR IxGRLeGR[G@R HG@R`HGXR`AGRR \FR FR PFۏRAFR &F@RF>R F@R FRFRFŊRGyRGR`Z G@ljR@G R t GQRF@؂RFf~R@(G@"~R` GhR~G6RG@R G@*R sGʞRGR GÔR!G@ςR>GQRGрR`$GQxR@,GvR )G@:R=G@}R bGxRG@pRGbrRp-GeR`[HG@xRyMG`uRJGqR`=G@oR`5GgR)GN_R&GdR#G@aRGUR G@[RrGdR`[GbfRm GNkR(GlR'G@gR@ GiRGgeR,FZaR`IF dR2F }bR 8FJWRF(MRFKRF@UR F@2dRF@eRF`R=F@[R`FZRFYR FeWR\F@TR@FMTRFMRܦF@RF@7RDF4RF6RFp=R`F^ERF@uQR`wFURF\RF@]R F@\RPF~UR@FESR`lF@[XR [FyYR`FrWR a{FLRzF1R m`F@.RaFe+RgEF@"&R@FN'R;F%R+FQ,R @Fb.R`I@F4R6F R@E@;R`E@:R`EkBR@ErGR IEDRE9RUEi;RE6R5E3RE2R`E.R`kE@/R`rtE4RqmE@6ReE7RIE@3R 8?E ,R @E`\#RHE@*#RCE@+R=EB6R`#E@&ReE $RXERY:ER?8EXR #EREiRE@RMD@!RiDf&R`E@/RE@8R:D)R D$RD@R 8D`R`D`R DZDR DXR DR`D@+RhD@*'RDr+R DM0R 'D9R$D.CRDFR !DCR`DMRqD VRDZR`0D6pR`D@KnRDJcR@(D_RD@TfR@:DNsRD@wR`D|RDR`{DyRqD|RnD@SzRhDiwRh\DvR-PDtR &ODoR$@D@oR` D@"jR h D@mR CCkR-CxfRCG]R C@*[RRYB=R@NB?R`GB>R=BB;R)DBQ8R5B2RhA%RAp%R`A@)R A@(RSA{ R A@R A@ R`IA@ R`ŋA RqA R lA@RQAeR z5A@ Q -A@:RAQ7AQ@JQ`@@Qh@ Qq@@Qd@@;Q@@:Q P@Q`@ Q@@Qc@yQ~Y@QQvP@]Q`kB@Q 0@@Q@Q@ ?-Q? Q>?Q`? Q`>@QRx>_Q`=>%Q`K>@QF>@Q=*>@Q@.>Q>Q=Q=`4Q=@Q`=Q=yQ@=Q@k=QL=Q9=@Q0=`SQ =cQR<Q_<`QL<XQ`<QY<xQ+Z<Qw'<BQ`;QQ_;KQ 8;Q@|;@Q@\;Q`K;ݽQ -;Q(;Q6!;9Q:@QG: IQ@q:UQ#:hQ%O:.QRH:_Q9Q 99#Qǡ9cQ@9Q@Aw9֠Qc9oQc9`Q[9@Q`l19@2Q@@9@Q@8Q`8vQn8GQӆ8Q785Q`7Q@7Q,7Q 7QՕ7@Qz7@Qs7@Q h7@Q@7`ХQ@57JQ@)7ͤQ#7@2Q 7oQ7`ߘQ@7~Q`l7Q 6iQ`6@Q 5iQ`l5Q0V5@2QtJ5Q`5vQ a4Q`4@ Qu4@Q`G4@Q424݉Q23 Q03Q@3`kQf3rQ2QQ@k2ЙQY2&H^`gR@;+2@`@@J@ m^u^@1t?@@b^@?@TQ^@e?@M^@?@`S^@?@@.[^@?@^^@q?@`__^@`ݭ?@v^@?@x^@Ä?@^u^@1t?@`^@7=@8^@|>@^@@]=@~^@>@}^@#>@೅^@&>@ ^@>@`^@7=@Dd[@;+2@d[@l@2@`T^[@B52@`_[@ =2@\[@?H2@@N[@M2@@J[@G2@H[@Z2@q8[@Lm2@2[@`|2@ ,[@`62@@*[@`62@v,[@Ʊ2@@*[@@2@ '[@ U2@)[@2@@{'[@3@@+[@A&3@ 1([@C3@-,[@a3@ 10[@b3@5=[@ш3@M[@`Y3@`N[@3@ S[@@3@ nS[@c3@M[@l3@`J[@3@aJ[@@(3@WR[@3@`[@s3@`dc[@3@` e[@3@8m[@ 4@@3s[@D3@Qt[@3@u[@@'3@{[@ 3@`~[@ 3@`R[@c3@`[@<3@[@3@‰[@@4@[@ &4@d[@4@ Z[@@ 4@[@`3@`ܦ[@ 3@[@L3@_[@ 4@[@ N4@`_[@c(4@8[@ V4@[@3@@[@Z4@ [@ &3@[@ף3@ܽ[@!3@@[@>3@[@3@@U[@`3@[@is3@[@ ?3@Y[@(3@[@*3@ [@H 3@@ [@i#3@ 6[@3@[@@2@u[@`*2@@[@2@ J[@2@@͟[@$2@.[@2@ [@@2@`}[@ +2@^[@2@[@l2@@[@2@&[@@'}2@@E[@b2@~[@a2@ s[@Jn2@u[@a2@-p[@f2@n[@GA2@8m[@22@@@k[@@=2@@f[@ 152@Dd[@;+2@3]@H@]@5I@]@ I@`]@`+I@ ]@/I@a]@3I@]@ J@_@J@_@@I@`x_@I@Ҫ_@I@_@`I@@W_@ I@ô_@$I@`+_@#I@W_@I@_@I@ _@@FI@`_@ͣI@_@@.I@+_@ I@_@tI@Ҷ_@I@_@I@ٽ_@I@_@I@_@ =I@_@`I@`k_@d_I@_@WI@`d_@jJI@`x_@:I@`x_@@p5I@#_@(I@_@I@_@I@`__@8I@ _@ H@_@H@?_@H@_@H@_@`HH@@_@`H@ _@H@/ `@H@`@H@j`@H@ `@H@`@\H@ `@`ֻH@ `@~H@!`@H@@#`@UH@&`@رH@`*`@@iH@+`@BH@+`@`H@+-`@@H@`0`@H@`1`@`H@2`@H@6`@ NH@@{7`@H@k7`@`H@@.=`@sH@<`@H@`G`@nH@ ?T`@ 6pH@tU`@nH@P`@NH@@T`@=H@ W`@ 7?H@`oX`@K=H@ W`@ &6H@Z`@&H@4U`@H@@U`@SH@S\`@`G@A^`@ xG@ ]`@ yG@@_`@G@Gc`@G@l`@`AG@p`@G@q`@G@`@G@`@`G@`@FG@`@G@`@@XG@`@ G@M`@H@`@@H@`@H@@N`@ H@`@ H@@W`@@p-H@]`@ 1H@`@@z,H@@G`@.H@`;`@,(H@`@G"H@`@H@@E`@K H@`@`H@`@IG@`@ G@ `@ ,G@`@ 7G@`@`ݵG@``@!G@` `@ HG@``@ߋG@V`@`G@`@ |G@@@`@ nG@X`@ gG@@r`@aG@`@ UUG@` `@=G@`2`@>8G@@7`@4G@`@ 60G@ `@;+G@`@!G@w`@`G@`@G@ `@ OG@@.`@QG@@%`@@F@`D`@F@``@@?F@`@`F@K`@ fF@ `@F@``@ۇF@ `@F@ǚ`@ F@`@ rF@|~`@bF@|`@ `F@{`@F@x`@DF@@Wu`@;F@ ?t`@F@@t`@`F@`n`@@{F@`2k`@|F@@7g`@tF@ 1d`@@vF@^`@LlF@ _`@UdF@` c`@ XF@@i`@F@g`@F@f`@E@ f`@E@i`@E@ i`@3E@`h`@@E@h`@VE@f`@+E@`f`@@E@@rc`@ UE@@`c`@ |E@_d`@`wE@ c`@`tE@\`@lE@ 1Z`@#pE@`L`@[E@N`@ WE@Q`@`WE@]S`@ROE@S`@*JE@ R`@DE@ SS`@5E@`P`@BE@`xP`@@ME@@iO`@ME@N`@ FE@M`@IE@H`@ZE@JH`@ ,qE@9C`@ tE@XD`@`){E@@.C`@`}E@@WA`@zE@;`@{E@ 8`@3ZE@`8`@RE@@7`@`RE@T7`@ 0=E@q6`@8E@A2`@3E@@1`@.E@@i+`@+9E@`&`@ $E@ %`@ E@`&`@E@ #`@E@`@ E@ `@ E@-`@`E@`@ E@ `@E@` `@E@`@lE@ `@D@`@CD@ `@D@ `@D@"`@kD@@i`@رD@ _@5D@f_@`D@ _@D@@_@`D@`f_@LD@}_@D@@_@1D@`_@`D@ n_@2D@_@ `D@_@ D@@i_@D@\_@`D@u_@D@_@D@`R_@D@_@dD@q_@`D@ _@ID@_@@­D@0_@D@Մ_@`D@_@xD@y_@rD@l_@mD@ki_@gD@@k_@bD@@f_@`D@e_@zdD@Y_@wOD@@U_@ RD@@T_@RD@R_@QD@B_@@CD@@_@`GAD@B_@;D@ =_@ :D@K=_@`9D@ 9_@`^@?@@3^@s@@'^@@ @@!^@` @@W^@ %?@` ^@l?@^@@(?@]@`@@`]@@@]@7'@@@]@^-@@@]@`&@@`}]@R@@@]@!@@?]@@@Q]@J@@]@@@G]@I@@ ]@@@ Z]@o?@ ]@?@=^@ ?@ ^@`?@ ^@`@@$,^@?@ !/^@d?@a2^@?@.^@G?@ 1^@?@>^@Z?@`N^@ ?@@S^@ ?@h^@T?@m^@ C?@x^@>@x^@>@=v^@`*>@@c^@>@@[^@>@U^@@>@ ?^@}>@<^@>@;^@Oj>@9^@f>@\:^@^>@?0^@U>@ ,^@b>@O'^@e>@ ^@^>@^@`K>@ ^@ OJ>@Y ^@ 1>@ ^@1D>@a^@S7>@^@``;>@^@>I>@^@`O>@!^@@K>@5%^@`(>@D(^@`*>@+1^@>@@*^@@>@ (^@ 1%>@x-^@p>@@{K^@M>@`S^@M>@@Z^@<>@`_k^@=@@r^@@=@{^@ =@^@2=@@^@@=@@^@J=@|^@ \=@@ k^@ %=@`^@ ~=@ _^@=@z\^@B=@$\^@j=@_^@s=@.n^@`=@@o^@`w=@@3s^@az=@dt^@=@ t^@r=@`do^@@=@`Ro^@=@az^@=@`~^@@ԕ=@@|^@r=@~^@o=@y^@>i=@y^@ Q=@|^@H@=@^}^@S7=@`u^@ ,)=@@.s^@@W3=@uu^@S=@^q^@`/V=@@@o^@#1=@`i^@Z0=@h^@`8=@i^@9M=@ g^@`_L=@$h^@3=@e^@)L=@xa^@TF=@a^@<=@EZ^@(=@-\^@F"=@@Uh^@`<=@$g^@` =@&e^@ =@i^@* =@@j^@=@ k^@<@ k^@<@Be^@<@@.c^@<@@j^@j<@`xf^@<@`d_^@@4<@J^@<@R^@@;<@`;S^@k<@P^@*<@@W^@<@`;_^@ <@?d^@y<@e^@[<@i^@V<@h^@H<@d^@Z@<@ Hd^@%O<@G]^@V<@BY^@K<@Z^@A<@`W^@@Q8<@ sW^@c(<@T^@@$<@M^@zT<@P^@\<@WJ^@@a<@=F^@@I<@?D^@K<@ \G^@><@@F^@4<@ ?^@}"<@O=^@ ;@@:^@;@ /^@<@(^@<@#^@<@6^@@;@5^@ %;@k-^@`;@q(^@;@*^@Ų;@(^@ ,;@$^@`f;@&^@ ~;@+^@z;@ (^@o^;@"^@@ f;@!^@@:;@^@,;@-^@9;@@^@``+;@ !^@ %?;@ ^@=;@^@1D;@ l^@ +J;@^@`Q;@^@B;@@ ^@ xF;@ ^@@ 6;@^@@<;@@^@.;@=^@`Y!;@z^@;@ ^@ ;@^@ ;@@3^@;@ ^@@ ;@^@@:@0 ^@:@`R^@:@ ^@:@^@@:@a^@:@`+^@T:@B^@T:@ ^@:@`x^@:@ ^@B:@@U^@@ :@]@` :@^]@T:@a]@`:@@^@G:@@^@@:@@]@`*:@]@[:@@]@T:@`]@`:@u]@b:@@]@:@]@޼:@@]@!:@]@:@ J]@:@]@`/:@]@ ٱ:@`v]@@:@]@@:@`d]@ :@]@@:@.]@ :@ ]@>:@.]@:@`]@G:@`}]@@:@@i]@ |:@ ]@ m:@]@h:@ ]@Io:@]@Py:@h]@ &n:@]@@q:@]@V:@]@`R:@]@k:@]@@_:@`]@]:@ Z]@ J:@]@A:@`}]@@-8:@]@i3:@]@|#:@h]@`9@x]@:@]@ 1:@@W]@9@ \]@@9@]@9@]@ :@&]@ :@0]@ 9@`]@ 9@]@$9@`]@`9@B]@p9@]@ &9@ 1]@ 9@!]@ ؒ9@-]@b9@a]@i9@]@I_9@]@ W9@]@kq9@`}]@`t9@`k]@]9@`]@7_9@M]@@y9@@]@q9@]@H9@W]@ ҇9@D]@9@]@``9@]@J~9@)]@ n9@@]@Q9@]@sZ9@ ]@Q9@ ]@?H9@]@ A9@ ]@@ S9@`f]@}R9@`f]@`>9@]@ :9@s]@ 19@]@*9@]@p-9@-]@@]>9@@]@*+9@Y]@J9@@]@@9@ ]@@99@)]@89@]@<9@`]@E9@@ͷ]@o>9@@ͷ]@?89@#]@@09@8]@ *9@`]@9@`R]@@9@`x]@@X9@5]@@8@]@ 9@@ ]@L8@]@8@f]@G8@]@ ,8@ ]@8@ʵ]@8@]@``8@ H]@8@]@ 8@ת]@}8@]@ 8@@]@8@ԩ]@ 8@]@8@@]@8@]@8@v]@`8@`]@ N8@]@t8@]@28@`;]@8@]@8@ ]@8@ ]@@8@`ʚ]@8@s]@͛8@$]@@8@]@8@ ]@`8@v]@8@@]@8@]@8@]@8@]@@z8@`ʂ]@8@@.]@H8@_]@@8@ n]@28@ l]@`0u8@x]@{8@r]@Iv8@w]@` e8@]@dg8@р]@Q8@]@`W8@ ]@`A8@}]@&8@}]@ 18@ y]@ 8@ v]@ 8@p]@@7@Jr]@@8@m]@8@@Wg]@7@@h]@ 7@Qd]@7@f]@ 7@ c]@7@Y]@7@`Z]@7@`}^]@e7@`^]@7@@[]@@7@S]@`Y7@`R]@@7@P]@7@&Q]@`Y7@M]@q7@`)O]@7@JN]@7@`TF]@7@hD]@7@A]@@Q7@`d;]@ 7@`:]@@7@?8]@q7@$3]@b7@ \+]@aZ7@^!]@sj7@$]@@T7@ /]@GQ7@1]@9=7@-]@o>7@`_']@+7@&]@87@@"]@`=7@h ]@77@%]@47@u!]@7@n"]@@X7@`x]@6@E]@ &6@5]@ 6@#]@6@ n]@`e6@q]@6@@]@6@D]@B6@ 8]@<6@E\@6@@\@6@@\@!6@@\@6@`v\@6@\@6@\@*6@\@`6@@ \@`6@@\@`6@\@`6@8\@6@\@6@@\@6@\@@z6@\@ ˽6@}\@6@5\@6@`\@ 6@@\@@(6@\@6@ \@@.6@\@6@ 6\@6@`\@T6@\@@6@ռ\@6@`\@#6@5\@`6@\@@6@ ҷ\@v6@`ʮ\@`6@`k\@`*6@\@ 6@\@6@@\@6@Y\@@6@$\@Ô6@@\@M6@`\@I6@O\@$6@\@`'s6@\@ %6@ז\@ 6@@O\@ 6@(\@6@@\@@ۂ6@\@ୂ6@s}\@`6@`)w\@ xv6@p\@k6@i\@ɿ6@i\@6@.f\@6@#e\@D7@@b\@6@pa\@@7@@g\@7@s\@7@k\@ '7@`\@L 7@ \\@7@Y\@ 7@`^\@ 7@ _\@7@a^\@6@M\@@Q6@ V\@!6@@^\@` 6@@X\@6@fa\@6@;d\@@6@b\@@j6@`b\@@ c6@`f\@q\6@c\@56@c\@@66@@c\@ ?66@c\@`f66@@ic\@66@ Jc\@66@`)c\@66@`c\@66@@b\@66@ b\@66@`b\@66@b\@66@`kb\@R66@Ob\@266@=b\@56@`0b\@z56@!b\@56@b\@@46@ b\@246@b\@36@`b\@@336@`b\@26@`b\@26@`b\@ |16@a\@06@`a\@|06@a\@06@a\@/6@a\@ /6@a\@.6@a\@w.6@$\\@`,6@@J\@F6@8J\@sz6@L\@s6@X\@@,6@$S\@,6@WN\@ 6@@K\@J6@ 8G\@6@`G\@56@GE\@46@ !?\@`06@A\@5@@<\@@]5@ 8\@5@4\@ 5@/\@I5@?(\@ +5@@#\@5@\@`5@`k\@ x5@@\@`/5@\@5@@\@5@\@5@^\@`5@`\@5@ H \@T5@@\@5@;\@@5@\@`5@[@F5@[@5@#[@@5@[@` 5@`[@5@[@ 5@T[@5@ [@5@![@}5@[@}5@Y[@ y5@[@5@[@5@[@c5@[@` 5@@[@5@[@ ؒ5@[@5@[@g5@![@{5@[@@o5@@[@@5@[@` 5@[@;{5@[@w5@[@`65@[@5@[@r5@@߷[@b5@[@g5@೭[@``[5@[@#A5@[@`R5@[@`\5@[@i5@d[@g5@@3[@BU5@q[@<:5@[@ ~15@[@F5@`[@N5@[@e5@T[@b5@@ߗ[@Jn5@G[@1T5@[@TV5@E[@`;5@܍[@5@_[@H5@a[@d4@೑[@4@ s[@ y4@[@;4@ [@4@`x[@ %4@@.[@`4@ޘ[@4@E[@}4@ܡ[@ ,y4@[@@[4@ [@'M4@`v[@p=4@![@`L4@z[@@(<4@@z[@dW4@@x[@ `4@y[@pm4@`~[@`X4@ീ[@[@<5@:[@n5@`d7[@@5@ 7[@l5@2[@[5@J6[@5@5[@5@`2[@5@4[@ ~5@5[@5@`_/[@5@@/[@@Q5@+[@5@)[@ʾ5@*[@`5@D([@ [5@&[@5@-$[@5@([@j5@@$[@ 5@d[@ 5@`[@Q5@@[@@z5@^![@5@#[@5@![@q5@[@!5@[@J5@[@@Q5@ [@5@`+[@Ϊ5@[@ 5@O[@5@[@25@p [@75@ ![@*5@[@5@ [@5@@Z@5@Z@5@`Z@ɪ5@ Z@`5@`Z@5@@.Z@C5@ Z@v5@Z@ &5@@@Z@5@ JZ@`)5@Z@A5@Z@5@`Z@5@uZ@ H5@@ȯZ@6@MZ@@5@6Z@^5@ ~Z@6@ԩZ@T6@Z@`fV6@Z@9]6@`ܦZ@``6@Z@6@Z@6@ Z@6@@{Z@$6@Z@`)6@`ʦZ@@6@Z@ s6@@Z@76@Z@`6@^Z@6@wZ@6@pZ@7@dZ@ 7@@{cZ@)7@aZ@/7@TZ@5`7@`dOZ@`B7@ DZ@:7@4Z@@7@@7Z@6@W.Z@ 6@%Z@@X6@@.Z@ɯ6@Z@޼6@ ZZ@6@`Z@6@@Z@6@Z@6@Y@`6@Y@Ô6@Y@@6@@Y@`6@pY@6@`)Y@ s6@_Y@@-6@Y@`6@Y@ N6@ Y@@۟6@nY@6@qY@ &~6@Y@@q6@Y@@o6@ nY@_{6@`Y@6@ Y@@ڰ6@`ڣY@6@^Y@6@ Y@ y6@ lY@6@`Y@@6@Y@{6@ Y@i6@@Y@m6@Y@Ye6@`ņY@`o6@ Y@r6@ByY@@Xb6@ nwY@c6@tY@w6@5qY@`66@ lY@cx6@ hY@ &N6@zdY@wG6@ JgY@d6@8rY@25@)pY@t5@ uY@k5@@.sY@5@`doY@HP5@`xvY@>5@8rY@$5@mY@%5@fY@`.5@`fY@@(<5@ RY@ &.5@`OY@A5@PY@H`5@dLY@@i5@^MY@ 5@ IY@#5@ GY@` 5@8Y@b5@.Y@5@`#Y@s5@]Y@|5@Y@@P5@ Y@@n5@a Y@w5@`Y@ U5@ Y@5@Y@m5@ X@@5@X@`5@X@ 6@=X@@6@X@D6@lX@ 6@@X@6@@7X@`6@@X@"6@X@ 6@X@L6@sX@ O*6@`X@4Q6@X@h6@X@6@X@6@X@6@@X@@ 6@X@ O6@@?X@$6@`X@A7@X@"7@@X@<7@X@!7@@X@@*7@hX@$07@X@kQ7@@X@fU7@ʺX@@^]7@@X@j7@@QX@@{7@`X@|7@X@`ݍ7@X@@7@gX@#7@ҫX@7@ZX@77@X@@7@X@8@X@!)8@@X@78@!X@ 8@X@5 8@X@`8@@iX@`7@SbX@@W7@@dX@7@ oX@`)8@nX@98@pX@A8@woX@ OJ8@@jX@@]N8@jX@xV8@`mX@ OZ8@@lX@`b8@@aX@@p8@cdX@``8@[cX@88@gX@`*8@rX@8@`sX@8@%oX@;8@FnX@ 9@*vX@@D9@wX@@4B9@zX@59@:|X@@69@qX@ P9@X@@۟9@X@99@X@`9@X@9@AX@>9@@qX@9@X@9@ƭX@9@X@19@ZX@@:@X@2#:@X@ ,:@@pX@}":@X@@33:@X@`B:@@ԱX@:@ WX@9:@ৰX@;@,X@;@X@\;@̬X@ic;@X@ ;@X@;@X@ +;@DX@;@dX@;@DX@@;@@pX@ߋ;@3X@@;@@͓X@̌;@ஊX@3;@BX@`;@X@8;@_X@;@X@<@_X@)<@X@ 7<@5X@@G<@yX@ a<@sX@bY<@ lX@g<@hhX@{<@dX@@<@cX@<<@@]X@@J<@FZX@J<@_VX@9<@SX@`=<@NX@`YQ<@`FX@a<@`?X@` U<@`1X@$`<@@i/X@@'m<@@%X@ w<@X@Y<@X@ Oj<@@X@`_|<@X@<@X@ <@X@`5<@r'X@@<@%'X@<@*"X@ y<@M X@=@X@Q=@@X@@<@  X@T<@ X@ ~<@ X@<@X@B=@X@`.=@KX@`YA=@2X@aJ=@X@ ==@X@A=@ X@`^=@@X@@.w=@W@>=@W@}"=@W@` $=@W@@{=@W@ =@W@r =@@OW@=@W@(=@;W@*=@W@ G=@pW@S=@ &W@ H=@AW@$=@W@<@3W@@Q<@%W@L<@;oW@j<@`cW@`<@nNW@@ڠ<@JW@r<@GW@7_<@@4W@-<@[3W@3<@@+W@ &<@`a*W@$<@@.W@@P <@,W@;@@HW@;@W@@-;@tW@M;@W@`_;@`W@@;@lW@;@@?W@@;@V@a;@ 6V@@;@V@;@!V@`;@@V@p <@(V@<@V@;@V@ O;@@gV@ <@@zV@h<@YV@M<<@mV@@A<@@V@R<@9uV@?<@eV@#<@ WV@ %;@nNV@ ;@ HV@G;@ &>V@>y;@:V@/R;@!2V@$p;@1V@p};@h8V@`;@4V@1<@%'V@<@ /"V@w<@V@ ;@`V@;@` V@ ;;@U@ +;@`U@T;@U@;@U@`;@0U@ %;@`U@M;@UU@`;@U@;@U@@W;@U@@<@U@@<@U@<@U@q<@ U@<@=U@@z;@@zU@v;@U@<@ƍU@J<@U@)<@U@ <@lU@;@@U@@;@F~U@ s;@~U@];@zU@`<@zU@<@qU@4<@,mU@@.W<@`gU@H@<@sbU@J<@*RU@@E<@FU@@P<@FU@@Xr<@KU@ <@@(LU@ s<@CU@ <@#@nT@W>@dgT@ rk>@bT@T>@SZT@ ~a>@^YT@vH>@VT@ 1%>@RT@k!>@RST@f>@@ONT@>@`GT@T>@AT@@g4>@|&T@y>@|"T@v>@ T@>@ T@ >@T@7>@ T@>@@hT@@κ>@T@[>@bT@>@8S@@>@`S@]>@S@@>@@`S@@>?@S@@W?@S@lp?@0S@@Pi?@S@@WS?@@HS@@(\?@5S@L?@@_S@bI?@S@@P?@S@u?@ fS@{?@|S@?@S@ &?@@ԵS@?@S@[?@_S@?@ >S@ y?@S@@@@ܢS@@@ fS@8@@S@ x&@@US@E@@S@vH@@S@I@@S@Q@@kS@O@@S@K=@@ S@`.@@@XS@,0@@@pS@ >@@:S@A@@S@I?@@S@ F@@@ S@V@@S@`_@@S@f@@S@m@@`S@s@@@S@`}@@S@@@@ WS@ H@@S@@@@S@@ä@@S@Ǩ@@S@N@@JS@@@@S@@@S@#@@ >S@ @@S@ @@*S@1@@S@@A@sS@*A@kS@A@S@ZA@S@A@S@4A@S@d7A@S@4A@DS@`8A@S@;A@AS@BA@S@FA@S@IA@S@`TA@@T@UTA@T@8^A@ T@jrA@ 6 T@ A@@T@ǘA@*T@ A@T@nA@T@A@\T@A@ T@lA@;T@dA@ T@`A@T@A@T@A@gT@`A@S@CA@S@ A@{S@A@cS@ NA@ S@ ,A@S@A@S@A@SS@@pA@-S@~A@BS@@A@S@ NA@S@8A@@ͻS@ =A@@ͳS@@A@լS@ A@zS@KA@@S@A@@ÈS@A@=~S@ ~A@-|S@`6A@5uS@@A@lS@`A@YaS@A@:S@:A@%S@bA@k%S@*A@$S@`A@!S@ A@8S@A@ S@@A@@(S@`A@@S@B@S@`6B@@R@B@R@@@B@HS@B@`QS@`:B@R@uPB@SR@_B@wR@@bB@AR@\B@R@_B@@R@@puB@hR@@-B@@`R@{B@KR@tB@R@kB@ 6R@B@VR@`cB@@R@ϑB@R@nB@`aR@B@@R@ B@תR@B@ ڰR@ B@HR@ B@`R@ žB@ /R@5B@R@B@R@ B@üR@B@ƹR@B@@`R@B@ƹR@`qB@R@,B@@xR@FC@R@C@ײR@.'C@@7R@ ,1C@ӶR@:AE@Y@`E@QY@VE@Y@E@@Y@ D@\Y@D@Z@D@!Z@ HD@!Z@D@@;Z@ rD@@Z@jD@NZ@D@]Z@jD@ׇZ@ E@ Z@@%E@-Z@(E@Z@ .E@Z@4E@3Z@;E@Z@`4E@![@`8E@6[@23E@@[@@:E@T[@ 7E@@\[@`:E@`b[@&@g%R@%@96R@ %@>RO#@=R#@@"FR)#@XR#a"@WR@yU"@`TR`X"@@R"@>R"@O>R@H"@S;R@X2"@ 6RG"@@l1R9"@ *R@?H!@@R @yRJ @ZR@P @R@y @R@/R@R۟@ R @P R_@2R %?@_Q@ eQ`-@@vQ`)@Q@@Q W@rQq\@֠Q@ QF@`Q@@@[Q`ty@5UQ๜@rPQU@zLQef@FQ@&>Q_@ :)Qb@@Q @ Q @ Q@ Q@yP`;@@P~@@P@|P`ty@ P@Pe&@P@@P(@P@bP`);@ Pr@P23@`P@ P@q@@P@@P`Y@@2P;@@"P @@JP> @P@ @rP@ @P. @@P @ P @PX@`*PV@rP @PL]@VPvw@P@T@@Pׂ@QP#@%P@P`3@@ P7/@*P@P@?wP!"?P͛?P@?@cP@*?P"? IPR?uP@*P&@@P@@ "P >?PF?Q`a?Q ?z Q@@QP?` Q /?-XQ }?c]Q@*?JoQ`?uQ@r?uQ?@"nQ`o?umQ? \Q?@E[Q`o?QQd?_LQSv?LQi?@IQ? KQ@l?` HQ?HQ`(?fMQ?hTQ@?]QZ?@`Q@>?!gQc?ikQt?2|Q ?ӂQ?Q h$?ඃQ(Ŀi{Q@ӿgQi$dQ@_@gQ|2dQ= @]QbM\Qb_XQXQ@\Q@@#]Q dQlQ;tQ`Ce |QQ͗QNQQs@]Q<.Q@QI Qv*Q`jQm@Q`q3Q@ Q@Q`Q>iWQuQ`1@Q@QbQ@]@Qo^@+Q@Q f@QlJQQ!QQ/7yQQ|Q`Q2Q@ WQW@R@R`RQR@B^ R^ R@ Rx@R@y@"&R !CZ)R Q,R@B-R/Ry3R 9R@Bq?@"S g?@+Sb?@+.S?.S?V8S #?,ES? LS@l? MXSI?W[S`*?q\S3? }^SL@FS?S @ }S`p@bSy@pS@@S \@@SF@@SI@ SB@ۃSf@@S+@@|Sy@~S @5yS @@"zS`ij@@*wS@x@rS3@ioSx@ tS@qSvw@hS D@ 1iS@@@CmSG@(mS@-X@@CiS @@gSP@?lSX@lS Ga@cS9m@`S @@[`S` @@ZS  @ ZS l @`4^S @Q\S` @VS @6TSJ @PS @UQS`.7 @RS  @ LS` @ZISO @QHS) @ ILS* @LS@@ HS!@JS l@ HS`ʎ@ASW@GS`b@%GS+@ PS@@@RS`@SSSv@RS@Y@nOS@KS=@@"RS@F@yUS`.@FVS\n@WSOz@@[S'}@@[S@X@@VS @ TS @`SOS@)XS`O@@"VS`@ ITS@RS@<@@mPS6@EWS`@vXS|@\S 5@@ _S@@@ cS@@m`S@T@ZS@@CUS`s@PS@OS!@k^S@ ^S +@BZS@WS(\@ZS`8@VSǐ@@VS @@US`B@e_S@@bS@dSt9@jS@ IlSa@@dlSk@iS`@ikS`y5@rtS G@xS0@@sS@ oS2@nS 51@@pS@QpS @oS@ajS @fS2@dS@\S}@TS!@WS$@@RS@cIS@/NSV4 @JWS @WS @ZS @^S @nWS3Z!@OS4 @GS+ @>S@# @9S@F@޽(0F@(sF@ R(@-F@ \(5F@@@(4F@ 9.(;F@#(CF@~q(iCF@r(>F@޽(E@'E@΋'rE@zt'#E@'PE@&@E@"&mE@ &`ŲE@&@ۯE@t:' E@"'`E@*'E@')htH&@ h2@@ɯ @A2@ @h2@7 @2@ 8 @2@ @g2@@W2@@@Q82@j@2@@@` 2@|? 2@@ ?@1@`?1@`c?1@ >?1@@?1@ Kƿ1@T?Կ1@dܿ`1@`wwN1@ > 0@@Tv0@ y0@DDj0@40@gE/0@@w@!20@zZ00@J~ O:0@ w/@ 9}/@@[ɯ/@#/@&/@ c@a.@.@ @X.@r.@,.@: M.@`5-@*`p-@= \O-@@ף`,@]`,@C,@e,@ *; ,@W,@ 1^,@`],@@r+@q+@+@@[?+@V sz+@`Df+@*@.7@*@? H*@@%`c*@ bJ*@N[3*@=J .*@D@-)@@)@`>ɏ)@81T)@/L)@ <W(@h(@,i(@@  1U(@U'(@ '@`|'@x@P'@@_@'@ i&@ @;&@ WP&@tH&@`bL}&@m &@ &@+ `'@@E# `c'@`4 '@ '@j 7'@ `ɮ'@>i @3'@ '@T Af'@@U v'@^M?'@` s'@4C'@#!'@ `/'@'@Y@P9'@ K'@%'@\'@@t@ux'@J~'@+`'@ (@!(@ ')@f(@@2(@ (@? )@| )@ \O)@@0@ǰ)@ gE)@,)@Ԇ@*@L] *@?@P*@r{s+@'} Vt+@y5+@`L+@@+@ kb+@@,,@A,@`,@޼Q,@2@{s,@d,@0u@,@DD`,@#,@@,@&,@A-@ >i,@O,@g 1,@@ -@K~`,@v,@ۿ@Z,@ܿ@XR,@ֿ`=,@ͫѿ+@ 2п V+@pſ`f+@?+@¥?+@? +@7?!,@Be?$,@= ?4,@|?,@@.?,@W?,@@q?`#,@`?@;,@8?@hx,@? Q,@S?%,@"?+@`?+@4?ʎ+@{?`3+@O?; +@Y?*@`?q*@$?`*_*@?M*@?@{s*@@?%~*@1T?`fF*@?`H*@?? Y*@`j?}R*@@x?*@@*@P@u+@@?H@,@J@@; -@H@"-@ǡ@`L-@|@ -@e@@X-@`9m@ -@`@c-@@e@-@`kA@$.@?@dH.@@M.@@YQ@.@ $? .@?.@I?n/@@33?/@@'}?0@-?}0@vw?)0@l?0@r?@0@Œ? 0@@T@@40@ @l0@@{0@ @ @0@ @ 0@@\ @ 0@2 @l0@҆ @0@@?H @1@  @`)[1@` @i1@p @\~1@@ɯ @ V1@@/ @1@`` @p1@I @Z1@ @@'1@@6P @ 2@` @`$2@h @/2@@ @;2@J @E2@ @e2@ @;{2@" @`2@ @`2@`9m @A2@ @*yU @ ,T@^m&@nmU&+&@@iU`M&@SgU@^m&@/RU.&@2$@KU@ $@@FU0#@;U#@i;U#@`7U@#@@?Ueg#@EU:,#@EGU)#@MPU~#@VUϩ#@eU#@jU@_#@@mU$$@@uU`m$@@wU$@qU$@sU`%@hU@:%@iUF%@@TjU`f%@lU%@yU %@)xUE%@>mU@d%@nU}&@@3kU`&@BlUt&&@mU&+&@+ ~&*@ 2E@l3@8EG@l 3@XR-@ {F@:-@}F@A-@zF@`,@փF@,@`F@@ -@!F@,-@@F@Z0-@ `F@Z-@@F@-@|F@@XR-@ {F@ -@`NF@,@QF@,@ vF@,@ tF@`I,@ F@,@F@@,@`F@-,@'F@@,@F@~,@'}F@,@`0]F@ -@`NF@ѧ1@rE@1@vE@Q1@sE@@G1@`uE@ 1@ sE@e1@ nE@ 1@hE@)1@ gE@1@uaE@@2@@`E@D2@$OE@\2@7PE@@ri2@ME@t2@@BHE@@u2@R>E@ 2@9E@2@ 2E@62@*JE@<:2@`ME@ 1@_E@1@@gE@`1@tiE@:1@@eE@U1@wE@@ 1@`qE@k1@{E@`1@`lE@ѧ1@rE@0@2@znF@2@8uF@g2@xF@@2@yF@=2@`F@`)2@`F@=2@͂F@P2@F@د2@F@ 2@F@2@=F@2@fF@ 2@F@@{2@ F@@2@ NJF@2@@F@2@шF@2@2@F@`o2@@{F@ 1@@pF@ 1@`F@1@=F@ 1@ LF@1@`F@1@`F@H1@.F@ 1@ېF@11@8F@{1@.F@~1@uF@gs1@eF@ s1@`F@0@E@`0@`E@@*1@E@B1@׺E@@E1@ E@A1@ E@@PL1@@E@`d1@zE@ t1@E@`[1@׉E@'1@}E@@<1@`M{E@]1@@xE@z1@`~E@l1@E@@Z1@E@@.0@E@d0@PE@y0@E@ Z0@E@ 0@E@`/@@WE@/@E@@/@E@/@E@7P/@ E@.@E@ G.@F@`:.@P!F@ D.@1$F@[.@mF@@i.@!F@Fb.@ f&F@`}.@F@w.@@%F@.@@X*F@.@P!F@@^ /@|"F@`.@.F@-@MLF@@-@`bF@-@`pF@w-@<{F@ \-@JF@,9-@F@/,@ ҧF@`,@^F@,@ F@`n,@ɏF@bI,@ %F@SW,@~F@h$,@@xF@,@DF@,@IwF@@3+@ iF@`+@ gF@+@@oF@A+@F@ %?+@QF@0+@F@@&+@@oF@&*@@ӾF@`#+@F@;+@qF@ a+@ F@`+@`2F@@U+@F@0+@@F@+@pF@+@F@+@F@FC,@ F@z,@F@%,@@F@ ,@8F@,@@F@`-@F@`-@F@G!-@F@3-@@pF@):-@ \F@^-@`F@`_-@F@g-@2F@*-@-F@-@`F@|-@F@ -@F@ .@F@]+.@8F@RV.@zF@N`.@@>F@`r.@@.F@].@F@.@`kF@.@F@@.@QF@.@F@.@@F@ :.@F@ .@ F@@ı.@`fF@w.@`F@`.@qF@.@GF@.@@F@.@ lF@ .@F@s.@F@.@uF@.@ lF@.@F@`.@F@/@F@@8/@F@;P/@aF@Fe/@F@`[/@RF@`a/@F@{r/@@F@`ff/@`G@o/@ G@@B/@ G@ 3/@=G@M/@G@`xZ/@G@`/@@3G@൤/@!G@@g0@ (&G@0@a*G@ 0@0G@ %0@ 3G@G10@=1G@ZC0@1G@=K0@`/G@`M0@a1G@D0@ 4G@[@0@@?G@L0@DG@@e0@8EG@`Ó0@@T6@TT6@T [7@JT6@T`6@T@'6@ T6@@T 7@ T6@@T6@JT7@¥Tq 7@ T/7@ gT`(7@icT #7@aT7@ ecT@ 7@{`TM 7@^T@7@LT@.7@FRT`7@NT`7@JKT@Q7@GT7@@ET7@?T7@=>T %7@*T@7@@'T7@(T&7@%T%7@@'Tw7@"T6@ T6@ T6@T@ 6@T 6@TT6@aSt6@/S`6@JS6@@S`6@aS6@Sj6@` S@Ӧ6@S!b6@S e6@@ES P6@S W6@Sb6@@ɣS P6@֜SZ@6@ES86@@S@*6@S6@xS5@iwS5@vS`5@hpS5@^S5@q\S5@]S@Ե5@[S@Q5@@+VS@X5@@uUS5@\Sp5@@[dS`5@`%gS@{5@{dS5@@aS?5@_S5@HSZ5@GS5@@"JS@5@ PS ̜5@@ WS`5@2TS`5@)PS ~5@@CQS}5@yMSCt5@@JS@z5@FS5@@:ES`5@@:S5p5@3S@d5@5S@%[5@@v8S`)[5@9S P5@7SpM5@ 5SXZ5@@E3Sb5@@"*SaZ5@(S!R5@`-StI5@(SkA5@)S@J5@ e'S@'M5@"S`H5@*#S;5@&S65@S@W35@ :S95@!S`=5@U!SG5@S@@5@qS(5@@S 5@R@5@R5@@R5@iR@z4@R4@@"R@4@@R4@Rk4@R4@R y4@RZ4@iR24@R4@?RA4@&Rײ4@RZ4@OR4@UR4@@R`S4@@Ra4@rR4@5R V4@!R4@` R4@@R4@NRG4@ R84@@Ri4@cR`Rw4@ R`Z4@@fRK4@R@P4@qR84@qR@ 34@RH4@R> 4@@R y3@&RE3@ZR`3@R 3@R4@Rn4@&R3@ MR3@bRZ3@Ri3@ R`3@oS3@S3@ I$S$3@W7S3@Q@SZ3@@RS 3@US3@,YS O3@@kSj3@oS3@@mS+3@@dS84@OS``K4@MSF4@iGSp]4@ES@Qx4@NOS84@@LS ١4@@TS4@ :qSF4@wS4@@S4@@S4@>S!4@@~S` 5@۟S5@ģS``[5@S{5@@Sq5@S ~5@ S5@ eS}5@ nS5@S5@@S5@S5@gS@5@MT5@TJ5@@T@5@qT` 6@TZ6@T 6@TZ06@B"T-6@TD6@7T 6@@"FT6@HT`*6@@]JTB6@KTG6@MTC6@QLT 6@MT@6@@6@T``+6@T+6@T`Y!6@vU86@@T6@iT5@@U5@U5@@Ul5@U5@!U` 5@ U85@@"U5@ U@5@ U75@z,U5@24U@5@;U@5@=U@(5@!;U``5@-Hs"@@HA@sJA@A@& @@HA@ x@@$HA@zt@@{SA@^]@@RA@>@@YA@ 3@@`A@@1@@DkA@`Y)@@ OrA@s"@@A@'@@`ŊA@@/@@@A@`6@@`˅A@@.O@@[A@@h\@@ %A@ Oj@@3A@rs@@JA@Zx@@A@u@@@A@@h@@@A@@@լA@A@`A@-A@ &A@sJA@A@AA@@A@@A@൸A@`@@ UA@@@A@@ A@zA@@@ ~A@ y@@@-xA@@@`{A@@@{A@`@@ wA@@@biA@ߣ@@{[A@`@@RWA@ >@@@QA@ @@HA@.@/(@IH@s2@I@@/(@`)I@(@ ~!I@@(@ I@Ѩ(@I@(@ #I@ (@,I@)@"9I@)@`/6I@@')@ &6I@`5*@Z@I@ a*@v@I@z*@3JI@C*@aJI@`*@`RI@*@9MI@""+@`[I@@P+@`\I@+@`0eI@ ,@IgI@@,@rI@,@[wI@,@@I@,@I@2-@}I@`#-@`BuI@9M-@JvI@`#@-@ UmI@ s-@hI@_-@ nI@.@`oI@ .@zI@ N-@`I@ +.@I@vX.@jI@.@@(|I@@.@uI@.@`mI@q.@dI@ /@_I@/@UI@w/@wWI@/@WI@}0@`MI@0@@@OI@`80@}QI@<0@@UI@Y0@1TI@ r0@II@e0@jBI@O0@`@I@50@5I@gu0@`&I@@.0@I@@0@@ I@F0@`I@@.1@ I@0@4I@0@>8I@@1@J6I@7?1@`+I@Z1@`G)I@OZ1@ `#I@a1@`)#I@31@5)I@1@`'I@21@ OI@1@CI@$1@@PI@1@@ I@1@I@E1@H@ 2@`YI@ 2@I@S2@I@)2@H@}r2@H@2@`H@@2@@zH@2@ H@s2@FH@@>2@H@|2@`kH@q2@H@2@H@Z2@@H@2@@ֽH@2@@H@z2@H@2@`vH@`է2@H@2@ lH@`[2@BH@2@`H@2@H@@2@ H@Ô2@෿H@`2@ 8H@(2@RH@`]2@`H@`]2@@WH@@͋2@`H@` 2@`H@@g2@۸H@ 2@@H@ {2@ (H@y2@H@x2@ H@q2@@GH@o2@ H@m2@H@ j2@`H@g2@ͲH@`g2@ uH@ h2@@ѱH@j2@ lH@k2@H@k2@@H@`h2@8H@ c2@H@` a2@@GH@]2@@H@Y2@`[H@ SU2@H@`[Q2@ \H@N2@@H@ H2@H@ @2@஥H@@>82@H@z62@H@F52@`H@ ,2@H@ \/2@@H@`'02@]H@`'02@H@ \/2@MH@`,2@ H@@*2@#H@(2@(H@`2%2@`H@%2@H@&2@࣐H@ &2@`H@@%2@̎H@`[!2@(H@42@@H@2@ H@F2@]H@2@ H@2@FH@z2@`)H@p1@H@ 1@ H@1@ H@ 1@)H@=1@~H@1@ |H@ 1@@W{H@`f1@`yH@1@GyH@z1@`wH@1@vH@Z1@RvH@1@vH@ H1@ vH@@p1@@vH@1@@vH@1@tH@@>1@tH@1@FsH@z1@-qH@Z1@pH@41@@pH@q1@oH@R1@mH@ 1@`mH@@1@`mH@q1@lH@F1@ mH@1@VlH@P1@`kH@ 1@@jH@Ò1@3jH@̌1@hH@1@[hH@…1@hH@Z1@@jH@H~1@MlH@ z1@mH@ u1@ mH@ q1@ kH@n1@`jH@`)k1@@iH@fg1@QiH@c1@QiH@[`1@iH@ W1@lH@N1@mH@@1@`voH@:1@oH@@41@`RoH@[01@BoH@@)1@lH@f%1@@kH@[ 1@=kH@(1@jH@1@iH@1@fH@`1@zeH@1@dH@ (1@qcH@= 1@`bH@ 1@aH@ 1@` aH@1@`H@1@@g\H@41@[H@ 1@@ZH@o1@`[YH@1@XH@\0@ XH@ 0@ 8WH@0@QH@e0@4QH@0@ePH@`0@NH@@0@ {]H@0@\H@0@dH@@ 0@gH@`^0@]H@@0@PaH@/@`jH@@/@@QpH@\.@`/~H@Q.@xH@M.@@-H@-@`H@-@!bH@-@dH@ f-@jJH@,@ RH@ ,@IH@U,@@NH@-,@VH@ +@dH@ N{+@pH@R+@rH@;++@|H@?+@@'}H@+@ xH@*@`H@ b*@nH@?h*@IH@@^M*@H@ *@`/H@)@H@ )@@H@ R)@H@ )@ H@F(@ H@\(@`GH@(@H@)@`H@(@H@`L(@ H@(@H@ 1u(@U I@h(@JI@ 1(@I@E(@#I@@/(@`)I@/ &. @HK@L.@@L@ '3PY#@mK@m#@pK@#@`sK@g#@jzK@7#@QxK@#@|K@@D#@@…K@@eG#@@K@"#@ΊK@ \$@yK@ h%$@pK@#@mK@?h%@\K@4%@jK@ t%@pK@\%@sK@%@eK@%@ K@@%@kqK@`z%@^K@?h%@\K@@;&@7OK@-&@@_K@p%@1dK@ &@hK@@d(&@@.gK@@ 7&@`GiK@ &@ >qK@`&@wK@xv&@|zK@-'@mgK@""'@kK@I'@ sK@ '@@iK@,'@@_K@M'@ZK@w'@@?XK@`'@@RK@@;&@7OK@O!@JVL@ !@\^L@.!@`0eL@}R!@gL@K!@#qL@N!@|L@!@ %oL@@w!@qL@!@iL@t!@ dL@@=!@XL@O!@JVL@v8%@8K@@'}%@K@UU%@ϹK@@ӆ%@K@``%@K@7%@K@|%@@K@ %@` K@{%@`K@%@K@#$@ K@O$@@?K@w7$@@ۗK@ #@vK@#@K@%#@K@[#@`K@#@K@N[#@IK@#@@K@@D#@K@ $@`K@@X%@rK@1$@K@ N$@@.K@@-$@rK@$@$K@W3%@`˽K@v8%@8K@@A'.@$K@ b-@DK@ %_-@MK@e-@K@-@@oK@@-@K@D.@sK@L.@iK@@A'.@$K@r{'@9K@,Y'@` K@`/V'@K@ v'@K@|s'@@?K@1T'@ K@n?'@DK@ y'@K@ b'@K@'@K@ '@K@'@MK@ '@iK@/'@K@M'@@WK@@(@`GK@`(@ K@'@JK@'@K@L(@K@`0(@`K@#!(@@-K@(@K@'@ K@` '@DK@,9(@ L@t(@vL@ )@` L@`r<)@UL@)@K@W3)@!K@ )@PK@@(@8K@)|(@BK@Fb(@ K@t(@K@(@K@(@`K@ (@K@ #(@`AK@ (@ K@n(@ِK@X(@K@xV(@{K@?(@aK@`X(@K@`$(@ {K@`'@`K@`l'@`xK@`'@uK@@^'@`xK@$(@sK@8(@@qK@V(@ikK@`'@aZK@'@TK@'@HK@'@PIK@n'@ `SK@h'@_K@@|'@rK@j'@ wK@l'@ zK@T'@ =zK@h'@ |K@Ʊ'@K@<'@`K@'@K@`'@jK@r'@`ݍK@`'@ѐK@'@ K@p'@{K@r{'@tK@K~&@ K@`x&@K@{&@ OK@SW&@@ìK@8&@ OK@5&@K@m&@K@`)[&@ xK@`B&@K@(&@ ,K@L&@\K@L=&@9K@@%@`K@+&@UK@I%@@K@@N&@K@>&@K@TV&@`K@ɯ&@K@@ۿ&@K@@P&@ K@'@*K@'@K@]&@K@ &@9K@x6'@@K@'@{K@'@QK@r{'@9K@#@lK@@"@`iK@ !@:tK@Zp!@rK@P!@`muK@L]!@K@!@`K@` !@ >K@ @K@ @@ۏK@S @vK@"!@K@!@)K@T!@K@a!@3K@F!@K@2!@vK@G @K@@= @K@@҇ @kK@-x @@K@? @K@ @K@. @K@L] @K@@ @K@|S @K@@n_ @K@ @*K@I @`L@J @8L@H @`K@O: @L@@ 6 @L@B @w'L@AF @JL@c @ XL@n @ZL@y @XL@dh @QL@@ @JFL@' @@FJL@j"!@PIL@@@!@B=L@ t!@=L@?!@@GL@\!@NL@@#!@`ZL@:!@2[L@!@eL@#"@egL@X"@[L@@M"@PL@x"@ DLL@@ "@HL@M"@ fNL@@n"@QL@|"@mOL@m"@@FJL@"@DCL@@"@9EL@@n"@ HL@"@@GL@@Ѩ"@ SL@@"@YL@\"@UL@@a"@ ~YL@@z"@]L@X"@SfL@l"@mL@@T"@qL@|"@{L@"@@XL@#@L@d(#@ {L@3S#@L@I_#@L@@ #@L@#@`L@(#@ yL@آ"@L@|"@mL@*;"@L@m "@L@o~!@`yL@X!@ >yL@%!@`hL@t @'eL@ @r[L@ !@`[L@ !@WL@6!@PL@(!@JL@ @!bL@ @bL@ @ZL@{ @ZL@| @eL@ @L@+!@L@@A!@L@"!@L@"@ڏL@xv"@ L@"@@WL@ #@ `L@H#@L@ $@BL@%@@L@=J%@ fL@$@`L@p$@L@$@`L@%@@L@%@`L@ $@L@`$@ L@v$@ ;L@@ $@ L@@u#@L@$@}L@Љ$@ guL@M$@ _L@ \$@[L@i$@YL@ Q$@:\L@@#@QL@@-x$@$XL@@^$@XL@ +$@RL@$@NL@;k$@FL@s$@>L@1t$@EL@@j$@ LL@ V$@ CL@@Xr%@ CL@7%@CL@%@`8L@?%@#!L@ h%@BL@Sw%@`L@V%@`0L@a%@L@`I@%@9L@M%@L@&%@`L@` %@ L@$@`GL@ %@ L@$@L@7$@L@ô$@L@C%@@!L@$@9%L@7p$@iL@`f$@L@7$@jL@b$@`K@M$@K@9$@K@#@K@@n#@#@K@l#@kK@`#@5K@"@൐K@#@`K@o"@`qK@@ #@`ăK@.#@ԅK@zt#@~K@>#@rK@?h#@3rK@#@lK@uy#@`iK@t:#@@qK@K#@tK@24#@`vK@#@lK@0` >D@%@@µE@ j)@iD@a&@ >D@'@*D@{'@`kD@"'@ r+E@;(@OSX:E@')@a:E@E{)@DE@@!)@ϥ-OE@JM(@@eOE@@(@@uQE@|(@SE@(@ CUE@(@`nWE@(@EξgYE@C\(@`kYE@O(@Z1kYE@*P(@ lYE@O(@:lYE@~R(@03^E@k(@@_E@(@@_E@(@?`E@`(@`E@>(@`E@(@n|1aE@q(@{fE@ (@fE@(@gE@(@hE@(@@vhE@J(@`hE@ l(@`,iE@(@GiE@(@>iE@c(@7iE@ϑ(@݈kE@dO5)@kE@`M)@lE@@)@lE@)@mE@`n)@ mE@@#!)@/nE@#)@` nE@&)@mE@))@1mE@󵃚,)@nE@ ,]-)@`fnE@.)@nE@ 0)@oE@Y1)@oE@ |3)@6pE@5)@?pE@P9)@HpE@<)@PXpE@&=)@*1pE@a'H?A)@@pE@GA)@-#pE@)(KA)@0ƲqE@ wB)@@+rE@@B)@`rE@A)@isE@@)@sE@`>)@)tE@'=)@tE@;)@ wE@`n?)@PyE@@C)@{E@ G)@}E@ K)@6E@O)@@E@S)@ՄE@W)@%E@[)@lE@_)@E@c)@` E@g)@0EʏE@ j)@KE@(@@µE@=J(@E@@'(@@E@@'@ ~E@d'@ஆE@O'@zdE@{'@`HPE@'@CE@@ '@`_DE@'@VE@1&@TE@ 9'@`0mE@/'@E@%'@2E@,9'@ &E@`'@ҟE@`&@`xE@&@ 6hE@%@bE@@d&@@?`E@@'&@5QE@32&@!E@'%@D@%@@D@P%@#D@1&@`D@I&@D@a&@1`N`ff.@vNA/@ N`ff.@ [N y.@N.@N3/@NA/@N@'/@vN.@N .@N`ff.@2 uQJ1@Q3@[iQ@P3@HQ>83@Q`=3@QT3@WQvX3@ MQ3@@Q`>3@Q3@eQ@z3@Q@3@Q3@Q3@@Q`3@Q3@@uQ x3@OQ`3@Q3@Q3@iQ`3@Q3@~Q3@yQ@ 3@@mxQ@3@@2xQq3@@pQJ3@5QQ@PY3@NQ`]3@iOQ2@@Q&2@@Q1@cQJ1@VQ@1@Q1@NQ@X1@@2Qk1@XQ1@_Q 2@Qv2@ :Q32@@vQ}R2@BQ#q2@Q`*z2@Qފ2@ uQ̛2@@"Qɟ2@Q`2@ }Q`R2@pQ2@Q`02@Q2@iQ@P3@3V@jR? '/7>KV@iV@.Vff }V`qV k@"V@ QV@ף@V@yEV`SۿVؿV`qԿ@"Vʿ@2Vnȿ VV@$@3V`@V @V@2V'?@V0u?@V`N??Vd?V ?@V%Vq̿Vۿ@uV K~kVV@*;(Vb%V`PV@ IV@I߿JV@ݿVҿV пQV+տ Vyݿ IV@I߿%V` ؿcV ֿҷV PпŲV` ÿV@ ÿyV]nϿ8V cӿ%V` ؿVŢV` 8V-V-VgE߿ VV@jVF^V2MhV ΫNgV J@*WVN@OV@drXVFF^V2 TJZT<+T@: T `tTO`S @dSZT; T> TfTพ@TS TJ@S);?#S@O?ۣS-?KS@*? S`W?zS6?xS?@sS@?mS?iS~?@"jS ?bS@? }^SL? eS?iSCD?S/?S?@R߬?2R ?BR`/?R@RAR~@ Rmÿ2R R`ƿ@R jͿJRݿR@߼ RRRgE@R`M<Re@Rt : Sx@T*S USu`yS/7`ЍS S |s &S  @dS" Sg 9SC @S`a ™SeS^MFSz5SD@S%ŪS@<iSaźS Sm`*S@jSSt@2SBF S`!`S * S@S=S ƒS]T@  :TdT`lTQyT;@TETwaTeT@?T^ @ T`+T@ @ TD ZTD ?T@] T `T T @TΫ T T > @2S&SS\@SŽSTS*;`S S@S@`SS&S؂@S`-Tf@T  T mT@SS`lbTT>i`Ss{T@TV@ T T |@T@@mT T+TA':T\@@T6P@;T@6Tf_0Td.T 13T c6T|@4T0T`rZ9T O:T@n5Ti'T`Av$Tz?T@ dT/Ti$TL]@CTT@ƒT?T7׿.T@6ԿMT̿T0ſT <+z?Tg?~T`a?@T??@T v?S'}?JS5?S?@S5?@|S`a? S?bS ?S ?S?NS@?S`?S@z?S? IS@'?ԳS?@S);?4@`մ8@ %5@A@ ?@`A@R?@/"A@\7?@'A@?@@-A@`>@s2A@@>@@9A@` >@$@A@@.>@BA@>@EA@n>@`OA@V>@ yUA@9>@@W[A@>@``A@>@eA@` =@@jA@=@\nA@`=@@nA@=@esA@i~=@`iA@`_l=@_A@ NK=@ZXA@ #=@IWA@<@QA@<@RA@C<@OA@ <@@MA@<@ ?BA@@K<@ AA@y<@=A@@Qx<@4A@GQ<@@9A@b)<@ 8A@7;@*A@;@"A@ ;@!A@ ;@@?A@@;@` A@;@`GA@@;@@@@4;@ @@@' <@ @@*<@@?@@ NK<@t@@GQ<@`H@@k<@@@@<@1@@<@`ě@@<@8@@i<@@@*<@ `@@ V=@@@ =@r@@;=@h@@l`=@9]@@z=@D[@@=@Y@@`=@M@@i=@?J@@=@ I@@M=@@@@@=@:@@B=@?@@@'=@ 3@@=@+@@=@8@@}=@H@@a=@'M@@N=@`R@@'=@@-P@@@=@`S@@4<@`@@`<@sj@@@<@ q@@<@ O@@ht<@`@@kQ<@@W@@@/<@|@@2<@|@@Z<@@@@];@w@@@;@` @@@;@` @@;@@@#;@8@@ \;@@@;@R@@`դ;@w@@@ ;@ @@`;@U@@@p;@ @@@ V;@@@l@;@@@@';@7@@:@$A@ :@`q@@:@ ,@@@:@@@Ѩ:@A@d:@/A@ 9@PA@Ô9@`pA@9@wA@ 8@@A@8@sA@;8@ךA@`6p8@@A@8@A@@X8@A@ 7@@A@7@A@`_7@ԽA@`67@A@@]>7@A@ 7@ A@ U6@ |A@=6@ `[A@I6@A@@X26@ A@@~5@@@@5@|@@@U6@aj@@`66@|@@@6@1t?@5@` ?@ +6@M|?@d76@p?@ r;6@c?@46@ G?@5@?@@5@b>@6@@ڰ=@@5@ =@@U6@<@6@-<@ 6@L;@m5@:@ %5@F:@5@9@5@9@@U6@H9@`y6@@8@h7@m8@.9@@8@:@9@;@m8@?=@ H8@=@8@=@48@`/=@`8@ =@`մ8@ '>@8@;>@8@ׂ>@9@`>@n8@t)?@8@Fb?@8@ m?@ 9@?@\"9@ ?@-9@`?@R9@`6?@9@`?@kq:@?@`:@p?@:@r?@ ;@j?@W;@`^?@@QX;@X?@`m;@ O:?@@Q;@`05?@`;@;?@`*;@t?@6<@@?@`h<@@?@`Y<@>@`/<@?>@!=@@>@`,=@1>@L]=@>@`=@`>@=@l?@`=@B%?@=@3?@>@J?@@W>@:L?@+>@`D?@$>@8?@m/>@b9?@@ @`D?@M>@0V?@Y>@@o?@ &^>@Sw?@:\>@@?@w>@t?@r>@~?@>@p?@>@?@>@@z?@@>@i?@@>@b?@@^>@l?@>@b?@>@@p?@i>@Lm?@ U>@r?@g?@?@``?@ |?@`Y!?@1?@>@?@ V$?@`?@V?@`?@k?@Ct?@?@vx?@@ ?@?@?@ V?@@@ef?@S@@M?@` @@X?@ ?@rk?@o?@?@2?@?@?@8n?@?@Ri?@ ?@[?@?@H?@ x?@:?@ ?@`3?@@X@@w7?@@h@@@ ?@` @@ ?@P@@?@@@<?@z$@@ ?@@p%@@:,?@#@@@?@)@@ yE?@v(@@@XB?@ ~1@@`8?@ ~A@@@?@O@@?@ =j@@ N?@m@@?@ &V@@ ?@b@@* ?@`k@@?@9u@@b?@I@@ ?@`N@@`?@*z@@?@߃@@'?@`@@#1?@ؑ@@"?@Ƒ@@ ?@ ,@@@X?@I@@t?@l@@$?@@@@$?@@p@@?@Z@@*?@A@;?@`A@R?@5 ņV5P*@@U@,@A@VV ,@HV,@aBV``,@@=Vl`,@&:Vj,@55V s:,@3V@/,@@1V F,@@+.V1,@U*V<,@M Vw+@NV`)+@V+@ V+@V+@Vq+@rV@'+@@U@+@;U +@U f+@@Uע+@ "U +@U*@ U*@U@*@U@*@BUv*@U`}*@U`d*@^U5P*@@ V Q*@V@ W*@@V@!b*@`\V V*@V\n*@@!V{*@ }&V*@.V*@&Vh*@#V@J~*@VT*@.Vu*@=V*@@CV`r*@RV*@dV@+@sV@^ +@0vV6+@Vzt+@V@}+@ņV+@fV@+@vVq,@7oVT,@@oV*,@ZiVAf,@_V {,@dV,@kcV`,@@eV`դ,@dV,@bV-,@aV,@ZYV@,@@VV ,@6 "@`? 1&@@ $@V@`X%@W@@F&@PY@&@` ? 1&@`?n^%@= ?`$@`?#@ v ?#@CD?Yq#@?/V#@P?>)#@ף?+#@?f#@g$?"@@b? "@?9#@b?PY#@!"?DD#@vw?P9#@~?#@ ?#@`@#@@#@`@ $@V@7+ 8B@O(@`ՏE@@G2@s5D@%/@'C@5/@$C@a/@@hD@F/@* D@R/@sD@ v/@C@`){/@C@`/@ %C@?/@@C@@/@`D@?/@kD@)/@D@/@ D@Z/@` D@ē/@D@/@D@Z/@BD@`G/@`#D@@N/@D@QX/@ xD@@e/@(D@c/@ 4D@E/@5D@%/@jD@յ+@D@ +@W.D@F+@ID@+@2]D@ľ+@D@+@ 2hD@#0g+@eK/D@Iz;F+@D@@+@_E@D+@sE@ +@ E@h+@ E@DyEF+@ E@E+@|E@J+@ =$ E@P 9+@E@7+@E@++@E@N@%+@`L'E@} +@UE@ -+@r6E@rQ.+@DE@ V4+@ E@O+@$E@@$+@Ռ%E@S+@@i'E@` +@q(E@*@ޮe+(E@U\*@vO(E@¹%x*@+E@@*@&/E@`9*@`/E@P*@h/E@*@1E@ ]*@N32E@S'k*@g*@IHE@Rne*@]E@@*@]E@$23_ *@_E@`*@`E@@)@`_`E@@)@3J`E@*s3)@TXbE@vK)@cE@9)@VHDcE@/(k')@@eE@)@iWVchE@eM)@`hE@`H)@ckE@6)@ mE@_)@+mE@ )@`xE@)@`HE@)@9E@@)@/ E@Р)@zE@͢)@E@`׏)@AI&E@Q)@ǏE@k)@ȏE@k)@`ՏE@`j)@0EʏE@ j)@` E@g)@E@c)@lE@_)@%E@[)@ՄE@W)@@E@S)@6E@O)@}E@ K)@{E@ G)@PyE@@C)@ wE@`n?)@tE@;)@)tE@'=)@sE@`>)@isE@@)@`rE@A)@@+rE@@B)@0ƲqE@ wB)@-#pE@)(KA)@@pE@GA)@*1pE@a'H?A)@PXpE@&=)@HpE@<)@?pE@P9)@6pE@5)@oE@ |3)@oE@Y1)@nE@ 0)@`fnE@.)@nE@ ,]-)@1mE@󵃚,)@mE@))@` nE@&)@/nE@#)@ mE@@#!)@mE@`n)@lE@)@lE@@)@kE@`M)@݈kE@dO5)@7iE@ϑ(@>iE@c(@GiE@(@`,iE@(@`hE@ l(@@vhE@J(@hE@(@gE@(@fE@(@{fE@ (@n|1aE@q(@`E@(@`E@>(@?`E@`(@@_E@(@@_E@(@03^E@k(@:lYE@~R(@ lYE@O(@Z1kYE@*P(@`kYE@O(@EξgYE@C\(@`nWE@(@ CUE@(@SE@(@@uQE@|(@@eOE@@(@ϥ-OE@JM(@DE@@!)@a:E@E{)@OSX:E@')@@#9E@ )@%7E@ l)@'5E@(@ *3E@`(@k2E@:(@0E@(@ n0E@(@"E@@AG)@`!E@J)@!E@M)@ !E@N)@ E@P)@E@zT)@E@[)@E@d)@E@ q)@E@u)@`E@v)@YE@M|)@dE@)@E@ )@`fE@)@E@)@`_E@`)@E@Ȑ)@OE@ Œ)@E@`)@@E@Q)@`E@)@@]E@))@ E@)@ E@`)@ mE@ h)@.E@ )@E@b)@'E@)@`E@)@E@@^)@PE@ \)@E@Z)@8D@ 1)@0D@@-)@;D@߻)@ D@E)@D@@A)@`eD@x)@D@Q)@JD@)@@ D@ %)@@^D@@j)@'D@)@D@)@@ED@/)@ D@@P)@D@)@XD@ )@D@ *@`6D@Z*@D@1*@ D@T*@D@,*@@D@&*@`D@#*@&D@?(*@D@0*@`_D@ 2*@D@s2*@D@4*@D@w7*@D@`=*@ D@l@*@`GD@bI*@`D@@N*@`6D@S*@8D@$`*@@D@h*@D@`l*@`D@ y*@`D@Q*@|D@ *@@D@*@ D@=*@`D@*@ D@Ʊ*@7D@@3*@`D@` *@@D@*@` D@)*@2D@n*@D@*@D@*@@]D@*@(D@`5*@D@@X*@D@`*@D@@*@@D@$*@`D@*@@D@*@`D@@*@`ʶD@*@gD@*@7D@ +@pD@ +@īD@`5+@`GD@+@ D@r+@9D@I+@D@`#+@D@`$+@ D@*+@`ʞD@ \/+@D@@X2+@̜D@5+@D@`;+@*D@L=+@D@F+@D@9M+@D@O+@QD@~Q+@ID@X+@ӖD@]+@&D@`la+@`D@`ff+@D@&~+@D@?+@HD@`+@D@+@ \D@W+@`ʎD@+@gD@@+@0D@ +@D@`+@`D@v+@LjD@ݾ+@D@`+@D@`+@`D@@d+@@ D@+@`D@+@ =D@`+@YD@+@D@`+@o~D@+@}D@7+@{D@@P+@2{D@+@zD@+@ tzD@`+@ yD@j,@`$xD@ ,@@wD@],@vD@ ,@htD@,@` tD@,@@rD@!,@ ,qD@&,@ oD@,,@nD@.,@mD@ 1,@lD@U5,@ 2lD@6,@WkD@t:,@OjD@@@,@fiD@`E,@?hD@ bJ,@fD@`N,@@ fD@`P,@ UeD@P,@cD@`S,@_D@vX,@XD@p],@TD@@_,@TTD@@ `,@2SD@l`,@ QD@`la,@ nOD@c,@ ND@Cd,@KD@ g,@2KD@i,@JD@j,@`HD@m,@ FD@p,@8FD@@Xr,@CD@/w,@BD@ +z,@H@D@~,@>D@#,@C@ -@C@@-@C@@-@ C@l-@`C@`,@βC@ N,@@ڰC@Q,@`eC@/,@C@S,@@4C@),@C@,@ C@L,@@ C@,@`C@`,@ C@`/,@C@z,@C@,@C@R,@YC@`,@C@,@࣠C@@,@ C@,@`%C@n,@C@`,@C@\,@;C@,@2C@,@ ؚC@,@XC@ ,@tC@-@`C@A-@C@-@dC@ y-@`$C@ -@@ɗC@`-@`C@-@/C@`C%-@`C@&-@|C@@33-@PC@M<-@2C@`?B-@C@@jC-@`C@G-@C@;K-@C@K-@ ҇C@`K-@.C@J-@C@@I-@0C@ bJ-@ C@@K-@ ЃC@ qO-@ C@ qO-@C@M-@@5C@K-@`C@E-@ فC@jB-@FC@2-@ ǁC@--@bC@+-@C@)-@HC@(-@@C@@A'-@`~C@#-@`x~C@ !-@ {C@-@FzC@-@vC@-@uC@-@@uC@ \-@LuC@@^ -@tC@-@ VtC@`f-@sC@-@rC@`-@OrC@l-@oC@@',@nC@,@`MlC@,@|kC@p,@jC@`r,@XjC@@,@iC@,@liC@w,@`%gC@@,@eC@ ,@`;dC@ R,@@EcC@7,@`C@ \,@_C@ ,@._C@,@@]^C@,@]C@ ,@OZC@,@lYC@,@WC@,@/VC@,@UC@,@`C@,@`=C@t,@@=C@`,@;C@`/,@`<;C@ 1,@@9C@,@`8C@,@H8C@,@7C@,@ 6C@;,@5C@@^,@ U5C@7,@@4C@Z,@2C@,@ 2C@ ,@1C@,@0C@,@ /C@L,@@,C@ -@`+C@-@*C@@ -@j*C@ -@)C@-@(C@!-@@v(C@&-@Q(C@)-@I'C@70-@`&C@@2-@%C@U5-@@$C@7-@#C@@<-@"C@&>-@j"C@@@-@@4"C@F-@ ="C@ VT-@!C@`Z-@`~!C@[-@ m C@`^-@AC@#a-@C@a-@C@`la-@@4C@b-@ C@c-@`4C@c-@C@c-@C@ b-@C@Ga-@ C@`-@@]C@_-@*C@`]-@C@&^-@dC@l`-@`C@`d-@`M C@bi-@C@ p-@C@ r-@XC@Qx-@ C@M|-@C@ԅ-@`GC@`-@B@@-@@B@ -@@^B@-@0B@ -@ UB@/-@`B@@'-@@B@-@B@`-@`B@ Z4,@@^B@/7,@@5B@M9,@B@ N;,@ B@<,@B@>,@OB@dG,@@4B@`5Q,@ B@/W,@`B@Z,@@4B@ \,@B@K^,@@ɿB@`I`,@LB@`d,@;B@ g,@ͻB@@i,@B@l,@2B@ 9n,@B@q,@ B@,@༺B@C,@aB@ ,@B@,@ nB@=,@ B@`,@`xB@`,@B@,@9B@@X,@ B@@-,@B@`,@jB@`r,@`B@,@jB@ V,@B@,@`GB@t,@දB@ݾ,@ B@,@ B@ ,@` B@,@ B@,@`MB@`5,@ͫB@`/,@ B@t,@}B@,@B@,@B@,@धB@F,@.B@,@B@,@ UB@d,@`B@?,@@B@,@!B@d,@B@,@QB@ ,@`eB@C,@ CB@ ,@`B@`,@B@ ,@ ,B@d,@B@`f,@B@@j,@`%B@G,@ B@,@`MB@@,@ B@@,@ŒB@l,@lB@,@HB@),@ ҏB@t,@TB@3,@@^B@;,@`B@=,@׋B@n,@`B@,@|B@ ,@ċB@,@NjB@@,@͋B@,@``B@@',@ΊB@Q,@B@1,@ B@Ȑ,@B@,@.B@ ˍ,@yB@,@B@,@ tB@,@@#B@,@ mB@,@`B@,@`~B@`f,@{B@,@zB@Z,@!zB@S,@yB@`,@xB@`,@ vB@,@uB@`r,@`MtB@L,@sB@n,@rB@ע,@lqB@,@oB@h,@@oB@@j,@@mB@,@rkB@@,@ jB@,@OjB@@A,@iB@ ,@hB@ ,@JfB@@j,@yeB@ ,@dB@l,@@bB@ ,@_B@,@A^B@`,@`\B@,@@[B@j,@ ZB@,@`~YB@&,@XB@K,@7WB@n,@UB@,@ tRB@j,@QB@ ١,@QB@ڠ,@`xNB@@P,@MB@Q,@`_LB@/,@IB@T,@IB@x,@HHB@@,@GB@,@?EB@LUu ,@EB@ ,@`UEB@@],@DB@.,@_DB@$,@CB@,@ CB@ DZ,@CB@,@ BB@i,@BB@,@kBB@ ,@`4BB@,@AB@,@AB@,@AB@ \,@@~AB@-,@GAB@-@ AB@ -@@B@@}-@@B@N-@[@B@$-@`$@B@ ,-@?B@5-@@?B@>-@`?B@=C-@?B@@eG-@J?B@ P-@ ?B@X-@>B@a-@>B@ j-@@]>B@Ws-@&>B@)|-@ =B@Մ-@@=B@@-@p=B@x-@:=B@J-@`=B@@-@` .@`PB@ .@`$PB@.@PB@`E/@GQB@` /@`QB@/@QB@`/@@}RB@p/@SB@&/@SB@./@@;TB@w7/@TB@$@/@pUB@`H/@@UB@@~Q/@VB@OZ/@.WB@b/@`WB@k/@@mXB@@Vt/@XB@}/@PYB@/@[B@c/@ ]B@5/@Q`B@/@x?aB@/@5pB@4j߇ 0@ qB@5!0@`qB@%0@ԈrB@6(0@>OwsB@hi</0@VtB@@20@uB@@50@o tY2uB@fEc60@9uB@ 70@ ::uB@W 70@uB@?80@uB@@u90@BvB@O:0@vB@ *;0@7wB@<0@`wB@`<0@RxB@^=0@xB@@>0@ lyB@`>0@ &yB@(?0@U|B@C0@x{B@Ø*P0@{B@P0@`{B@`Q0@!{B@S0@zB@T0@@zB@gU0@@+zB@xV0@yB@ W0@yB@X0@`~yB@aZ0@PyB@[0@YyB@]0@cyB@J_0@`~yB@`0@yB@`4b0@yB@`c0@zB@0e0@`4zB@f0@XzB@@h0@ tzB@i0@<+iuzB@ 1i0@C zz@zB@5;n0@=zB@n0@BlzB@ Zn0@^xB@$R[r0@$xB@`r0@ wB@ s0@@wB@t0@vB@@u0@ovB@@v0@`vB@w0@ uB@`vx0@uB@y0@tB@z0@VtB@ {0@sB@@|0@sB@}0@csB@c~0@ `sB@~0@7`sB@ "~0@!sB@`$0@rB@0@ rB@0@rB@ 0@rB@ T0@`rB@0@rB@ u0@@3sB@ϊ0@isB@ ;0@`sB@0@sB@ 0@sB@`# #ʏ0@tB@`0@'v1tB@:_0@tB@0@ uB@`U0@`UuB@0@uB@0@@EvB@ɿ?z\0@ dˀB@8,0@B@0@ B@h0@cB@@0@ ǁB@0@ "B@ 0@@B@0@Q'B@_0@B@0@뒂B@o}0@aB@ 0@`فB@@0@ lB@p0@@#B@`0@`,B@0@O)]B@Ìe0@h*߫~B@[0@~B@0@q?U~B@sDd0@S~B@k0@ET~B@Cϝo0@~B@0@`~B@V0@B@g0@tB@GE#0@ OB@1@HrB@/8`& 1@@mB@c 1@B@O 1@B@` 1@.B@`M 1@~B@ 1@~B@1@렶~B@}1@@~B@ 1@K~B@TK~1@~B@`1@.B@1@wB@1@WB@1@B@@31@ B@1@ B@1@gB@1@ԅB@ 1@ KB@1@kkMB@p?1@MUB@yǞ 1@׋B@@ 1@`B@p 1@`^B@ 1@B@`M 1@@]B@r 1@@B@ 1@%B@ 1@B@1@\ 6B@>6M1@WeB@31@B@21@G❢B@11@UDB@<1@gB@1@ B@1@B@B1@%B@1@@B@1@[B@ 1@`,B@-1@B@Q1@@ؚB@@1@@B@ 1@ 2B@`1@ B@`1@B@1@B@ T1@wB@B1@HB@`f1@B@1@B@@e1@ "B@ 1@B@1@B@ 1@@B@` 1@B@r 1@B@ ; 1@@B@ 1@pB@ 1@@B@ 1@ B@%1@IB@1@@B@ 1@B@1@@٩B@`n1@`B@@1@`B@1@B@o1@ìB@ 1@`^B@ L 1@@B@ 1@`B@_ 1@`wB@ 1@-B@@ 1@@ѰB@ 1@B@ 1@aB@t 1@@3B@@+ 1@@B@ 1@B@ 1@@B@` 1@B@` 1@JB@` 1@72GB@&1@ \B@.'1@@B@ d(1@@B@ u)1@`B@*1@@B@+1@UB@,1@{VĴB@N.1@B@@.1@eB@F /1@!B@/1@B@P1@dBRB@oڵP1@B@P1@@#B@Q1@B@R1@@+B@iS1@ YB@`{S1@`B@S1@B@S1@@B@ |S1@@LB@@S1@B@hT1@B@U1@@ B@U1@B@fV1@-B@W1@`B@W1@cB@?X1@B@@X1@B@>Y1@iB@`Y1@ B@Z1@B@OZ1@B@Z1@KB@Z1@ B@`<[1@@B@ [1@B@[1@cB@[1@@"B@\1@B@@;\1@B@\1@B@`\1@ CB@@\1@B@]1@B@:]1@B@]1@ dB@]1@@#B@^1@B@8^1@B@^1@/mEB@l^1@,B@%_1@B@ \_1@BmB@-_1@{.B@χJl`1@t/B@m`1@|4B@ʻxj1@5B@@j1@>B@`Ml1@B@'m1@3+B@̬m1@dB@a&ws1@@B@ |s1@B@t1@hB@` v1@B@w1@ CB@w1@B@x1@xB@@y1@@ B@y1@B@=z1@`$B@z1@`B@`<{1@NB@n{1@`B@ {1@aB@{1@B@`<{1@`B@@z1@B@y1@hB@x1@B@ Sw1@=z{yB@e}v1@QB@5q1@SB@q1@pSB@0kq1@H>fB@M ^r1@HgB@Nr1@'B@"4Jv1@RB@ww1@@B@Rx1@`,B@Py1@B@az1@B@`{1@OB@q|1@B@p}1@B@o~1@|B@1@`B@[1@B@1@ B@1@ B@X1@/B@1@`B@`1@JB@V1@`B@Մ1@QC@y1@C@1@@uC@ӆ1@C@w1@`C@@1@C@1@`C@1@)C@O1@C@1@@LC@1@noC@;TL1@`C@M1@y\C@XL1@C@`M1@C@̌1@%C@ L1@C@1@`C@1@ C@ L1@X C@ߌ1@* C@`1@ C@1@ ; C@@<1@h C@ Љ1@@D C@?1@ C@ӆ1@u'. C@ ^1@ Zt^ C@G|1@_ C@|1@|̌&` C@Z!|1@KC@Z{1@(jƶC@M{1@GxC@+Oށ1@C@1@C@h1@C@ 1@cC@.1@`#C@@v1@C@`1@@C@@<1@@C@q1@`C@̌1@C@ߌ1@iC@1@VC@q1@C@1@^C@1@S窵C@$1@C@1@@YC@=zs1@C@1@ KC@ए1@C@`ɏ1@`C@1@RC@%1@C@`1@C@`1@v&7C@{gj1@kwC@wg 1@!C@#9D 1@`"C@:1@/@p~C@ :/@`0C@t9/@6P/sC@OW8/@]C@2/@C@l0/@`ԸC@70/@@ŸC@'/@.*>ԸC@(G&/@ғ"C@?}?/@|˨C@Nw /@ yC@/@`NC@ /@rC@.@bC@Y.@C@ b*.@`C@!`(.@`C@L.@@C@-b.@2'JC@ʚD.@zQC@uE.@C@.@C@ʁ.@*C@.@mC@ĺ.@EC@.@MFC@TU.@ C@.@{`C@W}L&.@C@ .@C@4A.@FrC@.@)C@ .@pcG+C@b.@xC@.@C@`.@`C@@.@u?fC@+x2.@QC@@.@ D@@.@1hw D@z-.@ D@.@O^D@FM.@iD@`zo.@]D@`.@)YID@ *2.@)D@y.@D@2 Wu.@D@u.@ OD@ n.@!|D@"$x_*D@s+@jD@յ+@85@ L@`1<@M@*@9 6@`qL@$6@^L@5@L@%5@ gL@` 6@ M@}26@@M@j5@`H M@`<5@&M@5@ &M@5@*M@05@+M@ 15@@?(M@5@,M@6@9-M@@5@:M@5@@M@$6@@AM@ 6@5M@`6@5M@P6@=M@26@SFM@=6@ ?M@tI6@@BM@`eG6@IGM@'6@`PM@>6@sJM@%6@ OM@`k7@tKM@dG7@:M@zD7@6M@(7@ U=M@S7@`-M@6@0M@6@)M@@W6@"M@6@`Y!M@6@M@@6@`M@`d6@M@wG6@`M@36@8L@9 6@`qL@6@ WM@?x6@ZM@y6@``M@r6@DkM@a6@qM@6@uM@ 6@QxM@P6@)M@6@ xM@@6@وM@ײ6@M@@6@@-M@ 6@@}M@M 7@lM@7@iM@6@jM@j6@cM@6@`NcM@D6@hM@6@hM@6@@FZM@6@ WM@<@`M@+<@ M@`1<@@M@`o0<@M@<@`M@ <@oM@@;@M@o;@@WM@;@M@@;@LM@;@qM@;@@M@;@@p~M@\~;@ pM@@Pl;@@fM@@;@4M@ ;@ L.M@v;@@&M@ ey;@ aM@;@M@`];@` M@@<;@M@z;@M@ ;@=M@ò;@`L@ ;@@L@ (;@L@3;@L@);@L@;@L@;@ L@2;@L@Ն;@L@i;@eL@ d;@VL@=j;@uL@g;@L@ Y;@;@ LL@R;@ L@;@`BL@:@BL@ :@#L@`I:@@L@F:@`L@:@L@*:@ uL@`:@$L@:@qL@@:@L@@g:@L@@u:@` L@`L:@`BL@ (.:@@gL@ :@qL@`R:@L@ :@L@ :@L@(9@L@˿9@@.L@o9@LL@`Ó9@L@9@`L@ v9@HL@k9@M@@*Y9@M@@1M@<8@"M@%8@"M@M8@M@7@)M@``7@`_,M@7@DM@7@`GM@`~7@XM@7@@_M@7@@p]M@7@@fM@m7@@aM@@ 7@`YiM@ j7@tM@@]n7@@?xM@E7@:|M@ 7@PM@s7@{M@?h7@aM@`n7@M@7@M@7@்M@@v7@jM@ł7@9M@7@`˝M@ 7@ M@@ 8@`NM@8@M@8@@oM@@ 8@@M@8@3M@28@߫M@>98@`ݭM@*8@̴M@7?8@`M@Q8@@M@DT8@iM@` e8@̼M@8@ ҷM@I8@߻M@8@M@8@PM@8@`YM@#8@M@@8@@M@=8@`M@@g9@M@ੋ9@UM@@-x9@ M@ &~9@M@@9@ZM@i9@M@9@@WM@%9@ZM@Ʊ9@M@T9@`YM@9@M@9@@M@9@M@|9@ M@ &9@M@:@M@:@@M@:@`M@k;@1M@;@ %M@<@`M@9 ~@@ @ @G@h-@OSX:E@')@ r+E@;(@`kD@"'@*D@{'@ >D@'@D@a&@`D@I&@#D@1&@@D@P%@D@%@!E@'%@5QE@32&@@?`E@@'&@bE@@d&@ 6hE@%@`xE@&@ 0UE@%>%@`)[E@Z%@dE@=$@ hE@ഠ$@ E@@/#@ਛE@D#@E@cH#@ਫE@R7#@ %E@*"@`E@@"@ HE@@y"@`YF@@"@F@ !@G@ @G@ @`5G@@yF@`(@E@*@ E@ z@E@@U|E@@uE@l@sjE@\.@AE@@7@E@@ E@{@@XD@RW@D@ @ D@B@ D@ @@D@@٨D@ 8@D@`ij@`GdD@&@1D@Be@`C@@1C@`9m @C@ @ @C@@-X @C@@h @5C@2 @C@7 @tC@@q @CC@); @`Y9C@ @C@ @B@1 @`|B@/@RB@b@ ?B@b@`B@b@A@z@`\A@}@ A@1@ A@ M@@XA@@`A@2@ A@@@ HA@[@@pA@~@ DA@{@A@@8A@h@`A@ 5q@`A@@`A@`@KA@@A@ g@|A@ @}A@`>@moA@2@`GaA@Zp@`WA@@`@A@{3@B@ ˭+@"9B@+@EB@,@?EB@LUu ,@GB@,@HHB@@,@IB@x,@IB@T,@`_LB@/,@MB@Q,@`xNB@@P,@QB@ڠ,@QB@ ١,@ tRB@j,@UB@,@7WB@n,@XB@K,@`~YB@&,@ ZB@,@@[B@j,@`\B@,@A^B@`,@_B@,@@bB@ ,@dB@l,@yeB@ ,@JfB@@j,@hB@ ,@iB@ ,@OjB@@A,@ jB@,@rkB@@,@@mB@,@@oB@@j,@oB@h,@lqB@,@rB@ע,@sB@n,@`MtB@L,@uB@`r,@ vB@,@xB@`,@yB@`,@!zB@S,@zB@Z,@{B@,@`~B@`f,@`B@,@ mB@,@@#B@,@ tB@,@B@,@yB@,@.B@ ˍ,@B@,@ B@Ȑ,@B@1,@ΊB@Q,@``B@@',@͋B@,@NjB@@,@ċB@,@|B@ ,@`B@,@׋B@n,@`B@=,@@^B@;,@TB@3,@ ҏB@t,@HB@),@lB@,@ŒB@l,@ B@@,@`MB@@,@ B@,@`%B@G,@B@@j,@B@`f,@ ,B@d,@B@ ,@`B@`,@ CB@ ,@`eB@C,@QB@ ,@B@,@!B@d,@@B@,@`B@?,@ UB@d,@B@,@.B@,@धB@F,@B@,@B@,@}B@,@ B@t,@ͫB@`/,@`MB@`5,@ B@,@` B@,@ B@ ,@ B@,@දB@ݾ,@`GB@t,@B@,@jB@ V,@`B@,@jB@`r,@B@`,@ B@@-,@9B@@X,@B@,@`xB@`,@ B@`,@ nB@=,@B@,@aB@ ,@༺B@C,@ B@,@B@q,@2B@ 9n,@B@l,@ͻB@@i,@;B@ g,@LB@`d,@@ɿB@`I`,@B@K^,@@4B@ \,@`B@Z,@ B@/W,@@4B@`5Q,@OB@dG,@B@>,@ B@<,@B@ N;,@@5B@M9,@@^B@/7,@ >B@ Z4,@B@Q,@ B@,@B@`-@^B@@-@ B@ B-@B@1T-@`NB@ 9n-@@B@-@B@Ϊ-@`B@Z-@ B@h-@&B@-@ B@)-@B@`-@B@U-@@B@ -@B@ʮ-@XB@-@@B@ b-@@B@G-@`-@#C@@<-@@$C@7-@%C@U5-@`&C@@2-@I'C@70-@Q(C@)-@@v(C@&-@(C@!-@)C@-@j*C@ -@*C@@ -@`+C@-@@,C@ -@ /C@L,@0C@,@1C@,@ 2C@ ,@2C@,@@4C@Z,@ U5C@7,@5C@@^,@ 6C@;,@7C@,@H8C@,@`8C@,@@9C@,@`<;C@ 1,@;C@`/,@@=C@`,@`=C@t,@>C@,@?@C@ 1,@@C@z,@ AC@,@BC@`,@ DDC@`,@`FC@,@HC@`),@ JC@ ,@LC@@,@MC@,@`6PC@,@QC@,@RC@ h,@`C@ -@`C@ -@C@E-@ C@ -@`C@-@@C@`C-@&C@-@C@`5-@C@3-@ =C@-@C@ V-@@EC@ -@|C@-@ C@M-@C@!-@hC@#-@C@A&-@oC@&-@`%C@`C%-@C@`-@2C@-@C@`-@`C@Z-@TC@ -@C@@ -@C@J-@?C@-@`C@-@`C@@-@C@-@`wC@ ,@-C@@',@ C@M,@ NC@t,@;C@,@C@,@`C@`l-@`C@`f-@WC@`-@` C@-@ C@-@JC@-@C@ -@.C@@-@@vC@r,@ C@O,@C@O,@FC@ N,@C@r,@C@O,@9C@,@C@W,@C@`,@@C@,@DC@`,@C@,@`MC@M,@C@,@C@,@C@,@dC@ N,@C@@',@ =C@,@C@`C,@zC@d,@C@,@C@!,@D@@,@jD@,@`D@,@D@,@`6D@b,@ D@@,@O D@ ,@` D@,@p D@,@AD@,@D@,@ mD@7,@ jD@`V,@` D@,@ 1D@,@"D@t,@p%D@@X,@&D@,@ 'D@ \,@ \'D@9,@ 'D@;,@P)D@ ,@,D@ ,@L-D@x,@ m0D@,@0D@,@F2D@ ,@`M4D@,@6D@3,@8D@7,@8D@,@`59D@`,@:D@Ɋ,@ ;D@,@D@#,@H@D@~,@BD@ +z,@CD@/w,@8FD@@Xr,@ FD@p,@`HD@m,@JD@j,@2KD@i,@KD@ g,@ ND@Cd,@ nOD@c,@ QD@`la,@2SD@l`,@TTD@@ `,@TD@@_,@XD@p],@_D@vX,@cD@`S,@ UeD@P,@@ fD@`P,@fD@`N,@?hD@ bJ,@fiD@`E,@OjD@@@,@WkD@t:,@ 2lD@6,@lD@U5,@mD@ 1,@nD@.,@ oD@,,@ ,qD@&,@@rD@!,@` tD@,@htD@,@vD@ ,@@wD@],@`$xD@ ,@ yD@j,@ tzD@`+@zD@+@2{D@+@{D@@P+@}D@7+@o~D@+@D@`+@YD@+@ =D@`+@`D@+@@ D@+@`D@@d+@D@`+@D@`+@LjD@ݾ+@`D@v+@D@`+@0D@ +@gD@@+@`ʎD@+@ \D@W+@D@+@HD@`+@D@?+@D@&~+@`D@`ff+@&D@`la+@ӖD@]+@ID@X+@QD@~Q+@D@O+@D@9M+@D@F+@*D@L=+@D@`;+@̜D@5+@D@@X2+@`ʞD@ \/+@ D@*+@D@`$+@D@`#+@9D@I+@ D@r+@`GD@+@īD@`5+@pD@ +@7D@ +@gD@*@`ʶD@*@`D@@*@@D@*@`D@*@@D@$*@D@@*@D@`*@D@@X*@(D@`5*@@]D@*@D@*@D@*@2D@n*@` D@)*@@D@*@`D@` *@7D@@3*@ D@Ʊ*@`D@*@ D@=*@@D@*@|D@ *@`D@Q*@`D@ y*@D@`l*@@D@h*@8D@$`*@`6D@S*@`D@@N*@`GD@bI*@ D@l@*@D@`=*@D@w7*@D@4*@D@s2*@`_D@ 2*@D@0*@&D@?(*@`D@#*@@D@&*@D@,*@ D@T*@D@1*@`6D@Z*@D@ *@XD@ )@D@)@ D@@P)@@ED@/)@D@)@'D@)@@^D@@j)@@ D@ %)@JD@)@D@Q)@`eD@x)@D@@A)@ D@E)@;D@߻)@0D@@-)@8D@ 1)@E@Z)@PE@ \)@E@@^)@`E@)@'E@)@E@b)@.E@ )@ mE@ h)@ E@`)@ E@)@@]E@))@`E@)@@E@Q)@E@`)@OE@ Œ)@E@Ȑ)@`_E@`)@E@)@`fE@)@E@ )@dE@)@YE@M|)@`E@v)@E@u)@E@ q)@E@d)@E@[)@E@zT)@ E@P)@ !E@N)@!E@M)@`!E@J)@"E@@AG)@ n0E@(@0E@(@k2E@:(@ *3E@`(@'5E@(@%7E@ l)@@#9E@ )@OSX:E@')@:N`qK2A IdM s+JiM JM J~M#JMJEM&IM I@LMIMM@I MIMMI`MI bM [I M@IM`I~MBI~M@IM IM@I M7I@M I,MIMI0~M@I`wMŻIÌMI pMInM@I`lyM IOMhI4JMIVM`IoFMI I@M>IGBM`$I.7M'I0MI$M6I5!M@I MIM I`M`I^%MI+M@I`-M`I!M`ILILiI LüI`L I CL@KI + MIYMIMNI`LfI`LGI`*LI@LI` M`IFM I6MI&M`TI@;LM IoM`IwM yI{M I|M`1IdMI QM@3I@LMM-J`UM@J>QMBJVMJ]M 9JlM@LJ`*sM` JwM@ JM J.MI ޥM JM@|J MJM J໓MJMJÄMJDM J`0M@JM@JpM)J>MJMJ`MJM` J4M*JM s+J3 B`qK $B`K+BSK=B#IK;BMDK|CBn?KNB`BK@gB`9KkBO2KsB.K@nBD,K`B +K@RBQ K໳B"K4B 8KBK BK JBiKBK`B=K`B KBAKBOKDBU K`B KB0K`BKYCKC>K`B mKdBK 'B@KB]K]BK@B@KK`ؒB K~BK z}BF K2B0K`}B`KhB KvhB`}K^B K$PB.K`lQBK`ZBK`ZBnK@GB [K@VB s#K?B@3#K`?B,K7Bn'KM,B@K.K2BK B$K` B?0KLB/K`B8KB?K; B hEKB@IKYA`TFK A@YK2AaK`rAhK B@aKAOjK bA&nK3 B`qK@|KNJ@3SNJ mXNJ`hN JM\NgJNcNJN JqN`JhNrJ_N`J`lNIGN CI:NDI4NID4N)I`BN ILMN In?NI8NI`9NI@1N`I@;,N`0I&NIN@IN ID,N`}I@:5N IIgENoI=RNIPQN 9I`;NI NiI NGINI>NIAN [I$@N ޽I +2NeIy5NINN^I`RN&I>N#IN`IMI` NI@|N I`$M`~I \M`+I MI@MiI`f@$3`>f@3@@Ef@` 3 |Ef@3Lf@`2 Of@@@2`Of@`3Jf@w3 If@2 Ef@@3XFf@@$3YEf@ )3-Df@@!3Af@Q)3@f@@C2 7f@82)f@23(f@61 +f@1 +f@ 1@-f@1-f@ڰ1Z,f@R1@.f@K14f@o19f@@3c1:f@@:m1 =f@f1`>f@`h1-Ff@@M1Hf@^1`Hf@/g1Gf@+z1@If@n1Kf@@y1Nf@ ލ1@Rf@`Ƣ1'Sf@1Rf@61 Sf@@j1Rf@01 eUf@!2 QVf@@ 2`Rf@W#2Qf@`2Nf@S'2`)Kf@2@Af@ C2@f@@C2aXf@Z1hVf@1@7Sf@ ?0Pf@@0 SOf@0Pf@`0Rf@0Rf@0Qf@@0Qf@Y0MTf@ i0vVf@ͬ0@Xf@@c03Zf@@@0k_f@@@x0@kf@d0lf@@i0@mf@~Q0sf@@p>0`xf@`.0xf@;0f@'0zf@N[0 6tf@Յ0arf@0]of@#0qf@|0$~f@@v0k}f@\0{f@@0d|f@ 0v~f@`0 {f@0yf@,0`tf@@0rf@]0 nif@`I0bkf@L0hf@02df@70 cf@0 af@0``f@ 10^f@ 0h\f@M0 Yf@v0aXf@Z1=3@ M@@Y?@@Q@*3@ > N@3@ N@n3@!N@@P3@\&N@@3@ N@@43@N@n3@1$N@@ 3@{+N@3@`'N@ 3@,N@3@23N@p3@,N@ 2$4@ O*N@@ G4@`#N@+4@N@4@JN@4@UN@@4@'N@4@@-N@@ 4@`/&N@g4@!N@`3@a"N@ 24@7N@3@:N@!3@ %N@N 4@ N@@ 4@{ N@ 13@r N@3@ > N@y6@`M@l6@` N@6@N@k6@jN@`q6@`NN@s6@N@6@N@6@$N@6@N@@6@U N@q6@cN@`6@ N@y6@`M@<@pQ@<@|Q@`5a<@@tQ@@P=@@PmQ@rK=@_Q@I=@]Q@`<@;OQ@<@IQ@t<@GQ@ <@RCQ@t<@`:Q@n<@@8Q@޼<@ 8Q@J<@`4Q@@X<@0Q@gu<@8"Q@@X<@_ Q@``[=@@GQ@=@-P@S>@uP@`=@@`P@ O=@P@=@@P@g=@bP@@X"=@P@x=@P@@3=@@QP@(=@%P@@Y=@`P@c=@P@`_=@`P@J=@!P@=@@.P@@X">@@nP@@>@jP@A>@:lP@=@iP@=@gP@=@dP@v=@wcP@ =@@`P@@ۿ=@AVP@@P=@PP@@=@ OP@ =@NP@=@;KP@=@IP@@=@ HP@ =@@_DP@;=@v@P@=@|:P@ N=@`3P@x>@@2P@Z!>@10P@!>@ /.P@5>@ +P@ ->@l(P@=@}%P@>@"!P@T>@P@9 >@@P@'>@@P@@\>@vP@>@P@`܎>@ P@7>@@ P@L>@P@@d>@P@ ~A>@`O@`5>@ZO@@ >@O@ N{>@`BO@w>@@­O@e>@O@@42?@O@$@?@O@`fF?@O@@Y?@`tO@n?@#aO@C?@ AO@>@@ O@)'>@ N@- >@yN@=@(N@@=@ZN@=@஖N@T<@ UN@<@{N@m<@sN@v;@FN@T;@tIN@);@FN@l;@@N@@ ;@ x>N@;@ =BN@N;@@N@H;@ ;N@|;@`@N@y;@)8@N@8@`N@8@N@`7@*M@7o7@M@z7@@N@͋7@`N@ 1u7@N@X7@M@67@ ,M@@7@ M@`6@ M@I6@ M@a*7@kM@(7@ gM@ A7@M@V7@N@Q7@2N@97@`fM@&7@wM@7@M@@97@lN@@7@N@ 7@N@`6@` N@#6@`NN@7@|*N@J7@9-N@h6@1N@6@@pN@}r6@IN@6@0N@#6@`.N@z6@<3N@I6@`/N@@-6@77N@6@`8N@5@BN@`f5@@XBN@5@`N@75@ >N@ U5@BN@ ,i5@JN@@w5@MN@ 1e5@QN@@Z5@@WN@@q5@5YN@`c5@@_N@ Q5@ xnN@`_l5@nN@l5@ sN@K5@UN@{5@N@Io5@ϑN@75@N@=z5@N@``5@ `N@5@N@@q5@iN@5@߳N@ \5@ஶN@l5@N@`/5@@N@5@ N@ |5@` N@J~5@tN@`e5@`N@M5@2N@`5@@oN@o~5@ N@`5@N@%O5@wN@?5@N@c5@O@S5@@-O@@ G5@`+O@`D5@ 3O@`515@@*O@05@*2O@ 5@ 3O@ 5@ FO@45@KO@l5@ULO@5@ VO@`6 5@`WO@ 5@]O@5@ cO@ \/5@zdO@p=5@@.oO@^5@mO@`fv5@yO@lp5@@pO@` 5@vO@`5@aO@ʮ5@̓O@Ǡ5@ O@~5@O@n5@O@5@௝O@@5@ O@ 5@O@` 5@lO@5@@oO@ 5@@O@5@`O@ 6@`ʞO@a*6@@hO@ G6@`˥O@kQ6@sO@X6@O@Z6@(O@26@O@26@ O@f6@KO@`C6@O@H6@`O@xV6@@XO@vh6@O@8~6@O@@6@@O@ 6@O@A6@@XO@86@PO@6@ O@6@O@o6@O@6@O@`_6@O@@7@`O@`6@@O@` 7@ `O@o>7@tO@@j7@O@^7@`O@ Ue7@2P@)7@P@ɟ7@ P@G7@@XP@ 7@wP@7@@XP@`<7@P@7@P@@7@P@58@ P@@8@,1P@̬8@82P@J8@5P@ 9@3:P@B9@4P@9]9@ >5P@`_\9@:P@M9@9P@`609@`=P@79@@N?P@k9@lY6@5Q@e6@-Q@Z7@@,Q@C47@:(Q@7@-Q@;7@@G5Q@r 8@@4Q@!8@1Q@8@I+Q@@;8@)Q@8@#Q@8@ #Q@@8@&Q@`9@C(Q@@*9@J2Q@}b9@Z8Q@9@h8Q@ %9@@@Q@g9@`9MQ@H9@UQ@9@ 6XQ@a9@cQ@79@@?dQ@9@VhQ@`59@jQ@@'9@`9mQ@^:@ fvQ@u:@{Q@:@@|Q@` ;@!zQ@@J;@|Q@`;@@-Q@@;@@Q@<@pQ@>2)D@@ #@ I@#06p"@D@1"@@FD@>)"@@üD@!@D@\!@ `D@!@`D@!@D@!@`YD@M\!@`6D@s!@rD@!@|D@!!@@D@:!@ D@@-!@ D@@5Q!@`0D@s!@9E@@d!@ E@!@E@C%!@iE@?H!@ E@H`!@"E@u9!@,E@!@`60E@-X!@ ;E@@S!@@E@!@tQE@)"@MTE@@*"@ ZE@k"@]E@ "@`/VE@"@]E@@D"@rE@Y"@zE@@"@E@@M"@E@"@vE@@"@@?hE@"@BME@v#@~HE@"@LE@@ #@ 7E@#@cE@["@ D@"@7D@Ȑ"@`D@"@@D@l"@ D@6p"@D@5@8YI@@?H@ cI@`@eI@ @@^I@`H@ @ LI@p= @DI@  @m?I@Y @?I@Y @8I@ $` @U,I@^ @$(I@ @ -I@`]@@?(I@L@`!I@`@ I@@@a I@@`AH@@_@H@@U@#H@Ʊ@`H@ @ I@k@`I@ch@* I@@ 4@@'H@A@H@n@H@d@ aH@&@cH@@`kH@`Q@@zH@ :@`H@~@H@h@H@"@`H@!@}H@t@@H@@bH@`>@`H@r@H@@=H@`@ xH@ [@H@&@ ̔H@[@`֓H@c@H@`N@,H@@'@ %H@sZ@H@r@ H@H@H@ @H@(@ `H@@ UH@#@`AH@jb @|H@mt @Z{H@@DD @`YqH@@RXH@05@`KH@:@AH@/@`>H@`@`+H@k@@H@bI@@H@v@ZH@ @`G@ Z@G@@ NG@@@(G@@ GG@@G@@dG@T@G@@ =G@ @ٸG@A@௭G@@@G@ %?@:G@ @G@@^G@ @G@@G@PY@n~G@'@vG@@ cG@L@`,ZG@@KG@O@ :G@n@ r3G@0u@ G@J>@ G@L@FG@@JG@`@`G@ @G@ 8@Q G@@`&G@@ D)G@L@`-G@6P@@4G@`ш@@i;G@7/@[7G@L<@4G@`A8@`3G@@@`-G@`@@"G@ ].@G@&@3G@@#G@L|@G@@w@ZG@@'@BF@L<@jF@X2@F@ K@F@@F@n@@XF@@F@@?@F@}@F@f@kF@ @F@`{@ *F@@F@,@@PyF@ = @lF@F@ 6XF@`@}YF@@UF@ S@~PF@`>i@9EF@m@@F@`p@8F@``@95F@J@b)F@&@ F@@@dF@@ > F@@IE@`#@ HE@]@E@F@`E@@QE@`B@@E@@E@@@ uE@@@E@@E@@@E@ @E@@WE@`@E@`'@E@@Ɯ@uE@@@E@@E@Z@E@@-E@@ E@@oE@@E@@@E@ \@.E@-@E@`@ 0E@e@dE@"b@:E@j@E@@`6E@g@wE@`j@ஶE@ @E@˭@cE@@[@ gE@@ E@u@௕E@ $`@`GE@H@)E@`x@ߋE@ @E@@`ʎE@t@7E@Z@E@`@E@Qx@E@'@E@@@̌E@`r@[E@@E@I@ϑE@O@ DE@ Vt@@hE@Xr@ E@I@`E@@#A@E@` @ үE@@`NE@@iE@@@E@@` E@ $ @@E@~@E@K>@ E@>@E@@ fE@@#@`AE@~@ɯE@`@௵E@@w@@pE@@C@E@bI@ E@m@SE@K@E@ h@ fE@&@ǹE@@@XE@`H@@E@?@ >E@'@E@T@`_E@`@E@ @ɿE@?@E@ ?@E@j@ E@g @ E@` @`E@Y@`ŊE@X@்E@`>@وE@@@@oE@^M@ZxE@@K@rE@` @lE@^@`gE@@ &fE@k@vpE@Be@FE@kj @8E@4 @w7E@N@ E@`?iE@9eE@nE@{E@V4yE@ ,E@ `E@ E@ `/E@਋E@`r+E@E@ ѠE@J~`E@@dE@`o E@ @E@#E@ >!F@xVPF@`W TF@zTF@ vmWF@&aF@ų@WcF@sPF@@% XF@ ҏF@@BF@#F@@F@F@F@@൐F@_,`܆F@@J~F@`t`łF@߿@F@ JF@@ F@b F@@G@m$XG@L$hG@4 qG@`G@`I@hG@`i`qG@`bG@@O'G@S@G@@33 G@ \G@sG@ FG@/`G@@wKG@=BG@`GG@m@?G@@<+߳G@,yG@>G@`G@;L@WG@ `G@Oz`G@;LG@`HG@`CG@`q xG@&mG@= G@@K~`qG@8@?G@ G@@TG@~1 G@ G@ @hG@8/ G@ų G@@ sG@H@ (G@ G@ų G@?G@ G@W %G@ *G@ J|G@SG@rG@$`BG@˭ G@&H@s@H@  ?H@k H@. H@ 0@H@@`H@8H@&H@#AH@~$H@^ @o&H@ &H@`K`(H@`E`-H@` O*H@ J`0H@_,6H@8 *H@)5H@`EH@3JH@@DSH@A`UH@ RH@@ WH@ ]H@m{SH@3VH@U`PH@|\H@ @VH@ WH@ ]H@A ^H@@ *bH@`+ )kH@  @WkH@D moH@  eH@6oH@@"iH@`jbH@ %WH@SH@ >IH@ :CH@PH@ƒ XH@ FUH@@"OH@`ANH@>i*JH@`RH@`JH@QAH@O@FH@p=`NSH@ 0`ZH@ 2SH@r`NH@@z5`NH@5TH@,R_H@ kH@`c`vH@`H@L]#H@`H@H@4 H@bٰH@ZH@@H@& H@p`H@@FH@!" xH@4 H@`u xH@Œ =H@!"`H@@'`H@H@H@F@H@8H@ۿ H@X˿)H@X?H@@'?H@@a?` H@r? ~H@ߛ?`H@` ?@H@?tH@? I@?I@G?I@ׂ?I@Q?I@`?!"I@?$I@-? .I@? %/I@5?3I@);?\NI@ 7?nI@`?eI@@?@I@UU@ I@`f@ qI@ @ iI@kA@`I@5@8YI@? NK`@ IH@Q K`(\ @@dKΊ @ J @,KR @KP @KH@h$K >i@.K#@ t*K @|3K@7K@@@z(@ȉ@&)@`1@`)@@@*@` @@+*@@@C*@>@`*@!@*@P@*@@}R*@@x? Y*@`j?`H*@??`fF*@?%~*@1T?@{s*@@?M*@?`*_*@?q*@$?*@`?; +@Y?`3+@O?ʎ+@{?+@4?+@`?%,@"? Q,@S?@hx,@?@;,@8?`#,@`?,@@q?,@W?,@@.?4,@|?$,@= ?!,@Be? +@7?+@?+@¥?`f+@? V+@pſ+@ 2п`=,@ͫѿ@XR,@ֿ@Z,@ܿ,@ۿ`,@v@ -@K~ 1,@,@gi,@O-@ >&,@A@,@,@`,@#@,@DDd,@0u@{s,@Q,@2`,@޼A,@@,,@+@+@ kb`L+@@+@ Vt+@y5s+@'}@P*@r{ *@?@*@L])@Ԇ)@,@ǰ)@ gE \O)@@0 )@ )@|(@?(@ f(@@2)@(@ ' (@!`'@'@+@ux'@J~\'@@t%'@ K'@@P9'@'@Y`/'@#!'@ C'@ s'@4?'@`v'@^MAf'@@U '@T @3'@ `ɮ'@>i 7'@ '@j '@ `c'@`4 `'@@E# &@+ &@ L}&@m tH&@`b`L%@% @G%@@S jB%@x Z$@d1$@ :@f#@a#@@ #@@TvV#@0$@ɯQ$@|&$@ Y,$@j$@ @!$@`I@#@ f#@K#@1}r#@j{#@Ae#@jka#@ |s+#@ y$#@_"@'}@"@Y"@`#@ fv"@f"@j"@("@O"@Y׃"@@ v"@@I"@5S!@%+"@ >"@-ԅ"@ w@"@"@@QU"@k@"@J#@K"@W "@6"@|@"@ Ƒ"@`W@~"@ Ô"@wwx"@`j"@@6p"@`K"@!"P"@s:"@`"@;"@S!@QR!@`W@ۿ!@@*i!@sl!@F!@-S!@ !@!@I!@[ "@h$@"@n:"@2"@Y'"@ \ֿ@"@gK"@ ?"@ M0.+@O. -+@.`h+@.`+@G./+@ڀ.L}+@ $.@+@O-`}+@-r{+@z-@N+@`p-@P9+@`L-S+@`2--W+@@-`D+@,+@,c*@@+=*+@ +""+@`+X+@`ݝ+ *@`+@*@+Ϊ*@Q,r{*@,p}*@@%-*@K-Z*@@t- ߼*@|-c*@`-*@ 9.1+@d.+@l.@*@ք. h*@Q.@*@/*@`"/`*@&/*@n/Q*@@W0R*@Z0*@@0@*@0@*@0@*@A0 *@`0\n*@@p0 *@<0*@ 50ч*@60`*@`f&0@P*@w7/ *@ /`+@.`#*@t.*@(/ \+@/*@w'0 *@"R0*@0/*@G0*@܏0 s*@0.+@Ch`A@\7?@GA@?@ >A@?@GA@v?@.A@^\?@m/A@rK?@/"A@\7?@`A@R?@`%A@@S?@ A@`*Z?@Z0A@w?@>A@?@D`D@`fD@ZG@`E@`D@ E@@ D@@ E@`D@`E@!D@=E@@ED@E@=RD@E@XD@`E@ _D@ E@pD@)E@`D@E@@D@E@@֥D@`E@WD@ME@D@E@D@{E@QD@E@zD@2E@@D@(E@GD@@#E@ HD@כE@fE@ җE@fE@`E@@.E@ (E@(5E@ E@B=E@E@@gDE@@.E@@PE@ QE@YE@ \E@lE@E@wE@$E@`E@]E@aE@BE@E@ a{E@@WE@BwE@WE@sE@E@.nE@E@BeE@`E@@_E@`E@(]E@@E@@RE@`E@`2ME@@ E@LE@@E@oGE@`F@OE@`F@`ROE@ CF@QE@$F@=[E@@>0F@@ZE@\FF@4aE@ HXF@`B^E@`F@-XE@ fF@NE@`vgF@(UE@pmF@$_E@`qF@QaE@vxF@`E@෇F@XE@VF@WZE@F@`MSE@F@`CE@ F@@pFE@@F@BE@ F@=E@F@LE@@F@3E@@F@8E@F@E@F@p E@F@ E@aG@@E@G@E@ G@`E@L G@BD@`G@-E@(G@-D@ u2G@eD@9G@D@@5G@=D@{*G@-D@G@D@`[G@D@@G@@gD@\G@)D@ G@qD@!G@RD@2$G@ D@$G@jD@`)G@ D@q,G@D@ +G@ \D@ L&G@@pD@ *G@)D@=*G@@D@4G@@3D@?G@ײD@@KG@ D@@OG@`D@ lPG@ D@XG@ D@ZG@D@UG@דD@ OG@D@=IG@@֍D@`EG@2D@BG@`fD@`=G@D@[8G@VD@ l0G@`VD@$G@ QD@`G@`D@G@`̕D@F@D@`F@(D@ F@` D@F@@D@F@`D@F@ lD@@WF@ҶD@F@@3D@F@ QD@@F@8D@@GzF@`D@@jF@ D@4iF@D@[pF@BD@nF@@{D@ [F@=D@4QF@`D@IF@ܗD@FF@ܗD@CF@jD@:F@ܗD@.F@ D@&F@D@F@`BD@F@`D@)F@@D@F@D@ (E@D@`fE@ÔD@ E@ҎD@E@uD@ E@`D@E@ OD@E@D@@ԝE@@ӖD@E@`D@ ҏE@`D@E@ID@`E@D@qE@D@`qlE@D@ dE@PD@|jE@@D@\E@D@DKE@D@@E@ D@.E@ D@ =D@D@@D@@ӶD@`D@`D@`AD@`D@@D@D@ D@`YE@D@ E@@D@b1E@D@@GE@$D@]E@D@ ,aE@D@eE@D@lE@PD@`vE@ OjD@5E@JVD@1D@`0E@)D@*E@D@ѨE@D@eE@`D@ E@E|@Oz@ G@@{.@`muK@<s,@J@h,@gJ@Qo,@@0J@@_,@`J@@+@J@`f+@`J@+@J@]+@@J@ ,@ J@@,@J@ +@sK@@ +@K@ +@`K@+@`K@j+@ K@+@K@+@ K@s,@J@@*@ K@@ͫ*@`#K@?h*@"K@<*@*K@ B*@w/K@҇*@`0K@7O*@S6K@``*@K@g$@`:K@ he$@@2K@M$@.K@y$@ g5K@`$@7K@zT%@)K@ \%@e'K@%@`+K@>&@ =2K@"B&@0K@#!&@,K@@/&@`GK@n%@< K@%@: K@E%@@hK@z%@J@%@J@%%@J@w&@K@jb&@`YK@@|&@@J@ ˍ&@@J@&@J@&@@WJ@Z&@J@@;,'@@pK@?'@`K@= (@K@@33(@@K@(@`&K@t(@ =:K@ )@`H8K@)@@5K@9)@ U5K@`/6)@ 3K@ (@32K@L(@@!K@ (@b!K@S(@`$K@`(@&K@l)@@h4K@~)@`0K@ ١)@U,K@)@`7K@7/*@I/K@@d(*@s*K@@XR*@@!K@@*@K@@*@` K@`l+@K@+@@h K@`I+@ K@|+@@pJ@p+@ yJ@+@J@H,@J@ y,@ ,J@,@ J@y,@kJ@`>,@`J@,@J@ H,@ &J@`,@@J@`5,@J@,@!J@7,@@…J@ VT,@|J@CD,@@jJ@׃,@`0eJ@ +-@uPJ@?H-@`HJ@ -@2J@F"-@@)J@9m-@J@b-@ g J@`-@@ J@~-@ 7J@n-@uI@r;-@KI@14-@$I@׃-@gI@ \o-@I@@X-@@ԽI@@{.@ OI@W-@I@_-@ nI@ s-@hI@`#@-@ UmI@9M-@JvI@`#-@`BuI@2-@}I@,@I@,@@I@,@[wI@@,@rI@ ,@IgI@+@`0eI@@P+@`\I@""+@`[I@*@9MI@`*@`RI@C*@aJI@z*@3JI@ a*@v@I@`5*@Z@I@@')@ &6I@)@`/6I@)@"9I@ (@,I@(@ #I@Ѩ(@I@@(@ I@(@ ~!I@@/(@`)I@E(@#I@ 1(@I@h(@JI@ 1u(@U I@(@H@`L(@ H@(@H@)@`H@(@H@\(@`GH@F(@ H@ )@ H@ R)@H@ )@@H@)@H@ *@`/H@@^M*@H@?h*@IH@ b*@nH@*@`H@+@ xH@?+@@'}H@;++@|H@R+@rH@ N{+@pH@ +@dH@ +@\H@@+@tYH@ t+@FBH@+@`JH@*@HH@&*@5H@*@ -H@)@`H@@j)@mH@@*@ UG@#)@`qG@)@G@`*@ aG@W3*@`G@%*@G@`)*@`G@`*@@G@)@G@W)@ rG@b)@ 7G@@;)@JG@`)@@G@"(@`kG@ |(@G@`(@G@Z(@G@i(@`G@hd(@G@ '@G@CD'@1G@&'@G@&@#G@@&@`G@zt&@DG@+y&@mG@ g&@G@6&@G@}%@DG@ %@ G@ N%@G@%@G@}%@ G@`_%@G@%@ G@7$@G@-$@G@$@G@@X$@G@`$@G@V$@ G@`m$@ZG@@;l$@tG@O$@@@G@ ,$@ G@ y5$@@G@;+$@ G@$@G@9#@`G@U#@G@#@ G@#@G@_t#@ G@ 6#@ G@"#@ G@"@G@!@G@!@G@Q!@mG@3s!@@PG@1t!@@G@!@ 7G@6 @`G@@ @G@J>!@`G@i @@G@@`G@`G@ NG@@@G@,y@ G@ @G@ Z@G@ @`G@v@ZH@bI@@H@k@@H@`@`+H@/@`>H@:@AH@05@`KH@@RXH@@DD @`YqH@mt @Z{H@jb @|H@#@`AH@@ UH@(@ `H@ @H@H@H@r@ H@sZ@H@@'@ %H@`N@,H@c@H@[@`֓H@&@ ̔H@ [@H@`@ xH@@=H@r@H@`p}@H@ @jH@`@ H@N@{H@@@@H@@@`I@~@I@@@!*I@ .w@9I@@BI@@ OI@`@OI@n@`\I@L@[I@@`I@9@fI@`V@ oI@ @xI@`@}I@`@9}I@@Oz@jI@~@nI@@@I@<@`ՔI@YQ@@I@K@:I@@JI@@I@I_@I@v@ rI@&@`I@(@`I@@@ I@ $@BI@@@FI@`˭@`I@`@@?I@@I@`g@ =I@2@@PI@`>@ I@R@UI@`3@@J@@@J@<@ J@`5q@dJ@Մ@J@@5@`/J@ C@b1J@3@`;J@@`7J@}@`/>J@@FJ@ @`HJ@"@ PJ@m @ SJ@ $@@PJ@8@ rSJ@eG@QhJ@@@{J@x@J@-@@J@@ J@3@{J@6@J@#@ fJ@`@@J@[@J@jb@`J@`@`AJ@6@@J@@d@iJ@ @J@@ @@J@Q @`J@@S @`J@@n @J@) @`J@@4r @`NJ@@~ @J@ @κJ@ @`J@@v @J@q| @`J@ @J@ʮ @J@!@`J@ @ UJ@@v @ J@l!@UJ@"!@ DJ@ !@`0J@ @J@@U5!@ J@q\!@J@t!@`J@!@@J@A"@`J@&"@J@Q"@ J@a*#@`J@#@`qJ@A#@@oJ@@,Y#@J@#@J@7#@J@@$"@J@"@jJ@!@`J@@!@ZK@.!@ gK@@"@ K@ "@ K@!@`K@@!@K@!@K@ !@@"K@ !@ (K@x!@`_$K@iC!@ #K@2!@@)K@7!@:,K@@Ec!@@-K@N!@0K@@!@5K@"@ y=K@-!@AK@@!@wOK@z!@@WK@+Z!@ cK@@H!@iK@P!@`muK@Zp!@rK@ !@:tK@@"@`iK@FJ `>@@B?TU&@@&@`#&@H`%@@G%@%@<+@%@I߿ %%@`Wۿ 1&@qؿ7&@`ֿE#&@&ѿ`B&@AҿTU&@ Rÿ`NG&@E# 9&@&` 5&@?`f&&@ף?%@Fy%@@K~@D%@`ww?,%@D#?$@1T?`$@`?=$@`_,?`ݝ$@ ?@$@a?;$@@?I$@8?$@ף?Tu#@K]?jb#@K~?L#@`&?`(\#@2?N#@`A?.#@X?+9#@?\.#@O? #@@?$#@ ?#@?#@? "@]M?@"@`VP?S"@ j?"@S? "@`&?@"@@?z"@@?"@?= "@Sv?!@G?U!@?2!@?A!@@p=?/!@ H?@ @Œ? @ C? @`-?@e @?@?@I? {@?`W@xV?@??@ ~?`@`N?@6@0u? @q?!@`` ?@?M@F? @@@?@lY@y?`@{?YQ@#?O@?@h@ 7?֣@@B?{e@?@F@ͫ?E@p?@x@`?`@`^M?@?n?@`?` U@6? 2@@?k@?[@}? @`.? H@@V4?`j"@ $? @? @}?@@@n?@@ lٿB@Œ߿@x@@f@@S@W@4@  @@.s@ U@`o@`>@;Lz@ v@*W@js@ 5q@ *~P@me@{s@/ef@`b@\@@6@ t@H@-w@8F@`*@qz@` \n@[ @J `r@} @ "A@Qm?@~1J@ S `K@?Hj@2b@ k@,yf @`  @F @Be @]@$!@`%?"@8/M"@Lω"@`@"@-X"@~"@[x#@#@@_$@@  $@ @$@&T$@$@u`B%@@ ປ%@@&@G࣠3@ wA@ ><@ID@WCKVeqr4@C@4@@?C@4@C@h4@` C@ w4@C@@Ws4@`#C@[o4@C@`\4@C@@Z4@ C@`k4@ ,C@$4@`(C@4@8.C@@44@;C@Ǡ4@*C@@4@`_$C@ע4@`6 C@4@!C@4@`C@r4@C@8@ wA@D8@`A@;8@@A@7_8@ZA@` 8@QA@ 7@A@ ,7@A@g7@ޤA@@7@`A@@-7@`A@`7@5A@7@rA@`ݽ7@A@7@A@7@`/A@8@A@8@A@C8@`A@H 8@` A@38@`/A@``+8@ZA@@8@`YA@`8@SA@88@A@iC8@A@D8@A@i8@`˭A@`8@`_A@ 9@`A@@^ 9@լA@v9@@pA@@ 9@ΪA@@Ե9@SA@9@IA@9@A@9@`A@:@MA@@]:@`YA@`3:@@A@@4R:@ A@F:@DA@aJ:@ǐA@}2:@؁A@:@`A@9@`ăA@d9@`~A@H 9@ >yA@8@ wA@S8@@?B@@.8@BB@G8@`B@8@B@*8@B@l8@`B@8@iB@S8@@?B@4@C@>I:@ yC@<@1B@H<@SB@@<@7B@;@@B@;@A@;@`A@@X8@B@e8@C@Dc8@{B@4Q8@@FC@ J8@ C@.8@C@58@@C@ *8@@C@ 8@`C@`(8@`"C@8@ 'C@@ 8@\.C@8@i3C@@7@@W3C@`D7@:C@@7@BC@I7@@XJC@ 7@ JC@DS7@aC@s6@ >qC@J6@9mC@B6@`YiC@#6@@oC@7@~C@L7@C@n7@ >yC@ ~q7@vpC@!7@zdC@`7@ `C@7@@aC@@7@SVC@@8@'UC@@-(8@SC@$ 8@`HPC@8@`qLC@;8@`CC@/8@`8C@ A8@C@t8@@C@8@C@l8@\B@@X8@B@``[9@`C@ yE9@C@D9@zC@ 39@*C@39@@C@99@SC@#9@ C@@9@C@ 9@ C@`9@C@`:9@cD@V9@`C@p9@`D@q9@`D@V9@ gC@``[9@`C@ä8@ID@|8@QD@8@i[D@8@eD@8@@_D@ 8@ &ND@ä8@ID@9:@ID@ \:@`D@~:@ D@:@8D@@ :@uD@ &:@ D@s:@`D@!R:@D@S:@ xD@ 4:@nnD@23:@`jD@@X":@dD@:@_D@:@^D@:@iD@Ѩ9@mD@ ~A9@@wD@"9@yD@@.'9@lD@ 9@`D@)8@@wD@8@ guD@8@`mD@ 8@mD@8@yD@e8@wD@N8@MlD@L8@`0]D@7@9]D@7@@dD@ N7@c`D@l7@ XD@27@lHD@ O7@DD@`7@AD@`7@@-8D@@ 7@v0D@F8@1D@ 7@9D@I8@@? D@d8@D@e8@@XD@@]N8@7D@`**8@#D@ 7@`/D@7@)+D@7@`&D@7@D@`7@D@8@D@ &7@ =C@@.7@C@7@D@77@D@`h7@ $D@ Z7@eD@@zT7@D@`z7@`D@m7@eC@7@C@[7@`C@`5a7@`C@@O7@D@6@@1D@6@=D@6@CD@6@kID@6@cPD@`6@QD@6@`GID@6@ UED@S6@=D@Z6@ 1D@@6@/D@6@D@6@`D@6@C@6@`AC@ 6@ C@ 57@mC@W7@`C@ S7@C@@-7@C@ 7@ DC@@(7@:C@ ,7@ UC@57@`NC@87@C@m7@`C@@46@ &C@6@C@6@UC@#6@ C@6@ DC@6@ &C@`6@ yC@@ 6@`C@k7@̄C@@ 6@vxC@ 6@ pC@6@`pC@`6@iC@`6@lC@6@dC@@-7@Z`C@7@PC@l07@SC@O7@`RC@V7@ NC@vH7@GC@@`7@CC@ ,i7@Z@C@T7@ &>C@7@,C@97@@%C@8@5C@@8@lC@ 8@C@7@ C@`_ 8@rB@Z8@B@|8@B@s 8@B@i7@B@7@B@ %7@B@@7@ B@#7@B@ ,7@rC@`07@9C@ P7@`B@8.7@`B@ 7@B@ 6@ ,B@`57@ B@ .7@ %B@ '7@5B@@7@ B@q,7@ B@@P)7@[B@R7@(B@p]7@B@@O7@@B@ic7@ ~B@i7@B@_7@ B@@ 7@`B@l7@`B@M<7@`B@eF7@B@07@iB@@/7@ gB@@X7@௭B@p7@௵B@@ 7@`YB@ 6@`B@D6@B@6@B@@]6@|B@6@@B@6@`B@P6@٘B@g6@൐B@7@B@7@@WkB@97@)cB@@-7@UB@ 27@IB@@'7@DB@"7@?B@37@@9B@27@I7B@ 7@Q8B@@7@AB@$6@@FJB@ 6@bB@@-6@ xfB@@X6@fB@6@cB@z6@KB@'}6@k1B@@j6@y5@`.C@_5@@2C@` U5@ ?C@;K5@S.C@-5@`A&C@5@.C@#5@ O2C@@Q5@6C@`5@CC@@5@BC@L4@@UC@4@@UC@Z4@dC@b4@`/fC@w4@aC@@4@jC@4@nC@4@`qtC@`4@`,zC@``4@uC@5@wC@@ 5@ rC@A5@nC@5@(tC@'5@@FrC@` $5@zC@ *5@K}C@>5@`ʆC@ 5@C@@4@C@j4@C@4@ߋC@4@3C@k4@{C@`_4@yC@ǰ4@C@y4@C@*{4@{C@W4@C@@64@C@` E4@൸C@ 74@ C@@ &4@C@04@ C@`64@ C@ &4@YC@B4@ yC@pM4@C@J4@@@C@ a4@@C@i4@`C@\4@(C@P4@C@d4@ C@@i4@ D@|4@j D@J4@ D@ O4@ D@@4@2D@4@ 8@`D@N8@8D@@']8@`D@8@ >D@8@D@@8@D@`8@ gD@ 8@D@59@D@@K=9@ D@@Wc9@D@@.9@`D@J9@@D@":@KD@`2:@>D@@:@}D@G:@@D@:@ D@9:@ID@HVBRBM@O(T@ ,K[fpw~ )3:HVj@3T@E4T@3@ T@u3`T@ +z3@T@@3 T@@3T@D5R@@5@R@5 ~R@5R@5@R@Wc51R@g4ZR@ 4R@ 9~4@_R@ 8o4]R@n4ّR@` 4@R@P)4R@D5R@U2@ R@F2R@2!S@h2`S@3S@h$3!S@3`%S@20%S@v2'S@3@&S@2 (S@`3A.S@ 3@h0S@@;2/S@`2)S@T2I'S@ 2 S@G2S@q2 S@2$S@`2S@ 2R@U2@ R@*1 R@1R@1@NR@%1@R@@2߿R@2R@2`R@@2R@ 2`R@@32R@2R@\2IR@x&2@R@2|R@ 1@R@I1DR@ 1R@1R@$02nR@02`R@2 R@ 82`iR@`1jR@@A1@ R@U1@R@@;1@R@`j1SR@S1R@xf1R@@Y1@R@*1 R@m04@R@@js4ʮR@ 84R@K4#R@ 4eR@4@wR@v4sR@;4R@ 93`R@@3R@"4R@4R@ʾ3R@ 938R@4`ԭR@m04@R@2S@2@_S@'2S@@2 &S@1 S@Y1ES@1S@ 1S@r19S@1S@2S@@)HXN@H\N@@HeN@"G2kN@G@ofN@`kG `N@ G]N@`GaN@@G']N@@)HXN@`G`N@2lG`YaN@TG =jN@G5yN@ G vN@tGPqN@`G`N@4FN@`ƲF@N@LF`0N@|F@-0N@ QF +N@dFP!N@4FN@EM@E`M@EM@EM@EkM@`E M@E7M@`*EN@4E@-N@`E@N@F' N@F`N@ a FJN@EE'N@=EN@@cE xM@oE@N@\E@N@EM@EBM@\EtM@|EM@@F xM@F!M@ F[M@EM@EM@@EM@EzM@ E`M@}S@3xS@P3xS@:3@uS@ 9>3sS@`Z3@NsS@ 2jS@`<2)kS@K2ZpS@ 1tS@1xS@ 91yS@̬1yS@ 1uS@1YmS@1ekS@ 2jS@ 3S@`3@S@ 3`S@ b3S@13@S@J3@gS@@)3'S@PY3:S@`.3rS@@f3S@ (3US@ VD3@ӮS@ 3S@wJkQ@J Q@eJ@6Q@@jJQ@D|J Q@ 5JQ@@*JQ@ 9.JUQ@@KJ Q@4RJ@Q@wJkQ@ǑFT@@cFT@`lqGT@GRT@ G`T@ GT@`G9T@fVGET@2G8T@nFT@-8F@gT@5FnT@ QFT@nF3T@ F`ݍT@]^F!T@EcFT@ǑFT@ !JQ@UJ^Q@JQ@JQ@@JQ@J@Q@લJ@Q@-J[Q@J)Q@ !JQ@QWS@QH\S@@JQ0]S@Q]S@Q fZS@@rQ5YS@QWS@`DךO@`TD`O@@DԝO@DO@DD fO@qD@O@ DO@D`O@`DO@D@O@@ִDɯO@`DO@DDMO@`DךO@`lI`~T@JT@ aJ`iT@2JT@J@ T@`J`QT@JT@ LJ/T@GJBT@ LJT@AJbT@^I2T@`TI~T@`lI`~T@8 CR@,9HR@ 19@KR@"9LR@@^M9@TR@K9XR@S793ZR@k8ZR@7`iSR@D7PR@;7`NR@`7aNR@8TR@'8NSR@u8RR@@7KR@`!7KR@`6@IR@Y7FR@8 CR@<RQ@M<Q@"<Q@`;Q@<2Q@;EQ@@y;nQ@H ;Q@`T:rQ@9Q@ 89@ Q@ 99vQ@य9 fQ@h9Q@ f9Q@`9wQ@j9AQ@ U9:Q@|9Q@`Ce9bQ@R9ৰQ@ H9Q@L9Q@:YQ@@33:kQ@ (;{Q@<RQ@JPQ@J PQ@JrSQ@ KXQ@5!K [Q@K@\Q@@JZQ@uJ$\Q@J@X^Q@eJcQ@J1dQ@vJe_Q@ aJ\Q@J]Q@ J`Q@`J _Q@LJaQ@\J cQ@dJfQ@J3fQ@ JJcQ@:KcQ@`gKfQ@@{KnQ@VKpQ@]6KjQ@M4KkQ@5QK@qQ@lKrQ@ vKtQ@ &wKwQ@@eK@xQ@oKzQ@@{lKz|Q@tZK}Q@` KSzQ@`[ K{Q@:]KBQ@`hK߃Q@kK@Q@`laKeQ@&K@?Q@`JQ@ĄJrQ@ ^J{Q@`,J8vQ@^JsQ@`IqQ@I)oQ@ sJkQ@IhQ@`IhQ@ J$`Q@d`JVQ@JPQ@5@N+R@6+R@ 6`y-R@֤6-R@6.R@62R@65R@|7`7R@`e8U9R@•8`R@E7@DR@96 &>R@`C6 ;R@`e5@X:R@K6,5R@`063R@@5 .R@5@N+R@@J@xQ@бJQ@JQ@hJ!Q@ JQ@bJ]Q@,aJ@Q@@J@xQ@ IZ`Q@@IaQ@`تI@kQ@`ZI@lQ@I@oQ@ЁIwQ@@IwQ@ QIUuQ@ yIvQ@IzQ@`II zQ@ UIwQ@VIZtQ@kIpQ@qI@qQ@{I]nQ@5yIdQ@ IZ`Q@F6IR@$6@R@6A R@Y6@ R@76@ R@ݮ6 R@K6R@@7`iR@`k7`R@ 88$R@@8]R@G8@R@ 8 R@&8`"R@98"R@Sg8@)R@f8@X.R@@|8 4R@M8w7R@@7`7R@G7 >5R@7l4R@6 &.R@`*6M R@z46R@@6R@@5R@`5R@6R@x6`R@6@?R@&6@R@җ6R@@O6@NR@`P61R@@6@GR@ 16@ R@H 6 R@&6R@F6IR@@T@`ƪ@T@@ս@T@@|T@p@T@?@ T@W@PT@@~T@A@T@@A@T@(T@ V=@T@ V<T@O:@T@H09sT@@8T@w8T@8'T@K8`T@@8'T@z8IT@F"9T@!9T@ +9T@ 97@XT@`e7T@8`T@?7:T@ 7]T@8vT@@7ϱT@$7BT@`B7T@`7T@ 6BT@`f6eT@`_6T@P5T@f5T@N6T@S76T@96@ T@ a{6,T@@47@T@`7AT@8@ T@9T@ <T@H=@T@Ǣ>@.T@>T@@t>@T@ >@T@`=|T@ \@@zT@@tT@`T@@htT@4@sT@`@qT@`@pT@`@mT@@wkT@2@8jT@@)jT@`ww@ajT@-@oT@࣠?5uT@=?|T@ 1=){T@Y=wT@ 9=wT@ 9n=zT@|=M|T@@4b=P}T@wW<T@'=9T@39~T@*K9{T@=9yT@ ?9`tT@r[9qT@w9kT@w';bT@H;{_T@; f^T@z;@]T@@@;@]T@5;[T@ 8?;PYT@7:3bT@)8@hlT@`mT@=85qT@"8qtT@F8}zT@`8|T@@8cT@'7T@@6@ÄT@$@6T@h6{T@5@hpT@26^T@•6VTT@v6@FRT@ 6PT@70MT@h6KT@7$8T@75T@H7@4T@`73T@`7a.T@n8e+T@),8:,T@@8+T@8@#T@`8"T@a8 #T@@7-T@-70T@D7[3T@@ڀ74T@76T@ 87@8T@`C7:T@`6?T@`6@BT@xv5@UT@q5YT@੻4eT@ 3@.kT@4gT@@04hhT@A47gT@74cT@`H4/^T@@4@ZT@ v3dT@P2bT@H2S^T@ a2@^T@|2aT@@42aT@Ue2\T@`1s^T@@2(`T@ 2bT@ (21dT@,2KeT@17cT@@1fT@1@ hT@1`kT@`1lT@1mT@G12oT@E1@lT@ઊ1oT@w1`sT@01uT@{1RwT@t0 vT@0wT@ 0yT@W0{T@b-`zT@)@oT@O(fT@ (@paT@D*`yYT@Oz*=VT@p*TT@/+2ST@g+@vPT@`5Q+OT@@XR,@?HT@GA-HT@@$.@OFT@E.`DT@-` @T@@M- 3*S@3S@7P3S@,I3 S@*3`S@@P3@S@3@S@3@hS@x3S@-3S@@3S@3S@`e4S@`3aS@ 3wS@3@hS@(4@S@ʮ4@ڸS@4@~S@5@S@ 8/5eS@5`S@@5@_S@Y5eS@`35S@'4(S@Yb5S@j5@S@@4S@w4`QS@H4@S@`*5S@`"5S@@_5S@H`5S@`J5`iS@wG5S@@j5S@5S@5ZS@i5ஆS@`5{S@5@zS@D5s~S@5b}S@@d5avS@`<5uS@5sS@`f6mS@6`ikS@ 9n5IkS@ 5@WcS@S5aS@`~5fS@@4B50iS@@e5@-lS@^5`sS@ 5~S@4`S@4~S@4 {S@= 4@guS@'m3|rS@ 53pS@g2hS@M3#eS@ww3JfS@ 3@mS@A4@nS@ i4@lS@ 48nS@4sjS@X4@XfS@>4@cS@{4@_dS@@A4`bS@_4@obS@`m4`S@` 5bS@,4Y]S@H4ZS@4YS@K3@pYS@|3@US@@e3 SS@Yr3#QS@k3[OS@3NS@3TS@2@XS@ b2@US@k2@SS@@cI2SS@r;2@QS@@2@_R@@;V<Q@`T<Q@@4=Q@;=`!Q@` =Q@<ƝQ@/G<@?Q@X<$Q@ U<*Q@9<Q@u<zQ@@:@Q@ {:Q@wW:@Q@Z:Q@O: fQ@ 2:Q@Y2;Q@n;`Q@;Q@@<Q@C<Q@p<@GQ@@j<`Q@x< >Q@< ʂQ@7 < Q@;qQ@;*Q@h;}Q@tj;#}Q@AF;Q@+;׊Q@0:Q@@:1Q@`N:ৌQ@9Q@x69@oQ@t:9vQ@d9`Q@xF9Q@Z9 Q@hT9Q@:9@pQ@`9Q@79 Q@8{Q@@c)7@˅Q@u6@pQ@6׆Q@@_6*~Q@`6@X~Q@~6@6|Q@h6{Q@6@ }Q@6(|Q@6`yyQ@`6HxQ@7(|Q@ 7zQ@= 7 wQ@DD7IwQ@ 6sQ@6rQ@D7@_pQ@07@xrQ@A7`yuQ@^7vQ@WS7uQ@>7pQ@h7]nQ@w7VpQ@ 17nQ@ V7gQ@7@XfQ@ \7keQ@7ncQ@T7@`Q@ 87eQ@L 8[cQ@`T8fQ@ 8`Q@8A^Q@(8]Q@ 88[Q@*8sZQ@UE8H\Q@xV8 [Q@)\8YQ@zt8VQ@ 98E[Q@8@ YQ@8EWQ@8TQ@8ISQ@8 &RQ@'8QQ@8PQ@&8IOQ@`9`SQ@A9OQ@gE9NQ@9sNQ@8LQ@9IQ@R9@?HQ@C9@oFQ@Q89BQ@QH9 BQ@@_9BQ@ Y9CQ@y9CQ@@c9@FQ@@A9EQ@@9`AQ@`C9@?Q@t9@W?Q@ww9 >=Q@$9^=Q@@A9;Q@h9@9Q@`k9{7Q@9Z8Q@*9!6Q@G:1Q@`D:!.Q@:)Q@w:@o*Q@0:-Q@;(Q@ ;@%Q@;@$Q@`J;@&Q@@U;%Q@@9;@N#Q@ 9;@o"Q@`l;@o"Q@@:;="Q@Y;@G!Q@;Q@ ;Q@w;@Q@; Q@";c$Q@u <#Q@ <@Q@O<Q@F< Q@\<Q@C<5Q@K<`Q@K~< Q@Z<@Q@<@Q@ <cQ@ <Q@'<`Q@%=UQ@ 5=:Q@O=Q@=@Q@G1= Q@xF=`QQ@@dx=`Q@`=@ Q@@= Q@ آ=Q@`=Q@=sQ@=Q@ =Q@`=jQ@#>`Q@`5>Q@G>Q@ [>Q@-H>vQ@>AQ@ >@6Q@>@%Q@ +Z>@Q@h> Q@@d>v Q@ +j>=Q@`>Q@w> Q@Gq> Q@ 2t> Q@t>Q@ a>Q@Sg?7Q@@3s?@Q@X?@ Q@ x? Q@`~?`iQ@)l?8Q@)l?GQ@@?Q@h?JQ@˭? Q@?+ Q@"?)Q@@@Q@@Q@P@Q@ @Q@,!@Q@@"*@Q@@&@@Q@6@'Q@@@'Q@:@#Q@3@"Q@ \7@ Q@@dH@Q@.7@HQ@@Q@ @ Q@r @ Q@7@`Q@@8@l Q@z@' Q@n?Q@`@Q@r @@ Q@@@XQ@5 @ P@ @PP@ C@P@ \@P@`@P@@@P@@P@U-@P@@E@P@)D@P@w@`P@`@P@`@`P@@`iP@`@@pP@@P@҇@$P@f@@XP@ @{P@L@'P@@`P@@@P@`@ P@W@P@d@@P@@@P@ @@P@@BP@@P@ J@`P@@)@@P@@VP@@P@4@lP@e@P@`@`P@@P@ Q@`yP@ @ĿP@u@P@@ٽP@@RA@P@@P@`AP@\@P@`@)P@@P@< A2P@AEP@ AcP@ AǬP@AP@` A@P@!A[P@$AҫP@`T&AYP@ J/AP@`2AP@4AwP@d8AήP@@7A P@uAAKP@;A2P@P@dAP@@(AKP@ AP@`A@P@B{P@B{P@B@X~P@@!B|P@ BVP@`}*B^}P@)B=zP@v0BzP@2B >P@@+B̄P@DB,P@@IBP@P@D#=P@HD>P@D=P@ D8P@qD6P@`kzD4P@`XD@.P@dXDD,P@LD+P@$HD` P@ QDP@ 0DP@`-DP@7DP@\?D*P@`CEDP@`OD@P@@gDvP@@DP@ D P@ DKP@`DP@DP@O@5QD %O@`TDO@O[D O@D{O@DO@ӾDO@`BD =O@D O@DO@O@4D*O@`[D O@"D5O@`D@O@ચD` O@`ףDZO@`DO@D(O@@D O@`CD`O@D@hO@`تDeO@@D gO@`D@hO@SDO@`D#O@2D{O@ D O@5D@O@fDͫO@D\O@4DO@`D(O@ ̽D{O@D@-O@D`ċO@DO@@D`O@D̓O@uD@pO@@cDՌO@`D3O@D@O@E@O@ E*O@`E5O@@)E(O@EO@DO@`[D O@]DyO@D@uO@D oO@D@mO@ DtiO@EoO@`1EdO@u)EgO@2,E`mO@ y.E|rO@`$ERwO@*E wO@8E fnO@@LEoO@dHErkO@5E@jO@h4E hO@\?EDcO@ 'FEiO@$HE`/fO@ @EtYO@WKE ~aO@@NE`O@`[HEjZO@uQE`VO@WE!bO@|[E`cO@5YE`XO@hE@h\O@ EaO@dE`/^O@ E ,YO@ eE `SO@KVEDKO@tRE@.OO@`;E KO@ )E`@O@`/E `;O@FE`;O@ ER7O@E#E0O@`'E f.O@|{EBO@|E@N@=E9N@`E8N@mE`BN@໫Ej:N@`E7N@E(N@@Ec(N@@E-N@@E`)N@|E[/N@ 8E2N@ԕE`H0N@:E,N@ zE`-N@E)N@qEI'N@E #N@܏E xN@˦E N@EN@EaN@~EN@`ؚE5N@E`N@@E N@AN@;F@GN@vFN@ FKN@ F2N@`F#N@vF)N@`[xF`/.N@DlF;N@@vF@>N@tbFMN@N@FAN@F@EN@ܯF yMN@F@.WN@F9UN@`[F [N@@RF@YN@@խFTN@`ŻF`MN@໻F@GN@ FaJN@ F iN@H xnN@G N@ GtN@/H@}N@ 4HwN@ zHN@\G1N@`G^N@ GN@G N@G N@`}GN@HO@IUO@, I ^O@IeO@ HqO@`lHrO@IO@I@O@`IwO@IO@?I O@I O@ I`O@`0I O@@I@O@;IP@IP@IvP@IP@@I{P@oI@P@$XI P@<+IS P@ I P@`TI P@ Q I`P@, IP@4 I@ P@I P@I)P@`1EI`i P@2DI P@*I8P@`5I &P@KIP@@γI@GP@`IP@IP@I P@ ̭IP@`NI P@dI P@@I P@I P@`lI P@lIP@tIP@ QIP@`T~I@P@|sI@P@eI@P@ PRIYP@`ZYIP@.IP@IZP@I]P@E;IP@`RIP@|SI P@8I"P@ESI@!P@:UI@#P@ OI`y%P@pIP%P@@rI'P@qeI)P@2LI`Q(P@t:I`*P@ =I@.+P@ MI!*P@dPID,P@|3I$,P@L%I*P@I P@LHKP@H P@HeP@H`iP@I!P@Il(P@H+P@ IK-P@Iz,P@ aI@x.P@-I0P@ H@%7P@I5P@/I0P@ EI0P@<[I@=P@$XI`@P@cI@gAP@|kIGP@@]ILP@dpI@IP@L}INP@zIIP@@cqIjFP@xIEP@pICP@5qI@>P@_I@-@P@@|[I P@IU9P@Ie7P@ J@x2P@ J4P@@I6P@ I8P@SJ:P@ J@.7P@J@.3P@J5P@@{J6P@`rJ`8P@;J*:P@`J=P@uJ@>P@; J`>P@, J@P@H!J$DP@`$JbEP@@JGP@EJ GP@<JJP@JeSP@^J{SP@,JtMP@\'JLP@JSP@`J,UP@(JjRP@G*J@UP@ ?AJKP@d@JNP@9JRP@AJ@QP@HJ@-TP@24J`XP@`IbP@JXP@EJ@.[P@8J0aP@IJ``P@UMJaP@`WJ(`P@`dJ@aP@dJqdP@ UJ2gP@`[J@iP@4bJ`hP@Q`JjP@ &WJ)oP@VJrP@`[JEsP@MdJ kP@EJjP@ 9J`kP@`J!nP@mJrP@sJsP@JnP@ bJoP@@)JsP@`J@sP@ J@FvP@TJ{P@#AJxP@`"JyP@4"J@FzP@ JP@IVP@IP@ zI@6P@fJP@`B&J`yP@@JyP@@{LJ@|P@YBJ{P@`lIJǀP@WJ ~}P@dJz|P@БJvP@J@`wP@|JxP@tJ@xP@١JAzP@LJP@KJ{P@ JB}P@J~P@ӦJ5P@J*P@`IJPP@3J/P@ JP@=bJ@ۏP@P@ I`P@tI#P@@I ڬP@I/P@ I P@@IP@ yI@?P@@fIP@`rtIͷP@ IP@tzIһP@అIP@ I@ܮP@@(I`P@`J,P@ZJP@tJ@ӎP@\JP@ JP@JP@`lJP@`TJ@`P@DJP@`lJP@,J@P@`J`yP@ JQ@dJQ@ JQ@ bJQ@J >Q@@J#Q@J|Q@OJQ@`gJQ@ 6JQ@`Q@@IBQ@tI)CQ@@I@FFQ@tbIHQ@]IsFQ@sIqDQ@hTI@DQ@ECI`yAQ@ bBIvQ@ ?I@Q@<;IAQ@E+I?Q@2,ICQ@,!ICQ@H!I >AQ@%I?Q@`I@g=Q@ bI=Q@$IBQ@ IDQ@`7IICQ@WIFQ@`TVI1HQ@ J?IGQ@hI*JQ@IMQ@IaNQ@ "IMLQ@2JAQ@-(JeQ@@J!Q@ $JQ@`IeQ@@I$Q@:I@Q@ !IVQ@ !3J(Q@ZJ@hQ@~JQ@`lYJbQ@7J@Q@ JQ@-I@%Q@4IQ@ IQ@DI/Q@@IQ@|J)Q@#IJVQ@IJQ@sJQ@ JUQ@`uJDQ@mJQ@sJQ@DtJ*Q@@YJ@Q@@ZJR@cJ@R@;J@Q@`}J@Q@`JUQ@ɯJQ@5JQ@ڨJQ@ѰJQ@YJ*R@JR@dJR@`J > R@dJ@R@JR@`lJR@JJR@`J@.R@`IJR@@J@ R@`J`R@2J R@J@hR@`kJR@`ƲJQ@ĴJbQ@#J)Q@mJQ@JQ@`J{Q@ JQ@@J@6Q@wJ@Q@;KQ@@ K@GQ@LK@NQ@ KQ@JQ@`JQ@:JHQ@ 5K@Q@dpK)Q@@)|K@WQ@K`iQ@KQ@=KQ@KQ@`1K(Q@,KQ@KQ@KDQ@KQ@K >Q@ KQ@KQ@ѸK@`Q@ K0Q@-K@Q@ KlQ@ QiK Q@BKR@7KR@RKR@7PK'R@uKQ@4K Q@|K`Q@ KR@;K R@ K#R@KR@#qKR@ xK@.R@aKsR@gKRR@D|KR@KR@`KR@ɧK@R@໫K`yR@DKR@KR@$KR@`kKR@2K@g!R@үK`Q R@ }Kv R@ bK!R@`B~K$R@;TK`&R@=RKD(R@lK`(R@@oK`+R@|KKl,R@d`K/R@`DKk1R@ HK3R@@iK`0R@uK1R@qMK4R@ QYK@9R@gK ;R@cK`>R@ 'fK?R@4K`?R@K@R@ QKCR@|K@DR@DK@R@@)K]BR@ KCR@KER@ sKGR@UK FR@ K@JR@ 'K{KR@KKR@KMR@ K@OR@`KPR@ bKSR@`KTR@K XR@ʌKVR@•K@XZR@ K\R@KeR@LqhR@ L/jR@K@WkR@KkR@ tL@WkR@@LVlR@@KmR@@K@%oR@#KpR@;K@lR@KnR@PS@@JOPS@LP S@MP` S@VP S@@rTP`y S@@JWPHS@RP`S@`|WP`yS@`[hP@S@xPaS@oP`y S@@ZqP S@ePS@kP`S@ XP S@P@OS@Pk S@@JPS@qPS@PS@@rPe S@@P S@P S@mPrS@ PS@P@? S@Pj S@PS@P@XS@PS@P R@ PsR@;P*R@!QS@v$QS@QS@@bQ S@3QJ S@@/Q S@S;QS@f:Q@S@@TQS@hQ@_S@@rdQ@S@2DQ@S@-Q%S@Q%S@@P]&S@ !P 'S@Q)S@^Q*S@Q@-S@G2Q*S@@Q0S@Q2S@UQ4S@yQ@ 8S@yQt9S@bQ@S@ kQ@S@2Q@2S@:Q@X2S@ QR7S@@ƾQ@9S@@ZQ9S@`Q;S@Q@g=S@VQBAS@`|QCS@]QDS@mQ`HS@QIS@*Q@WKS@UQLS@@r|Q@NOS@@J'Q@JS@mP@LS@^PFS@@bPHS@.P@GIS@@)P)KS@`[PzLS@@PKS@P*NS@7 QLS@`CQ@?PS@EQ@QS@,QWS@P@XS@PVS@P@QS@P@PS@ QPBQS@ PSS@@PZS@@ZP[S@@PZS@P@ \S@P]S@`ώP@`cS@YP@dS@EP@eS@'PB@.T@ h5BT@`XB fT@?B@ T@sB`iT@$`BT@`gBT@ VB]T@ BwT@ A8T@\WAST@q=AT@d8A@T@)AT@2$A T@@T@e@T@ A@T@ AT@3@@T@t@T@@@T@ @)T@&@T@@|#@ZT@@ 7> &T@GA=`T@`lA=T@=T@ =@vT@<`QT@w<@T@<T@=<@T@`f&< T@`p<@gT@K<T@a;T@:`T@9 T@@9T@ :9T@ ";T@?X=T@@A> T@ @[T@@T@IN ('@VNy(@QN ('@Nh(@N(@kN@g(@`N@(@{N(@`)N(@`N'@MN(@Nh(@N(@NF(@ N(@qN`(@@N`D (@ QN (@N (@4N (@N (@ lN4(@N{(@@Nz(@`RNX(@ \N`x(@@N`I(@No(@@>NG!(@$N#(@$N@%(@vN'(@N *(@N-(@N/(@[N@1(@N3(@`N5(@ \N8(@BN`;(@N?(@@NA(@ND(@`fNF(@`N H(@N@J(@NdL(@NN(@NQ(@NYU(@N*X(@`N QZ(@N@P\(@`NO^(@=Nh`(@Nhb(@`N d(@ Nf(@kN`_g(@N i(@N k(@QN@m(@No(@oN`[q(@Nr(@N@t(@N@u(@(N`+v(@Nw(@MN0y(@Ny(@@Ny(@WN*x(@N`w(@N1w(@`NXw(@@ N1w(@RNRv(@N@t(@N`r(@fNp(@N`}n(@N@l(@@N`Di(@N@f(@`VN?d(@Na(@N _(@N)\(@N X(@NsU(@ NR(@8N`O(@`VNL(@fNI(@(N`_G(@NFE(@zNC(@VNN@(@N=(@LN<(@ (N=(@ N"=(@N;(@N@8(@fN`25(@HN`T2(@ 8N4/(@`N-(@zN6+(@8N ((@N&(@$N`m%(@NF#(@N (@ N@(@$N(@vN(@N`(@QN(@N@3(@=N(@N;(@ aN@(@)N(@N(@]N ~ (@N (@ N (@N (@`vN@>(@ HN (@ N ?(@N(@N` (@uN !'@ N'@ uN(@ N&(@N (@`N n(@NF(@N(@N@(@zNo(@@ N`'(@`N`'@QN ('@JMN`f/@N|0@N`f/@N: 0@MNBU0@N\0@NI0@N`0@N`f/@ ^N230@@N90@N@WC0@@UNd0@@xN`s0@ N|0@N`z0@N@`0@NFB0@ߒN@?0@ ^N230@KW@}+@ V@41@^VA1@VA1@V`A1@V`1@V1@VV1@@ǑV@41@@{V!1@dV@1@@"NV1@IV1@@#IV{1@ :IV%1@@"JV@0@@KVy0@ LV|#0@MV`/@>V@/@ M:V/@7V`/@2Vt/@(V r/@@'V`Ce/@ #VW/@#V/@V`/@`#V5/@n'V`/@@&V@^/@@V@/@ V3r/@V W/@V`CE/@*V@3.@@V`#@.@@IV@%.@KV.@IVw-@aNVq-@>IVL-@IV=*-@*SV -@@VV ,@ZYV@,@aV,@bV-,@dV,@@eV`դ,@kcV`,@dV,@_V {,@ZiVAf,@@oV*,@7oVT,@vVq,@fV@+@ņV+@V@}+@@V@+@BVO+@V`R+@kVl+@kV@; ,@@[V;K,@V,@`WL,@W-@@ W9--@@ W-@@ W-@@ W@-@6W'.@ WA.@@W5/@@V/@V20@HVi0@V@W0@|V@W0@ V@30@V:0@ ٙV`*Z0@5V+i0@=Vz0@UV0@rV0@JV`0@HV0@ڼV y0@V@.0@ V 0@@V@1@V-1@VA1@L J?(. y @:!@U)@& @N!@ y @, @@ @ @ͫ @A @r{ @@?!@ @$!@d @`!@@@!@`@@x!@r @:!@` @0!@@< @@N!@ y @`l+U)@n*`G)@U*.)@E#* )@W*3(@)`(@)` )@) )@ʮ)(@CD)(@`C%)(@n(`(@n(`(@Ȱ(O(@2(@(@`'@d(@'(@`'(@ &(@ %&-(@ &`(@)&(@p&@i(@&G(@& '@`N&(@/&j(@%f(@N% z'@@%r;(@@$^(@$ r(@΋$;k(@P#`=(@#\(@RX#"(@U#`lA(@"I(@ް"(@/" (@@;"h(@u"(@c"-)@"(@!ô(@! r(@!`)[(@!(@@ؗ! (@@Щ! R'@g!ZQ'@.7!&@@~! &@A!`L&@$ =&@ &@ B&@ Z&@ ` &@@!`s&@]!%@@W!%@ 4!`%@!V%@O &&@ij L&@V `&@ @P%@@]n $@> @$@@0 w$@@$@ !|$@@%T$@ 2$@@DD f$@4R @i#@5 #@N; )#@F "@O "@ f"@r"@[p#"@ o"@@"]"@ @3"@B%"@z "@`%!@W*!@@dш!@-!@`@=!@`o @ @ \- @L @@}R% @N @@@ @e J @| @ @5q x @ # @C% S @V!b @`m@! @ @ Z @_ ]@@l .@_ `ty@ `O=@!`ty@@L!C@QW!b@@4r!@I@ j!@˭!{3@!`@s!&@@8"@2"@ge"?@h"`@0"`]@@"@R"2@"bt@"@0@ݵ" p@J"O@" @N" @@"D @@"Y @#L| @ "@Y @)# @O#@ @GA#> @@3S#s @ic# @@i# @###!@@# @#@ @/$ @ $ @$j!@S$!@n$ @@u$7 @@$p @$µ @@P%@ܞ @M% @ g%/ @L% @-%$!@$%?!@7$J^!@%!@0%d!@z$%/"@`w%@("@1t%@\"@7P% "@ %%"@?%"@n%Q#@m&#@='#@b'#@C(#@`x(#@)t#@` )k#@*)@S#@h)@_"@|)@"@7)"@ D)z"@`r)"@)x"@* 5"@1*w"@`*,"@˘*"@@Ӧ*%"@`I*7O"@Qy*J^"@`*VT"@ h*^"@*"@@*͋"@W*"@@*"@Q*0"@/+@"@ ,+#@`,+@"#@n+!#@`s+@#@+#@Q+#@K+#@@Z+|#@Qy+n#@؂+|#@ g+#@+#@@^+ #@@G",$@x,C$$@`r+d'$@ ,3$@`O,@^M$@`,, $@D,$@M\,($@`], y5$@J,`fF$@ F,Z$@q, 4$@@^,@N$@@,dg$@,s$@`,)|$@-@P$@@-E%@A-`}$@@3S-%@j-`%@w7- |%@ g-@G%@n-e%@ 1U-I%@`-ic%@/-ـ%@@z-@J%@&-C%@@-#%@`-%@`I`- &@-`%@ -`)%@@- %@@A-&@w-9 &@-&%@2-%@ -%@=-@%@ .%@?(.1%@@%.%@.%@` .%@@- Be&@~- B&@a-@j'@-A'@,['@#,H'@ + V'@`+}'@@P+m'@U+`_'@`k+7n'@i+@(@+@I(@ + tN(@+``k(@ +}(@m+׃(@`sc+(@S+ (@I+X(@m+E#)@`l+U)@M0 %@I+^)@t0 N(@v0`(@50(@_/)(@ .@')@o.^)@ N+ sZ)@`l+U)@m+E#)@I+X(@S+ (@`sc+(@m+׃(@ +}(@+``k(@ + tN(@+@I(@i+@(@`k+7n'@U+`_'@@P+m'@`+}'@ + V'@#,H'@,['@-A'@a-@j'@~- B&@@- Be&@` .%@@.. %@ 15.%@O:.%@.X&@f. Vt&@ w. %@`. \&@k.\.&@p.`H&@`r|.`?&@.K&@t./&@. H&@.&@.`&@Q.&@`. &@.7&@/&@.&@` .'@`.'@@Ӧ.+'@M|.$'@7.='@`g.`}1'@ ^.F'@@E. $'@.`#'@.7'@[0.:'@`B.`S'@EC.`g'@`n.X'@ %_.Zq'@ 1u.`l'@ .U'@`.l'@.`RW'@ –.J'@`5.@\'@@p.\.'@ +.@2'@`.`'@*.O'@`O.i'@Q/]'@`r/zt'@l.`'@n_.`'@(.G'@$ .@'@-.T'@K.'@-K~'@-'@@. '@`".'@ .'@*-'@".}'@@+.w'@`.@'@s.'@.'@.'@ /`'@@A/}'@ +/@'@@/ '@/C'@@/'@@^/w'@/'@~/'@@/'@O/`(@ /@'@@/'@@"0h'@yU0K'@[03(@0=(@X0hd(@Uu0W(@0 N(@N N?FQM`@`wWM@@VLM@@K>MI@ 6Mv@)M@Ô@wL ].@`~L`@`}LU@`LK]@@L(@L"@`pL@-@गL^@ßL x@L @@L @`lL@QL@`7@`eGL,@F?ࣈL/@ ߌL@0@`TL@'?`ʦLó? 1LI? L>??L;+?vLd?La?Lׂ?LI? M2? [ M ?'M@?z,M?@M y5?`M3@ MQ3@WQvX3@QT3@Q`=3@HQ>83@iQ@P3@Q2@Q`02@pQ2@ }Q`R2@Q`2@@"Qɟ2@ uQ̛2@Qފ2@Q`*z2@BQ#q2@@vQ}R2@ :Q32@Qv2@_Q 2@@Q .2@rR@^=2@@%R-2@ 0R,2@4R|#2@@"VR>2@v\R A2@fR62@$lR<2@@"nR@422@rtR@ &2@uR2@rR 2@isR`/2@rxR@2@FR`>2@RoN2@@*RJ2@Rh2@!R2@R 2@R`2@@pR`2@fR@ԕ2@dRi2@&fRq2@ mR2@@"jRm2@[R V2@@C9R m2@@1R o2@.Rl2@r(R@^2@bR2@iR2@@R`*2@@R``2@#R2@_4R; 3@ }2R3@b.R?3@^-Rl 3@!3R 73@1RH3@-RJ3@Q1RgU3@/R7_3@i+R@Qh3@@,Rs3@0R q3@?Rt3@YR3@@u]R`ݭ3@]R3@@ZR3@@MR`03@`SGR 3@o6R3@,Rq3@ R3@-R3@ R3@g R@ۿ3@NQ ҷ3@JQ@Ӷ3@@"Q`ݭ3@Q`3@Q3@@Q`>3@P@VV)@ `T`00@V W/@ V3r/@O V&^/@V`/@U+/@WUע/@@Ut/@VU y/@@;U`/@=Uݞ/@@"U/@UW/@`U@3/@bUׂ/@U 1/@@U`/@U=/@EU@;/@@zU@/@yU/@UC0@`S{U`00@mU3/@jU@j/@ZU@d/@GU/@yAU`/@@IVL-@aNVq-@IVw-@KV.@@IV@%.@@V`#@.@*V@3.@V`CE/@V W/@Qt\@`$6@)\@ 6@ \@ୂ6@@\@@ۂ6@(\@6@@O\@ 6@ז\@ 6@\@ %6@ \@r6@)\@`$6@@gx\@`$6@t\@76@`w\@u6@@3w\@v6@\@ୂ6@R P0@ SF@6@IH@`&6@`4H@ yE6@ 3H@B6@`/.H@Q6@J.H@@P6@)H@!b6@@@H@@6@dH@֞6@  H@@6@H@H6@@ H@6@H@`6@`YH@6@G@ U6@ G@A6@ G@6@ aG@q6@BG@k6@ 7G@ Q6@wG@6@G@46@`G@)5@^G@n5@ G@@Ӧ5@DG@@!5@G@5@rG@5p5@`SG@S5@[OG@ B5@S>G@@K5@G9G@I5@ 5G@`|25@`2G@/5@ =*G@` 5@G@h4@{#G@@4@G@@W4@}G@4@`G@U4@:G@ B4@ G@@J4@^G@3@cG@@3@ fG@3@8G@?3@ %F@'3@\F@3@`G@y3@|G@ 3@`F@`2@@F@2@}F@ 2@F@2@#F@72@F@jG2@ SF@l02@@hF@ 2@!F@ 1@`F@1@cF@m1@3F@[1@@F@R1@ F@@51@ %G@l1@sG@l0@G@Z0@(G@0@+`QLP@T+IP@^+@`GP@@+/FP@@+jJP@A+8JP@*DP@r;+?P@`+7?P@`C,DP@,CP@@2,@AP@7o,@gAP@Q+@P@j+ ;P@{+ f:P@ +,;P@j+9P@+v8P@҇+ 7P@f+4P@+5P@@+c4P@Ϊ+@.3P@ \,2P@ ,z0P@@A,|.P@`r|,,P@,0P@,@2P@,+P@Ί, +P@ɏ,U)P@@,#)P@ \,$(P@,&P@p-M$P@@p,`"P@Ȱ,&P@2-@P@ ~-P@ "-]P@fg-{P@`-@-P@E-P@-RP@-@NP@-@pP@.vP@ 1U.P@q.@P@΋.@P@@.P@b.nP@@p.<P@@.@P@``k/ P@r/ P@`O/P@0&0P@`q0O@-0 O@0O@0O@P0O@0`qO@0O@w0 gO@h1O@q0O@@ڐ1bO@H1mO@w1O@1`O@`1O@ 91O@M1O@Y1O@x1O@r1 yO@1O@`*2 DO@Q82(O@-2O@`N2O@ C2O@ 92O@ 3 O@@3O@+4 O@V4O@@4r4 yO@4O@@o4`O@@4`O@@[~4`uO@O4 gO@`q4 DO@f4`YO@@4$O@4`O@`4@FO@@4`AO@@;4O@4*O@`4`AO@4O@,5O@15`O@@ 5`HO@153O@L5O@45kO@`]5O@ģ5PO@E5RO@QH6O@ 6`O@ ز6 gO@6O@6`YO@t6O@й6P@H6bP@6P@)6'O@5DP@) 6=P@5 P@`5JP@r5P@ 6 P@&5 P@S5I P@`f5 P@5P@`55P@Dt59P@5@P@@5P@ 6P@6P@51P@ 6^P@5@ P@׳5&P@5@p)P@5**P@5!P@`e6Y!P@ 6 P@x6@P@$@6P@ 9>6@_$P@wW6@`#P@`\6 f&P@@p6A*P@ R6`+P@06.P@`eg6 *P@hd6q,P@R6/P@S60P@p61P@Ws63P@x6b1P@@62P@6`2P@!73P@J7@4P@Ȑ74P@77/P@`7/P@88P@y7@W;P@`79P@HP7P@$6@P@6@CP@ 5 CP@Q5`QDP@@5JP@5LP@ 5MP@5HP@"6FP@ 6@KP@@q6OP@ 16TP@5[P@6aP@`-6`Q\P@G6@-\P@Yb6^P@`]6@6`P@p-6AbP@@6fP@WS6abP@`~6D`P@6wgP@>6dP@6@aP@6aP@6 >eP@ 6gP@@j6@ hP@Q6`P@ 6bP@6eP@6S@ @@S@#@@S@@@JS@@@@S@N@@S@Ǩ@@@S@@ä@@S@@@ WS@ H@@S@@@@@S@`}@@`S@s@@S@m@@S@f@@S@`_@@@ S@V@@S@ F@@S@I?@@:S@A@@@pS@ >@@@XS@,0@@ S@`.@@S@K=@@kS@O@@S@Q@@S@I@@S@vH@@US@E@@S@ x&@@ fS@8@@@ܢS@@@S@@@ >S@ y?@_S@?@S@[?@@ԵS@?@S@ &?@|S@?@ fS@{?@S@u?@S@@P?@@_S@bI?@5S@L?@@HS@@(\?@S@@WS?@0S@@Pi?@S@lp?@S@@W?@@`S@@>?@S@@>@`S@]>@8S@@>@bT@>@T@[>@@hT@@κ>@ T@>@T@7>@ T@ >@ T@>@|"T@v>@|&T@y>@AT@@g4>@`;T@n.>@`9T@7>@6T@,>@8T@$>@T@=@@T@`=@T@@=@=T@;=@@rT@ p=@T@R=@T@@O=@jT@4=@[T@@6=@T@A&=@ T@ =@T@<@T@<@@T@@ <@T@`|<@@T@#<@-T@@<@ T@#<@Z T@`<@z$T@I<@05T@`Y<@F:T@` u<@@LT@@^<@zTT@G!<@ XT@ ,<@^T@@<@w^T@ U<@VxT@r;@T@;@T@r;@%T@;@ެT@@ ;@@T@`Y;@IT@r;@T@W;@'T@eV;@@T@e;@@T@y;@@T@x;@T@ +Z;@ 6T@@]^;@KT@pm;@T@s;@U@q;@SU@;@@Q U@y;@ U@ic;@&U@`W;@w+U@:<;@+U@` $;@`9)U@@;@@0U@;@ ;U@`:@SBU@:@@JU@:@@qLU@:@KU@:@MU@ V:@gUU@^:@gU@:@wnU@9:@nU@M:@sU@<:@vU@@:@U@:@`9U@:@ ڔU@9:@sU@k:@U@[:@U@d:@@rU@T:@U@i:@U@Y:@U@`*j:@U@@o:@@U@#a:@U@r:@@6V@^:@V@@]n:@U V@;:@ V@:@U@<;@V@`S6;@DV@@o;@V@:|;@ V@d;@` V@ ;;@`V@;@V@ ;@ /"V@w<@%'V@<@4V@1<@h8V@`;@1V@p};@!2V@$p;@:V@/R;@9V@?H;@@3V@@;@ 0V@%;@5V@@;@7V@;@7V@@z:@:V@:@ GV@C:@!NV@:@ WV@@(:@hV@g:@@gV@:@uV@:@[V@`_:@'V@@:@@V@:@V@`R:@`V@0:@`V@@.:@@V@@:@V@:@V@:@@V@:@@V@:@}V@@:@V@@:@V@`:@V@:@zW@ :@.W@:@UW@@;@W@@;@W@`+;@RW@ ,I;@W@x;@V@j;@V@t;@hV@@P;@FV@`;@sV@@;@ 6V@@;@V@a;@@?W@@;@lW@;@`W@@;@W@`_;@tW@M;@W@@-;@@HW@;@,W@;@@.W@@P <@`a*W@$<@@+W@ &<@[3W@3<@@4W@-<@GW@7_<@JW@r<@nNW@@ڠ<@`cW@`<@;oW@j<@%W@L<@3W@@Q<@W@<@AW@$=@ &W@ H=@pW@S=@W@ G=@;W@*=@W@(=@@OW@=@W@r =@W@ =@W@@{=@W@` $=@W@}"=@W@>=@@X@@.w=@ X@`^=@X@A=@X@ ==@2X@aJ=@KX@`YA=@X@`.=@X@B=@ X@<@ X@ ~<@  X@T<@@X@@<@X@Q=@M X@=@*"X@ y<@%'X@<@r'X@@<@X@`5<@X@ <@X@<@@X@`_|<@X@ Oj<@X@Y<@@%X@ w<@@i/X@@'m<@`1X@$`<@`?X@` U<@`FX@a<@NX@`YQ<@SX@`=<@_VX@9<@:TX@@<@`9YX@<@WX@;@MTX@@;@%SX@@;@ OX@@Q;@@P9X@ ;@B=X@@Xb;@*JX@|#;@ >IX@`;@{?X@}";@ 8X@-;@ 7X@@5;@8X@`5A;@0X@[;@ 'X@];@!X@ NK;@l X@ UE;@JX@G1;@W@ ;@W@:@W@1:@W@ 1:@ W@F:@ >W@`:@W@@.:@YW@` :@:W@:@ ~W@`:@@_W@=Y:@9W@a::@[W@!:@W@ :@`SW@9@@W@H9@:W@`R9@W@`h9@@W@>9@W@ 09@W@"9@W@`9@AW@@8@wW@y8@W@`8@W@@z8@W@ %_8@W@ :8@@ԉW@7@ 6W@7@@XW@7@hW@ V8@`aW@@7@@^W@`7@YW@@8@ NWW@S8@UW@8@TW@ N7@ XW@7@tYW@v7@YW@y7@jVW@7@RW@F7@IOW@F7@`9MW@7@kIW@ 7@GW@`7@`9IW@6@@OFW@6@`GW@6@KW@`m6@:LW@?6@@IW@<6@vJW@16@`CW@@56@BW@`(6@c@W@@6@`?W@ 5@W@6@@OW@>97@W@`H7@ W@7@|W@@47@$W@ 7@@W@7@ > W@`7@) W@|7@@W@`07@`QW@7@V@7@V@D7@@V@z7@V@i7@V@A7@@V@17@V@7@EV@k6@V@7@@V@%7@DV@C7@"V@iC7@@(V@47@@V@7@ V@7@V@_7@ /V@@.7@V@t7@V@7@V@`8@ V@8@V@M8@@V@@.8@lV@8@V@b98@V@&8@VV@`(8@V@9=8@@V@a:8@*V@n.8@@V@@-(8@`V@F8@@V@S8@`V@tY8@V@|S8@`aV@@`8@FW@@`8@W@`j8@W@8@W@ y8@W@?8@@W@8@W@8@W@`9@@W@p-9@1W@.9@sV@#9@V@`059@V@T&9@@V@-9@ fV@&9@V@[/9@uV@@K9@@tV@_9@@@wV@9@tV@ ̼9@@tV@`t9@vV@`9@@@wV@@9@@%wV@9@vV@9@kV@s::@@QhV@ ,9:@eV@`R':@@hV@!:@dcV@`S9@`V@:@[V@9@IV@ V$:@DV@b:@ =V@@4r:@:V@ &^:@?V@U:@CV@>:@@V@`::@@`;V@`G:@8V@@G:@\6V@ N;:@0V@L:@,V@D:@*V@J:@@r/V@R:@l,V@ Vd:@wV@:@V@`:@@V@:@kV@|:@V@s:@1V@@K}:@V@@3s:@@p!V@[:@@GV@@^:@`V@M:@ V@@$:@ V@:@cV@99@@V@@9@! V@@9@zV@9@ fV@ N9@Y!V@@-9@,V@ w9@@p1V@ 29@@5V@Ct9@4V@@f9@@z8V@S9@@_@V@ &N9@@h@V@@.G9@u7@86V@ &>7@%?V@!27@@7V@`07@ W7V@6@J>V@ U6@QT@@0@T@ 0@T@O0@ET@@0@ T@0@`T@@ 0@@nT@O0@|bT@@_0@ ~aT@Y0@YT@!b0@OT@Q0@7KT@0@@?T@੫/@@GAT@ /@@T@`/@t9T@`/@a:T@L/@8T@0@@p9T@}/@3T@n/@3T@\/@1T@ /@w#T@@/@T@``k/@T@@J.@ T@ .@`T@-@` T@Z1-@g T@-@ T@#!-@T@E,@ T@`,@T@a,@@?T@+y,@DT@ D,@T@&+@`T@@XR+@@6T@@d*@ T@*+@, T@@Xr+@ ~ T@ bJ+@T@)<+@@T@`la+@)T@`L<+@@gT@+@T@@*@aT@`*@@T@`D*@T@`L)@ T@@)@cT@u(@IS@@; (@S@F'@8S@&@qS@r&@DS@@&@S@@&@S@ &@`S@`&@KS@ &@0S@ࣰ&@S@%@S@`L$@]S@ш$@S@C$@S@$@S@@$@S@s$@S@ M$@S@$@AS@ }#@=S@"@`žS@@"@AS@2"@S@"@S@١"@S@`o"@S@"@@S@ ]"@@6S@K"@qS@,y"@S@͋"@aS@sZ"@S@@K"@aS@@A"@`S@)"@`QS@!@@xS@!!@S@@!@"S@{O!@#S@$!@RS@ @wS@ @eS@D @bS@@# @eSS@@%? @@=S@ @14S@-!@@N#S@@!@q$S@Q!@$S@!@j*S@!@@(S@@"@!S@!@S@>"@S@0U"@@S@@w"@ S@`o"@S@P#@@S@#@(S@#@S@#@ S@n#@S@@ۿ#@S@@6p#@@S@@F#@rS@e#@@GS@Y#@jS@z#@S@E#@S@"@ S@#@]S@#@ S@ U#@S@v#@S@#@S@?($@@OS@$@@ S@+Y$@`S@f$@S@`Rw$@9 S@ g$@|R@H%@R@%@R@&@R@`&@`R@ f'@R@S'@RR@'@VR@'@YR@'@*R@@ '@R@f(@`QR@(@R@H(@VR@ H )@R@)@@۳R@)@R@@*@|R@C+@@ R@@O+@MR@b+@@R@T+@@R@^+@R@@P+@@R@,@R@|,@3R@,@R@@ -@R@@,@@R@t-@YR@ -@wR@  -@R@`-@R@>-@UR@]-@JR@@y-@lR@ m-@R@r-@R@)-@R@`/2@@?R@2@@R@42@:R@2@9R@b2@3BR@@2@?R@3@@=R@3@3R@`2@@G1R@k2@3R@3@3R@B%3@4R@kA3@@ 1R@@;3@@X2R@P3@S>R@I3@AR@@43@BR@73@?R@K3@J2R@@U3@/R@y3@@68R@@Q3@@F2R@3@1R@G3@`.R@`3@@ ,R@3@@.R@3@.R@t3@7+R@ 3@`y)R@S3@:0R@K4@6R@`x4@8R@4@`Q6@vR@@E6@R@hT6@MR@\6@@`R@@6@R@M6@ R@E6@ R@m?6@@R@`H6@[R@@(<6@@R@@96@R@ y%6@|R@ N 6@R@5@R@5@ R@5@ R@5@] R@@5@@pR@@^5@@R@5@Q@<5@Q@t5@ R@ ,5@{R@ ~5@R@w5@R@M5@R@`35@R@/5@mQ@@f 5@Q@` 4@Q@`4@ϵQ@4@@GQ@ 4@ীQ@15@HlQ@`5@WQ@`5@eSQ@@5@=Q@n?6@qy6@2CQ@8n6@DQ@e6@@JQ@h6@BMQ@@f6@JQ@`M6@@MQ@bF6@0YQ@S6@@aQ@a6@@aQ@@Ws6@ cQ@Gq6@cQ@I_6@[gQ@ Z6@oQ@Py6@@NsQ@@i6@zQ@l6@)Q@6@Q@6@Q@@6@@Q@:6@Q@7@jQ@ 7@Q@|7@@Q@m6@ Q@6@JQ@D6@Q@6@DQ@6@`QQ@M6@rQ@`06@@mQ@ &6@QQ@6@$HQ@6@)Q@'7@%Q@?7@@"Q@@G7@&Q@gU7@ Q@%_7@@o"Q@`k7@ ~Q@`h7@Q@@-x7@@Q@G7@)Q@ |7@Q@47@!Q@ޜ7@Q@@.7@@"Q@ %7@A+Q@7@.Q@@7@Q@7@`Q@@7@` Q@7@`Q@7@=Q@7@ Q@@7@ Q@7@Q@7@'Q@`*7@)Q@@P7@/Q@@Q7@/Q@@P8@0Q@R8@4Q@ 1U8@@5Q@`0E8@`7Q@=8@8Q@J8@R;Q@@WS8@?Q@@A8@#EQ@L8@@LQ@B8@NQ@E8@`[Q@I8@@OfQ@ H8@lQ@18@ƁQ@:,8@Q@`|28@Q@N8@cQ@ &^8@Q@n8@Q@l8@Q@@I8@`9Q@\>8@=Q@=8@Q@AF8@@7Q@mO8@CQ@@^8@@OQ@h8@`Q@n8@cQ@Bu8@Q@8@Q@8@Q@`8@Q@8@Q@@(,9@Q@<9@)Q@j9@Q@ׂ9@jQ@9@@Q@ 9@CQ@9@kQ@ x9@`Q@@9@Q@J9@ Q@>:@@Q@ł:@`ŊQ@o:@@pQ@?:@@@sQ@:@``Q@:@ _Q@:@_Q@$:@UeQ@-;@@jQ@@'=;@ fQ@;@@_Q@s;@1Q@1;@ Q@<@@Q@` <@@OQ@p;@@7Q@;;@ײQ@@;@ >Q@`S;@ WQ@=;@@Q@ H;@@gQ@A;@Q@<@Q@@7<@`9 R@ g<@@R@<@R@ <@@ sR@>@3~R@1>@@{R@lP>@vR@@^]>@@zR@@ f>@`ݍR@@{>@cR@l?@ ?R@ x?@nR@?@ R@b?@ fR@h$?@R@1?@R@ N{?@R@?@R@@?@nR@?@R@7?@8R@?@R@@@R@@@@ fR@ @@R@ @@R@ @@uR@@E#@@R@ '@@ fR@y=@@R@ ;@@R@$@@@@ԩR@K@@R@ `k@@பR@k@@^R@c@@@OR@#a@@`R@ Nc@@OR@ Zh@@IR@Io@@bR@@@sR@ @@@ÀR@@@R@ `@@ R@@@`R@`Y@@ fR@@@R@@@ R@@@R@@@@R@@@R@@@zR@V@@@ܒR@r@@R@sA@,}R@`A@zR@ A@I{R@A@R@ xA@YR@@A@}R@.'A@@vR@l(A@sR@9-A@%sR@`3A@|R@ KA@K}R@TA@֏R@``A@R@@dA@{R@"YA@R@ OA@@R@FA@R@@@A@R@@MA@S@ PA@F S@ JA@@S@NA@S@ YA@S@bA@D/S@ ^A@I3S@ VA@`7S@UTA@:S@ 7WA@=S@cxA@AS@}A@-DS@`A@BS@A@=OS@ ћA@aS@A@YpS@гA@5uS@@A@ 8W@h)@0=W@ N)@w?W@`)@;W@ 1(@6W@@'(@ 7W@ (@|:W@੫(@9W@ϛ(@S2W@ປ(@.W@#(@-W@ (@@-W@5)@ &2W@N)@@/W@` )@@2W@@)@B5W@@ )@@g5W@@?*@8W@*@@xBW@#+@` DW@+@7CW@*@:@W@=*@BEW@`*@7?W@\*@F_f}19`!29 ,7C[g '9Hi~{ $ `4a@@ -4a@^ 28a@@+ @?a@`Da@`YMa@Qa@`Wa@ uyYa@@ ]a@@,$ba@=J9_a@aZ\a@`\a@d( Za@* `Ya@G Ua@YR `Na@ `Ja@ *8a@ `4a@@ `^`@/X`@`V`@V`@De`xT`@@@U`@l \`@qa`@E#Mb`@` ``@@z5`^`@/eX@ kcX@X@`ffX@4@˩X@`!CX@F X@`X@/MX@@X@ X@`X@ ?aX@@x@xX@^M@X@&@X@ @OX@`c@X@ Y`X@rVX@AX@@B[eX@ kM`[@߼ [[@`h`xZ[@4;\[@A`^[@`!Chp[@oq[@ 7M`[@߼Y@MY@X@*;X@5Y@>) Y@yV Y@@Y@M\@U!\@! \@!`\@! \\@@n!\@@8/!\@@B \@ `\@ \@`k \@5 @\@c. 8\@a @\@@J_ \@m `\@u9 \@ a\@v \@ `_\@ }\@;!^\@`Rx! \@@!k\@!\@U!X@ zX@`X@@0@X@lX@` X@X@  8Z@n Z@r_Z@۟Z@`xZ@H Z@ @.Z@`u `dZ@Q sZ@p`Z@@Z@`:Z@ɯ`VZ@?u`Z@m[@@&@[@[@<+ [@P`[@`lT [@ 8[@@U [@) 8Z@n `^@Q^@`|^@yu^@V4^@a^@ z^@  ^@T6 H^@`p`^@_@@ _@3}_@`u9 !w_@Ϋ#y_@ @`}_@@,_@` ~_@D_@@QY_@@`8`@L Z6`@S 2`@`2`@`cI`94`@ 1 9`@@G@w;`@@r;`@ݾ`8`@L `s_@@c q_@@c s_@lJ~_@``_@Q_@@f`+_@5 _@ʵ_@@Ǵ_@ ^_@`! _@D`T_@̄_@;py_@`!`s_@@c a@@za@@7@`@p^@.`@`W`@5@``@`*`@D`@N a@O@ a@ a@a@a@@09a@ @wa@rT a@`a@@^@)%^@}% ^@ē%ж^@`%^@E%`^@2%;^@n$^@x$^@`0%^@ 2%`^@@%^@L]%^@ +Z%G^@Ȱ%^@%ܽ^@ %^@)% w^@@ 7%@o^@ 6%Ml^@$%@n^@ %Gy^@ $@^@ n$ ^@% w^@@ 7%@_@"_@@* _@`@3_@7&_@@* l@_@_D_@ :F_@G_@QL_@`:m@L_@@ϊ`N_@A P_@QsR_@[T_@C_@ @@_@` @6_@Q@_@"^@$^@&~$ ^@xv$]@@#5]@ #v]@#]@@0v#`d]@@e# ]@@!#@U]@@"`k]@@"`+]@n"]@"h]@@Z"^^@@b"`}^@p"^@T#^@A# &^@}#`*^@#1^@@j#4^@`C$5^@@G"$-^@ci$^@$_@H]"x1_@X"E_@ !`F_@a!H_@G!N_@.8!p_@@! J{_@ ҂_@@ !׎_@@ @_@ @_@@ `x_@H @_@ _@ `d_@ @{_@ _@]!K_@[!_@!ω_@! _@:-"a_@u"$F_@"@?_@#s>_@P#@3_@#)_@#_@)<$_@,Y$@_@`]$_@z$@^@ n$`+^@` $^@$ ^@v$)^@ n`$^@@^-$z^@ $^^@` $O^@@p$^@Z$^@#^@#@.^@GB#O^@\" _@t") _@D"_@H]"u^@ ^@ ^@@a @^@@z ^@@ ^@`m $^@] u^@ @^@^^@@ZO^@@ ^@g`f^@@-^@`^@|Ү^@^@@߳^@q^@@W^@$ ^@" Z^@$^@^@`\^@@^@@8^@`l^@]^@`!C^@}R8^@ `v^@ ^@@Q`^@^@^@@`k^@,^@`.^@| 8^@@^@@ 6^@@`^@`c 8^@`^@`1#^@V@^@Z@כZ@}Z@GyZ@O?|Z@e@{Z@_uZ@`u9@.sZ@@]`jZ@`kfZ@MdZ@`SZ@ OZ@ ƒHZ@EHZ@P@UXZ@""YZ@ dVZ@\Z@`reZ@`t@fZ@8@hZ@?lZ@ iZ@i kZ@@0@sZ@lZ@؂0yZ@@Z@ >Z@ hE`_Z@a Z@`B`vZ@؂kZ@Z@ Z@@O#Z@@Z@M@@Z@ @EZ@>@Z@@`ʦZ@  Z@@Z@`lZ@Y@4 uY@h Y@, Y@ @ Y@@(} Y@%?@UY@@ WY@sY@|uY@ n Y@ Y@4 ]@t!8]@@3!5]@.!`}]@!]@}!\@=!\@!\@@!\@t!\@! H]@!]@&?!`]@@ ]@O{ ]@@o @]@@o O*]@X @.]@w @E+]@@J! ]@@I! ]@ !`}&]@!$]@:!]@ ! 8]@=!]@! ]@t!/Z`@ L`@ ?`@ >`@# `:`@A v0`@$` /`@m 1`@W 1`@@ !0`@ `@ &`@ `@` =`@` h`@ `@ /`@Y @w`@W `@@QY ``@@ @N`@V B `@ Yr `@`l `@4 V`@` `@`{`@`{``@6 k`@ -_@g `)_@p _@`L `_@ a_@@ W ``@  `@@*`@%@`@ `@ `@`: |!`@`Ce;"`@@"`@b%`@O,`@ kb 3`@Pz@`@sJ`@@Z`L`@R`@ `T`@@ U`@?H `X`@DD hZ`@ ' Y`@\ [`@G [`@ MZ`@ 9[`@/Z`@ `__@@r!@@_@P!_@ _@ `^@ `^@ ^@@ @_@ _@ `_@E ;_@^ O_@@n `_@ `f _@@9!`__@@r!a^@51!s^@ !^@@) ^@. }^@E @E^@ ;^@ ^@@ ^@ ^@ @^@& ^@O{ `^@r O^@ ^@\ @^@`Rx @^@@A `^@ D^@m ^@~ ^@@} `^@!B^@@$!^@%!@^@@9!a^@51![a@V Ra@ tQa@3 Qa@E @Ua@^ _Za@aZ ]a@ [a@V `__@@ }_@* _@@ `"_@x `;_@@z s_@@8 +_@ h_@E $_@@E %_@Bf kE_@@8O H_@@{t H_@ E_@@+ !_@ `_@ `__@@ `I`@ _@@g _@@s; _@5 @7`@F `@@N `I`@ D]@S7";0]@"D0]@D!4]@!^1]@ V!Y5]@! H<]@ !M]@@ `_[]@@ @U\]@ 1d]@ d]@!Jf]@@ Jf]@# qh]@ h]@@!;l]@&!p]@51!`r]@@i! w]@;l!}]@@J!]@@P!;]@3S!`T]@D!3]@70!a]@@9 8]@2 Gm]@q} n]@2T `{]@@+ O]@@7 8]@@L @]@? ]@ܿ ]@& 0]@Õ ]@ ೩]@! ]@: !`f]@@ ]@ ܱ]@' ]@@œ @Ϳ]@ @E]@@1 O]@p=! ]@ N!]@F!`]@!z]@GB! 8]@`k! ]@@A!&]@a!]@@(}!s]@@!@]@!]@̭!=]@U!]@!`]@@!]@!]@y!z]@@{!?]@@S!O]@`,!̐]@W!]@M!ف]@U!@Ew]@@!Ku]@!W]@."@O]@" D]@S7"ţ^@M3^@`^@ W^@@(`+^@@Q`d^@@Ǚ^@j^@ Ia^@`lA^@`͌^@;}^@Jk^@aK^@`+Z_^@ ՠ^@`^@z ^@(^@@^@`cIE^@p^@^\^@`1ܩ^@ B^@ffţ^@M}A^@@B! 7^@!p5^@!1^@@ե!0^@&!)^@!K%^@/!_^@!\ ^@!]@!@]@L!]@! n]@@I!@ ]@)!M]@ `R]@` @{]@@ `^@g @^@ ^@ ^@ ^@ @3^@@0v ^@8 q(^@~ .^@Ѩ `T>^@` EF^@ uQ^@ Y^@`,!@^^@@$!`^@/7!`g^@@ k^@!ǀ^@ ^@: B^@"! 6^@eG!^@ 6!^@q!@^@ `ʦ^@ 0^@ ټ^@ l ^@] -^@w Z^@@Ag `^@@c) ^@@{4 ^@@bJ ^@ \^@ ^@` B^@ ೹^@ ^@@9 @߳^@ `ܲ^@; ^@G"!^@@/!^@"! ^@@ w!r^@!@g^@!YY^@! W^@q!W^@!dT^@u!L^@!}A^@@B! Z@@lZ@@ Z@\޿8Z@`OֿZ@ૉۿZ@Gֿ Z@Iֿk%Z@hܿ%Z@#߿@"Z@ ų Z@ Z@ Z@jZ@E#zZ@`33 Z@@lX@@X@ @8W@L@`W@`@@hW@<@W@`@W@>@ W@ @W@F@W@@e@W@޼@EX@@`X@ @@ X@@X@@@X@ @X@@EX@`@X@@@;Z@Yտx1Z@ &п /Z@`˿`_+Z@˿W"Z@`K~ѿ 6Z@`^M̿ Z@@ƒǿ l Z@ #$Z@?@W'Z@ v J+Z@@R-Z@&0Z@ ǿ 14Z@ɿ5Z@l @Z@ѿ>Z@`ϊҿ :Z@ѿ@;Z@Yտ._@@@3_@p=`_@ӿ_@~п_@ &ѿ`_@Fҿ_@[._@@X@X@@sX@q=޿X@пX@пX@8ڿ$X@ݿX@@Q@X@a X@X@gX@Y@@?Y@@x?@ώY@ /?@ȏY@z?Y@@Sv?^Y@`o?‘Y@ /?`Y@`L? Y@F?Y@`?Y@@?@_@@_@@@E_@@_@@@߫_@@N@`k_@@@`d_@ *@`_@ @`_@@-@`_@@׳_@P@@_@@?_@o_@O_@_@_@2T _@?_@`!_@b n_@`x_@p^ݿ_@aڿ Z_@a ֿ@_@ տ _@@Bڿ#_@ڿ_@ӿJ_@ ֿ@_@`ݿ@_@؂_@=_@@߼^_@_@@;L?_@o~^@>$t^@@%ku^@hx^@ 0`v^@jz^@p=@ {^@`Ce~^@`RE^@ҧ?^@8@^@~^@>/Z@Z@ନ`Z@5Z@Z@@`TZ@nZ@[@@_ 1 [@@U [@`\-[@^ @"[@ @%[@` Z([@O2[@E5[@,@ ;[@ d`R?[@`J_@?[@1B[@ -H[@`:m@S[@ @\[@`:m n_[@P:`vw[@@Ϋ[@~ [@|s[@^[@ @[@O 1[@@ [@B[@`}[@@ -[@  [@`E[@`[@@[@$[@eG8[@!@[@].\@@\@z\@ @@#\@<+%\@@(}@&\@8%\@@d@3'\@ /`'\@jb`R+\@>`;+\@`c &\@ ,\@@ 0\@7@2\@m 5\@@[0q0\@)6\@f sS\@`+@{[\@`r\@@\@@sY\@` \@ ԝ\@}Ra\@ `ܖ\@l ǘ\@!\@@ \@FB! \@>! ҧ\@k!@ \@!\@[!@@\@x!O\@`!@\@]N!K\@w7!E\@H!u\@!@is\@!`+n\@!vh\@ a\@n T\@ܟ L\@ E\@Õ @:\@ n7\@< `f*\@D \@ \@ [@@ [@? [@ z[@& `[@ O[@ [@ #[@@j [@ t ­[@d [@@) y[@@)\n[@@3Z[@@QX[@`aE[@;f9[@@7[@q1[@ ,[@@i+[@-([@ݾ![@`[@6`[@`u9`Z@@A@iZ@ +`Z@& HZ@ IZ@`uyZ@XZ@@s^Z@}EZ@ {T`Z@.¡Z@VZ@LࣔZ@`l`Z@Pz`~Z@PbZ@ ~@WSZ@@jC=RZ@`bPZ@`J_NZ@`QZ@@; UZ@`1?XZ@3@i[Z@`+`_Z@C@UhZ@@s{ lhZ@sjZ@@!nZ@@Z@tZ@@ xZ@SZ@@QلZ@Z@`@EZ@&Z@Z@ @Z@EZ@@Z@,Z@`\൰Z@@Ag 1Z@^M/Z@^@@8p^@`^@` n^@@j?^@#^@`D`f^@W^@`%@#^@@B H ^@^@@8@`@/7 `@ `@%? `@`D @@_@[0Q_@+_@y @_@@ 5`@= `@`l @`@*; A `@` @ `@ q= `@, `@` <`@`  `@# @`@/7C`@e e?`@  ;`@[+7`@_`6`@ C`@ SK`@ @%K`@t M`@`)M`@`J`@ tK`@M`@@zHL`@`{` K`@J`@^M*H`@bC`@e [_@ !C \_@W HX_@`IV_@2pU_@W_@@nZ_@ \_@h_@ @n_@`@E_@ JO_@`n_@kq_@% [_@ !C@i`@ i`@`qh`@`Sg`@ Ad`@ |c`@b`@q@d`@`u c`@c`@=`xd`@e`@g`@e`@@@g`@ Oj`@ɯzl`@`l`@ Cen`@s`@|t`@ wt`@`v`@@w`@ {`t`@u`@m`u`@Or`@``o`@@m`@`cIl`@t`j`@@ @i`@ _@ɯ$_@` n_@` _@@ _@`l _@ M_@@W_@` _@h _@L_@ xp_@q._@A `v_@@' @@_@@"" @W_@m _@ h_@ O_@t _@ A _@W `_@@33 _@ɯY@nWY@YnY@`r_Y@p}Y@ *Y@ "Y@nV`@<`@ R `@}T`@+``@ `@``@ r`@[`@ z`@(`@`@z`@iq`@`hV`@`@``@ dו`@5 ғ`@wwa`@@"b `@ (ݙ`@P:``@DZ`@v^@`^@? ^@|@ ^@ @^@@0^@a^@ @^@;Ld^@e^@P^@ p^@ ^@xV@3^@`:mz^@`^@`a^@|^@)^@`^@S !^@ :^@@^@`@U^@`v^@ _@}_@SM_@`_@u_@@@_@@7@._@`hO_@`@``@@Q``@@}`@`:m_@G _@@E`@%<`@^j`@H`@z5``@7@`@`@]``@@E`@%`+]@eG@i]@*]@@z]@@ ]@ `]@` ]@ F ]@ ]]@H l]@ !C l]@^ `]@ ]@)`+]@eG `@ n `@ `@ x]`@28`@` `@ 1*`@>@`@@% ?`@W``@]0`@``@  `@@|`@ `@@`@@A`@o^`@`\=`@ `@`:-`o`@/V;`@@E`@T`@S`@ `@`>`@@m@`@` `@@E`@t `@ U `@ n`@`"@`@@@$`@+@ `@ @`@`@ `@@$`@Q@`@@۟@` `@Y@ `@ A@`@`"@/\@9@\@W @@\@i @\@ @ s\@U@ \@`H@@ \@ @\@&@\@I_@\@x@`v]@@ ]@ـ@a]@ {@]@\.@!]@@E@a!]@@v@$]@ `@)]@ V@q,]@S@`/]@~@&5]@R@`N]@o@_\]@ g@`e]@X@`]@@Xr@X]@U@]]@3R@]]@!@+a]@0@Ml]@`%?@h]@@'@c]@r{@Ya]@`l@#m]@0@r]@O@q]@D#@n]@t9@n]@` @t]@: @+u]@ @@p]@  @`g]@ @`c]@@L @^]@O@pa]@`W @ 1`]@ @`RK]@7/ @@@C]@`W @`A]@ @G]@v @KM]@`f @M]@) @P]@2 @ l\]@q @ 6\]@ @U]@ @P]@` @Q]@ @B]]@UU @#]]@r@ g]@ y@qh]@ Ga@vd]@@aj]@ 5@`k]@@@b]@@\@n]@*@`j]@,@g]@x@ o]@G@sr]@v@`r]@ l@K]@ߛ@x]@ @x]@@YQ@@io]@^M@u]@a?@.w]@?@]@l?ࣈ]@xV?]@`W?]@i?@3]@0u?@W]@`?@ ]@(?@U]@l?]@Y?̴]@z?]@ &?@]@= ?@W]@j?@]@?@ ]@@_,?=y]@a?x]@ׂ?;|]@Y?=]@@?Հ]@`?5y]@?)p]@?.b]@n?a]@@N?]]@A?_]@`(?a]@J^]@*[]@E#ѿ@`]@.׿ C\]@O^]@ -Qh]@#ۿ Zh]@ܿ@b]@8f]@ Hd]@@6d]@`!Cv`]@V4@i_]@@l`f]@h]@`a@Eg]@@S\]@ d\]@`)[]@AX]@5U]@`R]@@P]@ף`d?]@-4]@[@./]@@-]@``k2]@ - Z0]@G&]@ !]@ $]@bE"]@ ]@?]@B]@#^]@?]@@ϊf]@`]@n]@6]@\Q]@@*]@`&]@Ԇ8&]@* ]@ta]@'}]@@""@]@`1`R]@J]@ ]@]@D]@T@]@&]@@ ]@ q]@ 0`]@ ]@@T]@' J ]@S @ ]@`I `v ]@v ]@` 6 ]@ Q]@ ]@C `R\@S \@@H -\@x\@@E8\@ 1 \@p !\@y\@%? a\@%? \@ `ʞ\@' \@ \@ K ̐\@ 0 `d\@`I @ϖ\@໻ k\@ 0 Ň\@ \\@ ! @\@ \@`C t\@ @j\@ @f\@| h\@@} @f\@` ]\@Oz 8V\@[0 F\@-X@B\@`jA\@@}R<\@<\@ @>\@`u9 )\@@}R "\@ʎ `f\@6 \@@؂ W \@ [@`L [@ S s[@`L [@ I[@ '[@ [@V4@U[@[@_,[@@(}[@b&[@` [@`l [@_,[@`[@DD[@O[@@yn[@@ [@d&[@O[@ v[@ @3[@ [@@3[@@+[@ 6 [@t![@ `[@ [@`Ce[@wwԑ[@+$[@ f)[@ #[@z[@ b [@ku[@`Xy[@ @[@@xq[@r[@ |[@ -@U|[@@t[@b`n[@p[@@}$k[@i[@# e[@/b[@kaZ[@`rZ[@@X[@`POQ[@y5O[@ P[@p^][@ `[@`!C`V[@@ W[@@J[@,`G[@4`+F[@M<׿H[@ֿ@B[@zο5E[@ʿEN[@`οI[@I?`K[@6?`;S[@ V4r?}M[@'}? !G[@}?OB[@? ;[@(\?:[@?@;[@y?J6[@@x?`>[@ ?@>[@y?@ ;[@`? ;[@?!F[@b?@N[@-?VN[@?H[@%+?>[@b?@>[@?C[@?@C[@ ?E[@`?`)O[@i?EV[@`?R[@d?.V[@@E#?d[@?@i[@@@c[@d?xe[@@6?@j[@ ?j[@ j?`kv[@? {[@@'}? Z[@Œ?`[@@?W[@Z? [@`?B[@t?[@@N? [@ ?ܹ[@);? ![@`a?B[@/?)[@g?`+[@%?[@ \? [@?[@ gE? C[@?$\@O? \@@? \@?`\@`?B\@ ?B\@X?>\@?`TF\@i? [\@ ? Jc\@?i\@ͫ?r\@?`;{\@@*?\@|? l\@@b?\@!"?`ʢ\@a?\@@33?`\@`?}\@1T?h\@D?\@[?@\@Y@`ڳ\@E@\@@_,@@\@@ \@2T@Ǽ\@j@\@Y@x\@@\@\@@.\@.@k\@n@J\@@8\@\@ H\@,@\@[@\@`g@T\@)\@\@`@/\@9@@{Y@@'?œY@?̈Y@;+?Y@`?@Y@? lY@?כY@p?Y@ ?@Y@ ?QY@`a?@{Y@@'?2^@@k?T^@ ?K^@?@.^@?^@~?^@O?`x_@/?@ _@?J"_@\n?$_@ ?O'_@?@W'_@@*?"_@p?!_@&?@ '_@ /?@0_@{?5_@|?_4_@@_,?`v?_@?`B_@l?\B_@@?@J_@?J_@ gE?@O_@CD?@#N_@@c{?`G_@?:_@y?*_@@?_@ ?^@ ?_^@?v^@b?k^@{? ^@q?^@ )\?^@?D^@?$^@@G?Os^@`W?@f^@l?U^@P? P^@@G?`RG^@?/^@`-?*^@`?Y!^@`?^@ t?+ ^@?$^@ Iǿ0^@M<׿^@^@`>^@@^@ ^@ Ix%^@ #^@ @*^@2T@E/^@u4^@|5^@&`_C^@-`F^@X^@Fa]^@ !g^@Qi^@?l^@@ @ {^@^@3^@ ^@q H^@^@ ^@` @^@_,`^@ƒ`ʮ^@.`^@-`T^@b^@@B`^@ w5^@b ^@ w 6^@;Lq^@K^@ʵ^@# ^@*;ϭ^@G^@@z@^@h$^@܁^@y^@ s^@iKm^@Y\j^@@}`b^@ V^@`q@S^@@n@R^@@ϊU^@U^@Y^@a^@L]@@c^@3f^@c5m^@ n`z^@ףр^@^@ʎ^^@`s^@`  ^@Q^@_,ј^@ ^@@6 ^@@B ^@ `;^@? @3^@@ ^@ _^@z ^@ > .^@`C ҏ^@ ^@`r ^@D ^@s{ `Ŏ^@`r ԕ^@@} `^@L `T^@8^@"^@ ^@!^@`;^@`la^@@0^@`\@^@`m`&^@@s;@@^@@-^@,9^@^@^@K&^@p^@^@@@ͫ^@@Ǩ^@ԥ^@^@@O^@`^@`^@@`^@ $^@8n^@@eQx^@ bj@Up^@ !CKm^@ Y`^^@@_^@a^@` c^@Dfe^@`g^@$)f^@-`)W^@`_S^@ 0$P^@`P^@A^@`J 8^@2T @i7^@ `x>^@* ?D^@8 8E^@ `B^@ \D@^@@>^@ E^@ A^@`f1^@f=%^@ t^@r ^@K^@D `)^@  G^@ 0 ^@ `^@O`)^@`C^@4 ^@N 1^@Ec^@`r@@^@<^@y^@yua^@y!^@`+`^@`\ s]@%?3]@` 8]@]@x]@Pzd]@`]@ :}]@C]@`f@{]@[ ]@M]@ h]@ ]@`ք`v]@`]@C$]@,9k]@E]@^]@]@ ]@ 0 ]@ Y `]@ bj ]@ ]@& ]@` ]@ ]@ ࣰ]@ `x]@f]@`r޸]@_,@߷]@)T]@ϱ]@jD]@nD]@`L_]@R]@v]@@]@E]@ ]@Sx]@S ]@@@]@` $]@@)]@]@@L]]@O]@`c]@]@^M`]@@]@` Z]@.׿ J]@H`x]@߼]@H8]@[]@'uO]@ %?]@@ ]@ l]@r? ]@?]@ ?`]@\n?`]@?B]@c?`+^@?^^@?$^@H?+ ^@(\?`^@?@^@?a^@ͫ?^^@?@^@ ?`^@?Q$^@@? +^@@.?`.^@*?`R3^@[?_4^@d?4^@/?BE^@ 7? O^@`t?X^@?\^@`.?]^@@? [^@?Ka^@K?h^@?@W{^@ ?E~^@xV?ࣀ^@1T?^@?&^@`? ^@j?2^@@k?Y`@` ܿW`@@JܿU`@`Fֿ V`@ 9ӿR`@ףԿQ`@ ۿP`@`^Mп8J`@`PѿF`@˿3H`@ \ʿ`L`@*;̿M`@ȿJ`@@a¿`)K`@-ȿH`@ ߼¿H`@@_J`@UU`N`@l`xT`@<+ cZ`@xd`@a i`@`Pɿ@i`@Ͽ`j`@ҿ h`@Oؿ"c`@Կ _`@i׿` ]`@ӿ \`@` п@Y`@#ϿV`@㸿S`@򋵿 W`@@(}ҿ S]`@:mԿ]`@ؿY`@` ܿ@cY@`?O^Y@@6?8YY@?`ZY@`Q8@?\Y@@hY@@@UlY@@qY@` ?nY@? hY@vw?@cY@`?1tX@ ?`lX@a?@.gX@ h$?^X@?`XX@?^YX@ ?@NX@Be?CX@S?`DX@`H?OX@?UX@~?kUX@Œ?^X@?@WkX@ ?@yX@?{X@:L? szX@?xX@ E#?@xX@q?1tX@ ? 6`@``@`@`H`@p` `@`@@ W`@%?m`@A'``@a `@@ϻ`@ * `@'}ࣾ`@@ ?`@ b `@_,s`@`i9`@`@`{Խ`@`@@H@7`@ b `@ ``@j`@?HD`@`@ x`@``@ !`@_,}`@#J`@`@``@3`@Nـ`@@-}`@@z5~`@^M΀`@@.}`@`a<|`@F|`@ "`@ z~`@Y@y`@`u@Ny`@;LBy`@V4`y`@@QTw`@Qv`@ `v`@ :`ot`@@(}Vp`@@ n`@4i`@h$j`@V44i`@,Ff`@ Ge`@`c`@@`,K_`@PJ^`@ V^`@``@ a`@|te`@ 0 h`@Deg`@@`j`@ p`@@yp`@q`fp`@@ {`@xV`܄`@ ܿ`@/ֿ`f`@5ؿ`@ lݿ@7`@/ܿ`@4 |`@@b@`@Y`@?@`@7`@@@`@p^`@@}`@@ dM`@@ϊ`@@``@ =`@ `@y@`@``@p^`@|@`@ 9`@@`@``]`@`@@< `@m`@+@7`@`lZ`@q`@ IM`@``I`@ `@@V`@B@N`@`< S`@ 0`@  `@ `@@ `@Ϋ `@@& `@@ `@p @E`@h q`@@T `@ S`@ | `@@؂`@Ka@@2ka@ a@@-' a@`{@ a@  a@`< a@ q@a@=a@a@@B "a@ k`I'a@_&a@@F`[#a@_#a@@Q1a@VU;a@S=a@Aa@Qa@[`Ta@8Za@ !Cda@f`Isa@@- ya@` a@ k`a@a@`+؋a@a@:ࣖa@ a@> ˗a@ kb`fa@@@.a@S`]a@@+[@ @[@q@`[@&@[@  @[@} @` [@. @y_@@ @ u_@@ @@s_@q @ Zp_@ h @`do_@* @ o_@ @l_@ @+i_@@K @`i_@@ɯ @`n_@ @t_@ @t_@@_ @`z_@F @y_@@ @Y@&?.Y@5?@UY@8? Y@ij?Y@@? Y@0u? Y@`` ?ܝY@xV? !Y@?sY@@E#?@3Y@ >?@3Y@ ?pY@Z? Y@p=?Y@?`MY@=(?@Y@s?Y@&?Y@/?nY@k?Y@ \?Y@?+Y@d?ԭY@@ t? Y@@n?Y@ ?Y@ ?Y@ T?Y@/?@&Z@h?@.Z@S?5Z@?`Z@p?@Z@?0Z@? HZ@`?@Z@p=?YZ@@q? Z@`H?$Z@?*Z@b?@&Z@h?a@a@``@N``@ 7`@# `@H``@``@@ף`@|`@X `@@`3Z`@` `@x@`@9a@`a@`V a@`a@&a@R`@ ?&_@`9m?+_@)\?_@Q?;_@ ?_@ ?_@?_@`o^?_@,?2`@{?`@ j?`@?`@`j?`@@6?`@` ? `@`K]? `@p=?``@&?/`@/?`@p?`@?`@? `@I?``@?@`@ww?`) `@ ? `@? `@?@`@@b? `@ f?``@!"?y`@h?``@P?`@@?_@O?`_@`_,?@_@ $? !_@ F?_@`-ز?&_@[``@2` `@` `@``@<+]`@@P`@$`@@s4`@@lO_@/ؿ`k_@W˿_@?@@_@̼?_@`o?}_@s?_@?k_@%? _@]M?_@ ?_@'}?@i_@?_@ ?p_@ gE?@_@?_@O?_@;+?Q_@??@ _@@-@_@ @ `@`@ `@@_,@n_@ ?W_@ 7?@@_@?`@?_@4?9`@`j?R`@ ?0W@@F@W@v@W@@W@A@W@@X@#@!X@ @)X@I@4X@@ CX@^ @`HX@@JX@֣@OX@ o@@_X@`@7gX@Ί@uX@@ @@yX@s@}X@"@ X@)@X@@$@ ~X@@@X@@X@ @X@@X@^M@@6X@`W@@NX@@X@J~@@X@`_@@pX@[@X@@h$ @`X@`]n @@X@ @@.X@| @2X@@ X@঍@`X@ l@@X@``@@Y@@Y@@@OX@@h@Y@@$Y@ p@@Y@ 7@MY@ 5q@ 8Y@@qY@vw@ Y@d@ Y@ @@`}Y@@6@@E'Y@J@`)+Y@@@4Y@);@_@Y@@33Y@@1u Z@ @&Z@`jZ@ wsZ@@z5BZ@`q#Z@xZ@@%O"Z@ kZ@H Z@`8"Z@@$Z@@Q(Z@G%Z@@%(Z@@@+Z@yV1Z@s4Z@ 7Z@E;8Z@ G/Z@/@.'Z@@*O-Z@@(.Z@@* ,Z@&%Z@."Z@@"Z@.&Z@L]`}.Z@21Z@y0Z@`L@6Z@[9Z@Q:Z@@KbZ@GaZ@@WZ@`u9\RZ@@ ZPZ@@OZ@C`KZ@@WMZ@@JZ@`+JZ@KMZ@TIZ@..Z@6@@'Z@@"Z@`!Z@*-Z@ף-Z@ u@#Z@ `f"Z@[`Z@ ƒZ@hZ@pY@Y@ k`}Y@ ƒ`TY@!Y@v@Y@ Y@@Y@ Y@3TY@6Y@`OY@ ,`Y@@@Y@`}Y@ɯ nY@x uY@` sY@G hY@ XY@@TY@`GY@ !9Y@ 9Y5Y@_8Y@P s7Y@@};(Y@#$Y@S H$Y@_}Y@SaY@`qY@S@Y@WVY@``Y@ Y@GY@v޿DX@ӿX@`:mrX@?`X@` ?`X@ϊ?X@`?`X@ Q?X@?@X@?!X@Y?X@`?X@;+?wX@?bX@ͫ?`X@O?X@`?X@ ?X@{?X@@ ?@X@-?@X@&?X@@?X@`?X@x@|X@D#@pX@l @iX@<@EgX@Œ@@eX@@w[X@c@UX@~1@PX@) @JX@ @Y9X@) @2X@B @0-X@`` @ #X@  @ X@`` @@OX@[@q X@ .w@cW@ @@W@@@3W@࿷@nW@c@@W@!@W@`j"@ W@R@ W@@0W@@F@Vz`_F@D9@`īO@C@ K@ O:@2K@:@K@:@K@:@aK@:@`AK@@:@`HK@`:@K@@:@L@:@"L@:@$L@ 7:@@L@:@ L@`:@K@l:@lK@`:@ K@ O:@ eF@HC@ gF@EC@qF@C@ yF@ȷC@@ӎF@ C@`F@ C@;F@ C@F@`C@`F@ pC@ UG@kC@`G@`lC@ g-G@tC@MDG@woC@@EG@`8pC@ NkG@ߓC@DG@>C@@ÌG@C@ yG@`C@*G@`C@`G@C@@@G@C@G@ C@ `+H@ xC@ .H@ >C@;H@@C@[H@C@`GH@C@%H@ fC@t)H@ `C@V#H@}C@jH@_tC@H@mC@`0 H@MdC@ 7H@@']C@@.H@ gUC@`*H@LC@ 7H@#PC@ &NH@3C@ 0UH@@1C@$nH@ Z8C@`oH@$C@$H@5B@@H@B@)H@`B@KH@B@@ I@B@I@#B@Z(I@ B@@^I@`NsB@2I@@]B@8I@` MB@`I@ =JB@`NJ@`ZB@RJ@lB@ ~J@@uB@K@byB@`HK@sB@5J@9mB@J@iB@J@eB@sK@hB@ K@byB@@J@}B@`K@΂B@gJ@B@K@B@FK@B@XK@`ֻB@ %gK@ B@`jK@`B@K@`6C@`K@` C@8K@`C@ K@`G C@)L@` C@'-L@@C@(L@`/C@`Y1L@C@DL@"C@@XL@*"C@`L@z$C@mL@C@@L@C@ L@#C@L@ #C@L@ C@L@B@`L@ B@L@1B@`M@ fB@`YM@ B@M@B@9M@`B@?M@ B@EM@B@cM@ B@ vM@B@M@B@M@B@@PM@KB@M@ B@M@`B@M@B@ M@B@dM@ B@ M@ِB@`N@ B@.N@RB@ N@2SB@ HN@GB@ =N@F2B@N@&B@N@B@N@CA@[N@A@`N@@pA@ N@A@N@A@N@`A@ җN@ A@^N@ A@N@ϙA@ZN@hA@nN@ IA@]N@ UEA@`N@`=A@ rN@C,A@tN@ (A@UN@$(A@AN@ NA@@BN@ @@`FN@@@`@N@@@BN@@@`SN@@@@@isN@@@`vN@ @@`mN@ 7@@mN@@@KN@ޔ@@|JN@ ,@@`^N@`J@@`mN@@ @@gN@@?@lN@?@IN@Te?@@WN@!b?@`N@ ~Q?@`N@>?@`qN@` ?@@N@@!>@N@>@cN@B>@nN@@=@ yN@ic=@N@*=@kN@=@ N@%<@ `N@<@@O@$<@2O@k<@`KO@@;<@dO@ VD<@`O@<@5iO@;@{kO@ty;@aO@E;@uO@ 7;@`YO@D;@`O@``+;@`īO@[;@ਣO@7;@O@;@ O@:@jO@:@@.O@F:@`O@:@bO@T:@NO@@z:@/O@:@ "O@m:@i#O@Z:@bO@ ~a:@ O@ ~Q:@@N@<:@N@-:@|N@I9@N@9@N@@]N9@@4N@`}19@\N@@9@N@@].9@`YN@@%9@ &N@9@$N@D9@N@9@@NN@F9@LN@h9@GN@p9@ x>N@p9@6N@sj9@a2N@^9@3N@ yU9@ 8N@S9@v8N@@D9@#N@`9@`6N@@[9@N@@XR9@ N@V9@` N@`9@vN@#a9@jM@@QX9@ `M@ ,i9@M@Be9@M@u9@M@ Oz9@@M@e9@ rM@09@ gEM@9@`GM@9@M@`9@ L@9@wL@D9@|L@9@ L@Ų9@ L@J9@L@@9@ L@9@ơL@9@`YL@`9@^L@`:@ `L@@(,:@ ~L@}r:@ L@%:@@?L@S:@`{L@<:@|L@;@`AvL@ :@ kL@;@PqL@!;@ kL@z;@>gL@#;@8L@ ,;@L@);@ L@;@ K@:@)K@:@K@@Q:@K@:@7K@:@ kK@1:@ OK@:@RGK@` :@)3K@:@9%K@:@ K@:@<K@ʾ:@`NJ@:@ռJ@@]:@J@:@`AJ@:@@ۗJ@p ;@`~J@$;@`0MJ@Y;@`IJ@e;@UJ@h;@`UJ@q;@ g=J@;@/J@ U;@J@;@I@b;@` I@@;@vI@`<@@ӦI@ &<@I@r'<@ DI@M<<@3I@@ f<@[I@@<@`I@<@PqI@i<@@WkI@ ~<@ xfI@<@@FjI@8<@`rI@ ~<@vI@i=@ vI@@=@hI@#=@\VI@J=@`GQI@'=@UI@h=@`OI@~=@MI@`w=@?I@=@I@=@ OI@@>@`I@2>@I@8>@'H@D4>@ H@@%>@H@>@@-H@ >@ fH@%>@ OH@)>@௝H@c(>@ H@C>@͓H@9>@`AvH@ ~a>@zH@e>@`H@Z>@`YH@kq>@ՌH@>@@yH@>@xH@`z>@`H@@zt>@`H@h>@uH@vh>@nH@`X>@uH@@?>@xH@)>@ guH@ >@`AnH@` >@ ~QH@ >@zTH@@'=@`6PH@=@@DH@=@EH@`=@@P9H@8=@ 0H@#!>@3H@3>@`#H@CT>@`YH@`YQ>@H@k>@`H@`u>@ DH@>@ H@`>@G@H?@=G@ch?@G@q?@3G@ @@cG@v @@`G@+@@lG@1@@ fG@<@@@͓G@:@@:dG@Z@@@QG@`h@@`A6G@`w@@M$G@{@@G@@y@@9 G@L|@@@z G@ീ@@G@ &@@G@`@@JG@@@G@@@@`AG@n@@`kG@u@@ G@@@@`F@m@@ F@`@@`kF@@@@@ F@` @@@?F@ `@@nF@@@F@L@@F@ A@F@&A@F@ ,A@nF@ *A@F@`k9A@F@?A@F@sJA@@F@LA@{F@RGA@@F@_TA@VF@ ]A@ F@hA@F@ClA@F@ uA@dF@`qtA@F@A@ F@:A@(G@dA@G@A@G@`A@@@G@IA@G@A@F@`A@pF@A@G@A@sG@ xA@5G@=A@(G@A@,G@ fA@+G@A@`F@QA@ %F@@A@`GF@A@F@B@ >F@A@F@ B@@@F@@F B@F@`5B@F@ 4B@F@`DB@`F@`AVB@*F@_B@`oF@`dB@ kF@@hB@ tF@qB@`qtF@ B@ ObF@ yB@dF@B@eF@B@ bF@ B@5iF@`B@fF@ ,B@KF@`B@mGF@B@ 7OF@B@DF@B@5F@`B@(,F@`B@mF@"B@`qF@B@@'=F@`Y)C@l8F@@X2C@ )F@c0C@`&F@7C@`(F@ xNC@b!F@_\C@ 'F@chC@B%F@ nC@ F@rC@gF@`HC@ F@C@@X F@IC@`_F@`C@F@C@d'F@C@`B5F@nC@LF@A@F@B@`GF@A@ %F@@A@`F@QA@+G@A@,G@ fA@(G@A@5G@=A@sG@ xA@G@A@pF@A@F@`A@G@A@@@G@IA@G@`A@G@A@(G@dA@ F@:A@F@A@dF@`qtA@F@ uA@F@ClA@ F@hA@VF@ ]A@@F@_TA@{F@RGA@@F@LA@F@sJA@F@?A@F@`k9A@nF@ *A@F@ ,A@F@&A@F@ A@F@L@@nF@@@@?F@ `@@ F@` @@`kF@@@@@ F@`@@`F@m@@ G@@@@`kG@u@@`AG@n@@G@@@@JG@@@G@`@@G@ &@@@z G@ീ@@9 G@L|@@G@@y@@M$G@{@@`A6G@`w@@@QG@`h@@:dG@Z@@@͓G@:@@ fG@<@@lG@1@@`G@+@@cG@v @@3G@ @@G@q?@=G@ch?@G@H?@ H@`>@ DH@>@`H@`u>@H@k>@`YH@`YQ>@`#H@CT>@3H@3>@ 0H@#!>@@P9H@8=@EH@`=@`6@H@=@@ H@ >@G@@U>@G@ y>@௭G@ >@G@>@~G@=@qG@=@GG@ =@SEG@@=@`F@\^=@F@@ty=@[F@4=@ E@u=@E@=@nE@ O>@CE@#a>@`E@ +j>@ }E@ O>@`A6E@>@`qD@x?@QD@ @@`˦C@ a@@`C@r;@@@C@X@@@-C@ yu@@)sC@@@ fC@@@@eC@ I@@#D@` A@ D@5A@TD@dA@ D@A@D@mA@"D@A@cD@VA@D@ B@'D@-B@D@DCB@D@LB@`/E@@B@XX[F@T<@SEG@@ty=@[F@4=@F@@ty=@`F@\^=@SEG@@=@@F@``<@#F@T<@^F@0=@[F@4=@Y @$I@``HK@3 !K@#K@`KՄK@ ~K@ J`HK@@ gK@ eK@N`YK@j"֓K@:K@@ஆK@@L`K@,}K@hd`sK@$`jK@&9mK@DkK@ cK@ c@_K@`M|`WK@X#QK@o@MK@]UK@O`VK@CK@`:K@%|*K@E@1K@(=`BK@`YIK@UDK@Ô ?K@ \ 3K@@h,K@ *;R/K@"(K@@K@/ K@t K@ `0 K@gEK@ c1 K@@f K@t ~K@kJ@ @oJ@@`K@B gJ@QY`J@`J@BRJ@J@O`NJ@ i@J@ J@@65J@DDJJ@ ~J@KJ@OǘJ@``{J@RJ@^ GJ@`D-J@Q`A.J@ԥ$J@ cIJ@rJ@sJ@WJ@$iJ@]. =J@S J@ Q J@ܾmJ@@ `J@A@J@1$J@@@J@ UJ@LJ@ 15 J@@L] J@ cJ@~17J@@tZ`I@ ?`I@@c`0I@ cZI@ I@@C I@6p `I@1u @I@\ kI@ bI@> I@^ RI@w I@ aI@@!I@~!@I@!! I@@"!3I@@Ce! OI@@="I@u"I@"\I@]"`I@@,#`I@N#I@#JI@=#I@Ѩ#`I@n#mI@R"I@Q#`I@@24#I@ V4$`qI@`L$I@ !$I@` 5$I@.#`I@#I@#I@s#I@(#[I@#`I@ A$I@r$2I@ +Z$I@f$ DI@$NI@`$I@$`6I@n$rI@?$ I@@}# U J@@d#sJ@# `J@# =J@@y$`J@@$` J@ $J@V$$J@@U$J@$ J@$@$J@# xJ@G#J@N{#RJ@@# 'J@@#@-0J@ #3J@N# 6J@@CE#஖K@> gK@  K@*K@`iK@` K@ K@)`K@`  K@ K@`w K@`K K@ K@ \௅K@@D &K@ c@K@@yK@ \ K@@K@ 0 >K@ MK@ )K@@`HK@rK@#`ܞK@K@E@K@ !K@Zp"IK@<`_4K@ "IK@NrK@H@K@$ .K@i`_4K@`l-K@r (K@< x&K@ @K@ޝ K@"IK@[/"A@i~=@A@'@@[lA@@ʋ@@ A@@@A@@@`A@ @@`A@'@@DA@ ԟ@@A@`6@@A@\@@A@F@@`A@n~@@`A@ r@@A@@h@@A@_@@A@ [@@A@W@@$A@ rS@@`A@B@@A@u8@@`A@g2@@RA@B5@@ôA@@@@`A@F@@ =A@:<@@`/~A@ @@A@O?@A@F?@ N{A@@?@L|A@@ ?@ A@[?@@(A@?@A@m?@A@v?@zA@??@5qA@ g?@ sA@]?@A@ \?@A@lp?@A@`}?@A@}?@`DA@q?@A@ka?@GA@R?@ A@@D?@fA@`@;A@>@`qA@ >@ A@`Y>@`!A@hj>@IA@]>@@A@]=>@^A@@&>@`|A@=@{A@`=@@ {A@=@yA@=@esA@i~=@@nA@=@\nA@`=@@jA@=@eA@` =@``A@>@@W[A@>@ yUA@9>@`OA@V>@EA@n>@BA@>@$@A@@.>@@9A@` >@s2A@@>@@-A@`>@'A@?@/"A@\7?@m/A@rK?@.A@^\?@GA@v?@>A@?@EA@`*?@PQA@@?@ [A@@.?@dA@`@@DkA@m'@@qA@S>@@vA@` U@@ `{A@@j@@3A@Zh@@шA@m@@PA@ v@@lA@@ʋ@@\>`{@`NSB@ł2@G@$=..@`NSB@9-@\B@@i-@`N[B@@;,@@-hB@,@ wB@,@ &B@@-8,@B@+@`B@+@ B@*@@B@&>*@@ӾB@ *@7B@)@ xB@ )@B@@PY)@`B@(@ ~B@(@B@O)@C@9m)@C@5p)@@.C@)@C@T)@ xC@`)@ C@`*@ , C@%*@ C@?(*@C@n*@C@`#*@`C@ +*@C@*@1 C@}+@ C@W+@ C@@;l+@B@+@B@ ,@C@1,@ C@ A-@# C@@z-@`0C@EC.@C@`ff.@ xC@t.@@!C@@.@C@.@UC@ /@`%C@n?/@ C@%/@C@.@!C@n.@#B@`)[.@B@..@B@/.@@ìB@7P.@`˥B@ԅ.@@B@@`.@ B@@dh.@(B@ N.@@B@@^.@B@ZQ.@uB@0.@MdB@E.@7WB@..@`NSB@@ !@QpC@@Uu!@wC@>!@!rC@@ !@`C@ @@.C@ @|C@ @ C@P @`ˍC@: @ C@@ @`C@@M @C@ @`C@@D @`C@\ @C@ @C@!@`C@ !@C@'!@@C@> !@C@@ @C@ @`C@ۿ @D@ @@?D@t @ D@; @ D@@x @#D@ @+D@K @@=D@+ @iKD@@Q @HD@I @OD@@e @WD@C @@p]D@@~q @`pD@[ @wD@@g @:|D@@] @nD@@= @5iD@@(!@kD@e!@`ND@M"@ D@n"@`D@@E"@ %D@#"@`D@"@D@""@D@#@D@9-0@D@00@zD@`/@D@@ /@@.D@v0@D@ p0@!D@0@`D@cH1@|D@@y1@`iD@` 1@[WD@`1@RD@2@|RD@`* 2@`FD@@\2@+D@ł2@D@N{2@`AD@rk2@wC@` d2@@?C@tY2@^C@p 2@C@1@@C@@2@D@1@P!D@I1@@&D@e1@3*D@ V41@4D@:1@D@1@@BD@}0@ D.@D@-@(D@v-@@mD@-@`-D@`)-@`3D@7-@UD@@2-@@PD@-@`MD@,@ %OD@`ϩ,@PID@ ˭,@@OD@,@YD@,@ _D@3,@ kD@*,@dD@,@@eD@W,@pD@+@̔D@m+@@-D@`=+@D@@+@ D@+@MD@ h*@ yD@l*@(D@Z0*@:D@1*@D@d)@`0D@µ)@zD@@?)@#D@Q(@`6D@ Vt(@D@`Z(@@D@O'@E@'@r E@ BE'@@p%E@@ۿ&@3E@@;l&@@5E@L&@.E@+&@ 6E@`/V&@`G9E@#a&@@E@ )&@@PE@$%@[gE@%@@qE@@%@@uE@`X%@byE@@$@RwE@@$@}E@ %@ @E@ P@`E@`#@ HE@@IE@@ > F@@@dF@&@ F@J@b)F@``@95F@`p@8F@m@@F@`>i@9EF@ S@~PF@@UF@`@}YF@F@ 6XF@ = @lF@,@@PyF@@F@`{@ *F@ @F@f@kF@}@F@@?@F@@F@n@@XF@@F@ K@F@X2@F@L<@jF@@'@BF@`e@F@Œ@`BF@P@`F@@ F@`>i@F@`(@`F@ @`HG@YQ @G@8. @`Y!G@^ @ a:G@@ @:G@ @ N+G@ @ G@@Fb!@ G@Xl!@` G@@!@ G@H!@ G@{!@`G G@!@F@!@@XF@f!@F@x!@`F@!@eF@!@eF@@!@F@6"@tF@+"@`F@J!@`F@2"@F@ "@G@*"@G@@y"@`Y)G@`"@=G@"@AG@"@`XG@$@aG@Y$@FoG@(@E@ (@E@(@`E@ (@ E@`2(@@E@(@E@@(@@E@@P(@E@(@E@(@$E@(@ E@4(@ (E@(@E@(@E@]6!`d@`Kx%@`eU%@ SW6%@_%@`\.%@`]A%@ףb%@ `Kx%@ lB%@@@d%@`S%@_$@@d٠$@W$@@ w$@@ a$@j$@ $@`ʎ9$@ ! H$@$@'$@ C +$@=J+$@` $@@31$@@$@ r$@#@@#@@q#@p#@@#@+y#@ $#@ Y#@h@Yq#@@I_#@!J~#@:l#@ c O#@`P#@=*#@K>@X2#@&ka#@|@#@ )@P#@`M#@$` 9#@l R#@  3#@@e #@`o #@#@@B2s#@t#@`^M#@2T"@"@~"@-X"@`@"@Lω"@8/M"@`%?"@]@$!@Be @F @`  @,yf @ k@2b@?Hj@ S `K@~1J@Qm?@ "A@} @J `r@[ @` \n@qz@`*@8F@H@-w@@6@ t@\@`b@/ef@{s@me@`Y7&s@໻/@@ܾ@@Dw@`C@v @x@ l@`< ww@`4 RW@ ,@ t@7 /@ 0 w@D n@ ~@, @`@ @> B%@8/w@` `@+r{@a v@> @-@@] @` H@@X2@G(@@0@<@x@*@@d@O@]@] >@`:@ 0s@.@_@$@`N@@( @%?@`@ `(@( @@""@ pL@ 4@@P@`M<Z@$ǐ@`(`z@ܾ@w@6@~@  ]@ 6n@@T@I@@۟@C# @``8@ `d@,g@@`@/@X@tZ @d( @Q8UU@)`g@@P@@ $@xW@$0u@ܾ@@,y@I@@` Ga@` }q@Z ˭@K&@ ^@$@a@T@=J@` @% _,@ j 1@2 @hd@ j@@ 2@ @@ @W J@6!`@!!l`@w D@| +@ @0@/ #@ `O=@_ `ty@@l .@_ ]@ Z @ @`m@! @V!b @C% S @ # @5q x @| @ @e J @@@ @N @@}R% @L @ \- @ @`o @`@=!@-!@@dш!@W*!@`%!@z "@B%"@ @3"@@"]"@ o"@[p#"@r"@ f"@O "@F "@N; )#@5 #@4R @i#@@DD f$@ 2$@@%T$@` sZ$@`$@ #$@H@;$@@$@@,@$@p$@@"b`#$@2F$@@ `H$@X$@`m$@ ف$@ô$@ `F$@ӭ$@^ $@@X2%@`eU%@^ ۗS@X1@  S2@!JS@X1@JSS1@bZS1@nS`1@@uuS1@`uS2@Sr2@S@/2@ SE32@єS62@ۗSDC2@Sr2@>}S`6p2@{S 2@wS2@@TS Uu2@y5SU2@(S92@ST&2@  S +1@S1@%S`_1@ ,S@1@@5S1@8S1@:S 1@BS1@DS1@@HS1@MSg1@HS`1@$HS ҷ1@JS@X1@_p="Q@`Q@ $"Q@p="@@ `@ @@`@@@`@^@@@i`@`@@P`@`@@'{`@@@@D@`ӊa@D@ଌa@KD@`a@7D@ a@:D@Ma@@ۗD@@%a@ xvD@Oa@` mD@a@#iD@a@@FjD@ a@@qD@ϛa@|D@a@}D@ a@ &nD@a@@oD@ta@`~D@`a@)D@ Sa@@pD@ a@ ~D@a@஖D@ a@`D@˙a@D@`a@D@טa@`ݝD@a@`D@̢a@:D@a@`D@ଦa@\D@ a@{D@`a@ %D@a@`qD@`)a@@D@a@@hD@a@LD@Za@{CD@a@CD@ ?a@3"D@a@(D@˹a@ D@ a@`D@଺a@`N D@a@`D@ Qa@`C@ Sa@C@`a@`C@a@`C@;a@C@a@C@ a@C@@Na@'C@9a@ C@Aa@C@a@ C@pa@1C@Ba@ ҧC@̼a@@C@za@՜C@ a@`YC@a@C@`a@ΒC@ba@^C@8a@C@@!A@@W`@ &A@@%`@ =JA@``@@IA@`@CA@``@5A@Y`@)A@``@D#A@J`@ >A@*`@A@ ,`@`<@(`@-<@`(`@8<@ %`@@(<<@''`@GA<@H(`@><@`I)`@F<@ n'`@ NK<@*`@\<@.`@c<@6`@@g<@`6`@@o<@ -`@@?<@`.`@6<@ ,`@`<@R`@X@@@@S`@@e@@ M`@u@@M`@`ʆ@@AL`@9@@F`@@@@@C`@ @@`F`@y@@C`@l@@*D`@ j@@@I`@o@@J`@l@@ L`@b@@J`@ S@@kE`@K@@3D`@8V@@BE`@ %W@@F`@B]@@bE`@d@@;>`@ %_@@<`@Q@@7`@ G@@`29`@L@@y;`@`[@@8`@g@@k7`@@pe@@M4`@ {@@5`@ =@@@@7`@`@@`8`@ǀ@@D:`@^}@@:`@t@@@r9`@w@@ 9`@vp@@A@`@ Oj@@ =`@ @@7`@ O@@S8`@ ,@@K5`@U@@ n5`@ D@@ 2`@@@d2`@@ۧ@@@E3`@7@@z6`@@W@@q8`@@@9`@@@`I;`@֣@@<`@`Y@@@9`@@@ :`@@@@ ;`@@@ ;`@@@`>`@v@@|>`@Ļ@@`@`@P@@@iE`@@@C`@B@@@%C`@ =@@`F`@@@ G`@ @@@K`@@@@`IM`@@@YM`@`0@@K`@`@@`J`@`@@`N`@ g@@`N`@@@`V`@@@@`\`@`@@ _`@@@|``@@@^`@ @@c`@ f@@g`@ @@@m`@@@ ?p`@@@q`@ @@ nu`@@@ w`@@@@qv`@@@r`@ @@`p`@ y@@o`@s@@p`@t@@`r`@m@@@|`@$@@-z`@S@@`)}`@@@ {`@Q@@a~`@a@@a`@@p@@ }`@`q@@`|`@|@@}`@y@@J`@@v@@q~`@Pi@@`@vh@@3~`@d@@w`@ OJ@@ Qv`@|J@@u`@B@@kw`@\>@@v`@<;@@t`@:@@]u`@ y5@@t`@`G1@@Mn`@k?@@o`@r?@n`@8?@Al`@?@l`@L}?@j`@`]?@ g`@@a?@hf`@u?@a`@q?@``@Z?@a`@`W?@c`@N?@*^`@?@ SU`@ %>@U`@`?@W`@?@Y`@ ~Q?@HV`@a?@BS`@?@@WS`@d?@}U`@ʞ?@`V`@ ?@V`@ ?@ X`@?@@wY`@Κ?@Y`@`Y?@yU`@?@ nS`@߫?@sP`@Ct?@ R`@ R?@FU`@B?@VT`@ -?@`R`@(?@YO`@;?@}G`@ ??@@NG`@E?@C`@g?@@EE`@l?@+G`@ ~a?@I`@Tv?@J`@!?@ E`@` ?@*F`@`@@@@ @`@`$@@`?`@`-@@@`@?@@D`@E@@JF`@@>@@F`@ +@@@`@`@@@?`@`@@ ?R`@@'=>@vN`@[?>@8L`@7_>@`)O`@@zt>@P`@@cq>@`)U`@b>@T`@@I>@ ?R`@@'=>@!\`@@Z>@[`@$p>@D``@>@_b`@>@sb`@>@_`@ c>@!\`@@Z>@`@`K@@`@JN@@`@T@@`@`Y@@`@b@@&`@)c@@``@`c@@@`@\f@@`@R@@`@@FR@@`@`K@@@_@1:@_@B:@ _@@:@_@N:@_@m:@^_@``:@_@@-:@ 6_@:@ _@@:@_@ %:@@3_@1:@ (`@z:@4 `@:@ `@@:@ `@:@`@:@8`@:@`@@:@a_@o:@_@`j:@_@ \O:@h_@ O:@_@F2:@ Z_@/:@_@:@@_@1:@a85qA@Z0=@`˦C@ I@@dA@O?@`/~A@ @@ =A@:<@@`A@F@@ôA@@@@RA@B5@@`A@g2@@A@u8@@`A@B@@$A@ rS@@A@W@@A@@@_@@@QA@ ~Y@@@F B@D@@@)B@9@@;3B@`0@@\VB@ +@@;kB@$(@@B@1<@@ B@O@@kB@a@@B@@ht@@C@@@@ 9C@G@@`\C@@@eC@ I@@ fC@@@@)sC@@@@-C@ yu@@@C@X@@`C@r;@@`˦C@ a@@ NC@ @@C@@@`/nC@v?@@LC@?@`*C@?@`C@?@`AB@ ?@UB@ ?@|B@Œ?@`B@k?@B@i?@ƩB@@/?@B@@>@rB@ r>@@-C@@>@ %B@ w>@@pB@V>@[B@`=>@`YB@>@ B@=@ZB@=@@._B@@^=@`kYB@M=@JFB@D=@@)B@`=@ B@Z0=@A@3=@A@>=@`A@@QH=@A@jR=@{A@@\=@ zA@p]=@A@=@}A@i=@p}A@͋=@@ {A@=@{A@`=@`|A@=@^A@@&>@@A@]=>@IA@]>@`!A@hj>@ A@`Y>@`qA@ >@;A@>@3A@ ~>@A@`?@`)A@A&?@fA@`)F@|N@ &F@"c|N@ )fs%F@cǒ}VM@(.F@jHM@~[:F@#IM@` F@QGM@BF@@K@eF@@K@ D@K@`D@ K@D@LK@fD@ K@3D@K@D@{K@D@K@D@K@ HD@$K@ D@`vK@F@I@ OBF@QI@FF@I@*BF@I@AF@I@`_DF@ஶI@MF@ I@ LF@@FI@SF@@yI@SnF@|I@xF@{I@`0}F@eI@F@1I@DF@I@JF@@I@5F@I@F@I@F@I@@F@I@ OF@[/J@ F@`0uJ@@ۧF@`J@ F@@._J@F@_J@F@`J@F@ J@KG@J@`(G@`0J@8G@ =J@AG@J@@=G@`J@CG@J@`RG@٘J@[G@`J@z\G@J@lG@rJ@@W{G@`RJ@yG@ UEJ@ ~G@77J@~G@ y-J@tqG@@J@@.oG@ J@sjG@J@fG@@J@tiG@@?J@ sG@ J@wG@I@pG@ gI@rG@`I@`wG@`I@rsG@mI@*zG@vI@`AG@ I@G@`I@@}G@rI@ G@bI@G@`YI@LjG@DsI@ G@ kI@MG@aI@ DtG@@]I@@uG@``I@|G@MI@@vG@BMI@`0mG@eGI@kiG@ 7I@@WsG@I@ [G@`I@``G@`AI@YG@`NH@PG@H@DG@jH@HG@QH@CG@ H@IG@[H@sBG@սH@GG@ͻH@`NKG@@-H@ ?G@ H@ =JG@ OH@@G@jkH@`=G@ ^H@`vGG@GH@QHG@aJH@VLG@fGH@PG@8=H@]UG@AH@8^G@qKH@bG@ZH@=aG@`aH@ lXG@xH@@#ZG@@{H@@WcG@M\H@ G@ FH@fG@8H@`G@8&H@=G@H@\G@M H@@G@G@)G@G@G@G@I@GYH@`KI@N@ I@ HN@I@N@-J@N@I@ L>N@@J@[N@@J@)dN@2J@`tN@ J@`}N@@'J@`N@+J@B}N@4J@ C|N@ \?J@jN@CJ@jN@aQJ@.^N@QJ@]N@SJ@XN@$WJ@YN@\J@`]N@ _J@mN@@dJ@epN@ hJ@ QN@`wJ@N@L}J@N@`}J@N@͂J@N@$J@@N@ J@=N@@̓J@oN@`yJ@N@`}J@`fN@ L~J@@N@xJ@ O@8}J@O@J@f O@J@ N@$J@zN@࣠J@N@J@`N@ J@ N@༣J@` N@RJ@N@\J@ N@ױJ@@pN@WJ@N@ J@`N@J@N@J@`N@J@@N@\J@N@J@N@@J@@N@J@N@.J@N@J@N@J@@WsN@`J@@{sN@@J@puN@J@}N@J@`[N@@J@@N@WJ@`N@J@=N@qJ@N@J@ N@`J@N@ J@@3N@qJ@@.N@J@N@J@`~N@`J@N@@>J@N@@J@`VN@J@ܗN@8J@ N@J@N@J@@?N@ J@N@`MK@ҦN@ CK@N@K@೹N@QK@ LN@ K@QN@QK@ N@ uJ@N@J@3N@@>K@ N@zJ@ HN@K@R@ lK@ ?R@`K@ @R@`K@@CR@K@qDR@@J@kYR@kJ@=ZR@J@@^R@J@@_R@J@`bR@J@@bR@`K@ hR@K@ &gR@ K@-lR@ K@lR@$K@pR@eK@mR@J@iR@ J@ `R@` J@[\R@@J@ZR@J@]R@vJ@@VR@J@UR@J@PR@`vJ@@EOR@{J@ RR@@J@?PR@=J@ZR@J@WR@`ûJ@ [R@ ҷJ@:eR@J@sfR@`[J@sjR@J@`RkR@HJ@`qR@@ J@sR@ J@`zR@J@5R@J@R@uJ@(R@aJ@3R@J@ɏR@J@R@vJ@`ʒR@@J@`+R@ J@R@`J@xR@BJ@@R@J@R@J@ٝR@J@fR@@J@ 8R@J@R@)J@aR@@J@ R@@J@R@@WJ@`+R@BJ@@R@ CJ@BR@BJ@R@K@R@ K@R@q K@UR@ jK@B S@-!K@ S@@%K@ JS@`-K@ 8S@@)K@$S@.K@ *S@ /K@ 8+S@@ 7K@,S@8K@3S@Q9K@@;S@I@ 7T@#I@9T@I@ ;T@VI@mI@5T@QI@ T@{I@`fT@ \wI@`T@`[qI@}T@pI@T@-hI@=T@ fI@T@[I@` U@LI@ U@ \GI@@GU@AI@ U@ 9I@U@]-I@U@"I@U@ I@U@I@`TU@ I@ !U@ CI@q$U@I@`)+U@4I@ !/U@`I@3U@ uI@ 7U@ a I@@:U@`V I@@U@ I@ CU@I@@>U@H@@>U@H@YEU@H@EU@H@LU@H@`MU@H@MU@H@QU@@H@YU@@H@@G^U@@H@ bU@H@_hU@QH@2lU@@>H@TqU@=H@uU@H@zU@`H@`~U@H@}U@@H@ ~U@H@U@H@@U@@H@U@2H@;U@zH@ U@-H@`ŒU@qH@ JU@H@`ŞU@@WH@ޠU@@H@@U@kH@ sU@ H@!U@ H@U@H@ 8U@H@2U@.H@U@RH@U@H@@U@H@U@H@ U@H@@ͯU@-H@3U@ H@U@H@U@)H@OU@`2H@@U@äH@ \U@H@U@@H@@.U@H@U@?H@U@8H@%U@@pH@U@`q|H@U@tH@`U@_lH@U@r[H@@GU@NH@ &U@DH@@U@d?H@`ŎU@n6H@bU@`7H@qU@{3H@ QcU@G@SbU@`G@@dU@G@fU@`G@'mU@G@kU@ G@5eU@G@aU@mG@ NU@@G@=U@nG@=2U@iG@ /U@ kG@2U@@vG@@ 0U@ OzG@S*U@[G@`U@9}G@(T@ ҇G@ fT@G@`T@1G@T@}G@T@ zG@`T@aG@T@EG@T@ &G@\T@ F@@ÔT@F@vT@`F@.T@mF@T@ `F@T@ F@ &T@:F@wT@\F@)T@ȏF@@ӞT@@QF@єT@@ԝF@UT@`/F@@|T@(F@wsT@{F@ sT@ %F@nT@F@gT@3F@7T@ǐF@`a2T@ F@T@`)F@[S@`rF@ S@nF@kT@eF@T@iF@`T@_F@!T@ZF@T@ rSF@T@@MF@ST@ 9F@T@0F@T@nF@.T@,F@@T@E@ W/T@E@=.T@@ͳE@@*T@ E@*T@`E@0T@E@1T@ءE@3T@E@@P1T@ݍE@ (T@ϑE@T@;E@T@E@$T@LtE@($T@`pE@`T@uhE@ T@`PE@@T@E@@ET@WE@O T@ E@@ET@`&E@T@+E@S@7E@2S@9E@S@S@E@`6S@}E@3S@4yE@1S@GyE@@Y.S@`VuE@*S@`uE@@{'S@=sE@ S@.vE@?S@)rE@@GS@BuE@`S@tE@S@`fvE@ aS@`wE@ S@ vE@S@xE@#S@8vE@JR@-yE@ \R@exE@ R@lE@@ER@ 8gE@dR@ jE@pR@8mE@[R@`}E@R@E@hR@vE@;R@E@ޜR@@{E@ R@E@`ŒR@༛E@ތR@aE@`R@E@@ R@E@@̓R@E@@G~R@E@szR@ාE@=uR@E@^eR@E@cR@{zE@`R@@rE@aR@`ffE@}]R@ZE@ [R@@OE@\R@ CDE@&bR@5E@v`R@@3E@ZR@`7E@UR@f7E@UR@AE@cMR@@BE@`JR@ GE@`=R@DE@&:R@.FE@L5R@IE@2R@@QE@v0R@ SE@@Y&R@XE@M R@ XE@`R@`cE@ R@`cE@R@`E@ Q@kE@Q@kiE@@pQ@-iE@8Q@aE@Q@`aE@`Q@fE@-Q@eE@@.Q@fE@@Q@@._E@Q@-aE@`Q@ uZE@Q@`WE@`Q@`VME@Q@kIE@`+Q@qDE@Q@=E@Q@:E@ſQ@ L>E@Q@`6E@Q@1E@ Q@(E@ Q@)"E@ Q@[ E@׶Q@#E@-Q@E@@ϪQ@ E@ Q@E@@Q@E@Q@E@@@Q@ E@ Q@7E@QQ@ E@@WQ@D@@pQ@D@Q@ D@Q@D@සQ@D@Q@D@@{Q@D@`vQ@`kD@iQ@.D@m`Q@@D@[\Q@D@YQ@=D@ZQ@̼D@`+VQ@@D@`RQ@`D@OQ@Q@D@}9Q@D@@7Q@@D@1Q@D@\.Q@L}D@x'Q@`wD@`)'Q@tD@%Q@uD@%Q@oD@[$Q@`BnD@%Q@z]D@v(Q@q\D@)Q@@UD@'Q@uQD@})Q@$PD@m(Q@MD@ &Q@LD@`f"Q@PD@`Q@ KD@#Q@LD@`Q@XD@Q@fD@Q@-hD@Q@`fnD@Q@wD@= Q@D@Q@`D@ Q@@D@5 Q@@D@ Q@eD@GQ@D@Q@`܆D@`Q@D@@P@ \D@@P@ D@@P@֔D@QP@ࣘD@+P@`D@P@aD@ P@@3D@P@`fD@ P@`D@P@eE@`ށP@eE@@YP@.6E@P@ L6E@P@`E@tP@ HpE@aP@E@+QP@ \E@;P@@pE@QP@ (E@@O@` E@ O@uE@ O@8E@b>N@/F@N@F@c @@F D@}@A@A@SA@`@@`@@ Pܿ@@_, @@`a?@@_~?A@U?` A@,?@zA@`:L?b!A@?B%A@@?`4A@]M? CA@`?IA@@z?MA@ Ί?@hA@ó?3jA@I? geA@;L?A@`H?`A@?VA@`.?T}A@a?[A@@xA@ V@pA@@M@cxA@@wA@8@@ikA@@@_A@@TA@@KA@@@GA@@!:A@t @`3A@ @ @ O:A@~1 @ N;A@_ @@p-A@` @S&A@@ @!A@J@ A@ V4@`A@&@A@t@@iA@ @ A@< @`A@@`A@@`@@@ 40A@e@@1A@`p@A@Ut@@)A@ww@A@@(x@ yA@x@ A@x@`\A@}@A@z@`B@b@ ?B@b@RB@b@`|B@/@B@1 @C@ @`Y9C@ @CC@); @tC@@q @C@7 @5C@2 @C@@h @C@@-X @C@ @ @1C@`9m @`C@@1D@Be@`GdD@&@D@`ij@٨D@ 8@@D@@ D@ @ D@B@ D@x@ D@ W @`?~D@%@ ~D@̓D@#D@y`cD@.D@?ߣD@@B D@@D@ ?*D@`D@& D@@}R`}D@#D@]n@|D@G |D@ x@.wD@ sD@alD@d &vD@?}D@@zD@|skyD@;LPqD@`bD@-X >iD@ gD@;`ND@ tCD@3#!D@@(D@@` D@&D@V D@@ W C@@ @oC@ʎ C@R8 8C@ C@ @C@ mC@" C@@ #C@ wC@ eC@@eC@/7`C@ C@C@f&eC@i$ C@ R`AC@K>C@p^C@`S@C@0 C@ C@`\@C@ cQC@F[C@ p EB@6 B@@z5 `B@\ B@`+ xB@. @(B@~ nB@>i`B@"`%B@;B@ B@@UA@n~A@'A@[A@d 0Q@@;HcQ@@SHH4Q@@;H0Q@`Hk1Q@H5Q@H$4Q@ yH:Q@`H@O6Q@H3Q@`H`4Q@ H;Q@H|:Q@ ߤH7Q@ڨH3Q@H@x6Q@ H1Q@H0Q@ &Hs:Q@`rH3Q@3H5Q@ӎH(0Q@ઊH0Q@Hb1Q@H4Q@`H3Q@`|H9Q@`}H4Q@5qH2Q@@nH2Q@VlH Q@ +bH@WGQ@\H=Q@iHS:Q@@lH@F:Q@rH@Q@ bjHIQ@ aHKQ@@"bHFQ@7hH@`KQ@ hH?Q@ϊHDQ@AH@CQ@`HEQ@-H`JQ@H@JQ@ HQQ@ ލHr[Q@Ht]Q@H$\Q@`*H@^Q@@HcdQ@`r|HfQ@H=jQ@-H@ eQ@ HiQ@ H@VQ@ HRQ@ۗH`VQ@ 8HYQ@ZH`^Q@Hw[Q@`ƚH=bQ@%HZQ@ aHhQ@ ߤHKeQ@@HmQ@H@ Q@\H@Q@ HQ@ˆH >Q@@RH@Q@HcQ@H|Q@`CHVQ@HQ@OHQ@H֗Q@ H@ Q@`THbQ@ڸHّQ@ HQ@`HQ@hHtQ@H`Q|Q@ 8HyQ@H3rQ@HrQ@KH`QlQ@)H@?tQ@@(HQ@AH@WQ@`rHQ@?HAQ@MH'Q@ H@?Q@HQ@H͓Q@@HaQ@H@pQ@H`Q@HQ@@HHxQ@`H`qQ@DH]rQ@DH,mQ@nH`hQ@#H &nQ@ bH@mQ@EHAjQ@H`\Q@`H{WQ@ HQQ@HOQ@@dH@GMQ@ HLQ@HNQ@`HMQ@H0IQ@YH@IQ@ HFQ@HSFQ@pH DQ@`CH@hDQ@`HGQ@ bHKEQ@ HH4Q@@;He-c G?c6@c G?-cZ?cI?൮c`?`9c[? cn^?ܫc M_@Z8C@0A_@ >AC@ n?_@ DC@@_@rKC@E_@`FC@@UH_@'UC@@iK_@mOC@+U_@UC@c_@@UC@\_@cC@ [_@`q\C@ W_@!ZC@`;W_@`]C@8R_@YC@ JO_@\C@P_@_C@ N_@eC@ M_@@o^C@H_@fC@I_@pC@ S_@C@U_@`C@JZ_@C@@Z_@ C@U_@ C@`fV_@rC@ \_@C@D\_@C@ nW_@C@@<_@C@8_@C@ /_@C@?0_@@C@'_@(C@`#_@C@`x_@bC@_@ yC@_@ ,C@@U_@@D@_@` D@%_@t!D@ 9_@``@D@<`@@D@ <`@`0D@V8`@D@"5`@A@@_@QA@@_@ OA@B_@A@`T_@@A@ 1_@A@œ_@@A@8_@A@_@ A@`_@ A@@͟_@@A@_@A@&_@ A@_@@A@_@A@_@@A@8_@@A@\_@tA@&_@ xA@ _@DA@_@ gA@`k_@ &A@_@A@O_@`A@è_@A@ H_@JA@t_@B@׫_@$B@`_@B@࣠_@B@O_@`B@`k_@B@=_@\&B@_@#)B@0_@-B@ _@s2B@_@:B@z_@@7B@_@=B@_@iCB@&_@@DB@W_@DKB@_@ KB@a_@@pUB@`_@cXB@ ҟ_@ \B@_@^B@`f_@`SB@ җ_@`GQB@ _@`ZB@=_@^B@ n_@`XB@_@ NB@_@JB@u_@[B@@ _@[WB@`_@@oVB@&_@@YB@_@ ZB@_@c`B@_@`ZB@@_@gB@T_@2cB@@͋_@lpB@@_@sB@@_@`nB@ԑ_@nB@E_@`sB@_@dB@Җ_@ dB@_@`kB@ \_@`jB@_@ sB@_@szB@ _@~B@_@@wB@f_@PqB@`_@kB@ _@tB@\_@@.wB@_@@0 @H@?=@@H@=@H@ =@H@ =@ H@$=@H@`=@H@=@{H@=@H@@=@`,H@?=@ .H@``=@#H@=@@H@?=@SEG@@=@GG@ =@qG@=@~G@=@G@>@௭G@ >@G@ y>@G@@U>@`G@ >@ ,H@ =@| H@`_=@ gH@=@H@=@ H@=@kG@=@G@ ّ=@`G@ g=@G@`6`=@3G@d=@vG@@zT=@`HG@U=@BG@@e=@` H@aZ=@ H@@:=@`H(H@y<@2H@9<@c0H@<@@)5H@<@5H@ [<@@G@@ۏ<@ G@2<@G@`)<@ G@<@`YYG@=@SEG@@=@i OQ@ C@@ET@aE@ Q@[ E@ Q@)"E@ Q@(E@Q@1E@Q@`6E@ſQ@ L>E@Q@:E@Q@=E@`+Q@qDE@Q@kIE@`Q@`VME@Q@`WE@`Q@ uZE@Q@-aE@@Q@@._E@@.Q@fE@-Q@eE@`Q@fE@Q@`aE@8Q@aE@@pQ@-iE@Q@kiE@ Q@kE@R@`E@ R@`cE@`R@`cE@M R@ XE@@Y&R@XE@v0R@ SE@2R@@QE@L5R@IE@&:R@.FE@`=R@DE@`JR@ GE@cMR@@BE@UR@AE@UR@f7E@ZR@`7E@v`R@@3E@&bR@5E@\R@ CDE@ [R@@OE@}]R@ZE@aR@`ffE@`R@@rE@cR@{zE@^eR@E@=uR@E@szR@ාE@@G~R@E@@̓R@E@@ R@E@`R@E@ތR@aE@`ŒR@༛E@ R@E@ޜR@@{E@;R@E@hR@vE@R@E@[R@`}E@pR@8mE@dR@ jE@@ER@ 8gE@ R@lE@ \R@exE@JR@-yE@#S@8vE@S@xE@ S@ vE@ aS@`wE@S@`fvE@`S@tE@@GS@BuE@?S@)rE@ S@.vE@@{'S@=sE@*S@`uE@@Y.S@`VuE@1S@GyE@3S@4yE@`6S@}E@>S@E@ CS@<|E@pIS@{E@LMS@fuE@`kVS@ rE@k]S@ wE@@GbS@`uE@eS@qE@=jS@(uE@`nS@uE@sS@ sE@uS@`voE@pyS@=sE@S@`oE@S@mE@S@pE@S@mE@S@`[qE@ǠS@QqE@٩S@kE@S@hE@OS@gE@`S@@3cE@`TS@2dE@S@=aE@vS@eE@kS@@cE@S@]E@S@VE@GS@PE@ S@`ME@hS@q5@`doY@HP5@@.sY@5@ uY@k5@)pY@t5@8rY@25@ JgY@d6@zdY@wG6@ hY@ &N6@ lY@cx6@5qY@`66@tY@w6@ nwY@c6@ByY@@Xb6@ Y@r6@`ņY@`o6@Y@Ye6@Y@76@ךY@`6@ ZY@`S5@Y@5@@Y@5@@ͯY@5@QY@@ͻ5@ Y@ 5@ Y@5@`Y@`5@ !Y@5@ Y@5@½Y@5@ JY@ʮ5@Y@ N5@Y@n5@@gY@gt5@Y@`M5@Y@B5@Y@@<5@Y@5@Y@ \5@@Y@4@Y@ N4@Y@4@ Y@`4@@@Y@4@Y@b4@Y@@4@ nY@`4@Z@T4@Z@`*4@EZ@4@u%Z@`4@0)Z@4@@E#Z@14@!Z@@4@@gZ@u4@Z@Hp4@ Z@vh4@`&Z@ rk4@=-Z@vX4@-Z@ OJ4@q+Z@ G4@@+Z@84@;Z@@/4@`>Z@4@p=Z@3@`6Z@@3@1Z@3@&6Z@ s3@5Z@3@W*Z@;3@G)Z@3@x!Z@@Κ3@`xZ@ ~3@Z@ X3@ Z@@ۯ3@ Z@53@Z@ 3@Z@Ʊ3@WZ@q3@Z@I3@wZ@h3@6Y@`/f3@ CY@@K3@Y@@3@`TZ@!3@Z@`)2@T!Z@2@`+Z@A2@G=Z@@'2@HZ@`մ2@@gLZ@@z2@$LZ@<2@IZ@@2@FZ@w2@qHZ@ h2@ CLZ@@`2@KZ@ ~Q2@ XZ@)2@ [Z@`052@ _Z@.2@ gZ@1@ \gZ@1@ !oZ@`1@=rZ@Ѩ1@@vZ@`ܞ1@`ʂZ@g1@Z@ B1@;Z@>1@`fZ@`Y@1@`AY@@ 1@ 6LY@2@IY@@A2@@KY@fU2@EY@ `2@ CY@ Vt2@HY@ 2@5QY@@ۯ2@`NY@@2@ HPY@ 2@VY@9 3@aRY@ 3@LY@` d3@@RY@ y3@=QY@C3@NY@v3@)LY@`3@BY@3@B9Y@`3@1Y@@|3@(Y@3@$Y@@]~3@`Y@r3@Y@`3@`Y@ 3@0%Y@Y(4@O!Y@ %4@Y@ ~14@Y@X4@ Y@d4@Y@a4@8 Y@@(<4@8Y@A4@@Y@ kY4@.Y@[4@ Y@@4@Y@ 4@!Y@ 4@ $Y@`Y4@x)Y@@4@(Y@14@n"Y@4@ Y@D4@"Y@ x5@&Y@ 5@`.Y@lP5@k5Y@pM5@@U@Y@f5@WJY@ ҇5@IY@@5@k 4@K@<<@ M@L8@CL@``K8@L@`_O8@`wL@k8@`L@`s8@L@8@3L@8@@L@@8@@M@8@pL@8@M@`8@M@y9@- M@ +9@ M@49@M@ ;9@ L@]K9@M@L9@M@ZC9@M@@;@ LL@V;@ L@`_;@L@@;@L@;@zL@;@L@Ή;@$L@ ;@@L@;@`BL@>;@L@;@BL@@ ;@ lL@;@ۀL@@p;@]}L@;@uL@;@rL@ף;@lL@;@pL@@P;@ 8oL@o;@iL@`;@fL@;@bL@;@@_L@G<@XL@<@`OL@e<@KL@@ '<@FL@ <@@L@ 0<@e8L@4/<@ /L@<<@`"L@3<@fL@1<@`L@*<@=L@H<@fL@<@uL@ ;@L@@;@eL@;@=L@;@@K@஥;@ LK@ ;@K@`;@]K@`ff;@@K@Y;@K@@>H;@K@ ';@VK@p:@K@@y:@ K@:@K@̾:@K@ e:@WK@4:@K@Â:@K@V:@K@D:@{K@2:@`fK@:@K@@ 9@ L@ \9@jL@ 9@L@@͋9@L@~9@L@S9@`L@9@L@@ 9@"L@9@@%L@@8@Q8L@R8@@9L@H8@8L@`I8@4L@ 8@ 2L@>8@.L@8@$L@@*y8@ u"L@V8@@'L@@%8@u!L@ 7@*L@ 7@*L@7@.L@7@@.L@Θ7@\.L@z7@ *L@@K7@0L@@+7@R.L@ (.7@<,L@7@$'L@ 7@*L@ (6@ Q2L@6@`B6L@`6@0L@6@`-L@6@1L@@6@`3L@?6@@2L@'6@ L6L@46@5L@@5@[(L@`R5@(L@5@%L@@m5@L@Z5@`L@>5@L@`75@ L@ 5@ L@ 5@QL@ 4@PL@ ~5@`=L@S5@AL@n5@ ,1L@`5@3L@5@`YAL@4@DL@@5@ kL@\5@~L@aj5@`L@k5@` L@5@KL@G5@@L@ 5@`L@}6@L@@^6@L@6@L@̜6@`L@@;6@@L@ #7@ xL@@XB7@L@7@9}L@ 7@{L@7@mL@gU8@`GL@@i8@ L@Ec8@L@Z`8@mL@L8@CL@llA@@@`OB@ 6XA@.@A@ #SA@B@QA@'B@UA@'B@dWA@@,B@ 6XA@c0B@QA@`6B@MA@ `+B@BA@S6B@`6@A@ FB@ 6A@@GB@k)A@LB@`'A@{KB@ xA@`OB@`A@`5B@A@ D$B@ y@@ 0B@@@8B@@@LA@@@`A@`@@B@@@@B@*@@A@{@@A@`/@@DA@ ԟ@@`A@'@@`A@ @@A@@@ A@@@lA@@ʋ@@`0A@ U@@aA@̜@@[A@@@@ A@@@A@2@@` A@@@(A@ @@`A@i@@A@K@@jA@[A@ A@#A@ ~A@ ,1A@`A@s:A@A@v@A@A@HA@@A@ #SA@mP;@>t=@Ǒ<';@`H=Y;@ a{=t;@ J=;;@<G;@<;@t<`;@@< y%<@<<@Ǒ< N<@<<@ <=@w<BU=@ =t=@tZ=`k=@n=r[=@Ws=K=@G=O=@|=*=@)==@ =@Q(=@==)=@=<@ >r<@L>`=<@WC>`7<@@M>A<@S> %<@Dt> (<@>`<@t><@>@;@ >@ڰ;@q>j;@Eg>u;@O>a;@P>`0e;@@ > S;@#>;@`H=nU&g@x#!@t@u$7 @n$ @S$!@$j!@ $ @/$ @#@ @@# @###!@@i# @ic# @@3S#s @GA#> @O#@ @)# @ "@Y @#L| @@"Y @@"D @N" @" @J"O@ݵ" p@"@0@"bt@R"2@@"@0"`]@h"`@ge"?@2"@@8"@s!&@!`@˭!{3@ j!@@4r!@I@QW!b@@L!C@!`ty@ `O=@/ #@ @0@| +@w D@!!l`@6!`@W J@@ @ @@ 2@ j@2 @hd@ j 1@% _,@` @=J@a@T@$@ ^@K&@Z ˭@` }q@` Ga@@@,y@I@ܾ@$0u@xW@@ $@@P@)`g@Q8UU@d( @tZ @/@X@@`@,g@Zp@N9@G :L@0!@Q!@ô"`@#̌@0#`@*#@@# @#@`$`p@ࣰ$#`@G$<@$@$@@% @%@O:@ੋ% @@Ϋ%@`&`˭@@& @r&,9@@&`g@U&`@&_@`/&@x@& @2&`@`%b @^%O@l3%@@4% @$@E @ $J @@-$e @ –$N @@u$7 @o"@@m3@\"9@@8@@e#@`n<>@#@ X>@7n$@q>@Ô$@>@ %?$@@(l?@dG$@?@ ߜ$@?@`$@`?@`$@c?@ +:%@;?@@?%@v?@%@#@@%@@@'@g4@@`"'@`8@@@*'@@>@@&@ZP@@&@z@@@ '@@8@@@I'@ @@K'@`Ŋ@@F(@`j@@:)@`/f@@q|*@u@@T*@)s@@p=+@d@@+@8f@@ f,@Z@@,@B@@ K.@`3@@ l.@7/@@p.@ @@-.@?@ .@?@h/@ k?@0@F?@DC0@:?@@0@a:?@`Y1@@W#?@^1@?@u1@?@1@@(>@y1@@'>@ 2@>@ yu2@@>@2@@PI>@ 3@C>@Y3@K>@`3@ N{>@@4@>@`'4@`/?@@$4@@5?@3@|?@``3@?@3@@(?@`4@ @@[4@ ~A@@@4@`_@@@`5@c@@15@ w@@ 5@is@@)6@Zx@@56@`p@@\6@o@@|6@f@@@z6@1d@@7@O@@`7@H@@$7@ :@@M7@(4@@ y7@`*@@!B7@ @@N7@ @@7@ &@@ 7@ @@87@@ @@{8@`?@8@r@@@8@?@> 9@ ?@@9@?@ 9@?@\"9@ ?@ 9@?@8@ m?@8@Fb?@n8@t)?@9@`>@8@ׂ>@8@;>@`մ8@ '>@`8@ =@48@`/=@8@=@ H8@=@m8@?=@9@;@@8@:@m8@.9@@8@h7@H9@`y6@9@@U6@9@4@`69@3@m_8@3@`68@ 4@ 7@@m3@ e5@`*4@]2@@-X6@`60@@Ws7@R.@@7@Qx,@96@0+@#7@*@@67@'@7@&'@pM8@7n%@48@@-$@az8@#$@8@o$@H8@$@8@` $@eV9@"@@':@@>"@.:@`("@ ;:@"@[:@F#@aj:@#@d:@@q#@:@X#@:@@Qx#@R;@#@;@#@;@ #@ ;@`#@\;@#@BE<@@%#@<@#@n=@!"#@=@"@[>@e#@`n<>@ph"@ZG@*H#@@,G@*"@mG@#@LG@"@`G@#@@,G@`#@`G@#@G@W #@ G@h&#@G@.%#@oG@^"#@]G@#@֝G@#@G@m #@xG@,%#@eG@(#@G@t*#@@G@_*#@ yG@`'(#@G@@S&#@@G@`%#@G@@&#@`iG@`v+#@G@#0#@XG@3#@eG@6#@G@;#@`G@@5?#@uG@@A#@OG@B#@G@wF#@vG@@E#@ uG@@)D#@G@F#@G@*H#@pG@AD#@@G@1B#@G@@>#@@G@ <#@G@8#@GG@ 5#@ eG@#4#@ZG@"@mG@q`3@J@:@@9L@e6@.K@6@ .K@ 6@*K@sZ5@`*K@C4@`.K@3@@5K@3@ 9K@l3@`?K@%3@bIK@ [4@@FK@ g4@eWK@@=4@ XK@4@SK@4@1\K@h3@YK@3@`_TK@@ 3@5QK@f3@;K@`3@L5@L@Z5@`L@@m5@L@5@%L@`R5@(L@@5@[(L@46@5L@'6@ L6L@?6@@2L@@6@`3L@6@1L@6@`-L@`6@0L@6@`B6L@ (6@ Q2L@ 7@*L@7@$'L@ (.7@<,L@@+7@R.L@@K7@0L@z7@ *L@Θ7@\.L@7@@.L@7@.L@ 7@*L@ 7@*L@@%8@u!L@V8@@'L@@*y8@ u"L@8@$L@>8@.L@ 8@ 2L@`I8@4L@H8@8L@R8@@9L@@8@Q8L@9@@%L@@ 9@"L@9@L@S9@`L@~9@L@@͋9@L@ 9@L@ \9@jL@@ 9@ L@:@K@2:@`fK@D:@{K@V:@K@Â:@K@4:@K@`o:@K@ :@kK@@đ:@@K@ :@ѸK@ࣀ:@K@@t:@K@:@K@`:@aK@S:@$K@:@ K@z:@K@:@K@`):@K@F:@ lK@F:@=K@ :@ K@P{:@דK@Fs:@K@`H:@K@@@:@ ҏK@?:@K@*8:@׃K@@*):@}K@ 9@xK@9@ tK@`9@foK@9@-hK@`9@ eK@˿9@8]K@)9@`VUK@9@@#JK@@9@=BK@9@(=K@ 9@6K@9@`.K@)9@*K@q9@'K@ն9@a*K@)9@`2%K@`29@$K@9@K@9@K@` 9@K@F9@@K@P9@kK@Έ9@K@49@oK@<9@K@@9@K@`Ó9@ K@ (~9@ 'K@s9@\&K@Fd9@ K@79@!K@@59@pK@@r)9@K@h9@=K@ ?9@K@ 8@MK@8@3K@8@K@8@ K@18@@gK@ 8@J@ Q8@ J@@8@7K@ 8@`J@ c8@J@U8@ J@G8@`)J@=;8@ J@ ,8@J@8@J@q7@-J@ \7@WJ@f7@J@7@J@`7@zJ@Q7@ J@`7@@J@F7@ J@7@I@ @ I@m@ yI@@@`I@@@@H@N@{H@`@ H@ @jH@`p}@H@r@H@`>@`H@@bH@t@@H@!@}H@sa\@y6@@f\@66@a\@w.6@a\@.6@a\@ /6@a\@/6@a\@06@`a\@|06@a\@06@`b\@ |16@`b\@26@`b\@26@`b\@@336@b\@36@ b\@246@b\@@46@!b\@56@`0b\@z56@=b\@56@Ob\@266@`kb\@R66@b\@66@`b\@66@ b\@66@@b\@66@`c\@66@`)c\@66@ Jc\@66@@ic\@66@c\@`f66@@c\@ ?66@c\@@66@c\@56@c\@ 56@ c\@56@d\@ 56@-d\@ S56@ Hd\@56@dd\@46@zd\@46@d\@@g46@d\@ 46@d\@36@d\@36@d\@36@d\@Z36@d\@ 26@d\@26@e\@@G26@#e\@ 16@5e\@ 16@Ge\@`[16@Te\@06@ke\@06@ze\@[06@e\@06@e\@@/6@e\@H/6@e\@.6@e\@.6@e\@ (.6@`e\@`-6@`e\@p-6@e\@@-6@`f\@`,6@f\@),6@@f\@@+6@&f\@]+6@3f\@*6@8f\@*6@`Bf\@ *6@Jf\@@r)6@`Tf\@(6@@Yf\@`(6@@Yf\@ '6@af\@'6@`kf\@@ '6@sf\@&6@`}f\@2&6@@f\@@%6@f\@`2%6@`f\@@$6@@f\@ $6@@f\@#6@`f\@#6@`f\@"6@@f\@"6@@f\@!6@`f\@ 6@`f\@`o 6@`f\@6@`f\@H6@@f\@6@@f\@;6@`f\@6@f\@(6@@f\@`6@`f\@)6@f\@6@`xf\@=6@`kf\@@6@af\@q6@Of\@)6@=f\@6@`+f\@@r6@`f\@@*6@f\@6@`e\@6@e\@e6@e\@*6@e\@ 6@}e\@6@^e\@`6@Be\@ 6@#e\@`6@d\@`6@d\@6@d\@y6@d\@y6@dd\@y6@;d\@y6@d\@6@c\@`6@c\@6@ c\@ 6@@c\@*6@c\@`6@xc\@6@fc\@ 6@`Rc\@@r6@@@c\@6@@3c\@ 6@`)c\@6@ !c\@6@`c\@]6@@ c\@@6@`c\@@P6@`c\@6@@b\@`I6@`b\@6@`b\@H6@`b\@6@ b\@ \6@ b\@ 6@ b\@ 6@@b\@@!6@`b\@!6@b\@"6@ b\@`"6@@b\@"6@`b\@@{#6@`b\@#6@b\@S$6@@b\@$6@@b\@`2%6@`b\@%6@b\@ &6@`xb\@&6@`kb\@&6@\b\@`R'6@Ob\@ '6@`Bb\@ (6@3b\@e(6@&b\@`(6@`b\@ )6@`b\@@r)6@a\@)6@a\@=*6@`a\@@*6@a\@+6@`a\@q+6@a\@+6@a\@,6@a\@(-6@a\@ -6@a\@ (.6@a\@w.6@tev4@mD@ 7@`B.E@N 4@9D@ 4@D@ 4@`D@׳4@D@4@@D@4@zD@Z4@$D@4@` E@5@@WE@5@uE@S$5@`[E@75@@3E@?5@ E@`'P5@ E@ T5@@ E@\N5@ aE@ Y5@` E@|p5@fE@u5@!E@`5@!E@5@@.E@@5@@h E@@5@`fE@5@!E@ 5@&E@@5@W*E@(5@B'E@5@@)E@ S6@z&E@`6@(E@16@[(E@86@+E@ ?6@@{+E@ S6@`B.E@@^6@U)E@]6@ (E@ch6@`#E@@6@9 E@6@`E@6@D@D7@`D@ 7@:D@M6@D@ 6@|D@`6@@D@@'6@ D@6@ 6D@46@rD@`6@ϗD@v6@FD@d6@D@6@[D@x6@@D@7?6@@ԕD@!6@`D@6@CD@ 5@1D@5@@vD@Ʊ5@`xD@@(5@ rsD@x5@tD@ W5@`oD@5@@lnD@@4@mD@4@jrD@4@wwD@`4@;sD@@`4@`tD@߻4@ tD@4@DD@4@D@ 4@ D@@J~4@D@4@D@ev4@`D@ &4@D@4@@'D@ 4@9D@u 0ME@9?I@`C'#@G@- =G@T-G@`l-G@Y-̴G@Z-G@}2.$G@S7.`G@x-aG@]-G@@$-G@ k- G@YR-G@`CE- G@K>-mG@@3S- fG@-@H@@t-3H@fG-IG@ E$-BG@Y2-[G@-G@` 5- DG@- `G@,G@``k,'G@&~,G@,G@`^,`G@/,kH@F,G@,@hH@`,@H@@To,H@T6, G@E,H@+G@ +G@+sG@m+G@Z1+ G@ ++rG@]+@H@)+`H@+H@`+@ H@2+@h H@4+aH@`51+ H@"+H@+@$H@+*H@΋+`*H@ +@./H@,+2H@`,+@X:H@+rCH@@^ + OBH@*`LH@*^H@* kH@?*`gH@ he*rH@2)zH@`)eoH@5)qH@M) kH@#) cH@ n(]H@K(bH@`(qH@(tH@(`YyH@/( |H@/(@-H@(`H@`(tH@`N(@WH@`2(1H@`2(H@(՜H@@5(H@( H@`C'`qH@(`H@j(H@I(@H@@3s(̤H@x( H@Q(H@Q( H@x(H@/w(`H@( ҿH@Z(H@( fH@(DH@U(`_H@)H@z)@H@C)`H@b)H@)H@8)H@`O{)H@@) H@)$H@*^H@~*iI@* I@8+` I@GA+`NI@9-@I@@;l-#I@-59I@`^.?I@.@7I@@j#/@I@`/`0I@@/@I@K/UI@/SH@ b*/{H@@.H@t.@-H@`&.H@. H@./H@ /H@` 0H@ 0`H@}20^H@`<0@H@N[0 H@0SH@D0 H@0JH@Q0H@@0`H@@@0H@`0H@01ԵH@|S1 >H@1H@Sg2H@%/3eH@`3`NH@Wc4w7H@ 846H@ 5@FH@`5G@@n6@G@Tv7 G@7G@7G@7G@ 87G@7$G@@E8G@D8cG@yu8G@8PG@`8G@`8 gG@`k8G@Q8@|G@ 95qG@@39`RG@@19c@G@@c)9`+G@`r,9F@ Q9F@అ9F@`9UF@9wgF@@U9[F@M9.F@A9 &F@+9(F@@)91F@;9 4F@069`F@ 9F@#9E@8 E@j8E@@O8 E@D7bE@પ7{E@@7wE@`75E@ v7E@@O7@hE@@c7E@`6 E@6ME@`I@6E@f76 gE@`<6 E@+6E@)65E@D5\E@@q5@ۧE@5 =E@5`ŪE@45`qE@)5̼E@`h5E@`P5`E@ ?I5@E@95E@@4F@Q4F@#q4@- F@a4 y%F@@>4F@_-0JnF@90`F@ /F@`/ UF@M0ةF@@;0 F@@ 0@ӮF@@/`GF@/F@&0F@ /@F@`/F@`/ >F@A/F@΋/F@Z/@XF@ࣰ/$G@@p/ G@~/tG@ԥ/G@T/ G@|s/ G@?h/@G@m/ &G@/`"G@/)G@Y/2G@:/@=G@/`6G@/ &&G@آ/`.G@@y/&G@8o/s*G@D/ ~IG@. >yG@e.z|G@ x. ~G@ .ƉG@=.){G@@$/G@. G@.G@@.`AG@@3.G@.G@`.SG@`r.mG@ he.G@=. G@`5. G@@3-ٰG@-ԭG@`5- fG@$-@G@-v HX@@"1JA@%"@@@Mf# @@# @@"A@-""A@`k"#@P9A@#mGA@M\$IA@$ VA@`~%LA@@&`UA@@S&aA@ࣰ&biA@ 9&`uA@*&K{A@@!' #{A@ S%'zA@T%'#PA@@&'NA@'/A@U( 8A@)`CA@@)HA@`*:TA@&*ZnA@*@nA@ 3+1A@I_+ HA@O-A@-JA@ h-nA@[.A@ڧ.`A@.`A@ . A@0`A@!#0A@0A@@90`6A@gu0 A@0`A@0@A@}0`A@`0`A@E0mA@@1`2A@"1 A@@!1A@1ϑA@0A@S0lA@#0SA@0 nA@p0aA@0@LA@g0IA@R0!:A@`H04A@z406A@`I0!A@ 1/P!A@`/ ~)A@|/@z4A@`Z/`8A@Q/n6A@K.{KA@Ȑ. HA@-BA@`-BEA@*;-1A@``, &A@,t A@ ,R@@W,@@Z-`A@@,@@`I-`@@}2-D@@`--S@@l,K@@4,d@@,@@@-+`@@, @@,`s@@ף+(d@@@+c@@|+j@@``k+d@@G+ HX@@`>+cX@@G!+ >i@@|+ @@n*@@ *`@@@){@@|) z@@)@@ 15) @@c)) @@:-)ߣ@@ )@@`/)@@ ߼(@@ҧ(|@@`(@@(`@@EC( =@@L'k@@/7'@h@@ $'`@@A&'@@ &_@@@ W&@@ % @@`)%β@@`%`6@@7%@@@)%`@@%@P@@$`@@ Vt$ ~@@"$@@#`@@@#`A@@# @@xv#T@@D#@@_,# g@@XS# %@@@K># ~@@I"`z@@"@hx@@@"Zx@@@"@@%"ਃ@@@" @@#@@"j@@|#@@@Q9##@@o>#`@@`+#@@8#@@a*#@@@Mf#w F@gX@@N?]@9m@E]@`g@@3C]@@X@E]@`3@JN]@9m@`}R]@3R@Q]@@N]@ij@E]@`g@@X@`%@@gX@<@@X@@@X@@`X@&^@ X@(@@X@J>@@X@`%@;Y@`ѫ@@ Y@@) Y@@Y Y@@ !Y@@ Y@`0@)Y@@@/Y@`@6Y@@^M@6Y@@?Y@CD?Z@ߛ?;Z@ ?Y@Z? 8Y@ ?Y@@?@Y@`W?Y@^M? Y@ /?`Y@@ϊ?Y@?`xY@ ? Y@ ?ɣY@`O@5Y@ 7@{Y@|R@vY@@_,@qY@@M`Y@Xr@YY@|@=RY@@ RY@:L@@WY@@ WY@L]@RY@& @dPY@{s @AY@  @@3Y@@L@5Y@@@0Y@`@.Y@S@,Y@U@-Y@O@.2Y@G@@W7Y@# @1Y@@0Y@h@@'Y@e@ #Y@ =J@#)Y@ 8@.&Y@D@%Y@q@J*Y@Ʊ@`T&Y@`j@%Y@@@D(Y@@$Y@ ,@ s#Y@m@ Y@ G@@Y@7@@Y@@-X@@Y@@Y@@Y@~@EY@'@ Y@@U@O Y@q@;Y@`ѫ@\@E@\@l@O\@@\@@>@ \@Q@ \@@&@`\@e@`V\@ @J\@z@\@@`v\@ @`\@AF@\@@`\@`%?@ l\@@@\@b@`\@ @`v\@`z@O\@2@&\@/@@3\@@Q\@"@`\@`8N@@\@`p@@E]@ ]@ ]@eG@ ]@!b@]@r@`]@@X@]@`@]@7/@]@p@5)]@@-]@@u1]@/@p5]@-@`k6]@@D4]@`(@ 3]@m@&6]@l`@6]@@ 3]@`@1]@q\@@33]@@N@@37]@b@@{C]@`(\@A]@`%@E]@ @@iK]@ @ 1P]@@WN]@H@@ S]@@\^]@*@a]@i@ c]@E#@i]@ @@Wo]@@`m]@@ j]@`g@af]@F@h]@~@ h]@E#@j]@ @@j]@`@]]@ww@x]@@z]@`@Հ]@L<@ ]@`r@#]@=@{]@#A@ z]@`>)@u}]@@]@@O]@ .7@]@:@@{]@ @=]@@̤]@@$]@@]@@x@]@@=]@@ һ]@@`_]@[@]@@6@O]@඿@x]@@ ]@@ܾ@]@J@]@ Ga@+]@`N@d]@@~@.]@`-@ s]@,@]@#@ ]@$@&]@ @ ]@@g@]@`p=@`]@`_@]@t@`d]@@xV@]@`$@v]@@`]@@-@]@@@൤]@`@]@@g@`T~]@@i]@@`xf]@`g@i]@Y@`e]@X@_\]@ g@`N]@o@&5]@R@`/]@~@q,]@S@)]@ V@$]@ `@a!]@@v@!]@@E@]@\.@a]@ {@ ]@ـ@`v]@@\@x@\@I_@\@&@ \@ @ \@`H@@ s\@U@\@ @@\@i @\@W @/\@9@\@`@T\@)\@\@`g@\@[@ H\@,@8\@\@J\@@k\@n@@.\@.@\@\@x\@@\@Y@Ǽ\@j@ \@2T@@\@@\@@_,@`ڳ\@E@@\@Y@\@[?h\@D?}\@1T?`\@`?\@@33?`ʢ\@a?\@!"? l\@@b?\@|?`;{\@@*?r\@?i\@ͫ? Jc\@? [\@ ?`TF\@i?>\@?B\@X?B\@ ?`\@`? \@? \@@?$\@O? C[@?[@ gE? [@?[@ \?`+[@%?)[@g?B[@/? ![@`a?ܹ[@);? [@ ?[@@N?B[@t? [@`?W[@Z?`[@@? Z[@Œ? {[@@'}?`kv[@?j[@ j?@j[@ ?xe[@@6?@c[@d?@i[@@i[@ ?l[@`?`u[@ ?{[@#?@3[@8?[@?h[@޼?[@ų? 8[@l?[@ ?@[@?[@?ٝ[@ $?=[@? n[@Q?[@?[@\n?E[@?[@? l[@= ? 1[@ MIs  /6Cgp{;LYdkv)?M\j %.8?JZbw vXR@@;XR@ @2XR@K@ HXR@w@hXR@@XR@h@XR@`@XR@$@XR@@XR@@XR@S@XR@@YR@@@(YR@@(YR@@#YR@ @YR@`f@XR@@XR@`@XR@`I@XR@6@XR@@vXR@@:aR@@@`R@@%@`R@@@`R@@`R@߾@`R@`@`R@`m@ aR@`K@:aR@=@:aR@`m@0aR@`@#aR@N@aR@@+aR@Q@:aR@@@@ ?R@`K@ >R@  @`>R@ @@>R@@`>R@Z@ >R@8@`)?R@L@@E?R@@O?R@ @ s?R@] @@E?R@ @@ ?R@`K@fYR@/{@YR@~{@XR@p}@XR@` @ YR@ a@BYR@ Є@zYR@ a@YR@` @YR@p}@fYR@/{@]R@4@]R@@6@]R@:@]R@"=@^R@"=@@^R@/;@`^R@6@`]R@@4@]R@4@2R@ @@p2R@ @2R@w @@2R@" @@3R@" @O3R@ @x3R@= @ a3R@  @@3R@ @2R@  @2R@ @ [R@`k@ J[R@@W@@[R@`I@`[R@@`[R@@ 8[R@@@{[R@F@[R@h@ [R@@[R@`ڛ@ [R@`k@BYR@@N@YR@ @XR@@XR@*@XR@@XR@w@ HXR@@ HXR@@vXR@`t@XR@@XR@`@+YR@@GYR@`I@fYR@6@zYR@@}YR@ :@BYR@@N@;R@|@@i;R@@ J;R@@=;R@@y@`);R@@@ &;R@v@@E;R@9@x;R@@@;R@@@;R@v@;R@)@ ;R@@;R@@;R@|@\>R@ @`>R@  @=R@ @=R@ ~ @u=R@@k=R@ @`=R@ @=R@@`+>R@@s>R@@`>R@@@>R@ @\>R@ @`YR@i@`YR@`j@kYR@`"l@=YR@m@YR@@Up@0YR@s@uYR@r@`YR@p@YR@4o@`YR@ l@`YR@i@`)GR@*@`FR@6+@`FR@-@ FR@0@=GR@@1@ JGR@-@`)GR@*@QR@m@PR@@y@PR@w@PR@v@QR@`@=QR@`@QQR@@QQR@`@TQR@)@=QR@@y@QR@m@0QR@@QR@_@PR@@r@PR@@@PR@` @QR@M@GQR@@YQR@ @QQR@@@0QR@@@#QR@1@0QR@@ GR@@ GR@G!@ GR@`t$@ GR@&@;HR@ %@_HR@`#@ HHR@`' @HR@i@ GR@@OR@X@@WOR@@`)OR@`@ OR@@w@`OR@@@@3OR@@@{OR@s@ OR@@@OR@a@OR@@w@ OR@`@OR@X@LR@@B@LR@C@LR@F@hLR@`_G@-LR@H@ 6LR@ ~L@dLR@N@LR@ O@LR@N@LR@ \O@LR@ \O@MR@ ~L@MR@kI@MR@E@LR@@B@GR@ I@ GR@I@ GR@;N@GR@@NQ@GR@ S@$HR@ :R@ 6HR@;N@HR@]K@GR@ I@ KR@]@KR@_@ sKR@`b@@KR@`ff@KR@ h@KR@i@LR@ 8g@KR@`c@KR@_@ KR@]@ +R@@W@+R@@Ɯ@ +R@@@+R@@+R@@,R@d@ H,R@@;,R@@2,R@G@,R@@ +R@@W@@ CR@µ@`BR@@@BR@Q@BR@@`BR@߾@@BR@,@@BR@`@@BR@@ &CR@M@ 8CR@@=CR@@ 8CR@@@@ CR@µ@`B^R@@]R@@]R@@]R@V@]R@@]R@@ı@J^R@u@O^R@@a^R@@`B^R@@BR@@t@`fBR@@w@`fBR@|@`}BR@b@`BR@ @@BR@ a@`BR@р@@BR@`|@`BR@y@`BR@@v@BR@@t@ DR@؟@CR@G@CR@@CR@@DR@ @DR@@[DR@@qDR@@w@vDR@`"@hDR@X@QDR@F@2DR@h@ DR@؟@`R@\@d`R@]@?`R@_@ `R@b@`R@`ff@ `R@6k@2`R@@wm@m`R@Vl@`R@ j@`R@ 8g@`R@%d@`R@_@`R@\@3FR@ @ER@@FR@ j@`+FR@-@=FR@@JFR@@aFR@@`FR@@@`FR@`k@`FR@@`FR@@ @`FR@@FR@@FR@ @`xFR@ @3FR@ @ 9R@)u@9R@Dz@9R@"}@@:R@fw@&:R@`o@:R@ h@9R@`c@9R@`c@9R@j@9R@@Gr@ 9R@)u@HR@@[HR@@DHR@`@DHR@@[HR@@HR@@HR@@@HR@@@IR@#@GIR@~@kIR@ @IR@@IR@ a@IR@`@IR@ @`IR@@IR@@IR@@ @`IR@@W@ JR@`@8JR@v @\JR@`#@JR@ @@JR@@@sJR@`@`TJR@L@=JR@ @`0JR@ \@!JR@] @JR@ @`IR@`@`IR@` @IR@ @IR@@IR@@pIR@@TIR@a@5IR@@IR@@HR@d@HR@`@HR@@KR@ ?F@@KR@ G@ nKR@ J@ aKR@ M@OKR@Q@ aKR@LU@KR@zT@@KR@R@ KR@ \O@KR@ jM@2LR@ M@_LR@O@LR@Q@LR@ S@LR@ P@LR@ M@LR@]K@mLR@I@?LR@`KH@ LR@`F@KR@ ?F@`9R@ @9R@@9R@@9R@`@9R@@9R@6@:R@X@`:R@ @`9R@ @LR@@QLR@@DLR@ @;LR@ :@ HLR@@QLR@6@MLR@i@DLR@@MLR@@dLR@ @LR@ @LR@F@LR@@LR@`@LR@@LR@m@LR@ :@LR@@LR@=@LR@@LR@`_@LR@ @LR@=@LR@ྎ@LR@ ː@LR@@ MR@z@5MR@X@LMR@6@^MR@`I@pMR@@fMR@F@LMR@$@5MR@ @+MR@@BMR@@3@pMR@@@MR@@MR@4@MR@@MR@$@MR@9@MR@U@MR@@MR@X@`MR@ @MR@-@uMR@@QMR@ @#MR@Έ@LR@`_@(-R@@,R@@,R@~@,R@@,R@@-R@ a@L-R@@z-R@ @-R@@k-R@ @(-R@@`>R@ @`>R@ @@>R@@@>R@ @`}>R@8@@Y>R@@`B>R@`@`f>R@@`>R@w@`>R@@ >R@@@?R@@`)?R@@`?R@ ~ @`>R@ @@p:R@ :R@`B:R@@,T@!:R@@ W@:R@Y@9R@w\@9R@U_@`9R@`a@`+:R@b@\:R@Ga@@p:R@_@:R@[@:R@W@`:R@ S@@p:R@ :R@@>R@@%5@@G>R@@6@`+>R@@8@>R@<@ >R@@@`+>R@,C@@>R@` A@@>R@<@@>R@@8@@>R@@%5@ [R@M@@[R@ O@@[R@@R@ [R@T@[R@mV@\R@@yX@?\R@Z@[\R@]@q\R@``@\R@d@\R@g@\R@e@\R@``@\R@\@\R@KY@\R@mV@z\R@@,T@D\R@ :R@\R@ P@[R@ O@ [R@M@ J_R@@`_R@@@3_R@ @@E_R@s@`R_R@`@ _R@Q@@_R@,@@i_R@ 6@ J_R@@ HTR@(@TR@@i@SR@@%@SR@@ SR@@{@SR@ @)TR@ @ HTR@@hTR@b@TR@=@vTR@@ HTR@(@_R@@@_R@@ n_R@ӫ@ a_R@@ n_R@@3@_R@@@`R@@@V`R@@z`R@@@`R@@U@z`R@@h`R@ǩ@;`R@$@ _R@@_R@@UR@`@UR@=@UR@@ VR@ג@`VR@ྎ@ VR@@Y@UR@`@`]R@p@`]R@@%u@]R@@z@`^R@@@`+^R@@a^R@@`^R@ @@^R@@Y@@^R@b@`}^R@@z@`T^R@ v@@^R@ t@`]R@p@ aWR@ @`)WR@@@WR@X@@WR@[ @`WR@`0*@@WR@1@@WR@/;@`WR@,C@`WR@L@@VR@ &S@ VR@Z@`VR@Ga@`VR@g@VR@(m@@VR@r@aVR@x@`TVR@@`kVR@ †@@VR@@VR@b@`VR@x@@VR@@Gr@`WR@l@ &WR@g@@EWR@@b@ aWR@[@ nWR@fU@ WR@@pN@ WR@G@WR@@>@ WR@@6@ WR@@w-@@WR@z%@@WR@`@xWR@@@@ aWR@ @UR@m@UR@@@UR@ @UR@ @`VR@@=VR@ @JVR@ 6@3VR@@UR@m@ [R@@ [R@s@@[R@p@[R@`m@ [R@`)@[R@@ \R@@@\R@ @ [R@p@[R@`@ [R@@#5R@  @4R@  @4R@ @5R@ @:5R@ @z5R@z @`5R@ @5R@ @c5R@` @#5R@  @:R@`@`B:R@@@:R@`@@:R@@3:R@ @`k:R@ A@`:R@@@:R@ @@:R@@:R@`@@i;R@@ J;R@@ &;R@=@`;R@ྎ@@:R@z@ :R@@ ;R@`@ J;R@`@x;R@6@@;R@@@@;R@@@;R@ @@i;R@@R@ 8g@=R@`c@ 6pR@ : @oR@ : @oR@ @oR@`ڛ @pR@` @;pR@ @ 6pR@ : @^eR@ c @5eR@` @:eR@D @YeR@` @eR@ @eR@  @eR@~ @eR@ @eR@ A @^eR@ c @`FR@(m@`xFR@ cn@JFR@`q@3FR@x@JFR@`~@`}FR@`@@FR@\~@`FR@u@`FR@(m@OR@(?@{OR@@w-?@OR@@>?OR@N? OR@ X?OR@o_?PR@Y? PR@ G? PR@):? OR@0?OR@(? KR@`JR@`JR@x `TJR@@&JR@JR@@=JR@sJR@|@JR@@`KR@|@3KR@ `RKR@ JKR@ KR@uYR@` @+YR@` @XR@N @XR@2 @XR@ @XR@ @hXR@ @QXR@c @ HXR@+ @ HXR@ c @QXR@ @_XR@b @hXR@  @qXR@ \ @vXR@X @qXR@ @hXR@X( @hXR@1 @vXR@9 @XR@`? @XR@2D @XR@G @YR@I @YYR@/L @YR@@pN @YR@P @ZR@@NQ @`xZR@fU @`ZR@S @@ZR@R @@3[R@P @ n[R@@pN @[R@@K @[R@I @ \R@ F @ 6\R@`B @_\R@ > @z\R@Q8 @\R@1 @\R@( @\R@ @\R@X @q\R@ @V\R@ @2\R@`_ @ \R@ @ [R@\ @[R@D @@[R@ @ s[R@ @@W[R@J @@@[R@% @ ![R@i @ ZR@ @`ZR@@, @ZR@ H @ZR@ @@YZR@ @`+ZR@ @`YR@ @YR@T @uYR@` @QLR@@ LR@ LR@ 2LR@@VLR@LR@LR@~LR@kLR@Y#MR@gMR@y#MR@MR@LR@ LR@@ LR@@QLR@@DHR@gHR@gGR@P@GR@`5GR@*@GR@`GR@` GR@`M GR@`HR@* 6HR@H.QHR@8EDHR@g@VR@&@@VR@`R'@`TVR@@*@@GVR@@33@=VR@@;@\VR@TA@@VR@@>@`VR@`9@`VR@m4@ VR@q,@@VR@&@XR@6@XR@9@XR@C@YR@TA@YR@ 6<@XR@Q8@XR@6@ JcR@@`)cR@ג@`)cR@`ڛ@=cR@9@ JcR@@@xcR@@@cR@@ cR@`@ ncR@ Ԛ@ acR@@@@ JcR@@dR@@ͻ@cR@@@cR@ @cR@@@dR@ H@$dR@@ @;dR@@VdR@G@dR@ @dR@@eR@@YeR@@`eR@@eR@ @eR@)@keR@@0eR@K@dR@@dR@@dR@@N@vdR@@@_dR@ @?dR@ @dR@@ͻ@ WR@ (~? WR@ׁ? JWR@?@WR@? !WR@?OWR@? aWR@X? WR@?WR@? WR@?$XR@? HXR@?2XR@_?$XR@ڊ? WR@ׁ? WR@ (~?`bR@&@bR@)@sbR@@U0@bR@7@bR@6@@bR@.@`bR@&@cR@C@@cR@sF@cR@ HP@ cR@mV@@cR@S@@cR@ J@cR@C@[TR@?$TR@Q?TR@`K?-TR@`?QTR@@?vTR@?TR@@?TR@J?TR@@ ?TR@?TR@`?TR@?[TR@?@EcR@+e?`cR@]m?`cR@|? bR@ڊ? bR@?`cR@? 8cR@U?@WcR@? \cR@ׁ?fcR@p?@EcR@+e?`=R@ ?}=R@#?Q=R@`L?:=R@@}?=R@`?R@=?>R@)\?@>R@@x?@>R@? >R@@?@>R@ ?@3?R@@x?@i?R@@a? a?R@-!?@3?R@h? _R@%? _R@j+? _R@):?_R@8E? _R@P? `R@Y?M`R@a?q`R@j?`R@s?`R@`V}?`R@@Y?aR@!?+aR@|?aR@.n?aR@a?`R@`2U?`R@J?`R@ A?q`R@):??`R@1?`R@<,? _R@%?`RR@?`RR@-!?sRR@(?3RR@j+?!RR@):?3RR@H?aRR@`vO?RR@H?RR@H?`SR@@?`)SR@7?`)SR@`t$?`SR@q?`RR@?LYR@?YR@?0YR@`Ӽ?=YR@?TYR@?uYR@?`YR@?YR@J?`ZR@?`0ZR@@ ?@ZR@`K?`YR@H?YR@?YR@г?LYR@? BR@m?BR@?aBR@?3BR@ Ǻ?@BR@?BR@0?@BR@ u?JBR@@f?\BR@ G?sBR@ ?@BR@ ? BR@?@BR@? BR@m?@GR@`I@EGR@ &GR@@z`GR@ |a`GR@sF@FR@( FR@`FR@@r@FR@sFR@ @YFR@ `0FR@@* FR@$`ER@`4ER@ jER@P`ER@`5ER@ER@`MER@ER@ ǺER@ף FR@ Ԛ@YFR@ ԚFR@`FR@FR@\FR@4FR@48FR@:@YFR@ C@YFR@@#JsFR@b@FR@yFR@@FR@@FR@@`GR@@ `GR@@.GR@x @EGR@& \GR@? sGR@@yX@{GR@@z@GR@`I OR@@OR@ @iOR@s`ROR@Y=OR@@> &OR@-!`OR@@`OR@G`OR@@<@.OR@a \OR@FOR@ OR@@zOR@@io PR@ OR@ Ԛ OR@@ı@OR@OR@7OR@`OR@ 6<OR@ ^ OR@| OR@@@>R@ H@`f>R@@`B>R@m@`T>R@c@@>R@@@>R@ @@ ?R@`@@ ?R@@`>R@@@>R@ H@fWR@6+@@WR@6+@`VR@O/@`VR@3@`VR@/;@@VR@`<@ WR@/;@@@WR@7@ nWR@3@fWR@6+@\R@ӿv\R@ӿV\R@.nӿ;\R@N@ӿ\R@ӿ\R@2ҿ[R@&ҿ [R@ Lҿ@[R@ҿ@i[R@`Tҿ@[R@j+ҿ[R@&ҿ\R@j+ҿQ\R@ZBҿm\R@;pҿ\R@6ҿ\R@ cҿ\R@^)ӿ\R@.nӿ\R@ӿ@_R@?@_R@5? s_R@?O_R@? &_R@&? 8_R@ZB?@_R@ZB? _R@1? _R@?_R@?@_R@?dR@ @dR@ Ԛ@dR@`@dR@ @eR@@w@+eR@m@BeR@@zeR@p@eR@`@eR@@peR@@YeR@3@=eR@@eR@X@dR@ @ER@@&>R@ڊ@@>R@ @>R@@@`>R@@=>R@K@`x>R@6@@>R@@`>R@m@>R@ @@>R@@@a>R@@J>R@@3>R@@&>R@ ?@>R@ނ@=R@@@AR@ @TAR@ @5AR@+@YAR@J@pAR@`@AR@@G@AR@_@AR@@@=BR@@@3BR@@G@BR@@`AR@ @`AR@`@AR@ @DXR@@@ XR@@ WR@`I@WR@`'@WR@9@XR@@ XR@ @MXR@9@mXR@v@dXR@@@DXR@@@TR@@q@;TR@@q@)TR@@v@[TR@w@TR@#y@TR@z@0UR@y@YUR@@w@:UR@@t@TR@s@TR@r@TR@@q@`eR@W@eR@W@zeR@@Y@eR@\@eR@i^@fR@_@&fR@i^@fR@Z@`eR@W@`xVR@`@aVR@=@`kVR@ @@pVR@ :@`VR@ @`VR@@@VR@ @`VR@ ~@VR@`K@`xVR@`@hR@`܆@qhR@@dhR@/@[hR@|@dhR@ɔ@dhR@K@[hR@@MhR@G@2hR@@hR@@gR@ǩ@@gR@`"@gR@@@gR@ c@)hR@B@MhR@@hR@6@hR@`D@hR@@hR@h@hR@i@hR@@hR@@hR@ݓ@hR@ @hR@ڊ@hR@`܆@y }(`H$@`@9@ \O8@99@^`7@6@`Zc`5@ 7?5@ ?4@?4@ :?4@?@Q4@`?4@ߛ?>4@?4q4@ ?M4@?@'M4@ Ί?;;4@@`84@ l@`G4@ @wG4@`@34@`_@ 4@ g@3@G @3@`% @?3@@ @@ 3@- @@_3@`: @93@@@"3@@ҧ @2@ @l%3@r@2@`@0@`N@\0@@`d0@:L@M0@@@0@ @/@Be@/@I@@o/@ @@uX/@ @L/@^M @'.@2 @.@B@.@,@.@? Œ.@0?` -@?Z-@`p=?j-@d?l.@@b?@-@y?c.@7?-@Ͽ '.@` ؿ.@hܿ*.@@33*.@@.-@`+/u-@s H-@~@3,@ 9 H`,@M,@@?`,@ 1,@W`F+@;`}q+@@eO+@l@+@`Ce9+@`@XR+@ [+@ p+@@<+ @g+@) @{*@h @<*@b e*@ V*@2T [*@UU+*@F*@`@;*@Q8`*@@@!+@ +*@ ߜ*@@,x*@$ \*@@ 1U*@ SWP8*@@} k)@@2@d)@n)@$s)@P)@v)@n(@͌I(@ @-(@ (@Gf(@d(`G(@R(@```# (@ #l(@ܾ`(@'@hd'@`'@PY'@@ '@d(;'@` ''@``x&@=&@L}&@[0i&@0`I&@`4R:&@V@'&@&@ %@Wn~%@J%@'$@$@ ! H$@`ʎ9$@ $@j$@@ a$@@ w$@W$@@d٠$@_$@`S%@@@d%@ lB%@ `Kx%@ףb%@`]A%@`\.%@_%@ SW6%@`eU%@@X2%@^ $@ӭ$@ `F$@ô$@ ف$@`m$@X$@@ `H$@2F$@@"b`#$@p$@@,@$@@$@H@;$@ #$@`$@` sZ$@@%T$@ !|$@@$@@0 w$@> @$@@]n $@ @P%@V `&@ij L&@O &&@!V%@ 4!`%@@W!%@]!%@@!`s&@ ` &@ Z&@ B&@ &@$ =&@A!`L&@@~! &@.7!&@g!ZQ'@@Щ! R'@@ؗ! (@!(@!`)[(@! r(@!ô(@"(@c"-)@u"(@@;"h(@/" (@ް"(@"I(@U#`lA(@RX#"(@#\(@P#`=(@΋$;k(@$ r(@@$^(@@%r;(@N% z'@%f(@/&j(@`N&(@& '@&G(@p&@i(@)&(@ &`(@ %&-(@w&Z(@d&)@Q&I?)@r&m)@C& t)@&` )@`r&)@ &)@@ &;)@&&*@ 9' F*@@2'*@ p'W*@'`*@'$*@`C'*@`r'=*@(3R+@@I*(j+@'`ݝ+@`'+@ (`f,@`/'U,@(`Ɏ,@@X2(ߛ,@2(ົ,@ g(9,@r[(@ 7-@K(dG-@}(Y-@`/v(-@@F(7-@`(@{s-@'Ί-@ '-@'`.@ࣰ'@J.@k'v/@H'^ /@A'K/@w&E/@QX&@ۿ.@Q%@F.@ 2% 6.@`%.@`f%`#.@ "p%S.@2T$.@`r<$۾.@#@m.@d#).@"E.@@" 1/@"h/@@"D/@Ϫ"@.@@# /@ J/@ 6.@ SW S0@ h@0@&@/2@ 3@@.5@ 9ma%7@ M|`*J7@ \O8@z"\,@`fA@#-@ B@;,@uB@ൄ,@`B@,@uB@w|,@B@@ry,@`B@`+v,@B@@3s,@@#B@@Up,@`kB@ l,@B@ h,@`B@ d,@B@a,@B@N`,@ B@ !_,@ CB@`,@B@a,@B@`'`,@B@ (^,@B@\,@ B@ \,@@B@_,@-B@a,@B@d,@B@`g,@B@j,@- B@ cn,@Q B@@q,@u B@Yu,@ B@y,@ B@},@` B@,@`[ B@ൄ,@ B@,@B@ ,@eB@ ~,@B@,@B@`T,@oB@Y,@$B@0,@`B@p,@B@G,@B@%,@B@,@B@@>,@B@@,@8B@,@B@,@VB@`},@@B@,@@{B@@֥,@@3B@`,@FB@,@@3B@,@B@,@B@`2,@WB@,@`B@`,@B@̌,@`B@,@uB@  -@`fA@-@ A@-@A@,@ A@,@@A@0,@@.A@,@fA@Z,@@A@`,@A@,@ HA@`D,@ lA@`,@A@` ,@A@,@A@` ,@A@`,@-A@@,@`A@{,@`A@,@ uA@,@A@@,@=A@@>,@ A@F,@@A@h,@@A@,@zA@ٽ,@A@`ڻ,@fA@,@A@0,@@A@,@A@S,@`RA@@ı,@ A@ů,@$A@ŭ,@A@<,@#A@@,@A@ ,@`A@@,@@WA@,@A@`},@A@`,@A@;,@@A@,@A@ c,@HA@d,@ A@ӫ,@A@ ,@QA@],@`A@=,@@A@ ,@FA@,@@A@`f,@A@,@LA@=,@A@,@A@,@A@@,,@.A@,@zA@0,@@A@,@@ A@,@A@N,@8A@,@`A@,@A@,@`VA@`2,@ A@@,,@VA@`+,@A@,@`A@O,@A@,@A@,@A@,@ A@ ,@`MA@@,@A@`,@ uA@Z,@`kA@@,@@A@0,@A@),@@3A@,@=A@@,@ A@,@aA@,@A@@E,@=A@@,@A@@,@vA@,@@>A@`,@7A@,@`A@,@`vA@ Q,@A@@,@`A@`-@@A@F-@@pA@@-@A@-@]A@-@A@`-@A@-@=A@ -@ A@ -@A@@-@@A@`-@A@`+-@@A@-@3A@ Q-@@A@ -@GA@`-@A@ -@[A@@"-@ A@#-@HA@#-@ A@&"-@A@`!-@8A@!-@qA@h"-@A@`"-@A@"-@)A@!-@`A@-@A@-@uA@@P-@ A@-@3A@Q-@A@z-@A@ -@A@4-@A@ ~ -@A@ -@A@ -@fA@ \-@`A@ -@@pA@  -@`fA@{^N\,@`gN-@ymN\,@>qNO,@mN,@ ƂN,@ \N b,@N-@˅N&-@NQ-@4N7-@໋N@{3-@^N)-@`lN`-@N-@ }N-@wN -@@dpN-@ mxN N{-@oN V4-@4jN-@`gN9,@ymN\,@| 1@{s-@9 G;@@U!:@V! G;@@zD:@ x69@99@ \O8@ M|`*J7@ 9ma%7@@.5@ 3@&@/2@ h@0@ SW S0@ 6.@ J/@@# /@Ϫ"@.@@"D/@"h/@@" 1/@"E.@d#).@#@m.@`r<$۾.@2T$.@ "p%S.@`f%`#.@`%.@ 2% 6.@Q%@F.@QX&@ۿ.@w&E/@A'K/@H'^ /@k'v/@ࣰ'@J.@'`.@ '-@'Ί-@`(@{s-@@F(7-@`/v(-@}(Y-@( -@ 1(@.@)&K.@)j.@)j.@@)@.@`) b.@).@p)q.@) /@*T.@W3*@/@ \/*@*/@M|*F/@* &0@*@Q0@`*T&0@Z+@P0@l+[/0@ +@J0@$+`20@}+<0@+@.G0@@3s,:0@Ϋ,`0@ ,0@`l,`֣0@v-i0@T-k0@`.`Y0@@2.ͫ0@;.0@,.L0@S7.@ 0@tz.0@`.h0@/20@/p}0@g%0L0@L00@@Wc0@Q80@ x08.0@ ~0@^ 0@ǁ00@ 0 0@҇0`0@q0 0@`D0 1@@ 0e1@> 01@@0Fr2@40`*2@DT0`-3@x0C3@@d0c3@`n0$`3@`N0x3@K0 N3@c0v3@@Y03@ 9n0@y3@p0`h3@w0i3@ x0 Vt3@C0;3@@0e3@J0` 3@70 4@`B0!4@`:0$4@}20@:4@ J0`T4@p04@}0k4@w0 4@0@4@ד0 4@0@4@'0)5@1* 5@ \0@Q4@ 1 U4@@ 1 N4@ 1@#4@ 14@ 0V5@/W.AV5@*W5@*V5@(*`6@L*6@ 6*6@I)T7@Z1) F7@`I( Vt7@l(:@ш!9@@U!:@}7L@~4L@`I4`L@~47L@o4@ӮL@@dh4 yL@W4L@/4 %L@@&42L@4L@ 4\L@`I4L@@4sL@`r,4L@*K4 =L@`c4`L@[p4{L@|4`L@~4~G]-@@U[@@z 'OJ\@=@@GZ\?8=@@Gf\ %o=@e\g=@`0Z\q|=@ \W\@g=@X\@ S=@Q\qL=@K\ NK=@2L\S'=@G\`=@OJ\@=@UkA4@^UiS4@U;k4@@U4@ݵU94@@U4@_U J4@UkA4@\<@\ ~<@z\`<@J\ <@ \s:<@\` T<@@i\`^<@`\`[<@(\'<@\<@\E<@@3#\@^<@ $\F<@\<@\2=@0\@=@ \?=@\<@\E<@G]D@@a\ W@@\[@@@ͳ\ @@@ 7\`?@`[BU?@T [BU?@Y [`?@LZ ?@}Z ?@Z@y?@wZJ?@_ZC>@QZ>@HZ>@@7Z>@3Z@Y>@ +Z`/>@+Z=@QZ=@YHP=@Y@9=@Y`(=@`Y`/&=@Y@P =@`Y;<@`Y@=@Y`R=@`BY==@Y`R7=@@3Yb9=@൸Y@.W=@rYe=@൰Y=@@Y &=@ࣘY =@$Y!=@YuY=@dY=@@bY=@bY=@YY@=@`VY=@ SY`=@`RSY=@@ OY=@IY}=@`0BY`s=@(AY@{c=@1Y ;=@1Y ,=@`*Y@=@2$Y@<@ Y`<@)Y<@Y@X<@:Y g<@ Yy5<@Y`<@X@;@qX;@yX x;@ X`;@@CXb;@X^;@@2X@ڐ;@X@dH;@6X@;@ZX@ ;@_X@;@XX:@ZX:@@ XH:@X~:@X@(l:@@[X b:@Xd:@XL=:@7X;:@pX %:@@UX :@`DX :@`xrX :@@mX@ :@gX@:@^X9@WX9@@VX9@ VX9@HX@9@@LX9@@TZX>9@aX@ 9@iXm8@bnX 7@oX@-7@@[tX`7@@mpX@7@ }nXC7@{pX'7@@oX@6@@qX 6@@uX6@xX N6@iwXÔ6@uX@6@`tX@-6@VtX`eg6@ymX5@eX`65@@lUX@-5@TX5@@+ZX`/F5@^X %o5@WX5@gX`5@oXh6@fX 5@@cX*{5@@*_X@{5@ `Xk5@@ SX`4@rKX4@VLX O4@bFXA4@0X=4@X3@Xf3@X Q3@XM,3@gX`3@Xm3@bW3@@"W42@W`2@@W@^2@{W2@@W2@ W2@@*W2@W2@@W2@rW@^2@W2@W$2@@W 2@W@^2@JW12@@W@ 2@JW2@W$2@ಳWT2@W'2@֘W`'2@ xWH2@@xWA2@pW G2@pW4Q2@@"fWW2@dWch2@\Wp2@ IWlp2@@ KWm_2@EW_2@@EWSg2@@IWk2@8GWq2@~=W$p2@4W%2@@-W2@@+WS2@Q,WM2@Wm2@@Vs2@V2@V y2@W2@AWr2@@:V2@`4VD2@V~2@V8n2@)Vb2@Vc2@VN{2@Vmo2@BVu2@QV|2@V2@V$2@hV`2@eV`2@bV`2@`V72@Vc2@Vo2@@V 2@bVc2@@׿V@]3@@V@_3@Vo3@V3@@+V3@ ՝V4@V@^-4@V1t4@nV U4@ZV O4@V@4@@2V`4@XV5@@φV)5@ dVN5@G=V@zd5@.Vq5@V5@bV@5@BVЙ5@UЉ5@U U5@eU'5@U@5@U`~5@U@.w5@Ux5@`U~5@DU 5@U`55@(U`5@@U ~5@U``5@Uh5@Uए5@EU5@6U` 5@@"Um5@@U@o5@@U_5@ U [05@yU&5@@"U@Q5@U@4@QU74@UAf4@U*4@@"U3@UB3@=U3@ U3@_U3@U3@U` 3@@uU3@U̬3@Uo3@9@T[`9@ [``8@)[8@ [ 9@[8@ [19@[9@[/9@[[7?9@=[@WC9@[$9@[?9@x'[ W9@@.[Z9@ u*[p]9@)[@4b9@`+[@ f9@0[ `9@/[ Ue9@@/[o9@=5[ \9@9[9@8[i9@@:[t9@<[m9@@[`~9@@[u9@@F[ 9@dD[@ 9@?[Ƒ9@@G:[#9@9[9@`F[19@H[ 9@aN[9@O[?9@I[ 9@@.K[ ؒ9@@N[@9@pY[9@@V[@9@ 8S[`9@R[@Q9@ nW[@W9@BY[9@m\[@^9@`}Z[C9@_\[9@Y[@:@@WS[4:@`BR[S':@@YN[`fF:@ N[Q:@#M[X:@@J[DS:@I[>:@`xF[5:@=E[H:@hH[N:@xK[$`:@O[@zT:@ nO[r:@Q[ O:@`[@ :@ c[@]:@_[:@k[M:@s[`:@|[:@ z[:@rx[@:@D|[B;@[ ;@@[@d;@$[`';@[C;@[L;@ࣜ[8N;@J[_;@ s[^;@[ʎ;@[ ١;@@[ ;@@[;@Y[;@=[;@`B[`;@[;@`Ŷ[;@ [ ,;@[s;@@[;@[;@^[ U<@ [a<@`[s<@[<@[ <@@Y[<@ [ <@`[r<@[B<@@Y \=@ \vH=@`\S=@\T=@G\`K=@\hT=@`B\Za=@ \x=@=\=@)(\ =@,\r=@O/\=@-0\2>@_4\F>@`7\SG>@`5\W>@7\@n>@D\>@@G\ >@5E\ >@G\?@=F\q ?@D\ %>@aB\`0%?@E\ +:?@G\`1?@)T\A?@h\tY?@ g\Av?@i\?@@~\@4?@|\k?@\?@_\~?@ \}?@@\` ?@`\`5?@\?@Q\ ?@@\?@\8?@\?@`\ä?@\ ?@[\+?@x\ N?@[\[?@L\?@\`6>@ 6\>@Q\B>@[\ m>@8\ 2>@^\@=@ u\ N=@Q\@^=@|\@X=@@\@z=@uu\ r=@`kj\SG=@`e\ y%=@`c\:=@@b\i<@M`\1<@\\@z<@]\l<@`fZ\ <@`U\$<@V\<@-P\ <@aN\D<@ aK\`<@@G\@<@B\q<@7\@o<@7\G<@`2\2<@1\<@@G.\<@;0\;@$\k;@\;@@ \=;@@^\3;@#[;@`\;@[@ :@[:@B[@:@@[`:@[ [:@@[:@ [@:@ [@ۯ:@[ɿ:@[:@[@.:@ [ +:@[࣐:@M[|:@@[p:@M[^:@B[`T:@`[B%:@r[`:@+[ U9@@[Ô9@h[w9@=[ Nk9@=[k9@+[ 9@@ [@8@ 8[8@`[@8@c[~8@[8N8@Ǚ[148@ [#18@•[(8@[l08@[-8@[[8@[8@=[l08@@3[U8@ J[*[8@@ϊ[L8@@[88@[@+8@}[@( 8@@z[8@ u[8@r[ y8@t[#7@ar[@7@l[L7@ml[ 7@ nk[@7@^[@W7@Y[@.g7@[[;7@`[#!7@@j[ 7@t[`6@@@{[6@Q[6@([6@`[HP7@`[7@ [й7@@[48@@W[@?8@@[pm8@[Ɓ8@@@[8@[b8@[@z8@`f[a8@\ 8@@^\`8@\@(8@\ि8@`}\`8@@\8@\`8@&\9@\ ,8@ \8@@ \D8@\ 9@2\@*9@[\@E9@\ %9@`k\*9@\:@\:@\h:@ \`6@:@ !\`*J:@`T"\*K:@@^"\iS:@`*\DT:@`C\:@F\:@E\ :@xG\:@@N\:@ N\ :@2H\k:@ 6H\y:@+K\>:@ O\ :@\\@X:@@^\:@`b\:@=f\ :@zu\b:@!z\$;@ \\@:@ׇ\;@=\`);@\J.;@`\ >;@\`g;@`ʪ\;@`ܮ\ ҇;@=\H;@׿\w;@ \;@ \;@\ [;@\;@\;@@\;@\@;@Q\;@;\ ز;@ \`;@@~\@;@Ä\;@\;@॓\;@\`;@\ <@܇\<@+\-<@\@?<@z\w<@Ń\<@@^\<@=\G<@`\<@@i\H<@`\`<@`ޭ\@$=@\@=@Ѽ\ `=@e\ Nn=@0\@3=@\@ڠ=@h\@=@r\=@O\4=@ \ V=@`\6>@\Z>@\jb>@`\e>@x\r>@ \%>@=\`>@r]Ga>@@] Uu>@@]>@ ]L>@z]S>@ ]` %?@D]U?@ ]Gq?@ \+] &?@(]?@,]κ?@(]?@@ ']}?@O&]?@`T6] ?@8:]9@@@]`#@@ G]X:@@G]D@@8`:@^F@Z">@ L>H@`:@H@@:@ (&H@`4:@'H@`:@ ,H@`':@R&H@ :@ &H@:@4)H@@:@0H@:@0H@@:@3H@ :@-H@ ;@`.H@ ;@@4H@;;@ /H@`2E;@0H@`W;@8H@@gd;@-8H@=k;@`V5H@ S;@ ;H@;@ L>H@q;@):H@>;@8H@ S;@Q9H@`;@2H@s;@X-H@;@)H@<@ \'H@`<@$H@`<@$H@*<@]H@ <@`H@d*<@ H@.<@ H@`/<@H@8<@@GH@ K<@zH@P[<@`H@^<@H@P<@H@@yX<@@>H@@{c<@H@`)k<@H@`'p<@H@k<@@.H@u<@# H@=z<@$H@(<@H@z<@ H@ <@H@F<@ H@<@` H@@<@H@ <@@H@@<@GH@<@G@=@oG@@ =@@>G@@=@`G@S$=@8G@-=@G@1=@`G@A=@ G@ 1=@G@1=@@G@?=@G@B=@G@F5=@G@@4=@G@*=@G@`!=@`G@/=@QG@@=@@GG@@3C=@HG@N=@ G@R=@vG@Z=@ࣰG@`[a=@`̭G@` a=@4G@`g=@¥G@y=@fG@ |=@VG@4=@G@•=@G@ e=@ೡG@=@@֝G@@G=@G@4=@$G@ =@ G@ב=@G@=@͊G@@=@G@=@=G@Z=@xG@=@tG@ =@@nG@@p=@`BnG@=@7hG@@3=@7hG@@G=@eG@` =@^G@=@QG@ =@`IG@ S=@FG@ =@CG@=@@G@@y=@z>G@=@@?G@>@ @ u:G@>@@6G@Z">@`25G@@>@ 0G@=@1G@{=@,G@@*=@ ,G@`=@ L.G@=@@1G@@<=@z6G@=@`2=G@=@@>8G@Ω=@`6G@<=@`2G@`o=@B/G@>=@1G@@{=@5G@`=@`R7G@=@=G@@{=@`?G@fe=@8G@@d=@B5G@X=@G@*8=@2DG@z4=@LEG@ =@f?G@<@6G@@ <@`'G@ <@"G@ =@G@ <@@ G@<@@G@<@G@ |<@@F@o<@F@<@F@4<@@WF@[<@F@ױ<@F@<@=F@f<@@F@<@ F@<@jF@`I}<@F@><@F@<@F@\<@F@ <@F@<@F@@օ<@@GF@=z<@F@H<@=F@ <<@ lF@F6<@^F@=*<@MF@@<@F@@P)<@F@<@ F@`5!<@ F@<@ ~G@`"<@G@ @<@>8G@@5<@Q@G@ I?<@`MG@6<@`WG@@4<@`~G@;@ਃG@;@G@};@G@ V;@3G@>x;@ G@dw;@ G@jR;@!G@J;@G@@=;@`G@*;@G@$;@H@:@3H@`0:@l H@`:@H@P@ 0E@F@E@'`@ 0E@-@E@ \@.E@@@E@@E@@oE@@ E@@-E@Z@E@@E@@@E@@Ɯ@uE@`'@E@`@E@@WE@ @E@@@E@@E@@@E@@@ uE@@E@`B@@E@@QE@F@`E@@.@E@~@E@@ HE@µ@E@@`vE@ A@@ E@@ E@ӫ@8E@@E@@E@؟@E@`k@E@@@@E@@N@LE@`@ 0E@  U@jD@`d]@`-J@vϻX@`-J@`X@UJ@X@I@3X@ OI@@X@`YI@`TY@@I@*Y@I@UY@I@YY@ƹI@`bY@SI@@͋Y@1I@JY@3I@`fY@ 7I@܉Y@[I@Y@@XrI@`Y@ lI@#Y@@dI@Y@_I@`ŖY@ZI@`Y@RI@Y@@HI@WY@AI@`;Y@4I@@Y@&I@ Y@I@BY@"I@@Y@`I@Y@I@Y@ =I@Y@ I@ Z@!I@Z@I@Z@$I@u=Z@b1I@vHZ@ 2I@ SZ@ =I@`MZ@4I@Z@Z0I@Z@ +I@ѐZ@ &I@`Z@L,I@;Z@5)I@ ZZ@I@Z@ I@ Z@I@Z@ DH@Z@wH@[@ =H@ #[@ NH@ W[@`H@xa[@H@d[@ H@G[@ H@ n[@ H@Ѭ[@3H@[@,H@[@H@\@H@`\@'H@`.\@H@E\@H@ K\@H@e\@I@f\@ >!I@@\@`_$I@\@ %I@\@!I@\@9I@\@`0I@O\@@iH@`\@`H@`]@ I@`]@I@@&]@H@]-]@ H@@ +]@2H@]@@nH@a]@lhH@\@BH@}\@Q H@`\@bH@\@G@\@ G@@\@ G@`d]@5G@]@uG@`]@@iG@ 7]@@G@@G]@$G@T]@G@X]@G@ `]@ G@ p]@@G@@s]@H@#}]@@H@`]@dG@]@G@]@`G@]@UG@`+]@G@ ]@SG@]@ =G@`M]@G@ ]@G@ J]@ 7G@`;]@UtG@`d]@ ZG@]@uPG@?]@`LG@]@@QPG@`;]@NG@@]@VG@`d]@`G@]@:\G@ø]@bG@]@@aG@}]@WG@ n]@lXG@`ړ]@S^G@`z]@`NG@v]@@hDG@m]@AG@ ~h]@ FG@`Tf]@SNG@@Z]@`JG@ W]@.G@E]@.G@5]@a2G@x%]@`%G@`;]@ ` G@]@ F@]@bF@k]@ F@ ]@`F@]@F@\@`F@@\@@F@@\@`F@\@رF@\@`F@\@`xF@z\@vF@h\@d_F@H\@`fF@@&\@vF@@W\@ OF@`[@ F@=[@F@ Z[@`VF@[@`IF@`R[@`4F@ J[@*F@p[@ NF@ H[@,E@[@E@T[@`E@`+[@ E@}[@E@@[@E@@W[@ E@`k[@`E@@[@lE@3[@LlE@ 1[@cE@[@8VE@@[@RE@`_{[@`RE@ l[@wGE@`b[@AE@x5Y@VE@)Y@uXE@QY@RE@8Y@ RE@X@IE@X@~PE@JX@ fE@X@`]E@X@@tE@hW@ E@W@~E@W@E@W@@F@jW@F@ W@#F@@OW@ %F@@PW@` F@\W@,F@\W@@9F@YW@`BF@ZW@2KF@#W@ YF@aW@`){F@FW@PF@`W@ F@W@*F@V@LjF@V@:F@V@.F@V@VF@V@;F@@V@F@@V@F@lV@!F@ײV@F@.V@[F@ V@ &F@YV@G@V@ UG@=V@G@V@c(G@V@bIG@3V@_G@hV@`jG@^V@qG@@ܶV@ ~G@V@G@[V@5G@ϝV@G@V@G@V@@XG@זV@SG@V@ fG@UV@ G@`݅V@G@`QV@G@@~V@*G@@|V@ G@ rV@`G@`jV@G@eV@H@@aV@KH@sNV@`G@@DV@mG@ ;V@H@^5V@`H@@&V@H@$V@n.H@JU@IH@ U@@MH@UV@QH@@V@jZH@@V@_H@@U@bH@ U@pH@U@vH@U@yH@U@`HH@ U@H@U@ xH@`a V@עH@ V@ H@@qV@ %H@` V@H@V@H@@h$V@`H@)V@H@36V@H@@:V@H@L8V@`H@8V@H@@r;V@H@R?V@ H@KV@`H@ OV@`0H@ LV@8H@@NV@H@*VV@@hH@WV@3H@@mV@`H@mV@H@iV@`H@@hV@`H@@lV@`H@~V@@(H@YV@`H@@ˁV@ 6I@ V@ I@V@@I@@V@@z4I@V@W@UI@>W@`TI@ ?W@`QI@BAW@ xNI@ TW@BMI@\W@`OI@nW@3JI@W@`II@ිW@GI@`W@I@ۧW@`I@W@II@:W@ H@ W@ aH@UW@|H@MW@I@W@`I@W@H@-X@I@X@H@CX@aH@ X@ H@@$X@ UH@%X@H@-X@H@?X@sH@JX@ ~H@@`SX@ H@^X@H@@eX@`qH@keX@`H@qX@H@IwX@dH@@܆X@`AI@@X@%I@@X@`@I@[X@EI@X@dOI@}X@cI@X@lI@@wX@`wI@tX@$I@Y}X@`I@`{X@RI@X@I@X@ƹI@ғX@I@X@ I@lX@I@wX@I@X@J@ 6X@ J@ϻX@`-J@`Z*B;@<+'A@`0ÌA@hA@_A@@LA@s>A@l0A@0u A@m @@ gE N@@ I@@@@٠@@m@@@T}@@8>x@@@ \@@<+A@@?~8@@h$@3@@)@@{@@8_@@-^@@-@@`h{ @@@ @@ !2@@ @@@@ ?@@& :?@ d?@?@@ x?@8w?@; e?@ n@V?@@_8?@ .?@@B '?@@ H0?@ @ ?@Y >@_, >@`>@>@@ >@&^Z>@~>@z/>@ b=@$`=@@I=@=@B=@` 3=@^M@4=@?=@@e=@@} Vd=@ =@. N<@@ a<@V!<@V!9;@&#@;@Z*B;@ *e;@@);@");@@_(Z<@ (`<@'O<@ &f<@&`<@p%<@j$@@=@@<$ww=@1#`=@G#`+>@Q9#@i>@@T#̜>@#>@#p>@@#k>@?#>@@#W?@@Ȱ# xf?@.w# ?@@[#g?@@2"@@@"`@@΋"G@@Q!@q@@ !@@W l@@@ `q@@M @@) P@@@@F@@,y O@@V@@@`!A@@U\A@ \SA@A@`K@FA@ \'A@ A@h^`A@N[`0A@ A@ <A@EDA@X`YA@`u9`_A@` ~A@qA@ A@@ W A@` A@ `A@@yA@@۷A@พA@\wA@aA@/7ޔA@໻@?A@O`ʎA@ JA@ΫϙA@@BA@E#A@[A@`0ÌA@ h x6>@@;:ikD@$zA@T%' #{A@ S%'`A@$'A@42'aA@`-' A@w&wA@&  B@ 'B@''B@h'@DB@2t' VB@n'@iB@ $' NB@l"'@ԍB@2T'B@h'`qB@@_'ZB@|s'^B@I' B@`'B@&.B@@A&@ C@&$?C@ & VC@&'mC@j& rC@@-X&`C@wW&lC@ h%*C@S% 0D@`W% #D@`,%@5D@% 7D@$`BD@ $5AD@%%`HD@1%bID@L%QD@ W%RD@@e%JD@`%\>D@c%R?D@ % OD@@% fND@%v@D@ %@D@2&HD@@^ & GD@!&?D@`I&@D@g&`-D@f&@2D@@3&=D@ 1&@o6D@`l!'D@*AD@*`>D@`f) UED@ b)@hLD@`)GD@ 9.*HD@Ȱ*DCD@ +` MD@`)+DD@ bJ+ QD@@A+QD@(,`_LD@ ,,OD@`I@,CD@ W,'MD@,UD@`la,1\D@ he,`^D@`5,WD@),@QD@,ZPD@#-BUD@@3-QXD@`&,fD@`,iD@,@iD@, ~aD@ -bD@ +- gD@ - =jD@-ikD@-@o^D@"-UD@-!RD@-RWD@ -_D@`O-`cD@-zTD@t-tYD@+.`qDD@n?.AD@_.@ID@g.`HPD@ \O.9UD@@_.`WD@.ED@~/?D@`/`.D@Yr/wD@m0@D@@0C@<0`C@ =0C@O0C@i0C@ 9n0C@t0SC@&0 =C@`0@C@~0`6C@0QC@0 C@ 0\C@1` UC@w1 GC@1@C@@1?C@`$1 C@H17C@-1C@@@1`AC@@O1B@ [`1B@y1`GB@ u1^B@1MB@1}B@E2$pB@ 1hB@`11|B@`2@qB@12jB@`-2MdB@923jB@`B62`qLB@`w2`YAB@f2`_A@8@@9k@@`.9@@J9 @@T9@@`l9wg@@˝9 ^@@`9*Z@@@j9@?X@@}9J@@9 B@@`9K=@@9 >A@@`9@oF@@9$P@@E:@b@@`B6:@g@@@F:cp@@@AG:o@@@>:s@@:z@@@ :Iw@@ D:Pr@@@:`*@@@;: .@@/:@@~: > @@d: @@B:`0 @@@): @@`k:?@@K9``?@m9@@x9?@9 a@@9@@u8?@+8Z?@p7 ?@`<7`?@@7@?@z7ɏ?@/71L?@ j6@d?@Z6`4@@O5`>@@X5`.@@`"5@B@@4=@@@c4`H@@@>4@F@@49U@@4Vs@@}"4@y@@P 4@i@@4@@ [3`@@`3`|@@`3`B}@@3z@@@ 3`t@@G3:l@@ \3l@@o~3:d@@`w3`qd@@]3@m@@@cI31l@@ 3[@@3}Y@@21\@@2Y@@`B2`h@@w22s@@ 2v@@ i2 y@@@2q@@҇2@@w2 /@@g2`Y@@PY2 {@@`<2$@@.2`|@@2y@@1|@@q1{@@`1 a@@,1@@'1 z@@U1@@X1{@@%1`k@@@]0x@@ 10}@@g0@^b@@÷0Z@@%0@Z@@0S@@֔0@@ [p0@@r0v?@k0`?@p=0`l?@>)0@M?@S0`?@@0>@%0>@ 0:l>@Y0i>@hD/[>@@/@Wc>@ 1. [>@.@D>@ n. x6>@T-v>@-a?@=J-@ԕ?@@-` @@,d@@,K@@4,S@@l,D@@`--`@@}2-@@`I-`A@@,@@Z-R@@W,t A@ , &A@,1A@``,BEA@*;-BA@`- HA@-{KA@Ȑ.n6A@K.`8A@Q/@z4A@`Z/ ~)A@|/P!A@`/!A@ 1/6A@`I04A@z40!:A@`H0IA@R0@LA@g0aA@0 nA@p0SA@0lA@#0A@S0ϑA@0A@1 A@@!1`2A@"1mA@@1`A@E0`A@`0@A@}0`A@0 A@0`6A@gu0A@@90A@0`A@!#0 A@0`A@ .`A@.A@ڧ.nA@[.JA@ h-A@- HA@O-1A@I_+@nA@ 3+ZnA@*:TA@&*HA@`*`CA@@) 8A@)/A@U(NA@'#PA@@&'zA@T%'j_ W@@#@WJY@@<@$*AX@^ '@tX@8'@X@`'@@ˡX@@'@@`X@'@AX@^ '@kW@@2@bW@g2@_W@2@ iW@{2@jW@2@oW@m2@@_pW@N2@snW@@]2@kW@@2@ՔX@`C(@X@(@ >X@@)@eX@,)@͓X@Z)@@GX@J)@ X@)@MX@6)@X@)@X@Ϊ(@ՔX@`C(@@NsW@D3@nW@@^]3@`nW@sj3@jW@lp3@iW@ ؂3@lW@S3@}W@m3@@}W@@'e3@zW@IO3@@NsW@D3@/W@/@cW@ /@W@_:0@`W@00@JW@0@/W@/@ {W@+3@W@ 2@`{W@t2@qW@2@^W@`eW3@^W@b3@PaW@@^m3@`cW@`l3@@.oW@7?3@uW@=3@@wW@B3@@|W@2S3@EW@u3@ wW@@3@nW@h3@sW@`63@sW@93@ pW@3@/nW@3@@gmW@Ѹ3@oW@3@@XfW@?3@@xfW@s3@`kW@j3@oW@3@mW@3@dW@@3@aW@3@aW@@]3@\W@3@ZW@`3@XW@A4@W@@ 4@FW@&4@@NGW@74@AW@`$4@@?W@&4@ ?W@94@aFW@a4@@gEW@@(l4@CW@\4@ABW@I_4@IBW@`xj4@kEW@ ҇4@ CW@@4@@W@pM4@@8W@4@6W@4@@1W@84@D9@W@`h9@:W@`R9@@W@H9@`SW@9@W@ :@[W@!:@9W@a::@@_W@=Y:@ ~W@`:@:W@:@YW@` :@W@@.:@ >W@`:@ W@F:@W@ 1:@W@1:@W@:@W@ ;@JX@G1;@l X@ UE;@!X@ NK;@ 'X@];@0X@[;@8X@`5A;@ 7X@@5;@ 8X@-;@{?X@}";@ >IX@`;@*JX@|#;@B=X@@Xb;@@P9X@ ;@ OX@@Q;@%SX@@;@MTX@@;@WX@;@`9YX@<@:TX@@<@_VX@9<@FZX@J<@@]X@@J<@cX@<<@dX@@<@hhX@{<@ lX@g<@sX@bY<@yX@ a<@5X@@G<@X@ 7<@_X@)<@X@<@_X@;@X@8;@BX@`;@ஊX@3;@@͓X@̌;@3X@@;@@pX@ߋ;@DX@@;@dX@;@DX@;@X@ +;@X@;@X@ ;@̬X@ic;@X@\;@,X@;@ৰX@;@ WX@9:@@ԱX@:@X@`B:@X@@33:@@pX@}":@X@ ,:@X@2#:@ZX@@:@X@19@ƭX@9@X@9@@qX@9@AX@>9@X@9@X@`9@X@99@X@@۟9@qX@ P9@:|X@@69@zX@59@wX@@4B9@*vX@@D9@FnX@ 9@%oX@;8@`sX@8@rX@8@gX@`*8@[cX@88@cdX@``8@@aX@@p8@@lX@`b8@`mX@ OZ8@jX@xV8@@jX@@]N8@woX@ OJ8@pX@A8@nX@98@ oX@`)8@@dX@7@SbX@@W7@@iX@`7@X@`8@X@5 8@!X@ 8@@X@78@X@!)8@X@8@X@@7@ZX@77@ҫX@7@gX@#7@X@@7@X@`ݍ7@`X@|7@@QX@@{7@@X@j7@ʺX@@^]7@@X@fU7@X@kQ7@hX@$07@@X@@*7@X@!7@@X@<7@X@"7@`X@A7@@?X@$6@X@ O6@@X@@ 6@X@6@X@6@X@6@X@h6@`X@4Q6@sX@ O*6@X@L6@X@ 6@@X@"6@@7X@`6@@X@6@lX@ 6@X@D6@=X@@6@X@ 6@X@`5@ X@@5@Y@m5@ Y@5@`Y@ U5@a Y@w5@ Y@@n5@Y@@P5@]Y@|5@`#Y@s5@.Y@5@8Y@b5@ GY@` 5@ IY@#5@IY@@5@WJY@ ҇5@@U@Y@f5@k5Y@pM5@`.Y@lP5@&Y@ 5@"Y@ x5@ Y@D4@n"Y@4@(Y@14@x)Y@@4@ $Y@`Y4@!Y@ 4@Y@ 4@ Y@@4@.Y@[4@@Y@ kY4@bX@t4@ X@`T4@X@@O4@0X@|c4@@X@@ 34@*X@@%4@lX@4@@X@ 4@HX@@ 4@X@@W3@*X@@3@X@@3@X@@3@@X@ ̬3@X@e3@:X@M3@,X@ 3@X@`_3@=X@`դ3@~X@3@@rX@Te3@@uX@*K3@srX@F3@uX@ V43@^uX@3@@ikX@2@`oX@@2@qX@2@sjX@2@ /bX@]}2@@Q\X@I2@)WX@ y2@!VX@ N2@l\X@fe2@ _X@ NK2@aX@C2@dX@S2@gX@P2@tiX@@ F2@wgX@ &>2@@pX@<1@lX@11@rX@ %1@@XzX@֔1@؁X@@v1@X@a1@ &X@ 1@X@ 1@X@0@X@0@X@0@@rX@0@ஞX@κ0@X@Ä0@#X@ H0@ϭX@F0@[X@`z0@@iX@a0@ X@+0@(X@ 0@X@0@`X@@ 0@X@/@-X@@r/@@X@ y.@@ģX@.@:X@A.@ X@P.@@xX@.@ۓX@`).@ьX@\n.@X@@'-@X@`/6-@`X@,@@ܪX@t,@X@ \o,@X@ V4,@X@l+@X@*@YX@i*@ X@`Z*@ NX@`*@cX@Z)@X@)@@X@h$)@X@`(@ X@(@@X@B(@X@E(@X@`'@JX@ '@`X@`lA'@[X@@!B'@@X@5'@X@&@X@@3&@@X@@%@KX@9%@@6X@?%@X@ш%@ X@TU%@@X@%@X@@_$@X@@#@|X@#@X@d$@X@$@5X@F$@tX@x%@X@ Vt%@`ŦX@ %@@X@@!%@ ~X@`/%@X@ +%@X@I%@@X@@&@3X@`#@&@ X@[&@X@Ί&@@X@`I&@]X@ &@bX@@&@X@@9'@X@M\'@X@j'@X@c'@*X@ %'@X@ '@X@'@X@Y'@X@ 1u'@7X@#'@lX@n'@@X@`I'@X@'@ &X@'@X@b (@@©X@#!(@X@2(@bX@q(@X@{(@X@Cd(@@.X@ k(@X@F(@ģX@(@֫X@F(@X@T(@@X@ (@`X@ (@kX@G)@`X@`))@VX@@3s)@X@;)@@äX@:*@%X@ &*@@˝X@`*@X@?(+@ X@`n+@X@`+@ߋX@K,@qX@+@)X@+@@X@ V+@^X@Q8+@@GX@ԅ+@X@ +@@X@`+@X@A,@'X@@,@$xX@X-@SzX@l-@|X@]n-@X@\N-@X@K-@@h|X@ y-@yX@ sz-@@ xX@l-@ vX@t-@`rX@`-@sX@ZQ.@@pX@}r.@nX@].@rX@@.@$pX@ .@@onX@/@dX@ 20@gX@@3#0@gX@[o0@ &jX@`Y0@qlX@ ّ0@jX@Q0@``X@@P0@@WX@q|0@VX@!0@OX@` 0@@NKX@>0@LX@80@@IX@`1@KX@1@`OX@@ 1@OX@:1@GX@@1@@FX@/1@k9X@`1@@_8X@@s1@A6X@c1@9X@iS1@@5X@411@a:X@ 1@7X@0@K5X@0@/6X@`e0@@g1X@@40@%X@@-0@MX@Z0@X@80@*X@k0@ X@@d0@X@l0@ X@` 0@BX@0@X@lp0@X@vh0@X@`5Q0@lX@b0@X@O0@X@@0@@W@60@ W@`YA0@W@z$0@@6W@$0@JW@@60@W@}/@W@/@W@ k/@@XW@zt/@`W@ /@zW@l/@{W@` 0@`W@0@*W@0@W@n/@nW@/@RW@/@W@Ȑ/@@W@/@ZW@@/@nW@ /@W@0@W@@ 0@W@d0@W@0@@`W@"0@W@@0@W@/@W@/@`W@`//@W@`f/@ѸW@@ /@`W@/@W@/@ǸW@h0@ W@k!0@0W@-0@3W@ x60@`iW@ %?0@W@`20@W@ !0@@ӶW@ V0@W@`/@@W@U/@@hW@/@@oW@!0@ W@#)0@W@10@W@p/@W@;/@@W@0@W@h0@@ܮW@@0@תW@T0@W@aZ0@@NW@ \?0@@ W@p=0@@?W@`R0@W@@.G0@̠W@I0@#W@@0@W@$ 0@W@ b/@W@@ 0@'W@t0@`W@S0@2W@k0@W@e0@W@@0@zW@ 0@eW@@^1@W@)1@W@@/1@zW@)1@@xW@/1@DW@81@'W@ J1@W@qL1@W@ 1@W@1@W@@(1@lW@1@W@2@@W@@42@sW@>2@'W@[?2@KW@M2@W@vH2@AW@4Q2@W@2@ZW@@ 2@W@2@BW@ 2@kW@ 2@RW@2@W@2@ W@` 3@W@`f3@]W@pb3@W@'3@}W@$3@ {W@+3@8ww'@<@D9@ 0,@`&7 -,@ #73,@`6,@`56 \,@ +6}-@ 6-@n6@-@@6-@67,@@;6@+@-5+@-5@P+@j5 +@@5*@ 4@|*@@ g4Q*@`'4@'*@@j4 *@3})@`3%)@3`(@@39(@2v(@@2b (@@u2 y'@@; 2ww'@z1'@ B11'@`)1`?(@%1n~(@:1 N(@41@(@@@1h)@'=1)@1*@ 0n*@@1+@"1`/+@l1`#`,@j1*k,@c1@o,@ c1@/@@c11@ Vd1`Gh2@c1{2@@p1>2@1@2@1u3@`13@T1k3@1 O3@1@4@`C1d4@@314@24@`f1 &>5@71a5@2ql5@ 2 x6@I1`y7@@1T<8@\{18@}1c9@1@J9@ٱ1@D9@318@/18@`C2`8@ 82@v8@@2a8@Y1@'7@`*27@R27@@;|2!7@w2`7@6Q2Av7@92J7@1ev5@`M2 4@AQ2\4@L3@J4@@44@ 853@[6 %3@63@@:m7`\4@@}84@@:@3@x;K3@%m<Ƒ3@<dw3@ <`/F3@ a<9=3@<K3@<#!3@<j3@<`02@ 9<`֣2@<`/2@<f1@m< ҧ1@<1@<c1@~<h1@`e<@(\1@2<jR1@`w<@Wc1@Ml<`/f1@ Y<@PY1@`<<B1@ <<81@>< %/1@3<11@`<@Q1@P <0@ [<0@#<@0@L-< 0@*+<`0@T6<0@7<0@B<@ 0@`kB<d0@!S<0@L]< O0@ <0@@u<@{0@ <r0@&<l0@ <0@yU<u/@<@ W/@ ;`}/@q; /@`I;.@GQ;=.@);`m.@&:`L\.@`:(.@g:D.@:`H.@:W.@:-.@f:-@V:-@#:-@m :-@`:`-@(9E-@9$-@)\9µ-@ 9Ô-@8-@,8 t-@వ8 2-@Ȑ8 N;-@w8@,@`,8l-@@7n,@j7@,@a7 +,@6a7,@`lQ7,@`&7@T@Y:@ V@ rk>@6T@,>@`9T@7>@`;T@n.>@AT@@g4>@`GT@T>@@ONT@>@RST@f>@RT@k!>@VT@ 1%>@^YT@vH>@SZT@ ~a>@bT@T>@dgT@ rk>@nT@W>@T@h>@T@`Y=@@T@;=@T@)=@tT@@ԕ=@T@=@zT@z=@3T@@ty=@ &T@ %=@T@s*=@ WT@t)=@T@:=@U@wG=@I U@6=@ U@=@cU@ =@U@<@4U@L<@#@6T@,>@> @`I@x@J@@@`I@(@@FI@d@ਛI@{s@`ěI@@-X@I@2 @I@~1 @I@i @II@> @$I@@ @I@ @@FI@@ @*I@@ I@@RI@@I@@I@@@`I@k@I@@I@@ I@3@wI@`W@ǨI@@O@I@`j@`I@a*@JI@@ `I@@!@I@C@ xI@`@ I@M@I@@@ZI@ɯ@I@`*@I@ 2@ ˽I@@|I@/@^I@H@I@@@ԭI@0@ I@ @3I@`@:I@@C@I@o@jI@ 5q@kI@ @@2I@@ @@I@ @`I@@h @ǸI@` @`I@`4 @^I@ @`qI@`f@@I@`:@I@ q@ǸI@ @I@`,@I@Y@I@@*I@(@I@ @I@ @I@@I@~1@PI@@ I@` @ I@ @@?I@ @ DI@@>@`I@A@@I@@ ,I@`y5@'I@ @ xI@ q@ &I@K@J@Z@>J@@`rJ@@@ OzJ@?H@ zJ@<@JvJ@`p}@rJ@W@@FzJ@@ J@@ J@ @@J@@+J@`^@J@6@@J@ @J@ M|@IJ@N@լJ@K@ޤJ@b@`J@x@J@@@{J@eG@QhJ@8@ rSJ@ $@@PJ@m @ SJ@"@ PJ@ @`HJ@@FJ@}@`/>J@@`7J@3@`;J@ C@b1J@@5@`/J@Մ@J@`5q@dJ@<@ J@@@J@`3@@J@R@UI@`>@ I@2@@PI@`g@ =I@@I@`@@?I@`˭@`I@@@FI@ $@BI@@@ I@(@`I@&@`I@v@ rI@I_@I@@I@@JI@K@:I@YQ@@I@<@`ՔI@@@I@~@nI@@Oz@jI@`@9}I@`@}I@ @xI@`V@ oI@9@fI@@`I@ `@`I@&@pI@b @}yI@`@{I@s@`I@ 6@I@k@I@| d@ e6e@T4l  e@5gd@ 5d@a5 d@`X5d@ i5e@ v5e@`kr5 e@ݎ5 e@5 d@-52d@"5`d@`C5 d@@q 5d@+4d@ a4yd@4@d@4@7d@4Fd@ 14+d@4d@4`d@ 4hd@4d@ 5d@5Pd@`(5 d@-5|d@ e6`d@Q6d@^6d@;6`d@ bJ6`d@ a;6qd@f76`d@`k26 |d@@d6=d@f6qd@5`Id@5d@5@wd@ 5`d@@5 d@@:5Ʒd@ 5`od@K5d@v5td@ڠ5`d@5Td@ h5d@@i5 d@d5kd@+Z5gd@N54d@ Y5d@U5@d@`H5d@ 5d@ h5@`d@ 5}d@ 4`d@`4`d@=4d@4 Sd@4؃d@`Ce4@`d@_4Sd@N4`d@@:M4d@L=4 d@`=4d@=+4`d@ $4 d@ '4d@T4Ad@@334d@ S4@d@=4 d@)<4md@QI4d@4 6d@!44d@4 |d@T4`2d@!4`d@75Kd@K.5൲d@v85׶d@@L5`Id@ ak5Fd@K^5ad@ t5d@`w5 d@~5d@yu5@d@Rh5`]d@@r5d@M5kd@@õ5gd@O5d@5d@5d@ ? 6`d@ a6 d@@)6` d@ <6d@@Q6Sd@Ga6|d@ e6 /f^mIQf@ 2AS.fF |f Ff yFfvEf IEqf`EfEf`E /fEfEOf E fE Xf`E@f Eq f`E@3 fE fE`]f@E#f=EfE fE`f@KE`fE f`<F f&FfFd@^mId@jId@ dId@`I@Ŀd@ !cId@fId@ kIৼd@ lId@cIkd@ bZI d@OJI d@DId@^EI@Wd@HI d@NId@`UI`d@ZI2d@ YId@`hId@^mI e@ C ne@ C ee@`C`e@B e@@RBSe@ B`)e@B=e@Be@@Be@B0e@B@e@zBe@`fBe@ bBe@nB`e@`1Bye@.Bse@ìB e@YBe@`B`)e@dBe@@(B e@ \Bye@`Be@ Be@B/e@B`)e@3B}e@ |Be@`lyBJe@`IxBe@`}B e@Be@@ՅBve@`BvBTe@_dBe@`DB`xe@`=B e@`8B@we@FBqe@)LB ee@`PBe@`RB Qe@SB@e@YBB e@D4B`e@@R0Be@,B Qe@ 3Be@2Be@ -BYe@(B` e@`(Be@ !BKe@B`e@&&Be@@$B e@>!B e@ $B e@;B`e@$B@e@`*Be@ JB e@B`xe@@RB e@B e@KBMe@"Be@` B e@A e@Ae@"Be@)$BVe@//B@e@4B@e@ C-Be@ #B e@`0Aìe@@uAe@`Ae@Ae@઺Ae@HA"e@@A˱e@A$e@`SAPe@5A`]e@ A e@4Ae@A e@ҧAe@#A ҧe@ܯA|e@ Ae@ aAze@`TAe@śAe@`Ae@7A e@XAZe@ Aդe@,yAe@e?Ae@^=ADe@5A`oe@ 8Ae@ 2Abe@GBAAOe@@;Af@`C ?f@@RC ;f@C_:f@C;f@Cp-f@@C!f@`+Cf@`Cf@ĴCdf@|Cf@ qCf@mC#f@C"f@qC- f@wCf@Df@%D`]f@%Df@`C=Df@ADf@6pDf@@AwDf@@|De@)De@@DVe@Dbe@`wDe@`D3e@ De@`ZDe@ڰD ee@`ZD e@D`e@De@`1D`xe@D`e@`De@D_e@Dqe@@cDe@@{D&e@QDe@ De@D@We@ hDe@ hD@e@ 'D!e@`|De@ !sDe@ ]De@4*D@e@ %D e@$D`2e@ De@`"De@`$D`e@"De@De@ C@Ne@ hC e@`C"e@C`)e@5Ce@`Ce@ yC@re@C&e@?C`e@C`e@઒C@@e@@{|Ce@U}Cye@`oC`e@mhC'e@CVe@]C ee@ 8C e@ Cd@Gd@4Gd@ Gd@`}Gd@`G@d@yGTd@zG@7d@GyG d@DtGd@@|[Gd@XG@^e@]Ge@isG`e@MtG`xe@@qGd@@|G@e@zG;e@`wG@7e@_|GMe@ mG ?e@`TG e@ԍGve@`SG`d@-G-d@ G d@@G@d@ ƚGd@Gd@G_0e@E@/e@ E0e@E@9e@4E@;e@ E`2;e@@EK9e@@E&:e@ E=e@E`2?e@E ;e@E`:e@ E;e@ E&Be@SECe@rEDe@E`Be@;E De@EGe@`E eIe@EaFe@EaHe@GEJe@uEaLe@ ޕE"Me@E Me@EKe@E`Ie@E`]Le@E Oe@E eUe@zE We@҇EVVe@ yE3\e@ngE9_e@`r\E`e@-`E`e@`hE@<_e@@jkE``e@ }E@Eae@ 8wE_e@@)lE]ae@`}jEpae@`E_e@ZEfe@;Esle@`9E /oe@/E ke@?8EKge@v8E]ge@V4Eie@'E`je@@EYme@ E+oe@D 6re@@D]{e@pDe@De@D@e@D|e@UD`Ie@@D@e@pD ?e@bYDBe@`JDe@PDe@LDe@LED"e@@?D e@VDD@ie@BDe@-HD"e@`rTDe@@:eDe@lDe@`cDৠe@@gDe@h|De@ \D&e@D`e@ De@`Dྡྷe@D`e@D@ie@D̴e@@D e@ D e@ bDMe@MDe@فD9e@@vDe@ }D ҿe@ rDe@xD@e@@yD@e@D@e@De@ʆDe@De@`TD]e@gDe@@jD`[e@~D@e@@cD`ʼe@GDXe@D@e@mD޾e@ʎD ne@YDBe@@De@ςDe@ 8Dde@ De@{DOe@@D*e@@}D`e@@քD@e@ D@e@5D@G@ e@ C5G S e@`}:G e@`=Ge@O3Ge@+Gd@/GPd@3G;d@ 1Gd@vG |d@Gvd@Gvd@ !Gd@ G@rd@GYd@AFd@ Gd@  Gd@ G d@F!d@F_d@&F@d@Gd@FBd@F`2d@BF d@6Fyd@FVd@@uFd@ Fbd@FXd@F`d@Fd@F` d@`Fd@F d@@{Fd@Fd@Fad@@F d@Fjd@۷Fbd@vF`d@@|F@d@`CF/d@໣Fd@FDd@໫F d@Fqd@nFDd@ F`d@HFad@)Fgd@zF`d@ Fd@ЩFd@F ?d@ FSd@Fd@@ȨF0d@ԥF d@F d@WFd@઒Fd@F` d@F d@`Fd@Fd@ Fdd@@RFd@Fd@ Fd@~Fd@FZd@ bzFDd@oFd@DlFd@`SFZd@`T~Fad@)lFd@MdFd@ PbF d@eFYd@ JoF ?d@$pFKd@`eFd@`ZaFd@M\Fd@aF`d@XF*d@RF d@ LFd@,YF$d@%WFd@`QFFd@:MFd@?Fd@2Fe@ (Fe@q%F4e@u!F e@ IFA e@hFe@Fe@^E"e@FZ"e@`E#e@ E(e@`Eb#e@E"e@E`.e@E_0e@E-U``k%@ `T .@`%oU?+@nU b+@aUM,@@]U`R7,@XU=i,@)TU,@wKU`l,@@IU7,@@KU,@`GU""-@EU`/-@ BU@%-@@AUf-@@d4Uҧ-@+U`_-@U`lA-@U`X-@@UzT-@@#UL}-@.U@ӆ-@ U`n-@U/u-@@U`}-@ TG-@T@P-@@T-@@T-@TA-@rT .@`Tr-@T .@ST-@ `T-@6T -@@T&-@@T-@@uT-@]T -@BT`-@`ST-@T`f-@ T,@T`,@yTj",@eT+@Tc+@`"T+@-T`f*@@LT)@@lT )@T7/)@T(@%T``(@@ TL(@T (@BTx(@@[TZ)@?TC$)@T@)@@T8)@oT)@T )@@T`)@QT` 5)@rT)@@T@(@T(@TΪ(@@T@(@T@ (@WT (@fTi(@wT'@BT"(@@mT;(@BTwW(@T`)[(@~TL(@TQ(@ZT?(@T`l!(@`STq(@?T`'@T'@@:T@ۿ'@T`'@ATO'@Tv'@TZ'@T}2'@vT '@@T&@@T@$&@T+%@@MT8%@XTF%@WT`%@*T``k%@T %@@ U@X%@aU%@@U s%@U%@qU;%@*+U '&@@9U%@2 @r*@B@*@`Մ@3*@#@ H@*@\@)@`@)@9@`R7*@@w@`*@`5@5+@#@&^+@ @`]+@ @=I+@0@`H+@@u@+@$@#+@Ʊ@y+@Ί@`+@`G@_+@@@w*@@@1*@k@%)@I@@m)@ C @`)@`_ @@{'@` @'@ @@'@ @@%b'@@x @'@`H @`/'@@n @ '@ @(@~ @ (@{@@a(@@<+@`F(@}@(@)@@(@A@{(@@ 1U(@`@^ (@`@@'@I@`'@G@'@f6@`'@@ww@(@I@@(@`@(@M@ B)@`@@{s)@@}?Tv)@X? 7)@ @?`B)@ $?@*@@?@-*@ ?@J*@/?۾*@??*@@z? +*@@'?*@Z?`#+@`??I+@@?l`+@?^+@ף?,,@?@!,@??,@UU?@ -@?#-@@%?-@L]?`f-@7?-@y?c.@@b?@-@d?l.@`p=?j-@?Z-@0?` -@? Œ.@,@.@B@.@2 @.@^M @'.@ @L/@ @@uX/@I@@o/@Be@/@ @/@@@0@:L@M0@@`d0@`N@\0@`@0@r@2@ @l%3@?@3r3@e@@%4@!@5@$@6@Z'@#q7@'@7@ u@ @+Y-@`H+@5@*@p+@@+@@o+@+@ +@m+@I*@ e&,@ )*@],@_(@ H`,@E(@ Y,@(@ N,@(@-@v(@ P-@@_(@+Y-@9M(@=-@3(@`L-@z'@`-@7n'@?H-@;K'@J-@@&'@`L<-@'@Cd,@l&@P,@w&@,@&@@+@`RW&@`fF+@ %@(+@p]%@*@Nz$@*@@!b$@@*@`8$@@d*@,$@ |*@5$@ *@@Q#@t*@#@@*@Z#@`5q*@M#@`P*@#@*@D#@)@@\"@)@@"@Z)@ux"@`ɮ)@+"@@)@!@ )@!@t)@Մ!@`)@@XR!@E#)@{3!@'(@A!@(@9!@(@ !@(@M @@(@N @~(@ @r(@@T(@ y@T(@O@Q'@ߛ@@'@ @`'@~@@'@`O@ 1'@ 4@,'@ @@'@H@@,'@ $@ '@@`'@@j@&@Ec@&@R@7O&@ @;&@@%&@K]@*&@@` &@K@ %@@@`%@O@T%@ @p=%@@6@`51%@b@@%@ @E$@ـ@h$@*@U$@@ۿ#@s@R#@`4@;l#@R@t9#@`/@@@'#@ @@"@@&@"@O@"@M@ "@@@"@d@E"@֣@!@;k@@!@ G@!@$@Ϊ!@@.!@n@!@@@!@`@o>!@1@@E!@ N@T.!@=@|!@*@2!@`@@!@:@@ @H@; @`2@ @ ,@e @@ @H@n @W@` @ @@@L<@ o@:@3R@@@@@&@`jb@ @`A@@`@[O@@`@` @X@ͫ@ =@`@ .@ @ͫ@@h@M@@-@@ܾ@@ @`(@@@L@ @@E@i@I@`Y@@@@j@@&@@@@,@G@@k@ @@@@@@Q@ |s@`8N@`N[@`(@:L@@N@h@ @@@`-@r@D@`Q8@`j@`2@ D@ @@6@`@t@@@ @@`]@@ @-X@ G!@X@ v@);@&@r@`A@@ϩ@@ vX@t@@\@[@@@`yu@z@`@ 5@ @b@r@`@N@`d@i@ء@ v@@d@@_l@ @Zp@H@#@~P@@ f&@`ij@@9@@`@@ @~@@@ @.@`@Q@@A@`@}@ @L|@'@`8N@#@r{@@ @ {@`_@`B@ x@U@@`'@2s@ |@^M@`vX@@@(\@@@5x@/@q@@@`C@@l@}@@&@ |3@@@@@@@`@/@t@(@`@h @`ԥ@) @^@U @@*@[@` @@&^@;@`m@`@@Xr@= @ 51@ @$@p @`@ @e@* @@@ @<@@3u@@|@`d@"@^@Y@`b@@(@r@e@`:@`@ \@@@0u@;@*@`0@@@ @<@u@@@@* @ @-!@N@@"@`f@I"@@\."@\ @"@!" @"@`N @E#@ @E#@  @@']#@ @@#@ @J#@`3 @6#@ $ @g#@y @@^M$@@ҧ @@$@ @ $@ׂ @A$@P@7$@@ @ +%@@ g%@@%@ @;&@঍ @E&@@ @@&@ @@%b'@ @@'@` @'@`_ @@{'@ C @`)@I@@m)@k@%)@@@1*@@@w*@`G@_+@Ί@`+@Ʊ@y+@$@#+@@u@+@0@`H+@ @=I+@ @`]+@#@&^+@`5@5+@@w@`*@9@`R7*@`@)@\@)@#@ H@*@`Մ@3*@B@*@@> @r*@ @*!*@ @+*@!@""*@S!@ )@Q!@`})@BE#@)@`(#@ D*@K$@*@%@@*@&@@u*@&@@*@@'@@*@`:K(@ 3*@p}(@@u8*@I(@%*@(@*@@!B)@*@`RW)@]*@)@ *@)@ +@@*@-+@@*@[+@@*@p+@b@y*@`b@D+@ `b@y*@b@n~*@b@*@b@n*@db@n*@b@+@b@D+@Vb@D+@`b@@.+@b@`*@'b@-*@b@`*@`b@y*@D@@L@l?@Q@&,j{  /JN.@@-8Q@/.@@O:Q@v.@>Q@/@FQ@@'/@NQ@/@QQ@ 0@@TQ@`e'0@QQ@ 0@JQ@O/@AQ@n?/@>Q@ y/@@Q@ h%/@=Q@.@@-8Q@@3@`iQ@3@@-Q@J3@ZQ@3@@hQ@q3@jQ@3@Q@3@Q@83@`yQ@ 3@(Q@ 3@Q@`'4@[Q@@3@`iQ@`6@ Q@w6@@XQ@ \_6@Q@`c6@ fQ@6@@ Q@ ~6@Q@6@^Q@>6@bQ@@:6@@Q@$7@Q@@X7@Q@`6@ Q@ @`O@@= @O@Œ!@ O@@!@`O@@!@`O@ @`O@s 1@@@Q@ "1@vDQ@0@VDQ@0@@.CQ@z0@EQ@'0@rGQ@ 1@@?HQ@,1@`LQ@B0@`QLQ@`60@*NQ@n1@OQ@0@@.SQ@ 1@`QTQ@1@TQ@1@@VQ@H0@ VQ@1@tYQ@}b1@WQ@`1@cXQ@I1@JZQ@{1@@ZQ@N{1@@[Q@ B1@q\Q@@/1@`i_Q@x61@@`Q@`5a1@@O^Q@@:M1@aQ@f1@`yaQ@@ 1@#]Q@`_1@a^Q@u1@$dQ@x1@AfQ@`1@,eQ@$1@1`Q@F1@`Q@1@eQ@k1@fQ@n1@@xbQ@ V1@@eQ@|1@ cQ@`1@]Q@v1@v\Q@1@taQ@ 2@`i_Q@k1@E[Q@@2@@YQ@` 2@D\Q@2@[Q@2@VQ@@1@TQ@1@@XRQ@1@lPQ@`61@@WOQ@k2@`LQ@1@JQ@@;|1@IQ@1@LQ@@-x1@LQ@`_,1@DDQ@@/1@@BQ@@31@AQ@s 1@@@Q@*@ Q@A*@`QQ@ ,+@ Q@S*@ Q@CD+@ Q@d+@`Q@Q+@SQ@70,@Q@@'=,@]Q@+@ Q@+@@ Q@+@Q@ +@Q@_+@Q@ 0+@Q@M+@UQ@*@ Q@3@EsQ@@2@ wQ@2@zQ@2@(|Q@2@@}Q@@]2@}Q@s2@~Q@D2@@Q@3@]Q@F3@̀Q@ 3@Q@H3@@_Q@P3@ >Q@I3@Q@`d3@IQ@ |3@Q@ɏ3@Q@@X3@Q@3@KQ@#3@`Q@o3@s~Q@n3@7wQ@e3@tQ@3@EsQ@ 4@ ʂQ@ 4@SQ@ w4@ɃQ@e4@Q@f4@^Q@n4@ɋQ@4@ ʎQ@4@`Q@ 4@^Q@i4@Q@ U4@nQ@r4@҃Q@ 4@ ʂQ@L9@ Q@@j9@@ܾQ@9@vQ@xv9@Q@|S9@lQ@``K9@Q@ ߌ9@3Q@9@Q@9@Q@@^9@Q@`9@Q@@9@ ~Q@@-9@Q@:@Q@?:@@ Q@@39@Q@@9@@Q@9@HQ@@]:@ɿQ@@*:@Q@ 8:@@xQ@E3:@VQ@ U9@UQ@@9@ fQ@`9@ৼQ@L9@ Q@ ,6@`ݝQ@i#6@Q@'=6@`Q@@T6@Q@6@HQ@@5@Q@5@Q@``;6@zQ@=6@Q@@i6@Q@@_6@@6Q@0f6@Q@*{6@ Q@ U6@Q@6@Q@`6@ >Q@ &6@Q@ 6@0Q@`6@ Q@86@ৰQ@ 6@*Q@ ,7@Q@@7@rQ@@)7@৴Q@@dH7@@gQ@Y7@@Q@lP7@Q@@n7@0Q@``{7@லQ@c7@@Q@ Vt7@Q@@@7@:Q@n7@Q@`7@Q@7@Q@ 6@]Q@}7@Q@6@BQ@ 6@Q@6@@Q@Z6@١Q@@.W6@@`Q@sJ6@ Q@O6@@Q@D6@`ݡQ@ ,6@`ݝQ@ (7@Q@ 17@|Q@@7@ēQ@"7@Q@7@0Q@ 7@ϕQ@6@9Q@06@@Q@z6@MQ@7@Q@97@Q@`-7@@ܢQ@@7@JQ@EC7@=Q@R7@Q@h7@@Q@ 7@@oQ@Ec7@Q@w7@ɧQ@`7@PQ@D7@KQ@@-7@ٝQ@֤7@@ Q@ (7@Q@p @O@Ȑ @ ,O@3 @O@' @@O@@o!@O@-!@`O@O!@O@@5!@ O@3!@ O@U"@`O@I"@@O@@!@` O@p @O@@ۿ7@kQ@ U7@@Q@7@ fQ@@7@1Q@7@`Q@@7@Q@7@Q@8@Q@`6 8@@`Q@`8@Q@7@@pQ@@ۿ7@kQ@/ @O@@@(@VP@@_(@8VP@I_(@`QXP@xV(@tYP@(@_P@m(@^P@L}(@HdP@࣐(@@dP@`l)@@YP@(@eWP@l(@TP@ yu(@RP@`I`(@OP@`I (@@pMP@@k,@ Q@dg,@ Q@,@Q@@ ,@@Q@j,@@-Q@S,@Q@,@Q@@,@@Q@`G-@<Q@Cd-@Q@i-@ Q@@-@@.Q@ -@Q@#-@@Q@ -@Q@@-@rQ@`5Q.@`Q@t:.@@OQ@Z-@Q@Zq-@Q@ +z-@9Q@`d-@@?Q@b-@Q@@?-@Q@V-@Q@h,@@ Q@@k,@ Q@Q-@Q@.@eQ@ yu.@Q@.@Q@].@k!Q@@r.@#Q@d.@[#Q@`I.@`i'Q@C/@`&Q@@.@ *Q@.@@ -Q@@A.@.Q@@^m/@,Q@J/@@N/Q@/@ /Q@.@q0Q@;.@ 3Q@F/@Z4Q@r/@@5Q@@j#/@18Q@@E/@0@9Q@0@4Q@~0@j2Q@J0@1Q@S0@ &.Q@ ؒ0@,Q@0@#Q@t0@/"Q@/@@_Q@C/@@.Q@L/@Q@/@Q@ /@Q@/@Q@3/@Q@ +.@YQ@ .@Q@@.@Q@ 9/@JQ@/@z Q@K/@8Q@Q-@Q@33@77N@T@$8N@@S@DN@@SVN@@`-@4Q@tZ-@4Q@`X-@0Q@-@H0Q@-@3Q@-@5Q@@A-@7Q@@.@2Q@ V.@=6Q@L.@3Q@=.@6Q@.@@?Q@,.@@Q@I.@`@Q@ +z.@!:Q@ .@a:Q@@y.@@4Q@$.@]6Q@x.@r3Q@@;.@0Q@.@@`/Q@.@.Q@@.@@N+Q@K.@$Q@<@pQ@@4"<@@GQ@r;<@Q@}2<@Q@ ?<@aQ@`R<@Q@T<@@XQ@ Vt<@IQ@Sw<@@ Q@@X<@lQ@@<@`QQ@e<@ Q@@X<@7Q@H<@[Q@@<@!Q@ <@(Q@<@ZQ@@=@@Q@f=@@Q@K=@eQ@zT=@@GQ@s=@qQ@@^=@Q@=@@ӮQ@@=@@%Q@'=@@pQ@ =@EQ@=@Q@=@5Q@>@bQ@3>@Q@t>@Q@V>@Q@wW>@٥Q@'>@`ԡQ@s>@Q@`>@jQ@ &>@3Q@>@ǜQ@l?@@%Q@ ?@PQ@ ?@Q@`6?@Q@>@eQ@Y>@Q@}b>@@pQ@W>@ɇQ@$>@`yQ@Q(>@@?Q@ =@HQ@``<@[Q@?<@|Q@<@Q@̜<@Q@o<@AQ@%=@}Q@g=@wQ@@;l=@vQ@P=@3zQ@r=@8zQ@@x=@@PuQ@=@lQ@…=@`kQ@=@jQ@ +=@@nQ@l>@'qQ@ y=@mQ@@=@ kQ@}>@@NoQ@ >@lQ@ [0>@`QlQ@L>@`QpQ@4>@qQ@4>@JrQ@v(>@@sQ@->@$xQ@ O>@:xQ@g>@tQ@k>@lQ@e>@wkQ@Pi>@jQ@s>@lQ@@Ws>@`yqQ@w>@tQ@T>@sQ@t>@'qQ@@>@rQ@>@rQ@h>@@kQ@D>@fQ@>@ cQ@@>@aQ@>@%cQ@`60>@jQ@y>@jQ@>@chQ@$>@ 6hQ@@'->@:dQ@w>@@^Q@ \O=@-TQ@@XO=@)SQ@ KO=@OQ@IO=@@NQ@`;=@FQ@`f=@*BQ@ =@3BQ@ <@RCQ@t<@GQ@<@IQ@`<@;OQ@I=@]Q@rK=@_Q@@P=@@PmQ@`5a<@@tQ@<@|Q@<@pQ@`%@sO@ &@O@`'&@2O@b%@ O@v$@@O@#@O@#@O@ $@\O@,$@O@2#@O@@#@O@ʎ#@O@x#@O@@=*#@O@@^M$@@?O@'#@ xO@#@O@;+$@sO@p=$@`O@o#@aO@'#@P@#@@P@ \$@@%P@4$@P@p$@rP@7$@P@@Y$@@ P@`r\$@ P@$@D P@$@wP@$@`P@$@P@%@P@` 5%@P@ M%@P@@$@@P@A%@`iP@ C%@'P@p=%@P@A%@`QP@ô%@P@ 1%@P@`]%@P@`/V%@P@ ˭%@@P@@%@ P@``%@P@%@1 P@%@%P@%@|&P@n_&@@FP@|S&@ZP@׃&@`P@&@@P@ &@ ~P@x&@'P@`5&@P@@O'@JP@&@@P@&@ P@"'@!"P@b'@&P@E'@@G%P@:'@'P@'@S&P@0'@^%P@`'@$P@'@$P@&@+P@\&@@G-P@`r<'@`.P@t'@0P@C'@`y1P@@^'@3P@W'@k5P@P'@6P@0(@U=P@a(@;P@bi(@P@@'@$P@ݞ'@@@P@@3'@@6DP@O(@ABP@,Y(@?P@=j(@1@P@b(@`CP@@)@GP@`I)@`QP@`I`)@LP@@(@`HP@ົ(@IP@n(@@_LP@`5(@NP@`h)@(PP@`(@kQP@`(@NP@A(@OP@(@MTP@(@@UP@h)@`iWP@ZQ)@TP@@_)@@GUP@ bJ)@`VP@ )@VP@T(@@_\P@G!)@@h\P@")@ZP@ZQ)@ZP@@;L)@l\P@ )@U]P@-)@^P@!)@`P@`r<)@aP@")@eP@)@@aP@(@aP@@A(@RcP@ 1(@eP@ (@eP@@(@jP@ )@nP@@+)@mP@;)@biP@n)@hP@1)@#iP@R)@]jP@r)@ZpP@I?)@sP@@n)@@XrP@ a)@uP@`=)@tP@ 7)@uP@e)@{P@ʮ)@`}P@@D*@`iwP@[*@`vP@n>*@@-|P@@')@ f~P@)@@NP@*@P@t)@@xP@ Y)@HP@)@P@)@P@*@!P@%+@P@=)+@P@W+@@P@t+@@oP@ I+@P@+@P@E+@P@@\+@׎P@@'+@P@@J,@`P@@ 7,@`yP@9+@@P@+@P@Zp+@$P@W3+@eP@Z0+@P@'+@ P@@P*@IP@*@`P@n*@@P@+@P@+@P@@*@͗P@d*@ZP@jb*@`ŒP@ *@P@$*@|P@`W*@@P@J*@$P@)@,P@ ,*@@XP@@^m*@vP@ Vt*@̜P@*@P@ԅ*@@P@Z*@]P@`/V+@P@T*@rP@=)+@SP@*@P@ g*@ͣP@~*@P@7*@P@d*@P@Cd*@@oP@*@tP@ *@ѬP@`*@ &P@*@bP@ +@`yP@ +@P@+@@íP@ V+@)P@`l!+@ZP@F+@cP@ "+@^P@ N+@]P@`/+@ͳP@b+@ζP@+@9P@+@@P@ h+@@P@+@@ܾP@+@ ڼP@+@P@@-,@P@ ,@bP@ !,@rP@`>,@P@EC,@P@1t,@P@׃,@P@ -@P@`)-@P@~1-@JP@&-@nP@,@P@ N,@P@h,@@P@,@P@,@P@ N,@`P@,@P@-@P@l-@@oP@`r-@)P@%-@vP@-@@gP@@d-@YP@ -@P@h.@P@`-@@P@&.@tP@=.@P@@j.@P@.@@-P@G.@P@ .@JP@`.@@?P@ .@'P@@.@@P@@ .@P@D.@P@ M.@P@Ȑ-@`P@G-@ P@<-@P@Ec-@7P@Ec-@@P@>-@ZP@?,@eP@;-@P@ h%-@KP@/W-@ P@`l-@P@?-@P@.@@6P@``-@@-P@zt-@P@Q-@P@.@`P@ D.@@WP@ G.@P@@P-@)P@.@BP@.@@%P@-@=P@ N-@P@ %_.@5P@c.@@P@ݞ.@P@.@@P@ G/@@ P@@Ag/@P@/@0@#Q@z0@Q@0@@Q@0@ZQ@&1@IQ@ VT1@Q@P1@ Q@]1@ Q@Z1@@Q@f1@Q@0f1@`Q@@D1@ Q@i31@{Q@@4B1@Q@r1@@Q@ 1@2Q@`^1@@Q@`6`1@Q@(1@Q@@E1@Q@@1@5Q@@ w1@ Q@1@!Q@`1@!Q@@91@zQ@1@Q@z1@ >Q@`1@@Q@`0@D Q@0@Q@@0@Q@@|0@ Q@`<{0@k!Q@ 0@"Q@l0@ $Q@0@&Q@ 0@')Q@0@,Q@`'1@D(Q@ \/1@ >)Q@Q1@@+Q@1@,Q@A1@`.Q@@ڠ1@J*Q@੫1@|*Q@w1@-,Q@l1@/Q@OJ1@.Q@8>1@0Q@y1@3Q@@1@M0Q@Qx1@#5Q@1@`8Q@` 1@<7Q@ ,1@@8Q@1@w;Q@@w1@9Q@@n1@J:Q@1@@=Q@ |1@[?Q@ &1@@EQ@@ 1@FQ@&2@IQ@k2@JQ@2@NQ@L1@@NQ@ 22@rSQ@,2@@XQ@@&2@,]Q@H2@I_Q@`<[2@^]Q@b2@ZQ@[2@@XQ@@]n2@,YQ@2@WQ@`2@qPQ@@2@TQ@@42@`VQ@2@PQ@` 2@QQ@Ϊ2@SQ@2@MTQ@2@`QTQ@ 2t2@\Q@x2@@`Q@`2@@`cQ@ &2@@aQ@`2@`Q@ 3@VQ@PY3@kUQ@`a3@ SQ@@dX3@ &RQ@03@`yQQ@DD3@@PQ@H@3@)OQ@O3@*NQ@Ɓ3@SNQ@ q3@@_PQ@ s3@ TQ@=Z3@WQ@@3@@hXQ@2@]Q@`3@`Q@B3@aQ@ 63@@?dQ@3@3bQ@@42@@dQ@`2@gQ@s3@lQ@`<3@@WoQ@h3@EsQ@`3@`isQ@3@@qQ@'3@`jQ@>3@@iQ@@Ӷ3@fQ@ 3@0YQ@@ۯ3@[Q@3@fQ@@3@@gQ@4@0eQ@`3@@_hQ@@43@lQ@ \3@uQ@3@8rQ@`f4@@qQ@@*4@@{Q@s*4@xQ@ 74@vQ@@W34@zQ@@-H4@S~Q@ ~Q4@k}Q@l4@wQ@FR4@@xjQ@@3c4@gQ@n_4@keQ@gE4@cQ@M4@ fbQ@04@YQ@``3@`yUQ@3@PQ@ 3@PQ@a 4@@-TQ@`I4@ XQ@@|4@@dQ@`4@aQ@ 4@`_Q@4@aQ@`<{4@@hQ@4@kQ@4@ &nQ@z4@pQ@4@nsQ@|4@`yuQ@4@wQ@)4@SzQ@w5@@-|Q@4@]vQ@5@/rQ@@: 5@rQ@4@qtQ@``5@wQ@ [05@vQ@ [ 5@sQ@)5@sQ@`95@@XvQ@065@@yQ@ S5@yQ@45@|Q@@@5@1Q@Q5@kQ@Zq5@@Q@`6@nQ@6@pQ@5@UuQ@I5@UuQ@h6@vQ@L5@@_xQ@O5@|Q@6@@~Q@G6@@-|Q@@ 6@Q@6@فQ@5@5Q@5@Q@6@Q@6@@Q@5@@Q@`<{5@`Q@n5@Q@ |5@Q@IO5@SQ@}55@@EQ@`6p5@'Q@@4r5@ ʎQ@5@@pQ@15@rQ@5@cQ@5@Q@@5@2Q@5@Q@ 5@@%Q@5@nQ@@45@@Q@6@`Q@@X6@ Q@%5@@ˑQ@6@@Q@6@@Q@``6@`iQ@y%6@@`Q@`e'6@`Q@nO6@@Q@L6@$Q@F6@`Q@ <6@Q@`6@$Q@S6@Q@`6@Q@6@AQ@=6@lQ@E6@Q@^6@҃Q@D7@Q@`6@Q@`7@Q@ 7@Q@%7@~Q@`7@`|Q@@4R7@@Q@R7@@h|Q@@d7@bQ@?7@@`Q@.7@Q@]7@@ӆQ@Sg7@Q@ &N7@ΊQ@rk7@@ Q@vH7@Q@@@7@Q@|7@)Q@@-h7@ Q@̜7@Q@@ w7@Q@Ä7@EQ@@7@ Q@`8@vQ@[8@@ Q@M8@IQ@88@ Q@N8@Q@48@Q@I8@ fQ@\8@Q@ 8@Q@?8@@Q@ ߼8@@Q@8@ Q@`>8@Q@ C8@Q@f8@eQ@}8@Q@ U8@Q@ਜ਼8@ζQ@Ѹ8@@Q@ U8@Q@`8@@Q@8@@OQ@$8@lQ@@;8@@OQ@8@]Q@`69@Q@9@ĻQ@ 8@@Q@`59@Q@9@@Q@>)9@Q@@@9@Q@@@9@@OQ@X9@ɳQ@@d9@#Q@W9@Q@`X9@ϽQ@d9@@Q@ш9@Q@Q9@#Q@r9@2Q@`w9@Q@@9@ ڸQ@`9@5Q@@d9@Q@9@Q@@9@zQ@`9@Q@Z9@@Q@$9@@Q@9@ğQ@FB9@PQ@` E9@Q@`9@ஞQ@H9@@gQ@A9@јQ@*9@kQ@`e9@@oQ@ 249@Q@ 39@@ܒQ@8@Q@`f8@@ Q@ 8@UQ@`9@҃Q@) 9@@Q@G9@Q@ 29@lQ@ 9@kQ@ U9@@Q@$9@@Q@C9@Q@@ G9@Q@|9@Q@9@nQ@l9@Q@u9@஖Q@@:@Q@`:@`yQ@ੋ:@Q@ :@`Q@:@Q@r:@Q@J:@৴Q@@:@@Q@k:@Q@Y:@Q@r:@ &Q@S:@ Q@G:@Q@¥;@`Q@;@Q@`_;@Q@@4;@Q@ ;@Q@O*<@Q@M<<@Q@B<@Q@2<@@Q@ |<@nQ@@<@Q@`q<@Q@gE<@Q@@<@ fQ@E#<@Q@8;@ Q@;@Q@<@7Q@@3<@Q@$;@Q@;@Q@A;@@`Q@`f6<@լQ@@;L<@PQ@I<@Q@=<@Q@;@Q@;@Y6@5Q@5@8RQ@!R5@TQ@5@NQ@ + 5@`KQ@5@@HQ@5@FQ@G5@@BQ@@4@*FQ@ 4@ DQ@4@@BQ@P4@@i;Q@@Y4@@X2Q@34@`a*Q@`3@"Q@@ 64@@Q@@-4@@Q@3@@Q@2@@7Q@ 2@jQ@ [2@@"Q@@2@ Q@ 2@3Q@'2@ Q@@X1@@P@@ F1@@Q@`601@Q@0@P@@0@ P@a0@P@`510@P@0@@XP@`/f0@@`P@Z0@"P@`0@P@l@/@`ŦP@@.@ෞP@@.@*P@ .@@P@`-@@zP@D-@@tP@-@eP@q,@TP@ ߼,@OP@,@@QHP@`d+@@H(P@L]+@$P@;,@P@7O,@ P@` ,@!P@`,@P@ +@P@u*@@P@^)@`yP@Y)@O@A(@O@dG(@`O@c(@O@n'@עO@TV(@`O@(@ =rO@ -(@`_O@(@LO@ k(@1O@w(@ ~!O@?(@`BN@7(@bN@ \)@uN@T)@ fN@ \O)@`N@ (@`ăN@Tu(@~N@,)@@iCN@`R7)@;N@-)@`3N@r(@&N@1(@ N@@{S(@M@'@M@`l'@CM@?'@M@ 9'@M@` U'@CM@@ '@`M@'@ҦM@'@dM@0'@ࠜM@z'@uM@'@M@@'@_tM@&@qM@&@ OrM@@0&@|M@T&@M@`W&@`M@`X&@M@L&@M@@2&@`M@ &@`M@F%@@ۗM@@%@5M@%@M@%@M@`f%@ M@࣐%@M@Uu%@ &M@ɏ%@M@U%@٨M@S%@ M@+%@M@N%@wM@OZ%@M@"b%@M@`%@BM@;+%@`M@G%@M@X%@{M@n%@`/M@`Մ%@`M@s%@`M@@$%@tM@~$@M@n$@@hM@ y5%@`M@6%@M@%@M@@$@M@$@ M@ N$@UM@@ۿ$@`M@` u$@M@xv$@ M@$@M@`$@M@ $@ M@w$@M@$@M@n~$@M@Q$@`qM@A$@M@%@8M@$@ஞM@O$@`M@h$@`_M@$@M@A$@UM@ Vt$@@oM@q$@*M@ B$@M@ B$@M@|S$@M@ $@ M@9 $@`_|M@`&#@zM@m#@ {M@#@M@#@@M@Fb#@M@_#@ԅM@7O#@ஆM@D#@vM@#@@pM@@l#@aM@ij"@@mM@u"@pM@"@ OjM@"@`kM@"@#iM@@"@`M@j""@`A^M@r"@i[M@U"@[WM@@d"@@TM@@!@!JM@!@ FM@ !@@.'M@  @M@l @`M@|S @3M@q< @1 M@[ @`M@' @M@@^ @MM@ @\M@'@* M@Q@`M@o@'M@ |s@ M@ @ M@X2@@L@ @lM@dh@@F M@@M@@ M@L@M@ 4@ M@ @`YM@@JM@@#A@M@`@M@@@RM@@n@{ M@ @@M@d@M@@M@e@@"M@`>@M@ @$M@@@?(M@ S@(M@`]n@@oM@N@ #M@@3M@ @`_M@`{@GM@:@@`M@`M@@FrM@ |3@tM@`51@@yM@@~q@`sM@@#@ wM@@@`~M@`@@ M@ @ D|M@@@@nM@@eG@@wM@@|zM@g@jM@@`NkM@ +Z@@nM@<@sM@~@zM@@`M@@`~M@(@rsM@@){M@-@~M@@@M@@@M@`.w@ >M@@UM@؂@`M@ @ OM@@e@` M@r@BM@ 4@@M@v@bM@q\@`M@`p@@M@ @M@r@3M@@.@ٰM@K@@ӶM@`5@M@ $@ M@@`M@'@`0M@ @M@ @ M@@@M@`@M@ V@'M@@UM@/@ >M@Q@ M@[@ M@@9M@8@(M@ +@ M@d(@M@r@@?M@ :m@:M@`p}@@äM@p@ fM@-@M@zT@M@ =J@`M@`` @2M@@#@M@@M@@jM@ൠ@M@@M@ +Z@@pM@N@M@{3@{M@@e@@۷M@ @M@@`M@@M@@@M@'@M@ 4@M@ @M@`@M@@M@ @lM@`@M@*@ OM@@ M@`8@ M@ $`@@oM@`` @M@@`M@ @@WM@g@M@`@[M@q\@M@`DD@7M@@@'M@ @cM@@@ M@@M@[@ yM@ :@M@F@M@˭@M@t@M@ @M@@@ M@ @ZN@`"@ N@`@`AN@ @MN@ Vt@@ N@O@N@`Q@N@I@N@ @%N@%@7N@@`4N@`Q@ +N@@N@@| N@[O@"N@@@<3N@U@N@r{@6N@L]@*:N@@i@ N@@ UN@@`/M@`@`N@ @ N@@N@-@ ` N@z@@W N@@@N@(@N@Q@`N@-@ N@z@ N@h@!N@ E@`N@˭@:,N@ Щ@.N@`WS@$N@N@`N@@C@5N@Z@N@@N@`p=@!N@@{#N@a@ 'N@@(N@-@`+N@z@.N@@32N@ 0@1N@`@`6N@@~@@>N@+@2CN@?H@sBN@O@5N@`ш@'5N@@(@N@`V@@-N@@@N@@`N@@N@ @N@ M@ N@`5@תN@,@[N@>@ൠN@[@`GN@G@൨N@@`īN@`WS@@ìN@`ш@ N@@)@`N@ @'N@ @`N@,@`N@@մN@@:N@(@`ܶN@3@N@Q8@`N@@<@@N@-@N@@ N@̌@N@_l@N@@@N@@ N@_@N@@`N@m@`HN@t@N@@ N@ >@@N@`@|N@ݝ@N@`J@N@ k@N@`,@N@ף@ N@"b@N@ @N@r@)N@ l@@N@Ί@N@@ N@7@N@h@ ON@ @`GN@h@ =N@@N@@n?@ ON@ l@@N@@@N@`:X@N@"@RN@?@MN@ C@N@`@N@@@N@ @`N@ K@N@ S@zN@ @N@q@ N@@@N@@N@༚@`O@@@ O@@ O@``K@ O@`vX@ O@@O@@`O@@@ O@ @O@ @t O@ C@`G O@ࣰ@ g O@@cO@@@O@7@O@@ O@@`O@7o@bO@7@ O@@@O@f@KO@@`O@(@O@/@( O@u@@O@@d@ O@ |@tO@`5@:O@@O@@ O@4@@'O@K@@.O@tZ@ O@I@ gO@@ 'O@``@.O@@@ 1O@ @2O@gE@ U-O@6@`q4O@K@8O@?@ 4O@@` O@ .@O@@@O@ @`N O@@` O@ @ O@@RO@&@"O@8N@"O@@'O@@@ L.O@@b1O@`2@:O@@@5O@_,@9O@ij@>O@|@@AO@ @`BO@@ IO@@^M@MO@ C@`MO@`r@GO@'}@OO@@@@WSO@@`IO@@RO@ a@@XRO@%@ &NO@f@MO@@@CO@ @QPO@@`EO@ (@ ?O@@`IO@@vHO@@:LO@@QPO@`@PO@ @MO@@`TO@g@ ~YO@@]O@@: @`GYO@@G @|ZO@ @_O@m @)cO@?@@WO@ ١@ `[O@x@\O@@:dO@`ڀ@`eO@ =@@-`O@`@\O@@SfO@f@ ~iO@i@@WkO@`@9uO@ d@S~O@`51@@?O@``@tO@@U@@puO@`v@ |O@ @|O@`"@zO@`y@@?xO@0@ DtO@`>@|O@) @xO@@Y @fO@#!@ VO@@!@ [O@r[ @(lO@W @`rO@ j @(tO@@@iO@t@RO@`D@`YO@ @`ݍO@< @`ċO@F @O@@ @{O@@= @oO@@!@`kO@0!@mO@H!@oO@f!@`hO@|S!@lO@ @rO@ @azO@6P!@`{O@N!@ ~O@ @M|O@h @eO@K @O@@ @`O@s @O@@~Q @eO@t @O@@5 @ ~O@ @`NO@@z @`O@* @@O@@D$!@ϑO@@EC!@[O@F!@`ŚO@@:!@ O@ @O@!@1O@E!@`O@8N!@`_O@@!@O@!@O@!@O@@"@O@J"@ O@33"@ DO@."@ gO@ "@O@ "@ O@@m"@ O@S"@O@`"@IO@("@ٸO@"@`O@׃"@@O@ "@O@@]n"@`O@L"@ UO@S"@O@C"@O@"@O@"@O@"@O@#@`O@@$#@O@#@O@p#@tO@_#@ O@#@ OO@@#@O@#@O@`$@#O@ $@O@׃$@)O@14$@'O@` $@@O@@ $@O@P$@O@Z$@@O@ߛ%@ UO@ V%@`O@7%@ yO@ ˍ%@O@1%@ O@` U%@O@ %@O@;+&@tO@ ف&@@FO@b&@@O@&@O@&@MO@@:&@ O@~1&@O@`&@ O@ %&@9O@M&@ >P@F&@P@`}&@P@&@P@&@rP@M\&@P@n>%@ O@-%@O@`%@sO@Z I@Ԥ0@`M@` 9@h SM@+4@ >QM@@(<4@QM@vX4@`[M@ o4@`M@8n4@rsM@G4@yM@ V4@@.gM@^4@`0]M@ 74@SM@+4@`K@I6@`K@7@&L@48@&L@` 9@0L@8@LL@@8@(tL@ #8@L@c7@ ~L@7@ L@ ҷ7@ M@7@*M@`ݝ7@@X:M@ \7@@M@@-7@ NM@7@`YQM@` 7@ bM@7@\fM@ l7@`/nM@`^7@1M@@]7@ M@6@`˥M@6@M@6@ M@6@`0M@[6@`M@$6@M@@~6@M@6@ M@ ,6@`M@@z6@M@@Z6@UM@`606@ xM@ V6@:M@5@MM@@q5@zM@Z5@ rM@5@ yeM@p4@VM@4@@UM@@44@@ZM@4@LM@e4@CM@@u4@J@}0@J@ x0@@J@ि0@J@L0@ J@Ԥ0@ ZJ@1@`_J@AV1@JNJ@?1@ I@2@ I@2@@uL@ ;5@@uL@I6@`K@I6@HnN@$7@5uS@B@VR@`cB@ 6R@B@R@kB@KR@tB@@`R@{B@hR@@-B@@R@@puB@R@_B@AR@\B@wR@@bB@SR@_B@R@uPB@`QS@`:B@HS@B@R@@@B@@R@B@S@`6B@@S@B@@(S@`A@ S@@A@8S@A@!S@ A@$S@`A@k%S@*A@%S@bA@:S@:A@YaS@A@lS@`A@5uS@@A@YpS@гA@aS@A@=OS@ ћA@BS@A@-DS@`A@AS@}A@=S@cxA@:S@ 7WA@`7S@UTA@I3S@ VA@D/S@ ^A@S@bA@S@ YA@@S@NA@F S@ JA@S@ PA@R@@MA@R@@@A@@R@FA@R@ OA@{R@"YA@R@@dA@֏R@``A@K}R@TA@|R@ KA@%sR@`3A@sR@9-A@@vR@l(A@}R@.'A@YR@@A@R@ xA@I{R@A@zR@ A@,}R@`A@R@sA@@ܒR@r@@zR@V@@R@@@@R@@@R@@@ R@@@R@@@ fR@@@`R@`Y@@ R@@@R@ `@@@ÀR@@@sR@ @@bR@@@IR@Io@@OR@ Zh@@`R@ Nc@@@OR@#a@@^R@c@@பR@k@@R@ `k@@@ԩR@K@@R@$@@@R@ ;@@ fR@y=@@R@ '@@uR@@E#@@R@ @@R@ @@ fR@ @@R@@@@R@@@8R@?@R@7?@nR@?@R@@?@R@?@R@ N{?@R@1?@ fR@h$?@ R@b?@nR@?@ ?R@ x?@cR@l?@`ݍR@@{>@@zR@@ f>@vR@@^]>@@{R@lP>@3~R@1>@ sR@>@@eR@ 1>@@pYR@`Y=@BQR@ɏ=@Q@`S;@ײQ@@;@@7Q@;;@@OQ@p;@@Q@` <@ Q@<@1Q@1;@@_Q@s;@ fQ@;@@jQ@@'=;@UeQ@-;@_Q@$:@ _Q@:@``Q@:@@@sQ@:@@pQ@?:@`ŊQ@o:@@Q@ł:@ Q@>:@Q@J9@`Q@@9@kQ@ x9@CQ@9@@Q@ 9@jQ@9@Q@ׂ9@)Q@j9@Q@<9@Q@@(,9@Q@8@Q@`8@Q@8@Q@8@cQ@Bu8@`Q@n8@@OQ@h8@CQ@@^8@@7Q@mO8@Q@AF8@=Q@=8@`9Q@\>8@Q@@I8@Q@l8@Q@n8@cQ@ &^8@Q@N8@Q@`|28@ƁQ@:,8@lQ@18@@OfQ@ H8@`[Q@I8@NQ@E8@@LQ@B8@#EQ@L8@?Q@@A8@R;Q@@WS8@8Q@J8@`7Q@=8@@5Q@`0E8@4Q@ 1U8@0Q@R8@/Q@@P8@/Q@@Q7@)Q@@P7@'Q@`*7@Q@7@ Q@7@` Q@7@ Q@$7@7Q@7@ Q@h7@2Q@@7@@6Q@7@Q@7@2Q@7@'Q@7@P@ U7@@`P@`*7@@P@7@@P@@7@ P@7@bP@7@@P@@7@@pP@`7@P@7@`P@7@P@ 7@P@7@YP@ 7@@GP@n7@ P@8@1P@`8@@P@8@P@``[8@vP@i8@P@@ԕ8@P@@Ӗ8@@P@8@3P@ O8@@-P@8@@WP@8@P@@8@PP@D8@@%P@`8@@WP@*9@٭P@ :9@P@Y9@ P@@`9@P@a9@@P@@k9@ৠP@F9@P@9@P@ N9@@P@`~9@9@`!P@ UE9@P@*;9@{P@F9@`P@T9@5P@f9@P@`m9@P@`m9@@ P@s9@8P@is9@O@ti9@nP@h9@P@@']9@P@TV9@`O@@_9@@O@@`9@(O@G9@`O@ U59@@O@79@ WO@!B9@^5O@C49@ +O@`'9@+O@ 9@ 1O@>9@`*O@`9@`#O@9@(O@*9@`0%O@`39@ O@v89@ O@09@`O@v(9@^ O@9@N@`9@`N@ N9@N@ 9@N@@Q9@N@`9@5N@9@ `N@G19@@4N@`}19@N@@]N9@N@9@|N@I9@N@-:@@N@<:@ O@ ~Q:@bO@ ~a:@i#O@Z:@ "O@m:@/O@:@NO@@z:@bO@T:@`O@:@@.O@F:@jO@:@ O@:@O@;@ਣO@7;@`īO@[;@`O@``+;@`YO@D;@uO@ 7;@aO@E;@{kO@ty;@5iO@;@`O@<@dO@ VD<@`KO@@;<@2O@k<@@O@$<@ `N@<@ N@%<@kN@=@N@*=@ yN@ic=@nN@@=@ 7N@@{=@@.N@=@>O@ g=@ dO@o=@`)O@@=@hP@d=@Z P@ |=@P@=@@,P@=@ /BP@=@ZP@ =@lP@=@ P@`R=@@@P@F>@P@9>@jP@@Ws>@ P@D>@P@@4>@@?P@ O>@ȫP@@ ?@FP@`S6?@P@@K?@\P@`Q?@ NP@@;L?@8P@#A?@vP@9=?@@hP@ 8?@nP@6?@P@`RW?@@.P@a?@@P@=i?@^P@ h?@0P@?@;P@?@P@`֣?@P@Ţ?@ Q@B?@ /Q@?@j"Q@`?@$Q@?@Q@@?@lQ@r?@ #Q@C?@@-Q@d?@.Q@?@P5Q@?@AQ@B?@^UQ@?@ fRQ@@@`RQ@@@OQ@8@@ fRQ@``C@@tYQ@;K@@ >]Q@RW@@@GYQ@ c@@`Q@@o@@_Q@@@cQ@|@@rQ@?@@cxQ@@@ &Q@ؑ@@VQ@ =@@@GQ@@@@@Q@}@@Q@`@@Q@`/@@`Q@`@@~Q@ &@@Q@c@@zQ@ @@yQ@ A@@rQ@@@@Q@@@@Q@A@ʾQ@#A@Q@`BA@Q@`A.A@Q@s2A@Q@bAA@ Q@GA@Q@HA@!Q@VA@nQ@I_A@@Q@qA@Q@zA@`Q@ A@Q@АA@ /Q@A@mQ@A@%Q@`A@kQ@A@Q@௽A@IQ@`A@Q@ 6A@@Q@`A@ZQ@A@Q@A@Q@ B@Q@B@KQ@ *B@Q@`/B@bQ@;B@1Q@(4B@VQ@ U5B@Q@>B@R@ rKB@R@~PB@C R@ TB@ R@{[B@R@bB@;GR@oB@qR@VsB@@}R@;kB@R@ ,iB@*R@ tB@R@ sB@R@zB@@ܞR@kB@`R@{B@VR@`cB@BT@cIS=#@ @[hT`gE@tT @@xT ` @@CoTN@jT`N@QlT@@hT@@eT@xV@@[hT`gE@`ST@"@@T#@@Tw7#@@T@&#@ eT "@ ,T##@ T|"@•T"@vT@˭"@ݕTQ"@T"@@Td"@@TFb"@Tr["@Tc"@T:L"@ಏT.W"@@TT6"@WT*"@@T@g"@@T!@bvT!@orT!@@qT!@yqT'!@@{TJ>"@@*wTD"@{tT@p="@{tT"@mT@ "@ IdT!@i[T!@JTW!@@9TP!@3T@!@G)T "@@"T@C"@~ Td"@uT"@S@ô"@_S "@@2S)"@2S@"@S"@@S "@@S "@ S2#@@"S=#@&S"#@@SP#@@S#@@S4#@ S@%"@S "@@S@-"@JS "@@S["@ 1S"@@Sq"@ewS"@iwS@5"@oS!@hS!@ bSB!@bS@h!@\S@XR!@nWS3Z!@^S @ZS @WS @JWS @/NSV4 @cIS@@RS@WS$@TS!@\S}@dS@fS2@ajS @oS@QpS @@pS@nS 51@ oS2@@sS@xS0@SS@S'@S = @@ S@bS@S@S@@@S @oS2 @>S @@S@W3 @@ SO @^S @Se @5S @@ Sv @%wS@`k @@uST @BoSB @tSZ @8wS@yu @Sm @݅S!@SR @@S1 @@S @Sj @@;S@ @S @BS{!@@S @SB @@S @S@% @S@ @@+S @ಟS< !@ݡS#!@@;SI?!@S` T!@`SSa!@S@f!@S!@MS!@ }S@!@pS[!@@Sz!@jS.("@%S*"@S "@8S!@S"@@:S9!@@S}!@S@!@S8!@@S@•!@S_!@SC!@@S7/!@S; @ Ta @AT @To @T) @XT @ T3@T ~@@T@nS/@T@@b T@@@T@T @ZT`$@@T#@8/TK@@7T@:T`%@8TZ@iT@x@@kT!" @@oT@` @QqTn? @@[|Tq\ @ڄTl @@T@g @ Tl @@uT @T @@T@Ѩ @TƑ @@T{ @@T7 @T @@Tj @@ T'} @Tt9 @NT@ @cT @Tj @ݽT@ @T @(T @T@&!@T}!@TǑ!@@TA!@Tk!@ŶTw"@`|T"@@ɻT"@һT}"@`ST@"@`2a@`='8c@@z5  /FP `b@ #b@#@b@@"b@"@Nb@" b@" b@m"b@` "b@e"`b@@8"b@"`b@ #b@@o# Sb@@3S# b@G#b@:#|b@""#Vb@` #@b@"b@P"b@@" |b@l"Vb@"Xb@ #b@:#b@K#b@@o#Tb@f$@Nb@<$`b@S7$M`:+4SM|34M`<4FM`G4 MC4 M_4Lp4L4LL@ 4L@4 L4LN4BLD4@L4L4L4`NLW35` LG5LT5@"L`Ƃ5`+L5 tL5L 15`L6L`l!6`L@c6 LM,6 +LJ/6@L36 L@A76 L ;6oL>6@pLH6 jL`L6@cL@6YL@66QLEC6`@>L)62L#6@#1L6LF6@KL6 KH6 nK 1e6K`6Kg6K6|KQ87`xK Q7 [K`7@Kј7K@j7@Km7 ƲK`7 +K8 \wK7QK76K7K_ 8 +*K%8(K<8@d KT8 #KPi8 t*K&~8'K8q3K8:K 9 6K #9 OK$p9`MLK*9JK9 tRK-9MK`9 TK +9 QKE3:fKѨ:qK:wK7:yK`C: K:`$K:ۗKx:`$K:K`:K@; ٹK`e; K`*; tKLM; CKX;`K:o;KyU;pLM;L@O;*#Lge;"Lv;8.L ;42L ;9L;ALv;JLr;/VLv;\L@; wbL;`dL` ~;oLk; \wLMl;L'};ųL`l;&L&N;`lM 1E;#MM`OK;VTMo.;`lQM!#;`$HM`;EM ;>AM;@Q50\=Q+70:Q8>0G8Q@OE0@Z5QpM04QY0i?Qrk0AQv0fBQF0kBQ b0)@Q 0 FQ 0@JQv0UQ 0OZQ`C1XQ 1@gQ/1iQ,I1eQK1 `Q`1_QZ1@kQ1)tQ1@KvQw1 :qQ`k1uQ@ 2`}Q`A2iQ 2T2ЙQY2yQ 12Q~1`Q@1`Q i1Q@1QȠ1Q0f1@Q F1@Q01rR 1 R`C0WR"05!R0@.R0@KRh0@2PRi0TR@U0JcR@0@mR=;0@dxR0@R/R /Rq/@R//R(.R.R h.fRTv. RP.R=K.FR n .R@^-VR-R@P-8R \,@ S ?,iSO,@ S Y,@SX,WS@4,S$ ,NS`+@S4+@LS@G+S(+`SS+vSவ+` SC+Q S@*@S*!S})8'S)@L)Sl) 3S(E3S (@;Sք(@:AS@s(@DS@4(EKS E$(>IS@'KS 'FRST'@iS`&@jS ~&hSn&gS)\&@kS%{S %@SQ8$`S@$!$@S#`SÕ#?S+:#ySK"Sg"S2t"SuY"@S@Y"@SSw" S}R"SeG"@CS1"ySm " }S!`S! S@a!gS;,!@S @S`k @S @S]. S-S$`SSTSwwrSST.TKT@e6LT`@ETz5>T`*{J;T h8T)7T;TpMT h@JT`lAXFT@GT@VTPiSTz5TT k@PT h LT`\>Tพ7T\ 4T` O&T !Ta T T ?T@] ZTD @ TD T@ @ T`+?T^ T@aTeTw@TEyT;TQT`l :Td]T@ SS ƒS= S@`S * S`!@2SBFStS*S@j Sm`źSiSaŪS@<@S%SDFSz5S^M™Se@S`a 9SC Sg @dS" &S  S |s `ЍS `yS/7USu@T*S  : Sx@RtRe@R`M<RgER RR@߼JRݿ@R jͿR`ƿ2R @ RmÿAR~ R@R@33@R?飿RͿXR@ΫɿŮR ѿ :Rૉ׿ }R/ֿڨRAڿRؿR-@ɓRJRK~RzʒR*R^MR-PR` |RųkvR`vR<+@[pRJoRYcR@aR\R@ϊ{`R,SRLR@Q@ER[ CRm @ERHRXQEROBR@uAR`qi@Q` Q3Q@@Q`qQm*Q`j Qv@QI.Q@]Q<QsQ͗QNQ|Q9~Q@T6BQ-XQQ @ Q LZQMQ QӆàQ,Qʎ@uQ Q@vQ uyͫQ YQxpQH@mQ_,BQ@JQ`]HQvQ]nQ`CQ#Qш@QQp@Q`c 2Q`CQ@R R` kRੋ "R(R@<r/R`4:R9R {:R=JR8O"@#MR"%R@" nR@S"@R\#ZR@K~# RP#@ R# R$Q $`%Q&# Q@m#^Q/#gQI"@+Q@d"rQ##/Q@T6#aQa# Q^#2Q@Ϫ#QQ%qQ &QL% :Q +&>Q &Q%w{Q2%PdQ%@IQ`C'U1Q (,Q` )1QM<).QV)w3Q@u)q8Q@)a>QO)=Qw*@@QD+EQ@I+yEQQY+>Q,+@>Q`+7QQ8,6Qe, ?Q@u,r@QΪ,>Q),IQ %-@"NQ#- OQ;-WOQWs-`%WQT-@XQ-QQ`8.HQWs.HQl.FRQ.@QQ`. TQ`r.WQ9/`)K]@4@E_@¥2@ )=K^g"Z!5<FU\m&]@4@?]@@ӆ@& ^@d@ l^@ @^@@F@` ^@@`^@<@+^@@@-^@*@`]@Y@&]@4@@i^@"@^@&"@@E^@@"@ 1^@"@v^@@k#@^@#@@^@X#@̴^@L$@@i^@ $@`^@%@@{^@%@@@^@fE%@^@p%@^@ %@^@ %@B^@%@^@%@`T^@ 1%@@^@`$@^@Oz$@`v^@l#@=^@F#@ ^@N#@@^@l@#@`+^@3#@^@@#@^@"@ ^@"@5^@@X2"@@i^@"@ ^@{"@ l^@@7#@^@$@Y^@@$@G^@$@^@+%@ ^@`%@ ^@@/&@_@&@ _@&@`^@`,&@`_@&@a_@$@`^@=$@^@TV$@ !^@@d($@T^@@*$@^@Y#@`^@U"@ ^@{"@`_g_@#@d_@A#@ g_@#@d_@3$@c_@#$@;`_@`l!$@ `_@zT$@@`_@i$@i_@$@ k_@ô$@i_@n$@@k_@@#@-l_@#@`_g_@#@`d^@EC#@J^@Ʊ#@_@@#@^ _@J$@v_@ZP$@._@.$@ _@``K$@f_@`# $@!_@q$@#_@#@`"_@P#@%_@W#@!_@[#@`x&_@@#@T%_@y#@@_@k#@`d_@@#@$_@@*#@`d^@EC#@ ^@$@^@$@5^@ +%@3^@ %%@ ^@w%@@^@ a%@Ǭ^@`R%@`v^@`$@ ^@$@^@@O^@b) @`^@Q @^@'= @Q^@,9 @`^@9M @@Ϳ^@r @@^@ @^@ @@^@ !@`R^@@WS!@^@g!@@^@@n!@ ^@41!@`^@@>I!@ ^@I!@ Z^@1 @`R^@@6P @n^@ @@^@@^@W @@ _@H` @@@_@z @@_@@ !@_@?!@`+_@ @0_@!@`;/_@c!@1_@o!@1_@@ !@ l8_@c"@.>_@!@D_@!@`G_@!@ K_@@!@ K_@"@M_@@-"@`R_@*!@a_@"@`fb_@@-"@Y_@L#@d\_@ԥ#@@d_@#@ !g_@B#@`s_@'#@=}_@@G"@}y_@"@`z_@"@@i_@@"@ _@ "@$_@@-x"@@@_@'"@_@@"@_@@1"@&_@>)"@._@"@_@j!@Ô_@!@_@c!@_@@?!@ _@(!@ω_@ !@`d_@1!@5_@ @_@4 @z_@P @_@  @_@ @@͓_@:l @ೝ_@x @=_@^- @@3_@`@_@y@ 8_@@h@E_@@ע_@@_@ @n_@K]@_@3@Ք_@ M@_@ϩ@!_@i@`+_@Z0@`_@`:@̐_@`ij@ _@e@@W_@z@_@ @_@@_@`(@_@D@_@@_@@@_@`@y_@k@v_@f@s_@ r@i_@@X@`+j_@w@f_@ ,@@b_@ :-@`)__@`@sZ_@@F@ 1X_@@X_@e@ l\_@`O@a_@ 6@!j_@`A@xm_@7o@;h_@`z@ ^_@ D@.Z_@iC@ lT_@ C@`fR_@|R@@S_@@?@M_@@@J_@-@`O_@@ER_@@OQ_@@xV@`N_@ Ga@I_@g@E_@}@=_@g@@*_@@ _@@K_@@`d_@|@._@@`v^@@-@^@`gE@_@7o@ _@@ _@j@q_@`d@ _@ء@_@@@_@"@^@@ s^@@)^@n?@^@@hd@@^@n?@^@@`^@ ]@`T^@K@k^@);@8^@@F@^@l@^@@@^@$@ J^@@`^@# @v^@J@ l^@ V@@^@@^@`%?@f^@c(@^@@J^@&@ ^@@;^@K@@^@`%@ ^@`@ܳ^@~P@^@e@ ^@@-@O^@@ Z^@)@ ^@R@ Z^@/V@^@$@&^@@@^@@@=^@[@=^@L<@ ^@W@Ì^@^ @^@@`ʂ^@@@|^@ @ay^@9m@O~^@ @ ^@`>)@$^@A@d^@^@ ^@`/@^@@@n_@@ &@@j_@hD&@d_@`/6&@d_@ bJ&@^a_@@dH&@`_@'&@ \_@4&@ W_@2&@Q_@ D&@ JO_@(&@ K_@Fb&@&J_@=&@@>_@ɏ&@O>_@j&@5_@&@6_@1'@ \?_@`8'@8A_@ p'@`B_@~'@@_@'@K9_@n~'@@3_@'@`)/_@'@z,_@ '@G-_@A(@_@`B(@_@(@ _@L)@Y_@ &)@'_@)@7_@)@8_@)@OE_@))@N_@ )@QT_@@(@`R_@`(@ T_@`R(@YU_@(@Q\_@(@`_@@\(@\_@A(@\_@ V4(@a_@(@ [_@'@@^_@'@)\_@r{'@^_@m'@\^_@'@!f_@d&@h_@&@`+b_@hd&@`g_@I_&@Ef_@Tu&@)l_@`L&@p_@ &@@n_@@ &@z@_@\$@0_@`M$@2_@`$@._@$@1_@`D%@ !3_@r%@@,_@`L%@J&_@&@`"_@Q%@J"_@@%@`__@%@?_@ s%@_@ &@_@F&@`k_@` '@?_@F"'@J_@@&@s_@ &@!_@ %&@ \#_@&@(_@`/&@2_@x&@8_@&@>_@@&@=>_@&@B_@bi&@A_@`F&@`B_@%@ @_@ H%@F_@@dh%@?L_@$@=M_@$@OQ_@$@P_@$@M_@@J~$@=I_@$@dH_@{$@H_@V$@E_@l$@ @_@j$@@>_@@!$@A_@-7$@B_@T$@z@_@\$@-_@n'@`^@'@`}^@'@^@l(@^@'@8^@n'@D^@@X(@^@=(@`}^@j(@`^@v(@^@(@@^@(@`^@S7)@G^@")@\^@Q(@^@I(@ 1^@)@^@)@^@@X(@^@#(@^@ Vt(@^@x(@^@T6(@#_@Qx'@-_@n'@K]@&@]@3&@?]@&@`]@&@ Z]@q\&@]@&@]@d&@@]@&@ ]@&@ ]@@!B&@)]@&@ ]@`&@`d]@`%@]@d%@]@%@`x]@%@]@ VT%@z]@9M%@]@%@ Z]@$@_]@@$@]@`ݽ$@@]@࣐$@]@`$@]@#@]@@#@D]@@O#@ l]@!#@]@Rw#@ n]@@ t#@`]@@#@q]@o#@൰]@]#@`)]@@"@@]@@6"@]@Z"@D]@L"@@ ]@ !@`s]@M|!@m]@)[!@ c]@V!@ _]@$!@`W]@ @L]@ @`)K]@޼ @!V]@m!@ g]@H"@j]@'"@`o]@$"@}u]@ch"@n~]@"@]@`o~"@ l]@(#@)]@q#@ף]@e#@`]@#@ ]@ $@`R]@@$$@ײ]@` $@]@`3$@@]@` U$@]@$@&]@$@$]@$@`]@`5$@z]@`l$@ ]@$@]@$@]@C$@@]@ 1$@]@h%@]@@k%@]@%@T]@%@]@`%@`]@`%@]@F%@]@ r%@f]@t%@@]@ %@Y]@%@@]@G%@@]@`%@`d]@`&@ ]@&@K]@&@}^@`j@@Ew^@e&@nv^@UU@`r^@@_@zt^@@@.~^@`@@^@ @^@i@@^@@^@`@0^@ׂ@^@ @-^@`(@}^@`j@Q^@ty@hL^@@E^@@A^@@ l8^@ @@7^@@$;^@`@I^@M@M^@@X^@ @`_[^@`>@X^@ o@TU^@@-@Q^@ty@&^@70(@}^@Q(@}^@ w(@`)^@_(@^@Tu(@@ {^@W(@?|^@=(@-^@@j(@^@}2)@@W^@^)@`T^@U)@`T^@`fF)@^@`f&)@@^@7o(@^@@'](@&^@70(@`R^@ '@` ^@`(@`v^@`L'@ s^@ (@ ^@`'@]@b)(@]@@i(@$]@@U(@ ]@(@]@Ϊ(@]@@(@ ]@ੋ(@-^@(@^@U(@Q ^@@:(@ ^@wW(@p^@`-(@`^@  (@^@@j(@`R^@ '@^@@f*@}^@ Vt*@t^@ 1*@@w^@ +@J^@+@Y^@@*@^@@f*@^@d(@^@(@^@@(@ܡ^@(@ ^@(@ ^@(@O^@ (@ʩ^@@(@T^@ (@^@d(@|^@"B-@`z^@`fF-@ z^@n-@ |^@@k-@0u^@-@;t^@x-@w^@`.@y^@.@`^@@ .@@^@Z-@^@ s-@ ~^@)-@a^@I-@^@9m-@|^@"B-@B_@&@_@\'@@_@j'@"_@@\'@`'_@ '@&_@`&@B_@&@O _@+@z_@`'+@ 8_@2+@_@ T+@_@r+@@U_@ ,@ _@/,@`}_@+@\_@`+@_@+@&_@@͋+@`x_@zT+@`}_@K+@&_@`,+@`_@`0+@_@ '+@O _@+@$^@*@@^@ +@0^@`*@:^@+@>^@`*@M^@*@T^@ ١*@ [^@`/v*@\^@I*@Jb^@`fF*@@c^@-*@@W_^@*@@^^@׃)@`kb^@fe)@@c^@2)@\^@ )@@Z^@ (@X^@U(@KY^@Z(@U^@@(@@O^@j(@`RG^@@(@$G^@(@D^@(@@;^@)@?<^@@%)@ Z8^@q\)@`R3^@ q)@a2^@@^)@a2^@d)@z0^@ *@8)^@b*@!^@@Xr*@^@*@ n^@*@v^@n*@ ^@*@$^@*@`+~^@`$@@z^@ $@`k~^@J%@K}^@`s%@`{^@@%@^@L=&@@^@&@a^@&@`T^@`ff'@^@`z'@sv^@'@5}^@'@@^@ '@-^@z'@@^@""'@@ȣ^@$'@^@`'@#^@@'@s^@ 2'@+^@7'@^@&@ 6^@&@`^@d&@^@3'@^@'@^@ɯ&@`^@+y&@;^@@PY&@h^@ +Z&@^@Z&@^@z&@^@&@`)^@ %@ް^@%@ׯ^@@-%@`^@@;%@Y^@a%@^@fE%@8^@` $@`+~^@`$@ l^@00@`T^@%0@@^@@X0@ ^@> 0@a^@ ~0@`R^@@(,0@ ^@0@ J^@t0@^@$0@^@C0@^@0@ ^@*1@@W^@K1@)^@y1@.^@J1@`^@ 1@)^@1@.^@1@^@ \1@`k^@1@ ^@@]2@$^@SG2@s&^@@T2@ l$^@@|2@ (^@@2@@.^@2@2^@@ۏ2@1^@2@`6^@¥2@:^@2@@^@`2@uE^@2@ 8K^@ 2@g^@M\2@h^@Z02@ k^@J2@h^@ \2@|^@`D2@`k^@\2@&^@2@@^@h2@@^@g2@K^@` E2@@^@2@@^@2@`ʊ^@1@`^@1@5^@``[1@)^@@Z1@ !^@SG1@@^@ !1@@^@ 1@!^@t1@@^@0@`T^@0@^@`K0@^@G0@#^@; 0@ 1^@J0@`^@O*0@Lj^@ A0@^@ &>0@ u^@0@qd^@@/@`c^@@/@d^@ׂ/@h^@@/@Dd^@ 1/@=^^@.@}Y^@`l.@X^@G.@ [^@j.@`;_^@X.@e^@-@n^@`I`-@@g^@3R-@@ g^@=-@@3o^@ ,@@n^@wW,@Gq^@I?,@@3{^@@,@`^@@+@`^@+@ H^@+@D^@+@ \^@+@^@,@D^@W3,@^@~Q,@a^@L},@#^@#A,@.^@:,@ ^@ 9,@@^@b,@^@l,@D^@Z,@`^@@;,@`^@L,@`^@`3,@`)^@,@^@+@`)^@+@)^@n+@@{^@ ˍ+@^@+@^@@+@B^@+@`^@ %+@ ^@@%,@^@!,@^@  ,@@^@+@ ^@t+@^@ +@ !^@@!+@^@@-+@ ^@@+@^@+@.^@j+@ ^@x+@ ^@@`+@`}^@}r+@^@ k+@ ^@&+@ ^@ h*@z^@*@^@@`*@^@`l!*@`;^@*@`^@AF*@ ^@@0*@B_@ *@_@ $*@@ _@$*@ l _@@ *@_@)@& _@`)@_@T)@_@@3)@?^@Z0)@`^@b)@`^@߻)@@.^@&)@_@)@`_@v)@_@)@B^@@)@^@`))@^@`)@ 1^@߻)@ ^@` )@^@@')@^@*@^@h*@`^@`R7*@^@c*@^@7*@`k^@O:+@@E^@J+@ \^@I_+@ʱ^@+@^@`+@@^@+@J^@`r+@`_^@F+@^@ N{+@ J^@Ws+@-^@J+@^@@*@^@v*@@^@`S*@^@{*@ ҟ^@@*@Y^@@)+@T^@14+@^@+@@~^@)+@`{^@+@p^@`+@l^@`+@m^@`R+@?`^@|+@d\^@z+@z\^@e+@ \^@ R+@M^@l@+@`B^@B+@`C^@`+@ ?^@ +@ 8^@@3s+@`_;^@+@`:^@ +@0^@+@-^@@+@,^@=+@a.^@+@8*^@@P+@O+^@ +@(^@/+@@&^@Y,@`&^@s,@)^@,@&1^@`,@9^@Z,@`:^@?,@`>^@`,@ n?^@+-@5^@-@)^@@-@O#^@d-@@.'^@@-@a%^@G,@`^@`5,@^@n,@@^@FB-@K^@V-@?^@ v-@^@`R-@ ^@۾-@W ^@{-@^@@-@^@@.@]@.@]@ B/@]@=/@]@ +Z/@]@&/@s]@/@`;]@/@]@@/@]@T/@]@0@3]@ [P0@]@p]0@ s]@`b0@]@o>0@ l^@00@CD,@ ЀH@ %8@`kK@f3@;K@3@ 9K@3@@5K@C4@`.K@sZ5@`*K@ 6@*K@6@ .K@e6@.K@@6@L4K@7@1K@7@m'K@`W7@ %K@@|7@K@@7@K@y7@dJ@7@8I@0@4I@@.1@ I@F0@`I@@0@@ I@@.0@I@gu0@`&I@50@5I@O0@`@I@e0@jBI@ r0@II@Y0@1TI@<0@@UI@`80@}QI@0@@@OI@}0@`MI@/@WI@w/@wWI@/@UI@ /@_I@q.@dI@.@`mI@@.@uI@.@@(|I@vX.@jI@ +.@I@ N-@`I@ .@zI@.@`oI@_-@ nI@W-@I@@{.@ OI@@X-@@ԽI@ \o-@I@׃-@gI@14-@$I@r;-@KI@n-@uI@~-@ 7J@`-@@ J@b-@ g J@9m-@J@F"-@@)J@ -@2J@?H-@`HJ@ +-@uPJ@׃,@`0eJ@CD,@@jJ@ VT,@|J@7,@@…J@,@!J@`5,@J@`,@@J@ H,@ &J@,@J@`>,@`J@l-@J@0-@J@,9-@`NJ@-@J@@'=-@J@"B-@ J@,-@@J@`-@J@t,@ J@,@)J@,@$J@ 1,@ J@,@J@Qo,@@0J@h,@gJ@s,@J@`5,@@pJ@n-@J@@d-@K@.@`K@@A/@K@0@j"K@0@@? K@`_,0@`"K@)<0@(K@ 1U0@ ,K@hT0@ 2K@0@ CK@M0@LK@E1@VK@%o1@Z`K@1@ hK@U2@`kK@Bu2@dK@@2@@QK@`2@VK@`n2@ dK@g2@ ^K@{2@ PK@ U2@*RK@ԕ2@w7K@Ѹ2@@-0K@3@@+K@ pp3@2K@@ݟ3@ ;K@`3@L!`E@g {E@%_ HE@. E@a* ;E@@p D@H @D@D@D@``/D@'D@`D@]`D@rD@ D@ D@y`D@^D@` D@Y=D@<D@ !uD@S`D@. D@BF D@D@H@dD@d(D@(D@_lD@`D@@`D@ZQ@'D@BF D@ M`GD@`d@@D@D@<`0D@D@ |D@`2`mD@ZQ``D@01TD@N[@ID@* OBD@`d`8D@`f& +D@D@B D@`D@`t@D@ fC@ C@""C@ C@,߻C@@#A C@ `C@`DC@ \`/C@ޝC@v UC@)C@-@@C@@rC@'eC@@ZC@ D+` IC@V42CC@Q=9C@p:z6C@"C@YSC@C@`C@C@ `C@  fB@0B@bB@31B@``B@ `B@ @+B@hB@N{ B@!`0B@n?!@ۏB@!mB@@:!`B@@! UB@!ެB@!`B@!B@R!B@@!jB@@!)C@n!@1C@!`8C@@Sw!9C@o~!8FC@!` =C@!@=C@@f"`q4C@@p"`05C@@["@C@@p"OC@ʎ"UC@%?"1TC@"MTC@8!tYC@."lXC@@+"i[C@!`aC@!`vC@A'"jC@O:"[C@"VC@"@YC@p"`dC@@2"xC@@"C@" C@Q"C@"cC@o^"C@u"ZC@B&"C@!)D@@!QD@!QD@@x!{SD@` v!2[D@@J!D@e!ID@0!KD@@u!`D@@!`D@@"!D@@!D@@P1@ hP2@@P1@P@ 1@P`1@ P`_1@ZP@ 32@@P$`2@NP xf2@ePy2@@P2@੣P@{2@ÈP z2@P;k2@P n2@iPv2@vP p2@ hPb2@UiP42@ pPt)2@`\{P@d1@8P1@yP1@P1@ǝP1@ְP 1@@P1@Q`I@ ;8@JI@':@-ছI@x8@@I@ ;8@@|I@8@ iI@8@@mI@H8@eI@8@Q`I@`6p9@`qdI@9@egI@`}9@lI@@v9@@XjI@9@8fI@`ݝ9@`oI@9@ fnI@9@ rI@@ӆ9@|I@` 9@sI@ף9@qI@9@ xI@`_9@|I@p9@byI@;9@@pI@ :@ I@':@@I@ O:@@I@s :@ԵI@@49@I@ 9@`YI@9@x;@ G@ V;@3G@};@G@;@G@;@ਃG@@4<@`~G@6<@`WG@ I?<@`MG@@5<@Q@G@ @<@>8G@`"<@G@<@ ~G@`5!<@ F@<@ F@@P)<@F@@<@F@=*<@MF@F6<@^F@F<@wF@Q<@2F@ <@F@@<@ ̜F@<@nF@<@@F@<@F@#=@F@lP=@F@@ۏ=@F@=@լF@=@̤F@i=@ F@@=@DF@e=@F@|=@UF@=@@oF@`_=@lF@ V$=@cF@<@QXF@<<@w_F@@4"=@BeF@ V$=@3jF@@=@ jF@ =@:lF@s =@SvF@=@`_|F@@ =@vF@<@`{F@<@9uF@@ <@ iF@<@ fF@`_<@\F@<@UF@<@@QF@`<@`SF@w<@ZF@o<@VF@j<@ZPF@<@OF@ ߼<@PIF@<@i;F@<@ >F@`0<@j*F@<@  F@;<@BF@2<@@F@<@E@v<@E@9<@E@ I;@E@;@KE@;;@F@@;@E@;@{E@ ;@@pF@ef;@F@aJ;@D F@F;@F@^:@}F@z:@SF@:@E@9@E@9@E@\9@ E@99@`E@9@uE@Z9@E@l8@tE@TV8@ E@ 7@E@i7@E@H7@E@6@9E@6@`E@@-6@E@6@F@ 7@@@F@@ 7@ F@@6@~F@`"6@F@t6@ +F@u6@=F@@6@FF@6@BF@|6@ FF@6@HF@o6@r[F@HP6@UF@46@2CF@ y%6@T=F@6@c@F@@'5@QF@m5@ VF@@5@v`F@ǐ5@`bF@ xf5@cF@ i\5@@KiF@]5@nF@`5@`rF@'5@vF@@`5@ [F@D5@ȏF@:|5@ %F@@Q5@wF@4@CF@v4@ F@4@@F@h4@F@ 4@@@F@4@sF@4@F@w4@sF@`4@ 0F@ B4@ G@U4@:G@4@`G@@W4@}G@@4@G@h4@{#G@` 5@G@/5@ =*G@`|25@`2G@I5@ 5G@@K5@G9G@ B5@S>G@S5@[OG@5p5@`SG@5@rG@@!5@G@@Ӧ5@DG@n5@ G@)5@^G@46@`G@6@G@ Q6@wG@k6@ 7G@q6@BG@6@ aG@A6@ G@ U6@ G@6@G@6@G@ %6@#H@7@G@`R7@`H@7@ N H@,7@ H@`{7@ G@7@@H@17@G@7@`G@7@G@`!8@`G@(+8@0G@<8@G@8@`G@8@G@8@`G@8@G@8@G@9@KG@9@G@:9@G@w9@G@:@]G@(:@ G@@E:@ H@@P:@H@fD@f@vT@R $-AKW`n +5L\s 9#7;(7FSZ%,8HSar  > R d o ~ CJ@`yQ@@J@`"Q@J@@_Q@`KJ@a@bQ@K9a@Q@@%5a@Q@`c@ FPI@c@`WI@Bc@B]I@&c@bI@@Nc@mI@"c@`nI@ ۏc@jI@`܌c@|PI@`c@ FPI@@O>S@R@8S@ R@@7S@ R@7S@R@ 8S@R@OS@tR@{SS@J"R@#eS@'R@`sS@`'R@֋S@$R@ΖS@ >!R@'S@@NR@RsS@<R@@O>S@R@lc@H@ kc@ H@qlc@I@pkc@`I@Bgc@I@ hc@`I@`fc@I@;fc@B%I@nc@.I@`)uc@P1I@`]xc@`:I@`|c@kYI@&c@`NcI@c@_I@Äc@jBI@ ec@S@/R@S@@X.R@YS@,R@0L@@'T@`w'L@b)T@K@`y)T@@K@/*T@`K@q,T@ K@J.T@2+L@@1T@[L@/T@lyL@V,T@ wL@ f*T@0L@@'T@)R@6R@*R@@7R@҆R@BR@ɋR@@FR@@WR@qHR@#R@DR@{R@tER@R@ CR@২R@@hf >Q@`BfQ@ /?fQ@`k>fQ@ 7fQ@ 7f fQ@@.fQ@`4f`iQ@`+8f@Q@05f=Q@Y+fQ@z(f0 Q@'f Q@@$f(Q@`"f@ Q@fQ@ \eP@e@P@?evP@e P@heP@@eP@`+eP@eP@eP@ aecP@meP@e2P@e@P@ eP@e@P@eeP@ XeP@@e(P@`eP@@ejP@,e@P@ eewP@e@˹P@heP@deP@eP@e@P@eaP@ eP@ueP@e fP@zePP@eǘP@e ʖP@eP@be P@eP@e@P@e!P@e@P@ eP@~eP@ue@OP@heP@e@P@e`yP@^elP@`eєP@e/P@ eP@FeP@>eP@He@ܢP@eP@`erP@`eP@e@NP@eP@`0e@ P@ !e P@`xeaP@@ e`iP@@eP@`e@P@eP@`Be1P@ eYP@,eR@` `@:R@``@e7R@ `@@4R@@`@ 3R@}_@ ~-R@__@(R@T_@!R@=_@SR@_@`R@I@Q@I@Q@@I@`R@`I@ & R@J@@_R@`J@HR@J@KR@` -J@R@3J@@R@`.J@ R@g=J@B R@:J@ R@3J@8R@>J@@NR@q4J@R@IJ@R@ >IJ@R@`WJ@R@`VJ@kR@*JJ@R@LeJ@R@`fJ@AR@XJ@{R@ TJ@@NR@ iJ@vR@oVJ@AR@@]J@M R@`AvJ@r#R@zJ@&R@_J@`i#R@@_J@%R@@gJ@@%'R@ ^J@@'R@`/vJ@*R@J@k)R@ J@*R@xJ@ +R@ dJ@R+R@EJ@@%+R@@-0J@a.R@iKJ@@o6R@A~J@:R@`YJ@`9R@*J@;R@ךJ@;R@J@@p=R@`J@@h@R@@ڰJ@`@R@`J@ER@J@IR@`AJ@2OR@J@NR@PJ@@ORR@` J@@WSR@K@QR@3K@SR@{CK@WR@` uK@`[R@4L@NR@GL@@FJR@R@ L@`)X@S@$X@ S@%X@ S@@O"X@/ S@ ~!X@c S@@$X@ S@X@#S@@FX@`iS@*X@ S@ X@@ S@X@ S@2X@S@@X@`S@@oX@=S@a@MR@a@RR@ a@EWR@|a@@\R@U@R@U@R@ U@ƹR@U@@R@$U@R@U@R@U@@˵R@ U@@_R@aa@`yR@ Ca@R@;a@@ܶR@`9a@ ʾR@`$a@vR@@%a@@gR@ a@ R@ a@ R@` 'a@R@,a@R@ -a@@R@,a@JR@(a@R@%a@@pR@-$a@R@ &a@`R@@)a@@R@(a@@R@&a@`R@%a@eR@`I)a@`R@|$a@R@a@@R@@a@R@a@R@@$a@R@@7%a@R@M"a@jR@%a@R@)a@ fR@7a@R@6a@ &R@@-a@$R@ -a@ R@`f.a@R@6a@S@@a@ >S@@Ca@S@Ca@@S@SBa@,S@Ka@@ S@OLa@S@hNa@S@Pa@` S@STa@ S@[a@@ S@``a@S@fa@S@$za@R@`}a@7R@za@ER@Jza@R@*a@R@Xa@|R@χa@R@ a@R@ta@R@'a@@WR@׎a@@pR@S@$4T@S@4T@JL@ &6T@`L@9T@L@;T@ OL@T@@4"M@2;T@`L@@6T@JL@ &6T@G@`QT@ \G@@T@G@=T@G@ T@` H@v T@`G@K T@`NG@T@JG@T@G@`T@G@ ~ T@`GG@ T@ V|G@I T@rG@B T@sG@T@QG@T@QG@T@lG@@T@FG@IT@G@T@ [H@T@`H@T@@G@T@7G@T@H@T@H@@T@G@`T@G@`T@'H@"T@`wH@!T@}2H@@?$T@HH@]"T@`CH@ T@`H@^!T@`xH@@W#T@>H@%T@(H@@%'T@8H@@-(T@äH@(T@`MH@(T@H@+T@7H@@-T@H@-T@{H@2/T@@ H@1T@ࣀH@@1T@I@ ;T@`68I@8:T@ +I@@W7T@I@/6T@gI@@:T@I@@6T@jI@U5T@%I@l0T@ (I@-T@@4I@A2T@ nI@@-T@LI@+T@ yI@A"T@ZH@2T@@#H@T@bH@@T@H@T@`G@a@ %/G@`a@@G@`)a@ G@@a@|G@0a@G@a@ G@a@@o>G@a@>G@ma@CG@a@`GG@pa@ GG@"a@`KG@`a@BMG@a@@_G@a@ZG@a@!RG@a@FG@'a@ G@ a@F@a@F@za@F@a@@G@ a@` G@a@ x6G@a@`LG@` a@ـG@a@G@`a@` G@`oa@G@8a@@G@a@G@ a@G@a@%H@a@mOH@Ka@baH@a@`{H@2a@ H@@a@ >H@`a@ xH@ a@H@a@H@@a@ I@Ya@`_DI@` a@hI@@ia@I@Xa@ϑI@a@ I@a@I@@a@vI@ ۽a@\I@a@I@a@ I@ a@I@Xa@I@޸a@ I@da@vI@ta@2#J@ja@l(J@@%a@1J@@Na@=J@a@RJ@৺a@K]J@@a@J@0a@`J@a@J@மM@S@\fM@lT@ ,aM@tT@@sM@`T@ CM@@.T@M@ fT@ M@@ T@ M@|T@JM@@`S@மM@S@XV@JS@ JV@LS@HV@@MS@IV@@-PS@PV@RS@a^V@TS@kV@RS@jV@`yQS@@bV@ RS@kV@OS@/fV@#MS@XV@JS@@#W@=S@I W@@S@ V@S@V@S@W@S@W@`iS@W@S@ V@S@`V@@S@DV@S@V@S@V@2S@5V@`yS@V@@S@V@@-T@)V@ T@V@T@AW@T@rW@ S@@pW@`S@VW@BS@@#W@=S@$\@HS@@.\@#S@@{\@`"S@\@e#S@\@@'S@`\@@'S@E\@*S@!\@r'S@@.\@!&S@!\@#S@@+\@!S@,\@@? S@$\@S@`;'\@BS@$\@HS@Va@yR@a@zR@@̓a@R@Xa@ ~R@`ӂa@@NR@`a@@.R@ ۏa@`ԑR@@Ea@R@@a@@-R@ a@R@Ha@`R@ a@R@a@]~R@@Ea@`|R@Va@yR@f3@;K@@ 3@5QK@3@`_TK@h3@YK@4@1\K@4@SK@@=4@ XK@ g4@eWK@ [4@@FK@%3@bIK@l3@`?K@3@ 9K@f3@;K@ Z@`NS@Z@QS@Z@RS@`Z@@VS@`Z@TS@Z@PS@ Z@`NS@pX@nS@5X@HS@6X@S@&X@ S@@X@@S@kX@kS@`W@S@`W@DS@W@ S@ &W@@oS@ &W@1S@`ԵW@S@DW@S@W@VS@@NW@`S@W@VS@@W@$S@W@S@W@ S@/W@tS@PW@S@2W@S@W@S@|W@@WS@@lW@0S@`y}W@S@`~W@ S@kW@@S@1xW@|S@@xnW@S@(\W@S@KaW@`S@]NW@@S@HW@S@IW@ fS@RSW@@S@@GQW@@GS@KAW@@S@@NSW@2S@@W@0S@W@ S@@OW@S@@oW@@S@W@S@W@!S@ W@ S@@_W@DT@@FW@ &T@qW@jT@W@T@W@T@0W@T@#W@ T@X@@OT@a&X@@T@.X@IT@@IX@ T@mX@ T@ X@T@MX@T@qX@cS@uX@ES@#qX@ S@^eX@S@jX@S@,aX@wS@gX@S@ OX@@S@5MX@ S@@%cX@2S@zX@S@xX@S@X@S@X@rS@X@S@қX@`T@@ܞX@T@X@RT@X@T@Y@S@ Y@#S@MX@7S@vX@@?S@@gX@S@/X@@S@X@S@X@ S@@X@S@MX@S@`X@S@/X@S@.X@S@@X@@S@X@`S@X@3S@`X@KS@[X@S@$X@SS@X@S@bX@ͻS@@GX@S@pX@nS@eX@(|S@X@%}S@X@}S@X@@S@@GX@jS@`X@ZS@`X@@S@@pX@`ŊS@`RY@3S@@X@S@Y@S@WY@`S@@Y@S@+Y@S@ &Y@@ӲS@JJY@$S@HY@'S@5Y@S@`2Y@S@O2Y@S@59Y@@S@5EY@`S@ gY@@ܾS@`;?Y@VS@?DY@`S@PY@S@GY@3S@@OY@aS@@icY@@ S@aY@S@.fY@ S@uY@S@ ~Y@`QS@ѐY@@ S@@ Y@@S@#Y@ES@@Y@S@Y@eS@Y@ S@Y@ &S@Y@`S@@iY@S@`ܲY@@_S@@UY@S@Y@S@Y@[S@Y@@S@ Y@ S@;Y@S@Y@HS@Y@ S@#Z@RS@KZ@S@`kY@S@ Y@ S@ !Z@*S@ !Z@S@#!Z@S@@Z@ fS@z(Z@S@3*Z@S@k%Z@S@\.Z@ fS@q0Z@@6S@`f.Z@S@`:Z@@S@JZ@ɳS@@UPZ@S@`;OZ@ϭS@ZZ@`S@WZ@S@0Z@S@ Y@ S@ Y@S@OY@@xS@Y@S@`Y@3S@@.KY@ S@O:Y@@ӆS@@FX@@|S@)X@}S@eX@(|S@`'4\@@R@3 \@R@[@`yR@@@[@R@@[@ ʒR@[@R@ [@jR@ J[@ߗR@-[@R@ [@BR@&[@@R@\@@OR@-\@ R@M\@)R@8Y\@R@ [\@5R@P\@PR@&>\@@_R@`'4\@@R@SjU@@­R@FU@R@HU@̰R@ ^U@@R@#iU@`R@kU@eR@SjU@@­R@ 6Z@(S@Z@S@?Z@S@Z@,S@դZ@S@Z@nS@MZ@@_S@Z@S@Z@qS@ ҟZ@S@Z@@`S@ 6Z@(S@``@ R@X`@8R@2`@@R@@`@@ R@@E`@R@V`@@R@`@R@A`@`R@@`@@.R@a@R@a@@xR@``@R@`@R@a@@_R@ha@2R@``@ R@oU@lR@ fjU@@R@{sU@HR@|U@R@9U@ &R@'U@@hR@@.U@@R@U@`R@@}U@VR@ ~U@@R@oU@lR@#)S@S@@ -S@S@@'S@@S@ S@qS@S@(S@S@@gS@S@S@S@0S@ S@@S@@S@SS@!S@S@gS@9S@cS@@S@#)S@S@|L@R@CJL@ѬR@5AL@R@.7L@ER@`5L@qR@=L@R@N@`S@@N@S@ N@@WS@N@S@yN@@S@`NsN@@ S@ N@@ S@~N@S@ N@S@`5N@S@(4O@VS@ /O@=S@6O@ S@tQO@@ S@`0UO@S@jO@S@oO@S@2O@@ S@O@`S@`P@S@P@ S@ +P@@6S@*P@S@6P@@S@SJP@S@cP@B%S@P@@!S@vpP@+S@|P@/S@qP@0S@RP@6S@3P@@S@ Q@M@@܂R@`M@`R@M@~R@`L@@R@UL@R@L@RR@L@@ۇR@`GL@R@`L@ބR@8L@@ۃR@L@zR@`L@xR@(L@ wR@L@`isR@@L@rR@`GL@mR@ L@qR@L@uR@[L@@wR@L@ sR@L@ajR@L@ fR@@pL@cR@z|L@3fR@`gL@jR@\L@kR@`L@ hR@\L@c`R@ɟL@`^R@@oL@:\R@JL@@ZR@@qL@SR@aL@@NWR@_L@@UR@I_L@`PR@@\L@@OR@ L@`SR@`_L@UR@L@YR@K@n[R@ K@@[R@ UK@XR@K@ fVR@mK@SR@@hK@XR@`_|K@M\R@ dK@[R@;K@TR@K@7WR@K@XR@4K@|^R@%K@]R@K@@_R@`e?K@`fR@`qK@mR@ iK@ kR@@oK@nR@ ymK@nR@ >K@ZlR@3K@iR@K@]fR@`J@oR@J@,qR@(J@sR@`J@qR@ 2J@@qR@K@JzR@LK@|R@fK@ ~R@ JK@R@`ʆK@7R@qK@@XR@ K@eR@K@R@K@`R@K@5R@hK@R@@EK@ >R@@K@@R@ yK@R@`0K@:R@"L@R@!L@R@ML@R@3L@@۟R@ t L@@R@L@@R@ UK@R@K@R@aK@RR@ K@R@`K@R@@K@9R@ ,K@8R@K@R@K@R@`&L@tR@ x6L@R@|L@R@ jH@@.Q@ KH@@.Q@`%H@6Q@ D$H@@p9Q@H@8Q@'H@=Q@!"H@@x>Q@H@?Q@[H@`EQ@@!H@GQ@`<#H@NQ@!2H@tUQ@`GQH@l\Q@xH@q`Q@@H@Z`Q@ U I@@QQ@ 'I@]JQ@a*I@GQ@I@@@Q@`HI@@`?Q@I@!BQ@I@'IQ@I@IQ@&H@5AQ@H@z@Q@ 2H@{?Q@ nH@4Q@ jH@@.Q@vN@`T@ N@T@M@T@@hM@`T@M@"T@M@ #T@ DM@#)T@ \M@/T@ >M@1T@@M@[3T@  N@j6T@` N@k5T@(M@3T@'N@ 4T@N@8T@O@:8T@` O@2T@`$O@'1T@@O@.T@ O@ f*T@`O@(T@`6N@j&T@!N@@%T@@N@!T@vN@`T@FL@q,T@7WL@3T@`K@@8T@`K@:T@K@=T@ ~K@T@`fVL@@;T@mL@#9T@L@5T@L@3T@!L@1T@L@,T@FL@q,T@ %e@zdQ@e@dQ@e@`lQ@e@pQ@d@qQ@d@`tQ@dd@uQ@`fd@@?|Q@e@PQ@y-e@nwQ@.e@tQ@ -e@pQ@(e@pQ@})e@@iQ@ %e@zdQ@2O@+T@ ,AO@3T@ZGO@@6T@ \O@@O>T@ O@a>T@y P@$@T@` P@CT@P@ET@ P@8JT@7#P@`LT@?P@@JT@EOP@HT@\P@AT@`iSP@?T@]P@T@2N@w?T@`N@(@T@TN@ET@ N@GT@@N@`FT@N@@FBT@aN@{;T@@uN@:T@kK@.T@WK@0T@AVK@1T@ C K@@1T@J@3T@`K@4T@`~!K@6T@>iK@#5T@{K@8T@K@@9T@K@I3T@K@v0T@kK@.T@M@$lQ@ M@@oQ@UM@:pQ@M@rQ@ϹM@@ xQ@`zM@1|Q@|M@zQ@M@wQ@@M@@vQ@){M@ZxQ@ wM@yQ@DKM@փQ@EM@Q@MM@̈Q@M4M@@Q@`_aH@'T@BH@(T@ G@'-T@G@0T@FG@/T@G@@.T@ G@7+T@HG@+T@@ɧG@P)T@൸G@@&T@8G@%T@ UG@@ (T@G@@N#T@SG@#T@SWG@@!T@ CG@K!T@`~AG@[T@CG@3T@ G@T@ tBL@|JT@1L@KT@ 1L@@GMT@pL@@ONT@*K@LT@ 7K@@NT@K@bQT@@K@bQT@K@RT@K@vTT@`ML@ fRT@` DL@HPT@*JL@,QT@ 1L@ TT@*L@vXT@`L@XT@L@RT@` L@QT@ L@:PT@ tBL@|JT@`6a@ %OK@`4a@*RK@@/a@oK@!.a@eoK@+a@iK@`'a@WcK@$2a@@-K@4a@`K@j6a@K@`>a@K@ ?a@K@$T@IW@M@T@ѴW@$HT@W@@MT@ W@MT@=W@@OT@W@UQT@W@RT@)#X@@DT@"X@AT@@.X@@?@T@ ~)X@>T@=X@@9T@rX@@h4T@oX@2T@tX@32T@wX@z0T@oX@AX@^!T@MX@T@@KX@HT@NX@@T@ZX@T@ ZX@eT@LX@T@W@ T@W@@T@W@T@W@T@`ikW@S@w>@@^Q@@'->@:dQ@$>@ 6hQ@>@chQ@y>@jQ@`60>@jQ@>@%cQ@@>@aQ@>@ cQ@D>@fQ@h>@@kQ@>@rQ@w>@@rQ@g?@`mQ@`eg?@kQ@@zT?@hQ@R?@)gQ@t?@VlQ@?@kQ@n?@clQ@?@@nQ@?@ tQ@?@/vQ@@?@`uQ@@@,qQ@! @@@XrQ@ @@sQ@P?@{Q@?@@}Q@`%@@@g}Q@B@@@guQ@B@@@rQ@@\@@@rQ@@@snQ@@@kQ@ԅ@@gQ@@l@@@GeQ@@@@jQ@`e@@@pmQ@@@@oQ@` @@oQ@`@@@pmQ@` @@jjQ@v?@tiQ@@@ gQ@@@cQ@`5@@]fQ@7@@VdQ@X2@@@ObQ@ ?@@@`Q@>@@_Q@ [@@@`[Q@ $@@@N[Q@`<;@@e_Q@rs@@ ^Q@@?h@@@\Q@ c@@8ZQ@Xr@@b]Q@@@=^Q@*@@]Q@ =j@@`UQ@l@@ SQ@z@@XQ@ ٩@@@\Q@@@[Q@ @@WQ@@4@@UQ@@@@RQ@S@@QQ@`@@#QQ@@@@NQ@ @@`MQ@b@@rKQ@}@@CQ@@#@@=Q@` @@@G=Q@@@@BQ@@@CQ@@@@EQ@@@KQ@ t@@SQ@ @@TQ@`/A@@6TQ@`UA@OQ@`A@MQ@ӖA@rKQ@A@@MQ@A@VPQ@ӖA@QQ@A@MQ@@4B@ABQ@ B@!*Q@ B@@'Q@ *C@Q@3C@kQ@abC@*Q@MC@`Q@@C@Q@QC@@_Q@ C@ Q@ C@Q@LC@sQ@@C@{Q@C@a Q@ UC@ Q@C@ Q@`ND@P@@/D@tP@4D@P@(D@P@1D@`P@`~AD@ P@GD@P@HD@P@&VD@P@ gD@AP@`6xD@P@bD@P@@D@P@D@P@D@YP@`D@|P@`ʎD@P@ƑD@P@D@P@D@eP@@WD@5P@AD@@_P@`D@P@D@ ڼP@D@P@\D@P@[D@!P@8D@P@``C@P@ ?C@[P@-B@@P@B@P@8A@#P@pA@@FP@@aA@ΦP@TA@P@ 2P@9@@P@ @@P@@@@P@@@ǴP@@@P@`%@@aP@ @@*P@ n@@ɷP@`wg@@`QP@ g@@P@`{@@P@b@@@P@h,@@@P@!@@5P@`?@@XP@?@@P@ @@@P@(@@P@ ?@@*P@H@@P@`%?@@P@ 5@@ZP@ Uu@@P@ v@@P@e@@P@`ʦ@@P@d@@ P@@ڐ@@@P@`M@@P@`M@@@.P@ @@@P@>@@^P@I@@P@{@@SP@ lj@@`QP@ @@P@`<@@@ӞP@@@@P@ @@P@'@@ZP@h@@ΚP@@@P@ @@P@@@@XP@ @@5P@@@P@ \@@P@@@৐P@@@@@XP@ C A@P@?A@׆P@@\A@~P@UA@:|P@'mA@^yP@ jA@tP@ sA@`tP@ noA@qP@W{A@mP@tA@lP@ mXA@rsP@VA@@GqP@`A@@lP@PYA@kP@dA@fP@ [A@0aP@@#QA@@N_P@VA@=^P@(TA@@_\P@`x>A@\P@@@A@ZP@.A@jZP@ 4A@@WP@ U=A@@QP@PA@OP@dXA@KP@ [PA@JP@dhA@@AP@YA@>P@eA@U=P@ wA@5P@d`A@b1P@fA@/P@mA@32P@(|A@@1P@@#A@@1P@PiA@ f.P@ hA@-P@uA@@*P@zA@z(P@dA@#P@*A@@hP@`6A@P@-A@,P@ A@P@ VA@@FP@A@P@A@KP@ A@P@ A@P@|B@@h P@B@ZP@@ B@`P@$B@P@B@@xP@@%B@P@@B@`O@B@`HO@ B@O@`~B@`NO@B@8O@ B@lO@ C@@.P@C@ P@ yB@ P@ VB@{P@``C@P@C@P@-B@P@pB@P@B@P@B@@WP@B@P@HB@P@YYB@`.P@ GB@`/P@`8B@s:P@`=B@P@B@,=P@@ C@@6P@q4C@|6P@.C@3P@`<3C@@g1P@'C@@`3P@C@0P@`_C@/P@`C@+P@C@@F*P@vC@)P@C@*P@@^C@Y-P@'-C@@h0P@;C@@/P@>C@@0P@5C@2P@@:C@4P@SwC@/P@C@ #P@C@n#P@C@&P@C@&P@C@*P@9D@S"P@CD@"P@CD@$P@;D@(P@4D@/P@!:D@1P@BD@$0P@`8D@@2P@h4D@`7P@@4*D@ ~=P@D@`iCP@C@@6XP@ C@@`[P@C@`P@ C@`dP@`C@)gP@4D@qP@@^]D@ f~P@D@P@aD@@P@E@tP@8E@@¡P@JE@P@8VE@@P@ &FE@:P@༂E@`P@ E@P@lE@P@`E@̔P@@E@P@E@`ԍP@'E@P@ E@ &P@`źE@!P@ E@3~P@`F@P@@p=F@P@(F@@P@@'F@P@0F@P@ F@@`P@ [E@@xP@ E@P@@E@P@E@'P@(F@@P@@ F@ P@F@!P@rF@@P@F@9P@cF@G@BP@ G@P@{G@P@ G@ P@ G@|P@G@@P@ G@P@9G@1P@G@P@#G@ P@ G@@XP@G@P@G@tP@H@P@` H@P@ H@P@8H@@P@,H@P@;H@/P@VH@tP@}H@P@cH@P@'H@P@H@@P@aH@P@7gH@@gP@eH@PP@9MH@P@`PH@P@xH@3P@H@P@H@P@`$PI@@Q@`NcI@Q@I@@oQ@!I@Q@ I@@Q@|I@ Q@J@$Q@`J@ &"Q@ &J@v Q@IJ@ Q@`J@M Q@-J@@XQ@$J@@Q@`&J@Q@ !J@`Q@ J@@Q@!J@Q@a"J@Q@@UJ@@oQ@']J@Q@B]J@Q@GJ@@"Q@@J@E'Q@OJ@'Q@Q@DK@@-@Q@2CK@S>Q@`J@9Q@J@6Q@PJ@@8Q@J@@W7Q@`NK@5Q@J@0Q@qJ@.Q@J@`+Q@J@)Q@` J@@ (Q@J@%Q@@ J@ &Q@`HJ@Q@`J@Q@8J@`Q@ J@@gQ@ J@jQ@J@Q@J@Q@J@`Q@`J@Q@J@cQ@ DJ@Q@J@Q@`J@ Q@ K@Q@`K@Q@ 2K@@?Q@ K@Q@ZK@@ Q@K@@ Q@^=K@{Q@FK@`Q@ gUK@[ Q@biK@ Q@pK@` Q@`AvK@@Q@@pmK@`QQ@`HxK@@Q@`K@!Q@*K@$Q@K@3*Q@rCL@w'Q@?L@@7%Q@ IL@(Q@`SL@ (Q@eoL@$Q@ԍL@"Q@L@,%Q@`L@r/Q@`L@@ 0Q@`L@32Q@L@q4Q@UL@36Q@'M@8Q@IM@`7Q@`GM@U5Q@ M@@1Q@/M@@0Q@`+M@.Q@7M@@/Q@`6M@0Q@z$M@@2Q@v M@5Q@` %M@9Q@LM@=Q@M@?Q@^M@>Q@qM@;Q@ߋM@S:Q@@WM@Y5Q@ஶM@ /Q@M@@,Q@M@,Q@eM@n'Q@`M@$Q@M@!Q@M@Q@bM@Q@`HM@Q@@.M@@Q@ M@Q@ M@Q@@M@ ~!Q@PM@(Q@ M@ *Q@`/M@!.Q@` N@ +Q@@.7N@K-Q@LN@@ 0Q@@ofN@8Q@ztN@:Q@xN@>Q@ vN@]FQ@\fN@JQ@M\N@JQ@]N@FQ@`qTN@`FQ@ JN@@HQ@3JN@QQ@/N@ZQ@#N@`i_Q@@N@dQ@`N@hQ@ $N@jQ@\6N@@jQ@`UN@{kQ@PN@nQ@M\N@nQ@XN@pQ@YN@sQ@`0eN@@xvQ@@wN@Q@7Q@@=Q@@9Q@NQ@B=Q@@Q@qQ@Q@ >QQ@Q@jVQ@Q@@XQ@Q@_Q@@pQ@P@@gQ@P@@OQ@^P@Q@P@@Q@P@Q@P@մQ@@P@tQ@P@Q@@gP@Q@`iP@̸Q@P@`Q@`P@Q@RP@Q@P@@Q@MP@MQ@wP@Q@rP@Q@@ P@ Q@*P@Q@P@Q@P@$Q@@P@@.Q@@Q@@gQ@Q@Q@K1Q@@R@36Q@5R@:Q@ R@w7Q@!R@9Q@@%#R@@>Q@*R@?Q@`,R@MQ@1R@SQ@H8R@SQ@@;R@WQ@`y=R@@aQ@a>R@@orQ@=R@ &rQ@;R@cQ@:R@cQ@P9R@Q@:R@Q@7R@# R@@4R@U5R@Y-R@=.R@v,R@3R@)R@.R@'R@@%/R@%R@6R@@ R@2R@R@q8R@R@ .R@ R@.R@RR@$R@R@#R@`Q@ R@Q@R@Q@R@$Q@)R@tQ@<R@Q@`Q R@jQ@@oQ@Q@[Q@nQ@Q@Q@Q@ Q@R@Q@`%R@Q@[+R@@Q@'R@Q@5R@ķQ@@g5R@@µQ@+R@Q@`y1R@]Q@@1R@Q@!R@@Q@[R@`Q@R@$Q@&R@ċQ@ 'R@Q@R@Q@1 R@Q@@(R@JzQ@+R@avQ@@)R@@oQ@ R@YiQ@#R@fQ@(R@\Q@&R@ZQ@R@@FZQ@$R@@-XQ@)R@SRQ@ R@8NQ@R@`KQ@R@@HQ@K%R@;Q@.R@6Q@ `R@%Q@iR@@WQ@gR@Q@eR@@Q@fR@Q@@cR@`Q@@\R@@Q@ &ZR@IQ@ER@`y Q@HR@@X Q@DR@Q@GR@eQ@'MR@P@LR@*P@UER@P@VDR@RP@ ~IR@P@HR@P@@XFR@P@@DR@]P@>R@^P@6R@P@8&R@P@"R@@P@"R@'P@5R@P@R@`P@R@VP@R@P@|R@P@@ R@P@R@P@R@`P@ R@P@@ R@@?P@eR@P@cR@P@*Q@DP@R@P@nQ@/P@SQ@`QP@/Q@aP@Q@SP@{Q@ ڼP@Q@@۷P@Q@qP@Q@@˱P@Q@P@@FQ@ P@`Q@,P@@Q@@gP@ Q@īP@`Q@ P@DQ@P@Q@ fP@Q@P@@6Q@P@Q@@P@`iQ@P@Q@P@?Q@@OP@EQ@P@GQ@P@=FQ@P@GQ@@P@XQ@zP@@oQ@]P@@`{Q@P@@.Q@@P@@`Q@{P@Q@8P@Q@ P@R@ P@`yR@P@R@@-P@R@P@@ =R@@oP@:@R@P@`R@P@2cR@P@8vR@ ʾP@ zR@qP@|R@@.P@@yR@P@@OR@P@R@P@VR@P@eR@`P@R@SP@R@Q@R@`iQ@R@@Q@R@'Q@ɛR@@FQ@@R@@o"Q@sR@@.'Q@cR@ +Q@R@/Q@1R@1Q@@R@HQ@['S@0=Q@,S@@x6Q@n'S@2Q@@+S@/Q@8S@M,Q@@%GS@:$Q@HS@9%Q@EGS@S&Q@LS@@g%Q@TS@ Q@OS@UQ@@SS@@ Q@SS@Q@KS@Q@JS@@Q@VS@jQ@MS@!Q@$PS@Q@DLS@jP@OS@P@ESS@^P@@MS@P@ ~ES@@P@DS@`P@IGS@@ P@TS@@ P@lS@P@@ lS@P@S@MP@{S@P@S@P@S@@oP@S@ZP@ǤS@@ P@ S@/P@)S@P@@pS@P@DS@7P@S@@P@@NS@vP@wS@rP@wS@P@@|S@3P@pS@P@oS@EP@iS@AP@ ^S@P@]S@@P@ ^S@*P@ ~eS@ZP@J^S@|P@1`S@Q@@eS@s Q@@oS@/Q@S@Q@S@@Q@}S@@Q@yS@Q@|S@sQ@`zS@ >!Q@qS@ >!Q@mS@R'Q@oS@!.Q@kS@`8Q@wgS@ f:Q@@O:S@@Q@@-S@vHQ@R@PQ@R@ OQ@@R@zHQ@R@FQ@R@@FQ@IR@IQ@~R@DQ@=zR@@EQ@oR@JQ@DpR@LQ@uR@SQ@ >yR@@[Q@!vR@_Q@@aR@nQ@@ aR@ZpQ@@iR@uQ@,qR@Q@kR@@hQ@@mR@|Q@:xR@`Q@@R@Q@PR@]Q@AR@৬Q@zR@@Q@@yR@Q@@xnR@Q@jR@Q@aR@Q@@UR@0Q@ BR@tQ@UAR@eQ@@6`R@jQ@aR@Q@]R@Q@^R@@OQ@@_dR@@Q@yR@Q@@R@PQ@PR@R@@R@@R@R@%R@R@ f*R@R@3R@@ R@4R@qR@8R@R@@?0R@`R@/R@R@+R@1R@$R@R@@"R@R@"R@wR@R@ R@zR@nR@R@R@cR@R@ R@R@R@R@R@@-R@ Q@@R@Q@/R@Q@AR@ >Q@tR@`Q@R@ Q@R@9Q@R@Q@ &R@Q@R@Q@R@zQ@R@@NQ@R@ Q@S@Q@S@HQ@@ S@Q@@F:S@Q@:S@vQ@lQ@@T@Q@@OT@DQ@ޤT@@Q@`T@R@T@@hR@S@X@S@X@S@X@R@X@R@5X@ R@`QX@R@X@R@X@R@X@R@/X@bR@8X@aR@1X@@ R@X@@R@@X@!R@@>X@R@ X@lR@ Y@R@ Y@@R@X@R@@X@ZR@X@R@bX@ R@X@@R@X@@WR@@X@R@ X@!S@RX@S@ Y@S@5Y@ &"S@ S@`NY@@?S@`)OY@AS@`JY@CS@LY@FS@$Y@bYS@EY@1XS@`Y@@`S@@ϺY@EcS@ nY@eS@Y@jS@@.Y@hS@Y@gS@`Z@ nS@TZ@mS@Z@lS@Z@@kS@@Z@|jS@p)Z@lS@1Z@lS@ 3Z@gS@>Z@eS@@wZ@dS@kuZ@@XbS@yZ@#aS@ !{Z@@]S@DZ@@6XS@@ȋZ@VS@@3oZ@ WS@\Z@kQS@WbZ@PS@ [Z@OS@OZ@@HS@ HZ@ES@YZ@UES@`{Z@HS@ \{Z@wGS@ !oZ@ CS@+qZ@BS@`Z@AS@[Z@@6@S@ ]Z@]>S@mZ@>S@ lZ@ CS@@3Z@BS@Z@@S@BZ@AS@!Z@7CS@Z@@AS@Z@'AS@@@Z@?S@Z@@;S@ sZ@!:S@Z@8S@Z@@%7S@ Z@=6S@Z@5S@Z@e3S@ Z@2S@`Z@/S@`Z@-S@`Z@*S@ nZ@ ~%S@@Z@)#S@`Z@@%S@`vZ@&S@`dZ@@%S@Z@ S@൴Z@S@Z@"S@Z@: S@ Z@A"S@[@(S@@Z@)S@Z@*S@Z@.S@ [@.S@`R[@,S@D[@/S@@@s[@U-S@`[@0S@`)[@@.S@@{[@0S@ [@/S@$[@-S@[@n+S@n[@B-S@ \[@+S@[@(S@[@2'S@[@&S@z \@S@[@S@@.\@@S@\@cS@ /\@S@!*\@$S@`R/\@3S@K)\@@ S@ \@ES@`&\@`Q S@`2\@`Q S@@6\@@ S@`2\@S@@&\@2S@&\@S@5A\@S@OB\@@S@`R?\@S@BA\@` S@H\@ S@GQ\@MS@^=\@SS@<\@S@M\@S@R\@wS@@O\@@ S@`_W\@ S@^\@ZS@@[\@S@ \\@S@ 8c\@ >S@_\@R@@b\@ fR@a\@R@ \\@1R@ c\@R@@i_\@R@i\@@R@ g\@R@ \s\@ R@v\@R@t\@R@x\@`R@x\@R@zp\@R@#m\@AR@ h\@R@ sc\@]R@ Z\@|R@e\@@6R@e\@=R@@UT\@R@B\@R@H\@ R@ \G\@R@&%\@@R@@\@jR@ \@5R@4\@R@6\@@R@/\@R@ l8\@`R@`2\@qR@&6\@R@@\@R@.B\@R@`>\@8R@$@\@R@P\@R@`;S\@R@_P\@lR@nV\@R@d\@VR@ lh\@kR@@k\@R@m\@ &R@d\@!R@a\@R@h\@`R@j\@ R@`f\@*R@`6\@R@\@ R@&\@R@[@@XR@[@@ R@`[@@R@`R[@R@k[@@FR@3[@rR@[@jR@[@cR@@i[@@R@[@`iR@`c[@`R@zp[@!R@@z[@R@`~[@R@ l|[@@܎R@`v[@R@ Z@@NCR@_Z@HR@@Z@@-LR@Z@`HR@`Z@KR@q[@OR@[@NR@&[@ OR@`[@'QR@K [@,QR@@[@RR@$[@@.SR@@{O[@9YR@P[@ZR@pM[@[R@M[@]R@@Z[@]ZR@@{[[@v\R@`RK[@`R@ML[@bR@ O[@aR@nf[@\R@[@``R@[@@bR@@[@cR@ [@dR@$[@fR@[@(hR@[@^iR@ [@5iR@`[@ lR@[@pR@}[@ frR@ n[@lR@`s[@lR@n[@ajR@h[@`lR@a[@rR@\b[@tR@=u[@xR@y[@`~R@[@R@[@tR@x[@yR@`f[@|R@ [@@~R@@[@BR@[@@xR@+[@R@B[@@R@O[@HR@@[@R@[@@}R@_[@vR@[@pR@ \@ >mR@@&\@nR@6\@@oR@u=\@sR@M<\@vR@4\@}R@4\@R@8\@@}R@Y\@@`kR@Z\@,eR@ P\@)cR@BI\@(\R@ _\@bUR@`_\@SRR@Ka\@@ER@\\@@_@R@ !_\@U=R@`Z\@n;R@@G\@7R@E\@ >5R@K\@-R@ JS\@`i+R@Og\@'R@\@&R@@k\@(R@MT\@ ,R@I\@4R@`J\@6R@@W\@8R@sb\@]>R@`\@@AR@`f\@@GR@b\@ fJR@a\@BMR@ c\@@PR@m\@1TR@}\@TR@f\@3VR@Gq\@@VR@e\@sZR@]\@@_R@Oc\@`R@?\@fR@\@kR@$]@@ojR@@O]@@eR@Y]@@peR@B]@@bR@]@@N_R@]@@]R@O]@\R@@]@^R@@{]@@`[R@`k]@0YR@O]@@.WR@@]@@UR@`]@^QR@ ]@`LR@@]@CR@]@?R@ ]@ >R@ 1 ^@(8R@$^@8R@@]@`4>R@z]@@_@R@^]@AR@B^@@;R@@_^@>R@}^@ >=R@${^@@:R@@i^@@9R@@^@A.R@@^@v0R@`^@/R@_@)R@`._@(R@I_@!R@@R_@HR@̈_@'R@ח_@R@@ȣ_@R@ԥ_@1 R@ϭ_@ R@±_@`R@ _@R@ _@Q@_@Q@0_@`Q@_@@Q@ s_@`Q@ _@Q@`_@@%Q@ _@Q@_@@Q@_@@Q@`ʾ_@R@ һ_@R@u_@]R@$_@ >R@E_@PR@_@@R@&_@=R@O_@R@`)_@R@K_@8R@ `@R@`@@Q@`@Q@``@@OQ@`@Q@%`@7Q@%`@9Q@` `@Q@ !`@R@)`@EQ@)`@@NQ@,`@Q@`1`@@Q@ `@UQ@``@a@Q@%R@ a@3&R@a@I+R@ a@,R@`]a@.R@a@w7R@൒a@8R@@b@3Q@ =b@Q@@b@R@`]@b@ fR@gCb@R@@Jb@1R@b@@6R@`:b@< R@Q@!,d@@%;Q@@&d@2Q@ 'd@)/Q@"d@%Q@`f d@@#Q@-d@ #Q@d@@F"Q@`d@@G!Q@ $d@@#Q@`*d@,Q@K)d@@%/Q@|*d@3Q@2d@:Q@ 1d@SBQ@/d@qDQ@b/d@wGQ@`,d@MQ@.d@@RQ@T-d@TQ@ /d@ VQ@-d@WQ@`.d@XQ@@d@bQ@@d@KeQ@XJd@ajQ@|Jd@lQ@Xd@`yiQ@@fd@mQ@`2sd@kQ@{d@nQ@`d@pQ@`Id@PmQ@` d@]fQ@൜d@UeQ@ 6d@ `Q@d@@_Q@ d@@ `Q@d@`pQ@@.d@qQ@`e@lQ@`fd@8jQ@Vd@hQ@9e@fQ@Ae@bQ@e@`Q@@`e@RQ@] e@*NQ@ |+e@KEQ@,e@@CQ@.e@@<7Q@Y/e@z4Q@ 3e@1Q@Ke@v4Q@ Se@@_0Q@!Ne@t5Q@qNe@ 7Q@Ue@S:Q@Te@ 8Q@We@@h4Q@ Ve@(Q@f@7Q@f@ e+Q@f@@<Q@f@@Q@f@@Q@f@`P@f@@P@f@@oP@f@FP@f@P@f@P@f@˱P@f@yP@f@PP@f@'P@f@tP@f@hP@f@\P@f@PP@f@ZDP@F~f@ECP@|f@ABP@dzf@AP@yf@@AP@nf@4P@df@A2P@`xRf@&P@@rOf@@&P@Wf@a*P@ Xf@,P@Vf@,P@Qf@*+P@@3f@@-P@v,f@k5P@@E/f@@7P@`'f@K@@'d@AK@&d@3JK@@@#d@{KK@+d@ CK@/d@K@Jc@`0K@@Ec@@J@@c@`6J@ (c@MJ@ nc@ J@ c@`0J@c@J@@c@J@Sc@UJ@ ec@zJ@@ic@ >J@Tc@J@c@QJ@`)c@`J@c@`J@c@J@d@|J@@.d@@J@td@`_J@c@ J@Sc@ J@`c@J@c@5J@c@`qJ@Mc@ J@`c@௕J@-c@J@ |c@*rJ@`xc@`rJ@@Nc@`J@c@`J@9c@J@c@`{J@@c@@?xJ@Fc@sJ@c@sJ@ c@xJ@c@@.wJ@`c@rJ@c@` eJ@c@`bJ@ c@ _J@L@c@L@gc@KM@ 6c@`0M@c@CM@c@SVM@ c@XM@ c@\M@c@@mM@ ?c@@xM@Pc@M@ c@@ÄM@d@ϩM@ d@M@  d@M@@d@M@d@`M@|d@M@@$d@@M@@+d@@M@:d@`N@=d@ #N@==d@ O*N@ ;d@`6(N@)O@`d@l(O@d@@9O@` d@;O@3d@'=O@װd@8O@ôd@9O@qd@JO@!d@lXO@ajd@@.GO@@.gd@CO@'gd@M@Dc@3M@TIc@ٸM@8Lc@`M@`Lc@cM@ Lc@ M@ Mc@M@8Pc@ M@ Mc@ M@Mc@@XM@ 6Nc@`M@YYc@`M@^c@mM@4ac@M@`dc@ ,M@fc@M@&dc@M@ ec@[M@Adc@M@ec@M@`Xc@bM@ Wc@M@vXc@@M@;Nc@(M@Jc@M@`Kc@M@`]Hc@3M@Dc@`qM@PAc@ԅM@?c@M@$:c@ޔM@`5c@5M@7c@ NM@2c@`M@0c@̜M@*c@M@`(c@`M@c@kM@@c@@M@c@3rM@`c@`zM@ c@M@ c@M@] c@*M@`]c@M@c@}M@ c@ vM@c@isM@ (b@mM@b@pM@b@ kM@Zb@ &M@@rb@ M@b@ԕM@"b@bM@` c@M@4 c@` M@c@M@@b@ M@@b@5M@b@@M@=b@ &M@b@M@b@`M@b@ M@b@ M@b@`M@b@M@pb@M@`b@M@`b@M@b@SM@@7b@PM@b@M@"b@ M@ b@`M@Zb@vM@`b@M@`2b@M@٦b@M@`b@ M@@Eb@@M@b@`YM@+b@`˽M@`b@ fM@@b@ &M@ b@ &M@b@$M@|b@M@b@`M@כb@M@ b@@XM@@b@M@b@ M@mb@`M@`b@M@ƙb@@M@ b@ M@`b@ =M@ތb@M@b@`M@ b@ yM@Vzb@`6M@xb@MM@zb@`qM@xb@M@sb@ fM@pqb@M@qb@IM@ob@ஞM@Pib@ϩM@Wb@M@Ub@M@Ob@κM@Jb@βM@*Jb@`M@ Kb@M@Ib@7M@ZFb@PM@@wCb@M@/>b@M@>b@ΚM@z:b@ M@@9b@@XM@@<=b@`M@@yL@Ra@@.oL@yOa@lL@`Na@ gL@jDa@ KL@Ca@FL@`)Ea@>L@Ga@9=L@@Ga@@7L@_Ba@9L@Aa@`3L@g=a@c0L@g;a@`"L@.a@L@@-a@K@`*a@K@@%a@`K@!a@ gK@@W a@K@Va@K@a@K@@`@`K@ `@K@``@K@``@`nK@ S`@iK@`)`@aK@ `@@YK@@@`@`0UK@`@IK@b`@HK@a@`KK@a@KK@Ya@@WK@`[a@`RK@`a@MK@a@ `SK@Da@sJK@a@EK@a@6K@@a@5K@a@i3K@Aa@7'K@ a@ #K@a@wK@Fa@K@a@`AK@ a@lK@&a@@K@`a@J@|a@ &J@a@a@@p G@`5a@F@+a@F@ (a@`_F@<a@ơF@a@ pF@ a@*bF@ a@'eF@ a@@o^F@ a@ZF@`fa@WF@Ya@PQF@Ba@HF@a@zYE@``@WE@`@`q\E@j`@w_E@ `@iE@`@@gE@``@1dE@K`@^E@}`@@aE@``@rE@ԗ`@sE@`o`@ `kE@`@moE@`@KuE@``@xE@`@zlE@@%`@5qE@J`@@E@`@`E@ `@E@@ĉ`@E@@``@E@k`@ ,E@~`@$E@`z`@@WE@@E}`@E@`@`AE@@́`@E@@`@PE@`I`@ϡE@`|`@$E@`oz`@E@z`@`E@w`@DE@}u`@ җE@u`@E@`r`@@pE@Xl`@ wE@n`@nE@h`@@FbE@g`@MTE@@ig`@rKE@ f`@`GE@ ec`@TE@@Ec`@OE@ \`@LE@ QZ`@PE@8^`@OE@<^`@RE@'Y`@@FRE@@Y`@XE@ U`@MTE@U`@QE@X`@ULE@[`@ BE@`Z`@;E@X`@9E@X`@ +E@;V`@$E@T`@,(E@T`@)3E@ SS`@5E@ R`@DE@S`@*JE@]S`@ROE@Q`@`WE@N`@ WE@`L`@[E@ 1Z`@#pE@\`@lE@ c`@`tE@_d`@`wE@@`c`@ |E@@rc`@ UE@`f`@@E@f`@+E@h`@VE@`h`@@E@ i`@3E@i`@E@ f`@E@f`@E@g`@F@@i`@F@` c`@ XF@ _`@UdF@^`@LlF@ 1d`@@vF@@7g`@tF@`2k`@|F@`n`@@{F@@t`@`F@ ?t`@F@@Wu`@;F@x`@DF@{`@F@|`@ `F@|~`@bF@`@ rF@ǚ`@ F@ `@F@``@ۇF@ `@F@K`@ fF@`@`F@``@@?F@`D`@F@@%`@@F@@.`@QG@ `@ OG@`@G@w`@`G@`@!G@ `@;+G@`@ 60G@@7`@4G@`2`@>8G@` `@=G@`@ UUG@@r`@aG@X`@ gG@@@`@ nG@`@ |G@V`@`G@``@ߋG@` `@ HG@``@!G@`@`ݵG@`@ 7G@ `@ ,G@`@ G@`@IG@`@`H@@E`@K H@`@H@`@G"H@`;`@,(H@@G`@.H@`@@z,H@]`@ 1H@@W`@@p-H@`@ H@@N`@ H@`@H@`@@H@M`@H@`@ G@`@@XG@`@G@`@FG@`@`G@`@G@q`@G@p`@G@l`@`AG@Gc`@G@@_`@G@ ]`@ yG@A^`@ xG@S\`@`G@@U`@SH@4U`@H@Z`@&H@ W`@ &6H@`oX`@K=H@ W`@ 7?H@@T`@=H@P`@NH@tU`@nH@ ?T`@ 6pH@`G`@nH@<`@H@@.=`@sH@k7`@`H@@{7`@H@6`@ NH@2`@H@`1`@`H@`0`@H@+-`@@H@+`@`H@+`@BH@`*`@@iH@&`@رH@@#`@UH@!`@H@ `@~H@ `@`ֻH@`@\H@ `@H@j`@H@`@H@/ `@H@ _@H@@_@`H@_@`HH@_@H@?_@H@_@H@ _@ H@`__@8I@_@I@_@I@#_@(I@`x_@@p5I@`x_@:I@`d_@jJI@_@WI@`k_@d_I@_@`I@_@ =I@_@I@ٽ_@I@_@I@Ҷ_@I@_@tI@+_@ I@_@@.I@`_@ͣI@ _@@FI@_@I@W_@I@`+_@#I@ô_@$I@@W_@ I@_@`I@Ҫ_@I@`x_@I@_@@I@_@J@O_@ > J@`ܢ_@kJ@_@J@ ғ_@LJ@@_@@h$J@?_@ 'J@_@@Q0J@_@`:J@_@ `;J@ ~_@:DJ@DŽ_@KJ@a_@`GJ@`;_@|JJ@~_@RJ@;_@RWJ@W_@\J@&_@I_J@`ڃ_@`_dJ@}_@ cJ@v_@ sJ@#i_@qJ@i_@ yuJ@En_@"yJ@`fn_@`}J@f_@`J@d`_@ބJ@J_@J@`B_@ǘJ@d8_@`֓J@@,8_@;J@-_@ǐJ@`M+_@`ܖJ@_@J@ \_@8J@_@J@`^@J@ 6^@@J@Ѽ^@ fJ@ ^@jJ@Z^@ZJ@@6^@rJ@`;#^@J@^@ OrJ@^@FbJ@^@ZPJ@^@ rKJ@ ^@`JJ@$^@}QJ@.^@DJ@ C(^@)J@0-^@ ="J@1^@`J@ H,^@ yJ@-^@I@)^@I@?$^@I@^@@@I@&^@`I@\]@`ռI@ ]@`I@@]@I@M]@|I@]@`I@]@ yI@ ]@^I@`T]@ KI@]@!I@e\@I@ K\@H@E\@H@`.\@H@`\@'H@\@H@[@H@[@,H@Ѭ[@3H@ n[@ H@G[@ H@d[@ H@xa[@H@ W[@`H@ #[@ NH@[@ =H@Z@wH@Z@ DH@ Z@I@Z@ I@ ZZ@I@;Z@5)I@`Z@L,I@ѐZ@ &I@Z@ +I@Z@Z0I@`MZ@4I@ SZ@ =I@vHZ@ 2I@u=Z@b1I@Z@$I@Z@I@ Z@!I@Y@ I@Y@ =I@Y@I@@Y@`I@BY@"I@ Y@I@@Y@&I@`;Y@4I@WY@AI@Y@@HI@`Y@RI@`ŖY@ZI@Y@_I@#Y@@dI@`Y@ lI@Y@@XrI@܉Y@[I@`fY@ 7I@JY@3I@@͋Y@1I@`bY@SI@YY@ƹI@UY@I@*Y@I@`TY@@I@@X@`YI@3X@ OI@X@I@`X@UJ@ϻX@`-J@ 6X@ J@X@J@wX@I@lX@I@X@ I@ғX@I@X@ƹI@X@I@`{X@RI@Y}X@`I@tX@$I@@wX@`wI@X@lI@}X@cI@X@dOI@[X@EI@@X@`@I@@X@%I@@܆X@`AI@IwX@dH@qX@H@keX@`H@@eX@`qH@^X@H@@`SX@ H@JX@ ~H@?X@sH@-X@H@%X@H@@$X@ UH@ X@ H@CX@aH@X@H@-X@I@W@H@W@`I@MW@I@UW@|H@ W@ aH@:W@ H@W@II@ۧW@`I@`W@I@ිW@GI@W@`II@nW@3JI@\W@`OI@ TW@BMI@BAW@ xNI@ ?W@`QI@>W@`TI@>W@UI@?W@@-`I@%?W@`dI@@r;W@ ffI@@2W@dI@0W@[I@,W@mWI@(W@XI@,W@ oI@@W@@pmI@:W@dI@`W@\I@ W@`XI@V@D[I@SV@ VI@V@rCI@V@;I@V@H@_hU@QH@ bU@H@@G^U@@H@YU@@H@QU@@H@MU@H@`MU@H@LU@H@EU@H@YEU@H@@>U@H@@>U@H@ CU@I@@U@ I@@:U@`V I@ 7U@ a I@3U@ uI@ !/U@`I@`)+U@4I@q$U@I@ !U@ CI@`TU@ I@U@I@U@ I@U@"I@U@]-I@ U@ 9I@@GU@AI@ U@ \GI@` U@LI@T@[I@=T@ fI@T@-hI@}T@pI@`T@`[qI@`fT@ \wI@ T@{I@5T@QI@T@@>I@T@8vI@T@qI@൰T@ tI@`T@ sI@`T@@gI@T@M\I@VT@` aI@$T@f_I@@ϖT@=aI@MT@@._I@T@ `I@ &T@2\I@T@ZI@`BT@`\I@ീT@@bI@@zT@ dI@ uT@WbI@`rT@eI@pT@eI@snT@ _I@\fT@8^I@`]T@`_I@ 6\T@GaI@ \_T@ kI@`[T@ vI@@.[T@{I@ JST@)|I@KT@xI@DT@QyI@ET@ QI@@JT@I@ KT@I@?HT@@#I@@pFT@ I@BT@ 8I@-I@(T@4I@(T@qI@`T@I@T@GI@@T@@.I@`T@ QI@ &T@`vI@`T@{I@T@ (vI@`+T@vI@ T@`krI@ T@`qI@ T@`MkI@` T@jI@T@ hI@-T@nI@=T@@jI@`T@aI@T@`I@`S@iI@`TS@I@S@`I@@S@J@@S@KJ@S@ZJ@S@`J@@S@$J@@zS@#J@@EsS@ CJ@aS@J@@"S@ J@S@K@S@VK@^!S@K@)S@K@`+.S@`K@ \3S@K@ 3S@a!K@`6S@%K@ \7S@(K@`6S@`-K@`B2S@ /K@1S@ u2K@@3;S@8K@@;S@R@ lK@@i7R@K@$4R@@K@@@'R@@K@=#R@` K@!R@~K@*R@$K@`.R@J@z$R@`fJ@R@`J@YR@ J@R@@WK@R@ \K@[R@ K@ !R@K@ R@@GK@R@ K@ R@BK@ R@!K@@R@#K@sR@@p&K@ R@/K@@ R@70K@OR@`1K@@R@z.K@R@Q(K@`R@$K@kR@`VK@+ R@K@ R@FK@2 R@`[K@ R@` K@R@ (K@Q@` !K@#Q@ K@ Q@FK@Q@`K@Q@K@`0Q@K@Q@K@`Q@K@`Q@vK@Q@ K@Q@$K@Q@8 K@@WQ@ 8K@Q@K@Q@@K@Q@"K@ܿQ@#K@@ͿQ@j+K@Q@j+K@Q@(K@Q@)K@`0Q@4K@Q@5K@Q@VK@N@J@ N@ uJ@QN@QK@ LN@ K@೹N@QK@N@K@ҦN@ CK@N@`MK@@?N@ J@N@J@ N@J@ܗN@8J@`VN@J@N@@J@N@@>J@`~N@`J@N@J@@.N@J@@3N@qJ@N@ J@ N@`J@N@J@=N@qJ@`N@J@@N@WJ@`[N@@J@}N@J@puN@J@@{sN@@J@@WsN@`J@N@J@N@J@N@.J@@N@J@N@@J@N@J@@N@\J@`N@J@N@J@`N@J@N@ J@@pN@WJ@ N@ױJ@N@\J@` N@RJ@ N@༣J@`N@ J@N@J@zN@࣠J@ N@$J@f O@J@O@J@ O@8}J@@N@xJ@`fN@ L~J@N@`}J@oN@`yJ@=N@@̓J@@N@ J@N@$J@N@͂J@N@`}J@N@L}J@ QN@`wJ@epN@ hJ@mN@@dJ@`]N@ _J@YN@\J@XN@$WJ@]N@SJ@.^N@QJ@jN@aQJ@jN@CJ@ C|N@ \?J@B}N@4J@`N@+J@`}N@@'J@`tN@ J@)dN@2J@[N@@J@ L>N@@J@N@I@N@-J@ HN@I@@>N@ I@4N@I@N@@.I@`kN@I@pN@@3I@v(N@`kI@?N@I@?N@I@q;N@I@;N@@pI@ /N@` I@`1N@I@{BN@@I@CN@ HI@ xN@ \I@ vN@`)I@`wN@ I@}N@ I@N@஽I@̦N@4I@N@@I@@N@BI@ԿN@߶I@ uN@̦I@`IN@@XI@N@@I@ LN@I@N@oI@ N@fI@ѰN@MdI@cN@TI@`[YN@TI@ 'N@XI@ N@[I@`N@=cI@(N@ ClI@N@nI@N@nI@M@`MkI@$M@aI@#M@7XI@fM@HOI@M@ FI@`MM@VDI@pM@8=I@M@)DI@ M@@GI@M@ 8GI@ M@JI@@{M@VLI@@ M@ PI@@gM@QQI@M@fOI@ M@UI@[xM@oWI@@GrM@YI@@gM@$_I@ CdM@eI@`2UM@@ gI@ UM@ oI@`LM@`nI@eHM@(uI@`OM@~I@LM@@I@EM@GI@2M@)I@2M@ ŽI@@++M@EI@M@ҎI@ M@ I@ M@I@ M@ I@ M@@I@`[M@I@L@I@.L@@gI@.L@@gI@L@ \I@ L@GI@`[L@j{I@L@tI@L@sI@L@zvI@@L@uI@L@@pI@஽L@nI@L@)tI@L@рI@L@`)I@ܗL@I@ÌL@೉I@@oL@`vI@cL@`I@`YL@ 8I@`V]L@(}I@$PL@.~I@CL@I@ l@L@ uI@78L@zI@:L@`2}I@/L@zI@-L@jsI@-)L@qI@L@LuI@`L@ ^I@ 8K@QI@@K@KI@K@2DI@K@`RGI@K@zLI@K@@MI@෿K@TI@ǸK@`UI@ \K@qSI@K@p]I@`K@jI@`MK@QqI@K@=sI@`[yK@ sI@`jK@}I@=ZK@ I@RK@ I@ HHK@=I@`EK@I@HK@zI@{BK@ 8wI@QPK@)tI@`BVK@oI@RK@hI@VK@VdI@ CTK@@g\I@ YK@zNI@@NK@EI@ BK@CI@8K@@HI@@2K@PI@78K@ZI@8K@`aI@@K@ iI@@K@mI@@5K@qI@@&K@)tI@@#"K@` yI@)K@`{I@fK@@I@K@༃I@` K@I@]K@ාI@@K@I@J@I@7J@I@@.J@I@J@I@J@3I@J@`BI@`RJ@ I@ CJ@ (I@J@ I@J@ QI@VJ@೹I@`ܶJ@I@`J@I@஥J@`BI@J@I@J@I@J@½I@.J@I@xJ@kI@@qJ@I@QqJ@`fI@=iJ@I@bJ@I@ VJ@`I@RJ@@ͻI@JJ@qI@-@J@QI@2I@_H@ "I@ gH@I@BeH@ I@pH@ I@]uH@`I@jH@WH@?H@H@9H@ H@24H@@3H@70H@H@*H@H@`vH@H@H@VH@`2H@ H@H@I@ H@vI@ (H@ I@qH@I@)H@I@4G@oI@G@#I@`G@*I@G@@+I@aG@ 0I@` G@2I@4G@3:I@G@:I@G@7I@`%G@/I@BG@{*I@G@%I@G@I@G@`RI@G@`[I@`G@ I@`G@@I@@G@H@-G@`MH@vG@H@eG@@{H@$oG@QH@@WG@8H@ \G@`H@ G@@GH@(G@H@)zG@@H@cG@wH@?G@p5H@ාG@ "H@QG@ H@VG@@H@೑G@H@@G@ H@G@`) H@ G@ H@`G@aH@G@@G@fG@G@G@G@`G@-G@`G@ G@G@ uG@`G@G@G@G@$H@3G@,H@`.G@`˝H@e'G@H@!G@̤H@ G@`H@`%G@`H@s*G@RH@G@H@G@JH@G@H@G@|zH@ G@xH@@G@wH@| G@@-pH@2G@pH@@ G@iH@` G@ hH@SG@jZH@`G@ZPH@ G@`YH@G@@]H@ F@aH@ F@ ~aH@ gF@@ZH@F@KH@F@FH@`NF@-H@`F@14H@F@`$H@`F@` H@ OF@`G@`E@`G@E@ G@$E@tG@@WE@bG@7E@ xG@ E@G@ ҷE@`G@E@`GG@ OE@`NG@ E@G@`YE@G@`E@G@ZE@`G@@mE@@G@#QE@`G@JE@`0G@@E@@W#H@ E@ )H@E@`_4H@`_D@\FH@`HD@eKH@D@DH@3D@V0F@@ZE@$F@=[E@ CF@QE@`F@`ROE@`F@OE@@E@oGE@@ E@LE@`E@`2ME@@E@@RE@`E@(]E@`E@@_E@E@BeE@E@.nE@WE@sE@@WE@BwE@E@ a{E@aE@BE@`E@]E@wE@$E@lE@E@YE@ \E@@PE@ QE@@gDE@@.E@B=E@E@(5E@ E@@.E@ (E@fE@`E@fE@ җE@ HD@כE@GD@@#E@@D@(E@zD@2E@QD@E@D@{E@D@E@WD@ME@@֥D@`E@@D@E@`D@E@pD@)E@ _D@ E@XD@`E@=RD@E@@ED@E@!D@=E@`D@`E@@ D@@ E@`D@ E@!C@E@ C@E@|C@F@_C@ `#F@EC@*F@`C@ 3F@C@[GF@@B@EF@SB@YF@DB@M\F@tB@TF@@-B@kQF@B@PF@B@`VF@@B@#iF@`B@ sF@B@yF@@ӆB@F@YB@ gF@MB@`F@yB@עF@ OzB@F@`cB@F@`B@F@cB@@­F@ gB@F@MlB@ xF@PaB@`F@WB@ϩF@ gUB@MF@e_B@F@`kB@ ҷF@ ~B@ةF@LjB@F@mB@ F@@?B@ߣF@B@F@@•B@ةF@{B@F@`B@`NF@@pB@F@ ,B@ gF@ B@7F@ xB@@ӦF@tB@iF@`GB@ F@wB@\F@B@@F@`B@aF@`B@ F@ B@ ,F@@B@` F@B@ xF@2B@`HF@ %B@ >F@B@ F@B@F@B@F@^B@F@8B@G@B@G@`_ C@@G@@C@*F@@F C@F@vC@F@lC@ F@@?C@F@C@@-F@ C@F@ C@K G@C@`G@!C@G@|:C@<G@HC@@hG@IC@{ G@[GC@ G@%C@ G@ >!C@#G@`Y C@`2G@@B@ O2G@B@,G@@B@ 8G@dB@ VG@(B@OG@#C@ \G@(C@`VG@sJC@`NSG@KC@`VG@@FC@ [G@@p5C@_G@ ~1C@`0]G@4C@@iG@C@ G@עC@wG@`C@`G@ ~yC@`6G@wC@G@`EC@@G@@p=C@G@lHC@G@ ,YC@ xG@`HC@ yG@:C@@WG@`pC@ G@ C@G@(C@G@(C@`G@f'C@`fG@(C@G@C@ۨG@$C@`G@@#C@G@q+C@G@u9C@ lG@MC@@G@XC@G@`C@G@)dC@ QG@`MkC@(G@rC@$G@@;C@G@uC@@G@2C@`2G@C@3G@C@qG@C@G@ QC@`kG@$C@ G@C@`VG@C@ G@@WC@ aH@@.C@8H@ C@zH@uC@H@fC@`MH@@ C@H@QD@-!H@C@ &H@C@#H@C@[(H@aC@=+H@`C@@ /H@C@8H@`MC@`=H@C@ @H@C@ \GH@`BC@JH@C@FKH@@C@NH@@C@VH@C@j[H@C@aH@C@`bH@@C@hH@C@GiH@C@ eH@D@hH@@ D@ nH@` D@#qH@]D@rH@H@C@[H@`C@$H@ۈC@H@xC@ \H@@qC@H@-aC@H@YC@`H@WC@LH@=RC@{H@2LC@`H@?C@H@@#:C@@H@$0C@`fH@`)+C@I@7(C@`[ I@C@eI@#C@H@C@H@C@H@B C@$H@C@`H@=C@H@C@`H@@pB@`)I@@B@= I@3B@I@zB@I@ B@ 'I@HB@,I@FB@@33I@`B@ H8I@ lB@6I@B@@>0I@B@ ,I@ †B@+I@ |B@,I@8eB@`&I@YB@)"I@@3SB@@{I@PB@`)I@GB@I@@EB@I@@HB@ a#I@`AB@ #I@4B@-)I@ (.B@ %I@&B@@g$I@@GB@`.I@@B@@W3I@B@=3I@@B@@p6I@B@78I@A@`6I@`A@ u2I@ A@1I@LA@8-I@A@`,I@jA@[0I@A@ 9I@@ͻA@z=I@ܷA@@BI@aA@@QI@A@VI@A@XI@ uA@ bI@ A@fI@@A@)lI@ (A@@oI@`BA@vI@A@ xI@$A@zI@ A@ I@A@aI@ A@I@A@I@ܕA@`I@`A@I@oA@@љI@uA@VI@qA@I@zA@qI@zuA@=I@^A@I@UA@I@QA@`I@DA@@I@0A@I@ 'A@I@A@4I@@#A@]I@@>(A@qI@8&A@ 8I@ A@ I@A@I@ A@ ¶I@@A@@I@RA@`MI@qA@vI@`V A@I@ A@BI@A@$I@2A@ I@`v7A@`I@e8A@3I@&1A@I@@*A@`I@ &A@I@ A@ I@A@I@A@@I@A@I@eA@I@`[ A@J@ A@J@ A@qJ@BA@J@@@@J@8@@`%J@@@@(J@@@@+J@#@@ L.J@@@%J@@@ 'J@@{@@z,J@෿@@.J@u@@ +J@ Dz@@`.J@ @@-J@3@@0J@ C@@ 'J@@@(J@8v@@@J@n@@@"J@`]@@u!J@`F@@(J@[@@@7(J@ u2@@ *J@-@@ 'J@u1@@ J@+@@VJ@*@@ J@ L&@@J@@@) J@`@@J@a@@`RJ@(?@J@y?@@J@@?@M J@?@@ J@Q?@8J@2?@kJ@`ó?@fJ@?@`!J@@?@"J@2?@(J@4?@o/J@?@2J@ ?@ 3J@?@@>J@ ?@BJ@e?@ DJ@@?@FJ@>?@FJ@f?@ LJ@?@QXJ@?@YJ@Q?@z^J@@?@fJ@=?@4iJ@@r?@mJ@y?@nJ@ Qj?@ QrJ@ b?@uJ@=[?@`2}J@2D?@͂J@`[Q?@J@`S?@J@ b?@J@[`?@@J@`2e?@ 8J@)l?@@J@`?@`J@?@@J@?@ۘJ@?@@J@ ?@`vJ@;?@0@@J@)*@@J@`[@@zJ@`R@@J@ S?@ J@4?@@J@`?@@J@2?@uJ@?@ HK@?@@>K@?@K@?@8 K@෯?@`2 K@?@K@P?@WK@@T?@`fK@O?@@%K@O?@,K@C?@`1K@];?@ u:K@2?@:K@ 1?@z=K@o!?@B=K@?@@K@ !?@` IK@/?@NK@o/?@3RK@R?@@{SK@G?@[K@ >@fK@>@pmK@Q>@pK@z>@xK@`>@|K@@>@`K@>@ CK@ ?@jK@`?@K@ >@ LK@4?@WK@>@ K@>@QK@ H>@K@>@BK@|>@K@>@ ǺK@ >@`VK@|>@K@`)>@ K@ \>@@K@ >@`2K@|>@BK@ >@`K@ >@K@஥>@K@>@ 8K@P>@K@~>@K@]}>@`fK@`L>@`K@9>@`K@`#>@ K@`>@]K@ =@K@=@GK@=@=K@=@)K@H=@7K@ †=@K@@p~=@-K@b=@K@[=@ K@*h=@K@v=@K@i=@@K@4=@2L@<@;@L@;@`BL@ ;@@L@Ή;@$L@;@L@;@zL@@;@L@`_;@L@ Y;@@IM@8>@ M@@9>@`M@Q8>@M@=@ ON@[=@N@@X=@@FN@=@N@z=@kN@`W=@N@@=@`GN@<@.N@<@`*N@<@51N@zt<@DN@<@@GN@ [<@@9N@y<@1@yN@)'>@ N@>@@ O@C?@ AO@n?@#aO@@Y?@`tO@`fF?@O@$@?@O@@42?@O@e>@O@w>@@­O@ N{>@`BO@@ >@O@`5>@ZO@ ~A>@`O@@d>@P@L>@P@7>@@ P@`܎>@ P@>@P@@\>@vP@'>@@P@9 >@@P@T>@P@>@"!P@=@}%P@ ->@l(P@5>@ +P@!>@ /.P@Z!>@10P@x>@@2P@ N=@`3P@=@|:P@;=@v@P@ =@@_DP@@=@ HP@=@IP@=@;KP@ =@NP@@=@ OP@@P=@PP@@ۿ=@AVP@ =@@`P@v=@wcP@=@dP@=@gP@=@iP@A>@:lP@@>@jP@@X">@@nP@=@@.P@J=@!P@`_=@`P@c=@P@@Y=@`P@(=@%P@@3=@@QP@x=@P@@X"=@P@g=@bP@=@@P@ O=@P@`=@@`P@S>@uP@=@-P@``[=@@GQ@@X<@_ Q@gu<@8"Q@@X<@0Q@J<@`4Q@޼<@ 8Q@n<@@8Q@t<@`:Q@ <@RCQ@ =@3BQ@`f=@*BQ@`;=@FQ@IO=@@NQ@ KO=@OQ@@XO=@)SQ@ \O=@-TQ@w>@@^Q@ s<@Z>@`g=x{>@`g@ԅ>@ף>@ 9>@>@>@Z>@$`C>@@2>@ @>@ 1a>@`Ce,[>@`w@Z>@࡯`K>@ 99>@@z`R'>@`q!>@f>@a `>@y3>@৵>@=@pj=@ g=@A=@j=@@.==@ 8g =@ q=@@]#a=@ @Y=@ v1T=@: #=@@=@x.=@<@ *; s<@ F<@2n<@`<@?H<@`0<@ @J<@H`=@8/@=@U +=@=@`x $=@;=@z<=@q\=@@*=@)C=@N!=@ k=@K=@\n +>@`oI/>@`ffG>@]n`)[>@= x{>@`g(@E@)@ E@P(@E@(@E@4(@ (E@(@ E@(@$E@(@E@ \(@@>E@4(@E@ \(@aE@;(@E@`[(@=E@Z(@ uE@Y(@E@(@E@(@E@w(@E@i(@`ME@`'(@E@(@E@F(@2E@%(@E@F(@ E@(@fE@e(@`E@ (@E@(@ E@ (@.E@(@RE@(@`fE@(@E@@r(@@E@@P(@ E@ (@@E@)@E@)@RE@F)@`E@@g)@`VE@)@E@)@?XW@` ?XW@?X@%?6Z@ 6? A@ ?V@@?@?@ ?@ Q?@?@ܵ?@a?@@ё?@?ǘ@`V}? j`0MA@ 6.@AL@ a@@J "L@9@{L@`9@aL@9@L@:@UL@f:@ e L@@:@ L@@:@L@ C:@ L@ 7:@ &L@1:@3L@`8:@R'L@::@`.L@a:@ D4L@W:@l@L@`Y:@AL@#Q:@`;L@Q:@ 3L@`G:@=L@9=:@`N;L@ V$:@/L@4:@)L@`*:@.L@$:@1L@@:@`;L@ 1:@`Y1L@ :@@6L@:@`3L@`9@k9L@9@`/L@@.9@&L@I9@"L@9@`˦C@ a@@QD@ @@`qD@x?@`A6E@>@ }E@ O>@`E@ +j>@CE@#a>@nE@ O>@E@=@ E@u=@[F@4=@^F@0=@#F@T<@@F@``<@SEG@@=@`YYG@=@ G@<@G@`)<@ G@2<@@G@@ۏ<@5H@ [<@DH@Qh<@ DH@qL<@OH@g5<@LH@H <@@TH@v<@`H@h<@bH@@;@ _H@;@iH@;@@?pH@` ;@`qlH@ ;@`6hH@ O;@)cH@;@ hH@@;@UlH@@3;@mH@@;@ sH@@;@ {H@;@H@`Y;@H@t;@eH@4q;@`H@`Yq;@ H@e;@ H@wg;@H@S;@RH@@-X;@ OH@!2;@ H@@-8;@` H@3;@`H@`';@@H@ !;@IH@@^-;@`H@8.;@H@;@ %H@@:@)H@Q:@`NI@``:@ &I@ &:@I@@:@I@:@H@:@I@࣐:@I@ xv:@`I@@i:@@I@K:@`6I@(:@9I@-:@`I@":@`I@@ :@@?I@`-:@ I@@42:@^H@D#:@ H@ %9@tI@ 9@I@`:@I@9@ I@@9@`NI@9@` I@ 9@`I@@W9@/I@t9@0I@i9@ >I@h9@`BI@s:9@`JI@9@{SI@;8@]I@8@rcI@?8@iI@\8@ulI@@8@fI@@7@ J@`6@JK@6@`K@I6@@uL@I6@@uL@ ;5@ I@2@ G@1@F@ 6.@?F@Te1@+F@i1@`/F@ti1@F@ W1@ F@`_1@|E@`N1@`qE@`6P1@`qE@[1@ gE@X1@E@ e1@ `E@D1@}E@@ 1@@E@l1@E@U1@ǠE@N1@ E@|C1@ &E@ 61@ਓE@=0@ 0E@I0@`E@@0@E@0@ aE@0@`E@0@`E@ 0@'eE@`0@1\E@40@^E@ N0@@ZE@10@EE@`0@ &FE@@1@ 7E@1@4E@@Q(1@-E@-1@.E@1@(E@vh1@r#E@t1@D@1@`D@` 1@D@|2@`D@ 2@eD@82@D@ E2@(D@`G2@ٸD@e2@ UD@#2@^D@2@ OD@D2@D@2@͛D@ ,2@D@2@SD@}3@D@@$3@MD@@ C3@@yD@ U3@xD@ǀ3@#aD@@͛3@ &fD@@3@` eD@ x3@`0]D@3@SD@*3@aRD@3@BD@?3@*D@4@ D@E4@tD@E4@C@`X4@C@Ɛ4@jC@4@`C@4@@C@4@@C@4@ΪC@94@|C@$P5@`˕C@wg5@`qC@#5@ C@@5@ C@`5@C@5@`C@@P5@`xC@@P5@ C@?5@C@ &5@UC@ x5@sC@j"6@C@Sg6@@WC@@_6@C@@6@K}C@6@ =C@26@{{C@6@ {C@@6@`mC@ O6@@WsC@ 6@kyC@c6@{C@J6@ OrC@e6@gC@ 6@ cC@ 7@fC@P7@@bC@,7@ LC@7@GC@ 7@8C@*7@7'C@7@@pB@)8@@B@@d88@`B@48@`B@r+8@B@,8@B@L8@ B@@8@`B@I8@B@I8@^B@O8@B@@8@@ۗB@8@ `B@8@2B@@8@ൠB@8@ B@8@ &B@`.9@eB@@^M9@@B@@p9@biB@9@9eB@Z9@@ofB@`9@@\B@ 9@SB@9@@YB@ 9@aZB@`6:@`UB@@ :@`KB@@:@?B@@:@ 'B@$:@B@`ܮ:@ B@:@ ,A@v;@A@@O;@A@p];@A@;@`A@<;@A@<;@ A@@;@@A@@;@ޔA@<@A@<@A@` <@A@<@@nA@<@kA@M<@@eA@@<@@\ZA@#<@VA@ <@UA@@<@NA@d<@`0MA@w<@PA@,<@\VA@?<@ ^A@a<@egA@P<@BeA@ 2<@`HhA@<@jA@<@ oA@ ~=@tA@;=@`{A@@(\=@{A@@\=@A@jR=@`A@@QH=@A@>=@A@3=@ B@Z0=@@)B@`=@JFB@D=@`kYB@M=@@._B@@^=@ZB@=@ B@=@`YB@>@[B@`=>@@pB@V>@ %B@ w>@@-C@@>@rB@ r>@B@@>@ƩB@@/?@B@i?@`B@k?@|B@Œ?@UB@ ?@`AB@ ?@`C@?@`*C@?@@LC@?@`/nC@v?@C@@@ NC@ @@`˦C@ a@@1O(@w&k0@ 0 0@ǁ00@ ~0@^ 0@ x08.0@@Wc0@Q80@L00@g%0L0@/p}0@/20@`.h0@tz.0@S7.@ 0@,.L0@;.0@@2.ͫ0@`.`Y0@T-k0@v-i0@`l,`֣0@ ,0@Ϋ,`0@@3s,:0@+@.G0@}+<0@$+`20@ +@J0@l+[/0@Z+@P0@`*T&0@*@Q0@* &0@M|*F/@ \/*@*/@W3*@/@*T.@) /@p)q.@).@`) b.@@)@.@)j.@)j.@)&K.@ 1(@.@( -@}(Y-@K(dG-@r[(@ 7-@ g(9,@2(ົ,@@X2(ߛ,@(`Ɏ,@`/'U,@ (`f,@`'+@'`ݝ+@@I*(j+@(3R+@`r'=*@`C'*@'$*@'`*@ p'W*@@2'*@ 9' F*@&&*@@ &;)@ &)@`r&)@&` )@C& t)@r&m)@Q&I?)@d&)@w&Z(@ %&-(@ &(@`'(@'(@`'@d(@2(@(@Ȱ(O(@n(`(@n(`(@`C%)(@CD)(@ʮ)(@) )@)` )@)`(@W*3(@E#* )@U*.)@n*`G)@`l+U)@ N+ sZ)@o.^)@ .@')@_/)(@50(@v0`(@0 N(@v0f(@ +0(@0t(@D0@)@@0C)@@A0+)@~00)@_0)@0 B)@/ +)@ш/-)@#A/)@ /D)@` /S)@]/`5)@=.)@ .)@.?)@`r/@)@Q/h)@/`lA)@`P/)@tY/w7)@`//}2)@T0t)@h0iC)@SW0@2)@rk0&)@ x0@'=)@W0?)@"0`I`)@H0O)@0`ff)@0p})@0T)@x0`p)@ 10D)@ 0@d()@A0&)@*0 l)@0&)@Z0*@@W0R*@n/Q*@&/*@`"/`*@/*@Q.@*@ք. h*@l.@*@d.+@ 9.1+@`-*@|-c*@@t- ߼*@K-Z*@@%-*@,p}*@Q,r{*@+Ϊ*@`+@*@`ݝ+ *@`+X+@ +""+@@+=*+@,c*@,+@@-`D+@`2--W+@`L-S+@`p-@P9+@z-@N+@-r{+@O-`}+@ $.@+@ڀ.L}+@G./+@.`+@.`h+@O. -+@0.+@Œ0J+@`k0`]+@0@n+@@0K+@`C0dg+@0+@#0+@}0x+@Ȁ0+@͋0+@`C0=+@0+@07+@Y0`L+@ ؒ0,+@•0,@k0@^M,@ x0@`,@v0J,@0N,@0j,@0,@0/,@P0#!,@0+@ 0\,@0[,@0 H,@@1,@@-1O-@U1 v-@m1t-@Ml1e-@t1R-@1 B-@g%1 -@*01.@0.@P0`/@`0`x0@ 0 0@ K@$(zK@`:@K@fK@dGK@b K@GaK@_ K@U_\K@]K@w\8K@X8K@ZS`VK@MK@=JK@kI=K@H`kK@`KH@K@`EaK@`BK@>K@: lK@@%5 K@@1@K@`", K@`f&K@ %GK@`#K@K@` K@`!=K@`'  K@`#K@`' CK@,K@0 K@S4K@@6K@@%5`K@@1 K@@1QK@3K@@7-K@@:`K@`B>@#K@` A K@,CK@`CVK@`D K@`EzK@kILK@MqK@MK@/LK@N K@RK@X@3K@\`K@```MK@d@K@f)K@$( aK@ 8'K@`t$aK@ `K@`IkK@K@@  K@ 7K@ K@  K@MBK@o K@bK@"K@K@_ K@fK@.K@̾K@d@K@ K@v@pK@ K@L̾K@̾K@`BK@`zK@`mK@`K@`B)K@@@ͻK@@ aK@@3`K@@{K@`"K@ K@ ɥK@`K@`'ܷK@BK@)K@µK@@K@K@K@K`MK@ǘ@K@ @K@ \`K@)K@aK@ ?K@ Є$K@@ K@ ~K@/{` K@y@ѱK@#yWK@_v@K@uq`K@6kK@g༳K@eqK@%d`VK@%d`K@fK@gBK@eK@`` K@[ܷK@LU$K@|P7K@=JK@`mEK@N@K@~;K@@8)K@@6 ǺK@@4 aK@@4 K@@%5qK@@8̼K@`<̼K@`BK@`_G CK@/L CK@QK@VK@w\ CK@Ga)K@g K@Bm)K@rK@vK@/{LK@~½K@@`BK@ Є̾K@oK@ K@  K@ྎK@K@z@#K@XK@@ aK@@WK@VK@`K@FK@ K@@U`2K@@`2K@@PK@`K@`KK@K@K@K@`K@@gK@VK@S1@tH@1@tH@1@@vH@@p1@@vH@ H1@ vH@1@vH@Z1@RvH@1@vH@z1@`wH@1@GyH@`f1@`yH@ 1@@W{H@1@ |H@=1@~H@ 1@)H@1@ H@ 1@ H@p1@H@z2@`)H@2@FH@2@ H@F2@]H@2@ H@42@@H@`[!2@(H@@%2@̎H@ &2@`H@&2@࣐H@%2@H@`2%2@`H@(2@(H@@*2@#H@`,2@ H@ \/2@MH@`'02@H@`'02@]H@ \/2@@H@ ,2@H@F52@`H@z62@H@@>82@H@ @2@஥H@ H2@H@N2@@H@`[Q2@ \H@ SU2@H@Y2@`[H@]2@@H@` a2@@GH@ c2@H@`h2@8H@k2@@H@k2@H@j2@ lH@ h2@@ѱH@`g2@ uH@g2@ͲH@ j2@`H@m2@H@o2@ H@q2@@GH@x2@ H@y2@H@ {2@ (H@ 2@@H@@g2@۸H@` 2@`H@@͋2@`H@`]2@@WH@`]2@`H@(2@RH@`2@ 8H@Ô2@෿H@@2@ H@2@H@2@`H@`[2@BH@2@ lH@`է2@H@2@`vH@z2@H@2@@H@2@@ֽH@Z2@@H@2@H@q2@H@|2@`kH@@>2@H@s2@FH@@2@H@2@H@`2@`H@@#3@{H@j23@H@F3@H@ V3@`H@c3@@H@y3@ yH@@ԕ3@H@3@@H@3@ rH@@3@`ijH@`3@@H@3@DH@``3@"H@3@`H@`4@\H@ 4@H@t4@ 0H@@.4@H@@p4@_H@`54@ZH@4@@pH@ ,4@H@5@H@ 5@߳H@`6 5@@H@25@H@dG5@sH@@W5@KH@ޜ5@`H@5@ H@6@H@y6@H@ َ6@`*H@@(6@ H@w6@|H@@S6@WH@?(6@IH@`&6@`4H@`6@ H0H@5@.H@@5@,H@Ǡ5@9H@95@?H@`Yq5@ IH@$ 5@ ?H@@ 4@IH@4@DH@@^]4@ %'H@J4@` H@ x&4@P!H@4@ H@`)3@ H@3@H@3@`)H@y3@@i H@Q3@H@2@H@2@ 7G@ 12@ aG@ V2@ZG@r2@G@2@`G@`fV2@@G@1@`G@s1@@G@l@1@2H@ .1@;H@@1@ = H@o1@sH@0@KH@ 0@#H@@0@./H@*0@5H@y0@\>H@`0@NH@ *@zF@0@`oG@x0@TG@/@\^G@/@jG@P0@`lG@H0@`oG@Y0@kG@ ~Q0@cG@9m0@XG@Cd0@tQG@0@F@RV.@zF@]+.@8F@ .@F@ -@F@|-@F@-@`F@*-@-F@g-@2F@`_-@F@^-@`F@):-@ \F@3-@@pF@G!-@F@`-@F@`-@F@,@@F@ ,@8F@%,@@F@z,@F@FC,@ F@+@F@+@F@+@pF@0+@@F@@U+@F@`+@`2F@ a+@ F@;+@qF@`#+@F@+@ F@]o+@ F@+@2F@ +@@F@`դ+@ F@32+@F@'+@ UF@I?+@ F@E+@ F@.+@ %F@+@`F@ y*@G@@J+@ =G@1T+@mG@+@G@ *@ yG@ *@ &G@T*@I/G@jb+@ 9G@p+@DCG@``+,@ >G@ Q,@l8G@ N,@"9G@&-@@1G@50-@`7G@#-@ AG@-@@NG@5.@ TG@l/@OG@`L/@ZG@0@TG@@Qc@'_Ld@@ !>L]ht@Wc@H @c@lA `c@ }c@}@c@ htc@ եc@p @Wc@H 3,d@EC#<(d@@#@<%d@n" d@P" d@j!`d@7!`d@@ !d@$ vd@@ @d@ `d@@r d@ݞ d@ d@!d@@Z1!X d@ N!d@!@d@7!B!d@! %d@"`(d@S"*d@" 6,d@0#3,d@EC#vc@mc@`0 ec@,@fc@@`gc@sfc@<_c@v [c@@6Xc@`Vc@VXc@;JVc@ Wc@ *"]c@/ac@51@ic@`lc@nmc@{rc@ sc@G wc@H@}c@ `~c@pF}c@*}c@5@}c@`$|c@@T61F@$@zF@ s$@F@@%@JF@ 1%@ G@}%@z,G@`d%@`Y9G@@`%@SG@ %%@`G@@ &@G@)\&@G@]&@`G@ 2&@H@J&@z,H@&@`SH@&@FvH@}&@`H@&@H@`&@cI@ '@#I@-'@@?I@'@II@@X'@bI@`)'@`I@Щ'@`I@࣐'@ƉI@ &@*I@^&@`˕I@H&@I@%@`_I@*%@ >I@$@{I@@{$@I@ B$@SI@%@bI@`#%@ I@ +$@ٴI@$@@ӮI@$@wI@@P$@)I@$@*zI@w$@@XrI@@J$@isI@@`$@iI@@.W#@kI@"@bI@H"@YI@^"@sRI@Ec"@aRI@*"@%@`xE@&@ "?x0@QhAPr@@ "6a:^=@@06is=@)6@z=@ "6">@L6`);>@J6K>@ W6>@K6'?@YR61L?@ j6ɏ?@/7@?@z7`?@@7 ?@`<7Z?@p7?@+8@@u8 a@@9?@9@@x9``?@m9?@@K9?@9k?@t9R?@Z9@ ?@9Z?@`e:@^>@Tv:>@׳: >@:A>@: >@;b)?@ 3;@z?@$P;@?@@Q;f?@ ;`@@: .@@/:`*@@@;:Pr@@@:i@@$;@XR@@;`E@@%/<:@@$P<J6@@p</@@]<` @@`<?@N<?@<(@@`<@@Z< %?@<`?@<@z?@<?@6!=>?@ }= ?@@=8?@@p=2?@ 9=?@S=`?@@=q>@> O>@`>`N>@`l>@=@`Q?` =@q?=@ ? g=@`I?@e=@ a? =@ @w<@`+@@<@~I@ %<@ h@w<@~q@;@@ww;@@ե@:@@`r:@ !@@5:@@9@ !@@Q9@`@9@@9@@ 9@@gA`9@A<9@@@9@3@8@`[AA8@`AB8@XA8@A7@A`7@@@m_7@A]7@@ Ag7@BA7@ A 7@gA@ 7@ A6@&A`6@`lA@6@@ 6@ @ 6@@A@ڐ6@`w@x6@ JAK6@@A#6@ A6@`A`/&6@A5@:A@z5@`+A`5@2A@5@-A@I5@w7A5@.A`4@e/A@4@ 4A@^4@":A4@;A@4@m8A@u4@`=A2c4@`GA`_,4@@ WA4@Q`A@^ 4@egA@ 3@QhA3@Q`A3@>aA}R3@KA [3@ @A@-H3@r4A@03@B6A U3@0.A3@`+A!3@&A U3@V,A 3@,A2@`Z1A 2@`-Ac2@ \A2@A2@`A`62@h A2@` A2@`l A|2@` Ap2@ Ax2@ A@}2@@,AIO2@Am_2@`@ {2@@|2@@rK2@ @%2@`@2@@@1@>@S1@@i2@@@2@ +@ 2@@@ 2@ @@ 2@Ä@71@@R@`01@`@1@&@1@@c1@@h@x1@`e@ 1@`]@b1@Y@ 2@c@!2@c@J2@@O@gU2@>@wW2@@@62@+? y2@ 8?s1@@?1@> P1@g>a*1@V>@0@׃=@40@@:M=0@@=0@@ =0@<0@ < ~0@Q<?x0@Z<@{0@ <0@@u< O0@ <0@L]<d0@!S<@ 0@`kB<0@B<0@7<`0@T6< 0@*+<@0@L-<0@#<0@ [<@Q1@P <11@`< %/1@3<81@><B1@ <<@PY1@`<<`/f1@ Y<@Wc1@Ml<jR1@`w<@(\1@2<h1@`e<c1@~<1@< ҧ1@<f1@m<`/2@<`֣2@<`02@ 9<j3@<#!3@<K3@<9=3@<`/F3@ a<dw3@ <Ƒ3@<K3@%m<@3@x;4@@:`\4@@}8 ,4@ i8`c4@u 984@Ga9^4@u9ơ4@ք94@ 294@`94@-9^4@@4": ~4@b:`4@r:4@`:@=4@ :4@`s:$5@ :=Y5@:@ 5@t:k5@a:S5@U:5@#:5@:5@:46@_:-6@m:Av6@@ 7: x6@9 6@@96@96@9 6@9$6@ [9@'6@Fb9@7@ L9Tu7@@AG97@yU9@7@Tv97@9 8@\98@9 x&8@%9D8@Y9@d8@E93r8@M9#8@W98@9t 9@ 9@&9@ 9b9@`9K9@9 9@/99@8@(\:@o8 #g:@d8@v:@8:@@o8c:@C8@:@@7:@@ 7@Q;@74;@ ,7 O;@7Te;@ d7B;@@4b7;@`J7;@@d87;@@:7>;@O*7G;@7;@7 H;@6A<@6@^ <@6 <@S6`/&<@ 6 %/<@J6p<@ؒ6j<@76<@Uu6@<@b6<@7P6e=@@c96^=@@06 N<@<<@Ǒ< y%<@<`;@@<;@t<G;@<;;@<t;@ J=Y;@ a{=;@`H= S;@#>`0e;@@ >a;@P>u;@O>j;@Eg>@ڰ;@q>@;@ ><@>`<@t> (<@> %<@Dt>A<@S>`7<@@M>`=<@WC>r<@L><@ >=)=@=@Q(=@==@ =*=@)=O=@|=K=@G=r[=@Ws=`k=@n=t=@tZ=BU=@ ==@w<<@ < N<@< 1;@X@ E@ (1=HS^k,`` <@,`<@(,@<@K,$<@``k,a:<@ g,rK<@,,<@,@<@+κ<@`O+m<@ +ē<@`/+ z<@7+f<@ +@9<@G, /<@,`` <@F@C@ 7@ C@-X@ fC@U@߻C@ @C@ |@@oC@[0@@C@L@[C@@@`/C@bI@ C@ӆ@JC@ @@pC@ M@ `C@B@C@@h @ C@ M< @C@@`GC@- @`C@r @ C@I @C@y @ C@U @zC@` @C@F@C@@./;@@/e;@`/H;@@j/2<@h/s*<@.l <@M.T&<@@p.;@@./;@`0 ;@ 0G!<@w0Y<@0d<@H`0t<@`<0<@ 80`<@@]01<@`Y0[<@uY0`L<@ [0 <@`0 ;@@ ?`kC@`o?`pC@ \? oC@G?{C@?`C@`.?@C@P? %C@ߛ?MC@)\?ZC@?@qC@@ ?`kC@΋+ x<@O+<@ V+<@T+@ =@`0+@W#=@O+=@`*==@Q*B5=@ ?*$=@*7<@΋+ x<@q1`z<@v1w<@1@.<@1t<@ 1<@w1<@1`_<@@:1<@1w<@1`{<@q1`z<@`].@ C@`.w@ %C@t@@C@ @ C@t@wC@aj@`HD@@D@ @$D@@,@`D@`>@@C@ f&@ ,C@X@C@`].@ C@?`oLE@g$? >IE@@_,?9E@ ? 7E@`?E@?? 7E@l? /E@@@.E@@7E@@6@-E@o^@ N+E@9m@@i3E@N@ 'B@@33B@ B@@`B@  rB@B@@""bB@N B@&`NB@NeB@`J$EB@DB@[yB@s ,qB@@33jB@`Ce1\B@d*jB@`q`HhB@W@.WB@XB@`]n_B@M< [B@` ]B@ ?`^B@`q\B@y`6@B@'5B@>B@ `2B@ӆ@B@ *JB@@[ B@lA@ B@N &B@^ =B@ ;B@ AB@HAB@_@IB@@-PB@ @\B@ldB@`[qB@@neB@@mB@K`B@o`0B@јB@ `B@@ B@`B@ cB@31B@bB@0B@  fB@ `C@C@`C@C@YSC@"C@p:z6C@Q=9C@V42CC@ D+` IC@@ZC@'eC@@rC@-@@C@)C@v UC@ޝC@ \`/C@`DC@ `C@@#A C@,߻C@ C@""C@ C@ fC@`t@D@`D@B D@D@`f& +D@`d`8D@* OBD@N[@ID@01TD@ZQ``D@`2`mD@ |D@D@<`0D@D@`d@@D@ M`GD@BF D@ZQ@'D@@`D@`D@_lD@(D@d(D@H@dD@D@BF D@. D@S`D@ !uD@<D@Y=D@` D@^D@y`D@ D@ D@rD@]`D@`D@'D@``/D@D@D@H @D@@p D@a* ;E@. E@%_ HE@g {E@@>!`E@@!D@o!D@! E@!E@@9!c(E@$@!B-E@&^!#E@@ !E@1!e'E@!#E@c!+E@ш!+E@@P!6E@@!2E@k!`;E@o!@E@@L!:E@p!`@E@ҧ! IE@0v!TE@f!9UE@@T!`ME@!@QE@"BE@"HE@@+"IE@! bE@@T!`hE@!`jE@@d!`NcE@!#"``E@E"BeE@ 4"biE@H"JnE@^"@yE@@\"`0uE@@}" vE@0" vE@_")E@J"൘E@@ "DE@! gE@!@WE@ͬ!1E@r!BE@@2!E@ >E@ rE@Ϋ ɯE@Ѩ `E@n OE@n E@ eE@s{ E@@ |E@@ E@ف mE@- E@@vE@Ag{E@@`E@jE@ )E@@K E@@BE@l`NE@?H`E@'E@!E@'[E@].E@B`E@f@E@ >E@ OE@@dhE@8E@E@ @WE@'UE@` gE@ @pE@&jE@4E@`tE@`@ôE@; `E@ @ӾE@`q rE@8 `E@ p E@ E@`E@ ǰE@ E@@@E@L]E@z(E@@dE@J~`E@ ѠE@E@`r+E@਋E@ `/E@ E@ `E@ ,E@V4yE@{E@nE@9eE@ >iE@ +ٿeE@`mӿlE@` ȿdE@.``E@pXE@?`[E@?@VE@`ff?@XE@? 6XE@`?_E@`o^?@ikE@N?kE@@E#? HXE@?`oLE@S@A@xT@#@ZS@e@ZS@v@S@@e @`S@ @@S@@ @S@`@HS@ 5@#S@ @)S@ @9S@I @VS@H!@S@$!@7T@ "@@T@!"@@T@"@nT@<"@z T@"@@N T@$#@T@$#@T@-#@T@@"@@T@"@T@"@T@@"@ T@@_L#@ T@;#@ T@*#@ S@I_#@S@#@T@@#@ T@;#@cT@'#@T@4Q#@T@@#@ > T@#@T@@N#@ T@@y#@R3T@ē"@ /T@"@1T@"@@3T@!"@@9T@9"@,=T@l"@7T@@6"@@;T@M!@>T@|!@UET@Q!@PT@`o!@OT@!@UMT@D$!@MT@@!@wKT@9 !@ZHT@ @NT@ @!RT@9 @RT@!@kUT@@?!@ZT@ @@_\T@@yU @`[T@@E @5YT@r[ @r[T@@- @=^T@3 @/fT@W@hT@M@@mT@@kT@`@gT@`8@eT@@jT@@mT@~@@gqT@ @`tT@@h@vT@@xT@@@qT@ v@@OjT@ @H`T@X@GT@2s@(T@A@YT@@ T@`gE@S@@@8S@@@ S@ @S@@@OS@ ~@`S@<@@S@@@S@e@@nOy1@`DO@*i1@=@JOy1@KO1@qLO1@8MO1@ (NOe1@ NO=1@`OO=1@`ROO]1@`OO1@OO 1@ PO1@$PO`o 1@@PO !1@PO#1@`OO S%1@ OO&1@`OO@>(1@fOO)1@OO`)+1@NO,1@NO`-1@`BNO'/1@NO01@NO{21@MO31@LOg31@LO{21@KO321@@3KO`21@@JO31@IO 31@IO{21@vHO@11@GO@11@ GO01@8FO01@EO/1@pEO.1@LEO`I-1@`2EO+1@EOq*1@ EO` )1@DO '1@DO`f&1@DO%1@qDO#1@`DO3"1@@gDO 1@DO1@DO]1@DO@1@LEO1@EO1@@FO1@ FO1@`vGO@>1@$HO1@HO 1@@IO`1@@GJO 1@@JOy1@SOz51@@gTO 61@TO171@TO81@TO :1@TO;1@TO@<=1@ UO\>1@`VUO?1@UO@1@UOA1@ LVOB1@VOC1@@.WO@D1@@WO E1@$XO`fF1@XO>G1@=YOG1@YOH1@`ZO@*I1@ a[O=I1@ \O I1@\O`H1@`]OH1@z^O H1@ \_O I1@Q`O eI1@4aOI1@bO J1@bOqJ1@`cOJ1@h1@hO@*i1@ hOh1@@gO`g1@$gOf1@fO2f1@`eO@e1@BeO e1@qdO@d1@cOc1@cOgc1@bOb1@aO b1@=aOoa1@`O`1@$`O_1@o_O \_1@ ^O^1@ ^O;^1@p]O@]1@\O\1@\O[1@ C\OZ1@@\O=Y1@[O@>X1@ZO W1@`kZOV1@@YO ?V1@kYOFU1@=YO`S1@-YO`R1@XOGQ1@XOP1@XON1@[XO@M1@XO`]L1@@WO=K1@fWO=J1@`WO=I1@VOeH1@ VOG1@pUOF1@TO@F1@VTO SE1@SOzD1@@{SO@{C1@ SOhB1@`RO`A1@`RO @1@@QO?1@PO4?1@-PO>1@ OO =1@OO<1@oOO=;1@OO@r91@ PO`81@PO 81@aQO`71@`QO`R71@{RO61@SO 61@SOz51@P4No+@4rN5,@$xNo+@N+@4N %+@ yN5,@4rNL,@sN +@$xNo+@jʺNs')@fN*@ ';GPampN`)@@XN@6)@N )@`N})@=N)@`N)@`ɣNB)@ȣN)@N`)@;N)@_N`~)@@;N *@:N*@/N@ *@؟N t*@{N*@mN  *@ N *@VN*@ښNa*@`_N*@N*@#N@*@`N *@gN`*@N*@@N`*@N)@pN`)@N)@ ɏN@)@@N)@cN9)@N)@ QN@)@HN))@@N)@N )@N)@gN s)@Nx)@`N))@N)@sN)@`N>)@`_N)@@NH)@N)@`-NR)@TN`)@BN@)@`8N)@@ږN)@7N o)@їN)@@N4)@@Nl)@@N`)@gN s)@HN)@N)@MN`)@4N)@0N )@`N@*)@`2N)@N@)@@NN`)@Nz)@fN b)@HN)@xNs')@ N()@|N))@lN c+)@N@,)@`"N -)@cN@+)@ \NX))@xNs')@N{9)@Ny9)@N7)@ N4)@@N`3)@۴N@/)@5N1-)@`ԷN.+)@N ))@NR+)@ʺNk.)@_N^/)@@ŹN 0)@N`3)@UNS5)@N7)@N{9)@$N`H)@N E)@}N@C)@`N A)@@ȱN8@)@ݲNS>)@}Nf?)@`mNB)@N@G)@fN I)@N`:J)@$N`H)@@Nr)@ N`k)@Ng)@`KN(a)@@N_)@N^)@3N `)@`]N e)@N g)@Ng)@Ng)@sNj)@Nm)@nNr)@ N`v)@Nw)@ N`v)@`8N/w)@`pNx)@qN` u)@@Nr)@ FN)@ sN)@KN|)@N`c)@tN)@ N`)@`ՑN)@N)@ N;)@N)@ FN)@`NB*@eNC*@ND*@`[NF*@`N G*@{N I*@=NI*@@N=J*@NK*@ N@M*@N@N*@ LNO*@@.N`O*@N :R*@N@T*@@NV*@ lN` Y*@N)Z*@@N J[*@ Np]*@)NN`*@aNb*@`N`d*@`)N@f*@N@>h*@Ndj*@N@m*@༣Np*@`N`s*@@{Nv*@N)z*@`N`I}*@N`'*@@3N&*@͢N%*@{N*@3N*@ NӋ*@N@*@N`T*@aNZ*@࣠N@3*@ܟN*@HNɔ*@@N*@N*@RN*@N*@`̝N*@N`*@LN*@N*@ Nd*@`N*@ CN;*@ N*@༛Ns*@ aN s*@ N@*@@N@P*@@GNٽ*@@N߾*@N`'*@No*@Nh*@ \N*@N*@N%*@N*@ N` *@NRv*@ lNs*@࣐N p*@N cn*@-Nk*@aNh*@@N`ff*@Nc*@@#N`*@ QN (^*@Nq[*@@NX*@NU*@ N`R*@=N@UP*@דN \O*@@gNN*@NK*@NI*@N@F*@@N D*@ (NC*@`ܖNFC*@`NB*@@5@ @`OC@ 7@8@)A@ww@A@Ut@@1A@`p@ 40A@e@`@@@*@@@@@@ @!@@@ [@@ @`3@@ @@@@B @`@@R @ @@B @,@@ @D?@ @8?@` @r?@/@?@ V @t?@ @s?@: @I?@@[@9-?@@\@g>@n^ @`W>@ @>@`z @@W>@Sv @@^>@ @>@ > @>@ @``>@@4>@2@#>@ o@>@ @@>@3@@=@@=@ y5@T=@ b@`/=@@b@=@<@=@=@=@F@z=@0@@XR=@@#A=@̌@@=@`g@@z4=@@_@=@-@@<@;@<@9@<@Ʊ@ ~<@~@Gq<@&@@^<@!@U<@`g@i3<@c@*<@ @l<@t@c<@>@;@U4@>;@@m@?;@ @1;@ ,@;@U@;@@ ;@z@@t;@@Bu;@U@ K;@}@<;@k@@-H;@`2@$;@@x@ V:@@ :@@:@ @:@Zp@`o:@O@is:@@v@@ :@Ʊ@@ :@`j@@'M:@@\N:@:@b:@ N[@e:@@@-:@f@`_ :@J@_9@[@T9@{@49@ p@ 09@_@@K9@`@@PI9@!"@99@}@&9@|@ 9@@7@@Q8@ @8@@V @8@b @ 8@j @u8@ @Y8@@ @@^-8@ء @#8@l @ s*8@ @D8@*!@@@8@a!@;8@d!@7@m!@7@@O!@7@@!@B7@*!@7@"@S7@=!@:|7@!@r7@ "@ &~7@,Y"@@7@["@ H7@#@ر7@@W#@ N7@߻#@ M7@$@j7@@e%@6@ %@@6@@n&@@J6@&@6@`&@$6@ '@`6@T'@$6@*(@`z6@`}(@m6@_(@Fb6@7(@w6@@J>)@+96@~)@ 6@L)@`5@`G)@5@ sZ)@@5@)@ 5@,*@@z6@@N*@:6@*@K6@`l*@ 76@``++@`R'6@`D+@@{#6@t+@6@+@;6@@+@z6@3,@p6@`=,@#6@ T,@ &6@v,@t6@#,@p6@ ,@#q6@,@ a6@@ -@@Xb6@-@j6@V3-@`ֳ6@a-@;6@T-@@6@1-@@J6@Z0.@6@r;.@6@Tv.@6@.@``6@/@6@ /@@J7@@k/@ a7@^/@@z7@s/@m7@ /@7@f/@@7@d2@ 7@@m3@`68@ 4@m_8@3@`69@3@9@4@9@@U6@9@5@F:@5@:@ %5@L;@m5@-<@ 6@<@6@ =@@U6@@ڰ=@@5@b>@6@?@@5@ G?@5@c?@46@p?@ r;6@M|?@d76@` ?@ +6@1t?@5@|@@@6@aj@@`66@|@@@U6@@@@5@ A@@~5@A@@X26@ `[A@I6@ |A@=6@ A@ U6@A@ 7@A@6@`A@6@A@P6@`_B@6@@B@i6@ ;B@ ~Q6@`HB@H6@qB@q 6@@XrB@6@qB@B6@ kB@5@ pB@I5@qB@g5@cB@9m5@^B@@+5@B@ 5@ B@}5@BB@g5@B@5@΢B@9 5@`B@i#5@B@T&5@ B@@45@B@85@ B@q,5@wB@ "5@B@@ 5@@B@ 4@B@Qx4@B@Hp4@B@@ 4@B@&3@B@t2@ OB@@2@`GB@$2@*B@@2@C@@]2@ C@M2@C@@@2@C@<2@%C@J2@C@62@z4C@`42@6C@)2@@?C@!"2@AC@k2@DC@@W2@DC@ 2@`OC@@G2@aYIC@"1@oIC@1@IGC@ 1@CC@%1@ @C@@1@ =C@@D1@G6t:C@;l 1@`:C@ 1@#H:C@y!1@`~9C@1@8C@1@@7C@G1@Ύ7C@!m1@.#6C@ğ1@5C@1@bM4C@Py1@h!<2C@*1@ 2C@w1@޼1C@8sq1@/C@@1@onn/C@y]1@.C@1@vՂg.C@Ǩ1@&C@0X1@ T&C@`1@@%C@81@%C@ 1@ $C@ߜ1@ #C@@;1@i#C@`1@#C@a1@3 #C@եa1@`#C@a1@qZC#C@3Y\1@`"C@`ј1@@"C@@ 1@fB@M ^r1@pSB@0kq1@SB@q1@QB@5q1@=z{yB@e}v1@B@ Sw1@hB@x1@B@y1@`B@@z1@B@`<{1@aB@{1@`B@ {1@NB@n{1@`B@`<{1@`$B@z1@B@=z1@@ B@y1@xB@@y1@B@x1@ CB@w1@B@w1@hB@` v1@B@t1@@B@ |s1@dB@a&ws1@3+B@̬m1@B@'m1@>B@`Ml1@5B@@j1@|4B@ʻxj1@t/B@m`1@{.B@χJl`1@BmB@-_1@B@ \_1@,B@%_1@/mEB@l^1@B@^1@B@8^1@@#B@^1@ dB@]1@B@]1@B@:]1@B@]1@ CB@@\1@B@`\1@B@\1@B@@;\1@@"B@\1@cB@[1@B@[1@@B@ [1@ B@`<[1@KB@Z1@B@Z1@B@OZ1@ B@Z1@iB@`Y1@B@>Y1@B@@X1@cB@?X1@`B@W1@-B@W1@B@fV1@@ B@U1@B@U1@B@hT1@@LB@@S1@@B@ |S1@B@S1@`B@S1@ YB@`{S1@@+B@iS1@B@R1@@#B@Q1@B@P1@dBRB@oڵP1@B@P1@!B@/1@eB@F /1@B@@.1@{VĴB@N.1@UB@,1@@B@+1@`B@*1@@B@ u)1@@B@ d(1@ \B@.'1@72GB@&1@JB@` 1@B@` 1@@B@` 1@B@ 1@@B@ 1@@3B@@+ 1@aB@t 1@B@ 1@@ѰB@ 1@-B@@ 1@`wB@ 1@`B@_ 1@@B@ 1@`^B@ L 1@ìB@ 1@B@o1@`B@1@`B@@1@@٩B@`n1@B@1@@B@ 1@IB@1@ B@%1@@B@ 1@pB@ 1@@B@ 1@B@ ; 1@B@r 1@@B@` 1@B@ 1@B@1@ "B@ 1@B@@e1@B@1@HB@`f1@wB@B1@B@ T1@B@1@ B@`1@ 2B@`1@@B@ 1@@ؚB@@1@B@Q1@`,B@-1@[B@ 1@@B@1@%B@1@B@B1@ B@1@gB@1@UDB@<1@G❢B@11@B@21@WeB@31@\ 6B@>6M1@B@1@%B@ 1@@B@ 1@@]B@r 1@B@`M 1@`^B@ 1@`B@p 1@׋B@@ 1@MUB@yǞ 1@kkMB@p?1@ KB@1@ԅB@ 1@gB@1@ B@1@ B@1@B@@31@WB@1@wB@1@.B@1@~B@`1@K~B@TK~1@@~B@ 1@렶~B@}1@~B@1@~B@ 1@.B@`M 1@B@` 1@B@O 1@@mB@c 1@HrB@/8`& 1@ OB@1@tB@GE#0@B@g0@`~B@V0@~B@0@ET~B@Cϝo0@S~B@k0@q?U~B@sDd0@~B@0@h*߫~B@[0@O)]B@Ìe0@`,B@0@@#B@`0@ lB@p0@`فB@@0@aB@ 0@뒂B@o}0@B@0@Q'B@_0@@B@0@ "B@ 0@ ǁB@0@cB@@0@ B@h0@B@0@ dˀB@8,0@@EvB@ɿ?z\0@uB@0@`UuB@0@ uB@`U0@tB@0@'v1tB@:_0@tB@`0@sB@`# #ʏ0@sB@ 0@`sB@0@isB@ ;0@@3sB@ϊ0@rB@ u0@`rB@0@rB@ T0@rB@ 0@ rB@0@rB@0@!sB@`$0@7`sB@ "~0@ `sB@~0@csB@c~0@sB@}0@sB@@|0@VtB@ {0@tB@z0@uB@y0@ uB@`vx0@`vB@w0@ovB@@v0@vB@@u0@@wB@t0@ wB@ s0@$xB@`r0@^xB@$R[r0@BlzB@ Zn0@=zB@n0@C zz@zB@5;n0@<+iuzB@ 1i0@ tzB@i0@XzB@@h0@`4zB@f0@zB@0e0@yB@`c0@yB@`4b0@`~yB@`0@cyB@J_0@YyB@]0@PyB@[0@`~yB@aZ0@yB@X0@yB@ W0@@+zB@xV0@@zB@gU0@zB@T0@!{B@S0@`{B@`Q0@{B@P0@x{B@Ø*P0@U|B@C0@ &yB@(?0@ lyB@`>0@xB@@>0@RxB@^=0@`wB@`<0@7wB@<0@vB@ *;0@BvB@O:0@uB@@u90@uB@?80@ ::uB@W 70@9uB@ 70@o tY2uB@fEc60@uB@@50@VtB@@20@>OwsB@hi</0@ԈrB@6(0@`qB@%0@ qB@5!0@5pB@4j߇ 0@x?aB@/@Q`B@/@ ]B@5/@[B@c/@PYB@/@XB@}/@@mXB@@Vt/@`WB@k/@.WB@b/@VB@OZ/@@UB@@~Q/@pUB@`H/@TB@$@/@@;TB@w7/@SB@./@SB@&/@@}RB@p/@QB@`/@`QB@/@GQB@` /@PB@`E/@`$PB@.@`PB@ .@yl+QB@o>` .@{pOB@.@&NB@.@pMB@`.@`LB@@.@@KB@`f.@`EKB@.@`JB@ .@ IB@_.@IB@.@ dHB@.@GB@X.@FB@.@/FB@.@;ݺ}EB@ZVx.@ yEB@@-x.@\S9B@rO.@ 8B@M.@8B@`fF.@`,9B@ =.@c9B@4.@9B@@+.@9B@!#.@:B@ t.@O:B@.@@:B@`.@:B@.@:B@.-@`<;B@@]-@s;B@`-@;B@-@ ;B@ -@B@)|-@@]>B@Ws-@>B@ j-@>B@a-@ ?B@X-@J?B@ P-@?B@@eG-@`?B@=C-@@?B@>-@?B@5-@`$@B@ ,-@[@B@$-@@B@N-@@B@@}-@ AB@ -@GAB@-@@~AB@-,@AB@ \,@AB@,@AB@,@`4BB@,@kBB@ ,@BB@,@ BB@i,@CB@,@ CB@ DZ,@CB@,@_DB@$,@DB@.,@`UEB@@],@EB@ ,@?EB@LUu ,@EB@,@"9B@+@S>B@ ˭+@2B@"+@ B@q*@B@` *@ B@i)@B@r)@A@T)@`A@`I(@[A@f(@kA@@ W(@{A@ (@@hA@d'@A@@z'@2A@@X'@ `{A@&@`}A@q&@ീA@@PY&@wwA@`%@`|A@%@ bA@_%@bA@%@@LA@ %@ H8A@ %@$A@%@,A@p}$@ +A@L]$@A@$@ A@)#@`GA@!@SA@k!!@@@ @`Y@@@ @@2@@U @@@ @@@ @*@@@& @@@d @@@A @@p@@/ @~@@ ij@@@Ec@@@@(@@@ /@2@@`@~@@ @ɿ@@@@@@r@rA@@`A@`@A@@sA@@X2@@|A@ @A@ g@KA@@`A@`@`A@@`A@ 5q@8A@h@A@@ DA@{@@pA@~@ HA@[@ A@@@`A@2@@XA@@ A@ M@ A@1@`\A@}@ A@x@ yA@x@A@@(x@@)A@ww@h, MR? J`p@j4L @^L* @LZ @L @LQ @L`@ 1M@0@, Mߛ@@"L&@L<@WLn@L1@`CL@@L @@LA@L@ L`@L @LL@6@dL@`i@KH@KP @,KR @ J @@dKΊ @ K`(\ @K\n @K@K:@K @ 6Kj@=K m@CKZ@@uIKx@ NK@@VK @ ,YK@`6XK@GaK`@@gK@|@ oK@z|Kp@azK@ zK @`TK7@`K`kA@`K.@ K @L@@ L`H@`L@iK@\@iK[? tKR?F7@Lm@`L @ [LUU@`L@L@?H@L@q @`TLv @4L @[%@R@@@ T@ LTiq$ 9@S@8@@hS@@9@@!S@i9@+S@9@`y-S@` 9@9-S@ 9@S@g:@S@ [:@S@ x:@S@ye:@US@ r:@@S@:@rS@:@S@E;@S@ :@bS@g:@S@v<@ S@;@S@ 1%<@@XS@\<@஺S@l<@ͻS@sj<@S@`e<@tS@D<@̼S@=@ ~S@@d=@@oS@`=@@ S@P=@S@`<@ոS@v<@ S@6@HPS@ql6@vPS@`b6@{SS@~6@TS@J~6@WS@h6@ZS@I6@aS@6@RcS@ _6@(dS@G16@1`S@`4@@6\S@o4@@\S@o4@@o^S@I4@_S@4@abS@E35@fS@;5@biS@`5A5@nS@5@vS@5@5yS@@d5@zS@5@@|S@@.4@VS@4@S@@.4@[S@05@S@6@ߏS@@u7@S@`_\7@S@7@υS@' 7@S@@37@S@7@@`wS@7@=vS@OJ8@@yS@8@VpS@@W8@RoS@|C8@kS@@8@fS@ 7@1`S@c7@WS@ 247@,YS@B6@@VS@T6@RS@6@HPS@?@T@s?@ ~T@@]~?@T@@@!T@`@@T@@@ T@@@ > T@?@T@4@ S@ 4@@S@4@*S@04@cS@@4@`ŒS@x4@lS@4@/S@4@ǘS@4@8S@5@DS@a5@@S@B55@S@gu5@S@l5@1S@@.6@S@ &>6@S@M<6@@S@E6@ސS@5@@S@4@S@4@ S@@: 3@R@O2@@xR@T2@@6R@2@@àR@C3@R@L3@ fR@03@RR@@: 3@R@` 7@nS@@7@DS@@:6@S@6@S@6@RS@6@ S@ 6@ fS@ 4@@WS@ 4@S@`4@S@J4@@gS@E4@@S@य3@S@ آ3@AS@3@IS@&4@#S@l4@S@v5@S@#5@S@~4@S@}4@S@ VD6@9S@@-X6@`S@@?6@@S@5@S@@.5@eS@5@HS@5@^S@ Vd4@@S@Ί3@tS@@2@S@y2@@S@2@S@Q2@S@@;<2@S@2@`S@82@3T@@^=2@T@'2@@T@ +Z2@T@ ?2@`T@)1@T@@1@ T@@*2@@ T@Ե2@ T@2@ T@D2@@ T@7/3@@T@iC3@bT@@3c3@@T@@3@B T@`{3@` T@P93@c T@@2@T@3@@oT@@T3@T@@^3@`T@x3@ T@3@ T@`3@T@3@T@3@T@g3@T@3@@T@|3@T@v3@T@3@`T@@ڰ3@T@`3@T@`3@T@4@T@@4@T@@4@`QT@#4@T@ +4@JT@]4@@T@)4@sT@4@@T@n4@@T@4@T@ [4@T@@4@YT@H4@ T@ 05@T@ES5@lT@@XR5@]T@V5@P T@{5@@ T@5@YT@G5@T@h5@@ T@@5@HT@``5@@T@M5@@g T@6@5T@86@DT@z46@S@@V6@`iS@p]6@zT@@4R6@T@@y6@T@=Z6@T@`6@@_T@s6@@T@Sw6@DT@H`6@@T@@t6@`T@6@@T@̌6@T@@Y6@JT@U6@ T@`b6@T@6@T@`6@sT@`6@T@?6@T@6@T@n6@@6 T@ 6@ T@ZQ7@T@"7@T@27@|T@X7@T@N7@!T@) 7@T@6@@ T@z7@ T@@77@ET@ (7@U T@7@ T@ge7@T@ h7@ T@c7@M T@z7@, T@@:}7@ T@`7@:T@7@@ T@@7@T@7@T@`6`8@T@e8@@T@.8@T@,8@`T@Y8@@T@8@T@u8@#T@Q8@:T@8@T@D8@@_T@8@T@Z9@@T@@99@@T@@D9@JT@*9@T@T9@ T@z9@ T@:@ T@:@$T@<;@!T@`;@@S@'=;@S@=;@S@h$;@@S@:@@S@|:@S@9@S@|9@ &S@`59@S@9@S@9@=S@,9@S@x8@`yS@`8@S@q8@S@H8@S@@D8@@ S@E8@S@8@ S@` 7@nS@ \0@@ $S@N0@$S@0V0@@)S@.@`Q8S@ ,/@:S@@$0@s>S@<0@,=S@:0@R;S@S0@@hS@~0@>S@` 0@?S@@30@AS@0@lDS@/@@ES@ Ų/@nCS@7/@ @S@t/@?S@@ w.@0AS@L.@GS@,@MLS@ࣰ,@jNS@]N,@RS@D,@@hTS@|S,@!VS@.,@@NWS@ +@@%[S@,@ \S@+@{_S@ +@aS@p,@cS@,@^eS@S-@@6dS@.-@kaS@ -@`S@ -@`i_S@@ w-@n_S@z-@bS@ /@aS@90@[S@8N0@*^S@M 0@Z`S@`/@(dS@9M/@dS@Oz-@@iS@`-@jS@ \/@oS@@]0@IsS@0@arS@1@rS@@0@VtS@@^0@vS@ 0@xS@ 0@wS@0@@yS@`1@{S@`0@zS@ +0@@vS@#/@#uS@%/@xS@`.@@orS@@+@nS@~q+@pS@G+@@xrS@`ݝ+@@ tS@@^M+@SvS@A+@@G}S@OZ+@S@9+@S@@P9+@ S@+@υS@@-8,@S@,@}S@`/,@}S@@,@`~S@@ w,@:S@@,@3S@`5.@RS@p-@`S@.@S@@.@2@`S@2@S@@.2@S@ 2@S@`_2@S@I2@S@2@@NS@2@@S@@32@@S@=2@@S@2@AS@/3@KS@Y3@S@3@@gS@3@`iS@v3@S@3@@S@͋5@S@r5@S@[5@ S@b5@ϩS@@:4@ S@ 4@S@H3@7S@3@S@@;3@עS@`<3@zS@x2@S@3@S@@3@S@2@ƑS@3@S@h3@S@ 2@ S@Q3@S@@43@`yS@`2@S@p2@@S@`h2@S@%2@`}S@yU2@ ~yS@}r2@JvS@r2@pS@W2@jS@\2@hS@I2@eS@@]N2@bS@<2@`i_S@1@@N_S@`<1@U]S@1@@-\S@j1@KS@q1@9IS@iS1@BS@`1@@BS@'-1@bAS@`Q1@@=S@81@:S@`0@@-4S@@^0@2S@%/1@@F.S@21@v,S@`61@(S@I0@&S@j0@$S@0@&S@@j0@@'S@ \0@@ $S@@^>@@Q; .@@t9?@@K9 @@`k:`0 @@@): @@B: > @@d:@@~: .@@/:`@@:f?@ ;@?@@Q;@z?@$P;b)?@ 3; >@;A>@: >@:>@׳:@^>@Tv:Z?@`e:@ ?@9R?@Z9k?@t9?@9?@@K96&@{K@ *8@ DQ@ ?&@vM@@^&@`M@&'@M@O'@M@@W'@Z#M@,y'@ $M@#'@M@ ߜ'@mM@&@vM@o0@L@@g0@`#L@@d0@ CL@ 0@ %oL@O0@*rL@ ,0@ L@@1@L@@;1@DL@0@rL@o0@hL@0@`SL@0@!L@o0@L@%2@ tL@32@`L@@3C2@ L@J2@L@ 72@eL@(2@`0L@P2@cL@2@L@L-2@L@2@L@2@|L@v2@eL@S2@L@2@L@@2@@XL@b2@ L@@2@UL@2@@pL@T2@L@3@L@ 13@@FL@2@ L@T2@`NL@ 2@ L@ 2@L@`2@L@2@`0L@`2@`6L@2@ L@`2@L@Q2@൰L@2@mL@@2@஦L@2@`L@2@`L@j2@sL@@i2@L@U2@ L@[2@@o~L@`;2@uL@%2@ tL@ 4@ DQ@`4@`Q@Q@@]4@5@5@@P@D4@P@ ,4@0P@@4@ ,O@4@O@@:4@ O@4@aO@4@PO@gu4@DO@`i4@vO@ \4@O@ W4@@O@P4@JO@@WS4@@O@J4@)O@#A4@3O@=4@O@4@@hO@4@bO@v4@O@3@`O@x3@ DO@3@O@ ,3@O@ģ3@@üO@ v3@ O@@;l3@`O@r{3@ֻO@>y3@@O@3@ DO@V3@@½O@]3@O@K3@@WO@AF3@ O@C3@O@#3@O@`3@`˝O@ 3@IO@ 3@O@@;3@@O@t 3@O@@X2@ ҟO@2@`O@@^2@O@ O2@sO@2@ yO@ 2@ϙO@2@O@ 22@:O@2@͓O@2@`ŒO@` 2@^O@`2@O@N{2@@XO@`2@ O@ql2@5O@QX2@@hO@@4B2@~O@ +2@ ~O@2@{O@࣐2@ yO@`j2@ {O@f2@xO@2@`/vO@>y2@ pO@`w2@`mO@\2@jO@IO2@mO@52@JnO@`G2@kO@C2@@gO@32@@WcO@/2@gO@%2@bO@2@`fO@%2@`hO@@; 2@lO@P1@@fO@s1@hO@M1@nO@` 1@|O@@X1@~O@1@5yO@1@nO@1@]O@1@ SO@1@'UO@1@ SO@ 2@ OO@J2@KO@i1@`GO@ V1@MO@@]1@`/NO@ ,1@EO@1@=O@ ~1@@.?O@w1@;O@ ز1@7O@l1@Z8O@h1@DO@@WS1@ y=O@@a1@'5O@SW1@j2O@`ew1@'O@w1@@!O@1@O@1@O@`1@`O@{1@ O@ v1@O@@Y1@N@`W1@@-N@?h1@vN@d1@`N@~1@`0N@@ 1@N@ +z1@N@@A1@ N@#1@N@c81@`N@@WC1@N@ [ 1@N@` %1@ N@1@`AN@`-1@ fN@@d(1@`N@#1@@N@@;1@@N@^F1@`N@ 1@N@61@N@&1@`ŚN@o.1@@XN@`601@1N@s*1@@.N@&1@`xN@U1@`N@H01@XN@U1@SN@` 1@@QN@@-1@` MN@=1@@IN@}1@@XBN@1@@.?N@@1@`qDN@1@IN@ 1@`qLN@1@IN@a:2@@/N@@<2@)N@@p2@+N@@q2@'N@2@`N@z2@ N@r2@N@@W2@ &&N@`5Q2@ &N@r2@N@k2@N@Ί2@rN@T2@b N@D2@ N@H2@@N@2@@.N@2@ N@2@a N@2@@p N@`2@N@2@t N@`2@M@3@M@ 3@PM@ 2@M@@]2@M@r2@M@` 2@M@92@M@2@M@3@`M@3@`/M@2@(M@@2@M@Ʊ2@M@2@ =M@`2@eM@B2@ OM@@2@ǸM@P2@ M@}R2@`M@=*2@:M@ U52@ԵM@!22@@FM@2@@M@`2@`M@ 2@M@"2@M@1@@M@@1@zM@1@M@@d1@:M@1@ ~M@1@7M@1@ M@@1@8M@ آ1@`M@x1@M@ 1@@pM@ q1@M@ |1@@M@y1@M@@ 1@DM@1@M@ʞ1@M@1@^M@01@@M@ 1@M@1@`M@Q1@`M@ 11@@M@@1@[M@}1@@pM@`^1@RM@Qh1@M@f1@ M@@;1@M@ \1@^M@1@@WM@ 1@ M@ 1@ M@@0@ M@v0@M@0@`NM@¥0@M@0@ M@ \0@ M@)0@IM@Љ0@M@@ w0@`M@x0@M@`c0@bM@PY0@@pM@@0@ாM@0@*M@o.0@@?M@ 0@M@`0@M@ ~0@M@ 20@M@ 0@`M@= 1@ M@@O1@ M@@O1@@M@@]>1@$M@ G1@`M@61@@M@e1@M@@Z1@ M@ \1@ M@1@`_M@Q1@M@ 1@`qM@`1@ءM@@W1@` M@1@`qM@@1@M@)2@M@@E2@M@)\2@`M@ht2@aM@sz2@ DM@p2@մM@7o2@@M@2@@pM@x2@٨M@k2@[M@ Z2@M@V2@`M@F2@RM@V2@ gM@ \O2@M@@g2@M@r 2@M@1@M@w1@`uM@ U1@`qtM@` 1@mM@x1@ &vM@ 1@@tM@@-1@pM@1@IwM@1@M@@X1@`6M@`1@ xM@@1@@M@ǰ1@M@1@M@1@@|M@'1@@puM@1@|rM@1@rM@1@mM@jr1@ =rM@`{1@@eM@@ W1@`fM@`_1@m_M@GA1@@\M@ U1@aM@`/1@]M@ \1@@YM@B%1@ YM@?1@@WSM@1@`AVM@E1@@TM@T1@kQM@0@QM@``;0@UTM@f0@KM@o0@RM@0@'MM@>0@`HM@H0@=M@ &0@S6M@a0@;M@µ0@ 3M@ͻ0@ x.M@`0@<+M@ ~0@,M@*0@c(M@0@'M@0@j"M@@:0@ %M@@^0@M@@0@M@`0@M@80@`M@0@ ~M@a0@ M@0@ M@0@ M@0@ =M@@0@ L@0@@M@@W0@ M@p0@ L@B0@5L@@0@L@G0@ UL@0@L@0@` L@~0@^L@0@L@Av0@ =L@@ͳ0@`L@o0@L@`f0@@L@0@`L@$0@RL@0@iL@`0@L@@0@L@0@L@ ~0@ L@@0@@۷L@ +0@(L@0@L@0@L@0@תL@`x0@'L@u0@@pL@ 0@sL@#q0@@…L@j0@dL@`s0@'eL@w0@@aL@`<[0@`L@`0@`GYL@`_\0@SL@E0@ TL@S70@ML@@ 70@EL@+0@CL@0@1L@ô/@ L@3/@ L@/@L@y/@L@,/@`L@)/@L@.@tL@a-@1L@@']-@`L@l-@L@ h-@iL@ V-@ZL@`=-@`L@-@L@,@K@ bj,@`K@hd,@K@1,@QK@`),@iK@`d,@K@8,@K@ %+@7K@࣐+@K@`+@K@*@{K@t*@K@ )@ K@))@$K@)@`0K@)@`K@ 1)@K@@)@K@@ *@`K@@*@PK@)@K@)@K@)@L@x(@@$L@(@ &L@j)@ L@l)@`L@)@s"L@>)@23L@C)@7L@@\)@`;L@)@ 8L@@X)@`;L@)@(DL@)@SL@Ws)@QL@`CE)@\L@/)@hL@W(@` uL@;(@L@@y(@L@d(@RL@3(@@L@@P9(@5L@`H(@$L@x(@ L@0(@L@x(@׺L@(@L@`'@`L@@''@ gL@`'@L@'@'L@Щ'@@L@'@ ,L@{'@$L@Af'@L@@'@L@S'@ L@`'@L@O'@(M@'@`M@@'@ M@@''@D#M@@ '@`+M@$'@`M@ N&@`M@'@\&M@&>'@b1M@`r'@4M@@&@&M@&@ ,!M@@&@&M@&@@F*M@`C&@*M@&@P1M@&@B-M@Ȱ&@,M@ +&@8M@t&@`+M@@i&@ 3M@&@@5M@I&@ y=M@@j&@BM@#&@ SM@`)[&@ `[M@k&@`M@@jc&@@puM@6&@@yM@@:&@~M@=&@`M@[&@5M@G&@M@@3&@ΊM@@0&@|M@&@ OrM@&@qM@@'@_tM@'@M@z'@uM@0'@ࠜM@'@dM@'@ҦM@@ '@`M@` U'@CM@ 9'@M@?'@M@`l'@CM@'@M@@{S(@M@1(@ N@r(@&N@-)@`3N@`R7)@;N@,)@@iCN@Tu(@~N@ (@`ăN@ \O)@`N@T)@ fN@ \)@uN@7(@bN@?(@`BN@w(@ ~!O@ k(@1O@(@LO@ -(@`_O@(@ =rO@TV(@`O@n'@עO@c(@O@dG(@`O@A(@O@Y)@O@^)@`yP@u*@@P@ +@P@`,@P@` ,@!P@7O,@ P@;,@P@L]+@$P@`d+@@H(P@,@@QHP@ ߼,@OP@q,@TP@-@eP@D-@@tP@`-@@zP@ .@@P@@.@*P@@.@ෞP@l@/@`ŦP@`0@P@Z0@"P@`/f0@@`P@0@@XP@`510@P@a0@P@@0@ P@0@P@`601@Q@@ F1@@Q@@X1@@P@'2@ Q@ 2@3Q@@2@ Q@ [2@@"Q@ 2@jQ@2@@7Q@3@@Q@@-4@@Q@@ 64@@Q@`3@"Q@34@`a*Q@@Y4@@X2Q@P4@@i;Q@4@@BQ@ 4@ DQ@`@tF@ +$@ 7G@#@@,G@"@`G@#@LG@"@mG@#4#@ZG@@H#@G@I#@`zG@l $@nG@@Y$@mG@ %$@@yG@9$@$G@ +$@`wG@$@UqG@Y$@FoG@$@aG@`C$@>XG@$@|RG@$@QG@v$@KG@A$@EG@ s$@ %GG@ww$@QG@@5$@`ANG@ "$@ GG@$@ g=G@@{S$@ 4G@Q8$@)G@Z$@"G@ Q$@G@ H $@`G@@&#@(G@@f#@0G@y#@-G@j#@`/&G@'=#@%G@@f#@|*G@"@5AG@"@`i@F@@ F@P@`F@Œ@`BF@`e@F@@'@BF@@w@ZG@L|@G@@#G@&@3G@ ].@G@`@@"G@@@`-G@`A8@`3G@L<@4G@7/@[7G@`ш@@i;G@6P@@4G@L@`-G@@ D)G@@`&G@ 8@Q G@ @G@`@`G@@JG@L@FG@J>@ G@0u@ G@n@ r3G@O@ :G@@KG@L@`,ZG@@ cG@'@vG@PY@n~G@@G@ @G@@^G@ @G@ %?@:G@@@G@A@௭G@ @ٸG@@ =G@T@G@@dG@@G@@ GG@@@(G@@ NG@ Z@G@ @G@,y@ G@@@G@`G@ NG@@`G@@>i @@G@] @ ~G@n @G@@D!@lG@!@`G@@ @G@6 @`G@!@ 7G@1t!@@G@3s!@@PG@Q!@mG@!@G@!@G@"@G@"#@ G@#@`G@N#@ OG@zT#@аG@5#@ G@#@@,G@A@$(@@`/E@@=B@t.E@`B@`/E@@B@D@LB@D@DCB@'D@-B@D@ B@cD@VA@"D@A@D@mA@ D@A@TD@dA@ D@5A@#D@` A@eC@ I@@`\C@@@ 9C@G@@C@@@@B@@ht@@kB@a@@ B@O@@B@1<@@;kB@$(@@\VB@ +@@;3B@`0@@@)B@9@@@F B@D@@@QA@ ~Y@@A@@@_@@A@W@@A@ [@@A@_@@A@@h@@`A@ r@@`A@n~@@A@F@@A@\@@A@`6@@DA@ ԟ@@A@`/@@A@{@@@B@*@@B@@@`A@`@@LA@@@8B@@@ 0B@@@ D$B@ y@@`5B@A@`OB@`A@{KB@ xA@LB@`'A@@GB@k)A@ FB@ 6A@S6B@`6@A@ `+B@BA@`6B@MA@c0B@QA@@,B@ 6XA@'B@dWA@'B@UA@B@QA@@A@ #SA@mA@ &^A@A@ DtA@A@A@ fA@A@A@bA@@A@A@A@kA@:A@A@A@IA@:A@`A@JA@@A@A@A@,A@`A@B@A@3B@lA@JB@ ,A@ B@ A@/B@B@ 0B@B@l8B@jB@@.?B@ B@ GB@B@`XB@B@ZXB@ $B@.OB@@-B@@XJB@D3B@`FB@ ?B@`TB@`jB@ OzB@`bB@B@r[B@ B@:TB@؉B@@OB@@QB@_TB@ B@QB@B@`qTB@B@baB@@.C@sB@`2C@`rB@\C@YB@ &nC@@PYB@@XC@ 0UB@8C@sYB@`C@@-`B@`/D@jB@;3D@~B@DcD@ %B@D@@B@DD@؉B@D@ B@$E@+B@E@@=B@E@B@1,E@ B@.E@`B@@i^@@.5@^@H9@.5^@@.5@0^@ y5@@.^@`5@@.+^@`/6@@+^@ #6@$^@\6@5^@6@`R ^@ 6@@ ^@7@ ^@@ 7@@i^@j7@W^@7@^@` 57@a ^@b7@@^@@'7@^@@8@.*^@18@0^@¥8@@7^@p8@?^@I8@ON^@9@HR^@`99@ [^@l 9@Y^@`_,9@`x^^@`D9@@c^@H9@`g^@A9@`)k^@,9@y^@9@`z^@` 9@^@9@u^@8@@.s^@8@zt^@ 8@@v^@w8@ q^@@(\8@l^@68@@f^@8@`+f^@e7@]^@BU7@`N^@6@ ;^@sz6@ 7^@56@z8^@ 6@p5^@@(5@5^@@.5@ xP@ VB@R@@pD@W۾Q@ QD@ſQ@D@\Q@@.D@ ºQ@D@ !Q@`D@YQ@qD@vQ@`D@`Q@GD@OQ@B D@@YQ@ D@0Q@C@@Q@C@ϡQ@`C@Q@@C@Q@C@ Q@C@@WQ@4D@ܣQ@ aD@`Q@D@OQ@ D@OQ@D@ Q@)D@Q@D@`fQ@RD@dQ@ D@bQ@D@@^Q@D@`Q@ C@aQ@HC@@3[Q@qC@zYQ@C@UQ@C@PQ@@C@OQ@ C@SQ@BC@ SQ@ C@`UQ@)C@@3WQ@@gC@XQ@C@\Q@@C@`bQ@C@eQ@`C@QmQ@=C@uqQ@C@`uQ@C@[|Q@@C@)Q@VC@ \Q@=C@@pQ@@C@`Q@ C@`Q@@WC@:Q@C@`ʖQ@C@Q@C@`Q@`C@@{Q@C@ !Q@C@Q@WC@ !Q@C@\Q@C@@Q@`C@ܯQ@`C@@EQ@DZC@OQ@C@Q@qC@`Q@෷C@Q@C@ܿQ@@WC@`Q@ C@8Q@`[C@Q@MC@Q@)C@;Q@ HC@Q@C@qQ@C@`Q@fC@fQ@C@Q@ܿC@`Q@`C@`Q@kC@mQ@`)C@Q@C@@Q@@3C@zQ@C@`Q@C@@Q@ C@R@ C@@R@C@ R@C@`R@fC@R@ C@R@C@R@ C@R@C@R@C@R@C@`x"R@ C@`%R@@C@@*R@qC@`6R@`fC@)Q@uD@+1Q@D@}5Q@D@8Q@ D@BQ@D@`BFQ@ D@ OQ@ HD@TQ@D@ NQ@$D@ \OQ@'D@ SQ@$D@UQ@`)D@PQ@[@D@zMQ@GD@PQ@@{KD@BUQ@MD@pUQ@z^D@@VQ@`kbD@YQ@@pfD@c]Q@ gD@O_Q@dD@3bQ@ dD@kQ@ RD@@nQ@QD@tQ@[D@ 8Q@`bD@ ҇Q@@iD@Q@mD@DQ@ urD@ Q@zD@mQ@D@@Q@@pD@3Q@ÄD@ ԢQ@}D@@Q@-hD@@Q@zfD@ެQ@ (fD@`Q@iD@TQ@GiD@Q@dD@MQ@bD@Q@`D@Q@\D@Q@ID@Q@\FD@@ Q@@D@sQ@;D@`+Q@`7D@ 6Q@@{3D@Q@70D@:Q@,D@Q@@.D@෣Q@+D@Q@ D@ Q@ D@ԭQ@`D@෷Q@ D@۾Q@ QD@ dW=@2t'`:D@@/ 3C@ C@. C@ n`ŲC@ C@J`C@@(rC@G@C@@`6C@C@i֫C@ UC@w{C@""C@vC@`C@(C@@ ~C@C@C@  C@`C@@C@#AC@# C@zC@` C@ C@`_C@> C@`8C@@jC@C@C@$`5C@N['C@8/C@KC@}C@ymC@ lC@rbC@ C@|@C@`C@C@ wC@ C@؂C@``qC@`8C@@j`pl=@`B3=@`A=@ =@=@p=@f`` >@`M>@`05>@  ~A>@vU>@~1f>@I s>@Mb >@ >@ ɟ>@ >@ @z>@`ff >@ 9 >@`B >@`>@  &>@>@@&3|>@ oj>@`C u>@>@t29}>@@]`o>@ fmo>@$@>@ 12>@ C>@@Z>@$`>@>@9>@>@ @ԅ>@ףx{>@`g1>@@'`M>@@/ql?@@,?@`U?@` ?@@ @@s!b@@@w@@#`@@A@A@SA@'A@[n~A@A@B@@UB@ `%B@;`B@"nB@>i@(B@~ xB@. B@`+ `B@\ B@@z5 EB@6 [C@ pQC@F C@eC@i$ DC@ hE` C@ C@`քǐC@"C@`S`C@DD@?C@4C@ Yr`C@`jC@2TcC@,9 xnC@kC@4@oC@*C@z C@NߛC@``C@>i@C@@3s fC@@ZC@`*C@@!C@ KC@ ~\C@ 0'C@`cI@C@ ,C@@AeC@ C@ `˥C@ `ܦC@!:C@!C@o!C@!`YC@!߳C@@! =C@!wC@E!C@@"B"bC@2"C@@e"@C@" C@"cC@" `C@@"@.C@` X# ~C@@I# C@H#C@L#`C@`#`YC@@$C@# C@$@.C@7p$`C@@$D@\$ %D@$`D@ h$D@.$3"D@Љ$tD@L}$`D@ g$-D@$[7D@ $s2D@$`:D@$ 7D@$@5D@% #D@`,% 0D@`W%*C@S%lC@ h%`C@wW& rC@@-X&'mC@j& VC@&$?C@ &@ C@&.B@@A&B@& B@`'^B@I'ZB@|s'`qB@@_'B@h'@ԍB@2T' NB@l"'@iB@ $' VB@n'@DB@2t'B@h'B@''  B@ 'wA@& A@w&aA@`-'A@42'`A@$' #{A@ S%'K{A@@!'`uA@*&biA@ 9&aA@ࣰ&`UA@@S&LA@@& VA@`~%IA@$mGA@M\$@P9A@#"A@`k"#A@-" @@" @@#@@@Mf#@@a*#@@8#`@@`+##@@o>#@@@Q9#j@@|#@@" @@#ਃ@@@"@@%"Zx@@@"@hx@@@"@Xj@@"^@@7" D@@"C<@@4R" g@@"@?@g%"`?@@"n?@!?@!?@!`?@@Z!`?@!!9?@`!e?@FB!$`?@@*!E?@o>!v8?@@'!+?@0!+?@81!5 ?@@*;! ?@9.! >@c >@a f>@$ @t>@4Ra>@" 5>@Q`=@ތ=@]. %=@@,4=@ơ=@@K %=@`:ш=@@Y=@8dW=@0@Jn=@@*`pl=@`B!VX@@hZ@t4@ @X@@`X@ @X@n_ @KX@S @ X@1 @X@/ @X@`%?@X@U@@X@@0X@|c4@X@@O4@ X@`T4@bX@t4@@Y@ kY4@8Y@A4@8 Y@@(<4@Y@a4@ Y@d4@Y@X4@Y@ ~14@O!Y@ %4@0%Y@Y(4@`Y@ 3@Y@`3@`Y@r3@$Y@@]~3@(Y@3@1Y@@|3@B9Y@`3@BY@3@)LY@`3@NY@v3@=QY@C3@@RY@ y3@LY@` d3@aRY@ 3@VY@9 3@ HPY@ 2@`NY@@2@5QY@@ۯ2@HY@ 2@ CY@ Vt2@EY@ `2@@KY@fU2@IY@@A2@ 6LY@2@`AY@@ 1@>Y@1@=Y@@Ϊ1@@:Y@`1@@:Y@1@WFY@@1@IY@ v1@`NY@@ 1@XY@G1@@cY@`1@@cY@ 1@ gY@1@nY@1@pqY@ 2@8uY@ 2@xY@ 2@Y@@52@ JY@22@`ŒY@@^ 2@ǥY@`01@6Y@`)1@೥Y@Q1@Y@p1@Y@ 1@Y@2@0Y@ 1@MY@e2@@Y@@-#2@Y@ O*2@Y@m?2@Y@`L2@$Y@X2@Y@?h2@kY@[o2@@@Y@Z2@ Y@`G2@Y@T2@ Y@`N2@ Z@2@Z@1@qZ@^1@@*Z@1@2Z@ +j1@@3Z@ 11@ 10Z@E0@51Z@0@ /Z@0@$2@tiX@@ F2@gX@P2@dX@S2@aX@C2@ _X@ NK2@l\X@fe2@!VX@ N2@)WX@ y2@@Q\X@I2@ /bX@]}2@sjX@2@qX@2@`oX@@2@@ikX@2@^uX@3@uX@ V43@srX@F3@@uX@*K3@@rX@Te3@~X@3@=X@`դ3@X@`_3@,X@ 3@:X@M3@X@e3@@X@ ̬3@X@@3@X@@3@*X@@3@X@@W3@HX@@ 4@@X@ 4@lX@4@*X@@%4@@X@@ 34@0X@|c4@ Rÿ{e@?`NG&@[ Rÿ`NG&@8?G&@""?%@K~?@J%@[?@%@ ?` %@s?$@?#@ ?}1#@`ff?#@ ?E"@@ϊ?;"@_ ? !@?@!@Œ?o @?ۿ @@'?. @O?`@ G?@r@`?`)@?`@V4?@W?@?@%?@@@B?{e@ 7?֣@?@h@#?O@{?YQ@y?`@@?@lY@F? @@?M@`` ?@q?!@0u? @`N?@6@ ~?`@??@xV?@?`W@I? {@?@?@`-?@e @ C? @Œ? @ H?@ @@p=?/!@?A!@?2!@G?U!@Sv?!@?= "@@?"@@?z"@`&?@"@S? "@ j?"@`VP?S"@]M?@"@? "@?#@ ?#@@?$#@O? #@?\.#@X?+9#@`A?.#@2?N#@`&?`(\#@K~?L#@K]?jb#@ף?Tu#@8?$@@?I$@a?;$@ ?@$@`_,?`ݝ$@`?=$@1T?`$@D#?$@`ww?,%@@K~@D%@Fy%@ף?%@?`f&&@&` 5&@E# 9&@ Rÿ`NG&@feFt5eo2(">_`e2@e2 e 2 e2Pe2@Weg2Ue 2 ee 2ye2e2e`2e 2 e@2eP2@we Q2 Je2 !e@*2e2`e@y2e 2e2`e2`te2Oe2`"e@2e2`e42e`o2`eo2`+e2Oeg2`oe2e 2`e2@e@D5`eD5 eD5@Ne2D5 eC5eC5eB5e@5 eH?5 e@=5e@P<5e@:5-e e95Oe@>85ve>75`e65e55ef55@`e 55 e@g45e35e 352e25`oe 25e25e25e`[15Le 05e/5 e4/5e`.5`e.58e`I-5Ze,5ze +5`ed*5e e)5e (5`e&5@e@%5>e@$5@WeZ#5ke@G"5ue` !5 ne5 je]5pe@5e]5e=5e e5pe5 \ef5>e 5 e5e5e5e 5`ke5?e |5e 5e H5e5 eo5e@G5 e 5e5$e25Ve5e 5eR5e`R5`e=5`e`)5e<5@e@5e5`feo52e`5`e`5 e5e`5 Je5e5e 5eo5`}e5Oe 5$e]5 e5ep5eH5ge 59e`5 e 5e!5e{"5e#5e@$5`e%50e`f&5Yef'5 ne (5 ne*5Ue+5@3e`,5`e,5e),5eP+5ed*5`]e@)5/e (5e(5e` )5 e@r)5 \e)*5@.e+5`e+5e ,5`e-5e-5me-5Qe@P,5He+5He*58e)58e'5-e`f&5$e %5 e#5e #5 e`"5 e!5 e`[!5 ne 55e 50e`o 5e 5e 5`e5Ve5$e`5 e 5eo!5eh"5e#5ue S%5 |e@ '5e@>(5e e)5 e *5e *5e)*5e*5 e+5;e,5`xe,5@e-5@e -5`e@p.5e/5 Ae05 ae15e25 eS45e 65 e75e95e`);5 e<5 e;>5e?5eGA5eB5eC5&e D5QeD5@e@D5`"eִ2De2`fe 2e`ó2e`2@e@{2 !e@G2e2e`2e'2e@p2Ze\2`4e2`e`2 e42eײ2e@g2`"eִ2e@>3Me3Xe3ze@3@e 3e@3e3`eh3e` 3@3e@3Le\3Ye 3geq3ge3@We*3@*ef3e3@eΘ3e 3@e]3e@3eH3e3`ke@3`Ke3e3e3e3e@3 e3e3 e 3e@>3e3e=3@e=3@eQ3e3e 3e@3@eg3e@G3@e@3'e`3 !e`̽3e@P3e3e@3@e`շ3`e3e ?3eF3@e`3@eִ3`eF3`fe ?3De@ 3`"ey3e3e`շ3 eθ3e`3eq3e଺3e]3e̼3~e;3 |eH3ye`43peG3geZ3pe3~eF3 eF3e3 je3 \e 3Ye3 je3 e@3 e`3e@3e 3e@3;e3Ve3`xe`)3e3e3@e3@*e3^e H3e@3 e3e 3e3e<3e@3e@ͻ3@Ne=3'e=3@eQ3e*3e@ 3`e 3e׳3`e3_e32e`'3e43e{3eZ3e 3e ?3&e 3=e@3Oe]3Ze3`ke3`e3`e3@e3YeFt5e`s5egs5e3r5ep5e4o5`+e (n5`Kel5e@Pl5e@k5ej5e ei5`eg5@*eg5^e ?f5@Nee5'e2d5eb5e@`5#e4_50e ]5@*e[5 e@Z5eY5`eX5@eW5meV5?e2V5`eFU5eFT5eS5`eQ5 eP5e4O5e`M5e@PL5eJ5e)J5 ee QJ5@NeJ5@3eK5@%e L5@*e\N59eO5KeGQ5 JeR55e`S5 !e U5`e@U5@eV5e`RW5e@>X5eY5`eZ5e<\50e`]5 8e_5@.eGa5'eZb5#egc5,e d5@.ee5>ee5Ge1g5 Aeh5@e<2@%e2@ eߞ2e|2e2#eZ2@Ne`ã2 |eZ2e32e@2׽eෟ2e2e 2$e`̝2-eH2=e@2me`42e ˠ2ࣾe`2e2Ve2Oe@2je`R2`e2`e` 2@ƾe 2e2#e@r2@@@*'@DB@ @%@@@@%@<@@%@@@ty%@s@@ m%@`@@s%@@@`%@`@@L&@ &@@@%@@@@ '@@8@@&@z@@&@ZP@@@*'@@>@@`"'@`8@@'@g4@@%@@@%@#@@@?%@v?@ +:%@;?@`$@c?@`$@`?@ ߜ$@?@dG$@?@ %?$@@(l?@Ô$@>@7n$@q>@#@ X>@e#@`n<>@d"@?@J"@ @@ij @ C@@ @`j@@8. @@@@ @n@@[@`@@@ɟ@@@>@@ @@@@w@)@@ @ A@@2A@@@`AA@ [@ 4A@~ @RA@@ t @ YA@ē @Z`A@ԅ @`tA@@^ @`A@@ @A@ @ =A@ @@äA@ݝ @@iA@`o @ஶA@t @A@@8 @A@ @A@ @VA@I @8B@a @`>B@^ @`CB@@xv @`HB@ @@SB@@W @@[B@} @c`B@ @aB@ @`0eB@L!@jB@@P!@ oB@;!@rB@B!@xB@!@@}B@!@B@@!@B@@L"@7B@@d"@௝B@`"@^B@QX#@DB@#@ B@y#@ǠB@#@1B@@#@B@ #@ϑB@#@@B@#@@WB@ij#@9B@ $@kB@`$@SB@bI$@^B@`I@$@!B@Sw$@B@ V$@`B@$@ oB@1$@hB@``$@lB@ he$@@iB@ b$@9eB@t$@eB@@$@\^B@z$@\B@]%@cB@#%@`AnB@`%@tyB@@%@B@&@sB@>&@eoB@z%@`B@@ %@D;B@%@ =2B@`$@`*B@$@B@T$@B@@-8%@A@s%@A@%@(A@ڠ%@@A@ %@tA@]&@A@ &@`NA@L&@5A@ \&@ ҷA@&@jA@3&@@A@@K&@A@4&@ A@`%@SnA@`/6%@ KA@@$@e?A@$@7A@ 9$@`H(A@ $@vA@ $@@F A@Z1$@` @@T$@ @@,$@@@V%@|@@o%@!@@q%@@@@-X%@1@@"%@`@@%@ @@L%@`@@%@@@ %@@@`&@@@-&@s@@@:&@@@@5&@ %@@ 1&@֣@@@jC&@ɧ@@<&@@@`Z&@`@@ 9n&@2@@@ '@@8@@:@ ,A@5iF@ E@B \:@`D@`0U:@cD@ `:@5D@:@@XD@:@`D@:@`qD@@;@ E@3;@E@\>;@ E@;@1D@h;@`D@@X;@ D@@;@@?E@@W<@D@2<@D@@( <@D@;@D@;@D@ <@ D@@ 3<@`D@`<@@pD@ =@@oD@`=@D@ =@D@@=@`D@<@ g}D@<@zD@<@ |D@F<@@?D@e<@!D@`Y<@D@`<@\~D@-<@ƉD@<@D@B;@@h|D@};@}D@@ F;@`XD@:@ED@[:@ =2D@@:@7'D@Y:@@XD@jR:@ D@@].:@`D@?(:@ D@ UE:@`D@ U5:@(D@@:@ >D@:@`JD@ &:@@QD@w:@@hTD@Y:@MD@i#:@KD@B:@MD@:@^D@:@_D@@X":@dD@23:@`jD@ 4:@nnD@S:@ xD@!R:@D@s:@`D@ &:@ D@@ :@uD@:@8D@~:@ D@ \:@`D@`D@`D@@D@@ӶD@ =D@D@.E@ D@@E@ D@DKE@D@\E@D@|jE@@D@ dE@PD@`qlE@D@qE@D@`E@D@E@ID@ ҏE@`D@E@`D@@ԝE@@ӖD@E@D@E@ OD@ E@`D@E@^D@`E@D@E@@~D@`/E@(dD@sE@VD@E@Z8D@E@2D@@E@2+D@LE@ gD@E@ ,D@1E@ D@*F@D@#F@D@'EF@C@PF@QC@cF@sC@`eF@`kC@ gF@EC@ eF@HC@MF@C@L@@lB@ʮ>@PqB@@ԕ>@fB@>@@NB@>@IB@@3B@@|>@@$B@@-h>@B@r[>@"B@`8>@`&B@ U%>@@%B@`>@SB@@=@@B@ =@B@@]=@@B@aj=@BB@` e=@!B@@Q=@`B@@=@` 5B@=@`AFB@ =@KEB@@ =@QB@=@lPB@ =@WB@`<@Q`B@ [<@QB@J<@LB@@<@`KB@<@UB@<@ \B@`R<@qYB@<@`YiB@dw<@gB@gu<@`pB@Z`<@`qlB@`k<@chB@@ f<@ dB@ M<@jB@@zD<@zlB@;<@@ofB@H<@`\B@ ,9<@YB@`<@ xNB@;@`FB@ y;@@hLB@@ <@`LB@`/<@QB@r <@XB@ N;@WB@7<@\B@<@`bB@<@@eB@<@dB@;@`_B@``;@``B@ ;@YB@@;@ DTB@;@SVB@g;@TB@@[;@`ZB@:;@@eB@@X;@ cB@;@`gB@ <@ ffB@`0<@mB@ <@qB@@ <@wwB@ %/<@`wB@hD<@؁B@S<@DB@R<@@…B@;@2B@;@~B@V;@eB@@E;@@XzB@9;@B@iS;@ B@x;@`B@*;@` B@Z;@3B@;@B@Z;@`B@w;@@۟B@;@@B@j;@@B@`b;@rB@7o;@@B@j;@B@@ S;@IB@`3;@ B@3;@B@ 1;@B@ ~;@B@` ;@@B@6;@`B@@?;@B@D;@`GB@06;@ B@ ;@`YC@::@ZC@ :@C@@:@C@@:@`C@`_:@9 C@:@:C@LM:@@C@;:@3"C@ Q:@+C@^:@@.'C@Py:@@.C@ł:@`6C@`m:@1D@<@;D@;@@2D@@;@.D@@Wc<@@F2D@I<@1D@O =@.D@%=@6D@=@=@`/D@c=@UD@`2>@ D@ G>@ D@>@D@4>@؉D@F?@`ݍD@g?@ ,D@ Ue?@@.D@`?@aD@ @@ gD@$@@`D@ S@@D@@@$D@@F@@`E@7A@`D@@B@ID@ fNB@zD@@dB@௭D@uB@D@ B@ =D@9B@`ʖD@B@!D@zB@`D@ B@`D@B@ D@mB@kD@`B@D@5 C@{D@>C@uD@@nC@ƁD@ޔC@D@C@JD@C@ D@`C@ ~D@^C@`zD@`C@@|D@ &D@ UuD@`D@IwD@ 2D@`D@ED@ D@ cD@D@@.wD@`D@D@)D@*D@@-D@`D@`D@ 8J@A@@P@fE@t8J@KD@vJ@` E@J@E@`BJ@fE@=J@@"E@J@%E@oJ@,E@kK@`*E@ .K@@E@kaK@E@ uzK@D@ uzK@@#D@`|K@D@`vK@N@@E@`M@ E@`)N@E@ M@`RD@zM@zD@M@`)D@N@@D@ N@\D@ N@QD@@3#N@@D@ N@@D@ N@@ D@N@D@@G N@D@N@@D@ N@D@ N@ࣸD@ N@D@@W+N@@D@>N@@D@=ZN@` D@`gN@D@WzN@ ҟD@7N@D@D@@3#O@aD@`ŪJ@bD@J@ iD@ ,J@iD@`J@@WcD@J@K]D@eJ@`bD@@J@lD@`_J@|rD@J@mD@`J@`GQD@cJ@`ND@ J@@pUD@ K@`SD@1 K@lXD@K@D[D@SK@\D@K@WD@2K@UD@6K@ \D@ 'K@(\D@@X"K@` mD@(K@vD@@K@SfD@`[K@lpD@`GaK@|D@@VK@ൈD@bK@D@ LK@@-D@`HK@D@J@@D@J@)D@ UJ@`6E@ =J@ E@J@@E@J@`E@ J@ E@`NJ@: E@J@$E@@WcJ@D@ bJ@`qD@`pJ@tD@`0uJ@`qD@biJ@D@#iJ@D@tJ@D@qJ@`YD@`qlJ@D@ dJ@`D@@GJ@@D@`NKJ@@@/1>@@'x{>@`g`)[>@= G>@]nI/>@`ff +>@`o=@\n=@K!=@ kC=@N=@)` =@@ڠ=@q@=@ @=@O`=@x޿+=@V޿`=@Gh@=@w=@'}?=@o?Z=@]M?=@ ww?e=@.?=@ Q?`>=@ J?`R7>@? N;>@?@.G>@ó? U>@l?=Y>@@D#?x>@ ?@y>@`r? ~>@r?b ?@??`M?@@@G?@i@G?@l@`3?@U@j2?@Xr@ ?@\n@@?@@>@CD@F>@ gE@>@@>@2@>@ @@>@ @t>@ e@;>@@S@>@-@2>@`@|>@@@>@ e @>@`4 @`W>@ @g>@n^ @9-?@@\@I?@@[@s?@: @t?@ @?@ V @r?@/@8?@` @D?@ @,@@ @ @@B @`@@R @@@@B @`3@@ @ [@@ @!@@@@@@ @*@@@`@@@`A@@`A@@ A@< @@iA@ @A@t@`A@&@ A@ V4@!A@J@S&A@@ @@p-A@` @ N;A@_ @ O:A@~1 @`3A@ @ @!:A@t @@GA@@KA@@TA@@_A@@@ikA@@@wA@8@cxA@@pA@@M@xA@ V@[A@@T}A@a?VA@`.?`A@?A@`H? geA@;L?3jA@I?@hA@ó?MA@ Ί?IA@@z? CA@`?`4A@]M?B%A@@?b!A@?@zA@`:L?` A@,?A@U?@@_~?`&6@2F@`D@0J@>7@I@f7@I@@͛7@@I@ପ7@ I@7@ I@ 7@aI@27@@I@ 8@@I@G8@@pI@`4P8@GI@ e8@`I@8@I@ -9@I@>9@I@q\9@I@9@,I@ 9@@I@9@7I@ 9@I@`:@pI@H.:@`BI@o:@I@`op:@` I@ u:@ I@R:@I@:@ I@y;@{I@.;@`I@@4;@I@@33;@`I@L;@`I@G;@I@r;@I@`x;@ I@@3;@I@@>;@I@;@@>I@@ͫ;@I@4;@I@G;@I@;@@WI@`;@fI@{;@ \I@@;@I@<@QI@`"<@@GI@ H0<@ QI@3B<@I@B<@ I@ V<@I@[<@I@y<@3I@ <@I@ <@׹I@`<@$I@<@I@<@ܵI@<@I@<@]I@ <@ I@e<@I@`<@@I@<@I@>=@ CI@= =@ I@ S=@I@@/=@\I@z4=@I@H>=@I@`4@=@I@q<=@I@*H=@I@`'P=@GI@@Z=@I@ h=@I@{=@`I@@=@I@*=@ I@'=@`I@q=@ܿI@=@HI@Z=@vI@`=@ ҷI@ S=@@I@ =@I@=@`BI@(->@I@ Y>@I@@Y>@ܭI@U>@)I@@Gb>@`RI@u>@I@z>@`I@>@[I@Z>@I@ >@I@@>@@I@@ġ>@zI@ä>@`vI@>@BI@@>@ I@>@@#I@>@I@@ؐ>@I@ >@I@>@I@அ>@ I@>@I@z>@I@>@I@ >@GI@@ؠ>@ I@F>@ I@>@@I@*>@I@ >@`I@>@uI@4>@@I@>@I@@>@ I@>@I@@>@I@`>@J@>@@3J@@p>@ CJ@`>@ LJ@>@-J@>@a J@ e)?@ J@`o@?@@J@`G?@`J@M?@ J@\?@J@?@@ J@@?@M J@y?@@J@(?@J@a@@`RJ@`@@J@@@) J@ L&@@J@*@@ J@+@@VJ@u1@@ J@-@@ 'J@ u2@@ *J@[@@@7(J@`F@@(J@`]@@u!J@n@@@"J@8v@@@J@@@(J@ C@@ 'J@3@@0J@ @@-J@ Dz@@`.J@u@@ +J@෿@@.J@@{@@z,J@@@ 'J@@@%J@#@@ L.J@@@@+J@@@@(J@8@@`%J@@@@J@BA@J@ A@qJ@ A@J@`[ A@J@eA@I@A@I@A@@I@A@I@ A@ I@ &A@I@@*A@`I@&1A@I@e8A@3I@`v7A@`I@2A@ I@A@$I@ A@BI@`V A@I@qA@vI@RA@`MI@@A@@I@ A@ ¶I@A@I@ A@ I@8&A@ 8I@@>(A@qI@@#A@]I@A@4I@ 'A@I@0A@I@DA@@I@QA@`I@UA@I@^A@I@zuA@=I@zA@qI@qA@I@uA@VI@oA@@љI@`A@I@ܕA@`I@A@I@ A@I@A@aI@ A@ I@$A@zI@A@ xI@`BA@vI@ (A@@oI@@A@)lI@ A@fI@ uA@ bI@A@XI@A@VI@aA@@QI@ܷA@@BI@@ͻA@z=I@A@ 9I@jA@[0I@A@`,I@LA@8-I@ A@1I@`A@ u2I@A@`6I@B@78I@@B@@p6I@B@=3I@@B@@W3I@@GB@`.I@&B@@g$I@ (.B@ %I@4B@-)I@`AB@ #I@@HB@ a#I@@EB@I@GB@I@PB@`)I@@3SB@@{I@YB@)"I@8eB@`&I@ |B@,I@ †B@+I@B@ ,I@B@@>0I@ lB@6I@`B@ H8I@FB@@33I@HB@,I@ B@ 'I@zB@I@3B@I@@B@= I@@pB@`)I@C@`H@=C@H@C@`H@B C@$H@C@H@C@H@#C@H@C@eI@7(C@`[ I@`)+C@I@$0C@`fH@@#:C@@H@?C@H@2LC@`H@=RC@{H@WC@LH@YC@`H@-aC@H@@qC@H@xC@ \H@ۈC@H@`C@$H@C@[H@`C@@>H@ ®C@@H@jC@H@C@H@WC@H@C@H@kC@H@-C@RH@7C@-H@D@H@DD@`kH@ D@H@D@ H@D@8H@ a D@\H@D@pH@`D@שH@D@MH@]D@ ҟH@BD@`H@{ D@H@C@܏H@eC@H@-C@@ H@C@H@ C@|H@@C@xH@3C@sH@8C@qH@G@ A@@X2G@ xA@@%G@vA@G@rA@` G@ gA@G@iA@B G@yA@ F@A@2F@ ~A@`F@ =A@F@MA@DF@`A@ F@A@F@A@`_F@5A@F@`B@SF@B@F@'B@`ĻF@&B@ F@LB@8F@ QB@$F@PB@`F@>B@DF@`6B@ ,F@9B@F@@.B@`F@B@ F@`A@eF@A@`~F@A@`ʆF@tA@ fF@A@ %F@A@ൈF@sA@ `F@7A@@F@SA@`/~F@ xA@ xF@`A@i{F@@WA@ OrF@A@fF@ A@ dF@*zA@`NkF@`qDA@`F@ 7A@ ~YF@|*A@EF@@F"A@ gEF@A@w?F@`A@2F@@h@@2F@@@`BF@ %@@iKF@@@NF@@@`RF@`/@@ YF@|@@ cF@@@@jF@@@@oF@ &@@|F@ x@@@pF@ @@ F@\@@F@Rw@@ F@$h@@`ݭF@jR@@F@$@@@`qF@>@@F@tI@@@½F@ i@@`F@j@@@pF@ `@@@F@@@F@@@F@`@@`/F@Q@@(F@@-@@F@[@@F@`@@F@@@ G@@@G@[@@G@5@@[G@s@@!G@@@ZG@Κ@@G@ f@@`G@@@G@ @@G@`n@@`G@5A@@@ G@!@@`HG@ %@@ &G@ ?@@?(G@ ?@#G@9?@#G@j?@'G@?@ )G@?@'-G@@@@2G@ @@9G@I?@ >G@` ?@>G@ &?@ %7G@ł?@jJG@`?@`CG@-@@:G@ 6@@>G@5@@ DG@F@@LG@)@@@.GG@J@@`0MG@@@GG@L?@:TG@?@gG@M?@BmG@@@ewG@?@ ~yG@a?@`GG@ &?@G@?@G@?@`G@%?@aG@?@G@?@~G@?@G@?@@yG@?@\vG@t?@uG@?@mG@?@!jG@?@dG@`?@B]G@?@sRG@ %?@`NG@?@@FG@@>@@G@`>@Q8G@Z>@ (G@;>@"G@ q>@ &G@i>@ 5G@T>@F@+P>@@F@o#>@F@@ >@`F@ >@F@@>@`NF@=@F@`0=@(F@7=@F@=@F@=@SF@@(=@ F@=@F@U=@F@=@`YF@}=@ F@@ =@PF@0=@(F@ј=@F@c=@F@=@yF@Й=@̼F@ V=@ F@@=@`_F@Z=@F@`=@@ÜF@i=@ F@=@̤F@=@լF@@ۏ=@F@lP=@F@#=@F@<@F@<@@F@<@nF@@<@ ̜F@ <@F@Q<@2F@F<@wF@F6<@^F@ <<@ lF@H<@=F@=z<@F@@օ<@@GF@<@F@ <@F@\<@F@<@F@><@F@`I}<@F@<@jF@<@ F@f<@@F@<@=F@ױ<@F@[<@F@4<@@WF@<@F@o<@F@ |<@@F@<@G@<@@G@ <@@ G@ =@G@ <@"G@@ <@`'G@<@6G@ =@f?G@z4=@LEG@*8=@2DG@q:=@ >G@`9=@]5G@g3=@0G@ e9=@ .G@C=@`3G@N=@@{3G@@M=@8G@ R=@=@1G@`o=@B/G@<=@`2G@Ω=@`6G@=@@>8G@=@`2=G@@<=@z6G@=@@1G@`=@ L.G@@*=@ ,G@{=@,G@=@1G@@>@ 0G@Z">@`25G@>@@6G@@>@ u:G@>@ G@=@@G@ =@CG@ S=@FG@ =@`IG@=@QG@` =@^G@@G=@eG@@3=@7hG@=@7hG@@p=@`BnG@ =@@nG@=@tG@Z=@xG@=@=G@@=@G@=@͊G@ב=@G@ =@ G@4=@$G@@G=@G@=@@֝G@ e=@ೡG@•=@G@4=@G@ |=@VG@y=@fG@`g=@¥G@` a=@4G@`[a=@`̭G@Z=@ࣰG@R=@vG@N=@ G@@3C=@HG@@=@@GG@/=@QG@`!=@`G@*=@G@@4=@G@F5=@G@B=@G@?=@G@1=@@G@ 1=@G@A=@ G@1=@`G@-=@G@S$=@8G@@=@`G@@ =@@>G@=@oG@<@G@@<@GH@ <@@H@@<@H@<@` H@F<@ H@ <@H@z<@ H@(<@H@=z<@$H@u<@# H@k<@@.H@`'p<@H@`)k<@H@@{c<@H@@yX<@@>H@P<@H@^<@H@P[<@`H@ K<@zH@8<@@GH@`/<@H@.<@ H@d*<@ H@ <@`H@*<@]H@`<@$H@`<@$H@<@ \'H@;@)H@s;@X-H@`;@2H@ S;@Q9H@>;@8H@q;@):H@;@ L>H@ S;@ ;H@=k;@`V5H@@gd;@-8H@`W;@8H@`2E;@0H@;;@ /H@ ;@@4H@ ;@`.H@ :@-H@@:@3H@:@0H@@:@0H@:@4)H@ :@ &H@`':@R&H@`:@ ,H@`4:@'H@@:@ (&H@`:@H@@P:@H@@E:@ H@(:@ G@:@]G@w9@G@:9@G@9@G@9@KG@8@G@8@G@8@`G@8@G@8@`G@<8@G@(+8@0G@`!8@`G@7@G@7@`G@17@G@7@@H@`{7@ G@,7@ H@7@ N H@`R7@`H@7@G@ %6@#H@6@G@6@G@`6@`YH@6@H@H6@@ H@@6@H@֞6@  H@@6@dH@!b6@@@H@@P6@)H@Q6@J.H@B6@`/.H@ yE6@ 3H@`&6@`4H@?(6@IH@@S6@WH@w6@|H@@(6@ H@ َ6@`*H@6@਋H@6@H@` 6@ NH@6@ ЀH@@X6@`܎H@D6@ 0H@6@@(H@6@@H@ 6@H@J6@`GH@6@H@`H7@j I@ ~7@`'I@`07@0I@`7@ 4I@@!8@EI@8@ PI@h7@@dI@7@ajI@k!8@jI@ %8@@mI@7@xI@@ۿ7@I@ ١7@dI@߫7@@I@7@I@iI@6@0L@f:@X e L@@:@UL@f:@L@:@aL@9@{L@`9@"L@9@ D,L@ј9@@/L@@W9@.L@69@0L@8@&L@` 9@&L@48@`K@7@`K@I6@JK@6@ J@`6@fI@@7@ulI@@8@iI@\8@ iI@8@@|I@8@@I@ ;8@ছI@x8@DI@ ˝8@ I@8@֫I@8@༲I@E8@ I@j8@`6I@``k8@KI@ W8@^I@ O8@I@ @8@I@D8@`I@@`8@I@?X8@`YI@@58@ DI@78@7I@PI8@I@DD8@`I@ #8@eI@8@ UI@7@|I@@]7@ O J@7@ J@@7@>J@@8@sJJ@18@PJ@F28@IWJ@"8@ J@@8@@J@b)8@'J@*8@`J@8@ J@ +8@J@8@J@J8@ K@`$8@K@i38@a K@E8@` K@L8@rK@T8@@K@@'=8@wK@78@`%K@@?8@`0K@@8@I?K@@o8@HK@$p8@JK@v8@iCK@}8@LK@8@@RK@@8@ SK@ y8@ZK@@'8@ =bK@8@@aK@8@*K@ 8@ K@A9@3K@I?9@K@E9@ K@pM9@K@9@ fK@9@lK@@d9@K@@Ӗ9@ %K@@49@3K@`9@PK@ 9@ e L@@:@0@FH@G?PN@ `%0c \#!L@r&L@t =*L@ )+L@a*L@WR/L@@"b`.L@-L@c0L@= 1!M@0&M@R`_L@@6lL@   ~L@ !CL@L@L@ ׂL@@#L@eגL@@""@ÜL@`K@-L@`q`ݕL@`/L@FB(L@bL@aj@?L@aj՜L@ L@`תL@] L@GkL@E2L@L@$L@L@rL@ քL@%?L@~L@@Ȑ`L@@X@WL@ #L@L@ L@]n`L@] >L@@J`L@A`qL@L@L@ !@WL@g#L@( %L@ L@ޝ ~L@` =L@@L@ ׂL@IqM@@U@wM@G ztM@> {M@D )M@@<+ \~M@@S 5yM@ M@`4 @-M@H `M@`؉M@A' yM@  M@ !C~M@OzD{M@ S`vM@ *;JvM@XyM@@<@|M@ guM@IqM@B`L@bL@aL@HL@ L@#AL@(`L@% L@^M3L@@"bL@L@QL@mL@^@.L@ޝ5L@B`L@`YK@J`/K@ K@@M K@#3K@^M@K@`AK@`l`/K@ *K@Z!K@K@=JK@EK@@`K@Oz gK@dK@ K@ \`6K@`YK@ K@@K@@tZQK@`SK@ \ K@`K@`L@@3L@ܾ xL@^K@ K@@BJI@`r(TI@ \I@gabI@-VI@@ tSI@` MI@@BJI@f L@@;எL@L@ZL@`|@L@f L@ L@ϩL@ cL@@jL@^L@ c L@ c L@`L@f L@^MM@ @M@@z5 N@``N@NN@ %N@;L %N@`N@ !CN@]n`N@@N@`+rN@`$N@ R'N@ $N@)N@`c D$N@@+N@@%,N@ Y`/6N@`+ >N@`@-M@@"" M@@33M@ M@`k!M@@ M@@Tv"M@@M@` ~!M@@|$M@_8.M@ `q4M@`[5M@ K9M@@[pAM@@LDM@OM@QLM@EBM@`JM@@ףFM@8M@r OBM@[IM@jFM@@BM@8M@ pUDM@@* `KM@) GM@ OM@ 1LM@?H SM@@K VM@x |RM@V4RM@p=LM@@ BM@=M@`q'=M@@I/M@@ #M@g M@7L@@L@`:`YL@` 8L@@['L@}L@@O8L@`CeL@H@L@L@ `0L@ZQL@L@PL@n@hL@` RL@z1L@eL@x =L@'RL@ S3L@ L@7 L@P L@` @L@@U@L@@S@L@`L@L@GL@L@@z5 L@L] UL@`+ `L@`Ce@L@@ygL@SaL@2aJL@`:L@?H `;L@k9L@`+ .L@` M,L@@?8L@`Ce5L@V.L@ɯU$L@@ O"L@N`L@ \!L@ 0 L@DD L@8/ ML@`AL@|`q L@T @L@`:mK@ L@[L@3@L@`4sL@6P@K@ >`K@ ,K@`HK@z`K@@.8K@^MUK@` ԅK@`fK@`r@]K@` dVK@QK@@7GK@޿3K@`qؿ K@`K@ɿK@˿K@`y5 J@ ?J@vʿJ@@ѿ J@`J@@пJ@z|J@&? J@x?јJ@? DJ@/?!rJ@?eJ@`0?2{J@ [?yJ@Be?`vJ@S?`bJ@G?PJ@? O2J@ MI@}?I@?z|I@P?@puI@@#? wI@`^M?lI@?dI@??^I@= ӿhI@``]I@bI@@fI@ ΫrkI@`ffkI@mKeI@gcI@0u >iI@p^lI@t gI@2`cI@`@mI@G`hI@NKeI@`o `I@O ZI@@Q^I@  `[I@}[I@G ORI@xVLI@)\IOI@A'!RI@LI@bFI@@ BI@xJI@ OZI@A`]I@ 9 @oNI@@ xVI@ @pMI@ DI@`:m x6I@ ~1I@  &I@/ I@P)I@Ԇ`'I@^P)I@3I@:I@ 7I@`4I@? ,)I@Y`.I@ $I@%`I@ OI@# >I@ !C`qI@=J5I@@K~ D I@Q8I@`m` ,I@H@@FH@ yI@`0 I@ 1`HI@`f&@I@ 15`I@@ףI@`I@ I@`l`I@ *`I@ޝ+I@Vt4I@y5 6I@7GI@f@AI@`JI@`$KI@o`I@ 6`dI@``GI@ρI@g~I@ I@ @ۗI@7I@> I@3lI@ I@`UI@-XI@ |sI@@hI@I@AI@vI@TI@P 3I@6P `qI@_ `I@W I@  DI@| fI@ @hI@I@rQI@@ I@].II@ I@O`I@l`I@ t:I@ c'I@j`I@@""`I@`:m*I@@I@@v`/I@$`|I@`$I@oI@I@j@I@z:I@RI@ <JI@a8I@N@I@8N`J@YJ@ xJ@@J@Z(J@>=J@:CJ@໻ DJ@;FJ@89EJ@`lMJ@ < YJ@`]J@`d`J@`/fJ@ !C`0uJ@z@qJ@*jJ@eJ@`cJ@&^ZhJ@@* dJ@uKuJ@`~ׂJ@ caJ@Ϋ(J@aJ@ J@G (J@ `_J@@3 yJ@cJ@@B ǰJ@ @oJ@7`/J@= J@`J`J@`UJ@ J J@@<J@@"`J@J@aJ@@.J@_,J@ vJ@ k@hJ@@J@\<K@`CeK@ K@m@.K@`iK@G`K@L K@  `K@ K@ `K@@< K@@< k!K@ K@ K@ F i#K@;L +K@ Z@K@  <[K@G ,aK@" @-pK@ isK@xV oK@  sK@ tK@@< yK@ųyK@TK}K@ 9}K@ 9 rK@ lK@ =bK@@:,_bK@CajK@N[@XbK@ cgK@ xnK@@; kK@#`pK@Œ:tK@`oK@ CiK@ r\@fK@hd ~YK@#VK@2@]K@?gK@h@.oK@`4@gK@YK@m5QK@ @QK@  WK@g*bK@d`GqK@  ~K@kK@:uK@@ sK@. xvK@4K@@ ِK@] L@$L@`L@ `0L@8 %L@8L@&IL@@L@ԥL@`SW L@R =L@`+L@r8L@L@`|L@ @L@[`L@ \OL@@ϊPL@GL@ܾvL@^ ML@8Ff2@`lf@Q@1XFanux%3t /I{ I y : `@oL@h``ʶL@VaL@ n`L@>`7L@ ` L@a L@@a8L@@`L@haL@~aL@`a@L@aeL@0 alL@` a)L@ a\L@a(L@`x a`HM@` a` M@`B aPM@a g M@ X aM@a@M@a M@aM@`9a@hM@`zM@`M@ ` `#M@` M@;`@M@p`M@ S`M@``M@ `M@`+` M@@b` %L@`` L@` yL@` M@`7M@@`M@`@M@`eL@ ``L@@ `PL@@`@L@Q`L@``jL@` L@`L@ &` L@ ` L@G``L@@`bL@``kL@ J`lL@`8L@ `L@Y`L@ a`L@ ` L@`JL@`L@`[L@``L@`L@``L@ ``_L@`@oL@ZDc^L@Dc@_L@HBc@lL@:c@|L@`x:cPL@Y;cL@`9cszL@_>c ,L@9c@L@ 9cL@=@c`L@6Bc{L@FDc~L@@Bc`6L@@>c L@ /Gc͓L@Nc@?L@ OcBL@`NcwL@LcL@Ic\L@Cc`L@ 8Cc L@'Ec|zL@2HcZpL@Ic lL@ IctL@ Oc~L@Pc`~L@PcL@'Sc@-L@ Yc L@ YcL@VcL@ JWc L@OSc;cL@:csL@Z8cL@5cL@@:cL@`+L@$c^L@vc`L@cL@ cjL@VcKL@ sc L@ucL@`cL@bc`GL@`"cL@cL@`cL@ c L@~ c`L@ c@L@ c@L@gc`L@cL@FczL@crL@` cL@ c L@clL@c &L@@ cL@ scJL@vc3L@`c`ĻL@`xcL@ cL@c`0L@ XcL@`]c`L@ !cL@ cL@b!c7L@ c`qL@c L@Hc`L@cL@c L@@bc UL@cL@ /%cL@ J%c`L@@cL@!c L@q,cL@+c fL@@.c fL@/cL@0c5L@/cൈL@#3c &L@`2c L@O3cxL@l5c[wL@8c`qL@q8cSnL@`96cpL@6cmL@`c _L@ZDc^L@v``/~L@`t`ωL@@` L@`L@``L@h` L@`L@`L@`L@ |``GL@`L@v``/~L@`*c~L@ !+c9L@@ -cPL@(ckL@%cL@`&cL@ cSL@`cbL@`"&cL@`'cL@`*c~L@=`7L@ &` OBL@ࣴ`$HL@ `PL@`VL@ |`lL@ø`#iL@&`cpL@` rL@`4`@oL@@`L@?`[L@D``L@h``L@@`vL@`yL@`@.L@0``L@``}L@``nL@`hL@ `zTL@``OL@`]`@LL@` [L@`dL@`rkL@``/^L@ |`@^L@@Ʀ`ZL@`tQL@ \`7OL@ `LL@`` CL@`"``CL@ ң`@>L@```:L@൪` DL@C`[GL@`GL@`PL@`)SL@`*RL@``UL@ &`XL@``(TL@`XL@`*jL@`mL@C`mL@U`dL@@`fL@`oL@`rL@``kL@@`@qL@`o`wL@`sL@`woL@ n`@]L@`SL@D`RL@ `\L@``fL@O` cL@@<`ZPL@ `@LL@`GL@M``ML@u`NL@@ `IL@ j`@L@`c8L@@`2L@@E`m/L@ ` ,L@,``_$L@g`)L@`8.L@~`j"L@ ``#L@``L@`T` L@``L@``@ L@@` L@`@$L@ ``'L@ `L@`mL@`L@ a` =L@``a L@ j` K@@`R?L@`Z@L@` LL@D`PL@@؞`eL@u`hL@` dL@` LL@ ``IL@`BL@—` GL@ `BL@@`R?L@"dGM@`"dPM@d"d@WM@`Td^M@d geM@,d@HM@"dGM@`L@`*L@١`z,L@`P9L@`a:L@`2L@:`,L@O``/&L@0``"L@`L@ˁ``AL@`` L@ &`.L@`o``3L@``zc V5@`c O5@Gcc6@c'6@ c@96@zc36@`+c.6@>c  6@mc@5@>c V5@`K@`aK@`L@`j L@``L@D`` L@D``L@`9``qL@O`L@@`|*L@`}``+L@@b`L@O`QL@`L@` L@`QL@` L@ `BL@` OK@`@K@U`7K@…` K@`K@?`K@#`^K@ a`bK@``L@`a L@`` L@ٳ`L@`L@`@L@```L@#` L@ `j L@5`UL@`L@@E` L@@`K@`K@`K@?`K@4f I@@6fI@ 'fI@d&fI@`B&fI@@$fI@@w!fI@H$fI@`+$f@I@*fRI@+fI@3fI@4f I@`f`K@i` K@Ff`K@Ff`@XK@Zh`K@`h` K@ h` ,K@ ai`K@ql`K@`n`{K@n``ʦK@Oi`K@@i`K@j`!K@k`K@j`)K@l`'K@@n`K@ jm`K@@ o`K@gm`K@o`@K@p`K@@n` K@`}p`K@u`K@`0z`K@=z`ֻK@s``K@`fv``K@hv`'K@`kp`K@$t`K@Fv`kK@@v`1K@s``K@o` K@@p`K@ u`KK@u`@K@`n` ~K@n`(K@ |q` yK@`xr` `K@ jg`K@@^`bK@]`!K@ n_`@üK@`^`K@``K@^a`{K@d`5K@`f`K@ `cXK@ ` [K@ ``K@Ն`dK@ e` hK@O`SfK@`rkK@`f`r{K@࣌`jK@ e`uK@5``NsK@`uK@m`xK@?`'}K@ ` K@`4``GyK@ J`ewK@` {K@`K@`T`@ÄK@଎`K@ X`ɇK@@b`K@Б``K@`wK@`Փ`2K@``0K@``K@ൔ`@XK@~`K@``ؑK@`@oK@י` K@̚``ŢK@`K@@Ơ`3K@-`K@@`ϡK@ќ`ͣK@@b`K@d`K@``K@`K@```K@`RK@_` yK@@3`K@``K@`kK@ū`K@Q`K@`` %K@``K@`K@@`K@`K@` &K@`9`K@ ɧ` L@@`) L@`+` L@` L@6`L@?``"L@` &L@@`@,L@`]`)L@`$L@@`)L@`@)L@à`L@`L@`k`L@`L@ǚ`(L@``K@`}`^K@`K@@ƌ``K@@3``K@p`9K@`Յ`@K@`f`K@ ``K@`` %K@```YK@M`@.K@` xK@p`)K@@`K@$`tK@@`K@``K@;`K@u`@WK@```K@`MK@`@K@`` OK@`0`K@``K@`ƙK@ !`K@@`@hK@`K@V` K@~`K@ `K@ `ωK@܃`lK@`T`K@` K@@؂`@|K@P`K@@3`@~K@`rK@>``sK@ ``GqK@~`5iK@@b~`dK@`4`cK@ `cXK@hf@zI@\f@I@TUf@`I@@%Uf@``I@ 6Vf@I@g_f@jI@cf@½I@`lf@I@hf@zI@cD5@øcBE5@λc@L5@@cAV5@_c Q5@c@-X5@ c ]5@^c@zd5@c_5@LcW5@ \c@'M5@PcK5@ cq5@ cz5@c5@cA5@ sc`05@c@X5@Cc`5@ ɹco5@cv5@`c@]^5@`xcZP5@cD5@d K@ &d@FK@gd@K@`Bd2K@@*d K@dK@`Kd`K@ ed K@`fd@K@gd`YK@dլK@@d K@Qd9K@`dK@dDK@dK@d`K@d K@@7d@JVK@ d@` ]K@@d@jK@pd@!jK@Ad@`K@d@K@d@\K@@ķd@`0K@;d@@oK@`Id@K@d@K@d@K@` d@`˝K@`xd@QK@`d@kK@@7d@JVK@@doK@ 8dpK@duK@0d K@dK@ |dK@dK@6d\K@bd K@md^K@drK@d@-K@@<d ~K@cK@@bcK@c K@gc K@@cK@@*cK@`cmK@`cK@Fc`qK@>cK@OckK@bdwK@@doK@Xr`mK@s`@K@@r` K@@p``K@p`ƑK@vr``YK@r`@?K@o` K@@n``/K@?l`K@@j``K@k`K@5o`@K@@p`iK@Xr`mK@=``UK@`YK@ `\K@@``kK@`Ӡ`@oK@'`uK@զ`rK@ˣ`K@ڦ`@•K@`K@Q`dK@`dK@ d K@d`K@ ɻd yK@`Td K@`dK@@d %K@d`K@md@?K@@d O K@zdK@^d`ŢJ@d`J@d үJ@YdJ@ &d J@`dJ@dJ@ nd@J@DdiJ@@dJ@d J@#dJ@d`J@ dSJ@`d!J@ dJ@ dJ@`kdJ@@d J@@dJ@@dJ@@dJ@@d OJ@ dbK@d`J@@dJ@d`J@`]d`J@`d`6J@pd3J@pd J@`+dJ@dbJ@`BdJ@dkJ@dJ@d >J@`0d J@ nd@J@d J@OdJ@ |d`HJ@Hd J@hd8J@ 8dJ@$d3J@`d`J@ dJ@d@J@dJ@d`J@>dJ@;d J@@d`˽J@ Ad$J@>d`J@d J@`TdٸJ@Vd`J@:dJ@)d`J@@3dJ@dkJ@d@oJ@^d`ŢJ@`+ eoJ@@eJ@ze J@ |e'J@`teJ@eעJ@ ecJ@ eJ@ e@J@ eJ@# e`qJ@eDJ@-e$J@dJ@ sdmJ@@*dJ@d e`J@e@J@_e zJ@6e xvJ@`+ eoJ@›c 5@hc5@ nc5@pc` $5@`9c<:5@ c` 45@ࣖc`(5@`c5@›c 5@ e@m_J@Xe@eJ@ e@ mpJ@$e@$pJ@e@JnJ@` e@uJ@Ϗe@` uJ@`]e@`xJ@"e@dJ@e@ J@˥e@`{J@Fe@BuJ@@e@@vJ@Se@:tJ@me@IoJ@ e@` mJ@e@ iJ@e@`hJ@ྤe@`cJ@ൢe@jJ@ e@m_J@ erJ@eJ@ze`J@YeQJ@`]eJ@e` J@`ܞe) J@e J@ e J@ erJ@eJ@`ejJ@eP J@ e@ J@`e J@@eJ@ seUJ@^e<J@@eJ@5eQ J@@e'J@Ue{#J@e@%J@e(J@e`H(J@e5J@¿e)J@ٿeB%J@eJ@eJ@`9e`J@eJ@'eK J@ewJ@=e J@e` J@e J@eKJ@6e^J@e J@ezJ@ e@J@e2J@eJ@`*f@I@@@'f@cI@ +f@(I@ /f@I@2f@`J@`o4f@.J@ 5f@ J@1f@ I@`2f@ ,I@ 2f@I@.f@I@@<+f@|I@`*f@I@f I@@3f DI@@f1I@)fI@Of@I@fI@@fI@zf DI@@f I@@fI@f`I@@fiI@@fI@ /fI@f@hI@yfzI@fI@ fI@U fI@f I@fZI@f`I@ZfI@f UI@Df)I@f I@f@I@@fI@:Cf@I@@BftI@>f`I@X>fI@`>fjI@FfJI@FfI@`>fI@ =f`_I@:fI@ 3f@I@`4fI@9fI@9fkI@'=f@hI@4@XzcE4@`jc[4@`bcj3@`kbc3@_cʾ3@]c3@ |YcΊ3@ Zc@z3@-`c1T3@lcA63@ qcq3@`rc@^2@ !uc2@zRHD@@yR ID@pR@ND@qR!RD@vR`qTD@yRbQD@wRMD@R@FJD@?RvXD@@ {R@eD@pmRgD@mR kD@@"nRmoD@kR oD@ iR`hD@,iR@XrD@@eRuD@@"^R`rD@_RyD@i[R$xD@@*WRsD@VR wD@gYR`zD@NRtD@@IRwD@GR|D@p)R g}D@BR D@WRD@RD@{R#D@OR`HD@N#RzD@'RuD@R sD@R D@R D@@2R D@%Q|D@@QkD@bQ &D@@R %oD@R qD@R`_lD@@,R@eD@@"*R`HhD@MR[D@@kRQD@ekRKMD@zRHD@S g F@iS_,F@QR@X2F@R`F@tUR`HF@1MRF@@ERF@,R|F@UQF@ QଂF@@QшF@`QF@@2Q F@ eQʦF@Q F@ Q yF@QKF@@Q xF@ִQ`F@@Q`BF@ :Q F@ΪQ*F@Q`ֳF@@Q@ӶF@@Q`/F@ QZF@ݝQ F@@QF@QZF@@TQF@@QlF@Q{F@ғQ F@BQG@ Q NG@aQ@PG@`Q0G@FQ68G@Q`YYG@[Q`ŢG@NQ FG@@CQ#G@@ CQG@@8Q`G@ I Q`G@QG@@QG@Q@ӮG@Q@G@@P G@@P`+G@vP@F@PYF@|PF@PF@@P`F@P@F@#PF@KP`F@PF@PF@P F@@PF@@mP`F@@P5F@@P`F@9P ~F@6P`xF@@P `{F@P9uF@{P@vF@ 1P jF@P sF@@P`kF@PtqF@PajF@P TF@PUF@P\F@rP[F@ZPmOF@@P WF@@P`OF@yP >QF@PUF@PGF@@2PBEF@`CP|JF@PaBF@@ P@oNF@PEF@zPLF@wP`GF@@P ?F@P@?F@5P U5F@@PQ8F@P`7F@5P`GAF@(QS>F@@P`5F@]QF,F@QAF@ QF@>Q`8F@;Q,F@@LEQF@EQ F@ DQF@@OQE@.OQE@@NQiF@VQ E@UQF@@uYQF@_Q` E@@aQzE@cQbE@QeQwE@fQ`E@kQ$E@@fQzF@@[hQF@oQE@@lQE@`tnQE@@;pQ@E@@3sQE@pQ`F@@sQF@wQF@XvQzE@QtQ fE@@qQ$E@5uQiE@wQ^E@@2xQ@E@@~QE@zQ E@}Q %E@QE@vQR C@@2R DC@RC@AR@ӎC@~R C@RxC@R &vC@^R}C@R`C@#R yC@@R`C@R@.C@@RrC@oR$C@RRC@R`C@@RC@ZRC@@RC@RC@RC@@RC@R@pC@@RC@@ R7C@RռC@RC@R =C@ R`hC@ ReC@@RUC@R ~YC@R`XC@RPC@@R`HC@$R`NC@@R9C@@R'5C@_Rj:C@WR 8C@@"R 3C@_R`0C@@R`+C@@"R@oC@RC@@2R`Y!C@RC@iR@.B@JRB@R@-B@9RmB@R B@JR{B@RB@@"R^B@R B@!R xB@5RB@`RB@,S3B@5R B@rR)B@gR ~B@RB@RrB@{RB@@R gB@@R B@R'B@R`_B@kRB@vR`B@@R &C@@RU C@R( C@@"R` C@MRPC@R{C@`\RC@)R C@`SR ,C@@RC@ZR C@XR0C@R"C@R)C@yR@*C@@R@/C@@"S`6(C@gS7C@S9C@^ St1C@FS1C@@ S`H(C@S`=C@@S@C@ZSs:C@@ S@?HC@ S@XJC@S\FC@]S IC@ SPC@ SIC@R KC@@:R`SC@SBMC@S`PC@y S`SC@ SU\C@ S[WC@ }S [C@ S@XbC@(SU\C@@lSbC@wSc`C@SWC@SWC@EShC@rS@lC@ SaC@S9eC@ SdC@J S2kC@@ SrC@M S`NsC@ S`N{C@`S9uC@SZpC@@SmC@S@zC@@SC@S}C@ S`łC@@SC@S@FC@ S\C@@ SՄC@XSC@S`NC@@ S@C@R C@BRѰC@SC@R@üC@R|C@ZR$C@ReC@RaC@8R C@NRC@RC@@S@.C@@SாC@S`C@@ SC@@ SC@S`ŲC@@ S C@SC@(S C@@S DC@ SC@ESC@S C@ SC@ZSC@<S@C@SC@@SIC@S`C@BSC@`SC@@S'C@@S)C@@+&S`YC@SC@ S C@SC@BSKC@SbC@ S~C@#SC@i#SՄC@SyC@StC@`!S<{C@!S`vC@S`YqC@O"S `kC@.SkC@!ShC@"S`]C@V SbQC@Q S CC@vS1C@VS-C@S*C@r(S=C@W+S@oVC@@*S=C@>%S`2C@S@o&C@,S@.C@QS C@QS`C@S@C@<SC@SC@yS >C@@[$SC@Q(SC@@1SC@3S@%C@4S@./C@8S*2C@G5SB%C@6S"C@>S-C@pAS=C@DS95C@@+FS5C@@2LS`.C@OS 2C@PS@XBC@CS#YC@cASYC@&BS >qC@@CS[C@ISUC@QLS`HPC@@LS DTC@NSzTC@@:US7C@@"RS`A.C@OS`x*C@AS`3C@@?S-C@@BS`(C@#=S!C@@B@fS {B@)SB@G5S@.B@7SlB@:S xB@ B@R CB@ }S`BB@R0B@@R6B@@+R@F B@@RB@R` B@@R`&B@R@B@@R gB@@CS xB@) S(B@bS%B@SB@QS$B@@ S`B@SB@SB@ S B@S B@ZS`B@S B@@S ` B@SB@ %SB@~-SB@b.S$B@*SM$B@@.S`(B@@,S#B@r0SB@.SlB@+S B@.S`6A@@2S A@ SRA@@SA@S@A@rS\A@@CSA@SA@nS:A@SA@SS`A@@7SஶA@&"SA@`4S`NA@AS`qA@#SJA@@'SA@@+SA@Q$SA@J#SjA@)SA@`1S}A@o6S`~A@DS A@@*CSA@`Sɧ@@Sष@@^Sɯ@@@Sߣ@@ SJ@@SV@@S@-@@%S`H@@S@@S@@ S@@ESu@@@*Sof@@bS`@@@S`0e@@%Sl@@S@^e@@SB]@@S =Z@@S@XR@@ TQ@@8S`%O@@ TwG@@T(D@@T y=@@%TrC@@@TB=@@@ T`6@@@"TRG@@@+"T!B@@i+T@?@@>!T>@@@ Ti;@@(T 6@@T`0@@iT3@@gTb)@@@m(T` @@ )T +@@*T1@@y)T`:@@J+T6@@`t*T '@@>-T (@@@3Ts:@@@1T?@@@5TD@@Z5T`@@@~1T &@@*T9@@.T D@@v4T` @@k2T`@@@C9T@@6T@@6T?@9T@ ?@-T?@GT?@@ CT?@GT ?@ 1QTg?@OT ˽?@ LT1?@OT@?@ IHT ز?@HT@͛?@JT$?@LT@?@bNT?@TT?@ST ?@RT}?@KT?@LT{?@@QT@Xb?@@UTo?@nSTa?@QT`W?@RT`R?@ k_T`\?@@QTH?@@QT}B?@`XT#?@ZT$?@@"ZT4?@v\T y5?@_T$ ?@[T?@YT?@ZT`/?@r`T`?@@\T?@@aT>@@]T@.>@`Tk>@@d`T@Ե>@ \T@X>@[Tw>@]Ť>@k^T9>@_T`>@6`T>@ }ZT@-x>@_TT@>@KT@=@>T@1=@0T<@#T<@!Tt<@9&Tf<@#T(<@TL;@5%TT<@'TJN<@t'TB<@(T@<@@/T<@92T <@/T<@5T<@@0Tl<@`$T<@T ١;@@ T@9;@T5;@@Tk;@@T:@T V:@T:@?T9@J T9@) T`9@iT9@T@g9@@2T%_9@ET=9@T`/9@@KT@.79@  T29@#T=9@-T`"9@6T-9@ET9@JKT :9@{HTCT9@6@T@ 69@@T#Q9@HT@`9@@QT!9@OVT 9@TT 9@?XT`/9@gTG9@9nT@9@@*oT9@ lT9@jT`9@@mT9@sT:@nxT`er:@Tz:@y}T:@yTǐ:@uTҬ:@@zT:@@|TΊ:@΃T=:@FT@:@҃T:@ىT:@ T:@ŊT!:@OT :@xT` :@ZT;@MT#a;@fT s;@?T!r;@T@ӆ;@@ϪTi;@TA;@@ T ;@@TI;@T@;@@T`;@T@;@T;@Ti;@T`;@T?<@@;T;@T;@@T;@ΫT@-;@@T;@T`;@@:T<@ܲT@.<@@T:\<@Tē<@hT`<@ݭTG<@8T+=@VT*=@@[T`4=@TjB=@TM=@Taj=@@CT U=@ZT x=@T=@ T=@T>@.Uw>@U!>@U=@@U@=@ U 2=@^U=@U y=@@ UO=@)8Uй=@7U=@i7U=@@U V=@LU2=@VU9=@YUl=@]ZU`=@@WU ~=@TU=@SU=@ YU =@@hU >@ jU@!>@ \U>@5YU@ >@e[U!>@p]U>@^U`_ >@@_U">@@iU#>@&nU@/>@gU`G>@@*oU G>@UuU J>@FvU@>@ZuU:>@pU=>@BnU`Y!>@ 1UV>@Ud>@U`n>@U`>@ಇUk>@rU`~>@FU u>@eU>@U>@!U U>@@ Uz>@٥Usj>@U[>@Ud>@Uo>@U@u>@U@>@@U>@οU@>@U N>@@Uis>@XUis>@bU y>@@"U V>@U>@`U{>@Ui>@UFR>@@ UM>@U yU>@FUe>@U`m>@@Ut>@@U;{>@@:Uq>@@U`S>@UP>@hU`G>@Ur;>@@"UB>@vU`G>@Ui>@bUl`>@BUi>@QU{>@FU>@U9>@BVƱ>@QV ~Q>@VSg>@Vb>@@VR>@$VY>@&Vzd>@+VY>@1VI_>@6V`g>@ PVGQ>@!SV[_>@=VV`\>@@TVL>@@[V`7>@E_V />@@umV'->@|VC>@ಃV``[>@@Vc>@rV`|M>@V2>@NV4!>@nV>@{V>@O~V7>@wV`'>@rV`>@)pV>@9jV@.'>@kV>@`tV>@vVF>@rtV=@@lmV=@@nV=@MlV@=@gVn=@_dV@=@@dV`=@^V@>@`WV@^ >@>YV>@ \VC>@@m\V=@ XV=@WV=@ZV@=@iWV=@VV=@ XV=@=VV==@@[V>=@@"^V =@FfV;=@=fV=@`V@P=@gVЩ=@@lVô=@igVo=@nV=@@fV~=@@LaVw=@bV@e=@QVZ=@OV@O=@@*KVQ=@%GV A=@@TFV6=@@@VJ.=@@*CV)=@JCV=@GIV@ =@HV@<@EOV=@BZVL<@RV =@VV@=@`YV=@y]V@=@_`V@=@XfVI?=@@hVK=@gV VT=@sVQ=@6pVZ=@^qVi=@uV@'m=@ tVx=@|V@u=@iV=@V`=@шV@-x=@ɃVu=@V l=@V@f=@@V:L=@VH=@QV8=@@Va*=@@*V@.=@@ V@=@@V%O=@#V >=@@*VZ=@@:VJ=@BVoN=@V#=@@"V)=@V`_=@nV!=@`Vt)=@øV"=@οV 8=@vV:=@yV@=@@VU=@QVHP=@V`=@V!R=@VU=@V$@=@@VB=@iVT=@@Vs=@ IV`=@V ~=@=V O=@$V`=@Vj=@!V{=@Vʎ=@Vd=@V`=@@:Vơ=@ V =@@2V$=@V=@QV=@@VL=@0V=@yWs=@ W=@@ W =@W=@W`ݭ=@kW`ܞ=@@W=@@WA=@0"Wj=@ 4W֤=@bFW=@RWb=@GuW V=@@xW=@yW@=@0rW!=@pW`=@krW=@vW=@^}W =@@vWǰ=@@yW =@XW`ݭ=@NW@;|=@Wn=@ͤWS=@@2WD=@`tW@=@@"W=@bW=@ZW$=@@;W@=@W=@QW=@NW@-=@@W=@@Wј=@ZW@]=@@2W@ԅ=@W =@@Wl=@@W \_=@@W@_=@@ǹW P=@W$@=@W8.=@W4=@W=@JW<@@W@<@8W!<@@Wơ<@@Wk<@W<@W<@@X<@@ X<@@ X4<@Xय<@bX࣠<@ X<@nXB<@@X<@@Xt<@@Xj<@@"Xh<@#%X<@ )X<@B&X@<@G!X<@`Xj<@J#Xq|<@@!Xw<@X@]~<@@+Xu<@~Xo<@)XP<@,XT<@]2X@Py<@.3Xy<@0Xh<@@1X ye<@@5XMl<@ 6Xf<@2XX<@@1X;<@8X#<@;Xw'<@:X@@<@=X 7<@=X!<@^AX"<@ @X0<@CX,<@ZMXT<@IX<@bBX<@@uAX <@MX` ;@OX;@_X;@_XQ;@ZX;@TXQ;@MPX;@@*[XR;@aXF;@`X`L;@@:]X`fV;@<_Xye;@fXK;@jX>Y;@`pX v;@`mXjR;@jXP;@kXNK;@hX`5A;@BbX@<;@[X E;@@m\X/;@X^X`;@@cX@4;@@cX|:@^X:@@aX :@@bXT:@cX:@<_X :@ ZX:@@\X Vt:@\Xvh:@YXc:@VX`X:@VXQH:@ TXkA:@QTXP):@RX :@MX x:@@QXA:@@2PX9@ LX@X:@JX :@HX@9@ VX9@@VX9@WX9@^X9@gX@:@@mX@ :@`xrX :@`DX :@@UX :@pX %:@7X;:@XL=:@Xd:@@[X b:@X@(l:@X~:@@ XH:@ZX:@XX:@_X@;@ZX@ ;@6X@;@X@dH;@@2X@ڐ;@X^;@@CXb;@ X`;@yX x;@qX;@X@;@Y`<@ Yy5<@:Y g<@Y@X<@)Y<@ Y`<@2$Y@<@`*Y@=@1Y ,=@1Y ;=@(AY@{c=@`0BY`s=@IY}=@@ OY=@`RSY=@ SY`=@`VY=@YY@=@bY=@@bY=@dY=@YuY=@$Y!=@ࣘY =@@Y &=@൰Y=@rYe=@൸Y@.W=@@3Yb9=@Y`R7=@`BY==@Y`R=@`Y@=@`Y;<@Y@P =@`Y`/&=@Y`(=@Y@9=@YHP=@QZ=@+Z=@ +Z`/>@3Z@Y>@@7Z>@HZ>@QZ>@_ZC>@wZJ?@Z@y?@}Z ?@LZ ?@Y [`?@T [BU?@`[BU?@ 7\`?@@ͳ\ @@@\[@@a\ W@@G]D@@M]X@@ J]@ V@@I]@O@@@WG]N@@zH]@U@@L]0]@@ N]<[@@ O]`_T@@+Q]@?X@@Q]`@@Y]@@zi]a@@`ņ]@@]q@@L]`@@B]@@@]@@]@@@] @@ࣘ]|@@@]@@]A@c]\A@ J]tA@]A@]I'A@@]5A@]`/6A@h]|2A@ ^K=A@^:A@@W^ `CA@ &^`GA@ 6(^ OA@%^kYA@`)^ wA@ &^7A@+'^ǐA@-^ %A@@/^` A@`x6^UA@ 7^PA@5^ yA@@^6^A@ B^`A@=G^wA@@R^@A@X^ UA@v\^@A@`^^lB@Qd^`/B@ui^^B@ v^`&B@ {^`CB@+y^`0EB@|^ =JB@`+z^QB@`v^ xNB@ t^!RB@ o^]B@q^ ,aB@p^5iB@v^*zB@`z^}B@`0^@yB@ 8^ρB@^B@B^@۟B@ח^B@`^`B@ ^B@ 8^`B@5^mB@Q^ZB@k^B@=^\B@ Ԗ^@B@^^B@^`B@T^`B@`Œ^!B@^`B@@^3C@^cC@ k^ C@ki^C@d^ C@x[^lC@\^@C@@c^SC@i^B C@=k^`6C@ n^DC@p^QC@u^` C@@{^ C@~^ C@`}^3C@ ^C@^ C@^C@ٙ^ C@@Ϟ^@.C@^`_B@@p^B@Ǩ^@B@ s^iB@`+^ C@^@B@`ž^ C@O^jC@Խ^`C@p^|*C@3^Z'C@O^`9C@Q^|RC@^[wC@^ {C@@^sC@@^`0C@^ xC@ !^`C@^C@@E _`qD@_!D@@_`BD@@_@h\D@ _XD@`T _`/fD@h_@WkD@)_`mD@_`AnD@ _`cD@`T_~D@_@FD@`_|D@_D@ _D@b_xD@z _`0D@ _\D@_E@_` E@ n_+E@v_ PE@__E@@"_ DlE@+_ E@ &_`E@;_ &E@_`AE@G_'E@D_E@ _ E@ _bE@h _E@ _ E@ _9E@_E@_@E@` _5E@@ _`E@_`0F@__\6F@_MF@_OF@ _WF@^`uF@ ^@ۇF@@W^zF@^9F@^F@^`˵F@^F@h^@F@^`/F@ ^ `F@ ^`F@Y^ F@`f^@WF@ ^@F@`k^sF@@^F@@G^G@^@pG@^G@^G@@ ^@?G@^G@d^ G@^G@^ fG@^|G@`x^G@^G@^`G@^#G@^`&G@@^`G!G@_$G@_ $G@@p_@G@@_QG@ \^ 2G@D^2G@`0^|:G@:^` 5G@B^7G@@^?G@M^ GG@@^1TG@:^`GYG@T^`[G@^\G@+^R_G@ _]G@_`_G@_@rG@_lG@`_rG@ ^|G@^~G@@_G@@_G@_` G@@_|G@ _@-xG@`+_ G@@@_@G@u_ G@x'_ G@-_H@ *_D#H@)_+H@ |-_e3H@;$_`0H@@_H@`^@H@@G^ >H@^ H@^<H@ ^8H@ ^ H@^`AH@ 8^H@+^H@^H@D^7H@@ͷ^ H@@ ^@H@^H@ \^PH@^` H@^ G@٭^ G@Ѱ^G@|^5G@ ²^ gG@@^^G@ɷ^`G@^G@`^G@^G@^`G@B^G@+^*G@!^@G@c^൸G@3^G@ ^G@`f^G@ s^G@^`G@^G@^@.G@ ^bG@^ G@`Ş^G@^G@z^DG@Q^G@Y^[G@ ^G@`ܪ^G@ ^`G@ ^2G@^G@^'G@@3^G@^G@@^`G@ ^G@ &^ G@ 8^ G@@@^QG@ ^ fG@`^G@९^G@`f^ߛG@^ G@^JG@@ϲ^G@^@XG@^G@`^ G@+^G@ּ^ɏG@`x^(G@;^`6G@Ѹ^ G@=^`G@^`G@z^ UG@^G@z^ OG@@^ `G@൘^G@@^@G@^[G@^G@`f^ G@ޔ^ &G@`Ś^ G@@^^KG@$^`G@ ^G@ɋ^9H@^< H@ ^@H@I^'H@3^ gH@@Y^[H@:^ H@T^'H@^H@^H@ ^'H@D^ U%H@ן^/H@^ D4H@^`6H@v^r3H@ a^B5H@^R?H@f^bAH@`^3:H@m^>H@ן^ ~9H@a^;H@z^ xFH@Q^`HH@)^`0MH@^XH@ ^`A^H@ ^`cH@^@W[H@^PiH@^`nH@ް^`wH@׳^ewH@`^D{H@׮^zH@w^ H@V^H@@@3]`H@3b\`H@+[H@ZH@ Y`H@YH@LXH@WH@W`H@@W@ H@@W 6H@lW0H@@:WuH@֬W)sH@ WmnH@WGnH@-W`)cH@W YH@ ّWYH@ WUH@xW`PH@rWFBH@iWBH@]WGH@ :]W(LH@`%WWMH@VW NH@ OW@QH@(W DH@'W?H@,W=H@2,W 8H@@W+9H@@W-H@JWH@W@H@@<W 'H@@W1,H@SWK-H@5V`/H@ VcH@ V H@@4VH@aV HH@qV\H@V`H@ԱV@ H@iV H@V`r H@@V`H@-V` H@@VH@yVG@*kV@H@@eVH@@UeVlH@VV gG@,V` H@@V 'H@@vU@XG@UG@?hU`՜G@E7UsG@@1USG@-$U`;G@`U :G@ UB>G@ U`DG@U OBG@B U f6G@@]U G@^T , G@TG@@T@@G@TG@AT F@@ TF@ŢTF@@TFRF@gT E@VTE@T`xE@T́E@tT{{E@ʞT*jE@aT`6`E@^T 7OE@TGE@ WTGE@T GE@@T.E@T`'E@T&E@T g%E@JT#E@`?T* E@T aE@TE@T D@ TD@7T xD@@+VTE@@OT E@@T./E@9T2E@S gE@QS`mE@@SDuE@S|E@RS ւE@@S.E@jS ŊE@@2SÌE@@S@E@SڢE@SE@S@E@\oS E@2S`E@S g F@ j`L@V`ΚL@`̜L@`DL@``AL@``ൠL@`t``NL@z``L@`L@ `!L@@``L@@`̬L@``L@M`@.L@Q`ாL@`L@`JL@`L@`L@ `M@>`M@`M@@` M@@3`@FM@)` M@`  M@`.M@@`14M@`@o.M@Q`M@`M@v`M@ j``qM@ &`M@`` M@` L@``L@`L@=` L@@ `L@@`DL@`1 M@_`M@'`L@` L@>`sL@`L@ e`@L@` L@_`lL@`L@`ML@ٿ`:L@#`wL@ `@-L@ `L@H`L@ X``GL@``@oL@`t`DL@``L@`"``YL@``@L@ j`L@cL@@c@M@@ !c\M@!c &M@`$c@ M@ X'cM@ 'cM@%c M@@c'M@ J#c#!M@!c&M@zc M@`Kc3*M@c.M@`c2M@@Ec@F:M@$c 6M@ c@=M@c<;M@@c4M@c3M@0c` -M@ c0M@@ cl(M@ cJ6M@ c 1M@c9-M@@c`.M@c@!M@`+c`M@ /c@&M@`4cQ(M@ c<#M@bz,M@@b@)M@ !bM@c@M@`"cSM@@c!M@z cM@ c(M@cZM@^c M@c@M@@<cM@ c M@ cM@cL@`RbN@ XUb@F"N@ Ub$N@ Ob.N@@Rb /N@`tTb *N@Vb-N@@Vb{3N@SbqeϩO@ yeO@:{eO@yebO@we@O@we@O@ Sue@pO@seO@ztetO@le OO@pe[O@ke gO@ke`O@&be O@beO@pYe8O@Oe`O@ Ge UO@ /Ae9O@5AeO@X8e >O@ 0e@O@(eO@h&eO@#eJO@?"eZO@ &eO@e`ʦO@@eO@@3eߓO@M&eO@@,e` GL@`@WL@d`wWL@`` OL@p`bQL@`ZL@`XL@O`NL@ /`@LL@`:TL@ \``L@@*``VL@;`5YL@`@iL@``hL@ `@iL@ ``pL@ J`pL@`tL@ `ZxL@`L@_`L@`L@``ஆL@``L@`L@z``_L@`L@``L@`)L@`IL@` gL@ `UL@`L@:`zL@X`[L@P`ٰL@`t`@L@@ `@L@6` L@ `5L@ ``GL@``ݽL@@`kL@Y`7L@l`L@ `3L@>` L@6``L@`L@ X`L@6`L@ `IL@@`@FJL@`@.L@a@iQ@`a@GP@ a O@a _'N@@a`qN@ma'N@@WaN@ua+N@-ba@-N@ba (N@ fa ` N@aa`M@Va@M@@Ta HM@`RaM@ ?a`͹M@@?a M@2a M@Y/aM@;0axM@/a tM@ -atM@a@'M@@a`M@baM@a M@ aLM@ |a NM@aM@@ a'M@'`M@v`M@`LM@@`M@`M@``M@Q`M@ ` %M@ `M@` 6M@`M@@`@}M@`r{M@``wM@ `mM@v`\M@ݵ`:LM@`J6M@O` H0M@@b`bM@```M@Ô`@@L@ A`3L@NJ` NL@@` L@L``nL@{`\fL@z`(LL@Cq`_LL@d`J6L@X``.L@T`!L@N`L@ AM`~L@UG` L@B`L@`t@` L@@`K@E``GK@`D`mK@?` K@F`|K@ /K` yuK@@R`eK@ XS` xfK@mR``mK@U`3bK@@V`@FbK@OW``0eK@U` fK@,W`xK@W``N{K@ /Y`eK@6Z`@FbK@\`cK@]``oK@_``݅K@`Z``0K@ JW`K@ X`ߋK@ Z`@FK@0]` K@d```K@=b`8K@a` =K@]`:K@`BT`դK@@bT`஦K@@T``K@Z`@K@[`K@X\`@FK@^`rK@Xf` K@ c`L@`T`` L@Qj`K@k`2K@@m`L@ J{`K@L}``K@x`K@ /y`@.K@{`K@z`K@$|`K@``K@}`K@`~`$K@@`K@`@K@``K@``JK@b`@hK@݅`` K@` %K@@`K@``K@`K@2~`mK@~``L@`x`5L@s`L@o` DL@|`BL@ `-L@ ` >L@`@AL@>`@pEL@‰`#QL@Q`BML@`ZPL@ A` DTL@`` VL@Ր``ZL@׏``L@``jL@`` }L@@Ƙ`@zL@``~L@ S`DL@@`L@C`L@`|L@`` L@`tL@`\L@X``AL@ |``_L@` xL@``ģL@``L@`L@``L@`խ`@hL@v`L@`@L@ e`L@`L@ٯ`M@ྼ`L@``M@`9` M@ `r#M@ \`'M@`]`2M@@w`?M@` =BM@``@M@@`%M@@`M@@`PM@``M@l`.M@`B`+M@`0M@`/M@z` ~1M@```>M@``@MM@ ` xVM@ J`SM@O``HhM@`dM@`S^M@`|jM@ ``}M@`M@`T` M@`M@@` M@ `#M@`eM@ ``M@@`ߗM@u`M@U`{M@`aM@`i{M@`cM@q` %WM@5` ~QM@'`MM@` +M@`%M@@`s"M@@`M@``sM@`Z M@`5M@@`0M@``/M@``5M@#``0M@`:M@ `>M@``(DM@v`5IM@?`@LM@p`RM@`9a gM@`oM@`mM@H`qM@`asM@5IakM@@ SaM@Ra$M@OaRM@Ma[M@mPa M@`TaؑM@P_a|M@@Ega M@5gaZM@ ia@M@ kaM@ kaM@xa M@F{aM@raKM@@3qa M@#oaM@ esa`M@sa`M@oaM@-na` M@^ia@pM@ja@?M@`ja M@dhaM@ja`/M@`Tja2M@`}haM@ /ga`M@liaM@@hajM@aa DM@gcaSM@ga`M@$paSN@ralN@`ra`M@ ua@M@@zabM@a`M@`ӔaM@ ɭa$M@@aM@@ a@M@;aM@@a , N@ a N@aN@@Ʈa` N@?aN@a N@@aM@`a@N@ a &N@,a =N@@ba`M@Fb(N@$b`N@b`N@bkN@_bN@`b x&N@@3b $N@b&N@Pb=N@_bN@`o8bBEN@ 3b:TN@@b4b`AVN@@:bON@@;bbQN@`:b`XN@`x>bPN@g?b`SN@u=bXN@=bjZN@EbPQN@HbQN@ZHb:TN@@b %_N@ Ab`eN@)Hb\N@Ib\N@ Ib)cN@Ob`VN@`RbYN@DTb`6XN@Vb_N@_FbvhN@ Gb`jN@@FblN@Bb`jN@ eGb@FrN@IbjN@`Pb hN@ !WbtN@6Xb@FzN@`Rb`wN@`xVb|N@^Ub:N@ZRb`NN@@SbN@Tb`N@Pb@N@GbN@HbN@Mb@N@`RbѐN@]b >yN@`byN@0_b[N@d`blN@@db ~N@`dbyN@ebyN@`hb@?N@gb wN@@wmb@WsN@`mbvN@lb}N@@nb OzN@mb >N@obN@Fpb` uN@@Eqb wN@`pb %N@Uob ~N@@qb N@qbrN@@ sb`N@Otb{N@Lsb@uN@ &sbnN@ aub`0mN@ SubrN@Uwb@qN@vbPyN@ &yb`AvN@wbkN@0yb ,iN@{bjN@b`xN@Uyb UN@@bvb!N@wb)N@ 8wbN@@b N@qbjN@`ob`N@bN@ jb`݅N@db[N@^b}N@‡bN@ JbN@ЇbyN@hb{N@ bmoN@b`kN@@ώb gN@@bdN@2b`N@`fbVN@@3bYN@@ƐbaN@@bcN@ sb_N@`0bUTN@ybPN@`ӈb`N@b`^N@ b@.WN@Qb$PN@Qb DN@bJN@b@EN@b`=N@bb9N@юb`EN@@ϊb@N@b8N@0b;N@Hb@EN@مb ?N@bLN@UbHN@~b`@N@bM@`b!M@lbM@&b M@bM@b`M@˷bMM@ \bM@Ob M@`b8M@@b@FM@pbM@@b^M@`obQM@ |bM@b@M@bDM@b@WM@ bM@b M@b:M@b =M@pbM@'brM@@wbkM@b:M@b M@bM@@bM@FbM@gbM@@EbM@&bM@`bM@`b` M@b|M@ b`6M@b`/M@b M@Yb֛M@b`ěM@@b5M@`ob` M@>bM@ &bM@Fb@•M@Fb`_M@bM@`KbஞM@b`M@@wb %M@bzM@b9M@bβM@bԵM@ b UM@`xbM@VbM@HbM@2b`M@b M@`fbbM@bM@`Bb`0M@ b)M@&b M@bM@ bM@b7M@`0bM@ubZN@`bQN@`]b`A&N@b`.N@b`Y1N@b(DN@ Sb OZN@b`]N@bdN@lb `{N@ b N@bN@b@XzN@ bsN@úb|N@ eblN@ \b`pN@@b`6xN@b~N@ b`NN@@bkN@@b N@`ob N@`bDN@b xN@?b N@lb@ӾN@db`N@ bKN@ܽbN@ݿbN@GbN@ |b`qN@ AbN@qb`/N@`bN@ b N@MbN@bIN@b)uN@b`0mN@bfN@b ^N@5b`[N@@wbB]N@M c@?N@ c`;N@ c g5N@c`3N@Dc gN@LcwN@2c@!N@`]c N@@c`&N@6 c@'N@`"c #N@c%N@c@h$N@cN@@c N@`fcN@`cM@c M@&cM@ )cM@`}$c@?M@@ caM@cM@l!c|M@@<'cjM@)c@M@)c5M@-c M@V*c M@2.c` M@`.c@M@ 1cvM@2cM@`x6c M@2cM@@2c@.M@';c`M@`:c@pM@ 7c@M@7c$M@`DcQM@@3Cc M@m>c@oM@CcM@Dc %M@ Dc@M@XHc3M@Ec{M@`kFc %M@Ec@WM@LAc*M@`6cM@2cwM@*c`vM@L)c pM@;(c@nM@O)ckM@@*+clM@D0cbYM@`4cQPM@@M@`"Bc4M@@c`2M@Ac`/.M@ XKc$M@YKc M@&Fc`(M@Cc $M@FDc`"M@ Gc M@Dc^M@ Fc`M@Ic`6M@@K@ a diK@5 dcK@ dK@`dK@#d7K@@dK@`dK@@d`K@`dBK@d@K@d5K@UdK@#d#K@dK@dK@ud@K@'d K@`0d K@/dK@+dPK@%d OK@$dK@$d@pK@5-d`K@2dK@6dK@_6dK@ e=d K@V@dJK@ jAd`K@>dwK@yAdK@Cd DK@Cd@ÔK@yEd K@ AGdK@2FdK@,Gd)K@Hd =K@DJdൈK@ \KdK@NdK@Pd K@`oPdK@ Kd K@QdK@@bTd K@@Vd K@ WdK@SdK@@Td >K@@Sd@…K@QdzK@UdീK@SdtK@`TdSK@Vd &~K@Wd`xK@[d wK@0_d[K@U]dK@bdK@edK@ gdK@`fdkK@ad{K@^adxK@`kjdgK@6ldlK@`hdtK@@EkduK@`jd<{K@Dhd xK@gd `{K@@UdK@Od@K@Od@-K@Sd K@`KLdK@Bd >K@4dK@`0*dK@`0"dK@vdeK@dK@d K@ dK@@ d K@Qd >K@ !dK@ dK@gd@K@@dK@d`K@ d >K@yd K@@dK@`9dK@d@K@hd K@ d"L@cHL@c\L@@c7gL@ ec cL@`cjL@ckaL@`fc@}L@OcaL@ !c ~L@bcL@cL@ cL@cL@c@üL@ /c L@@cL@qcL@;cSL@`c`sL@cSL@c %L@`յc@L@@c@XL@`c@L@'c M@PcM@cM@ c EM@`ocM@ sc`NM@cM@c`&M@c;M@ jc`ZM@¡cz\M@dc`^M@ |c`HxM@ c@M@@c \M@cԍM@ cƁM@c`mM@c`OM@`]cMM@`0c@RM@:c ^M@`cjM@c gmM@`c ~yM@pc@h|M@c@o~M@ c@M@ c̄M@cM@cyM@`xcuM@`cwoM@ſcsM@ ectM@c U}M@$cM@c؉M@-cM@)c5qM@crM@ ac`vM@@dBM@AdM@O@d M@>d M@`>dM@`6d@oM@ |9d@M@dd`N@d@N@ dN@,d@XN@dzN@ dN@׷dN@2d`O@ dPO@@d`.O@d 3O@dCO@dDO@yd@O@`d=O@@EdzDO@@EdGO@@d@IO@DdeWO@Udw_O@dSVO@@dNO@ܙd %OO@`fd@dO@`td` eO@dkiO@`d |O@`odaO@5d(O@mdlO@ d*O@dvO@d O@#d O@@d#O@wdO@Ztd`O@ /udSO@qd`YO@qdJO@qdBO@@ldLjO@@jd΂O@]dIO@Yd~O@UdO@@HdO@-Jd O@BdO@v@dO@:Ed O@Dd@oO@#d@O@ld@O@`tdJO@@d@.O@@d# P@Dd=P@(d#P@,d`iP@:1d@P@@.dz P@m,d]"P@%d P@ d P@ d"P@ dI#P@@d&P@d#-P@;d3P@q$d=:P@#d:P@`B"dJ:P@ddKP@;dP@;d P@@b>dP@@*Gd`yP@ Pdc fQ@McQ@`tcQ@ ackQ@cQ@ yc@Q@6tc Q@qc@Q@qcQ@ZzcξQ@ cQ@`ocQ@cwQ@cQ@~crQ@~c]Q@ scQ@ ecQ@@|cQ@ }c߳Q@@ wcQ@@tcQ@5uc@NQ@@ sc@Q@@qcQ@ !qc@Q@ icQ@ gc@`Q@ecQ@fc@FQ@Gic@Q@ecQ@@ cc@gQ@ccQ@bcQ@@Eac@hQ@@bcQ@`c9Q@z`cIQ@@ [c@oQ@Sc >Q@@RcֿQ@TcQ@LWc:Q@@TcwQ@Sc`Q@@saM`:@` M)@ M,!@M`@M?`M?M?MP? UL@;?`TL@q? M{? M`t?Lf?L@ ?`L%>`$L@> L>L@>L`>L#> Lm>`$L,I>L0> L .>L4>@L@@> LxF>iLJ>@ELK>>`L \/>,L>|L@>eL > JOL @>PL`sK>#L`e>`L`C>?L@>@K@;>L>`L ?`K4?K6>4K#>K>>`K>>0K>/K>? [KS?`K`CE?DtKm`?@EKKxv? 2)F@ g}N@`*F@`,N@:E7#F@NN@6L]MF@{N@+F@\N@0F@m[QnN@fF@l`8N@WvF@N@F@b>N@/F@ O@8E@ O@uE@@O@` E@QP@ (E@;P@@pE@+QP@ \E@aP@E@tP@ HpE@P@`E@P@ L6E@@YP@.6E@`ށP@eE@P@eE@ P@`D@P@`fD@ P@@3D@P@aD@+P@`D@QP@ࣘD@@P@֔D@@P@ D@@P@ \D@`Q@D@Q@`܆D@GQ@D@ Q@eD@5 Q@@D@ Q@@D@Q@`D@= Q@D@Q@wD@Q@`fnD@Q@-hD@Q@fD@`Q@XD@#Q@LD@`Q@ KD@`f"Q@PD@ &Q@LD@m(Q@MD@})Q@$PD@'Q@uQD@)Q@@UD@v(Q@q\D@%Q@z]D@[$Q@`BnD@%Q@oD@%Q@uD@`)'Q@tD@x'Q@`wD@\.Q@L}D@1Q@D@@7Q@@D@}9Q@D@@>Q@D@ DQ@ D@(EQ@D@CQ@ D@GQ@ CD@IQ@jD@`JQ@D@OQ@)Q@uD@s&Q@D@`}&Q@D@+-Q@D@@E7Q@@#D@@.?Q@D@@Q@ D@?Q@D@`9Q@ D@5Q@8D@ 3Q@ D@`B2Q@` D@ 3Q@D@-4Q@ 8C@`0:Q@`C@6Q@C@@3Q@`C@1Q@RC@24Q@=C@4Q@ lC@1Q@RC@1Q@ aC@0Q@C@8.Q@C@ !+Q@C@(Q@C@Q(Q@ C@%Q@C@@Y"Q@`)C@@"Q@`C@JQ@C@Q@C@GQ@C@P@C@kP@@C@`P@C@P@`C@P@oC@QP@ (C@@GP@ LC@xP@`C@ P@֜C@qP@ךC@#P@zC@ P@C@P@C@vP@=C@ P@RC@fP@C@@@P@}C@P@#C@\Q@@}C@@@Q@ C@ Q@`MsC@ Q@]mC@ Q@@gC@QQ@eC@sQ@ ^C@Q@4YC@(Q@@MC@Q@LEC@@Q@@?C@$Q@R6C@ Q@`2C@` Q@*C@5Q@"C@Q@` C@ Q@\C@@Q@ QC@Q@)B@` Q@B@Q@`B@`P@`B@@P@B@QP@B@P@ QB@`P@B@P@@ȗB@P@ aB@P@B@`P@B@bP@B@)P@ B@@ P@B@P@ B@P@@B@bP@ HB@P@`AB@P@ NB@P@B@ {P@@%B@P@@ͳB@P@ B@P@ B@ P@B@sP@ B@P@uB@@P@B@@P@ B@5P@eC@P@C@ !P@C@qP@ C@;P@C@`kP@`BC@P@8C@ \P@ C@LyP@@#C@uP@`#C@oP@C@8fP@ C@`RP@ 4C@@.?P@7PC@@*P@^C@ P@`VmC@P@`~C@ P@zC@ ! P@=zC@=O@aC@ aO@aC@O@{C@ hO@@gC@JO@qC@v8O@ D@@5O@f D@ l8O@D@4O@`VD@`k2O@`)D@8-O@ /D@z-O@`5D@@3#O@D@O@ JD@q O@SD@pO@\D@`vN@lD@N@ D@WN@ LD@`BN@=D@\N@`D@`N@fD@ RN@ D@zN@ D@N@D@fN@uD@)N@஝D@N@\D@N@VD@N@@D@@W+N@@D@ N@D@ N@ࣸD@ N@D@N@@D@@G N@D@N@D@ N@@ D@ N@@D@@3#N@@D@ N@QD@ N@\D@N@@D@M@`)D@zM@zD@ M@`RD@`)N@E@`M@ E@@>N@@E@ uM@$E@BM@@&E@M@Q(E@.M@G)E@M@z%E@M@F+E@qM@,E@ǡM@@/E@M@@9E@@M@BEE@ M@ CE@@yM@8EE@fM@QE@@ OM@fE@LM@`dE@ HM@TE@6M@ TE@%M@GYE@ M@qSE@ QM@PE@M@LE@Q(M@.FE@49M@[0E@@AM@(E@`[AM@&E@ 4M@@%E@4M@1E@F+M@8E@M@RO#@96R@ %@g%R@%@@R >&@ RzT&@RN&@QzT'@Q$'@Q@'@@;Q'@@+Qw7'@@:Q70'@@Q '@Q&@MQ@;,&@rQ &@bQ%@@ Q&@Qf&@ Q m%@Q $@)Q`$@R#@-R #@Q@1#@R%#@ Q#@Q"@R@#@rQ"@@Q"@ Q"@`Q!"@Q"@rQ"@`Q"@oQ"@@*Q"@@ Qx"@Q@?h"@`QL="@QQ"@@[Q@"@)Q@J"@@"Q"@@Q@%"@Q@X"@QZ#@Qq#@Q@h#@ IQ`$@Q!%@Q1t%@@:Q s%@@Q`R%@Q@%@Q%@@Q%@^Q&&@ Q5p&@Q&@ZQ V&@Q &@Q$&@Q`'@xQ)&@ !sQ&@woQ&@$tQa'@ಋQ4'@Q`);'@Q@'@EQ'@:Q8(@QjB(@@Qc(@{QV(@tQ N'@oQA'@bjQ&&@fQ&@aQ '@WQ`)&@`tRQZ'@2Q&@ZQWS&@@Qt%@Q%@Q%@QZ%@Q``%@ Q@%@@dQij%@Q %@@;Q-%@ Ql%@P$@P@-%@cPL=%@Px6%@@*P(%@bP7%@Pn$@uP@$@@+rP p$@nP@o$@@]P`M$@GP +$@@PG!$@QqOn$@sO V4$@E{O@^-$@ vOI#@ vO@%$@ngO@O#@ dO3$@\O$@TO@J$@@NO/$@OOk$@LOu$@ m@O N[$@?8O#@@(Oh#@@|#O~#@O#@`$ O4#@`O#@ OD#@ O]#@VOV#@vOr#@Ov#@O#@ tOk#@O9#@O`$@AO@ #@iN@O#@NPy#@Nch#@N#@N#@ N>#@N7#@WNդ#@`!@N.!@iN8.!@N@!@N@-!@ӞN@ @oN  @|N!@N @DN@ @}N #!@ \N5!@ @@"P @@2P;@P`Y@@P@@ P@q@`P@P23@ Pr@bP`);@P@@P(@P@Pe&@ P@|P`ty@@P@@P~@yP`;@ Q@ Q@ Q @@Q @ :)Qb@&>Q_@FQ@zLQef@rPQU@5UQ๜@[Q`ty@`Q@@@ QF@֠Q@rQq\@@Q W@Q@@vQ`)@ eQ`-@_Q@2R %?@P R_@ R @R۟@/R@R@R@y @ZR@P @yRJ @@R @ *R@?H!@@l1R9"@ 6RG"@S;R@X2"@O>R@H"@>R"@@R"@`TR`X"@@Y@%!@a][@5`7@%Z@Ʊ3@Z@ 3@ Z@53@ Z@@ۯ3@Z@ X3@`xZ@ ~3@x!Z@@Κ3@G)Z@3@W*Z@;3@5Z@3@&6Z@ s3@1Z@3@`6Z@@3@p=Z@3@`>Z@4@;Z@@/4@@+Z@84@q+Z@ G4@-Z@ OJ4@=-Z@vX4@`&Z@ rk4@ Z@vh4@Z@Hp4@@gZ@u4@!Z@@4@@E#Z@14@0)Z@4@u%Z@`4@EZ@4@Z@`*4@Z@T4@ nY@`4@Y@@4@Y@b4@@@Y@4@ Y@`4@Y@4@Y@ N4@@Y@4@Y@ \5@Y@5@Y@@<5@Y@B5@Y@`M5@@gY@gt5@Y@n5@Y@ N5@ JY@ʮ5@½Y@5@ Y@5@ !Y@5@`Y@`5@ Y@5@ Y@ 5@QY@@ͻ5@@ͯY@5@@Y@5@Y@5@ ZY@`S5@ךY@`6@Y@76@Y@Ye6@@Y@m6@ Y@i6@Y@{6@`Y@@6@ lY@6@ Y@ y6@^Y@6@`ڣY@6@ Y@@ڰ6@`Y@6@ nY@_{6@Y@@o6@Y@@q6@qY@ &~6@nY@6@ Y@@۟6@Y@ N6@Y@`6@_Y@@-6@`)Y@ s6@pY@6@@Y@`6@Y@@6@Y@Ô6@Y@`6@Z@6@@Z@6@`Z@6@ ZZ@6@Z@޼6@@.Z@ɯ6@%Z@@X6@W.Z@ 6@@7Z@6@4Z@@7@ DZ@:7@`dOZ@`B7@TZ@5`7@aZ@/7@@{cZ@)7@dZ@ 7@pZ@7@wZ@6@^Z@6@Z@`6@@Z@76@Z@ s6@`ʦZ@@6@Z@`)6@@{Z@$6@ Z@6@Z@6@Z@6@`ܦZ@``6@Z@9]6@Z@`fV6@ԩZ@T6@ ~Z@6@6Z@^5@MZ@@5@@ȯZ@6@uZ@ H5@`Z@5@Z@5@Z@A5@ JZ@`)5@@@Z@5@Z@ &5@ Z@v5@@.Z@C5@`Z@5@ Z@`5@`Z@ɪ5@Z@5@@Z@5@[@ N{5@Z@Jn5@Z@by5@`Z@q5@Z@@ԅ5@Z@@ 5@Z@`*z5@Z@o5@ Z@`R5@@Z@J5@@Z@@WS5@zZ@>I5@Z@ yE5@`Z@<:5@Z@,5@sZ@@5@Z@4@zZ@o4@ lZ@`4@Z@F5@Z@L4@vZ@4@Z@s4@;Z@4@`Z@ %4@`fZ@@4@Z@4@Z@`4@Z@4@@Z@ 5@`Z@5@Z@`4@ѬZ@@]4@@Z@ 4@ 6Z@4@5Z@@4@-Z@94@#Z@*4@ Z@ Uu4@`Z@p4@DZ@`H4@Z@WM4@@Z@hD4@0Z@` 54@#Z@64@Z@$4@`܊Z@ 3@Z@3@ԁZ@3@}Z@3@ {Z@@ 3@ {Z@z3@@.wZ@@3@tZ@3@@sZ@k3@qZ@dg3@tZ@:L3@nZ@s:3@`nZ@@3@@fZ@3@MhZ@2@@UpZ@2@`oZ@`2@pZ@ 2@MtZ@̜2@yZ@sz2@Z@sJ2@^Z@C2@Z@=2@`xZ@2@כZ@2@@Z@@2@Z@` 1@@Z@*1@Z@`1@`Z@T1@&Z@i1@כZ@*1@Z@t1@`Z@ij1@ʙZ@1@`Z@1@Z@ O1@@3Z@m1@Z@=1@ Z@1@@Z@1@QZ@1@`Z@ 0@Z@0@ Z@G0@8Z@0@Z@0@Z@0@kZ@ă0@Z@i0@Z@]0@Z@ [0@3Z@J0@ sZ@K0@@Z@Z0@Z@Q0@[@@W0@@[@H0@ [@` 40@[@%0@ [@s0@[@Q0@[@'0@ 6[@ !0@ [@0@T[@E0@[@=/@@[@p]/@5)[@h/@`v+[@`/@@([@@-.@ 1([@`.@*[@G.@?,[@`.@`k2[@ +.@ 3[@`.@8[@.@<[@L}.@9[@ \O.@@.7[@ \O.@=[@-@OE[@``k-@&E[@E#-@_H[@,@`N[@@!B,@`J[@@XR,@uQ[@ +@S[@h+@`S[@`}+@Q[@@+@ \O[@@+@`_O[@`B+@`}R[@ h%+@M[@AF+@U[@*@ nS[@`}*@R[@@*@O[@ N*@`N[@*@`fR[@Ѩ*@R[@ *@T[@•*@S[@ N{*@T[@'*@-\[@)@a][@ô)@@W[@@)@@3[[@b)@?\[@/)@`xZ[@ yU)@@X[@S)@X[@@o)@V[@` )@L[@jB)@ O[@ )@3V[@ (@`R[@`}(@+M[@`l(@.J[@`(@8M[@ (@8M[@L}(@8N[@(@`R[@@'@Q[@`'@M[@'@ 1L[@0(@L[@(@@L[@'@H[@b'@@H[@`'@I[@ '@L[@@''@@O[@s'@ H[@F"'@=A[@ N;'@A[@/&@G=[@&@:[@&@ 3[@ڠ&@-[@ yU&@([@@J^&@ [@`C&@`[@ &@@[@ &@[@@%@[@@%@& [@F%@[@%@Z@@e%@Z@@dh%@ Z@L=%@Z@l%@-Z@$@Z@Q$@@Z@1$@Z@$@`kZ@%@Z@;%@aZ@`R%@ٽZ@$@@Z@W3%@^Z@n^%@QZ@`X%@ Z@@%@Z@$@೥Z@#$@ Z@$@Z@|$@Z@$@@EZ@Z$@`ʲZ@j$@Z@ੋ$@`xZ@`$@ Z@@$@&Z@ d$@ sZ@A$@Z@($@٨Z@@#@`TZ@`$@@EZ@k$@Z@Qx$@@iZ@`$@ HZ@#@vZ@#@`Z@Ų#@@.Z@`&#@GZ@դ#@ JZ@@%#@ Z@f$@OZ@ yu$@Z@ H@$@൘Z@M#@Z@t#@Z@@E#@ Z@@#@Z@#@`TZ@k#@`+~Z@@#@tZ@$@`dwZ@#@ ҃Z@#@kZ@e#@8Z@@"@Z@"@@UZ@"@OZ@S"@ xZ@D"@3fZ@@]N"@]Z@@"@5UZ@q!@ GZ@l@!@_Z@w7$@8Z@ 2$@@2Z@ m$@-Z@Tu$@`+Z@W$@&Z@K$@$Z@$@n"Z@$@  Z@ H$@Z@$@Z@Q$@O&Z@`}%@4Z@= %@8Z@z%@aFZ@`s%@?DZ@`%@`BZ@%@FZ@=%@VZ@`}%@@[Z@%@]Z@%@pZ@ &@rZ@`&@`wZ@ %@@{Z@Ϊ%@G}Z@%@Z@%@TZ@%@Z@%@Z@@{%@.Z@`0&@DŽZ@ 6&@ wZ@&@xZ@&@yZ@f&@`]tZ@`1'@tZ@`='@}Z@J'@Z@'@)Z@'@ XZ@@AT'@@Z@'@)Z@)'@Z@}'@Z@'@@Z@'@ Z@!(@@Z@;+(@Z@ 9(@hZ@`(@ 6Z@ ف(@ !Z@x(@OZ@)@@UZ@)@Z@)@ Z@*@Z@i*@?Z@@+@Z@ਗ+@ZZ@@*+@ Z@`,@ Z@`l,@@Z@Z,@Z@,@`Z@,@Z@,@EZ@@'-@Z@h-@Z@r-@`Z@`-@kZ@`-@Z@}-@`Z@W.@Z@ .@ ~Z@@.@ Z@.@aZ@@/@Z@@L/@;Z@`s/@@Z@`Մ/@@3Z@@ /@8Z@ /@}Z@`/@Z@F0@xZ@ 0@aZ@0@Z@20@Z@B0@Z@LM0@`MZ@:L0@Z@@zd0@}Z@2s0@ Z@@Q0@EZ@@0@`0Z@t0@`Z@8n0@`)Z@z0@ Z@0@ Z@0@`Z@ e0@Z@70@&Z@0@ !Z@`"1@xZ@;1@`fZ@`1@Z@ B1@`ʂZ@g1@@vZ@`ܞ1@=rZ@Ѩ1@ !oZ@`1@ \gZ@1@ gZ@1@ _Z@.2@ [Z@`052@ XZ@)2@KZ@ ~Q2@ CLZ@@`2@qHZ@ h2@FZ@w2@IZ@@2@$LZ@<2@@gLZ@@z2@HZ@`մ2@G=Z@@'2@`+Z@A2@T!Z@2@Z@`)2@`TZ@!3@Y@@3@ CY@@K3@6Y@`/f3@wZ@h3@Z@I3@WZ@q3@Z@Ʊ3@ 1@#4@@U!9;@9Z*B;@&#@;@V!9;@V! G;@@U!:@ш!9@l(:@`I( Vt7@Z1) F7@I)T7@ 6*6@L*6@(*`6@*V5@*W5@/W.AV5@ 0V5@ 14@ 1@#4@ 1`4@ 19M5@0 U5@0@W6@`<0K6@ 80TF6@ 80iS6@s0$p6@@I06@406@(0$7@@&0 7@`e70 y7@0`7@/7@7/7@@3/Щ7@/`07@Y/8@.`=8@ t. ~q8@`.@8@ ?- U8@`-o9@`C-Q9@`l-9@`]-9@- &9@,, ':@~,jB:@ 1,LM:@@Z,`m:@(,o:@`r<+:@w+`:@ *;@@d*`J;@Z*B;@̘e*,me*@eM+eM+e+̘e` +e*e`*ye W+@eM+ we*,Vze,'}e`f, ҁe+e෿+@3}e&+@bxeҧ+zre@d+met, we*,NE@3)@ J@2@z I@2@ I@2@JNJ@?1@`_J@AV1@ ZJ@1@ J@Ԥ0@WJ@$0@9J@d0@3"J@@90@@J@/@\J@` U/@@WI@.@ I@.@@oI@.@I@@'.@`_I@@d.@|I@A.@9I@.@:,I@-@I@ ١-@I@-@H@`#-@ H@-@ H@f-@H@-@@H@@-@H@G,@`YYH@z,@SFH@,@?H@l,@9H@,@|"H@+@@H@` ,@ G@S,@G@+@ G@@I+@G@@*+@@jG@-*@@IG@)*@G@7*@F@ԥ*@@FF@L*@F@M)@ >F@)@@ۇF@E)@@hF@#)@}F@)@ yF@G)@рF@` )@qF@Ȑ)@9uF@|)@`cF@)@9]F@@|)@ >YF@S)@ yMF@ )@EF@ )@:F@@o)@$F@D)@ F@jB)@F@N)@F@`/6)@E@3)@ E@M)@ E@)@@hE@a)@E@ a)@E@n^)@E@j)@|E@@)@`0E@7*@@E@ *@E@.+@@oE@+@`E@+@@E@OZ,@@~E@E,@΂E@ ,@{E@q-@zE@@f-@ wE@I-@byE@-@`pE@.@9mE@=I.@\E@k.@PE@K^.@NE@`~.@`WE@Oz.@ZE@ .@@dE@`}.@`dE@.@{[E@@/@YE@ q/@kE@/@gE@GQ0@'eE@`0@`E@ 0@`E@0@ aE@0@E@0@`E@@0@ 0E@I0@ਓE@=0@ &E@ 61@ E@|C1@ǠE@N1@E@U1@@E@l1@}E@@ 1@ `E@D1@E@ e1@ gE@X1@`qE@[1@`qE@`6P1@|E@`N1@ F@`_1@F@ W1@`/F@ti1@+F@i1@?F@Te1@F@ 6.@ G@1@ I@2@8@gt2@D@7@ fG@ 3@`F@y3@|G@3@`G@'3@\F@?3@ %F@3@8G@@3@ fG@3@cG@@J4@^G@ B4@ G@`4@ 0F@w4@sF@4@F@4@sF@ 4@@@F@h4@F@4@@F@v4@ F@4@CF@@Q5@wF@:|5@ %F@D5@ȏF@@`5@ [F@'5@vF@`5@`rF@]5@nF@ i\5@@KiF@ xf5@cF@ǐ5@`bF@@5@v`F@m5@ VF@@'5@QF@6@c@F@ y%6@T=F@46@2CF@HP6@UF@o6@r[F@6@HF@|6@ FF@6@BF@@6@FF@u6@=F@t6@ +F@`"6@F@`ݝ6@F@ \6@ F@j6@`F@@\6@ E@}6@E@@6@1E@ 6@E@@6@ E@7@@E@J6@E@6@qE@6@FrE@@p6@hE@Av6@eE@ Hp6@ IE@@(|6@ %GE@`܎6@T=E@6@`3E@@^6@U)E@ S6@`B.E@ ?6@@{+E@86@+E@16@[(E@`6@(E@ S6@z&E@5@@)E@(5@B'E@@5@W*E@ 5@&E@5@!E@@5@`fE@@5@@h E@5@@.E@`5@!E@u5@!E@|p5@fE@ Y5@` E@\N5@ aE@ T5@@ E@`'P5@ E@?5@ E@75@@3E@S$5@`[E@5@uE@5@@WE@4@` E@Z4@$D@4@zD@4@@D@׳4@D@ 4@`D@ 4@D@ 4@9D@4@ D@4@`E@`Z4@)E@@4@)E@`)+4@`@E@4@{GE@l4@HE@3@ x3@23E@e3@(E@@QH3@E@e3@` E@$e3@@ E@a3@`D@`S^3@D@#3@@.D@|#3@E@C2@ !E@2@@$E@G2@,E@ %2@0E@@ڐ2@3E@@]2@77E@׳2@@X2E@Z2@9=E@2@8E@@42@3:E@ 2@9E@@u2@R>E@t2@@BHE@`̍2@@OE@ד2@SE@o2@`)[E@ 2@]E@@gt2@jE@ }2@ LnE@{2@@g|E@ 2@3E@`f2@`E@`2@@GE@֤2@@ёE@2@qE@2@QE@2@@E@2@E@]2@஭E@@2@QE@F2@E@=2@`E@F3@ E@@P 3@E@{3@E@`R3@E@F3@)E@3@E@@2@)E@ 2@4E@2@E@3@@.E@` 3@E@3@E@@<-3@`E@:3@E@I3@`E@@P3@@E@'_3@@E@h3@E@ׂ3@aE@}3@`E@Â3@`E@|3@E@`'@3@`)E@=3@F@@_3@E@3@E@3@aF@3@F@`3@F@`[3@@F@3@F@3@q F@@>x3@eF@ z3@qF@Gq3@3F@[3@`F@`Q3@@"F@`I=3@!F@33@p%F@ Q*3@@g$F@3@-F@)3@3F@#3@4F@ %3@@8F@ 3@WBF@@03@.FF@@/3@IF@`73@ KF@`2E3@@ WF@ HP3@)ZF@`X3@ ubF@@U3@@cF@`]\3@`kjF@Z3@(mF@a3@@pnF@ Z3@ ^rF@@3@8uF@f53@ asF@@<-3@.vF@ 3@ (nF@43@=sF@@{3@`VuF@ e 3@ \wF@@{3@@gtF@`2%3@yF@$3@}F@3@`}F@@3@F@3@`F@@3@$F@Z#3@F@ )3@F@H.3@8F@)3@`)F@ 93@`F@B3@ F@qL3@F@`Q3@F@ T3@F@=i3@`fF@l3@`F@j3@ (F@B3@@F@@3@ F@13@aF@ 3@`2F@3@oF@@3@F@ 3@F@ 2@@F@=2@@F@@* 3@F@2@@ѹF@`2@ҾF@F3@@pF@3@F@3@fF@ ?3@@F@2@F@2@F@@y2@F@ 2@fF@`2@`MF@2@8F@f2@F@2@)F@2@`F@2@qF@`2@@F@ 3@`F@Xk(@f*`M?@c@G?@l@G?@i@`M?@@@b ?@?? ~>@r?@y>@`r?x>@ ?=Y>@@D#? U>@l?@.G>@ó? N;>@?`R7>@?`>=@ J?=@ Q?e=@.?=@ ww?Z=@]M?=@o?w=@'}?@=@`=@Gh+=@V޿`=@x޿@=@O@=@ @ڠ=@q` =@=@)q\=@@*<=@;=@z $=@=@`x +=@@=@U`=@8/@J<@H`0<@ <@<@?Hn<@`F<@2 s<@ <@ *;.=@<@( <@|=@@n &=@ 8=@@<+==@5=@ @7=@`f +7=@@ 7?=@k ;=@z`b=@@ޝ`pl=@`B@Jn=@@*dW=@0Y=@8ш=@@ %=@`:ơ=@@K4=@ %=@@,ތ=@].`=@ 5>@Qa>@"@t>@4Rf>@$ >@a >@ q >@@ `h=@^ <@9 <@` @<@@5!`/<@@U!<@@! x<@3S"@Wc<@vx" _<@"@f<@"@<@"<@o"T<@@##F<@#`)<@#`<@H$@<@q$k<@zU%@J<@~q% ف<@(%{<@ V&Be<@& [<@~'v<@ '<@$(t =@(@5=@(_{=@(@=@(=@(`{=@ h(@u=@(=@zu(==@*Q( =@@d)L=@f*=@$*4=@`*=@@p*ʮ=@*`=@ *=@ q*+=@ *@=@@*` =@*`/<@@*<@@R*@Q<@.*}<@t) ˭<@7)<@)<@)<@ )\~<@{)`<@`W)]<@=(@5<@(@&<@(r <@@(`);@(;@t(@;@(@;@`(;@(;@#a(z;@`'=;@T'6;@=*'@;@*'?;@`51'q:@K'@:@':@ ( v:@'h:@'9@2'?9@@'m9@'@9@'8~9@A' 9@[p'\9@H'I9@@&`X9@m& U9@ b&@8@@&ײ8@@^&8@``&r8@@^&1d8@`&P8@ &M8@`I&q\8@@&i8@&Tf8@t:&`R8@@&$8@W&!8@ V%7@ @%7@`&7@ 9&ǀ7@``%e7@% 7@ /&`Y6@0&@6@&=6@/&@6@`& 6@z&@{6@`B&>6@S&`?6@ h%&a*6@ %%/6@%$P6@ш%M6@W%C6@`I% P6@$%6@#e6@#5@5#a5@"@5@yu":5@@!5@ %5@ @ۿ5@`5@`\5@^M5@m a5@!໊4@#<4@࢑4@@d U4@@dO4@`3@Ί3@(@3@@T643@W@3@`h ,3@@ `x3@BF `3@`cI[3@@n@_3@2@2@`2@2@s"2@ 2@@' 82@@6 2@@S7 1@ \1@w 1@@;, 1@ @W1@@42 @1@' 1@ o1@rk1@idH1@;@I1@`l61@`Z%1@@\.1@` `1@@[ x1@;@!0@U@0@'0@@^0@ t0@@TvS0@210@`0@z0@ h0@t@J^0@i i/@8o].@`|s@ͫ,@@+@Wl+@k*@ajʮ*@`%[*@`=p)@gE=)@ajl)@ %(@ (@`(@  (@zuXk(@ hZ(@` )@`)@{(@^j)@`)@5=**@ .*@D3*@=J bJ*@N[`c*@ H*@@%@*@?*@.7f+@ sz+@`D?+@V+@@[+@r+@q,@@^,@`],@ 1 ,@W,@ *;C,@e`,@`,@] \O-@@ף`p-@=`5-@* M.@.@:r.@,@X.@.@ @a.@/@ c#/@&ɯ/@}/@@[w/@ 9 O:0@ Z00@J~@!20@z/0@@w40@gEj0@ y0@DD0@ 0@@TvN1@ >`1@`ww1@dܿ1@T?Կ1@ Kƿ1@@?1@ >?1@`c?@1@`? 2@@ ?` 2@|?2@@@@Q82@j@W2@@g2@@2@ @2@ 8 @h2@7 @A2@ @@Q2@@'@2@ @d2@ @@2@@X2@2@W@ 2@@r{@@2@`){@@2@}@2@@@3@`@`H3@z@e3@z@@3@@3@sZ@3@@*@G4@;+@^4@@@@`t4@@@{4@@@^4@ء@4@@@4@`@,5@-7@cH5@`/V@Z5@@L5@ @5@@X2@5@@}B6@b@1d6@ @ w6@@6@ z@T6@@6@@6@@`6@}@6@@6@@` 6@@F@@6@~P@7@@/7@ @@E7@@@'m7@@&^@2s7@@@7@s@`8@@&8@`@f8@ $@Z8@ p=@d8@Sv@@n8@B@ t8@l@8@O@:8@`@`*8@{@i9@@9@@ O:9@ @R9@:@@O9@ @ \9@FB@ U9@c@9@ @59@@9@ϩ@+9@9@:@ @:@S@):@@$:@`-@ y:@S@[:@# @@:@@`;@@``k;@`L@@t;@@ ;@z@;@@;@U@1;@ ,@?;@ @>;@@m@;@U4@c<@>@l<@t@*<@ @i3<@c@U<@`g@@^<@!@Gq<@&@ ~<@~@<@Ʊ@<@9@@<@;@=@-@@z4=@@_@@=@`g@#A=@̌@@XR=@@z=@0@=@F@=@=@=@<@`/=@@b@T=@ b@=@ y5@@=@@@>@3@>@ @#>@ o@4>@2@``>@@>@ @>@ > @@^>@ @@W>@Sv @>@`z @`W>@ @>@`4 @@>@ e @|>@@2>@`@>@-@;>@@S@t>@ e@@>@ @>@ @>@2@>@@F>@ gE@>@CD@@?@@ ?@\n@j2?@Xr@`3?@U@G?@l@5@E2@@a  <@Έ0<@0B<@@c0@{#<@0D;@ 0;@@91@;@TV1T%;@`1n%;@@d1W;@y1 ;@`1 Q;@1l:@E2 xv:@1P:@@1 7:@Y19@29@,1@9@`1@Q9@1@9@`e1 Vd9@1@D9@31@J9@ٱ1c9@18@}1T<8@\{1`y7@@137@z1?6@0#6@~0!6@@:=036@+0@5@ -5@ʁ*5@"*6@*T7@*B8@E* V8@t)7@@)<7@V)@^ 8@`C( 8@@A(7@`ff(7@`'S8@ b&8@ &7@ @%!8@ V%$8@W&`R8@@&Tf8@t:&i8@&q\8@@&M8@`I&P8@ &1d8@`&r8@@^&8@``&ײ8@@^&@8@@& U9@ b&`X9@m&I9@@&\9@H' 9@[p'8~9@A'@9@'m9@'?9@@'9@2'h:@' v:@':@ (@:@'q:@K'?;@`51'@;@*'6;@=*'=;@T'z;@`';@#a(;@(@;@`(@;@(;@t(`);@(r <@@(@&<@(@5<@(]<@=(`<@`W)\~<@{)<@ )<@)<@) ˭<@7)}<@t)@Q<@.*<@@R*`/<@@*` =@*@=@@*+=@ *=@ q*`=@ *ʮ=@*=@@p*4=@`*=@$*L=@f* =@@d)==@*Q(=@zu(@u=@(`{=@ h(=@(@=@(_{=@(@5=@(t =@(<@$(v<@ ' [<@~'Be<@&{<@ V& ف<@(%@J<@~q%k<@zU%@<@q$`<@H$`)<@#F<@#T<@@##<@o"@<@"@f<@" _<@"@Wc<@vx" x<@3S"<@@!`/<@@U!@<@@5! <@` <@9 `h=@^ >@@ >@ q >@a >@c ?@9.!5 ?@@*;!+?@81!+?@0!v8?@@'!E?@o>!$`?@@*!e?@FB!9?@`!`?@!!`?@@Z!?@!?@!n?@!`?@@"@?@g%" g@@"C<@@4R" D@@"^@@7"@Xj@@"@hx@@@"`z@@" ~@@I" %@@@K># g@@XS#@@_,#T@@D# @@xv#`A@@#`@@@#@@# ~@@"$`@@ Vt$@P@@$`@@%@@@)%`6@@7%β@@`% @@`)%@@ %_@@@ W&@@ &`@@A&'@h@@ $'k@@/7' =@@L'`@@EC(@@(|@@`(@@ҧ(@@ ߼(@@`/)ߣ@@ ) @@:-) @@c))@@ 15) z@@){@@|)`@@@)@@ * @@n* >i@@|+cX@@G!+ HX@@`>+d@@G+j@@``k+c@@|+(d@@@+`s@@ף+ @@,`@@,@@@-+d@@,` @@,@ԕ?@@-a?@=J-v>@- x6>@T-@D>@ n. [>@.@Wc>@ 1.[>@@/i>@hD/`>@@M/`=@r;/Q=@I/@W#=@Q/@^<@/<@0<@Tf0 <@Έ0<9@ j6`Y@@r;/<@0 <@Έ0<@Tf0<@0@^<@/@W#=@Q/Q=@I/`=@r;/`>@@M/i>@hD/:l>@Y0>@ 0>@%0`?@@0@M?@S0`l?@>)0`?@p=0v?@k0@@r0@@ [p0S@@֔0@Z@@0Z@@%0@^b@@÷0}@@g0x@@ 10`k@@@]0{@@%1@@X1 z@@U1@@'1 a@@,1{@@`1|@@q1y@@1`|@@2$@@.2 {@@`<2`Y@@PY2 /@@g2@@w2q@@҇2 y@@@2v@@ i22s@@ 2`h@@w2Y@@`B21\@@2}Y@@2[@@31l@@ 3@m@@@cI3`qd@@]3:d@@`w3l@@o~3:l@@ \3`t@@G3z@@@ 3`B}@@3`|@@`3`@@`3@@ [3@i@@4@y@@P 4Vs@@}"49U@@4@F@@4`H@@@>4=@@@c4@B@@4`.@@`"5`>@@X5`4@@O5@d?@Z61L?@ j6'?@YR6>@K6K>@ W6`);>@J6">@L6@z=@ "6is=@)6^=@@06 B=@6(=@6=@ 6@ =@@c5@ =@ 5U=@ ;5@=@"5k<@`5}<@ ,5r[<@ b53<@`5D<@܏5;@ [P5@K;@`C%5m;@`I5@-;@4i;@N4;@G4ƶ;@ 4r[;@@ w4I;@~4L;@@qM4@Q8;@w4@;@`4>:@}4^:@@3:@`3p:@*3`g:@@3iS:@3Y:@ 3#1:@`s3A9@3+9@@29@@2@(9@2Ѩ9@2@d9@\2 %O9@2<9@1@D9@31 Vd9@1@9@`e1@Q9@1@9@`19@,19@2 7:@Y1P:@@1 xv:@1l:@E2 Q;@1 ;@`1W;@y1n%;@@d1T%;@`1@;@TV1;@@91D;@ 0@{#<@0B<@@c0<@0tinyows-1.2.2/demo/world.shx000066400000000000000000000033541465244332600160450ustar00rootroot00000000000000' vfVf@T@p2 0 f bXB7S ]yR}B(jϖvXl B߲h@b:.*Z34:6 8:H@HB` OT]~{BVڜTW?H^\ph  ~ &Hr &0`є`@ 4+ 3 :;$>M2^ajaHiJkVhkqv|V* J(, 1"4:; ?8O)xZ2zX p>> " F+8/ )@XN]Z a~bi su 8 LP\hLh4T 0, Fv2, "  +81P38 ?`Ch hPjfB8k~pu8|xtX$ lDRZHBB\ )tFNSTV,V@\ ez g~ jZ nx j x   ` : V 2  "    ˜P j Z 6h  N "   l  *  3 B Ef V W \ l: w x |  0 8 X [8 kZ pTz ~@   8   tinyows-1.2.2/doc/000077500000000000000000000000001465244332600140065ustar00rootroot00000000000000tinyows-1.2.2/doc/Doxyfile000066400000000000000000001440061465244332600155210ustar00rootroot00000000000000# Doxyfile 1.4.5 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = tinyows # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = 1.2.2 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = doc # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, # Swedish, and Ukrainian. OUTPUT_LANGUAGE = English # This tag can be used to specify the encoding used in the generated output. # The encoding is not always determined by the language that is chosen, # but also whether or not the output is meant for Windows or non-Windows users. # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES # forces the Windows encoding (this is the default for the Windows binary), # whereas setting the tag to NO uses a Unix-style encoding (the default for # all platforms other than Windows). USE_WINDOWS_ENCODING = NO # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like the Qt-style comments (thus requiring an # explicit @brief command for a brief description. JAVADOC_AUTOBRIEF = YES # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the DETAILS_AT_TOP tag is set to YES then Doxygen # will output the detailed description near the top, like JavaDoc. # If set to NO, the detailed description appears after the member # documentation. DETAILS_AT_TOP = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = YES # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for Java. # For instance, namespaces will be presented as packages, qualified scopes # will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to # include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = NO # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = NO # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = NO # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= NO # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is YES. SHOW_DIRECTORIES = NO # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from the # version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = src/ src/wms src/wfs src/fe src/sld src/struct src/ows # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py FILE_PATTERNS = *.c \ *.h # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES (the default) # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES (the default) # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = doxygen # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 1 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. GENERATE_TREEVIEW = YES # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = NO # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = NO # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = YES # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will # generate a call dependency graph for every global function or class method. # Note that enabling this option will significantly increase the time of a run. # So in most cases it will be better to enable call graphs for selected # functions only using the \callgraph command. CALL_GRAPH = YES # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width # (in pixels) of the graphs generated by dot. If a graph becomes larger than # this value, doxygen will try to truncate the graph, so that it fits within # the specified constraint. Beware that most browsers cannot cope with very # large images. MAX_DOT_GRAPH_WIDTH = 1024 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height # (in pixels) of the graphs generated by dot. If a graph becomes larger than # this value, doxygen will try to truncate the graph, so that it fits within # the specified constraint. Beware that most browsers cannot cope with very # large images. MAX_DOT_GRAPH_HEIGHT = 1024 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that a graph may be further truncated if the graph's # image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH # and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), # the graph is not depth-constrained. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, which results in a white background. # Warning: Depending on the platform used, enabling this option may lead to # badly anti-aliased labels on the edges of a graph (i.e. they become hard to # read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = NO # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO tinyows-1.2.2/ms4w/000077500000000000000000000000001465244332600141335ustar00rootroot00000000000000tinyows-1.2.2/ms4w/Apache/000077500000000000000000000000001465244332600153145ustar00rootroot00000000000000tinyows-1.2.2/ms4w/Apache/htdocs/000077500000000000000000000000001465244332600166005ustar00rootroot00000000000000tinyows-1.2.2/ms4w/Apache/htdocs/tinyows.pkg.html000066400000000000000000000001601465244332600217570ustar00rootroot00000000000000

Tinyows URLs:

  • tinyows.exe
  • tinyows-1.2.2/ms4w/apps/000077500000000000000000000000001465244332600150765ustar00rootroot00000000000000tinyows-1.2.2/ms4w/apps/tinyows-svn/000077500000000000000000000000001465244332600174165ustar00rootroot00000000000000tinyows-1.2.2/ms4w/apps/tinyows-svn/config.xml000066400000000000000000000012511465244332600214040ustar00rootroot00000000000000 tinyows-1.2.2/ms4w/apps/tinyows-svn/install.bat000066400000000000000000000014601465244332600215550ustar00rootroot00000000000000@echo off set PG_SHARE="C:\Program Files\PostgreSQL\8.3\share\contrib" set /p PG_SHARE=[Enter path to Postgresql share directory(default=C:\Program Files\PostgreSQL\8.3\share\contrib)]: echo PG_SHARE is set to: %PG_SHARE% echo on set DB=tinyows_demo echo "Create Spatial Database: %DB%" dropdb.exe -U postgres %DB% createdb.exe -U postgres %DB% createlang.exe -U postgres plpgsql %DB% psql.exe -U postgres -d %DB% -f %PG_SHARE%\lwpostgis.sql psql.exe -U postgres -d %DB% -f %PG_SHARE%\spatial_ref_sys.sql echo "Import layer data: world" shp2pgsql.exe -s 4326 -I demo\world.shp world > world.sql psql.exe -U postgres -d %DB% -f world.sql echo "Import layer data: france_dept" shp2pgsql.exe -s 27582 -I -W latin1 demo\france_dept.shp france_dept > france_dept.sql psql.exe -U postgres -d %DB% -f france_dept.sql tinyows-1.2.2/ms4w/httpd.d/000077500000000000000000000000001465244332600155005ustar00rootroot00000000000000tinyows-1.2.2/ms4w/httpd.d/httpd_tinyows.conf000066400000000000000000000004621465244332600212700ustar00rootroot00000000000000Alias /tinyows/ "/ms4w/apps/tinyows-svn/" AllowOverride None Options Indexes FollowSymLinks Multiviews Order allow,deny Allow from all # set environment vars necessary for Tinyows SetEnv TINYOWS_CONFIG_FILE /ms4w/apps/tinyows-svn/config.xml tinyows-1.2.2/nmake.opt000066400000000000000000000177531465244332600150750ustar00rootroot00000000000000 ######################################################################## # nmake.opt - Tinyows configuration for MSVC++ ######################################################################## ######################################################################## # Section I: Tinyows Compilation Options ######################################################################## #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # Uncomment the following if you are building for 64-bit windows # (x64). You'll need to have PATH, INCLUDE and LIB set up for 64-bit # compiles. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #WIN64=YES #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # Check compiler version given in command line # nmake -f makefile.vc MSVC_VER=xxxx # 1310 = 7.1 (2003) 1400 = 8.0 (2005) #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !IFNDEF MSVC_VER #assume msvc 7.1 MSVC_VER=1310 !ENDIF #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # File locations and where to install things # ---------------------------------------------------------------------- # If you are using the MapServer Build Kit, almost everything should be # relative to this directory throughout this option file. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # Set the following to point to the directory adjacent to the dependent libs. !IFNDEF TINY_BASE TINY_BASE = C:\build\release-1400-dev\tinyows-svn #TINY_BASE = . !ENDIF # Set the following to point to the current (tinyows) directory. !IFNDEF TINY_CURRENT TINY_CURRENT = $(TINY_BASE) !ENDIF !IFNDEF BINDIR BINDIR = $(TINY_BASE)\..\bin !ENDIF #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # Optmization, debug, and related compile flags. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !IF $(MSVC_VER) == 1400 # Optimized, with using MSVCRT. OPTFLAGS = /nologo /Ox /MD $(WARNING_LEVEL) $(DEBUG) /EHsc /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE # Debug with MSVCRT #OPTFLAGS = /nologo /Zi /MD $(WARNING_LEVEL) $(DEBUG) /EHsc /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE #LDFLAGS = /NODEFAULTLIB:msvcrt /NODEFAULTLIB:libcd /DEBUG !ELSE # Optimized, with using MSVCRT. OPTFLAGS = /nologo /Ox /MD $(WARNING_LEVEL) $(DEBUG) /EHsc # Debug with MSVCRT #OPTFLAGS = /nologo /Zi /MDd $(WARNING_LEVEL) $(DEBUG) /EHsc #LDFLAGS = /NODEFAULTLIB:msvcrt /NODEFAULTLIB:libcd /DEBUG !ENDIF # Set the Warning level for the compiler (defaults to W1) WARNING_LEVEL=/W3 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # Debugging Options # ---------------------------------------------------------------------- #NEED_NONBLOCKING_STDERR=-DNEED_NONBLOCKING_STDERR ENABLE_STDERR_DEBUG=-DENABLE_STDERR_DEBUG # Set the linker debug option LDEBUG=/debug # DEBUG Build flags # Set the DEBUG flag if you wish to make a debug build DEBUG=/DDEBUG #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # String methods # ---------------------------------------------------------------------- # Apparently these aren't as commonplace. Edit the # following line to reflect the missing functions on your platform. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #STRINGS=-DNEED_STRCASECMP -DNEED_STRNCASECMP -DNEED_STRDUP STRINGS=-DNEED_STRCASECMP -DNEED_STRNCASECMP -DNEED_STRLCAT -DNEED_STRRSTR #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # Direct connectivity to Postgresql PostGIS. # ---------------------------------------------------------------------- # To turn on direct connectivity to Postgresql PostGIS uncomment the following # flag and set the full path name to the project directory for the # Postgresql native Win32 client library. # See http://www.postgresql.org for support library. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ POSTGIS =-DUSE_POSTGIS POSTGIS_DIR =$(TINY_BASE)\..\release-1400\postgresql-8.3.3 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # LIBXML: utility library to write xml. # http://xmlsoft.org/index.html # WFS, WCS and SOS all need this flag to be activated # NOTE: ICONV is required when libxml2 is activated # ---------------------------------------------------------------------- XML2_ENABLED=-DUSE_LIBXML2 LIBXML_DIR=$(TINY_BASE)\..\release-1400 ######################################################################## # Section II: Mapserver Rendering Configuration ######################################################################## #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # ICONV # ---------------------------------------------------------------------- #libiconv support is used for to support double bytes (see bug 911). #uncomment the following to build with libiconv support. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ICONV=-DUSE_ICONV ICONV_DIR=$(TINY_BASE)\..\release-1400 ######################################################################## # Section VI: Support Libraries. ######################################################################## #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # REGEX Libary # ---------------------------------------------------------------------- # VC++ does not include the REGEX library... so we must provide our one. # The following definitions will try to build GNU regex-0.12 located in the # regex-0.12 sub-directory. # If it was not included in the source distribution, then you can get it from: # ftp://ftp.gnu.org/pub/gnu/regex/regex-0.12.tar.gz # Provide the full path to the REGEX project directory # You do not need this library if you are compiling for PHP mapscript. # In that case the PHP regex library will be used instead #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ !IFNDEF PHP_REGEX REGEX_DIR=$(TINY_BASE)\..\regex-0.12 !ENDIF ######################################################################## # Section VII: Variable Setup ######################################################################## # Should not need to be updated. ######################################################################## TINY_LIB = tiny.lib #libiconv support !IFDEF ICONV ICONV_LIB=$(ICONV_DIR)\lib\iconv.lib ICONV_INC= -I$(ICONV_DIR)\include !ENDIF # LIBXML include and library !IFDEF XML2_ENABLED LIBXML_INC = -I$(LIBXML_DIR)/include/libxml LIBXML_LIB = $(LIBXML_DIR)/lib/libxml2.lib !ENDIF # Setup REGEX object and includes !IFNDEF PHP_REGEX REGEX_OBJ=$(REGEX_DIR)\regex.obj REGEX_INC=-I$(REGEX_DIR) !ELSE REGEX_OBJ=$(PHP_HOME)\regex\regcomp.obj $(PHP_HOME)\regex\regerror.obj \ $(PHP_HOME)\regex\regexec.obj $(PHP_HOME)\regex\regfree.obj REGEX_INC=-I$(PHP_HOME)/regex -DPHP_NO_ALIASES !ENDIF # REGEX needs some special flags... here they are for VC++ 6.0 REGEX_OPT=-DHAVE_STRING_H -DREGEX_MALLOC # Setup Postgesql PostGIS includes and libs !IFDEF POSTGIS !IFNDEF PHP_BUILD_CALL # If we're building PHP MapScript, there is a macro conflict POSTGIS_INC=-I$(POSTGIS_DIR)/src/interfaces/libpq -I$(POSTGIS_DIR)/src/include !ENDIF POSTGIS_LIB=$(POSTGIS_DIR)/src/interfaces/libpq/release/libpqdll.lib !ENDIF ####################################################################### # Section IX: Collect compiler flags ######################################################################## # Should not need to be updated. ######################################################################## !IFNDEF EXTERNAL_LIBS EXTERNAL_LIBS=$(POSTGIS_LIB) $(ERR_LIB) $(ICONV_LIB) $(LIBXML_LIB) !ENDIF LIBS=$(TINY_LIB) $(EXTERNAL_LIBS) !IFNDEF INCLUDES INCLUDES=$(REGEX_INC) $(POSTGIS_INC) $(ICONV_INC) $(LIBXML_INC) !ENDIF TINY_DEFS =$(REGEX_OPT) $(STRINGS) $(POSTGIS) $(NEED_NONBLOCKING_STDERR) \ $(ENABLE_STDERR_DEBUG) $(ICONV) $(XML2_ENABLED) !IFDEF WIN64 TINY_CFLAGS=$(INCLUDES) $(TINY_DEFS) -DWIN32 -D_WIN32 -DUSE_GENERIC_MS_NINT !ELSE TINY_CFLAGS=$(INCLUDES) $(TINY_DEFS) -DWIN32 -D_WIN32 !ENDIF tinyows-1.2.2/schema/000077500000000000000000000000001465244332600145015ustar00rootroot00000000000000tinyows-1.2.2/schema/LICENSE000066400000000000000000000052331465244332600155110ustar00rootroot00000000000000Public documents on the OGC site are provided by the copyright holders under the following license. The software or Document Type Definitions (DTDs) associated with OGC specifications are governed by the Software Notice. By using and/or copying this document, or the OGC document from which this statement is linked, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: Permission to use, copy, and distribute the contents of this document, or the OGC document from which this statement is linked, in any medium for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the document, or portions thereof, that you use: 1. Include a link or URL to the original OGC document. 2. The pre-existing copyright notice of the original author, or if it doesn't exist, a notice of the form: "Copyright © tinyows-1.2.2/schema/filter/1.0.0/filter.xsd000066400000000000000000000205451465244332600204350ustar00rootroot00000000000000 tinyows-1.2.2/schema/filter/1.0.0/filterCapabilities.xsd000066400000000000000000000110251465244332600227400ustar00rootroot00000000000000 tinyows-1.2.2/schema/filter/1.1.0/000077500000000000000000000000001465244332600164235ustar00rootroot00000000000000tinyows-1.2.2/schema/filter/1.1.0/expr.xsd000066400000000000000000000052641465244332600201300ustar00rootroot00000000000000 tinyows-1.2.2/schema/filter/1.1.0/filter.xsd000066400000000000000000000247361465244332600204440ustar00rootroot00000000000000 This XML Schema defines OGC query filter capabilities documents. filter is an OGC Standard. Copyright (c) 2002,2003,2004,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit: http://www.opengeospatial.org/legal/ . Updated: 2011-02-04 tinyows-1.2.2/schema/filter/1.1.0/filterCapabilities.xsd000066400000000000000000000152761465244332600227550ustar00rootroot00000000000000 This XML Schema defines OGC query filter capabilities documents. filter is an OGC Standard. Copyright (c) 2002,2003,2004,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Updated: 2010-01-22 tinyows-1.2.2/schema/filter/1.1.0/sort.xsd000066400000000000000000000032451465244332600201360ustar00rootroot00000000000000 tinyows-1.2.2/schema/gml/000077500000000000000000000000001465244332600152605ustar00rootroot00000000000000tinyows-1.2.2/schema/gml/2.1.2/000077500000000000000000000000001465244332600157205ustar00rootroot00000000000000tinyows-1.2.2/schema/gml/2.1.2/feature.xsd000066400000000000000000000303751465244332600201030ustar00rootroot00000000000000 feature.xsd v2.1.2 2002-07 GML Feature schema. Copyright (c) 2002 OGC, All Rights Reserved. An abstract feature provides a set of common properties. A concrete feature type must derive from this type and specify additional properties in an application schema. A feature may optionally possess an identifying attribute ('fid'). This abstract base type just makes the boundedBy element mandatory for a feature collection. A feature collection contains zero or more featureMember elements. A simple geometry property encapsulates a geometry element. Alternatively, it can function as a pointer (simple-type link) that refers to a remote geometry element. An instance of this type (e.g. a featureMember) can either enclose or point to a feature (or feature collection); this type can be restricted in an application schema to allow only specified features as valid participants in the association. When serving as a simple link that references a remote feature instance, the value of the gml:remoteSchema attribute can be used to locate a schema fragment that constrains the target instance. Bounding shapes--a Box or a null element are currently allowed. Encapsulates a single point to represent position, location, or centerOf properties. Encapsulates a single polygon to represent coverage or extentOf properties. Encapsulates a single LineString to represent centerLineOf or edgeOf properties. Encapsulates a MultiPoint element to represent the following discontiguous geometric properties: multiLocation, multiPosition, multiCenterOf. Encapsulates a MultiLineString element to represent the following discontiguous geometric properties: multiEdgeOf, multiCenterLineOf. Encapsulates a MultiPolygon to represent the following discontiguous geometric properties: multiCoverage, multiExtentOf. Encapsulates a MultiGeometry element. If a bounding shape is not provided for a feature collection, explain why. Allowable values are: innapplicable - the features do not have geometry unknown - the boundingBox cannot be computed unavailable - there may be a boundingBox but it is not divulged missing - there are no features tinyows-1.2.2/schema/gml/2.1.2/geometry.xsd000066400000000000000000000321531465244332600202770ustar00rootroot00000000000000 geometry.xsd v2.1.2 2002-07 GML Geometry schema. Copyright (c) 2001,2002 OGC, All Rights Reserved. All geometry elements are derived from this abstract supertype; a geometry element may have an identifying attribute (gid). It may be associated with a spatial reference system. This abstract base type for geometry collections just makes the srsName attribute mandatory. These attributes can be attached to any element, thus allowing it to act as a pointer. The 'remoteSchema' attribute allows an element that carries link attributes to indicate that the element is declared in a remote schema rather than by the schema that constrains the current document instance. An instance of this type (e.g. a geometryMember) can either enclose or point to a primitive geometry element. When serving as a simple link that references a remote geometry instance, the value of the gml:remoteSchema attribute can be used to locate a schema fragment that constrains the target instance. Restricts the geometry member to being a Point instance. Restricts the geometry member to being a LineString instance. Restricts the geometry member to being a Polygon instance. Restricts the outer or inner boundary of a polygon instance to being a LinearRing. A Point is defined by a single coordinate tuple. A LineString is defined by two or more coordinate tuples, with linear interpolation between them. A LinearRing is defined by four or more coordinate tuples, with linear interpolation between them; the first and last coordinates must be coincident. The Box structure defines an extent using a pair of coordinate tuples. A Polygon is defined by an outer boundary and zero or more inner boundaries which are in turn defined by LinearRings. A geometry collection must include one or more geometries, referenced through geometryMember elements. User-defined geometry collections that accept GML geometry classes as members must instantiate--or derive from--this type. A MultiPoint is defined by one or more Points, referenced through pointMember elements. A MultiLineString is defined by one or more LineStrings, referenced through lineStringMember elements. A MultiPolygon is defined by one or more Polygons, referenced through polygonMember elements. Represents a coordinate tuple in one, two, or three dimensions. Coordinates can be included in a single string, but there is no facility for validating string content. The value of the 'cs' attribute is the separator for coordinate values, and the value of the 'ts' attribute gives the tuple separator (a single space by default); the default values may be changed to reflect local usage. tinyows-1.2.2/schema/gml/2.1.2/xlinks.xsd000066400000000000000000000031131465244332600177460ustar00rootroot00000000000000 xlinks.xsd This document is now deprecated. Instead, please reference the xlinks.xsd file stored at the location http://schemas.opengis.net/xlink/1.0.0/xlinks.xsd. This modified xlink.xsd document is provided because some existing XML Schema Documents might still reference it at this location. In the future, this file will be made invalid so that any documents referencing it will no longer validate as expected. Subsequent to that, this file will be deleted from this location. This strategy is designed to smooth transition from the many xlinks.xsd files previously distributed throughout the OGC schema repository, to having only one official xlink.xsd document stored at http://schemas.opengis.net/xlink/1.0.0/xlinks.xsd. All references to xlinks.xsd documents, in existing XML Schema Documents within the OGC schema repository, have been modified to reference the xlinks.xsd file stored at http://schemas.opengis.net/xlink/1.0.0/xlinks.xsd. All include and import statements have also been changed to use relative paths to this xlinks.xsd document. Any new XML Schema documents shall also point to the new xlink/xlinks.xsd file and shall use a relative path. tinyows-1.2.2/schema/gml/3.1.1/000077500000000000000000000000001465244332600157205ustar00rootroot00000000000000tinyows-1.2.2/schema/gml/3.1.1/base/000077500000000000000000000000001465244332600166325ustar00rootroot00000000000000tinyows-1.2.2/schema/gml/3.1.1/base/basicTypes.xsd000066400000000000000000000332551465244332600214700ustar00rootroot00000000000000 basicTypes.xsd Generic simpleContent components for use in GML GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Some common reasons for a null value: innapplicable - the object does not have a value missing - The correct value is not readily available to the sender of this data. Furthermore, a correct value may not exist. template - the value will be available later unknown - The correct value is not known to, and not computable by, the sender of this data. However, a correct value probably exists. withheld - the value is not divulged other:reason - as indicated by "reason" string Specific communities may agree to assign more strict semantics when these terms are used in a particular context. Utility type for null elements. The value may be selected from one of the enumerated tokens, or may be a URI in which case this should identify a resource which describes the reason for the null. Utility type used in various places - e.g. to indicate the direction of topological objects; "+" for forwards, or "-" for backwards. Union of the XML Schema boolean type and the GML Nulltype. An element which uses this type may have content which is either a boolean {0,1,true,false} or a value from Nulltype XML List based on the union type defined above. An element declared with this type contains a space-separated list of boolean values {0,1,true,false} with null values interspersed as needed XML List based on XML Schema boolean type. An element of this type contains a space-separated list of boolean values {0,1,true,false} Union of the XML Schema string type and the GML Nulltype. An element which uses this type may have content which is either a string or a value from Nulltype. Note that a "string" may contain whitespace. Union of the XML Schema Name type and the GML Nulltype. An element which uses this type may have content which is either a Name or a value from Nulltype. Note that a "Name" may not contain whitespace. XML List based on the union type defined above. An element declared with this type contains a space-separated list of Name values with null values interspersed as needed XML List based on XML Schema Name type. An element of this type contains a space-separated list of Name values Union of the XML Schema double type and the GML Nulltype. An element which uses this type may have content which is either a double or a value from Nulltype XML List based on the union type defined above. An element declared with this type contains a space-separated list of double values with null values interspersed as needed XML List based on XML Schema double type. An element of this type contains a space-separated list of double values Union of the XML Schema integer type and the GML Nulltype. An element which uses this type may have content which is either an integer or a value from Nulltype XML List based on the union type defined above. An element declared with this type contains a space-separated list of integer values with null values interspersed as needed XML List based on XML Schema integer type. An element of this type contains a space-separated list of integer values Name or code with an (optional) authority. Text token. If the codeSpace attribute is present, then its value should identify a dictionary, thesaurus or authority for the term, such as the organisation who assigned the value, or the dictionary from which it is taken. A text string with an optional codeSpace attribute. List of values on a uniform nominal scale. List of text tokens. In a list context a token should not include any spaces, so xsd:Name is used instead of xsd:string. If a codeSpace attribute is present, then its value is a reference to a Reference System for the value, a dictionary or code list. List of values on a uniform nominal scale. List of text tokens. In a list context a token should not include any spaces, so xsd:Name is used instead of xsd:string. A member of the list may be a typed null. If a codeSpace attribute is present, then its value is a reference to a Reference System for the value, a dictionary or code list. Number with a scale. The value of uom (Units Of Measure) attribute is a reference to a Reference System for the amount, either a ratio or position scale. List of numbers with a uniform scale. The value of uom (Units Of Measure) attribute is a reference to a Reference System for the amount, either a ratio or position scale. List of numbers with a uniform scale. A member of the list may be a typed null. The value of uom (Units Of Measure) attribute is a reference to a Reference System for the amount, either a ratio or position scale. Tables or arrays of tuples. May be used for text-encoding of values from a table. Actually just a string, but allows the user to indicate which characters are used as separators. The value of the 'cs' attribute is the separator for coordinate values, and the value of the 'ts' attribute gives the tuple separator (a single space by default); the default values may be changed to reflect local usage. Defaults to CSV within a tuple, space between tuples. However, any string content will be schema-valid. A set of values, representing a list of token with the lexical value space of NCName. The tokens are seperated by whitespace. A set of values, representing a list of token with the lexical value space of QName. The tokens are seperated by whitespace. tinyows-1.2.2/schema/gml/3.1.1/base/coordinateOperations.xsd000066400000000000000000001312121465244332600235450ustar00rootroot00000000000000 How to encode coordinate operation definitions. Builds on referenceSystems.xsd to encode the data needed to define coordinate operations, including Transformations, Conversions, and other specific subtypes of operations. This schema encodes the Coordinate Operation (CC_) package of the extended UML Model for OGC Abstract Specification Topic 2: Spatial Referencing by Coordinates. That UML model is adapted from ISO 19111 - Spatial referencing by coordinates, as described in Annex C of Topic 2. Caution: The CRS package in GML 3.1 and GML 3.1.1 is preliminary, and is expected to undergo some modifications that are not backward compatible during the development of GML 3.2 (ISO 19136). The GML 3.2 package will implement the model described in the revised version of ISO 19111. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Basic encoding for coordinate operation objects, simplifying and restricting the DefinitionType as needed. The name by which this coordinate operation is identified. A mathematical operation on coordinates that transforms or converts coordinates to another coordinate reference system. Many but not all coordinate operations (from CRS A to CRS B) also uniquely define the inverse operation (from CRS B to CRS A). In some cases, the operation method algorithm for the inverse operation is the same as for the forward algorithm, but the signs of some operation parameter values must be reversed. In other cases, different algorithms are required for the forward and inverse operations, but the same operation parameter values are used. If (some) entirely different parameter values are needed, a different coordinate operation shall be defined. Set of alternative identifications of this coordinate operation. The first coordinateOperationID, if any, is normally the primary identification code, and any others are aliases. Comments on or information about this coordinate operation, including source information. Unordered set of estimates of the impact of this coordinate operation on point position accuracy. Gives position error estimates for target coordinates of this coordinate operation, assuming no errors in source coordinates. An identification of a coordinate operation. Version of the coordinate transformation (i.e., instantiation due to the stochastic nature of the parameters). Mandatory when describing a transformation, and should not be supplied for a conversion. Association to the source CRS (coordinate reference system) of this coordinate operation. Association to the target CRS (coordinate reference system) of this coordinate operation. For constraints on multiplicity of "sourceCRS" and "targetCRS", see UML model of Coordinate Operation package in OGC Abstract Specification topic 2. Association to a coordinate operation, either referencing or containing the definition of that coordinate operation. An ordered sequence of two or more single coordinate operations. The sequence of operations is constrained by the requirement that the source coordinate reference system of step (n+1) must be the same as the target coordinate reference system of step (n). The source coordinate reference system of the first step and the target coordinate reference system of the last step are the source and target coordinate reference system associated with the concatenated operation. Instead of a forward operation, an inverse operation may be used for one or more of the operation steps mentioned above, if the inverse operation is uniquely defined by the forward operation. Ordered sequence of associations to the two or more single operations used by this concatenated operation. Association to a single operation. Association to a concatenated operation, either referencing or containing the definition of that concatenated operation. A single (not concatenated) coordinate operation. Association to a single operation, either referencing or containing the definition of that single operation. A pass-through operation specifies that a subset of a coordinate tuple is subject to a specific coordinate operation. Ordered sequence of positive integers defining the positions in a coordinate tuple of the coordinates affected by this pass-through operation. A positive integer defining a position in a coordinate tuple. Association to the operation applied to the specified ordinates. Association to a pass through operation, either referencing or containing the definition of that pass through operation. A parameterized mathematical operation on coordinates that transforms or converts coordinates to another coordinate reference system. This coordinate operation uses an operation method, usually with associated parameter values. However, operation methods and parameter values are directly associated with concrete subtypes, not with this abstract type. This abstract complexType shall not be directly used, extended, or restricted in a compliant Application Schema. Association to an abstract operation, either referencing or containing the definition of that operation. An abstract operation on coordinates that does not include any change of datum. The best-known example of a coordinate conversion is a map projection. The parameters describing coordinate conversions are defined rather than empirically derived. Note that some conversions have no parameters. This abstract complexType is expected to be extended for well-known operation methods with many Conversion instances, in Application Schemas that define operation-method-specialized element names and contents. This conversion uses an operation method, usually with associated parameter values. However, operation methods and parameter values are directly associated with concrete subtypes, not with this abstract type. All concrete types derived from this type shall extend this type to include a "usesMethod" element that references the "OperationMethod" element. Similarly, all concrete types derived from this type shall extend this type to include zero or more elements each named "uses...Value" that each use the type of an element substitutable for the "_generalParameterValue" element. Association to a general conversion, either referencing or containing the definition of that conversion. A concrete operation on coordinates that does not include any change of Datum. The best-known example of a coordinate conversion is a map projection. The parameters describing coordinate conversions are defined rather than empirically derived. Note that some conversions have no parameters. This concrete complexType can be used with all operation methods, without using an Application Schema that defines operation-method-specialized element names and contents, especially for methods with only one Conversion instance. Unordered list of composition associations to the set of parameter values used by this conversion operation. Association to the operation method used by this coordinate operation. Composition association to a parameter value used by this coordinate operation. Association to a concrete general-purpose conversion, either referencing or containing the definition of that conversion. An abstract operation on coordinates that usually includes a change of Datum. The parameters of a coordinate transformation are empirically derived from data containing the coordinates of a series of points in both coordinate reference systems. This computational process is usually "over-determined", allowing derivation of error (or accuracy) estimates for the transformation. Also, the stochastic nature of the parameters may result in multiple (different) versions of the same coordinate transformation. This abstract complexType is expected to be extended for well-known operation methods with many Transformation instances, in Application Schemas that define operation-method-specialized value element names and contents. This transformation uses an operation method with associated parameter values. However, operation methods and parameter values are directly associated with concrete subtypes, not with this abstract type. All concrete types derived from this type shall extend this type to include a "usesMethod" element that references one "OperationMethod" element. Similarly, all concrete types derived from this type shall extend this type to include one or more elements each named "uses...Value" that each use the type of an element substitutable for the "_generalParameterValue" element. Association to a general transformation, either referencing or containing the definition of that transformation. A concrete operation on coordinates that usually includes a change of datum. The parameters of a coordinate transformation are empirically derived from data containing the coordinates of a series of points in both coordinate reference systems. This computational process is usually "over-determined", allowing derivation of error (or accuracy) estimates for the transformation. Also, the stochastic nature of the parameters may result in multiple (different) versions of the same coordinate transformation. This concrete complexType can be used for all operation methods, without using an Application Schema that defines operation-method-specialized element names and contents, especially for methods with only one Transformation instance. Unordered set of composition associations to the set of parameter values used by this transformation operation. Association to a transformation, either referencing or containing the definition of that transformation. Abstract parameter value or group of parameter values. This abstract complexType is expected to be extended and restricted for well-known operation methods with many instances, in Application Schemas that define operation-method-specialized element names and contents. Specific parameter value elements are directly contained in concrete subtypes, not in this abstract type. All concrete types derived from this type shall extend this type to include one "...Value" element with an appropriate type, which should be one of the element types allowed in the ParameterValueType. In addition, all derived concrete types shall extend this type to include a "valueOfParameter" element that references one element substitutable for the "OperationParameter" element. A parameter value, ordered sequence of values, or reference to a file of parameter values. This concrete complexType can be used for operation methods without using an Application Schema that defines operation-method-specialized element names and contents, especially for methods with only one instance. This complexType can be used, extended, or restricted for well-known operation methods, especially for methods with many instances. Numeric value of an operation parameter, with its associated unit of measure. Value of an angle operation parameter, in either degree-minute-second format or single value format. String value of an operation parameter. A string value does not have an associated unit of measure. Positive integer value of an operation parameter, usually used for a count. An integer value does not have an associated unit of measure. Boolean value of an operation parameter. A Boolean value does not have an associated unit of measure. Ordered sequence of two or more numeric values of an operation parameter list, where each value has the same associated unit of measure. An element of this type contains a space-separated sequence of double values. Ordered sequence of two or more integer values of an operation parameter list, usually used for counts. These integer values do not have an associated unit of measure. An element of this type contains a space-separated sequence of integer values. Reference to a file or a part of a file containing one or more parameter values, each numeric value with its associated unit of measure. When referencing a part of a file, that file must contain multiple identified parts, such as an XML encoded document. Furthermore, the referenced file or part of a file can reference another part of the same or different files, as allowed in XML documents. Association to the operation parameter that this is a value of. A group of related parameter values. The same group can be repeated more than once in a Conversion, Transformation, or higher level parameterValueGroup, if those instances contain different values of one or more parameterValues which suitably distinquish among those groups. This concrete complexType can be used for operation methods without using an Application Schema that defines operation-method-specialized element names and contents, especially for methods with only one instance. This complexType can be used, extended, or restricted for well-known operation methods, especially for methods with many instances. Unordered set of composition associations to the parameter values and groups of values included in this group. A composition association to a parameter value or group of values included in this group. Association to the operation parameter group for which this element provides parameter values. Basic encoding for operation method objects, simplifying and restricting the DefinitionType as needed. The name by which this operation method is identified. Definition of an algorithm used to perform a coordinate operation. Most operation methods use a number of operation parameters, although some coordinate conversions use none. Each coordinate operation using the method assigns values to these parameters. Set of alternative identifications of this operation method. The first methodID, if any, is normally the primary identification code, and any others are aliases. Comments on or information about this operation method, including source information. Unordered list of associations to the set of operation parameters and parameter groups used by this operation method. An identification of an operation method. Formula(s) used by this operation method. The value may be a reference to a publication. Note that the operation method may not be analytic, in which case this element references or contains the procedure, not an analytic formula. Number of dimensions in the source CRS of this operation method. Number of dimensions in the target CRS of this operation method. Association to an operation parameter or parameter group used by this operation method. Association to a concrete general-purpose operation method, either referencing or containing the definition of that method. Abstract definition of a parameter or group of parameters used by an operation method. The minimum number of times that values for this parameter group or parameter are required. If this attribute is omitted, the minimum number is one. Association to an operation parameter or group, either referencing or containing the definition of that parameter or group. Basic encoding for operation parameter objects, simplifying and restricting the DefinitionType as needed. The name by which this operation parameter is identified. The definition of a parameter used by an operation method. Most parameter values are numeric, but other types of parameter values are possible. This complexType is expected to be used or extended for all operation methods, without defining operation-method-specialized element names. Set of alternative identifications of this operation parameter. The first parameterID, if any, is normally the primary identification code, and any others are aliases. Comments on or information about this operation parameter, including source information. An identification of an operation parameter. Association to an operation parameter, either referencing or containing the definition of that parameter. Basic encoding for operation parameter group objects, simplifying and restricting the DefinitionType as needed. The name by which this operation parameter group is identified. The definition of a group of parameters used by an operation method. This complexType is expected to be used or extended for all applicable operation methods, without defining operation-method-specialized element names. Set of alternative identifications of this operation parameter group. The first groupID, if any, is normally the primary identification code, and any others are aliases. Comments on or information about this operation parameter group, including source information. Unordered list of associations to the set of operation parameters that are members of this group. An identification of an operation parameter group. The maximum number of times that values for this parameter group can be included. If this attribute is omitted, the maximum number is one. Association to an operation parameter that is a member of a group. Association to an operation parameter, either referencing or containing the definition of that parameter. tinyows-1.2.2/schema/gml/3.1.1/base/coordinateReferenceSystems.xsd000066400000000000000000000541741465244332600247230ustar00rootroot00000000000000 How to encode coordinate reference system definitions. Builds on referenceSystems.xsd to encode the data needed to define coordinate reference systems, including the specific subtypes of coordinate reference systems. This schema encodes the Coordinate Reference System (SC_) package of the extended UML Model for OGC Abstract Specification Topic 2: Spatial Referencing by Coordinates, with the exception of the abstract "SC_CRS" class. The "SC_CRS" class is encoded in referenceSystems.xsd, to eliminate the (circular) references from coordinateOperations.xsd to coordinateReferenceSystems.xsd. That UML model is adapted from ISO 19111 - Spatial referencing by coordinates, as described in Annex C of Topic 2. Caution: The CRS package in GML 3.1 and GML 3.1.1 is preliminary, and is expected to undergo some modifications that are not backward compatible during the development of GML 3.2 (ISO 19136). The GML 3.2 package will implement the model described in the revised version of ISO 19111. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . A coordinate reference system consists of an ordered sequence of coordinate system axes that are related to the earth through a datum. A coordinate reference system is defined by one datum and by one coordinate system. Most coordinate reference system do not move relative to the earth, except for engineering coordinate reference systems defined on moving platforms such as cars, ships, aircraft, and spacecraft. For further information, see OGC Abstract Specification Topic 2. Coordinate reference systems are commonly divided into sub-types. The common classification criterion for sub-typing of coordinate reference systems is the way in which they deal with earth curvature. This has a direct effect on the portion of the earth's surface that can be covered by that type of CRS with an acceptable degree of error. The exception to the rule is the subtype "Temporal" which has been added by analogy. Association to a coordinate reference system, either referencing or containing the definition of that reference system. A coordinate reference system describing the position of points through two or more independent coordinate reference systems. Ordered sequence of associations to all the component coordinate reference systems included in this compound coordinate reference system. An association to a component coordinate reference system included in this compound coordinate reference system. Association to a compound coordinate reference system, either referencing or containing the definition of that reference system. A coordinate reference system based on an ellipsoidal approximation of the geoid; this provides an accurate representation of the geometry of geographic features for a large portion of the earth's surface. Association to the ellipsoidal coordinate system used by this CRS. Association to the geodetic datum used by this CRS. Association to a geographic coordinate reference system, either referencing or containing the definition of that reference system. A 1D coordinate reference system used for recording heights or depths. Vertical CRSs make use of the direction of gravity to define the concept of height or depth, but the relationship with gravity may not be straightforward. By implication, ellipsoidal heights (h) cannot be captured in a vertical coordinate reference system. Ellipsoidal heights cannot exist independently, but only as an inseparable part of a 3D coordinate tuple defined in a geographic 3D coordinate reference system. Association to the vertical coordinate system used by this CRS. Association to the vertical datum used by this CRS. Association to a vertical coordinate reference system, either referencing or containing the definition of that reference system. A 3D coordinate reference system with the origin at the approximate centre of mass of the earth. A geocentric CRS deals with the earth's curvature by taking a 3D spatial view, which obviates the need to model the earth's curvature. Association to the Cartesian coordinate system used by this CRS. Association to the spherical coordinate system used by this CRS. Association to a geocentric coordinate reference system, either referencing or containing the definition of that reference system. A coordinate reference system that is defined by its coordinate conversion from another coordinate reference system (not by a datum). This abstract complexType shall not be used, extended, or restricted, in an Application Schema, to define a concrete subtype with a meaning equivalent to a concrete subtype specified in this document. Association to the coordinate reference system used by this derived CRS. Association to the coordinate conversion used to define this derived CRS. A 2D coordinate reference system used to approximate the shape of the earth on a planar surface, but in such a way that the distortion that is inherent to the approximation is carefully controlled and known. Distortion correction is commonly applied to calculated bearings and distances to produce values that are a close match to actual field values. Association to a projected coordinate reference system, either referencing or containing the definition of that reference system. A coordinate reference system that is defined by its coordinate conversion from another coordinate reference system but is not a projected coordinate reference system. This category includes coordinate reference systems derived from a projected coordinate reference system. Type of a derived coordinate reference system. Reference to a source of information specifying the values and meanings of all the allowed string values for this DerivedCRSTypeType. Association to the coordinate system used by this CRS. Association to a non-projected derived coordinate reference system, either referencing or containing the definition of that reference system. A contextually local coordinate reference system; which can be divided into two broad categories: - earth-fixed systems applied to engineering activities on or near the surface of the earth; - CRSs on moving platforms such as road vehicles, vessels, aircraft, or spacecraft. For further information, see OGC Abstract Specification Topic 2. Association to the engineering datum used by this CRS. Association to an engineering coordinate reference system, either referencing or containing the definition of that reference system. An engineering coordinate reference system applied to locations in images. Image coordinate reference systems are treated as a separate sub-type because a separate user community exists for images with its own terms of reference. Association to the oblique Cartesian coordinate system used by this CRS. Association to the image datum used by this CRS. Association to an image coordinate reference system, either referencing or containing the definition of that reference system. A 1D coordinate reference system used for the recording of time. Association to the temporal coordinate system used by this CRS. Association to the temporal datum used by this CRS. Association to a temporal coordinate reference system, either referencing or containing the definition of that reference system. tinyows-1.2.2/schema/gml/3.1.1/base/coordinateSystems.xsd000066400000000000000000000561011465244332600230740ustar00rootroot00000000000000 How to encode coordinate system definitions. Builds on referenceSystems.xsd to encode the data needed to define coordinate systems, including the specific subtypes of coordinate systems. This schema encodes the Coordinate System (CS_) package of the extended UML Model for OGC Abstract Specification Topic 2: Spatial Referencing by Coordinates. That UML model is adapted from ISO 19111 - Spatial referencing by coordinates, as described in Annex C of Topic 2. Caution: The CRS package in GML 3.1 and GML 3.1.1 is preliminary, and is expected to undergo some modifications that are not backward compatible during the development of GML 3.2 (ISO 19136). The GML 3.2 package will implement the model described in the revised version of ISO 19111. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Basic encoding for coordinate system axis objects, simplifying and restricting the DefinitionType as needed. The name by which this coordinate system axis is identified. Definition of a coordinate system axis. Set of alternative identifications of this coordinate system axis. The first axisID, if any, is normally the primary identification code, and any others are aliases. Comments on or information about this coordinate system axis, including data source information. An identification of a coordinate system axis. The abbreviation used for this coordinate system axis. This abbreviation can be used to identify the ordinates in a coordinate tuple. Examples are X and Y. The codeSpace attribute can reference a source of more information on a set of standardized abbreviations, or on this abbreviation. Direction of this coordinate system axis (or in the case of Cartesian projected coordinates, the direction of this coordinate system axis at the origin). Examples: north or south, east or west, up or down. Within any set of coordinate system axes, only one of each pair of terms can be used. For earth-fixed CRSs, this direction is often approximate and intended to provide a human interpretable meaning to the axis. When a geodetic datum is used, the precise directions of the axes may therefore vary slightly from this approximate direction. Note that an EngineeringCRS can include specific descriptions of the directions of its coordinate system axes. For example, the path of a linear CRS axis can be referenced in another document, such as referencing a GML feature that references or includes a curve geometry. The codeSpace attribute can reference a source of more information on a set of standardized directions, or on this direction. Identifier of the unit of measure used for this coordinate system axis. The value of this coordinate in a coordinate tuple shall be recorded using this unit of measure, whenever those coordinates use a coordinate reference system that uses a coordinate system that uses this axis. Association to a coordinate system axis, either referencing or containing the definition of that axis. Basic encoding for coordinate system objects, simplifying and restricting the DefinitionType as needed. The name by which this coordinate system is identified. A coordinate system (CS) is the set of coordinate system axes that spans a given coordinate space. A CS is derived from a set of (mathematical) rules for specifying how coordinates in a given space are to be assigned to points. The coordinate values in a coordinate tuple shall be recorded in the order in which the coordinate system axes associations are recorded, whenever those coordinates use a coordinate reference system that uses this coordinate system. This abstract complexType shall not be used, extended, or restricted, in an Application Schema, to define a concrete subtype with a meaning equivalent to a concrete subtype specified in this document. Set of alternative identifications of this coordinate system. The first csID, if any, is normally the primary identification code, and any others are aliases. Comments on or information about this coordinate system, including data source information. Ordered sequence of associations to the coordinate system axes included in this coordinate system. An identification of a coordinate system. Association to a coordinate system axis. Association to a coordinate system, either referencing or containing the definition of that coordinate system. A two- or three-dimensional coordinate system in which position is specified by geodetic latitude, geodetic longitude, and (in the three-dimensional case) ellipsoidal height. An EllipsoidalCS shall have two or three usesAxis associations. Association to an ellipsoidal coordinate system, either referencing or containing the definition of that coordinate system. A 1-, 2-, or 3-dimensional coordinate system. Gives the position of points relative to orthogonal straight axes in the 2- and 3-dimensional cases. In the 1-dimensional case, it contains a single straight coordinate axis. In the multi-dimensional case, all axes shall have the same length unit of measure. A CartesianCS shall have one, two, or three usesAxis associations. Association to a Cartesian coordinate system, either referencing or containing the definition of that coordinate system. A one-dimensional coordinate system used to record the heights (or depths) of points. Such a coordinate system is usually dependent on the Earth's gravity field, perhaps loosely as when atmospheric pressure is the basis for the vertical coordinate system axis. A VerticalCS shall have one usesAxis association. Association to a vertical coordinate system, either referencing or containing the definition of that coordinate system. A one-dimensional coordinate system containing a single time axis, used to describe the temporal position of a point in the specified time units from a specified time origin. A TemporalCS shall have one usesAxis association. Association to a temporal coordinate system, either referencing or containing the definition of that coordinate system. A one-dimensional coordinate system that consists of the points that lie on the single axis described. The associated ordinate is the distance from the specified origin to the point along the axis. Example: usage of the line feature representing a road to describe points on or along that road. A LinearCS shall have one usesAxis association. Association to a linear coordinate system, either referencing or containing the definition of that coordinate system. A two- or three-dimensional coordinate system that consists of any combination of coordinate axes not covered by any other coordinate system type. An example is a multilinear coordinate system which contains one coordinate axis that may have any 1-D shape which has no intersections with itself. This non-straight axis is supplemented by one or two straight axes to complete a 2 or 3 dimensional coordinate system. The non-straight axis is typically incrementally straight or curved. A UserDefinedCS shall have two or three usesAxis associations. Association to a user-defined coordinate system, either referencing or containing the definition of that coordinate system. A three-dimensional coordinate system with one distance measured from the origin and two angular coordinates. Not to be confused with an ellipsoidal coordinate system based on an ellipsoid "degenerated" into a sphere. A SphericalCS shall have three usesAxis associations. Association to a spherical coordinate system, either referencing or containing the definition of that coordinate system. A two-dimensional coordinate system in which position is specified by the distance from the origin and the angle between the line from the origin to a point and a reference direction. A PolarCS shall have two usesAxis associations. Association to a polar coordinate system, either referencing or containing the definition of that coordinate system. A three-dimensional coordinate system consisting of a polar coordinate system extended by a straight coordinate axis perpendicular to the plane spanned by the polar coordinate system. A CylindricalCS shall have three usesAxis associations. Association to a cylindrical coordinate system, either referencing or containing the definition of that coordinate system. A two- or three-dimensional coordinate system with straight axes that are not necessarily orthogonal. An ObliqueCartesianCS shall have two or three usesAxis associations. Association to an oblique-Cartesian coordinate system, either referencing or containing the definition of that coordinate system. tinyows-1.2.2/schema/gml/3.1.1/base/coverage.xsd000066400000000000000000000517031465244332600211530ustar00rootroot00000000000000 coverage.xsd GML Coverage schema. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Abstract element which acts as the head of a substitution group for coverages. Note that a coverage is a GML feature. A continuous coverage as defined in ISO 19123 is a coverage that can return different values for the same feature attribute at different direct positions within a single spatiotemporal object in its spatiotemporal domain A discrete coverage consists of a domain set, range set and optionally a coverage function. The domain set consists of either geometry or temporal objects, finite in number. The range set is comprised of a finite number of attribute values each of which is associated to every direct position within any single spatiotemporal object in the domain. In other words, the range values are constant on each spatiotemporal object in the domain. This coverage function maps each element from the coverage domain to an element in its range. This definition conforms to ISO 19123. The spatiotemporal domain of a coverage. Typically * a geometry collection, * an implicit geometry (e.g. a grid), * an explicit or implicit collection of time instances or periods, or N.B. Temporal geometric complexes and temporal grids are not yet implemented in GML. each member _Value holds a tuple or "row" from the equivalent table each list holds the complete set of one scalar component from the values - i.e. a "column" from the equivalent table Its tuple list holds the values as space-separated tuples each of which contains comma-separated components, and the tuple structure is specified using the rangeParameters property. a reference to an external source for the data, together with a description of how that external source is structured The function or rule which defines the map from members of the domainSet to the range. More functions will be added to this list List of codes that identifies the file structure model for records stored in files. Metadata about the rangeSet. Definition of record structure. This is required if the rangeSet is encoded in a DataBlock. We use a gml:_Value with empty values as a map of the composite value structure. Description of a rule for associating members from the domainSet with members of the rangeSet. Defines how values in the domain are mapped to the range set. The start point and the sequencing rule are specified here. If absent, the implied value is "Linear". Index position of the first grid post, which must lie somwhere in the GridEnvelope. If absent, the startPoint is equal to the value of gridEnvelope::low from the grid definition. Exends GridFunctionType with a lookUpTable. This contains a list of indexes of members within the rangeSet corresponding with the members of the domainSet. The domainSet is traversed in list order if it is enumerated explicitly, or in the order specified by a SequenceRule if the domain is an implicit set. The length of the lookUpTable corresponds with the length of the subset of the domainSet for which the coverage is defined. List of codes (adopted from ISO 19123 Annex C) that identifies the rule for traversing a grid to correspond with the sequence of members of the rangeSet. The enumeration value here indicates the incrementation order to be used on the first 2 axes, i.e. "+x-y" means that the points on the first axis are to be traversed from lowest to highest and the points on the second axis are to be traversed from highest to lowest. The points on all other axes (if any) beyond the first 2 are assumed to increment from lowest to highest. A discrete coverage type whose domain is defined by a collection of point A discrete coverage type whose domain is defined by a collection of curves. A discrete coverage type whose domain is defined by a collection of surface patches (includes polygons, triangles, rectangles, etc). A discrete coverage type whose domain is defined by a collection of Solids. tinyows-1.2.2/schema/gml/3.1.1/base/dataQuality.xsd000066400000000000000000000150171465244332600216400ustar00rootroot00000000000000 How to encode positional data quality information. Builds on units.xsd to encode the data needed to describe the positional accuracy of coordinate operations. This schema encodes the Data Quality (DQ) package of the extended UML Model for OGC Abstract Specification Topic 2: Spatial Referencing by Coordinates. That UML model is adapted from ISO 19111 - Spatial referencing by coordinates, as described in Annex C of Topic 2. Caution: The CRS package in GML 3.1 and GML 3.1.1 is preliminary, and is expected to undergo some modifications that are not backward compatible during the development of GML 3.2 (ISO 19136). The GML 3.2 package will implement the model described in the revised version of ISO 19111. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Position error estimate (or accuracy) data. A description of the position accuracy parameter(s) provided. Closeness of reported coordinate values to values accepted as or being true. Closeness of the relative positions of two or more positions to their respective relative positions accepted as or being true. A quantitative result defined by the evaluation procedure used, and identified by the measureDescription. Error estimate covariance matrix. Ordered sequence of units of measure, corresponding to the row and column index numbers of the covariance matrix, starting with row and column 1 and ending with row/column N. Each unit of measure is for the ordinate reflected in the relevant row and column of the covariance matrix. Unordered set of elements in this covariance matrix. Because the covariance matrix is symmetrical, only the elements in the upper or lower diagonal part (including the main diagonal) of the matrix need to be specified. Any zero valued covariance elements can be omitted. An element of a covariance matrix. Row number of this covariance element value. Column number of this covariance element value. Value of covariance matrix element. tinyows-1.2.2/schema/gml/3.1.1/base/datums.xsd000066400000000000000000000621521465244332600206550ustar00rootroot00000000000000 How to encode datum definitions. Builds on referenceSystems.xsd to encode the data needed to define datums, including the specific subtypes of datums. This schema encodes the Datum (CD_) package of the extended UML Model for OGC Abstract Specification Topic 2: Spatial Referencing by Coordinates. That UML model is adapted from ISO 19111 - Spatial referencing by coordinates, as described in Annex C of Topic 2. Caution: The CRS package in GML 3.1 and GML 3.1.1 is preliminary, and is expected to undergo some modifications that are not backward compatible during the development of GML 3.2 (ISO 19136). The GML 3.2 package will implement the model described in the revised version of ISO 19111. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Basic encoding for datum objects, simplifying and restricting the DefinitionType as needed. The name by which this datum is identified. A datum specifies the relationship of a coordinate system to the earth, thus creating a coordinate reference system. A datum uses a parameter or set of parameters that determine the location of the origin of the coordinate reference system. Each datum subtype can be associated with only specific types of coordinate systems. This abstract complexType shall not be used, extended, or restricted, in an Application Schema, to define a concrete subtype with a meaning equivalent to a concrete subtype specified in this document. Set of alternative identifications of this datum. The first datumID, if any, is normally the primary identification code, and any others are aliases. Comments on this reference system, including source information. An identification of a datum. Description, possibly including coordinates, of the point or points used to anchor the datum to the Earth. Also known as the "origin", especially for engineering and image datums. The codeSpace attribute can be used to reference a source of more detailed on this point or surface, or on a set of such descriptions. - For a geodetic datum, this point is also known as the fundamental point, which is traditionally the point where the relationship between geoid and ellipsoid is defined. In some cases, the "fundamental point" may consist of a number of points. In those cases, the parameters defining the geoid/ellipsoid relationship have been averaged for these points, and the averages adopted as the datum definition. - For an engineering datum, the anchor point may be a physical point, or it may be a point with defined coordinates in another CRS. When appropriate, the coordinates of this anchor point can be referenced in another document, such as referencing a GML feature that references or includes a point position. - For an image datum, the anchor point is usually either the centre of the image or the corner of the image. - For a temporal datum, this attribute is not defined. Instead of the anchor point, a temporal datum carries a separate time origin of type DateTime. The time after which this datum definition is valid. This time may be precise (e.g. 1997.0 for IRTF97) or merely a year (e.g. 1983 for NAD83). In the latter case, the epoch usually refers to the year in which a major recalculation of the geodetic control network, underlying the datum, was executed or initiated. An old datum can remain valid after a new datum is defined. Alternatively, a datum may be superseded by a later datum, in which case the realization epoch for the new datum defines the upper limit for the validity of the superseded datum. Association to a datum, either referencing or containing the definition of that datum. An engineering datum defines the origin of an engineering coordinate reference system, and is used in a region around that origin. This origin can be fixed with respect to the earth (such as a defined point at a construction site), or be a defined point on a moving vehicle (such as on a ship or satellite). Association to an engineering datum, either referencing or containing the definition of that datum. An image datum defines the origin of an image coordinate reference system, and is used in a local context only. For more information, see OGC Abstract Specification Topic 2. Specification of the way an image grid is associated with the image data attributes. Reference to a source of information specifying the values and meanings of all the allowed string values for this PixelInCellType. Association to an image datum, either referencing or containing the definition of that datum. A textual description and/or a set of parameters identifying a particular reference level surface used as a zero-height surface, including its position with respect to the Earth for any of the height types recognized by this standard. There are several types of Vertical Datums, and each may place constraints on the Coordinate Axis with which it is combined to create a Vertical CRS. Type of a vertical datum. Reference to a source of information specifying the values and meanings of all the allowed string values for this VerticalDatumTypeType. Association to a vertical datum, either referencing or containing the definition of that datum. Partially defines the origin of a temporal coordinate reference system. This type restricts the AbstractDatumType to remove the "anchorPoint" and "realizationEpoch" elements. Defines the origin of a temporal coordinate reference system. This type extends the TemporalDatumRestrictionType to add the "origin" element with the dateTime type. The date and time origin of this temporal datum. Association to a temporal datum, either referencing or containing the definition of that datum. A geodetic datum defines the precise location and orientation in 3-dimensional space of a defined ellipsoid (or sphere) that approximates the shape of the earth, or of a Cartesian coordinate system centered in this ellipsoid (or sphere). Association to the prime meridian used by this geodetic datum. Association to the ellipsoid used by this geodetic datum. Association to a geodetic datum, either referencing or containing the definition of that datum. Basic encoding for prime meridian objects, simplifying and restricting the DefinitionType as needed. The name by which this prime meridian is identified. The meridianName most common value is Greenwich, and that value shall be used when the greenwichLongitude value is zero. A prime meridian defines the origin from which longitude values are determined. Set of alternative identifications of this prime meridian. The first meridianID, if any, is normally the primary identification code, and any others are aliases. Comments on or information about this prime meridian, including source information. An identification of a prime meridian. Longitude of the prime meridian measured from the Greenwich meridian, positive eastward. The greenwichLongitude most common value is zero, and that value shall be used when the meridianName value is Greenwich. Association to a prime meridian, either referencing or containing the definition of that meridian. Basic encoding for ellipsoid objects, simplifying and restricting the DefinitionType as needed. The name by which this ellipsoid is identified. An ellipsoid is a geometric figure that can be used to describe the approximate shape of the earth. In mathematical terms, it is a surface formed by the rotation of an ellipse about its minor axis. Set of alternative identifications of this ellipsoid. The first ellipsoidID, if any, is normally the primary identification code, and any others are aliases. Comments on or information about this ellipsoid, including source information. An identification of an ellipsoid. Length of the semi-major axis of the ellipsoid, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a length, such as metres or feet. Association to an ellipsoid, either referencing or containing the definition of that ellipsoid. Definition of the second parameter that defines the shape of an ellipsoid. An ellipsoid requires two defining parameters: semi-major axis and inverse flattening or semi-major axis and semi-minor axis. When the reference body is a sphere rather than an ellipsoid, only a single defining parameter is required, namely the radius of the sphere; in that case, the semi-major axis "degenerates" into the radius of the sphere. Inverse flattening value of the ellipsoid. Value is a scale factor (or ratio) that has no physical unit. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a scale factor, such as percent, permil, or parts-per-million. Length of the semi-minor axis of the ellipsoid. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a length, such as metres or feet. The ellipsoid is degenerate and is actually a sphere. The sphere is completely defined by the semi-major axis, which is the radius of the sphere. tinyows-1.2.2/schema/gml/3.1.1/base/defaultStyle.xsd000066400000000000000000000455721465244332600220340ustar00rootroot00000000000000 defaultStyle.xsd Default Style schema for GML 3.1.1 GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Top-level property. Used in application schemas to "attach" the styling information to GML data. The link between the data and the style should be established through this property only. [complexType of] Top-level property. Used in application schemas to "attach" the styling information to GML data. The link between the data and the style should be established through this property only. The value of the top-level property. It is an abstract element. Used as the head element of the substitution group for extensibility purposes. [complexType of] The value of the top-level property. It is an abstract element. Used as the head element of the substitution group for extensibility purposes. Predefined concrete value of the top-level property. Encapsulates all other styling information. [complexType of] Predefined concrete value of the top-level property. Encapsulates all other styling information. The style descriptor for features. [complexType of] The style descriptor for features. Used to specify the grammar of the feature query mechanism. Base complex type for geometry, topology, label and graph styles. The style descriptor for geometries of a feature. [complexType of] The style descriptor for geometries of a feature. deprecated Deprecated in GML version 3.1.0. Use symbol with inline content instead. The style descriptor for topologies of a feature. Describes individual topology elements styles. [complexType of] The style descriptor for topologies of a feature. Describes individual topology elements styles. deprecated Deprecated in GML version 3.1.0. Use symbol with inline content instead. The style descriptor for labels of a feature, geometry or topology. [complexType of] The style descriptor for labels of a feature, geometry or topology. The style descriptor for a graph consisting of a number of features. Describes graph-specific style attributes. [complexType of] The style descriptor for a graph consisting of a number of features. Describes graph-specific style attributes. The symbol property. Extends the gml:AssociationType to allow for remote referencing of symbols. [complexType of] The symbol property. Allows for remote referencing of symbols. Used to specify the type of the symbol used. Label is mixed -- composed of text and XPath expressions used to extract the useful information from the feature. Defines the geometric transformation of entities. There is no particular grammar defined for this value. Used to vary individual graphic parameters and attributes of the style, symbol or text. Graph-specific styling property. Graph-specific styling property. Graph-specific styling property. Graph-specific styling property. tinyows-1.2.2/schema/gml/3.1.1/base/dictionary.xsd000066400000000000000000000216411465244332600215230ustar00rootroot00000000000000 Dictionary schema for GML 3.1.1 Components to support the lists of definitions. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . This content model group makes it easier to construct types that derive from DefinitionType and its descendents "by restriction". A reference to the group saves having to enumerate the standard definition properties. See definition of StandardObjectProperties for more documentation A definition, which can be included in or referenced by a dictionary. In this extended type, the inherited "description" optional element can hold the definition whenever only text is needed. The inherited "name" elements can provide one or more brief terms for which this is the definition. The inherited "metaDataProperty" elements can be used to reference or include more information about this definition. The gml:id attribute is required - it must be possible to reference this definition using this handle. A non-abstract bag that is specialized for use as a dictionary which contains a set of definitions. These definitions are referenced from other places, in the same and different XML documents. In this restricted type, the inherited optional "description" element can be used for a description of this dictionary. The inherited optional "name" element can be used for the name(s) of this dictionary. The inherited "metaDataProperty" elements can be used to reference or contain more information about this dictionary. The inherited required gml:id attribute allows the dictionary to be referenced using this handle. An entry in this dictionary. The content of an entry can itself be a lower level dictionary or definition collection. This element follows the standard GML property model, so the value may be provided directly or by reference. Note that if the value is provided by reference, this definition does not carry a handle (gml:id) in this context, so does not allow external references to this specific entry in this context. When used in this way the referenced definition will usually be in a dictionary in the same XML document. An identified reference to a remote entry in this dictionary, to be used when this entry should be identified to allow external references to this specific entry. An entry in a dictionary of definitions. An instance of this type contains or refers to a definition object. The number of definitions contained in this dictionaryEntry is restricted to one, but a DefinitionCollection or Dictionary that contains multiple definitions can be substituted if needed. Specialized descendents of this dictionaryEntry might be restricted in an application schema to allow only including specified types of definitions as valid entries in a dictionary. This element in a dictionary entry contains the actual definition. A non-identified reference to a remote entry in this dictionary, to be used when this entry need not be identified to allow external references to this specific entry. The remote entry referenced will usually be in a dictionary in the same XML document. This element will usually be used in dictionaries that are inside of another dictionary. An entry in a dictionary of definitions that contains a GML object which references a remote definition object. This entry is expected to be convenient in allowing multiple elements in one XML document to contain short (abbreviated XPointer) references, which are resolved to an external definition provided in a Dictionary element in the same XML document. Specialized descendents of this dictionaryEntry might be restricted in an application schema to allow only including specified types of definitions as valid entries in a dictionary. A proxy entry in a dictionary of definitions. An element of this type contains a reference to a remote definition object. This entry is expected to be convenient in allowing multiple elements in one XML document to contain short (abbreviated XPointer) references, which are resolved to an external definition provided in a Dictionary element in the same XML document. A reference to a remote entry in this dictionary, used when this dictionary entry is identified to allow external references to this specific entry. The remote entry referenced can be in a dictionary in the same or different XML document. tinyows-1.2.2/schema/gml/3.1.1/base/direction.xsd000066400000000000000000000061101465244332600213300ustar00rootroot00000000000000 direction.xsd This schema defines "direction" element and type. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Direction expressed as a vector, either using components, or using angles. tinyows-1.2.2/schema/gml/3.1.1/base/dynamicFeature.xsd000066400000000000000000000121631465244332600223150ustar00rootroot00000000000000 Basic support for tracking moving objects and objects with changing state. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . A timeslice encapsulates the time-varying properties of a dynamic feature--it must be extended to represent a timestamped projection of a feature. The dataSource property describes how the temporal data was acquired. This type encapsulates various dynamic properties of moving objects (points, lines, regions). It is useful for dealing with features whose geometry or topology changes over time. The history relationship associates a feature with a sequence of TimeSlice instances. The track of a moving object is a sequence of specialized timeslices that indicate the status of the object. A dynamic feature may possess a history and/or a timestamp. A dynamic feature collection may possess a history and/or a timestamp. tinyows-1.2.2/schema/gml/3.1.1/base/feature.xsd000066400000000000000000000217111465244332600210070ustar00rootroot00000000000000 GML Feature schema. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . An abstract feature provides a set of common properties, including id, metaDataProperty, name and description inherited from AbstractGMLType, plus boundedBy. A concrete feature type must derive from this type and specify additional properties in an application schema. A feature must possess an identifying attribute ('id' - 'fid' has been deprecated). deprecated deprecated in GML version 3.1 Bounding shape. Envelope that includes also a temporal extent. Container for a feature - follow gml:AssociationType pattern. Container for features - follow gml:ArrayAssociationType pattern. A feature collection contains zero or more features. Concrete generic feature collection. Makes boundedBy mandatory deprecated deprecated in GML version 3.1 Deprecated in GML 3.1.0 Convenience property for generalised location. A representative location for plotting or analysis. Often augmented by one or more additional geometry properties with more specific semantics. Deprecated in GML 3.1.0 Deprecated in GML 3.1.0 G-XML component Deprecated in GML 3.1.0 tinyows-1.2.2/schema/gml/3.1.1/base/geometryAggregates.xsd000066400000000000000000000672371465244332600232160ustar00rootroot00000000000000 geometryAggregates.xsd GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . The "_GeometricAggregate" element is the abstract head of the substituition group for all geometric aggremates. This is the abstract root type of the geometric aggregates. A geometry collection must include one or more geometries, referenced through geometryMember elements. The members of the geometric aggregate can be specified either using the "standard" property or the array property style. It is also valid to use both the "standard" and the array property style in the same collection. NOTE: Array properties cannot reference remote geometry elements. This property element either references a geometric aggregate via the XLink-attributes or contains the "multi geometry" element. multiGeometryProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for _GeometricAggregate. A property that has a geometric aggregate as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A MultiPoint is defined by one or more Points, referenced through pointMember elements. The members of the geometric aggregate can be specified either using the "standard" property or the array property style. It is also valid to use both the "standard" and the array property style in the same collection. NOTE: Array properties cannot reference remote geometry elements. This property element either references a point aggregate via the XLink-attributes or contains the "multi point" element. multiPointProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for MultiPoint. A property that has a collection of points as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A MultiCurve is defined by one or more Curves, referenced through curveMember elements. The members of the geometric aggregate can be specified either using the "standard" property or the array property style. It is also valid to use both the "standard" and the array property style in the same collection. NOTE: Array properties cannot reference remote geometry elements. This property element either references a curve aggregate via the XLink-attributes or contains the "multi curve" element. multiCurveProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for MultiCurve. A property that has a collection of curves as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A MultiSurface is defined by one or more Surfaces, referenced through surfaceMember elements. The members of the geometric aggregate can be specified either using the "standard" property or the array property style. It is also valid to use both the "standard" and the array property style in the same collection. NOTE: Array properties cannot reference remote geometry elements. This property element either references a surface aggregate via the XLink-attributes or contains the "multi surface" element. multiSurfaceProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for MultiSurface. A property that has a collection of surfaces as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A MultiSolid is defined by one or more Solids, referenced through solidMember elements. The members of the geometric aggregate can be specified either using the "standard" property or the array property style. It is also valid to use both the "standard" and the array property style in the same collection. NOTE: Array properties cannot reference remote geometry elements. This property element either references a solid aggregate via the XLink-attributes or contains the "multi solid" element. multiSolidProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for MultiSolid. A property that has a collection of solids as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. Deprecated with GML 3.0 and included for backwards compatibility with GML 2. Use the "MultiSurface" element instead. Deprecated with GML 3.0 and included for backwards compatibility with GML 2. Use the "MultiCurve" element instead. A MultiLineString is defined by one or more LineStrings, referenced through lineStringMember elements. Deprecated with GML version 3.0. Use MultiCurveType instead. This type is deprecated with GML 3 and shall not be used. It is included for backwards compatibility with GML 2. Use MultiCurvePropertyType instead. A property that has a collection of line strings as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A MultiPolygon is defined by one or more Polygons, referenced through polygonMember elements. Deprecated with GML version 3.0. Use MultiSurfaceType instead. This type is deprecated with GML 3 and shall not be used. It is included for backwards compatibility with GML 2. Use MultiSurfacePropertyType instead. A property that has a collection of polygons as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. This property element either references a geometry element via the XLink-attributes or contains the geometry element. This property element contains a list of geometry elements. The order of the elements is significant and shall be preserved when processing the array. This property element either references a Point via the XLink-attributes or contains the Point element. This property element contains a list of points. The order of the elements is significant and shall be preserved when processing the array. This property element contains a list of curves. The order of the elements is significant and shall be preserved when processing the array. This property element either references a surface via the XLink-attributes or contains the surface element. A surface element is any element which is substitutable for "_Surface". This property element contains a list of surfaces. The order of the elements is significant and shall be preserved when processing the array. This property element either references a solid via the XLink-attributes or contains the solid element. A solid element is any element which is substitutable for "_Solid". This property element contains a list of solids. The order of the elements is significant and shall be preserved when processing the array. deprecated Deprecated with GML 3.0 and included only for backwards compatibility with GML 2.0. Use "curveMember" instead. This property element either references a line string via the XLink-attributes or contains the line string element. deprecated Deprecated with GML 3.0 and included only for backwards compatibility with GML 2.0. Use "curveMember" instead. This property element either references a line string via the XLink-attributes or contains the line string element. deprecated Deprecated with GML 3.0 and included only for backwards compatibility with GML 2.0. Use "surfaceMember" instead. This property element either references a polygon via the XLink-attributes or contains the polygon element. tinyows-1.2.2/schema/gml/3.1.1/base/geometryBasic0d1d.xsd000066400000000000000000001004131465244332600226170ustar00rootroot00000000000000 geometryBasic0d1d.xsd Schematron validation The presence of a dimension attribute implies the presence of the srsName attribute. The presence of an axisLabels attribute implies the presence of the srsName attribute. The presence of an uomLabels attribute implies the presence of the srsName attribute. The presence of an uomLabels attribute implies the presence of the axisLabels attribute and vice versa. The presence of a count attribute implies the presence of the dimension attribute. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . This includes not only measures.xsd, but also units.xsd, gmlBase.xsd and basicTypes.xsd. The "_Geometry" element is the abstract head of the substituition group for all geometry elements of GML 3. This includes pre-defined and user-defined geometry elements. Any geometry element must be a direct or indirect extension/restriction of AbstractGeometryType and must be directly or indirectly in the substitution group of "_Geometry". A geometric property can either be any geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Note that either the reference or the contained element must be given, but not both or none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A container for an array of geometry elements. The elements are always contained in the array property, referencing geometry elements or arrays of geometry elements is not supported. All geometry elements are derived directly or indirectly from this abstract supertype. A geometry element may have an identifying attribute ("gml:id"), a name (attribute "name") and a description (attribute "description"). It may be associated with a spatial reference system (attribute "srsName"). The following rules shall be adhered: - Every geometry type shall derive from this abstract type. - Every geometry element (i.e. an element of a geometry type) shall be directly or indirectly in the substitution group of _Geometry. This attribute is included for backward compatibility with GML 2 and is deprecated with GML 3. This identifer is superceded by "gml:id" inherited from AbstractGMLType. The attribute "gid" should not be used anymore and may be deleted in future versions of GML without further notice. Optional reference to the CRS used by this geometry, with optional additional information to simplify use when a more complete definition of the CRS is not needed. In general this reference points to a CRS instance of gml:CoordinateReferenceSystemType (see coordinateReferenceSystems.xsd). For well known references it is not required that the CRS description exists at the location the URI points to. If no srsName attribute is given, the CRS must be specified as part of the larger context this geometry element is part of, e.g. a geometric element like point, curve, etc. It is expected that this attribute will be specified at the direct position level only in rare cases. The "srsDimension" is the length of coordinate sequence (the number of entries in the list). This dimension is specified by the coordinate reference system. When the srsName attribute is omitted, this attribute shall be omitted. Optional additional and redundant information for a CRS to simplify use when a more complete definition of the CRS is not needed. This information shall be the same as included in the more complete definition of the CRS, referenced by the srsName attribute. When the srsName attribute is included, either both or neither of the axisLabels and uomLabels attributes shall be included. When the srsName attribute is omitted, both of these attributes shall be omitted. Ordered list of labels for all the axes of this CRS. The gml:axisAbbrev value should be used for these axis labels, after spaces and forbiddden characters are removed. When the srsName attribute is included, this attribute is optional. When the srsName attribute is omitted, this attribute shall also be omitted. Ordered list of unit of measure (uom) labels for all the axes of this CRS. The value of the string in the gml:catalogSymbol should be used for this uom labels, after spaces and forbiddden characters are removed. When the axisLabels attribute is included, this attribute shall also be included. When the axisLabels attribute is omitted, this attribute shall also be omitted. The "_GeometricPrimitive" element is the abstract head of the substituition group for all (pre- and user-defined) geometric primitives. This is the abstract root type of the geometric primitives. A geometric primitive is a geometric object that is not decomposed further into other primitives in the system. All primitives are oriented in the direction implied by the sequence of their coordinate tuples. A property that has a geometric primitive as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A Point is defined by a single coordinate tuple. GML supports two different ways to specify the direct poisiton of a point. 1. The "pos" element is of type DirectPositionType. Deprecated with GML version 3.1.0 for coordinates with ordinate values that are numbers. Use "pos" instead. The "coordinates" element shall only be used for coordinates with ordinates that require a string representation, e.g. DMS representations. Deprecated with GML version 3.0. Use "pos" instead. The "coord" element is included for backwards compatibility with GML 2. This property element either references a point via the XLink-attributes or contains the point element. pointProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for Point. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. A property that has a point as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A container for an array of points. The elements are always contained in the array property, referencing geometry elements or arrays of geometry elements is not supported. The "_Curve" element is the abstract head of the substituition group for all (continuous) curve elements. An abstraction of a curve to support the different levels of complexity. The curve can always be viewed as a geometric primitive, i.e. is continuous. This property element either references a curve via the XLink-attributes or contains the curve element. curveProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for _Curve. A property that has a curve as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A container for an array of curves. The elements are always contained in the array property, referencing geometry elements or arrays of geometry elements is not supported. A LineString is a special curve that consists of a single segment with linear interpolation. It is defined by two or more coordinate tuples, with linear interpolation between them. It is backwards compatible with the LineString of GML 2, GM_LineString of ISO 19107 is implemented by LineStringSegment. GML supports two different ways to specify the control points of a line string. 1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve (reuse of existing points). 2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve only. The number of direct positions in the list must be at least two. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.0. Use "pos" instead. The "coord" element is included for backwards compatibility with GML 2. Deprecated with GML version 3.1.0. Use "posList" instead. DirectPosition instances hold the coordinates for a position within some coordinate reference system (CRS). Since DirectPositions, as data types, will often be included in larger objects (such as geometry elements) that have references to CRS, the "srsName" attribute will in general be missing, if this particular DirectPosition is included in a larger element with such a reference to a CRS. In this case, the CRS is implicitly assumed to take on the value of the containing object's CRS. DirectPositionList instances hold the coordinates for a sequence of direct positions within the same coordinate reference system (CRS). "count" allows to specify the number of direct positions in the list. If the attribute count is present then the attribute srsDimension shall be present, too. Vector instances hold the compoents for a (usually spatial) vector within some coordinate reference system (CRS). Since Vectors will often be included in larger objects that have references to CRS, the "srsName" attribute may be missing. In this case, the CRS is implicitly assumed to take on the value of the containing object's CRS. Note that this content model is the same as DirectPositionType, but is defined separately to reflect the distinct semantics, and to avoid validation problems. SJDC 2004-12-02 A geometric position represented either by a DirectPosition or a Point. A list of geometric positions represented either by a DirectPosition or a Point. Deprecated with GML version 3.1.0. Envelope defines an extent using a pair of positions defining opposite corners in arbitrary dimensions. The first direct position is the "lower corner" (a coordinate position consisting of all the minimal ordinates for each dimension for all points within the envelope), the second one the "upper corner" (a coordinate position consisting of all the maximal ordinates for each dimension for all points within the envelope). deprecated deprecated with GML version 3.0 deprecated Deprecated with GML version 3.1. Use the explicit properties "lowerCorner" and "upperCorner" instead. Deprecated with GML version 3.1.0. Use the explicit properties "lowerCorner" and "upperCorner" instead. Deprecated with GML 3.0 and included for backwards compatibility with GML 2. Use the "pos" element instead. Represents a coordinate tuple in one, two, or three dimensions. Deprecated with GML 3.0 and replaced by DirectPositionType. Deprecated with GML 3.0 and included only for backwards compatibility with GML 2.0. Use "curveProperty" instead. This property element either references a line string via the XLink-attributes or contains the line string element. This type is deprecated with GML 3 and shall not be used. It is included for backwards compatibility with GML 2. Use CurvePropertyType instead. A property that has a line string as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. tinyows-1.2.2/schema/gml/3.1.1/base/geometryBasic2d.xsd000066400000000000000000000312431465244332600224000ustar00rootroot00000000000000 geometryBasic2d.xsd GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . The "_Surface" element is the abstract head of the substituition group for all (continuous) surface elements. An abstraction of a surface to support the different levels of complexity. A surface is always a continuous region of a plane. This property element either references a surface via the XLink-attributes or contains the surface element. surfaceProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for _Surface. A property that has a surface as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A container for an array of surfaces. The elements are always contained in the array property, referencing geometry elements or arrays of geometry elements is not supported. A Polygon is a special surface that is defined by a single surface patch. The boundary of this patch is coplanar and the polygon uses planar interpolation in its interior. It is backwards compatible with the Polygon of GML 2, GM_Polygon of ISO 19107 is implemented by PolygonPatch. The "_Ring" element is the abstract head of the substituition group for all closed boundaries of a surface patch. An abstraction of a ring to support surface boundaries of different complexity. A boundary of a surface consists of a number of rings. In the normal 2D case, one of these rings is distinguished as being the exterior boundary. In a general manifold this is not always possible, in which case all boundaries shall be listed as interior boundaries, and the exterior will be empty. A boundary of a surface consists of a number of rings. The "interior" rings seperate the surface / surface patch from the area enclosed by the rings. Deprecated with GML 3.0, included only for backwards compatibility with GML 2. Use "exterior" instead. Deprecated with GML 3.0, included only for backwards compatibility with GML 2. Use "interior" instead. Encapsulates a ring to represent the surface boundary property of a surface. A LinearRing is defined by four or more coordinate tuples, with linear interpolation between them; the first and last coordinates must be coincident. GML supports two different ways to specify the control points of a linear ring. 1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this ring, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this ring (reuse of existing points). 2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this ring only. The number of direct positions in the list must be at least four. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.1.0. Use "posList" instead. Deprecated with GML version 3.0 and included for backwards compatibility with GML 2. Use "pos" elements instead. Encapsulates a ring to represent properties in features or geometry collections. Deprecated with GML 3.0 and included only for backwards compatibility with GML 2.0. Use "surfaceProperty" instead. This property element either references a polygon via the XLink-attributes or contains the polygon element. This type is deprecated with GML 3 and shall not be used. It is included for backwards compatibility with GML 2. Use SurfacePropertyType instead. A property that has a polygon as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. tinyows-1.2.2/schema/gml/3.1.1/base/geometryComplexes.xsd000066400000000000000000000175241465244332600230760ustar00rootroot00000000000000 geometryComplexes.xsd GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . A CompositeCurve is defined by a sequence of (orientable) curves such that the each curve in the sequence terminates at the start point of the subsequent curve in the list. This element references or contains one curve in the composite curve. The curves are contiguous, the collection of curves is ordered. NOTE: This definition allows for a nested structure, i.e. a CompositeCurve may use, for example, another CompositeCurve as a curve member. A CompositeSurface is defined by a set of orientable surfaces. A composite surface is geometry type with all the geometric properties of a (primitive) surface. Essentially, a composite surface is a collection of surfaces that join in pairs on common boundary curves and which, when considered as a whole, form a single surface. This element references or contains one surface in the composite surface. The surfaces are contiguous. NOTE: This definition allows for a nested structure, i.e. a CompositeSurface may use, for example, another CompositeSurface as a member. A composite solid is a geometry type with all the geometric properties of a (primitive) solid. Essentially, a composite solid is a collection of solids that join in pairs on common boundary surfaces and which, when considered as a whole, form a single solid. This element references or contains one solid in the composite solid. The solids are contiguous. NOTE: This definition allows for a nested structure, i.e. a CompositeSolid may use, for example, another CompositeSolid as a member. A geometric complex. A property that has a geometric complex as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. NOTE: The allowed geometry elements contained in such a property (or referenced by it) have to be modelled by an XML Schema choice element since the composites inherit both from geometric complex *and* geometric primitive and are already part of the _GeometricPrimitive substitution group. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. tinyows-1.2.2/schema/gml/3.1.1/base/geometryPrimitives.xsd000066400000000000000000002570271465244332600232760ustar00rootroot00000000000000 geometryPrimitives.xsd GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Curve is a 1-dimensional primitive. Curves are continuous, connected, and have a measurable length in terms of the coordinate system. A curve is composed of one or more curve segments. Each curve segment within a curve may be defined using a different interpolation method. The curve segments are connected to one another, with the end point of each segment except the last being the start point of the next segment in the segment list. The orientation of the curve is positive. This element encapsulates the segments of the curve. This property element either references a curve via the XLink-attributes or contains the curve element. A curve element is any element which is substitutable for "_Curve". OrientableCurve consists of a curve and an orientation. If the orientation is "+", then the OrientableCurve is identical to the baseCurve. If the orientation is "-", then the OrientableCurve is related to another _Curve with a parameterization that reverses the sense of the curve traversal. References or contains the base curve (positive orientation). NOTE: This definition allows for a nested structure, i.e. an OrientableCurve may use another OrientableCurve as its base curve. If the orientation is "+", then the OrientableCurve is identical to the baseCurve. If the orientation is "-", then the OrientableCurve is related to another _Curve with a parameterization that reverses the sense of the curve traversal. "+" is the default value. The "_CurveSegment" element is the abstract head of the substituition group for all curve segment elements, i.e. continuous segments of the same interpolation mechanism. Curve segment defines a homogeneous segment of a curve. The attribute "numDerivativesAtStart" specifies the type of continuity between this curve segment and its predecessor. If this is the first curve segment in the curve, one of these values, as appropriate, is ignored. The default value of "0" means simple continuity, which is a mandatory minimum level of continuity. This level is referred to as "C 0 " in mathematical texts. A value of 1 means that the function and its first derivative are continuous at the appropriate end point: "C 1 " continuity. A value of "n" for any integer means the function and its first n derivatives are continuous: "C n " continuity. NOTE: Use of these values is only appropriate when the basic curve definition is an underdetermined system. For example, line string segments cannot support continuity above C 0 , since there is no spare control parameter to adjust the incoming angle at the end points of the segment. Spline functions on the other hand often have extra degrees of freedom on end segments that allow them to adjust the values of the derivatives to support C 1 or higher continuity. The attribute "numDerivativesAtEnd" specifies the type of continuity between this curve segment and its successor. If this is the last curve segment in the curve, one of these values, as appropriate, is ignored. The default value of "0" means simple continuity, which is a mandatory minimum level of continuity. This level is referred to as "C 0 " in mathematical texts. A value of 1 means that the function and its first derivative are continuous at the appropriate end point: "C 1 " continuity. A value of "n" for any integer means the function and its first n derivatives are continuous: "C n " continuity. NOTE: Use of these values is only appropriate when the basic curve definition is an underdetermined system. For example, line string segments cannot support continuity above C 0 , since there is no spare control parameter to adjust the incoming angle at the end points of the segment. Spline functions on the other hand often have extra degrees of freedom on end segments that allow them to adjust the values of the derivatives to support C 1 or higher continuity. The attribute "numDerivativesInterior" specifies the type of continuity that is guaranteed interior to the curve. The default value of "0" means simple continuity, which is a mandatory minimum level of continuity. This level is referred to as "C 0 " in mathematical texts. A value of 1 means that the function and its first derivative are continuous at the appropriate end point: "C 1 " continuity. A value of "n" for any integer means the function and its first n derivatives are continuous: "C n " continuity. NOTE: Use of these values is only appropriate when the basic curve definition is an underdetermined system. For example, line string segments cannot support continuity above C 0 , since there is no spare control parameter to adjust the incoming angle at the end points of the segment. Spline functions on the other hand often have extra degrees of freedom on end segments that allow them to adjust the values of the derivatives to support C 1 or higher continuity. This property element contains a list of curve segments. The order of the elements is significant and shall be preserved when processing the array. A container for an array of curve segments. A LineStringSegment is a curve segment that is defined by two or more coordinate tuples, with linear interpolation between them. Note: LineStringSegment implements GM_LineString of ISO 19107. GML supports two different ways to specify the control points of a curve segment. 1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points). 2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be at least two. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.1.0. Use "posList" instead. The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism uses the control points and control parameters to determine the position of this curve segment. For a LineStringSegment the interpolation is fixed as "linear". An ArcString is a curve segment that uses three-point circular arc interpolation. GML supports two different ways to specify the control points of a curve segment. 1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points). 2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be at least three. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.1.0. Use "posList" instead. The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism uses the control points and control parameters to determine the position of this curve segment. For an ArcString the interpolation is fixed as "circularArc3Points". The number of arcs in the arc string can be explicitly stated in this attribute. The number of control points in the arc string must be 2 * numArc + 1. An Arc is an arc string with only one arc unit, i.e. three control points. GML supports two different ways to specify the control points of a curve segment. 1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points). 2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be three. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.1.0. Use "posList" instead. An arc is an arc string consiting of a single arc, the attribute is fixed to "1". A Circle is an arc whose ends coincide to form a simple closed loop. The "start" and "end" bearing are equal and shall be the bearing for the first controlPoint listed. The three control points must be distinct non-co-linear points for the Circle to be unambiguously defined. The arc is simply extended past the third control point until the first control point is encountered. This variant of the arc computes the mid points of the arcs instead of storing the coordinates directly. The control point sequence consists of the start and end points of each arc plus the bulge. GML supports two different ways to specify the control points of a curve segment. 1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points). 2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be at least two. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.1.0. Use "posList" instead. The bulge controls the offset of each arc's midpoint. The "bulge" is the real number multiplier for the normal that determines the offset direction of the midpoint of each arc. The length of the bulge sequence is exactly 1 less than the length of the control point array, since a bulge is needed for each pair of adjacent points in the control point array. The bulge is not given by a distance, since it is simply a multiplier for the normal. The midpoint of the resulting arc is given by: midPoint = ((startPoint + endPoint)/2.0) + bulge*normal The attribute "normal" is a vector normal (perpendicular) to the chord of the arc, the line joining the first and last point of the arc. In a 2D coordinate system, there are only two possible directions for the normal, and it is often given as a signed real, indicating its length, with a positive sign indicating a left turn angle from the chord line, and a negative sign indicating a right turn from the chord. In 3D, the normal determines the plane of the arc, along with the start and endPoint of the arc. The normal is usually a unit vector, but this is not absolutely necessary. If the normal is a zero vector, the geometric object becomes equivalent to the straight line between the two end points. The length of the normal sequence is exactly the same as for the bulge sequence, 1 less than the control point sequence length. The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism uses the control points and control parameters to determine the position of this curve segment. For an ArcStringByBulge the interpolation is fixed as "circularArc2PointWithBulge". The number of arcs in the arc string can be explicitly stated in this attribute. The number of control points in the arc string must be numArc + 1. An ArcByBulge is an arc string with only one arc unit, i.e. two control points and one bulge. GML supports two different ways to specify the control points of a curve segment. 1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points). 2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be two. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.1.0. Use "posList" instead. The bulge controls the offset of each arc's midpoint. The "bulge" is the real number multiplier for the normal that determines the offset direction of the midpoint of each arc. The length of the bulge sequence is exactly 1 less than the length of the control point array, since a bulge is needed for each pair of adjacent points in the control point array. The bulge is not given by a distance, since it is simply a multiplier for the normal. The midpoint of the resulting arc is given by: midPoint = ((startPoint + endPoint)/2.0) + bulge*normal The attribute "normal" is a vector normal (perpendicular) to the chord of the arc, the line joining the first and last point of the arc. In a 2D coordinate system, there are only two possible directions for the normal, and it is often given as a signed real, indicating its length, with a positive sign indicating a left turn angle from the chord line, and a negative sign indicating a right turn from the chord. In 3D, the normal determines the plane of the arc, along with the start and endPoint of the arc. The normal is usually a unit vector, but this is not absolutely necessary. If the normal is a zero vector, the geometric object becomes equivalent to the straight line between the two end points. The length of the normal sequence is exactly the same as for the bulge sequence, 1 less than the control point sequence length. An arc is an arc string consiting of a single arc, the attribute is fixed to "1". This variant of the arc requires that the points on the arc have to be computed instead of storing the coordinates directly. The control point is the center point of the arc plus the radius and the bearing at start and end. This represenation can be used only in 2D. GML supports two different ways to specify the control points of a curve segment. 1. A "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) element. The "pos" element contains a center point that is only part of this curve segment, a "pointProperty" element contains a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points). 2. The "posList" element can be used to specifiy the coordinates of the center point, too. The number of direct positions in the list must be one. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.1.0. Use "posList" instead. The radius of the arc. The bearing of the arc at the start. The bearing of the arc at the end. The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism uses the control points and control parameters to determine the position of this curve segment. For an ArcByCenterPoint the interpolation is fixed as "circularArcCenterPointWithRadius". Since this type describes always a single arc, the attribute is fixed to "1". A CircleByCenterPoint is an ArcByCenterPoint with identical start and end angle to form a full circle. Again, this represenation can be used only in 2D. An offset curve is a curve at a constant distance from the basis curve. They can be useful as a cheap and simple alternative to constructing curves that are offsets by definition. offsetBase is a reference to thecurve from which this curve is define as an offset. distance is the distance at which the offset curve is generated from the basis curve. In 2D systems, positive distances are to be to the left of the basis curve, and the negative distances are to be to the right of the basis curve. refDistance is used to define the vector direction of the offset curve from the basis curve. It can be omitted in the 2D case, where the distance can be positive or negative. In that case, distance defines left side (positive distance) or right side (negative distance) with respect to the tangent to the basis curve. In 3D the basis curve shall have a well defined tangent direction for every point. The offset curve at any point in 3D, the basis curve shall have a well-defined tangent direction for every point. The offset curve at any point (parameter) on the basis curve c is in the direction - - - - s = v x t where v = c.refDirection() and - t = c.tangent() - For the offset direction to be well-defined, v shall not on any point of the curve be in the same, or opposite, direction as - t. The default value of the refDirection shall be the local co-ordinate axis vector for elevation, which indicates up for the curve in a geographic sense. NOTE! If the refDirection is the positive tangent to the local elevation axis ("points upward"), then the offset vector points to the left of the curve when viewed from above. A placement takes a standard geometric construction and places it in geographic space. It defines a transformation from a constructive parameter space to the co-ordinate space of the co-ordinate reference system being used. Parameter spaces in formulae in this International Standard are given as (u, v) in 2D and(u, v, w) in 3D. Co-ordinate reference systems positions are given in formulae, in this International Standard, by either (x, y) in 2D, or (x, y, z) in 3D. Affine placements are defined by linear transformations from parameter space to the target co-ordiante space. 2-dimensional Cartesian parameter space,(u,v) transforms into 3-dimensional co- ordinate reference systems,(x,y,z) by using an affine transformation,(u,v)->(x,y,z) which is defined : x ux vx x0 u y = uy vy + y0 v x uz vz z0 Then, given this equation, the location element of the AffinePlacement is the direct position (x0, y0, z0), which is the target position of the origin in (u, v). The two reference directions (ux, uy, uz) and (vx, vy, vz) are the target directions of the unit vectors at the origin in (u, v). The location property gives the target of the parameter space origin. This is the vector (x0, y0, z0) in the formulae above. The attribute refDirection gives the target directions for the co-ordinate basis vectors of the parameter space. These are the columns of the matrix in the formulae given above. The number of directions given shall be inDimension. The dimension of the directions shall be outDimension. Dimension of the constructive parameter space. Dimension of the co-ordinate space. A clothoid, or Cornu's spiral, is plane curve whose curvature is a fixed function of its length. In suitably chosen co-ordinates it is given by Fresnel's integrals. x(t) = 0-integral-t cos(AT*T/2)dT y(t) = 0-integral-t sin(AT*T/2)dT This geometry is mainly used as a transition curve between curves of type straight line to circular arc or circular arc to circular arc. With this curve type it is possible to achieve a C2-continous transition between the above mentioned curve types. One formula for the Clothoid is A*A = R*t where A is constant, R is the varying radius of curvature along the the curve and t is the length along and given in the Fresnel integrals. The "refLocation" is an affine mapping that places the curve defined by the Fresnel Integrals into the co-ordinate reference system of this object. The element gives the value for the constant in the Fresnel's integrals. The startParameter is the arc length distance from the inflection point that will be the start point for this curve segment. This shall be lower limit used in the Fresnel integral and is the value of the constructive parameter of this curve segment at its start point. The startParameter can either be positive or negative. NOTE! If 0.0 (zero), lies between the startParameter and the endParameter of the clothoid, then the curve goes through the clothoid's inflection point, and the direction of its radius of curvature, given by the second derivative vector, changes sides with respect to the tangent vector. The term length distance for the The endParameter is the arc length distance from the inflection point that will be the end point for this curve segment. This shall be upper limit used in the Fresnel integral and is the value of the constructive parameter of this curve segment at its start point. The startParameter can either be positive or negative. A GeodesicString consists of sequence of geodesic segments. The type essentially combines a sequence of Geodesic into a single object. The GeodesicString is computed from two or more positions and an interpolation using geodesics defined from the geoid (or ellipsoid) of the co-ordinate reference system being used. The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism uses the control points and control parameters to determine the position of this curve segment. For an GeodesicString the interpolation is fixed as "geodesic". A Geodesic consists of two distinct positions joined by a geodesic curve. The control points of a Geodesic shall lie on the geodesic between its start point and end points. Between these two points, a geodesic curve defined from ellipsoid or geoid model used by the co-ordinate reference systems may be used to interpolate other positions. Any other point in the controlPoint array must fall on this geodesic. Cubic splines are similar to line strings in that they are a sequence of segments each with its own defining function. A cubic spline uses the control points and a set of derivative parameters to define a piecewise 3rd degree polynomial interpolation. Unlike line-strings, the parameterization by arc length is not necessarily still a polynomial. The function describing the curve must be C2, that is, have a continuous 1st and 2nd derivative at all points, and pass through the controlPoints in the order given. Between the control points, the curve segment is defined by a cubic polynomial. At each control point, the polynomial changes in such a manner that the 1st and 2nd derivative vectors are the same from either side. The control parameters record must contain vectorAtStart, and vectorAtEnd which are the unit tangent vectors at controlPoint[1] and controlPoint[n] where n = controlPoint.count. Note: only the direction of the vectors is relevant, not their length. GML supports two different ways to specify the control points of a curve segment. 1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points). 2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. The number of direct positions in the list must be at least three. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.1.0. Use "posList" instead. "vectorAtStart" is the unit tangent vector at the start point of the spline. "vectorAtEnd" is the unit tangent vector at the end point of the spline. The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism uses the control points and control parameters to determine the position of this curve segment. For a CubicSpline the interpolation is fixed as "cubicSpline". The degree for a cubic spline is "3". A knot is a breakpoint on a piecewise spline curve. The property "value" is the value of the parameter at the knot of the spline. The sequence of knots shall be a non-decreasing sequence. That is, each knot's value in the sequence shall be equal to or greater than the previous knot's value. The use of equal consecutive knots is normally handled using the multiplicity. The property "multiplicity" is the multiplicity of this knot used in the definition of the spline (with the same weight). The property "weight" is the value of the averaging weight used for this knot of the spline. Encapsulates a knot to use it in a geometric type. A B-Spline is a piecewise parametric polynomial or rational curve described in terms of control points and basis functions. Knots are breakpoints on the curve that connect its pieces. They are given as a non-decreasing sequence of real numbers. If the weights in the knots are equal then it is a polynomial spline. The degree is the algebraic degree of the basis functions. GML supports two different ways to specify the control points of a curve segment. 1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points). 2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.1.0. Use "posList" instead. The attribute "degree" shall be the degree of the polynomial used for interpolation in this spline. The property "knot" shall be the sequence of distinct knots used to define the spline basis functions. The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism uses the control points and control parameters to determine the position of this curve segment. For a BSpline the interpolation can be either "polynomialSpline" or "rationalSpline", default is "polynomialSpline". The attribute isPolynomial is set to true if this is a polynomial spline. The attribute "knotType" gives the type of knot distribution used in defining this spline. This is for information only and is set according to the different construction-functions. Bezier curves are polynomial splines that use Bezier or Bernstein polynomials for interpolation purposes. It is a special case of the B-Spline curve with two knots. GML supports two different ways to specify the control points of a curve segment. 1. A sequence of "pos" (DirectPositionType) or "pointProperty" (PointPropertyType) elements. "pos" elements are control points that are only part of this curve segment, "pointProperty" elements contain a point that may be referenced from other geometry elements or reference another point defined outside of this curve segment (reuse of existing points). 2. The "posList" element allows for a compact way to specifiy the coordinates of the control points, if all control points are in the same coordinate reference systems and belong to this curve segment only. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0. Deprecated with GML version 3.1.0. Use "posList" instead. The attribute "degree" shall be the degree of the polynomial used for interpolation in this spline. The property "knot" shall be the sequence of distinct knots used to define the spline basis functions. The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism uses the control points and control parameters to determine the position of this curve segment. For a Bezier the interpolation is fixed as "polynomialSpline". The attribute isPolynomial is set to true as this is a polynomial spline. The property "knotType" is not relevant for Bezier curve segments. A Surface is a 2-dimensional primitive and is composed of one or more surface patches. The surface patches are connected to one another. The orientation of the surface is positive ("up"). The orientation of a surface chooses an "up" direction through the choice of the upward normal, which, if the surface is not a cycle, is the side of the surface from which the exterior boundary appears counterclockwise. Reversal of the surface orientation reverses the curve orientation of each boundary component, and interchanges the conceptual "up" and "down" direction of the surface. If the surface is the boundary of a solid, the "up" direction is usually outward. For closed surfaces, which have no boundary, the up direction is that of the surface patches, which must be consistent with one another. Its included surface patches describe the interior structure of the Surface. This element encapsulates the patches of the surface. This property element either references a surface via the XLink-attributes or contains the surface element. A surface element is any element which is substitutable for "_Surface". OrientableSurface consists of a surface and an orientation. If the orientation is "+", then the OrientableSurface is identical to the baseSurface. If the orientation is "-", then the OrientableSurface is a reference to a Surface with an up-normal that reverses the direction for this OrientableSurface, the sense of "the top of the surface". References or contains the base surface (positive orientation). If the orientation is "+", then the OrientableSurface is identical to the baseSurface. If the orientation is "-", then the OrientableSurface is a reference to a Surface with an up-normal that reverses the direction for this OrientableSurface, the sense of "the top of the surface". "+" is the default value. The "_SurfacePatch" element is the abstract head of the substituition group for all surface pach elements describing a continuous portion of a surface. A surface patch defines a homogenuous portion of a surface. This property element contains a list of surface patches. The order of the elements is significant and shall be preserved when processing the array. A container for an array of surface patches. A PolygonPatch is a surface patch that is defined by a set of boundary curves and an underlying surface to which these curves adhere. The curves are coplanar and the polygon uses planar interpolation in its interior. Implements GM_Polygon of ISO 19107. The attribute "interpolation" specifies the interpolation mechanism used for this surface patch. Currently only planar surface patches are defined in GML 3, the attribute is fixed to "planar", i.e. the interpolation method shall return points on a single plane. The boundary of the patch shall be contained within that plane. Represents a triangle as a surface with an outer boundary consisting of a linear ring. Note that this is a polygon (subtype) with no inner boundaries. The number of points in the linear ring must be four. Constraint: The Ring shall be a LinearRing and must form a triangle, the first and the last position must be co-incident. The attribute "interpolation" specifies the interpolation mechanism used for this surface patch. Currently only planar surface patches are defined in GML 3, the attribute is fixed to "planar", i.e. the interpolation method shall return points on a single plane. The boundary of the patch shall be contained within that plane. Represents a rectangle as a surface with an outer boundary consisting of a linear ring. Note that this is a polygon (subtype) with no inner boundaries. The number of points in the linear ring must be five. Constraint: The Ring shall be a LinearRing and must form a rectangle; the first and the last position must be co-incident. The attribute "interpolation" specifies the interpolation mechanism used for this surface patch. Currently only planar surface patches are defined in GML 3, the attribute is fixed to "planar", i.e. the interpolation method shall return points on a single plane. The boundary of the patch shall be contained within that plane. This property element either references a curve via the XLink-attributes or contains the curve element. A curve element is any element which is substitutable for "_Curve". A Ring is used to represent a single connected component of a surface boundary. It consists of a sequence of curves connected in a cycle (an object whose boundary is empty). A Ring is structurally similar to a composite curve in that the endPoint of each curve in the sequence is the startPoint of the next curve in the Sequence. Since the sequence is circular, there is no exception to this rule. Each ring, like all boundaries, is a cycle and each ring is simple. NOTE: Even though each Ring is simple, the boundary need not be simple. The easiest case of this is where one of the interior rings of a surface is tangent to its exterior ring. This element references or contains one curve in the composite curve. The curves are contiguous, the collection of curves is ordered. NOTE: This definition allows for a nested structure, i.e. a CompositeCurve may use, for example, another CompositeCurve as a curve member. Encapsulates a ring to represent properties in features or geometry collections. Reference points which are organised into sequences or grids(sequences of equal length sequences). A gridded surface is a parametric curve surface derived from a rectangular grid in the parameter space. The rows from this grid are control points for horizontal surface curves; the columns are control points for vertical surface curves. The working assumption is that for a pair of parametric co-ordinates (s, t) that the horizontal curves for each integer offset are calculated and evaluated at "s". The defines a sequence of control points: cn(s) : s 1 .....columns From this sequence a vertical curve is calculated for "s", and evaluated at "t". In most cases, the order of calculation (horizontal-vertical vs. vertical-horizontal) does not make a difference. Where it does, the horizontal- vertical order shall be the one used. Logically, any pair of curve interpolation types can lead to a subtype of GriddedSurface. The following clauses define some most commonly encountered surfaces that can be represented in this manner. This is the double indexed sequence of control points, given in row major form. NOTE! There in no assumption made about the shape of the grid. For example, the positions need not effect a "21/2D" surface, consecutive points may be equal in any or all of the ordinates. Further, the curves in either or both directions may close. The attribute rows gives the number of rows in the parameter grid. The attribute columns gives the number of columns in the parameter grid. A cone is a gridded surface given as a family of conic sections whose control points vary linearly. NOTE! A 5-point ellipse with all defining positions identical is a point. Thus, a truncated elliptical cone can be given as a 2x5 set of control points ((P1, P1, P1, P1, P1), (P2, P3, P4, P5, P6)). P1 is the apex of the cone. P2, P3,P4, P5 and P6 are any five distinct points around the base ellipse of the cone. If the horizontal curves are circles as opposed to ellipses, the a circular cone can be constructed using ((P1, P1, P1),(P2, P3, P4)). The apex most not coinside with the other plane. A cylinder is a gridded surface given as a family of circles whose positions vary along a set of parallel lines, keeping the cross sectional horizontal curves of a constant shape. NOTE! Given the same working assumptions as in the previous note, a Cylinder can be given by two circles, giving us the control points of the form ((P1, P2, P3),(P4, P5, P6)). A sphere is a gridded surface given as a family of circles whose positions vary linearly along the axis of the sphere, and whise radius varies in proportions to the cosine function of the central angle. The horizontal circles resemble lines of constant latitude, and the vertical arcs resemble lines of constant longitude. NOTE! If the control points are sorted in terms of increasing longitude, and increasing latitude, the upNormal of a sphere is the outward normal. EXAMPLE If we take a gridded set of latitudes and longitudes in degrees,(u,v) such as (-90,-180) (-90,-90) (-90,0) (-90, 90) (-90, 180) (-45,-180) (-45,-90) (-45,0) (-45, 90) (-45, 180) ( 0,-180) ( 0,-90) ( 0,0) ( 0, 90) ( 0, 180) ( 45,-180) ( 45,-90) ( 45,0) ( 45, -90) ( 45, 180) ( 90,-180) ( 90,-90) ( 90,0) ( 90, -90) ( 90, 180) And map these points to 3D using the usual equations (where R is the radius of the required sphere). z = R sin u x = (R cos u)(sin v) y = (R cos u)(cos v) We have a sphere of Radius R, centred at (0,0), as a gridded surface. Notice that the entire first row and the entire last row of the control points map to a single point in each 3D Euclidean space, North and South poles respectively, and that each horizontal curve closes back on itself forming a geometric cycle. This gives us a metrically bounded (of finite size), topologically unbounded (not having a boundary, a cycle) surface. A polyhedral surface is a surface composed of polygon surfaces connected along their common boundary curves. This differs from the surface type only in the restriction on the types of surface patches acceptable. This property encapsulates the patches of the polyhedral surface. This property element contains a list of polygon patches. The order of the patches is significant and shall be preserved when processing the list. This type defines a container for an array of polygon patches. This property element contains a list of triangle patches. The order of the patches is significant and shall be preserved when processing the list. This type defines a container for an array of triangle patches. A triangulated surface is a polyhedral surface that is composed only of triangles. There is no restriction on how the triangulation is derived. This property encapsulates the patches of the triangulated surface. A tin is a triangulated surface that uses the Delauny algorithm or a similar algorithm complemented with consideration of breaklines, stoplines, and maximum length of triangle sides. These networks satisfy the Delauny's criterion away from the modifications: Fore each triangle in the network, the circle passing through its vertices does not contain, in its interior, the vertex of any other triangle. Stoplines are lines where the local continuity or regularity of the surface is questionable. In the area of these pathologies, triangles intersecting a stopline shall be removed from the tin surface, leaving holes in the surface. If coincidence occurs on surface boundary triangles, the result shall be a change of the surface boundary. Stoplines contains all these pathological segments as a set of line strings. Breaklines are lines of a critical nature to the shape of the surface, representing local ridges, or depressions (such as drainage lines) in the surface. As such their constituent segments must be included in the tin eve if doing so violates the Delauny criterion. Break lines contains these critical segments as a set of line strings. Areas of the surface where data is not sufficiently dense to assure reasonable calculation shall be removed by adding a retention criterion for triangles based on the length of their sides. For many triangle sides exceeding maximum length, the adjacent triangles to that triangle side shall be removed from the surface. The corners of the triangles in the TIN are often referred to as pots. ControlPoint shall contain a set of the GM_Position used as posts for this TIN. Since each TIN contains triangles, there must be at least 3 posts. The order in which these points are given does not affect the surface that is represented. Application schemas may add information based on ordering of control points to facilitate the reconstruction of the TIN from the control points. The "_Solid" element is the abstract head of the substituition group for all (continuous) solid elements. An abstraction of a solid to support the different levels of complexity. A solid is always contiguous. This property element either references a solid via the XLink-attributes or contains the solid element. solidProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for _Solid. A property that has a solid as its value domain can either be an appropriate geometry element encapsulated in an element of this type or an XLink reference to a remote geometry element (where remote includes geometry elements located elsewhere in the same document). Either the reference or the contained element must be given, but neither both nor none. This attribute group includes the XLink attributes (see xlinks.xsd). XLink is used in GML to reference remote resources (including those elsewhere in the same document). A simple link element can be constructed by including a specific set of XLink attributes. The XML Linking Language (XLink) is currently a Proposed Recommendation of the World Wide Web Consortium. XLink allows elements to be inserted into XML documents so as to create sophisticated links between resources; such links can be used to reference remote properties. A simple link element can be used to implement pointer functionality, and this functionality has been built into various GML 3 elements by including the gml:AssociationAttributeGroup. A container for an array of solids. The elements are always contained in the array property, referencing geometry elements or arrays of geometry elements is not supported. A solid is the basis for 3-dimensional geometry. The extent of a solid is defined by the boundary surfaces (shells). A shell is represented by a composite surface, where every shell is used to represent a single connected component of the boundary of a solid. It consists of a composite surface (a list of orientable surfaces) connected in a topological cycle (an object whose boundary is empty). Unlike a Ring, a Shell's elements have no natural sort order. Like Rings, Shells are simple. Boundaries of solids are similar to surface boundaries. In normal 3-dimensional Euclidean space, one (composite) surface is distinguished as the exterior. In the more general case, this is not always possible. Boundaries of solids are similar to surface boundaries. CurveInterpolationType is a list of codes that may be used to identify the interpolation mechanisms specified by an application schema. SurfaceInterpolationType is a list of codes that may be used to identify the interpolation mechanisms specified by an application schema. Defines allowed values for the knots` type. Uniform knots implies that all knots are of multiplicity 1 and they differ by a positive constant from the preceding knot. Knots are quasi-uniform iff they are of multiplicity (degree + 1) at the ends, of multiplicity 1 elsewhere, and they differ by a positive constant from the preceding knot. tinyows-1.2.2/schema/gml/3.1.1/base/gml.xsd000066400000000000000000000024211465244332600201300ustar00rootroot00000000000000 gml.xsd Top level GML schema GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . tinyows-1.2.2/schema/gml/3.1.1/base/gmlBase.xsd000066400000000000000000000427111465244332600207310ustar00rootroot00000000000000 Schematron validation Property element may not carry both a reference to an object and contain an object. Property element must either carry a reference to an object or contain an object. GML base schema for GML 3 Components to support the GML encoding model. The abstract Schematron rules can be used by any schema that includes gmlBase. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . This abstract element is the head of a substitutionGroup hierararchy which may contain either simpleContent or complexContent elements. It is used to assert the model position of "class" elements declared in other GML schemas. Global element which acts as the head of a substitution group that may include any element which is a GML feature, object, geometry or complex value This content model group makes it easier to construct types that derive from AbstractGMLType and its descendents "by restriction". A reference to the group saves having to enumerate the standard object properties. Multiple names may be provided. These will often be distinguished by being assigned by different authorities, as indicated by the value of the codeSpace attribute. In an instance document there will usually only be one name per authority. All complexContent GML elements are directly or indirectly derived from this abstract supertype to establish a hierarchy of GML types that may be distinguished from other XML types by their ancestry. Elements in this hierarchy may have an ID and are thus referenceable. Generic GML element to contain a heterogeneous collection of GML _Objects A non-abstract generic collection type that can be used as a document element for a collection of any GML types - Geometries, Topologies, Features ... FeatureCollections may only contain Features. GeometryCollections may only contain Geometrys. Bags are less constrained they must contain objects that are substitutable for gml:_Object. This may mix several levels, including Features, Definitions, Dictionaries, Geometries etc. The content model would ideally be member 0..* members 0..1 member 0..* for maximum flexibility in building a collection from both homogeneous and distinct components: included "member" elements each contain a single Object an included "members" element contains a set of Objects However, this is non-deterministic, thus prohibited by XSD. Generic GML element to contain a homogeneous array of GML _Objects A non-abstract generic collection type that can be used as a document element for a homogeneous collection of any GML types - Geometries, Topologies, Features ... Abstract element which acts as the head of a substitution group for packages of MetaData properties. An abstract base type for complex metadata types. Concrete element in the _MetaData substitution group, which permits any well-formed XML content. Intended to act as a container for metadata defined in external schemas, for which it is not possible to add the concrete components to the GML _MetaData substitution group directly. Deprecated with GML version 3.1.0. Deprecated with GML version 3.1.0. must carry a reference to an object or contain an object but not both A pattern or base for derived types used to specify complex types corresponding to an unspecified UML association - either composition or aggregation. Restricts the cardinality of Objects contained in the association to a maximum of one. An instance of this type can contain an element representing an Object, or serve as a pointer to a remote Object. Descendents of this type can be restricted in an application schema to * allow only specified classes as valid participants in the aggregation * allow only association by reference (i.e. empty the content model) or by value (i.e. remove the xlinks). When used for association by reference, the value of the gml:remoteSchema attribute can be used to locate a schema fragment that constrains the target instance. In many cases it is desirable to impose the constraint prohibiting the occurence of both reference and value in the same instance, as that would be ambiguous. This is accomplished by adding a directive in the annotation element of the element declaration. This directive can be in the form of normative prose, or can use a Schematron pattern to automatically constrain co-occurrence - see the declaration for _strictAssociation below. If co-occurence is not prohibited, then both a link and content may be present. If this occurs in an instance, then the rule for interpretation is that the instance found by traversing the href provides the normative value of the property, and should be used when possible. The value(s) included as content may be used if the remote instance cannot be resolved. This may be considered to be a "cached" version of the value(s). A pattern or base for derived types used to specify complex types corresponding to a UML aggregation association. An instance of this type serves as a pointer to a remote Object. A base for derived types used to specify complex types containing an array of objects, by unspecified UML association - either composition or aggregation. An instance of this type contains elements representing Objects. Ideally this type would be derived by extension of AssociationType. However, this leads to a non-deterministic content model, since both the base and the extension have minOccurs="0", and is thus prohibited in XML Schema. Contains or refers to a metadata package that contains metadata properties. Base type for complex metadata property types. Database handle for the object. It is of XML type ID, so is constrained to be unique in the XML document within which it occurs. An external identifier for the object in the form of a URI may be constructed using standard XML and XPointer methods. This is done by concatenating the URI for the document, a fragment separator, and the value of the id attribute. Reference to an XML Schema fragment that specifies the content model of the propertys value. This is in conformance with the XML Schema Section 4.14 Referencing Schemas from Elsewhere. Attribute group used to enable property elements to refer to their value remotely. It contains the simple link components from xlinks.xsd, with all members optional, and the remoteSchema attribute, which is also optional. These attributes can be attached to any element, thus allowing it to act as a pointer. The 'remoteSchema' attribute allows an element that carries link attributes to indicate that the element is declared in a remote schema rather than by the schema that constrains the current document instance. Label for the object, normally a descriptive name. An object may have several names, typically assigned by different authorities. The authority for a name is indicated by the value of its (optional) codeSpace attribute. The name may or may not be unique, as determined by the rules of the organization responsible for the codeSpace. Contains a simple text description of the object, or refers to an external description. This type is available wherever there is a need for a "text" type property. It is of string type, so the text can be included inline, but the value can also be referenced remotely via xlinks from the AssociationAttributeGroup. If the remote reference is present, then the value obtained by traversing the link should be used, and the string content of the element can be used for an annotation. tinyows-1.2.2/schema/gml/3.1.1/base/grids.xsd000066400000000000000000000074251465244332600204720ustar00rootroot00000000000000 grids.xsd Grid geometries A subset of implicit geometries Designed for use with GML Coverage schema, but maybe useful elsewhere as well. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . An unrectified grid, which is a network composed of two or more sets of equally spaced parallel lines in which the members of each set intersect the members of the other sets at right angles. Provides grid coordinate values for the diametrically opposed corners of an envelope that bounds a section of grid. The value of a single coordinate is the number of offsets from the origin of the grid in the direction of a specific axis. Should be substitutionGroup="gml:Grid" but changed in order to accomplish Xerces-J schema validation A rectified grid has an origin and vectors that define its post locations. tinyows-1.2.2/schema/gml/3.1.1/base/measures.xsd000066400000000000000000000255571465244332600212140ustar00rootroot00000000000000 Extends the units.xsd and basicTypes.xsd schemas with types for recording measures using specific types of units, especially the measures and units needed for coordinate reference systems and coordinate operations. The specific unit types encoded are length, angle, scale factor, time, area, volume, speed, and grid length. This schema allows angle values to be recorded as single numbers or in degree-minute-second format. Parts of this schema are based on Subclause 6.5.7 of ISO/CD 19103 Geographic information - Conceptual schema language, on Subclause A.5.2.2.3 of ISO/CD 19118 Geographic information - Encoding, and on Subclause 4.7 of OpenGIS Recommendation Paper OGC 02-007r4 Units of Measure Use and Definition Recommendations. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Value of a length (or distance) quantity, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a length, such as metres or feet. Value of a scale factor (or ratio) that has no physical unit. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a scale factor, such as percent, permil, or parts-per-million. Value of a time or temporal quantity, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a time value, such as seconds or weeks. Value of a length (or distance) quantity in a grid, where the grid spacing does not have any associated physical units, or does not have a constant physical spacing. This grid length will often be used in a digital image grid, where the base units are likely to be pixel spacings. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for length along the axes of a grid, such as pixel spacings or grid spacings. Value of a spatial area quantity, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for an area, such as square metres or square miles. Value of a spatial volume quantity, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a volume, such as cubic metres or cubic feet. Value of a speed, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a velocity, such as metres per second or miles per hour. Value of an angle quantity provided in either degree-minute-second format or single value format. Value of an angle quantity recorded as a single number, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for an angle, such as degrees or radians. Angle value provided in degree-minute-second or degree-minute format. Integer number of degrees, plus the angle direction. This element can be used for geographic Latitude and Longitude. For Latitude, the XML attribute direction can take the values "N" or "S", meaning North or South of the equator. For Longitude, direction can take the values "E" or "W", meaning East or West of the prime meridian. This element can also be used for other angles. In that case, the direction can take the values "+" or "-" (of SignType), in the specified rotational direction from a specified reference direction. Integer number of degrees in a degree-minute-second or degree-minute angular value, without indication of direction. Decimal number of arc-minutes in a degree-minute angular value. Integer number of arc-minutes in a degree-minute-second angular value. Number of arc-seconds in a degree-minute-second angular value. tinyows-1.2.2/schema/gml/3.1.1/base/observation.xsd000066400000000000000000000105171465244332600217110ustar00rootroot00000000000000 observation.xsd Observation schema for GML 3.1 GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . This element contains or points to a description of a sensor, instrument or procedure used for the observation This element contains or points to the specimen, region or station which is the object of the observation Synonym for target - common word used for photographs Container for an object representing the target or subject of an observation. The result of the observation: an image, external object, etc tinyows-1.2.2/schema/gml/3.1.1/base/referenceSystems.xsd000066400000000000000000000274521465244332600227120ustar00rootroot00000000000000 How to encode reference system definitions. Builds on several other parts of GML 3 to encode the data needed to define reference systems. This schema encodes the Reference System (RS_) package of the extended UML Model for OGC Abstract Specification Topic 2: Spatial Referencing by Coordinates. That UML model is adapted from ISO 19111 - Spatial referencing by coordinates, as described in Annex C of Topic 2. The SC_CRS class is also encoded here, to eliminate the (circular) references from coordinateOperations.xsd to coordinateReferenceSystems.xsd. The RS_SpatialReferenceSystemUsingGeographicIdentifier class is not encoded, since it is not applicable to coordinate positions. The CI_Citation class is not directly encoded, since such information can be included as metaDataProperty elements which are optionally allowed. A modified version of the EX_Extent (DataType) class from ISO 19115 is currently encoded here, using GML 3 schema types. (A more extensive version of the EX_Extent package might be XML encoded in the future, probably in a separate extent.xsd schema.) Caution: The CRS package in GML 3.1 and GML 3.1.1 is preliminary, and is expected to undergo some modifications that are not backward compatible during the development of GML 3.2 (ISO 19136). The GML 3.2 package will implement the model described in the revised version of ISO 19111. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Basic encoding for reference system objects, simplifying and restricting the DefinitionType as needed. The name by which this reference system is identified. Description of a spatial and/or temporal reference system used by a dataset. Set of alterative identifications of this reference system. The first srsID, if any, is normally the primary identification code, and any others are aliases. Comments on or information about this reference system, including source information. An identification of a reference system. Association to a reference system, either referencing or containing the definition of that reference system. Abstract coordinate reference system, usually defined by a coordinate system and a datum. This abstract complexType shall not be used, extended, or restricted, in an Application Schema, to define a concrete subtype with a meaning equivalent to a concrete subtype specified in this document. Association to a CRS abstract coordinate reference system, either referencing or containing the definition of that CRS. An identification of a CRS object. The first use of the IdentifierType for an object, if any, is normally the primary identification code, and any others are aliases. The code or name for this Identifier, often from a controlled list or pattern defined by a code space. The optional codeSpace attribute is normally included to identify or reference a code space within which one or more codes are defined. This code space is often defined by some authority organization, where one organization may define multiple code spaces. The range and format of each Code Space identifier is defined by that code space authority. Information about that code space authority can be included as metaDataProperty elements which are optionally allowed in all CRS objects. Remarks about this code or alias. Identifier of the version of the associated codeSpace or code, as specified by the codeSpace or code authority. This version is included only when the "code" or "codeSpace" uses versions. When appropriate, the version is identified by the effective date, coded using ISO 8601 date format. Information about this object or code. Contains text or refers to external text. Description of domain of usage, or limitations of usage, for which this CRS object is valid. Area or region in which this CRS object is valid. Information about the spatial, vertical, and/or temporal extent of a reference system object. Constraints: At least one of the elements "description", "boundingBox", "boundingPolygon", "verticalExtent", and temporalExtent" must be included, but more that one can be included when appropriate. Furthermore, more than one "boundingBox", "boundingPolygon", "verticalExtent", and/or temporalExtent" element can be included, with more than one meaning the union of the individual domains. Description of spatial and/or temporal extent of this object. Geographic domain of this reference system object. Unordered list of bounding boxes (or envelopes) whose union describes the spatial domain of this object. Unordered list of bounding polygons whose union describes the spatial domain of this object. Unordered list of vertical intervals whose union describes the spatial domain of this object. Unordered list of time periods whose union describes the spatial domain of this object. A bounding box (or envelope) defining the spatial domain of this object. A bounding polygon defining the horizontal spatial domain of this object. An interval defining the vertical spatial domain of this object. A time period defining the temporal domain of this object. tinyows-1.2.2/schema/gml/3.1.1/base/temporal.xsd000066400000000000000000000363561465244332600212120ustar00rootroot00000000000000 The temporal schema for GML 3.1 provides constructs for handling time-varying spatial data. This schema reflects a partial implementation of the model described in ISO 19108:2002. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . This abstract element acts as the head of the substitution group for temporal primitives and complexes. The abstract supertype for temporal objects. This abstract element acts as the head of the substitution group for temporal primitives. The abstract supertype for temporal primitives. This abstract element acts as the head of the substitution group for temporal complexes. Temporal complex is an aggregation of temporal primitives as its components, represents a temporal geometric complex and a temporal topology complex. N.B. Temporal geometric complex is not defined in this schema. The abstract supertype for temporal complexes. This abstract element acts as the head of the substitution group for temporal geometric primitives. The abstract supertype for temporal geometric primitives. A temporal geometry must be associated with a temporal reference system via URI. The Gregorian calendar with UTC is the default reference system, following ISO 8601. Other reference systems in common use include the GPS calendar and the Julian calendar. Omit back-pointers begunBy, endedBy. This model group is provided as an alternative to the abstract susbstitutionGroup head _timeLength. ISO 19136 comment 411 This element is an instance of the primitive xsd:duration simple type to enable use of the ISO 8601 syntax for temporal length (e.g. P5DT4H30M). It is a valid subtype of TimeDurationType according to section 3.14.6, rule 2.2.4 in XML Schema, Part 1. This element is a valid subtype of TimeDurationType according to section 3.14.6, rule 2.2.4 in XML Schema, Part 1. This type extends the built-in xsd:decimal simple type to allow floating-point values for temporal length. According to the ISO 11404 model you have to use positiveInteger together with appropriate values for radix and factor. The resolution of the time interval is to one radix ^(-factor) of the specified time unit (e.g. unit="second", radix="10", factor="3" specifies a resolution of milliseconds). It is a subtype of TimeDurationType. Standard units for measuring time intervals (see ISO 31-1). Direct representation of a temporal position Direct representation of a temporal position. Indeterminate time values are also allowed, as described in ISO 19108. The indeterminatePosition attribute can be used alone or it can qualify a specific value for temporal position (e.g. before 2002-12, after 1019624400). For time values that identify position within a calendar, the calendarEraName attribute provides the name of the calendar era to which the date is referenced (e.g. the Meiji era of the Japanese calendar). The ISO 19108:2002 hierarchy of subtypes for temporal position are collapsed by defining a union of XML Schema simple types for indicating temporal position relative to a specific reference system. Dates and dateTime may be indicated with varying degrees of precision. dateTime by itself does not allow right-truncation, except for fractions of seconds. When used with non-Gregorian calendars based on years, months, days, the same lexical representation should still be used, with leading zeros added if the year value would otherwise have fewer than four digits. An ordinal position may be referenced via URI identifying the definition of an ordinal era. A time coordinate value is indicated as a decimal (e.g. UNIX time, GPS calendar). Calendar dates may be indicated with varying degrees of precision, using year, year-month, date. When used with non-Gregorian calendars based on years, months, days, the same lexical representation should still be used, with leading zeros added if the year value would otherwise have fewer than four digits. time is used for a position that recurs daily (see clause 5.4.4.2 of ISO 19108:2002). This enumerated data type specifies values for indeterminate positions. tinyows-1.2.2/schema/gml/3.1.1/base/temporalReferenceSystems.xsd000066400000000000000000000315601465244332600244110ustar00rootroot00000000000000 The Temporal Reference Systems schema for GML 3.1 provides constructs for handling various styles of temporal reference system. This schema reflects a partial implementation of the model described in ISO 19108:2002. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Abstract element serves primarily as the head of a substitution group for temporal reference systems. A value in the time domain is measured relative to a temporal reference system. Common types of reference systems include calendars, ordinal temporal reference systems, and temporal coordinate systems (time elapsed since some epoch, e.g. UNIX time). A temporal coordinate system is based on a continuous interval scale defined in terms of a single time interval. In an ordinal reference system the order of events in time can be well established, but the magnitude of the intervals between them can not be accurately determined (e.g. a stratigraphic sequence). Ordinal temporal reference systems are often hierarchically structured such that an ordinal era at a given level of the hierarchy includes a sequence of shorter, coterminous ordinal eras. This captured using the member/group properties. Note that in this schema, TIme Ordinal Era is patterned on TimeEdge, which is a variation from ISO 19108. This is in order to fulfill the requirements of ordinal reference systems based on eras delimited by named points or nodes, which are common in geology, archeology, etc. This change is subject of a change proposal to ISO An Era may be composed of several member Eras. The "member" element implements the association to the Era at the next level down the hierarchy. "member" follows the standard GML property pattern whereby its (complex) value may be either described fully inline, or may be the target of a link carried on the member element and described fully elsewhere, either in the same document or from another service. In a particular Time System, an Era may be a member of a group. The "group" element implements the back-pointer to the Era at the next level up in the hierarchy. If the hierarchy is represented by describing the nested components fully in the their nested position inside "member" elements, then the parent can be easily inferred, so the group property is unnecessary. However, if the hierarchy is represented by links carried on the "member" property elements, pointing to Eras described fully elsewhere, then it may be useful for a child (member) era to carry an explicit pointer back to its parent (group) Era. A calendar is a discrete temporal reference system that provides a basis for defining temporal position to a resolution of one day. A single calendar may reference more than one calendar era. Link to the CalendarEras that it uses as a reference for dating. In every calendar, years are numbered relative to the date of a reference event that defines a calendar era. In this implementation, we omit the back-pointer "datingSystem". Name or description of a mythical or historic event which fixes the position of the base scale of the calendar era. Date of the referenceEvent expressed as a date in the given calendar. In most calendars, this date is the origin (i.e., the first day) of the scale, but this is not always true. Julian date that corresponds to the reference date. The Julian day numbering system is a temporal coordinate system that has an origin earlier than any known calendar, at noon on 1 January 4713 BC in the Julian proleptic calendar. The Julian day number is an integer value; the Julian date is a decimal value that allows greater resolution. Transforming calendar dates to and from Julian dates provides a relatively simple basis for transforming dates from one calendar to another. Period for which the calendar era was used as a basis for dating. A clock provides a basis for defining temporal position within a day. A clock must be used with a calendar in order to provide a complete description of a temporal position within a specific day. Name or description of an event, such as solar noon or sunrise, which fixes the position of the base scale of the clock. time of day associated with the reference event expressed as a time of day in the given clock. The reference time is usually the origin of the clock scale. 24 hour local or UTC time that corresponds to the reference time. tinyows-1.2.2/schema/gml/3.1.1/base/temporalTopology.xsd000066400000000000000000000235651465244332600227450ustar00rootroot00000000000000 The temporal topology schema for ISO19136 provides constructs for handling topological complexes and temporal feature relationships. Temporal geometric characteristics of features are represented as instants and periods. While, temporal context of features that does not relate to the position of time is described as connectivity relationships among instants and periods. These relationships are called temporal topology as they do not change in time, as long as the direction of time does not change. It is used effectively in the case of describing a family tree expressing evolution of species, an ecological cycle, a lineage of lands or buildings, or a history of separation and merger of administrative boundaries. This schema reflects a partial yet consistent implementation of the model described in ISO 19108:2002. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . This element represents temporal topology complex. It shall be the connected acyclic directed graph composed of time nodes and time edges. A temporal topology complex. A time topology complex property can either be any time topology complex element encapsulated in an element of this type or an XLink reference to a remote time topology complex element (where remote includes elements located elsewhere in the same document). Note that either the reference or the contained element must be given, but not both or none. This abstract element acts as the head of the substitution group for temporal topology primitives. The element "complex" carries a reference to the complex containing this primitive. A time topology primitive property can either hold any time topology complex element eor carry an XLink reference to a remote time topology complex element (where remote includes elements located elsewhere in the same document). Note that either the reference or the contained element must be given, but not both or none. "TimeNode" is a zero dimensional temporal topology primitive, expresses a position in topological time, and is a start and an end of time edge, which represents states of time. Time node may be isolated. However, it cannot describe the ordering relationships with other primitives. An isolated node may not be an element of any temporal topology complex. Type declaration of the element "TimeNode". A time node property can either be any time node element encapsulated in an element of this type or an XLink reference to a remote time node element (where remote includes elements located elsewhere in the same document). Note that either the reference or the contained element must be given, but not both or none. TimeEdge is one dimensional temporal topology primitive, expresses a state in topological time. It has an orientation from its start toward the end, and its boundaries shall associate with two different time nodes. Type declaration of the element "TimeEdge". A time edge property can either be any time edge element encapsulated in an element of this type or an XLink reference to a remote time edge element (where remote includes elements located elsewhere in the same document). Note that either the reference or the contained element must be given, but not both or none. Feature succession is a semantic relationship derived from evaluation of observer, and Feature Substitution, Feature Division and Feature Fusion are defined as associations between previous features and next features in the temporal context. Successions shall be represented in either following two ways. * define a temporal topological complex element as a feature element * define an association same as temporal topological complex between features. tinyows-1.2.2/schema/gml/3.1.1/base/topology.xsd000066400000000000000000000524431465244332600212360ustar00rootroot00000000000000 topology.xsd GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Substitution group branch for Topo Primitives, used by TopoPrimitiveArrayAssociationType Its optional co-boundary is a set of connected directedEdges. The orientation of one of these dirEdges is "+" if the Node is the "to" node of the Edge, and "-" if it is the "from" node. There is precisely one positively directed and one negatively directed node in the boundary of every edge. The negatively and positively directed nodes correspond to the start and end nodes respectively. The optional coboundary of an edge is a circular sequence of directed faces which are incident on this edge in document order. Faces which use a particular boundary edge in its positive orientation appear with positive orientation on the coboundary of the same edge. In the 2D case, the orientation of the face on the left of the edge is "+"; the orientation of the face on the right on its right is "-". An edge may optionally be realised by a 1-dimensional (curve) geometric primitive. . The topological boundary of a face consists of a set of directed edges. Note that all edges associated with a Face, including dangling and interior edges, appear in the boundary. Dangling and interior edges are each referenced by pairs of directedEdges with opposing orientations. The optional coboundary of a face is a pair of directed solids which are bounded by this face. If present, there is precisely one positively directed and one negatively directed solid in the coboundary of every face. The positively directed solid corresponds to the solid which lies in the direction of the positively directed normal to the face in any geometric realisation. A face may optionally be realised by a 2-dimensional (surface) geometric primitive. The topological boundary of a TopoSolid consists of a set of directed faces. Note that all faces associated with the TopoSolid, including dangling faces, appear in the boundary. The coboundary of a TopoSolid is empty and hence requires no representation. The intended use of TopoPoint is to appear within a point feature to express the structural and possibly geometric relationships of this point to other features via shared node definitions. Note the orientation assigned to the directedNode has no meaning in this context. It is preserved for symmetry with the types and elements which follow. The end Node of each directedEdge of a TopoCurveType is the start Node of the next directedEdge of the TopoCurveType in document order. The TopoCurve type and element represent a homogeneous topological expression, a list of directed edges, which if realised are isomorphic to a geometric curve primitive. The intended use of TopoCurve is to appear within a line feature instance to express the structural and geometric relationships of this line to other features via the shared edge definitions. The TopoSurface type and element represent a homogeneous topological expression, a set of directed faces, which if realised are isomorphic to a geometric surface primitive. The intended use of TopoSurface is to appear within a surface feature instance to express the structural and possibly geometric relationships of this surface to other features via the shared face definitions. The TopoVolume type and element represent a homogeneous topological expression, a set of directed TopoSolids, which if realised are isomorphic to a geometric solid primitive. The intended use of TopoVolume is to appear within a 3D solid feature instance to express the structural and geometric relationships of this solid to other features via the shared TopoSolid definitions. . Note the orientation assigned to the directedSolid has no meaning in three dimensions. It is preserved for symmetry with the preceding types and elements. This type represents a TP_Complex capable of holding topological primitives. Need schamatron test here that isMaximal attribute value is true This Property can be used to embed a TopoComplex in a feature collection. This type supports embedding topological primitives in a TopoComplex. This type supports embedding an array of topological primitives in a TopoComplex tinyows-1.2.2/schema/gml/3.1.1/base/units.xsd000066400000000000000000000261461465244332600205250ustar00rootroot00000000000000 Builds on gmlBase.xsd to encode units of measure (or uom), including definitions of units of measure and dictionaries of such definitions. GML 3.0 candidate schema, primary editor: Arliss Whiteside. Parts of this schema are based on Subclause 6.5.7 of ISO/CD 19103 Geographic information - Conceptual schema language, on Subclause A.5.2.2.3 of ISO/CD 19118 Geographic information - Encoding, and on most of OpenGIS Recommendation Paper OGC 02-007r4 Units of Measure Use and Definition Recommendations. GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Reference to a unit of measure definition that applies to all the numerical values described by the element containing this element. Notice that a complexType which needs to include the uom attribute can do so by extending this complexType. Alternately, this complexType can be used as a pattern for a new complexType. Reference to a unit of measure definition, usually within the same XML document but possibly outside the XML document which contains this reference. For a reference within the same XML document, the "#" symbol should be used, followed by a text abbreviation of the unit name. However, the "#" symbol may be optional, and still may be interpreted as a reference. Definition of a unit of measure (or uom). The definition includes a quantityType property, which indicates the phenomenon to which the units apply, and a catalogSymbol, which gives the short symbol used for this unit. This element is used when the relationship of this unit to other units or units systems is unknown. Definition of a unit of measure which is a base unit from the system of units. A base unit cannot be derived by combination of other base units within this system. Sometimes known as "fundamental unit". Definition of a unit of measure which is defined through algebraic combination of more primitive units, which are usually base units from a particular system of units. Derived units based directly on base units are usually preferred for quantities other than the base units or fundamental quantities within a system. If a derived unit is not the preferred unit, the ConventionalUnit element should be used instead. Definition of a unit of measure which is related to a preferred unit for this quantity type through a conversion formula. A method for deriving this unit by algebraic combination of more primitive units, may also be provided. Informal description of the phenomenon or type of quantity that is measured or observed. For example, "length", "angle", "time", "pressure", or "temperature". When the quantity is the result of an observation or measurement, this term is known as Observable Type or Measurand. For global understanding of a unit of measure, it is often possible to reference an item in a catalog of units, using a symbol in that catalog. The "codeSpace" attribute in "CodeType" identifies a namespace for the catalog symbol value, and might reference the catalog. The "string" value in "CodeType" contains the value of a symbol that is unique within this catalog namespace. This symbol often appears explicitly in the catalog, but it could be a combination of symbols using a specified algebra of units. For example, the symbol "cm" might indicate that it is the "m" symbol combined with the "c" prefix. Definition of one unit term for a derived unit of measure. This unit term references another unit of measure (uom) and provides an integer exponent applied to that unit in defining the compound unit. The exponent can be positive or negative, but not zero. This element is included when this unit has an accurate conversion to the preferred unit for this quantity type. This element is included when the correct definition of this unit is unknown, but this unit has a rough or inaccurate conversion to the preferred unit for this quantity type. Relation of a unit to the preferred unit for this quantity type, specified by an arithmetic conversion (scaling and/or offset). A preferred unit is either a base unit or a derived unit selected for all units of one quantity type. The mandatory attribute "uom" shall reference the preferred unit that this conversion applies to. The conversion is specified by one of two alternative elements: "factor" or "formula". Specification of the scale factor by which a value using this unit of measure can be multiplied to obtain the corresponding value using the preferred unit of measure. Specification of the formula by which a value using this unit of measure can be converted to obtain the corresponding value using the preferred unit of measure. Paremeters of a simple formula by which a value using this unit of measure can be converted to the corresponding value using the preferred unit of measure. The formula element contains elements a, b, c and d, whose values use the XML Schema type "double". These values are used in the formula y = (a + bx) / (c + dx), where x is a value using this unit, and y is the corresponding value using the preferred unit. The elements a and d are optional, and if values are not provided, those parameters are considered to be zero. If values are not provided for both a and d, the formula is equivalent to a fraction with numerator and denominator parameters. tinyows-1.2.2/schema/gml/3.1.1/base/valueObjects.xsd000066400000000000000000000437761465244332600220210ustar00rootroot00000000000000 valueObjects.xsd GML conformant schema for Values in which the * scalar Value types and lists have their values recorded in simpleContent elements * complex Value types are built recursively GML is an OGC Standard. Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Utility choice group which unifies generic Values defined in this schema document with Geometry and Temporal objects and the Measures described above, so that any of these may be used within aggregate Values. A value from two-valued logic, using the XML Schema boolean type. An instance may take the values {true, false, 1, 0}. XML List based on XML Schema boolean type. An element of this type contains a space-separated list of boolean values {0,1,true,false} A term representing a classification. It has an optional XML attribute codeSpace, whose value is a URI which identifies a dictionary, codelist or authority for the term. A space-separated list of terms or nulls. A single XML attribute codeSpace may be provided, which authorises all the terms in the list. A numeric value with a scale. The content of the element is an amount using the XML Schema type double which permits decimal or scientific notation. An XML attribute uom (unit of measure) is required, whose value is a URI which identifies the definition of the scale or units by which the numeric value must be multiplied. A space separated list of amounts or nulls. The amounts use the XML Schema type double. A single XML attribute uom (unit of measure) is required, whose value is a URI which identifies the definition of the scale or units by which all the amounts in the list must be multiplied. An integer representing a frequency of occurrence. A space-separated list of integers or nulls. Aggregate value built from other Values using the Composite pattern. It contains zero or an arbitrary number of valueComponent elements, and zero or one valueComponents elements. It may be used for strongly coupled aggregates (vectors, tensors) or for arbitrary collections of values. Aggregate value built using the Composite pattern. A Value Array is used for homogeneous arrays of primitive and aggregate values. The member values may be scalars, composites, arrays or lists. ValueArray has the same content model as CompositeValue, but the member values must be homogeneous. The element declaration contains a Schematron constraint which expresses this restriction precisely. Since the members are homogeneous, the referenceSystem (uom, codeSpace) may be specified on the ValueArray itself and implicitly inherited by all the members if desired. Note that a_ScalarValueList is preferred for arrays of Scalar Values since this is a more efficient encoding. ValueArray may not carry both a reference to a codeSpace and a uom All components of must be of the same type All components of must be of the same type A Value Array is used for homogeneous arrays of primitive and aggregate values. _ScalarValueList is preferred for arrays of Scalar Values since this is more efficient. Since "choice" is not available for attribute groups, an external constraint (e.g. Schematron) would be required to enforce the selection of only one of these through schema validation Utility element to store a 2-point range of frequency values. If one member is a null, then this is a single ended interval. Restriction of list type to store a 2-point range of frequency values. If one member is a null, then this is a single ended interval. Element which refers to, or contains, a Value Element which refers to, or contains, a Value. This version is used in CompositeValues. GML property which refers to, or contains, a Value Element which refers to, or contains, a set of homogeneously typed Values. GML property which refers to, or contains, a set of homogeneously typed Values. Property whose content is a scalar value. Property whose content is a Boolean value. Property whose content is a Category. Property whose content is a Quantity. Property whose content is a Count. tinyows-1.2.2/schema/gml/3.1.1/smil/000077500000000000000000000000001465244332600166645ustar00rootroot00000000000000tinyows-1.2.2/schema/gml/3.1.1/smil/smil20-language.xsd000066400000000000000000000120431465244332600222730ustar00rootroot00000000000000 tinyows-1.2.2/schema/gml/3.1.1/smil/smil20.xsd000066400000000000000000000226111465244332600205140ustar00rootroot00000000000000 tinyows-1.2.2/schema/gml/3.1.1/smil/xml-mod.xsd000066400000000000000000000034071465244332600207650ustar00rootroot00000000000000 In due course, we should install the relevant ISO 2- and 3-letter codes as the enumerated possible values . . . tinyows-1.2.2/schema/gml/3.1.1/xlink/000077500000000000000000000000001465244332600170455ustar00rootroot00000000000000tinyows-1.2.2/schema/gml/3.1.1/xlink/xlinks.xsd000066400000000000000000000031161465244332600210760ustar00rootroot00000000000000 xlinks.xsd This document is now deprecated. Instead, please reference the xlinks.xsd file stored at the location http://schemas.opengis.net/xlink/1.0.0/xlinks.xsd. This modified xlink.xsd document is provided because some existing XML Schema Documents might still reference it at this location. In the future, this file will be made invalid so that any documents referencing it will no longer validate as expected. Subsequent to that, this file will be deleted from this location. This strategy is designed to smooth transition from the many xlinks.xsd files previously distributed throughout the OGC schema repository, to having only one official xlink.xsd document stored at http://schemas.opengis.net/xlink/1.0.0/xlinks.xsd. All references to xlinks.xsd documents, in existing XML Schema Documents within the OGC schema repository, have been modified to reference the xlinks.xsd file stored at http://schemas.opengis.net/xlink/1.0.0/xlinks.xsd. All include and import statements have also been changed to use relative paths to this xlinks.xsd document. Any new XML Schema documents shall also point to the new xlink/xlinks.xsd file and shall use a relative path. tinyows-1.2.2/schema/ows/000077500000000000000000000000001465244332600153115ustar00rootroot00000000000000tinyows-1.2.2/schema/ows/1.0.0/000077500000000000000000000000001465244332600157455ustar00rootroot00000000000000tinyows-1.2.2/schema/ows/1.0.0/ows19115subset.xsd000066400000000000000000000304511465244332600211270ustar00rootroot00000000000000 ows19115subset.xsd 2010-01-30 This XML Schema Document encodes the parts of ISO 19115 used by the common "ServiceIdentification" and "ServiceProvider" sections of the GetCapabilities operation response, known as the service metadata XML document. The parts encoded here are the MD_Keywords, CI_ResponsibleParty, and related classes. This XML Schema largely follows the current draft for ISO 19139, with the addition of documentation text extracted and edited from Annex B of ISO 19115. The UML package prefixes were omitted from XML names, and the XML element names were all capitalized, for consistency with other OWS Schemas. Also, the optional smXML:id attributes were omitted, as not being useful in a service metadata document. OWS is an OGC Standard. Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Title of this resource, normally used for display to a human. Brief narrative description of this resource, normally used for display to a human. Unordered list of one or more commonly used or formalised word(s) or phrase(s) used to describe the subject. When needed, the optional "type" can name the type of the associated list of keywords that shall all have the same type. Also when needed, the codeSpace attribute of that "type" can reference the type name authority and/or thesaurus. For OWS use, the optional thesaurusName element was omitted as being complex information that could be referenced by the codeSpace attribute of the Type element. Name or code with an (optional) authority. If the codeSpace attribute is present, its value should reference a dictionary, thesaurus, or authority for the name or code, such as the organisation who assigned the value, or the dictionary from which it is taken. Type copied from basicTypes.xsd of GML 3 with documentation edited, for possible use outside the ServiceIdentification section of a service metadata document. Identification of, and means of communication with, person(s) responsible for the resource(s). For OWS use in the ServiceProvider section of a service metadata document, the optional organizationName element was removed, since this type is always used with the ProviderName element which provides that information. The optional individualName element was made mandatory, since either the organizationName or individualName element is mandatory. The mandatory "role" element was changed to optional, since no clear use of this information is known in the ServiceProvider section. Identification of, and means of communication with, person responsible for the server. At least one of IndividualName, OrganisationName, or PositionName shall be included. Identification of, and means of communication with, person responsible for the server. For OWS use in the ServiceProvider section of a service metadata document, the optional organizationName element was removed, since this type is always used with the ProviderName element which provides that information. The mandatory "role" element was changed to optional, since no clear use of this information is known in the ServiceProvider section. Name of the responsible person: surname, given name, title separated by a delimiter. Name of the responsible organization. Role or position of the responsible person. Function performed by the responsible party. Possible values of this Role shall include the values and the meanings listed in Subclause B.5.5 of ISO 19115:2003. Address of the responsible party. Information required to enable contact with the responsible person and/or organization. For OWS use in the service metadata document, the optional hoursOfService and contactInstructions elements were retained, as possibly being useful in the ServiceProvider section. Telephone numbers at which the organization or individual may be contacted. Physical and email address at which the organization or individual may be contacted. On-line information that can be used to contact the individual or organization. OWS specifics: The xlink:href attribute in the xlink:simpleLink attribute group shall be used to reference this resource. Whenever practical, the xlink:href attribute with type anyURI should be a URL from which more contact information can be electronically retrieved. The xlink:title attribute with type "string" can be used to name this set of information. The other attributes in the xlink:simpleLink attribute group should not be used. Time period (including time zone) when individuals can contact the organization or individual. Supplemental instructions on how or when to contact the individual or organization. Reference to on-line resource from which data can be obtained. For OWS use in the service metadata document, the CI_OnlineResource class was XML encoded as the attributeGroup "xlink:simpleLink", as used in GML. Telephone numbers for contacting the responsible individual or organization. Telephone number by which individuals can speak to the responsible organization or individual. Telephone number of a facsimile machine for the responsible organization or individual. Location of the responsible individual or organization. Address line for the location. City of the location. State or province of the location. ZIP or other postal code. Country of the physical address. Address of the electronic mailbox of the responsible organization or individual. tinyows-1.2.2/schema/ows/1.0.0/owsAll.xsd000066400000000000000000000017111465244332600177260ustar00rootroot00000000000000 owsAll.xsd 2010-01-30 This XML Schema Document includes and imports, directly and indirectly, all the XML Schemas defined by the OWS Common Implemetation Specification. OWS is an OGC Standard. Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . tinyows-1.2.2/schema/ows/1.0.0/owsCommon.xsd000066400000000000000000000271461465244332600204600ustar00rootroot00000000000000 owsCommon.xsd 2010-01-30 This XML Schema Document encodes various parameters and parameter types that can be used in OWS operation requests and responses. OWS is an OGC Standard. Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . XML encoded identifier of a standard MIME type, possibly a parameterized MIME type. Specification version for OWS operation. The string value shall contain one x.y.z "version" value (e.g., "2.1.3"). A version number shall contain three non-negative integers separated by decimal points, in the form "x.y.z". The integers y and z shall not exceed 99. Each version shall be for the Implementation Specification (document) and the associated XML Schemas to which requested operations will conform. An Implementation Specification version normally specifies XML Schemas against which an XML encoded operation response must conform and should be validated. See Version negotiation subclause for more information. This element either references or contains more metadata about the element that includes this element. To reference metadata stored remotely, at least the xlinks:href attribute in xlink:simpleLink shall be included. Either at least one of the attributes in xlink:simpleLink or a substitute for the AbstractMetaData element shall be included, but not both. An Implementation Specification can restrict the contents of this element to always be a reference or always contain metadata. (Informative: This element was adapted from the metaDataProperty element in GML 3.0.) Reference to metadata recorded elsewhere, either external to this XML document or within it. Whenever practical, the xlink:href attribute with type anyURI should include a URL from which this metadata can be electronically retrieved. Optional reference to the aspect of the element which includes this "metadata" element that this metadata provides more information about. Abstract element containing more metadata about the element that includes the containing "metadata" element. A specific server implementation, or an Implementation Specification, can define concrete elements in the AbstractMetaData substitution group. XML encoded minimum rectangular bounding box (or region) parameter, surrounding all the associated data. This type is adapted from the EnvelopeType of GML 3.1, with modified contents and documentation for encoding a MINIMUM size box SURROUNDING all associated data. Position of the bounding box corner at which the value of each coordinate normally is the algebraic minimum within this bounding box. In some cases, this position is normally displayed at the top, such as the top left for some image coordinates. For more information, see Subclauses 10.2.5 and C.13. Position of the bounding box corner at which the value of each coordinate normally is the algebraic maximum within this bounding box. In some cases, this position is normally displayed at the bottom, such as the bottom right for some image coordinates. For more information, see Subclauses 10.2.5 and C.13. Usually references the definition of a CRS, as specified in [OGC Topic 2]. Such a CRS definition can be XML encoded using the gml:CoordinateReferenceSystemType in [GML 3.1]. For well known references, it is not required that a CRS definition exist at the location the URI points to. If no anyURI value is included, the applicable CRS must be either: a) Specified outside the bounding box, but inside a data structure that includes this bounding box, as specified for a specific OWS use of this bounding box type. b) Fixed and specified in the Implementation Specification for a specific OWS use of the bounding box type. The number of dimensions in this CRS (the length of a coordinate sequence in this use of the PositionType). This number is specified by the CRS definition, but can also be specified here. Position instances hold the coordinates of a position in a coordinate reference system (CRS) referenced by the related "crs" attribute or elsewhere. For an angular coordinate axis that is physically continuous for multiple revolutions, but whose recorded values can be discontinuous, special conditions apply when the bounding box is continuous across the value discontinuity: a) If the bounding box is continuous clear around this angular axis, then ordinate values of minus and plus infinity shall be used. b) If the bounding box is continuous across the value discontinuity but is not continuous clear around this angular axis, then some non-normal value can be used if specified for a specific OWS use of the BoundingBoxType. For more information, see Subclauses 10.2.5 and C.13. This type is adapted from DirectPositionType and doubleList of GML 3.1. The adaptations include omission of all the attributes, since the needed information is included in the BoundingBoxType. XML encoded minimum rectangular bounding box (or region) parameter, surrounding all the associated data. This box is specialized for use with the 2D WGS 84 coordinate reference system with decimal values of longitude and latitude. This type is adapted from the general BoundingBoxType, with modified contents and documentation for use with the 2D WGS 84 coordinate reference system. Position of the bounding box corner at which the values of longitude and latitude normally are the algebraic minimums within this bounding box. For more information, see Subclauses 10.4.5 and C.13. Position of the bounding box corner at which the values of longitude and latitude normally are the algebraic minimums within this bounding box. For more information, see Subclauses 10.4.5 and C.13. This attribute can be included when considered useful. When included, this attribute shall reference the 2D WGS 84 coordinate reference system with longitude before latitude and decimal values of longitude and latitude. The number of dimensions in this CRS (the length of a coordinate sequence in this use of the PositionType). This number is specified by the CRS definition, but can also be specified here. Two-dimensional position instances hold the longitude and latitude coordinates of a position in the 2D WGS 84 coordinate reference system. The longitude value shall be listed first, followed by the latitude value, both in decimal degrees. Latitude values shall range from -90 to +90 degrees, and longitude values shall normally range from -180 to +180 degrees. For the longitude axis, special conditions apply when the bounding box is continuous across the +/- 180 degrees meridian longitude value discontinuity: a) If the bounding box is continuous clear around the Earth, then longitude values of minus and plus infinity shall be used. b) If the bounding box is continuous across the value discontinuity but is not continuous clear around the Earth, then some non-normal value can be used if specified for a specific OWS use of the WGS84BoundingBoxType. For more information, see Subclauses 10.4.5 and C.13. tinyows-1.2.2/schema/ows/1.0.0/owsDataIdentification.xsd000066400000000000000000000147671465244332600227600ustar00rootroot00000000000000 owsDataIdentification.xsd 2010-01-30 This XML Schema Document encodes the parts of the MD_DataIdentification class of ISO 19115 (OGC Abstract Specification Topic 11) which are expected to be used for most datasets. This Schema also encodes the parts of this class that are expected to be useful for other metadata. Both are expected to be used within the Contents section of OWS service metadata (Capabilities) documents. OWS is an OGC Standard. Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Human-readable descriptive information for the object it is included within. This type shall be extended if needed for specific OWS use to include additional metadata for each type of information. This type shall not be restricted for a specific OWS to change the multiplicity (or optionality) of some elements. General metadata identifying and describing a set of data. This type shall be extended if needed for each specific OWS to include additional metadata for each type of dataset. If needed, this type should first be restricted for each specific OWS to change the multiplicity (or optionality) of some elements. Optional unique identifier or name of this dataset. Unordered list of zero or more bounding boxes whose union describes the extent of this dataset. Unordered list of zero or more references to data formats supported for server outputs. Unordered list of zero or more available coordinate reference systems. Optional unordered list of additional metadata about this data(set). A list of optional metadata elements for this data identification could be specified in the Implementation Specification for this service. Unique identifier or name of this dataset. Reference to a format in which this data can be encoded and transferred. More specific parameter names should be used by specific OWS specifications wherever applicable. More than one such parameter can be included for different purposes. Coordinate reference system in which data from this data(set) or resource is available or supported. More specific parameter names should be used by specific OWS specifications wherever applicable. More than one such parameter can be included for different purposes. Access constraint applied to assure the protection of privacy or intellectual property, or any other restrictions on retrieving or using data from or otherwise using this server. The reserved value NONE (case insensitive) shall be used to mean no access constraints are imposed. Fees and terms for retrieving data from or otherwise using this server, including the monetary units as specified in ISO 4217. The reserved value NONE (case insensitive) shall be used to mean no fees or terms. Identifier of a language used by the data(set) contents. This language identifier shall be as specified in IETF RFC 1766. When this element is omitted, the language used is not identified. tinyows-1.2.2/schema/ows/1.0.0/owsExceptionReport.xsd000066400000000000000000000106651465244332600223600ustar00rootroot00000000000000 owsExceptionReport.xsd 2010-01-30 This XML Schema Document encodes the Exception Report response to all OWS operations. OWS is an OGC Standard. Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Report message returned to the client that requested any OWS operation when the server detects an error while processing that operation request. Unordered list of one or more Exception elements that each describes an error. These Exception elements shall be interpreted by clients as being independent of one another (not hierarchical). Specification version for OWS operation. The string value shall contain one x.y.z "version" value (e.g., "2.1.3"). A version number shall contain three non-negative integers separated by decimal points, in the form "x.y.z". The integers y and z shall not exceed 99. Each version shall be for the Implementation Specification (document) and the associated XML Schemas to which requested operations will conform. An Implementation Specification version normally specifies XML Schemas against which an XML encoded operation response must conform and should be validated. See Version negotiation subclause for more information. Identifier of the language used by all included exception text values. These language identifiers shall be as specified in IETF RFC 1766. When this attribute is omitted, the language used is not identified. An Exception element describes one detected error that a server chooses to convey to the client. Ordered sequence of text strings that describe this specific exception or error. The contents of these strings are left open to definition by each server implementation. A server is strongly encouraged to include at least one ExceptionText value, to provide more information about the detected error than provided by the exceptionCode. When included, multiple ExceptionText values shall provide hierarchical information about one detected error, with the most significant information listed first. A code representing the type of this exception, which shall be selected from a set of exceptionCode values specified for the specific service operation and server. When included, this locator shall indicate to the client where an exception was encountered in servicing the client's operation request. This locator should be included whenever meaningful information can be provided by the server. The contents of this locator will depend on the specific exceptionCode and OWS service, and shall be specified in the OWS Implementation Specification. tinyows-1.2.2/schema/ows/1.0.0/owsGetCapabilities.xsd000066400000000000000000000153721465244332600222570ustar00rootroot00000000000000 owsGetCapabilities.xsd 2010-01-30 This XML Schema Document defines the GetCapabilities operation request and response XML elements and types, which are common to all OWSs. This XML Schema shall be edited by each OWS, for example, to specify a specific value for the "service" attribute. OWS is an OGC Standard. Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . XML encoded GetCapabilities operation response. This document provides clients with service metadata about a specific service instance, usually including metadata about the tightly-coupled data served. If the server does not implement the updateSequence parameter, the server shall always return the complete Capabilities document, without the updateSequence parameter. When the server implements the updateSequence parameter and the GetCapabilities operation request included the updateSequence parameter with the current value, the server shall return this element with only the "version" and "updateSequence" attributes. Otherwise, all optional elements shall be included or not depending on the actual value of the Contents parameter in the GetCapabilities operation request. This base type shall be extended by each specific OWS to include the additional contents needed. XML encoded GetCapabilities operation request. This operation allows clients to retrieve service metadata about a specific service instance. In this XML encoding, no "request" parameter is included, since the element name specifies the specific operation. This base type shall be extended by each specific OWS to include the additional required "service" attribute, with the correct value for that OWS. When omitted, server shall return latest supported version. When omitted or not supported by server, server shall return complete service metadata (Capabilities) document. When omitted or not supported by server, server shall return service metadata document using the MIME type "text/xml". When omitted or not supported by server, server shall return latest complete service metadata document. Service type identifier, where the string value is the OWS type abbreviation, such as "WMS" or "WFS". Prioritized sequence of one or more specification versions accepted by client, with preferred versions listed first. See Version negotiation subclause for more information. Unordered list of zero or more names of requested sections in complete service metadata document. Each Section value shall contain an allowed section name as specified by each OWS specification. See Sections parameter subclause for more information. Service metadata document version, having values that are "increased" whenever any change is made in service metadata document. Values are selected by each server, and are always opaque to clients. See updateSequence parameter use subclause for more information. Prioritized sequence of zero or more GetCapabilities operation response formats desired by client, with preferred formats listed first. Each response format shall be identified by its MIME type. See AcceptFormats parameter use subclause for more information. tinyows-1.2.2/schema/ows/1.0.0/owsOperationsMetadata.xsd000066400000000000000000000245051465244332600230100ustar00rootroot00000000000000 owsOperationsMetadata.xsd 2010-01-30 This XML Schema Document encodes the basic contents of the "OperationsMetadata" section of the GetCapabilities operation response, also known as the Capabilities XML document. OWS is an OGC Standard. Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Metadata about the operations and related abilities specified by this service and implemented by this server, including the URLs for operation requests. The basic contents of this section shall be the same for all OWS types, but individual services can add elements and/or change the optionality of optional elements. Metadata for unordered list of all the (requests for) operations that this server interface implements. The list of required and optional operations implemented shall be specified in the Implementation Specification for this service. Optional unordered list of parameter valid domains that each apply to one or more operations which this server interface implements. The list of required and optional parameter domain limitations shall be specified in the Implementation Specification for this service. Optional unordered list of valid domain constraints on non-parameter quantities that each apply to this server. The list of required and optional constraints shall be specified in the Implementation Specification for this service. Individual software vendors and servers can use this element to provide metadata about any additional server abilities. Metadata for one operation that this server implements. Unordered list of Distributed Computing Platforms (DCPs) supported for this operation. At present, only the HTTP DCP is defined, so this element will appear only once. Optional unordered list of parameter domains that each apply to this operation which this server implements. If one of these Parameter elements has the same "name" attribute as a Parameter element in the OperationsMetadata element, this Parameter element shall override the other one for this operation. The list of required and optional parameter domain limitations for this operation shall be specified in the Implementation Specification for this service. Optional unordered list of valid domain constraints on non-parameter quantities that each apply to this operation. If one of these Constraint elements has the same "name" attribute as a Constraint element in the OperationsMetadata element, this Constraint element shall override the other one for this operation. The list of required and optional constraints for this operation shall be specified in the Implementation Specification for this service. Optional unordered list of additional metadata about this operation and its' implementation. A list of required and optional metadata elements for this operation should be specified in the Implementation Specification for this service. (Informative: This metadata might specify the operation request parameters or provide the XML Schemas for the operation request.) Name or identifier of this operation (request) (for example, GetCapabilities). The list of required and optional operations implemented shall be specified in the Implementation Specification for this service. Information for one distributed Computing Platform (DCP) supported for this operation. At present, only the HTTP DCP is defined, so this element only includes the HTTP element. Connect point URLs for the HTTP Distributed Computing Platform (DCP). Normally, only one Get and/or one Post is included in this element. More than one Get and/or Post is allowed to support including alternative URLs for uses such as load balancing or backup. Connect point URL prefix and any constraints for the HTTP "Get" request method for this operation request. Connect point URL and any constraints for the HTTP "Post" request method for this operation request. Connect point URL and any constraints for this HTTP request method for this operation request. In the OnlineResourceType, the xlink:href attribute in the xlink:simpleLink attribute group shall be used to contain this URL. The other attributes in the xlink:simpleLink attribute group should not be used. Optional unordered list of valid domain constraints on non-parameter quantities that each apply to this request method for this operation. If one of these Constraint elements has the same "name" attribute as a Constraint element in the OperationsMetadata or Operation element, this Constraint element shall override the other one for this operation. The list of required and optional constraints for this request method for this operation shall be specified in the Implementation Specification for this service. Valid domain (or set of values) of one parameter or other quantity used by this server. A non-parameter quantity may not be explicitly represented in the server software. (Informative: An example is the outputFormat parameter of a WFS. Each WFS server should provide a Parameter element for the outputFormat parameter that lists the supported output formats, such as GML2, GML3, etc. as the allowed "Value" elements.) Unordered list of all the valid values for this parameter or other quantity. For those parameters that contain a list or sequence of values, these values shall be for individual values in the list. The allowed set of values and the allowed server restrictions on that set of values shall be specified in the Implementation Specification for this service. Optional unordered list of additional metadata about this parameter. A list of required and optional metadata elements for this domain should be specified in the Implementation Specification for this service. (Informative: This metadata might specify the meanings of the valid values.) Name or identifier of this parameter or other quantity. tinyows-1.2.2/schema/ows/1.0.0/owsServiceIdentification.xsd000066400000000000000000000060001465244332600234640ustar00rootroot00000000000000 owsServiceIdentification.xsd 2010-01-30 This XML Schema Document encodes the common "ServiceIdentification" section of the GetCapabilities operation response, known as the Capabilities XML document. This section encodes the SV_ServiceIdentification class of ISO 19119 (OGC Abstract Specification Topic 12). OWS is an OGC Standard. Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . General metadata for this specific server. This XML Schema of this section shall be the same for all OWS. A service type name from a registry of services. For example, the values of the codeSpace URI and name and code string may be "OGC" and "catalogue." This type name is normally used for machine-to-machine communication. Unordered list of one or more versions of this service type implemented by this server. This information is not adequate for version negotiation, and shall not be used for that purpose. If this element is omitted, no meaning is implied. Unordered list of access constraints applied to assure the protection of privacy or intellectual property, and any other restrictions on retrieving or using data from or otherwise using this server. The reserved value NONE (case insensitive) shall be used to mean no access constraints are imposed. If this element is omitted, no meaning is implied. tinyows-1.2.2/schema/ows/1.0.0/owsServiceProvider.xsd000066400000000000000000000042621465244332600223350ustar00rootroot00000000000000 owsServiceProvider.xsd 2010-01-30 This XML Schema Document encodes the common "ServiceProvider" section of the GetCapabilities operation response, known as the Capabilities XML document. This section encodes the SV_ServiceProvider class of ISO 19119 (OGC Abstract Specification Topic 12). OWS is an OGC Standard. Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved. To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ . Metadata about the organization that provides this specific service instance or server. A unique identifier for the service provider organization. Reference to the most relevant web site of the service provider. Information for contacting the service provider. The OnlineResource element within this ServiceContact element should not be used to reference a web site of the service provider. tinyows-1.2.2/schema/tows/000077500000000000000000000000001465244332600154755ustar00rootroot00000000000000tinyows-1.2.2/schema/tows/config.xsd000066400000000000000000000114621465244332600174660ustar00rootroot00000000000000 tinyows-1.2.2/schema/wfs/000077500000000000000000000000001465244332600153005ustar00rootroot00000000000000tinyows-1.2.2/schema/wfs/1.0.0/000077500000000000000000000000001465244332600157345ustar00rootroot00000000000000tinyows-1.2.2/schema/wfs/1.0.0/WFS-basic.xsd000066400000000000000000000352741465244332600202050ustar00rootroot00000000000000 The GetCapapbilities element is used to request that a Web Feature Service generate an XML document describing the organization providing the service, the WFS operations that the service supports, a list of feature types that the service can operate on and list of filtering capabilities that the service support. Such an XML document is called a capabilities document. The DescribeFeatureType element is used to request that a Web Feature Service generate a document describing one or more feature types. The GetFeature element is used to request that a Web Feature Service return feature instances of one or more feature types. This element is a container for the response to a GetFeature or GetFeatureWithLock (WFS-transaction.xsd) request. This type defines the GetCapabilities operation. In response to a GetCapabilities request, a Web Feature Service must generate a capabilities XML document that validates against the schemas defined in WFS-capabilities.xsd. The DescribeFeatureType operation allows a client application to request that a Web Feature Service describe one or more feature types. A Web Feature Service must be able to generate feature descriptions as valid GML2 application schemas. The schemas generated by the DescribeFeatureType operation can be used by a client application to validate the output. Feature instances within the WFS interface must be specified using GML2. The schema of feature instances specified within the WFS interface must validate against the feature schemas generated by the DescribeFeatureType request. The TypeName element is used to enumerate the feature types to be described. If no TypeName elements are specified then all features should be described. The outputFormat attribute is used to specify what schema description language should be used to describe features. The default value of XMLSCHEMA means that the Web Feature Service must generate a GML2 application schema that can be used to validate the GML2 output of a GetFeature request or feature instances specified in Transaction operations. A GetFeature element contains one or more Query elements that describe a query operation on one feature type. In response to a GetFeature request, a Web Feature Service must be able to generate a GML2 response that validates using a schema generated by the DescribeFeatureType request. A Web Feature Service may support other possibly non-XML (and even binary) output formats as long as those formats are advertised in the capabilities document. The outputFormat attribute is used to specify the output format that the Web Feature Service should generate in response to a GetFeature or GetFeatureWithLock element. The default value of GML2 indicates that the output is an XML document that conforms to the Geography Markup Language (GML) Implementation Specification V2.0. Other values may be used to specify other formats as long as those values are advertised in the capabilities document. For example, the value WKB may be used to indicate that a Well Known Binary format be used to encode the output. The maxFeatures attribute is used to specify the maximum number of features that a GetFeature operation should generate (regardless of the actual number of query hits). The Query element is used to describe a single query. One or more Query elements can be specified inside a GetFeature element so that multiple queries can be executed in one request. The output from the various queries are combined in a wfs:FeatureCollection element to form the response to the request. The Query element is of type QueryType. The PropertyName element is used to specify one or more properties of a feature whose values are to be retrieved by a Web Feature Service. While a Web Feature Service should endeavour to satisfy the exact request specified, in some instance this may not be possible. Specifically, a Web Feature Service must generate a valid GML2 response to a Query operation. The schema used to generate the output may include properties that are mandatory. In order that the output validates, these mandatory properties must be specified in the request. If they are not, a Web Feature Service may add them automatically to the Query before processing it. Thus a client application should, in general, be prepared to receive more properties than it requested. Of course, using the DescribeFeatureType request, a client application can determine which properties are mandatory and request them in the first place. The Filter element is used to define spatial and/or non-spatial constraints on query. Spatial constrains use GML2 to specify the constraining geometry. A full description of the Filter element can be found in the Filter Encoding Implementation Specification. For systems that implement versioning, the featureVersion attribute is used to specify which version of a particular feature instance is to be retrieved. A value of ALL means that all versions should be retrieved. An integer value 'i', means that the ith version should be retrieve if it exists or the most recent version otherwise. This type defines a container for the response to a GetFeature or GetFeatureWithLock request. If the request is GetFeatureWithLock, the lockId attribute must be populated. The lockId attribute can otherwise be safely ignored. The value of the lockId attribute is an identifier that a Web Feature Service generates and which a client application can use in subsequent operations (such as a Transaction request) to reference the set of locked features. tinyows-1.2.2/schema/wfs/1.0.0/WFS-capabilities.xsd000066400000000000000000000374761465244332600215630ustar00rootroot00000000000000 tinyows-1.2.2/schema/wfs/1.0.0/WFS-transaction.xsd000066400000000000000000000647511465244332600214530ustar00rootroot00000000000000 This is the root element for the GetFeatureWithLock request. The GetFeatureWithLock operation performs identically to a GetFeature request except that the GetFeatureWithLock request locks all the feature instances in the result set and returns a lock identifier to a client application in the response. This is the root element for a LockFeature request. The LockFeature request can be used to lock one or more feature instances. This is the root element for a Transaction request. A transaction request allows insert, update and delete operations to be performed to create, change or remove feature instances. The WFS_LockFeatureResponse element contains a report about the completion status of a LockFeature request. The WFS_TransactionResponse element contains a report about the completion status of a Transaction operation. A GetFeatureWithLock request operates identically to a GetFeature request expect that it attempts to lock the feature instances in the result set and includes a lock identifier in its response to a client. A lock identifier is an identifier generated by a Web Feature Service that a client application can use, in subsequent operations, to reference the locked set of feature instances. This type defines the LockFeature operation. The LockFeature element contains one or more Lock elements that define which features of a particular type should be locked. A lock identifier (lockId) is returned to the client application which can be used by subsequent operations to reference the locked features. The lock element is used to indicate which feature instances of particular type are to be locked. The lockAction attribute is used to indicate what a Web Feature Service should do when it encounters a feature instance that has already been locked by another client application. Valid values are ALL or SOME. ALL means that the Web Feature Service must acquire locks on all the requested feature instances. If it cannot acquire those locks then the request should fail. In this instance, all locks acquired by the operation should be released. SOME means that the Web Feature Service should lock as many of the requested features as it can. This type defines the Lock element. The Lock element defines a locking operation on feature instances of a single type. An OGC Filter is used to constrain the scope of the operation. Features to be locked can be identified individually by using their feature identifier or they can be locked by satisfying the spatial and non-spatial constraints defined in the filter. The TranactionType defines the Transaction operation. A Transaction element contains one or more Insert, Update Delete and Native elements that allow a client application to create, modify or remove feature instances from the feature repository that a Web Feature Service controls. In order for a client application to operate upon locked feature instances, the Transaction request must include the LockId element. The content of this element must be the lock identifier the client application obtained from a previous GetFeatureWithLock or LockFeature operation. If the correct lock identifier is specified the Web Feature Service knows that the client application may operate upon the locked feature instances. No LockId element needs to be specified to operate upon unlocked features. The releaseAction attribute is used to control how a Web Feature service releases locks on feature instances after a Transaction request has been processed. Valid values are ALL or SOME. A value of ALL means that the Web Feature Service should release the locks of all feature instances locked with the specified lockId, regardless or whether or not the features were actually modified. A value of SOME means that the Web Feature Service will only release the locks held on feature instances that were actually operated upon by the transaction. The lockId that the client application obtained shall remain valid and the other, unmodified, feature instances shall remain locked. If the expiry attribute was specified in the original operation that locked the feature instances, then the expiry counter will be reset to give the client application that same amount of time to post subsequent transactions against the locked features. The LockId element contains the value of the lock identifier obtained by a client application from a previous GetFeatureWithLock or LockFeature request. The Insert element is used to indicate that the Web Feature Service should create a new instance of a feature type. The feature instance is specified using GML2 and one or more feature instances to be created can be contained inside the Insert element. One or more existing feature instances can be changed by using the Update element. Changing a feature instance means that the current value of one or more properties of the feature are replaced with new values. The Update element contains one or more Property elements. A Property element contains the name or a feature property who's value is to be changed and the replacement value for that property. The Filter element is used to constrain the scope of the update operation to those features identified by the filter. Feature instances can be specified explicitly and individually using the identifier of each feature instance OR a set of features to be operated on can be identified by specifying spatial and non-spatial constraints in the filter. If no filter is specified, then the update operation applies to all feature instances. The Delete element is used to indicate that one or more feature instances should be removed from the feature repository. The Filter element is used to constrain the scope of the delete operation to those features identified by the filter. Feature instances can be specified explicitly and individually using the identifier of each feature instance OR a set of features to be operated on can be identified by specifying spatial and non-spatial constraints in the filter. If no filter is specified then an exception should be raised since it is unlikely that a client application intends to delete all feature instances. Many times, a Web Feature Service interacts with a repository that may have special vendor specific capabilities. The native element allows vendor specific command to be passed to the repository via the Web Feature Service. The vendorId attribute is used to specify the name of vendor who's vendor specific command the client application wishes to execute. In the event that a Web Feature Service does not recognize the vendorId or does not recognize the vendor specific command, the safeToIgnore attribute is used to indicate whether the exception can be safely ignored. A value of TRUE means that the Web Feature Service may ignore the command. A value of FALSE means that a Web Feature Service cannot ignore the command and an exception should be raised if a problem is encountered. The Property element is used to specify the new value of a feature property inside an Update element. The Name element contains the name of a feature property to be updated. The Value element contains the replacement value for the named property. The WFS_LockFeatureResponseType is used to define an element to contains the response to a LockFeature operation. The WFS_LockFeatureResponse includes a LockId element that contains a lock identifier. The lock identifier can be used by a client, in subsequent operations, to operate upon the locked feature instances. The LockFeature or GetFeatureWithLock operations identify and attempt to lock a set of feature instances that satisfy the constraints specified in the request. In the event that the lockAction attribute (on the LockFeature or GetFeatureWithLock elements) is set to SOME, a Web Feature Service will attempt to lock as many of the feature instances from the result set as possible. The FeaturesLocked element contains list of ogc:FeatureId elements enumerating the feature instances that a WFS actually managed to lock. In contrast to the FeaturesLocked element, the FeaturesNotLocked element contains a list of ogc:Filter elements identifying feature instances that a WFS did not manage to lock because they were already locked by another process. The WFS_TransactionResponseType defines the format of the XML document that a Web Feature Service generates in response to a Transaction request. The response includes the completion status of the transaction and the feature identifiers of any newly created feature instances. The InsertResult element contains a list of ogc:FeatureId elements that identify any newly created feature instances. The TransactionResult element contains a Status element indicating the completion status of a transaction. In the event that the transaction fails, additional element may be included to help locate which part of the transaction failed and why. The Status element contains an element indicating the completion status of a transaction. The SUCCESS element is used to indicate successful completion. The FAILED element is used to indicate that an exception was encountered. In the event that an exception was encountered while processing a transaction, a Web Feature Service may use the Locator element to try and identify the part of the transaction that failed. If the element(s) contained in a Transaction element included a handle attribute, then a Web Feature Service may report the handle to identify the offending element. The Message element may contain an exception report generated by a Web Feature Service when an exception is encountered. tinyows-1.2.2/schema/wfs/1.1.0/000077500000000000000000000000001465244332600157355ustar00rootroot00000000000000tinyows-1.2.2/schema/wfs/1.1.0/wfs.xsd000066400000000000000000002552011465244332600172610ustar00rootroot00000000000000 XML encoded WFS operation request base, for all operations except GetCapabilities. The service attribute is included to support service endpoints that implement more than one OGC service. For example, a single CGI that implements WMS, WFS and WCS services. The endpoint can inspect the value of this attribute to figure out which service should process the request. The value WFS indicates that a web feature service should process the request. This parameter is somewhat redundant in the XML encoding since the request namespace can be used to determine which service should process any give request. For example, wfs:GetCapabilities and easily be distinguished from wcs:GetCapabilities using the namespaces. The version attribute is used to indicate the version of the WFS specification that a request conforms to. All requests in this schema conform to V1.1 of the WFS specification. For WFS implementations that support more than one version of a WFS sepcification ... if the version attribute is not specified then the service should assume that the request conforms to greatest available specification version. The handle attribute allows a client application to assign a client-generated request identifier to a WFS request. The handle is included to facilitate error reporting. A WFS may report the handle in an exception report to identify the offending request or action. If the handle is not present, then the WFS may employ other means to localize the error (e.g. line numbers). The Property element is used to specify one or more properties of a feature whose values are to be retrieved by a Web Feature Service. While a Web Feature Service should endeavour to satisfy the exact request specified, in some instance this may not be possible. Specifically, a Web Feature Service must generate a valid GML3 response to a Query operation. The schema used to generate the output may include properties that are mandatory. In order that the output validates, these mandatory properties must be specified in the request. If they are not, a Web Feature Service may add them automatically to the Query before processing it. Thus a client application should, in general, be prepared to receive more properties than it requested. Of course, using the DescribeFeatureType request, a client application can determine which properties are mandatory and request them in the first place. This element may be used in place of an wfs:PropertyName element in a wfs:Query element in a wfs:GetFeature element to selectively request the traversal of nested XLinks in the returned element for the named property. This element may not be used in other requests -- GetFeatureWithLock, LockFeature, Insert, Update, Delete -- in this version of the WFS specification. This attribute indicates the depth to which nested property XLink linking element locator attribute (href) XLinks are traversed and resolved if possible. A value of "1" indicates that one linking element locator attribute (href) Xlink will be traversed and the referenced element returned if possible, but nested property XLink linking element locator attribute (href) XLinks in the returned element are not traversed. A value of "*" indicates that all nested property XLink linking element locator attribute (href) XLinks will be traversed and the referenced elements returned if possible. The range of valid values for this attribute consists of positive integers plus "*". The traverseXlinkExpiry attribute value is specified in minutes It indicates how long a Web Feature Service should wait to receive a response to a nested GetGmlObject request. Request to a WFS to perform the GetCapabilities operation. This operation allows a client to retrieve a Capabilities XML document providing metadata for the specific WFS server. The GetCapapbilities element is used to request that a Web Feature Service generate an XML document describing the organization providing the service, the WFS operations that the service supports, a list of feature types that the service can operate on and list of filtering capabilities that the service support. Such an XML document is called a capabilities document. XML encoded WFS GetCapabilities operation response. This document provides clients with service metadata about a specific service instance, including metadata about the tightly-coupled data served. If the server does not implement the updateSequence parameter, the server shall always return the complete Capabilities document, without the updateSequence parameter. When the server implements the updateSequence parameter and the GetCapabilities operation request included the updateSequence parameter with the current value, the server shall return this element with only the "version" and "updateSequence" attributes. Otherwise, all optional elements shall be included or not depending on the actual value of the Contents parameter in the GetCapabilities operation request. A list of feature types available from this server. An element of this type that describes a feature in an application namespace shall have an xml xmlns specifier, e.g. xmlns:bo="http://www.BlueOx.org/BlueOx" Name of this feature type, including any namespace prefix Title of this feature type, normally used for display to a human. Brief narrative description of this feature type, normally used for display to a human. The DefaultSRS element indicated which spatial reference system shall be used by a WFS to express the state of a spatial feature if not otherwise explicitly identified within a query or transaction request. The SRS may be indicated using either the EPSG form (EPSG:posc code) or the URL form defined in subclause 4.3.2 of refernce[2]. The OtherSRS element is used to indicate other supported SRSs within query and transaction operations. A supported SRS means that the WFS supports the transformation of spatial properties between the OtherSRS and the internal storage SRS. The effects of such transformations must be considered when determining and declaring the guaranteed data accuracy. A Web Feature Server MAY use zero or more MetadataURL elements to offer detailed, standardized metadata about the data underneath a particular feature type. The type attribute indicates the standard to which the metadata complies; the format attribute indicates how the metadata is structured. Two types are defined at present: 'TC211' or 'ISO19115' = ISO TC211 19115; 'FGDC' = FGDC CSDGM. 'ISO19139' = ISO 19139 List of GML Object types available for GetGmlObject requests List of GML Object types that WFS is capable of serving, either directly, or as validly derived types defined in a GML application schema. Name of this GML object type, including any namespace prefix An element of this type that describes a GML object in an application namespace shall have an xml xmlns specifier, e.g. xmlns:bo="http://www.BlueOx.org/BlueOx" Name of this GML Object type, including any namespace prefix. Title of this GML Object type, normally used for display to a human. Brief narrative description of this GML Object type, normally used for display to a human. The DescribeFeatureType element is used to request that a Web Feature Service generate a document describing one or more feature types. The DescribeFeatureType operation allows a client application to request that a Web Feature Service describe one or more feature types. A Web Feature Service must be able to generate feature descriptions as valid GML3 application schemas. The schemas generated by the DescribeFeatureType operation can be used by a client application to validate the output. Feature instances within the WFS interface must be specified using GML3. The schema of feature instances specified within the WFS interface must validate against the feature schemas generated by the DescribeFeatureType request. The TypeName element is used to enumerate the feature types to be described. If no TypeName elements are specified then all features should be described. The name must be a valid type that belongs to the feature content as defined by the GML Application Schema. The outputFormat attribute is used to specify what schema description language should be used to describe features. The default value of 'text/xml; subtype=3.1.1' means that the WFS must generate a GML3 application schema that can be used to validate the GML3 output of a GetFeature request or feature instances specified in Transaction operations. For the purposes of experimentation, vendor extension, or even extensions that serve a specific community of interest, other acceptable output format values may be advertised by a WFS service in the capabilities document. The meaning of such values in not defined in the WFS specification. The only proviso is such cases is that clients may safely ignore outputFormat values that do not recognize. The GetFeature element is used to request that a Web Feature Service return feature type instances of one or more feature types. A GetFeature element contains one or more Query elements that describe a query operation on one feature type. In response to a GetFeature request, a Web Feature Service must be able to generate a GML3 response that validates using a schema generated by the DescribeFeatureType request. A Web Feature Service may support other possibly non-XML (and even binary) output formats as long as those formats are advertised in the capabilities document. The resultType attribute is used to indicate what response a WFS should return to user once a GetFeature request is processed. Possible values are: results - meaning that the full response set (i.e. all the feature instances) should be returned. hits - meaning that an empty response set should be returned (i.e. no feature instances should be returned) but the "numberOfFeatures" attribute should be set to the number of feature instances that would be returned. The outputFormat attribute is used to specify the output format that the Web Feature Service should generate in response to a GetFeature or GetFeatureWithLock element. The default value of 'text/xml; subtype=gml/3.1.1' indicates that the output is an XML document that conforms to the Geography Markup Language (GML) Implementation Specification V3.1.1. For the purposes of experimentation, vendor extension, or even extensions that serve a specific community of interest, other acceptable output format values may be used to specify other formats as long as those values are advertised in the capabilities document. For example, the value WKB may be used to indicate that a Well Known Binary format be used to encode the output. The maxFeatures attribute is used to specify the maximum number of features that a GetFeature operation should generate (regardless of the actual number of query hits). This attribute indicates the depth to which nested property XLink linking element locator attribute (href) XLinks are traversed and resolved if possible. A value of "1" indicates that one linking element locator attribute (href) Xlink will be traversed and the referenced element returned if possible, but nested property XLink linking element locator attribute (href) XLinks in the returned element are not traversed. A value of "*" indicates that all nested property XLink linking element locator attribute (href) XLinks will be traversed and the referenced elements returned if possible. The range of valid values for this attribute consists of positive integers plus "*". If this attribute is not specified then no xlinks shall be resolved and the value of traverseXlinkExpiry attribute (if it specified) may be ignored. The traverseXlinkExpiry attribute value is specified in minutes. It indicates how long a Web Feature Service should wait to receive a response to a nested GetGmlObject request. This attribute is only relevant if a value is specified for the traverseXlinkDepth attribute. Indicates that a complete response should be generated by the WFS. That is, all response feature instances should be returned to the client. Indicates that an empty response should be generated with the "numberOfFeatures" attribute set (i.e. no feature instances should be returned). In this manner a client may determine the number of feature instances that a GetFeature request will return without having to actually get the entire result set back. The Query element is used to describe a single query. One or more Query elements can be specified inside a GetFeature element so that multiple queries can be executed in one request. The output from the various queries are combined in a wfs:FeatureCollection element to form the response document. The Query element is of type QueryType. The Property element is used to specify one or more properties of a feature whose values are to be retrieved by a Web Feature Service. While a Web Feature Service should endeavour to satisfy the exact request specified, in some instance this may not be possible. Specifically, a Web Feature Service must generate a valid GML3 response to a Query operation. The schema used to generate the output may include properties that are mandatory. In order that the output validates, these mandatory properties must be specified in the request. If they are not, a Web Feature Service may add them automatically to the Query before processing it. Thus a client application should, in general, be prepared to receive more properties than it requested. Of course, using the DescribeFeatureType request, a client application can determine which properties are mandatory and request them in the first place. A function may be used as a select item in a query. However, if a function is used, care must be taken to ensure that the result type matches the type in the The Filter element is used to define spatial and/or non-spatial constraints on query. Spatial constrains use GML3 to specify the constraining geometry. A full description of the Filter element can be found in the Filter Encoding Implementation Specification. The SortBy element is used specify property names whose values should be used to order (upon presentation) the set of feature instances that satisfy the query. The handle attribute allows a client application to assign a client-generated identifier for the Query. The handle is included to facilitate error reporting. If one Query in a GetFeature request causes an exception, a WFS may report the handle to indicate which query element failed. If the a handle is not present, the WFS may use other means to localize the error (e.g. line numbers). The typeName attribute is a list of one or more feature type names that indicate which types of feature instances should be included in the reponse set. Specifying more than one typename indicates that a join operation is being performed. All the names in the typeName list must be valid types that belong to this query's feature content as defined by the GML Application Schema. For systems that implement versioning, the featureVersion attribute is used to specify which version of a particular feature instance is to be retrieved. A value of ALL means that all versions should be retrieved. An integer value 'i', means that the ith version should be retrieve if it exists or the most recent version otherwise. This attribute is used to specify a specific WFS-supported SRS that should be used for returned feature geometries. The value may be the WFS StorageSRS value, DefaultRetrievalSRS value, or one of AdditionalSRS values. If no srsName value is supplied, then the features will be returned using either the DefaultRetrievalSRS, if specified, and StorageSRS otherwise. For feature types with no spatial properties, this attribute must not be specified or ignored if it is specified. Example typeName attribute value might be: typeName="ns1:Inwatera_1m=A, ns2:CoastL_1M=B" In this example, A is an alias for ns1:Inwatera_1m and B is an alias for ns2:CoastL_1M. This element is a container for the response to a GetFeature or GetFeatureWithLock (WFS-transaction.xsd) request. This type defines a container for the response to a GetFeature or GetFeatureWithLock request. If the request is GetFeatureWithLock, the lockId attribute must be populated. The lockId attribute can otherwise be safely ignored. The value of the lockId attribute is an identifier that a Web Feature Service generates when responding to a GetFeatureWithLock request. A client application can use this value in subsequent operations (such as a Transaction request) to reference the set of locked features. The timeStamp attribute should contain the date and time that the response was generated. The numberOfFeatures attribute should contain a count of the number of features in the response. That is a count of all features elements dervied from gml:AbstractFeatureType. The GetGmlObject element is used to request that a Web Feature Service return an element with a gml:id attribute value specified by an ogc:GmlObjectId. A GetGmlObjectType element contains exactly one GmlObjectId. The value of the gml:id attribute on that GmlObjectId is used as a unique key to retrieve the complex element with a gml:id attribute with the same value. This attribute indicates the depth to which nested property XLink linking element locator attribute (href) XLinks are traversed and resolved if possible. A value of "1" indicates that one linking element locator attribute (href) XLink will be traversed and the referenced element returned if possible, but nested property XLink linking element locator attribute (href) XLinks in the returned element are not traversed. A value of "*" indicates that all nested property XLink linking element locator attribute (href) XLinks will be traversed and the referenced elements returned if possible. The range of valid values for this attribute consists of positive integers plus "*". The traverseXlinkExpiry attribute value is specified in minutes. It indicates how long a Web Feature Service should wait to receive a response to a nested GetGmlObject request. This is the root element for the GetFeatureWithLock request. The GetFeatureWithLock operation performs identically to a GetFeature request except that the GetFeatureWithLock request locks all the feature instances in the result set and returns a lock identifier to a client application in the response. The lock identifier is returned to the client application using the lockId attribute define on the wfs:FeatureCollection element. A GetFeatureWithLock request operates identically to a GetFeature request expect that it attempts to lock the feature instances in the result set and includes a lock identifier in its response to a client. A lock identifier is an identifier generated by a Web Feature Service that a client application can use, in subsequent operations, to reference the locked set of feature instances. The expiry attribute is used to set the length of time (expressed in minutes) that features will remain locked as a result of a GetFeatureWithLock request. After the expiry period elapses, the locked resources must be released. If the expiry attribute is not set, then the default value of 5 minutes will be enforced. See definition of wfs:GetFeatureType. See definition of wfs:GetFeatureType. See definition of wfs:GetFeatureType. See definition of wfs:GetFeatureType. See definition of wfs:GetFeatureType. This is the root element for a LockFeature request. The LockFeature request can be used to lock one or more feature instances. This type defines the LockFeature operation. The LockFeature element contains one or more Lock elements that define which features of a particular type should be locked. A lock identifier (lockId) is returned to the client application which can be used by subsequent operations to reference the locked features. The lock element is used to indicate which feature instances of particular type are to be locked. The expiry attribute is used to set the length of time (expressed in minutes) that features will remain locked as a result of a LockFeature request. After the expiry period elapses, the locked resources must be released. If the expiry attribute is not set, then the default value of 5 minutes will be enforced. The lockAction attribute is used to indicate what a Web Feature Service should do when it encounters a feature instance that has already been locked by another client application. Valid values are ALL or SOME. ALL means that the Web Feature Service must acquire locks on all the requested feature instances. If it cannot acquire those locks then the request should fail. In this instance, all locks acquired by the operation should be released. SOME means that the Web Feature Service should lock as many of the requested features as it can. This type defines the Lock element. The Lock element defines a locking operation on feature instances of a single type. An OGC Filter is used to constrain the scope of the operation. Features to be locked can be identified individually by using their feature identifier or they can be locked by satisfying the spatial and non-spatial constraints defined in the filter. The handle attribute allows a client application to assign a client-generated request identifier to a Lock action. The handle is included to facilitate error reporting. If one of a set of Lock actions failed while processing a LockFeature request, a WFS may report the handle in an exception report to localize the error. If a handle is not present then a WFS may employ some other means of localizing the error (e.g. line number). The value of the typeName attribute is the name of the feature type to be updated. The name specified must be a valid type that belongs to the feature content as defined by the GML Application Schema. The LockFeatureResponse element contains a report about the completion status of a LockFeature request. The LockFeatureResponseType is used to define an element to contains the response to a LockFeature operation. The LockFeatureResponse includes a LockId element that contains a lock identifier. The lock identifier can be used by a client, in subsequent operations, to operate upon the locked feature instances. The LockFeature or GetFeatureWithLock operations identify and attempt to lock a set of feature instances that satisfy the constraints specified in the request. In the event that the lockAction attribute (on the LockFeature or GetFeatureWithLock elements) is set to SOME, a Web Feature Service will attempt to lock as many of the feature instances from the result set as possible. The FeaturesLocked element contains list of ogc:FeatureId elements enumerating the feature instances that a WFS actually managed to lock. In contrast to the FeaturesLocked element, the FeaturesNotLocked element contains a list of ogc:Filter elements identifying feature instances that a WFS did not manage to lock because they were already locked by another process. This is the root element for a Transaction request. A transaction request allows insert, update and delete operations to be performed to create, change or remove feature instances. The TransactionType defines the Transaction operation. A Transaction element contains one or more Insert, Update Delete and Native elements that allow a client application to create, modify or remove feature instances from the feature repository that a Web Feature Service controls. In order for a client application to operate upon locked feature instances, the Transaction request must include the LockId element. The content of this element must be the lock identifier the client application obtained from a previous GetFeatureWithLock or LockFeature operation. If the correct lock identifier is specified the Web Feature Service knows that the client application may operate upon the locked feature instances. No LockId element needs to be specified to operate upon unlocked features. The releaseAction attribute is used to control how a Web Feature service releases locks on feature instances after a Transaction request has been processed. Valid values are ALL or SOME. A value of ALL means that the Web Feature Service should release the locks of all feature instances locked with the specified lockId regardless or whether or not the features were actually modified. A value of SOME means that the Web Feature Service will only release the locks held on feature instances that were actually operated upon by the transaction. The lockId that the client application obtained shall remain valid and the other, unmodified, feature instances shall remain locked. If the expiry attribute was specified in the original operation that locked the feature instances, then the expiry counter will be reset to give the client application that same amount of time to post subsequent transactions against the locked features. The LockId element contains the value of the lock identifier obtained by a client application from a previous GetFeatureWithLock or LockFeature request. The Insert element is used to indicate that the Web Feature Service should create a new instance of a feature type. The feature instance is specified using GML3 and one or more feature instances to be created can be contained inside the Insert element. An Insert element may contain a feature collection or one or more feature instances to be inserted into the repository. The idgen attribute control how a WFS generates identifiers from newly created feature instances using the Insert action. The default action is to have the WFS generate a new id for the features. This is also backward compatible with WFS 1.0 where the only action was for the WFS to generate an new id. The handle attribute allows a client application to assign a client-generated request identifier to an Insert action. The handle is included to facilitate error reporting. If an Insert action in a Transaction request fails, then a WFS may include the handle in an exception report to localize the error. If no handle is included of the offending Insert element then a WFS may employee other means of localizing the error (e.g. line number). This inputFormat attribute is used to indicate the format used to encode a feature instance in an Insert element. The default value of 'text/xml; subtype=gml/3.1.1' is used to indicate that feature encoding is GML3. Another example might be 'text/xml; subtype=gml/2.1.2' indicating that the feature us encoded in GML2. A WFS must declare in the capabilities document, using a Parameter element, which version of GML it supports. ===== PAV 12NOV2004 ==== WHY IS THIS HERE? WOULDN'T WE KNOW THE INCOMING SRS FROM THE GML GEOMETRY ELEMENTS? I ASSUME THAT IF THE INCOMING SRS DOES NOT MATCH ONE OF THE STORAGE SRS(s) THEN THE WFS WOULD EITHER PROJECT INTO THE STORAGE SRS OR RAISE AN EXCEPTION. The UseExsiting value indicates that WFS should not generate a new feature identifier for the feature being inserted into the repositry. Instead, the WFS should use the identifier encoded if the feature. If a duplicate exists then the WFS should raise an exception. The ReplaceDuplicate value indicates that WFS should not generate a new feature identifier for the feature being inserted into the repositry. Instead, the WFS should use the identifier encoded if the feature. If a duplicate exists then the WFS should replace the existing feature instance with the one encoded in the Insert action. The GenerateNew value indicates that WFS should generate a new unique feature identifier for the feature being inserted into the repositry. One or more existing feature instances can be changed by using the Update element. Changing or updating a feature instance means that the current value of one or more properties of the feature are replaced with new values. The Update element contains one or more Property elements. A Property element contains the name or a feature property who's value is to be changed and the replacement value for that property. The Filter element is used to constrain the scope of the update operation to those features identified by the filter. Feature instances can be specified explicitly and individually using the identifier of each feature instance OR a set of features to be operated on can be identified by specifying spatial and non-spatial constraints in the filter. If no filter is specified then update operation applies to all feature instances. The handle attribute allows a client application to assign a client-generated request identifier to an Insert action. The handle is included to facilitate error reporting. If an Update action in a Transaction request fails, then a WFS may include the handle in an exception report to localize the error. If no handle is included of the offending Insert element then a WFS may employee other means of localizing the error (e.g. line number). The value of the typeName attribute is the name of the feature type to be updated. The name specified must be a valid type that belongs to the feature content as defined by the GML Application Schema. This inputFormat attribute is used to indicate the format used to encode a feature instance in an Insert element. The default value of 'text/xml; subtype=gml/3.1.1' is used to indicate that feature encoding is GML3. Another example might be 'text/xml; subtype=gml/2.1.2' indicating that the feature us encoded in GML2. A WFS must declare in the capabilities document, using a Parameter element, which version of GML it supports. DO WE NEED THIS HERE? The Property element is used to specify the new value of a feature property inside an Update element. The Name element contains the name of a feature property to be updated. The Value element contains the replacement value for the named property. The Delete element is used to indicate that one or more feature instances should be removed from the feature repository. The Filter element is used to constrain the scope of the delete operation to those features identified by the filter. Feature instances can be specified explicitly and individually using the identifier of each feature instance OR a set of features to be operated on can be identified by specifying spatial and non-spatial constraints in the filter. If no filter is specified then an exception should be raised since it is unlikely that a client application intends to delete all feature instances. The handle attribute allows a client application to assign a client-generated request identifier to an Insert action. The handle is included to facilitate error reporting. If a Delete action in a Transaction request fails, then a WFS may include the handle in an exception report to localize the error. If no handle is included of the offending Insert element then a WFS may employee other means of localizing the error (e.g. line number). The value of the typeName attribute is the name of the feature type to be updated. The name specified must be a valid type that belongs to the feature content as defined by the GML Application Schema. Many times, a Web Feature Service interacts with a repository that may have special vendor specific capabilities. The native element allows vendor specific command to be passed to the repository via the Web Feature Service. The vendorId attribute is used to specify the name of vendor who's vendor specific command the client application wishes to execute. In the event that a Web Feature Service does not recognize the vendorId or does not recognize the vendor specific command, the safeToIgnore attribute is used to indicate whether the exception can be safely ignored. A value of TRUE means that the Web Feature Service may ignore the command. A value of FALSE means that a Web Feature Service cannot ignore the command and an exception should be raised if a problem is encountered. The TransactionResponse element contains a report about the completion status of a Transaction operation. The response for a transaction request that was successfully completed. If the transaction failed for any reason, an exception report is returned instead. The TransactionSummary element is used to summarize the number of feature instances affected by the transaction. For systems that do not support atomic transactions, the TransactionResults element may be used to report exception codes and messages for all actions of a transaction that failed to execute successfully. A transaction is a collection of Insert,Update and Delete actions. The Update and Delete actions modify features that already exist. The Insert action, however, creates new features. The InsertResults element is used to report the identifiers of the newly created features. The version attribute contains the version of the request that generated this response. So a V1.1.0 transaction request generates a V1.1.0 transaction response. Reports the total number of features affected by some kind of write action (i.e, insert, update, delete). The TransactionResults element may be used to report exception codes and messages for all actions of a transaction that failed to complete successfully. The Action element reports an exception code and exception message indicating why the corresponding action of a transaction request failed. If an action fails, the message element may be used to supply an exception message. The locator attribute is used to locate an action within a <Transaction> element. The value of the locator attribute is either a string that is equal to the value of the handle attribute specified on an <Insert>, <Update> or <Delete> action. If a value is not specified for the handle attribute then a WFS may employ some other means of locating the action. For example, the value of the locator attribute may be an integer indicating the order of the action (i.e. 1=First action, 2=Second action, etc.). The code attribute may be used to specify an exception code indicating why an action failed. Reports the list of identifiers of all features created by a transaction request. New features are created using the Insert action and the list of idetifiers must be presented in the same order as the Insert actions were encountered in the transaction request. Features may optionally be correlated with identifiers using the handle attribute (if it was specified on the Insert element). This is the feature identifier for the newly created feature. The feature identifier may be generated by the WFS or provided by the client (depending on the value of the idgen attribute). In all cases of idgen values, the feature id must be reported here. If the insert element that generated this feature had a value for the "handle" attribute then a WFS may report it using this attribute to correlate the feature created with the action that created it. tinyows-1.2.2/schema/xlink/000077500000000000000000000000001465244332600156265ustar00rootroot00000000000000tinyows-1.2.2/schema/xlink/1.0.0/000077500000000000000000000000001465244332600162625ustar00rootroot00000000000000tinyows-1.2.2/schema/xlink/1.0.0/xlinks.xsd000066400000000000000000000122011465244332600203060ustar00rootroot00000000000000 xlinks.xsd v3.0b2 2001-07 GML 3.0 candidate xlinks schema. Copyright (c) 2001 OGC, All Rights Reserved. The 'show' attribute is used to communicate the desired presentation of the ending resource on traversal from the starting resource; it's value should be treated as follows: new - load ending resource in a new window, frame, pane, or other presentation context replace - load the resource in the same window, frame, pane, or other presentation context embed - load ending resource in place of the presentation of the starting resource other - behavior is unconstrained; examine other markup in the link for hints none - behavior is unconstrained The 'actuate' attribute is used to communicate the desired timing of traversal from the starting resource to the ending resource; it's value should be treated as follows: onLoad - traverse to the ending resource immediately on loading the starting resource onRequest - traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose other - behavior is unconstrained; examine other markup in link for hints none - behavior is unconstrained tinyows-1.2.2/src/000077500000000000000000000000001465244332600140305ustar00rootroot00000000000000tinyows-1.2.2/src/fe/000077500000000000000000000000001465244332600144225ustar00rootroot00000000000000tinyows-1.2.2/src/fe/fe_comparison_ops.c000066400000000000000000000234321465244332600202770ustar00rootroot00000000000000/* Copyright (c) <2007-2012> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include "../ows/ows.h" /* * Return expression matching the comparison operators following : * PropertyIsEqualTo, PropertyIsNotEqualTo, PropertyIsLessThan * PropertyIsGreaterThan, PropertyIsLessThanOrEqualTo, PropertyIsGreaterThanOrEqualTo */ static buffer *fe_binary_comparison_op(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { buffer *tmp, *type, *name; xmlChar *matchcase; bool bool_type = false; bool sensitive_case = true; assert(o && typename && fe && n); tmp = buffer_init(); name = buffer_init(); buffer_add_str(name, (char *) n->name); /* By default, comparison is case sensitive */ matchcase = xmlGetProp(n, (xmlChar *) "matchCase"); if (matchcase && !strcmp((char *) matchcase, "false")) sensitive_case = false; xmlFree(matchcase); n = n->children; while (n->type != XML_ELEMENT_NODE) n = n->next; /* eat spaces */ /* If comparison are explicitly not case sensitive */ if (!sensitive_case) buffer_add_str(fe->sql, "lower("); tmp = fe_expression(o, typename, fe, tmp, n); if (fe->error_code) { buffer_free(tmp); buffer_free(name); return fe->sql; } buffer_copy(fe->sql, tmp); if (buffer_cmp(name, "PropertyIsEqualTo") || buffer_cmp(name, "PropertyIsNotEqualTo")) { /* remove brackets (if any) and quotation marks */ if (tmp->buf[0] == '(') { if (tmp->use < 3) { buffer_free(tmp); buffer_free(name); fe->error_code = FE_ERROR_FILTER; return fe->sql; } buffer_pop(tmp, 2); buffer_shift(tmp, 2); } else { if (tmp->use < 1) { buffer_free(tmp); buffer_free(name); fe->error_code = FE_ERROR_FILTER; return fe->sql; } buffer_pop(tmp, 1); buffer_shift(tmp, 1); } type = ows_psql_type(o, ows_layer_prefix_to_uri(o->layers, typename), tmp); if (buffer_cmp(type, "bool")) bool_type = true; } if (!sensitive_case) buffer_add_str(fe->sql, ")"); if (buffer_cmp(name, "PropertyIsEqualTo")) buffer_add_str(fe->sql, " = "); if (buffer_cmp(name, "PropertyIsNotEqualTo")) buffer_add_str(fe->sql, " != "); if (buffer_cmp(name, "PropertyIsLessThan")) buffer_add_str(fe->sql, " < "); if (buffer_cmp(name, "PropertyIsGreaterThan")) buffer_add_str(fe->sql, " > "); if (buffer_cmp(name, "PropertyIsLessThanOrEqualTo")) buffer_add_str(fe->sql, " <= "); if (buffer_cmp(name, "PropertyIsGreaterThanOrEqualTo")) buffer_add_str(fe->sql, " >= "); buffer_empty(tmp); n = n->next; while (n->type != XML_ELEMENT_NODE) n = n->next; if (!sensitive_case) buffer_add_str(fe->sql, "lower("); tmp = fe_expression(o, typename, fe, tmp, n); if (fe->error_code) { buffer_free(tmp); buffer_free(name); return fe->sql; } /* If property is a boolean, XML content transformation */ if (bool_type) { if (buffer_cmp(tmp, "'1'")) buffer_add_str(fe->sql, "'t'"); if (buffer_cmp(tmp, "'0'")) buffer_add_str(fe->sql, "'f'"); } else buffer_copy(fe->sql, tmp); if (!sensitive_case) buffer_add_str(fe->sql, ")"); buffer_free(tmp); buffer_free(name); return fe->sql; } /* * String comparison operator with pattern matching * FIXME : remains a problem when escaping \* -> \% */ static buffer *fe_property_is_like(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { xmlChar *content, *wildcard, *singlechar, *escape, *matchcase; buffer *pg_string; char *escaped; bool sensitive_case = true; assert(o && typename && fe && n); wildcard = xmlGetProp(n, (xmlChar *) "wildCard"); singlechar = xmlGetProp(n, (xmlChar *) "singleChar"); matchcase = xmlGetProp(n, (xmlChar *) "matchCase"); if (ows_version_get(o->request->version) == 100) escape = xmlGetProp(n, (xmlChar *) "escape"); else escape = xmlGetProp(n, (xmlChar *) "escapeChar"); /* By default, comparison is case sensitive */ if (matchcase && !strcmp((char *) matchcase, "false")) sensitive_case = false; n = n->children; while (n->type != XML_ELEMENT_NODE) n = n->next; /* eat spaces */ /* If comparison are explicitly not case sensitive */ if (!sensitive_case) buffer_add_str(fe->sql, "LOWER("); /* We need to cast as varchar at least for timestamp PostgreSQL data type */ buffer_add_str(fe->sql, " CAST(\""); fe->sql = fe_property_name(o, typename, fe, fe->sql, n, false, true); buffer_add_str(fe->sql, "\" AS varchar)"); if (!sensitive_case) { buffer_add_str(fe->sql, ") LIKE LOWER(E"); } else { buffer_add_str(fe->sql, " LIKE E"); } n = n->next; while (n->type != XML_ELEMENT_NODE) n = n->next; /* eat spaces */ content = xmlNodeGetContent(n->children); pg_string = buffer_init(); buffer_add_str(pg_string, (char *) content); /* Replace the wildcard,singlechar and escapechar */ if ((char *) wildcard && (char *) singlechar && (char *) escape) { if (strlen((char *) escape)) pg_string = buffer_replace(pg_string, (char *) escape, "\\\\"); if (strlen((char *) wildcard)) pg_string = buffer_replace(pg_string, (char *) wildcard, "%"); if (strlen((char *) singlechar)) pg_string = buffer_replace(pg_string, (char *) singlechar, "_"); } else fe->error_code = FE_ERROR_FILTER; buffer_add_str(fe->sql, "'"); escaped = ows_psql_escape_string(o, pg_string->buf); if (escaped) { buffer_add_str(fe->sql, escaped); free(escaped); } buffer_add_str(fe->sql, "'"); if (!sensitive_case) buffer_add_str(fe->sql, ")"); xmlFree(content); xmlFree(wildcard); xmlFree(singlechar); xmlFree(matchcase); xmlFree(escape); buffer_free(pg_string); return fe->sql; } /* * Check if the value of a property is null */ static buffer *fe_property_is_null(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { assert(o && typename && fe && n); n = n->children; while (n->type != XML_ELEMENT_NODE) n = n->next; /* eat spaces */ buffer_add(fe->sql, '"'); fe->sql = fe_property_name(o, typename, fe, fe->sql, n, false, true); buffer_add_str(fe->sql, "\" isnull"); return fe->sql; } /* * Check if property is between two boundary values */ static buffer *fe_property_is_between(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { buffer *tmp; assert(o && typename && fe && n); tmp = buffer_init(); n = n->children; while (n->type != XML_ELEMENT_NODE) n = n->next; /* eat spaces */ tmp = fe_expression(o, typename, fe, tmp, n); buffer_copy(fe->sql, tmp); buffer_empty(tmp); buffer_add_str(fe->sql, " Between "); n = n->next; while (n->type != XML_ELEMENT_NODE) n = n->next; /* eat spaces */ tmp = fe_expression(o, typename, fe, tmp, n->children); buffer_copy(fe->sql, tmp); buffer_empty(tmp); buffer_add_str(fe->sql, " And "); n = n->next; while (n->type != XML_ELEMENT_NODE) n = n->next; /* eat spaces */ tmp = fe_expression(o, typename, fe, tmp, n->children); buffer_copy(fe->sql, tmp); buffer_free(tmp); return fe->sql; } /* * Check if the string is a comparison operator */ bool fe_is_comparison_op(char *name) { assert(name); /* Case sensitive comparison as specified in GML standard */ if ( !strcmp(name, "PropertyIsEqualTo") || !strcmp(name, "PropertyIsNotEqualTo") || !strcmp(name, "PropertyIsLessThan") || !strcmp(name, "PropertyIsGreaterThan") || !strcmp(name, "PropertyIsLessThanOrEqualTo") || !strcmp(name, "PropertyIsGreaterThanOrEqualTo") || !strcmp(name, "PropertyIsLike") || !strcmp(name, "PropertyIsNull") || !strcmp(name, "PropertyIsBetween")) return true; return false; } /* * Execute the matching comparison function * CAUTION : call fe_is_comparison_op before calling this function, */ buffer *fe_comparison_op(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { assert(o && typename && fe && n); /* Case sensitive comparison as specified in GML standard */ if ( !strcmp((char *) n->name, "PropertyIsEqualTo") || !strcmp((char *) n->name, "PropertyIsNotEqualTo") || !strcmp((char *) n->name, "PropertyIsLessThan") || !strcmp((char *) n->name, "PropertyIsGreaterThan") || !strcmp((char *) n->name, "PropertyIsLessThanOrEqualTo") || !strcmp((char *) n->name, "PropertyIsGreaterThanOrEqualTo")) fe->sql = fe_binary_comparison_op(o, typename, fe, n); else if (!strcmp((char *) n->name, "PropertyIsLike")) fe->sql = fe_property_is_like(o, typename, fe, n); else if (!strcmp((char *) n->name, "PropertyIsNull")) fe->sql = fe_property_is_null(o, typename, fe, n); else if (!strcmp((char *) n->name, "PropertyIsBetween")) fe->sql = fe_property_is_between(o, typename, fe, n); else fe->error_code = FE_ERROR_FILTER; return fe->sql; } tinyows-1.2.2/src/fe/fe_error.c000066400000000000000000000110621465244332600163710ustar00rootroot00000000000000/* Copyright (c) <2007-2012> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include "../ows/ows.h" /* * Call ows_error with the matching message */ void fe_error(ows * o, filter_encoding * fe) { assert(o); assert(fe); if (fe->error_code == FE_ERROR_FEATUREID) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "Featureid must match layer.id", "FILTER"); } else if (fe->error_code == FE_ERROR_FILTER) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "Filter parameter doesn't validate WFS Schema", "FILTER"); } else if (fe->error_code == FE_ERROR_BBOX) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "Bbox must match xmin,ymin,xmax,ymax", "FILTER"); } else if (fe->error_code == FE_ERROR_PROPERTYNAME) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "PropertyName not available", "FILTER"); } else if (fe->error_code == FE_ERROR_GEOM_PROPERTYNAME) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "Geometry PropertyName not available", "FILTER"); } else if (fe->error_code == FE_ERROR_UNITS) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "Units not supported, use 'meters' or 'kilometers'", "FILTER"); } else if (fe->error_code == FE_ERROR_GEOMETRY) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "Bad geometry", "FILTER"); } else if (fe->error_code == FE_ERROR_FID) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "Only one allowed at once among FeatureId and GmlObjectId)", "FILTER"); } else if (fe->error_code == FE_ERROR_SRS) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "SrsName isn't valid", "FILTER"); } else if (fe->error_code == FE_ERROR_FUNCTION) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "Unknown Function Name used in Filter", "FILTER"); } else if (fe->error_code == FE_ERROR_NAMESPACE) { filter_encoding_free(fe); ows_error(o, OWS_ERROR_INVALID_PARAMETER_VALUE, "Filter Element contains incoherent XML Namespaces", "FILTER"); } } /* * Fill a buffer with a human understable message */ buffer *fill_fe_error(ows * o, filter_encoding * fe) { buffer *result; assert(o); assert(fe); result = buffer_init(); if (fe->error_code == FE_ERROR_FEATUREID) buffer_add_str(result, "Featureid must match layer.id"); else if (fe->error_code == FE_ERROR_FILTER) buffer_add_str(result, "Filter parameter doesn't validate the filter.xsd schema. Check your xml"); else if (fe->error_code == FE_ERROR_BBOX) buffer_add_str(result, "Bbox must match xmin,ymin,xmax,ymax"); else if (fe->error_code == FE_ERROR_PROPERTYNAME) buffer_add_str(result, "PropertyName not available"); else if (fe->error_code == FE_ERROR_GEOM_PROPERTYNAME) buffer_add_str(result, "Geometry PropertyName not available"); else if (fe->error_code == FE_ERROR_UNITS) buffer_add_str(result, "Units not supported, use 'meters' or 'kilometers'"); else if (fe->error_code == FE_ERROR_GEOMETRY) buffer_add_str(result, "Bad geometry"); else if (fe->error_code == FE_ERROR_FID) buffer_add_str(result, "Only one type of identifier allowed (FeatureId or GmlObjectId)"); else if (fe->error_code == FE_ERROR_SRS) buffer_add_str(result, "SrsName isn't valid"); return result; } /* * vim: expandtab sw=4 ts=4 */ tinyows-1.2.2/src/fe/fe_filter.c000066400000000000000000000361231465244332600165320ustar00rootroot00000000000000/* Copyright (c) <2007-2012> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include "../ows/ows.h" /* * Initialize filter_encoding structure */ filter_encoding *filter_encoding_init() { filter_encoding *fe; fe = malloc(sizeof(filter_encoding)); assert(fe); fe->sql = buffer_init(); fe->error_code = FE_NO_ERROR; fe->in_not = false; fe->is_numeric = false; return fe; } /* * Release filter_encoding structure */ void filter_encoding_free(filter_encoding * fe) { assert(fe); buffer_free(fe->sql); free(fe); fe = NULL; } #ifdef OWS_DEBUG /* * Print filter_encoding structure */ void filter_encoding_flush(filter_encoding * fe, FILE * output) { assert(fe); assert(output); fprintf(output, "[\n"); if (fe->sql) { fprintf(output, "sql -> "); buffer_flush(fe->sql, output); fprintf(output, "\n"); } fprintf(output, " error code -> %d\n]\n", fe->error_code); } /* * Parse an XML node, used for debug purposes */ void fe_node_flush(xmlNodePtr node, FILE * output) { xmlNodePtr n; xmlAttr *att; xmlChar *content = NULL; assert(node); assert(output); if (node->type == XML_ELEMENT_NODE) { for (n = node; n; n = n->next) { fprintf(output, "name:%s\n", n->name); for (att = n->properties; att ; att = att->next) fprintf(output, "%s=%s\n", att->name, (char *) xmlNodeGetContent(att->children)); if (n->children) fe_node_flush(n->children, output); } } else if ((node->type == XML_CDATA_SECTION_NODE) || (node->type == XML_TEXT_NODE)) { content = xmlNodeGetContent(node); fprintf(output, "%s\n", content); xmlFree(content); } } #endif /* * Recursive function which eval a prefixed expression and * return the matching string */ buffer * fe_expression(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { char *escaped; xmlChar *content; assert(o && typename && fe && sql); if (!n) return sql; if (!strcmp((char *) n->name, "Function")) return fe_function(o, typename, fe, sql, n); /* Open a bracket when there is a 'grandchildren' elements */ if (n->children) { if (n->children->type == XML_ELEMENT_NODE && n->children->children) buffer_add_str(sql, "("); else if (n->children->next && (n->children->next->children)) buffer_add_str(sql, "("); } /* Eval the left part of the expression */ sql = fe_expression(o, typename, fe, sql, n->children); content = xmlNodeGetContent(n); /* Order here is meaningfull (i.e Arithmetic then PropertyName then Literal) */ if (!strcmp((char *) n->name, "Add")) buffer_add_str(sql, " + "); else if (!strcmp((char *) n->name, "Sub")) buffer_add_str(sql, " - "); else if (!strcmp((char *) n->name, "Mul")) buffer_add_str(sql, " * "); else if (!strcmp((char *) n->name, "Div")) buffer_add_str(sql, " / "); else if (!strcmp((char *) n->name, "PropertyName")) { buffer_add(sql, '"'); sql = fe_property_name(o, typename, fe, sql, n, false, true); buffer_add(sql, '"'); } else if (!strcmp((char *) n->name, "Literal")) { if (!fe->is_numeric) buffer_add_str(sql, "'"); escaped = ows_psql_escape_string(o, (char *) content); if (escaped) { buffer_add_str(sql, escaped); free(escaped); } if (!fe->is_numeric) buffer_add_str(sql, "'"); } else if (n->type != XML_ELEMENT_NODE) { sql = fe_expression(o, typename, fe, sql, n->next); } xmlFree(content); /* Eval the right part of the expression */ if (n->children && n->children->next) { if (n->children->type == XML_ELEMENT_NODE && n->children->next->type == XML_ELEMENT_NODE) sql = fe_expression(o, typename, fe, sql, n->children->next); else sql = fe_expression(o, typename, fe, sql, n->children->next->next); content = xmlNodeGetContent(n->children->next); /* If children element is empty */ if (check_regexp((char *) content, "^$") == 1) buffer_add_str(sql, "''"); /* Close a bracket when there are not empty children elements */ else if (check_regexp((char *) content, " +") != 1) buffer_add_str(sql, ")"); xmlFree(content); } return sql; } /* * Transform an Xpath expression into a string propertyname */ buffer *fe_xpath_property_name(ows * o, buffer * typename, buffer * property) { buffer *prop_name; assert(o && typename && property); if (check_regexp(property->buf, "\\*\\[position")) buffer_shift(property, 13); /* Remove '*[position()=' */ else buffer_shift(property, 2); /* Remove '*[' */ buffer_pop(property, 1); /* Remove ']' */ /* Retrieve the matching column name from the number of the column */ prop_name = ows_psql_column_name(o, typename, atoi(property->buf)); buffer_empty(property); buffer_copy(property, prop_name); buffer_free(prop_name); return property; } /* * Check if propertyName is valid and return the appropriate string */ buffer *fe_property_name(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n, bool check_geom_column, bool mandatory) { xmlChar *content; array *prop_table; buffer *tmp, *layer_name; list *l, *ll; assert(o && typename && n && fe && sql); while (n->type != XML_ELEMENT_NODE) n = n->next; /* eat spaces */ layer_name = ows_layer_prefix_to_uri(o->layers, typename); prop_table = ows_psql_describe_table(o, layer_name); assert(prop_table); /* should never happens as Typename checked previsously */ content = xmlNodeGetContent(n); tmp = buffer_from_str((char *) content); /* Check if propertyname is an Xpath expression */ if (check_regexp(tmp->buf, "\\*\\[")) tmp = fe_xpath_property_name(o, typename, tmp); /* If propertyname have an Xpath suffix */ /* FIXME i just can't understand meaning of this use case */ if (check_regexp(tmp->buf, ".*\\[[0-9]+\\]")) { l = list_explode('[', tmp); buffer_empty(tmp); buffer_copy(tmp, l->first->value); list_free(l); } /* Check if propertyname is available */ ll = list_init(); list_add_by_copy(ll, layer_name); tmp = wfs_request_remove_prop_ns_prefix(o, tmp, ll); list_free(ll); if (array_is_key(prop_table, tmp->buf)) { buffer_copy(sql, tmp); fe->is_numeric = ows_psql_is_numeric(array_get(prop_table, tmp->buf)); if (buffer_cmp(tmp, "intProperty")) fe->is_numeric = true; } else if (mandatory) fe->error_code = FE_ERROR_PROPERTYNAME; if (mandatory && check_geom_column && !ows_psql_is_geometry_column(o, layer_name, tmp)) fe->error_code = FE_ERROR_GEOM_PROPERTYNAME; buffer_free(tmp); xmlFree(content); return sql; } /* * Check if featureId or GmlObjectId are valid and return the appropriate string */ buffer *fe_feature_id(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { char *escaped; list *fe_list; bool feature_id, gid; xmlChar *fid = NULL; buffer *buf_fid, *id_name = NULL; assert(o && typename && n && fe); for (feature_id = gid = false ; n ; n = n->next) { if (n->type == XML_ELEMENT_NODE) { buf_fid = buffer_init(); /* retrieve the property fid */ if (!strcmp((char *) n->name, "FeatureId")) { feature_id = true; /* only one type of identifier element must be included */ if (!gid) fid = xmlGetProp(n, (xmlChar *) "fid"); else { fe->error_code = FE_ERROR_FID; buffer_free(buf_fid); return fe->sql; } } /* retrieve the property gml:id */ if (!strcmp((char *) n->name, "GmlObjectId")) { gid = true; /* only one type of identifier element must be included */ if (feature_id == false) fid = xmlGetProp(n, (xmlChar *) "id"); else { fe->error_code = FE_ERROR_FID; buffer_free(buf_fid); return fe->sql; } } buffer_add_str(buf_fid, (char *) fid); fe_list = list_explode('.', buf_fid); xmlFree(fid); /* Check if the layer_name match the typename queried */ if (fe_list->first && !buffer_cmp(fe_list->first->value, (ows_layer_no_uri(o->layers, ows_layer_prefix_to_uri(o->layers, typename)))->buf)) { buffer_add_str(fe->sql, " FALSE"); /* We still execute the query */ list_free(fe_list); buffer_free(buf_fid); continue; } /* If there is no id column, raise an error */ id_name = ows_psql_id_column(o, ows_layer_prefix_to_uri(o->layers, typename)); if (!id_name || !id_name->use) { fe->error_code = FE_ERROR_FEATUREID; list_free(fe_list); buffer_free(buf_fid); return fe->sql; } buffer_copy(fe->sql, id_name); buffer_add_str(fe->sql, " = \'"); if (fe_list->last) escaped = ows_psql_escape_string(o, fe_list->last->value->buf); else escaped = ows_psql_escape_string(o, buf_fid->buf); if (escaped) { buffer_add_str(fe->sql, escaped); free(escaped); } buffer_add_str(fe->sql, "\'"); list_free(fe_list); buffer_free(buf_fid); } if (n->next && n->next->type == XML_ELEMENT_NODE) buffer_add_str(fe->sql, " OR "); } return fe->sql; } /* * Translate an XML filter to a filter encoding structure with a buffer * containing a where condition of a SQL request usable into PostGis * and an error code if an error occured */ filter_encoding *fe_filter(ows * o, filter_encoding * fe, buffer * typename, buffer * xmlchar) { buffer * schema_path; xmlDocPtr xmldoc; xmlNodePtr n; int ret = -1; assert(o && fe && typename && xmlchar); /* No validation if Filter came from KVP method FIXME: really, but why ? */ if (o->check_schema && o->request->method == OWS_METHOD_XML) { schema_path = buffer_init(); buffer_copy(schema_path, o->schema_dir); if (ows_version_get(o->request->version) == 100) { buffer_add_str(schema_path, WFS_SCHEMA_100); ret = ows_schema_validation(o, schema_path, xmlchar, true, WFS_SCHEMA_TYPE_100); } else { buffer_add_str(schema_path, WFS_SCHEMA_110); ret = ows_schema_validation(o, schema_path, xmlchar, true, WFS_SCHEMA_TYPE_110); } if (ret != 0) { buffer_free(schema_path); fe->error_code = FE_ERROR_FILTER; return fe; } buffer_free(schema_path); } xmldoc = xmlParseMemory(xmlchar->buf, xmlchar->use); if (!xmldoc) { fe->error_code = FE_ERROR_FILTER; xmlFreeDoc(xmldoc); return fe; } if (!ows_libxml_check_namespace(o, xmldoc->children)) { fe->error_code = FE_ERROR_NAMESPACE; xmlFreeDoc(xmldoc); return fe; } n = xmldoc->children->children; /* jump to the next element if there are spaces */ while (n->type != XML_ELEMENT_NODE) n = n->next; if (fe_is_comparison_op((char *) n->name)) fe->sql = fe_comparison_op(o, typename, fe, n); if (fe_is_spatial_op((char *) n->name)) fe->sql = fe_spatial_op(o, typename, fe, n); if (fe_is_logical_op((char *) n->name)) fe->sql = fe_logical_op(o, typename, fe, n); if (!strcmp((char *) n->name, "FeatureId")) fe->sql = fe_feature_id(o, typename, fe, n); else if (!strcmp((char *) n->name, "GmlObjectId") && ows_version_get(o->request->version) == 110) fe->sql = fe_feature_id(o, typename, fe, n); /* FIXME Is FeatureId should really have priority ? */ xmlFreeDoc(xmldoc); return fe; } /* * Transform bbox parameter into WHERE statement of a FE->SQL request */ buffer *fe_kvp_bbox(ows * o, wfs_request * wr, buffer * layer_name, ows_bbox * bbox) { buffer *where; list *geom; list_node *ln; int srid = -1; bool transform = false; assert(o && wr && layer_name && bbox); where = buffer_init(); geom = ows_psql_geometry_column(o, layer_name); buffer_add_str(where, " WHERE"); if (wr->srs) { srid = ows_srs_get_srid_from_layer(o, layer_name); transform = true; } /* BBOX optional crsuri parameter since WFS 1.1 */ if (wr->bbox->srs && (wr->bbox->srs->srid != wr->srs->srid)) { srid = wr->srs->srid; transform = true; } for (ln = geom->first ; ln ; ln = ln->next) { /* We use _ST_Intersects and && operator rather than ST_Intersects for performances issues */ buffer_add_str(where, " (_ST_Intersects("); if (transform) buffer_add_str(where, "ST_Transform("); buffer_add_str(where, "\""); buffer_copy(where, ln->value); buffer_add_str(where, "\","); if (transform) { buffer_add_int(where, srid); buffer_add_str(where, "),"); } if (transform) buffer_add_str(where, "ST_Transform("); ows_bbox_to_query(o, wr->bbox, where); if (transform) { buffer_add_str(where, ","); buffer_add_int(where, srid); buffer_add_str(where, ")"); } buffer_add_str(where, ") AND "); if (transform) buffer_add_str(where, "ST_Transform("); buffer_add_str(where, "\""); buffer_copy(where, ln->value); buffer_add_str(where, "\""); if (transform) { buffer_add_str(where, ","); buffer_add_int(where, srid); buffer_add_str(where, ")"); } buffer_add_str(where, " && "); if (transform) buffer_add_str(where, "ST_Transform("); ows_bbox_to_query(o, wr->bbox, where); if (transform) { buffer_add_str(where, ","); buffer_add_int(where, srid); buffer_add_str(where, ")"); } if (ln->next) buffer_add_str(where, ") OR "); else buffer_add_str(where, ")"); } return where; } /* * Transform featureid parameter into WHERE statement of a FE->SQL request */ buffer *fe_kvp_featureid(ows * o, wfs_request * wr, buffer * layer_name, list * fid) { buffer *id_name, *where; char *escaped; list *fe; list_node *ln; assert(o && wr && layer_name && fid); where = buffer_init(); id_name = ows_psql_id_column(o, layer_name); if (!id_name || id_name->use == 0) return where; buffer_add_str(where, " WHERE "); for (ln = fid->first ; ln ; ln = ln->next) { fe = list_explode('.', ln->value); buffer_copy(where, id_name); buffer_add_str(where, " = '"); escaped = ows_psql_escape_string(o, fe->last->value->buf); if (escaped) { buffer_add_str(where, escaped); free(escaped); } buffer_add_str(where, "'"); list_free(fe); if (ln->next) buffer_add_str(where, " OR "); } return where; } tinyows-1.2.2/src/fe/fe_filter_capabilities.c000066400000000000000000000225411465244332600212420ustar00rootroot00000000000000/* Copyright (c) <2007-2012> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include "../ows/ows.h" /* * Describe functions supported by the wfs */ static void fe_functions_capabilities(const ows * o) { int version; buffer *fct_name; assert(o); version = ows_version_get(o->request->version); fct_name = buffer_init(); if (version == 100) buffer_add_str(fct_name, "Function_Name"); else buffer_add_str(fct_name, "FunctionName"); fprintf(o->output, " \n"); fprintf(o->output, " \n", fct_name->buf); fprintf(o->output, " abs\n", fct_name->buf, fct_name->buf); fprintf(o->output, " acos\n", fct_name->buf, fct_name->buf); fprintf(o->output, " asin\n", fct_name->buf, fct_name->buf); fprintf(o->output, " atan\n", fct_name->buf, fct_name->buf); fprintf(o->output, " avg\n", fct_name->buf, fct_name->buf); fprintf(o->output, " cbrt\n", fct_name->buf, fct_name->buf); fprintf(o->output, " ceil\n", fct_name->buf, fct_name->buf); fprintf(o->output, " ceiling\n", fct_name->buf, fct_name->buf); fprintf(o->output, " cos\n", fct_name->buf, fct_name->buf); fprintf(o->output, " cot\n", fct_name->buf, fct_name->buf); fprintf(o->output, " count\n", fct_name->buf, fct_name->buf); fprintf(o->output, " degrees\n", fct_name->buf, fct_name->buf); fprintf(o->output, " exp\n", fct_name->buf, fct_name->buf); fprintf(o->output, " floor\n", fct_name->buf, fct_name->buf); fprintf(o->output, " length\n", fct_name->buf, fct_name->buf); fprintf(o->output, " ln\n", fct_name->buf, fct_name->buf); fprintf(o->output, " log\n", fct_name->buf, fct_name->buf); fprintf(o->output, " min\n", fct_name->buf, fct_name->buf); fprintf(o->output, " max\n", fct_name->buf, fct_name->buf); fprintf(o->output, " radians\n", fct_name->buf, fct_name->buf); fprintf(o->output, " round\n", fct_name->buf, fct_name->buf); fprintf(o->output, " sin\n", fct_name->buf, fct_name->buf); fprintf(o->output, " sqrt\n", fct_name->buf, fct_name->buf); fprintf(o->output, " tan\n", fct_name->buf, fct_name->buf); fprintf(o->output, " trunc\n", fct_name->buf, fct_name->buf); fprintf(o->output, " \n", fct_name->buf); fprintf(o->output, " \n"); buffer_free(fct_name); } /* * Describe what specific filter capabilties are supported by the wfs server * Version 1.0.0 Filter Encoding */ void fe_filter_capabilities_100(const ows * o) { assert(o); fprintf(o->output, "\n"); /* Spatial Capabilities */ fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); /* Scalar Capabilities */ fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fe_functions_capabilities(o); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, "\n"); } /* * Describe what specific filter capabilties are supported by the wfs server * Version 1.1.0 Filter Encoding */ void fe_filter_capabilities_110(const ows * o) { assert(o); fprintf(o->output, "\n"); /* Spatial Capabililties */ fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " gml:Envelope\n"); fprintf(o->output, " gml:Point\n"); fprintf(o->output, " gml:LineString\n"); fprintf(o->output, " gml:Polygon\n"); if (ows_version_get(o->postgis_version) >= 200) { fprintf(o->output, " gml:Triangle\n"); fprintf(o->output, " gml:PolyhedralSurface\n"); fprintf(o->output, " gml:Tin\n"); } fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); /* Scalar Capabililties */ fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " EqualTo\n"); fprintf(o->output, " NotEqualTo\n"); fprintf(o->output, " LessThan\n"); fprintf(o->output, " GreaterThan\n"); fprintf(o->output, " LessThanEqualTo\n"); fprintf(o->output, " GreaterThanEqualTo\n"); fprintf(o->output, " Between\n"); fprintf(o->output, " Like\n"); fprintf(o->output, " NullCheck\n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fe_functions_capabilities(o); fprintf(o->output, " \n"); fprintf(o->output, " \n"); /* Id Capabilities */ fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, " \n"); fprintf(o->output, "\n"); } /* * vim: expandtab sw=4 ts=4 */ tinyows-1.2.2/src/fe/fe_function.c000066400000000000000000000314341465244332600170720ustar00rootroot00000000000000/* Copyright (c) <2007-2012> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include "../ows/ows.h" /* * Generic function for filter encoding functions with one argument */ static buffer *fe_functions(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(n); assert(sql); n = n->children; /* jump to the next element if there are spaces */ while (n->type != XML_ELEMENT_NODE) n = n->next; sql = fe_expression(o, typename, fe, sql, n); buffer_add_str(sql, ")"); return sql; } /* * Generic function for aggregate filter encoding functions */ static buffer *fe_aggregate_functions(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); n = n->children; /* jump to the next element if there are spaces */ while (n->type != XML_ELEMENT_NODE) n = n->next; sql = fe_expression(o, typename, fe, sql, n); buffer_add_str(sql, ") from "); buffer_copy(sql, typename); buffer_add_str(sql, ")"); return sql; } /* * Calculate the absolute value of the argument */ static buffer *fe_fct_abs(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "abs("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the arc cosine of the argument */ static buffer *fe_fct_acos(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "acos("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the arc sine of the argument */ static buffer *fe_fct_asin(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "asin("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the arc tangent of the argument */ static buffer *fe_fct_atan(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "atan("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Return the average value for any number of fields */ static buffer *fe_fct_avg(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "(SELECT avg("); sql = fe_aggregate_functions(o, typename, fe, sql, n); return sql; } /* * Return the cube root of the argument */ static buffer *fe_fct_cbrt(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "cbrt("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Return the smallest integer not less than argument */ static buffer *fe_fct_ceil(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); buffer_add_str(sql, "ceil("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the cosine of the argument */ static buffer *fe_fct_cos(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "cos("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the cotangent of the argument */ static buffer *fe_fct_cot(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "cot("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Return the number of rows */ static buffer *fe_fct_count(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "(SELECT count("); sql = fe_aggregate_functions(o, typename, fe, sql, n); return sql; } /* * Transform the argument from radians to degrees */ static buffer *fe_fct_degrees(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "degrees("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the exponantial of the argument */ static buffer *fe_fct_exp(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "exp("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Return the largest integer not greater than argument */ static buffer *fe_fct_floor(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "floor("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Return the length of the argument */ static buffer *fe_fct_length(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "length("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the natural logarithm of the argument */ static buffer *fe_fct_ln(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "ln("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the base 10 logarithm of the argument */ static buffer *fe_fct_log(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "log("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Return the minimum of a set of rows */ static buffer *fe_fct_min(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "(SELECT Min("); sql = fe_aggregate_functions(o, typename, fe, sql, n); return sql; } /* * Return the maximum of a set of rows */ static buffer *fe_fct_max(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "(SELECT Max("); sql = fe_aggregate_functions(o, typename, fe, sql, n); return sql; } /* * Transform the argument from degrees to radians */ static buffer *fe_fct_radians(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "radians("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Return the round to nearest integer of the argument */ static buffer *fe_fct_round(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "round("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the sine of the argument */ static buffer *fe_fct_sin(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "sin("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the square root of the argument */ static buffer *fe_fct_sqrt(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "sqrt("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Calculate the tangent of the argument */ static buffer *fe_fct_tan(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "tan("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Truncate the argument toward zero */ static buffer *fe_fct_trunc(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); assert(sql); buffer_add_str(sql, "trunc("); sql = fe_functions(o, typename, fe, sql, n); return sql; } /* * Call the right function */ buffer *fe_function(ows * o, buffer * typename, filter_encoding * fe, buffer * sql, xmlNodePtr n) { xmlChar *fct_name; assert(o); assert(typename); assert(fe); assert(n); assert(sql); fct_name = xmlGetProp(n, (xmlChar *) "name"); assert(fct_name); if (!strcmp((char *) fct_name, "abs")) sql = fe_fct_abs(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "acos")) sql = fe_fct_acos(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "asin")) sql = fe_fct_asin(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "atan")) sql = fe_fct_atan(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "avg")) sql = fe_fct_avg(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "cbrt")) sql = fe_fct_cbrt(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "ceil")) sql = fe_fct_ceil(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "ceiling")) sql = fe_fct_ceil(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "cos")) sql = fe_fct_cos(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "cot")) sql = fe_fct_cot(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "count")) sql = fe_fct_count(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "degrees")) sql = fe_fct_degrees(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "exp")) sql = fe_fct_exp(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "floor")) sql = fe_fct_floor(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "length")) sql = fe_fct_length(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "ln")) sql = fe_fct_ln(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "log")) sql = fe_fct_log(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "min")) sql = fe_fct_min(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "max")) sql = fe_fct_max(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "radians")) sql = fe_fct_radians(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "round")) sql = fe_fct_round(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "sin")) sql = fe_fct_sin(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "sqrt")) sql = fe_fct_sqrt(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "tan")) sql = fe_fct_tan(o, typename, fe, sql, n); else if (!strcmp((char *) fct_name, "trunc")) sql = fe_fct_trunc(o, typename, fe, sql, n); else fe->error_code = FE_ERROR_FUNCTION; xmlFree(fct_name); return sql; } /* * vim: expandtab sw=4 ts=4 */ tinyows-1.2.2/src/fe/fe_logical_ops.c000066400000000000000000000113611465244332600175350ustar00rootroot00000000000000/* Copyright (c) <2007-2012> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include #include "../ows/ows.h" /* * Check if the string is a logical operator */ bool fe_is_logical_op(char *name) { assert(name); /* NOTA: GML is case sensitive */ if (!strcmp(name, "And") || !strcmp(name, "Or") || !strcmp(name, "Not")) return true; return false; } /* * If the logical operator is binary, go through the nodes recursively * and fill the SQL request buffer */ static buffer *fe_binary_logical_op(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { xmlNodePtr node; assert(o); assert(typename); assert(fe); assert(n); buffer_add_str(fe->sql, "("); node = n->children; while (node->type != XML_ELEMENT_NODE) node = node->next; /* Jump to next element if spaces */ /* Execute the matching function's type */ if (fe_is_logical_op((char *) node->name)) fe->sql = fe_logical_op(o, typename, fe, node); else if (fe_is_spatial_op((char *) node->name)) fe->sql = fe_spatial_op(o, typename, fe, node); else if (fe_is_comparison_op((char *) node->name)) fe->sql = fe_comparison_op(o, typename, fe, node); /* We could have severals terms in a logical */ for ( node = node->next ; node ; node = node->next ) { if (node->type != XML_ELEMENT_NODE) continue; /* Revert boolean logical if inside a Not */ if (!fe->in_not) { if (!strcmp((char *) n->name, "And")) buffer_add_str(fe->sql, " AND "); else if (!strcmp((char *) n->name, "Or")) buffer_add_str(fe->sql, " OR "); } else { if (!strcmp((char *) n->name, "And")) buffer_add_str(fe->sql, " OR "); else if (!strcmp((char *) n->name, "Or")) buffer_add_str(fe->sql, " AND "); } /* Execute the matching function's type */ if (fe_is_logical_op((char *) node->name)) fe->sql = fe_logical_op(o, typename, fe, node); else if (fe_is_spatial_op((char *) node->name)) fe->sql = fe_spatial_op(o, typename, fe, node); else if (fe_is_comparison_op((char *) node->name)) fe->sql = fe_comparison_op(o, typename, fe, node); } buffer_add_str(fe->sql, ")"); return fe->sql; } /* * If the logical operator is unary, go through the nodes recursively * and fill the SQL request buffer */ static buffer *fe_unary_logical_op(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { assert(typename); assert(o); assert(fe); assert(n); buffer_add_str(fe->sql, "not("); fe->in_not = true; n = n->children; while (n->type != XML_ELEMENT_NODE) n = n->next; /* Execute the matching function's type */ if (fe_is_logical_op((char *) n->name)) fe->sql = fe_logical_op(o, typename, fe, n); else if (fe_is_spatial_op((char *) n->name)) fe->sql = fe_spatial_op(o, typename, fe, n); else if (fe_is_comparison_op((char *) n->name)) fe->sql = fe_comparison_op(o, typename, fe, n); buffer_add_str(fe->sql, ")"); fe->in_not = false; return fe->sql; } /* * Execute the matching function (And, Or or Not) * Warning : before calling this function, * Check if the node name is a logical operator with is_logical_op() */ buffer *fe_logical_op(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { assert(typename); assert(o); assert(fe); assert(n); /* case sensitive comparison because the gml standard specifies strictly the name of the operator */ if (!strcmp((char *) n->name, "And") || !strcmp((char *) n->name, "Or")) fe->sql = fe_binary_logical_op(o, typename, fe, n); else if (!strcmp((char *) n->name, "Not")) fe->sql = fe_unary_logical_op(o, typename, fe, n); else fe->error_code = FE_ERROR_FILTER; return fe->sql; } /* * vim: expandtab sw=4 ts=4 */ tinyows-1.2.2/src/fe/fe_spatial_ops.c000066400000000000000000000422011465244332600175550ustar00rootroot00000000000000/* Copyright (c) <2007-2012> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include "../ows/ows.h" /* * Check if the string is a spatial operator */ bool fe_is_spatial_op(char *name) { assert(name); /* case sensitive comparison because the gml standard specifies strictly the name of the operator */ if ( !strcmp(name, "Equals") || !strcmp(name, "Disjoint") || !strcmp(name, "Touches") || !strcmp(name, "Within") || !strcmp(name, "Overlaps") || !strcmp(name, "Crosses") || !strcmp(name, "Intersects") || !strcmp(name, "Contains") || !strcmp(name, "DWithin") || !strcmp(name, "Beyond") || !strcmp(name, "BBOX")) return true; return false; } /* * Transform syntax coordinates from GML 2.1.2 (x1,y1 x2,y2) into Postgis (x1 y1,x2 y2) */ static buffer *fe_transform_coord_gml2_to_psql(buffer * coord) { size_t i; assert(coord); /*check if the first separator is a comma else do nothing */ if (check_regexp(coord->buf, "^[0-9.-]+,")) { for (i = 0; i < coord->use; i++) { if (coord->buf[i] == ' ') coord->buf[i] = ','; else if (coord->buf[i] == ',') coord->buf[i] = ' '; } } return coord; } /* * Write a polygon geometry according to postgresql syntax from GML bbox */ buffer *fe_envelope(ows * o, buffer * typename, filter_encoding * fe, buffer *envelope, xmlNodePtr n) { list *coord_min, *coord_max, *coord_pair; xmlChar *content, *srsname; buffer *name, *tmp; ows_bbox *bbox; int srid_int; bool ret; ows_srs *s = NULL; assert(o); assert(n); assert(fe); assert(typename); assert(envelope); name = buffer_init(); buffer_add_str(name, (char *) n->name); srsname = xmlGetProp(n, (xmlChar *) "srsName"); if (srsname) { s = ows_srs_init(); if (!ows_srs_set_from_srsname(o, s, (char *) srsname)) { fe->error_code = FE_ERROR_SRS; xmlFree(srsname); buffer_free(name); ows_srs_free(s); return envelope; } xmlFree(srsname); srid_int = s->srid; } else { if (o->request->request.wfs->srs) srid_int = o->request->request.wfs->srs->srid; else srid_int = ows_srs_get_srid_from_layer(o, ows_layer_prefix_to_uri(o->layers, typename)); } n = n->children; while (n->type != XML_ELEMENT_NODE) n = n->next; /* Jump to next element if spaces */ content = xmlNodeGetContent(n->children); /* GML3 */ if (!strcmp((char *) n->name, "lowerCorner")) { if (!content || !check_regexp((char *) content, "[-]?[0-9]+([.][0-9]+)?([eE][-]?[0-9]+)? [-]?[0-9]+([.][0-9]+)?([eE][-]?[0-9]+)?")) { xmlFree(content); buffer_free(name); if (s) ows_srs_free(s); fe->error_code = FE_ERROR_BBOX; return envelope; } coord_min = list_explode_str(' ', (char *) content); n = n->next; while (n->next && n->type != XML_ELEMENT_NODE) n = n->next; /* Jump to next element if spaces */ xmlFree(content); content = xmlNodeGetContent(n->children); if (!content || !check_regexp((char *) content, "[-]?[0-9]+([.][0-9]+)?([eE][-]?[0-9]+)? [-]?[0-9]+([.][0-9]+)?([eE][-]?[0-9]+)?")) { xmlFree(content); buffer_free(name); list_free(coord_min); if (s) ows_srs_free(s); fe->error_code = FE_ERROR_BBOX; return envelope; } coord_max = list_explode_str(' ', (char *) content); /* GML2 */ } else if (!strcmp((char *) n->name, "coordinates")) { tmp = buffer_init(); buffer_add_str(tmp, (char *) content); if (!check_regexp((char *) content, "^[-]?[0-9]+([.][0-9]+)?([eE][-]?[0-9]+)?,[-]?[0-9]+([.][0-9]+)?([eE][-]?[0-9]+)?[ ][-]?[0-9]+([.][0-9]+)?([eE][-]?[0-9]+)?,[-]?[0-9]+([.][0-9]+)?([eE][-]?[0-9]+)?$")) { xmlFree(content); buffer_free(name); if (s) ows_srs_free(s); fe->error_code = FE_ERROR_BBOX; return envelope; } tmp = fe_transform_coord_gml2_to_psql(tmp); coord_pair = list_explode(',', tmp); coord_min = list_explode(' ', coord_pair->first->value); coord_max = list_explode(' ', coord_pair->first->next->value); buffer_free(tmp); list_free(coord_pair); } else { /* FIXME handle coord and pos */ xmlFree(content); buffer_free(name); if (s) ows_srs_free(s); fe->error_code = FE_ERROR_BBOX; return envelope; } buffer_free(name); xmlFree(content); /* return the polygon's coordinates matching the bbox */ bbox = ows_bbox_init(); if (s && s->honours_authority_axis_order && !s->is_axis_order_gis_friendly) { ret = ows_bbox_set(o, bbox, atof(coord_min->first->next->value->buf), atof(coord_min->first->value->buf), atof(coord_max->first->next->value->buf), atof(coord_max->first->value->buf), srid_int); } else { ret = ows_bbox_set(o, bbox, atof(coord_min->first->value->buf), atof(coord_min->first->next->value->buf), atof(coord_max->first->value->buf), atof(coord_max->first->next->value->buf), srid_int); } if (!ret) { fe->error_code = FE_ERROR_BBOX; list_free(coord_min); list_free(coord_max); ows_bbox_free(bbox); if (s) ows_srs_free(s); return envelope; } list_free(coord_min); list_free(coord_max); ows_bbox_to_query(o, bbox, envelope); ows_bbox_free(bbox); if (s) ows_srs_free(s); return envelope; } /* * Return the SQL request matching the spatial operator */ static buffer *fe_spatial_functions(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { ows_srs *s; buffer *geom, *layer_name; xmlNodePtr p; xmlChar *srsname; ows_srs* parent_srs = NULL; bool free_parent_srs = false; assert(typename); assert(fe); assert(n); assert(o); if (!strcmp((char *) n->name, "Equals")) buffer_add_str(fe->sql, " ST_Equals("); if (!strcmp((char *) n->name, "Disjoint")) buffer_add_str(fe->sql, " ST_Disjoint("); if (!strcmp((char *) n->name, "Touches")) buffer_add_str(fe->sql, " ST_Touches("); if (!strcmp((char *) n->name, "Within")) buffer_add_str(fe->sql, " ST_Within("); if (!strcmp((char *) n->name, "Overlaps")) buffer_add_str(fe->sql, " ST_Overlaps("); if (!strcmp((char *) n->name, "Crosses")) buffer_add_str(fe->sql, " ST_Crosses("); if (!strcmp((char *) n->name, "Intersects")) buffer_add_str(fe->sql, " ST_Intersects("); if (!strcmp((char *) n->name, "Contains")) buffer_add_str(fe->sql, " ST_Contains("); n = n->children; while (n->type != XML_ELEMENT_NODE) n = n->next; /* Jump to next element if spaces */ p = n; n = n->next; layer_name = ows_layer_prefix_to_uri(o->layers, typename); /* jump to the next element if there are spaces */ while (n->type != XML_ELEMENT_NODE) n = n->next; if (o->request->request.wfs->srs) { parent_srs = o->request->request.wfs->srs; } else { int srid = ows_srs_get_srid_from_layer(o, layer_name); if (srid > 0) { parent_srs = ows_srs_init(); ows_srs_set_from_srid(o, parent_srs, srid); free_parent_srs = true; } } if (!strcmp((char *) n->name, "Box") || !strcmp((char *) n->name, "Envelope")) { int srid = -1; srsname = xmlGetProp(n, (xmlChar *) "srsName"); if (srsname) { s = ows_srs_init(); if (ows_srs_set_from_srsname(o, s, (char *) srsname)) srid = s->srid; ows_srs_free(s); xmlFree(srsname); } buffer_add(fe->sql, '"'); fe->sql = fe_property_name(o, typename, fe, fe->sql, p, true, true); buffer_add(fe->sql, '"'); buffer_add(fe->sql, ','); if (srid != ows_srs_get_srid_from_layer(o, layer_name)) { buffer_add_str(fe->sql, "ST_Transform("); fe->sql = fe_envelope(o, typename, fe, fe->sql, n); buffer_add(fe->sql, ','); buffer_add_int(fe->sql, ows_srs_get_srid_from_layer(o, layer_name)); buffer_add(fe->sql, ')'); } else fe->sql = fe_envelope(o, typename, fe, fe->sql, n); } else { int srid; geom = ows_psql_gml_to_sql(o, n, parent_srs); if (!geom) { fe->error_code = FE_ERROR_GEOMETRY; if (free_parent_srs) ows_srs_free(parent_srs); return fe->sql; } srid = ows_psql_geometry_srid(o, geom->buf); buffer_add(fe->sql, '"'); fe->sql = fe_property_name(o, typename, fe, fe->sql, p, true, true); buffer_add(fe->sql, '"'); buffer_add(fe->sql, ','); if (srid != ows_srs_get_srid_from_layer(o, layer_name)) buffer_add_str(fe->sql, "ST_Transform("); buffer_add_str(fe->sql, "ST_SetSRID('"); buffer_copy(fe->sql, geom); buffer_add_str(fe->sql, "'::geometry,"); buffer_add_int(fe->sql, srid); buffer_add(fe->sql, ')'); buffer_free(geom); if (srid != ows_srs_get_srid_from_layer(o, layer_name)) { buffer_add(fe->sql, ','); buffer_add_int(fe->sql, ows_srs_get_srid_from_layer(o, layer_name)); buffer_add(fe->sql, ')'); } } buffer_add(fe->sql, ')'); if (free_parent_srs) ows_srs_free(parent_srs); return fe->sql; } /* * DWithin and Beyond operators : test if a geometry A is within (or beyond) * a specified distance of a geometry B */ static buffer *fe_distance_functions(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { xmlChar *content, *units; buffer *tmp, *op, *sql, *layer_name; float km; assert(o); assert(typename); assert(fe); assert(n); tmp = NULL; op = buffer_init(); layer_name = ows_layer_prefix_to_uri(o->layers, typename); if (!strcmp((char *) n->name, "Beyond")) buffer_add_str(op, " > "); if (!strcmp((char *) n->name, "DWithin")) buffer_add_str(op, " < "); buffer_add_str(fe->sql, "ST_Distance("); if (!ows_srs_meter_units(o, layer_name)) buffer_add_str(fe->sql, "ST_Transform("); n = n->children; while (n->type != XML_ELEMENT_NODE) n = n->next; /* Jump to next element if spaces */ buffer_add(fe->sql, '"'); fe->sql = fe_property_name(o, typename, fe, fe->sql, n, true, true); buffer_add(fe->sql, '"'); if (!ows_srs_meter_units(o, layer_name)) buffer_add_str(fe->sql, ", 4326)::geography"); buffer_add_str(fe->sql, "),('"); n = n->next; while (n->type != XML_ELEMENT_NODE) n = n->next; if (!ows_srs_meter_units(o, layer_name)) buffer_add_str(fe->sql, "ST_Transform("); /* display the geometry */ sql = ows_psql_gml_to_sql(o, n, NULL); if (sql) { buffer_copy(fe->sql, sql); buffer_free(sql); } else fe->error_code = FE_ERROR_GEOMETRY; if (!ows_srs_meter_units(o, layer_name)) buffer_add_str(fe->sql, ", 4326)::geography"); buffer_add_str(fe->sql, "'))"); n = n->next; while (n->type != XML_ELEMENT_NODE) n = n->next; units = xmlGetProp(n, (xmlChar *) "units"); buffer_copy(fe->sql, op); content = xmlNodeGetContent(n->children); /* units not strictly defined in Filter Encoding specification */ if (!strcmp((char *) units, "meters") || !strcmp((char *) units, "#metre")) buffer_add_str(fe->sql, (char *) content); else if (!strcmp((char *) units, "kilometers") || !strcmp((char *) units, "#kilometre")) { km = atof((char *) content) * 1000.0; tmp = buffer_ftoa((double) km); buffer_copy(fe->sql, tmp); buffer_free(tmp); } else { fe->error_code = FE_ERROR_UNITS; } buffer_free(op); xmlFree(content); xmlFree(units); return fe->sql; } static buffer *fe_bbox_layer(ows *o, buffer *typename, buffer *sql, buffer *propertyname, buffer *envelope) { int srid = -1; bool transform = false; assert(propertyname); assert(envelope); assert(sql); assert(o); buffer_add_str(sql, "(_ST_Intersects("); if (o->request->request.wfs->srs) { srid = o->request->request.wfs->srs->srid; transform = true; } if (transform) buffer_add_str(sql, "ST_Transform("); buffer_add(sql, '"'); buffer_copy(sql, propertyname); buffer_add(sql, '"'); if (transform) { buffer_add(sql, ','); buffer_add_int(sql, srid); buffer_add(sql, ')'); } buffer_add_str(sql, ","); if (transform) buffer_add_str(sql, "ST_Transform("); buffer_copy(sql, envelope); if (transform) { buffer_add(sql, ','); buffer_add_int(sql, srid); buffer_add(sql, ')'); } buffer_add_str(sql, ") AND "); if (transform) buffer_add_str(sql, "ST_Transform("); buffer_add(sql, '"'); buffer_copy(sql, propertyname); buffer_add(sql, '"'); if (transform) { buffer_add(sql, ','); buffer_add_int(sql, srid); buffer_add(sql, ')'); } buffer_add_str(sql, " && "); if (transform) buffer_add_str(sql, "ST_Transform("); buffer_copy(sql, envelope); if (transform) { buffer_add(sql, ','); buffer_add_int(sql, srid); buffer_add(sql, ')'); } buffer_add_str(sql, ")"); return sql; } /* * BBOX operator : identify all geometries that spatially interact with the specified box */ static buffer *fe_bbox(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { buffer *property, *layer_name; list *columns; list_node *ln; buffer *envelope = NULL; assert(o); assert(typename); assert(fe); assert(n); n = n->children; while (n->type != XML_ELEMENT_NODE) n = n->next; layer_name = ows_layer_prefix_to_uri(o->layers, typename); columns = ows_psql_geometry_column(o, layer_name); /* Retrieve the property name */ property = buffer_init(); property = fe_property_name(o, typename, fe, property, n, true, false); if (fe->error_code != FE_NO_ERROR) { buffer_free(property); return fe->sql; } /* If no property name, so we have to check with each Geometry_columns */ if (property->use == 0) { /* retrieve the geometry matching the bbox */ if (!strcmp((char *) n->name, "Box") || !strcmp((char *) n->name, "Envelope")) { envelope = buffer_init(); envelope = fe_envelope(o, layer_name, fe, envelope, n); } else { fe->error_code = FE_ERROR_FILTER; } buffer_add(fe->sql, '('); for (ln = columns->first ; ln ; ln = ln->next) { if (envelope) fe->sql = fe_bbox_layer(o, typename, fe->sql, ln->value, envelope); if (ln->next && (fe->in_not == 0 || !fe->in_not%2)) buffer_add_str(fe->sql, " OR "); else if (ln->next && fe->in_not%2) buffer_add_str(fe->sql, " AND "); else buffer_add_str(fe->sql, ")"); } } else { n = n->next; while (n->type != XML_ELEMENT_NODE) n = n->next; if (!strcmp((char *) n->name, "Box") || !strcmp((char *) n->name, "Envelope")) { if (!in_list(columns, property)) { buffer_free(property); fe->error_code = FE_ERROR_GEOM_PROPERTYNAME; return fe->sql; } envelope = buffer_init(); envelope = fe_envelope(o, layer_name, fe, envelope, n); } else { fe->error_code = FE_ERROR_FILTER; } if (envelope) fe->sql = fe_bbox_layer(o, typename, fe->sql, property, envelope); } if (envelope) buffer_free(envelope); buffer_free(property); return fe->sql; } /* * Print the SQL request matching spatial function (Equals,Disjoint, etc) * Warning : before calling this function, * Check if the node name is a spatial operator with fe_is_spatial_op() */ buffer *fe_spatial_op(ows * o, buffer * typename, filter_encoding * fe, xmlNodePtr n) { assert(o); assert(typename); assert(fe); assert(n); /* case sensitive comparison because the gml standard specifies strictly the name of the operator */ if ( !strcmp((char *) n->name, "Equals") || !strcmp((char *) n->name, "Disjoint") || !strcmp((char *) n->name, "Touches") || !strcmp((char *) n->name, "Within") || !strcmp((char *) n->name, "Overlaps") || !strcmp((char *) n->name, "Crosses") || !strcmp((char *) n->name, "Intersects") || !strcmp((char *) n->name, "Contains")) fe->sql = fe_spatial_functions(o, typename, fe, n); else if (!strcmp((char *) n->name, "DWithin") || !strcmp((char *) n->name, "Beyond")) fe->sql = fe_distance_functions(o, typename, fe, n); else if (!strcmp((char *) n->name, "BBOX")) fe->sql = fe_bbox(o, typename, fe, n); else fe->error_code = FE_ERROR_FILTER; return fe->sql; } /* * vim: expandtab sw=4 ts=4 */ tinyows-1.2.2/src/mapfile/000077500000000000000000000000001465244332600154455ustar00rootroot00000000000000tinyows-1.2.2/src/mapfile/mapfile.c000066400000000000000000003311071465244332600172330ustar00rootroot00000000000000#line 2 "src/mapfile/mapfile.c" #line 4 "src/mapfile/mapfile.c" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 35 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; #endif /* ! C99 */ /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif extern yy_size_t yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ yy_size_t yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */ yy_size_t yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart (FILE *input_file ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); void yy_delete_buffer (YY_BUFFER_STATE b ); void yy_flush_buffer (YY_BUFFER_STATE b ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); void yypop_buffer_state (void ); static void yyensure_buffer_stack (void ); static void yy_load_buffer_state (void ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ #define yywrap(n) 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ yyleng = (size_t) (yy_cp - yy_bp); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 107 #define YY_END_OF_BUFFER 108 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; static yyconst flex_int16_t yy_accept[677] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 101, 103, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108, 105, 105, 106, 105, 1, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 94, 94, 105, 105, 105, 105, 101, 101, 101, 101, 101, 103, 103, 103, 103, 103, 105, 105, 105, 105, 90, 90, 90, 93, 93, 93, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 0, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 96, 0, 101, 101, 0, 100, 101, 0, 101, 103, 103, 0, 102, 103, 0, 103, 0, 97, 0, 0, 98, 0, 90, 90, 90, 93, 93, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 0, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 65, 0, 0, 0, 100, 4, 102, 4, 4, 90, 4, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 92, 0, 0, 34, 91, 0, 0, 0, 73, 0, 0, 74, 0, 0, 86, 0, 22, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 52, 0, 0, 0, 0, 0, 27, 0, 0, 30, 31, 0, 0, 0, 0, 0, 43, 56, 0, 58, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 60, 0, 0, 0, 0, 0, 0, 90, 76, 0, 0, 0, 0, 38, 0, 0, 0, 21, 0, 16, 0, 78, 77, 0, 0, 47, 49, 0, 0, 0, 0, 0, 55, 24, 25, 0, 0, 0, 82, 0, 45, 0, 0, 57, 0, 0, 9, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 68, 0, 61, 62, 0, 0, 0, 0, 0, 90, 0, 0, 0, 0, 35, 37, 39, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 46, 0, 81, 2, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 69, 0, 0, 0, 0, 64, 0, 72, 67, 0, 0, 0, 0, 0, 0, 75, 0, 17, 19, 0, 0, 53, 26, 0, 29, 42, 0, 0, 13, 0, 0, 70, 14, 8, 0, 63, 0, 0, 32, 0, 0, 0, 41, 0, 48, 0, 0, 0, 0, 0, 79, 0, 0, 33, 87, 36, 0, 15, 0, 0, 0, 10, 0, 0, 66, 0, 0, 0, 0, 0, 71, 0, 0, 0, 51, 28, 44, 0, 0, 0, 0, 88, 40, 11, 0 } ; static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 4, 5, 1, 1, 1, 6, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 1, 1, 1, 1, 7, 1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 29, 55, 56, 57, 58, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_int32_t yy_meta[59] = { 0, 1, 2, 2, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 } ; static yyconst flex_int16_t yy_base[706] = { 0, 0, 45, 82, 0, 133, 0, 7, 20, 29, 52, 72, 152, 181, 192, 203, 208, 214, 229, 267, 316, 365, 418, 462, 0, 507, 558, 80, 120, 235, 240, 609, 0, 658, 0, 241, 242, 706, 0, 243, 260, 287, 288, 295, 333, 757, 806, 339, 340, 855, 898, 941, 986, 341, 342, 385, 386, 391, 394, 373, 1613, 1613, 1613, 360, 1613, 337, 13, 16, 9, 22, 11, 40, 95, 105, 60, 43, 48, 116, 135, 193, 138, 139, 388, 141, 153, 181, 191, 404, 226, 1613, 1613, 338, 326, 327, 321, 0, 26, 12, 0, 254, 0, 78, 292, 0, 278, 309, 306, 293, 290, 0, 288, 288, 0, 303, 323, 407, 433, 432, 338, 405, 436, 452, 450, 455, 437, 453, 448, 473, 444, 481, 488, 483, 488, 485, 491, 493, 509, 509, 502, 503, 506, 509, 509, 505, 510, 522, 520, 538, 543, 538, 557, 545, 560, 547, 550, 565, 567, 240, 237, 238, 1613, 231, 565, 567, 556, 559, 555, 562, 578, 54, 576, 572, 571, 585, 605, 606, 612, 614, 606, 610, 622, 609, 609, 616, 631, 633, 630, 58, 623, 639, 220, 1613, 209, 198, 1613, 194, 0, 165, 188, 0, 444, 155, 658, 0, 178, 153, 0, 669, 117, 662, 116, 1613, 71, 68, 1613, 63, 0, 666, 653, 0, 671, 655, 678, 668, 664, 676, 689, 679, 679, 704, 703, 705, 716, 703, 711, 721, 166, 707, 715, 717, 221, 732, 234, 723, 748, 734, 730, 755, 739, 743, 293, 751, 761, 766, 762, 772, 765, 760, 772, 420, 782, 782, 773, 787, 776, 780, 795, 797, 812, 803, 808, 35, 1613, 19, 1613, 809, 1613, 816, 822, 805, 821, 824, 825, 826, 816, 823, 818, 835, 834, 834, 858, 847, 1613, 845, 852, 851, 869, 867, 1613, 855, 876, 863, 1613, 0, 1613, 0, 0, 860, 0, 877, 864, 870, 887, 876, 878, 882, 895, 912, 896, 915, 906, 917, 922, 920, 913, 907, 1613, 914, 913, 926, 931, 928, 942, 940, 939, 951, 949, 962, 955, 948, 966, 970, 955, 965, 963, 964, 966, 975, 973, 991, 990, 1002, 992, 1002, 999, 998, 1010, 996, 1010, 1014, 1006, 1002, 1015, 1011, 1010, 1025, 1013, 1024, 1613, 1018, 1035, 721, 1026, 1042, 1043, 1036, 1040, 1029, 1040, 1054, 1055, 1056, 1057, 1059, 1055, 1061, 0, 1050, 1066, 1613, 1613, 1051, 1070, 1071, 1613, 1064, 1076, 1613, 1070, 1079, 1613, 1071, 1613, 1086, 1076, 1083, 1087, 1095, 1088, 1092, 1613, 1100, 1092, 1102, 1103, 1108, 1105, 1100, 1111, 1115, 1103, 1119, 1613, 1115, 1109, 1613, 1613, 1116, 1120, 1128, 1129, 1134, 1613, 1613, 1137, 1613, 1123, 1140, 1141, 1150, 1147, 1135, 1613, 1152, 1137, 1159, 1150, 1159, 1163, 1150, 1155, 1170, 1613, 1613, 1154, 1155, 1159, 1163, 1178, 1183, 1176, 1187, 1183, 1169, 1177, 1182, 1613, 1185, 1206, 1203, 1613, 1189, 1613, 1208, 1613, 1613, 1202, 1215, 1208, 1613, 1198, 1205, 1205, 1204, 1213, 1613, 1613, 1613, 1218, 1214, 1222, 1613, 1231, 1613, 1218, 1217, 1613, 1219, 1234, 1613, 1226, 1227, 1227, 1613, 1242, 1235, 1255, 1245, 1259, 1260, 1247, 1247, 1613, 1613, 1267, 1251, 1254, 1251, 1255, 1257, 1260, 1259, 1260, 1278, 1275, 1613, 1613, 1274, 1269, 1270, 1272, 1291, 1613, 1279, 1280, 1278, 1302, 1294, 1306, 1613, 1298, 1308, 1298, 1299, 1613, 1305, 1613, 1613, 1301, 1613, 1306, 1308, 1318, 1313, 1327, 1313, 1312, 1330, 1331, 1320, 1329, 1330, 1342, 1345, 0, 1336, 1347, 1345, 1613, 1339, 1353, 1358, 1363, 1356, 1365, 1366, 1367, 1613, 1370, 1613, 1361, 1368, 1376, 1356, 1377, 1367, 1379, 1382, 1370, 1377, 1613, 1388, 1613, 1386, 1375, 1386, 1395, 1613, 1403, 1613, 1613, 1386, 1398, 1397, 1410, 1404, 1404, 1613, 1407, 1613, 1613, 1410, 1409, 1613, 1613, 1410, 1613, 1613, 1406, 1409, 1613, 1418, 1418, 1613, 1613, 1613, 1433, 1613, 1415, 1420, 1613, 1425, 1427, 1439, 1613, 1431, 1613, 1434, 1435, 1445, 1441, 1455, 1613, 1439, 1458, 1613, 1444, 1613, 1458, 1613, 1453, 1454, 1459, 1613, 1455, 1456, 1613, 1453, 1459, 1465, 1466, 1472, 1613, 1482, 1472, 1486, 1613, 1613, 1613, 1474, 1491, 1484, 1484, 1613, 1613, 1613, 1613, 1531, 1534, 1537, 1540, 1543, 1546, 1549, 1552, 1555, 1558, 1561, 1564, 1567, 1570, 1573, 1576, 1579, 1582, 1585, 1588, 1591, 18, 5, 1594, 1597, 1600, 1603, 1606, 1609 } ; static yyconst flex_int16_t yy_def[706] = { 0, 677, 677, 2, 3, 2, 5, 2, 2, 677, 677, 678, 678, 679, 679, 2, 2, 677, 677, 680, 680, 681, 681, 2, 23, 2, 2, 2, 2, 2, 2, 2, 31, 2, 33, 2, 2, 33, 37, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 676, 676, 676, 676, 682, 676, 683, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 684, 685, 686, 687, 688, 689, 690, 688, 688, 691, 692, 693, 691, 691, 694, 695, 696, 697, 698, 698, 698, 699, 699, 699, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 700, 701, 682, 676, 683, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 684, 676, 685, 686, 676, 687, 688, 689, 702, 688, 690, 703, 688, 691, 692, 704, 691, 693, 705, 691, 694, 676, 695, 696, 676, 697, 698, 698, 698, 699, 699, 699, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 700, 676, 701, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 688, 676, 691, 698, 698, 699, 699, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 698, 699, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 698, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 698, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 698, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 0, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676 } ; static yyconst flex_int16_t yy_nxt[1672] = { 0, 676, 61, 62, 63, 64, 65, 61, 219, 89, 90, 91, 66, 92, 201, 201, 67, 164, 199, 166, 68, 216, 89, 90, 91, 272, 92, 60, 198, 198, 199, 89, 90, 93, 162, 94, 61, 163, 66, 272, 60, 66, 67, 164, 165, 166, 68, 61, 62, 63, 64, 65, 61, 60, 89, 90, 93, 66, 94, 61, 162, 67, 167, 163, 66, 68, 60, 66, 171, 214, 165, 172, 214, 173, 61, 62, 96, 211, 97, 98, 205, 205, 206, 66, 99, 60, 281, 67, 167, 299, 66, 68, 69, 70, 171, 71, 60, 172, 72, 173, 60, 73, 60, 74, 75, 76, 77, 78, 79, 80, 99, 281, 81, 169, 299, 168, 163, 170, 69, 70, 211, 71, 60, 304, 72, 60, 60, 73, 60, 74, 75, 76, 77, 78, 79, 80, 60, 81, 60, 169, 60, 168, 163, 170, 174, 82, 83, 175, 84, 85, 179, 180, 86, 87, 61, 62, 96, 304, 97, 98, 88, 302, 60, 183, 99, 184, 60, 198, 198, 199, 174, 82, 83, 175, 84, 85, 179, 180, 86, 87, 205, 205, 206, 89, 90, 101, 88, 102, 103, 183, 99, 184, 302, 104, 89, 90, 101, 325, 102, 103, 194, 185, 194, 176, 104, 89, 90, 105, 177, 106, 89, 90, 105, 186, 106, 191, 89, 90, 107, 104, 108, 61, 325, 60, 191, 178, 66, 185, 60, 176, 104, 89, 90, 107, 177, 108, 61, 160, 189, 186, 60, 66, 160, 272, 272, 60, 60, 60, 60, 60, 178, 60, 66, 329, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 189, 60, 331, 66, 60, 61, 62, 63, 60, 65, 61, 202, 60, 60, 329, 110, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 111, 331, 60, 60, 208, 208, 214, 214, 206, 209, 60, 202, 60, 60, 60, 110, 60, 60, 60, 217, 218, 60, 211, 211, 147, 60, 111, 60, 61, 62, 63, 60, 65, 61, 220, 209, 340, 194, 110, 60, 60, 194, 191, 60, 60, 217, 218, 60, 60, 111, 147, 60, 191, 160, 60, 60, 60, 60, 221, 60, 220, 340, 147, 60, 110, 149, 149, 60, 60, 150, 150, 60, 60, 229, 160, 111, 60, 61, 62, 63, 60, 65, 61, 676, 221, 60, 676, 113, 147, 60, 676, 149, 149, 60, 60, 150, 150, 60, 60, 229, 60, 60, 114, 676, 676, 157, 60, 158, 157, 60, 158, 60, 60, 113, 676, 60, 60, 60, 181, 162, 60, 60, 187, 182, 60, 676, 188, 230, 114, 60, 61, 62, 63, 60, 65, 61, 222, 60, 60, 223, 113, 60, 60, 60, 181, 162, 60, 60, 187, 182, 60, 224, 188, 230, 226, 114, 201, 201, 227, 676, 199, 676, 222, 349, 228, 223, 113, 676, 231, 676, 232, 225, 233, 234, 235, 236, 237, 224, 676, 239, 226, 114, 115, 116, 227, 117, 118, 119, 349, 120, 228, 121, 122, 123, 231, 76, 232, 225, 233, 234, 235, 236, 237, 240, 162, 239, 241, 676, 115, 116, 244, 117, 118, 119, 238, 120, 245, 121, 122, 123, 242, 76, 60, 246, 676, 243, 247, 249, 252, 240, 162, 248, 241, 124, 253, 250, 244, 60, 254, 238, 255, 256, 245, 257, 125, 258, 242, 126, 259, 246, 243, 251, 247, 249, 252, 260, 261, 248, 676, 124, 253, 250, 676, 60, 254, 262, 255, 256, 263, 257, 125, 258, 126, 60, 259, 264, 251, 265, 266, 267, 268, 260, 261, 269, 124, 249, 274, 275, 60, 276, 277, 262, 278, 279, 263, 125, 280, 676, 126, 270, 282, 264, 283, 265, 266, 267, 268, 676, 284, 269, 124, 249, 274, 275, 60, 276, 277, 285, 278, 279, 676, 125, 280, 126, 60, 270, 282, 286, 283, 287, 288, 127, 289, 128, 284, 60, 290, 129, 130, 60, 291, 292, 293, 285, 294, 131, 132, 676, 295, 296, 676, 297, 676, 286, 298, 287, 288, 127, 289, 128, 300, 60, 290, 129, 130, 60, 291, 292, 293, 301, 294, 131, 132, 60, 295, 296, 133, 297, 134, 303, 298, 208, 208, 305, 60, 206, 300, 306, 60, 307, 135, 136, 308, 309, 137, 301, 310, 676, 138, 311, 676, 312, 133, 676, 134, 303, 313, 314, 315, 305, 60, 316, 676, 306, 60, 307, 135, 136, 308, 309, 137, 319, 310, 138, 139, 311, 140, 312, 141, 142, 317, 320, 313, 314, 315, 321, 318, 316, 143, 144, 322, 323, 145, 324, 326, 676, 146, 319, 327, 328, 139, 330, 140, 332, 141, 142, 317, 320, 335, 336, 676, 321, 318, 446, 143, 144, 322, 323, 145, 324, 326, 146, 60, 337, 327, 328, 338, 330, 333, 332, 339, 341, 342, 60, 335, 336, 147, 60, 446, 334, 343, 344, 345, 274, 148, 676, 346, 347, 348, 337, 350, 351, 338, 352, 333, 353, 339, 341, 342, 60, 676, 354, 147, 60, 334, 355, 343, 344, 345, 274, 148, 60, 346, 347, 348, 356, 350, 351, 357, 352, 358, 353, 60, 359, 360, 147, 60, 354, 361, 362, 363, 355, 364, 148, 676, 365, 366, 367, 368, 369, 370, 356, 676, 371, 357, 676, 358, 372, 60, 359, 360, 147, 60, 373, 361, 362, 363, 374, 364, 148, 60, 365, 366, 367, 368, 369, 370, 375, 151, 371, 376, 60, 377, 372, 378, 60, 152, 676, 379, 373, 380, 381, 382, 374, 383, 676, 384, 385, 676, 386, 387, 388, 676, 375, 151, 389, 376, 60, 377, 390, 378, 60, 152, 60, 379, 391, 380, 381, 382, 392, 383, 151, 384, 385, 60, 386, 387, 388, 60, 152, 676, 389, 393, 394, 395, 390, 396, 397, 676, 398, 399, 391, 400, 401, 402, 392, 676, 151, 676, 403, 60, 404, 405, 406, 60, 152, 60, 407, 393, 394, 395, 408, 396, 397, 153, 398, 399, 154, 400, 401, 402, 60, 155, 409, 156, 403, 410, 404, 405, 406, 411, 412, 413, 407, 414, 415, 676, 408, 416, 417, 153, 676, 418, 154, 419, 420, 421, 60, 155, 409, 156, 60, 410, 422, 423, 424, 411, 412, 413, 153, 414, 415, 154, 425, 416, 417, 60, 155, 418, 156, 419, 420, 421, 426, 427, 428, 429, 430, 431, 422, 423, 424, 432, 433, 434, 153, 435, 436, 154, 425, 437, 438, 60, 155, 439, 156, 440, 441, 442, 426, 427, 428, 429, 430, 431, 443, 444, 445, 432, 433, 434, 447, 435, 436, 448, 449, 437, 438, 450, 451, 439, 452, 440, 441, 442, 453, 454, 455, 456, 457, 458, 443, 444, 445, 459, 460, 461, 447, 462, 463, 448, 449, 464, 465, 450, 451, 452, 466, 467, 468, 469, 453, 454, 455, 456, 457, 458, 470, 471, 472, 459, 460, 461, 473, 462, 463, 474, 475, 464, 465, 476, 477, 478, 466, 467, 468, 469, 479, 480, 481, 482, 483, 484, 470, 471, 472, 485, 486, 487, 473, 488, 489, 474, 475, 490, 491, 476, 477, 478, 492, 493, 494, 495, 479, 480, 481, 482, 483, 484, 496, 497, 498, 485, 486, 487, 499, 488, 489, 500, 501, 490, 491, 502, 503, 504, 492, 493, 494, 495, 505, 506, 507, 508, 509, 510, 496, 497, 498, 511, 512, 513, 499, 514, 516, 500, 501, 517, 515, 502, 503, 504, 518, 519, 522, 523, 505, 506, 507, 508, 509, 510, 520, 524, 521, 511, 512, 513, 525, 514, 516, 526, 529, 517, 515, 527, 530, 531, 518, 519, 522, 523, 532, 528, 533, 534, 535, 536, 520, 524, 521, 537, 538, 539, 525, 540, 541, 526, 529, 542, 543, 527, 530, 531, 544, 545, 546, 547, 532, 528, 533, 534, 535, 536, 548, 549, 551, 537, 538, 539, 550, 540, 541, 552, 553, 542, 543, 554, 555, 556, 544, 545, 546, 547, 557, 558, 559, 560, 561, 562, 548, 549, 551, 563, 564, 550, 565, 566, 567, 552, 553, 568, 569, 554, 555, 556, 570, 571, 572, 573, 557, 558, 559, 560, 561, 562, 574, 575, 576, 563, 564, 577, 565, 566, 567, 578, 579, 568, 569, 580, 581, 582, 570, 571, 572, 573, 583, 584, 585, 586, 587, 588, 574, 575, 576, 589, 577, 590, 591, 592, 593, 578, 579, 594, 595, 580, 581, 582, 596, 597, 598, 599, 583, 584, 585, 586, 587, 588, 600, 601, 602, 589, 603, 590, 591, 592, 593, 604, 605, 594, 595, 606, 607, 608, 596, 597, 598, 599, 609, 610, 611, 612, 613, 614, 600, 601, 602, 615, 603, 616, 617, 618, 619, 604, 605, 620, 621, 606, 607, 608, 622, 623, 624, 625, 609, 610, 611, 612, 613, 614, 626, 627, 628, 615, 616, 629, 617, 618, 619, 630, 631, 620, 621, 632, 633, 634, 622, 623, 624, 625, 635, 636, 637, 638, 639, 640, 626, 627, 628, 641, 642, 629, 643, 644, 645, 630, 631, 646, 647, 632, 633, 634, 648, 649, 650, 651, 635, 636, 637, 638, 639, 640, 652, 653, 654, 641, 642, 655, 643, 644, 645, 656, 657, 646, 647, 658, 659, 660, 648, 649, 650, 651, 661, 662, 663, 676, 664, 665, 652, 653, 654, 666, 667, 655, 668, 669, 670, 656, 657, 671, 672, 658, 659, 660, 673, 674, 675, 676, 661, 662, 663, 664, 676, 665, 676, 676, 676, 666, 667, 676, 668, 669, 670, 676, 676, 671, 672, 676, 676, 676, 673, 674, 675, 60, 60, 60, 95, 95, 95, 100, 100, 100, 109, 109, 109, 112, 112, 112, 159, 159, 159, 161, 161, 161, 190, 190, 190, 192, 192, 192, 193, 193, 193, 195, 195, 195, 196, 676, 196, 197, 197, 197, 200, 200, 200, 203, 676, 203, 204, 204, 204, 207, 207, 207, 210, 210, 210, 212, 212, 212, 213, 213, 213, 215, 215, 215, 271, 271, 271, 273, 273, 273, 198, 198, 198, 201, 201, 201, 205, 205, 205, 208, 208, 208, 59, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676 } ; static yyconst flex_int16_t yy_chk[1672] = { 0, 0, 1, 1, 1, 1, 1, 1, 699, 7, 7, 7, 1, 7, 97, 97, 1, 68, 97, 70, 1, 698, 8, 8, 8, 273, 8, 7, 96, 96, 96, 9, 9, 9, 66, 9, 9, 67, 1, 271, 8, 9, 1, 68, 69, 70, 1, 2, 2, 2, 2, 2, 2, 7, 10, 10, 10, 2, 10, 10, 66, 2, 71, 67, 10, 2, 8, 9, 74, 215, 69, 75, 213, 76, 11, 11, 11, 212, 11, 11, 101, 101, 101, 2, 11, 27, 169, 2, 71, 187, 10, 2, 3, 3, 74, 3, 27, 75, 3, 76, 27, 3, 3, 3, 3, 3, 3, 3, 3, 3, 11, 169, 3, 73, 187, 72, 72, 73, 3, 3, 210, 3, 27, 208, 3, 28, 27, 3, 3, 3, 3, 3, 3, 3, 3, 3, 28, 3, 5, 73, 28, 72, 72, 73, 77, 5, 5, 78, 5, 5, 80, 81, 5, 5, 12, 12, 12, 205, 12, 12, 5, 201, 28, 83, 12, 84, 28, 197, 197, 197, 77, 5, 5, 78, 5, 5, 80, 81, 5, 5, 204, 204, 204, 13, 13, 13, 5, 13, 13, 83, 12, 84, 198, 13, 14, 14, 14, 236, 14, 14, 195, 85, 193, 79, 14, 15, 15, 15, 79, 15, 16, 16, 16, 86, 16, 192, 17, 17, 17, 13, 17, 17, 236, 15, 190, 79, 17, 85, 16, 79, 14, 18, 18, 18, 79, 18, 18, 161, 88, 86, 29, 18, 159, 158, 157, 30, 35, 36, 39, 15, 79, 29, 17, 240, 16, 29, 30, 35, 36, 39, 30, 35, 36, 39, 88, 40, 242, 18, 19, 19, 19, 19, 19, 19, 19, 99, 40, 29, 240, 19, 40, 29, 30, 35, 36, 39, 30, 35, 36, 39, 19, 242, 41, 42, 102, 102, 108, 107, 102, 104, 43, 99, 40, 41, 42, 19, 40, 41, 42, 110, 111, 43, 106, 105, 43, 43, 19, 20, 20, 20, 20, 20, 20, 20, 113, 104, 250, 94, 20, 41, 42, 93, 92, 41, 42, 110, 111, 43, 44, 20, 43, 43, 91, 65, 47, 48, 53, 54, 114, 44, 113, 250, 44, 44, 20, 47, 48, 53, 54, 47, 48, 53, 54, 118, 63, 20, 21, 21, 21, 21, 21, 21, 21, 59, 114, 44, 0, 21, 44, 44, 0, 47, 48, 53, 54, 47, 48, 53, 54, 118, 55, 56, 21, 0, 0, 57, 57, 57, 58, 58, 58, 55, 56, 21, 0, 55, 56, 57, 82, 82, 58, 57, 87, 82, 58, 0, 87, 119, 21, 22, 22, 22, 22, 22, 22, 22, 115, 55, 56, 115, 22, 55, 56, 57, 82, 82, 58, 57, 87, 82, 58, 116, 87, 119, 117, 22, 200, 200, 117, 0, 200, 0, 115, 259, 117, 115, 22, 0, 120, 0, 121, 116, 122, 123, 124, 125, 126, 116, 0, 128, 117, 22, 23, 23, 117, 23, 23, 23, 259, 23, 117, 23, 23, 23, 120, 23, 121, 116, 122, 123, 124, 125, 126, 129, 127, 128, 130, 0, 23, 23, 132, 23, 23, 23, 127, 23, 133, 23, 23, 23, 131, 23, 25, 134, 0, 131, 135, 136, 138, 129, 127, 135, 130, 25, 139, 137, 132, 25, 140, 127, 141, 142, 133, 143, 25, 144, 131, 25, 145, 134, 131, 137, 135, 136, 138, 146, 147, 135, 0, 25, 139, 137, 0, 25, 140, 148, 141, 142, 149, 143, 25, 144, 25, 26, 145, 150, 137, 151, 152, 153, 154, 146, 147, 155, 26, 156, 162, 163, 26, 164, 165, 148, 166, 167, 149, 26, 168, 0, 26, 156, 170, 150, 171, 151, 152, 153, 154, 0, 172, 155, 26, 156, 162, 163, 26, 164, 165, 173, 166, 167, 0, 26, 168, 26, 31, 156, 170, 174, 171, 175, 176, 31, 177, 31, 172, 31, 178, 31, 31, 31, 179, 180, 181, 173, 182, 31, 31, 0, 183, 184, 0, 185, 0, 174, 186, 175, 176, 31, 177, 31, 188, 31, 178, 31, 31, 31, 179, 180, 181, 189, 182, 31, 31, 33, 183, 184, 33, 185, 33, 202, 186, 207, 207, 209, 33, 207, 188, 217, 33, 218, 33, 33, 220, 221, 33, 189, 222, 0, 33, 223, 0, 224, 33, 0, 33, 202, 225, 226, 227, 209, 33, 228, 0, 217, 33, 218, 33, 33, 220, 221, 33, 230, 222, 33, 37, 223, 37, 224, 37, 37, 229, 231, 225, 226, 227, 232, 229, 228, 37, 37, 233, 234, 37, 235, 237, 0, 37, 230, 238, 239, 37, 241, 37, 243, 37, 37, 229, 231, 245, 246, 0, 232, 229, 371, 37, 37, 233, 234, 37, 235, 237, 37, 45, 247, 238, 239, 248, 241, 244, 243, 249, 251, 252, 45, 245, 246, 45, 45, 371, 244, 253, 254, 255, 255, 45, 0, 256, 257, 258, 247, 260, 261, 248, 262, 244, 263, 249, 251, 252, 45, 0, 264, 45, 45, 244, 265, 253, 254, 255, 255, 45, 46, 256, 257, 258, 266, 260, 261, 267, 262, 268, 263, 46, 269, 270, 46, 46, 264, 275, 277, 278, 265, 279, 46, 0, 280, 281, 282, 283, 284, 285, 266, 0, 286, 267, 0, 268, 287, 46, 269, 270, 46, 46, 288, 275, 277, 278, 289, 279, 46, 49, 280, 281, 282, 283, 284, 285, 290, 49, 286, 291, 49, 293, 287, 294, 49, 49, 0, 295, 288, 296, 297, 299, 289, 300, 0, 301, 307, 0, 309, 310, 311, 0, 290, 49, 312, 291, 49, 293, 313, 294, 49, 49, 50, 295, 314, 296, 297, 299, 315, 300, 50, 301, 307, 50, 309, 310, 311, 50, 50, 0, 312, 316, 317, 318, 313, 319, 320, 0, 321, 322, 314, 323, 324, 325, 315, 0, 50, 0, 327, 50, 328, 329, 330, 50, 50, 51, 331, 316, 317, 318, 332, 319, 320, 51, 321, 322, 51, 323, 324, 325, 51, 51, 333, 51, 327, 334, 328, 329, 330, 335, 336, 337, 331, 338, 339, 0, 332, 340, 341, 51, 0, 342, 51, 343, 344, 345, 51, 51, 333, 51, 52, 334, 346, 347, 348, 335, 336, 337, 52, 338, 339, 52, 349, 340, 341, 52, 52, 342, 52, 343, 344, 345, 350, 351, 352, 353, 354, 355, 346, 347, 348, 356, 357, 358, 52, 359, 360, 52, 349, 361, 362, 52, 52, 363, 52, 364, 365, 366, 350, 351, 352, 353, 354, 355, 367, 369, 370, 356, 357, 358, 372, 359, 360, 373, 374, 361, 362, 375, 376, 363, 377, 364, 365, 366, 378, 379, 380, 381, 382, 383, 367, 369, 370, 384, 385, 387, 372, 388, 391, 373, 374, 392, 393, 375, 376, 377, 395, 396, 398, 399, 378, 379, 380, 381, 382, 383, 401, 403, 404, 384, 385, 387, 405, 388, 391, 406, 407, 392, 393, 408, 409, 411, 395, 396, 398, 399, 412, 413, 414, 415, 416, 417, 401, 403, 404, 418, 419, 420, 405, 421, 423, 406, 407, 424, 427, 408, 409, 411, 428, 429, 430, 431, 412, 413, 414, 415, 416, 417, 434, 436, 437, 418, 419, 420, 438, 421, 423, 439, 440, 424, 427, 441, 443, 444, 428, 429, 430, 431, 445, 446, 447, 448, 449, 450, 434, 436, 437, 451, 454, 455, 438, 456, 457, 439, 440, 458, 456, 441, 443, 444, 459, 460, 462, 463, 445, 446, 447, 448, 449, 450, 461, 464, 461, 451, 454, 455, 465, 456, 457, 467, 469, 458, 456, 468, 471, 473, 459, 460, 462, 463, 476, 468, 477, 478, 480, 481, 461, 464, 461, 482, 483, 484, 465, 488, 489, 467, 469, 490, 492, 468, 471, 473, 494, 495, 497, 498, 476, 468, 477, 478, 480, 481, 500, 501, 504, 482, 483, 484, 502, 488, 489, 505, 506, 490, 492, 507, 508, 509, 494, 495, 497, 498, 510, 511, 514, 515, 516, 517, 500, 501, 504, 518, 519, 502, 520, 521, 522, 505, 506, 523, 524, 507, 508, 509, 527, 528, 529, 530, 510, 511, 514, 515, 516, 517, 531, 533, 534, 518, 519, 535, 520, 521, 522, 536, 537, 523, 524, 538, 540, 541, 527, 528, 529, 530, 542, 543, 545, 548, 550, 551, 531, 533, 534, 552, 535, 553, 554, 555, 556, 536, 537, 557, 558, 538, 540, 541, 559, 560, 561, 562, 542, 543, 545, 548, 550, 551, 563, 565, 566, 552, 567, 553, 554, 555, 556, 569, 570, 557, 558, 571, 572, 573, 559, 560, 561, 562, 574, 575, 576, 578, 580, 581, 563, 565, 566, 582, 567, 583, 584, 585, 586, 569, 570, 587, 588, 571, 572, 573, 589, 591, 593, 594, 574, 575, 576, 578, 580, 581, 595, 596, 598, 582, 583, 601, 584, 585, 586, 602, 603, 587, 588, 604, 605, 606, 589, 591, 593, 594, 608, 611, 612, 615, 618, 619, 595, 596, 598, 621, 622, 601, 626, 628, 629, 602, 603, 631, 632, 604, 605, 606, 633, 635, 637, 638, 608, 611, 612, 615, 618, 619, 639, 640, 641, 621, 622, 643, 626, 628, 629, 644, 646, 631, 632, 648, 650, 651, 633, 635, 637, 638, 652, 654, 655, 0, 657, 658, 639, 640, 641, 659, 660, 643, 661, 663, 664, 644, 646, 665, 669, 648, 650, 651, 670, 671, 672, 0, 652, 654, 655, 657, 0, 658, 0, 0, 0, 659, 660, 0, 661, 663, 664, 0, 0, 665, 669, 0, 0, 0, 670, 671, 672, 677, 677, 677, 678, 678, 678, 679, 679, 679, 680, 680, 680, 681, 681, 681, 682, 682, 682, 683, 683, 683, 684, 684, 684, 685, 685, 685, 686, 686, 686, 687, 687, 687, 688, 0, 688, 689, 689, 689, 690, 690, 690, 691, 0, 691, 692, 692, 692, 693, 693, 693, 694, 694, 694, 695, 695, 695, 696, 696, 696, 697, 697, 697, 700, 700, 700, 701, 701, 701, 702, 702, 702, 703, 703, 703, 704, 704, 704, 705, 705, 705, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676, 676 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; extern int yy_flex_debug; int yy_flex_debug = 0; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "src/mapfile/mapfile.l" #line 2 "src/mapfile/mapfile.l" #include #include #include #include #include #include "../ows_define.h" #include "../ows_struct.h" #include "../ows_api.h" #define OWS_MAP_EATLINE char c ; for (c=input() ; c && c != '\n' ; c=input()); #define OWS_MAP_MAX_INCLUDE_DEPTH 5 #if 0 #define OWS_MAP_DBG fprintf(stderr, "State: {%i} %i \n", yy_top_state(), YY_START); #else #define OWS_MAP_DBG #endif static buffer * mapfile_build_path(ows * o, char * fpath) { buffer * path; assert(fpath); /* Path is absolute */ if ((fpath[0] == '/') || (fpath[0] == '\\') || (strlen(fpath) && (fpath[1] == ':'))) return buffer_from_str(fpath); /* Path is relative */ path = buffer_init(); buffer_copy(path, o->config_file); for ( /* empty */ ; path->use ; path->use--) if ((path->buf[path->use] == '/') || (path->buf[path->use] == '\\')) { path->use++ ; break; } buffer_add_str(path, fpath); return path; } enum map_md_state { MAP_MD_UPDATESEQUENCE, MAP_MD_SCHEMAS_LOCATION, MAP_MD_ABSTRACT, MAP_MD_ACCESSCONSTRAINTS, MAP_MD_ENCODING, MAP_MD_FEES, MAP_MD_KEYWORDLIST, MAP_MD_MAXFEATURES, MAP_MD_NAMESPACE_PREFIX, MAP_MD_NAMESPACE_URI, MAP_MD_TITLE, MAP_MD_SRS, MAP_MD_FEATURE_COLLECTION, MAP_MD_CONTACT_NAME, MAP_MD_CONTACT_EMAIL, MAP_MD_CONTACT_INDIVIDUAL, MAP_MD_CONTACT_POSITION, MAP_MD_CONTACT_PHONE, MAP_MD_CONTACT_FAX, MAP_MD_CONTACT_ADDRESS, MAP_MD_CONTACT_CITY, MAP_MD_CONTACT_COUNTRY, MAP_MD_TOWS_ONLINERESOURCE, MAP_MD_TOWS_SCHEMA_DIR, MAP_MD_TOWS_DB_ENCODING, MAP_MD_TOWS_LOG, MAP_MD_TOWS_LOG_LEVEL, MAP_MD_TOWS_WFS_DEFAULT_VERSION, MAP_MD_TOWS_METER_PRECISION, MAP_MD_TOWS_DEGREE_PRECISION, MAP_MD_TOWS_DISPLAY_BBOX, MAP_MD_TOWS_ESTIMATED_EXTENT, MAP_MD_TOWS_CHECK_SCHEMA, MAP_MD_TOWS_CHECK_VALID_GEOM, MAP_MD_TOWS_EXPOSE_PK, MAP_MD_TOWS_GEOBBOX, MAP_MD_SKIP }; enum map_lmd_state { MAP_LMD_EXCLUDE_ITEMS, MAP_LMD_FEATURE_ID, MAP_LMD_INCLUDE_ITEMS, MAP_LMD_XML_ITEMS, MAP_LMD_ABSTRACT, MAP_LMD_EXTENT, MAP_LMD_KEYWORDLIST, MAP_LMD_METADATAURL_FORMAT, MAP_LMD_METADATAURL_HREF, MAP_LMD_METADATAURL_TYPE, MAP_LMD_NAMESPACE_PREFIX, MAP_LMD_NAMESPACE_URI, MAP_LMD_SRS, MAP_LMD_TITLE, MAP_LMD_TOWS_TABLE, MAP_LMD_TOWS_SCHEMA, MAP_LMD_TOWS_RETRIEVABLE, MAP_LMD_TOWS_WRITABLE, MAP_LMD_TOWS_GEOBBOX, MAP_LMD_TOWS_GML_NS_LIST, MAP_LMD_SKIP }; enum map_prop_state { MAP_NAME }; enum map_layer_prop_state { MAP_LAYER_NAME, MAP_LAYER_CONNECTION }; /* * Global Vars */ ows *map_o = NULL; ows_layer *map_l = NULL; list * map_srid = NULL; buffer *map_ns_prefix = NULL; buffer *map_ns_uri = NULL; bool map_is_postgis = false; bool map_is_dump = false; YY_BUFFER_STATE map_include_stack[OWS_MAP_MAX_INCLUDE_DEPTH]; int map_include_stack_ptr = 0; enum map_md_state map_md_state; enum map_lmd_state map_lmd_state; enum map_prop_state map_prop_state; enum map_layer_prop_state map_layer_prop_state; static void metadata_key(char *yytext, bool quotes) { char *p; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } if (!strncmp("ows_updatesequence", yytext, 18)) map_md_state = MAP_MD_UPDATESEQUENCE; else if(!strncmp("ows_schemas_location", yytext, 20)) map_md_state = MAP_MD_SCHEMAS_LOCATION; else if(!strncmp("wfs_abstract", yytext, 12)) map_md_state = MAP_MD_ABSTRACT; else if(!strncmp("wfs_accessconstraints", yytext, 21)) map_md_state = MAP_MD_ACCESSCONSTRAINTS; else if(!strncmp("wfs_encoding", yytext, 12)) map_md_state = MAP_MD_ENCODING; else if(!strncmp("wfs_fees", yytext, 8)) map_md_state = MAP_MD_FEES; else if(!strncmp("wfs_keywordlist", yytext, 15)) map_md_state = MAP_MD_KEYWORDLIST; else if(!strncmp("wfs_maxfeatures", yytext, 15)) map_md_state = MAP_MD_MAXFEATURES; else if(!strncmp("wfs_namespace_prefix", yytext, 20)) map_md_state = MAP_MD_NAMESPACE_PREFIX; else if(!strncmp("wfs_namespace_uri", yytext, 17)) map_md_state = MAP_MD_NAMESPACE_URI; else if(!strncmp("wfs_title", yytext, 9)) map_md_state = MAP_MD_TITLE; else if(!strncmp("wfs_srs", yytext, 7)) map_md_state = MAP_MD_SRS; else if(!strncmp("wfs_feature_collection", yytext, 22)) map_md_state = MAP_MD_FEATURE_COLLECTION; else if(!strncmp("ows_contactorganization", yytext, 23)) map_md_state = MAP_MD_CONTACT_NAME; else if(!strncmp("ows_contactelectronicmailaddress", yytext, 32)) map_md_state = MAP_MD_CONTACT_EMAIL; else if(!strncmp("ows_contactperson", yytext, 17)) map_md_state = MAP_MD_CONTACT_INDIVIDUAL; else if(!strncmp("ows_contactposition", yytext, 19)) map_md_state = MAP_MD_CONTACT_POSITION; else if(!strncmp("ows_contactphone", yytext, 16)) map_md_state = MAP_MD_CONTACT_PHONE; else if(!strncmp("ows_address", yytext, 11)) map_md_state = MAP_MD_CONTACT_ADDRESS; else if(!strncmp("ows_city", yytext, 8)) map_md_state = MAP_MD_CONTACT_CITY; else if(!strncmp("ows_country", yytext, 11)) map_md_state = MAP_MD_CONTACT_COUNTRY; else if(!strncmp("ows_contactfacsimiletelephone", yytext, 29)) map_md_state = MAP_MD_CONTACT_FAX; else if(!strncmp("tinyows_onlineresource", yytext, 21)) map_md_state = MAP_MD_TOWS_ONLINERESOURCE; else if(!strncmp("tinyows_db_encoding", yytext, 19)) map_md_state = MAP_MD_TOWS_DB_ENCODING; else if(!strncmp("tinyows_schema_dir", yytext, 18)) map_md_state = MAP_MD_TOWS_SCHEMA_DIR; else if(!strncmp("tinyows_log_level", yytext, 17)) map_md_state = MAP_MD_TOWS_LOG_LEVEL; else if(!strncmp("tinyows_log", yytext, 11)) map_md_state = MAP_MD_TOWS_LOG; else if(!strncmp("tinyows_wfs_default_version", yytext, 77)) map_md_state = MAP_MD_TOWS_WFS_DEFAULT_VERSION; else if(!strncmp("tinyows_degree_precision", yytext, 24)) map_md_state = MAP_MD_TOWS_DEGREE_PRECISION; else if(!strncmp("tinyows_meter_precision", yytext, 23)) map_md_state = MAP_MD_TOWS_METER_PRECISION; else if(!strncmp("tinyows_display_bbox", yytext, 20)) map_md_state = MAP_MD_TOWS_DISPLAY_BBOX; else if(!strncmp("tinyows_estimated_extent", yytext, 24)) map_md_state = MAP_MD_TOWS_ESTIMATED_EXTENT; else if(!strncmp("tinyows_check_schema", yytext, 20)) map_md_state = MAP_MD_TOWS_CHECK_SCHEMA; else if(!strncmp("tinyows_check_valid_geom", yytext, 24)) map_md_state = MAP_MD_TOWS_CHECK_VALID_GEOM; else if(!strncmp("tinyows_expose_pk", yytext, 17)) map_md_state = MAP_MD_TOWS_EXPOSE_PK; else if(!strncmp("tinyows_geobbox", yytext, 15)) map_md_state = MAP_MD_TOWS_GEOBBOX; else map_md_state = MAP_MD_SKIP; } static void metadata_value(char *yytext, bool quotes) { int i; char *p; ows_geobbox *g; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } switch(map_md_state) { case MAP_MD_SKIP: return; case MAP_MD_UPDATESEQUENCE: return; /* TODO */ case MAP_MD_SCHEMAS_LOCATION: return; /* TODO */ case MAP_MD_FEATURE_COLLECTION: return; /* TODO */ case MAP_MD_ABSTRACT: map_o->metadata->abstract = buffer_init(); buffer_add_str(map_o->metadata->abstract, yytext); return; case MAP_MD_ACCESSCONSTRAINTS: map_o->metadata->access_constraints = buffer_init(); buffer_add_str(map_o->metadata->access_constraints, yytext); return; case MAP_MD_ENCODING: buffer_add_str(map_o->encoding, yytext); return; case MAP_MD_FEES: map_o->metadata->fees = buffer_init(); buffer_add_str(map_o->metadata->fees, yytext); return; case MAP_MD_KEYWORDLIST: map_o->metadata->keywords = list_explode_str(',', yytext); return; case MAP_MD_MAXFEATURES: map_o->max_features = atoi(yytext); return; case MAP_MD_NAMESPACE_PREFIX: map_ns_prefix = buffer_init(); buffer_add_str(map_ns_prefix, yytext); return; case MAP_MD_NAMESPACE_URI: map_ns_uri = buffer_init(); buffer_add_str(map_ns_uri, yytext); return; case MAP_MD_TITLE: map_o->metadata->title = buffer_init(); buffer_add_str(map_o->metadata->title, yytext); return; case MAP_MD_SRS: map_srid = list_explode_str(',', yytext); return; case MAP_MD_CONTACT_NAME: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->name = buffer_from_str(yytext); return; case MAP_MD_CONTACT_EMAIL: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->email = buffer_from_str(yytext); return; case MAP_MD_CONTACT_INDIVIDUAL: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->indiv_name = buffer_from_str(yytext); return; case MAP_MD_CONTACT_POSITION: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->position = buffer_from_str(yytext); return; case MAP_MD_CONTACT_PHONE: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->phone = buffer_from_str(yytext); return; case MAP_MD_CONTACT_FAX: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->fax = buffer_from_str(yytext); return; case MAP_MD_CONTACT_ADDRESS: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->address = buffer_from_str(yytext); return; case MAP_MD_CONTACT_CITY: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->city = buffer_from_str(yytext); return; case MAP_MD_CONTACT_COUNTRY: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->country = buffer_from_str(yytext); return; case MAP_MD_TOWS_SCHEMA_DIR: buffer_add_str(map_o->schema_dir, yytext); return; case MAP_MD_TOWS_ONLINERESOURCE: buffer_add_str(map_o->online_resource, yytext); return; case MAP_MD_TOWS_DB_ENCODING: buffer_add_str(map_o->db_encoding, yytext); return; case MAP_MD_TOWS_LOG: map_o->log_file = buffer_init(); buffer_add_str(map_o->log_file, yytext); return; case MAP_MD_TOWS_LOG_LEVEL: i = atoi(yytext); if (i > 0 && i < 16) map_o->log_level = i; return; case MAP_MD_TOWS_WFS_DEFAULT_VERSION: ows_version_set_str(map_o->wfs_default_version, yytext); return; case MAP_MD_TOWS_DEGREE_PRECISION: i = atoi(yytext); if (i > 0 && i < 12) map_o->degree_precision = i; return; case MAP_MD_TOWS_METER_PRECISION: i = atoi(yytext); if (i > 0 && i < 12) map_o->meter_precision = i; return; case MAP_MD_TOWS_DISPLAY_BBOX: if (!atoi(yytext)) map_o->display_bbox = false; return; case MAP_MD_TOWS_ESTIMATED_EXTENT: if (atoi(yytext)) map_o->estimated_extent = true; return; case MAP_MD_TOWS_CHECK_SCHEMA: if (!atoi(yytext)) map_o->check_schema = false; return; case MAP_MD_TOWS_CHECK_VALID_GEOM: if (!atoi(yytext)) map_o->check_valid_geom = false; return; case MAP_MD_TOWS_EXPOSE_PK: if (atoi(yytext)) map_o->check_valid_geom = true; return; case MAP_MD_TOWS_GEOBBOX: g = ows_geobbox_init(); if (ows_geobbox_set_from_str(map_o, g, yytext)) map_o->max_geobbox = g; else ows_geobbox_free(g); return; } } static void metadata_layer_key(char *yytext, bool quotes) { char *p; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } if(!strncmp("gml_exclude_items", yytext, 17)) map_lmd_state = MAP_LMD_EXCLUDE_ITEMS; else if(!strncmp("gml_featureid", yytext, 13) || !strncmp("wfs_featureid", yytext, 13) || !strncmp("ows_featureid", yytext, 13)) map_lmd_state = MAP_LMD_FEATURE_ID; /* TODO groups handle */ else if(!strncmp("gml_include_items", yytext, 17)) map_lmd_state = MAP_LMD_INCLUDE_ITEMS; /* TODO ALIAS handle */ /* TODO TYPE handle */ else if(!strncmp("gml_xml_items", yytext, 13)) map_lmd_state = MAP_LMD_XML_ITEMS; else if(!strncmp("wfs_abstract", yytext, 12)) map_lmd_state = MAP_LMD_ABSTRACT; else if(!strncmp("wfs_extent", yytext, 10)) map_lmd_state = MAP_LMD_EXTENT; else if(!strncmp("wfs_keywordlist", yytext, 15)) map_lmd_state = MAP_LMD_KEYWORDLIST; else if(!strncmp("wfs_namespace_prefix", yytext, 20)) map_lmd_state = MAP_LMD_NAMESPACE_PREFIX; else if(!strncmp("wfs_namespace_uri", yytext, 17)) map_lmd_state = MAP_LMD_NAMESPACE_URI; else if(!strncmp("wfs_metadataurl_format", yytext, 22)) map_lmd_state = MAP_LMD_METADATAURL_FORMAT; else if(!strncmp("wfs_metadataurl_href", yytext, 20)) map_lmd_state = MAP_LMD_METADATAURL_HREF; else if(!strncmp("wfs_metadataurl_type", yytext, 20)) map_lmd_state = MAP_LMD_METADATAURL_TYPE; else if(!strncmp("wfs_srs", yytext, 7)) map_lmd_state = MAP_LMD_SRS; else if(!strncmp("wfs_title", yytext, 9)) map_lmd_state = MAP_LMD_TITLE; else if(!strncmp("tinyows_table", yytext, 13)) map_lmd_state = MAP_LMD_TOWS_TABLE; else if(!strncmp("tinyows_schema", yytext, 14)) map_lmd_state = MAP_LMD_TOWS_SCHEMA; else if(!strncmp("tinyows_retrievable", yytext, 19)) map_lmd_state = MAP_LMD_TOWS_RETRIEVABLE; else if(!strncmp("tinyows_writable", yytext, 16)) map_lmd_state = MAP_LMD_TOWS_WRITABLE; else if(!strncmp("tinyows_geobbox", yytext, 15)) map_lmd_state = MAP_LMD_TOWS_GEOBBOX; else if(!strncmp("tinyows_gml_ns_list", yytext, 19)) map_lmd_state = MAP_LMD_TOWS_GML_NS_LIST; else map_lmd_state = MAP_LMD_SKIP; } static void metadata_layer_value(char *yytext, bool quotes) { ows_geobbox *g; char *p; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } switch(map_lmd_state) { case MAP_LMD_SKIP: return; case MAP_LMD_EXCLUDE_ITEMS: case MAP_LMD_FEATURE_ID: case MAP_LMD_INCLUDE_ITEMS: case MAP_LMD_XML_ITEMS: case MAP_LMD_EXTENT: case MAP_LMD_METADATAURL_FORMAT: case MAP_LMD_METADATAURL_HREF: case MAP_LMD_METADATAURL_TYPE: /* TODO */ return; case MAP_LMD_NAMESPACE_URI: buffer_add_str(map_l->ns_uri, yytext); return; case MAP_LMD_NAMESPACE_PREFIX: buffer_add_str(map_l->ns_prefix, yytext); if (map_l->name->use) { buffer_add_head(map_l->name, ':'); buffer_add_head_str(map_l->name, yytext); } return; case MAP_LMD_SRS: map_l->srid = list_explode_str(',', yytext); return; case MAP_LMD_KEYWORDLIST: map_l->keywords = list_explode_str(',', yytext); return; case MAP_LMD_ABSTRACT: map_l->abstract = buffer_init(); buffer_add_str(map_l->abstract, yytext); return; case MAP_LMD_TITLE: map_l->title = buffer_init(); buffer_add_str(map_l->title, yytext); return; case MAP_LMD_TOWS_SCHEMA: buffer_add_str(map_l->storage->schema, yytext); return; case MAP_LMD_TOWS_TABLE: buffer_add_str(map_l->storage->table, yytext); return; case MAP_LMD_TOWS_GML_NS_LIST: map_l->gml_ns = list_explode_str(',', yytext); return; case MAP_LMD_TOWS_WRITABLE: map_l->writable=atoi(yytext)?1:0; return; case MAP_LMD_TOWS_RETRIEVABLE: map_l->retrievable=atoi(yytext)?1:0; return; case MAP_LMD_TOWS_GEOBBOX: g = ows_geobbox_init(); if (ows_geobbox_set_from_str(map_o, g, yytext)) map_l->geobbox = g; else ows_geobbox_free(g); return; } } static void properties(char *yytext, bool quotes) { char *p; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } switch(map_prop_state) { case MAP_NAME: map_o->metadata->name = buffer_init(); buffer_add_str(map_o->metadata->name, yytext); return; } } static void layer_properties(char * yytext, bool quotes) { char *p; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } switch(map_layer_prop_state) { case MAP_LAYER_NAME: map_l->name = buffer_init(); buffer_add_str(map_l->name, yytext); return; case MAP_LAYER_CONNECTION: /* TODO: Having a Layer connection notion in TinyOWS */ if (map_o->pg_dsn->use && strcmp(map_o->pg_dsn->buf, yytext)) ows_error(map_o, OWS_ERROR_CONFIG_FILE, "MapFile have more than one single PostGIS db connection.", "parse_config_file"); else if (!map_o->pg_dsn->use) buffer_add_str(map_o->pg_dsn, yytext); return; } } static void end_layer() { if (!map_is_postgis) ows_layer_free(map_l); else { if (!map_l->storage->table->use) buffer_copy(map_l->storage->table, map_l->name); if (!map_l->storage->schema->use) buffer_add_str(map_l->storage->schema, "public"); if (!map_is_dump) map_l->retrievable=map_l->writable = false; map_l->name_prefix = buffer_init(); buffer_copy(map_l->name_prefix, map_l->name); if (map_l->ns_prefix->use) { buffer_add_head(map_l->name_prefix, ':'); buffer_add_head_str(map_l->name_prefix, map_l->ns_prefix->buf); } map_l->name_no_uri = buffer_init(); buffer_copy(map_l->name_no_uri, map_l->name); if (map_l->ns_uri->use) { buffer_add_head(map_l->name, ':'); buffer_add_head_str(map_l->name, map_l->ns_uri->buf); } ows_layer_list_add(map_o->layers, map_l); } map_is_dump = map_is_postgis = false; } #line 1639 "src/mapfile/mapfile.c" #define INITIAL 0 #define MAP 1 #define WEB 2 #define METADATA 3 #define METADATA_VALUE 4 #define PROPERTIES 5 #define LAYER_PROPERTIES 6 #define LAYER_METADATA 7 #define LAYER_METADATA_VALUE 8 #define LAYER_CONNECTIONTYPE 9 #define LAYER_DUMP 10 #define LAYER 11 #define FEATURE 12 #define GRID 13 #define JOIN 14 #define CLASS 15 #define STYLE 16 #define STYLE_PATTERN 17 #define LABEL 18 #define PROJECTION 19 #define QUERYMAP 20 #define SCALEBAR 21 #define LEGEND 22 #define REFERENCE 23 #define OUTPUTFORMAT 24 #define SYMBOL 25 #define PATTERN 26 #define POINTS 27 #define INCLUDE 28 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #ifndef _WIN32 #include #endif #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals (void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy (void ); int yyget_debug (void ); void yyset_debug (int debug_flag ); YY_EXTRA_TYPE yyget_extra (void ); void yyset_extra (YY_EXTRA_TYPE user_defined ); FILE *yyget_in (void ); void yyset_in (FILE * in_str ); FILE *yyget_out (void ); void yyset_out (FILE * out_str ); yy_size_t yyget_leng (void ); char *yyget_text (void ); int yyget_lineno (void ); void yyset_lineno (int line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void ); #else static int input (void ); #endif #endif static int yy_start_stack_ptr = 0; static int yy_start_stack_depth = 0; static int *yy_start_stack = NULL; static void yy_push_state (int new_state ); static void yy_pop_state (void ); static int yy_top_state (void ); /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO fwrite( yytext, yyleng, 1, yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ yy_size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 extern int yylex (void); #define YY_DECL int yylex (void) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 598 "src/mapfile/mapfile.l" #line 1860 "src/mapfile/mapfile.c" if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_load_buffer_state( ); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = (yy_start); yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 677 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_current_state != 676 ); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); yy_find_action: yy_act = yy_accept[yy_current_state]; YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: YY_RULE_SETUP #line 600 "src/mapfile/mapfile.l" { char c ; for (c=input() ; c && c != '\n' ; c=input()); } YY_BREAK case 2: YY_RULE_SETUP #line 601 "src/mapfile/mapfile.l" { yy_push_state(INCLUDE); OWS_MAP_DBG } YY_BREAK case 3: YY_RULE_SETUP #line 604 "src/mapfile/mapfile.l" { /*LEGEND rule must appears before END... */ yy_push_state(LEGEND); OWS_MAP_DBG } YY_BREAK case 4: YY_RULE_SETUP #line 607 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE if (yy_top_state() == INITIAL && YY_START != MAP) { ows_error(map_o, OWS_ERROR_CONFIG_FILE, "MapFile Parse Error", "parse_config_file"); yyterminate();} if (YY_START == LAYER) { end_layer(); } yy_pop_state(); OWS_MAP_DBG } YY_BREAK case 5: YY_RULE_SETUP #line 618 "src/mapfile/mapfile.l" { yy_push_state(MAP); OWS_MAP_DBG } YY_BREAK case 6: YY_RULE_SETUP #line 619 "src/mapfile/mapfile.l" { yy_push_state(WEB); OWS_MAP_DBG } YY_BREAK case 7: YY_RULE_SETUP #line 620 "src/mapfile/mapfile.l" { yy_push_state(QUERYMAP); OWS_MAP_DBG } YY_BREAK case 8: YY_RULE_SETUP #line 621 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE /* must be before SYMBOL */ } YY_BREAK case 9: YY_RULE_SETUP #line 622 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 10: YY_RULE_SETUP #line 623 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 11: YY_RULE_SETUP #line 624 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 12: YY_RULE_SETUP #line 625 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 13: YY_RULE_SETUP #line 626 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 14: YY_RULE_SETUP #line 627 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 15: YY_RULE_SETUP #line 628 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 16: YY_RULE_SETUP #line 629 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 17: YY_RULE_SETUP #line 630 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 18: YY_RULE_SETUP #line 631 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 19: YY_RULE_SETUP #line 632 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 20: YY_RULE_SETUP #line 633 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 21: YY_RULE_SETUP #line 634 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 22: YY_RULE_SETUP #line 635 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 23: YY_RULE_SETUP #line 636 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 24: YY_RULE_SETUP #line 637 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 25: YY_RULE_SETUP #line 638 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 26: YY_RULE_SETUP #line 639 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 27: YY_RULE_SETUP #line 640 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 28: YY_RULE_SETUP #line 641 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 29: YY_RULE_SETUP #line 642 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 30: YY_RULE_SETUP #line 643 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 31: YY_RULE_SETUP #line 644 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 32: YY_RULE_SETUP #line 645 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 33: YY_RULE_SETUP #line 646 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 34: YY_RULE_SETUP #line 647 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 35: YY_RULE_SETUP #line 648 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 36: YY_RULE_SETUP #line 649 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 37: YY_RULE_SETUP #line 650 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 38: YY_RULE_SETUP #line 651 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 39: YY_RULE_SETUP #line 652 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 40: YY_RULE_SETUP #line 653 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 41: YY_RULE_SETUP #line 654 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 42: YY_RULE_SETUP #line 655 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 43: YY_RULE_SETUP #line 656 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 44: YY_RULE_SETUP #line 657 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 45: YY_RULE_SETUP #line 658 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 46: YY_RULE_SETUP #line 659 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 47: YY_RULE_SETUP #line 660 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 48: YY_RULE_SETUP #line 661 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 49: YY_RULE_SETUP #line 662 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 50: YY_RULE_SETUP #line 663 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 51: YY_RULE_SETUP #line 664 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 52: YY_RULE_SETUP #line 665 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 53: YY_RULE_SETUP #line 666 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 54: YY_RULE_SETUP #line 667 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 55: YY_RULE_SETUP #line 668 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 56: YY_RULE_SETUP #line 669 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 57: YY_RULE_SETUP #line 670 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 58: YY_RULE_SETUP #line 671 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 59: YY_RULE_SETUP #line 672 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 60: YY_RULE_SETUP #line 673 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 61: YY_RULE_SETUP #line 674 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 62: YY_RULE_SETUP #line 675 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 63: YY_RULE_SETUP #line 676 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 64: YY_RULE_SETUP #line 677 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 65: YY_RULE_SETUP #line 678 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 66: YY_RULE_SETUP #line 679 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 67: YY_RULE_SETUP #line 680 "src/mapfile/mapfile.l" { OWS_MAP_EATLINE } YY_BREAK case 68: YY_RULE_SETUP #line 682 "src/mapfile/mapfile.l" { yy_push_state(SYMBOL); OWS_MAP_DBG } YY_BREAK case 69: YY_RULE_SETUP #line 683 "src/mapfile/mapfile.l" { yy_push_state(SCALEBAR); OWS_MAP_DBG } YY_BREAK case 70: YY_RULE_SETUP #line 684 "src/mapfile/mapfile.l" { yy_push_state(REFERENCE); OWS_MAP_DBG } YY_BREAK case 71: YY_RULE_SETUP #line 685 "src/mapfile/mapfile.l" { yy_push_state(OUTPUTFORMAT); OWS_MAP_DBG } YY_BREAK case 72: YY_RULE_SETUP #line 686 "src/mapfile/mapfile.l" { yy_push_state(METADATA); OWS_MAP_DBG } YY_BREAK case 73: YY_RULE_SETUP #line 687 "src/mapfile/mapfile.l" { yy_push_state(GRID); OWS_MAP_DBG } YY_BREAK case 74: YY_RULE_SETUP #line 688 "src/mapfile/mapfile.l" { yy_push_state(JOIN); OWS_MAP_DBG } YY_BREAK case 75: YY_RULE_SETUP #line 689 "src/mapfile/mapfile.l" { yy_push_state(LAYER_METADATA); OWS_MAP_DBG } YY_BREAK case 76: YY_RULE_SETUP #line 690 "src/mapfile/mapfile.l" { yy_push_state(CLASS); OWS_MAP_DBG } YY_BREAK case 77: YY_RULE_SETUP #line 691 "src/mapfile/mapfile.l" { yy_push_state(STYLE); OWS_MAP_DBG } YY_BREAK case 78: YY_RULE_SETUP #line 692 "src/mapfile/mapfile.l" { yy_push_state(LABEL); OWS_MAP_DBG } YY_BREAK case 79: YY_RULE_SETUP #line 693 "src/mapfile/mapfile.l" { yy_push_state(PROJECTION); OWS_MAP_DBG } YY_BREAK case 80: YY_RULE_SETUP #line 694 "src/mapfile/mapfile.l" { yy_push_state(PATTERN); OWS_MAP_DBG } YY_BREAK case 81: YY_RULE_SETUP #line 695 "src/mapfile/mapfile.l" { yy_push_state(POINTS); OWS_MAP_DBG } YY_BREAK case 82: YY_RULE_SETUP #line 696 "src/mapfile/mapfile.l" { yy_push_state(LABEL); OWS_MAP_DBG } YY_BREAK case 83: YY_RULE_SETUP #line 697 "src/mapfile/mapfile.l" { yy_push_state(LAYER); map_l = ows_layer_init(); OWS_MAP_DBG } YY_BREAK case 84: YY_RULE_SETUP #line 698 "src/mapfile/mapfile.l" { yy_push_state(FEATURE); OWS_MAP_DBG } YY_BREAK case 85: YY_RULE_SETUP #line 699 "src/mapfile/mapfile.l" { BEGIN PROPERTIES; map_prop_state = MAP_NAME; } YY_BREAK case 86: YY_RULE_SETUP #line 700 "src/mapfile/mapfile.l" { BEGIN LAYER_PROPERTIES; map_layer_prop_state = MAP_LAYER_NAME; } YY_BREAK case 87: YY_RULE_SETUP #line 701 "src/mapfile/mapfile.l" { BEGIN LAYER_PROPERTIES; map_layer_prop_state = MAP_LAYER_CONNECTION; } YY_BREAK case 88: YY_RULE_SETUP #line 702 "src/mapfile/mapfile.l" { BEGIN LAYER_CONNECTIONTYPE; } YY_BREAK case 89: YY_RULE_SETUP #line 703 "src/mapfile/mapfile.l" { BEGIN LAYER; map_is_postgis=true; } YY_BREAK case 90: YY_RULE_SETUP #line 704 "src/mapfile/mapfile.l" { BEGIN LAYER; map_is_postgis=false; } YY_BREAK case 91: YY_RULE_SETUP #line 705 "src/mapfile/mapfile.l" { BEGIN LAYER_DUMP; } YY_BREAK case 92: YY_RULE_SETUP #line 706 "src/mapfile/mapfile.l" { BEGIN LAYER; map_is_dump=true; } YY_BREAK case 93: YY_RULE_SETUP #line 707 "src/mapfile/mapfile.l" { BEGIN LAYER; map_is_dump=false; } YY_BREAK case 94: /* rule 94 can match eol */ YY_RULE_SETUP #line 709 "src/mapfile/mapfile.l" {} YY_BREAK case 95: /* rule 95 can match eol */ YY_RULE_SETUP #line 711 "src/mapfile/mapfile.l" {metadata_key(yytext, true); BEGIN METADATA_VALUE;} YY_BREAK case 96: /* rule 96 can match eol */ YY_RULE_SETUP #line 712 "src/mapfile/mapfile.l" {metadata_value(yytext, true); BEGIN METADATA;} YY_BREAK case 97: /* rule 97 can match eol */ YY_RULE_SETUP #line 713 "src/mapfile/mapfile.l" {metadata_layer_key(yytext, true); BEGIN LAYER_METADATA_VALUE;} YY_BREAK case 98: /* rule 98 can match eol */ YY_RULE_SETUP #line 714 "src/mapfile/mapfile.l" {metadata_layer_value(yytext, true); BEGIN LAYER_METADATA;} YY_BREAK case 99: /* rule 99 can match eol */ YY_RULE_SETUP #line 715 "src/mapfile/mapfile.l" { char *p, *q; buffer *path; yy_pop_state(); OWS_MAP_DBG if(map_include_stack_ptr >= OWS_MAP_MAX_INCLUDE_DEPTH) { ows_error(map_o, OWS_ERROR_CONFIG_FILE, "MapFile: include nested too deeply", "parse_config_file"); yyterminate(); } map_include_stack[map_include_stack_ptr] = YY_CURRENT_BUFFER; map_include_stack_ptr++; for (p = q = yytext; *p ; p++); *(--p) = 0; q++; /* remove surrounding quotes */ path = mapfile_build_path(map_o, q); yyin = fopen(path->buf, "r"); buffer_free(path); if (!yyin) { ows_error(map_o, OWS_ERROR_CONFIG_FILE, "MapFile: include unable to open file", "parse_config_file"); yyterminate(); } yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE)); } YY_BREAK case 100: /* rule 100 can match eol */ YY_RULE_SETUP #line 746 "src/mapfile/mapfile.l" {properties(yytext, true); BEGIN MAP;} YY_BREAK case 101: YY_RULE_SETUP #line 747 "src/mapfile/mapfile.l" {properties(yytext, false); BEGIN MAP;} YY_BREAK case 102: /* rule 102 can match eol */ YY_RULE_SETUP #line 748 "src/mapfile/mapfile.l" {layer_properties(yytext, true); BEGIN LAYER;} YY_BREAK case 103: YY_RULE_SETUP #line 749 "src/mapfile/mapfile.l" {layer_properties(yytext, false); BEGIN LAYER;} YY_BREAK case 104: /* rule 104 can match eol */ YY_RULE_SETUP #line 750 "src/mapfile/mapfile.l" {} YY_BREAK case 105: YY_RULE_SETUP #line 751 "src/mapfile/mapfile.l" {} YY_BREAK case 106: /* rule 106 can match eol */ YY_RULE_SETUP #line 752 "src/mapfile/mapfile.l" {} YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(MAP): case YY_STATE_EOF(WEB): case YY_STATE_EOF(METADATA): case YY_STATE_EOF(METADATA_VALUE): case YY_STATE_EOF(PROPERTIES): case YY_STATE_EOF(LAYER_PROPERTIES): case YY_STATE_EOF(LAYER_METADATA): case YY_STATE_EOF(LAYER_METADATA_VALUE): case YY_STATE_EOF(LAYER_CONNECTIONTYPE): case YY_STATE_EOF(LAYER_DUMP): case YY_STATE_EOF(LAYER): case YY_STATE_EOF(FEATURE): case YY_STATE_EOF(GRID): case YY_STATE_EOF(JOIN): case YY_STATE_EOF(CLASS): case YY_STATE_EOF(STYLE): case YY_STATE_EOF(STYLE_PATTERN): case YY_STATE_EOF(LABEL): case YY_STATE_EOF(PROJECTION): case YY_STATE_EOF(QUERYMAP): case YY_STATE_EOF(SCALEBAR): case YY_STATE_EOF(LEGEND): case YY_STATE_EOF(REFERENCE): case YY_STATE_EOF(OUTPUTFORMAT): case YY_STATE_EOF(SYMBOL): case YY_STATE_EOF(PATTERN): case YY_STATE_EOF(POINTS): case YY_STATE_EOF(INCLUDE): #line 754 "src/mapfile/mapfile.l" { /* End of main file */ if (map_include_stack_ptr == 0 && YY_START == 0) yyterminate(); else if (map_include_stack_ptr) { fclose(YY_CURRENT_BUFFER->yy_input_file); yy_delete_buffer(YY_CURRENT_BUFFER ); yy_switch_to_buffer(map_include_stack[--map_include_stack_ptr]); } else { ows_error(map_o, OWS_ERROR_CONFIG_FILE, "MapFile parse error", "parse_config_file"); yyterminate(); } } YY_BREAK case 107: YY_RULE_SETUP #line 769 "src/mapfile/mapfile.l" ECHO; YY_BREAK #line 2567 "src/mapfile/mapfile.c" case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { yy_size_t num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { yy_size_t new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (void) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 677 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { register int yy_is_jam; register char *yy_cp = (yy_c_buf_p); register YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 677 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 676); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ yy_size_t offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return 0; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { yy_size_t num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { return yy_scan_bytes(yystr,strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param bytes the byte buffer to scan * @param len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n, i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } static void yy_push_state (int new_state ) { if ( (yy_start_stack_ptr) >= (yy_start_stack_depth) ) { yy_size_t new_size; (yy_start_stack_depth) += YY_START_STACK_INCR; new_size = (yy_start_stack_depth) * sizeof( int ); if ( ! (yy_start_stack) ) (yy_start_stack) = (int *) yyalloc(new_size ); else (yy_start_stack) = (int *) yyrealloc((void *) (yy_start_stack),new_size ); if ( ! (yy_start_stack) ) YY_FATAL_ERROR( "out of memory expanding start-condition stack" ); } (yy_start_stack)[(yy_start_stack_ptr)++] = YY_START; BEGIN(new_state); } static void yy_pop_state (void) { if ( --(yy_start_stack_ptr) < 0 ) YY_FATAL_ERROR( "start-condition stack underflow" ); BEGIN((yy_start_stack)[(yy_start_stack_ptr)]); } static int yy_top_state (void) { return (yy_start_stack)[(yy_start_stack_ptr) - 1]; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yy_fatal_error (yyconst char* msg ) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ yy_size_t yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param line_number * */ void yyset_lineno (int line_number ) { yylineno = line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * in_str ) { yyin = in_str ; } void yyset_out (FILE * out_str ) { yyout = out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int bdebug ) { yy_flex_debug = bdebug ; } static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ (yy_buffer_stack) = 0; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = (char *) 0; (yy_init) = 0; (yy_start) = 0; (yy_start_stack_ptr) = 0; (yy_start_stack_depth) = 0; (yy_start_stack) = NULL; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (void) { /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; /* Destroy the start condition stack. */ yyfree((yy_start_stack) ); (yy_start_stack) = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( ); return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (void *) malloc( size ); } void *yyrealloc (void * ptr, yy_size_t size ) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 769 "src/mapfile/mapfile.l" void ows_parse_config_mapfile(ows * o, const char *filename) { ows_layer_node *ln; assert(o); assert(filename); if (!(yyin = fopen(filename, "r"))) { ows_error(o, OWS_ERROR_CONFIG_FILE, "Unable to open MapFile !", "parse_config_file"); return; } map_o = o; map_o->metadata = ows_metadata_init(); map_o->layers = ows_layer_list_init(); while( yylex() ) ; if (!map_o->encoding->use) buffer_add_str(map_o->encoding, OWS_DEFAULT_XML_ENCODING); if (!map_o->db_encoding->use) buffer_add_str(map_o->db_encoding, OWS_DEFAULT_DB_ENCODING); if (map_srid) { for (ln = o->layers->first ; ln ; ln = ln->next) list_add_list(ln->layer->srid, map_srid); list_free(map_srid); } if (map_ns_uri) { for (ln = o->layers->first ; ln ; ln = ln->next) if (!ln->layer->ns_uri->use) buffer_copy(ln->layer->ns_uri, map_ns_uri); buffer_free(map_ns_uri); } if (map_ns_prefix) { for (ln = o->layers->first ; ln ; ln = ln->next) if (!ln->layer->ns_prefix->use) buffer_copy(ln->layer->ns_prefix, map_ns_prefix); buffer_free(map_ns_prefix); } fclose(yyin); } tinyows-1.2.2/src/mapfile/mapfile.l000066400000000000000000000615471465244332600172540ustar00rootroot00000000000000%{ #include #include #include #include #include #include "../ows_define.h" #include "../ows_struct.h" #include "../ows_api.h" #define OWS_MAP_EATLINE char c ; for (c=input() ; c && c != '\n' ; c=input()); #define OWS_MAP_MAX_INCLUDE_DEPTH 5 #if 0 #define OWS_MAP_DBG fprintf(stderr, "State: {%i} %i \n", yy_top_state(), YY_START); #else #define OWS_MAP_DBG #endif static buffer * mapfile_build_path(ows * o, char * fpath) { buffer * path; assert(fpath); /* Path is absolute */ if ((fpath[0] == '/') || (fpath[0] == '\\') || (strlen(fpath) && (fpath[1] == ':'))) return buffer_from_str(fpath); /* Path is relative */ path = buffer_init(); buffer_copy(path, o->config_file); for ( /* empty */ ; path->use ; path->use--) if ((path->buf[path->use] == '/') || (path->buf[path->use] == '\\')) { path->use++ ; break; } buffer_add_str(path, fpath); return path; } enum map_md_state { MAP_MD_UPDATESEQUENCE, MAP_MD_SCHEMAS_LOCATION, MAP_MD_ABSTRACT, MAP_MD_ACCESSCONSTRAINTS, MAP_MD_ENCODING, MAP_MD_FEES, MAP_MD_KEYWORDLIST, MAP_MD_MAXFEATURES, MAP_MD_NAMESPACE_PREFIX, MAP_MD_NAMESPACE_URI, MAP_MD_TITLE, MAP_MD_SRS, MAP_MD_FEATURE_COLLECTION, MAP_MD_CONTACT_NAME, MAP_MD_CONTACT_EMAIL, MAP_MD_CONTACT_INDIVIDUAL, MAP_MD_CONTACT_POSITION, MAP_MD_CONTACT_PHONE, MAP_MD_CONTACT_FAX, MAP_MD_CONTACT_ADDRESS, MAP_MD_CONTACT_CITY, MAP_MD_CONTACT_COUNTRY, MAP_MD_TOWS_ONLINERESOURCE, MAP_MD_TOWS_SCHEMA_DIR, MAP_MD_TOWS_DB_ENCODING, MAP_MD_TOWS_LOG, MAP_MD_TOWS_LOG_LEVEL, MAP_MD_TOWS_WFS_DEFAULT_VERSION, MAP_MD_TOWS_METER_PRECISION, MAP_MD_TOWS_DEGREE_PRECISION, MAP_MD_TOWS_DISPLAY_BBOX, MAP_MD_TOWS_ESTIMATED_EXTENT, MAP_MD_TOWS_CHECK_SCHEMA, MAP_MD_TOWS_CHECK_VALID_GEOM, MAP_MD_TOWS_EXPOSE_PK, MAP_MD_TOWS_GEOBBOX, MAP_MD_SKIP }; enum map_lmd_state { MAP_LMD_EXCLUDE_ITEMS, MAP_LMD_FEATURE_ID, MAP_LMD_INCLUDE_ITEMS, MAP_LMD_XML_ITEMS, MAP_LMD_ABSTRACT, MAP_LMD_EXTENT, MAP_LMD_KEYWORDLIST, MAP_LMD_METADATAURL_FORMAT, MAP_LMD_METADATAURL_HREF, MAP_LMD_METADATAURL_TYPE, MAP_LMD_NAMESPACE_PREFIX, MAP_LMD_NAMESPACE_URI, MAP_LMD_SRS, MAP_LMD_TITLE, MAP_LMD_TOWS_TABLE, MAP_LMD_TOWS_SCHEMA, MAP_LMD_TOWS_RETRIEVABLE, MAP_LMD_TOWS_WRITABLE, MAP_LMD_TOWS_GEOBBOX, MAP_LMD_TOWS_GML_NS_LIST, MAP_LMD_SKIP }; enum map_prop_state { MAP_NAME }; enum map_layer_prop_state { MAP_LAYER_NAME, MAP_LAYER_CONNECTION }; /* * Global Vars */ ows *map_o = NULL; ows_layer *map_l = NULL; list * map_srid = NULL; buffer *map_ns_prefix = NULL; buffer *map_ns_uri = NULL; bool map_is_postgis = false; bool map_is_dump = false; YY_BUFFER_STATE map_include_stack[OWS_MAP_MAX_INCLUDE_DEPTH]; int map_include_stack_ptr = 0; enum map_md_state map_md_state; enum map_lmd_state map_lmd_state; enum map_prop_state map_prop_state; enum map_layer_prop_state map_layer_prop_state; static void metadata_key(char *yytext, bool quotes) { char *p; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } if (!strncmp("ows_updatesequence", yytext, 18)) map_md_state = MAP_MD_UPDATESEQUENCE; else if(!strncmp("ows_schemas_location", yytext, 20)) map_md_state = MAP_MD_SCHEMAS_LOCATION; else if(!strncmp("wfs_abstract", yytext, 12)) map_md_state = MAP_MD_ABSTRACT; else if(!strncmp("wfs_accessconstraints", yytext, 21)) map_md_state = MAP_MD_ACCESSCONSTRAINTS; else if(!strncmp("wfs_encoding", yytext, 12)) map_md_state = MAP_MD_ENCODING; else if(!strncmp("wfs_fees", yytext, 8)) map_md_state = MAP_MD_FEES; else if(!strncmp("wfs_keywordlist", yytext, 15)) map_md_state = MAP_MD_KEYWORDLIST; else if(!strncmp("wfs_maxfeatures", yytext, 15)) map_md_state = MAP_MD_MAXFEATURES; else if(!strncmp("wfs_namespace_prefix", yytext, 20)) map_md_state = MAP_MD_NAMESPACE_PREFIX; else if(!strncmp("wfs_namespace_uri", yytext, 17)) map_md_state = MAP_MD_NAMESPACE_URI; else if(!strncmp("wfs_title", yytext, 9)) map_md_state = MAP_MD_TITLE; else if(!strncmp("wfs_srs", yytext, 7)) map_md_state = MAP_MD_SRS; else if(!strncmp("wfs_feature_collection", yytext, 22)) map_md_state = MAP_MD_FEATURE_COLLECTION; else if(!strncmp("ows_contactorganization", yytext, 23)) map_md_state = MAP_MD_CONTACT_NAME; else if(!strncmp("ows_contactelectronicmailaddress", yytext, 32)) map_md_state = MAP_MD_CONTACT_EMAIL; else if(!strncmp("ows_contactperson", yytext, 17)) map_md_state = MAP_MD_CONTACT_INDIVIDUAL; else if(!strncmp("ows_contactposition", yytext, 19)) map_md_state = MAP_MD_CONTACT_POSITION; else if(!strncmp("ows_contactphone", yytext, 16)) map_md_state = MAP_MD_CONTACT_PHONE; else if(!strncmp("ows_address", yytext, 11)) map_md_state = MAP_MD_CONTACT_ADDRESS; else if(!strncmp("ows_city", yytext, 8)) map_md_state = MAP_MD_CONTACT_CITY; else if(!strncmp("ows_country", yytext, 11)) map_md_state = MAP_MD_CONTACT_COUNTRY; else if(!strncmp("ows_contactfacsimiletelephone", yytext, 29)) map_md_state = MAP_MD_CONTACT_FAX; else if(!strncmp("tinyows_onlineresource", yytext, 21)) map_md_state = MAP_MD_TOWS_ONLINERESOURCE; else if(!strncmp("tinyows_db_encoding", yytext, 19)) map_md_state = MAP_MD_TOWS_DB_ENCODING; else if(!strncmp("tinyows_schema_dir", yytext, 18)) map_md_state = MAP_MD_TOWS_SCHEMA_DIR; else if(!strncmp("tinyows_log_level", yytext, 17)) map_md_state = MAP_MD_TOWS_LOG_LEVEL; else if(!strncmp("tinyows_log", yytext, 11)) map_md_state = MAP_MD_TOWS_LOG; else if(!strncmp("tinyows_wfs_default_version", yytext, 77)) map_md_state = MAP_MD_TOWS_WFS_DEFAULT_VERSION; else if(!strncmp("tinyows_degree_precision", yytext, 24)) map_md_state = MAP_MD_TOWS_DEGREE_PRECISION; else if(!strncmp("tinyows_meter_precision", yytext, 23)) map_md_state = MAP_MD_TOWS_METER_PRECISION; else if(!strncmp("tinyows_display_bbox", yytext, 20)) map_md_state = MAP_MD_TOWS_DISPLAY_BBOX; else if(!strncmp("tinyows_estimated_extent", yytext, 24)) map_md_state = MAP_MD_TOWS_ESTIMATED_EXTENT; else if(!strncmp("tinyows_check_schema", yytext, 20)) map_md_state = MAP_MD_TOWS_CHECK_SCHEMA; else if(!strncmp("tinyows_check_valid_geom", yytext, 24)) map_md_state = MAP_MD_TOWS_CHECK_VALID_GEOM; else if(!strncmp("tinyows_expose_pk", yytext, 17)) map_md_state = MAP_MD_TOWS_EXPOSE_PK; else if(!strncmp("tinyows_geobbox", yytext, 15)) map_md_state = MAP_MD_TOWS_GEOBBOX; else map_md_state = MAP_MD_SKIP; } static void metadata_value(char *yytext, bool quotes) { int i; char *p; ows_geobbox *g; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } switch(map_md_state) { case MAP_MD_SKIP: return; case MAP_MD_UPDATESEQUENCE: return; /* TODO */ case MAP_MD_SCHEMAS_LOCATION: return; /* TODO */ case MAP_MD_FEATURE_COLLECTION: return; /* TODO */ case MAP_MD_ABSTRACT: map_o->metadata->abstract = buffer_init(); buffer_add_str(map_o->metadata->abstract, yytext); return; case MAP_MD_ACCESSCONSTRAINTS: map_o->metadata->access_constraints = buffer_init(); buffer_add_str(map_o->metadata->access_constraints, yytext); return; case MAP_MD_ENCODING: buffer_add_str(map_o->encoding, yytext); return; case MAP_MD_FEES: map_o->metadata->fees = buffer_init(); buffer_add_str(map_o->metadata->fees, yytext); return; case MAP_MD_KEYWORDLIST: map_o->metadata->keywords = list_explode_str(',', yytext); return; case MAP_MD_MAXFEATURES: map_o->max_features = atoi(yytext); return; case MAP_MD_NAMESPACE_PREFIX: map_ns_prefix = buffer_init(); buffer_add_str(map_ns_prefix, yytext); return; case MAP_MD_NAMESPACE_URI: map_ns_uri = buffer_init(); buffer_add_str(map_ns_uri, yytext); return; case MAP_MD_TITLE: map_o->metadata->title = buffer_init(); buffer_add_str(map_o->metadata->title, yytext); return; case MAP_MD_SRS: map_srid = list_explode_str(',', yytext); return; case MAP_MD_CONTACT_NAME: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->name = buffer_from_str(yytext); return; case MAP_MD_CONTACT_EMAIL: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->email = buffer_from_str(yytext); return; case MAP_MD_CONTACT_INDIVIDUAL: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->indiv_name = buffer_from_str(yytext); return; case MAP_MD_CONTACT_POSITION: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->position = buffer_from_str(yytext); return; case MAP_MD_CONTACT_PHONE: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->phone = buffer_from_str(yytext); return; case MAP_MD_CONTACT_FAX: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->fax = buffer_from_str(yytext); return; case MAP_MD_CONTACT_ADDRESS: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->address = buffer_from_str(yytext); return; case MAP_MD_CONTACT_CITY: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->city = buffer_from_str(yytext); return; case MAP_MD_CONTACT_COUNTRY: if (!map_o->contact) map_o->contact=ows_contact_init(); map_o->contact->country = buffer_from_str(yytext); return; case MAP_MD_TOWS_SCHEMA_DIR: buffer_add_str(map_o->schema_dir, yytext); return; case MAP_MD_TOWS_ONLINERESOURCE: buffer_add_str(map_o->online_resource, yytext); return; case MAP_MD_TOWS_DB_ENCODING: buffer_add_str(map_o->db_encoding, yytext); return; case MAP_MD_TOWS_LOG: map_o->log_file = buffer_init(); buffer_add_str(map_o->log_file, yytext); return; case MAP_MD_TOWS_LOG_LEVEL: i = atoi(yytext); if (i > 0 && i < 16) map_o->log_level = i; return; case MAP_MD_TOWS_WFS_DEFAULT_VERSION: ows_version_set_str(map_o->wfs_default_version, yytext); return; case MAP_MD_TOWS_DEGREE_PRECISION: i = atoi(yytext); if (i > 0 && i < 12) map_o->degree_precision = i; return; case MAP_MD_TOWS_METER_PRECISION: i = atoi(yytext); if (i > 0 && i < 12) map_o->meter_precision = i; return; case MAP_MD_TOWS_DISPLAY_BBOX: if (!atoi(yytext)) map_o->display_bbox = false; return; case MAP_MD_TOWS_ESTIMATED_EXTENT: if (atoi(yytext)) map_o->estimated_extent = true; return; case MAP_MD_TOWS_CHECK_SCHEMA: if (!atoi(yytext)) map_o->check_schema = false; return; case MAP_MD_TOWS_CHECK_VALID_GEOM: if (!atoi(yytext)) map_o->check_valid_geom = false; return; case MAP_MD_TOWS_EXPOSE_PK: if (atoi(yytext)) map_o->check_valid_geom = true; return; case MAP_MD_TOWS_GEOBBOX: g = ows_geobbox_init(); if (ows_geobbox_set_from_str(map_o, g, yytext)) map_o->max_geobbox = g; else ows_geobbox_free(g); return; } } static void metadata_layer_key(char *yytext, bool quotes) { char *p; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } if(!strncmp("gml_exclude_items", yytext, 17)) map_lmd_state = MAP_LMD_EXCLUDE_ITEMS; else if(!strncmp("gml_featureid", yytext, 13) || !strncmp("wfs_featureid", yytext, 13) || !strncmp("ows_featureid", yytext, 13)) map_lmd_state = MAP_LMD_FEATURE_ID; /* TODO groups handle */ else if(!strncmp("gml_include_items", yytext, 17)) map_lmd_state = MAP_LMD_INCLUDE_ITEMS; /* TODO ALIAS handle */ /* TODO TYPE handle */ else if(!strncmp("gml_xml_items", yytext, 13)) map_lmd_state = MAP_LMD_XML_ITEMS; else if(!strncmp("wfs_abstract", yytext, 12)) map_lmd_state = MAP_LMD_ABSTRACT; else if(!strncmp("wfs_extent", yytext, 10)) map_lmd_state = MAP_LMD_EXTENT; else if(!strncmp("wfs_keywordlist", yytext, 15)) map_lmd_state = MAP_LMD_KEYWORDLIST; else if(!strncmp("wfs_namespace_prefix", yytext, 20)) map_lmd_state = MAP_LMD_NAMESPACE_PREFIX; else if(!strncmp("wfs_namespace_uri", yytext, 17)) map_lmd_state = MAP_LMD_NAMESPACE_URI; else if(!strncmp("wfs_metadataurl_format", yytext, 22)) map_lmd_state = MAP_LMD_METADATAURL_FORMAT; else if(!strncmp("wfs_metadataurl_href", yytext, 20)) map_lmd_state = MAP_LMD_METADATAURL_HREF; else if(!strncmp("wfs_metadataurl_type", yytext, 20)) map_lmd_state = MAP_LMD_METADATAURL_TYPE; else if(!strncmp("wfs_srs", yytext, 7)) map_lmd_state = MAP_LMD_SRS; else if(!strncmp("wfs_title", yytext, 9)) map_lmd_state = MAP_LMD_TITLE; else if(!strncmp("tinyows_table", yytext, 13)) map_lmd_state = MAP_LMD_TOWS_TABLE; else if(!strncmp("tinyows_schema", yytext, 14)) map_lmd_state = MAP_LMD_TOWS_SCHEMA; else if(!strncmp("tinyows_retrievable", yytext, 19)) map_lmd_state = MAP_LMD_TOWS_RETRIEVABLE; else if(!strncmp("tinyows_writable", yytext, 16)) map_lmd_state = MAP_LMD_TOWS_WRITABLE; else if(!strncmp("tinyows_geobbox", yytext, 15)) map_lmd_state = MAP_LMD_TOWS_GEOBBOX; else if(!strncmp("tinyows_gml_ns_list", yytext, 19)) map_lmd_state = MAP_LMD_TOWS_GML_NS_LIST; else map_lmd_state = MAP_LMD_SKIP; } static void metadata_layer_value(char *yytext, bool quotes) { ows_geobbox *g; char *p; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } switch(map_lmd_state) { case MAP_LMD_SKIP: return; case MAP_LMD_EXCLUDE_ITEMS: case MAP_LMD_FEATURE_ID: case MAP_LMD_INCLUDE_ITEMS: case MAP_LMD_XML_ITEMS: case MAP_LMD_EXTENT: case MAP_LMD_METADATAURL_FORMAT: case MAP_LMD_METADATAURL_HREF: case MAP_LMD_METADATAURL_TYPE: /* TODO */ return; case MAP_LMD_NAMESPACE_URI: buffer_add_str(map_l->ns_uri, yytext); return; case MAP_LMD_NAMESPACE_PREFIX: buffer_add_str(map_l->ns_prefix, yytext); if (map_l->name->use) { buffer_add_head(map_l->name, ':'); buffer_add_head_str(map_l->name, yytext); } return; case MAP_LMD_SRS: map_l->srid = list_explode_str(',', yytext); return; case MAP_LMD_KEYWORDLIST: map_l->keywords = list_explode_str(',', yytext); return; case MAP_LMD_ABSTRACT: map_l->abstract = buffer_init(); buffer_add_str(map_l->abstract, yytext); return; case MAP_LMD_TITLE: map_l->title = buffer_init(); buffer_add_str(map_l->title, yytext); return; case MAP_LMD_TOWS_SCHEMA: buffer_add_str(map_l->storage->schema, yytext); return; case MAP_LMD_TOWS_TABLE: buffer_add_str(map_l->storage->table, yytext); return; case MAP_LMD_TOWS_GML_NS_LIST: map_l->gml_ns = list_explode_str(',', yytext); return; case MAP_LMD_TOWS_WRITABLE: map_l->writable=atoi(yytext)?1:0; return; case MAP_LMD_TOWS_RETRIEVABLE: map_l->retrievable=atoi(yytext)?1:0; return; case MAP_LMD_TOWS_GEOBBOX: g = ows_geobbox_init(); if (ows_geobbox_set_from_str(map_o, g, yytext)) map_l->geobbox = g; else ows_geobbox_free(g); return; } } static void properties(char *yytext, bool quotes) { char *p; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } switch(map_prop_state) { case MAP_NAME: map_o->metadata->name = buffer_init(); buffer_add_str(map_o->metadata->name, yytext); return; } } static void layer_properties(char * yytext, bool quotes) { char *p; /* remove surrounding quotes */ if (quotes) { for (p = yytext; *p ; p++); *(--p) = 0; yytext++; } switch(map_layer_prop_state) { case MAP_LAYER_NAME: map_l->name = buffer_init(); buffer_add_str(map_l->name, yytext); return; case MAP_LAYER_CONNECTION: /* TODO: Having a Layer connection notion in TinyOWS */ if (map_o->pg_dsn->use && strcmp(map_o->pg_dsn->buf, yytext)) ows_error(map_o, OWS_ERROR_CONFIG_FILE, "MapFile have more than one single PostGIS db connection.", "parse_config_file"); else if (!map_o->pg_dsn->use) buffer_add_str(map_o->pg_dsn, yytext); return; } } static void end_layer() { if (!map_is_postgis) ows_layer_free(map_l); else { if (!map_l->storage->table->use) buffer_copy(map_l->storage->table, map_l->name); if (!map_l->storage->schema->use) buffer_add_str(map_l->storage->schema, "public"); if (!map_is_dump) map_l->retrievable=map_l->writable = false; map_l->name_prefix = buffer_init(); buffer_copy(map_l->name_prefix, map_l->name); if (map_l->ns_prefix->use) { buffer_add_head(map_l->name_prefix, ':'); buffer_add_head_str(map_l->name_prefix, map_l->ns_prefix->buf); } map_l->name_no_uri = buffer_init(); buffer_copy(map_l->name_no_uri, map_l->name); if (map_l->ns_uri->use) { buffer_add_head(map_l->name, ':'); buffer_add_head_str(map_l->name, map_l->ns_uri->buf); } ows_layer_list_add(map_o->layers, map_l); } map_is_dump = map_is_postgis = false; } %} %option stack %option noyywrap %option nounput %option never-interactive %s MAP %s WEB %s METADATA %s METADATA_VALUE %s PROPERTIES %s LAYER_PROPERTIES %s LAYER_METADATA %s LAYER_METADATA_VALUE %s LAYER_CONNECTIONTYPE %s LAYER_DUMP %s LAYER %s FEATURE %s GRID %s JOIN %s CLASS %s STYLE %s STYLE_PATTERN %s LABEL %s PROJECTION %s QUERYMAP %s SCALEBAR %s LEGEND %s REFERENCE %s OUTPUTFORMAT %s SYMBOL %s PATTERN %s POINTS %s INCLUDE %% # { char c ; for (c=input() ; c && c != '\n' ; c=input()); } INCLUDE { yy_push_state(INCLUDE); OWS_MAP_DBG } LEGEND { /*LEGEND rule must appears before END... */ yy_push_state(LEGEND); OWS_MAP_DBG } END { OWS_MAP_EATLINE if (yy_top_state() == INITIAL && YY_START != MAP) { ows_error(map_o, OWS_ERROR_CONFIG_FILE, "MapFile Parse Error", "parse_config_file"); yyterminate();} if (YY_START == LAYER) { end_layer(); } yy_pop_state(); OWS_MAP_DBG } MAP { yy_push_state(MAP); OWS_MAP_DBG } WEB { yy_push_state(WEB); OWS_MAP_DBG } QUERYMAP { yy_push_state(QUERYMAP); OWS_MAP_DBG } SYMBOLSET { OWS_MAP_EATLINE /* must be before SYMBOL */ } CONFIG { OWS_MAP_EATLINE } DATAPATTERN { OWS_MAP_EATLINE } TEMPLATEPATTERN { OWS_MAP_EATLINE } FONTSET { OWS_MAP_EATLINE } IMAGETYPE { OWS_MAP_EATLINE } SHAPEPATH { OWS_MAP_EATLINE } EXPRESSION { OWS_MAP_EATLINE } GROUP { OWS_MAP_EATLINE } KEYIMAGE { OWS_MAP_EATLINE } SYMBOL { OWS_MAP_EATLINE } TEMPLATE { OWS_MAP_EATLINE } TEXT { OWS_MAP_EATLINE } ITEMS { OWS_MAP_EATLINE } TEXT { OWS_MAP_EATLINE } WKT { OWS_MAP_EATLINE }