[tilestache] 09/22: Imported Upstream version 1.51.2

Bas Couwenberg sebastic at debian.org
Thu Oct 27 21:40:30 UTC 2016


This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository tilestache.

commit 32f655bc613336256f8b0674d326e27b32022f0b
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date:   Thu Oct 27 17:15:09 2016 +0200

    Imported Upstream version 1.51.2
---
 .gitignore                                   |   15 +
 .travis.yml                                  |   46 +
 API.html                                     | 2276 ++++++++++++++++++++++++++
 CHANGELOG                                    |  491 ++++++
 LICENSE                                      |   28 +
 Makefile                                     |   70 +
 PKG-INFO                                     |   10 -
 README.md                                    |  152 ++
 TileStache/.gitignore                        |    1 +
 TileStache/Config.py                         |  174 +-
 TileStache/Core.py                           |  152 +-
 TileStache/Goodies/ExternalConfigServer.py   |   50 +-
 TileStache/Goodies/VecTiles/pbf.py           |   54 +
 TileStache/Goodies/VecTiles/server.py        |  108 +-
 TileStache/Providers.py                      |    5 +-
 TileStache/VERSION                           |    2 +-
 TileStache/__init__.py                       |  160 +-
 Vagrant/setup.sh                             |   59 +
 Vagrantfile                                  |   16 +
 examples/composite/composite-stack.xml       |   11 +
 examples/composite/composite.cfg             |   46 +
 examples/composite/mapnik-base.xml           |   65 +
 examples/composite/mapnik-halos.xml          |   20 +
 examples/composite/mapnik-outlines.xml       |   25 +
 examples/composite/mapnik-streets.xml        |   31 +
 examples/geotiff/cea.tif                     |  Bin 0 -> 270993 bytes
 examples/geotiff/mapnik.xml                  |   18 +
 examples/geotiff/server.py                   |   67 +
 examples/sample_data/world_merc.dbf          |  Bin 0 -> 24640 bytes
 examples/sample_data/world_merc.prj          |    1 +
 examples/sample_data/world_merc.shp          |  Bin 0 -> 428328 bytes
 examples/sample_data/world_merc.shx          |  Bin 0 -> 2060 bytes
 examples/style.xml                           |   22 +
 examples/zoom_example/rhodeisland.mbtiles    |  Bin 0 -> 1543168 bytes
 examples/zoom_example/run_server.sh          |    1 +
 examples/zoom_example/test.html              |   12 +
 examples/zoom_example/zoom_example.cfg       |   31 +
 man/tilestache-clean.1                       |   65 +
 man/tilestache-render.1                      |   32 +
 man/tilestache-seed.1                        |   82 +
 man/tilestache-server.1                      |   35 +
 requirements.txt                             |    7 +
 runtests.sh                                  |    2 +
 scripts/tilestache-clean.py                  |   46 +-
 scripts/tilestache-compose.py                |   36 +-
 scripts/tilestache-render.py                 |   28 +-
 scripts/tilestache-seed.py                   |  114 +-
 setup.cfg                                    |    5 -
 tests/__init__.py                            |    0
 tests/cache_tests.py                         |   68 +
 tests/config_tests.py                        |   29 +
 tests/provider_tests.py                      |  104 ++
 tests/servers/dummy-response-server.py       |   32 +
 tests/utils.py                               |  121 ++
 tests/vectiles_tests.py                      |  678 ++++++++
 tests/vector_tests.py                        |  209 +++
 tilestache.cfg                               |   21 +
 tilestache.cgi                               |    7 +
 www/.gitignore                               |    3 +
 www/example-palette-openstreetmap-mapnik.act |  Bin 0 -> 772 bytes
 www/index.html                               |  149 ++
 www/logo.ai                                  | 1829 +++++++++++++++++++++
 www/mustaches.jpg                            |  Bin 0 -> 44974 bytes
 www/mustaches.psd                            |  Bin 0 -> 993754 bytes
 www/style.css                                |   43 +
 65 files changed, 7552 insertions(+), 412 deletions(-)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3035be0
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+*.pyc
+doc
+dist
+build
+TileStache-*.*
+TileStache-*.*.tar.gz
+TileStache.egg-info/
+*.dbf
+*.prj
+*.sbn
+*.sbx
+*.shp
+*.shx
+.coverage
+.idea/
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..4300763
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,46 @@
+# This is the config file for building TileStache and running the test suite
+# with Travis-ci.org
+
+language: python
+
+sudo: required
+dist: trusty
+
+python:
+  - "2.7"
+
+addons:
+  postgresql: "9.4"
+  apt:
+    packages:
+      - postgresql-9.4-postgis-2.2
+      - python-dev
+      - libgdal1-dev
+      - python-werkzeug
+
+virtualenv:
+  system_site_packages: true
+
+services:
+  - memcached
+  - postgresql
+
+install:
+  - export CPLUS_INCLUDE_PATH=/usr/include/gdal
+  - export C_INCLUDE_PATH=/usr/include/gdal
+  - pip install gdal==1.10
+  - pip install nose coverage
+  - pip install -r requirements.txt
+
+before_script:
+  - psql -U postgres -c "drop database if exists test_tilestache"
+  - psql -U postgres -c "create database test_tilestache"
+  - psql -U postgres -c "create extension postgis" -d test_tilestache
+
+script:
+  - nosetests -v --with-coverage --cover-package TileStache
+
+notifications:
+  email:
+    recipients:
+      - mike-travisci at teczno.com
diff --git a/API.html b/API.html
new file mode 100644
index 0000000..d400f06
--- /dev/null
+++ b/API.html
@@ -0,0 +1,2276 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <title>TileStache API</title>
+    <meta http-equiv="content-type" content="text/html; charset=utf-8">
+    <style type="text/css" title="text/css">
+    <!--
+
+    body
+    {
+        font-family: Arial, Helvetica, sans-serif;
+        font-size: 14px;
+        line-height: 18px;
+        color: black;
+    }
+    
+    h2 { font-size: 1.5em; }
+    h3 { font-size: 1.2em; }
+    h4, h5 { font-size: 1em; }
+    
+    pre, p samp, dl samp, p code, dl code
+    {
+        font-family: Monaco, monospace;
+        font-size: 0.9em;
+    }
+
+    pre { font-size: 0.8em; }
+    
+    body { margin-left: 56px; margin-bottom: 4em; }
+    #intro { margin-left: -28px; }
+    h1, h2, h3, h4 { margin: 1em 56px 1em -28px; }
+    h5 { margin: 1em 0; }
+    dd, li { margin-left: 14px; }
+    ul { padding-left: 0; list-style-type: none; }
+    #index { float: right; width: 20em; padding-bottom: 2em; }
+    
+    h2 { margin-top: 2em; border-top: 1px solid #ccc; padding-top: 1em;}
+
+    body, #index { background-color: white; }
+    pre .bg { color: #aaa; }
+
+    p, dd, pre { width: 50em; }
+
+    var, samp, code { white-space: nowrap; }
+    samp, pre { background-color: #eee; }
+    dt { display: inline; font-weight: bold; }
+    var { background-color: #fe7; }
+
+    dd dl { margin: 0; }
+
+    samp, pre, var { padding: 0 2px; margin: 0 -2px; border-radius: 2px; }
+    pre { margin: -4px 10px; padding: 4px; border: 1px solid #ddd; border-radius: 3px; }
+    
+    a.permalink
+    {
+        font-weight: normal;
+        text-decoration: none;
+        opacity: 0.35;
+    }
+
+    -->
+    </style>
+</head>
+<body>
+
+<h1>TileStache API</h1>
+
+<div id="intro">
+
+    <p>
+    TileStache is a Python-based server application that can serve up map tiles
+    based on rendered geographic data. You might be familiar with
+    <a href="http://tilecache.org">TileCache</a> the venerable open source WMS
+    server from MetaCarta. TileStache is similar, but we hope simpler and
+    better-suited to the needs of designers and cartographers.
+    </p>
+
+    <p>
+    <strong>This document covers TileStache version N.N.N</strong>.
+    </p>
+
+    <p>
+    See also <a href="http://tilestache.org/doc/TileStache.html">detailed module and class reference</a>.
+    </p>
+
+</div>
+
+<ul id="index">
+  <li>
+    <a href="#requesting-tiles">Requesting Tiles</a>
+    <ul>
+      <li><a href="#over-http">Over HTTP</a></li>
+      <li>
+        <a href="#in-code">In Code</a>
+<!-- 
+        <ul>
+          <li><a href="#tilestache-gettile"><code>TileStache.getTile</code></a></li>
+          <li><a href="#tilestache-requesthandler"><code>TileStache.requestHandler</code></a></li>
+        </ul>
+ -->
+      </li>
+    </ul>
+  </li>
+  <li>
+    <a href="#serving-tiles">Serving Tiles</a>
+    <ul>
+      <li><a href="#wsgi">WSGI</a></li>
+      <li><a href="#cgi">CGI</a></li>
+      <li><a href="#mod-python">mod_python</a></li>
+    </ul>
+  </li>
+  <li>
+    <a href="#configuring-tilestache">Configuring TileStache</a>
+    <ul>
+      <li>
+        <a href="#caches">Caches</a>
+<!-- 
+        <ul>
+          <li><a href="#test-cache">Test</a></li>
+          <li><a href="#disk-cache">Disk</a></li>
+          <li><a href="#multi-cache">Multi</a></li>
+          <li><a href="#memcache-cache">Memcache</a></li>
+          <li><a href="#s3-cache">S3</a></li>
+        </ul>
+ -->
+      </li>
+      <li><a href="#layers">Layers</a></li>
+      <li>
+        <a href="#providers">Providers</a>
+<!-- 
+        <ul>
+          <li><a href="#mapnik-provider">Mapnik</a></li>
+          <li><a href="#proxy-provider">Proxy</a></li>
+          <li><a href="#url-template-provider">URL Template</a></li>
+          <li><a href="#mbtiles-provider">MBTiles</a></li>
+          <li><a href="#mapnik-grid-provider">Mapnik Grid</a></li>
+          <li><a href="#sandwich-provider">Pixel Sandwich</a></li>
+        </ul>
+ -->
+      </li>
+      <li><a href="#projections">Projections</a></li>
+      <li><a href="#metatiles">Metatiles</a></li>
+      <li><a href="#preview">Preview</a></li>
+      <li><a href="#index-page">Index Page</a></li>
+      <li><a href="#logging">Logging</a></li>
+    </ul>
+  </li>
+  <li>
+    <a href="#extending-tilestache">Extending TileStache</a>
+    <ul>
+      <li>
+        <a href="#custom-providers">Providers</a>
+<!-- 
+        <ul>
+          <li><a href="#provider-rendertile"><code>provider.renderTile</code></a></li>
+          <li><a href="#provider-renderarea"><code>provider.renderArea</code></a></li>
+          <li><a href="#provider-gettypebyextension"><code>provider.getTypeByExtension</code></a></li>
+        </ul>
+ -->
+      </li>
+      <li><a href="#custom-caches">Caches</a></li>
+      <li><a href="#custom-configuration">Configuration</a></li>
+    </ul>
+  </li>
+</ul>
+
+<h2><a id="requesting-tiles" name="requesting-tiles">Requesting Tiles</a> <a href="#requesting-tiles" class="permalink">¶</a></h2>
+
+<h3><a id="over-http" name="over-http">Over HTTP</a> <a href="#over-http" class="permalink">¶</a></h3>
+
+<p>
+TileStache URLs are based on a Google Maps-like scheme:
+</p>
+
+<pre>
+/{layer name}/{zoom}/{column}/{row}.{extension}
+</pre>
+
+<p>
+An example tile URL might look like this:
+</p>
+
+<pre>
+http://example.org/path/tile.cgi/streets/12/656/1582.png
+</pre>
+
+<p>
+For JSON responses such as those from the <a href="#vector-provider">Vector provider</a>, URLs
+can include an optional callback for <a href="http://en.wikipedia.org/wiki/JSONP">JSONP</a> support:
+</p>
+
+<pre>
+http://example.org/path/tile.cgi/streets/12/656/1582.json?callback=funcname
+</pre>
+
+<p>
+Interactive, slippy-map previews of tiles are also available:
+</p>
+
+<pre>
+/{layer name}/preview.html
+</pre>
+
+<h3><a id="in-code" name="in-code">In Code</a> <a href="#in-code" class="permalink">¶</a></h3>
+
+<h4><a id="tilestache-gettile" name="tilestache-gettile"><code>TileStache.getTile</code></a> <a href="#tilestache-gettile" class="permalink">¶</a></h4>
+
+<p>
+Get a type string and tile binary for a given request layer tile.
+</p>
+ 
+<p>
+Arguments to <code>getTile</code>:
+</p>
+
+<dl>
+    <dt>layer</dt>
+    <dd>
+    Instance of <code>Core.Layer</code> to render.
+    </dd>
+
+    <dt>coord</dt>
+    <dd>
+    One <code>ModestMaps.Core.Coordinate</code> corresponding to a single tile.
+    </dd>
+
+    <dt>extension</dt>
+    <dd>
+    Filename extension to choose response type, e.g. <samp>"png"</samp> or
+    <samp>"jpg"</samp>.
+    </dd>
+
+    <dt>ignore_cached</dt>
+    <dd>
+    Optional boolean: always re-render the tile, whether it's in the cache or
+    not. Default <samp>False</samp>.
+    </dd>
+</dl>
+ 
+<p>
+Return value of <code>getTile</code> is a tuple containing a mime-type string
+such as <samp>"image/png"</samp> and a complete byte string representing the
+rendered tile.
+</p>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.html#-getTile">TileStache.getTile</a>
+documentation for more information.
+</p>
+
+<h4><a id="tilestache-requesthandler" name="tilestache-requesthandler"><code>TileStache.requestHandler</code></a> <a href="#tilestache-requesthandler" class="permalink">¶</a></h4>
+
+<p>
+Generate a mime-type and response body for a given request. This is the function
+to use when creating new HTTP interfaces to TileStache.
+</p>
+ 
+<p>
+Arguments to <code>requestHandler</code>:
+</p>
+
+<dl>
+    <dt>config</dt>
+    <dd>
+    Required file path string for a JSON configuration file or a configuration
+    object with <var>cache</var>, <var>layers</var>, and <var>dirpath</var>
+    properties, such as
+    <a href="http://tilestache.org/doc/TileStache.Config.html#Configuration"><code>TileStache.Config.Configuration</code></a>.
+    </dd>
+
+    <dt>path_info</dt>
+    <dd>
+    Required end portion of a request URL including the layer name and tile
+    coordinate, e.g. <samp>"/roads/12/656/1582.png"</samp>.
+    </dd>
+
+    <dt>query_string</dt>
+    <dd>
+    Optional query string. Currently used only for JSONP callbacks.
+    </dd>
+
+    <dt>script_name</dt>
+    <dd>
+    Optional script name corresponds to CGI environment variable <var>SCRIPT_NAME</var>, used to calculate correct 302 redirects.
+    </dd>
+</dl>
+ 
+<p>
+Return value of <code>requestHandler</code> is a tuple containing a mime-type string
+such as <samp>"image/png"</samp> and a complete byte string representing the
+rendered tile.
+</p>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.html#-requestHandler">TileStache.requestHandler</a>
+documentation for more information.
+</p>
+
+<h2><a id="serving-tiles" name="serving-tiles">Serving Tiles</a> <a href="#serving-tiles" class="permalink">¶</a></h2>
+
+<p>
+We currently provide three scripts for serving tiles: one for a WSGI-based
+webserver, one for a CGI-based webserver, and one for Apache <code>mod_python</code>.
+</p>
+
+<h4><a id="wsgi" name="wsgi">WSGI</a> <a href="#wsgi" class="permalink">¶</a></h4>
+
+<p>
+TileStache comes with a WSGI application and a 
+<a href="http://werkzeug.pocoo.org/">Werkzeug</a> web server. To use the
+built-in server, run <tt>tilestache-server.py</tt>,
+which (by default) looks for a config file named <tt>tilestache.cfg</tt>
+in the current directory and then serves tiles on
+<tt>http://127.0.0.1:8080/</tt>. Check <tt>tilestache-server.py --help</tt>
+to change these defaults.
+</p>
+
+<p>Alternatively, any WSGI server can be pointed at an instance of
+<tt>TileStache.WSGITileServer</tt>. Here’s how to use it with
+<a href="http://gunicorn.org/">gunicorn</a>:
+</p>
+
+<pre>
+$ gunicorn "TileStache:WSGITileServer('/path/to/tilestache.cfg')"
+</pre>
+
+<p>The same configuration can be served with <a
+ href="http://projects.unbit.it/uwsgi/">uWSGI</a> like so. Note the
+usage of the <tt>--eval</tt> option over <tt>--module</tt> as this latter
+option does not support argument passing:
+
+<pre>
+$ uwsgi --http :8080 --eval 'import TileStache; \
+application = TileStache.WSGITileServer("/path/to/tilestache.cfg")'
+</pre>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.html#WSGITileServer"><code>TileStache.WSGITileServer</code></a>
+documentation for more information.
+</p>
+
+<h4><a id="cgi" name="cgi">CGI</a> <a href="#cgi" class="permalink">¶</a></h4>
+
+<p>
+Using TileStache through CGI supports basic tile serving, and is useful for
+simple testing and low-to-medium traffic websites. This is a complete, working
+CGI script that looks for configuration in a local file called
+<tt>tilestache.cfg</tt>:
+</p>
+
+<pre>
+#!/usr/bin/python
+import os, TileStache
+TileStache.cgiHandler(os.environ, 'tilestache.cfg', debug=True)
+</pre>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.html#-cgiHandler"><code>TileStache.cgiHandler</code></a>
+documentation for more information.
+</p>
+
+<h4><a id="mod-python" name="mod-python">mod_python</a> <a href="#mod-python" class="permalink">¶</a></h4>
+
+<p>
+Using TileStache through <code>mod_python</code> improves performance by
+caching imported modules, but must be configured via the Apache webserver
+config. This is a complete example configuration for a webserver publishing
+tiles configured by a file in <code>/etc</code>:
+</p>
+
+<pre>
+<Directory /var/www/tiles>
+  AddHandler mod_python .py
+  PythonHandler TileStache::modpythonHandler
+  PythonOption config /etc/tilestache.cfg
+</Directory>
+</pre>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.html#-modPythonHandler"><code>TileStache.modPythonHandler</code></a>
+documentation for more information.
+</p>
+
+<h2><a id="configuring-tilestache" name="configuring-tilestache">Configuring TileStache</a> <a href="#configuring-tilestache" class="permalink">¶</a></h2>
+
+<p>
+TileStache configuration is stored in JSON files, and is composed of two main
+top-level sections: <samp>"cache"</samp> and <samp>"layers"</samp>. There are
+examples of both in this minimal sample configuration:
+</p>
+ 
+<pre>
+{
+  "cache": {"name": "Test"},
+  "layers": {
+    "ex": {
+        "provider": {"name": "mapnik", "mapfile": "style.xml"},
+        "projection": "spherical mercator"
+    } 
+  }
+}
+</pre>
+
+<h3><a id="caches" name="caches">Caches</a> <a href="#caches" class="permalink">¶</a></h3>
+
+<p>
+A Cache is the part of TileStache that stores static files to speed up future
+requests. A few default caches are shown here, with additional cache classes
+defined in
+<a href="http://tilestache.org/doc/TileStache.Goodies.Caches.html"><code>TileStache.Goodies.Caches</code></a>.
+</p>
+
+<p>
+Jump to <a href="#test-cache">Test</a>, <a href="#disk-cache">Disk</a>,
+<a href="#multi-cache">Multi</a>, <a href="#memcache-cache">Memcache</a>,
+<a href="#redis-cache">Redis</a>, 
+or <a href="#s3-cache">S3</a> cache.
+</p>
+
+<h4><a id="test-cache" name="test-cache">Test</a> <a href="#test-cache" class="permalink">¶</a></h4>
+
+<p>
+Simple cache that doesn’t actually cache anything.
+</p>
+ 
+<p>
+Activity is optionally logged, though.
+</p>
+ 
+<p>
+Example configuration:
+</p>
+
+<pre>
+<span class="bg">{</span>
+  "cache": {
+    "name": "Test",
+    "verbose": true
+  }<span class="bg">,
+  "layers": { … }
+}</span>
+</pre>
+ 
+<p>
+Test cache parameters:
+</p>
+
+<dl>
+    <dt>verbose</dt>
+    <dd>
+    Optional boolean flag to write cache activities to a logging function,
+    defaults to <samp>False</samp> if omitted.
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Caches.html#Test">TileStache.Caches.Test</a>
+documentation for more information.
+</p>
+
+<h4><a id="disk-cache" name="disk-cache">Disk</a> <a href="#disk-cache" class="permalink">¶</a></h4>
+
+<p>
+Caches files to disk.
+</p>
+ 
+<p>
+Example configuration:
+</p>
+ 
+<pre>
+<span class="bg">{</span>
+  "cache": {
+    "name": "Disk",
+    "path": "/tmp/stache",
+    "umask": "0000",
+    "dirs": "portable",
+    "gzip": ["xml", "json"]
+  }<span class="bg">,
+  "layers": { … }
+}</span>
+</pre>
+ 
+<p>
+Disk cache parameters:
+</p>
+
+<dl>
+    <dt>path</dt>
+    <dd>
+    Required local directory path where files should be stored.
+    </dd>
+
+    <dt>umask</dt>
+    <dd>
+    Optional string representation of octal permission mask for stored files.
+    Defaults to <samp>"0022"</samp>.
+    </dd>
+
+    <dt>dirs</dt>
+    <dd>
+    Optional string saying whether to create cache directories that are safe or
+    portable. For an example tile <samp>12/656/1582.png</samp>,
+    <samp>"portable"</samp> creates matching directory trees while
+    <samp>"safe"</samp> guarantees directories with fewer files, e.g.
+    <samp>12/000/656/001/582.png</samp>. Defaults to <samp>"safe"</samp>.
+    </dd>
+
+    <dt>gzip</dt>
+    <dd>
+    Optional list of file formats that should be stored in a
+    compressed form. Defaults to <samp>["txt", "text", "json", "xml"]</samp>.
+    Provide an empty list in the configuration for no compression.
+    </dd>
+</dl>
+
+<p>
+If your configuration file is loaded from a remote location, e.g.
+<samp>http://example.com/tilestache.cfg</samp>, the path <strong>must</strong>
+be an unambiguous filesystem path, e.g. <samp>"file:///tmp/cache"</samp>.
+</p>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Caches.html#Disk">TileStache.Caches.Disk</a>
+documentation for more information.
+</p>
+
+<h4><a id="multi-cache" name="multi-cache">Multi</a> <a href="#multi-cache" class="permalink">¶</a></h4>
+
+<p>
+Caches tiles to multiple, ordered caches.
+</p>
+ 
+<p>
+Multi cache is well-suited for a speed-to-capacity gradient, for example a
+combination of <a href="#memcache-cache">Memcache</a> and <a href="#s3-cache">S3</a>
+to take advantage of the high speed of memcache and the high capacity of S3.
+Each tier of caching is checked sequentially when reading from the cache, while
+all tiers are used together for writing. Locks are only used with the first cache.
+</p>
+ 
+<p>
+Example configuration:
+</p>
+ 
+<pre>
+<span class="bg">{</span>
+  "cache": {
+    "name": "Multi",
+    "tiers": [
+        {
+           "name": "Memcache",
+           "servers": ["127.0.0.1:11211"]
+        },
+        {
+           "name": "Disk",
+           "path": "/tmp/stache"
+        }
+    ]
+  }<span class="bg">,
+  "layers": { … }
+}</span>
+</pre>
+ 
+<p>
+Multi cache parameters:
+</p>
+
+<dl>
+    <dt>tiers</dt>
+    <dd>
+    Required list of cache configurations. The fastest, most local cache should
+    be at the beginning of the list while the slowest or most remote cache
+    should be at the end. Memcache and S3 together make a great pair.
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Caches.html#Multi">TileStache.Caches.Multi</a>
+documentation for more information.
+</p>
+
+<h4><a id="memcache-cache" name="memcache-cache">Memcache</a> <a href="#memcache-cache" class="permalink">¶</a></h4>
+
+<p>
+Caches tiles to <a href="http://memcached.org/">Memcache</a>,
+requires <a href="http://www.tummy.com/Community/software/python-memcached/">python-memcached</a>.
+</p>
+ 
+<p>
+Example configuration:
+</p>
+ 
+<pre>
+<span class="bg">{</span>
+  "cache": {
+    "name": "Memcache",
+    "servers": ["127.0.0.1:11211"],
+    "revision": 0,
+    "key prefix": "unique-id"
+  }<span class="bg">,
+  "layers": { … }
+}</span>
+</pre>
+ 
+<p>
+Memcache cache parameters:
+</p>
+
+<dl>
+    <dt>servers</dt>
+    <dd>
+    Optional array of servers, list of <samp>"{host}:{port}"</samp> pairs.
+    Defaults to <samp>["127.0.0.1:11211"]</samp> if omitted.
+    </dd>
+
+    <dt>revision</dt>
+    <dd>
+    Optional revision number for mass-expiry of cached tiles regardless of lifespan.
+    Defaults to <samp>0</samp>.
+    </dd>
+
+    <dt>key prefix</dt>
+    <dd>
+    Optional string to prepend to Memcache generated key.
+    Useful when running multiple instances of TileStache
+    that share the same Memcache instance to avoid key
+    collisions. The key prefix will be prepended to the
+    key name. Defaults to <samp>""</samp>.
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Memcache.html#Cache">TileStache.Memcache.Cache</a>
+documentation for more information.
+</p>
+
+<h4><a id="redis-cache" name="redis-cache">Redis</a> <a href="#redis-cache" class="permalink">¶</a></h4>
+
+<p>
+Caches tiles to <a href="http://redis.io/">Redis</a>,
+requires <a href="https://pypi.python.org/pypi/redis/">redis-py</a> and <a href="http://redis.io/">redis server</a>.
+</p>
+ 
+<p>
+Example configuration:
+</p>
+ 
+<pre>
+<span class="bg">
+{</span>
+  "cache": {
+    "name": "Redis",
+    "host": "localhost",
+    "port": 6379,
+    "db": 0,
+    "key prefix": "unique-id"
+  }<span class="bg">,
+  "layers": { … }
+}</span>
+</pre>
+ 
+<p>
+Redis cache parameters:
+</p>
+
+<dl>
+    <dt>host</dt>
+    <dd>
+    Defaults to <samp>"localhost"</samp> if omitted.
+    </dd>
+
+    <dt>port</dt>
+    <dd>
+    Integer; Defaults to <samp>6379</samp> if omitted.
+    </dd>
+
+    <dt>db</dt>
+    <dd>
+    Integer; Redis database number, defaults to <samp>0</samp> if omitted.
+    </dd>
+
+    <dt>key prefix</dt>
+    <dd>
+    Optional string to prepend to generated key.
+    Useful when running multiple instances of TileStache
+    that share the same Redis database to avoid key
+    collisions (though the prefered solution is to use a different
+    db number). The key prefix will be prepended to the
+    key name. Defaults to <samp>""</samp>.
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Redis.html#Cache">TileStache.Redis.Cache</a>
+documentation for more information.
+</p>
+
+<h4><a id="s3-cache" name="s3-cache">S3</a> <a href="#s3-cache" class="permalink">¶</a></h4>
+
+<p>
+Caches tiles to <a href="https://s3.amazonaws.com/">Amazon S3</a>,
+requires <a href="http://pypi.python.org/pypi/boto">boto</a> (2.0+).
+</p>
+ 
+<p>
+Example configuration:
+</p>
+ 
+<pre>
+<span class="bg">{</span>
+  "cache": {
+    "name": "S3",
+    "bucket": "<bucket name>",
+    "access": "<access key>",
+    "secret": "<secret key>"
+    "reduced_redundancy": False
+  }<span class="bg">,
+  "layers": { … }
+}</span>
+</pre>
+ 
+<p>
+S3 cache parameters:
+</p>
+
+<dl>
+    <dt>bucket</dt>
+    <dd>
+    Required bucket name for S3. If it doesn’t exist, it will be created.
+    </dd>
+
+    <dt>access</dt>
+    <dd>
+    Optional access key ID for your S3 account. You can find this under “Security
+    Credentials” at your <a href="http://aws.amazon.com/account/">AWS account page</a>.
+    </dd>
+
+    <dt>secret</dt>
+    <dd>
+    Optional secret access key for your S3 account. You can find this under “Security
+    Credentials” at your <a href="http://aws.amazon.com/account/">AWS account page</a>.
+    </dd>
+
+    <dt>use_locks</dt>
+    <dd>
+    Optional boolean flag for whether to use the locking feature on S3.
+    <samp>True</samp> by default. A good reason to set this to
+    <samp>false</samp> would be the additional price and time required for each
+    lock set in S3.
+    </dd>
+
+    <dt>path</dt>
+    <dd>
+    Optional path under bucket to use as the cache directory. ex. <samp>'path': 'cache'</samp> will 
+	put tiles under <samp>{bucket}/cache/</samp>
+    </dd>
+
+    <dt>reduced_redundancy</dt>
+    <dd>
+    Optional boolean specifying whether to use Reduced Redundancy Storage mode in S3.
+    Files stored with RRS incur less cost but have reduced redundancy in Amazon's storage
+    system.
+    </dd>
+</dl>
+
+<p>
+When access or secret are not provided, the environment variables
+AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY will be used.
+See <a href="http://docs.pythonboto.org/en/latest/s3_tut.html#creating-a-connection">Boto documentation</a>
+for more information.
+</p>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.S3.html#Cache">TileStache.S3.Cache</a>
+documentation for more information.
+</p>
+
+<h4><a id="additional-caches" name="additional-caches">Additional Caches</a> <a href="#additional-caches" class="permalink">¶</a></h4>
+
+<p>
+New caches with functionality that’s not strictly core to TileStache first appear in
+<a href="http://tilestache.org/doc/TileStache.Goodies.Caches.html">TileStache.Goodies.Caches</a>.
+</p>
+
+<h5>LimitedDisk</h5>
+
+<p>
+Cache that stores a limited amount of data. This is an example cache that uses
+a SQLite database to track sizes and last-read times for cached tiles, and
+removes least-recently-used tiles whenever the total size of the cache exceeds
+a set limit. See
+<a href="http://tilestache.org/doc/TileStache.Goodies.Caches.LimitedDisk.html">TileStache.Goodies.Caches.LimitedDisk</a>
+for more information.
+</p>
+
+<h3><a id="layers" name="layers">Layers</a> <a href="#layers" class="permalink">¶</a></h3>
+
+<p>
+A Layer represents a set of tiles in TileStache. It keeps references to
+providers, projections, a Configuration instance, and other details required
+for to the storage and rendering of a tile set.
+</p>
+
+<p>
+Example layer configuration:
+</p>
+ 
+<pre>
+<span class="bg">{
+  "cache": …,
+  "layers": 
+  {</span>
+    "example-name":
+    {
+      "provider": { … },
+      "metatile": { … },
+      "preview": { … },
+      "stale lock timeout": …,
+      "cache lifespan": …,
+      "projection": …,
+      "write cache": …,
+      "bounds": { … },
+      "allowed origin": …,
+      "maximum cache age": …,
+      "redirects": …,
+      "tile height": …,
+      "jpeg options": …,
+      "png options": …,
+      "pixel effect": { … }
+    }
+  <span class="bg">}
+}</span>
+</pre>
+ 
+<p>
+The public-facing URL of a single tile for this layer might look like this:
+</p>
+ 
+<pre>
+http://example.com/tilestache.cgi/example-name/0/0/0.png
+</pre>
+
+<p>
+Shared layer parameters:
+</p>
+
+<dl>
+    <dt>provider</dt>
+    <dd>
+    Refers to a Provider, explained in detail under
+    <a href="#providers">Providers</a>.
+    </dd>
+
+    <dt>metatile</dt>
+    <dd>
+    Optionally makes it possible for multiple individual tiles to be rendered
+    at one time, for greater speed and efficiency. This is commonly used for
+    bitmap providers such as Mapnik. See <a href="#metatiles">Metatiles</a>
+    for more information.
+    </dd>
+
+    <dt>preview</dt>
+    <dd>
+    Optionally overrides the starting point for the built-in per-layer slippy
+    map preview, useful for image-based layers where appropriate. See
+    <a href="#preview">Preview</a> for more information.
+    </dd>
+
+    <dt>projection</dt>
+    <dd>
+    Names a geographic projection, explained in
+    <a href="#projections">Projections</a>. If omitted, defaults to
+    <samp>"spherical mercator"</samp>.
+    </dd>
+
+    <dt>stale lock timeout</dt>
+    <dd>
+    An optional number of seconds to wait before forcing a lock that might be
+    stuck. This is defined on a per-layer basis, rather than for an entire
+    cache at one time, because you may have different expectations for the
+    rendering speeds of different layer configurations. Defaults to
+    <samp>15</samp>.
+    </dd>
+
+    <dt>cache lifespan</dt>
+    <dd>
+    An optional number of seconds that cached tiles should be stored. This is
+    defined on a per-layer basis. Defaults to forever if <samp>None</samp>,
+    <samp>0</samp> or omitted.
+    </dd>
+
+    <dt>write cache</dt>
+    <dd>
+    An optional boolean value to allow skipping cache write altogether.
+    This is defined on a per-layer basis. Defaults to true if omitted.
+    </dd>
+    
+    <dt>bounds</dt>
+    <dd>
+    An optional dictionary of six tile boundaries to limit the rendered area:
+    <var>low</var> (lowest zoom level), <var>high</var> (highest zoom level),
+    <var>north</var>, <var>west</var>, <var>south</var>, and <var>east</var>
+    (all in degrees). When any of these are omitted, default values are
+    <samp>north=89</samp>, <samp>west=-180</samp>, <samp>south=-89</samp>,
+    <samp>east=180</samp>, <samp>low=0</samp>, and <samp>high=31</samp>.
+    A list of dictionaries will also be accepted, indicating a set of possible
+    bounding boxes any one of which includes possible tiles.
+    </dd>
+
+    <dt>allowed origin</dt>
+    <dd>
+    An optional string that shows up in the response HTTP header
+    <a href="http://www.w3.org/TR/cors/#access-control-allow-origin-response-hea">Access-Control-Allow-Origin</a>,
+    useful for when you need to provide javascript direct access to response
+    data such as GeoJSON or pixel values. The header is part of a
+    <a href="http://www.w3.org/TR/cors/">W3C working draft</a>.
+    Pro-tip: if you want to allow maximum permissions and minimal
+    security headache, use a value of <samp>"*"</samp> for this.
+    </dd>
+
+    <dt>maximum cache age</dt>
+    <dd>
+    An optional number of seconds used to control behavior of downstream caches.
+    Causes TileStache responses to include
+    <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9">Cache-Control</a>
+    and <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.21">Expires</a>
+    HTTP response headers. Useful when TileStache is itself hosted behind an HTTP
+    cache such as Squid, Cloudfront, or Akamai.
+    </dd>
+
+    <dt>redirects</dt>
+    <dd>
+    An optional dictionary of per-extension HTTP redirects, treated as
+    lowercase. Useful in cases where your tile provider can support many
+    formats but you want to enforce limits to save on cache usage. If a request
+    is made for a tile with an extension in the dictionary keys, a response can
+    be generated that redirects the client to the same tile with another
+    extension. For example, use the setting <samp>{"jpg": "png"}</samp>
+    to force all requests for JPEG tiles to be redirected to PNG tiles.
+    </dd>
+
+    <dt>tile height</dt>
+    <dd>
+    An optional integer gives the height of the image tile in pixels. You
+    almost always want to leave this at the default value of <samp>256</samp>,
+    but you can use a value of <samp>512</samp> to create double-size,
+    double-resolution tiles for high-density phone screens.
+    </dd>
+
+    <dt>jpeg options</dt>
+    <dd>
+    An optional dictionary of JPEG creation options, passed through
+    <a href="http://effbot.org/imagingbook/format-jpeg.htm">to PIL</a>.
+    Valid options include <var>quality</var> (integer), <var>progressive</var>
+    (boolean), and <var>optimize</var> (boolean).
+    </dd>
+
+    <dt>png options</dt>
+    <dd>
+    An optional dictionary of PNG creation options, passed through
+    <a href="http://effbot.org/imagingbook/format-png.htm">to PIL</a>.
+    Valid options include <var>palette</var> (URL or filename), <var>palette256</var>
+	(boolean) and <var>optimize</var> (boolean).
+    </dd>
+
+    <dt>pixel effect</dt>
+    <dd>
+    An optional dictionary that defines an effect to be applied for all tiles
+    of this layer. Pixel effect can be any of these: <samp>blackwhite</samp>,
+    <samp>greyscale</samp>, <samp>desaturate</samp>, <samp>pixelate</samp>,
+    <samp>halftone</samp>, or <samp>blur</samp>.
+    </dd>
+</dl>
+
+<h3><a id="providers" name="providers">Providers</a> <a href="#providers" class="permalink">¶</a></h3>
+
+<p>
+A Provider is the part of TileStache that stores static files to speed up
+future requests. A few default providers are shown here, with additional
+provider classes defined in
+<a href="http://tilestache.org/doc/TileStache.Goodies.Providers.html"><code>TileStache.Goodies.Providers</code></a>
+</p>
+
+<p>
+Jump to <a href="#mapnik-provider">Mapnik (image)</a>, <a href="#proxy-provider">Proxy</a>,
+<a href="#vector-provider">Vector</a>, <a href="#url-template-provider">URL Template</a>,
+<a href="#mbtiles-provider">MBTiles</a>, <a href="#mapnik-grid-provider">Mapnik (grid)</a>,
+or <a href="#sandwich-provider">Pixel Sandwich</a> provider.
+</p>
+
+<h4><a id="mapnik-provider" name="mapnik-provider">Mapnik</a> <a href="#mapnik-provider" class="permalink">¶</a></h4>
+
+<p>
+Built-in Mapnik provider, renders map images from Mapnik XML files.
+</p>
+ 
+<p>
+Example Mapnik provider configuration:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": { … }.
+  "layers":
+  {
+    "roads":
+    {</span>
+      "provider":
+      {
+        "name": "mapnik", 
+        "mapfile": "style.xml"
+      }
+    <span class="bg">}
+  }
+}</span>
+</pre>
+ 
+<p>
+Mapnik provider parameters:
+</p>
+
+<dl>
+    <dt>mapfile</dt>
+    <dd>
+    Required local file path to Mapnik XML file.
+    </dd>
+    <dt>fonts</dt>
+    <dd>
+    Optional relative directory path to <i>*.ttf</i> font files
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Mapnik.html#ImageProvider">TileStache.Mapnik.ImageProvider</a>
+for more information.
+</p>
+
+<h4><a id="proxy-provider" name="proxy-provider">Proxy</a> <a href="#proxy-provider" class="permalink">¶</a></h4>
+
+<p>
+Proxy provider, to pass through and cache tiles from other places.
+</p>
+ 
+<p>
+Example Proxy provider configuration:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": { … }.
+  "layers":
+  {
+    "roads":
+    {</span>
+      "provider":
+      {
+        "name": "proxy", 
+        "url": "http://tile.openstreetmap.org/{Z}/{X}/{Y}.png"
+      }
+    <span class="bg">}
+  }
+}</span>
+</pre>
+ 
+<p>
+Proxy provider parameters:
+</p>
+
+<dl>
+    <dt>url</dt>
+    <dd>
+    Optional URL template for remote tiles, for example:
+    <samp>"http://tile.openstreetmap.org/{Z}/{X}/{Y}.png"</samp>
+    </dd>
+    <dt>provider</dt>
+    <dd>
+    Optional provider name string from Modest Maps built-ins. See
+    <code>ModestMaps.builtinProviders.keys()</code> for a list. Example:
+    <samp>"OPENSTREETMAP"</samp>.
+    </dd>
+    <dt>timeout</dt>
+    Defines a timeout in seconds for the request.
+    If not defined, the global default timeout setting will be used.
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Providers.html#Proxy">TileStache.Providers.Proxy</a>
+for more information.
+</p>
+
+<h4><a id="vector-provider" name="vector-provider">Vector</a> <a href="#vector-provider" class="permalink">¶</a></h4>
+
+<p>
+Provider that returns vector representation of features in a data source.
+</p>
+
+<p>
+Currently two serializations and three encodings are supported for a total
+of six possible kinds of output with these tile name extensions:
+</p>
+
+<dl>
+    <dt>GeoJSON (<samp>.geojson</samp>)</dt>
+    <dd>
+    Conforms to the <a href="http://geojson.org/geojson-spec.html">GeoJSON specification</a>.
+    </dd>
+    <dt>Arc GeoServices JSON (<samp>.arcjson</samp>)</dt>
+    <dd>
+    Conforms to ESRI’s <a href="http://www.esri.com/library/whitepapers/pdfs/geoservices-rest-spec.pdf">GeoServices REST specification</a>.
+    </dd>
+    <dt>GeoBSON (<samp>.geobson</samp>) and Arc GeoServices BSON (<samp>.arcbson</samp>)</dt>
+    <dd>
+    <a href="http://bsonspec.org/#/specification">BSON-encoded</a> GeoJSON and Arc JSON.
+    </dd>
+    <dt>GeoAMF (<samp>.geoamf</samp>) and Arc GeoServices AMF (<samp>.arcamf</samp>)</dt>
+    <dd>
+    <a href="http://opensource.adobe.com/wiki/download/attachments/1114283/amf0_spec_121207.pdf">AMF0-encoded</a> GeoJSON and Arc JSON.
+    </dd>
+</dl>
+
+<p>
+Example Vector provider configurations:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": { … }.
+  "layers":
+  {
+    "vector-postgis-points":
+    {</span>
+      "provider": {"name": "vector", "driver": "PostgreSQL",
+                   "parameters": {"dbname": "geodata", "user": "geodata",
+                                  "table": "planet_osm_point"}}
+    <span class="bg">},
+    "vector-shapefile-lines":
+    {</span>
+      "provider": {"name": "vector", "driver": "shapefile",
+                   "parameters": {"file": "oakland-uptown-line.latlon.shp"},
+                   "properties": {"NAME": "name", "HIGHWAY": "highway"}}
+    <span class="bg">},
+    "vector-sf-streets":
+    {</span>
+      "provider": {"name": "vector", "driver": "GeoJSON",
+                   "parameters": {"file": "stclines.json"},
+                   "properties": ["STREETNAME"]}
+    <span class="bg">},
+    {</span>
+      "provider": {"name": "vector", "driver": "MySQL",
+                   "parameters": {"dbname": "geodata", "port": "3306", 
+                                   "user": "geotest", "table": "test"},
+                   "properties": ["name"], "id_property": "oid"}
+    <span class="bg">},
+    {</span>
+      "provider": {"name": "vector", "driver": "Oracle",
+                   "parameters": {"dbname": "ORCL", "port": "3306", 
+                                  "user": "scott", "password": "tiger", 
+                                  "table": "test"}}
+    <span class="bg">},
+    {</span>
+      "provider": {"name": "vector", "driver": "Spatialite",
+                   "parameters": {"file": "test.sqlite", "layer": "test"}}
+    <span class="bg">}
+  }
+}</span>
+</pre>
+ 
+<p>
+Vector provider parameters:
+</p>
+
+<dl>
+    <dt>driver</dt>
+    <dd>
+    String used to identify an OGR driver. Currently, only
+    <samp>"ESRI Shapefile"</samp>, <samp>"PostgreSQL"</samp>, and
+    <samp>"GeoJSON"</samp> are supported as data source drivers, with
+    <samp>"postgis"</samp> and <samp>"shapefile"</samp> accepted as
+    synonyms. Not case-sensitive.
+    </dd>
+    <dt>parameters</dt>
+    <dd>
+    Dictionary of parameters for each driver.
+    <br>
+    <dl>
+        <dt>PostgreSQL, MySQL and Oracle</dt>
+        <dd>
+        <samp>"dbname"</samp> parameter is required, with name of database.
+        <samp>"host"</samp>, <samp>"user"</samp>, and <samp>"password"</samp>
+        are optional connection parameters. One of <samp>"table"</samp> or
+        <samp>"query"</samp> is required, with a table name in the first case
+        and a complete SQL query in the second.
+        </dd>
+        <dt>Shapefile and GeoJSON</dt>
+        <dd>
+        <samp>"file"</samp> parameter is required, with filesystem path to
+        data file.
+        </dd>
+        <dt>Spatialite</dt>
+        <dd>
+        <samp>"file"</samp> parameter is required, with filesystem path to
+        data file.
+        <samp>"layer"</samp> parameter is required, and is the name of
+        the SQLite table.
+        </dd>
+    </dl>
+    </dd>
+    <dt>properties</dt>
+    <dd>
+    Optional list or dictionary of case-sensitive output property names.
+    <br>
+    If omitted, all fields from the data source will be included in response.
+    If a list, treated as a whitelist of field names to include in response.
+    If a dictionary, treated as a whitelist and re-mapping of field names.
+    </dd>
+    <dt>clipped</dt>
+    <dd>
+    Default is <samp>true</samp>.
+    <br>
+    Boolean flag for optionally clipping the output geometries to the
+    bounds of the enclosing tile, or the string value <samp>"padded"</samp>
+    for clipping to the bounds of the tile plus 5%. This results in incomplete
+    geometries, dramatically smaller file sizes, and improves performance and
+    compatibility with <a href="http://polymaps.org">Polymaps</a>.
+    </dd>
+    <dt>projected</dt>
+    <dd>
+    Default is <samp>false</samp>.
+    <br>
+    Boolean flag for optionally returning geometries in projected rather than
+    geographic coordinates. Typically this means <samp>EPSG:900913</samp> a.k.a.
+    spherical mercator projection. Stylistically a poor fit for GeoJSON, but
+    useful when returning Arc GeoServices responses.
+    </dd>
+    <dt>precision</dt>
+    <dd>
+    Default is <samp>6</samp>.
+    <br>
+    Optional number of decimal places to use for floating point values.
+    </dd>
+    <dt>spacing</dt>
+    <dd>
+    Optional number of tile pixels for spacing geometries in responses. Used
+    to cut down on the number of returned features by ensuring that only those
+    features at least this many pixels apart are returned. Order of features
+    in the data source matters: early features beat out later features.
+    </dd>
+    <dt>verbose</dt>
+    <dd>
+    Default is <samp>false</samp>.
+    <br>
+    Boolean flag for optionally expanding output with additional whitespace
+    for readability. Results in larger but more readable GeoJSON responses.
+    </dd>
+    <dt>skip_empty_fields</dt>
+    <dd>
+    Default is <samp>False</samp>.
+    <br>
+    Boolean flag for optionally skipping empty fields when assembling the GEOJSON
+    feature's properties dictionary.
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Vector.html">TileStache.Vector</a>
+for more information.
+</p>
+
+<h4><a id="url-template-provider" name="url-template-provider">URL Template</a> <a href="#url-template-provider" class="permalink">¶</a></h4>
+
+<p>
+Templated URL provider, to pass through and cache tiles from WMS servers.
+</p>
+ 
+<p>
+Example UrlTemplate provider configuration:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": { … }.
+  "layers":
+  {
+    "roads":
+    {</span>
+      "provider":
+      {
+        "name": "url template", 
+        "template": "http://example.com/?bbox=$xmin,$ymin,$xmax,$ymax"
+      }
+    <span class="bg">}
+  }
+}</span>
+</pre>
+ 
+<p>
+UrlTemplate provider parameters:
+</p>
+
+<dl>
+    <dt>template</dt>
+    <dd>
+    String with substitutions suitable for use in
+    <a href="http://docs.python.org/library/string.html#string.Template">string.Template</a>.
+    The variables available for substitution are <var>width</var>,
+    <var>height</var> (in pixels), <var>srs</var> (in
+    <a href="http://trac.osgeo.org/proj/wiki/GenParms">PROJ.4 format</a>),
+    <var>xmin</var>, <var>ymin</var>, <var>xmax</var>, <var>ymax</var> (in
+    projected map units), and <var>zoom</var>.
+    Example:
+    <samp>"http://example.com/?bbox=$xmin,$ymin,$xmax,$ymax&bboxSR=102113&size=$width,$height&imageSR=102113&format=jpg&f=image"</samp>.
+    </dd>
+    <dt>referer</dt>
+    <dd>
+    Optional string with HTTP Referer URL to send to WMS server.
+    Some WMS servers use the Referer request header to authenticate requests;
+    this parameter provides one.
+    </dd>
+    <dt>source projection</dt>
+    Names a geographic projection, explained in <a href="#projections">Projections</a>, that
+    coordinates should be transformed to for requests.
+    </dd>
+    <dt>timeout</dt>
+    Defines a timeout in seconds for the request.
+    If not defined, the global default timeout setting will be used.
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Providers.html#UrlTemplate">TileStache.Providers.UrlTemplate</a>
+for more information.
+</p>
+
+<h4><a id="mbtiles-provider" name="mbtiles-provider">MBTiles</a> <a href="#mbtiles-provider" class="permalink">¶</a></h4>
+
+<p>
+Provider that reads stored images from <a href="http://mbtiles.org/">MBTiles tilesets</a>.
+</p>
+ 
+<p>
+Example MBTiles provider configuration:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": { … }.
+  "layers":
+  {
+    "roads":
+    {</span>
+      "provider":
+      {
+        "name": "mbtiles", 
+        "tileset": "collection.mbtiles"
+      }
+    <span class="bg">}
+  }
+}</span>
+</pre>
+ 
+<p>
+MBTiles provider parameters:
+</p>
+
+<dl>
+    <dt>tileset</dt>
+    <dd>
+    Required local file path to MBTiles tileset file, a SQLite 3 database file.
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.MBTiles.html#Provider">TileStache.MBTiles.Provider</a>
+for more information.
+</p>
+
+<h4><a id="mapnik-grid-provider" name="mapnik-grid-provider">Mapnik Grid</a> <a href="#mapnik-grid-provider" class="permalink">¶</a></h4>
+
+<p>
+Built-in Mapnik <a href="https://github.com/mapbox/utfgrid-spec/blob/master/1.2/utfgrid.md">UTF Grid</a> provider,
+renders JSON raster objects from Mapnik 2.0+.
+</p>
+ 
+<p>
+Example Mapnik Grid provider configurations:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": { … }.
+  "layers":
+  {
+    "one-grid":
+    {</span>
+      "provider":
+      {
+        "name": "mapnik grid", 
+        "mapfile": "style.xml",
+        "layer_index": 1
+      },
+    <span class="bg">}
+    "two-grids":
+    {</span>
+      "provider":
+      {
+        "name": "mapnik grid", 
+        "mapfile": "style.xml",
+        "layers":
+        [
+          [2, ["population"]],
+          [0, ["name", "population"]]
+        ]
+      }
+    <span class="bg">}
+  }
+}</span>
+</pre>
+ 
+<p>
+Mapnik Grid provider parameters:
+</p>
+
+<dl>
+    <dt>mapfile</dt>
+    <dd>
+    Required local file path to Mapnik XML file.
+    </dd>
+    <dt>fields</dt>
+    <dd>
+    Optional array of field names to return in the response, defaults to all.
+    An empty list will return no field names, while a value of <samp>null</samp>
+    is equivalent to all.
+    </dd>
+    <dt>layer_index</dt>
+    <dd>
+    Optional layer from the mapfile to render, defaults to <samp>0</samp> (first layer).
+    </dd>
+    <dt>layers</dt>
+    <dd>
+    Optional ordered list of (layer_index, fields) to combine; if provided
+    <var>layers</var> overrides both <var>layer_index</var> and <var>fields</var>
+    arguments.
+    </dd>
+    <dt>scale</dt>
+    <dd>
+    Optional scale factor of output raster, defaults to <samp>4</samp> (64×64).
+    </dd>
+    <dt>layer_id_key</dt>
+    <dd>
+    Optional. If set, each item in the <samp>"data"</samp> property will have
+    its source mapnik layer name added, keyed by this value. Useful for
+    distingushing between data items.
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Mapnik.html#GridProvider">TileStache.Mapnik.GridProvider</a>
+for more information.
+</p>
+
+<h4><a id="sandwich-provider" name="sandwich-provider">Pixel Sandwich</a> <a href="#sandwich-provider" class="permalink">¶</a></h4>
+
+<p>
+The Sandwich Provider supplies a Photoshop-like rendering pipeline, making it
+possible to use the output of other configured tile layers as layers or masks
+to create a combined output. Sandwich is modeled on Lars Ahlzen’s
+<a href="http://www.toposm.com/">TopOSM</a>.
+</p>
+ 
+<p>
+Sandwich require the external <a href="http://github.com/migurski/Blit">Blit library</a> to function.
+</p>
+ 
+<p>
+Example Sandwich provider configurations:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": { … }.
+  "layers": 
+  {
+    </span>"sandwiches":
+    {
+      "provider":
+      {
+        "name": "Sandwich",
+        "stack":
+        [
+          {"src": "base"},
+          {"src": "outlines", "mask": "halos"},
+          {"src": "streets"}
+        ]
+      }
+    }<span class="bg">,
+    </span>"base"<span class="bg">:
+    {
+      "provider": {"name": "mapnik", "mapfile": "mapnik-base.xml"}
+    },
+    </span>"halos"<span class="bg">:
+    {
+      "provider": {"name": "mapnik", "mapfile": "mapnik-halos.xml"},
+      "metatile": {"buffer": 128}
+    },
+    </span>"outlines"<span class="bg">:
+    {
+      "provider": {"name": "mapnik", "mapfile": "mapnik-outlines.xml"},
+      "metatile": {"buffer": 16}
+    },
+    </span>"streets"<span class="bg">:
+    {
+      "provider": {"name": "mapnik", "mapfile": "mapnik-streets.xml"},
+      "metatile": {"buffer": 128}
+    }
+  }
+}</span>
+</pre>
+ 
+<p>
+Sandwich provider parameters:
+</p>
+
+<dl>
+    <dt>stack</dt>
+    <dd>
+    Required layer or stack of layers that can be combined to create output.
+    The stack is a list, with solid color or raster layers from elsewhere
+    in the configuration, and is described in detail in the dedicated
+    <a href="http://tilestache.org/doc/TileStache.Sandwich.html">Sandwich documentation</a>.
+    </dd>
+</dl>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Sandwich.html">TileStache.Sandwich</a>
+for more information.
+</p>
+
+<h4><a id="additional-providers" name="additional-providers">Additional Providers</a> <a href="#additional-providers" class="permalink">¶</a></h4>
+
+<p>
+New providers with functionality that’s not strictly core to TileStache first appear in
+<a href="http://tilestache.org/doc/TileStache.Goodies.Providers.html">TileStache.Goodies.Providers</a>.
+</p>
+
+<h5>Grid</h5>
+
+<p>
+Grid rendering for TileStache. UTM provider draws gridlines in tiles,
+in transparent images suitable for use as map overlays. See
+<a href="http://tilestache.org/doc/TileStache.Goodies.Providers.Grid.html">TileStache.Goodies.Providers.Grid</a>
+for more information.
+</p>
+
+<h5>PostGeoJSON</h5>
+
+<p>
+Provider that returns GeoJSON data responses from PostGIS queries. This is an
+example of a provider that does not return an image, but rather queries a
+database for raw data and replies with a string of GeoJSON. For example, it’s
+possible to retrieve data for locations of OpenStreetMap points of interest
+based on a query with a bounding box intersection. See
+<a href="http://tilestache.org/doc/TileStache.Goodies.Providers.PostGeoJSON.html">TileStache.Goodies.Providers.PostGeoJSON</a>
+for more information.
+</p>
+
+<h5>SolrGeoJSON</h5>
+
+<p>
+Provider that returns GeoJSON data responses from Solr spatial queries. This is
+an example of a provider that does not return an image, but rather queries a
+Solr instance for raw data and replies with a string of GeoJSON. See
+<a href="http://tilestache.org/doc/TileStache.Goodies.Providers.SolrGeoJSON.html">TileStache.Goodies.Providers.SolrGeoJSON</a>
+for more information.
+</p>
+
+<h5>Composite</h5>
+
+<p>
+Layered, composite rendering for TileStache. See
+<a href="http://tilestache.org/doc/TileStache.Goodies.Providers.Composite.html">TileStache.Goodies.Providers.Composite</a>
+for more information.
+</p>
+
+<h5>MirrorOSM</h5>
+
+<p>
+Requests for tiles have the side effect of running
+<a href="http://wiki.openstreetmap.org/wiki/Osm2pgsql">osm2pgsql</a> to populate
+a PostGIS database of OpenStreetMap data from a remote API source. It would be
+normal to use this provider outside the regular confines of a web server,
+perhaps with a call to <code>tilestache-seed.py</code> governed by a cron job or
+some other out-of-band process. See
+<a href="http://tilestache.org/doc/TileStache.Goodies.Providers.MirrorOSM.html">TileStache.Goodies.Providers.MirrorOSM</a>
+for more information.
+</p>
+
+<h3><a id="projections" name="projections">Projections</a> <a href="#projections" class="permalink">¶</a></h3>
+
+<p>
+A Projection defines the relationship between the rendered tiles and the
+underlying geographic data. Generally, just one popular projection is used for
+most web maps, <samp>"spherical mercator"</samp>.
+</p>
+
+<p>
+Provided projections:
+</p>
+
+<dl>
+    <dt>spherical mercator</dt>
+    <dd>
+    Projection for most commonly-used web map tile scheme, equivalent to
+    <code>EPSG:900913</code>. The simplified projection used here is described
+    in greater detail at
+    <a href="http://trac.openlayers.org/wiki/SphericalMercator">openlayers.org</a>.
+    </dd>
+    
+    <dt>WGS84</dt>
+    <dd>
+    Unprojected projection for the other commonly-used web map tile scheme,
+    equivalent to <code>EPSG:4326</code>.
+    </dd>
+</dl>
+
+<p>
+You can define your own projection, with a module and object name as arguments:
+</p>
+
+<pre>
+<span class="bg">"layer-name": {
+    ...</span>
+    "projection": "Module:Object",
+<span class="bg">}</span>
+</pre>
+
+<p>
+The object must include methods that convert between coordinates, points, and
+locations. See the included mercator and WGS84 implementations for example.
+You can also instantiate a projection class using this syntax:
+</p>
+
+<pre>
+<span class="bg">"layer-name": {
+    ...</span>
+    "projection": "Module:Object()"
+<span class="bg">}</span>
+</pre>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Geography.html">TileStache.Geography</a>
+for more information.
+</p>
+
+<h4><a id="metatiles" name="metatiles">Metatiles</a> <a href="#metatiles" class="permalink">¶</a></h4>
+
+<p>
+Metatiles are larger areas to be rendered at one time, often used because it’s
+more efficient to render a large number of contiguous tiles at once than each
+one separately.
+</p>
+ 
+<p>
+Example metatile configuration:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": …,
+  "layers": 
+  {
+    "example-name":
+    {
+      "provider": { … },</span>
+      "metatile": 
+      {
+        "rows": 4,
+        "columns": 4,
+        "buffer": 64
+      }
+    <span class="bg">}
+  }
+}</span>
+</pre>
+
+<p>
+This example metatile is four rows tall and four columns wide with a buffer
+of 64 pixels, for a total bitmap size of 4 × 256 + 64 × 2 = <strong>1152</strong>.
+</p>
+
+<p>
+Metatile parameters:
+</p>
+
+<dl>
+    <dt>rows</dt>
+    <dd>
+    Height of the metatile measured in tiles.
+    </dd>
+
+    <dt>columns</dt>
+    <dd>
+    Width of the metatile measured in tiles.
+    </dd>
+
+    <dt>buffer</dt>
+    <dd>
+    Buffer area around the metatile, measured in pixels. This is useful for
+    providers with labels or icons, where it’s necessary to draw a bit extra
+    around the edges to ensure that text is not cut off.
+    </dd>
+</dl> 
+
+<h4><a id="preview" name="preview">Preview</a> <a href="#preview" class="permalink">¶</a></h4>
+
+<p>
+TileStache includes a built-in slippy map preview, that can be viewed in a
+browser using the URL <samp>/{layer name}/preview.html</samp>, e.g.
+<samp>http://example.org/example-name/preview.html</samp>. The settings for
+this preview are completely optional, but can be set on a per-layer basis
+for control over starting location and file extension.
+</p>
+ 
+<p>
+Example preview configuration:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": …,
+  "layers": 
+  {
+    "example-name":
+    {
+      "provider": { … },</span>
+      "preview": 
+      {
+        "lat": 37.80439,
+        "lon": -122.27127,
+        "zoom": 15,
+        "ext": "jpg"
+      }
+    <span class="bg">}
+  }
+}</span>
+</pre>
+
+<p>
+This example preview displays JPG tiles, and is centered on
+<a href="http://osm.org/go/TZNQsg5C--">37.80439, -122.27127 at zoom 15</a>.
+</p>
+
+<p>
+Preview parameters:
+</p>
+
+<dl>
+    <dt>lat</dt>
+    <dd>
+    Starting latitude in degrees.
+    </dd>
+
+    <dt>lon</dt>
+    <dd>
+    Starting longitude in degrees.
+    </dd>
+
+    <dt>zoom</dt>
+    <dd>
+    Starting zoom level.
+    </dd>
+
+    <dt>ext</dt>
+    <dd>
+    Filename extension, e.g. <samp>"png"</samp>.
+    </dd>
+</dl> 
+
+<h4><a id="index-page" name="index-page">Index Page</a> <a href="#index-page" class="permalink">¶</a></h4>
+
+<p>
+TileStache supports configurable index pages for the front page of an instance.
+A custom index can be specified as a filename relative to the configuration
+location. Typically an HTML document would be given here, but other kinds of
+files such as images can be used, with MIME content-type headers determined by
+<a href="http://docs.python.org/library/mimetypes.html#mimetypes.guess_type">mimetypes.guess_type</a>.
+A simple text greeting is displayed if no index is provided.
+</p>
+ 
+<p>
+Example index page configuration:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": …,
+  "layers": …,</span>
+  "index": "filename.html"
+  <span class="bg">}
+}</span>
+</pre>
+
+<p>
+Example index page configuration using a remote image:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": …,
+  "layers": …,</span>
+  "index": "http://tilestache.org/mustaches.jpg"
+  <span class="bg">}
+}</span>
+</pre>
+
+<h4><a id="logging" name="logging">Logging</a> <a href="#logging" class="permalink">¶</a></h4>
+
+<p>
+TileStache includes basic support for Python’s built-in
+<a href="http://docs.python.org/library/logging.html">logging system</a>, with
+a logging level settable in the main configuration file. Possible logging levels
+include <samp>"debug"</samp>, <samp>"info"</samp>, <samp>"warning"</samp>,
+<samp>"error"</samp> and <samp>"critical"</samp>, described in the
+<a href="http://docs.python.org/howto/logging.html">basic logging tutorial</a>.
+</p>
+ 
+<p>
+Example logging configuration:
+</p>
+
+<pre>
+<span class="bg">{
+  "cache": …,
+  "layers": …,</span>
+  "logging": "debug"
+  <span class="bg">}
+}</span>
+</pre>
+
+<h2><a id="extending-tilestache" name="extending-tilestache">Extending TileStache</a> <a href="#extending-tilestache" class="permalink">¶</a></h2>
+
+<p>
+TileStache relies on <a href="http://en.wikipedia.org/wiki/Duck_typing">duck typing</a>
+rather than inheritance for extensibility, so all guidelines for customization
+below explain what methods and properties must be defined on objects for them
+to be valid as providers, caches, and configurations.
+</p>
+
+<h3><a id="custom-providers" name="custom-providers">Providers</a> <a href="#custom-providers" class="permalink">¶</a></h3>
+
+<p>
+Example external provider configuration:
+</p>
+ 
+<pre>
+<span class="bg">{
+  "cache": …,
+  "layers": 
+  {
+    "example-name":
+    {</span>
+      "provider":
+      {
+        "class": "Module:Classname",
+        "kwargs": {"frob": "yes"}
+      }
+    <span class="bg">}
+  }
+}</span>
+</pre>
+
+<p>
+The <var>class</var> value is split up into module and classname, and
+dynamically included. If this doesn’t work for some reason, TileStache will
+fail loudly to let you know. The <var>kwargs</var> value is fed to the class
+constructor as a dictionary of keyword args. If your defined class doesn’t
+accept any of these keyword arguments, TileStache will throw an exception.
+</p>
+
+<p>
+A provider must offer at least one of two methods for rendering map areas:
+<code>renderTile</code> or <code>renderArea</code>. A provider must also accept
+an instance of <code>Layer</code> as the first argument to its constructor.
+</p>
+
+<p>
+Return value of both <code>renderTile</code> and <code>renderArea</code> is an
+object with a <code>save</code> method that can accept a file-like object and
+a format name, typically an instance of the <code>PIL.Image</code> object but
+allowing for creation of providers that save text, raw data or other non-image
+response.
+</p>
+
+<p>
+A minimal provider stub class:
+</p>
+
+<pre>
+class ProviderStub:
+
+  def __init__(self, layer):
+    # create a new provider for a layer
+    raise NotImplementedError
+    
+  def renderTile(self, width, height, srs, coord):
+    # return an object with a PIL-like save() method for a tile
+    raise NotImplementedError
+    
+  def renderArea(self, width, height, srs, xmin, ymin, xmax, ymax, zoom):
+    # return an object with a PIL-like save() method for an area
+    raise NotImplementedError
+</pre>
+
+<p>
+In cases where a provider generates a response that should not be cached,
+<code>renderTile</code> and <code>renderArea</code> may raise the
+<a href="http://tilestache.org/doc/TileStache.Core.html#NoTileLeftBehind">Core.NoTileLeftBehind</a>
+exception in lieu of a normal response. The exception is constructed using the
+intended response object, but nothing will be written to cache. This feature
+might useful in cases where a full tileset is being rendered for static
+hosting, and you don’t want millions of identical ocean tiles.
+</p>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Providers.html">TileStache.Providers</a>
+for more information on custom providers and
+<a href="http://tilestache.org/doc/TileStache.Goodies.Providers.html">TileStache.Goodies.Providers</a>
+for examples of custom providers.
+</p>
+
+<h4><a id="provider-rendertile" name="provider-rendertile"><code>provider.renderTile</code></a> <a href="#provider-rendertile" class="permalink">¶</a></h4>
+
+<p>
+Draws a single tile at a time.
+</p>
+
+<p>
+Arguments to <code>renderTile</code>:
+</p>
+
+<dl>
+    <dt>width</dt>
+    <dd>
+    Pixel width of tile, typically <samp>256</samp>.
+    </dd>
+    
+    <dt>height</dt>
+    <dd>
+    Pixel height of tile, typically <samp>256</samp>.
+    </dd>
+    
+    <dt>srs</dt>
+    <dd>
+    Projection as Proj4 string.
+    <samp>"+proj=longlat +ellps=WGS84 +datum=WGS84"</samp> is an example, see
+    <a href="http://tilestache.org/doc/TileStache.Geography.html">TileStache.Geography</a>
+    for actual values.
+    </dd>
+    
+    <dt>coord</dt>
+    <dd>
+    Coordinate object representing a single tile.
+    </dd>
+</dl>
+
+<p>
+Return value of <code>renderTile</code> is a
+<a href="http://effbot.org/imagingbook/image.htm#Image.save"><code>PIL.Image</code></a>
+or other saveable object, used like this:
+</p>
+
+<pre>
+provider.renderTile(…).save(file, "XML")
+</pre>
+ 
+<h4><a id="provider-renderarea" name="provider-renderarea"><code>provider.renderArea</code></a> <a href="#provider-renderarea" class="permalink">¶</a></h4>
+
+<p>
+Draws a variably-sized area, and is used when drawing metatiles.
+</p>
+
+<p>
+Non-image providers and metatiles do not mix. If your provider returns JSON,
+plaintext, XML, or some other non-PIL format, implement only the
+<code>renderTile</code> method.
+</p>
+
+<p>
+Arguments to <code>renderArea</code>:
+</p>
+
+<dl>
+    <dt>width</dt>
+    <dd>
+    Pixel width of tile, typically <samp>256</samp>.
+    </dd>
+    
+    <dt>height</dt>
+    <dd>
+    Pixel height of tile, typically <samp>256</samp>.
+    </dd>
+    
+    <dt>srs</dt>
+    <dd>
+    Projection as Proj4 string.
+    <samp>"+proj=longlat +ellps=WGS84 +datum=WGS84"</samp> is an example, see
+    <a href="http://tilestache.org/doc/TileStache.Geography.html">TileStache.Geography</a>
+    for actual values.
+    </dd>
+    
+    <dt>xmin</dt>
+    <dd>
+    Minimum <var>x</var> boundary of rendered area in projected coordinates.
+    </dd>
+    
+    <dt>ymin</dt>
+    <dd>
+    Minimum <var>y</var> boundary of rendered area in projected coordinates.
+    </dd>
+    
+    <dt>xmax</dt>
+    <dd>
+    Maximum <var>x</var> boundary of rendered area in projected coordinates.
+    </dd>
+    
+    <dt>ymax</dt>
+    <dd>
+    Maximum <var>y</var> boundary of rendered area in projected coordinates.
+    </dd>
+    
+    <dt>zoom</dt>
+    <dd>
+    Zoom level of final map. Technically this can be derived from the other
+    arguments, but that’s a hassle so we’ll pass it in explicitly.
+    </dd>
+</dl>
+
+<p>
+Return value of <code>renderArea</code> is a
+<a href="http://effbot.org/imagingbook/image.htm#Image.save"><code>PIL.Image</code></a>
+or other saveable object, used like this:
+</p>
+
+<pre>
+provider.renderArea(…).save(file, "PNG")
+</pre>
+
+<h4><a id="provider-gettypebyextension" name="provider-gettypebyextension"><code>provider.getTypeByExtension</code></a> <a href="#provider-gettypebyextension" class="permalink">¶</a></h4>
+
+<p>
+A provider may offer a method for custom response types,
+<code>getTypeByExtension</code>. This method returns a tuple with two strings:
+a mime-type and a format.
+</p>
+
+<p>
+Arguments to <code>getTypeByExtension</code>:
+</p>
+
+<dl>
+    <dt>extension</dt>
+    <dd>
+    Filename extension string, e.g. <samp>"png"</samp>, <samp>"json"</samp>, etc.
+    </dd>
+</dl>
+
+<h3><a id="custom-caches" name="custom-caches">Caches</a> <a href="#custom-caches" class="permalink">¶</a></h3>
+
+<p>
+Example external provider configuration:
+</p>
+ 
+<pre>
+<span class="bg">{</span>
+  "cache":
+  {
+    "class": "Module:Classname",
+    "kwargs": {"frob": "yes"}
+  },
+  <span class="bg">"layers": { … }
+}</span>
+</pre>
+
+<p>
+The <var>class</var> value is split up into module and classname, and
+dynamically included. If this doesn’t work for some reason, TileStache will
+fail loudly to let you know. The <var>kwargs</var> value is fed to the class
+constructor as a dictionary of keyword args. If your defined class doesn’t
+accept any of these keyword arguments, TileStache will throw an exception.
+</p>
+
+<p>
+A cache must provide all of these five methods: <code>lock</code>,
+<code>unlock</code>, <code>remove</code>, <code>read</code>, and <code>save</code>.
+</p>
+
+<p>
+Each method requires three arguments:
+</p>
+
+<dl>
+    <dt>layer</dt>
+    <dd>
+    Instance of a layer.
+    </dd>
+
+    <dt>coord</dt>
+    <dd>
+    Single Coordinate that represents a tile.
+    </dd>
+
+    <dt>format</dt>
+    <dd>
+    String like <samp>"png"</samp> or <samp>"jpg"</samp> that is used as a
+    filename extension.
+    </dd>
+</dl>
+ 
+<p>
+The <code>save</code> method accepts an additional argument <i>before the others</i>:
+</p>
+ 
+<dl>
+    <dt>body</dt>
+    <dd>
+    Raw content to save to the cache.
+    </dd>
+</dl>
+
+<p>
+A minimal cache stub class:
+</p>
+
+<pre>
+class CacheStub:
+
+  def lock(self, layer, coord, format):
+    # lock a tile
+    raise NotImplementedError
+
+  def unlock(self, layer, coord, format):
+    # unlock a tile
+    raise NotImplementedError
+
+  def remove(self, layer, coord, format):
+    # remove a tile
+    raise NotImplementedError
+
+  def read(self, layer, coord, format):
+    # return raw tile content from cache
+    raise NotImplementedError
+  
+  def save(self, body, layer, coord, format):
+    # save raw tile content to cache
+    raise NotImplementedError
+</pre>
+
+<p>
+See
+<a href="http://tilestache.org/doc/TileStache.Caches.html">TileStache.Caches</a>
+for more information on custom caches and
+<a href="http://tilestache.org/doc/TileStache.Goodies.Caches.html">TileStache.Goodies.Caches</a>
+for examples of custom caches.
+</p>
+
+<h3><a id="custom-configuration" name="custom-configuration">Configuration</a> <a href="#custom-configuration" class="permalink">¶</a></h3>
+
+<p>
+A complete configuration object includes <var>cache</var>,
+<var>layers</var>, and <var>dirpath</var> properties and
+optional <var>index</var> property:
+</p>
+ 
+<dl>
+    <dt>cache</dt>
+    <dd>
+    Cache instance, e.g.
+    <code><a href="http://tilestache.org/doc/TileStache.Caches.html#Disk">TileStache.Caches.Disk</a></code>
+    etc. See
+    <a href="http://tilestache.org/doc/TileStache.Caches.html">TileStache.Caches</a>
+    for details on what makes a usable cache.
+    </dd>
+
+    <dt>layers</dt>
+    <dd>
+    Dictionary of layers keyed by name. 
+    </dd>
+
+    <dt>dirpath</dt>
+    <dd>
+    Local filesystem path for this configuration, useful for expanding relative
+    paths.
+    </dd>
+
+    <dt>index</dt>
+    <dd>
+    Two-element tuple with mime-type and content for installation index page.
+    </dd>
+</dl>
+
+<p>
+When creating a custom <var>layers</var> dictionary, e.g. for dynamic layer
+collections backed by some external configuration, these
+<a href="http://docs.python.org/library/stdtypes.html#mapping-types-dict">dictionary methods</a>
+must be provided for a complete collection of layers:
+</p>
+ 
+<dl>
+    <dt>keys</dt>
+    <dd>
+    Return list of layer name strings.
+    </dd>
+
+    <dt>items</dt>
+    <dd>
+    Return list of (name, layer) pairs.
+    </dd>
+
+    <dt>__contains__</dt>
+    <dd>
+    Return boolean true if given key is an existing layer.
+    </dd>
+
+    <dt>__getitem__</dt>
+    <dd>
+    Return existing layer object for given key or raise <code>KeyError</code>.
+    </dd>
+</dl>
+
+<p>
+A minimal layers dictionary stub class:
+</p>
+
+<pre>
+class LayersStub:
+
+  def keys(self):
+    # return a list of key strings
+    raise NotImplementedError
+
+  def items(self):
+    # return a list of (key, layer) tuples
+    raise NotImplementedError
+
+  def __contains__(self, key):
+    # return True if the key is here
+    raise NotImplementedError
+  
+  def __getitem__(self, key):
+    # return the layer named by the key
+    raise NotImplementedError
+</pre>
+
+</body>
+</html>
diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 0000000..f0af519
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,491 @@
+2016-10-27: 1.51.2
+- Adding support for .pbf format for Mapbox Vector Tiles
+- Configuration can be passed as a dictionary in addition to path to JSON file.
+
+2016-09-01: 1.51.1
+- Bugfix on Mapnik image object
+
+2016-09-01: 1.51
+- Replacing PIL by Pillow
+- Added example with raster
+
+2015-01-30: 1.50.1
+- Fixed missing ttf file
+
+2015-01-21: 1.50.0
+- Added 'scale factor' option to Mapnik image provider
+- Added S3 policy specification to config
+- Added dictionary config to VecTiles config
+- Added pixel effects to all layer configurations
+- Added remote configuration to MapnikGrid to match Mapnik
+- Fixed UtfGridComposite to work with latest TileStache
+- Fixed Pillow dependency
+- Fixed "cache lifespan" in Redis cache
+
+2014-06-07: 1.49.11
+- Fixed 'allow-origin header' getting overwritten (JesseCrocker)
+- Added 'source projection' parameter to UrlTemplate provider (JesseCrocker)
+- Fixed minor AttributeError when palette256 argument is None (PerryGeo)
+- Added Timeout feature to Proxy and UrlTemplate providers (Juliomalegria)
+- Adjusted curl examples (Peter Richardson)
+- More specific error message when SpatialRef is missing (probabble)
+
+2014-05-10: 1.49.10
+- Fixed Travis build.
+- Fixed import errors for case-insensitive filesystems.
+- Added TileStache Vagrant machine configuration.
+- Fixed some memcache testing problems.
+
+2014-05-10: 1.49.9
+- Moved everything to PyPI and fixed VERSION kerfuffle.
+
+2013-07-02: 1.49.8
+- Dropped Proxy provider srs=900913 check.
+- Updated most JSON mime-types from text/json to application/json.
+- Fixed requestHandler() query_string argument to match existing API docs.
+- Switched order of simplify and transform in VecTiles queries to handle GEOS bug.
+- Made Rummy CORS-compliant.
+
+2013-06-23: 1.49.7
+- Added VecTiles:MultiProvider to merge TopoJSON and GeoJSON output layers.
+
+2013-06-21: 1.49.6
+- Switched to ST_SimplifyPreserveTopology in VecTiles clipping to calm GEOS.
+
+2013-06-20: 1.49.5
+- Tweaked VecTiles Provider documentation.
+
+2013-06-20: 1.49.4
+- Added TopoJSON support to VecTiles Provider.
+
+2013-06-15: 1.49.3
+- Fixed runaway query bug in VecTiles Provider with looped bounds in query_columns().
+
+2013-06-14: 1.49.2
+- Fixed SQL bug in VecTiles Provider for limiting column queries.
+
+2013-06-14: 1.49.1
+- Updated magic column names in VecTiles Provider to __geometry__ and __id__ for feature ID.
+
+2013-06-05: 1.49.0
+- Added option to use S3 reduced redundancy storage for cheaper caching.
+- Made Postgres connections per-request instead of long term in VecTiles Provider.
+
+2013-05-28: 1.48.2
+- Fixed a serious documentation incompatibility with TileStache.requestHandler() introduced in 1.47.0.
+
+2013-05-27: 1.48.1
+- Fixed Werkzeug dependency in setup.py.
+
+2013-05-26: 1.48.0
+- Fixed a serious documentation incompatibility with TileStache.getTile() introduced in 1.47.0.
+
+2013-04-24: 1.47.4
+- Fixed from-mbtiles/output-directory use case in tilestache-seed, which I had broken.
+
+2013-04-22: 1.47.3
+- Fixed clobbered content from TheTileLeftANote exception.
+
+2013-04-22: 1.47.2
+- Fixed getTile bugs introduced in 1.47.0.
+
+2013-04-20: 1.47.1
+- Fixed typo in setup.py.
+
+2013-04-20: 1.47.0
+- Exposed mutable HTTP status codes and headers to TileStache.getTile() and caches via TheTileLeftANote exception.
+- Removed old layer.redirects implementation via TheTileIsInAnotherCastle exception.
+- Improved PIL dependency in setup requirements to include Pillow, with patch from Fabian Büchler.
+- Fixed coordinate generator usage in tilestache-seed with patch from Seth Fitzsimmons.
+- Added Redis cache provider with patch from Matthew Perry.
+
+2013-04-12: 1.46.10
+- Prefixed most Postgis functions in VecTile provider with "ST_" for forward compatibility.
+
+2013-04-12: 1.46.9
+- Added ogr.OFTDate and ogr.OFTTime to list of acceptable field types in Vector provider.
+
+2013-04-12: 1.46.8
+- Added ogr.OFTDateTime to list of acceptable field types in Vector provider, with patch from probabble.
+
+2013-03-27: 1.46.7
+- Fixed a stupid error in VecTiles.server discarding important Postgres connection details.
+
+2013-03-26: 1.46.6
+- Improved error tolerance in VecTiles client and server.
+
+2013-03-25: 1.46.5
+- Added new simplify_until parameter to VecTiles.Provider.
+- Added some invalid geometry checks to VecTiles.server.
+- Added !bbox! token to VecTiles query parser.
+
+2013-03-19: 1.46.4
+- Added new zoom_data parameter to TileStache.Goodies.VecTiles Datasource.
+
+2013-03-19: 1.46.3
+- Added new simplify parameter to TileStache.Goodies.VecTiles Provider.
+
+2013-03-14: 1.46.2
+- Added new parameters to TileStache.Goodies.VecTiles Datasource and Provider.
+
+2013-03-14: 1.46.1
+- Fixed missing TileStache.Goodies.VecTiles by adding it to setup.py.
+
+2013-03-12: 1.46.0
+- Added TileStache.Goodies.VecTiles to support efficient vector data tiles for use in Mapnik.
+- Fixed alpha-channel issue in Sandwich provider with patch from Lars Ahlzen.
+
+2013-02-26: 1.45.0
+- Made S3 credentials optional since Boto allows them in via environment vars or config file.
+- Added path parameter to S3 cache, to use a subdirectory rather than bucket root.
+- Eased bitmap size checks in Sandwich provider for retina use.
+- Added "quadtile" directory layout for disk cache provider.
+- Added JSON support to MBTiles provider from Aaron Cope.
+- Added Travis CI tests for Vector layer.
+
+2013-02-22: 1.44.0
+- Merged Ragi Burhum's Travis continuous integration tests with ~1/3rd test coverage.
+- Modified Proxy provider to return untouched original image if size and type match.
+- Updated Mapnik usage to reflect recently released versions.
+- Fixed Mapnik provider deadlock bug with patch from Lee Shepherd.
+- Added "key prefix" argument to Memcache cache provider.
+
+2013-01-03: 1.43.0
+- Added new tilestache-list.py script to feed tilestache-seed.py --tile-list.
+- Added new "use_locks" option to S3 cache provider to optionally reduce write costs.
+
+2012-10-01: 1.42.1
+- Papered over a strange appearance bug in GDAL provider with using cubicspline interpolation.
+
+2012-09-18: 1.42.0
+- Added support for tiled bitmap files in Sandwich provider layer src attribute.
+
+2012-09-14: 1.41.0
+- Added TileStache.Goodies.Providers.Cascadenik to skip Mapnik XML where possible.
+
+2012-09-09: 1.40.1
+- Re-attempting Vector import to trigger a more-useful error than NameError in getProviderByName().
+
+2012-09-04: 1.40.0
+- Added TileStache.Sandwich provider based on previous Composite provider under Goodies.
+- Modified import method for provider to reduce burden of required packages and improve error output.
+
+2012-07-18: 1.39.0
+- Fixed missing merge_grids() function in Mapnik Grid provider.
+- Added TileStache.Goodies.ExternalConfigServer from Ryan Breen.
+
+2012-07-05: 1.38.0
+- Added Mapnik Grid provider "layer id key" parameter.
+- Grid internals: response encodings to explicit UTF-8 for Chromium and using mapnik.render_layer().
+
+2012-07-05: 1.37.0
+- Added TileStache.Goodies.Proj4Projection for arbitrary PROJ.4 support.
+- Added per-layer "tile height" option, for non-256x256 tiles.
+
+2012-06-27: 1.36.1
+- Added more Memcache disconnect_all() calls.
+
+2012-05-22: 1.36.0
+- Added --jsonp-callback option to tilestache-seed.py.
+
+2012-05-22: 1.35.1
+- Updated tilestache-seed.py manpage to reflect new options.
+
+2012-05-22: 1.35.0
+- Added direct-to-S3 cache option to tilestache-seed.py script. 
+- Changed tilestache-seed.py default extension behavior to cover JSON.
+
+2012-05-21: 1.34.0
+- Added TileStache.Goodies.StatusServer alternate WSGI server for redis-backed internal status checks.
+- Added maskband parameter to TileStache.Goodies.Providers.GDAL provider.
+
+2012-05-09: 1.33.1
+- Fixed mapnik.Envelope/Box2d back-compatibility.
+
+2012-05-09: 1.33.0
+- Added Vector provider support for Spatialite, MySQL and Oracle from Andrew Semprebon.
+
+2012-05-08: 1.32.3
+- Fixed a dumb import error in TileStache.Providers.
+
+2012-05-07: 1.32.2
+- Disambiguated null vs. empty list behavior of Mapnik Grid fields. 
+
+2012-05-06: 1.32.1
+- Fixed output of Mapnik Grid to be pure UTF-8 instead of ASCII-encoded for size.
+
+2012-05-06: 1.32.0
+- Added core Mapnik Grid provider based on providers under TileStache.Goodies with contributions from Alexander Clausen, Tom Nightingale, Dave Leaver and Paul Smith.
+
+2012-04-09: 1.31.1
+- Fixed broken MBTiles support.
+
+2012-04-07: 1.31.0
+- Added support for per-extension redirects in Layer configuration.
+- Added new TileStache.Goodies.Provider.UtfGridComposite provider.
+- Added new TileStache.Goodies.Cache.GoogleCloud cache.
+- Added support for buffers around features in TileStache.Goodies.Provider.MapnikGrid.
+
+2012-04-05: 1.30.0
+- Added Goodies.AreaServer for serving static, non-tile images.
+- Added TileStache.Goodies.Providers.Monkeycache for serving tiles out of caches.
+- Documented JSONP callbacks in TileStache.requestHandler().
+
+2012-03-27: 1.29.3
+- Fixed a NameError in tilestache-seed.py.
+
+2012-03-18: 1.29.2
+- Ensured that in-process recent tiles features works with metatiles.
+
+2012-03-15: 1.29.1
+- Added debug logging to Mapnik provider.
+
+2012-03-14: 1.29.0
+- Added configurable HTTP referer header to URL Template provider.
+- Added optional precision parameter to Vector provider for JSON output.
+- Added basic logging facility, including getTile() logging at DEBUG level.
+
+2012-02-26: 1.28.0
+- Added new ways to define layer boundaries, including lists and partial limits.
+
+2012-02-26: 1.27.3
+- Fixed a forehead slapper in tilestache-seed.
+
+2012-02-26: 1.27.2
+- Fixed Mapnik fonts path bug.
+
+2012-02-20: 1.27.1
+- Fixed WSGITileServer issue in new Configuration.index support.
+
+2012-02-20: 1.27.0
+- Added new Configuration.index support for configurable index page responses.
+- Cleaned up some unnecessary errors  in preview and callback handling.
+
+2012-02-17: 1.26.4
+- Rewrote internals of tilestache-seed to support the no-config use case.
+
+2012-02-16: 1.26.3
+- Tweaked Vector mime-types and mapnik import details.
+
+2012-02-15: 1.26.2
+- Fixed os.rmdir() error handling in Caches.Disk.
+
+2012-02-15: 1.26.1
+- Changed lock in Providers.Mapnik to be a single global lock for the entire process instead of per-layer.
+
+2012-02-13: 1.26.0
+- Modified internals of Providers.Mapnik to ensure single-threaded access to mapnik.Map object.
+- Fixed MapnikGrid so its documentation can be made even though no one has mapnik2.
+- Added -i/--include-path flag to tilestache-compose.py script.
+
+2012-02-06: 1.25.1
+- Fixed tilestache-clean.py script to not complain on unsupported -e flag.
+
+2012-02-01: 1.25.0
+- Added "ALL" ("ALL LAYERS") option to tilestache-clean.py script.
+
+2012-01-30: 1.24.1
+- Fixed an error in WSGITileServer._response().
+
+2012-01-25: 1.24.0
+- Added support for HTTP Expires and Cache-Control headers with per-layer maximum cache age.
+- Merged Per Liedman's fox for disk cache lock directory removal bug.
+
+2012-01-23: 1.23.4
+- Fixed a bug in Multi Cache provider remove().
+
+2012-01-12: 1.23.3
+- Changed import delay from 1.23.2 to a specific conditional around sqlite3 for Heroku.
+
+2012-01-11: 1.23.2
+- Delayed import of MBTiles and Vector providers until last minute.
+
+2012-01-10: 1.23.1
+- Added Nikolai's httplib patch in Proxy provider.
+
+2012-01-10: 1.23.0
+- Added new tilestache-clean.py script and required remove() method for caches.
+
+2012-01-01: 1.22.0
+- Fixed inconsistencies with cache-ignore setting when using tilestache-compose.py.
+- Fixed use of write-cache setting in TileStache.Layer.
+- Adding configuration file's directory to sys.path in Config.buildConfiguration().
+- Stopped adding current working directory to sys.path for new classes.
+- Added new TileStache.Goodies.Providers.MapnikGrid:Provider by github user danzel.
+
+2011-12-25: 1.21.3
+- Fixed a bug where I'm an idiot.
+
+2011-12-25: 1.21.2
+- Fixed a locking bug in tilestache-compose.py.
+
+2011-12-25: 1.21.1
+- Added current working directory to sys.path for new classes.
+
+2011-12-18: 1.21.0
+- Added new tilestache-compose.py script.
+- Fixed preview body style to account for iOS viewport.
+
+2011-12-12: 1.20.1
+- Fixed body style to account for full-page map.
+
+2011-12-07: 1.20.0
+- Tile URLs can now contain negative integers.
+- Now reading files in Disk Cache using 'rb' mode for Windows compatibility.
+
+2011-11-23: 1.19.4
+- Fixed a silly bug where I was comparing ints and strings.
+
+2011-11-23: 1.19.3
+- Merged llimllib's support for zoom limits in Composite provider.
+
+2011-10-09: 1.19.2
+- Added support for GCPs and cubicspline in GDAL provider.
+
+2011-10-06: 1.19.1
+- Fixed TypeError bug with Access-Control-Allow-Origin in WSGITileServer.
+
+2011-09-04: 1.19.0
+- Added new resampling option to GDAL provider in Goodies.
+
+2011-08-30: 1.18.3
+- Fixed incorrect handling of grayscale datasources in GDAL provider.
+
+2011-08-24: 1.18.2
+- Fixed alpha channel handling for mixed-alpha combinations in Composite provider.
+
+2011-07-23: 1.18.1
+- Fixed new spacing configuration option on vector provider.
+
+2011-07-23: 1.18.0
+- Added new configuration options to vector provider: clipped=padded for Polymaps and spacing.
+
+2011-07-18: 1.17.0
+- Added configuration for HTTP Access-Control-Allow-Origin response header for cross-origin resource sharing (CORS).
+- Added --include-path option to tilestache-server.py.
+
+2011-07-15: 1.16.0
+- Added configuration for JPEG and PNG creation options, including 8-bit PNG output and Photoshop color table support.
+
+2011-07-13: 1.15.0
+- Added three new options to tilestache seed: --from-mbtiles, --enable-retries and --error-list.
+
+2011-07-12: 1.14.0
+- Added per-layer "write cache" option.
+- Added --tile-list option to tilestache-seed.py, so that tiles to seed can be explicitly enumerated.
+- Fixed S3 cache provider to work with boto 1.9 and 2.0 equally.
+- Added the simplest GDAL provider that could possibly work.
+
+2011-07-04: 1.13.0
+- Added support for MBTiles format. Tilesets can be providers or destinations for seeded tiles.
+
+2011-06-22: 1.12.1
+- Added new adjustments and blend mode to Composite provider: threshold, curves2, and linear light.
+
+2011-06-16: 1.12.0
+- Changed argument structure of osm2pgsql in MirrorOSM provider to allow kept coastlines.
+
+2011-06-14: 1.11.1
+- Stopped using wasteful boto.s3.Connection.create_bucket() call in S3 cache provider.
+- Mega-update from Dane Springmeyer with fixes to examples, documentation, and projections.
+
+2011-05-13: 1.11.0
+- Added ignore-cache parameter to tile rendering; renamed from Zain's cache-bust parameter.
+
+2011-04-18: 1.10.6
+- Added faint mapnik tile image to MirrorOSM image responses.
+
+2011-04-18: 1.10.5
+- Fixed Grid provider font path bug, again.
+
+2011-04-18: 1.10.4
+- Fixed Grid provider font path bug.
+
+2011-04-15: 1.10.3
+- Fixed cache lifespan flub in TileStache.Caches.Disk.
+
+2011-04-14: 1.10.2
+- Fixed TileStache.Vector in setup.py.
+
+2011-04-13: 1.10.1
+- Fixed cache lifespan flub in Memcache.
+
+2011-04-13: 1.10.0
+- Added new caches: Multi, Memcache, and S3.
+- Added several new Vector response types: ESRI GeoServices JSON, ESRI AMF, and BSON encoding.
+- Added new MirrorOSM provider for populating PostGIS with piecemeal OpenStreetMap data.
+- Added "cache lifespan" to core Layer configuration.
+
+2011-04-08: 1.9.1
+- Bug fix from kaolin: Geography.py was missing import of ModestMaps.Geo Location
+
+2011-03-28: 1.9.0
+- Added new Vector provider based on old PostGeoJSON provider.
+
+2011-03-28: 1.8.1
+- Merged Zain Memon's proxy provider update.
+
+2011-03-24: 1.8.0
+- Added new Core.NoTileLeftBehind exception class to suppress result caching.
+
+2011-03-17: 1.7.4
+- Fixed use of "layers.get(name)" to "name in layers" in WSGI server.
+- Made possible to build Composite docs without numpy or sympy.
+
+2011-03-17: 1.7.3
+- Made it possible to instantiate WSGI server with a configuration object instead of a file.
+
+2011-01-31: 1.7.2
+- Fixed json import to account for older Python versions, by checking for simplejson availability.
+
+2011-01-29: 1.7.1
+- Fixed PIL import to account for systems that can "import Image".
+
+2011-01-26: 1.7.0
+- Made geographic projections user-specifiable using module:class naming.
+- Made all class specifications accept module:class syntax, hoping to deprecate module.class sometime.
+- Added manpage fixes from David Paleino.
+
+2011-01-26: 1.6.2
+- Fixed WSGI content-length type error that was affecting mod_wsgi.
+
+2011-01-21: 1.6.0
+- Added "-d" flag for tilestache-seed.py to drop tiles in a directory, regardless of cache settings.
+- Merged Zain Memon's WSGI support, supercedesprevious example gunicorn support.
+
+2010-11-29: 1.5.0
+- Expanded PostGeoJSON provider in extras collection to include built-in shape clipping for Polymaps.
+- Added gzip option to Disk cache to reduce disk usage of  text-based providers like XML or JSON.
+
+2010-11-23: 1.4.1
+- Being permissive of I/O errors when getting sublayers in Composite provider.
+  This is short-term necessary, may require configuration or fixing later.
+
+2010-11-20: 1.4.0
+- Completed substantial upgrades to Composite provider (TileStache.Goodies.Providers.Composite),
+  including multiple blend modes, curves adjustments, and layer opacity.
+
+2010-11-18: 1.3.0
+- Added new URL Template provider from Ian Dees to TileStache.Providers.
+
+2010-11-15: 1.2.2
+- Made it possible to use just a subset of layer preview arguments instead of the full four (lat, lon, zoom, ext).
+
+2010-11-15: 1.2.1
+- Previously neglected to include VERSION file in tarball.
+
+2010-11-15: 1.2.0
+- Made preview.html pages for tiles configurable with a starting location.
+- Sharply improved TileStache.Goodies.Providers.Composite with JSON config, etc. 
+
+2010-11-09: 1.1.3
+- Found another mapnik bug, removed unnecessary tempfile creation.
+
+2010-11-09: 1.1.2
+- Refixed a bug in mapnik provider and learned to test things before pushing them.
+
+2010-11-09: 1.1.1
+- Fixed a bug in mapnik provider to make fonts directory work.
+
+2010-10-21: 1.1.0
+- Made configuration objects customizable by defining properties in new API.html.
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..60bb1a6
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,28 @@
+Copyright (c) 2010, Michal Migurski, Aaron Cope
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+- Redistributions of source code must retain the above copyright notice,
+  this list of conditions and the following disclaimer.
+
+- Redistributions in binary form must reproduce the above copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+
+- Neither the name of the project nor the names of its contributors may be
+  used to endorse or promote products derived from this software without
+  specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..75d9712
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,70 @@
+VERSION:=$(shell cat TileStache/VERSION)
+DOCROOT=tilestache.org:public_html/tilestache/www
+
+live: doc
+	rsync -Cr doc/ $(DOCROOT)/doc/
+	python setup.py sdist upload
+
+doc:
+	mkdir doc
+
+	python -m pydoc -w TileStache
+	python -m pydoc -w TileStache.Core
+	python -m pydoc -w TileStache.Caches
+	python -m pydoc -w TileStache.Memcache
+	python -m pydoc -w TileStache.Redis
+	python -m pydoc -w TileStache.S3
+	python -m pydoc -w TileStache.Config
+	python -m pydoc -w TileStache.Vector
+	python -m pydoc -w TileStache.Vector.Arc
+	python -m pydoc -w TileStache.Geography
+	python -m pydoc -w TileStache.Providers
+	python -m pydoc -w TileStache.Mapnik
+	python -m pydoc -w TileStache.MBTiles
+	python -m pydoc -w TileStache.Sandwich
+	python -m pydoc -w TileStache.Pixels
+	python -m pydoc -w TileStache.Goodies
+	python -m pydoc -w TileStache.Goodies.Caches
+	python -m pydoc -w TileStache.Goodies.Caches.LimitedDisk
+	python -m pydoc -w TileStache.Goodies.Caches.GoogleCloud
+	python -m pydoc -w TileStache.Goodies.Providers
+	python -m pydoc -w TileStache.Goodies.Providers.Composite
+	python -m pydoc -w TileStache.Goodies.Providers.Cascadenik
+	python -m pydoc -w TileStache.Goodies.Providers.PostGeoJSON
+	python -m pydoc -w TileStache.Goodies.Providers.SolrGeoJSON
+	python -m pydoc -w TileStache.Goodies.Providers.MapnikGrid
+	python -m pydoc -w TileStache.Goodies.Providers.MirrorOSM
+	python -m pydoc -w TileStache.Goodies.Providers.Monkeycache
+	python -m pydoc -w TileStache.Goodies.Providers.UtfGridComposite
+	python -m pydoc -w TileStache.Goodies.Providers.UtfGridCompositeOverlap
+	python -m pydoc -w TileStache.Goodies.Providers.TileDataOSM
+	python -m pydoc -w TileStache.Goodies.Providers.Grid
+	python -m pydoc -w TileStache.Goodies.Providers.GDAL
+	python -m pydoc -w TileStache.Goodies.AreaServer
+	python -m pydoc -w TileStache.Goodies.StatusServer
+	python -m pydoc -w TileStache.Goodies.Proj4Projection
+	python -m pydoc -w TileStache.Goodies.ExternalConfigServer
+	python -m pydoc -w TileStache.Goodies.VecTiles
+	python -m pydoc -w TileStache.Goodies.VecTiles.server
+	python -m pydoc -w TileStache.Goodies.VecTiles.client
+	python -m pydoc -w TileStache.Goodies.VecTiles.geojson
+	python -m pydoc -w TileStache.Goodies.VecTiles.topojson
+	python -m pydoc -w TileStache.Goodies.VecTiles.mvt
+	python -m pydoc -w TileStache.Goodies.VecTiles.wkb
+	python -m pydoc -w TileStache.Goodies.VecTiles.ops
+
+	python -m pydoc -w scripts/tilestache-*.py
+
+	mv TileStache.html doc/
+	mv TileStache.*.html doc/
+	mv tilestache-*.html doc/
+	
+	perl -pi -e 's#<br><a href="file:/[^"]+">[^<]+</a>##' doc/*.html
+
+	cp API.html doc/index.html
+	perl -pi -e 's#http://tilestache.org/doc/##' doc/index.html
+	perl -pi -e 's#\bN\.N\.N\b#$(VERSION)#' doc/index.html
+
+clean:
+	find TileStache -name '*.pyc' -delete
+	rm -rf doc
diff --git a/PKG-INFO b/PKG-INFO
deleted file mode 100644
index b0b247c..0000000
--- a/PKG-INFO
+++ /dev/null
@@ -1,10 +0,0 @@
-Metadata-Version: 1.0
-Name: TileStache
-Version: 1.51.1
-Summary: A stylish alternative for caching your map tiles.
-Home-page: http://tilestache.org
-Author: Michal Migurski
-Author-email: mike at stamen.com
-License: BSD
-Description: UNKNOWN
-Platform: UNKNOWN
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d23aa28
--- /dev/null
+++ b/README.md
@@ -0,0 +1,152 @@
+#TileStache
+
+_a stylish alternative for caching your map tiles_
+
+[![Build Status](https://travis-ci.org/TileStache/TileStache.png)](https://travis-ci.org/TileStache/TileStache)
+
+**TileStache** is a Python-based server application that can serve up map tiles
+based on rendered geographic data. You might be familiar with [TileCache](http://tilecache.org),
+the venerable open source WMS server from MetaCarta. TileStache is similar, but we hope
+simpler and better-suited to the needs of designers and cartographers.
+
+##Synopsis
+
+    import TileStache
+    import ModestMaps
+
+    config = {
+      "cache": {"name": "Test"},
+      "layers": {
+        "example": {
+            "provider": {"name": "mapnik", "mapfile": "examples/style.xml"},
+            "projection": "spherical mercator"
+        }
+      }
+    }
+
+    # like http://tile.openstreetmap.org/1/0/0.png
+    coord = ModestMaps.Core.Coordinate(0, 0, 1)
+    config = TileStache.Config.buildConfiguration(config)
+    type, bytes = TileStache.getTile(config.layers['example'], coord, 'png')
+
+    open('tile.png', 'w').write(bytes)
+
+
+
+##Dependencies
+
+###Required:
+
+- ModestMaps: http://modestmaps.com, http://github.com/migurski/modestmaps-py
+- Python Imaging Library (Pillow): https://python-pillow.org
+
+###Optional:
+
+- Simplejson: https://github.com/simplejson/simplejson (optional if using >= python 2.6)
+- mapnik: http://mapnik.org (optional)
+- werkzeug: http://werkzeug.pocoo.org/ (optional)
+
+Install the pure python modules with pip:
+
+    sudo pip install -U python-pil modestmaps simplejson werkzeug uuid
+
+Install pip (http://www.pip-installer.org/) like:
+
+    curl -O -L https://raw.github.com/pypa/pip/master/contrib/get-pip.py
+    sudo python get-pip.py
+
+Install Mapnik via instructions at:
+
+    http://mapnik.org/pages/downloads.html
+
+
+##Installation
+
+TileStache can be run from the download directory as is. For example the scripts:
+
+    tilestache-render.py tilestache-seed.py tilestache-server.py
+
+Can all be run locally like:
+
+    ./scripts/tilestache-server.py
+
+To install globally do:
+
+    python setup.py install
+
+  * Note: you may need to prefix that command with 'sudo' to have permissions
+to fully install TileStache.
+
+
+##Quickstart
+
+To make sure TileStache is working start the development server:
+
+    ./scripts/tilestache-server.py
+
+Then open a modern web browser and you should be able to preview tiles at:
+
+    http://localhost:8080/osm/preview.html
+
+This is a previewer that uses ModestMaps and OpenStreetMap tiles from
+http://tile.osm.org as defined in the default config file 'tilestache.cfg'
+
+
+##Documentation
+
+The next step is to learn how build custom layers and serve them.
+
+See the [docs](http://tilestache.org/doc/) for details.
+
+
+##Features
+
+Rendering providers:
+* Mapnik
+* Proxy
+* Vector
+* Templated URLs
+
+Caching backends:
+* Local disk
+* Test
+* Memcache
+* S3
+
+
+##Design Goals
+
+The design of TileStache focuses on approachability at the expense of
+cleverness or completeness. Our hope is to make it easy for anyone to design
+a new map of their city, publish a fresh view of their world, or even build
+the next 8-Bit NYC (http://8bitnyc.com).
+
+* Small
+
+The core of TileStache is intended to have a small code footprint.
+It should be quick and easy to to understand what the library is doing and
+why, based on common entry points like included CGI scripts. Where possible,
+dynamic programming "magic" is to be avoided, in favor of basic, procedural
+and copiously-documented Python.
+
+* Pluggable
+
+We want to accept plug-ins and extensions from outside TileStache, and offer
+TileStache itself as an extension for other systems. It must be possible to
+write and use additional caches or renderers without having to modify the
+core package itself, extend classes from inside the package, or navigate
+chains of class dependencies. Duck typing and stable interfaces win.
+
+* Sensible Defaults
+
+The default action of a configured TileStache instance should permit the most
+common form of interaction: a worldwide, spherical-mercator upper-left oriented
+tile layout compatible with those used by OpenStreetMap, Google, Bing Maps,
+Yahoo! and others. It should be possible to make TileStache do whatever is
+necessary to support any external system, but we eschew complex, impenetrable
+standards in favor of pragmatic, fast utility with basic web clients.
+
+
+##License
+
+BSD, see LICENSE file.
diff --git a/TileStache/.gitignore b/TileStache/.gitignore
new file mode 100644
index 0000000..0d20b64
--- /dev/null
+++ b/TileStache/.gitignore
@@ -0,0 +1 @@
+*.pyc
diff --git a/TileStache/Config.py b/TileStache/Config.py
index e241d24..18c91ef 100644
--- a/TileStache/Config.py
+++ b/TileStache/Config.py
@@ -10,7 +10,7 @@ minimal sample configuration:
         "example": {
             "provider": {"name": "mapnik", "mapfile": "examples/style.xml"},,
             "projection": "spherical mercator"
-        } 
+        }
       }
     }
 
@@ -29,7 +29,7 @@ can be found in the TileStache.Core module documentation. Another sample:
 
     {
       "cache": ...,
-      "layers": 
+      "layers":
       {
         "example-name":
         {
@@ -83,22 +83,22 @@ import PixelEffects
 
 class Configuration:
     """ A complete site configuration, with a collection of Layer objects.
-    
+
         Attributes:
-        
+
           cache:
             Cache instance, e.g. TileStache.Caches.Disk etc.
             See TileStache.Caches for details on what makes
             a usable cache.
-        
+
           layers:
             Dictionary of layers keyed by name.
-            
+
             When creating a custom layers dictionary, e.g. for dynamic
             layer collections backed by some external configuration,
             these dictionary methods must be provided for a complete
             collection of layers:
-            
+
               keys():
                 Return list of layer name strings.
 
@@ -107,16 +107,16 @@ class Configuration:
 
               __contains__(key):
                 Return boolean true if given key is an existing layer.
-                
+
               __getitem__(key):
                 Return existing layer object for given key or raise KeyError.
-        
+
           dirpath:
             Local filesystem path for this configuration,
             useful for expanding relative paths.
-          
+
         Optional attribute:
-        
+
           index:
             Mimetype, content tuple for default index response.
     """
@@ -124,7 +124,7 @@ class Configuration:
         self.cache = cache
         self.dirpath = dirpath
         self.layers = {}
-        
+
         self.index = 'text/plain', 'TileStache bellows hello.'
 
 class Bounds:
@@ -132,49 +132,49 @@ class Bounds:
     """
     def __init__(self, upper_left_high, lower_right_low):
         """ Two required Coordinate objects defining tile pyramid bounds.
-        
+
             Boundaries are inclusive: upper_left_high is the left-most column,
             upper-most row, and highest zoom level; lower_right_low is the
             right-most column, furthest-dwn row, and lowest zoom level.
         """
         self.upper_left_high = upper_left_high
         self.lower_right_low = lower_right_low
-    
+
     def excludes(self, tile):
         """ Check a tile Coordinate against the bounds, return true/false.
         """
         if tile.zoom > self.upper_left_high.zoom:
             # too zoomed-in
             return True
-        
+
         if tile.zoom < self.lower_right_low.zoom:
             # too zoomed-out
             return True
 
         # check the top-left tile corner against the lower-right bound
         _tile = tile.zoomTo(self.lower_right_low.zoom)
-        
+
         if _tile.column > self.lower_right_low.column:
             # too far right
             return True
-        
+
         if _tile.row > self.lower_right_low.row:
             # too far down
             return True
 
         # check the bottom-right tile corner against the upper-left bound
         __tile = tile.right().down().zoomTo(self.upper_left_high.zoom)
-        
+
         if __tile.column < self.upper_left_high.column:
             # too far left
             return True
-        
+
         if __tile.row < self.upper_left_high.row:
             # too far up
             return True
-        
+
         return False
-    
+
     def __str__(self):
         return 'Bound %s - %s' % (self.upper_left_high, self.lower_right_low)
 
@@ -185,59 +185,59 @@ class BoundsList:
         """ Single argument is a list of Bounds objects.
         """
         self.bounds = bounds
-    
+
     def excludes(self, tile):
         """ Check a tile Coordinate against the bounds, return false if none match.
         """
         for bound in self.bounds:
-            if not bound.excludes(tile):   
+            if not bound.excludes(tile):
                 return False
-        
+
         # Nothing worked.
         return True
 
 def buildConfiguration(config_dict, dirpath='.'):
     """ Build a configuration dictionary into a Configuration object.
-    
+
         The second argument is an optional dirpath that specifies where in the
         local filesystem the parsed dictionary originated, to make it possible
         to resolve relative paths. It might be a path or more likely a full
         URL including the "file://" prefix.
     """
     scheme, h, path, p, q, f = urlparse(dirpath)
-    
+
     if scheme in ('', 'file'):
         sys.path.insert(0, path)
-    
+
     cache_dict = config_dict.get('cache', {})
-    cache = _parseConfigfileCache(cache_dict, dirpath)
-    
+    cache = _parseConfigCache(cache_dict, dirpath)
+
     config = Configuration(cache, dirpath)
-    
+
     for (name, layer_dict) in config_dict.get('layers', {}).items():
-        config.layers[name] = _parseConfigfileLayer(layer_dict, config, dirpath)
+        config.layers[name] = _parseConfigLayer(layer_dict, config, dirpath)
 
     if 'index' in config_dict:
         index_href = urljoin(dirpath, config_dict['index'])
         index_body = urlopen(index_href).read()
         index_type = guess_type(index_href)
-        
+
         config.index = index_type[0], index_body
-    
+
     if 'logging' in config_dict:
         level = config_dict['logging'].upper()
-    
+
         if hasattr(logging, level):
             logging.basicConfig(level=getattr(logging, level))
-    
+
     return config
 
 def enforcedLocalPath(relpath, dirpath, context='Path'):
     """ Return a forced local path, relative to a directory.
-    
+
         Throw an error if the combination of path and directory seems to
         specify a remote path, e.g. "/path" and "http://example.com".
-    
+
         Although a configuration file can be parsed from a remote URL, some
         paths (e.g. the location of a disk cache) must be local to the server.
         In cases where we mix a remote configuration location with a local
@@ -247,13 +247,13 @@ def enforcedLocalPath(relpath, dirpath, context='Path'):
     """
     parsed_dir = urlparse(dirpath)
     parsed_rel = urlparse(relpath)
-    
+
     if parsed_rel.scheme not in ('file', ''):
         raise Core.KnownUnknown('%s path must be a local file path, absolute or "file://", not "%s".' % (context, relpath))
-    
+
     if parsed_dir.scheme not in ('file', '') and parsed_rel.scheme != 'file':
         raise Core.KnownUnknown('%s path must start with "file://" in a remote configuration ("%s" relative to %s)' % (context, relpath, dirpath))
-    
+
     if parsed_rel.scheme == 'file':
         # file:// is an absolute local reference for the disk cache.
         return parsed_rel.path
@@ -261,45 +261,45 @@ def enforcedLocalPath(relpath, dirpath, context='Path'):
     if parsed_dir.scheme == 'file':
         # file:// is an absolute local reference for the directory.
         return urljoin(parsed_dir.path, parsed_rel.path)
-    
+
     # nothing has a scheme, it's probably just a bunch of
     # dumb local paths, so let's see what happens next.
     return pathjoin(dirpath, relpath)
 
-def _parseConfigfileCache(cache_dict, dirpath):
-    """ Used by parseConfigfile() to parse just the cache parts of a config.
+def _parseConfigCache(cache_dict, dirpath):
+    """ Used by parseConfig() to parse just the cache parts of a config.
     """
     if 'name' in cache_dict:
         _class = Caches.getCacheByName(cache_dict['name'])
         kwargs = {}
-        
+
         def add_kwargs(*keys):
             """ Populate named keys in kwargs from cache_dict.
             """
             for key in keys:
                 if key in cache_dict:
                     kwargs[key] = cache_dict[key]
-        
+
         if _class is Caches.Test:
             if cache_dict.get('verbose', False):
                 kwargs['logfunc'] = lambda msg: stderr.write(msg + '\n')
-    
+
         elif _class is Caches.Disk:
             kwargs['path'] = enforcedLocalPath(cache_dict['path'], dirpath, 'Disk cache path')
-            
+
             if 'umask' in cache_dict:
                 kwargs['umask'] = int(cache_dict['umask'], 8)
-            
+
             add_kwargs('dirs', 'gzip')
-        
+
         elif _class is Caches.Multi:
-            kwargs['tiers'] = [_parseConfigfileCache(tier_dict, dirpath)
+            kwargs['tiers'] = [_parseConfigCache(tier_dict, dirpath)
                                for tier_dict in cache_dict['tiers']]
-    
+
         elif _class is Caches.Memcache.Cache:
             if 'key prefix' in cache_dict:
                 kwargs['key_prefix'] = cache_dict['key prefix']
-        
+
             add_kwargs('servers', 'lifespan', 'revision')
 
         elif _class is Caches.Redis.Cache:
@@ -307,13 +307,13 @@ def _parseConfigfileCache(cache_dict, dirpath):
                 kwargs['key_prefix'] = cache_dict['key prefix']
 
             add_kwargs('host', 'port', 'db')
-    
+
         elif _class is Caches.S3.Cache:
             add_kwargs('bucket', 'access', 'secret', 'use_locks', 'path', 'reduced_redundancy', 'policy')
-    
+
         else:
             raise Exception('Unknown cache: %s' % cache_dict['name'])
-        
+
     elif 'class' in cache_dict:
         _class = loadClassPath(cache_dict['class'])
         kwargs = cache_dict.get('kwargs', {})
@@ -332,70 +332,70 @@ def _parseLayerBounds(bounds_dict, projection):
     north, west = bounds_dict.get('north', 89), bounds_dict.get('west', -180)
     south, east = bounds_dict.get('south', -89), bounds_dict.get('east', 180)
     high, low = bounds_dict.get('high', 31), bounds_dict.get('low', 0)
-    
+
     try:
         ul_hi = projection.locationCoordinate(Location(north, west)).zoomTo(high)
         lr_lo = projection.locationCoordinate(Location(south, east)).zoomTo(low)
     except TypeError:
         raise Core.KnownUnknown('Bad bounds for layer, need north, south, east, west, high, and low: ' + dumps(bounds_dict))
-    
+
     return Bounds(ul_hi, lr_lo)
 
-def _parseConfigfileLayer(layer_dict, config, dirpath):
-    """ Used by parseConfigfile() to parse just the layer parts of a config.
+def _parseConfigLayer(layer_dict, config, dirpath):
+    """ Used by parseConfig() to parse just the layer parts of a config.
     """
     projection = layer_dict.get('projection', 'spherical mercator')
     projection = Geography.getProjectionByName(projection)
-    
+
     #
     # Add cache lock timeouts and preview arguments
     #
-    
+
     layer_kwargs = {}
-    
+
     if 'cache lifespan' in layer_dict:
         layer_kwargs['cache_lifespan'] = int(layer_dict['cache lifespan'])
-    
+
     if 'stale lock timeout' in layer_dict:
         layer_kwargs['stale_lock_timeout'] = int(layer_dict['stale lock timeout'])
-    
+
     if 'write cache' in layer_dict:
         layer_kwargs['write_cache'] = bool(layer_dict['write cache'])
-    
+
     if 'allowed origin' in layer_dict:
         layer_kwargs['allowed_origin'] = str(layer_dict['allowed origin'])
-    
+
     if 'maximum cache age' in layer_dict:
         layer_kwargs['max_cache_age'] = int(layer_dict['maximum cache age'])
-    
+
     if 'redirects' in layer_dict:
         layer_kwargs['redirects'] = dict(layer_dict['redirects'])
-    
+
     if 'tile height' in layer_dict:
         layer_kwargs['tile_height'] = int(layer_dict['tile height'])
-    
+
     if 'preview' in layer_dict:
         preview_dict = layer_dict['preview']
-        
+
         for (key, func) in zip(('lat', 'lon', 'zoom', 'ext'), (float, float, int, str)):
             if key in preview_dict:
                 layer_kwargs['preview_' + key] = func(preview_dict[key])
-    
+
     #
     # Do the bounds
     #
-    
+
     if 'bounds' in layer_dict:
         if type(layer_dict['bounds']) is dict:
             layer_kwargs['bounds'] = _parseLayerBounds(layer_dict['bounds'], projection)
-    
+
         elif type(layer_dict['bounds']) is list:
             bounds = [_parseLayerBounds(b, projection) for b in layer_dict['bounds']]
             layer_kwargs['bounds'] = BoundsList(bounds)
-    
+
         else:
             raise Core.KnownUnknown('Layer bounds must be a dictionary, not: ' + dumps(layer_dict['bounds']))
-    
+
     #
     # Do the metatile
     #
@@ -406,13 +406,13 @@ def _parseConfigfileLayer(layer_dict, config, dirpath):
     for k in ('buffer', 'rows', 'columns'):
         if k in meta_dict:
             metatile_kwargs[k] = int(meta_dict[k])
-    
+
     metatile = Core.Metatile(**metatile_kwargs)
-    
+
     #
     # Do the per-format options
     #
-    
+
     jpeg_kwargs = {}
     png_kwargs = {}
 
@@ -447,7 +447,7 @@ def _parseConfigfileLayer(layer_dict, config, dirpath):
     if 'name' in provider_dict:
         _class = Providers.getProviderByName(provider_dict['name'])
         provider_kwargs = _class.prepareKeywordArgs(provider_dict)
-        
+
     elif 'class' in provider_dict:
         _class = loadClassPath(provider_dict['class'])
         provider_kwargs = provider_dict.get('kwargs', {})
@@ -455,7 +455,7 @@ def _parseConfigfileLayer(layer_dict, config, dirpath):
 
     else:
         raise Exception('Missing required provider name or class: %s' % json_dumps(provider_dict))
-    
+
     #
     # Finish him!
     #
@@ -465,14 +465,14 @@ def _parseConfigfileLayer(layer_dict, config, dirpath):
     layer.setSaveOptionsJPEG(**jpeg_kwargs)
     layer.setSaveOptionsPNG(**png_kwargs)
     layer.pixel_effect = pixel_effect
-    
+
     return layer
 
 def loadClassPath(classpath):
     """ Load external class based on a path.
-        
+
         Example classpath: "Module.Submodule:Classname".
-    
+
         Equivalent soon-to-be-deprecated classpath: "Module.Submodule.Classname".
     """
     if ':' in classpath:
@@ -485,24 +485,24 @@ def loadClassPath(classpath):
             __import__(modname)
             module = modules[modname]
             _class = eval(objname, module.__dict__)
-            
+
             if _class is None:
                 raise Exception('eval(%(objname)s) in %(modname)s came up None' % locals())
 
         except Exception, e:
             raise Core.KnownUnknown('Tried to import %s, but: %s' % (classpath, e))
-    
+
     else:
         #
         # Support for "foo.blah"-style classpaths, TODO: deprecate this in v2.
         #
         classpath = classpath.split('.')
-    
+
         try:
             module = __import__('.'.join(classpath[:-1]), fromlist=str(classpath[-1]))
         except ImportError, e:
             raise Core.KnownUnknown('Tried to import %s, but: %s' % ('.'.join(classpath), e))
-    
+
         try:
             _class = getattr(module, classpath[-1])
         except AttributeError, e:
diff --git a/TileStache/Core.py b/TileStache/Core.py
index d325283..b1e5776 100644
--- a/TileStache/Core.py
+++ b/TileStache/Core.py
@@ -9,7 +9,7 @@ configuration file as a dictionary:
 
     {
       "cache": ...,
-      "layers": 
+      "layers":
       {
         "example-name":
         {
@@ -165,12 +165,12 @@ def _addRecentTile(layer, coord, format, body, age=300):
     """
     key = (layer, coord, format)
     due = time() + age
-    
+
     _recent_tiles['hash'][key] = body, due
     _recent_tiles['list'].append((key, due))
-    
+
     logging.debug('TileStache.Core._addRecentTile() added tile to recent tiles: %s', key)
-    
+
     # now look at the oldest keys and remove them if needed
     cutoff = 0
     for i, (key, due_by) in enumerate(_recent_tiles['list']):
@@ -178,9 +178,9 @@ def _addRecentTile(layer, coord, format, body, age=300):
         if time() < due_by:
             cutoff = i
             break
-        
+
         logging.debug('TileStache.Core._addRecentTile() removed tile from recent tiles: %s', key)
-        
+
         try:
             del _recent_tiles['hash'][key]
         except KeyError:
@@ -192,27 +192,27 @@ def _getRecentTile(layer, coord, format):
     """
     key = (layer, coord, format)
     body, use_by = _recent_tiles['hash'].get(key, (None, 0))
-    
+
     # non-existent?
     if body is None:
         return None
-    
+
     # new enough?
     if time() < use_by:
         logging.debug('TileStache.Core._addRecentTile() found tile in recent tiles: %s', key)
         return body
-    
+
     # too old
     try:
         del _recent_tiles['hash'][key]
     except KeyError:
         pass
-    
+
     return None
 
 class Metatile:
     """ Some basic characteristics of a metatile.
-    
+
         Properties:
         - rows: number of tile rows this metatile covers vertically.
         - columns: number of tile columns this metatile covers horizontally.
@@ -229,14 +229,14 @@ class Metatile:
 
     def isForReal(self):
         """ Return True if this is really a metatile with a buffer or multiple tiles.
-        
+
             A default 1x1 metatile with buffer=0 is not for real.
         """
         return self.buffer > 0 or self.rows > 1 or self.columns > 1
 
     def firstCoord(self, coord):
         """ Return a new coordinate for the upper-left corner of a metatile.
-        
+
             This is useful as a predictable way to refer to an entire metatile
             by one of its sub-tiles, currently needed to do locking correctly.
         """
@@ -244,17 +244,17 @@ class Metatile:
 
     def allCoords(self, coord):
         """ Return a list of coordinates for a complete metatile.
-        
+
             Results are guaranteed to be ordered left-to-right, top-to-bottom.
         """
         rows, columns = int(self.rows), int(self.columns)
-        
+
         # upper-left corner of coord's metatile
         row = rows * (int(coord.row) / rows)
         column = columns * (int(coord.column) / columns)
-        
+
         coords = []
-        
+
         for r in range(rows):
             for c in range(columns):
                 coords.append(Coordinate(row + r, column + c, coord.zoom))
@@ -263,7 +263,7 @@ class Metatile:
 
 class Layer:
     """ A Layer.
-    
+
         Required attributes:
 
           provider:
@@ -291,7 +291,7 @@ class Layer:
 
           bounds:
             Instance of Config.Bounds for limiting rendered tiles.
-          
+
           allowed_origin:
             Value for the Access-Control-Allow-Origin HTTP response header.
 
@@ -323,22 +323,22 @@ class Layer:
         self.config = config
         self.projection = projection
         self.metatile = metatile
-        
+
         self.stale_lock_timeout = stale_lock_timeout
         self.cache_lifespan = cache_lifespan
         self.write_cache = write_cache
         self.allowed_origin = allowed_origin
         self.max_cache_age = max_cache_age
         self.redirects = redirects or dict()
-        
+
         self.preview_lat = preview_lat
         self.preview_lon = preview_lon
         self.preview_zoom = preview_zoom
         self.preview_ext = preview_ext
-        
+
         self.bounds = bounds
         self.dim = tile_height
-        
+
         self.bitmap_palette = None
         self.jpeg_options = {}
         self.png_options = {}
@@ -346,7 +346,7 @@ class Layer:
 
     def name(self):
         """ Figure out what I'm called, return a name if there is one.
-        
+
             Layer names are stored in the Configuration object, so
             config.layers must be inspected to find a matching name.
         """
@@ -358,17 +358,17 @@ class Layer:
 
     def getTileResponse(self, coord, extension, ignore_cached=False):
         """ Get status code, headers, and a tile binary for a given request layer tile.
-        
+
             Arguments:
             - coord: one ModestMaps.Core.Coordinate corresponding to a single tile.
             - extension: filename extension to choose response type, e.g. "png" or "jpg".
             - ignore_cached: always re-render the tile, whether it's in the cache or not.
-        
+
             This is the main entry point, after site configuration has been loaded
             and individual tiles need to be rendered.
         """
         start_time = time()
-        
+
         mimetype, format = self.getTypeByExtension(extension)
 
         # default response values
@@ -396,7 +396,7 @@ class Layer:
             # Then look in the bag of recent tiles.
             body = _getRecentTile(self, coord, format)
             tile_from = 'recent tiles'
-        
+
         # If no tile was found, dig deeper
         if body is None:
             try:
@@ -405,16 +405,16 @@ class Layer:
                 if self.write_cache:
                     # this is the coordinate that actually gets locked.
                     lockCoord = self.metatile.firstCoord(coord)
-                    
+
                     # We may need to write a new tile, so acquire a lock.
                     cache.lock(self, lockCoord, format)
-                
+
                 if not ignore_cached:
                     # There's a chance that some other process has
                     # written the tile while the lock was being acquired.
                     body = cache.read(self, coord, format)
                     tile_from = 'cache after all'
-        
+
                 if body is None:
                     # No one else wrote the tile, do it here.
                     buff = StringIO()
@@ -429,17 +429,17 @@ class Layer:
 
                     if not self.write_cache:
                         save = False
-                    
+
                     if format.lower() == 'jpeg':
                         save_kwargs = self.jpeg_options
                     elif format.lower() == 'png':
                         save_kwargs = self.png_options
                     else:
                         save_kwargs = {}
-                    
+
                     tile.save(buff, format, **save_kwargs)
                     body = buff.getvalue()
-                    
+
                     if save:
                         cache.save(body, self, coord, format)
 
@@ -449,7 +449,7 @@ class Layer:
                 headers = e.headers
                 status_code = e.status_code
                 body = e.content
-                
+
                 if e.emit_content_type:
                     headers.setdefault('Content-Type', mimetype)
 
@@ -457,20 +457,20 @@ class Layer:
                 if lockCoord:
                     # Always clean up a lock when it's no longer being used.
                     cache.unlock(self, lockCoord, format)
-        
+
         _addRecentTile(self, coord, format, body)
         logging.info('TileStache.Core.Layer.getTileResponse() %s/%d/%d/%d.%s via %s in %.3f', self.name(), coord.zoom, coord.column, coord.row, extension, tile_from, time() - start_time)
-        
+
         return status_code, headers, body
 
     def doMetatile(self):
         """ Return True if we have a real metatile and the provider is OK with it.
         """
         return self.metatile.isForReal() and hasattr(self.provider, 'renderArea')
-    
+
     def render(self, coord, format):
         """ Render a tile for a coordinate, return PIL Image-like object.
-        
+
             Perform metatile slicing here as well, if required, writing the
             full set of rendered tiles to cache as we go.
 
@@ -479,16 +479,16 @@ class Layer:
         """
         if self.bounds and self.bounds.excludes(coord):
             raise NoTileLeftBehind(Image.new('RGBA', (self.dim, self.dim), (0, 0, 0, 0)))
-        
+
         srs = self.projection.srs
         xmin, ymin, xmax, ymax = self.envelope(coord)
         width, height = self.dim, self.dim
-        
+
         provider = self.provider
         metatile = self.metatile
         pass_through = provider.pass_through if hasattr(provider, 'pass_through') else False
 
-        
+
         if self.doMetatile():
 
             if pass_through:
@@ -499,11 +499,11 @@ class Layer:
             width, height = self.metaSize(coord)
 
             subtiles = self.metaSubtiles(coord)
-        
+
         if self.doMetatile() or hasattr(provider, 'renderArea'):
             # draw an area, defined in projected coordinates
             tile = provider.renderArea(width, height, srs, xmin, ymin, xmax, ymax, coord.zoom)
-        
+
         elif hasattr(provider, 'renderTile'):
             # draw a single tile
             width, height = self.dim, self.dim
@@ -517,7 +517,7 @@ class Layer:
 
         if hasattr(tile, 'size') and tile.size[1] != height:
             raise KnownUnknown('Your provider returned the wrong image size: %s instead of %d pixels tall.' % (repr(tile.size), self.dim))
-        
+
         if self.bitmap_palette:
             # this is where we apply the palette if there is one
 
@@ -539,11 +539,11 @@ class Layer:
             # if tile is an image
             if format.lower() in ('png', 'jpeg', 'tiff', 'bmp', 'gif'):
                 tile = self.pixel_effect.apply(tile)
-        
+
         if self.doMetatile():
             # tile will be set again later
             tile, surtile = None, tile
-            
+
             for (other, x, y) in subtiles:
                 buff = StringIO()
                 bbox = (x, y, x + self.dim, y + self.dim)
@@ -551,38 +551,38 @@ class Layer:
                 if self.palette256:
                     # this is where we have PIL optimally palette our image
                     subtile = apply_palette256(subtile)
-                
+
                 subtile.save(buff, format)
                 body = buff.getvalue()
 
                 if self.write_cache:
                     self.config.cache.save(body, self, other, format)
-                
+
                 if other == coord:
                     # the one that actually gets returned
                     tile = subtile
-                
+
                 _addRecentTile(self, other, format, body)
-        
+
         return tile
-    
+
     def envelope(self, coord):
         """ Projected rendering envelope (xmin, ymin, xmax, ymax) for a Coordinate.
         """
         ul = self.projection.coordinateProj(coord)
         lr = self.projection.coordinateProj(coord.down().right())
-        
+
         return min(ul.x, lr.x), min(ul.y, lr.y), max(ul.x, lr.x), max(ul.y, lr.y)
-    
+
     def metaEnvelope(self, coord):
         """ Projected rendering envelope (xmin, ymin, xmax, ymax) for a metatile.
         """
         # size of buffer expressed as fraction of tile size
         buffer = float(self.metatile.buffer) / self.dim
-        
+
         # full set of metatile coordinates
         coords = self.metatile.allCoords(coord)
-        
+
         # upper-left and lower-right expressed as fractional coordinates
         ul = coords[0].left(buffer).up(buffer)
         lr = coords[-1].right(1 + buffer).down(1 + buffer)
@@ -590,20 +590,20 @@ class Layer:
         # upper-left and lower-right expressed as projected coordinates
         ul = self.projection.coordinateProj(ul)
         lr = self.projection.coordinateProj(lr)
-        
+
         # new render area coverage in projected coordinates
         return min(ul.x, lr.x), min(ul.y, lr.y), max(ul.x, lr.x), max(ul.y, lr.y)
-    
+
     def metaSize(self, coord):
         """ Pixel width and height of full rendered image for a metatile.
         """
         # size of buffer expressed as fraction of tile size
         buffer = float(self.metatile.buffer) / self.dim
-        
+
         # new master image render size
         width = int(self.dim * (buffer * 2 + self.metatile.columns))
         height = int(self.dim * (buffer * 2 + self.metatile.rows))
-        
+
         return width, height
 
     def metaSubtiles(self, coord):
@@ -616,10 +616,10 @@ class Layer:
         for other in coords:
             r = other.row - coords[0].row
             c = other.column - coords[0].column
-            
+
             x = c * self.dim + self.metatile.buffer
             y = r * self.dim + self.metatile.buffer
-            
+
             subtiles.append((other, x, y))
 
         return subtiles
@@ -629,19 +629,19 @@ class Layer:
         """
         if hasattr(self.provider, 'getTypeByExtension'):
             return self.provider.getTypeByExtension(extension)
-        
+
         elif extension.lower() == 'png':
             return 'image/png', 'PNG'
-    
+
         elif extension.lower() == 'jpg':
             return 'image/jpeg', 'JPEG'
-    
+
         else:
             raise KnownUnknown('Unknown extension in configuration: "%s"' % extension)
 
     def setSaveOptionsJPEG(self, quality=None, optimize=None, progressive=None):
         """ Optional arguments are added to self.jpeg_options for pickup when saving.
-        
+
             More information about options:
                 http://effbot.org/imagingbook/format-jpeg.htm
         """
@@ -656,22 +656,22 @@ class Layer:
 
     def setSaveOptionsPNG(self, optimize=None, palette=None, palette256=None):
         """ Optional arguments are added to self.png_options for pickup when saving.
-        
+
             Palette argument is a URL relative to the configuration file,
             and it implies bits and optional transparency options.
-        
+
             More information about options:
                 http://effbot.org/imagingbook/format-png.htm
         """
         if optimize is not None:
             self.png_options['optimize'] = bool(optimize)
-        
+
         if palette is not None:
             palette = urljoin(self.config.dirpath, palette)
             palette, bits, t_index = load_palette(palette)
-            
+
             self.bitmap_palette, self.png_options['bits'] = palette, bits
-            
+
             if t_index is not None:
                 self.png_options['transparency'] = t_index
 
@@ -682,20 +682,20 @@ class Layer:
 
 class KnownUnknown(Exception):
     """ There are known unknowns. That is to say, there are things that we now know we don't know.
-    
+
         This exception gets thrown in a couple places where common mistakes are made.
     """
     pass
 
 class NoTileLeftBehind(Exception):
     """ Leave no tile in the cache.
-    
+
         This exception can be thrown in a provider to signal to
         TileStache.getTile() that the result tile should be returned,
         but not saved in a cache. Useful in cases where a full tileset
         is being rendered for static hosting, and you don't want millions
         of identical ocean tiles.
-        
+
         The one constructor argument is an instance of PIL.Image or
         some other object with a save() method, as would be returned
         by provider renderArea() or renderTile() methods.
@@ -728,13 +728,13 @@ def _preview(layer):
     lat, lon = layer.preview_lat, layer.preview_lon
     zoom = layer.preview_zoom
     ext = layer.preview_ext
-    
+
     return """<!DOCTYPE html>
 <html>
 <head>
     <title>TileStache Preview: %(layername)s</title>
     <script src="http://code.modestmaps.com/tilestache/modestmaps.min.js" type="text/javascript"></script>
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
     <style type="text/css">
         html, body, #map {
             position: absolute;
diff --git a/TileStache/Goodies/ExternalConfigServer.py b/TileStache/Goodies/ExternalConfigServer.py
index 04f9dde..d2b4927 100644
--- a/TileStache/Goodies/ExternalConfigServer.py
+++ b/TileStache/Goodies/ExternalConfigServer.py
@@ -1,8 +1,8 @@
 """ ExternalConfigServer is a replacement for WSGITileServer that uses external
     configuration fetched via HTTP to service all config requests.
-    
+
     Example usage, with gunicorn (http://gunicorn.org):
-      
+
       gunicorn --bind localhost:8888 "TileStache.Goodies.ExternalConfigServer:WSGIServer(url)"
 """
 
@@ -17,7 +17,7 @@ except ImportError:
 import TileStache
 
 class DynamicLayers:
-	
+
 	def __init__(self, config, url_root, cache_responses, dirpath):
 		self.config = config
 		self.url_root = url_root
@@ -25,17 +25,17 @@ class DynamicLayers:
 		self.cache_responses = cache_responses;
 		self.seen_layers = {}
 		self.lookup_failures = set()
-	
+
 	def keys(self):
 		return self.seen_layers.keys()
-	
+
 	def items(self):
 		return self.seen_layers.items()
 
 	def parse_layer(self, layer_json):
 		layer_dict = json_load(layer_json)
-		return TileStache.Config._parseConfigfileLayer(layer_dict, self.config, self.dirpath)
-	
+		return TileStache.Config._parseConfigLayer(layer_dict, self.config, self.dirpath)
+
 	def __contains__(self, key):
 		# If caching is enabled and we've seen a request for this layer before, return True unless
 		# the prior lookup failed to find this layer.
@@ -44,9 +44,9 @@ class DynamicLayers:
 				return True
 			elif key in self.lookup_failures:
 				return False
-		
+
 		res = urlopen(self.url_root + "/layer/" + key)
-		
+
 		if self.cache_responses:
 			if res.getcode() != 200:
 				# Cache a failed lookup
@@ -66,9 +66,9 @@ class DynamicLayers:
 					return False
 
 		if res.getcode() != 200:
-			logging.info("Config response code %s for %s", res.getcode(), key)		
+			logging.info("Config response code %s for %s", res.getcode(), key)
 		return res.getcode() == 200
-	
+
 	def __getitem__(self, key):
 		if self.cache_responses:
 			if key in self.seen_layers:
@@ -76,7 +76,7 @@ class DynamicLayers:
 			elif key in self.lookup_failures:
 				# If we are caching, raise KnownUnknown if we have previously failed to find this layer
 				raise TileStache.KnownUnknown("Layer %s previously not found", key)
-		
+
 		logging.debug("Requesting layer %s", self.url_root + "/layer/" + key)
 		res = urlopen(self.url_root + "/layer/" + key)
 		if (res.getcode() != 200) :
@@ -84,7 +84,7 @@ class DynamicLayers:
 			if (self.cache_responses) :
 				self.lookup_failures.add(key)
 			raise TileStache.KnownUnknown("Layer %s not found", key)
-		
+
 		try :
 			layer = self.parse_layer(res)
 			self.seen_layers[key] = layer
@@ -99,39 +99,39 @@ class DynamicLayers:
 			raise TileStache.KnownUnknown("Failed to parse JSON configuration for %s", key)
 
 class ExternalConfiguration:
-	
+
 	def __init__(self, url_root, cache_dict, cache_responses, dirpath):
-		self.cache = TileStache.Config._parseConfigfileCache(cache_dict, dirpath)
+		self.cache = TileStache.Config._parseConfigCache(cache_dict, dirpath)
 		self.dirpath = dirpath
 		self.layers = DynamicLayers(self, url_root, cache_responses, dirpath)
 
 class WSGIServer (TileStache.WSGITileServer):
-	
+
 	"""
 		Wrap WSGI application, passing it a custom configuration.
-		
+
 		The WSGI application is an instance of TileStache:WSGITileServer.
-		
+
 		This method is initiated with a url_root that contains the scheme, host, port
 		and path that must prefix the API calls on our local server.  Any valid http
 		or https urls should work.
-		
+
 		The cache_responses parameter tells TileStache to cache all responses from
 		the configuration server.
 	"""
-	
+
 	def __init__(self, url_root, cache_responses=True, debug_level="DEBUG"):
 		logging.basicConfig(level=debug_level)
-		
+
 		# Call API server at url to grab cache_dict
 		cache_dict = json_load(urlopen(url_root + "/cache"))
-		
+
 		dirpath = '/tmp/stache'
-		
+
 		config = ExternalConfiguration(url_root, cache_dict, cache_responses, dirpath)
-		
+
 		TileStache.WSGITileServer.__init__(self, config, False)
-	
+
 	def __call__(self, environ, start_response):
 		response = TileStache.WSGITileServer.__call__(self, environ, start_response)
 		return response
diff --git a/TileStache/Goodies/VecTiles/pbf.py b/TileStache/Goodies/VecTiles/pbf.py
new file mode 100644
index 0000000..788afa4
--- /dev/null
+++ b/TileStache/Goodies/VecTiles/pbf.py
@@ -0,0 +1,54 @@
+import mapbox_vector_tile
+
+# extracted from Mapzen TileStache fork version 0.9.0, more recent versions doesn't seem to work.
+# https://github.com/tilezen/TileStache/blob/089ee60f9902e85678499fe8455580a8a013be89/TileStache/Goodies/VecTiles/mvt.py
+
+# coordindates are scaled to this range within tile
+extents = 4096
+
+
+def decode(file):
+    tile = file.read()
+    data = mapbox_vector_tile.decode(tile)
+    return data
+
+
+def encode(file, features, coord, layer_name=''):
+    layers = []
+
+    layers.append(get_feature_layer(layer_name, features))
+
+    data = mapbox_vector_tile.encode(layers)
+    file.write(data)
+
+
+def merge(file, feature_layers, coord):
+    '''
+    Retrieve a list of mapbox vector tile responses and merge them into one.
+
+        get_tiles() retrieves data and performs basic integrity checks.
+    '''
+    layers = []
+
+    for layer in feature_layers:
+        layers.append(get_feature_layer(layer['name'], layer['features']))
+
+    data = mapbox_vector_tile.encode(layers)
+    file.write(data)
+
+
+def get_feature_layer(name, features):
+    _features = []
+
+    for feature in features:
+        wkb, props, fid = feature
+        _features.append({
+            'geometry': wkb,
+            'properties': props,
+            'id': fid,
+        })
+
+    return {
+        'name': name or '',
+        'features': _features
+    }
diff --git a/TileStache/Goodies/VecTiles/server.py b/TileStache/Goodies/VecTiles/server.py
index f36bc41..9326239 100644
--- a/TileStache/Goodies/VecTiles/server.py
+++ b/TileStache/Goodies/VecTiles/server.py
@@ -15,6 +15,7 @@ from os.path import exists
 try:
     from psycopg2.extras import RealDictCursor
     from psycopg2 import connect
+    from psycopg2.extensions import TransactionRollbackError
 
 except ImportError, err:
     # Still possible to build the documentation without psycopg2
@@ -22,7 +23,7 @@ except ImportError, err:
     def connect(*args, **kwargs):
         raise err
 
-from . import mvt, geojson, topojson
+from . import mvt, geojson, topojson, pbf
 from ...Geography import SphericalMercator
 from ModestMaps.Core import Point
 
@@ -59,7 +60,12 @@ class Provider:
           clip:
             Optional boolean flag determines whether geometries are clipped to
             tile boundaries or returned in full. Default true: clip geometries.
-        
+
+          padding:
+            Optional number of pixels for applying a padding in the !bbox! token.
+            Useful if you want some buffer (common areas) between the tiles.
+            Default 0.
+
           srid:
             Optional numeric SRID used by PostGIS for spherical mercator.
             Default 900913.
@@ -114,7 +120,7 @@ class Provider:
         Note that JSON requires keys to be strings, therefore the zoom levels
         must be enclosed in quotes.
     '''
-    def __init__(self, layer, dbinfo, queries, clip=True, srid=900913, simplify=1.0, simplify_until=16):
+    def __init__(self, layer, dbinfo, queries, clip=True, srid=900913, simplify=1.0, simplify_until=16, padding=0):
         '''
         '''
         self.layer = layer
@@ -126,7 +132,7 @@ class Provider:
         self.srid = int(srid)
         self.simplify = float(simplify)
         self.simplify_until = int(simplify_until)
-        
+        self.padding = int(padding)
         self.columns = {}
 
         # Each type creates an iterator yielding tuples of:
@@ -179,10 +185,10 @@ class Provider:
         
         tolerance = self.simplify * tolerances[coord.zoom] if coord.zoom < self.simplify_until else None
         
-        return Response(self.dbinfo, self.srid, query, self.columns[query], bounds, tolerance, coord.zoom, self.clip)
+        return Response(self.dbinfo, self.srid, query, self.columns[query], bounds, tolerance, coord.zoom, self.clip, coord, self.layer.name(), self.padding)
 
     def getTypeByExtension(self, extension):
-        ''' Get mime-type and format by file extension, one of "mvt", "json" or "topojson".
+        ''' Get mime-type and format by file extension, one of "mvt", "json", "topojson" or "pbf".
         '''
         if extension.lower() == 'mvt':
             return 'application/octet-stream+mvt', 'MVT'
@@ -192,6 +198,9 @@ class Provider:
         
         elif extension.lower() == 'topojson':
             return 'application/json', 'TopoJSON'
+
+        elif extension.lower() == 'pbf':
+            return 'application/x-protobuf', 'PBF'
         
         else:
             raise ValueError(extension)
@@ -226,13 +235,16 @@ class MultiProvider:
         return MultiResponse(self.layer.config, self.names, coord)
 
     def getTypeByExtension(self, extension):
-        ''' Get mime-type and format by file extension, "json" or "topojson" only.
+        ''' Get mime-type and format by file extension, "json", "topojson" or "pbf" only.
         '''
         if extension.lower() == 'json':
             return 'application/json', 'JSON'
         
         elif extension.lower() == 'topojson':
             return 'application/json', 'TopoJSON'
+
+        elif extension.lower() == 'pbf':
+            return 'application/x-protobuf', 'PBF'
         
         else:
             raise ValueError(extension)
@@ -256,7 +268,7 @@ class Connection:
 class Response:
     '''
     '''
-    def __init__(self, dbinfo, srid, subquery, columns, bounds, tolerance, zoom, clip):
+    def __init__(self, dbinfo, srid, subquery, columns, bounds, tolerance, zoom, clip, coord, layer_name='', padding=0):
         ''' Create a new response object with Postgres connection info and a query.
         
             bounds argument is a 4-tuple with (xmin, ymin, xmax, ymax).
@@ -265,12 +277,21 @@ class Response:
         self.bounds = bounds
         self.zoom = zoom
         self.clip = clip
-        
-        bbox = 'ST_MakeBox2D(ST_MakePoint(%.2f, %.2f), ST_MakePoint(%.2f, %.2f))' % bounds
-        geo_query = build_query(srid, subquery, columns, bbox, tolerance, True, clip)
-        merc_query = build_query(srid, subquery, columns, bbox, tolerance, False, clip)
-        self.query = dict(TopoJSON=geo_query, JSON=geo_query, MVT=merc_query)
-    
+        self.coord = coord
+        self.layer_name = layer_name
+        self.padding = padding
+
+        # convert pixel padding to meters (based on tolerances)
+        # to be applied in the bbox
+        tol_idx = coord.zoom if 0 <= coord.zoom < len(tolerances) else -1
+        tol_val = tolerances[tol_idx]
+        self.padding = self.padding * tol_val
+
+        geo_query = build_query(srid, subquery, columns, bounds, tolerance, True, clip, self.padding)
+        merc_query = build_query(srid, subquery, columns, bounds, tolerance, False, clip, self.padding)
+        pbf_query = build_query(srid, subquery, columns, bounds, tolerance, False, clip, self.padding, pbf.extents)
+        self.query = dict(TopoJSON=geo_query, JSON=geo_query, MVT=merc_query, PBF=pbf_query)
+
     def save(self, out, format):
         '''
         '''
@@ -304,11 +325,15 @@ class Response:
             ur = SphericalMercator().projLocation(Point(*self.bounds[2:4]))
             topojson.encode(out, features, (ll.lon, ll.lat, ur.lon, ur.lat), self.clip)
         
+        elif format == 'PBF':
+            pbf.encode(
+                out, features, self.coord, layer_name=self.layer_name)
+
         else:
             raise ValueError(format)
 
 class EmptyResponse:
-    ''' Simple empty response renders valid MVT or GeoJSON with no features.
+    ''' Simple empty response renders valid MVT, GeoJSON, TopoJSON or PBF with no features.
     '''
     def __init__(self, bounds):
         self.bounds = bounds
@@ -327,6 +352,9 @@ class EmptyResponse:
             ur = SphericalMercator().projLocation(Point(*self.bounds[2:4]))
             topojson.encode(out, [], (ll.lon, ll.lat, ur.lon, ur.lat), False)
         
+        elif format == 'PBF':
+            pbf.encode(out, [], None, self.bounds)
+
         else:
             raise ValueError(format)
 
@@ -348,7 +376,17 @@ class MultiResponse:
         
         elif format == 'JSON':
             geojson.merge(out, self.names, self.config, self.coord)
-        
+
+        elif format == 'PBF':
+            feature_layers = []
+            layers = [self.config.layers[name] for name in self.names]
+            for layer in layers:
+                width, height = layer.dim, layer.dim
+                tile = layer.provider.renderTile(width, height, layer.projection.srs, self.coord)
+                if isinstance(tile, EmptyResponse): continue
+                feature_layers.append({'name': layer.name(), 'features': get_features(tile.dbinfo, tile.query["PBF"])})
+            pbf.merge(out, feature_layers, self.coord)
+
         else:
             raise ValueError(format)
 
@@ -381,10 +419,39 @@ def query_columns(dbinfo, srid, subquery, bounds):
             
             column_names = set(row.keys())
             return column_names
+
+def get_features(dbinfo, query, n_try=1):
+    features = []
+
+    with Connection(dbinfo) as db:
+        try:
+            db.execute(query)
+        except TransactionRollbackError:
+            if n_try >= 5:
+                raise
+            else:
+                return get_features(dbinfo, query, n_try=n_try + 1)
+        for row in db.fetchall():
+            assert '__geometry__' in row, 'Missing __geometry__ in feature result'
+            assert '__id__' in row, 'Missing __id__ in feature result'
+
+            wkb = bytes(row.pop('__geometry__'))
+            id = row.pop('__id__')
+
+            props = dict((k, v) for k, v in row.items() if v is not None)
+
+            features.append((wkb, props, id))
+
+    return features
+
         
-def build_query(srid, subquery, subcolumns, bbox, tolerance, is_geo, is_clipped):
+def build_query(srid, subquery, subcolumns, bounds, tolerance, is_geo, is_clipped, padding=0, scale=None):
     ''' Build and return an PostGIS query.
     '''
+    bbox = 'ST_MakeBox2D(ST_MakePoint(%.12f, %.12f), ST_MakePoint(%.12f, %.12f))' % (
+        bounds[0] - padding, bounds[1] - padding,
+        bounds[2] + padding, bounds[3] + padding)
+
     bbox = 'ST_SetSRID(%s, %d)' % (bbox, srid)
     geom = 'q.__geometry__'
     
@@ -396,6 +463,13 @@ def build_query(srid, subquery, subcolumns, bbox, tolerance, is_geo, is_clipped)
     
     if is_geo:
         geom = 'ST_Transform(%s, 4326)' % geom
+
+    if scale:
+        # scale applies to the un-padded bounds, e.g. geometry in the padding area "spills over" past the scale range
+        geom = ('ST_TransScale(%s, %.12f, %.12f, %.12f, %.12f)'
+                % (geom, -bounds[0], -bounds[1],
+                   scale / (bounds[2] - bounds[0]),
+                   scale / (bounds[3] - bounds[1])))
     
     subquery = subquery.replace('!bbox!', bbox)
     columns = ['q."%s"' % c for c in subcolumns if c not in ('__geometry__', )]
diff --git a/TileStache/Providers.py b/TileStache/Providers.py
index 1f9c7a1..30139fa 100644
--- a/TileStache/Providers.py
+++ b/TileStache/Providers.py
@@ -254,8 +254,9 @@ class Proxy:
         img = None
         urls = self.provider.getTileUrls(coord)
 
-        # Explicitly tell urllib2 to get no proxies
-        proxy_support = urllib2.ProxyHandler({})
+        # Tell urllib2 get proxies if set in the environment variables <protocol>_proxy
+        # see: https://docs.python.org/2/library/urllib2.html#urllib2.ProxyHandler
+        proxy_support = urllib2.ProxyHandler()
         url_opener = urllib2.build_opener(proxy_support)
 
         for url in urls:
diff --git a/TileStache/VERSION b/TileStache/VERSION
index c73f500..aa618f0 100644
--- a/TileStache/VERSION
+++ b/TileStache/VERSION
@@ -1 +1 @@
-1.51.1
+1.51.2
diff --git a/TileStache/__init__.py b/TileStache/__init__.py
index 2375b4b..9d8d829 100644
--- a/TileStache/__init__.py
+++ b/TileStache/__init__.py
@@ -33,8 +33,10 @@ import logging
 
 try:
     from json import load as json_load
+    from json import loads as json_loads
 except ImportError:
     from simplejson import load as json_load
+    from simplejson import loads as json_loads
 
 from ModestMaps.Core import Coordinate
 
@@ -50,16 +52,16 @@ _preview_pat = re.compile(r'^/?(?P<l>\w.+)/(preview\.html)?$')
 
 def getTile(layer, coord, extension, ignore_cached=False):
     ''' Get a type string and tile binary for a given request layer tile.
-    
+
         This function is documented as part of TileStache's public API:
             http://tilestache.org/doc/#tilestache-gettile
-    
+
         Arguments:
         - layer: instance of Core.Layer to render.
         - coord: one ModestMaps.Core.Coordinate corresponding to a single tile.
         - extension: filename extension to choose response type, e.g. "png" or "jpg".
         - ignore_cached: always re-render the tile, whether it's in the cache or not.
-    
+
         This is the main entry point, after site configuration has been loaded
         and individual tiles need to be rendered.
     '''
@@ -73,11 +75,12 @@ def getPreview(layer):
     """
     return 200, Headers([('Content-Type', 'text/html')]), Core._preview(layer)
 
-def parseConfigfile(configpath):
+def parseConfig(configHandle):
     """ Parse a configuration file and return a Configuration object.
-    
-        Configuration file is formatted as JSON with two sections, "cache" and "layers":
-        
+
+        Configuration could be a Python dictionary or a file formatted as JSON. In both cases
+        it needs to be formatted with two sections, "cache" and "layers":
+
           {
             "cache": { ... },
             "layers": {
@@ -86,34 +89,37 @@ def parseConfigfile(configpath):
               ...
             }
           }
-        
+
         The full path to the file is significant, used to
         resolve any relative paths found in the configuration.
-        
+
         See the Caches module for more information on the "caches" section,
         and the Core and Providers modules for more information on the
         "layers" section.
     """
-    config_dict = json_load(urlopen(configpath))
-    
-    scheme, host, path, p, q, f = urlparse(configpath)
-    
-    if scheme == '':
-        scheme = 'file'
-        path = realpath(path)
-    
-    dirpath = '%s://%s%s' % (scheme, host, dirname(path).rstrip('/') + '/')
+    if isinstance(configHandle, dict):
+        config_dict = configHandle
+        dirpath = '.'
+    else:
+        config_dict = json_load(urlopen(configHandle))
+        scheme, host, path, p, q, f = urlparse(configHandle)
+
+        if scheme == '':
+            scheme = 'file'
+            path = realpath(path)
+
+        dirpath = '%s://%s%s' % (scheme, host, dirname(path).rstrip('/') + '/')
 
     return Config.buildConfiguration(config_dict, dirpath)
 
 def splitPathInfo(pathinfo):
     """ Converts a PATH_INFO string to layer name, coordinate, and extension parts.
-        
+
         Example: "/layer/0/0/0.png", leading "/" optional.
     """
     if pathinfo == '/':
         return None, None, None
-    
+
     if _pathinfo_pat.match(pathinfo or ''):
         path = _pathinfo_pat.match(pathinfo)
         layer, row, column, zoom, extension = [path.group(p) for p in 'lyxze']
@@ -131,20 +137,20 @@ def splitPathInfo(pathinfo):
 
 def mergePathInfo(layer, coord, extension):
     """ Converts layer name, coordinate and extension back to a PATH_INFO string.
-    
+
         See also splitPathInfo().
     """
     z = coord.zoom
     x = coord.column
     y = coord.row
-    
+
     return '/%(layer)s/%(z)d/%(x)d/%(y)d.%(extension)s' % locals()
 
 def requestLayer(config, path_info):
     """ Return a Layer.
-    
+
         Requires a configuration and PATH_INFO (e.g. "/example/0/0/0.png").
-        
+
         Config parameter can be a file path string for a JSON configuration file
         or a configuration object with 'cache', 'layers', and 'dirpath' properties.
     """
@@ -154,76 +160,76 @@ def requestLayer(config, path_info):
         # build a tuple key into previously-seen config objects.
         #
         key = hasattr(config, '__hash__') and (config, getcwd())
-        
+
         if key in _previous_configs:
             config = _previous_configs[key]
-        
+
         else:
-            config = parseConfigfile(config)
-            
+            config = parseConfig(config)
+
             if key:
                 _previous_configs[key] = config
-    
+
     else:
         assert hasattr(config, 'cache'), 'Configuration object must have a cache.'
         assert hasattr(config, 'layers'), 'Configuration object must have layers.'
         assert hasattr(config, 'dirpath'), 'Configuration object must have a dirpath.'
-    
+
     # ensure that path_info is at least a single "/"
     path_info = '/' + (path_info or '').lstrip('/')
-    
+
     if path_info == '/':
         return Core.Layer(config, None, None)
 
     layername = splitPathInfo(path_info)[0]
-    
+
     if layername not in config.layers:
         raise Core.KnownUnknown('"%s" is not a layer I know about. Here are some that I do know about: %s.' % (layername, ', '.join(sorted(config.layers.keys()))))
-    
+
     return config.layers[layername]
 
 def requestHandler(config_hint, path_info, query_string=None):
     """ Generate a mime-type and response body for a given request.
-    
+
         This function is documented as part of TileStache's public API:
             http://tilestache.org/doc/#tilestache-requesthandler
 
         TODO: replace this with requestHandler2() in TileStache 2.0.0.
-        
+
         Calls requestHandler2().
     """
     status_code, headers, content = requestHandler2(config_hint, path_info, query_string)
     mimetype = headers.get('Content-Type')
-    
+
     return mimetype, content
 
 def requestHandler2(config_hint, path_info, query_string=None, script_name=''):
     """ Generate a set of headers and response body for a given request.
-    
+
         TODO: Replace requestHandler() with this function in TileStache 2.0.0.
-        
+
         Requires a configuration and PATH_INFO (e.g. "/example/0/0/0.png").
-        
+
         Config_hint parameter can be a path string for a JSON configuration file
         or a configuration object with 'cache', 'layers', and 'dirpath' properties.
-        
+
         Query string is optional, currently used for JSON callbacks.
-        
+
         Calls Layer.getTileResponse() to render actual tiles, and getPreview() to render preview.html.
     """
     headers = Headers([])
-    
+
     try:
         # ensure that path_info is at least a single "/"
         path_info = '/' + (path_info or '').lstrip('/')
-        
+
         layer = requestLayer(config_hint, path_info)
         query = parse_qs(query_string or '')
         try:
             callback = query['callback'][0]
         except KeyError:
             callback = None
-        
+
         #
         # Special case for index page.
         #
@@ -232,24 +238,24 @@ def requestHandler2(config_hint, path_info, query_string=None, script_name=''):
             return 200, Headers([('Content-Type', mimetype)]), content
 
         coord, extension = splitPathInfo(path_info)[1:]
-        
+
         if extension == 'html' and coord is None:
             status_code, headers, content = getPreview(layer)
 
         elif extension.lower() in layer.redirects:
             other_extension = layer.redirects[extension.lower()]
-            
+
             redirect_uri = script_name
             redirect_uri += mergePathInfo(layer.name(), coord, other_extension)
-            
+
             if query_string:
                 redirect_uri += '?' + query_string
-            
+
             headers['Location'] = redirect_uri
             headers['Content-Type'] = 'text/plain'
-            
+
             return 302, headers, 'You are being redirected to %s\n' % redirect_uri
-        
+
         else:
             status_code, headers, content = layer.getTileResponse(coord, extension)
 
@@ -259,20 +265,20 @@ def requestHandler2(config_hint, path_info, query_string=None, script_name=''):
         if callback and 'json' in headers['Content-Type']:
             headers['Content-Type'] = 'application/javascript; charset=utf-8'
             content = '%s(%s)' % (callback, content)
-        
+
         if layer.max_cache_age is not None:
             expires = datetime.utcnow() + timedelta(seconds=layer.max_cache_age)
-            headers.setdefault('Expires', expires.strftime('%a %d %b %Y %H:%M:%S GMT'))
+            headers.setdefault('Expires', expires.strftime('%a, %d %b %Y %H:%M:%S GMT'))
             headers.setdefault('Cache-Control', 'public, max-age=%d' % layer.max_cache_age)
 
     except Core.KnownUnknown, e:
         out = StringIO()
-        
+
         print >> out, 'Known unknown!'
         print >> out, e
         print >> out, ''
         print >> out, '\n'.join(Core._rummy())
-        
+
         headers['Content-Type'] = 'text/plain'
         status_code, content = 500, out.getvalue()
 
@@ -280,25 +286,25 @@ def requestHandler2(config_hint, path_info, query_string=None, script_name=''):
 
 def cgiHandler(environ, config='./tilestache.cfg', debug=False):
     """ Read environment PATH_INFO, load up configuration, talk to stdout by CGI.
-    
+
         This function is documented as part of TileStache's public API:
             http://tilestache.org/doc/#cgi
-    
+
         Calls requestHandler().
-        
+
         Config parameter can be a file path string for a JSON configuration file
         or a configuration object with 'cache', 'layers', and 'dirpath' properties.
     """
     if debug:
         import cgitb
         cgitb.enable()
-    
+
     path_info = environ.get('PATH_INFO', None)
     query_string = environ.get('QUERY_STRING', None)
     script_name = environ.get('SCRIPT_NAME', None)
-    
+
     status_code, headers, content = requestHandler2(config, path_info, query_string, script_name)
-    
+
     headers.setdefault('Content-Length', str(len(content)))
 
     # output the status code as a header
@@ -313,7 +319,7 @@ def cgiHandler(environ, config='./tilestache.cfg', debug=False):
 
 class WSGITileServer:
     """ Create a WSGI application that can handle requests from any server that talks WSGI.
-    
+
         This class is documented as part of TileStache's public API:
             http://tilestache.org/doc/#wsgi
 
@@ -329,17 +335,17 @@ class WSGITileServer:
             Config parameter can be a file path string for a JSON configuration
             file or a configuration object with 'cache', 'layers', and
             'dirpath' properties.
-            
+
             Optional autoreload boolean parameter causes config to be re-read
             on each request, applicable only when config is a JSON file.
         """
 
-        if type(config) in (str, unicode):
+        if type(config) in (str, unicode, dict):
             self.autoreload = autoreload
             self.config_path = config
-    
+
             try:
-                self.config = parseConfigfile(config)
+                self.config = parseConfig(config)
             except:
                 print "Error loading Tilestache config:"
                 raise
@@ -348,7 +354,7 @@ class WSGITileServer:
             assert hasattr(config, 'cache'), 'Configuration object must have a cache.'
             assert hasattr(config, 'layers'), 'Configuration object must have layers.'
             assert hasattr(config, 'dirpath'), 'Configuration object must have a dirpath.'
-            
+
             self.autoreload = False
             self.config_path = None
             self.config = config
@@ -358,7 +364,7 @@ class WSGITileServer:
         """
         if self.autoreload: # re-parse the config file on every request
             try:
-                self.config = parseConfigfile(self.config_path)
+                self.config = parseConfig(self.config_path)
             except Exception, e:
                 raise Core.KnownUnknown("Error loading Tilestache config file:\n%s" % str(e))
 
@@ -377,9 +383,9 @@ class WSGITileServer:
         path_info = environ.get('PATH_INFO', None)
         query_string = environ.get('QUERY_STRING', None)
         script_name = environ.get('SCRIPT_NAME', None)
-        
+
         status_code, headers, content = requestHandler2(self.config, path_info, query_string, script_name)
-        
+
         return self._response(start_response, status_code, str(content), headers)
 
     def _response(self, start_response, code, content='', headers=None):
@@ -389,17 +395,17 @@ class WSGITileServer:
 
         if content:
             headers.setdefault('Content-Length', str(len(content)))
-        
+
         start_response('%d %s' % (code, httplib.responses[code]), headers.items())
         return [content]
 
 def modpythonHandler(request):
     """ Handle a mod_python request.
-    
+
         TODO: Upgrade to new requestHandler() so this can return non-200 HTTP.
-    
+
         Calls requestHandler().
-    
+
         Example Apache configuration for TileStache:
 
         <Directory /home/migurski/public_html/TileStache>
@@ -407,19 +413,19 @@ def modpythonHandler(request):
             PythonHandler TileStache::modpythonHandler
             PythonOption config /etc/tilestache.cfg
         </Directory>
-        
+
         Configuration options, using PythonOption directive:
         - config: path to configuration file, defaults to "tilestache.cfg",
             using request.filename as the current working directory.
     """
     from mod_python import apache
-    
+
     config_path = request.get_options().get('config', 'tilestache.cfg')
     config_path = realpath(pathjoin(dirname(request.filename), config_path))
-    
+
     path_info = request.path_info
     query_string = request.args
-    
+
     mimetype, content = requestHandler(config_path, path_info, query_string)
 
     request.status = apache.HTTP_OK
diff --git a/Vagrant/setup.sh b/Vagrant/setup.sh
new file mode 100755
index 0000000..18e4dda
--- /dev/null
+++ b/Vagrant/setup.sh
@@ -0,0 +1,59 @@
+#!/bin/bash -e
+
+if [ -f ~/.bootstrap_complete ]; then
+    exit 0
+fi
+
+set -x
+
+whoami
+sudo apt-get -q update
+sudo apt-get -q install python-software-properties
+sudo add-apt-repository ppa:mapnik/nightly-2.3 -y
+sudo apt-get -q update
+sudo apt-get -q install libmapnik-dev mapnik-utils python-mapnik virtualenvwrapper python-dev -y
+sudo apt-get -q install gdal-bin=1.10.1+dfsg-5ubuntu1 -y
+sudo apt-get -q install libgdal-dev=1.10.1+dfsg-5ubuntu1 -y
+
+# create a python virtualenv
+virtualenv -q ~/.virtualenvs/tilestache
+source ~/.virtualenvs/tilestache/bin/activate
+
+# make sure it gets activated the next time we log in
+echo "source ~/.virtualenvs/tilestache/bin/activate" >> ~/.bashrc
+
+# add system mapnik to virtualenv
+ln -s /usr/lib/pymodules/python2.7/mapnik ~/.virtualenvs/tilestache/lib/python2.7/site-packages/mapnik
+
+# for tests
+sudo apt-get -q install postgresql-9.3-postgis-2.1 memcached -y
+~/.virtualenvs/tilestache/bin/pip install nose coverage python-memcached psycopg2 werkzeug
+~/.virtualenvs/tilestache/bin/pip install pil --allow-external pil --allow-unverified pil
+
+# install basic TileStache requirements
+cd /srv/tilestache/
+~/.virtualenvs/tilestache/bin/pip install -r requirements.txt --allow-external ModestMaps --allow-unverified ModestMaps
+
+# workaround for gdal bindings
+~/.virtualenvs/tilestache/bin/pip install --global-option=build_ext --global-option="-I/usr/include/gdal" GDAL==1.10.0
+
+# allow any user to connect as postgres to this test data. DO NOT USE IN PRODUCTION
+sudo sed -i '1i local  test_tilestache  postgres                     trust' /etc/postgresql/9.3/main/pg_hba.conf
+
+sudo /etc/init.d/postgresql restart
+
+# add some test data
+sudo -u postgres psql -c "drop database if exists test_tilestache"
+sudo -u postgres psql -c "create database test_tilestache"
+sudo -u postgres psql -c "create extension postgis" -d test_tilestache
+sudo -u postgres ogr2ogr -nlt MULTIPOLYGON -f "PostgreSQL" PG:"user=postgres dbname=test_tilestache" ./examples/sample_data/world_merc.shp
+
+set +x
+echo "
+****************************************************************
+* Warning: your postgres security settings (pg_hba.conf)
+* are not setup for production (i.e. have been set insecurely).
+****************************************************************"
+
+# we did it. let's mark the script as complete
+touch ~/.bootstrap_complete
diff --git a/Vagrantfile b/Vagrantfile
new file mode 100644
index 0000000..275ed9f
--- /dev/null
+++ b/Vagrantfile
@@ -0,0 +1,16 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+VAGRANTFILE_API_VERSION = "2"
+
+Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
+
+  config.vm.box = "ubuntu/trusty64"
+
+  #config.vm.network :private_network, ip: "192.168.33.10"
+
+  config.vm.synced_folder ".", "/srv/tilestache"
+
+  config.vm.provision :shell, :privileged => false, :inline => "sh /srv/tilestache/Vagrant/setup.sh"
+
+end
diff --git a/examples/composite/composite-stack.xml b/examples/composite/composite-stack.xml
new file mode 100644
index 0000000..7eb37ef
--- /dev/null
+++ b/examples/composite/composite-stack.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0"?>
+<stack>
+    <layer src="base" />
+
+    <stack>
+        <layer src="outlines">
+            <mask src="halos" />
+        </layer>
+        <layer src="streets" />
+    </stack>
+</stack>
diff --git a/examples/composite/composite.cfg b/examples/composite/composite.cfg
new file mode 100644
index 0000000..5a1af34
--- /dev/null
+++ b/examples/composite/composite.cfg
@@ -0,0 +1,46 @@
+{
+  "cache":
+  {
+    "name": "Test"
+  },
+  "layers": 
+  {
+    "base":
+    {
+        "provider": {"name": "mapnik", "mapfile": "mapnik-base.xml"}
+    },
+    "halos":
+    {
+        "provider": {"name": "mapnik", "mapfile": "mapnik-halos.xml"},
+        "metatile": {"buffer": 128}
+    },
+    "outlines":
+    {
+        "provider": {"name": "mapnik", "mapfile": "mapnik-outlines.xml"},
+        "metatile": {"buffer": 16}
+    },
+    "streets":
+    {
+        "provider": {"name": "mapnik", "mapfile": "mapnik-streets.xml"},
+        "metatile": {"buffer": 128}
+    },
+    "composite":
+    {
+        "provider": {
+            "class": "TileStache.Goodies.Providers.Composite:Provider",
+            "kwargs":
+            {
+                "stack":
+                [
+                  {"src": "base"},
+                  [
+                    {"src": "outlines", "mask": "halos"},
+                    {"src": "streets"}
+                  ]
+                ]
+            }
+        }
+
+    }
+  }
+}
diff --git a/examples/composite/mapnik-base.xml b/examples/composite/mapnik-base.xml
new file mode 100644
index 0000000..dc2f169
--- /dev/null
+++ b/examples/composite/mapnik-base.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0"?>
+<Map bgcolor="#b3d6e2" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+    <Style name="coastline">
+        <Rule>
+            <PolygonSymbolizer>
+                <CssParameter name="fill">#eee9d3</CssParameter>
+                <CssParameter name="fill-opacity">1</CssParameter>
+            </PolygonSymbolizer>
+        </Rule>
+    </Style>
+    <Layer name="coastline" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+        <StyleName>coastline</StyleName>
+        <Datasource>
+            <Parameter name="type">postgis</Parameter>
+            <Parameter name="user">osm</Parameter>
+            <Parameter name="host">localhost</Parameter>
+            <Parameter name="dbname">planet_osm</Parameter>
+            <Parameter name="table">coastline</Parameter>
+            <Parameter name="estimate_extent">false</Parameter>
+            <Parameter name="extent">-20037507.58,-20037507.58,20037507.58,20037507.58</Parameter>
+        </Datasource>
+    </Layer>
+
+    <Style name="grass">
+        <Rule>
+            <PolygonSymbolizer>
+                <CssParameter name="fill">#bbe2b3</CssParameter>
+                <CssParameter name="fill-opacity">1</CssParameter>
+            </PolygonSymbolizer>
+        </Rule>
+    </Style>
+    <Layer name="grass" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+        <StyleName>grass</StyleName>
+        <Datasource>
+            <Parameter name="type">postgis</Parameter>
+            <Parameter name="user">osm</Parameter>
+            <Parameter name="host">localhost</Parameter>
+            <Parameter name="dbname">planet_osm</Parameter>
+            <Parameter name="table">(SELECT * FROM planet_osm_polygon WHERE leisure IN ('park', 'water_park', 'marina', 'nature_reserve', 'playground', 'garden', 'common') OR amenity IN ('graveyard') OR landuse IN ('cemetery') OR leisure IN ('sports_centre', 'golf_course', 'stadium', 'track', 'pitch') OR landuse IN ('recreation_ground') OR landuse IN ('forest', 'wood')) AS grass</Parameter>
+            <Parameter name="estimate_extent">false</Parameter>
+            <Parameter name="extent">-20037507.58,-20037507.58,20037507.58,20037507.58</Parameter>
+        </Datasource>
+    </Layer>
+
+    <Style name="water">
+        <Rule>
+            <PolygonSymbolizer>
+                <CssParameter name="fill">#b3d6e2</CssParameter>
+                <CssParameter name="fill-opacity">1</CssParameter>
+            </PolygonSymbolizer>
+        </Rule>
+    </Style>
+    <Layer name="water" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+        <StyleName>water</StyleName>
+        <Datasource>
+            <Parameter name="type">postgis</Parameter>
+            <Parameter name="user">osm</Parameter>
+            <Parameter name="host">localhost</Parameter>
+            <Parameter name="dbname">planet_osm</Parameter>
+            <Parameter name="table">(SELECT * FROM planet_osm_polygon WHERE "natural" IN ('water', 'bay') OR waterway IN ('riverbank')) AS water</Parameter>
+            <Parameter name="estimate_extent">false</Parameter>
+            <Parameter name="extent">-20037507.58,-20037507.58,20037507.58,20037507.58</Parameter>
+        </Datasource>
+    </Layer>
+</Map>
diff --git a/examples/composite/mapnik-halos.xml b/examples/composite/mapnik-halos.xml
new file mode 100644
index 0000000..8df4a83
--- /dev/null
+++ b/examples/composite/mapnik-halos.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0"?>
+<Map bgcolor="white" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+    <Style name="halos">
+        <Rule>
+            <TextSymbolizer name="name" face_name="DejaVu Sans Book" size="14" fill="black" halo_fill="black" halo_radius="2" placement="line"/>
+        </Rule>
+    </Style>
+    <Layer name="streets" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+        <StyleName>halos</StyleName>
+        <Datasource>
+            <Parameter name="type">postgis</Parameter>
+            <Parameter name="user">osm</Parameter>
+            <Parameter name="host">localhost</Parameter>
+            <Parameter name="dbname">planet_osm</Parameter>
+            <Parameter name="table">(SELECT * FROM planet_osm_line WHERE highway IN ('motorway', 'motorway_link', 'trunk', 'trunk_link', 'primary', 'primary_link', 'secondary', 'secondary_link', 'tertiary', 'residential', 'unclassified', 'service')) AS streets</Parameter>
+            <Parameter name="estimate_extent">false</Parameter>
+            <Parameter name="extent">-20037507.58,-20037507.58,20037507.58,20037507.58</Parameter>
+        </Datasource>
+    </Layer>
+</Map>
diff --git a/examples/composite/mapnik-outlines.xml b/examples/composite/mapnik-outlines.xml
new file mode 100644
index 0000000..6704266
--- /dev/null
+++ b/examples/composite/mapnik-outlines.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0"?>
+<Map bgcolor="transparent" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+    <Style name="outlines">
+        <Rule>
+            <LineSymbolizer>
+                <CssParameter name="stroke">#6f6b58</CssParameter>
+                <CssParameter name="stroke-width">8</CssParameter>
+                <CssParameter name="stroke-linejoin">round</CssParameter>
+                <CssParameter name="stroke-linecap">round</CssParameter>
+            </LineSymbolizer>
+        </Rule>
+    </Style>
+    <Layer name="outlines" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+        <StyleName>outlines</StyleName>
+        <Datasource>
+            <Parameter name="type">postgis</Parameter>
+            <Parameter name="user">osm</Parameter>
+            <Parameter name="host">localhost</Parameter>
+            <Parameter name="dbname">planet_osm</Parameter>
+            <Parameter name="table">(SELECT * FROM planet_osm_line WHERE highway IN ('motorway', 'motorway_link', 'trunk', 'trunk_link', 'primary', 'primary_link', 'secondary', 'secondary_link', 'tertiary', 'residential', 'unclassified', 'service')) AS streets</Parameter>
+            <Parameter name="estimate_extent">false</Parameter>
+            <Parameter name="extent">-20037507.58,-20037507.58,20037507.58,20037507.58</Parameter>
+        </Datasource>
+    </Layer>
+</Map>
diff --git a/examples/composite/mapnik-streets.xml b/examples/composite/mapnik-streets.xml
new file mode 100644
index 0000000..cdff794
--- /dev/null
+++ b/examples/composite/mapnik-streets.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0"?>
+<Map bgcolor="transparent" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+    <Style name="streets">
+        <Rule>
+            <LineSymbolizer>
+                <CssParameter name="stroke">#ffffe9</CssParameter>
+                <CssParameter name="stroke-width">6</CssParameter>
+                <CssParameter name="stroke-linejoin">round</CssParameter>
+                <CssParameter name="stroke-linecap">round</CssParameter>
+            </LineSymbolizer>
+        </Rule>
+    </Style>
+    <Style name="names">
+        <Rule>
+            <TextSymbolizer name="name" face_name="DejaVu Sans Book" size="14" fill="black" placement="line"/>
+        </Rule>
+    </Style>
+    <Layer name="streets" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+        <StyleName>streets</StyleName>
+        <StyleName>names</StyleName>
+        <Datasource>
+            <Parameter name="type">postgis</Parameter>
+            <Parameter name="user">osm</Parameter>
+            <Parameter name="host">localhost</Parameter>
+            <Parameter name="dbname">planet_osm</Parameter>
+            <Parameter name="table">(SELECT * FROM planet_osm_line WHERE highway IN ('motorway', 'motorway_link', 'trunk', 'trunk_link', 'primary', 'primary_link', 'secondary', 'secondary_link', 'tertiary', 'residential', 'unclassified', 'service')) AS streets</Parameter>
+            <Parameter name="estimate_extent">false</Parameter>
+            <Parameter name="extent">-20037507.58,-20037507.58,20037507.58,20037507.58</Parameter>
+        </Datasource>
+    </Layer>
+</Map>
diff --git a/examples/geotiff/cea.tif b/examples/geotiff/cea.tif
new file mode 100644
index 0000000..77501e3
Binary files /dev/null and b/examples/geotiff/cea.tif differ
diff --git a/examples/geotiff/mapnik.xml b/examples/geotiff/mapnik.xml
new file mode 100644
index 0000000..153e050
--- /dev/null
+++ b/examples/geotiff/mapnik.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE Map[]>
+<Map srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over" font-directory="./fonts">
+<Style name="raster-style">
+  <Rule>
+      <RasterSymbolizer/>
+  </Rule>
+</Style>
+
+<Layer name="raster-layer" status="on" srs="+proj=cea +lon_0=-117.333333333333 +lat_ts=33.75 +x_0=0 +y_0=0 +datum=NAD27 +units=m +no_defs">
+<StyleName>raster-style</StyleName>
+<Datasource>
+    <Parameter name="type">gdal</Parameter>
+    <Parameter name="file">cea.tif</Parameter>
+    <Parameter name="format">tiff</Parameter>
+</Datasource>
+</Layer>
+</Map>
diff --git a/examples/geotiff/server.py b/examples/geotiff/server.py
new file mode 100755
index 0000000..bd5d599
--- /dev/null
+++ b/examples/geotiff/server.py
@@ -0,0 +1,67 @@
+#!/usr/bin/env python
+"""server.py will serve your cache.
+
+This script is intended to be run directly from the command line from its current location.
+
+It is intended for direct use only during development or for debugging TileStache.
+
+For the proper way to configure TileStach for serving tiles see the docs at:
+
+http://tilestache.org/doc/#serving-tiles
+
+To use this built-in server, install werkzeug and then run tilestache-server.py:
+
+    server.py
+
+By default the script serves tiles on http://127.0.0.1:8080/.
+
+You can then open your browser and view a url like:
+
+    http://localhost:8080/geotiff/0/0/0.png
+
+Check server.py --help to change these defaults.
+"""
+
+import json
+
+
+if __name__ == '__main__':
+    from datetime import datetime
+    from optparse import OptionParser, OptionValueError
+    import os, sys
+
+    parser = OptionParser()
+
+    config = {
+        "cache": {
+            "name": "Test",
+            "path": "/tmp/stache",
+            "umask": "0000"
+        },
+        "layers": {
+            "geotiff": {
+                "provider": {"name": "mapnik", "mapfile": "mapnik.xml"},
+                "projection": "spherical mercator"
+            }
+        }
+    }
+
+    parser.add_option("-c", "--config", dest="file", default="tilestache.cfg",
+        help="the path to the tilestache config")
+    parser.add_option("-i", "--ip", dest="ip", default="127.0.0.1",
+        help="the IP address to listen on")
+    parser.add_option("-p", "--port", dest="port", type="int", default=8080,
+        help="the port number to listen on")
+    parser.add_option('--include-path', dest='include',
+        help="Add the following colon-separated list of paths to Python's include path (aka sys.path)")
+    (options, args) = parser.parse_args()
+
+    if options.include:
+        for p in options.include.split(':'):
+            sys.path.insert(0, p)
+
+    from werkzeug.serving import run_simple
+    import TileStache
+
+    app = TileStache.WSGITileServer(config=config, autoreload=True)
+    run_simple(options.ip, options.port, app)
diff --git a/examples/sample_data/world_merc.dbf b/examples/sample_data/world_merc.dbf
new file mode 100644
index 0000000..710fdca
Binary files /dev/null and b/examples/sample_data/world_merc.dbf differ
diff --git a/examples/sample_data/world_merc.prj b/examples/sample_data/world_merc.prj
new file mode 100644
index 0000000..16b8e1e
--- /dev/null
+++ b/examples/sample_data/world_merc.prj
@@ -0,0 +1 @@
+PROJCS["Google Maps Global Mercator",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Mercator_2SP"],PARAMETER["standard_parallel_1",0],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",0],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Meter",1]]
\ No newline at end of file
diff --git a/examples/sample_data/world_merc.shp b/examples/sample_data/world_merc.shp
new file mode 100644
index 0000000..ff383a2
Binary files /dev/null and b/examples/sample_data/world_merc.shp differ
diff --git a/examples/sample_data/world_merc.shx b/examples/sample_data/world_merc.shx
new file mode 100644
index 0000000..0e12830
Binary files /dev/null and b/examples/sample_data/world_merc.shx differ
diff --git a/examples/style.xml b/examples/style.xml
new file mode 100644
index 0000000..8ece2c1
--- /dev/null
+++ b/examples/style.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+
+<!-- An ultra simple Mapnik stylesheet -->
+
+<!DOCTYPE Map [
+<!ENTITY google_mercator "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over">
+]>
+
+<Map>
+    <Style name="style">
+        <Rule>
+            <PolygonSymbolizer />
+        </Rule>
+    </Style>
+    <Layer name="layer">
+        <StyleName>style</StyleName>
+        <Datasource>
+            <Parameter name="type">shape</Parameter>
+            <Parameter name="file">sample_data/world_merc.shp</Parameter>
+        </Datasource>
+    </Layer>
+</Map>
diff --git a/examples/zoom_example/rhodeisland.mbtiles b/examples/zoom_example/rhodeisland.mbtiles
new file mode 100644
index 0000000..09e616a
Binary files /dev/null and b/examples/zoom_example/rhodeisland.mbtiles differ
diff --git a/examples/zoom_example/run_server.sh b/examples/zoom_example/run_server.sh
new file mode 100755
index 0000000..cfd5d98
--- /dev/null
+++ b/examples/zoom_example/run_server.sh
@@ -0,0 +1 @@
+tilestache-server.py -c zoom_example.cfg -i 127.0.0.1 -p 7890
diff --git a/examples/zoom_example/test.html b/examples/zoom_example/test.html
new file mode 100644
index 0000000..a2232bb
--- /dev/null
+++ b/examples/zoom_example/test.html
@@ -0,0 +1,12 @@
+<html><head><title>Zoom Levels Example</title></head><body>
+If these images are not loading, make sure the server is running on port 7890!
+"run_server.sh" contains an example of how to run the server.
+
+<p>At zoom level 9 and below, the composite layer serves tiles from the mbtiles file.
+This image is from level 9:
+<p><img src="http://localhost:7890/composite/9/154/190.png">
+
+<p>Above zoom level 9, the proxy layer is set to serve tiles from the openstreetmaps
+server. Here's a tile from level 10:
+<p><img src="http://localhost:7890/composite/10/308/380.png">
+</body></html>
diff --git a/examples/zoom_example/zoom_example.cfg b/examples/zoom_example/zoom_example.cfg
new file mode 100644
index 0000000..daf9a84
--- /dev/null
+++ b/examples/zoom_example/zoom_example.cfg
@@ -0,0 +1,31 @@
+{
+  "cache": {
+    "name": "Test",
+    "verbose": "True"
+  },
+  "layers": {
+    "osm_layer": {
+      "provider": {
+        "name": "proxy", 
+        "url": "http://tile.openstreetmap.org/{Z}/{X}/{Y}.png"
+      }
+    },
+    "mbtiles_layer": {
+      "provider": {
+        "name": "mbtiles", 
+        "tileset": "rhodeisland.mbtiles"
+      }
+    },
+    "composite": {
+      "provider": {
+        "class": "TileStache.Goodies.Providers.Composite:Provider",
+        "kwargs": {
+          "stack": [
+              {"src": "osm_layer", "zoom": "10-18"},
+              {"src": "mbtiles_layer", "zoom": "0-9"}
+          ]
+        }
+      }
+    }
+  }
+}
diff --git a/man/tilestache-clean.1 b/man/tilestache-clean.1
new file mode 100644
index 0000000..bc03131
--- /dev/null
+++ b/man/tilestache-clean.1
@@ -0,0 +1,65 @@
+.TH TILESTACHE-CLEAN 1 "Sep 23, 2012"
+.SH NAME
+tilestache\-clean \- clean tiles from a TileStache cache
+.SH SYNOPSIS
+.B tilestache\-clean
+.RI [ options ] " zoom" ...
+.SH DESCRIPTION
+This manual page documents briefly the \fBtilestache\-clean\fR command.
+.PP
+\fBtilestache\-clean\fP is used to clean tiles from a TileStache cache.
+.PP
+Cleans a single layer in your TileStache configuration - no images are returned,
+and TileStache ends up with an empty in selected areas cache. Bounding box is
+given as a pair of lat/lon coordinates, e.g. "37.788 \-122.349 37.833 \-122.246".
+Output is a list of tile paths as they are created.
+.PP
+The \fIzoom\fR option is a space separated list of zoom levels which will be
+cleaned. e.g. 12 13 14 15 will clean zooms 12 through 15. Many shells allow you
+to use {a..b} which will expand to a list of numbers a though to b.
+\fBRequired.\fR
+.SH REQUIRED OPTIONS
+.TP
+\fB-c\fR, \fB\-\-config\fR \fIfile\fR
+Path to configuration file. \fBRequired.\fR
+.TP
+\fB-l\fR, \fB\-\-layer\fR \fIlayer\fR
+Layer name from configuration. "ALL" is a special value that will clean all
+layers in turn. If you have an actual layer named "ALL", use "ALL LAYERS"
+instead. \fBRequired.\fR
+.TP
+\fB-b\fR, \fB\-\-bbox\fR \fIsouth west north east\fR
+Bounding box in floating point geographic coordinates. \fBRequired.\fR
+.SH OPTIONS
+.B \-h, \-\-help
+Show summary of options.
+.TP
+\fB-p\fR, \fB\-\-padding\fR \fIpadding\fR
+Extra margin of tiles to add around bounded area.
+Default value is 0 (no extra tiles).
+.TP
+\fB-e\fR, \fB\-\-extension\fR \fIextension\fR
+Optional file type for rendered tiles. Default value is 'png'.
+.TP
+\fB-f\fR, \fB\-\-progress\-file\fR \fIfile\fR
+Optional JSON progress file that gets written on each iteration, so you don't
+have to pay close attention.
+.TP
+\fB-q\fR
+Suppress chatty output, \-\-progress\-file works well with this.
+.TP
+\fB-i\fR, \fB\-\-include\-path\fR \fIpath\fR
+Add the following colon-separated list of paths to Python's include path (aka
+sys.path)
+.TP
+\fB\-\-tile\-list\fR \fIfile\fR
+Optional file of tile coordinates, a simple text list of Z/X/Y coordinates.
+Overrides \-\-bbox and \-\-padding.
+.SH SEE ALSO
+.BR tilestache-seed (1)
+.SH AUTHOR
+\fBTileStache\fR was written by Michal Migurski <mike at stamen.com>.
+.PP
+This manual page was written by Andrew Harvey <andrew.harvey4 at gmail.com>,
+for the Debian project (and may be used by others).
+
diff --git a/man/tilestache-render.1 b/man/tilestache-render.1
new file mode 100644
index 0000000..9c385a9
--- /dev/null
+++ b/man/tilestache-render.1
@@ -0,0 +1,32 @@
+.TH TILESTACHE-RENDER 1 "Nov 10, 2010"
+.SH NAME
+tilestache-render \- render tiles from tilestache
+.SH SYNOPSIS
+.B tilestache-render
+.RI [ options ] " coordinates" ...
+.SH DESCRIPTION
+This manual page documents briefly the \fBtilestache-render\fR command.
+.PP
+\fBtilestache-render\fP is used to render tiles from \fBTileStache\fR.
+.br
+Each coordinate in the argument list should look like "12/656/1582.png",
+similar to URL paths in web server usage. Coordinates are processed in
+order, each one rendered to an image file in a temporary location and
+output to stdout.
+.SH REQUIRED OPTIONS
+.TP
+\fB-c\fR, \fB\-\-config\fR \fIfile\fR
+Path to configuration file.
+.TP
+\fB-l\fR, \fB\-\-layer\fR \fIlayer\fR
+Layer name from configuration.
+.SH OPTIONS
+.B \-h, \-\-help
+Show summary of options.
+.SH SEE ALSO
+.BR tilestache-seed (1)
+.SH AUTHOR
+\fBTileStache\fR was written by Michal Migurski <mike at stamen.com>.
+.PP
+This manual page was written by David Paleino <dapal at debian.org>,
+for the Debian project (and may be used by others).
diff --git a/man/tilestache-seed.1 b/man/tilestache-seed.1
new file mode 100644
index 0000000..97d1691
--- /dev/null
+++ b/man/tilestache-seed.1
@@ -0,0 +1,82 @@
+.TH TILESTACHE-SEED 1 "Nov 10, 2010"
+.SH NAME
+tilestache-seed \- seed a single layer in your TileStache configuration
+.SH SYNOPSIS
+.B tilestache-seed
+.RI [ options ] " zoom" ...
+.SH DESCRIPTION
+This manual page documents briefly the \fBtilestache-seed\fR command.
+.PP
+\fBtilestache-seed\fR seeds a single layer in your TileStache configuration.
+No images are returned, but TileStache ends up with a pre-filled cache.
+Bounding box is given as a pair of lat/lon coordinates, e.g. "37.788
+\-122.349 37.833 \-122.246". Output is a list of tile paths as they are
+created.
+.br
+Configuration, BBox, and Layer options are required.
+.SH REQUIRED OPTIONS
+.TP
+\fB\-c\fR, \fB\-\-config\fR \fIfile\fR
+Path to configuration file. \fBRequired\fR.
+.TP
+\fB-l\fR, \fB\-\-layer\fR \fIlayer\fR
+Layer name from configuration. \fBRequired\fR.
+.TP
+\fB-b\fR, \fB\-\-bbox\fR \fIsouth\fR \fIwest\fR \fInorth\fR \fIeast\fR
+Bounding box in floating point geographic coordinates. \fBRequired\fR.
+.SH OPTIONS
+.TP
+.B \-h, \-\-help
+Show summary of options.
+.TP
+\fB-p\fR, \fB\-\-padding\fR \fIpadding\fR
+Extra margin of tiles to add around bounded area. Default value is 0 (no extra tiles).
+.TP
+\fB-e\fR, \fB\-\-extension\fR \fIextension\fR
+Optional file type for rendered tiles. Default value is "png" for most image layers and some variety of JSON for Vector or Mapnik Grid providers.
+.TP
+\fB-f\fR, \fB\-\-progress-file\fR \fIfile\fR
+Optional JSON progress file that gets written on each iteration, so you don't have to pay close attention.
+.TP
+.B \-q
+Suppress chatty output, \-\-progress-file works well with this.
+.TP
+.B \-i, \-\-include-path
+Add the following colon-separated list of paths to Python's include path (aka sys.path).
+.TP
+.B \-d, \-\-output-directory
+Optional output directory for tiles, to override configured cache with the equivalent of:
+    {"name": "Disk", "path": <output directory>, "dirs": "portable", "gzip": []}.
+
+More information in http://tilestache.org/doc/#caches.
+.TP
+.B \-\-to\-mbtiles
+Optional output file for tiles, will be created as an MBTiles 1.1 tileset. See http://mbtiles.org for more information.
+.TP
+.B \-\-from\-mbtiles
+Optional input file for tiles, will be read as an MBTiles 1.1 tileset. See http://mbtiles.org for more information. Overrides --extension, --bbox and --padding (this may change).
+.TP
+.B \-\-to-s3
+Optional output bucket for tiles, will be populated with tiles in a standard Z/X/Y layout. Three required arguments: AWS access-key, secret, and bucket name.
+.TP
+.B \-\-tile\-list
+Optional file of tile coordinates, a simple text list of Z/X/Y coordinates. Overrides --bbox and --padding.
+.TP
+.B \-\-error\-list
+Optional file of failed tile coordinates, a simple text list of Z/X/Y coordinates. If provided, failed tiles will be logged to this file instead of stopping tilestache-seed.
+.TP
+.B \-\-enable\-retries
+If true this will cause tilestache-seed to retry failed tile renderings up to (3) times. Default value is False.
+.TP
+.B \-x, \-\-ignore-cached
+Re-render every tile, whether it is in the cache already or not.
+.TP
+.B \-\-jsonp-callback
+Add a JSONP callback for tiles with a json mime-type, causing "*.js" tiles to be written to the cache wrapped in the callback function. Ignored for non-JSON tiles.
+.SH SEE ALSO
+.BR tilestache-render (1)
+.SH AUTHOR
+\fBTileStache\fR was written by Michal Migurski <mike at stamen.com>.
+.PP
+This manual page was written by David Paleino <dapal at debian.org>,
+for the Debian project (and may be used by others).
diff --git a/man/tilestache-server.1 b/man/tilestache-server.1
new file mode 100644
index 0000000..d763c45
--- /dev/null
+++ b/man/tilestache-server.1
@@ -0,0 +1,35 @@
+.TH TILESTACHE-SERVER 1 "Jan 24, 2011"
+.SH NAME
+tilestache-server \- seed a single layer in your TileStache configuration
+.SH SYNOPSIS
+.B tilestache-server
+.RI [ options ]
+.SH DESCRIPTION
+This manual page documents briefly the \fBtilestache-server\fR command.
+.PP
+\fBtilestache-server\fR serves tiles through Werkzeug, using a
+tilestache configuration file.
+.SH OPTIONS
+.TP
+\fB\-c\fR, \fB\-\-config\fR \fIfile\fR
+Path to configuration file. Defaults to \fItilestache.cfg\fR.
+.TP
+\fB-i\fR, \fB\-\-ip\fR \fIaddress\fR
+IP address to listen to. Defaults to \fI127.0.0.1\fR.
+.TP
+\fB-p\fR, \fB\-\-port\fR \fIport\fR
+Port number to listen to. Defaults to \fI8080\fR.
+.TP
+\fB\-\-include\-path\fR \fIpaths\fR
+Add the following colon-separated list of paths to Python's include path (aka sys.path).
+.TP
+.B \-h, \-\-help
+Show summary of options.
+.SH SEE ALSO
+.BR tilestache-render (1)
+.BR tilestache-seed (1)
+.SH AUTHOR
+\fBTileStache\fR was written by Michal Migurski <mike at stamen.com>.
+.PP
+This manual page was written by David Paleino <dapal at debian.org>,
+for the Debian project (and may be used by others).
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..370c8da
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,7 @@
+ModestMaps
+simplejson
+shapely
+pillow
+psycopg2
+python-memcached
+mapbox-vector-tile==0.5.0
diff --git a/runtests.sh b/runtests.sh
new file mode 100755
index 0000000..3ca64f2
--- /dev/null
+++ b/runtests.sh
@@ -0,0 +1,2 @@
+#!/bin/bash
+nosetests -v --with-coverage --cover-package TileStache
diff --git a/scripts/tilestache-clean.py b/scripts/tilestache-clean.py
index 6cbfb82..bd6ff6a 100644
--- a/scripts/tilestache-clean.py
+++ b/scripts/tilestache-clean.py
@@ -65,25 +65,25 @@ parser.add_option('--tile-list', dest='tile_list',
 
 def generateCoordinates(ul, lr, zooms, padding):
     """ Generate a stream of (offset, count, coordinate) tuples for seeding.
-    
+
         Flood-fill coordinates based on two corners, a list of zooms and padding.
     """
     # start with a simple total of all the coordinates we will need.
     count = 0
-    
+
     for zoom in zooms:
         ul_ = ul.zoomTo(zoom).container().left(padding).up(padding)
         lr_ = lr.zoomTo(zoom).container().right(padding).down(padding)
-        
+
         rows = lr_.row + 1 - ul_.row
         cols = lr_.column + 1 - ul_.column
-        
+
         count += int(rows * cols)
 
     # now generate the actual coordinates.
     # offset starts at zero
     offset = 0
-    
+
     for zoom in zooms:
         ul_ = ul.zoomTo(zoom).container().left(padding).up(padding)
         lr_ = lr.zoomTo(zoom).container().right(padding).down(padding)
@@ -91,22 +91,22 @@ def generateCoordinates(ul, lr, zooms, padding):
         for row in range(int(ul_.row), int(lr_.row + 1)):
             for column in range(int(ul_.column), int(lr_.column + 1)):
                 coord = Coordinate(row, column, zoom)
-                
+
                 yield (offset, count, coord)
-                
+
                 offset += 1
 
 def listCoordinates(filename):
     """ Generate a stream of (offset, count, coordinate) tuples for seeding.
-    
+
         Read coordinates from a file with one Z/X/Y coordinate per line.
     """
     coords = (line.strip().split('/') for line in open(filename, 'r'))
     coords = (map(int, (row, column, zoom)) for (zoom, column, row) in coords)
     coords = [Coordinate(*args) for args in coords]
-    
+
     count = len(coords)
-    
+
     for (offset, coord) in enumerate(coords):
         yield (offset, count, coord)
 
@@ -117,10 +117,10 @@ if __name__ == '__main__':
         for p in options.include.split(':'):
             path.insert(0, p)
 
-    from TileStache import parseConfigfile, getTile
+    from TileStache import parseConfig, getTile
     from TileStache.Core import KnownUnknown
     from TileStache.Caches import Disk, Multi
-    
+
     from ModestMaps.Core import Coordinate
     from ModestMaps.Geo import Location
 
@@ -131,7 +131,7 @@ if __name__ == '__main__':
         if options.layer is None:
             raise KnownUnknown('Missing required layer (--layer) parameter.')
 
-        config = parseConfigfile(options.config)
+        config = parseConfig(options.config)
 
         if options.layer in ('ALL', 'ALL LAYERS') and options.layer not in config.layers:
             # clean every layer in the config
@@ -143,11 +143,11 @@ if __name__ == '__main__':
         else:
             # clean just one layer in the config
             layers = [config.layers[options.layer]]
-        
+
         verbose = options.verbose
         extension = options.extension
         progressfile = options.progressfile
-        
+
         lat1, lon1, lat2, lon2 = options.bbox
         south, west = min(lat1, lat2), min(lon1, lon2)
         north, east = max(lat1, lat2), max(lon1, lon2)
@@ -160,7 +160,7 @@ if __name__ == '__main__':
                 raise KnownUnknown('"%s" is not a valid numeric zoom level.' % zoom)
 
             zooms[i] = int(zoom)
-        
+
         if options.padding < 0:
             raise KnownUnknown('A negative padding will not work.')
 
@@ -177,19 +177,19 @@ if __name__ == '__main__':
         else:
             ul = layer.projection.locationCoordinate(northwest)
             lr = layer.projection.locationCoordinate(southeast)
-    
+
             coordinates = generateCoordinates(ul, lr, zooms, padding)
-        
+
         for (offset, count, coord) in coordinates:
             path = '%s/%d/%d/%d.%s' % (layer.name(), coord.zoom, coord.column, coord.row, extension)
-    
+
             progress = {"tile": path,
                         "offset": offset + 1,
                         "total": count}
-    
+
             if options.verbose:
                 print >> stderr, '%(offset)d of %(total)d...' % progress,
-    
+
             try:
                 mimetype, format = layer.getTypeByExtension(extension)
             except:
@@ -201,10 +201,10 @@ if __name__ == '__main__':
                 pass
             else:
                 config.cache.remove(layer, coord, format)
-    
+
             if options.verbose:
                 print >> stderr, '%(tile)s' % progress
-                    
+
             if progressfile:
                 fp = open(progressfile, 'w')
                 json_dump(progress, fp)
diff --git a/scripts/tilestache-compose.py b/scripts/tilestache-compose.py
index 88d64cb..8b6a359 100644
--- a/scripts/tilestache-compose.py
+++ b/scripts/tilestache-compose.py
@@ -19,7 +19,7 @@ if mmaps_version < (1, 3, 0):
 
 class Provider (ModestMaps.Providers.IMapProvider):
     """ Wrapper for TileStache Layer objects that makes them behave like ModestMaps Provider objects.
-    
+
         Requires ModestMaps 1.3.0 or better to support "file://" URLs.
     """
     def __init__(self, layer, verbose=False, ignore_cached=None):
@@ -30,7 +30,7 @@ class Provider (ModestMaps.Providers.IMapProvider):
         self.verbose = bool(verbose)
         self.ignore_cached = bool(ignore_cached)
         self.lock = allocate_lock()
-        
+
         #
         # It's possible that Mapnik is not thread-safe, best to be cautious.
         #
@@ -47,23 +47,23 @@ class Provider (ModestMaps.Providers.IMapProvider):
         """
         if self.threadsafe or self.lock.acquire():
             mime_type, tile_data = TileStache.getTile(self.layer, coord, 'png', self.ignore_cached)
-            
+
             handle, filename = mkstemp(prefix='tilestache-compose-', suffix='.png')
             write(handle, tile_data)
             close(handle)
-            
+
             self.files.append(filename)
-            
+
             if not self.threadsafe:
                 # must be locked, right?
                 self.lock.release()
-    
+
             if self.verbose:
                 size = len(tile_data) / 1024.
                 printlocked(self.lock, self.layer.name() + '/%(zoom)d/%(column)d/%(row)d.png' % coord.__dict__, '(%dKB)' % size)
-            
+
             return ('file://' + abspath(filename), )
-    
+
     def __del__(self):
         """ Delete any tile that was saved in self.getTileUrls().
         """
@@ -96,7 +96,7 @@ There are three ways to set a map coverage area.
 
 3) Extent and zoom: create a map at the given zoom level that covers
    the precise geographical extent, at whatever pixel size is necessary:
-   
+
    tilestache-compose.py -c config.json -l layer-name -e 36.9 -123.5 38.9 -121.2 -z 9 out.jpg""")
 
 defaults = dict(center=(37.8044, -122.2712), zoom=14, dimensions=(900, 600), verbose=True)
@@ -144,7 +144,7 @@ if __name__ == '__main__':
             path.insert(0, p)
 
     import TileStache
-    
+
     try:
         if options.config is None:
             raise TileStache.Core.KnownUnknown('Missing required configuration (--config) parameter.')
@@ -152,24 +152,24 @@ if __name__ == '__main__':
         if options.layer is None:
             raise TileStache.Core.KnownUnknown('Missing required layer (--layer) parameter.')
 
-        config = TileStache.parseConfigfile(options.config)
+        config = TileStache.parseConfig(options.config)
 
         if options.layer not in config.layers:
             raise TileStache.Core.KnownUnknown('"%s" is not a layer I know about. Here are some that I do know about: %s.' % (options.layer, ', '.join(sorted(config.layers.keys()))))
 
         provider = Provider(config.layers[options.layer], options.verbose, options.ignore_cached)
-        
+
         try:
             outfile = args[0]
         except IndexError:
             raise BadComposure('Error: Missing output file.')
-        
+
         if options.center and options.extent:
             raise BadComposure("Error: bad map coverage, center and extent can't both be set.")
-        
+
         elif options.extent and options.dimensions and options.zoom:
             raise BadComposure("Error: bad map coverage, dimensions and zoom can't be set together with extent.")
-        
+
         elif options.center and options.zoom and options.dimensions:
             lat, lon = options.center[0], options.center[1]
             width, height = options.dimensions[0], options.dimensions[1]
@@ -179,7 +179,7 @@ if __name__ == '__main__':
             zoom = options.zoom
 
             map = ModestMaps.mapByCenterZoom(provider, center, zoom, dimensions)
-            
+
         elif options.extent and options.dimensions:
             latA, lonA = options.extent[0], options.extent[1]
             latB, lonB = options.extent[2], options.extent[3]
@@ -190,7 +190,7 @@ if __name__ == '__main__':
             locationB = ModestMaps.Geo.Location(latB, lonB)
 
             map = ModestMaps.mapByExtent(provider, locationA, locationB, dimensions)
-    
+
         elif options.extent and options.zoom:
             latA, lonA = options.extent[0], options.extent[1]
             latB, lonB = options.extent[2], options.extent[3]
@@ -200,7 +200,7 @@ if __name__ == '__main__':
             zoom = options.zoom
 
             map = ModestMaps.mapByExtentZoom(provider, locationA, locationB, zoom)
-    
+
         else:
             raise BadComposure("Error: not really sure what's going on.")
 
diff --git a/scripts/tilestache-render.py b/scripts/tilestache-render.py
index 4c11a90..8adf306 100755
--- a/scripts/tilestache-render.py
+++ b/scripts/tilestache-render.py
@@ -25,7 +25,7 @@ import os
 from tempfile import mkstemp
 from optparse import OptionParser
 
-from TileStache import parseConfigfile, getTile
+from TileStache import parseConfig, getTile
 from TileStache.Core import KnownUnknown
 
 from ModestMaps.Core import Coordinate
@@ -48,29 +48,29 @@ pathinfo_pat = re.compile(r'^(?P<z>\d+)/(?P<x>\d+)/(?P<y>\d+)\.(?P<e>\w+)$')
 
 if __name__ == '__main__':
     options, paths = parser.parse_args()
-    
+
     try:
         if options.config is None:
             raise KnownUnknown('Missing required configuration (--config) parameter.')
-    
+
         if options.layer is None:
             raise KnownUnknown('Missing required layer (--layer) parameter.')
-    
-        config = parseConfigfile(options.config)
-        
+
+        config = parseConfig(options.config)
+
         if options.layer not in config.layers:
             raise KnownUnknown('"%s" is not a layer I know about. Here are some that I do know about: %s.' % (options.layer, ', '.join(sorted(config.layers.keys()))))
-        
+
         layer = config.layers[options.layer]
-        
+
         coords = []
-        
+
         for path in paths:
             path_ = pathinfo_pat.match(path)
-            
+
             if path_ is None:
                 raise KnownUnknown('"%s" is not a path I understand. I was expecting something more like "0/0/0.png".' % path)
-            
+
             row, column, zoom, extension = [path_.group(p) for p in 'yxze']
             coord = Coordinate(int(row), int(column), int(zoom))
 
@@ -78,15 +78,15 @@ if __name__ == '__main__':
 
     except KnownUnknown, e:
         parser.error(str(e))
-    
+
     for coord in coords:
         # render
         mimetype, content = getTile(layer, coord, extension)
-        
+
         # save
         handle, filename = mkstemp(prefix='tile-', suffix='.'+extension)
         os.write(handle, content)
         os.close(handle)
-        
+
         # inform
         print filename
diff --git a/scripts/tilestache-seed.py b/scripts/tilestache-seed.py
index f19814f..46549fc 100644
--- a/scripts/tilestache-seed.py
+++ b/scripts/tilestache-seed.py
@@ -104,25 +104,25 @@ parser.add_option('--jsonp-callback', dest='callback',
 
 def generateCoordinates(ul, lr, zooms, padding):
     """ Generate a stream of (offset, count, coordinate) tuples for seeding.
-    
+
         Flood-fill coordinates based on two corners, a list of zooms and padding.
     """
     # start with a simple total of all the coordinates we will need.
     count = 0
-    
+
     for zoom in zooms:
         ul_ = ul.zoomTo(zoom).container().left(padding).up(padding)
         lr_ = lr.zoomTo(zoom).container().right(padding).down(padding)
-        
+
         rows = lr_.row + 1 - ul_.row
         cols = lr_.column + 1 - ul_.column
-        
+
         count += int(rows * cols)
 
     # now generate the actual coordinates.
     # offset starts at zero
     offset = 0
-    
+
     for zoom in zooms:
         ul_ = ul.zoomTo(zoom).container().left(padding).up(padding)
         lr_ = lr.zoomTo(zoom).container().right(padding).down(padding)
@@ -130,51 +130,51 @@ def generateCoordinates(ul, lr, zooms, padding):
         for row in xrange(int(ul_.row), int(lr_.row + 1)):
             for column in xrange(int(ul_.column), int(lr_.column + 1)):
                 coord = Coordinate(row, column, zoom)
-                
+
                 yield (offset, count, coord)
-                
+
                 offset += 1
 
 def listCoordinates(filename):
     """ Generate a stream of (offset, count, coordinate) tuples for seeding.
-    
+
         Read coordinates from a file with one Z/X/Y coordinate per line.
     """
     coords = (line.strip().split('/') for line in open(filename, 'r'))
     coords = (map(int, (row, column, zoom)) for (zoom, column, row) in coords)
     coords = [Coordinate(*args) for args in coords]
-    
+
     count = len(coords)
-    
+
     for (offset, coord) in enumerate(coords):
         yield (offset, count, coord)
 
 def tilesetCoordinates(filename):
     """ Generate a stream of (offset, count, coordinate) tuples for seeding.
-    
+
         Read coordinates from an MBTiles tileset filename.
     """
     coords = MBTiles.list_tiles(filename)
     count = len(coords)
-    
+
     for (offset, coord) in enumerate(coords):
         yield (offset, count, coord)
 
-def parseConfigfile(configpath):
+def parseConfig(configpath):
     """ Parse a configuration file and return a raw dictionary and dirpath.
-    
+
         Return value can be passed to TileStache.Config.buildConfiguration().
     """
     config_dict = json_load(urlopen(configpath))
-    
+
     scheme, host, path, p, q, f = urlparse(configpath)
-    
+
     if scheme == '':
         scheme = 'file'
         path = realpath(path)
-    
+
     dirpath = '%s://%s%s' % (scheme, host, dirname(path).rstrip('/') + '/')
-    
+
     return config_dict, dirpath
 
 if __name__ == '__main__':
@@ -189,69 +189,69 @@ if __name__ == '__main__':
     from TileStache.Config import buildConfiguration
     from TileStache import MBTiles
     import TileStache
-    
+
     from ModestMaps.Core import Coordinate
     from ModestMaps.Geo import Location
 
     try:
         # determine if we have enough information to prep a config and layer
-        
+
         has_fake_destination = bool(options.outputdirectory or options.mbtiles_output)
         has_fake_source = bool(options.mbtiles_input)
-        
+
         if has_fake_destination and has_fake_source:
-            config_dict, config_dirpath = dict(layers={}), '' # parseConfigfile(options.config)
+            config_dict, config_dirpath = dict(layers={}), '' # parseConfig(options.config)
             layer_dict = dict()
-            
+
             config_dict['cache'] = dict(name='test')
             config_dict['layers'][options.layer or 'tiles-layer'] = layer_dict
-        
+
         elif options.config is None:
             raise KnownUnknown('Missing required configuration (--config) parameter.')
-        
+
         elif options.layer is None:
             raise KnownUnknown('Missing required layer (--layer) parameter.')
-    
+
         else:
-            config_dict, config_dirpath = parseConfigfile(options.config)
-            
+            config_dict, config_dirpath = parseConfig(options.config)
+
             if options.layer not in config_dict['layers']:
                 raise KnownUnknown('"%s" is not a layer I know about. Here are some that I do know about: %s.' % (options.layer, ', '.join(sorted(config_dict['layers'].keys()))))
-            
+
             layer_dict = config_dict['layers'][options.layer]
             layer_dict['write_cache'] = True # Override to make seeding guaranteed useful.
-        
+
         # override parts of the config and layer if needed
-        
+
         extension = options.extension
 
         if options.mbtiles_input:
             layer_dict['provider'] = dict(name='mbtiles', tileset=options.mbtiles_input)
             n, t, v, d, format, b = MBTiles.tileset_info(options.mbtiles_input)
             extension = format or extension
-        
+
         # determine or guess an appropriate tile extension
-        
+
         if extension is None:
             provider_name = layer_dict['provider'].get('name', '').lower()
-            
+
             if provider_name == 'mapnik grid':
                 extension = 'json'
             elif provider_name == 'vector':
                 extension = 'geojson'
             else:
                 extension = 'png'
-        
+
         # override parts of the config and layer if needed
-        
+
         tiers = []
-        
+
         if options.mbtiles_output:
             tiers.append({'class': 'TileStache.MBTiles:Cache',
                           'kwargs': dict(filename=options.mbtiles_output,
                                          format=extension,
                                          name=options.layer)})
-        
+
         if options.outputdirectory:
             tiers.append(dict(name='disk', path=options.outputdirectory,
                               dirs='portable', gzip=[]))
@@ -260,7 +260,7 @@ if __name__ == '__main__':
             access, secret, bucket = options.s3_output
             tiers.append(dict(name='S3', bucket=bucket,
                               access=access, secret=secret))
-        
+
         if len(tiers) > 1:
             config_dict['cache'] = dict(name='multi', tiers=tiers)
         elif len(tiers) == 1:
@@ -268,14 +268,14 @@ if __name__ == '__main__':
         else:
             # Leave config_dict['cache'] as-is
             pass
-        
+
         # create a real config object
-        
+
         config = buildConfiguration(config_dict, config_dirpath)
         layer = config.layers[options.layer or 'tiles-layer']
-        
+
         # do the actual work
-        
+
         lat1, lon1, lat2, lon2 = options.bbox
         south, west = min(lat1, lat2), min(lon1, lon2)
         north, east = max(lat1, lat2), max(lon1, lon2)
@@ -301,7 +301,7 @@ if __name__ == '__main__':
                 raise KnownUnknown('"%s" is not a valid numeric zoom level.' % zoom)
 
             zooms[i] = int(zoom)
-        
+
         if options.padding < 0:
             raise KnownUnknown('A negative padding will not work.')
 
@@ -318,7 +318,7 @@ if __name__ == '__main__':
         coordinates = tilesetCoordinates(options.mbtiles_input)
     else:
         coordinates = generateCoordinates(ul, lr, zooms, padding)
-    
+
     for (offset, count, coord) in coordinates:
         path = '%s/%d/%d/%d.%s' % (layer.name(), coord.zoom, coord.column, coord.row, extension)
 
@@ -329,28 +329,28 @@ if __name__ == '__main__':
         #
         # Fetch a tile.
         #
-        
+
         attempts = options.enable_retries and 3 or 1
         rendered = False
-        
+
         while not rendered:
             if options.verbose:
                 print >> stderr, '%(offset)d of %(total)d...' % progress,
-    
+
             try:
                 mimetype, content = getTile(layer, coord, extension, options.ignore_cached)
-                
+
                 if mimetype and 'json' in mimetype and options.callback:
                     js_path = '%s/%d/%d/%d.js' % (layer.name(), coord.zoom, coord.column, coord.row)
                     js_body = '%s(%s);' % (options.callback, content)
                     js_size = len(js_body) / 1024
-                    
+
                     layer.config.cache.save(js_body, layer, coord, 'JS')
                     print >> stderr, '%s (%dKB)' % (js_path, js_size),
-            
+
                 elif options.callback:
                     print >> stderr, '(callback ignored)',
-            
+
             except:
                 #
                 # Something went wrong: try again? Log the error?
@@ -359,26 +359,26 @@ if __name__ == '__main__':
 
                 if options.verbose:
                     print >> stderr, 'Failed %s, will try %s more.' % (progress['tile'], ['no', 'once', 'twice'][attempts])
-                
+
                 if attempts == 0:
                     if not error_list:
                         raise
-                    
+
                     fp = open(error_list, 'a')
                     fp.write('%(zoom)d/%(column)d/%(row)d\n' % coord.__dict__)
                     fp.close()
                     break
-            
+
             else:
                 #
                 # Successfully got the tile.
                 #
                 rendered = True
                 progress['size'] = '%dKB' % (len(content) / 1024)
-        
+
                 if options.verbose:
                     print >> stderr, '%(tile)s (%(size)s)' % progress
-                
+
         if options.progressfile:
             fp = open(options.progressfile, 'w')
             json_dump(progress, fp)
diff --git a/setup.cfg b/setup.cfg
deleted file mode 100644
index 861a9f5..0000000
--- a/setup.cfg
+++ /dev/null
@@ -1,5 +0,0 @@
-[egg_info]
-tag_build = 
-tag_date = 0
-tag_svn_revision = 0
-
diff --git a/tests/__init__.py b/tests/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/tests/cache_tests.py b/tests/cache_tests.py
new file mode 100644
index 0000000..87a6eea
--- /dev/null
+++ b/tests/cache_tests.py
@@ -0,0 +1,68 @@
+from unittest import TestCase
+from . import utils
+import memcache
+
+class CacheTests(TestCase):
+    '''Tests various Cache configurations that reads from cfg file'''
+
+    def setUp(self):
+        self.mc = memcache.Client(['127.0.0.1:11211'], debug=0)
+        self.mc.flush_all()
+
+    def test_memcache(self):
+        '''Fetch tile and check the existence in memcached'''
+
+        config_file_content = '''
+        {
+           "layers":{
+              "memcache_osm":{
+                 "provider":{
+                    "name":"proxy",
+                    "url": "http://tile.openstreetmap.org/{Z}/{X}/{Y}.png"
+                 }
+              }
+            },
+            "cache": {
+                "name": "Memcache",
+                "servers": ["127.0.0.1:11211"],
+                "revision": 4
+            }
+        }
+        '''
+
+        tile_mimetype, tile_content = utils.request(config_file_content, "memcache_osm", "png", 0, 0, 0)
+        self.assertEqual(tile_mimetype, "image/png")
+
+        self.assertEqual(self.mc.get('/4/memcache_osm/0/0/0.PNG'), tile_content,
+            'Contents of memcached and value returned from TileStache do not match')
+
+    def test_memcache_keyprefix(self):
+        '''Fetch tile and check the existence of key with prefix in memcached'''
+
+        config_file_content = '''
+        {
+           "layers":{
+              "memcache_osm":{
+                 "provider":{
+                    "name":"proxy",
+                    "url": "http://tile.openstreetmap.org/{Z}/{X}/{Y}.png"
+                 }
+              }
+            },
+            "cache": {
+                "name": "Memcache",
+                "servers": ["127.0.0.1:11211"],
+                "revision": 1,
+                "key prefix" : "cool_prefix"
+            }
+        }
+        '''
+
+        tile_mimetype, tile_content = utils.request(config_file_content, "memcache_osm", "png", 0, 0, 0)
+        self.assertEqual(tile_mimetype, "image/png")
+
+        self.assertEqual(self.mc.get('cool_prefix/1/memcache_osm/0/0/0.PNG'), tile_content,
+            'Contents of memcached and value returned from TileStache do not match')
+
+        self.assertEqual(self.mc.get('/1/memcache_osm/0/0/0.PNG'), None,
+            'Memcache returned a value even though it should have been empty')
diff --git a/tests/config_tests.py b/tests/config_tests.py
new file mode 100644
index 0000000..913821d
--- /dev/null
+++ b/tests/config_tests.py
@@ -0,0 +1,29 @@
+from unittest import TestCase
+from TileStache import Core, parseConfig
+
+class ConfigTests(TestCase):
+
+    def test_config(self):
+        '''Read configuration and verify successful read'''
+
+        config_content = {
+           "layers":{
+              "memcache_osm":{
+                 "provider":{
+                    "name":"proxy",
+                    "url": "http://tile.openstreetmap.org/{Z}/{X}/{Y}.png"
+                 }
+              }
+            },
+            "cache": {
+                "name": "Memcache",
+                "servers": ["127.0.0.1:11211"],
+                "revision": 4
+            }
+        }
+
+        config = parseConfig(config_content)
+        self.assertEqual(config.cache.servers, ["127.0.0.1:11211"])
+        self.assertEqual(config.cache.revision, 4)
+        self.assertTrue(config.layers['memcache_osm'])
+        self.assertTrue(isinstance(config.layers['memcache_osm'], Core.Layer))
\ No newline at end of file
diff --git a/tests/provider_tests.py b/tests/provider_tests.py
new file mode 100644
index 0000000..59b3371
--- /dev/null
+++ b/tests/provider_tests.py
@@ -0,0 +1,104 @@
+# This Python file uses the following encoding: utf-8
+
+from unittest import TestCase
+from . import utils
+
+class ProviderTests(TestCase):
+    '''Tests Proxy Provider that reads from cfg file'''
+
+    def test_proxy_mercator(self):
+        '''Fetch tile from OSM using Proxy provider (web mercator)'''
+
+        config_file_content = '''
+        {
+           "layers":{
+              "osm":{
+                 "provider":{
+                    "name":"proxy",
+                    "url": "http://tile.openstreetmap.org/{Z}/{X}/{Y}.png"
+                 }
+              }
+            },
+            "cache": {
+                "name": "Test"
+            }
+        }
+        '''
+
+        tile_mimetype, tile_content = utils.request(config_file_content, "osm", "png", 0, 0, 0)
+        self.assertEqual(tile_mimetype, "image/png")
+        self.assertTrue(tile_content[:4] in '\x89\x50\x4e\x47') #check it is a png based on png magic number
+
+
+    def test_url_template_wgs84(self):
+        '''Fetch two WGS84 tiles from WMS using bbox'''
+
+        config_file_content = '''
+        {
+           "layers":{
+              "osgeo_wms":{
+                 "projection":"WGS84",
+                 "provider":{
+                    "name":"url template",
+                    "template":"http://vmap0.tiles.osgeo.org/wms/vmap0?LAYERS=basic&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&FORMAT=image%2Fpng&SRS=EPSG%3A4326&BBOX=$xmin,$ymin,$xmax,$ymax&WIDTH=256&HEIGHT=256"
+                 }
+              }
+            },
+            "cache": {
+                "name": "Test"
+            }
+        }
+        '''
+
+        tile_mimetype, tile_content = utils.request(config_file_content, "osgeo_wms", "png", 0, 0, 0)
+        self.assertEqual(tile_mimetype, "image/png")
+        self.assertTrue(tile_content[:4] in '\x89\x50\x4e\x47') #check it is a png based on png magic number
+
+        #in WGS84 we typically have two tiles at zoom level 0. Get the second tile
+        tile_mimetype, tile_content = utils.request(config_file_content, "osgeo_wms", "png", 0, 1, 0)
+        self.assertEqual(tile_mimetype, "image/png")
+        self.assertTrue(tile_content[:4] in '\x89\x50\x4e\x47') #check it is a png based on png magic number
+
+
+class ProviderWithDummyResponseServer(TestCase):
+    '''
+    The following test starts a new Dummy Response Server and does some checks.
+    The reason it is in a separate class is because we want to make sure that the setup and teardown
+    methods - ***which are specific to this test*** - get called.
+    '''
+
+    def setUp(self):
+        #create custom binary file that pretends to be a png and a server that always returns the same response
+        self.response_content = '\x89\x50\x4e\x47Meh, I am a custom file that loves utf8 chars like éøæ®!!!'
+        self.response_mimetype = 'image/png'
+
+        self.temp_file_name = utils.create_temp_file(self.response_content)
+        self.server_process, self.server_port = utils.create_dummy_server(self.temp_file_name, self.response_mimetype)
+
+    def tearDown(self):
+        self.server_process.kill()
+
+    def test_url_template_custom_binary(self):
+        '''Fetch custom binary result using URL Template(result should not be modified)'''
+
+        config_file_content = '''
+        {
+           "layers":{
+              "local_layer":{
+                 "projection":"WGS84",
+                 "provider":{
+                    "name":"url template",
+                    "template":"http://localhost:<<port>>/&BBOX=$xmin,$ymin,$xmax,$ymax"
+                 }
+              }
+            },
+            "cache": {
+                "name": "Test"
+            }
+        }
+        '''.replace('<<port>>', str(self.server_port))
+
+        tile_mimetype, tile_content = utils.request(config_file_content, "local_layer", "png", 0, 0, 0)
+
+        self.assertEquals(tile_mimetype, self.response_mimetype)
+        self.assertEquals(tile_content, self.response_content)
diff --git a/tests/servers/dummy-response-server.py b/tests/servers/dummy-response-server.py
new file mode 100755
index 0000000..74d2514
--- /dev/null
+++ b/tests/servers/dummy-response-server.py
@@ -0,0 +1,32 @@
+import argparse
+from werkzeug.wrappers import Request, Response
+
+global response_mimetype
+global response_content
+
+ at Request.application
+def application(request):
+    return Response(response_content, mimetype=response_mimetype)
+
+if __name__ == '__main__':
+
+    parser = argparse.ArgumentParser(description="Starts an http server that blindly responds whatever it was initialized with.")
+    parser.add_argument("port", help="port number")
+    parser.add_argument("response_file", help="file that contains response content")
+    parser.add_argument("response_mimetype", help="mimetype to use for response")
+    args = parser.parse_args()
+
+    #read file into buffer
+    print 'Response Content: ' + args.response_file
+    global response_content
+    f = open(args.response_file, 'rb')
+    response_content = f.read()
+    f.close()
+
+    #set mimetype
+    print 'Response Mimetype: ' + args.response_mimetype
+    global response_mimetype
+    response_mimetype = args.response_mimetype
+
+    from werkzeug.serving import run_simple
+    run_simple('localhost', int(args.port), application)
\ No newline at end of file
diff --git a/tests/utils.py b/tests/utils.py
new file mode 100644
index 0000000..46c17c8
--- /dev/null
+++ b/tests/utils.py
@@ -0,0 +1,121 @@
+from tempfile import mkstemp
+import os
+import inspect
+import socket
+from subprocess import Popen, PIPE, STDOUT
+import shlex
+import sys
+from time import sleep
+from threading  import Thread
+try:
+    from Queue import Queue, Empty
+except ImportError:
+    from queue import Queue, Empty  # python 3.x
+
+
+from ModestMaps.Core import Coordinate
+from TileStache import getTile, parseConfig
+from TileStache.Core import KnownUnknown
+
+def request(config_content, layer_name, format, row, column, zoom):
+    '''
+    Helper method to write config_file to disk and do
+    request
+    '''
+
+    is_string = isinstance(config_content, basestring)
+    if is_string:
+        absolute_file_name = create_temp_file(config_content)
+        config = parseConfig(absolute_file_name)
+
+    else:
+        config = parseConfig(config_content)
+
+    layer = config.layers[layer_name]
+    coord = Coordinate(int(row), int(column), int(zoom))
+    mime_type, tile_content = getTile(layer, coord, format)
+
+    if is_string:
+        os.remove(absolute_file_name)
+
+    return mime_type, tile_content
+
+def create_temp_file(buffer):
+    '''
+    Helper method to create temp file on disk. Caller is responsible
+    for deleting file once done
+    '''
+    fd, absolute_file_name = mkstemp(text=True)
+    file = os.fdopen(fd, 'w+b')
+    file.write(buffer)
+    file.close()
+    return absolute_file_name
+
+def create_dummy_server(file_with_content, mimetype):
+    '''
+    Helper method that creates a dummy server that always
+    returns the contents of the file specified with the
+    mimetype specified
+    '''
+
+    # see http://stackoverflow.com/questions/50499/in-python-how-do-i-get-the-path-and-name-of-the-file-that-is-currently-executin
+    current_script_dir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
+
+    #start new process using our dummy-response-server.py script
+    dummy_server_file = os.path.join(current_script_dir, 'servers', 'dummy-response-server.py')
+    port = find_open_port()
+    cmd = 'python %s %s "%s" "%s" ' % (dummy_server_file, str(port), file_with_content, mimetype)
+
+    ON_POSIX = 'posix' in sys.builtin_module_names
+
+    p = Popen(shlex.split(cmd), stdout=PIPE, stderr=STDOUT, bufsize=1, close_fds=ON_POSIX)
+
+    # Read the stdout and look for Werkzeug's "Running on" string to indicate the server is ready for action.
+    # Otherwise, keep reading. We are using a Queue and a Thread to create a non-blocking read of the other
+    # process as described in http://stackoverflow.com/questions/375427/non-blocking-read-on-a-subprocess-pipe-in-python
+    # I wanted to use communicate() originally, but it was causing a blocking read and this way will also
+    # work on Windows
+
+    q = Queue()
+    t = Thread(target=enqueue_output, args=(p.stdout, q))
+    t.daemon = True # thread dies with the program
+    t.start()
+
+    server_output = ''
+
+    # read line and enter busy loop until the server says it is ok
+    while True:
+        retcode = p.poll()
+        if retcode is not None:
+            # process has terminated abruptly
+            raise Exception('The test dummy server failed to run. code:[%s] cmd:[%s]'%(str(retcode),cmd))
+
+        try:
+            line = q.get_nowait()
+        except Empty:
+            sleep(0.01)
+            continue
+        else: # got line
+            server_output += line
+            if "Running on http://" in server_output:
+                break; #server is running, get out of here
+            else:
+                continue
+
+    return p, port
+
+
+def enqueue_output(out, queue):
+    for line in iter(out.readline, b''):
+        queue.put(line)
+    out.close()
+
+def find_open_port():
+    '''
+    Ask the OS for an open port
+    '''
+    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+    s.bind(("",0))
+    port = s.getsockname()[1]
+    s.close()
+    return port
\ No newline at end of file
diff --git a/tests/vectiles_tests.py b/tests/vectiles_tests.py
new file mode 100644
index 0000000..34e95ed
--- /dev/null
+++ b/tests/vectiles_tests.py
@@ -0,0 +1,678 @@
+from unittest import TestCase
+from collections import namedtuple
+from math import hypot
+import json
+
+from osgeo import ogr, osr
+from shapely.geometry import Point, LineString, Polygon, MultiPolygon, asShape
+import mapbox_vector_tile
+
+from TileStache.Goodies.VecTiles import pbf
+
+from . import utils
+
+# Note these tests rely on the fact that Travis CI created a postgis db.
+# If you want to run them locally, create a similar PostGIS database.
+# Look at .travis.yml for details.
+
+def get_topo_transform(topojson):
+    '''
+    '''
+    def xform((x, y)):
+        lon = topojson['transform']['scale'][0] * x + topojson['transform']['translate'][0]
+        lat = topojson['transform']['scale'][1] * y + topojson['transform']['translate'][1]
+        
+        return lon, lat
+    
+    return xform
+
+def topojson_dediff(points):
+    '''
+    '''
+    out = [points[0]]
+    
+    for (x, y) in points[1:]:
+        out.append((out[-1][0] + x, out[-1][1] + y))
+    
+    return out
+
+
+LngLatBbox = namedtuple('LngLatBbox', 'west, south, east, north')
+# hardcoded tilebounds just for the tests
+# so that we don't need mercantile.
+TILE_BOUNDS = {
+    (0, 0, 0): LngLatBbox(
+        west=-180.0, south=-85.0511287798066,
+        east=180.0, north=85.0511287798066),
+    (0, 0, 1): LngLatBbox(
+        west=-180.0, south=0.0,
+        east=0.0, north=85.0511287798066)
+}
+
+
+def trans_coord(srid_source, srid_dest, x, y):
+    srs_source = osr.SpatialReference()
+    srs_source.ImportFromEPSG(srid_source)
+    srs_dest = osr.SpatialReference()
+    srs_dest.ImportFromEPSG(srid_dest)
+    transform = osr.CoordinateTransformation(srs_source, srs_dest)
+
+    point = ogr.CreateGeometryFromWkt("POINT ({} {})".format(x, y))
+    point.Transform(transform)
+
+    return point.GetX(), point.GetY()
+
+
+def tile_bounds_mercator(x, y, z):
+    #bds = mercantile.bounds(x, y, z)
+    #ll = mercantile.xy(bds.west, bds.south)
+    #ur = mercantile.xy(bds.east, bds.north)
+
+    bds = TILE_BOUNDS.get((x, y, z))
+
+    ll = trans_coord(4326, 3857, bds.west, bds.south)
+    ur = trans_coord(4326, 3857, bds.east, bds.north)
+
+    return (ll[0], ll[1], ur[0], ur[1])
+
+
+def coord2merc(x, y, extent):
+    (x0, y0, x_max, y_max) = extent
+    x_span = x_max - x0
+    y_span = y_max - y0
+    x_merc = ((x * x_span) / float(pbf.extents)) + x0
+    y_merc = ((y * y_span) / float(pbf.extents)) + y0
+    return x_merc, y_merc
+
+
+def decoded_pbf_asshape(feature, extent, srid=4326):
+
+    TYPES_MAP = {
+        1: "Point",
+        2: "LineString",
+        3: "Polygon"
+    }
+    if feature['type'] in (1, 2):
+        coords = [
+            trans_coord(3857, srid, *coord2merc(*g, extent=extent)) for g in feature['geometry']]
+    elif feature['type'] == 3:
+        coords = [
+            [trans_coord(3857, srid, *coord2merc(*g, extent=extent)) for g in feature['geometry'][0]]
+        ]
+    geoint = {
+        'type': TYPES_MAP.get(feature['type']),
+        'coordinates': coords,
+    }
+
+    return asShape(geoint)
+
+
+class PostGISVectorTestBase(object):
+    '''
+    Base Class for VecTiles tests. Has methods to:
+
+      - CREATE and DROP a single table (self.testTableName) that has a field called name
+      - Define a geometry field
+      - INSERT a record using a WKT
+    '''
+
+    def initTestTable(self, testTableName):
+        self.conn = ogr.Open("PG: dbname='test_tilestache' user='postgres'")
+        self.testTableName = testTableName
+        
+        self.cleanTestTable()
+
+        sql = 'CREATE TABLE %s (gid serial PRIMARY KEY, name VARCHAR)' % (self.testTableName,)
+        self.conn.ExecuteSQL(sql)
+
+    def defineGeometry(self, geom_type, geom_name = '__geometry__', srid=900913):
+        self.srid = srid
+        self.geom_name = geom_name
+        
+        sql = "SELECT AddGeometryColumn('public', '%s', '%s', %s, '%s', 2)" % \
+        (self.testTableName, geom_name, srid, geom_type)
+
+        self.conn.ExecuteSQL(sql)
+
+    def insertTestRow(self, wkt, name=''):
+        sql = "INSERT INTO %s (%s, name) VALUES(ST_Transform(ST_GeomFromText('%s', 4326), %s), '%s')" % \
+        (self.testTableName, self.geom_name, wkt, self.srid, name)
+
+        self.conn.ExecuteSQL(sql)
+
+    def cleanTestTable(self):
+        self.conn.ExecuteSQL('DROP TABLE if exists %s' % (self.testTableName,))
+
+
+class VectorProviderTest(PostGISVectorTestBase, TestCase):
+    '''Various vectiles tests on top of PostGIS'''
+
+    def setUp(self):
+        self.initTestTable('dummy_table')
+
+        self.config_file_content = '''
+        {
+           "layers":{
+              "vectile_test":
+              {
+                 "provider":
+                 {
+                     "class": "TileStache.Goodies.VecTiles:Provider",
+                     "kwargs":
+                     {
+                         "clip": false,
+                         "dbinfo":
+                         {
+                             "user": "postgres",
+                             "password": "",
+                             "database": "test_tilestache"
+                         },
+                         "queries":
+                         [
+                             "SELECT * FROM dummy_table"
+                         ]
+                     }
+                 }
+              },
+              "vectile_copy":
+              {
+                 "provider":
+                 {
+                     "class": "TileStache.Goodies.VecTiles:Provider",
+                     "kwargs":
+                     {
+                         "dbinfo":
+                         {
+                             "user": "postgres",
+                             "password": "",
+                             "database": "test_tilestache"
+                         },
+                         "queries":
+                         [
+                             "SELECT * FROM dummy_table"
+                         ]
+                     }
+                 }
+              },
+              "vectile_multi":
+              {
+                 "provider":
+                 {
+                     "class": "TileStache.Goodies.VecTiles:MultiProvider",
+                     "kwargs": { "names": [ "vectile_test", "vectile_copy" ] }
+                 }
+              }
+            },
+            "cache": {
+                "name": "Test"
+            }
+        }
+        '''
+
+    def tearDown(self):
+        self.cleanTestTable()
+    
+    def test_points_geojson(self):
+        '''
+        Create 3 points (2 on west, 1 on east hemisphere) and retrieve as geojson.
+        2 points should be returned in western hemisphere and 1 on eastern at zoom level 1
+        (clip on)
+        '''
+        
+        self.defineGeometry('POINT')
+
+        point_sf = Point(-122.42, 37.78)
+        point_berlin = Point(13.41, 52.52)
+        point_lima = Point(-77.03, 12.04)
+
+        self.insertTestRow(point_sf.wkt, 'San Francisco')
+        self.insertTestRow(point_berlin.wkt, 'Berlin')
+        self.insertTestRow(point_lima.wkt, 'Lima')
+
+        ########
+        # northwest quadrant should return San Francisco and Lima
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "json", 0, 0, 1)
+        geojson_result = json.loads(tile_content)
+
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        self.assertEqual(geojson_result['type'], 'FeatureCollection')
+        self.assertEqual(len(geojson_result['features']), 2)
+
+        cities = []
+
+        # Make sure that the right cities have been returned and that the geometries match
+
+        for feature in geojson_result['features']:
+            if feature['properties']['name'] == 'San Francisco':
+                cities.append(feature['properties']['name'])
+                self.assertTrue(point_sf.almost_equals(asShape(feature['geometry'])))
+
+            elif feature['properties']['name'] == 'Lima':
+                cities.append(feature['properties']['name'])
+                self.assertTrue(point_lima.almost_equals(asShape(feature['geometry'])))
+
+        self.assertTrue('San Francisco' in cities)
+        self.assertTrue('Lima' in cities)
+
+        ##########
+        # northeast quadrant should return Berlin
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "json", 0, 1, 1)
+        geojson_result = json.loads(tile_content)
+
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        self.assertEqual(geojson_result['type'], 'FeatureCollection')
+        self.assertEqual(len(geojson_result['features']), 1)
+        self.assertTrue('Berlin' in geojson_result['features'][0]['properties']['name'])
+
+
+    def test_linestring_geojson(self):
+        '''Create a line that goes from west to east (clip on)'''
+        
+        self.defineGeometry('LINESTRING')
+
+        geom = LineString( [(-180, 32), (180, 32)] )
+
+        self.insertTestRow(geom.wkt)
+
+        # we should have a line that clips at 0...
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "json", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        geojson_result = json.loads(tile_content)
+        west_hemisphere_geometry = asShape(geojson_result['features'][0]['geometry'])
+        expected_geometry = LineString([(-180, 32), (180, 32)])
+        self.assertTrue(expected_geometry.almost_equals(west_hemisphere_geometry))
+
+
+    def test_polygon_geojson(self):
+        '''
+        Create a polygon to cover the world and make sure it is "similar" (clip on)
+        '''
+        
+        self.defineGeometry('POLYGON')
+
+        geom = Polygon( [(-180, -85.05),
+                         ( 180, -85.05),
+                         ( 180, 85.05), 
+                         (-180, 85.05), 
+                         (-180, -85.05)])
+
+        self.insertTestRow(geom.wkt)
+        
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "json", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        geojson_result = json.loads(tile_content)
+        
+        result_geom = asShape(geojson_result['features'][0]['geometry'])
+        expected_geom = Polygon( [(-180, -85.05), (180, -85.05), (180, 85.05), (-180, 85.05), (-180, -85.05)])
+
+        # What is going on here is a bit unorthodox, but let me explain. The clipping
+        # code inside TileStache relies on GEOS Intersection alongside some TileStache code
+        # that creates a clipping geometry based on the tile perimeter. The tile perimeter
+        # is made out of 17 (x,y) coordinates and not a box. Hence, the GEOS::Intersection
+        # os that perimeter with the geometry of the vector we get back from the data provider
+        # can end with extra vertices. Although it is the right shape, we cannot do a straight
+        # comparisson because the expected geometry and the returned geometry *may* have extra
+        # vertices. Simplify() will not do much because the distance of the vertices can clearly
+        # be bigger than the tolerance. 
+        #
+        # To add to this, because of double precision, the vertices may not be exact.
+        # An optional way to find out if two shapes are close enough, is to buffer the two features
+        # by just a little bit and then subtract each other like so:
+        #
+        #             geometry1.difference(geometry2) == empty set?
+        #             geometry2.difference(geometry1) == empty set?
+        # 
+        # If both geometries are empty, then they are similar. Hence what you see below
+        
+        self.assertTrue(result_geom.difference(expected_geom.buffer(0.001)).is_empty)
+        self.assertTrue(expected_geom.difference(result_geom.buffer(0.001)).is_empty)
+    
+
+    def test_linestring_multi_geojson(self):
+        '''Create a line that goes from west to east (clip on), and test it in MultiProvider'''
+        
+        self.defineGeometry('LINESTRING')
+
+        geom = LineString( [(-180, 32), (180, 32)] )
+
+        self.insertTestRow(geom.wkt)
+
+        # we should have a line that clips at 0...
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_multi", "json", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        geojson_result = json.loads(tile_content)
+        
+        feature1, feature2 = geojson_result['vectile_test'], geojson_result['vectile_copy']
+        self.assertEqual(feature1['type'], 'FeatureCollection')
+        self.assertEqual(feature2['type'], 'FeatureCollection')
+        self.assertEqual(feature1['features'][0]['type'], 'Feature')
+        self.assertEqual(feature2['features'][0]['type'], 'Feature')
+        self.assertEqual(feature1['features'][0]['geometry']['type'], 'LineString')
+        self.assertEqual(feature2['features'][0]['geometry']['type'], 'LineString')
+        self.assertEqual(feature1['features'][0]['id'], feature2['features'][0]['id'])
+        
+        self.assertTrue('clipped' not in feature1['features'][0])
+        self.assertTrue(feature2['features'][0]['clipped'])
+
+
+    def test_points_topojson(self):
+        '''
+        Create 3 points (2 on west, 1 on east hemisphere) and retrieve as topojson.
+        2 points should be returned in western hemisphere and 1 on eastern at zoom level 1
+        (clip on)
+        '''
+        
+        self.defineGeometry('POINT')
+
+        point_sf = Point(-122.4183, 37.7750)
+        point_berlin = Point(13.4127, 52.5233)
+        point_lima = Point(-77.0283, 12.0433)
+
+        self.insertTestRow(point_sf.wkt, 'San Francisco')
+        self.insertTestRow(point_berlin.wkt, 'Berlin')
+        self.insertTestRow(point_lima.wkt, 'Lima')
+
+        ########
+        # northwest quadrant should return San Francisco and Lima
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "topojson", 0, 0, 1)
+        topojson_result = json.loads(tile_content)
+
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        print topojson_result
+        self.assertEqual(topojson_result['type'], 'Topology')
+        self.assertEqual(len(topojson_result['objects']['vectile']['geometries']), 2)
+
+        cities = []
+
+        # Make sure that the right cities have been returned and that the geometries match
+        
+        topojson_xform = get_topo_transform(topojson_result)
+
+        for feature in topojson_result['objects']['vectile']['geometries']:
+            lon, lat = topojson_xform(feature['coordinates'])
+            
+            if feature['properties']['name'] == 'San Francisco':
+                cities.append(feature['properties']['name'])
+                self.assertTrue(hypot(point_sf.x - lon, point_sf.y - lat) < 1)
+
+            elif feature['properties']['name'] == 'Lima':
+                cities.append(feature['properties']['name'])
+                print feature['coordinates']
+                self.assertTrue(hypot(point_lima.x - lon, point_lima.y - lat) < 1)
+
+        self.assertTrue('San Francisco' in cities)
+        self.assertTrue('Lima' in cities)
+
+        ##########
+        # northeast quadrant should return Berlin
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "topojson", 0, 1, 1)
+        topojson_result = json.loads(tile_content)
+
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        self.assertEqual(topojson_result['type'], 'Topology')
+        self.assertEqual(len(topojson_result['objects']['vectile']['geometries']), 1)
+        self.assertTrue('Berlin' in topojson_result['objects']['vectile']['geometries'][0]['properties']['name'])
+
+
+    def test_linestring_topojson(self):
+        '''Create a line that goes from west to east (clip on)'''
+        
+        self.defineGeometry('LINESTRING')
+
+        geom = LineString( [(-180, 32), (180, 32)] )
+
+        self.insertTestRow(geom.wkt)
+
+        # we should have a line that clips at 0...
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "topojson", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        topojson_result = json.loads(tile_content)
+        topojson_xform = get_topo_transform(topojson_result)
+        
+        parts = [topojson_result['arcs'][arc] for arc in topojson_result['objects']['vectile']['geometries'][0]['arcs']]
+        parts = [map(topojson_xform, topojson_dediff(part)) for part in parts]
+        
+        west_hemisphere_geometry = LineString(*parts)
+        
+        # Close enough?
+        self.assertTrue(abs(west_hemisphere_geometry.coords[0][0] + 180) < 2)
+        self.assertTrue(abs(west_hemisphere_geometry.coords[1][0] - 180) < 2)
+        self.assertTrue(abs(west_hemisphere_geometry.coords[0][1] - 32) < 2)
+        self.assertTrue(abs(west_hemisphere_geometry.coords[1][1] - 32) < 2)
+
+
+    def test_polygon_topojson(self):
+        '''
+        Create a polygon to cover the world and make sure it is "similar" (clip on)
+        '''
+        
+        self.defineGeometry('POLYGON')
+
+        geom = Polygon( [(-180, -85.0511),
+                         ( 180, -85.0511),
+                         ( 180, 85.0511), 
+                         (-180, 85.0511), 
+                         (-180, -85.0511)])
+
+        self.insertTestRow(geom.wkt)
+        
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "topojson", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        topojson_result = json.loads(tile_content)
+        topojson_xform = get_topo_transform(topojson_result)
+        
+        parts = [topojson_result['arcs'][arc[0]] for arc in topojson_result['objects']['vectile']['geometries'][0]['arcs']]
+        parts = [map(topojson_xform, topojson_dediff(part)) for part in parts]
+        
+        result_geom = Polygon(*parts)
+        expected_geom = Polygon( [(-180, -85.0511), (180, -85.0511), (180, 85.0511), (-180, 85.0511), (-180, -85.0511)])
+
+        # What is going on here is a bit unorthodox, but let me explain. The clipping
+        # code inside TileStache relies on GEOS Intersection alongside some TileStache code
+        # that creates a clipping geometry based on the tile perimeter. The tile perimeter
+        # is made out of 17 (x,y) coordinates and not a box. Hence, the GEOS::Intersection
+        # os that perimeter with the geometry of the vector we get back from the data provider
+        # can end with extra vertices. Although it is the right shape, we cannot do a straight
+        # comparisson because the expected geometry and the returned geometry *may* have extra
+        # vertices. Simplify() will not do much because the distance of the vertices can clearly
+        # be bigger than the tolerance. 
+        #
+        # To add to this, because of double precision, the vertices may not be exact.
+        # An optional way to find out if two shapes are close enough, is to buffer the two features
+        # by just a little bit and then subtract each other like so:
+        #
+        #             geometry1.difference(geometry2) == empty set?
+        #             geometry2.difference(geometry1) == empty set?
+        # 
+        # If both geometries are empty, then they are similar. Hence what you see below
+        
+        # Close enough?
+        self.assertTrue(result_geom.difference(expected_geom.buffer(1)).is_empty)
+        self.assertTrue(expected_geom.difference(result_geom.buffer(1)).is_empty)
+
+
+    def test_linestring_multi_topojson(self):
+        '''Create a line that goes from west to east (clip on), and test it in MultiProvider'''
+        
+        self.defineGeometry('LINESTRING')
+
+        geom = LineString( [(-180, 32), (180, 32)] )
+
+        self.insertTestRow(geom.wkt)
+
+        # we should have a line that clips at 0...
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_multi", "topojson", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        topojson_result = json.loads(tile_content)
+        
+        self.assertEqual(topojson_result['type'], 'Topology')
+        self.assertEqual(topojson_result['objects']['vectile_test']['type'], 'GeometryCollection')
+        self.assertEqual(topojson_result['objects']['vectile_copy']['type'], 'GeometryCollection')
+        
+        geom1 = topojson_result['objects']['vectile_test']['geometries'][0]
+        geom2 = topojson_result['objects']['vectile_copy']['geometries'][0]
+        self.assertEqual(geom1['type'], 'LineString')
+        self.assertEqual(geom2['type'], 'LineString')
+        self.assertEqual(geom1['id'], geom2['id'])
+        
+        self.assertTrue('clipped' not in geom1)
+        self.assertTrue(geom2['clipped'])
+
+
+    def test_points_pbf(self):
+        '''
+        Create 3 points (2 on west, 1 on east hemisphere) and retrieve as pbf.
+        2 points should be returned in western hemisphere and 1 on eastern at zoom level 1
+        (clip on)
+        '''
+        
+        self.defineGeometry('POINT')
+
+        point_sf = Point(-122.42, 37.78)
+        point_berlin = Point(13.41, 52.52)
+        point_lima = Point(-77.03, 12.04)
+
+        self.insertTestRow(point_sf.wkt, 'San Francisco')
+        self.insertTestRow(point_berlin.wkt, 'Berlin')
+        self.insertTestRow(point_lima.wkt, 'Lima')
+
+        ########
+        # northwest quadrant should return San Francisco and Lima
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "pbf", 0, 0, 1)
+        pbf_result = mapbox_vector_tile.decode(tile_content)
+
+
+        self.assertTrue(tile_mimetype.endswith('/x-protobuf'))
+        self.assertIn('vectile_test', pbf_result)
+        layer_result = pbf_result['vectile_test']
+        self.assertEqual(len(layer_result['features']), 2)
+
+        extent = tile_bounds_mercator(0, 0, 1)
+
+        cities = []
+
+        # Make sure that the right cities have been returned and that the geometries match
+
+        for feature in layer_result['features']:
+            if feature['properties']['name'] == 'San Francisco':
+                cities.append(feature['properties']['name'])
+                self.assertTrue(point_sf.almost_equals(decoded_pbf_asshape(feature, extent), decimal=1))
+
+            elif feature['properties']['name'] == 'Lima':
+                cities.append(feature['properties']['name'])
+                self.assertTrue(point_lima.almost_equals(decoded_pbf_asshape(feature, extent), decimal=1))
+
+        self.assertTrue('San Francisco' in cities)
+        self.assertTrue('Lima' in cities)
+
+        ##########
+        # northeast quadrant should return Berlin
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "pbf", 0, 1, 1)
+        pbf_result = mapbox_vector_tile.decode(tile_content)
+
+        self.assertTrue(tile_mimetype.endswith('/x-protobuf'))
+        self.assertIn('vectile_test', pbf_result)
+        layer_result = pbf_result['vectile_test']
+        self.assertEqual(len(layer_result['features']), 1)
+        self.assertTrue('Berlin' in layer_result['features'][0]['properties']['name'])
+
+
+    def test_linestring_pbf(self):
+        '''Create a line that goes from west to east (clip on) (pbf)'''
+        self.defineGeometry('LINESTRING')
+
+        geom = LineString([(-180, 32), (180, 32)])
+
+        self.insertTestRow(geom.wkt)
+
+        # we should have a line that clips at 0...
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "pbf", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/x-protobuf'))
+        pbf_result = mapbox_vector_tile.decode(tile_content)
+        layer_result = pbf_result['vectile_test']
+
+        extent = tile_bounds_mercator(0, 0, 0)
+
+        west_hemisphere_geometry = decoded_pbf_asshape(layer_result['features'][0], extent)
+        # order of points returned are different
+        expected_geometry = LineString([(180, 32), (-180, 32)])
+        for returned, expected in zip(west_hemisphere_geometry.coords, expected_geometry.coords):
+            self.assertTrue(round(returned[0]) == expected[0])
+            self.assertTrue(round(returned[1]) == expected[1])
+
+    def test_polygon_pbf(self):
+        '''
+        Create a polygon to cover the world and make sure it is "similar" (clip on) (pbf)
+        '''
+        self.defineGeometry('POLYGON')
+
+        geom = Polygon([(-180, -85.05),
+                        (180, -85.05),
+                        (180, 85.05),
+                        (-180, 85.05),
+                        (-180, -85.05)])
+
+        self.insertTestRow(geom.wkt)
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_test", "pbf", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/x-protobuf'))
+        pbf_result = mapbox_vector_tile.decode(tile_content)
+        layer_result = pbf_result['vectile_test']
+
+        extent = tile_bounds_mercator(0, 0, 0)
+
+        result_geom = decoded_pbf_asshape(layer_result['features'][0], extent)
+        expected_geom = Polygon([(-180, -85.05), (180, -85.05), (180, 85.05), (-180, 85.05), (-180, -85.05)])
+
+        # What is going on here is a bit unorthodox, but let me explain. The clipping
+        # code inside TileStache relies on GEOS Intersection alongside some TileStache code
+        # that creates a clipping geometry based on the tile perimeter. The tile perimeter
+        # is made out of 17 (x,y) coordinates and not a box. Hence, the GEOS::Intersection
+        # os that perimeter with the geometry of the vector we get back from the data provider
+        # can end with extra vertices. Although it is the right shape, we cannot do a straight
+        # comparisson because the expected geometry and the returned geometry *may* have extra
+        # vertices. Simplify() will not do much because the distance of the vertices can clearly
+        # be bigger than the tolerance. 
+        #
+        # To add to this, because of double precision, the vertices may not be exact.
+        # An optional way to find out if two shapes are close enough, is to buffer the two features
+        # by just a little bit and then subtract each other like so:
+        #
+        #             geometry1.difference(geometry2) == empty set?
+        #             geometry2.difference(geometry1) == empty set?
+        # 
+        # If both geometries are empty, then they are similar. Hence what you see below
+        self.assertTrue(result_geom.difference(expected_geom.buffer(0.01)).is_empty)
+        self.assertTrue(expected_geom.difference(result_geom.buffer(0.01)).is_empty)
+
+    def test_linestring_multi_pbf(self):
+        '''Create a line that goes from west to east (clip on), and test it in MultiProvider (pbf)'''
+
+        self.defineGeometry('LINESTRING')
+
+        geom = LineString([(-180, 32), (180, 32)])
+
+        self.insertTestRow(geom.wkt)
+
+        # we should have a line that clips at 0...
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vectile_multi", "pbf", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/x-protobuf'))
+        pbf_result = mapbox_vector_tile.decode(tile_content)
+
+        feature1, feature2 = pbf_result['vectile_test'], pbf_result['vectile_copy']
+
+        self.assertEqual(feature1['features'][0]['type'], 2)
+        self.assertEqual(feature2['features'][0]['type'], 2)
+        self.assertEqual(feature1['features'][0]['id'], feature2['features'][0]['id'])
diff --git a/tests/vector_tests.py b/tests/vector_tests.py
new file mode 100644
index 0000000..1edfc82
--- /dev/null
+++ b/tests/vector_tests.py
@@ -0,0 +1,209 @@
+from unittest import TestCase
+import json
+
+from osgeo import ogr
+from shapely.geometry import Point, LineString, Polygon, MultiPolygon, asShape
+
+from . import utils
+
+
+# Note these tests rely on the fact that Travis CI created a postgis db.
+# If you want to run them locally, create a similar PostGIS database.
+# Look at .travis.yml for details.
+
+class PostGISVectorTestBase(object):
+    '''
+    Base Class for PostGIS Vector tests. Has methods to:
+
+      - CREATE and DROP a single table (self.testTableName) that has a field called name
+      - Define a geometry field
+      - INSERT a record using a WKT
+    '''
+
+    def initTestTable(self, testTableName):
+        self.conn = ogr.Open("PG: dbname='test_tilestache' user='postgres'")
+        self.testTableName = testTableName
+        
+        self.cleanTestTable()
+
+        sql = 'CREATE TABLE %s (gid serial PRIMARY KEY, name VARCHAR)' % (self.testTableName,)
+        self.conn.ExecuteSQL(sql)
+
+    def defineGeometry(self, geom_type, geom_name = 'geom', srid=4326):
+        self.srid = srid
+        self.geom_name = geom_name
+        
+        sql = "SELECT AddGeometryColumn('public', '%s', '%s', %s, '%s', 2)" % \
+        (self.testTableName, geom_name, srid, geom_type)
+
+        self.conn.ExecuteSQL(sql)
+
+    def insertTestRow(self, wkt, name=''):
+        sql = "INSERT INTO %s (%s, name) VALUES(ST_GeomFromText('%s',%s),'%s')" % \
+        (self.testTableName, self.geom_name, wkt, self.srid, name)
+
+        self.conn.ExecuteSQL(sql)
+
+    def cleanTestTable(self):
+        self.conn.ExecuteSQL('DROP TABLE if exists %s' % (self.testTableName,))
+
+
+class VectorProviderTest(PostGISVectorTestBase, TestCase):
+    '''Various vector tests on top of PostGIS'''
+
+    def setUp(self):
+        self.initTestTable('dummy_table')
+
+        self.config_file_content = '''
+        {
+           "layers":{
+              "vector_test":{
+                 "provider":{
+                    "name": "vector",
+                    "driver" : "PostgreSQL",
+                    "parameters": {
+                                    "dbname": "test_tilestache", 
+                                    "user": "postgres",
+                                    "table": "dummy_table"
+                    }                    
+                 },
+                 "projection" : "WGS84"
+              }
+            },
+            "cache": {
+                "name": "Test"
+            }
+        }
+        '''
+
+    def tearDown(self):
+        self.cleanTestTable()
+
+    def test_points_geojson(self):
+        '''
+        Create 3 points (2 on west, 1 on east hemisphere) and retrieve as geojson.
+        2 points should be returned in western hemisphere and 1 on eastern at zoom level 0
+        (clip on)
+        '''
+        
+        self.defineGeometry('POINT')
+
+        point_sf = Point(-122.4183, 37.7750)
+        point_berlin = Point(13.4127, 52.5233)
+        point_lima = Point(-77.0283, 12.0433)
+
+        self.insertTestRow(point_sf.wkt, 'San Francisco')
+        self.insertTestRow(point_berlin.wkt, 'Berlin')
+        self.insertTestRow(point_lima.wkt, 'Lima')
+
+        ########
+        # western hemisphere should return San Francisco and Lima
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vector_test", "geojson", 0, 0, 0)
+        geojson_result = json.loads(tile_content)
+
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        self.assertEqual(geojson_result['type'], 'FeatureCollection')
+        self.assertEqual(len(geojson_result['features']), 2)
+
+        cities = []
+
+        # Make sure that the right cities have been returned and that the geometries match
+
+        for feature in geojson_result['features']:
+            if feature['properties']['name'] == 'San Francisco':
+                cities.append(feature['properties']['name'])
+                self.assertTrue(point_sf.almost_equals(asShape(feature['geometry'])))
+
+            elif feature['properties']['name'] == 'Lima':
+                cities.append(feature['properties']['name'])
+                self.assertTrue(point_lima.almost_equals(asShape(feature['geometry'])))
+
+        self.assertTrue('San Francisco' in cities)
+        self.assertTrue('Lima' in cities)
+
+        ##########
+        # eastern hemisphere should return Berlin
+
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vector_test", "geojson", 0, 1, 0)
+        geojson_result = json.loads(tile_content)
+
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        self.assertEqual(geojson_result['type'], 'FeatureCollection')
+        self.assertEqual(len(geojson_result['features']), 1)
+        self.assertTrue('Berlin' in geojson_result['features'][0]['properties']['name'])
+
+
+    def test_linestring_geojson(self):
+        '''Create a line that goes from west to east (clip on)'''
+        
+        self.defineGeometry('LINESTRING')
+
+        geom = LineString( [(-180, 32), (180, 32)] )
+
+        self.insertTestRow(geom.wkt)
+
+        # we should have a line that clips at 0...
+
+        # for western hemisphere....
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vector_test", "geojson", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        geojson_result = json.loads(tile_content)
+        west_hemisphere_geometry = asShape(geojson_result['features'][0]['geometry'])
+        expected_geometry = LineString([(-180, 32), (0, 32)])
+        self.assertTrue(expected_geometry.almost_equals(west_hemisphere_geometry))
+
+        # for eastern hemisphere....
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vector_test", "geojson", 0, 1, 0)
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        geojson_result = json.loads(tile_content)
+        east_hemisphere_geometry = asShape(geojson_result['features'][0]['geometry'])
+        expected_geometry = LineString([(0, 32), (180, 32)])
+        self.assertTrue(expected_geometry.almost_equals(east_hemisphere_geometry))
+
+
+    def test_polygon_geojson(self):
+        '''
+        Create a polygon to cover the world and make sure it is "similar" (clip on)
+        '''
+        
+        self.defineGeometry('POLYGON')
+
+        geom = Polygon( [(-180, -90),
+                         ( 180, -90),
+                         ( 180, 90), 
+                         (-180, 90), 
+                         (-180, -90)])
+
+        self.insertTestRow(geom.wkt)
+        
+        tile_mimetype, tile_content = utils.request(self.config_file_content, "vector_test", "geojson", 0, 0, 0)
+        self.assertTrue(tile_mimetype.endswith('/json'))
+        geojson_result = json.loads(tile_content)
+        
+        result_geom = asShape(geojson_result['features'][0]['geometry'])
+        expected_geom = Polygon( [(-180, -90), (0, -90), (0, 90), (-180, 90), (-180, -90)])
+
+        # What is going on here is a bit unorthodox, but let me explain. The clipping
+        # code inside TileStache relies on GEOS Intersection alongside some TileStache code
+        # that creates a clipping geometry based on the tile perimeter. The tile perimeter
+        # is made out of 17 (x,y) coordinates and not a box. Hence, the GEOS::Intersection
+        # os that perimeter with the geometry of the vector we get back from the data provider
+        # can end with extra vertices. Although it is the right shape, we cannot do a straight
+        # comparisson because the expected geometry and the returned geometry *may* have extra
+        # vertices. Simplify() will not do much because the distance of the vertices can clearly
+        # be bigger than the tolerance. 
+        #
+        # To add to this, because of double precision, the vertices may not be exact.
+        # An optional way to find out if two shapes are close enough, is to buffer the two features
+        # by just a little bit and then subtract each other like so:
+        #
+        #             geometry1.difference(geometry2) == empty set?
+        #             geometry2.difference(geometry1) == empty set?
+        # 
+        # If both geometries are empty, then they are similar. Hence what you see below
+        
+        self.assertTrue(result_geom.difference(expected_geom.buffer(0.001)).is_empty)
+        self.assertTrue(expected_geom.difference(result_geom.buffer(0.001)).is_empty)
+
+
diff --git a/tilestache.cfg b/tilestache.cfg
new file mode 100644
index 0000000..2beb2bb
--- /dev/null
+++ b/tilestache.cfg
@@ -0,0 +1,21 @@
+{
+  "cache":
+  {
+    "name": "Test",
+    "path": "/tmp/stache",
+    "umask": "0000"
+  },
+  "layers": 
+  {
+    "osm":
+    {
+        "provider": {"name": "proxy", "provider": "OPENSTREETMAP"},
+        "png options": {"palette": "http://tilestache.org/example-palette-openstreetmap-mapnik.act"}
+    },
+    "example":
+    {
+        "provider": {"name": "mapnik", "mapfile": "examples/style.xml"},
+        "projection": "spherical mercator"
+    } 
+  }
+}
diff --git a/tilestache.cgi b/tilestache.cgi
new file mode 100755
index 0000000..e476b35
--- /dev/null
+++ b/tilestache.cgi
@@ -0,0 +1,7 @@
+#!/usr/bin/env python
+
+import os
+import TileStache
+
+if __name__ == '__main__':
+    TileStache.cgiHandler(os.environ, 'tilestache.cfg', debug=True)
diff --git a/www/.gitignore b/www/.gitignore
new file mode 100644
index 0000000..592ad2b
--- /dev/null
+++ b/www/.gitignore
@@ -0,0 +1,3 @@
+doc
+dist
+download
diff --git a/www/example-palette-openstreetmap-mapnik.act b/www/example-palette-openstreetmap-mapnik.act
new file mode 100644
index 0000000..e7a65ad
Binary files /dev/null and b/www/example-palette-openstreetmap-mapnik.act differ
diff --git a/www/index.html b/www/index.html
new file mode 100644
index 0000000..fc39f0b
--- /dev/null
+++ b/www/index.html
@@ -0,0 +1,149 @@
+<!DOCTYPE html>
+<html>
+<head>
+	<title>TileStache</title>
+    <link rel="stylesheet" href="style.css" type="text/css">
+    <meta http-equiv="content-type" content="text/html; charset=utf-8">
+</head>
+<body>
+
+<div id="content">
+    <p>
+        <strong><i>TileStache</i> is a Python-based server application that can
+        serve up map tiles based on rendered geographic data.</strong>
+    </p>
+
+    <p>
+        You might be familiar with <a
+        href="http://tilecache.org">TileCache</a>, the venerable open source
+        WMS server from MetaCarta. TileStache is similar, but we hope simpler
+        and better-suited to the needs of designers and cartographers.
+    </p>
+    
+    <p>
+        <b>Read more</b> about the motivations behind TileStache in an
+        <a href="http://mike.teczno.com/notes/tilestache.html">introductory blog post</a>.
+    </p>
+    
+    <p>
+        <b>Get TileStache:</b> <a href="http://github.com/migurski/TileStache">on GitHub</a>,
+        <a href="http://pypi.python.org/pypi/TileStache">from PyPI via <tt>easy_install</tt></a>,
+        and as a <a href="download/?C=M;O=D">direct download here</a>. Modest Maps
+        (<a href="http://github.com/migurski/modestmaps-py">Github</a>,
+        <a href="http://pypi.python.org/pypi/ModestMaps">PyPI</a>,
+        <a href="http://modestmaps.com/">download</a>) is required to use TileStache.
+    </p>
+
+    <p>
+        See also <a href="doc/">documentation</a>, and ask for help in
+        <a href="http://groups.google.com/group/tilestache">the Tilestache group</a>.
+    </p>
+
+    <h1>
+        <img src="mustaches.jpg" alt="TileStache" width="500" height="321">
+    </h1>
+
+    <p style="color: #666;">
+        <small>Mustaches:
+        <a href="http://www.flickr.com/photos/locaburg/4416312808/in/faves-mmigurski/">IMG_7531</a>
+        by <a href="http://www.flickr.com/photos/locaburg/">locaburg</a>, on Flickr.</small>
+    </p>
+    
+    <h2>Features</h2>
+    
+    <p>
+        Things TileStache does now:
+    </p>
+    
+    <ul>
+        <li>Renders <a href="http://mapnik.org/">Mapnik</a> maps.</li>
+        <li>Serves pre-rendered tiles out of <a href="http://mbtiles.org">MBTiles</a> tilesets.</li>
+        <li>Generates vector tiles from <a href="http://www.osgeo.org/gdal_ogr">OGR</a> datasources in <a href="http://geojson.org/">GeoJSON</a> usable in <a href="http://polymaps.org/">Polymaps</a>.</li>
+        <li>Caches to disk, <a href="http://memcached.org/">Memcache</a>, <a href="http://aws.amazon.com/s3/">Amazon S3</a>, <a href="http://mbtiles.org">MBTiles</a>, and elsewhere.</li>
+        <li>Serves tiles in Google-style spherical mercator projection and WGS84 lat/lon projection.</li>
+        <li>Runs from CGI, mod_python, or <a href="http://github.com/benoitc/gunicorn">Gunicorn</a> WSGI.</li>
+        <li>Uses metatiles.</li>
+    </ul>
+
+    <p>
+        Things TileStache might do in the near future:
+    </p>
+    
+    <ul>
+        <li>Render <a href="http://www.gdal.org/">GDAL</a> datasources</li>
+    </ul>
+
+    <h2>Design</h2>
+    
+    <p>
+        The design of TileStache focuses on approachability at the expense of
+        cleverness or completeness. Our hope is to make it easy for anyone to
+        design a new map of their city, publish a fresh view of their world, or
+        even build the next <a href="http://8bitnyc.com">8-Bit NYC</a>.
+    </p>
+
+    <h3>Small</h3>
+
+    <p>
+        The core of TileStache is intended to have a small code footprint. It
+        should be quick and easy to to understand what the library is doing and
+        why, based on common entry points like included CGI scripts. Where
+        possible, dynamic programming “magic” is to be avoided, in favor of
+        basic, procedural and copiously-documented Python.
+    </p>
+
+    <h3>Pluggable</h3>
+
+    <p>
+        We want to accept plug-ins and extensions from outside TileStache, and
+        offer TileStache itself as an extension for other systems. It must be
+        possible to write and use additional caches or renderers without having
+        to modify the core package itself, extend classes from inside the
+        package, or navigate chains of class dependencies. Duck typing and
+        stable interfaces win.
+    </p>
+
+    <h3>Sensible Defaults</h3>
+
+    <p>
+        The default action of a configured TileStache instance should permit
+        the most common form of interaction: a worldwide, spherical-mercator
+        upper-left oriented tile layout compatible with those used by
+        OpenStreetMap, Google, Bing Maps, Yahoo! and others. It should be
+        possible to make TileStache do whatever is necessary to support any
+        external system, but we eschew complex, impenetrable standards in favor
+        of pragmatic, fast utility with basic web clients.
+    </p>
+
+    <h2>Who</h2>
+
+    <p>
+        TileStache is a product of <a class="credit" href="http://mike.teczno.com">Michal Migurski</a>
+        with input from
+        <a class="credit" href="http://www.aaronland.info/">Aaron Cope</a>,
+        <a class="credit" href="http://inzain.net">Zain Memon</a>,
+        <a class="credit" href="http://dbsgeo.com/">Dane Springmeyer</a>,
+        Ian Dees,
+        <a class="credit" href="http://www.urbanresearch.org/about/people/david-burgoon">David Burgoon</a>,
+        <a class="credit" href="http://billmill.org">Bill Mill</a>,
+        <a class="credit" href="http://blog.kartena.se">Per Liedman</a>,
+        <a class="credit" href="https://github.com/shawnbot">Shawn Allen</a>,
+        <a class="credit" href="http://www.itopen.it/chi-siamo/">Alessandro Pasotti</a>,
+        <a class="credit" href="http://rassie.org/">Nikolai Prokoschenko</a>,
+        <a class="credit" href="http://perrygeo.net/">Matthew Perry</a>,
+        <a class="credit" href="http://www.pauladamsmith.com/">Paul Smith</a>,
+        <a class="credit" href="https://github.com/sk1p/">Alexander Clausen</a>,
+        <a class="credit" href="https://github.com/danzel/">Dave Leaver</a>,
+        <a class="credit" href="https://github.com/thegreat/">Tom Nightingale</a>,
+        <a class="credit" href="https://github.com/semprebon/">Andrew Semprebon</a>,
+        <a class="credit" href="https://github.com/ryanbreen">Ryan Breen</a>,
+        <a class="credit" href="https://github.com/alno">Alexey Noskov</a>,
+        <a class="credit" href="https://github.com/RBURHUM">Ragi Burhum</a>,
+        <a class="credit" href="https://github.com/mojodna">Seth Fitzsimmons</a>,
+        <a class="credit" href="https://github.com/fabianbuechler">Fabian Büchler</a>,
+        and <a class="credit" href="http://photos.bigwebguy.net/">Lee Shepherd</a>.
+    </p>
+</div>
+
+</body>
+</html>
diff --git a/www/logo.ai b/www/logo.ai
new file mode 100644
index 0000000..c77b21f
--- /dev/null
+++ b/www/logo.ai
@@ -0,0 +1,1829 @@
+%PDF-1.5
%����
+1 0 obj
<</Metadata 37 0 R/Pages 2 0 R/OCProperties<</D<</RBGroups[]/ON[25 0 R]/OFF[18 0 R]/Order 17 0 R>>/OCGs[18 0 R 25 0 R]>>/Type/Catalog>>
endobj
37 0 obj
<</Subtype/XML/Length 42162/Type/Metadata>>stream
+<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
+<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.1-c036 46.277092, Fri Feb 23 2007 14:16:18        ">
+   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+      <rdf:Description rdf:about=""
+            xmlns:dc="http://purl.org/dc/elements/1.1/">
+         <dc:format>application/pdf</dc:format>
+         <dc:title>
+            <rdf:Alt>
+               <rdf:li xml:lang="x-default">logo</rdf:li>
+            </rdf:Alt>
+         </dc:title>
+      </rdf:Description>
+      <rdf:Description rdf:about=""
+            xmlns:xap="http://ns.adobe.com/xap/1.0/"
+            xmlns:xapGImg="http://ns.adobe.com/xap/1.0/g/img/">
+         <xap:CreatorTool>Adobe Illustrator CS3</xap:CreatorTool>
+         <xap:CreateDate>2010-04-19T17:42:51-07:00</xap:CreateDate>
+         <xap:ModifyDate>2010-04-19T17:42:51-07:00</xap:ModifyDate>
+         <xap:MetadataDate>2010-04-19T17:42:51-07:00</xap:MetadataDate>
+         <xap:Thumbnails>
+            <rdf:Alt>
+               <rdf:li rdf:parseType="Resource">
+                  <xapGImg:width>256</xapGImg:width>
+                  <xapGImg:height>212</xapGImg:height>
+                  <xapGImg:format>JPEG</xapGImg:format>
+                  <xapGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA&#xA;AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK&#xA;DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f&#xA;Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgA1AEAAwER&#xA;AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA&#xA;AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQV [...]
+               </rdf:li>
+            </rdf:Alt>
+         </xap:Thumbnails>
+      </rdf:Description>
+      <rdf:Description rdf:about=""
+            xmlns:xapMM="http://ns.adobe.com/xap/1.0/mm/"
+            xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#">
+         <xapMM:DocumentID>uuid:3A47B00C3E4DDF119E808DAE1B998D9E</xapMM:DocumentID>
+         <xapMM:InstanceID>uuid:5ecd2ad6-dab4-eb41-9924-22711c02e3e8</xapMM:InstanceID>
+         <xapMM:DerivedFrom rdf:parseType="Resource">
+            <stRef:instanceID>uuid:d68fbd32-d0ee-11db-9a39-0016cb9bb1ac</stRef:instanceID>
+         </xapMM:DerivedFrom>
+      </rdf:Description>
+      <rdf:Description rdf:about=""
+            xmlns:xapTPg="http://ns.adobe.com/xap/1.0/t/pg/"
+            xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
+            xmlns:xapG="http://ns.adobe.com/xap/1.0/g/">
+         <xapTPg:NPages>1</xapTPg:NPages>
+         <xapTPg:HasVisibleTransparency>False</xapTPg:HasVisibleTransparency>
+         <xapTPg:HasVisibleOverprint>False</xapTPg:HasVisibleOverprint>
+         <xapTPg:MaxPageSize rdf:parseType="Resource">
+            <stDim:w>612.000000</stDim:w>
+            <stDim:h>792.000000</stDim:h>
+            <stDim:unit>Points</stDim:unit>
+         </xapTPg:MaxPageSize>
+         <xapTPg:PlateNames>
+            <rdf:Seq>
+               <rdf:li>Cyan</rdf:li>
+               <rdf:li>Magenta</rdf:li>
+               <rdf:li>Yellow</rdf:li>
+               <rdf:li>Black</rdf:li>
+            </rdf:Seq>
+         </xapTPg:PlateNames>
+         <xapTPg:SwatchGroups>
+            <rdf:Seq>
+               <rdf:li rdf:parseType="Resource">
+                  <xapG:groupName>Default Swatch Group</xapG:groupName>
+                  <xapG:groupType>0</xapG:groupType>
+                  <xapG:Colorants>
+                     <rdf:Seq>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>White</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>255</xapG:red>
+                           <xapG:green>255</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Black</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>0</xapG:red>
+                           <xapG:green>0</xapG:green>
+                           <xapG:blue>0</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Crimson</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>151</xapG:red>
+                           <xapG:green>15</xapG:green>
+                           <xapG:blue>0</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Moroccan Rust</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>186</xapG:red>
+                           <xapG:green>0</xapG:green>
+                           <xapG:blue>0</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Magenta</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>228</xapG:red>
+                           <xapG:green>27</xapG:green>
+                           <xapG:blue>91</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Va Va Va Voom Red</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>255</xapG:red>
+                           <xapG:green>26</xapG:green>
+                           <xapG:blue>0</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Orange</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>255</xapG:red>
+                           <xapG:green>153</xapG:green>
+                           <xapG:blue>0</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Custard</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>254</xapG:red>
+                           <xapG:green>222</xapG:green>
+                           <xapG:blue>88</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Canary Yellow</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>255</xapG:red>
+                           <xapG:green>255</xapG:green>
+                           <xapG:blue>62</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Cuban Lime</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>204</xapG:red>
+                           <xapG:green>255</xapG:green>
+                           <xapG:blue>66</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Dried Sage</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>163</xapG:red>
+                           <xapG:green>195</xapG:green>
+                           <xapG:blue>128</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Calypso Green</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>115</xapG:red>
+                           <xapG:green>190</xapG:green>
+                           <xapG:blue>30</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Springfield Green</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>0</xapG:red>
+                           <xapG:green>255</xapG:green>
+                           <xapG:blue>0</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Christmas Green</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>1</xapG:red>
+                           <xapG:green>173</xapG:green>
+                           <xapG:blue>78</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Pine</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>0</xapG:red>
+                           <xapG:green>84</xapG:green>
+                           <xapG:blue>71</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Sky Blue</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>138</xapG:red>
+                           <xapG:green>219</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Aegean Sea</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>0</xapG:red>
+                           <xapG:green>160</xapG:green>
+                           <xapG:blue>198</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Denim</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>2</xapG:red>
+                           <xapG:green>122</xapG:green>
+                           <xapG:blue>187</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>St. Petersburg Blue</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>10</xapG:red>
+                           <xapG:green>80</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Periwinkle</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>128</xapG:red>
+                           <xapG:green>141</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Maltese Lilac</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>204</xapG:red>
+                           <xapG:green>204</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Passionate Purple</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>186</xapG:red>
+                           <xapG:green>0</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Shocking Pink</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>255</xapG:red>
+                           <xapG:green>102</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Bubble Gum Pink</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>251</xapG:red>
+                           <xapG:green>174</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Bisque</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>231</xapG:red>
+                           <xapG:green>185</xapG:green>
+                           <xapG:blue>138</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Cafe Con Leche</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>169</xapG:red>
+                           <xapG:green>119</xapG:green>
+                           <xapG:blue>93</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Malt</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>138</xapG:red>
+                           <xapG:green>100</xapG:green>
+                           <xapG:blue>74</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Mocha</xapG:swatchName>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:red>90</xapG:red>
+                           <xapG:green>61</xapG:green>
+                           <xapG:blue>27</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Black</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>0</xapG:red>
+                           <xapG:green>0</xapG:green>
+                           <xapG:blue>0</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Rust</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>185</xapG:red>
+                           <xapG:green>0</xapG:green>
+                           <xapG:blue>0</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Orange</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>255</xapG:red>
+                           <xapG:green>153</xapG:green>
+                           <xapG:blue>0</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Yellow</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>255</xapG:red>
+                           <xapG:green>255</xapG:green>
+                           <xapG:blue>61</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Green</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>115</xapG:red>
+                           <xapG:green>190</xapG:green>
+                           <xapG:blue>29</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Sky</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>138</xapG:red>
+                           <xapG:green>218</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Sea</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>0</xapG:red>
+                           <xapG:green>160</xapG:green>
+                           <xapG:blue>198</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Lilac</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>204</xapG:red>
+                           <xapG:green>204</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Periwinkle</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>128</xapG:red>
+                           <xapG:green>140</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Pink</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>250</xapG:red>
+                           <xapG:green>174</xapG:green>
+                           <xapG:blue>255</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Cafe</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>168</xapG:red>
+                           <xapG:green>119</xapG:green>
+                           <xapG:blue>92</xapG:blue>
+                        </rdf:li>
+                        <rdf:li rdf:parseType="Resource">
+                           <xapG:swatchName>Global Mocha</xapG:swatchName>
+                           <xapG:type>PROCESS</xapG:type>
+                           <xapG:tint>100.000000</xapG:tint>
+                           <xapG:mode>RGB</xapG:mode>
+                           <xapG:red>91</xapG:red>
+                           <xapG:green>61</xapG:green>
+                           <xapG:blue>27</xapG:blue>
+                        </rdf:li>
+                     </rdf:Seq>
+                  </xapG:Colorants>
+               </rdf:li>
+            </rdf:Seq>
+         </xapTPg:SwatchGroups>
+      </rdf:Description>
+      <rdf:Description rdf:about=""
+            xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/">
+         <illustrator:Type>Document</illustrator:Type>
+      </rdf:Description>
+      <rdf:Description rdf:about=""
+            xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
+         <pdf:Producer>Adobe PDF library 8.00</pdf:Producer>
+      </rdf:Description>
+   </rdf:RDF>
+</x:xmpmeta>
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                                                                                                    
+                           
+<?xpacket end="w"?>
endstream
endobj
2 0 obj
<</Count 1/Type/Pages/Kids[5 0 R]>>
endobj
18 0 obj
<</Intent 19 0 R/Usage 20 0 R/Name(text)/Type/OCG>>
endobj
25 0 obj
<</Intent 26 0 R/Usage 27 0 R/Name(outlines)/Type/OCG>>
endobj
26 0 obj
[/View/Design]
endobj
27 0 obj
<</CreatorInfo<</Subtype/Artwork/Creator(Adobe Illustrator 13.0)>>>>
endobj
19 0 obj
[/View/Design]
endobj
20 0 obj
<</CreatorInfo<</Subtype/Artwork/Creator(Adobe Illustrator 13.0)>>>>
endobj
17 0 obj
[25 0 R 18 0 R]
endobj
5 0 obj
<</Parent 2 0 R/Contents 31 0 R/BleedBox[0.0 0.0 612.0 792.0]/PieceInfo<</Illustrator 6 0 R>>/ArtBox[167.766 326.069 436.985 552.951]/MediaBox[0.0 0.0 612.0 792.0]/Thumb 36 0 R/TrimBox[0.0 0.0 612.0 792.0]/Resources<</Font<</TT0 29 0 R>>/ProcSet[/PDF/Text]/Properties<</MC0 18 0 R/MC1 25 0 R>>/ExtGState<</GS0 21 0 R>>>>/Type/Page/LastModified(D:20100419174249-07'00')>>
endobj
31 0 obj
<</Length 3141/Filter/FlateDecode>>stream
+H���͎$����u�]�&�Z
>	��|6ƒ��Ȁd����"ɪ���$�`���"�������}��cؾ������%l}��Ŵ]��ӷ�?o��|��
�������	����|xz
+[ܞ��\�
xxެ���3���xh-n%�4����/���_�?}�����.�����=���œ��E�^[fA�����7�5��he;–J�[�y+!i����[�}�t��kN�a�9�3��gO���?n�l���݂ݝ�����)�m/����
����dƸ�Զ��Ǻ�ѷF ��(�0�/��%��]�m���U��#e��%2�(��sq��9��M��a��D��챧<�6fw5u�9�b[J{�]����%e40�V�
�����Ub��%&�Bߛ<!�ô^ ��

	�cqb��ε䍤���ڷ��n[�{��� �n���H
���i���llD�n5�6�b����t$�c�
��e�)h�S
+�J�8=��is�̿
Ig�$��}x�{샷/�L亽�K$�2��G��z�&�5��2Le��X;�D������]�9ަ=N+��,"�:-U?|�I/����a�=����2�M��
V�c|��wH:6�(���cf6�I���ehjf�DC
+�
�r)7N<��ƙȻ�F�Vp\�jM �KK��j*s
+hVPjYI�^
 6
w^8�t*�
��Yb�T���a�-��0DYn
b�eT�&
D`�j2
�#��e�3�O��A X��a�t'Q2����U�������wb��|k�Ģ����ҿ�O���P]ٝ������,�H�#�0��"�0
�pλ=]�Z�=n6ɡ��z4L�%`3 �2@�
�%'0��˸u%nI���9N��$�U��c�5mr���C�>@���������pk�(然�d�����⑙�8l�K��$1R�g�!�<��Y��6
.Wpsw��z�)(�����TE�,��9U���o�f S@�
8����
}{/�c�
,E
+��G�,�U���B��e������@e�	 l�W2Q);�k
�4Y�v��XQ�I)ϔ�
�C�k���J�lu%B
+���!S�\�,��Bd:_��^ar/����Ӆe�|��?
&?�����=	фeV��nqe�
+����B&x��i�<	B�1��j&
�b�/K�Uj
E,�&�az�����;\�h�'�*���:����$1����+��K�s�
�l�|-^0�TŇM
+C
DO!�5մڅ:춚<�M�+8j����
`5[/@k�o]��	*�p�f�iiM���5ﱖZ���t�f+�F�E�L�U�3��KcP�G<B'��.k:6��ߪ����n��G����3
y�2cH���L 3 :�rj�j�
3�D8�k�=�S}��d�,"5�{�q̛)1ֻe�<�u�\�~��1��"__�RABJ��+����ş|����Y6Kcн�VVZ�sL\�פr��;ұLeEͱ��	U�ٳOVW��#5����t�ʤ�f����Eɞ�s�L�H���AL~����l�(@���]L�R�ڋ���e:Ҳ'g:[
3 ��h����>q�`8tz���W0T)��3���!�<GĖ-��Q���DC',:su�[���k�\�����h��y���޾�l���rH�%f�Z�x�gR$���W�3U1�*C�*^�����w�
��~��e��@
*�܃yC25�1q[(�Gݛ���y{0���D��+g-�CRޚ�:�p�n���LZt��@M`"� [...]
+͉���.�q��
\��2�I�e`2����r<te��������%e|��0]oVA��t�ne��~RE62Rt�lw�x�

�
�W��L�Z\�S��w�O	���0s).]�
֔v{9\v�M�j�N�i������ĺ	Y.6]1��,YC�P�ԥ(�i^�
���6�o�� ʢ�L�蹫k�%[ƤmuK;�k�r�b#>L�����	b�:�*NR�>;�B~>ܕ��
�f���ԑ�39U�_�z~}�u�V\z^z��/��Fua}=$����Ty�3
��W4I/���$:<���ٝ҆�͉N����|]��9�����T+`w&��[��#����MOqV|l���g�L���%>MJ d���!��)3-T�G�JQ������P�a��5�{ţ�^5���v��Jq{g����+����@�#�x��-�y������GymK����~��dQ"�ڕk�] 4��H��OZ+:ϋp�_���펡����n���%�R_��saU;>몺ᗌ�"�(m�>���0��5�
��Il]/��%��J�n����G��Aנ���8�z������k
�[�.?��sop9㭼�@�,[4O�#���wP�p�4쭽Vt [...]
+R�
h)?'!�G��fxc:�����}r�~���9M�$�5d����])޺R�ZyՙҫΔ~Cg�_ߙ�����_7&���S��Ɣ?ۘ�1���T~�1���1}�/��lL�m�}�-������R�/���\_� 5��.�.n�I�
}��ϔwć
{XQ
8���� Y
�~O���)�T��C]� /��n�3�����R9M����5��)I"�g�u�t�K�S��_�X6��7��I��Ur����;;�
����%ǁ��W�
�4��h�s�����D�*�@CU�.|�
�x�����7d5��6��|�h���}�B-�+8Dc�[;�K��h�����Ɩ�gG���3TOQ2�|&�ձ,� ��o�MC��yM<|���q���	�S�F��E�zʁ�>>��Q��&��=�
���H���t��r��j�rɜ%�O����-
�
�Ք��X/冽ϊ���bG%�
cju��I6o^Ȫ�H�%?����Uy��������%��s��3��eǙ9 P.r��ej�cJȳ��7���tJ+l._/'P����ȓ�Bq�;I�v����7�Z�[x��  ��
Y�I�
�
��ۧΟ�a`��(
+~
�>+t�:�Cq`���h��I�"���
+	-t+�=�~/�����$X��Fy�
"p��?�y	0 ��� 
endstream
endobj
36 0 obj
<</Length 190/Filter[/ASCII85Decode/FlateDecode]/BitsPerComponent 8/ColorSpace 34 0 R/Width 76/Height 99>>stream
+8;Z\uh$SZT$q>[F(\Dhob;%7tD>"(&F!3F1oX-%-$ig8-!"kCRCTb75]32:U]!>O.
+'4&F^IBJ)n)A^H&n*=994KG<ZGuT(m2F21aQARD`]\.:Qfqg at 7A#@OHF+QO7T<>E0
+,[EK at epcGqbTmj-p3*&h!hXG1$N<K*h-npFluEsbnXKsezrlm1u<Xq[[~>
endstream
endobj
21 0 obj
<</OPM 1/BM/Normal/CA 1.0/OP false/SMask/None/ca 1.0/AIS false/op false/Type/ExtGState/SA true>>
endobj
29 0 obj
<</Subtype/TrueType/FontDescriptor 30 0 R/LastChar 123/Widths[531 573 0 0 0 0 0 0 0 0 0 0 0 0 531 0 521 0 573 0 0 573 292 0 0 292 0 0 0 0 0 0 0 302 0 0 0 0 0 0 333]/BaseFont/CIUGSI+Rockwell/FirstChar 83/Encoding/WinAnsiEncoding/Type/Font>>
endobj
30 0 obj
<</StemV 92/FontName/CIUGSI+Rockwell/FontFile2 33 0 R/FontStretch/Normal/FontWeight 400/Flags 34/Descent -273/FontBBox[-148 -273 1057 913]/Ascent 913/FontFamily(Rockwell)/CapHeight 679/XHeight 473/Type/FontDescriptor/ItalicAngle 0>>
endobj
33 0 obj
<</Length 8040/Filter/FlateDecode/Length1 14210>>stream
+H��W{XW��L��A:��A|��m$$�Zm�6��EPѪ��Z�
Ԋ���u������j˺�����Z_U	�׮뺥��g?�O1{f����{��s�9�L 
�0T�CΘqi�
Ku$�JsBA��̹�V0@@@��r>�4k
�I2��lr�nW�P]������ܜ��
6��W��yhV� j;���"A��눯'����|nF��MYp���8�l�u�������2�t6��'{~�����k�-������*�̭�蹖r�^6��,�!]	�(�`�=�j(�R�(s�c�o熣��Prl@ DzJV��wi��Qy<#�fVYy/�
X͜�Ɂ_-�RU��~I
I�b�4�1,�3mC��B�
+
+	
��Y

�����U�-�9^��'$�HJ�iHI핖�;�O�~�d
��C��84˔m�
>��#_
5zL���qy�'�d�M��˯Lz��@~���h�kJ��i%�K�f̜U>{�ks��}��E�+�,]���7W�|�]Y���wVW�y���}�w��ú?��`��M��l�����>�d��]���5{��o�������_������
:�ő/�:z�����N�͙oq��s�/\����+W�=
�P���p� �
��)�Lof
�`�2kأ�q����5|W>���|:?�ߩ����>@�Y���w���
��z��0�D3��J�FԒ�\�.{��<]"O�|
�󲧁�x�m��$O����Aj�w�w�w���\敏�W7�ZԸ�q-���y���͞J�J!�S��yՓ�I�|S���Y
fv��/�I�0
+<~�zD�[���f-~��X�J����
+5����]��&������7>�'���ь�؅�8���GVÉ�(�1��78���?�gq�b&��q
��
\���x
Ř��(�4L���b��V�0嘃����|���X���&,��V`	��� .��q��
�u�3
�>�ǗX��X�/��0q�nZ.c�/���x\(�P�3�i8-����zs�\g~ /�2b��������-�[�,hY,�'�O�� 9j$E�T.�=�}l%��z4�C�j�����Q�Q�x�����Vks��֟[�������j��ӭ';␦����¢j�j�j�j�j�j�R�hn���I��'F��0q��?A�����=��X��HxV�"�~���(�1����7�η��F����^���n��~j}*�|��A��A?-=�8H�O�=FC�
���C�/":ɻ�{���.y(�&y�F�_tB��(�S��o�ESB�~�n'j
�g����UX�
�
	+[����#�bVQ��a%�y��z)
+���~�g(!*����w!f����8˼�
f2��QG�y�7�߯o����i�RS
=��z$&t�:���nqڮ�1]��4���Ν�BC��T�J�2Ha���&6Р��t�T?��A^�Էt""
0�>t(�!��C||;?Z�F��l�q
,�DD��F���
E�����b�<E�59�v:�-�y�Ҝ�OE�]lL���)�	!2�(�-�a,�32�Z̃jX��RS���&��Y,+�D��4��5�޺��*б6*�G1b�I
���SD�CD%_�R箪U#�nu
+N��T9�X.��ʓ�h���ŋ
+r./Z��f��r�]vZ�l:�X9��L��:�A�Y
7���b�����
3��X�{/n
k��I��f����f�
�3sq]%&-5�w'��b)f�C��\̻+
�\��
dS���x���mv
+f�Ù��n�y򆼉V��T�l�_�7 �B�سm:_�G�ZMRb�#[�k{���ܦ�
F��/�E�Z2͔��L�
2e��l
�ʹJT&��}"c�~zP��KԷ!��bw�-oq�ݎZoE���w�ȑ�2����X�T��@�V�T�D���
��K��Z_���mmlN
�+D�U�>#�UyV
O�o�i�NV��#ڷK@"�fR��e�jT��^
����$tV��O�X1���y�k�˜f�~�%M]�&j���hӴ�
e���b��Jl�tVGG�]�D&�)�B�^�4Y9-k�Q����`}��]
D'�Ԅ3��6�Jk�v��W��@��8a�؉V߽�J���ЏX tFu�Fq�

�
���>i�&uҚҚz���u�	�0���]���kT�xE
e���y�ˑ���ꉝ�;�Aa]�DM!�0 ��f�0<l������2Y3;P�``����=:A��	:!4X�
V���
��6�
+�M�c�cؘ�C�&"�K��VG(��##�����_��M
g�۽;��z�z�!�P$���B~�X<�x&��a
������Bl�!0	���i)����%HC&���-�N���0�4SR�'}��̄δ�:�ۓL��L��_����n������owo
.�'
"vː��!Ġ����žO����{�v��S�:"%&-�%J��RSfe%�Bx#2L��ʒ�	�a�U�����~<����k�7����Jm����f�,�|b˧��5�kYx��gm;�ΥM�?=
�o���LM󋗇�~���W�_w��nY��+]1����戼����*�<�_���
�;�-�
O�=�1a�o��"�S�aX�)�a��x��(jx
�'4��
<4`��Ύ�1�XJ$
\(Q�?TT=�����X�ArG�}��pV�����s|�|��"k��;V'����
p@

7eK�;�<�)k}��϶f��q�(͟��X����#��9b��"XmFtl3�Ţ��S}W��1ӱ��=��Ԝ�P�B
3M_Iħdٸ�Y"�1�H��`4,2FL@�0��9:ٓ��b�!z˜��}�7

S9�/
�?��/^~�'o�����$�O��8�ʮ���"
w�b;��ݷ�’���p����;���W-�]�
�p�.9�%�٨M��Y
UYJM��e�V�z�v�>��}�~Y��]'r8�٭zе�N'��[i�(�
��0`5Z�Fuo�NO���^OrI+���j�$���W��
�2��8 ���`��@�
���\LrZ��:g at p0Wp�⺗�w���V
�+���2�ʉ���˭�o�r`�j�����S�XS��O����/>
��J�"�T]�|]H�*�j���UD��>OH�W�pA���:b��X�#V�1��D1�H�r���rt-Ҋ��j?6�|�q_:�
�@*�ęO��J+Q(����<����K�
�%����O
�j>��y2�\�7�z}�.b���.������;X�f�9��&V��4I-���"�r�ܨ!�"9�����4w
}Z��Z�v#�<XO��4�D5r�_m
K�c�r�9�h��w�0��%S*
�i���3�m~�hH>����O'��xG,�
�ݲ-F������0��c��
�@U�%�9^5L���q�*s�d�
���Z[�F�U���|%�Npez��pfd��`U�O�B�Q�:�����Ŀ w�,?*[Sq�|�A��tGl�62 P�
��/	�¹�%��ڢ�zt������Ag��s�,i��L��U�;k�_�"A�Ǟ��a@��r
�y�
0Y1� J
����(JԂ�]H
R��.햎H���6�KT��8QZ��
��Ah�ڈ
��s(?�#�I�tC1	�j��^��]
,ZԴ9��;zN~7&������ضC�7ȵJ^L�P��
�u��9Ѽ������p�dd��x��v68�s�p�N��cb;Ajʪ��DXrW"��j�\bQ&����'�C(
l�(&ު�f����*���3�\ۺQ3�yZ�7ۗڼO.��h����^vtA��
�E?��n�QO��齵�/�jl#�5��?Cn���������<����.>�����K|I��Ÿ<*����ۿ��J�n��h��\�a9�!��� D��	`Q��`��Ϟ�7!����|
�H�X/A�"���;�m��~��IpנFm�N�w�8���$܄
�V�����j��B
��P�{���ݍ<
"@�p
2�~
��J�����k;r���	�/!����� ���q�z.�]�C�>��V�Z���p����z�Z�v
�3ўO��B��B�=|����=�F(�Ⰼ�A
���*_2�:
�k�N
��/'a]�zg3�
�n�<���g��-|
+���H�;r��Z=��_�xM�J8�˧�nw�݄��Q!����r�
e�1n��~��gзS���
�z�^�gT�pu(��^?�=�Z��͘g�c�x2'�MЄ}��.8��añ?e9��W8�����c?5��B
N�1�P���8�6y5e�rD��(��4L�a��q��Ɓ)5"�`D�1�q���ki(q����|�`1��8���x����gX��|a��9�b�x:OM,�Y^	�[�y��B��/ �!��v�����?,?'��XcI�$mS�5�*e�?���P~����e��
+��n
��(�x�s��bw�衇k��)���?\�E�H�
�	��y�5i[ -�J�*l���Eh!ޔ����ŴM@"�I��i�C�L��Ѿ����M�*���Ed�X��;�U%GU��7����1BJE�L�`���G�LHB\1TW��~��R��tp_P�7\p_PTDq�q_Q\q�-n��z���/��w_UO'��'��9N�����}�}��_��"�M�θ�+ŝ��<~�a
���駬Ɣw
��c��{s<$�����XQn�Lxe�+�T�
���D���m�
9
gUV�^�X��qC�kW�)���9^&��O�x�h�M]u]Kc���g����/g|��C1>���y�'r�5�O�<�2>�ǯg|Ͻ��J�9��t�1|V16:���w1^����0�f�1�o
�qӌ��M��\=5�kj�ԅ�NnQ
��}ҵ\;�-'�z��tSk�������뭵����ٕ��0�^$��0���NU�Z��Й���w��˶��v�odzV�>�4k������=�%�XvT� [...]
�
^�����N��c)�P���*̓gX�xM��kv%�������?Q~�/����s��X�¢�{���ož3,̚�s֦h��ǭ��Vޥ�3�vr��Y(��.0������/
W�
�3d_A�7{ܗx@�9�q嚋�j:���Q�
�f�
3�"�l*w�(��)��/��g�?����3�<|���>�XGǔ��=�W�؝{��w��~�2��h���ݬ��5-����h��F���o�)�Y����NHG/�ơ��~�ڧ
�r/%}o%��qp���h:�+k��s�{�#��ſ���ӣ���u���X�����
���t���e��s�W�0N�1ik:t�9K�!����+��K����<�0�ʨ��a���:hb��8��}p<N��8	'����p_���p:��*X�?
��L<ga5��l<�9X�Q�ù�z���b6b
��8�#p
�G��Dž��L�"\��`
+��%�[1�l�e؎
؉˱
����<O“q��ݸ6Zp�B���P؃Yx� D���� E�9�c=��Ux*����x&��g�9x.����|� ��x^���x^�W�x^�k�����q
ހ7�Mx3ނ��mx;ށw�z�
��
xދ��F�7�� nƇ�a|���q|��V|��~|�|����|_—�|_��q��o�v|
��w�]|��
�~��Ǹ?�O�3�
��A��¯��w�w���=����'�Y�$��Ȫ\p<�ٛ��t[^=���~��U7���j8��#��f��;p
�����Zd�2�d;�3◵[�*�d�
yYRqB߷��^ԕA�r�Э$��t��d
��@�����vc)��0��m5'K�Z�$rN���H��A-��bT�d�T�����;1�{ɘJ��~!��cqQ��άLuM�A���G����8J9*v2��.�ℱ�tb{N
��j:��+�Zv\�+^��+��sem�U�����2
��#�tu�:i;Y*��&l��]^��m"l&ذ
�'j�b
O�؜�)rK3S��r`���T&F�5��1g��&44��@h�
MhfB3�
�f�P��td\u�
YG�tD;ϣ��hT[���T�T�u�4�'���
ˎ��[s¨ǒ���v�odzf0R�6��ӆ�'�3��U��^M�WA�Դ#9���/J=
�Y�h���\�nג��
�q8�C7s�R��(e���a�����M�>Y!��di���$�1faw7���if�
��
�
��4�����۰#Zo�i�T���'�u2j��C6����y��穈4Zf��T�M�f�4439�O>�#���{>;���܅�G��q
��6*�jqCHp��
8�.�w�ّ��(��Q;B(�%m�*U>�>Зb5}h%Z�V~&�}I����Ԫ+�vfvf�fog2�Jz
+�I3Sfy&��Y]����
ˠC3mS�k�)�I�y)}Ur�
ts��
��<��\F6�6��n�2�Y�IK<�0���6�Go��݇Dv%�J��F�fr� �Ӈ��0p��N
�8h��
�
�/4��A̠3l�
��n�􌚞�<���>�ߎ�&�
�h�fb�9M_� a: ,6�동�{��D.}5��ͤb�,<A��iz2�l#�P
d$OKi "�@6a��	[�|�����'�L�f�L.�M*��Ȧ�ߛi 6��]��[
D%b����~�3`�P
�=2
���H*��\����W�
M�[o�G�J
��T�����t��᧕?��R~Al�;�[���/�|5O��vXS���۪�j�,�����C�o�Hou�8�l���-뎆��
��Y��t�x�E�F����׈'h�.�%z��=4���>z��X;E�/�����%��A�(~F�^�W�E�+P
+�a�
m)�?*�䣾�,L�y5-�
�R��w�-��B���f=�y[<�̉�$�')���J�%�VEB��%E�R��E��3�X�, �w � E�M�
@p
�s����a���`�a�8�0a�l���"��]���r�
Y
�F���?
?��w#�;�
	�\*� 
cg�<����	�qq� ���r��$a�؅Nr� Q@��h�y� �w��vD���淅moz7�MaS�o���xW�aE�%o�/	%�� D,{e^dOx'�	aB�5T�5���*��*Se��4�1�W�*^eVY\Fe\f�,�Csx��c���0
+��(��L��A�A&�b��\�{
�.�����=��g��]
�ɽ�����ƛ���ݯ��y�w�1�K���\-B��㏺���.��t��NǑ���;��N
+Y�%�}d'���z�N��$؋��!j�|��E G��^���9��?�9��c�}�U�r{Q�5|{���̥�
$��̱)��
�=
+�۴���1Mi
i=�Rn
Q~��F�_��]�oJ]�T6��]V/�g&�W�9SU���Z�N8c��C?]�\�a*Ȕ5�R��*����G� JV�
endstream
endobj
34 0 obj
[/Indexed/DeviceRGB 255 35 0 R]
endobj
35 0 obj
<</Length 428/Filter[/ASCII85Decode/FlateDecode]>>stream
+8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0
+b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup`
+E1r!/,*0[*9.aFIR2&b-C#s<Xl5FH@[<=!#6V)uDBXnIr.F>oRZ7Dl%MLY\.?d>Mn
+6%Q2oYfNRF$$+ON<+]RUJmC0I<jlL.oXisZ;SYU[/7#<&37rclQKqeJe#,UF7Rgb1
+VNWFKf>nDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j<etJICj7e7nPMb=O6S7UOH<
+PO7r\I.Hu&e0d&E<.')fERr/l+*W,)q^D*ai5<uuLX.7g/>$XKrcYp0n+Xl_nU*O(
+l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~>
endstream
endobj
6 0 obj
<</Private 7 0 R/LastModified(D:20100419174249-07'00')>>
endobj
7 0 obj
<</CreatorVersion 13/ContainerVersion 11/RoundtripVersion 13/AIMetaData 8 0 R/AIPrivateData1 9 0 R/AIPrivateData2 10 0 R/AIPrivateData3 11 0 R/AIPrivateData4 12 0 R/AIPrivateData5 13 0 R/AIPrivateData6 14 0 R/AIPrivateData7 15 0 R/NumBlock 7/RoundtripStreamType 1>>
endobj
8 0 obj
<</Length 1277>>stream
+%!PS-Adobe-3.0 
%%Creator: Adobe Illustrator(R) 13.0
%%AI8_CreatorVersion: 13.0.0
%%For: (Michal Migurski) ()
%%Title: (logo.ai)
%%CreationDate: 4/19/10 5:42 PM
%%BoundingBox: 170 331 427 540
%%HiResBoundingBox: 170.5942 331.1299 426.0801 539.7422
%%DocumentProcessColors: Cyan Magenta Yellow Black
%AI5_FileFormat 9.0
%AI12_BuildNumber: 406
%AI3_ColorUsage: Color
%AI7_ImageSettings: 0
%%RGBProcessColor: 0 0 0 (Global Black)
%%+ 0.6627 0.4667 0.3647 (Global Cafe)
%%+ 0.451 0.7451 0.1176 (Global Green)
%%+ 0.8 0.8 1 (Global Lilac)
%%+ 0.3569 0.2431 0.1098 (Global Mocha)
%%+ 1 0.6 0 (Global Orange)
%%+ 0.502 0.5529 1 (Global Periwinkle)
%%+ 0.9843 0.6824 1 (Global Pink)
%%+ 0.7294 0 0 (Global Rust)
%%+ 0 0.6275 0.7765 (Global Sea)
%%+ 0.5412 0.8588 1 (Global Sky)
%%+ 1 1 0.2431 (Global Yellow)
%%+ 0 0 0 ([Registration])
%AI3_TemplateBox: 306.5 395.5 306.5 395.5
%AI3_TileBox: 0 0 612 792
%AI3_DocumentPreview: None
%AI5_ArtSize: 612 792
%AI5_RulerUnits: 2
%AI9_ColorModel: 1
%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0
%AI5_TargetResolution: 800
%AI5_NumLayers: 2
%AI9_OpenToView: -173 752 1 1002 715 18 1 0 67 73 0 0 1 1 1 0 1
%AI5_OpenViewLayers: 76
%%PageOrigin:0 0
%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9
%AI9_Flatten: 1
%AI12_CMSettings: 00.MS
%%EndComments

endstream
endobj
9 0 obj
<</Length 9543>>stream
+%%BoundingBox: 170 331 427 540
%%HiResBoundingBox: 170.5942 331.1299 426.0801 539.7422
%AI7_Thumbnail: 128 108 8
%%BeginData: 9392 Hex Bytes
%0000330000660000990000CC0033000033330033660033990033CC0033FF
%0066000066330066660066990066CC0066FF009900009933009966009999
%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66
%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333
%3333663333993333CC3333FF3366003366333366663366993366CC3366FF
%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99
%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033
%6600666600996600CC6600FF6633006633336633666633996633CC6633FF
%6666006666336666666666996666CC6666FF669900669933669966669999
%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33
%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF
%9933009933339933669933999933CC9933FF996600996633996666996699
%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33
%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF
%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399
%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933
%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF
%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC
%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699
%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33
%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100
%000011111111220000002200000022222222440000004400000044444444
%550000005500000055555555770000007700000077777777880000008800
%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB
%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF
%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF
%524C45FD1BFFFD18527DFD04FF7DF8F852FD05FFFD065227A8FD52FF27FD
%17F852FFFFFF7DFD04F87DFFFFFF7DFD07F827FD52FF27FD17F852FFFFFF
%52FD04F852FFFFFFA8FD07F852FD51FFA827FD17F87DFFFFFFA8FD04F87D
%FFFFFF7DFD07F852FD52FF27F8F8277DA87DA87DA8FD04F827A87DA87DA8
%52F8F8F852FD04FF7DF8F852FD05FFA8A8A852F8F8F852FD52FF27F8F8F8
%FD06FFFD04F852FD05FF7DF8F8F87DFD06FFA8FD09FF52F8F8F852FD52FF
%27F8F827FD06FFFD04F852FD05FF7DF8F8F852FD10FF52F8F8F852FD52FF
%27F8F8F8FD05FFA8FD04F852FD05FF7DF8F8F87DFD10FF27F8F8F827FD52
%FF27F8F827FD06FFFD04F852FD05FF7DF8F8F852FD10FF52F8F8F852FD52
%FF27F8F8F8FD05FFA8FD04F852FD05FF7DF8F8F87DFFA8FD067DA8FD07FF
%52F8F8F852FD0BFFA87D2727F82727527DFD3EFF27F8F827FD06FFFD04F8
%52FD05FF7DF8F8F87DFFFD07F8A8FD07FF52F8F8F852FD0AFF52FD09F827
%A8FD3BFFA827F8F8F8FD05FFA8FD04F852FD05FF7DF8F8F87DA8FD07F87D
%FD07FF52F8F8F852FD08FFA8FD0DF852FD3BFFA8FFA8FD07FFFD04F852FD
%07FFA8FFFFFFFD07F8A8FD07FF52F8F8F852FD07FFA8FD05F827527D5252
%FD05F852FD43FFA8FD04F852FD0AFFA87D527DFD04F87DFD07FF52F8F8F8
%52FD07FFFD05F852A8FD05FF52FD04F852FD43FFFD04F852FD0EFF27F8F8
%F8A8FD07FF52F8F8F852FD06FF27FD04F87DFD08FF52FD04F8A8FD41FFA8
%FD04F852FD0EFFFD04F87DFD07FF27F8F8F827FD05FF7DFD04F852FD0AFF
%27F8F8F827FD42FFFD04F852FD0EFF27F8F8F8A8FD07FF52F8F8F852FD05
%FF52FD04F8A8FD0BFFFD04F8A8FD40FFA8FD04F852FD0EFFFD04F87DFD07
%FF52F8F8F852FD05FFFD04F827FD0CFF52F8F8F87DFD41FFFD04F852FD0E
%FF27F8F8F8A8FD07FF52F8F8F852FD04FFA8FD04F8FD0C275227F8F8F852
%FD40FFA8FD04F852FD0EFFFD04F87DFD07FF52F8F8F852FD04FFA8FD15F8
%27FD41FFFD04F852FD0EFF27F8F8F8A8FD07FF52F8F8F852FD04FFA8FD16
%F8FD40FFA8FD04F852FD0EFF27F8F8F87DFD07FF52F8F8F852FD04FFA8FD
%04F827A8FD0F7DA8FD41FFFD04F852FD0EFF27F8F8F8A8FD07FF52F8F8F8
%52FD04FFA8FD04F852FD51FFA8FD04F852FD0EFFFD04F87DFD07FF27F8F8
%F827FD05FF27FD04F8FD52FFFD04F852FD0EFF27F8F8F8A8FD07FF52F8F8
%F852FD05FF7DFD04F852FD0BFFA87DA8FD42FFA827F8F8F852FD0EFFFD04
%F87DFD07FF52F8F8F852FD05FFA8FD05F87DFD0AFF27F8F827A8FD41FFFD
%04F852FD0EFF27F8F8F8A8FD07FF52F8F8F852FD06FF52FD05F87DFD07FF
%A827FD04F852FD3DFF52FD0BF87DFD06FFA827F827FD05F827F87DA827F8
%27FD05F827F852FD04FF27FD05F8277D7DA87D7D27FD05F827FD3EFF27FD
%0BF852FD06FFA8FD0AF87DA8FD0AF827FD05FF27FD0FF827FD3FFF27FD0B
%F852FD06FFA8FD0AF87DA8FD0AF827FD06FF52FD0DF852FD40FF5227F827
%2727F8272727F8277DFD07FF2727F8272727F82727F87DFFF827F8272727
%F827272752FD07FFA852FD08F82752A8FD42FFA8FFA8FFA8FFA8FFA8FFA8
%FD07FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FD0BFF7D
%7D5252527DA8FDA9FF7D7D527D7DA8FFFFFFA87DA8A8FD3DFFA8FFA8FFA8
%FFA8FFA8FD2AFFA852FD07F8277DFF52F8F827A8FD3CFF7DF827F827F827
%F87DFD29FF7DFD0BF82727F8F8F8A8FD3CFF52FD07F852FD28FF7DFD10F8
%27A8FD09FF7DFD32FF7DFD07F87DFD28FFFD06F85252522727FD07F8A8FD
%08FFF852FD32FF7D272727FD04F852FD27FF7DFD04F852FD06FFA8FD06F8
%A8FD07FFF8F852FD36FF52F8F8F87DFD27FF27F8F8F827FD09FF27FD04F8
%A8FD05FFA8F8F8F852FD36FF27F8F8F852FD27FF27F8F8F8A8FD0AFFFD04
%F8A8FD05FF52F8F8F852FD36FF52F8F8F87DFD27FFFD04F8A8FD0AFF52F8
%F8F8A8FD05FF7DF8F8F852FD36FF27F8F8F852FD27FFFD04F8A8FD0AFF52
%F8F8F8A8FD05FF52F8F8F852FD0DFFA8A87DA8A8FD13FF7D7D7DA8A8FD0C
%FF52F8F8F87DFD04FFA8A87DA8A8FD11FF7D7D7DA8A8FD08FFFD04F827FD
%0BFFA8A8A8FFFFFF7D272727FD04F82727F87DFD06FF7D27FD07F8277DFD
%0DFF7D27FD06F827A8A82727277DFD05FF27F8F8F852FFA87D27FD05F827
%FD0DFF5227FD06F8277DFD06FF52FD04F827A8FD0FFFA8F8F8F827FD06F8
%52FD05FF27FD0BF827FD0BFF52FD0AF852F8F8F87DFD05FF52F8F8F87DA8
%27FD08F827FD0AFFA827FD0AF827A8FD04FF7DFD06F82752A8A8FD0BFF7D
%FD0AF852FD04FFFD0EF827FD09FFFD10F852FD05FF27FD0FF852FD08FF7D
%FD0EF87DFD04FF27FD08F827277DA8FD08FFA8F827FD05F827F8F87DFFFF
%FF27FD04F8277DA8A87D27FD05F8A8FD07FF27FD05F827525252FD07F87D
%FD05FF52FD07F827527D27FD04F827FD07FF7DFD05F8527DFFA8A852FD05
%F87DFD04FFFD0CF8277DFD09FF52F8F8F852FFFFA8FFFFFF7DFD04F852FD
%06FF52FD04F87DFD06FF27FD04F8277DFD05FF52FD05F852FD05FF27FD06
%F87DA8FFFFFF27FD04F8FD06FFA8FD05F8A8FD06FF7D27FD04F8A8FD04FF
%52FD0CF827A8FD07FF7DF8F8F852FD08FFA8527DFD08FF27F8F8F852FD05
%FFA8FD04F827A8FD07FF7DFD04F87DFD05FF52F8F8F8277DFD06FFA8F8F8
%F827A8FD05FF27FD04F8A8FD09FF27F8F8F852FD05FF7D52FD0CF8A8FD06
%FF7DF8F8F852FD13FF52F8F8F852FD05FF52FD04F87DFD09FF27F8F8F852
%FD05FF27F8F8F852FD07FFA8FD04F8A8FD04FF7DFD04F852FD0AFF7DFD04
%F8A8FD07FF7D52FD09F827FD06FF52F8F8F852FD13FF52F8F8F852FD05FF
%FD04F827FD0AFF7DF8F8F87DFD05FF52F8F8F87DFD07FFA8FD04F8A8FD04
%FF52F8F8F827FD0CFF52F8F8F87DFD0AFF7D7D27FD06F852FD05FF7DF8F8
%F852FD0AFFA87D2727275252A8FF7DF8F8F852FD04FFA8FD04F87DFD0AFF
%A87D7D7DA8FD05FF27F8F8F852FD07FFA8FD04F8A8FD04FFFD05F8A8A8A8
%7DA8A8A87DFD04A87DF8F8F852FD0DFF7D27FD05F8FD05FF52F8F8F852FD
%09FF52FD08F87D52F8F8F852FD04FFA8FD04F87DFD14FF52F8F8F87DFD08
%FFFD04F8A8FD04FF27F8F8F827FD10F8275252277DFD0BFF52FD04F87DFD
%04FF7DF8F8F852FD08FF27FD0EF852FD04FF7DFD04F8A8FD14FF27F8F8F8
%52FD07FFA8FD04F8A8FD04FFFD1AF8FD0BFFA8FD04F87DFD04FF52F8F8F8
%52FD07FF27FD04F827527D5227FD06F852FD04FFA8FD04F87DFD14FF52F8
%F8F87DFD08FFFD04F8A8FD04FFFD06F827F827F827F827F827F827F827F8
%27FD04F827FD0CFFFD04F827FD04FF7DF8F8F852FD06FF7DFD04F87DFD05
%FF7DFD05F852FD04FF7DFD04F87DFD14FF27F8F8F852FD07FFA8FD04F8A8
%FD04FFFD04F827FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFD04F8A8FD0B
%FF27F8F8F852FD04FF52F8F8F852FD06FF7DF8F8F852FD08FF27F8F8F852
%FD05FFFD04F852FD14FF52F8F8F87DFD08FFF8F8F827A8FD04FF27F8F8F8
%27FD11FFFD04F827FD0AFFA8FD04F852FD04FF7DF8F8F852FD06FF27F8F8
%F87DFD08FF7DF8F8F852FD05FF27FD04F8A8FD0AFF7D27A8FD06FF27F8F8
%F852FD07FFA8FD04F8A8FD04FF52FD04F87DFD0CFFA8FFFFFFFD05F852FD
%09FF52FD04F8A8FD04FF52F8F8F852FD06FF52F8F8F8A8FD08FF52F8F8F8
%52FD05FF7DFD04F852FD09FFA8F8F8F852FD05FF52F8F8F87DFD07FFA8FD
%04F8A8FD04FFA8FD05F8FD0BFFA82727A8FFFD06F827FD07FF52FD04F827
%A8FD04FF52F8F8F827FD06FF52F8F8F852FD07FF7DFD04F852FD06FFFD05
%F87DFD07FFA8FD05F8FD05FF27F8F8F852FD07FFA8FD04F8FD06FF52FD04
%F827FD09FF7DFD04F852FD07F8277DA8FFA8A827FD05F87DFD05FF7DFD04
%F8A8A87D7DFFFFA8FD04F87DFD05FF52FD05F827A87DA8FFFFFFA8FD05F8
%7DA8FFFFFFA87DFD05F8A8FFFF7DA87D27F8F8F852A8A87DFD05FFFD04F8
%7DA87DA8FFFFA827FD04F827A8FD06FF52FD05F852FD0BF827FD06F827FD
%06FF7DFD07F852FFFFFF27FD04F8277D5252FD0BF8A8FFFFFF52FD07F827
%FD07F852FFFF52FD0BF8A8FFFFFFA8FD07F852FFFFFF7DFD06F827275227
%27FD06F852FFF8F8F82752FD0CF827FD07FFA8FD07F852FFFFFFA827FD0A
%F85227FD06F8A8FD04FF52FD0DF852FFFFFF7DFD0BF8FD05FFFD07F852FD
%04FFA827FD0EF852FFFFF8F8F827FFA8FD0AF852FD09FF7DFD06F87DFD04
%FFA827FD07F827A8FFFD07F8A8FD05FF7DFD0BF87DFD04FF52FD0BF8A8FF
%FFFFA8FD07F827FD05FFA852FD0BF8277DFFFFFF7D525252FFFFFF7D5227
%27F827277DA8FD0BFFA85227272752A8FD06FFA85227275252A8FFFFFF7D
%527D527D527DA8FD07FF5227F827F827F8527DFD06FFA8527D527D527D52
%7D525252FD05FF5252527D527D52A8FD08FF5252F827F827F85252A8FD0F
%FFA8FFA8FD37FFA8FFA8FD2DFFA8FFA8FDFCFFFDFCFFFDFCFFFDD0FF52FD
%072752A8FD76FFFD09F8FD76FFA8FD09F87DFD75FFA8FD09F87DFD75FF27
%FD09F827FD75FF27FD0AF8A8FD73FF52FD0BF852FD72FFA8FD0DF87DFD70
%FFA8FD0FF8A8FD6EFF7DFD11F87DFD6BFF7D27FD09F852FD09F82752A8FD
%5FFFA8FFA8A87D7D5252FD0BF827FF52FD0BF827527D7DA8A8FFA8FD43FF
%A87D7D5252FD0627F827F827F827F827FD14F87DFFA8FD14F827F827F827
%F827F8FD0427522752527D7DFD2DFFA85227FD26F827FFFFFF52FD26F827
%52A8FD27FFA827FD29F8A8FD04FFFD29F8277DFD24FF7DFD2AF8A8FD05FF
%A8FD2AF827FD22FF27FD2AF87DFD07FF7DFD2AF827FD20FF52FD2AF8A8FD
%09FFA8FD2AF827FD1EFF52FD29F827A8FD0BFFA827FD29F852FD1CFFA827
%FD27F8527DFD0FFF7D27FD28F8A8FD1BFF7DFD25F85252A8FD13FFA85227
%FD25F852FD1BFF27FD0EF827F827F8FD0C2752275252A8A8FD1BFFA87D52
%7D525227522752FD0C27FD0EF827FD1AFF7DFD0BF8277DA8A8A8FFA8FFA8
%FFFFFFA8FFFFFFA8FD2FFFA8FFFFFFA8FD05FFA8A87D7D27FD0BF8A8FD19
%FF7DFD09F827A8FD4FFFA827FD09F87DFD19FF52FD08F827A8FD51FFA827
%FD08F852FD19FF52FD08F87DFD53FF7DFD08F852FD19FF27FD08F8A8FD53
%FFA8FD09F8FD19FF27FD07F827FD55FF27FD07F827FD19FF27FD07F827FD
%55FF27FD08F8FD19FF27FD07F852FD55FF52FD07F827FD19FFFD08F827FD
%55FF52FD08F8FD19FF27FD07F852FD55FF7DFD07F827FD19FFFD08F827FD
%55FF52FD08F8FD19FF7DFD07527DFD55FFA8FD07527DFD8CFFFF
%%EndData

endstream
endobj
10 0 obj
<</Length 65536>>stream
+%AI12_CompressedDatax��y�#ɑ'�	�;��C���b�}�dP���n����',���V��*{�Mϧ�v�����n���#��`��v��g?������׏��y�)n�'?ٽ������7��ͯ޼����{��O����
���j������

����7��?��ë?߽���÷������n~�3���>��w�y��qs��3�Bw���G�Ns[��eq����n���{z����ûo���t_�7u]�4U�6�������?��l��}�
�)�qtGw�b(ʛ�
7}SU�s��W��޿�����W�>�
�<�����w�n~s��{���߿y��כ��ݫ���

�}t�����_��0�����������_�_
�ܻ�y{��f�ݴ�UY}=}zx��������uYSt���k��?|p����_���[��W�?�u��7��_N��݋�~��7�r�������)6]����4]���]��q��o�尦-����e��Q�|�N��7��K [...]
+7�}�ޔ��MK�
}v�\�������w��'_������o���������^���W7��
�K?���������
߿[��ߘuVl~��������[���Tr#�έ='��=��q��
�����?=~�������f�n�}��7e5�n_?ܿw�|�ݾwo��^ݿ~x���v�{�����o?:�p��
��O��!wx�ۻW��D�����ޅc��wx�Wr�{�$���G��G���t�:��
�Ǽ����#
�H�>�c��G��Ot�':�S8n?鱯������kw�����\�~�x��������t��ӧ7o�?�~w����w�u�x{����޸^z��͝�����w���o��{}����_n���6�
?����v;�~���݇?������>�����߿�}�)}��������w�zxw��{��է7��
p�^�o��O��M�~�����|���-��f�ë�7���o��}x���oݶ�����k���QO8�����ݽ����`ly�����ϑw� [...]
����ۻ��޾���ѭC����՝�
�~F��ϯ��ma��F15�{����_�|-�JP[�x�/�껴!�����8�'�����O�����{�cٕ�|�.Vߺn���Ongt���ûo�2���Y\��� '�*���?�r(�sk���ݛ��|s���-߽|�镓 ��,s���/��{w��޺���M9��w߹�'_�8����8��*��nq�׽S>n����q��믾���7_�����[꾯]w~������� ��/�|ro�����~��G�))�_�}��S�ܒ��taz����'ܫ�~��{z��������~�V���/���Pt��_}z�x�D_����������������-�L~_��
��%~��﨧�����䔝��[��������Ͼ�s
���r_�y_��޻�˜���>|
���3�%��o�l4�|�%ϫ7�_}ﴉ��϶����w������ܿy��\���v���u���c����$�k�Bp=�n||���zo����w�x��|�#�:c��{ [...]
ܯ�4��8O�ۀ����ʝ�ě:<��9�|�á;�n��Cu��w9\��
+�s���~��M�{w{���ʪ�j7�ڪ��j���T���C]�U]�9��T�u����O�'��u��l�iU�t�p�l�|��R�l�vS�s�R�N�rӷ��~��΍�<C�EC7
�8L��
Q1�c�w;��8n��ڏ�m����i�ݶǛr��꩚ʩ�
܈��n����a�[��P�-��8����ɝn
w�Ν�k�E�X
�a�a�}��:��wWԺ�V�P�7}��'w�c?�[�ܢi�
U���n2�ܭn��܍w]
�j�nʮhn
�݊�\���z�c����_�n��xS��{��x�ֳ_٣_�� h�8x�P��(�Ȼ1�bd焊-#
+��v�]�����.]+*7M�`�u�}rÿu��ݡ�
�Bݴh���$)]+ʃk��<;צ�ud9z�v({�$wN�4���X�(��kn�;�ܘ�6�M��>���[�u
����n������{wo8�2�~�i�w:�~��x�(j[�5�;��89���.���V at cϣ��?���0�
q�:�N�8錿��3�����>���~���
+j�M����~5�o��R~���ÿ������=����
��
_�q^vo��/ܴ��t��a���$3��W��]��]�n��*k<�p��g^�#i
8����.�Z�K���:�R
y��"�x���W(;3J۽G������rw"��P�V^��	�9���E�~8 K��p�怲xBi<�<.Q"7$���
���;a|�
+'�+7!��6!��[��H=5!ՅH"}H4"Չ@�"Q�P5b�(hG�Q۫~��Hx���,���۳���o	�m`1ث(lQ
6,�P���J
��^>���rrY�m��cs;)�o�'��q�m�S�;�
fv�=������]����]��?;�D@� ��I)���j+���
x��í�o1~�N�$��@#�F
+p�Dm�U[�t��Q�(X7
�ii���[�PEKݫ��G�{���
����~�������'��2�g�6�o}�f�_�>w��}�v�����!u8�P�0�a��7��-����I�����N�����T�
�2�p
�L�S��{X��t��K
X9�"g
c���"���9^�x�#j�:A��񫽝�i�Ɖ�T��gG���(�DrM*�f�spa:��
+%YM���wt��7�=�D�W�~J�)���wO�e��R6�
���'P�[Qކڑ��T���]��lЂ�?-[Q
�����R@��޺���+��غŸ�Vlk���.4��B�������
�Ͳ
+
�R��#Z��?����.[-g>��A��D/$��U����bz@����K+xFaL�X�q�]�,��̮���e^��
�lq
f5�a�kًU���$3Œ�x�zm-3�liѶb �?�;7��B���
 57��ĭ�0�~��J6��6�X�hW���=ν	g�S�O�
N��Oy7���&�
F\!=+�~
U��i�*�;\z[�� q˱��)���b
QL��J;1X�b+����"Y�Nh���Fg6ڍ�r,q3�Q�G� ņ
V�ؑ�`�-i����$���
Ÿpn���w"�7�O]O
/�N��]��-�M}M=�&8<�
nMp�l��Z+<�p��f��&w���bh�i�:��:���d��5�H����<�ꎅ����
���������t��
+BzLI��Z�{�<'�Gw��0 at S�d32C���,QPS4g���Q1H�-��	4s�7��@�	uP��b���8*�U!Ί�VrX�ˢ*"=���׶�	�~�FZ0��3�y�
zV�I��9����n2�
yhZ���������ߗ�4C��1�qn����.��0��Т���,���*�lPgq��K����<�񘚏4�4��i�/�:?x��֖MF�㮢�l�͗5X�t�Aώ�
+3�P
��޳�du�ր��D�ivC���{@���Iߝ�³�����ƛ#NJ
^��!�"]�8x��lM�l�X���|��rcy��c��$���r�����"j��85wQa�v��j���[���h=�����g垵�=NTV�J2��8&��c�yD]h��5�^�=��CzQ�k�F�^��ک#��-
+	/0f�X�*P�Tl��(oZT�z�F#�K"vF�Uj��r`/��]K흖{eL�81�6�ɐ��*~y�%��o����F�#�8oY���4��7��S�/XoKӍ|E~J��F&[E
���5v��
�j���Hs&�,��{�,�'���0+�N˸�G4�$gݡ�7��u>R�{􍶨��B^�/U-?�68k�^)�TG1F2�t���h��c,�����3�N,�綪�,TH�o�0%w^�&k�Z�Mڽ���muMQ��7ܲ_��d��gI����
��
[M������
[B���
�P�H���Jck�_m
@K/8�d�hX�@V��X�E�W��cj�
gh����Nz��
��w��
kESC�/E�Ŀ;�O����
��%�7��9�'��	7�m�=�>�
�d�������F�h����7�C*V
��\�M\��l=@�Rx��{��He��THg)���[{�x
'��5
����1�XM(�O�"Q���Dq81z����&���F�VC
;�H;#WU!1
�� O?�g�$�n�a��;��4}S
��!���?�D�6����4!+��e�g#䕍��{�����{9�)A�oQ�&@�w����u�6X�}_o�\�
=��W����-
����\�"�'��Չޱ�2�%�x�[�t
+Z�H��:;�ٽ�a�����;���{=8��žCmdW�8�A=���N��VK=�>�\�&�%q��

ċ�ȥZK-ve�� J#v�;w�
��y�n> Z�P,��+����q�G�q@r��u"ݳ�D�G�d�@���,��� �B�H�H�p�� ��Q��f� �J�o��
��N

�%��Х�[��s��a�cz�C����\:]:^;�t���8����DFe��C@�A��#'͝ �iAC����)A>clӵ͈IhuѺw�?��UNu�n����yL�t_�O�~��MܕUr�~�o�P>��M1]��������
+:
�ѵ���Პ�\xM5�'�Qb��g�oʟ���q_Z����T�[�������dxUҏ��}�b�9d�㣿_:��6n����_�1�M�:����X�#~z
]���5I#�Й��u�)��ԯ}�9�L�
͘�O��|���[�X�#���6N�/�����A��f��'tޓ��c�+�X�y��o
^����2.��E���y��M���Ƃ��Y��E�!	�������a#�U�yk7� YӭjZR���ܢ�tX�A'E�
+< (HV=
+��F���u$��(E�Z4E}��
�QWK7KK�1�:�0����h�6.Lw߱-���đ�l`뢰,l�ah�.�fbVp`�W��'���x�ܼ��e
V9g�l��K/{��]T��:��&���JUַ�(�e\?��1�� ��j��)-���3^,vG
�Ȅiwֈ	f�5dȔQc��5h:�4�b�'�]C�V�m�1pZ����5��ؚ9~-�����
Z<{��h�V
�jx�w�p����i�+�
����;m����͍������h�!�*�6l�FQ�^�'�{Јa���hIS<e'�r�o�V
W[�,�c
GW�?`�!�c�3�=䳀8̂S�� �A�Qc,�
��	R�9�ml
(qIq�xJ��c�m
+V3�3	�Rb�a,��k?�����V
�k1��)�eI�/p��{���9����1��5
�B\���u(�u[��<
�S�ʹ��w��A�˝D�~r������D�hW��J&�Q�c^�_F��{L
� 
9�hB��?���Գ;� P
���aP%��B`(/'�Dm9 ����*�Hq�_�pS1%�*�`�k�H��Os�-�֦u֔�mqZw�MM�X�b>��z'I�&c�^{�/ze7��?��k�L�=x���c�
�rs��m�N�6�r�.�Q~{�כ_��}�,�םI�R�с���0�3�cZO��e��3)�Q\ �]9\�,�u֬
+�#�oP���l9u��w�t�q񾕓�S�f�a�'�!�͔"ܲ�v7X	�E{��̾ �5�w�:��c)8�$r�K�J
a0O��g� �6�x+��–Ϳ�nY��b�~r򕳿���n�Z��(�`�sFqχ��:��$V�Qb�\aL��<�d���

+*��Xb��zȸC���Є
7�fEnY{Lv[
�D�q.#�Ю�~Q ���`�L֎���Qϐ�B�3�=��F�l�O�8dşT0���`D�����3[��hڔUm�{O>�˼W�[����;����u{��ވ���������*�]����V��5r�������\�)~����'����wc��}m�λ
+���M�b�e��>0��4������N.S�7��P��ˤ2��</t��
�l�5hcA׹�
+1�,�h�
�xR3B|O�� �5��A�5&H|�P�SG�}�A�o+{�J���/p~7�7��ʐ�Tk�Tk�F������(�D>	�M5@��'�>-��k�Hn����;��d����"�ˈ�'�X}"���
�҈�}��,��
���p��-���%[gy��0mp�]��+�a����1xg���
Nu�X�X�EI�Gt��z�mNHژ�c�.��5�و��~���
Q����E���[?��k<}��j��^[
-�!�	Ҽ�<f��
�;^�~Q�%�3�j���~
/3�;ŵ�iv^��a�J}�
�(�V��
��K Η5`&���@
딍I0���	�Ƒ\#�+��Wa$p]��:��Γ�>Fu/�c1���
q7 �9ʕc=�k'�6K���N&��(�UFI�IFJ�*�/9�ɨɸ��.5�ee
yaaE�"�8A���9�9
��6�=d���2��pDQ�*�9
�qE)�U
�@���ǐ.o��Q�Bζ
+9
�� �
@�.B&��@.�g��Z�FnȔ�P���s60<5�ى�����Z`��
�S�:�t��y�u��
Z�BD�!SY�nM>}�}�6G
}�`�
�)I|F�UY�w
;g�
\/���
��"��&�����釡y` ���~�~��$	���n���q~�p�2�h2YՇ�ߣ+{8y���n���\�� �Fɦ��A8&Φ!���I�G�+̤�
/�C	n�ʬ�R����n��nx:�vp4��
~:�~1X	A�B�'������}DG�dpm��Z�
��^����×K�)�9J���_ۄe�^K��|hÔ�|)��.Y*�k���I�p�ѕ�Lٲ3dY��L}�����V��"'�I\��XҴ�8(K�u�$)��!�K���x�(3w�
�3t1G���A�)-!J
�L��eHmqVL�iن$�"Hp�
^����P0�`����A���GC�lt�G�kr����Aǖ�viN���/P����Q-Srh�m�ԢF�l^,֬�!Gu�k�u��qU4eB~��]�)~�R6���B'�$�zi���q���~���9��	��p7N
+���t �zw��V��m��3��q�H�&�+���j�������V@�q�gr�ϰ߻
�G��dg�s��I�*I������g�^���X��f�<mP�����
<_��
+�T��`�?�b}L<�gF�@i
�H��	�b�w�臀E�@�j��q�?
�,��8a����f�19��ԡ7�K�B�y�}_5�WX��$+�5���:^@%/�=/�^X� q	���9�;�Y�d��
mKK5i�&�d׍�[d�(���3����㟐���
�]���
2Ǭw�e{�����
�%p���"@�Z��HF��n���`�x<�,&�f/"A�
0����W������U��c�
l�m
48��K^��C��5����q����$����N�*9뤡,���#�=;N������M����3�|&�O�~��?נ��M}������Pw
���Roh�`#
�7�zR�@�_�zF�
�#^3�� ����2`r3SL�]�s�f�q�
h�]�6bs�
+��Š�vp	*8jY���σ�<EE\�?S��
�	<��<���2��i�p�L@,�`��jm�
��Q��2�|�����0��as�
��)�^
!^���t-N���>�.j�Y�J����U&K��s�k(�3z���%X���=���/�����a� �ˤiK�B4�F�'%�pFj
+S�9W�U�j��U
V"��T�4�|�G����
+cVj|so�b���2S0���R���!1�n,4!��(EO�pf-�E��(�3��F^q6^#���\��S
���]�`�R�چ�6��	+V�mʶ���Oڼ���b��5N�ͬ�����/4i�e�~ٮ�E?��x���p�l�e�3<�Ѫ��N�ЦJ�
�t����Mmz�[l��5�`D-n@��]>dl��@٨9�(l@
j0zb�+϶���0_�^�,��v�{���^0}X��>��#庈Y.����r\
��cL�f���#��F��m�S��DŹ,p#j1w�o at 3fh4�B��!�s
�R���ɀ-n+>�:c�_�v�^���X�2[!��
�����g
<�E&e���]"��s�Sj3J�|R�=�
61�͞�G�M9����^�-R��c
+X������l�
�
eYq%��es��O>�ꐇ��ό7�gG_I���,
�ٲ�fc�a[�n���6SBߩ�_i�L��ˡm3-}
����v��.Z�hu�*��E����q
��0/k���P��m���Svn��0���!��������У˶\
ы�‰�
Vwl��H���;��W$�BL���	V6���"z�O������/!�
`;
�V~�Q�&\
C�c+��W�:"s��	�&�^-�|x�e�E�{��ux�:D��g����&
y2蠣~j܏ݘᷘc�ȟ��m�q'�n��l�
s�K�[���
�Mw[
���
+��
��7�'/5
.����-oU��!c����#�Ÿ#
:;e�	m�/�F��d���0e~ ��r���Ayx�.^�
o]'���p���	���6'L=��G��,�P�H

s��

�|Gy�N
^�R��	��.b�@���N�J�4�|Y�3��bү^��se��4$g$�ˆ` ��[�t�P�,��h�Y� I��$�A+Hg^h��Fb�Zyʋ/ z�]/�` � �@���^
�Zz�;��%@X��L��<�����ʗ��%jF\�
��D�B�����S�Qqx13_�L53
˟S1e�f,j3���9�#�*S�n?^U������xƶ���Ab
�����3'<y$q�T��sSʽ0��%�Y?���� ��&j8fg����;y(��3�w�ք���!��徺���ݛ��ݿ�D�<�NPsGc�Ӆh1Ć��B�徺 ��:��:�U�r�% .?�C��0K�a��L��d�KA���~�`�L1-����������U.8მ�J���b�k���%�+]bF�+5�F�H-�8�5����.�Y
+�eR������^�?�8�~���
��v,kI҆!&����iB�
����iyo��n��p"��X"1�]��f]�2��i�%
�yU۲�����d[�
m9ǽ�/pCa@�C��X��#K=��PE�
�g*�[�3Vz砼��b������@*
Ʃ-��l�*��g�Ϩ~
�O�πCK
+_��
��E���bjf����H&
+IȧrD�~) ���))�RwJWݙ
��p9t��SeXbo�Y���9˃f/���KPA�W(�{e
+)L;�/�8�d3��U�*�m��%u-fPk��ۈb;r!���f����
\1"�	���xv���Pn�%&��
��A�C�na�����9lu
uC�s�j�u�X�"v�D�`���1���'{_����z��5�
ae
�4.��k)��L=�����Ix��0���D� G_�A�-rH�;�mC=
�L��5II�{��@J6��
+A��o�#қ7�i��r3�
ԱeC�3ު������ـ!I�ݢb;�Ȃ����"�!x���^TKk���ӭx;B������
���1��,�~��*��+[��}
~��́KÉ��z<��q�C]eO��
7���-UxZL-U^��U��
+=���{6�����	�����d�㩓Jo���?��eӂ(�p��
J������aoZ���N��4%��<���S�
~;-;([��s?�~57�~��䣲��&�:�<��xWX���#U���C1;���sy�>�߿��}�������ީ�࿩ǞY�v	^f��
+
dc��h�
6\!�ª�5G�XZ�|-4��3W�b��
+�C�'������W�%H��j���N���.��f��D���=�"䖛7����94^�b1�!˼��,t=��1��p}����BOV�'��!f�(\L&"��a_��[��_D�l�^��h��b��-c�9��fYD�X�Ђz
x-)'��ܫ��^�v|0��(�u|}�ٚO=9����'��=�/�9��=�S�Z.T�����Zp��B}_\�ѓ�:E�.툺9d�K��G�$נ��S�7^�-pY�=���3�����ai�
"`���^a���J�I&ا���(a�-�X#h�F[�jP\9���7Eխj̣P5��(��E�
{��Rw&�/���ڒT����e�G�%%my.��Y�!�B,8��
F�Zt���.�����"~+5a�ReYV��Zb0��Ф��!6���i˗7������>�TC�=�<I��3.z^��q�aQ21����H���T�M]�=�W�#[Uo���/��jR��t��\zmK��+����N�N�C9\� [...]
�
�1��O�����U�'.@?dg�sz
ɴ^�n�p[d�Xv;,z_[K�
1�мHpŽ^ˍ���^D�
�sՇq��mmN��ǎ
��uD�u�����컔D\���n�7egr��7��_ݴ�G���7�n���v3����bzr�o��0�T�
g���U|���uݛ���
Jq���ue��K��x������o�����%^E.=!��f��
v��-t��o1�u��Z8��5�1фO��A`�
���א]������8Bv
g���ז�z����p_%�^��>@R�$a�6�(�
���˲)�*q9���;��.>h�����	���',��[2�\k��1�!#�����	
+ݳE�/��V��=9|+"��$�7$������Yk�E��j^J��~�-J����x�̒�y��
L��qMv�n���G�M�
K�xh�Q�z[N�;Rf�9溤Ë�Ϗv��4��ĂE*�@�"\���,P�+�KZd
�BkK�-?�+���!C��h���6W] O��m.�z�-.��l�{��Ȥbc�i�L��&�d�O��
b��҃y��j���v�mˑ	���j�H�WjCKe�Z�*
+n�JK;��- 憀@=XZ5"p*�B�D�j�ԋxKO\Z
�T�ţkS\@��RD��/Tv¡
��4��`��
*^
Y�=
Y0J���ޞa>��/l�Zi��_�������5k*-P����-�x�Y1��9i3
�[[5���~ԚE;�ͪ����\.:qf�)����8A"xܹ�̊�3X_�.!�p�kb��ʒ����U�ز�A
�q�5
uL�N���!����PO�%oԷ�q��ògǞ�� ��3N��S�O��Z��:��:�b���=0Rp�ڭb��U��؊
vlj͖`MڌG!m7�x��5iߧ��Ϭ�y�7U��
+t�Ÿ��)��ד��C�7k��B�����Ə5�Dm
+[c�����֍c��9-��+[���]�:[����"DK^}p*�[��5��VL�+�Y��◺����)
+��ޣ��I�s�m��Y���XIʳU�E��������=��m�����3��N5����`;��Q����F��R�8�,T�ʍ�4R-c���T��
+���`&�a¸� �;V
+*�=�N�u���X�?�	��9��r�������b�%R��mU�x�
��v
t���.�u�lt�=���N���$�X| [2WF�5�N狟�Kœ�MPM3�*ժBY�U��
q��D�4�T�;���ǙG�~��A'T\�U-�r?��3,��0V��'
���@0�`炅��y�q���d��l~�.!ρÞ�&5�wl4����@8U��(��.�����׷I�t&"*㷲���ubç>,���}X��B�D|uy��%W����$���� 
�

+眶�Ц�o��+�A��������*�h�*�[�9��X�^��e��
?  ��Џ� 胭A�� �`@DuA�9�GљQT�7Q�-p`��9�$0�pFC�L�6�!�1,5���5���a���7I���Il�CL������t�u�`�wȑ�:k�����l�
�gQ
}��OR��)˾��M�Y}�2�7u�7Ͱ��&�w������k��XQ8�?%��:'{󯺯n$����'m�l��v�:&�[���v� ����k��-�LN����R`��\�9�q[�ҁ��s��(��
�"����s��hK�i�tگ��� @��N�� F���\nQ+j�$zH(,Qu`�A�Um�lK��9��	kF�
����K�J�,!�`�$���CZS
��ી�v���^(�n��-䇴���)�
q�5�c��ټѦ�����L
$�T�E�J���O��ȣM�CX��|�#&EO�]�9�`�k�SN��ª���vꄻK\��L
�o��9�����o��	%u���NJ�T�1Eu'�t����y��݃zX��N��e*nҐ�oc
���q����9��
+�Ku�S�"(�.�/�el3 ��ӞtC
��AiO.,��r���\^Z���V]T��V���4���\��QDG �@��j�dK@&UYZ%G�le���0��T�5|z0() �:Bk���D|`�de�QH7* DGH�"GC��q����fR���)sS+�}Z�f����'��V�$�h�
�I�m�I`_3�L‹��ל�3v-|��%�K:��&h��\	��LR�d�[����K���
(��e��
���m6v>���m'���-��1aV��F4T���E���2D�?GMJ�� D����0%G<L���3��&��01"�'dZ at L���Q01��`^�P,"
&��7%�*1_��o9^>[I����
(.��� ���1}��Z���`5��/%?)ٍ6���d����PسV�xMN�\g)[>˺&{Z�2��
=Ց�I��Y��ƛ��eK(
�4eKB9����Zzv2�{2�)q:��ۜ�4!�f��R�e�1�X
x`�M˨�*�Q�L*���
��-
�Z���bߴ���2o����lӆ�y� bs�2o��sJc��rX#�4R@/�/�%~�7k�0F7uk
��MÜ����j4.�'������mz.���K�?N�a��M�<������4x���W?á��|�/'|9�x�{�@\�֐	�{
pa�%�8#�#?����!Z�ҥ�-�9܄wR����2�c��`��oY$�.	��	 ����Z�/'��Nx�ί�8. N��t=�g
�WfI�&PN��	bk�;2��诘�]@0)|)01|	Ь=
���i
�?��	�Լ��':Y	<FH%�)	D)O2�� H�-�4$ 	�h�
+�B�/4"�>6�SVX񗅮�v�H2$�����6T.xa�'<C%9%y2����
�څ
B�kK�ce���D���J�v2�LX�dDŽ�:�F�!�؋�N`�i���ۢ�Β�l�	��W� ٢�<05�%'�2
+ 
Z��ryq��6 �
�������TLK�3��Z!����Z[�
+R�?�����<*�̹����A����]oz���X��
V57X;n�g׽�?�����p�
���''��� W�7.t��7��`l��
s�ֆ#��C�m]��`�M�@q
�U�VF-���т�瘓���i�i[m66�H���3�O|�g�w
ס��Z���咅�k���L�#D�qm	f���8�� Yh�����{�۵Zh��ܱ*�)��Z�@f9MVA]���&��P�W��5��=feHT���^���e�\mn{�O&N���C�pAl|��UZ�뙖�>^Nh
?�Jr��9 �T�!qΗ6+~N�,eL���XH��l	��VXh��Y�{����@�
i�%� qk"9"�9��v5M>��@�s>�%(0 ���h5Ū)R
�Y���PK-+.׊�Bv�a�s	+��sqVb/1�w����w
�T���n�u,ݘ�-�r7΢��:'��_T�{�vfs��}������
o�E/��~�i��6�m���f	�)!G 8�E�K��g�
+v	���<&M���M�;�RE�Qz� �5*��q�,�5V��5�b��9$�%,7yZd$�,�)��Va^rIj�d���Q���=(�x�8.�K����
�I=���{F
+��ĥ�c2m�M(B樱�  h<�\�*iuҚEk}2���2�_�
��%w_���M0-�
�>m�|)����<�

�����'������QDY��.�2���uV���D�[<z\i
�`d�%���\�>���L�:DŌC=���ͨ	�
>k�e[�����R�ӄ�}��]F��R��R�ģr��XF�C�7'�����Yf��q�#�9r��mR�a����s�|!�H�AZ�4e����B�6dژi[؞�@�A���S�u����
�r³E��&�"�
���P�Y`!(
�f&��PtH��
T�UQ%� �lb��i�zLHU�	�d*5](Zr�c]���Vϰu3�3�,T{
UJ�tN�(Ob
��9R��8��]R("�mQ��s�4Xȶ�b�"�=/�T��QII�����L�K��m�lN|�+R3
V޸�q�Ծ@�������
^���p�H
[�Xc�	¡
RL�-|5���2'��i�‰o)��Z�G
�yΠ(�7�e�c���2���I�x�j_[%�>p�/w~`�A�2k�
+�."Uc�K�z�P�
�x�m*D��L�
��l$�H���c'i0,�*N�iX��r����3�d���IF���$G��X�1!b+f:�����蕢܈y�3�B1�
W"@��z��o����@\�+��A��	T[� 
�I�m�jkr
b
�Z���ӧ�05q=9q���&(�)�-�Ҝ� [EgYG'f5u�
�d�4�?W�2��OҠ`-j�5i��>I��"�>w	8}ɒ�
��2�5:t!,
N�JtK�
S���7�KR�=O�n)!p�kZ�zR�zJ�NRB!Ò>*�6N
+]R����HO�0������#l��ǑL9�1IHS	2
�9�|��:���Ԍ��W�#g>^D؋{a/"�E�����"�^D��H��ڜ�u�1���C@�Q�]��%P��zXJW���OsYdz��3�0��S h�����Ɇ��:�����ir�2�he��섕)�6���a��[p�y"'̘��G�u����T��#ۍ�u S$����XJ�����8��F��
�#m�U8��F
+4OĎc�g� J��َ�#�N�
�=3����D���*50ys�P@�
���
+a����a,�p�O�b
�@Ҷa�4�
��-���^΁���`���
+�9�sS���d[T;$�2h
c�J�V�4<�򬠐
�ݴJ�>��3r7N�
+1��˴�إ�?+��ꬒ��O�8?�#ip�aG�F��3ZO;Y68}H�Ҥ����U�gP�-m<o��M���M�0tHyӞʄ�
+	�T5��Jo���J�7[p
TK/35ބ-Ֆ
_
�J�CB %R=�i
Z{��"�}TG��vкPAo_j�Fg_�#��:m�2�%�S�T��`�P��?����
+�[HH@]�!Z�R!�qEA���x>�l�Q��N;��=���u���
+p��ݼ����(�L	�|����]k���[��yv
+y���;�'��:;�p�n�T�2Gx�1K0AKS��B�$t�4��pL�PK�j�#B�n�#
��@����T��n
+�oL���	�#
+a�
k�
���HŸ��z��B��ͳ}l*�!��7�PEC�p.Z��:���Mە��_�i26�3(
+oZ8�W�t�����V��T�tF
j�f���O8	"�+�û
s¯%
���H�O�DjC�F�Fnwi6=�4O2��DhY
�K��G���U�sh{�۷�vzJ��� 
����)�$�o�h��4�
���L�5����:����>*
!�k�Ye�T)ΞaS x��>�A� ���Em.!��?���A�a��?��o���IG0��@�y����k��
��1���@�_�E?�F��C��	��>���#p�x~P� N��A����Y\`%��[&d=�Eo	�n������Y��
HP��
�6cz��$�Є��B4S����� �H��c0�p�
�d
+���x1f�٠�0����G�ڐl���)ɐ����ז�I&ݤXI7��`�p�
Ek�*�6դ�„�K�5��Ֆen��&/��-N�N at Q�⡳�=�hg�!�D����-6{
�
'�, ِEd����H9�s�ח ��h�� �|��
Z�C!��Ѱ�g��!���[UXv�²�e�It��X$s(7sġLp̣�g1���;D1
�!�0���
��!B/[�r�lq�T�-@�	��c���V�r�VV�rT�0e�(C�Q����d
K��d#���
�S�~
�	z�
� ����YD1��_�^E
+_�29��-��tv-��K�z�X�%��_�JY�U�	ʗ�8��#{P�{{e2ʤc|�������A��j,�dj
t�1/u�,�`%�sS�bJ,��g8��INR�I
+-*/H�G���
 A�$�%rd	��
��E�N$��,�!K`H�(������ճX8� ����,�%���_���Y�/K��x��u�>��A7�0��c"1�D,�Q�"#ƃ��3��W4�X�������0f�e
�e5{VG�IPU��c�%_��~�F9�
Yr�@���<R�=�p4��+��@����#
�3�%�}�m6��- at 2�"OT�RH���ky� _ry�O��\w�XP1.��0��1X,w�x	�E�!3S�!�hg�q�%lqԘ�NS�q�%���S���Α0�-�N�.��BI�����C|
+��
��
,
��"W�8Vă{M��V�"���{G�]�(#.<,�Z�
���-�+Udǯ�A���������i	cxJ��v���$ɫ-O�~]É�G�z�d��Ek�s�5-Z��iK�Ù��(]Ih.8�R(W��b
Ձ��

+s�Ȍ��	T�
C�C��E��D��Q�	]9�-��$u
+��,��ՓEK�Ӥ�z,�1�Š:qЈE5�`U|Y�M`t���C�<�
�V	��Wm3|ڦa,��]�Y�й��>+t�\b3���;۸T./��Ӵ�:�]�Q�NR:��|bY��crv [�oX�\��2k,����e.�^saZ�V�L�
+�� �(������]��I
��*��������J.=�N4{m�(B�d]2k��.
qbX:j'Y a�����Y��o�+�n�wmF�;6�\�m!�
����8�
s8�jr�K29�M
+!�г�F���l[-���`��p��x�A�N���

+q_��~���_��
��"�*_,ZP"]�����: ��2�.ANJ�yn
�DP&{S�=��
+���$n(#����}_���^ "(��̔�I@�ola�1"덃`XY��L��
��/��	JT�[T�Td'L+8���Z��p��t�Ҽ���F)A���qBL�M�9��`d��.�Ȩ�z�Cp�!�r��
))W�v�N�xq�Cs��]�
�7�q(�q�V\�q"�����7���;A�ׄz'x}����2���s���y5��E>��-�[#��\�ɧi;Y��
+��U�њ
��l���t�� ���˖9$F�� �O���Kfd��g�qS��<9f���@��)$��pq��MK����Fi�4
+��Sr�*��
�EC��R�̦˨˹Ss�|��$ef�
�
�aa����2
)�C�� l����^d5�C|���"m1��D�o@�ށ�z���u�
+�E#��>ը���~�9����d�N��˳
��ra���:t_IQE���#oR��Ā>"J1�n��$����9ǃ�K)�b6a,����]�b�7Q��V�-����w&�f��
Gb!�
�ֈe���jp��}�c�]��֯50O�3�x��s�ڢ�B�툜~e����Je���n�?�T	\�h��&^����}���e
�
oH�w`H�s ���$�72Tˠx^��R��S�b�z�N8�N�� ��=�%�'i��l5���
P��,����'8�k2�
�=�V�5r�L�N-� �(����Pp]�u�-N[�h���GY0�,c�YlSM��d�e�v� �����E=��kO���L\�i;m5ak`c�Z�u�b�*��J���9�9 �˪U.�21�\���`/t�� �$��U-��-i���?�T��z�i'�!�5
�!��
�;Ѯ�&��J�������ݶ\��ӻ &
��� !k�^b�g�p@M�vy�<�kfD���K
o?�#'��r�:��{
'o�
�D%�a�z��i�ڀź7�
T�vn�}�v\���64��ȋ���m�\ت���ױr��X��
*���Xiۣ�6r��F��bϝ�n�g���
x� [...]
+2�/قR���l�����F
�uI�4i�J���U+ͨ�d�ĩ�Lzh�pC���
Q�"q�ي]�Mg��&��"�q�h\�(P6H�X��|1�:.ɠ� �d��J�$i`�+��!�v�)�&��J��Y�U)�)M	��0+�B��"������Q�}*%
���q�4n��ѓO�.�A>Ӳ�iS�HV%o�/B�LB���|C*��S�K����?�"`�O�n���쪏?�u����Q��D�5G]|CS���LԲ�3}X5�͸�o���BPDʚ(l;�
�8/����"��o�"L����q��~��+x���TA�Pj��
Gi@��	�Tx�zP�i-;[�P:�7�J�NK�ѨUk�J��3�SMr
'�Ł���D�m,|��}��p/���7�ȷƾ8�Z�;�`��c���1Z�F6���h���
�ibtꉌs*�c
ӓ��^��mԅ!��2J�NVk{0HZ�-��Q�‚�GU���D)����:{#��
+7p��e�u�V�4�LQӆXWt6�ږ~T���
 mg���Ia�=��� ;��c'���
Ա�'w������#���l���"����uN�E$򬹟��0�G�
m3��*2�y�C$�K�A+��& �xKUg�� �:�C��M�M�@�c�
!`����N�}CS�.]��b9��1'AH(L$� P}
+	�y*؆	�|Ah
+&�`�›�T�.�r=�~^��D�C��J���i�����}ch���Vp%�����qof�;/@|H�W�[��}�fw�N
����S�����-;)�8�F,%^w��)��h����-!u�w8[�D�-�R�#�"ZB�$�7 
+��8�4a����,{t5�8����3�4��!8&�p��+r�����pH��b��\O����m�
(�bC|i��j�;#
����V�@�����/ma([�0,	��0�M�fx���j�{��
�	�q�
Ѝ�
��*�fg|� ��Z��{�'��^yN�h"��
	R�mɯ�!7h5W�W8?�KLQ΄@�
@�O@��
��
��,�>��K
��;�$��

������2�_�����'�����M����ڷv�eɷu���T��&�6|�i��&��m���%�/�"��N[��K�K���@�C
����%(�����(���)g F����'2��cl��mfK`q tAl�U�b 7��(� �Ew��
�}M���.�gz�����Hp���ĭ! �ؗ`�lQoH�_
�8��':+�Z`µ
���P�!//�
�� ������7/!1aK8��$87/�s9�
��"�G�p�#�.ax���@�
6
�눞�9�o��@�h(
#>G
�
+�/\Sp�C�,�K `�̕�`#�
��
{dň�d�C�3����ȗ8˂���r��gSCa�r(
�ʅ
+$��g

�nQ1"U��1��P
��b �������UR�H��#�a(x�
@���+��p^'�Y�'5�"�Xg�(b��(8'�
 jQ�C��jO�<�iI6)L��՚va�9f5c��g3ˁ{����e�S�+`�V��K���^Nx�	q�(���kUK� ��1��5�58�\��ǐk� �`��˕����	7�7�}�~/b������xjDZ�j��+_~��ӊ�ś���	�I���GM��L2lJ�Y�$���R%p�n�e��t5.��h�R"���B�7F7�`��J�w�"�&YL�Z[�|�I�A�bG�)D����/�����*�1��׳W�
��w\���H��8���i\Ο��Lr��#�0�X�h$;)�d8��3>+�9l+���4H+�{H�b ��5;��V�%N�+�y�d���ũ ���[w��];��������&�J+TG=-��4�	��d���
�.��
癭�<��u�ja��zT2��c����^���~�[V�[�����:�+sZe���[ǚ%D�U='\O�Ѱ�%�H��1��6v\ΐ#�b���v�8,j(X{6��ff���eM�]0�QI%��.
*��
ꨚ[�`J)�BJZBIk��Z�4�m�:�\���Q伭#*/�E$�]���<a�b^.HO�pku��
��c�-"�m����&G�$
n3�(��%�SK�p-�����C����t��Qԙ6��
��kk��z�Ҕ�����w��b�[
5F�Yڙ�x��WS
+5��#`0���I�e�@�E���r1`J��-0t-�k��
"�r�ϕ��lk�Pc�&$��L9�t���p��!���E���h��K-R/m��zŅ�;�۶R�^ra�
]a#�E�,H�1J̗� ��]�^B���M&0Y(��n��m�ۻȹ
v�@"���^!�<Yf{��B�����
N�8qs
ǸC�3lY�;��6
+?,!�
��[p��^�|ۍ:�3����d��>!gE�C2 ����p�p<={�OЎa	1(!@�`��E E ��� ����"�AH���puI�W�Z
��]�r��'N톓��
�n� a�8`֧z��)�3G�%=��s�;�\���9$���2��fK/'��
+��ps8c��NG��q�9D�I!�س�Y�5�j+yT�)T-k�J���R!KJ��6�=�E�g":�4#�׌��$��8��2<D4X�22�r�%�
��(�>���T!�X[�ƦAƧ!�
+t����Q�s9Ve��!�h7Nj�7m�qr���-OM	�\��pB��uP2a��k]�u8���+P⩂ﭹ��ɦٌMmN~�'��m��*�#���:n�x�N~��O��d�+M�
���O����?fa�TN�N
�T���-h� >�^�f�%��2����D�
�U��2���긠�HƖ�C���ݢ�6'�p��B�!6Ϗs�(g�r{��([��{2�_N�Þ��
��Z�
Ȉ��ሐ��E�艱f1�v��A�pH"
)�!�p�vMJni%蚬Ց�1ڑ9
�� �rJ�OǾ
 E�%%C#����t��%��X@�U��
+s���������Y
�o��Ҳ�aB
�

�
/�y�C�l
�$��3ВU�"��Nx�JrD��	P���3ǵ������Kd���/#E`���C7�	�R
A|^<�"
(��*���{����H����'������*G�@�����ҡ��d�^ ��~�Ag'��}�w؃�N�AY�{�j�v4��%���%C.��J ��b����)
R#r���
�P>J��H
�yc��
ӊ����*{
K��?�$�Pٞ��r��·"��3�kO�_k���J�
o����՞ΪCu�ֱB\�Z��<�]�iM��$8�V-Z�"nv�@S��l��T)i�iʖ�EWF�m��uĞ'
/'|��H����.�3W���r���3J�
[��K��
�d���-��r��"�:Դƞ5��ɲim�Ҥ;
���L��
Ǣ&�GIDj0Q)��(��Z+ at H��P�aQ�j���Ri��Ʃ�I��p�1˟D�J%��KB
��XQh	I�/"�>�"q��-�4�S�eU���1�Ȓ� ��t��m�Kё�
#4 �����"��`
�ީ��B�6h�
+[�e+�Y�H�a�bQ�T�g��@(��J�D���ʘR!���JAT
+����$,���}a�&b���
�/4Z[pvq���
+!l{D�
���L�[��&����e��dWl�1���*�C�^�ߣ�1�3"JX��Ք<cn��Li�
?���l�S��s�ـ�	x���9�r��`�%�'���H
��1(
����!�-�Ь`w��A�4"c��9�Cd��S�\��-.}`�F¦O��B!��(uj���k&�m��1������1���J,��Q
����ˤOg ^2%�&F:5&Ȱ���
�p�U�$��x��2�{ŀ�����,�K��
�WL����8�ao�Qn&�
�4 L08�0�j���1�Đ̰��g�`���0�?���J�HF�v"
H�p
��E�Af"�	
���FGtb*T�e’��𖖨�)� �7��R�#B�Ǟ�.tVQS�XN��L�0E�D3[��s��=h�
|�hiZd��d�[��2��"�4�����(�F�-��"j\���\�w`������s&�/�;��aO����H�)��W�t߱��
+��ȇ01�v�-H!����6r�PE���
+��
+�T����2^���T�&.M꨸J���R���>ɨ�s6u�Mj-����r-C,U�-���`�{���.Nzx��/���b�ͻb
�G�R�J�
/Ѷk��;=��;�+��47U
��u�?Xxȳ�_Qp�Ā��8���Rj�܈
+X�O�UW��`�H�&�61Ԩ��-�*��ڳc�A���;ò�u&oq^tv%JK;��z-�8n5)(��� <�I�|��]\[���cJD�vcR
]�b
(><�谩�Ď*D]�R))�Dެ|���a3����_�q��a����_X�U��d#��2E�7
�Ԍ#�I�y�
�~�!��|��?�	����|L�
+4�\�t���EC���Y){0�{@v�c8`Lja��O� auXV�
+n��3"x��a��6��*vZZ�69��
0s�`���s'
+s"�
E���{p
n��y"��wg��B�Ͼ����v�
(^L��D�va>��R�
i0KI��cli
�u4����-�_�M ��Nq�#k�8,�^ߊ��f��e)�ݿ'�I��<��� t���
�{d�*
�"3ԖO�U�x9������b����%��+w*&�t�U!+�2ZB��m0���8qe��s�:xM��
婔h)7��HrJ�E��|��6ED4t*a���;e�#�>B�ܐ]R*����P��S��Gjt/ŏrK.I�U/�����'����3
m
+����U����$�I��� ��*,�dyE�@MQc��Y�X�����0�*����-B��d`�U -a�WR#c4<%����ӻ��W��z��gE~�+
"A�뱽)n��'d-��uB
+��W
nyؖ��\!dk�n��W�<��:�Uq���Vd��y�e�{�Y#/��2@)���.��
EA�{�잷Nf[K"W��P��
^^��w�XF�Ӣ��{
��V:\+%�o�E�Q�ЗU��'���YQ� �IL���g��n"�
+Iw�����%��Jx�D�xj��.�(��H����R���=�
�u{��q�
��գ\lj��;�KtI�W<��l�;�w?�\z���tO�fYo��/�pٺ�yh�T�{b��e��#%ܘq�
+GC�l�
��=�������;XA�^1|S\ +XT����|�R��]D�(�S
���0�
I��+/�Ya���.x춁!gZ��>�����Q\.9����~ ]u����#c^��%@l�f�0�hp Q{�z/B��朷t�j�ݛ�#�;�7t*b��9x~���Jl'���"��ȓ:�w��)�/*��rW��(��(� �B�s*��v�z`jJ�
pYB�h�Q��Fo�cD�ج�~'-$X�~9#)��r;�qx�)�픙��bH��\'w�~����հR�1�I�Ĝ1IGм��TnL��K������ʰg2�bJ�N+ǧ�
E�E0�D�;�ɑu��ͺ�Tg�
o�%������X&v8�'S�����0���H�ٚTA��
���-����ԅùܶ���]�VLp��oC���AJ,ऊ�,Q���đ����D���.��(�)c O�1�^�ڴs-��3I#��;�{#�0ݰĝC8`B��E2��}ĕ��%���t���T���̓��(���aGPz�Y1�����w(2��5-
�N�8� �<�!Joى��IqɒZ��L�'0�0�@�՚0ʰ ��8=	��DE��P�,P5�S�� Uc�*�p>Kՠ��
���X�J�_V0�ٮ�,�7�C,��$��4]7E��!�0G3=O�x��]�B�3@�I�1�9�.qwp�
� t�u
h�
@_@�����+����<C
��6���}S�=��jS5}� O?^����M�h#��۳�*���5◗Ήg9�%������fz���g`�w]ߊB˻,+%�B������2qv?Π�&$�1��
���
+IyԤG�ܵLV����
?��!���XRd
s�'�~��x�M��ɌFg��5��;#��A{ћ�3"��0�{k���s��l��Q��
�SKm�
1�;.�Kȳ���b���5�\�#���>j��
5>B�@� U=2���c���V�ڼWg�;��Ⴜ�cn[%z�E�KN�H�
+�V$���u�* �Z+��J�I���-��K��\ZkK�AT5-қM�ͮ�x��jX�5�
+��FE/jS��|	U�4����.
+E?V�"`�hY�#*�����
\ZC��\Z��w\�2g�Y׶�G(���.���%��s�hY�VS���{/MЊ+�HݕQ��:Ss�Tqꭈ��W����Je��b�*��c(�Sd�B��゗"���U��ˣK��'?~�X'�=�z'��Tq"b����>fi�X��%�w��z���?g(0e�『���a at cxZTx":m�����Ri�C l��*��c��_8l,OKB>?p4���̚ך��=�U%jV&��a�
�V��(��~�_Z� f���4��T4(

;�
��C�r�,� Y��IѶA��R���J�������Tqs�
�{�߲�7*
�̇��iZ��>'
g5�'���:�&���k�l�<
��
b��a��Ʒ�V��ƒ\�%����O�h/�[�-�
�Ӽ�
I>e��@$�I^��I�|��yP-{��@Q�����	�$�U� �������V#��fُ҆F^r�!�i��ϩ���M��+��*.���Ʀ5h�@��c�Fb�.5
s��
����#6�%�ŒZ1Ψ��<n���ɏڈJDR�(���+�1/4���j�"p_T�@+���D,2�v:s5l[	�tR�@�tZ�NF�=�1i�L.�L��nI��RZ��j)����U)U�u�5o��RXj�O����s�7��(�=a� �w�5����6Q��O X�4���O��q��T�! 8�x���:hʻ�X
��U���}�6y��
]�y�nw=u���*q�yPQ���l�ڟ��x����>���+��??|��o7ӛ�W��O�/ [...]
+����������>>����?7��}~����w�������;g�o������ӷ����~
��E�.���\ٿ}�O�������z��������y������޺��<�ͯ�?>#>O��Q���7���/���;l$���
��<U���H��
+y_��۝^r%����>Z����Z��J�������M�]���pO�x"����
,��E��M;l��������Vv����χ��o�v���{�e����g�k=�V�/��ME�]/���%}�۸~��i��i�׸ou�t�q,z�|
\���G�T�~S�}��u����m�3���F�W���V^rw����p\sӸ�
z��i�|��+�r�2y���?�ݭ����N>�=�=5���	�)7c�O��=�n�k���i�g�y]i����X����Ӕc�݂#�����o���E��k��ͪo�a�&NwS�;꛺�4U9�W��3��ĺߴN"޸y�n�����kz�?sw�5�X�LWm7�����oW��+7]1�7rm:���|�S=�6!�%}���F�C����{a�׺���
l_�K��ƥ���D)}	 �%���iz�(��(8c��~�D=-��?��ϝa,��8
����?o��V&W:��M�df�9�.]%���W��҅��x�=��;ƍ�ܳ��q���/m�GS�g���k�v����
+�&G+S�
+�Ηv��O���4T��H�������LH�H���U-/:{cc���H@��
+�l��0 ~w��5~�M

���N�h.�5��f~��:���.�{J�Y��F�s��I_W��`�>��
�;��$�۠�
�37�����?���7�Ӿn�xwu�A���.�oyn�3u~z;۹��T�{���b�Y9��⥨^���	�_�;��撺��ò����;!ƭ���[˭/�3�'ߡ��77��
j�7��]CN��Ɖ�)�ƶ�И����
��͚IJRm)����TE��]�M�lq�{w��>oq>���g����J+
0�>�tʍS:�f��̂uz at p��IQ
���cJ
�p�
k:Do��w�!�Si'�H�H���J$U��t�7ר��M7�,sO�n���4��������X��߆+_�J�b������މ�{�5
�xcz���uxz�&�Hr�*+^v��yu
�X礋����J}:hO�+��i�t�:�����<U��\�U��Jnj
�;�����
@�f
�g��~ߨ
P�^ͯ��,i��癴��N��,=W�����O�0�SgB��}�6�D������tu�ݍ��P:�
����w��m���{A;�{�
��{�J�1p�����	{�( q�
+�9ځ�?Ď'��|�=d��7�e�\�J��ѯ)��f�/�����u�ۉoS�CWe�I0�����xˋ&^%�Z,��^��6��V�ټ���[ڹ�^,�K}����3<3+�������Q�����9�?S6�3t~Z�u�!�y3�?�:��S�鵒L�n�K�s�q?U�J<��I���]"
�
��Z7�~cp�v~p+�0���	�NxmMo
���N��x&��?s��u�toⵝ�Nc��k0�~�)�LjJr��oi�Ȣ�jsV���QyU���v�}Ӛ���5-RӇIg��t�"\ ��&w���H�ĂIe��~ͯ��[N�A�j�D�MII6�m�7�F�3���͖�4'ј�I���F�u./��m��.4��Y��e�.u�!��o��~��\��&�bq	�h�'k"^0�u�N%B��I轥�C��r�����Tn�
���u��4��R�.X#��ˊ���#�/�z���v��g�
+ŗ;�SCj_�i�f�����M���j�C��U7]]����|
�T�MUV�*�6�Z�":��y��x�vd�gP���I��
v7�F^�rݣ�n�	��+ᾓ�^J�/��,4��鞢Y���=�:^&�����
*�ţ��^��V���N
+�}s���J��Bs��)�*k�
k�9Vc,O�V:�E���b�h2��O=|�'ը����
�F�t����n��>u2$^��U?��U�/:�U/��^��!]�����Z�ތD���D����]3�f��D���jlG�Q���]��XԀQ��-ޑ�h�
+ku����,�D�%1
&�4j��}�ҦQ{�߻u�;xF�Jo�̙:h�tԑ��.��s�+�&��Ɋ������zN�*��A-���oZ��'Be:�J�D�d:�T�tm�^��d}�K8u�ƾ֥3�56�	�����k��3��ɬ��|*�Bm)�PM���]U������^g�u|��>��o:S!Z�#
L�]Hp��|q
�.���;5�T�?7=֛�鉱��yO:U����~���ȕ��;� ���?��9� � A�I���8��8�6
��y�h�UE��v��m�h�O�?Id�,�V�2�.�p�
�)���U�
�4PN����1��iG>�*89��Ċv
r/V�
�e��~��fϹ���=����`������Ղ�O^���cEC�8��@G��bM)
�,�p�- W�v�_��5��=2������Ν�4�o���i����햷�;��f\�����~����c�v�.Վg��}_��s�t�����1�i֬��i�Ey����p�$B�-tatI��g���p�{O'�ꃯ'PJ���B�{3]��L�Cp������5�y]ё�z0�SCWv�~5�i��⧉����݅���)l��L�[�}�v�&��lsx�
�H����õz����4e�)�4�`�NEF���r�
�⧑[Gw
�����,\\�����D��6�C7��]���G~��p��P}#؝:%��?|���H;�Ҝ�k�r���ox�I�-^z��iӄ޸�6��0�Y��]bL�J���-;ִ�����Λ䬼W�~W�O+����px3
+�Hz�+�5x��f�����&��ٓ곓�
+�
f(�Е�}.\�Қ

ۛV�簩
�ȴ�Ljuѹ7������-�_d�����˳�6:������caZf֤��}����^��MO�E�z�Ó�U�|�3�a�!B�=
|���Y��w�����y� 繹K_֮>ox�j]U��-��Ky�[�:�d
փ-�ӈ�)l����Ѧ?.G
+׹�iӅa��4h-�6��s�l�dC��m(�'��~����vj9_&��Vn�/�V�;F� ufv�'ٵGy=|����(G7��a��kٔ*�G��0�j�:Np�vh�
+=���!ڏɺ�q

�Q>O|�cO�=���ym���5*B���5�٣ Wa/c�<\3JrAQ. ��\�

ï9\��|,}9��t+țiV�7��/�8�o��/����_�_��iŭ+�i��&pޣ높8UD
p��O��w�X����o��O������'o.L����D�Sn�����
���]
��P/��6W��m;\3����lVh�y)�l�z�?
ܥr�ړdg���y��[�:�G{mذ��l�얝p�%ݽ*�U���Yvp!b��eg�
m
W�j�-��f�n\�oY�k�?GBWֳ.���
�7�����[�N��O�Lf���|����q���_5���Ǒ�5�&�
�y��{d�O3�
y�oX�OY?���69��H��4��
+[Uܗ�4Cw���u��
���
+2ݿ 4d� $��v~���G�nSz��'=�5��I_p� z�I;|z�U?���3�{�8ѻ��|��0�B�gv'�W�����l�`|�^�ɪDY>=�ɛ��R���	i�,p��:��ٴ���
J
pVvg	A�)&
j*J}����H�;��ݱC�K�g	�g�<��X4�v�'S��q����S+�G�c�
�^�-]�#N�
�
���{��q^�gr��73ㆰZCLW�6& 4�|[�	�L�@ߢ�uO�J8��Y=-�)?�}�)?8�X�O�2�pe)?��e� �v������O�����y�'6x�=���2���C7]��t�Ni!���z�b$�;~�{`Y=FR��w���sِ)`ineJ�B:�%��3�3��
�x���*�m}��۩��Q�9?����[g�=
�N�
�,
�����t���6�vt��P
Q���
�Zԩdz1�C�,�qr�p����]f�8����Wɼ~��u[y���j�"oҲ_�Ϟ��r�2\v��墵����
����SW>�92�֪[�;��+�/�l�6���ʲM��6�b"��m���D�g�0���]pс

+VÕ g�9=]
h�t�V��;���D��9��',���ڔ��ZO��g<��q*���y/{��"q	��E4���9��
��;�'�J���L�,�$?
q������iW.�U�_i�Q�ݵ�}bo����ծ��6�}�+�˟�/⪅f-�4��fO�S���
�
�;7�{H��*�/4Ȭe�h�Ke���.�3M��q
��
��c�`�
��V�
l�e2����
+�=�hz��!�z�O�s}���T;�ԣ��#	v;�>�ޞc��:RO�:�����u�ʖ�&�!�
���C����l��b�\�Jw8�}��:�u���d
nZ���aj��շtv�*�Kp�L�e�x.�akߓa��c��a��'��K�}v�u�,���
$C�r%:}~j����niV[�ˁ��pш1"�Mi��6��zb�
΋өf=��F�<z�
+�S�I+��3 at d|��3@�<
�~ӎ:��ݖ��jxRX(
�3\����nj;Q��|'�+gfV9o�����w����;`�>,�cZ�6%�a��R�ū0���=.�Ui�Juѹ�&vO��-�yCK�^�~��:�Ґ�afڭ�6hO?{\��Z5���1
t���Ʊ��5E��K�/=�0��O�6Jk�87�� ��᫶p�t�(��Y��znY�5w���f��{����W&�:��Y�,�Ui<(��>t�]C81��{ҭ?d�

5�ٯ���۶�b���\;xr�k��
f��i�TdZ�gmw���=�/̸��z�-{Π��=����B��gԹ�.�.�Fݐ��F�݂'��܎�a�Yr�՞@��g��J
�8\�y���5Ory
��Tf�$���L�u
����ᦔ��]}}ے��)1����r��1�R�I~�IBC��Nm��_��[VL���U5���E�•�bک���v��!f:uh�pMl��B�m��c���x��q
��?O���X��x���3h�����k} [...]
s�h��W�=�5֬�u��������i�y
ź���o�⏽�k��ª:n�eY�nX9z����J�-rҠ��]WͲ�������Z/��_{jC�+�^hqLm��!��G���Ԇu�
A�-J��t���V�'
=��<<�x

�
=�iHી9�W~_�ؖ�����s�̽X���P�iJ�33����j���^� �[��8���]��9
�=����Nc�<c��3�|�GH�O��yb�
-�y �s۷[հc��(�U��`<��
$_��K��7
�u�k�V�d!\��*�͙���N�g�����9ޓ���WKj\u�|Z�@8���`(
σEu���C����9h�>�	�4�
��c��|,��g�i
��0d�}�\���q�eV�&���2����4싹�4��5�z鶅t&��D�$��G��0���z�ߟ��6�yo7�eW�w�E�����ܴ[���6�Qa�\V;�,'
Q;�p='�i���^�mvì�g�>k�ۖp�1�v��ϴh�
^d2
l���M��rB���L#=��U_>Cˈ
�9�h�
[�� �t�
X�G���^Zv��}���{�U��j��n~��m�3>��m��v=Ɂ�wƯ�����y�d#n��Oq1��3`
�uqN�rS�
���j�z���Þ���n�M��l6�'>�?m��*ߒ=��w���
+�\W &�k^�~-��s�8v����������l+�e[=z�V��Ɲ�+^�|�\N�f�UO3�T����j��T��;��y�i
��<��ឧ�:e����z_]��{?8�� ��o�
.��\.?�2��|������e������sqD��ʧ)9��uR?M|�Ğ��سR
e��q�c����z��ۚ�t綦'�}�}��
� W��"z�"�M^����L�U;��gݻ�����-q�.g%~��
�Ik�J��0̟��x��M<��&�gh=���M�I�����-m�=C���b_lB�F5�c��^�M�!�u,>������U!���-��v��f;�!�Y��;�M	�J�y�
�~����U<"�v��1U����+t��nF
+ӕ�t �i��Y"����W{�3�
@7�^�÷<<;P}/��"���.m���񅖕7|�����������d��k�:�BVVH����̴��P��C4��y������y�-����
��Ћ��c��Az^}�<��5�ž����IfB����o��9�U
�+=RI�3� �rb��8��sJ�
L�
L3
b.�$Xd'%
�;�y9bΫh@����q�����N�K
�m��r��F:�m���:�3
��%
��5�(��'����'�$GZw�v6��lD(>b�z�s�0NP,b���+e������Yk��{qi�W�Z2������~�޿������۸���t�mXh��	oҔa%���	�
�_�
����?Y�F�(�lD��P��ՈU���@���W���q	�e�n�l���
]'o���|�òR�5�.�kխ
�a��^�O���bY*�e��Q
C�7�L�W�5n�d�V��5�����b��Ԣ���
�24Tl2���ui�8��i4�e�q��l����3v���D�.�)is����{^E�f$1�>~\m��Ww����sYI�9C���:;�7[
=�kQ��.^u��R��%xc���^
f��@v+ȟ}\"�޷���i�
4̢�C�.J���iSn�*�'9�jmU{�3���P	��� \L�]�������V/g�>��U
������t
�y>��Z�mk����Y8��V�>
V=�f��֢�n*�A�?d�"z�g�ny�frxJ����+uu��߫N-'y`+3;k7��@�쨥=�I3 
v���f7��AK 7
���6e#���0��vv�(zݤ�F��}ϛ
��uXBx�J�%�K�,���`N����������Q�~�
S��ZA���; Q���2~�e���0to�� �2J��v�l�\O;҅�k���C���%����~��
Lҵ��g�-��?�{����ގ�:�UP��>�ֲJ�5t[dV��݀�g ��vd��`ty�� \V�o<q�]��ϫ������tƽUtq
+�f��V��1+
�	���
��wl�����"���)5���B�-2gPB�.i��5Y�W�I���5�=]�Otst��n�]�pI�פ�=̔�,�����JesSE��f��LŇ��Ò����Ƶ|�n��]�o�
�5���F.�V&�����ؿ<��0�4A�L�9)�d2'��.��j
���bJ���a�>,��k�
��‡�ؾRW�B��ݢ�e0����!#��Y�1�eN�?(E�تӵ�v)F��4
e3{ܗ4��bŷlS(�B���5��7=U���UT孯3�ᵢ����ێ��
r��Rrc��&TM�V��B4�
�`� w�wm��[�l����w��6���
����I��~!d,
��b�&S���gj��{t��x��Myߖ��ԅ	j���Q�?���]5B�X��qG�aU���-5��O��,�e=,3=p����I9��5�$�����=Y=ҟvo�Z�^����m��D-,׼�Z<j�l�rsk��_����T6Ⱦ?1���^D�p�'��tM��
`��n<���ڛ��]kZ�3�:�m��:�ƿhN��iƎ]��Rp��yU-�d�4�Y�w�u�P�2��jp�>]�
M�2����X��] /�S�*򅺮�y%�
u��.�ֻ?�xT�D��G [...]
D
,�D�{ɦa.㻠b �Ʊյ}r/W�e�g7����n��S�Iz��k��
�_äk$u��~5-ƙ�N���� �(W8�-b����S��
]����U41X�����#���H���O�\D�rK|���`�R��n�����~���D]���T�]��'xv��'^���y���Y�_&�m>?�yg��L�ݠs`�'����C����;7�z27$n�D�ݐ��ٞ��o����p9̮����Ԛ�ŷ
�;��x���Z6�y?7�e'�w�Ey�4���o�� ���v���;���+K��
`:I�M�%^���'�2�/�Tfu���gca����I"�Guq
�K�a��f�4��Y?��U�o��������=T����O�Xg��,zJ�8ȫ8i�&g����q��uս_
ݷ,��|��Y� K������0�u��q��5��ZӼ��<mGO�Zg����~��S֮�'�q�ۺf�6������}fa?���̭�uȮ��*�3,���L�/�$A_� [...]
�������
+���uLQ��z��Ԟ�U��-�ϡ[)��Rߧ+~�S~z�
�Ǐ��|��3x_S�D1q��֑�.ɉ�¤�w��
�kDD�+�GDH�r��O�#�簱^�?<ŭ��2dZr����9�����~��6���6.s�:}\$��>�wUHKWZP��L
6�^XO���T���NW�C5�]{
@(h��MiG
C��!I��8�nq�����z���bXWʰ����Wݺ ��%�x_<����y�<<��ef�\�vM����
o���0/��-Z��!)C��D��3f��D��$����M�a���g�<���]ؐ�v�X^�vn�
�=���+��[ta2��Y3Y�!�ۉ�I�q��h�W��j�Uc?/8�#��Z{�S��@m�3��0��e����
e��
r�@
"�=4\����p�y!
���Ón2z���V��<�U$�x�=ѫ�D�vO�js��?��>W��*�gkd
�eȧ��
+km�e"�
\�?	g��M��ŸЬ�f�j�U�=���VG�Q�@��
+ȣCG
��z��{���φ�8����.���c�z�݊+t0�E��	'��􌓃=�RN��B�'v����'��:��ǎ����.��ʉTfw�m�II��]
V����Tإ~��
Ny/d�
W�bOIJ[�P���T���CW,��wr��,����~%{��YMO�a]3WD��3�<㽞xf��z<�/�̹@>u�[d:�ֶ��]C
�a�1�:(����8D�4D�6��z��i�h: =����
CObiVq�a#m���
+��a���������k}�l�U�*�I��3����Lije`��Y4V�a|��,�Y��
�v��!���kF6�H���H�R�f�ަ���X�ؓ�+G��(�JsV�zײ�XQ"מF���c�͋&��U�:{�U\%瞅�2%�����Y==Ik�� �6��kivK�-�r����<ύ8KhT1���K荴�EEth�F&5�h���1�G
,�d=��ʽ���]=��u
+ߦ��*x�7-�j����ax�>����p����1#�b٭�t�.|��<���
+�
�Z���/y�i�QdںG�m�`7

M�ci�]�x��7K
P0�-�V��i	�m�f#��F�����47`
��r�����g�ɘ�q�z��+3Orqe�8��DX����E�t�,�0�1t���S�Oa�
���X�֔���ɸ�B��ܧA�ڿtn�v
���_���Dρ�|����S܀<�fy�װ�
 1jO�q��)<��W�o��uݓ
׵�ꆻ�(��|xBaN]�v�ŠN�g`܍�����r^�ܖ�X�֬+��-����]Q�@����,�8�[�
��9O��mΓ�|�{��2��N��u�]��W�eƹ�S.ӧ̦O�M�Q�����<����kO��?����ln�|?"~3�o�>c
�
)ĺ���]���ku�޴�]=h,B�܆�-�X_��U�,�g�N�BY��Z�6�yEzwCXa�z�4T#K���*�krf{JC3�l�������1�[�Q3��'����y����<N:\�fy�<����{nR
ʇ���ً��9�k��z��4'q��E��
�V~���3�9��}��e�|��Đ?�[
f���nK��Q�.�ց��ǁ�
�
L���ݣU4����9 $~�%Q��^��iȖ`�L��{��U����n���2'����*$y[Y\����vLɭ�oiuc�n��
�:�oN�U�,�u]>�]K�i���I0]��k�~����]�}����l��
\��ˁ��Қմ�f5/���-^��K�4��X��Ӝ����p����ӊ|=�o��r�"�/���ObqY<I�-
�:�=�}ݽ�����Mq�0g=~S�=�I���Z��`m��`�*���`v˓��\xZï��-�6/���'�����`�,���y�<��޹Hf�*ͻ�z��lL
����G����| [...]
+��jVL3g�YO�/��RT��+�QV>�W��(��|u��xG;͸�f�q��
��/$׺��L��6j]�<�[�y�Z�q"��u����}��/�%|��!:���\]��˜\��mV?�|�Gq]��(����yp���
����z�X����o���������]
A���9k�o]z��[���d�a�i�[6�y�\�����
�8�l'xZ��SOwgY�f��f�����^K \֋o-�n2m5�TfŻj�g�a����Y"e� =�K�a����+)t��M�ΚvVë����'m���%YZ�$�>�S`�!O����A^ŹH�69�9�w�I
��]�C�������4��WaR�a��P,a�� �/���=a%V��
���+�|ŝ?C�����9E*&\�
+y��4,%��f���/
>u
�{��#<kŔ���Q/��<���ҭ��_᫾3�
�=k<q5�ҡ��IZf]��y󿌕��98�b��ڶm��5&ˊ{n��5>����|�����������z�?|��?he��1���+��u���� �7��BߢW�?�6���]
N��PT���S݋l��QGx?�G���`���aa۳�A���&|�RG�����S�S��86�F�#G���+�e�sһ������;�
��>�li�Hy}��:f�^�S^������XߥǕ�T������
nj���
�"��¨
��eG"L��
�\����|��\��e0���VN��}���?��Eǖ�4��q<ڡ�`�� kJ�0^�4`C-_���D�\Q��ki�%`K��T�����$�Q��(��i���S���U#g}�`,��ZU�@��\c�l�j
T�����m+`#
� ��?���[�_7L�[g��m�׈�
ۋM{�G����Ӝ����`��{� �i����O��v�!mj�1A M�np�
`�;�T;���"z��G���_i��[��R�
t/N[u�p��#|+�M��3n���7	�H�ɿ�U/o��j�� j��[�c�o��l�r|K��[���?��Y�yI���,��aP���27m�++}�خa�cZ'�U27�u��
�W�G�
��
���[
������CϦ��F�iۈ�
+�G|Q�K��{A �w;�D
$y�7eb/x�*Y<*��Q	����C\gS�����o�
�o�^ќ1Y����_�/�0�v��n����
��K���K��|���N񧜐L\J���|��������yao�1{��~��R�[��柴[j�=8�u����1J�b�:���U�
�4�؏�V
+ם��)\���v��<T �����ν�o���h
�l!Y-����A���kĴѶ.��S���'P�?�~������ܗ��$�Q
�d��V�O�o-�K��>��c���"�;
�8�C�f���^ܥQ��&rv�~�
����x}���1�uN�Fl����g��2���
�x���?{i��������?�����?��_������7����������۝���?��W���������O����X��z�
?sR����������>������>������䢌�*����_�@6�����ɟ�+�bA7Nfa���_���
�>���:�8��w���o

"����7
����P� �`?8?�״�h������O�����I��5���}��@C �b�5	��'{���������`�Ǧ{��_n���>�ʸp��P�_���^W���8��z����zh��Q-�m�]�Gr7�{��m���f�!�!��r$��vr*�`��x�G�(���Y���_��mJ����e��O�g��s^�Ӏ�����3~lӇ�i
���+�O%����x*�v��ۈ,��/���c����?b=ӟ���䄷x#�w��_l����3��\�#>�a.����A��[-��>%z=�P�K���n�#?�#�d�a>��F~��:#7v,�%��v6]�ߩfx���UD
��}�)���J�y�wǽ3�3R�6&�,�0Vb�xKGa�=��y}J�p!n��D
+��
дI���5��V
+�ȉ gU22!�M�����B�%�DC!X*5�u!��9u!��[�B��3��BHD�gdٸ��=�.�.��:o$����
\v{�!�;�
��mc�sF��6�@L(D���3Q�T�$*U?�!!�ɿ~Jczs�,
�!��D둕W�8
+����{/�ó
�@@q�i~=@e2n�����c.�CRɶ�a�4��R�tjG�R��k�t��
����Fb�o��@,�U��&���*.4ç^�G!

�W�-u1��%t1����51�]��G)d�kA����^�H5����~���_\
+��r9��������X��9�f6dG�T������;<�~t�����LM��>���*|k��	�R��~�m~��7�1��.���
f[�t0Bl��~ ���Y^�^��x�ٮs�37"Jƿ�?���O��a`w9��\�O�c�
��8��e
��z��6��ގ7e�� '�N6�>Up6��4�?��?�����=�R���=��Ko����&��Ϳ$,P�%lf�a=!f���-��������^O3�_:G\$�&��[�����f�${�	�������z-�;hm2���0ޠh���C�� �
��9����b����������(ʎ
��[ �����t�
������8سvgx��gx�Ý��8�k�����Yo�ӭ�}˻�O�B����{����O�A͞�7�{�9
� v�.�yO�Pa~���Y�,(�oU���lgKi�I���&�i��g~�.Vv���'p���CܼyT��խor���/�y�P�՟�R��'@��
7e�8�_9
�o���DS�`�
�h*�m��I���$6~ǭL
bX�$ߗ�} �K�>e�.?�A���9�[��;'�8��E���e�Bz��"Q���<���P��&w������o�~�a��{QC\6�P��Օ�
뫿A���0Y
��S��oy�L��~��y�_0���
|

������3�pz������
��W�
�
+�!�^>rdvK��Bv��C�G~�-��ށ�"�r��v��CϤ�s���;�7����H�N�����4f�{��e��l���(�sx��	����p�����u���(�\�
W�vL�̟�@1ːq�E�d͹E�h4��
.N��w�g)z��Ea�tIu
G��
QW�'&�������m^���W����?����,�PP�ȿ�llP}��U��~�g�_�w*�7|��>�[˷�����i�yNBp�a
l��6�qd�*�c�'n�o.9�7�gS�dk�ީ���ϣ�� �,|8�ƞ������)��%+�����z��zƮ9�g��i�O�I ���;|�h
�p*�ZH|B�44�
�xa_����x��@X���E�����pf<�Gz�&UQ��9�有f�2�rM<b�I���EG>e|�.T;Q�
n��)�
Đ�n葠���D�6�1����n�~�h�CNl�ҫ�>����ZhNo��
4Io��=K/�Y	slC�
+��"|���A~=�@Ӌh�������
v��'��
m���I�>D#�k�9�Y2Τ F�w� ��~����9Ӱ�M�tKB�
�lz/D�?�t�}a��D�5a�wRԧDh���[t1r�kQ�=��|��A�D�u�Ʃ%?� �Q~�=��!V�
,*�^�_QČ�[ɨ���.�
�#V�g�����\�$A�":�NaC�L��w�0ԁZd��$d�����#\�xU�Qw�� ;��Yڙ��Pr�䱤8N?NJzMb|���|ϑ�(f:��@�	P����9a�&�;��%;���s>%��Sk�.AŀN	��X.�h�9ą9$4g26=K�`�ikͥ&���
�i�־�T aP�=��S�3�
%���K�����`d A-v�w��$
�i�ӵI0 S���s��w��YM����bB�

lj�����=�H��t
%X9�!@ncg�l�'��o]
��B�fS~=�����Fofٶ��f�.�q
j!��Ӿ�p�@߹
������4�{ z$V`��h;�yM���1g�a�P}e��rG N�d&��������tP� $q�'�,c o]��\F=M��!��y�qv���x��ޝ��T�m�3N�
�d�A��zm�&Ff����*���}0��\��^�ڊ����hO9����� y:��TE3��t��ά�Q˵���N�2�К͍����=�m�M"����˹`M��
9l��c�R�;��B[�/M�<
����_ٯ�Ws��0���p������_x�ǎqګ*
<�
-3h��%dS�ۤ3�#��n=
�h�`ϝ�`���rS���IӅH�
+�u�
[�4��
+���'��q�Fߌ_S��8f��7����5�&���H>��Ӗ��6z���es�%W���:�blm;(���
^�X����u��̺��N#�I���
G�� ���m��4\L���
9
m�ѵ�����7����k�M�fvDN�mC�������5mюb,ۓ[=f��}�ćmP�w���f9БH��u�3N�~9���2d]�Ӊ�����w��I+g�c��^ �Ts��&�XK�~sXM��d�Z ,~���
��`X�,c2O`+oG���
�a���r
KvH�y���ۃ7����.�N>jF �������l��T��
-
��5����|c�JD�P���E�n�
�q��K����GW�2}�&#B�aS'�ˁ]��EBQ�-�H�� 	
؁��1��A����A�N�g7[�v�����ǂ�f1'�����0�0�k�NنA�N�B�8M���"���4�I
+�A�M�U��X������&�r��ʏ��S��Qܛ<�r��S6�l���
�,�*��y77˶�'H�%�����*o
nw`:�DK"r=�
+I�5�-�@�Z��T��~'��
���[�'�\�u��^�񆳥 ?3y���pȵ��u��)�mS1�S>-2����m�*�0�C$��ݠɆhi�@�u��	�`.M='�Q�y*;�T�EUUq(��D_��Q(�~j�[�^q��o���v>R:�y���O1谌�S����SmW�^LJu��8ؐ��-�WM��D��g'�'^㔎�'7�VSh�[��!��cb�Ų�1WY!��`�X{�ߤ��
+��\T�	I����D;HC!��X���V�]Ȥ��<*�hO)1ZR)l�
�Xk.%Xb(�&��@
�ê
���&Jz_� MAHy5�Fc8���
�� 9_J�����7�2߲b�����Ȩ�w��1�P ��%&�� ��H�}
��IL
2)��j��ϝ�K��
Z+qh�K#��r�m��l$�i@����>�{l��+^��[��39U�
AN%�6uy�ҤRB��95�FV򡙜_=�D�	r2V����O��,�{���ޒ��Pؘ8m�I���4��]�,Y
A1w
+�bzBP�JPs��pw��{#�z��n�jBωĜ�"���x����߼	��ԑm���ಠ�FӬ��ɉ�N`�!e��O�r$�U'�
B��G8Eh"��`o���ԧ7�x9���r�??e%�T�W· �uh�*���N���pd�E
�χ��	��
�a �L�.�
sgR7�A}�V?��Q^
�d�*��y����?{��y�қ

P
6���-sy�	�!��2���@^��0$h��E~դ�I��a>@\��I�C���h����<�
)X�\��K�M�oH:��%f�EOs�U�K��
�l�Y��4m�e�ʫf��N��:3�V�Y��Q@}A\�mi����e�C^��=�!.?�a�0� q�����"��&�x
S&��~��C�5f"�R�ᢲ��q$��O�wI��l�K>�Ꟊ�YV��
+2\t�U���
�Uۦ%3[�)$�I�f4�C���p�i��)U��U�r
+$��C��
;"=�>��wt_��+�u�@ŭO��
ȼ�4w��6I��.�9��ơZ�!l\}L�59
�
Y q�		���U ;:��?��'�s[�]�S{q�=�HCc�4;Ke86J͛6=�i��+��Q��鯹���!�=��I��
`�a�	p ��j��=,�rBhFQ��S��8�L���p�
M�
,��
7��]�&''P�K��S��p�ܺ�m/B���v��|��r��Uz:��)�
+� ,0��:�A�
R
��*͡X6j\�����|Lt8���u5�6?k��=���$/�g8W�
G
+)
2 [���

2�Ep.�-�P�[zp�%�4��J9��c�0s�έ8@
n��qʉk�X~��P�,����rEj '>d*`u`��ɶt+
Y0E�� �Z1�V
!���*���	���>�vX{4ȩ��;�Ǝ��q��X�Wr��'[&LɈ3
s��)#Z(e��]S���N�j�
�g��.T�lv�!��J&p�f�������,�V�
�6�BKG���ݾ���O�F�AW���A�΃e26��`g��wdѽ �R+*��k�����G,A���i+D�m��	�bw��
�ckOݓu�zi����e^�_��re56�>��7�T�!t?����ί�
l�!���g�8<�7��f���_p���`Z�k�]����H�}�A��>Щ{�–m<&)�l�W�A;��y�_�)�qp�6+4��=�{���4�X���!^���T.ֺS����t���
�6h[�mh��5�c|�nsb�nm��6��5��ڂN㦏��N��_͂
���=q��i��2F(��O�g�;���$O./�m�m&��b��4Ÿ�<G�y�dԩl w糧��7�>p�5f�'�\pb%��U�Ě�<
}��H���88��R�_�MI��ڥ�
2S��a�]�)�!��
��X��˪>z�0V?�
�K���K{b:*�"X�)-��
඲v�26��؇�������J�٪\6V�܅e�jɛa�F�

�At��h�o���mx�h�XA��R�
��
E at odڏ��)ƨg3,1\^Cv
��à6\}u7��1����h���q�$�C?(_��۪�����k���F�'kNI�4���q=�
Aǯ�S��k����Uu�v�fl�acF/��G��
+�������y�@�
�V/�=��A�h��!�xA�#
��P6 !DPM�T���}�p�p1��IGH�M��p�����,h�p��4;�7�F��j
2�}V��s.+�ɎM,뜡�����]��]�4��X�� �Pq�����՘λMzh�,Ӄ�m]%�=g���ѿ�q8M|0�Kn��GR�:_Q�>Z����rؒ{��3��y�*�ΈMd�P-1��2�u�v�⥪d�5胕s�G���f at bhG|�FK8'�#H{3+�~U
_��
�[&tX���
Q	f6�
#KJ�~6r��Ԯ�
���ЅPbo_3S��t��>Ao���_Iק���Z��Kh�0�rG��
��!]��꣌�TD�������b4��f��	}�vj6;8
���YH�C�?U���|H�5�3f�,�ixJ
�
4h��

+o����8��˶	c��[׆�c9�?A놭Ds�E㿢�gœ&4� "I���C�*��F xb3� �{=��,${��j�0d��V�8RńwC�*v��OR��R��D-��1ˊpQY�7�v�*�
1P<�u
s������rF $@K�1���Q�Hب�}{�������M־fK��|
�<ћ|��Ź�(���!�' ����n&C�����
+
�<#\�-N�F��*�aԾ�3G
�F9���鐼۱��^}�ژ5%���n�9 1�5����3
+yP�Z�,hYx�A�	�,�}�Y����@�Q�йS4\�0R���b�L�2=b���#�y���Wԗ
�0��Y�3���u�+'�-�$0��5��j3�7�C��~{6
�t��
��(�n�-��A8�
+�%���6�m�y~�yI
DFG"����@�$jG�(l_�*��aV�Izǯf�XP(RD�ÁD��
K��t�A��Q�ݎ���͋���2
2O}t�ؘd�fT����<q�(i�rb�D:�ҏ�
ظM��
���;SF�?��Hu5��l��b<�p
=)b����X��l���� ���k�K�ES�
h���i�$
�
e�����}DAz�}8�z
Lb>6C��wa���oz
'����

n��u��났 6�YQo /�C��$�k������
����^8]�6ElC�%D�
�Y���yH8ٮ�]h�j�Dg�?��
+
�H�O01��dE\���Uږ�K���Đ V.�od
���*�V<��������fM

������C=L
+�n��	��`L�{UR�M��p�XER���ՇJ��h���aQ��F�J
����bL��8"yƧ�
�i��LF���݇G��*��� q����:xqӜ �L�8��U�˾���0�+4��E�N'�.[�E�c`y2
c
9�����G�^��1&��!&��"�a�~<��ɅCޚ�u��tL6����������VH��p�����0���9���pe1Is�l ����F(2c�($X��'�P6:tk��-^�
��L��7l$��I��5q�Bċ�Y�t,��
�Z�
ϟjt�`E��I��X�p8�JMo�)D���B���(4v��i*3�97�r{3
H}����?�݂Ռ9B��X�A��x�C��oZ" ]3=rGv��H��ٛ3�+�@W����|�P.wy,�B�\�9	'mE����pr�c����d��wB[��?�)���Z��V�B��ݸ��̫-j��,%�0BLB)�� �(J���_�$+�(Ȭ���)�'��zi���F$	���V� %q ��7 GZ����
�^�l�m���{F�l�~a��?����
D�C�,� S1�H�L
��W��H�(��~��w�5�h��FX��
Bi�I��nC����T���˰mv�fN�*�a��e�6�](U>�U(O�{
AWe�mtӆ����H~<*r�� A ����Q�����
�.��$����	����,���ʧ���A��,s��<,S:(Lj���
+њM���H�x�¤G
�@�UƊa�!$m�̜ߛM�Դ�
2JQ��*�}�Fs"I%@S�.�&"�U(���P^��!RcT���Lj[��|ý5y��8.N_g�=��#Q�m����h݄�i6�B�3�m2��܃f�	��I&�U*����t���Io0�P���2�q'zܔs����Oӻ2��n�`T(Y�i7l���.K��9U!Ͳ]��ΰr�*�E.zjI'���B��P<�li�������
�^hi�tL��we|��#��qX/L�g�y<4�i�c:���aaGӾ�k�(1~OS΅�'3d���-���4`�

���_��E*��X��h�*
����B`
�S�2��krp�J���

f630�VF�Pg�⩲�]<�F
3��i�,Xܽ�x�뀍FmGe
��i*�P��E�*[N6y�~�Z�})� օ#�
�����DC'�`��.��`�*
������.���?�ʪ"��ށA8?��%��bwg��/ş,_Qy�d���J��`R��]�c���M8�H��LZ'"�2)��Lr�]�OFsJ@#rk� �o8���ixfZ��)�(��8DC1�ה��x�@��w��L}�є
+ܝU:�t�D�x�R!Fݥ��5M1�PZj����
�
V+�M����\�߂�. �Uc���P6#K DEA��eB�']"�J���[��)�A(�<�T�|{.%��1���� 
�&��
��n2숮=��֡��+c�-�lk�'�M &)(.p�.���DtO2����32?a�	K
�2I�;�$8�>DNZ0L#Y��?���(2���c~�b@��:z��
4U��X��$��պ�%�G�a蕂�Br�$!�g��b���n�r��Ƣ��`[i���?���]?X�T�N�v��t���� 톆3���6I���e�g
�m�e�J7�A(Y
�P?r����a��rS��������Ő���8����Çk��y��L��x���
w�H��F�Kڝ�H�5�Wb�{ͨ�~1s�n6�Nr�-M|�[��Fv�~�"2
6
S��a�a~H���*bi��Y�
X���W�A#:�<��=�5�ޑ��[+_·Z�&����Ab)�`���HU�y��^$yz�!���$G���bA�!gwY��UI��<\ [...]
+����/
BC���� �
=?q�s+B:���G�f]|<�����u���( �)�����P$+�j�lcf��"t�<2 ��w� 4Ln���F
@O���]d�L�n
+�{��&�11��|U�	��&���%@.����^b��
�f���<�,A8
Y4d�
�:�gc��DP���Ōu�P����WQjQ��ji����~S�
��!Q��O������(���N
K�fW_��;	� L. �V�+"�����^p1c�!�6y
�۪�y�̹���(�e5v8r�[����ȟ�y�SDB"�������om
=n� {�Nڵ4�����W2>�.:��H�rT�@WU=%��Zɔ���
7���\�A<{
6x�'.�j�N��L:IJrO���w I0�Wu�Js�W]��Q��`ږ]�O9
��M�sˆ)�X��*`�Nq���M:tP�
Dy�,�ޚ��'Y��V�Ի���2� i�o�Y^��I��R�
h�]؂%�����
M��Ũ��
�(����5��`��"�XYpȝE��(�G��s�+^�呫Ϸ��dFA(kE�,aT<�v�e�v�ջM����Mc#�����rhO�~2 	��q5��0scV��/HҨ�;�
g���̑�j�����̫��
h
����S$��v
�
+�_�iq�4��3��"k]�8��0b�t_���Y�2�*ϭX!O��>6u{�E? ���-M|�6n���l`�H��1��=
�Qγw�Q��\�v)�O��<��	g��|��:�
ِ�����
]�K�K��v�@=B�,-���"
=J
�o=�Gu;� ���#�f3z��,�7�p�g��vgk��NP܏y���-��k&w��I�g������/`��[曥L$
ʣf(�`Gz"��X#��d[8�aeJ����
y���el2;�o��f�p�TD���_����d��+�����j��N�� ��*�4��#Ȗ.1�/�J!��
J�B�
+yvw�1�sXP��n��7�k+
ܪK��y�04�F��`��J
<�9�-|E�(�&-M�[�١Vng#���2���0��qWC���^��D�J`Ɯ�*�x>^&�E�	�N����
bx�*��+�.0G0y�M>w�~�>��!x�-�x��4.:,By��nDWHE��"l ��$\���ƙ�|˳� '�MG w�R�
;���7"5�.7�G�r�"�W�+Fz
�����
�Fq�G$�Z�����U��7:LPrd.�lyJ
����O��kKXM ��<L�\��O8`]�4Z?6 qFO�*::�*c�74�֍��
 1D�Q�eR-�z"ڂLJĘ̏�Dw��
��i	��_��h )�	R"D����h�IDz����9m�9�8;s �}VA�����T
��4RN��R D?�	tt@�[���W�'.ńo�9&}�\��
m�r�,�z�E�C�l�.}
�!_Ү�T4�  l�O6���64U !v���S� [...]
+���w��f[�'�`�&�&��
k��jʰ[��&�'J5:`\��$i�q2Ѝ5]�i��oD㐹c7���Ja �u�9
��c at v��(F&f���VT.(*_��fҒ�J
����*C���
��s
�4�.a1��:N<�l�5��| �rDT�kS�yA�&li��"�7!F��f��� �
�(�"R�&8P�0���IH�A�P��
QEbl`�*��=mk
����
'�T}8�
���
�W���IȲ`h�i����Z�\<��(�C0�`=�j�
+a+(ʄz�����
�	���	)6�_��%�D|
���nlpζ�3�P�}�:�P_��s�*P
�D�1o^\+�j��ej�V6�#��0��;WP4���	��C���~
O�®X��xk
#�y���
+���)G���K���B� $��-�Pp�^Dn3��S�V#�f��Y���t�6�t�ߞdf�B��&lɀ�ȃVtB��5+*
{\I�m6�����S�K#F��Etx��M���j5+{�E�-�W�+��{��[���V�,rv~y<�b�%����`�;�Z�'Wj
G
+
+!�*��$�l�e���'�b�����o}�N��*8�*���A�}��9�pers�`Th��}�dOq̠z�9�Qï�-��Y`�@�v�����r
+�Vd��Eh
��M75Q����E-gr��M�,�<1��7��q
*�.
��"��5*���Yֈ0�0��QN��#`� .+�W�
V�� �
� m4 <��
؈��xVI}y��n�"e߈�O=O�O�V˜w�lV�Y�7J�]<l�G�VI��wFexj*��6U
D��&�3w��\U
n
����#08U��kR����Ê �Hi�u��>u�K��ҧ����E�ڄ$�oVq�s��B$^�|+����
��i#�E�����{��������_��uB/�j��	�faY߂V꥗䔶-���S��0��*��G!dP�
�R
��Mfi���B�%��Y7QL"��l��E����;
�	~�����
pG=]d�o7�d�ذi
��m%+�=���k�pjFe���Sd�~��;��RqNj�IYi,��:&u$����6��5HJ�O~ؖQ�Zg
+1d^�6m/"�ҁ�|~g���!���M�M\қgg�9
B(s?��t6�%mZ]�"�W���%u{����jη����#>M�3z=���{�PX,6�N��Cт�XJ��W%9�=_/F��b���Q�u�,^��U��� ��Os��o�Pư
�[ �x�W��67
g:6L��4�A[uﰲx��E1����cD�zQ�7U�`
��xS�
�
�z�=e&��S��JAcOP5
�T�%�I}������_��JH �5E���L�V��@.�A.�^>�o���Բ&Z�=�����Bf���JN2⇐g�#���>���pD7��4a2G�

+,�z���QYJ�끳��N*^��
+���MGߵ�/��Y�����\%.�`t��FD��pg�d�"���B��!U|X� �
0S�����!��f<�Y��� ���f	��e�y�b��(*����C��]�dY)�2����*`����"�����~ψy��*��9�3h�=�,��5"(K���`����VFGX���n	2w6P�<iAw �Ѣ`|(
��i3�W�$�� ];@E:�w��bH�b�`_;,|����8
C��~
V��1'�.��wG���H�bwA&�a�Qe���Z69�ǜ�)ri
F����hT��b��4S�*��e�l�Z�&n$X�k�Iu��_�">Z�p.��i3'ZJ�!o��=ɝX��[���㥌0l*��B��d%��
��"|F������	�:�4Lo#�\p��*�-d&G��J
���B�Č�B� ���JQ��ڄ��T�U��.qw_bwנg�FQS�n�k��t���xZ�k!Q��`/V�1O��3Y�%�%�a̚DEܴ����(P�ʏ [...]
� B`/k�B�p��]�3mr��,�K2��͞G�Tz�a��(r[�p�����oz�Q�1�Cɛ.Qwϱ�d�����Sc�)᰺6�H�If��l�T��o�W���=���Vi@9]8I{�I�5ST*jYR�֢�
J|F��z1y���$
Q���|���i
@Z_�qM�f��"�p�	�Dj�dV�@bl����V�!�w��}�>T��g=MW��L<L��::�A��fF*�­
�4ηiS�4�і��K�@�0�Y���i�v�/�����p������ݏ][%�q@ИY�0
-���X�;
�$ΝnRd=����z%K4#S,
~X1/��A��?�
D���������[�
+Z���y;K��U.^3�ݵ��x�w�@��w��倅����qHymulF|UeiBh�&LID�`���̅��/6
+��1�+��w8�Q�9Z�//��
+�*qAO�j!�6<
蘚�R��eZ-��	�0!�F������xyw�
眊}2zȉ��x�/B����5��D�1
���,�
i�iN�s�"�A��'��#��c��n�w+��nqC�<�{��aM15U{�9W/
+zo���F�g7��(1�=���v�`T)^�
DJᚇ�jF%	�N!�
p�т)����t�y�;P���a%��
{4, �,�N-��O3�J;���a��U!�e?����*)�G�kr�d	;4F��̚�S���:�#��t)&���`��7�4�&�#f .�^�� �
(s`.�� 
�t�8D�j�N�;���c��8LsT-q����+@�y*�
�
Է0�
AQ���E���Ʊ����¢�]~���^���1J�c�Jc��"|���q��b��F�h/`�0����
=�u��dG�}w@�����8O-��ӎy}��=�鬿ق�%A�j��M�Gn&�)o���Wܑ���P��!*1kQT9�9'�
�y����ј��PqVI2�rQ��n~H�n�WYx���U���y
Qy�򢓁�Ql�2;ZDʔ����CCQ|��j3nÏ�N���Xz��[��<���J�f�9TVE�����%���JЩ�:��R5��1	���ƴI�"
��rw+[��?�d"�s)i��C9�T� ��+�؍�N��0��b0XL�AT�� �E�J�� ^�O�M�mT6v����	��l��҄T����h��@�PY#���@�i��x����+|�+���L6��U�<7QK�C�z I�@CC�؉�m����C�X����m@�8�Q���V�^pU�J RK��Q�Ti-�]�	�P)�[�

V�UJ1o�O��v9�XW2rYcB������I�����o
2
jG�'�d��
+9����4ޑRW
�����)�ĉJG�W�C�Y�ġ��8,Q1�^��A9PA
��C�#��.� ~Qd�x;����:8�
�K�
؝bH�+v����Iӻ?��}9e�=rSLڄJ4�9Y93�%
��Dt�Vn�]�U[O[%j�,v�)^X%��u��R��&VFD�$a�C�8�`��P
�beVso�\�ϫV�:�3�˞�#�:(C��0Sk���ԟ��=u(CK��-���N0,�]$V,Dd�#����R\-Z���8��m��
�lf�g�D�G����0��k�/�����%F���vM��Eg�<�T�6e�#�
H��ŵ�qIc�Pq�
͟�Ľ��	^�|\�{�	'�	P����# P�l1�|�9�W�
���"1s���g���M�#z7��&\Z�5�(���
v4�w�b@��)R͢�jNv`/M�)�(�`:����
^�g��י���<5�!�# ]�ޜu\��·�T~�
���{�i�v
+�^���t��T7�/7V�
1�0�C�ut �p�.^�
�@{��g�c�*�3e\!ݰ�c]�.rF�#IU`�b�[L�4�}���#��ZO<S����L,
:����m��}���홋��Q�i�����
+��,�
��قu���2�MCj6��R�
MY�n���<�ج�]��X�Yee�N���	bٓ^(�ώ=
��l�ce�L���
��I
�)�W�
W|�	�M�!m�Z
�L�W�k
( R�h5
��%���!�ip��C�2E�G�$���UN!grO�I����-E�&M��@"pA�`Lj*PrN�ο�jkB���9N
W�P���Wܡ����h�*�.K�n� ù��
3��@��#U+t��]��&�j�N�P�в��c�S�ֆT��HYR2�$w��D��`�Ly>hv>H�b��9m5f/�&�\6�
�����K�_�B	��5L���9ͻ��v�Y	;;[�
�
F���<+�U�{bc��'��ac���D#2)`gODU�M�x��_�uD�i� yn� e�{fj;�3�f��\dU#ߎ�4à�̀���mO)LT��4ea�@�W��H�m�I�Ѽ�G��m�@�S�L���v$-b�ъ��@�(���X�:
��
Ѧ)p怗'x�h	V�J�p��"\��0
�������W1��*�W<��H�a]f�j��X
R�������
+����]��8
�頦,"�J���,��D�]*z�R�0#�/�]2e��
*A���L�(;,��>1�<0���*����7|�Y��*�Z����K�Q�
�
O�>�ԅ&QF+�{�]�\~@Yc���_ӌ4��C�?h3�tt���{ 0
-�Je�iK�F�
+�����`AJBC���3�W_�O���=6�8�_�[�
+0wd��X<����j�����vy:�
�Q��бY>��
}���I�K���H��{��]�8���~=pX�
��+�ﻮ7�X�r�ӲPWK���Q^V��,�7���6[�e��#pFlP
+n����s�p�(y�5ڙ��MݯV��Ϣ�P��r]���'�1m��	��nF�ʚ����0WUR�0z��ȋ�5�=�=�|x}z
Ӡ��.<� OVt���8����ka4�w���2�ëW�^j�*S����tep����1�1ʦ��� 4�@(�L�K��
׌�
.�fG�VT�:E����FE�)b�@���ɞ[��c�2, �T}��;���%{���/�6��ռ9��=��L3'�D�iӐ�C�	�ù)�C�{_����)M��bt5�d>A�xS�E�V.{�EԮ߂���*Ъ�Q�U�8,�j?��F`>�]��9���J������ՁcN/
��@���(}���Qqz��+n^�h9�)���L�a��䴐��Lbio֔&�gSWO9�?#e(R�M���Id�X�d؃o,�Q�:�4�w��
��D �*�5Я)�,�B�Ǥ�hQ_O$���h^Mt���[����z,�EJ���+�0z=Ӂ�a��(;��q��n���$Nٟ [...]
+�52�U���,���g�&��5�Z�1��(!g$� ���N��t��O��J
��;O��s�8� N�MJ�lu�E�Y��<�4��"��Y�7��T�h�5U]T:�5�P�i*�V]��W��T}��=M���G(�"N+�
D�'���|p%`g�Y3��4��*@噍�
+#���?��O�|hOE���CBas�;
�|+�Nr�8�	5��X=�G`?4-��`9�Qq�-�*�Gk�[|X�KXA��(�7]�x7	��f�' �"GX���}"�
�A|(Z�J�?k���Q �cM^8���KA_�
���L ���s�������U�YH �
 ջ��r�6�s��{�T��{���P����m��J���Z{DS�F���=�4�_0�������2u]���(����Ԭ&"�@+�,ْ����g��{��b���s��v�a����cm1wQ�2�pUk�����
y	~i���{�G�q?
Xk@��}�+}���zk�(?NI=c�����x#i'�|�&u
~��!T�0
wgS�<�6���Z)����
�<*P��R���5�etndpFd*�nģĿ�xdqc��~mb'[��S�b`�iπ'����3����E=d�Klm �Bz��}/H1v>�<ϲ�JiM
*V���&z�h�,�"
GrP�r� @�'�.y���K���+�{�@fv���<�X�u�������wYi�7�qJ3�
���볽��ZrbN�]�v��^q��*Q�n��3�	�� �$ ��C�H�)#V��9v�V
�G_�I��٘1(�,U����\?b]���7��e����Lo�g06
��7,��k�;Mx�ISq���y�`�>�Y��H�����@C"�;^D�m�9^HE��k2|���6�y���g��Jp!k������dag�����v��/v�|�2`�γy�;5�!_�Ȩ�d���I�&����FhJ�@
��`m}n���՛zXiHvږ��^��Ea�d�Lw���<�
q9僰�!��ϒ���b�X�je��L�<W���'ƌ�
q�8�3tX�a�t���*�ϋ���b���Sd��,�B��n�<aL
�Tgk�WL?Jꃀ�p��Ma}�{L��A�p�s�	��@&�M�i'?�in)
F�� [...]
+�A��:D<��q;Dz�m�k�xx��:����|���'z����4���v$�9��B�.�3��u&7���=���u֟Kwr�6
Y�'��C�"��P5�h���E���8��^��$Y�R]��8
%���o��I��l����B`j@�z5$�<(��JƩ^�qeh�Յe��h��i�ơ*٘
��r��E1b��x���t;�� G���?�
.[2�1�i���z�^��"'
"��ā�u^�؃W���p��m�ʼnm�
əd�|B�
��m�.�fGU�����*B�ܵM)"���4�"?n?.?���&�
Ņ�BC�N���/7kY3�3���U(�H@Ƴ([w�� =א�=2�?8{)�.Y���+@�&g�&'gtV	�vq9��$�4�U�����
u�%�IzM�s�[A��-xa�sSًՎ\{���Z����$)��P�ׁ�H�G
�`Ub��P��+u'LJ�'f
]����X0�0�HrX�UHTt"
+�5�
���#E�*�жث@q��	ƞ�pv��+�f��f
:�x����J�£³��ɦ^�w����ݴIF�G科����8u�^Sz,�H��������K�m]��^


0��bt��.bZ�U���������O
+r
+��X
+9v���c6w]G�x�ۏ&ov�gEz����2�$�?�ql��$icu���t
��sՎ��d���
���g��9���]"[]�o:|I��)��H�^�e�
{/e��Q1:1Z����;�1댇:U��b�@��M <6�R9��=�w�#N�ؠ�`���N�L¯x*
+P"�M%�df���O�}�m�2����!�$�X�4s�X9�9%I�>�W3y�CE ;W9Y���S�M�E��>6'����ƻ
+(tQ�b��Di~�^t���B��ud���=,�\���
��D9$��&
��<���J��b��dň�JMC�4T��C�+�
�uew�X��v��
2��5��F\����9�"��XT�|���}�0��FB),]/�Í���ј�zf%���G�)�.?F�X�aW! �5XA&ʯ�M��D�
+��
_��5e���胞���û��  `}�h��NG�ʁM�}�)�:[��#���K����
�
al<�Х��|M"d�ǯn
��,.��,㹤�����d!!�IK�m���3�U.�%����H������L��2��[O_�m�h�yH�w�a�<'0�
�2:wA���<+8JyF��ql1��5�e��_���
�
-��+U(�6��)���"4/�$B3�]�<"_��*O}X�%Y������S��Y#�;��#6t<‘��q/��T���W
�BM
�e�Z��jš�|5=�pSԚ/��:
+2��"�0%�%�Oc���!On/��m7�}
���I|Sg_q:���W�d�U��hp�^�3:�+ԉ�@R|�j
��u�!��	 
gͦ&
��M����Q

*U����(��F�؄js�D����#�\����7
�ܺ0'I;� Y�
��Ym v{.NA�G��H�n�;7�g�����cnWl������-
+DC��Q| 
��*��*������|
�J͍]}���ܲ��j9<�Hg���Ÿ[��u�}C��� �t��˔Ęc�Ѷ��r
�cr� ���h
vyg���Jx��-��#��'��6 �����G�:�6�)=ƽU�+6�:H2�����0Ht���6r\t���
+����?~�����ѫ������@ۺ��ʍ�^�ʭ�ᷗ��h
}Ѳ$l�X�g8��ܬr�0�#T7k��~E��iI�%�W���
V�!z��� 
+  k�u�� �s 
u�P�!��ʐ>�=^�
��
=M�
��p઺�ܨ���a�9N(� �Q
lwH
a�Hj��,��0�������Ј�N��Xծ/�*��3�Ld�Y5��,�b5i�*�P�����{�K��ك=U���<.&d8��- Ĕ��he"g�
�,�
>|��$�a�~B\ČCc�w1�rf�ڳz�҅гY>�uV)��Q��
X�=l�/a%��ٙ����|x�F�t��e�1y�_��H�/0fI�LplW�V�������:��O2m�ZB�#U�<u T"܂:
+"ea6�=��OL ��X�b�o���I�;���O�U�k$9
+#�@e��
H�+hjl1�>ᰂt��e^d�ʍ
���J48 O1�h8��#
p8\/0��r�5ȼ��Z�J�7C�����&x��E��Y�P�^�L�O�~�
��y
R�-o��rb�^���
�0�� CgMl�5�b#�WY�W��OAn�*�ԍ�]K�X��|Y���<Y�)�/Mݸ]��?�$� vȔvz=��/�lш�z��ƍ���������Oۛ�Z�m�a_P��/D,���փ�#�е�Y0�"E4x�"K��{�f����\��<F=T�8��X�\�s
L:z;�7�X�</�ڒ=�J�
5~cBq�Q/@
�
+��<�\�&hd7+�1J�@0
��=�U���j/�q��G\7Պ��X/��~F0����b�cM+�i7�}!���1�}��j�w�\LcT
��b(�2�Pi��c��1��!i�g
+�wM�
���HlP��^�����f8� ej�a~9�nC�ؿ


^hy"
u=r�љ��	&
+��?��d\��	��i����
�q_��NfS,�WDR��`9~R�M��.;x4�4�<�C���P���.�R3e
+G���I� SLZ�g��H9�I��=��i��Fe	x�
	NF�ldV�4�(ve$߱���[��:�������4+L����_*¾-�� ��U~ܖN�$izs�@�&��RH���
�2q�Y� �"j�����
�� ~"D�Ȁ!
���t�>��j/����0E�=�y�toq&��3�p��ŏƂ�[|�O����l�m��n
��p�{1^�"hO�\�B�
�BӖ��N���X�?#S���
M�@`69��C��
+Q�
%�
+ŭ
�`���A��e�tl
ׂ{�%R�����
+��Ӭ}^�e������n}x�?�0�b�#[��95+�A�+�K
�
��M{AW��G�m�ʎ��z�b=�=]۬�-���]����
���L�k}�5LUnǪ�ZW�jFɽ�nJ=
��G���
z��Z*e��4�t|�T�nU��vI ���Ul�����k���5ŕ�2M?_-"]?���^O�*���y���NB����O��p���I]����]k*�
+�0������[����
+��
�igT��-�_��֜�]sH����4��n��h��IMgK�Z7� ����3����T<���v-q�� f��bq�[�3�oBC�$ :^VcUvJ�Ult
��Sͤ�9�S�).r�f��+
�d�H�
L9qvU�\�t�JP��
?
�0ⶢ6���
jƶn?�U��F�:$�p��
�$rU�f�i�&?�w�bF��"uؘEIz�x����׺
t �tߋ��Y�:?R��Մ9�`5��r
p�����tr������ن�S4=���+�<�6�
S�Ka��<}Ju۳RD� T�g5W9 �yW
��ĕ��
o���ި�7���¾D%���s�<���a/ս\�Œ�W��,A�*��ُ����EA(�"A�8T�a�&^�&U:׺��I�:Y�&�p�>9a����h����д1�R1
WV
�Dϻ�(�x��?j��+�A�
C][���i���B^�Yqk31d*��`��6�قD��U8�(���1�@�d���
Ѳ�Z�Oe�W��ˢ��r�1�8���E�h,T
���s�
+#k��(��
+��X�ᒜk�h��؋zւ,w[.f^jc�
��~}:A
E
�N'�]�
+�l�,�	�£
���l{hε�Y��bh
���a�؀
�0�� �ώމ��r*�����ݚ���z��3/e/��x/V�CvJ����\�4�	6��D���@4p���k�������x`N�.�E�L�"V�n�#�(�,�����2
{x1Kx�o:��t@��;��"%	��<�rgN���]��c<��gTqWW����af1d>�
�E$�co�]0T�LQM/q�c!�>���΀}�mKXw43m��:�����pӭBm�Ґӑ2�g�:LO�����唫�yԵnjS{�#)�'�14r�D�s�y�l�?���fSk�I��դ����J�'t
�\6�j�~�!�+���čX3�T�i�n5�����
E[�oTo�b��N�@�E�l�W�e��%n�ZB$�H��*Y����B�$+�
�+7wQ���
�E��(���*=�,(1\=ds�P�(�we7�����d��K
�p�`
C؝�'��6�~<~�b��;t>���e�nS�12h�Ɍ_�1!�t�T
Z�g��$T
�똏�
;,���:_eg8s� �nH6
ٝ"�ÕO�>b��a:?�D|�e�rm���Ĝ�}6��k��H�̺�S�gY�.Z�"�%NFQ���h>��� �e�n����fIޭd��Y�G^H�K
��-�=
�x�{p�
+�,��eӬ�+z
$���32DvN�M
+�Sk��r.
+����q�(�qos�$�u�
+�ف0"��j��.+�fw������<�l���xy��\�x��Y`�g�sA�{��ә0`�Q��a�~
�Qe��j1:K�aB�	P��R�7����
n.����u��OA��O$
D��>!K����,q�$a>R%xm0��U����D"ȩ�~)�*.��ѻ��׆�G
%��
+·9$\ i�@��U�0�מ���u�Rf)�Ib���Dx����\�,��G&MEԬ�co<��Ŧ�(�b�d�|,�
+��s�����}6
�%��1�68U|0}��3�����0��`�l:���k~���\�W/1�rN��e
�-�8�.,���eLI'�o����t�j���
�8���CVȺ�
�u�O��"�f�L;[@d��Ӕt�����qV�S�Y�� N_�G �1��R�m���Y�a���e�>��:9�AzR��8ՆJb�Y�5��Q�կcV��42��&U�Y�ܿ*�*���!f������b�u�">��R�@��v��!3!L;��m��sr��J//�C\VDX�Nl��U
�ߴ�:L��%��%6 ����3Z���feg�T����{Nɫ�=#j?�i��}LQA�՚ /z����%R�`�aG6C����oU��41B_7
�Ȯ%
���*M
+�<#�(��
+ʥ}?;U���
6Տ��wv��\�c1wU4��.+�OgΘ{�ju}韯G@e2�����) 7������IZ*��e�
q�~�<w�4[s������ #�R.����o��U�����{��2E5�kqj`�VZ0��|�aO�Ŧ�;)
�&���0��|��z&���p(��hUtFߴW	�
�!0S��MY��q���b�wbKҢ�r�`�P�L�^������J�V���ĴNgo!'�ѱe3�E�)�	���{�&�Z"�
+TER�ՐmHO��"����I��u<�ȯ64�x�SWb'3�:
�
+�+0��V!ڿ�����
1STnPb�e�?�"�YB�27P��zKӊ�K|0Ka@�Bf��i����k훹�Z�g]E
jO�=�I!q�c�%�3)К��|�;�xƷ����4��.��w�ެ��BC��/��V����#^c�e�"/dE({z~
|���7���36)����6�m@:u�, ����� �pE�x@��t��,�_�
���.Տ%�J>t��zz��0
�W�7�~ٌW	�w�;�,;
V4-���DD����
y�:���6N�-ɲ���o^����^R�f[�u��!ُ}�����S� �2-�|��h~J������e�вz����6�T�A��t^z�$ �wt��`p:Mݏ�VJo
+&�Pv�6�̓L��q�K����T���Ԯ�c�
6�
�T�3ʀ4�-�F�,
)Y(�o��E�1��UiI!�����h&�x�!B?�$[�c��p�qf�~����pmH�uj[OI<��@q�q�y��;�RgS� ��=�����yH���0V]���+�<ۅ�L'
	� �M��*��ڜ�S�ɳ�A��#���/ʢ��y��Q�΂1>>^�Ԭ�(0
�֥��ie��K�K���O�z�=�x��3�T��Nk�xm���W1�ԸTU'p�T����i�誛�[�K�@/�_�cq4	�+bgB����E��۪�Lۍi��w�D�>��h_��F&���#d��x�c�Dk�M�x�L��O@@H-����T`�=^d(nE?5ً�
Ct���%)�P<\�1��i�/�N

�*��!c�O���Z��D������Nj#,TҶ
�l(8"���^�M߼�vH.٦VI�oA�j�����:�W�
!�M&�
"`S��3���D��0`36�� S��~
Z>���I�-_���K҉�a{}��������p���k�������qBY�:A�
������o(KޠǍ>;�|T٫�N/���,��θ���
'
t���<��1]Պ�4=lR��3�t�
+j�e��3ކ�'�[��Of�Yr�����c��Ř'���1�*�>��%Ի�" m�CԒPH��[���\R�u����
8�*�)����(
�*ᩬw��C�h�

+�^�6r?!ъx�&����zZ�������
�@��ΜGT�/U�x
ڂPo��1u�n�K�Uw
+��ѩ�b[��%{�
�D�X��
l -�؀<pt��!0p0�(���xy�۸��kQ�� ��7��D#��q#��� Z��1���(��-�����x�X�D�<
+�������5�U ��Y�����
+�V��9
Z�3DH�C�1�<�pt���:y�k�>Ag������{�8Hp�G�����p�NS�`rPЋoA�u��mؼ��f�ģs�$�MK�u0�邵D�
y1hQ��I+�k��mߦ����1@��ߚ@M��yŸ�R-�|����EH��̮��u�m	����r��+��J6�-F"�4"�+V��n�B���e��1/ ��Yd
�귲D�ᑎf"ѹ�B����������!�Y��z�*�ﷅCC}Ə��A��=W4�����t��t��`Q"3�
T��Le��A���!��3�N5��0/d��	'7�p
��3�o~���o�����U��(�#b��1/È'� �P����ĻY[���zޓU���1d�.р�6
���Q�
�؆���fRi.��kB����
+ *ۡ��]T�
endstream
endobj
11 0 obj
<</Length 65536>>stream
+� u3�c�3������	�S,�7�Vܘ��j�F�9� ��>����=n�����a�h�1���b�<$�@S
��iA��}��
+�����8HF�N�&�s`����~y�k�~F��0�BK��$C�%c��SD?��
�
�����{��6
��A�H����P�#Յ�h����P"c�p
U�:�d���Z����
��1(��$$�mg�y��3���!a��愷Ϛ"r����E�zI\�K�����L�NA?�l.!�Tm�<֛�R��?�)��{��x
�� ���H'W)Ū\�ǚ�|�Ρ%�C����S~J�F��fXYg�z���`z:ګ-�
�+:g����‚H� �c��v�^��]�:�A�ݞ1t<
"�Em�ZT��
���
+Pc��߄�@�k)����V��s~FN��v���etI	���G����[|-19۔r;��e�8�
V�)�
E-��>I	��r�4*B�� ��A,D�8�q@ K�%��d�?ó*���p�Qۦ6��s����U��P�r/I�t��t���~(Z�,']V������K�i�W�����ܰE��w����N�
j��K�4*���
a��X����U9:�!�G-/�g�$�f�4�̑^^7ݲ/)ψYpR��2��
�'����[X
,	��J���'ҭV��B4ړ� ��=��d�M�c1oWWe���pB���UX�' ��
,E�)"@ ��V���m
5��<�����g����c������jα�fV�(��h���L1�`DZyH*���3�2�����ddufu��Q|a�����4��Y�x�~��,�Q�`i ���^�B\Ytx
+�b�m8eI}�y�V�W��4�D�\l����`&k�54�>���>~��a�$+��ә1Y��EL��h(�
+]�*�u�.��Uwc�'A��:������'�P��ו3E$*f*��I���?�P�a4���y�*�o0��� �V��A�1Y�
�2�0�T'�+ 	V����Cx�\s���3��r�!�2
����/�N�d�"Rf��o6�C@}�)T�c�@c
+���ZF8�B�v�8�co�;�elo���I�jն��9aM�T$�y���q7���(p[��� �!���[�fJ��t<YH�T�̉�ݓ�`C���`���q-Y%�C�v9
AZ��Z'=U�eV�Đ�8�UUOiXH\�MQ�ؗS�V.f���G
�L9��
��z{
��L�x��x�
@�1S�' :�E��%y/�����}<[čw7� ���*�˙9���A
3���!� �0Q��b��T�A#�4�7�����"v�ֻ�b�b���L�$�GM�>O�6�6KC�e���<!7�]��y����=�d&��z���,��0����\�<��
SWt���1�<X
�2�N5�*R�����X=�����
�ʠƿ)ۜ9S��3C.�;k�~
.g�Wy,6
+�Ā��~v
#����~�c�nt����C�X;#m`
7�e(���'p@�_
�kvZ_������T6N�)��`��N�A�R����x' �x��'y
�	�Z�[�T�h-%S1��Ǒ�{z��
&en���Ib�
�UXmT�C!
+���o�
�P�J���;1�o�
�� ��IU�z��،zw��b�0?�6����{
�E��[�jZ�@` @��>�����9�%
+�Cv.z�X���a��'��n2�f��g��^�BI�)�m(fLaOS��0�ةU�M��%7��愑���T�)�wy�81�ۖX����'�
����b$A���o�
�l� �W> ��Պ�$�.�E`����]�y
�ۄ�d�
���5�9�K���; X ���z�|�`
�r��FF��ډ�'tu��c�^i�`X�{�C��[�w��t^pӹ��qA����C�/g�]�kS��H8��;�7�������ڻ��3�cU���)�
��a�L�[��^��6i?X
�y��xm��p��,g0~���,���n{���T);���-Jn��[�X����#V��n�j�O0�u�RN���a��֍9UsK�?��e=
���
Z����'%(���i�(2��>�%תӓ/ ~�Y�\�U��f
���SX�$A��A�Mӏ#8+�g"���q9�6�2��o�C�v��9��]�,n�j�b�dX�
x���‡
���cM,
Cd����
�%�"qܹkr��
Q2����p�,�`��9������oz��֛`�Y E��b�9�;�a������nr_���ulo	�/��q`5���gn.9�Ń?�t �8q\�F5ݚ���2��nn6�^3<N�0�Ų^�K8B�Yɱ.�B�� �`���!6	XQp7��r?���ڽ.~�0v��0�k
+OWU�g>z
+EVQ��fc�x�
�X�BB�Y��uXos���rN��<Mlm�4
�<~Us.���
��j NWo�g�.����^< C2�b�!�
6SL�
�zu���9��*�8E���}��H�t2�Q��%�)�
	�

���H��tb���l_
���g�>�pP�i��9�>��R����>_i`��
+��Ĵ�
��s����/�Z(�G�-)���č�jh�����$<���
!�d\@|
,rf�U4��4a闓|
��2�y
J�y6�oC�o���!ڲ�c������B�&���^�3
+Jt��&gx$9ċ�_֑
St�۝����T
�x�R@��5ˈZ��Op�1��
��H�?�U��Z׏�h|�qS�R%FZO��e��+�夌|	���H{���n^ȗ�C����lj!'k#�)�^�[��2�˨ޒ?���T\��I��T>r�h�\�]���b�~�c���[������R�j�	,(�2�:���
>����YEW�J :%!�[g�X���d?-���q7���ioC��֊���8SEf�Wh"D�A3�6f<=]����&�
?0�a������$A�C�CT�h�4���M�L�s�>ϧTn@�dcW�ʃ��;е�ҮH
�j�!Տ8d�DbR�(b�"D^�Uf	M�$���	s�C��n��V��(�r���� 1���\�!�U�O��	%09V;$V�!2Zj��})��
����S��DJ)��d;�Nۮ�z՜��:%� :I6^�u�����C�YC���1�R��]�>ϧ�)�P���
#B�GR�k�
0�Ih�*0�*e�D�TD�efK8	`,EL����  [...]
+�EK?%�`}6����|Jy`�X	Ri.�@$u��0���`��
F���L��z��T������n
�`�3C���P����
L<�X<F��{��
�,8�S�d�R�/��Yy�YD���<S�hd!ߦ;�`�E}=���!�Ψ�gJ4{E,����Uv�s[�"��\�Ӏ��?~F���"�A�]H�ʼ9[X&��i>3���[J;X��#+_9��MM�؋���.R��
�QF��i��Ǡ�4�g(���.�p}$ҭ
(f=P�25R�2Oa��,ߝ�zy��LA#7���>,@�G,jF��
8��]>�S�1��9�@Mq�
3,Sf
�zYJ
K�
At�H�4|�<H\�@�tH8=PK�(Bk��EBƉ2��{>?��~�Y�F��RR���M>	:�YZۊm���09�Yj$e7g
�n䜕F
��rf�H��
oL$Q�혦M�^���E/ѐ�J7q�˳�|�u�5lXV�d�J�xGjc(S<���%�M��n:���b�p��O���)�+M�����dŠ�dJA-}XRPFK�ò2w"�m��
T�->�Ȟa�п<Χ�8��a��ȭ`}E�̉�
]u1�v at M�����NI�5��l���
ݤ�=K�i [...]
�+�P@���

fT�b�@擔�!�5�9�!f?��
���D,3�0@��8�H[�t*_6
-%A�wrB@廇�#��R�5�n�ӈ�\�m��"�yQom��S��Ӑ��9���
岄��4<��a�"v���R��>rHJ,
נC�.o��NU^hL������>�uF}s���6Tk$�V���I��޳�D�-�c2́RHK)1M��1���/��<9M^�m
=�&J+o�٪��b�]l��o�\�t51tԋ{
�OI��%u����m�
+�
+I�O�*rpU�HmU}`���H�tɍ!U�b��ݤ���;KxAM���h;W���Ғ���S|F:�+�@]��m'��8����>��f�� @�cXE�D�J"�
eŐO����c���Nԣ���)
+�0R�  Iz�<N�2�v)�IJ�c�@�j����,��I�.��u��r*h͞3��@G!Ɋa�JbE������
�{��ආa��Bjv6ȝ	)�,�<���M��[����
+[�/�	Y4�u_��`~��%��}B� `�}_D�Z�U�#��9[b/$%���.S�-�As ��d�!E��S�[K���0�Gd��dU�*��Tt�%==ɧ�Ϛ�;U���	6B ��]F���#U�-c�J�6ֳ�y�%U5�`��! tg�X� Ɛ�H|+��%ζ1���ȽZj'	���0��=k�+�IA�N�rU>�<�I;�.��a�$v�q��{PT�]>V�w�ߌ���P�F-X�t��1�zo����˺킿*P�B�B�/����&��Qs��PI:�� D� �v�w�B�2g��d��K��`tF��K6��2
�E_ x�
I�blv�^��
T�$r�顢��|fެ	y��{��]O
�h��KIx�}T��
>+��Sm�4��uN
�S�(K
�,�RD[��`lP
Nzo^
%���]���m�9����d
��|fά�r�}*i�He������� �[a*�@ۙ�l�HRSxJF���M���t5��Y�R9i�u윤��3LYX��ş��
4=PݗG���Y�@6���L8���j��Df����]����u� �
�1��͔�Eh`�!�@��>�m$��!G�t�!*4�
"j��|Q�e>��^���f�
W6��F��+�w�QR���훴	Ue
q+g��0�`7�f�'54G�"�Ɛ̝r��VM�á���[e��i޳�m��S2eU�I�8-Hf�'��d����?'5�	k\��L"��f&�bBͪ:<�3<�T�@)�M�F8
��Ǧɻ��p�Bk�n���[Y���Se��.�
p�7��ᙒQ�����
�esGI��y��!�n.���z=lJ�I
�
���U���x�ǧ�$D�#A��OPbZ\��~�l��,?��*>���52���b���'��AI30����(߈v [...]
���؄���:�ZC�W�x��ۆ�%����
�����;/����6��#��Gg)���
Ym��$�
N�B�E�X�_��32N�Շ�
�]1�i����דJ�M=����2n�δ1\D�]�x`���^<��ؐ,U[:>�[��ρwyx ���(ޙR��w�`��r���	�%2:3�=�
��<�D�`F��K~qo���fUr�:��Ä���-#�����ˈD�r�}QŢ����i�A�glw�
/�I�H;��V���
��TC+��{��D�
�(4���$~M�#���*�p��gب�x,7���Z���X���m#��
+
R�0��92;��#�ib���:������ubL��-A�dmT�?�n
ߋ?�ַ�񣅗
��*�L'�w�	7�d���ҾivI��@Bb��;WQ
acl6��ЭZ?��P���vW5�u��ZD�
��)��;&�
d�,��Ca5�,ព��
�B�먻��K,��i��;����}i���5��
Zm!04�̅J59��K4��(��ox��C���LN8��4�\r'!)g�ce�T�W���CCW+9ɻh��܋-
��f֕j
�1��9�]�!�O#$b
:�r��Rl�k=�n	����W�zd���av�. ?��y
tWM �	�~v.�A �2F�C��I�|�~T+���VC�)%[1gR��O!�dJ�Lvb
(%{d�q
+G�R�X^���p	1��dqmڈ���%�?����
+��ɼ���"
VS��e�c��P�v3�@
�+ E ����+ #a	-
-ͪ�����EQ�,�
v"��IבƗ���̮N{�x.8����hW�����m���J
+
x�Bbf6h��`I`�U%u��k����(����|O�*�9(k	��J6{`��ppYe��f�;�!�#�2u��D1$F�n
t���}s��G<��:#^L u��.��� q�dD8�x����&���3$��Ǚ�!\�2�һ�
+���Ky
+�$�U�ɴ�#t
+��M_C��c�����^������.�l3�ܻ�1��-c�r����
_U9&j����aT]]d�c]��u��.h�A,4�t]]�<��j'�����d�rbA�D���X��|��e ���m�##N���3�O͝gO�0�p3�ȱ�ż�H��Jb8]�	����RQ�2�&k)�톝�J'�D+���U�T���9A
����(������w�������8N�/�:�vQ'��q~�u��iT�C�d��`Q�I���f)f���AM�,��;+�SI��,'殅
l�n��K�|~�}�tǪ� �3�[��n GR�t�XT�|�=����}�#ҝ�P�H��d�z��E^3c�C59$
+�&(f̎
+2zॠ��z5""�d��7���T�"�
h�������2�s�
;� 7<[��  x����m�̀c 
��N �-R�D5���jO��tє�te$����3����=��2��3�p�� �-�[�Bw��L�ͤ��};�i�D��_��!v
�v
]P�_���]F}
�L��0�<��.�I2��
`b ��a
Q<Y�%->6��rC�f�R�S}v �����	�*Xp �wKT~��K��0c��`��se!�'��s
��XC��P�d��p��Ǐaa��E)�S����G���7�V00������l�Y�g4��`8ID ?ωR��N��m��S�pʑ����!�p��`{"�3q:l>�B8��
ԉP�\
m]����L�ɩg�� ��D"y��+	E��9X�\]aZ���GH
��gfz���'�`��X9r����gԌ�
X�)ޘ�(h�c�(th1�Z�7a�,�S��������I0t]�*�-j	�I�(1^3^�n)��M�M��K��
+k��"�����h��XT���Cux �]G,:@M!��m��n�8tXx��j�5y�$��Ϡ`�\�g��E/���Z+�
�:K媪f�-�6�,��^�F��#g{h���ycm�:cΡZ�"��qjJ�%��K�T�W_���GY�s���/�D<��lo����~�m�Ě׎�8�;u�9Ļ����-�G�ǻ����0e���
E2�{��CJ#�>
O�Q��"ǹ��Kb\a���D��Ӓ"?��B��MI�j�0��
�Ec�?�{��鎴d�.��(���ZmZʗ`O҂����<DB��˄�$9[r���u�aO�ِ5<ؔ�0��#�_{x���mE�8W����GK~���0Nh��q6w3<{���61]*�5��a*�3�x���XD�t���	S�0‘t�Y ��bз��[LK�:oC��'�P��Ħs��V/��,j�%��
-�w_��s*��O2/����
�
��
+S9���C
��

0�ݦ#�
+a+'��ia͐
���XK�[z�!��2�9�o;K�9O�2O
D5?�~iH(�����wG��2����P��p�����am�"RƱ�|����u_��BDh��E'��R�eQ������r���vb/���v� ���|��
�5]�zHX���t:��Pn ��?��j�]lq
d5B�45
e�b\@��@��D�gS
a��,�P
�Ȝ�
+�R'��  �
���Ԣ��ϊk�F��h�����u��	�Oe�V�W��c���8�K9�i.U�cR�.��D(9]��
�wY54~
+��)
�Y29+Ŕ0�w��5B�?T[AO������19��
��39T��B6�P��e%��8@(1�kn����%y�&�,�+���H
�
�?Q�&��\>_m���΂ϊ���]���	C�c%t�S��Q����	`�	f�K�`6Q�a�|5kG*I���_\Ђ�Eb�)&#����G�k�����$}ި_"]�Tc<ݏ��J2�*�R���1��4��ȝ�2N'�B/�~��2��T	�0��u�
PUeU�ݬE��Y����vC��$�=�[�B�����3ij*i�
����x��F�I� �S�N9
6l�<P�̀���ݔ���:�Y�6G=r������2U����Q�qx N�V0o�`�K���R|c\4ۮ���YQ�eJ�\���X:|I���S��HiZ�$�IRk*.	�W�)/C
��~��C��@�%XTw�����yF�m9t��q���쌱����mR��i��U|+
ů��@�W��o96h������"̋�kH�"� [...]
8��RF� ���̺�=s���bq��e�NN�ߤ�7	��UM,@�H��-��H)�[�'��4���WsHr����������,�
�D�O�.��qw~є��NC�
+ۂ�/Y3�aOe��ۦ*[\�p������V�Oq������B��lD�=�N6��w|\��
%4k���C1��TXY��A.��%
T�=PԌ�kE�-�/}\j �,+c�K��)W���h4�V���?B�e&�.��D+��$�����|X�Y��l9֨X�>;]e�hh��x�*����2��]=z_��o@	�2SE�(���8+J	1��w�G�e�y<��8ޛ5;�
�T��2 7�%t9fG>�ԭ��U�j0��_�����4�|M�M���WLU�ؒ�X" E\���a1+
�

��;���pF
ޑn'����Ev�J�_E;)m�z�n����w	o�`Fd:��s�>�e
���q�yLb��<���bI�����n
�
���K�.hRøI��r.���WqX�����}4��
+�nI�z�J���_�g��k7(�a1���-����t������j3�k>!;-<�q0 �{
�Am۟��Ǚo��LnU�F�8��]�1|�x�v��
� ]���������t����"��3��S��X����ׇ�%���
�+��P9�W�h,��M���Z��k��+�{�f���7�Z0
X.�|n^�1���(�s����"��hi	4�4p&4��
ڍ]�g�%R�=ga�3eB
"���u7O)���)q����
�=�F�8s=�zE8���#2D"�^4OJe�w���qR�Y
8\|rh�Iߎ�h�r ���=�
��Ә}�a at z�J4ȝ^�����H?:�ؔkQU�
e���G��ɪ�^<#P�I:3gS#(j�*����y�>:S�Ւ����!<ý��6L��J7��f0������0���Y��>����f�*�B)'Y�C��΢�e�������t�}x����9�аy\d
��b �����

�R0
:���%
u&�
�AءHr� +�d�I�ѩbMѹ`c2�2�ӼP�ĮOMc�P�A�
+�*ۜ�ehϏa�#�7ij�YT�?^7�������vK����B#Ї�l������#/�{E��D�C�ID;�)zT�cx�-ig0� ˢ���x%�w���;PM��^-�3J��)2�l�Y�1u
�CH��� 3
+���)��I�@�U��P�ST&E��
�#��P�4B��QхI^Jki6U�S/��sk�
��<��n�%��\�Q�
�I-���@��œ��L��I��L�
+�Ӊ�0R�1�s�$)�I�cf������$IJ���8_<�O���F�����8jj]H�X��ߐ�J���r54!������a��~��'��v-�<>���������қ��ۘ
��_Я�˥Uy��c��U���s����g�<?�g��5u3]��J���u�c��^�G���
�ߡ��I�'.��w��e^2����
�
���y
/l�s�Y����i������A
+5x
K��C-U��9�˓*��$���6��g�F�\�z8V|���C��!(�b�E]\��n�{�RD����H��
ᓨH��%������B�ԝ$��
|���zs�|0#�40@`�ln&�!���)����)�ݙO_�v|�����@�-�VT7�
J��j�
�%�������)������_������������������O��������_��w������O�7���4�Ơ����7���d�1}����/��������Ҿ��/��L_�3��տ���6ŷЖ?��RR����;����.D�䱞��-���{����O�j�>�u�����A���Ό?�I&H��
�zϧ�"8|"2�4]�ׄ摨<��kC2$ϣ<�8)��:0�����e���zsS�8 %a��tX"$�&`I

�\؋ sT�貓ɺ?�N�XF��ĭg���l��>�c֣F)v�^v��y6�2P�n^�
��-�
 � g���!H�(��Ne�a; ��x-
��o�R۸�VP���uue�tt�$����A�F	A�b�"�ͩU��f��
�YT?A�s��#�% P 6*�C���pz"�\���z������dǬ�:�T���Q�]�Vc9��uƦ�Ŝ({��1���P
+��wH�3Y��Ț��ڄp��.R��d�Rf��414  �
�����$"h���(m=��:
��N<��~���P+�w�y�K��%�+:9�ewԔ 	{
+0.TCB�P\5�z��%�,�A �n���!�M
��f
���"c_����'c؎�
U~�uMX7OA �k���ReY� �On���Q9��-���j�W
+����y��Ә��Le� 5jn�!�"�j0�Q�M}���F�/�rwTR at H]�b�
d��0�~}����H?`��3��
k�||5��z#�
�:7�
E[�Vㄻ��0[ 	jP�%�8\�
z(`MY?գ����M�e�f���Þa��� {
+���>�I�|Ft��8@���,��y}�t�+`�Q{��9H�_�Y9
�G6}viij�+�N�t�!�A��p��A���գ
���y�YJ@�Um��؄\���<��`9ߢY�Bb��dU�G�	"�����N ^���c\|�c�T���A���
 
(w�� 
+�dzZK��Kp�͍��%�]�� ^V!!��`��R.� ڟ㾺�N�~��M9o��#vNZ,��(Q�
v��N�8��1�Z��{˜ֿ������N�w���tg�����ק[�|���N<X����^�|F�S��{��v{�n�D�U�]�pf3�u#]
X��lr۱� �!�˽�����7�i|Ű�ʌA��\qZ�)r��Y�&�Z�6��}���Ij�FE��hj X�/���:���t3Ti��H� 
�d�B�x�ɚ�w_�C#H��^jB�~&�g��]<�
+�%f(ґ�G�bA����Q}�*W�i(c��R��7E�e����+gd`v�,K�Y���:��hs����t*�tN��Nbv{{�th������w�&H0R&�
+��Tu�KX*�(y���޹>P�}
kP�8����
f��oA��M��$�D��@��W��
y��}�/�7�%*�$CU�\1���~�26bn1k3!�s�
r�~�$�^�����`�h�|	9�B�J/`e��Ot�wR���۳�E�X�έ1C�x���J�h��ÕΆ+X��H9��#�+S��Пሩ����M�*��d^1o�k��/�6Ջs��o�[0���]O�w�u�!�5��oκ

D4ʾ_��N�\7��n�_z�u��O�Vc~��<�D�Һ���,gaKV��
�t!���4&��[U,��L�� �,�5�_>[0��2Wµ|�
㛂=��V
��R��7=<
J�p�+=ͮ7��p{
uf��7m�$����a�
���ν�|9b
+����oN��Fʤ*��K=���.��s��!��ɈE�g�
+�\#LO�qN�9� ��o{sAZ
�o�(`,6
^q;`̝��@Q�2�@�F|���Y����}���AC#b�ۢdg���ya�P����D0�͐�����n�u�$vG�b����Vl楪h�+0� 
�����#㋛��	RS�?w�Y�hX5�>�nLQc��}x��O�k)T�3G��ؒ�k9�]@ߕT������q��v)��C��9�}еYS�]��nv s|�zZ������	�ҭ�cI�Ƙ����4-O���a�u��b�[槅���X�^/��V�Ӳ������q�8�B[���b#���b�7GM�����
����-�
|<~���\�m��g�Ms��V��x�������]dv���Y#�n���BT|�^���1#��w[��>YL�X�T�U,�0<az�ZX��kLy��z���#z�$��A�Oo���>>��3��}:ɠ
[�j�{z[�Ƹ��N���x���Z
�O�[��3(�����i��p
+�
7|�����@2-��`��������mz|�l��{�w�����n��}������������֞��C��������6��w�n���`�	�
�K���"U�i�?�=[�F�h{��;��|7A<�)���g�o���m$�i�>3f���mӓ��P i�\� �*$�	0�c��A��X�Y�|� �ɖ]�E����:�сw��u��o5�F��pJ���z�%�D�㐆f�
D�5�E�G��WX�����!�xSu��c�tt�`��gܟc�X�g�Mp F��
��)��8>�M
�������X���� �;P�m��|=�ߡ�L ����w�s
+���)�Ɋ�����h$.��;f^#N����&z�~dK	�޲�S�^L�4��i����.��|�x]!L\dV�1jfʉt��~xN9/�n��
��oa��N��W
U���P7�V��*�Ȱ�q�c�$
^G�(�tr N"��(}���e*0~;2��H&�w|���|c,���P٥\=���Xߑ`!����b(ny�{����

�/Q��_��_��9հV�0�������eE(]�Ď�l
+4��|e(��(������c�
*OXY%R����-{L��
Xc�3hB1�OV�t~�o4��ٻ	�/BE�:$%��
-/Ԑ�B�Vr���=��ᏹ�M�7YP�H�S���N��w��7�� ���I�&��vWc!Z���׿��agq\�q_@�5Z��|nVe�H���


�j�
q�
�����7,qQeQ�$�CѪ��V���ȹv at 1L}o����1�( �8
eՈq�^,�}3${`㯖j �3���F��7�hUM^�r�SS�u�F�
���h����t�=�H�>
������#��xZ��	<6���$�&���WbG��g5"�j� 
+��ml�"��i��{�"ږ����J7Tc���.�dI �t
��!
f��&S�&U\A/O�5�  �^\c�~
n�I�\���s&j�v�G��c8,p(v�X0K2���oxݵ����b�8z��*�7t��yҦvHC7bi����F�j�M���e�@����������7x�
����1مY�����e ��;2�Yz�V�v	�1��
=�l�R`=�h�a���`�еD����`e
+Z��Œ6���݊�I5����Zq �G�ZR�
�<��
+#��������!
����
M"�
E#"
�ˍd���g
!
��~��J���Y��(�`Q-��S�����q &~��<�S�ΒP�b����!L64F^���
�����PR	�rC�V���P�d�N,��>VI�Q�B⨫��4�$W}UGD[^�E�4
+b�TK
z(���C��)�Qݙ����F^
u
	v#�W�B�7O�)��>=q�7�`�!�)ˢ�L ��"�۰
�7��2J�e\�lM)�cμ^����*<M�
��w�I9��-��
-0��mk��lٌ
 �
ר;�|�T�֦;
��N�t����+C���'��
�\
��`��T�SN�K��2g`��r��1=H�Ht
7�x�1d�M�w�W��LbIWċ� �@`Y�πh
+�@
����r��w, �����^5����ƚ�����5��86�M��7G5�}��`�쪁�J���
����C�8�)��,�� й?�q�0V�X�ǥ��7�,�x�79G_Y�]�.�K�-��`!�㶘�
�nk����cr����#���>Υ_~��O_I�y�[g��/��څ��"�F���b�or���8K?o�{���_�A��0p� �J�jD/\����A��3IU/�S�_��/����:��1Ls�Eđ�G9�dG����$�~k�]�,�b��h!ZtCnj������b����
8�_�e�#v����;xO�6�g�0ض�����v�I5k
+�
Ɗ�� ��D�T% ���7�<az�|v/��[�
+����6)Q�� Yd�@�G��B>E��|
S�pч��Vgl�x	G
+Et4�L�Ϯ�K�0 ����u�k��1�O�A&'����%
C�#y)�&	���b���^�F�\� �I�^���O2�d5*�v�ղ�����
�[v�+��Ų��B��.�����C��c��H��`�B���nH
�ls�ݱ�>o��t��7c~�$H�"�%$����
��|�
������ҵ.�(;��3�S�"_ {\�334��$�� �-jA��5�ԗ9t"�y��� 
,h�����<Fgm%��<|X
$������D(+����_�e�/Z��<��Ё�R��%r2�KA�
|��*u:+�bMBs�.����SE����y�%Fk�?�Ip��L�7���
+��y@�V�7E0�C��j�P!��q�?`W��?�
q�.�6I�ekĀ�
US����
+n���O&1伆Ѕ[���y����L��ѥ�J()�i���>���3�z��Йr��
-�N��Ū�H&������
��@�Y�Ij��ǭ�z߲
�M���L�O�V��v����4������vf� �O��ߟ1Ĩ�]��C4��V
�]$��������V��
�
+�6��虵�M�"Oh$���MR�ɑ?�y
+w2+�Y#��d����l:�'gl&�ޟ
&���p��9i�jP+ѡk`�:�ܯ�A�X�p�3X�l
+v���Y�7EdJ�-:��T�0\p��ɰs)��F"�-]
�9!
���[d�76��w
+�xb��_������s������O����?��������/�]Q����ɟ~��6����+q��k�ѫ�
u
Y�!�i��GY�I������E~ƿW�S�/?�>��:���}dE����_��?�q�}�o򓤙���]��RT�����R|��oõ��
w����jy�P�.�}b��p͛�x�x�/�.1��D.�G��o��u�1^%:���1硉|T%<��S3�Ņ�~�D��v�$�o|t�}��ۮ�G�9��~��
�m��vJ�Pw^
��-%�kӑ�A1�Z|���n2�6�
e϶`w�;���M �8[.����Lg,���G��o|۹Cۑ�����X��;�\�2!*i}x�\k�����^��AF�*�k�
�F��b��������P�X����k+]��գ��������)똴~�J��
y^�_����|p)>����}�-�V�gӘ����q͈�?{->����}�]-&��5S�4��/2�
\����Z|������\n��/��\�����>�V���}q�EQ�#���Jhz��C'�G��ɷ��'�맺~���R��[� �|t�_���]���d��Cȏ��
+�WX���D��5����B�{��>V at 0���
����s��o|�gXb2V�g�󸆞�
�8�O>��}����_CfK>����k�Z%Ŋ�^K�M��}�8l⨧
+F
�'��?��˩$��+����������J�n��~�$
 \�q�O��)�
cf�'�-O..UB���"Q1��?����}����HEP�S}�5�vW�/�?->����}�!�R.�
���y
	�I��G��o|�g�����L��
ר�z�O�|w%>���w�}�Sc�?�����?��#��? K=ͽ�r{Pٹ�cq�뷾߮�˾���������y���
ܘ�>?�fwA�D��˿�����&ɢl~���=䲡��� �n�'�<.=�m
+�?�BH�Lj� P�,����9dF�ډ[�T�F�`�%Y�;���-+'j�ե�8��
�mDV�
��L�#�Q
�]
�'�L�e\MjCE���"�K���4Yҳlz��� mӲ%�ʐL�\H
+��c
#��9йf<C�i��ոL��;�,�S�|���[�<IO��9:�N�F�Z	�P["��F �%�/_Ü A&(�
+��Ys0�H�_q�0D�����Q
�?L⡨�2���xC
{`lAV�:���,� ��?�%����|�.:a��C�AU�-
�+����W���7� ��E�PM;w������r��B�� +�<�m����Ś�G��4�� ��\R⡲
3��m��z��Phi����"]!��Lʪ���U�;��
�2�]rJ$
����oR
�����+ ?
TJ�?�p6� A��A��Y,E=T�/�DrХlP#��I(�cD�2��@=h�&Ym:�F��c�$W�5V�#�aF�Lx��k����6b�2�
��ʪ����
t!X=���>c�^Q�
s	7���vB��بРR��J f&u�� 
ʝ�B��k����X>NԔ\��@�ۄ �0�RB�T�T����
h��!j��R�*�+ζ��QI]d��J:�Tt�Y�-���=Ld�W@�>�!�AȶR$�f�#澦$r�4�� 4��r�l���_�����Fig��)S�ƈ[�o�Vn@>�B�`�d��wA��,%u����i&�1J��F0 ��@̫q,}.�䒥���
I����Q�
�)
G�i��K�
�a�
����͆�>t0%�'�ބ��g����Y�Ũ@�4
Zp
0!���zɖ����\AH��AL^p�+gO�
 ��Y����@_%i@��J�u�`�)����u���F7���Z�2i_�b2K�A{�������>J{�c�a
+6VX���׼��~|_/�
96<��^͟4�B����X��X/3��{ÎS�}��ɐgZ��l�y)i�y�2�#��5m���\x@��fE  -U͞�(����l
�(��D��
�{ x�Q�R
ܤ�;��xK
+��y`��t)�'�M�g����+gf�,�(N�� ��*�� ��
+���&* ����v�%L�s�PZ�Yw
�%F�1/�j�Ⴤ
�7@	1�T�F	�ί�~!�r�Z0�i
+��9 E at FU%=���>����d-�����S��t��
N��-����H���&S
��jnS9=���I� #
�Ǟ�_�z@��Fq
˖@�
����mGg0WK�k�b{��5�~���so
+~����1��T߼�
��e'뛼fn����Z�v�p��G��`�z��
�a�i���I�*!��
�\�'��=�e-��P�\�G;4���Ȇ>�}
2�nr�QU򦘴n��\�32E� ���&ݼ�0P��I��&�I8��\��
�ʢ��9�&Ͼ��
hX�X��Z Zr�t�[�͋�u�+82�[&m���]}�����-�}RMy0���^��-�=YeT��Î�]!"����M�+@@A��RO�3U0� w�_��I>�xI�a~H?@Ҭ��l�YL�Oo�wep%�t@ވ��r<2i��8	s�pcy����vd(���������cCH���'
+��I.'�W�T�T�R!���&Ó8�?��3�
��wl�ٱU%�T���
j��s�S@{sJ��
�(E�J���i&��oW
+|)6�-�� Q�̈́Ț����B�Z␲c
���G=����gCEC����q2ۆ�Ʃ�����L��<��A���qv~bנ]O�al��̻6J|3Ԝ���E�/�c�Ρ�}_�|��_j>Kl((��@�A|��z�M<��,

��Ơ�"�x h��
���r�H`e(F7���8+�Zm���[�HL8Qb�U�Z/fBl
+(3�3���N���~�j�V Qgx��(q�ga 
�~U��;1�]I�L��.�}f?��{���-�F��o:���–��[0o��Ϥ�5�YhV`Q� ���E"�Ӆ�x��=���f�dinEq��/��E�Ç�*t�fs0�(��,���|��؍�4̫v��� �N�8j�3,�
+M��Y��xxxX��ЍR%�L�����.�6��͔�]�6�N����.Y2��lD���W���b�d�G�ߗr�r��c� vku�1BD��-.>�8�̀�X4�t0z�q�%c���b�Y+|��X*h��8V
+`��
���&�"��։4Z��q>8�A�9ܒX"l�zZ�By,���_�c���iqt�I��@����2P�r;\��"��XȘ��'��y�L�z��
�}h�_����T��R
+�o	����ywF(g�H�=G
#ٛe$���b����� Am�դjI�����dE/û����R�H%#�#l"��ځ+/��$6��]�#h-��v���� -��Etų`9��<3_�y�
2��֣�p�~��&��B���-��Z�N�:uhV`U�7��逊v�;�cCl<��ѣ�%�*p���nfg.<�w����D����|�h
�bK���I�r锄��ϱ�oP5�m�Of�A��vq�+T����%��cɨa�۩d�մ��X���M~�LI�Sib)oN
<0���
-�����
�
T�
\G҇e��S�2�i
�~�p,�ZO4��R�<:C4�P�b�$0G]1��
���[,

.��=�m��>#;$���y���
,��H����i�3��)?�k�F|s������٨q��h"���C	��4��dX�@�'h���[�Q2�Pc�n;Sp�WpD
����B?�:���D��.� �� ����b�X`A�^�a`�w���M�����:���V�r���.ӳ �S�3�C
�	v�$#�P
��$mx����͊���p��ܜA.ܙ�r.���O�������Y�����8E`��C� DUʼ�j�d��ɶ�w{�P�Tb`Ǧ�%�:0�䩒zO��}H֚f�rd(�Y�g&� ���C���^[{܂�Y�%ZE�(�:�ٲ��?ttLd��:2� �s��xEN�E�=Ē�Ov�l �
�����2,� ����W�g�!�?1��f@�x�$%�gC���" D�H�I�Bm�*jh>�N�RL�SR��<6�5�y��J���X�n�Bi�$�����r��e�8{��^N*�
�6��� f6t�W����j�JD�}*��.�b��[
��y���N�N�[�G]�uq��?�B���Y�  �ET(�J�]�aפ�3�4
��;�4]
�di�	�g~	�ǩ>a���
IZ> �N쵺�;�/�1�@�
O+�c��B�zS
+1I�0]=��@�S��;���,ϪJ�q���!�+���^�%�<J���hi���Z�h,��^N6)�ã���웉�ɺ&��xl0�ߊT��p$'�5�070����u�SU�5=���3ĠuP�5��PuFZ�����:���SX|�R���D.��#{�(
7�W�V=
B���I��J�[�W� �:)F�\,�M����H׭���ԷA�Pbt��1pO�IK��!�]8֢ƙ��	k�r󵑆+�#�f��ҔsGR �l�l������BfsZI�:
�r=l����/(�� *��J����2��l��3�b�V� 9S��
���
]��>��t��PJ��}S
�f�;�G���j�rEjn�w��Y�z�X�ܔ�$e�p�ղ�(�X�)<����
7'�OR�+�2�y8�U`
��K�0w��yԡ"/��5�ff�:��E�L��[�g�*�|z��?)���.D���`��k�`���߮b�)\ATM�m�@��\Z
e$%ګ -h,.�`���|�-U� [...]
+Z�v��;�Ԉ1�;:�<l'�W)��
_2������
X�;`��������|<r�%�X�(8��X��gO�F���`���Җ"��X �
��'�Af��
4�VN9);ޟ.F퀵祛V�E�����䘙�x���U��&��5�s� ���wG
#Ɍ�u.H�t�s�)u8!q0 �Q�p}9�P���5��LO�I,�Υ�L
]�ӫ��ų���o��]���#Du�
)\S���ǤTj����B
��M�V"][��Ҕ�E�̸Q�I������
 vө�,ށH%�� �{���N_
�
+�Cl&�xg�rt^
�O�
���  :󛸟� {7��K�z����2��P�4gu��>�����\�ҹcʰ��(��ʐZf�!PeD�
U�%<�0Ե���qI����
�����'U5��=(��c|ƀ�1��$�^C��k��/Ȍ��-
C�̐j�I09巢��_3�L��VЌ���쩘
P3�T��9�����
�K��3�F���N��
n�y�*WH�Y�� ��ʽR*Vh������n_r`Ξ��:㲀�n���U�@�i2K�~Gє�P �P�)!<?�	K���ա���n����f�c޶��^�Q7��FӃ
�?U��sv���g=f�Gl!�+4�m�:���@�@��}�G_�bu�����z�l�S�,�3��d�\	ۭR��ZJ�>�k���+Y�B�j
�n�`���oT;�`F��
���tm�I�1�
+!�
�_��A�
��_�@��~ (�� 	�_�Br�|K�@��/�:���N�p�������,C���m�^c�����KQx,b�n�Cm�{��gjQ9WR�)vR%�/�|^3%�Td�������K�� z
+y�� Yv�?��_~�����Ik��C���C�t�?�t���<����Y��(v@��1K�K' �O�����
��8��eq�.F�U}j���_ԏ��D
:���{I�c\�KGM7htD=t^c�]"�>�Z�o��5�%u�\�	�l
 
��6�[�}�}���oߗ}m��|��t4��Bf
+�^צ?ۮ�@��h�]�۪��d�~øv�ؚ��� �"��_�V���{Ap��m��?�P�}\�[���
~_�]�� q��
��u�����qh�6���|��:s{�9
+�ٙ��w�6�����������������u
��K�hJ��!�p�*ٛ��W��G�ϟ�4��߃�$�z\C��_�Hsw���m��m��}��C��n�TϒFa�>[}o��G@�߸�\���͜��
ߵbbǔ��^��;F/;���o�C���>��R{�]��}�;���>�8�z�H�r�
�
3��z�f��������#�
t;�ݑ=����n��y�������z�
�z�m���v���}�uM���>_��;~�� Y
��Y����5`�Վ�!1���Z���Y��Dr :E��M.���۵�����s�<�O����x�"
~>[��}��}�E�3
+ݕ��e\B
+4DC��l�~�����5�^����b�՟
���P>�D�\�3�d�
�w'8��%��m��Ix���>�׷_>˜��.��x�T��
y�W�u-�}��}e�Ы�n^1׵�U���u{���?{�\�B��*��w���{.�U�}��v���v/�\�?����?G��\������g�����L�w&鍟��ϗ@��2T�d�O���3{���u0 ���.%�����>�>D2
�����ZZ�Q�1ٱ������
+���z�

+�]i�]�&����S̻R��
+{A0�o���am>��y�v��ѿ�`&sYw�!�L\#h6�u�4g��p���W����ƷkFC�
u�Ӯ

��?�0�ÕŶ�3�ct߉QB�5$��G*2�Ί�aq˯C�AE(�Ӊb*�$D��
���a� ��-� 0S[�
+� ~�5C�R�H���pH�iD�p8�Y��l�f,�r
��C0
��:&s�6}`�'�\kC<�(V��
���\
������%-e/�@h–`+�uiz|���O�&׶D�Hk7��}y|��1�<P	E9
Ma�JS��e
+��qѤE���ԟ���;
RS���,
3<����רr����=��� ��^cF�K�K��ԺG����|��U���}JQ�����������c�\
+�D�6�4�r�I�����^�����2�~RR�3�%*B�� �
+���j��z�H�k���*��\{���O<ރ#:���ZT���<�hr�5抵�4\?�Rd������s�u:�����
|%���(��L.����s$�ٔ��;y�p�-�+
�p�xoբa�ى�����T�O��
]���c�#�i�n~ݯ:�U/2��h�Ue1��8�K���#@1&5�HͰ��潯��^ ��%��K��;<�ָ^�
�y�J�r}̮�!$ч���XԢ�y#�njv)򨐹��4�Q�iw�7�W`�ti�<M�B�9Gyǰ�!�ts��8L*I��JY���rm������p�!�̬�����Z�I�@��c��u�]��O��D����G
�7%AX�����
e��v�6t��`���L��[�D������1�!�+<�" ��?��z�rט��tJ
����_�ҤF��8b�.*C�d,��+���z`7�+�N�!���
-9�K�<�6�R�
�Lz�௟yM�2��j�K°#9�Vq�b.xV� "�h@
����r���`a����a�Ttk�x�l��
�h��>R�g�BA��h��j���L�mr�p�S�4���
�nJv;�D R��`tz_:�ک�zTq
�
�YI�o�+�g�W�X��I>��/{
��"�\�ƍp尌G�%
$V 5�.A7ӹ ��ak���dL��g���^K�6,4���t���"U�|�%�-�a�)E���w\ҩ�F]��xp�LJ-�K�0��$C?��Du'��m�j&{8
�
Zm�v���Q�֟����!3mK��%hM�Ӛ��^���JS�
��B��G�5w��gb�н�HO�%�>�
���W���3f1G:�2�C
+4�0R�
�j���(���X9H� K���2_^��3Ϣ����ɯ���=;��ݮ?��(�#}u"̭&и���
_���̽��C��n�l8Ǯ��{�zRg�Ъd
y�"IB�!{��t�4~X�	D�����|pl�
jB6��� ���xYO�����>�0�B�訂�K�ƭ�_�'mB����C:JBpx�i)!��DRU���ʍ}��g�6g
+����;���b"(f�ѳy����}�1�*��6�}���� �	ʖOǰۇ��@�7�%dt�:B����bJx���z��]�pT	PЅf�A�s���S��lO�dvuyѹ��żdh/�ȅ���|ƍh�%�G���a#z\��h�SJ~���=Ϛa
+��Bc��"
8�BV
T�M�J�� 	�|(�S¼
��W�W9[l���ĪEٮk�9��&�S=������i�L�]��p�20�6oNz�\��s6��ؠX�
{�u��V�Ѣ�v��-W�au��
��QE�\���Vf 
у�BdwO����XS=���d\&���1.��GY�ͷ�/7�7"�L��LNܩ�"�a��{�]K�$;�
��E �0��{�#���E`�	A ��E�-�"���k���{D��a��/�����'.����f˖���z��
N�A�H
A�Z����
C�gL ֳ��R��M�Y���
+�%�	�3�N�q��+ ���#lF�ȝc��i��#k�m%�c�3�y9���J�V$�lŢ
�gC���،�����o����T,�zt�����uǼn>�(T]���s�m�2�=�߱��e}G��q.�c�rv�6�J�v�$�i�d�|]���v�%�k.5Gm�mIsl�[is�g�KOϝ�R�Ų�/��
=�n<��}Y�yg��n����fﹺ����}����&�����nh�O)X�4��I�wm_��~��-G�iv�@��4��@��O�]o+44��I�����ۊ�y�6
�4��I��6oc�Q�@�ϟ4{[)�f��4{�إ��;~��M��b��K��v� �+�c��T�A]JfL����_u��n�%�uS�����߰'�޳q
��v�s��$H~ͱ�ݔI _7�����mP߶���1T�����`��X�	;>�ڮs���d�n�
�eu,9����:'�p����;�����}�j�d�ŃP��{�n�
�n��}^7������*��[:���@��T
6���.ո������w�����ǚ@��ucK�mQ�:�����{��������Jg��sb^½�
+������P���@ٻvW���j7e:��k�B\7��V�u�'N�T�0[�|�oܔ��b����«S.k���dp�{w�M�%�%�5�~���V�M�@�X~��#h�Q�z`-ޯ6���M'���M��ad��
(
РY����`���� ōc�ttQ‚��&���ur�}����*nCLG�a$�eg�`����&�=�w�� x�C�
�#�vD��
R`��x
��#�(�~��=A�$4⹀����.��B�X���~��[�
Enɲn
�Pd#�64(
�R@��$�Uv�v�;�e�m�K��

#/y�l	
��XMO��H��e�̂sD,R
�"����l���FZ��x��bR�]P��\�
+���jJ���eV
c�'��\Bj��3�m�	�
��+��x80���	���'2.A�
�
4	ɈKL��^��
�!�2�9hv��b�h��t�c6ߊV8՘�o�����dL��1ć��r�X��x���U�j�
e��
!1Mbf>�b_z�2ɛ��ϸf��
+�18��v���5;�k�8^��
�T��(�!L$,6�`3T�%���<��!P+�
�Ov*Fsb�D�
ӕS�n�m�p!���%��nB��>I.�[Zl��
��!��]�
a2��
g��whOur���)�[x
�����
���ڎ��4�*�cP
E�O���T�'
�|��
0
<���n�ŭ��tV��/RG|Se(�Ze�+�lX�s^���al	�2�b]`� <��[:�!%�1����0`H��C����H_�mؠ��&Z�{
��?�n=��m��
�#!� 
�ŽIްH/���픗T�K�ٻ��n���|�5a�J�˃MH�}�#(�y�E�DeO!��maJ�P ��#F~�1����&kfA�Q�Fw\�|=l�+��a� 	�s�}J$������T��q��U��T �
�K�y}�@�/�H�h��@B�s���o��4�5�_Q��]�
�
+���Ӝ{B
֦��1.��>&#���IfS��<�[Ͼ��
�ظ�`�
+�s���?�`ã�9���o
咁d��r� ��ѱ|���X��$�� ���ww6˔8�cqs]2�j�
;t\�9��«�
�V�	*:
�T ���gW�B?Qv����@
~e���&l�#�T3�����i��h�#ls�Kr�D�R�'�F$E�.�,wƙ�.؝l<^V�4_�x�N�pA8G�
�<EU��3	��^&�6����M'�ӥ,�rX�U��d�
���C�HJ�`��!��1�M$˹$`f	I*�Z` /T�.c�?
3`r�w�����$��@�D��$��ѭ��h� [\�*��,0�)ac��T�P���>�czM�Ж��S9���Y��CI���FВ�❰\�l���M�	��������?
\Y�Q1�~	�6��E�%�̵i�f�
Q$�@)�HZ��e��sXZb�$�R���\X�UU85��] T’�갡�u�_��m
�ED�U�"# (n	l
lF���~��訟}v�.[�-
�&CP�
�}ʮ�u	Vu
��Q�]�0���
c؜�m;LN��@Y��c�<Bu:��Y�q�B�_�< b �:�>=&�=
l²-.Y
����uq�J��
+��e�����X�5$fg�D��	�:T���:t�`U�%?ӏ��h�f�"0$Zk"��V2d���3��o�0T�vT�Z�p�J�n쁣sd��"�pc��G
���rX��'��”4�W�Ы
��	��t�0_눬XS �i=]��[j-N�pƂ.���yh
+�zN�O�r��-d�vb%��Y 
���2����	y&5�:C����m�qgK��hG��Pr>y������q�iҩ�yλ�� �jr!�K��i��y'  cpQ�dB�t���fԝ�?��܊��u9�`� 8	�giړ�
�$@���Ԍ,�6�iBId�.]C+��Y�|?��s�g
�{N�->�QfxVc�
xe�}q��#@���L�!���S\Ƒ6�Έ b��%�X�
�������-��Q�uayM��사�DX�'����`������vq
����E�	��'�<��"R��'�j]DAh��+�"���e����E��)/f�2˸!�����v`��;ĺ�p���p�C��nD�:?񽚶.$�PY`�2�q�/�.��y�ޗ0�G9η�M��xGčj����6�#��
+�!�+�嵏~�%rӊ!�8�
+���EhO���,��A�Q�W�NX���:��:��EZ��ݟȷ!��~/�!�HS�T�/�
�=AQ�6.VfK���S#p�8�;��� ���iϒ�z�\'	';�;\(�-�-�����P_����z]�������N�†����
�ؠ{Ab1]Ti&3����3��>C ��O���v�/����%��4�\V2��Jb
���G��]
M{e3".w1~�j�;�d\�. x��[R�N�,6�T��5���T��4�+��-�?W,�
︕���{&��њ(�Ql����*нsA��~ �x����ϫ�������&Q�N��Ά���29\�ل���1YX���;��p��%
�O�kt���c�b5�%x�q19�}@�19�k���z}p�u1��k��OVLN�_N8;�(�Gvrd�
��C���&�bO

���P�O��.vNpMR�NRۡ5UQ6��j���/��k��4�
��#�G�E���+�t�\7ce��D��FtV� ��p�5��4�lv�+T'1�]*�"���Q?m{E���u����v�S98��'�t���Y#����
��K�h�X����(ӴQ��ˑ�ܘ�� z����*-e��;�DnY��wA�3�٬����T��ݨ����"GR������to8-%���/훯9�P��
@?�l⼹V'�>�ᾃ9�3�')�H~�n49<s�X�r�/�7{��7kV��Q<G�P��� �UUs��f��
M�4h4��g#�jLvdW&lr�䊩V�^� ����oI��R��r���4a�k+�kU

�z�[#�j\�v��_$��1RRv��Y|�����q��6˘��]���g4�o����}}�&�y4�YO3�yEy�89Uլے���i�i�f��l08�'��J��b?G�l��1jr(��ǐ%������!����8~� �9̍߇����C 
+TT�5g		I�� �i���p� ����"3���a=��=
�1��
�nE�R�o���L*Iu�#F��^T����,��ƈD17O9���F?ϩ���72$(�N�w�Z
`qع�`]���&
aU(_ŅJ��ӹ��i*���;��q�Y�P��3:)ZqJ2�
��8MĢ9Է�9��]c����	/��b5�IE�b�I=��'�A��ƚ�����qd����]���:�
r>�!�'K|qT���͐_�.�C�9�z*�[�>ȶ�۲��c�֜�����}	�V��Ѷ�Q�z��ksO:|#
+�OTN!|
*��H?\U+{�3�C�rq6򯫶4)!�
��1�և��#�8)"A��q+�yv*�n8�����
+o��8�!d-�lz��'W�G�(�/����M2wp��ְ+�ae@�
�$v9A(A+�����)R�puI����cex�>�
�^��cPW��fh

�0��r��/$JX�j�t�������c�9zI��2\�c:V.*�Hon 
�)�١
X� �ͮ��ɻP������$%
!���t����4�<�YI%k��fț��<e�p.��!�W�m�h��͇�̿d���
.�(���F0r��8R
����O�-��(E��?�14��g�Qp�ג���(�S���<����\�<�]��ɳ�m�Yd�se]�6��*�
H&!39I�)��<�21��ؙ�wL#VANs����oO#�x�Q
+O#�#`�G�ƗsJ���1
+��P,�!∘�l�Q7�� F6�f�L���O��a��Ӆ�:�t3�
������(������>
���΃�u*�tW�<�?I4��
¶oh(�wh|N��`��;@�~�_�60$�^�>m�TS@���;��*�����L�ww�$'�b~�G�c��>�'�I�k��[{8l=\ܜ�-���)uf��nޜ� �!C�N�
0�̂��[����<���;�H
ӱ&�o9�|<��C1��oo!Qp͸x)���G�A�y��)�r�,sߦ��
+p
�Y�J�,#��I.��u���S
�d#y�1�� ���/��
N���b����t\A
�,��
>�i��q���wO2�Ҙd��5�وatLB�'�Oʓ�hJ�c�M�[vk��S��Ih[30q��KJ�l�00�ja%r�t`�1�X�"�S��p
�,��R4U�r�nK��fn�_�rBpe5�B
	}�,�	����Nᩦ��}��Y�X��lɮ��Tk���ƺ#�CWĸ7
+d��ة��xq��� #�e�y�
�ջ�)R��||nA�>�)g��1�7#B�9O��9a���NL���˲�C7��\W��s�
+�
<,1�w{���K
�mU�W8ĤT��!�ta�m��+	�
+�0��v���B��d1m�x2/_���Ec�C��$d]ʫ�h�>�N����}�k��ဗ��U���;�Q����P��(_"�u�H�Z��x��.d�8r�V3$�rRH{\�qo�
�
"d
�I�XV���!��
�2��N|76���M��o_�V$���v;�o��o]f�|�0-m�8QJM�7!�`H�
��2Tl�")���%ׄ���F��X�U��Ɠc3�h�&ST"Պ-
P@�y�I&����{Ҫ�+�}3G�L=ƚ2qY�Y%)]��]�9�31t����&�؅ՙ��ˊ!A{^
+2�p�f9�`<���Һ�ly�� �>>����)5���(5F���P=c����C
$���Pg�am
ڿH�R�r�gy
+�

��$I��M}�O
ҹ��D73�׻��n��K�-0��t��-:��`Lu�,#�9
�P���ٶ��=b�������-�����e�H�H*'c�)݉\;k4A[� 9����Ί�m�҅��m��/��
�Lv]?)�X������p
+��]�H�1�#�<}'`�b���
��Hֆ|
Z��L�H2ڀ##߸�n�ɽK���B����ep�u\��s���nX
+� ����
���7�6:�]��i�i��N��h����t�W�9���5H�ߓX��f��ЕA��+�ˌ4�\�����H&��
�(b��{bKrNB�1�0���)����%�Oͩ2͑u$ �^�0�
"m�
�*>��+N�^��
r|#Z�,qz�Nz��N	�^�Dք*��8��\���a�]J6��
`N���ş��U�8�U
�Rb����L߄]
�څ�s����R!H�prM!��6�Q��s��NT�Ȫ#�M$�K��_�T���s�D�^S~��Z����2]@�"w���:#Fא�2�E�O�-YAnL��$
��h�G�<���ri*e�
�RҬÃ-1���r�
|4ʀ��Yٓ��T%��׆)���X�1ĚO�︔�S��.�w�
��
�u'A�P�e
�r��S$�n�q*����I�u8��VwA p��U6��v�a�%�H��
-M�=cZ���t�!����w�e���)J�GV�7��dN	!�0hލ�����R,��e�<�O9~r�<���x�Q�!�n�\�_��8��gS��@�E�`
6�6G?ʗ�l8��9�����"^H���� Y�C�)x�l���T\������-
�2T�Xx�d�#?�Al�l��M��+I�R6�
��bb␡A�N��G��Y2_�!z4q-�r@F�0&�p�6�!�x2���S�CF����&�cJ�
���
D;[��Z��]Y�2��LN|�TP�/9Ue�F |������Re����.
+�O#���QX�ҒTt ����Lc}0�g�%ƌB�S����T3�1feeT]��֓�V���R�������?��i�Ztn�<2w�W9!xe�j\D��?>�5W�+�	�ib�B��S��
&��QcG� ��y-
�0V�˦��l�}褪yC��n�V�χڄ���6]h9�2��2��H�
s�0����B��~S�̚�J��`������_����4Um� �b��f�t�(�)��9;�`�ƬA��ڻ( �eŪ�x`�VUD��0��	G��t������M��,7���E�����v�T���'�Y�@��L۷,ؘ%�9����H�qRchޭE�*��]6�HpE���7

�S�U�m���#�J��e�'�+G��$:i"ҡ�Vf�ҡ,Zz^EqN�
+o��Im���x�&l$5�)������6�R��?Q�
%�@S�����d�p��}[���� �i�V��N7�y�y:��"��T������6�S%��p �1;7��Iu����e/�*�h�Vń�4�QOf�9�
aإ8E�+�		�A���W�whš�
�C\��߀a�a�!^^���/��uF
c�jDB���kM���U2��������J�����	
2�R�`E
�
�]��ŲM��,����M[y��w
+05
Ŭ����S.y`Nw� ꋪ3\bA$����Sg�t$ל��w����g������Ś�?� 8O
�*��qV���^S�e%�fk�
RVLxv�mf�R�Ж+�d��h|�U�.e�d�gP8�� .��`&��ԆdV�nr!d�����(.�@�/hb��Vd��@�A,���*�lHE�Lp }�E;�T
�E}�S��H
��v/��9*��e�B��Xm3����0�ߵ
1ّ��}#E=
�$#>�Q]C�P�ɭ��Aΰ
MY����UV�;V%��}� Ԛ�7�jT��g}zW�2޸�i1
+�X�Z�f8 ��<
�\��j b�NG.�N��cE�T�`�`�.
�Y�H
�9��ݚX���V�nv;�]#Ķ�]��&�12Eh����p河P�!�0��@x�be�N��&*,�&h6s2rTX�v\�	v��>u�ޅ�y?|��A�($�y�T�'Xu�)
'��*;�v�m����
���IA���wh?kk��������;^r"����`���"��
+N ��K���̫�8��I��[}t��ְ�
�<&�M
0�s�����M�cQN�.�,�7��:@�^+cƭ��tB����!P�l^�\F�`��
Y�uR�ό���!�h� �s���
��ء���eJ�|Zm�r�P%�e�������&]�Q!��϶\��_�%/a�
�BOז����j06���E�C
P�����Ӹ'���^��
+����b����L|�+�U��tn:�2�r�i~��=�"��:A
���N�l@�	p�@R`�t̉��r)�
��?itD"���R +݅lmj
+�Ҧ�$韓"!r �?kR
+��
ӹ�MF���G����y��S�"��ʂE��B庛u20��L�*g���O:0�]�fN�38A�/DzQX
���P`�dz��	�B�BQI)��X��g�2K�Z�5���4��W
+Aq�������3A����
�^�� ��,�xTJ„ѪN��
?��Xt5bHЊ��~��j	� 䄳T�w�o
�n�BC&�t�,�N[{�緼���d�v�"u?�<
+�@�ؾ�y��٫�5�`&���w��>�G�_��
��s�����(Ϯ`j��_$a����Z���
�.e�
�"�ͥ�ʳuk�Pq���!����xC5>=
����K�9�E��!RDqWT
��7���(;�
��H�G��Km��	�l|�@AA�sg���4(I]{5�m���ٜP�����P�.
�@\��P�ȮSRG�)1��ov�AC�����&�[��S3<������̗
2�E_
��b�����z��

�Y�S�@cB�Y:��H��d�D�/���
�h�C�<ˣ�:'�X]��-�g�z�h��ƚ�?�a���V�
;\�9x0oF�\�,=�t��-���q
O5O�C�HБ�
��QC�:{�nF���$����/i�3�Z�Dy�J��Tu;U
�����p[hJ�Y�(ٷ\�z���+r*E���fwʋ��I:x�a D"���1eU��dӑ3���@vӢ�k�s�����o,&�3�jA�SU���A�I���嫤0Ҭ�!	�b��
�~YL�C�Ylf<��HQ�ϦH�ዩd�g�>���ڶ��(�̖�fJ�͐����<�ĭwֻ�o��;Nײ
�
lVl��pEU�R�r�-��I��5���)Vv�nS����!��Ij

��[�v at gI7QN�;Lt�QN����� �����T�BO��=�7)7��]���04䕣�9��q�7��n^f�m�6�ܶU�t)YwJ�[�%�B�����qX!�u[�C@�@�t�1��o at y#9����=�aP94.��- ��Kv�&�v�.&�ER��y��0�
/��{��0
�~ �%[�9���m�npW(�gVɑ,�~����q�P���:b"O.X/O-K�k��}R�k��͕�,�i�h^~��qP��m� Q6w��}_D��>��ϡKD�ick.TUJt����}�?�W���}��9�(|�vh=�-�Ag��F����s�<f��eM�הב�鐖2�Z3���&�Y�u����-��h���l�V�TI1��ttHi��-1��{��E
+d�pѹ��\������L�P�
� � b��p�
�l�� ����Na4�̌�5S��'a�ݏ��;��^
z,"��3|ӭ9�ɥtQ�����$
���D�������7�V ����E
�`���1[�0u��%�c��lcL}o �f��m�eC(9���~�&o��@,QE
+
��+��14F��gE��>D��S���j��K���W6:׀j���������|�h3f�|h?�f��=��([��f:��„�c�?�Z���
�����n"�ib���w7�|���m?���w�l �Bk�L�[C�����B�
-�	�T ���
���!o�o���1�9P��91��E�M�r��.(@#W亳� JH���f�� �
�n�����n"oQ� ܍����pњnc(P@�ˤ���y�e�7/$MQ?�r�&
�
�.�" S@�A�r	�L���?M�_��s�������_}�
+
戫��1N�oz����!���5�?��*��q_+I
Pn#tv��x�w�i�Y�lhjK��il����j(��U�
*(	��d�Q�b�فԪ �M��
�`�
��ID���^�;�D�z�#�$�@/OZ2*7L�%�`�_G��0��BR�\�M��&yK�w��x�ϙ�**A��zx6���܀��o"�ѷs'�ח�w;s1
hp�黔Pd�[�f�I�i��������4�f�����Ox�rdzm�~���n5�A���
+����0)#z�i5���
����S�  Ԛ�¹���vs
Denc���A����w53�
~؀qD�#��B��JLTa��ej�RH^WKO|7T�O���<�Q�R�A��<�E����Jߵ�P�z��b)���p��̊a���>��Vj����~{���mJЄC1$�<�8>�
+��ұ[�C��"!.5�=k��ߢ5�o�4���X؇ү�]Bu����u��hQ�l�9Y�]ԃ>��Q��
��So����HIL��R��Vv���_����;Ğm��$@����v��2V��ȳ�.OD;!\U&X;4Z�7e쓉9 ���
��{����9C
Ii��e8N�&q0uE`�l�u�
�]s
Q�C�V
шS�ɄK0��&8����,���}8�(}eoߛEZ]�@�JEoo��M>��3��(�L#��
蠋$������ʗ@����o�W����U��t�3�h��� �
Nw�8yfX“Ƭ�a+u�K
+�mhv�>�
+)
�.�Kn��|��w��͉#
�&�
HƖ=�ꓙK�^�i1u�	"22}o�Ն}�?xwM:jV[�����F�ʹ��
��D� �hv�u|cl5
+J�������,SE�D �贂T�&wW
�2��+&�x�ag��R��������
(��~XHl�L
�
/�+ڎ"�v���4V�q��
ᷭm�ƶ�������v���ķ�׬
+��
/�#�a����b��GH���d�ØMn���A6��X 7@ؚ��C��f�!ǩ�Ev�>5��t���7E��EW}�5�3�.+���7>~���3u��)Q��Ff��i*�@�L�-;�]8������D0��S��IEI8ɱjm��Û Zcî��m���H�j�>�aC���!%9������OZ�lN�B���ф#�������-
�_ʌ�}�x�L��S�RR���!B�p
J�
��
+�]��E[��,���x�ٮ;A��|���yg$fT�G�4�V
�u�w����.��Z�k�]'B��r��&�"h���ta,}6(E�i,fF����c�w1�v_s����%S�{�
Ê0�����~I��Oc
�	z�m�׿\�O*���]W���]@��>�e�i%g�&p6�*—C�A�ꆻC"�ڒ�7�rZIY�t�zM�~�x~u�4��K��;���nvZ�6��,���l
�5�16��2��m�X�>T�
�' �=�LA
~MRR�)��G���m6��0���4�l9ث2�hZDԴ��.�ۭ�>���!ꢉzܗ�����/| ���
��8�{�����S^����1���B'|�6&��|{z�>����d��+e�@�io�[(`4<��
D�Ɛ�
�wˆߗ%2SA�r:w3����~�o�F,vy>u���%�$t/|^�CH����f"=[�Ǿl�Ky�
*`s��b|�.�\�u��NOc�#�&�
٤y�f�:�l��g�x>��@
�G�u�e~i)E�ϻO
l�Q�/�»F��������d� ��E�I�@l6�	�Q�f
m).�]����c#?�%�l�+I��� �,�`���H�Ꚋ��[���ɺ�(
+�ĭ���?���������;�ױf��p*�!�Q"
O��"5-<�)gqwg�bF��hr�ޝ�Iz+�򴈔����H�z4tl���Gt=8
�|�[�H� �����~�F���_aD�
da ����8���}�_��e��~�\#�{?7�4®dұ��� 4�PE8�����^��:x�_U���Woi��M&>K.�j��8+Ȳ�
�0̧�,2@�`��$��
G1�W���8�#)$ <��)h�<��Iz�Y�(O$��KC5��kG���$�1��6naǘI��#JD�G�@	�������9q�˃K�{���e"����(@n�g/�9s��
3G�UWɴ�ݓ8���QꜸƘ%#��椻��sv/����$�
�+ja�Ӥ-���D��9��Ӟd�1;��f `��7%Ta��2)����(�Qac�"HjC�Z�hלd���B�E)ƥ߿#�QDp���; �߃	#��U2zɞ��B
����i��1Q�}0�U�\��w����J��E9e��(�N��1D�O��bz�;�� [...]
+�D�ݾ�]��C�@Jƒf���\I�m��G
清��`�C���s�,�5!�
+N
�՘We~��?��AD�N5�n�#XRƯ���Mvu0�3�
�yF/��TM��G��na����=L���o؞�ț��e�jjb���I��'{�
�ƈ�7T���
+7`��������0\�&.
`ڰ�7m��
K���n��@Q]��0
���&`�{(���_�����$���$_">���,�Uvvp����(T������g��-I�_��%	�܄IniT
��`�wH�56�'��5A��}'��Q��d�%�"
c���lN�V�Z���z�Z]���N
c����8f$��ɶ,}N����ZK��0����e?��O���V�M��v%Ii�n�%����
��U#�EgK�""<�C3 6��C#��/�fC�� �S_̣Fs/����7�l�������QAe
$�:�H����{�"T�
)�O`�>츇�
[9X�]
:�X��vQ9�)~��;���Ǒ��V��F
ꟊ^��
SB �&f(�NE�����7���O���Y�{�,&��J9��p���e��F���PE�d��qj�}���
+��QTe� H�ˉ��GrO��)�l��
�s�9KU
�!���	����k��i��s���
M{��4���
D/�zU5�.�{�[L(�ߚ3
��
#�  �0�L(B3�W_5�t��pM�*Q$]�c�˴�МZ�~gu;�=MN�졿�G�ܡ��T+9�T�v��Ϟ�>
�xL&�L��KEFý���s�g '*ZR�vv��4ky�����L	�O��X
G���DM���Zm��]�gh^�
+�Hңl�1R�C�%�X�[ȂE�l��U��,�HA��Ms�$���*B� ��GKB$.J*�����r�.a��%DZԤ����C
��.ph:ș-Rb��b-�fuUQ�^�
�y�ʡ���k�/����]���R=$\��#�:���u���}Hx��E[�"���!6Xdk���o�k��w�k(E{�ADo������{�g2�!�C�ht�5��Km
5�.�?����
9]
:��
�G��zL��~�6R$�]]�
+�g�0
���g���
U�P��k~i~@y����k�d+1��Ϧ����,�k������}���ɔ
L�%���2�'B$#8�j~���ҭ���t
w��{0���|�dR���}��8���4���6EG*`M%�KC�Rq���4��}�yb~?�l�*�B�"�

��\�� ���[%�
r��
ND�fS9id�kP�k�Q 1Q����j��!Q�CN�D�1 ��L�*I�,�s�
�?�5����ۮ��(E5 �	���%8�����ف�
0�:4�ͳ>��}N��Z7�JS&��Z,��:�.�V��`?��l@�������(k.&�P
�n�O���
����{uQ�Q�C1w�􋑁�V:�M��:��al�G���\�U��=m%.�o1��y��h��P0T�qܦ���v�=
Bt1��u�H���� E�@�*���
Y	*9�]}�j�+wæ�耲Q �����r؁C

+�J<hڶv8�jjW�%P��Io����`~o��6�

���Қ�DZ�D�y���6%��1Q�t�������(W[D
�%gg��u`��g��y(��1��x��y�Բ�A��Z�
��<s��]�{
+9T���ԸD��Ȧ����q6�F�R@�h�ҵWx�٩��t���l�w}��w��ᡚ2����Y�S�,^
U�c�UBݷ�E���
���U^�vA
,�zg<:4�k΢g_��&��Ic�Y��C,Ԭ�7��;�*�2�	L�I��"]��<s*`T
�fv���4& ����đm��v~CY"�
��yj��ש�
�TBx�DV���Ґ�z�e�}�~�^��`�����S��c��AV�ă
qU�%
\o�@�=4ha��VneuyM�������Y�K[�
+UjO�����Wz��p
+�G�g��g�~Uo���N�f�kjj� r�*�NFQ�u��۲Sk����ao���5��LH��*�G�"��[�2��[Xu�

p�e
I�����|W��Ғ���Nl�=�;�6������o}h_�DXs��(9K��gٯi���p���e��!�J�
Gr�6�%@�:S�Ϧ�;݃|N�݊b ��c1uFU��bI1D{�Z�I>��_�Em���C�˳Y�Z!�h
�����^��m6}�-35i�Y
֔0���Tf�e���B)h��\�	��pr{Q-�!:�Sy"O1�I��G�I�s�g�0�s��BMea�5c�X,:��a%]+j��0hVM��Z�x:�J#
����IDjN$�_L[iS����Q���Ss.�\%e''9�Ě�#�F���b�^�yb�ܔ_�R�Ŧ3
�u��
t��N�4ӷ8݂H��"�'����c��t���
��X�e�''8dܷ٭j@���"Sas��{�x(��d�/
+��_T�HnUj=W+�p��  ����j\��ЂC��	���5�>����{*I$>Ԩ���n�PV�M %����T���?U�MCr���X�D�q�on���P��-J���w�l�
4�يᒋ���=��ql(3�7�����y��EP��~-RT�>a�i�8��D�Te����W�~FZ�@>�v�8�X�˺�ϝ�\��߿����TƻTSȲا���y�ې�>��HK 
�߅���5���nv��>�h�!b�1kT���gu7M�C� ��m��
��O�6�W�
]A��5Z6�us�Vr��p)�>tM!�	%
+�|*��������Xp�>�tه2b�U�]��>�u ��b�G��[�v٩@Nz/�.T��
��Yz��;��xoU߲
�?q�X7�D19LBJ���ğ/;�*����c��y���˘F
pAӉ�f�5�ߎx
������ߘ��0Ӽ�}�92���
s���ikRN״���&�߻�!��*�k׽rL�
+�!���0
}�.[��J�Xџ�����f-+>

+p6����{nc�@�>�cci�:߅�e�IP��^�������%��ac���
�ި
���6�%
��NmC��&�b�K��l�=��z�YCck�Xc.��6ޫ�Z12�U���Cq��)�]�ޗ^�-޻m����"�L\���)�Mx�yU���M�Sxyu�<6��#���
+���S�����Wf����U
+xmc���5V�u��46V�\�$+4�	��M�/+�e���}��=�N�_��t�x��C%�d�1��Z�
+�e��Ʃo
+�)�'�m
+�{�z�a}[
C�ȶi�]�B�MxڡH
`
����w��Hu�TMŦW=m�Kc�:Ū����l��l����\o�����Q���n�"uk�3	F�;��탗tc�o=�h at v���,K�k0ܮ<o{�W/���P�q�T5��e�3�7_���'3��&xC׺������e�H�v
������0���$ha�"�f���<�e�s�k�e����Ȗam�Ӕ�\�ͭ�y���O�`T	_1���K`�OP�<��"y��7(�obΫ����Y��ȥ�K���m��w
J��R��

�/��i��t��k>wJ��J��4Ǥ	���b���v���~V��cbccC��X�m��\�N�`ˍ�$h�sI%B�h��J�{���2j�i�*������jI?��wy��F�P�� u��e��d��:��!�����OyO#![���n�L��e��ԇ��״3�x֡�T����m8 ��F�+���.���� Et���B^
+��\�L�B�E'�Ϡ������=){@��3��LE׏r
��$�܂/6��s��u�#q�A7-��	!F���Λ���e��k)[i6�>Z�ƺ,�o��~?�K��uC�ռ9zSV�&S�o݂H��Q�9ϳ�sy��,p�bX
+
�
h~7�|��{�I��L����}�
�����CԻO������m�g�{�O��|���5�t��9__|�����З�8�j��� ���O��o��F�o'����A��@����	{|8������;���<��~��56S`j�ҷ���v+1��8����l���No�����
���ԭ�lu�}���fv5[{�~i�[G�q�4�쳺�s�w��ؙrW
y���۲Eǣ��D����k3le��wɮ
���%�(��d5��v����wµ=t�k?Mo׭�{�z���l��R>�3�q�gT�96�
��jgbf�=�y��
�]�]�__����\���ijӚ��iK7Dz �;���pw���nE�����=��=�=�u����=�����
���)]��x��Kϱ}2�궉
&��Z8w�u���w]3%���Å��$&��y[�R�s����޺��:��-E���
���
���ݡ:=��p������rǾHb�m6�&�pt������5������X$�sa��wu[l�U�}W�e�
�&�y��]"N[qx*�R�S��u�Zo�c��Df!~�nG�"�5Kզ���|K��u��s)
+�3 vVC�p6X-mYg
�.53�q�|7���Z8�?rF�a�������|?�����m�g.d$V`]��(�V_�%�8�k�yj�
��[������ȣ��c>>��%+��y��T��[y�:�m���
+����i����сy����Nߵ���RϷ�0��7����y�6, �/l�s�~h��A�m�x
�gw(@���o'�b�hɚ{_���6U���8��1��}i}��}���O���Y��[�0O�%"�Bo��1X_Z�
��A
;�1'�M�v��4�`�pa�nC�@d�퍗,�&�ˈ��l�K�}�;b
�6,)��t\Va�ןo�͒�;l
6
�Z�f�. lB�l��V�s0�w��-Ix#,�	�RX�*I�ʼn�W/,Q-`� >���|h:W5�3�!���3L[5B��'x0�

r at E
�7�����s}�S��?�Lș~|�fI�l�����ؼ��~!��ʄU������qs
5�W}�D���0)x�N
�Ŭ7E�E��
ا�B����#���E�Q�t�_��^��	��|�����9a
 B��O�����u��
�8���*�t�<�SX0@ɹj(��O{�Mّ)�����,.Dz��DGċGcGI��Yl��kVe�
Q�8�z��罃:̀�&og
+
l�Cqӈ�.�+��Xﳫ��$+g���I��.E:Ԛ����-ӄ��g��rQ:�xW
6Qvg�.���g�!- ��ʍ
������
+�M
�ګ�e�U42J�cB$��	��cv��%4������‰����b#�D�
Y"́+{�����йxz�_��h�����������y
+�?�Jː^�1G�`y����'!�!�"��b��K;d%S
a��:O%B�(ǟ��)���Az��뉝,!%���ZŚ��+�b��.���&��7v��D|a���b�V�al�V�%1�\}�{�?��jfj��X��D0�:$
Bj�I/ ]@�_�ǂ��#>��dK
V�o�`uG�$�r��
�x����z���0���}|ޛ,�E�EZ���;�h�����W�	����Ll��
�F�:gu�;�g�ʇ8/�A�dQ<"VƪR��R�2��jޤ��h.�
+J�C���گN�>���6�"j��'lI�ԑ�
A�
���8�1YP�����-7bw9��I
��C�ZK��8��Hh�A�.���r�0"���T�C-�`��AZT����ϕy�&
�|�Ŝ��ȃ��5E�Ys�]�Q�9
Z�3.��+5?��˃� ~Q�भ���� �fT
�Zl~YM���V#�DC�jdJI<�?f�'}~c�yDYv�P��-�1�m�����_,�LG��y�\!N ���̔�j?6����"���>nG���24��80~���
�Y
����
L�?Rb��z��EAA��Q�"��R�4Or�g�}�>8�͈�,����F��m(�|z	g3,�u��ђ
+o
�5�_�r��5bE_��g��#��E�t�T�좇 ��c,
�`��܁W?���n���


ե�Qlaz���0��vh������7pg�΀_n�Zo�'C}0��0
Ri9$�ϥù�]��p�=����d����#�}���
 &+���fI3yH�UEW}��q"�j�
+��0��u��������5�A�Ƅ_M\�5������Ο�������{Ҙ�Ǐ�i��ʂ���Cz�sCV�]�mI�:�pB���ڞ���o
j�����������
��>=��tc�L�R��A��6V\P�2@:���w-5b�p�د˾nj3��|�~��ި��\���~Z��g�
��ѶR� 
�1jݑ������;�o��rٟ��_L��&�]�c�+C֝�f�r��J�!ۘ�﷼7Η���N�
4���.�!�dQP�y֭��#$e���
R0Hϱ�
�F%�
�\��)��Y�VQB�Ə}��7
��r���>���Rm��n@}��w��}y� ��ĩe{!8�(���1��~���Ւ�mf�mHVm3s����l3-�
K�5Y��2��X�0��R�5�����Z���U��oЎ��r����&��d�0N6ʻ�Ԫ��m�eQ����^
+sRkLjY��'±z	�����\6�y,�9Ц
�y����
[r
��c~��jG�XF�U/����c��^ �L�����Q7 P�B���x.#8�6H�6[a6���6�m��D��1;[�1ì�VXm����i��ۍ2�,�u�[��X�6��6K.Ú��
>�J^r>?�������!�'q����Nw�3���<՞�̱
+�9���6dr�����3�[>�6�ɟ\Č�C�F����d��&v�A�9��A%�Hq
ssE�¬�4�S�v�<�ǽ�
;Z @^�����;o<���]��B
�tS�ηgb�΃�y�9g�;u�p(��#�P���ۃ3K�A��cpR���挅���?�涽���ǯ�ow���!�^�E'��?ל���� �E¤�˛�
+G8]1a����Qi��ߠCݦi�n��x�Jj�SCK�:��aNτc��P&�*�
������Y�o&�
���R��Bx%���Z�i��]ه��"��2��2s��mȥ�e�C�7��[Ш�\�~�\pՌ>>m;��D at 7�S�/�1��%�-&I�q�J�%�S'����k���n��9����E��c&��o?�k�X�j�Z�����}z^����?�
��T0��rS�
q����l���
����u����t����M|R����=ۑۺ��u�ku�wġ
i���$����^�-
+ҭ����ն�n=�}CU�c�~���>F�
+��_c/��wk�������-�_�fG⺬��.&{l��Ƽߺΰغ��w�[�QS�-@�G9^��>7>-oS�|@��T���)�]�Ua�k9I��)�_K��5
���|[��x
+^�a��!��lS����R���R����IN]m+&��]��u<b���
�^f��
+b&.ѷݾ8	��H˓	)Ͽ����Q��c4�ߟ
�*SW/��k1��w��KZ�r����wv��i>r�'+{ʴ�e
k-�k*���4�A5#��0��*S����ߞ
�Q�	�#���w������ZV��
ۃ�a�v[{|���~w�[}�T�zI<w7������ �c;.���\�q��U@�oo�
Ùu"a�nq
{(`U�5�@Vyw�d$�<u���!J[ԃ6��Dw���(J���5x2������s3(��q�x�S��̛��VԨO)�j�f�i��4���%�g��1��-�¦H�r����
���ۼ�i�#g��{ӊ�[�3I���&)޿o�'�v������b�X�!��uMT�i�4�=�󜏿xC>�G=��
&�]�G��5jE׳���
I��
�F�3�	o?f�l-���}�������
[
z�Z\�/��o
3�Pf��y�k�I����Txs/c5���-(��Y�ͻ��y��(�#�:��r�!di�?�g.��m]�4탠�Cjo��M�X$
�5[�up���y�6���݅y����>
�Ƀ�=O���Tc�����D�d���́A�s%-��*�M�柼U`�nʣ"_�1iDK��p����Ą��.��Iq{�w�hC��v��6
%�8�jXP�ҍ`k]�6˒�
�<{�[��Z��H�'
�	�I�#`_@(E��Hvѹ~���d�>�ȯs
+z�&T����q�X�E�����Y�{	w�*
T�RL�H��hl�U&�kI����~�!�w4&�>���ѭ4dP���%u٢ʜ�2��j
��!!
Yu+��\"
KH���n�ߊ�:)2��$ �v�X3Ɔ�?b�\�
��%o%s)�븧L@�!���vqE�\���/
H��g�@W�j&;h�sOr.���i�F{p+���hTӢ��tyi��:���-�A:17`L�pn��]2��/��5 ������Y�I-{��Ҙ���b_�����b2�?�
f��3&E����B�#蔲�,W�)�I���tݜ�$e�����w�U��xn��e׿��S~���8ՙ�]��g������EbqCW�Z
`����g�9-^�l&W���X�p�A;ݣ����^z%���W���~їs+@���f��않��I�<-
�f��=)@62H&
"�Lak���4M3vM�̢\0��,Z>d��.�|���Ĕ�Z�%�D�{���gˣh�)y�SFL��I6Y�u���
���ʂdN6
���� ��P��څ�uB�|��
+ ��a� ��kΎ'��/�d��C
�h�]� �|��[u�B@�սڿK\��@�4�!�Ov�
���~C����TK�Tc�Άh��
+�گ��X�'krAj�Rv�
��4�{ؖ�R?$�Q���
��S
1'�v.̽��������}�@E��
5"��hu�Ə��ELB��&���X9�ퟑF?�;0p�h>:D����;)�_�&�H/S� �6(�l�A�9�˽
><^tL�f���@���,��n�;Ԅa�^�� ��`�D�ߋ��D-�B�ҁnhz k�@
�[������Q� ��9̡�dW�B�P���)G4����UUctYHn����(
+>�W�!�O������|��r�@�8#�j$����}T�Au
jM�jł} ɱ�7�N`��nt�ErI�+6U�"x1L�^�L�"Ϧ��|[4- ��
+�A�w�&�������m�
�$�-/I�\v���@1��cw�P�o�N��+[0�
��)ij��q⳺ջ�g�4�N����4 M�Ӭ���,`U������lU8��z��H��g�OgJ���wAp�p:�E��[oS���e�����'��f���9Cbb|OQ�|m���k�z<��
A!Ż���(���7��d-�7�'g���)zCԇ-Xp
e�ݩ��"�̡�a�7yOILF���p<®�������`DI�k���ꉢ�Kn?��섂{��'�9{6rz����a8�
:�m��Y��	��f�
�CA
�*��%�K����oZ�l������6�� 
#,��>��-�*�����!N��L�T�2��
��S�}N6��?{��J�!9AH
�
�À��Xi�����|>@�z� ��/x�Ƹ ��A:~sI֚�p`?��q)A��<,(�2������aX.�e#[�6�4�ʢ�VWT.�z��`k�
s�=ϡ6�����[�X�G�KR
�Pg.�
����VVbR}Nq۠mMv�[�
+�kaqR�=a�XNrH<��1�
�ۋϺ�v���<T<HZ+
aU�Z
^;8'��؍�җ̧��Iq�3;�}
*��"\P
6���W�
+�M<�N��B�֔
�r:�s�d
(_�ܥv 9�pK=H�cU�焾S(�e��W�g�-X�@�
+h,Ot�h�ե��>)������
)�Is�
,��H��-R
O���
E__y�5K��Op�����[��!��C~	�.��0Y��,�4�.<�KͮNюp>OY@��
fU��Y��>��J�4D�r[��P$m`�\hN:t���a���Ū�-��9��5�
^dVIf*f+�zό%�u
�
�ROX���7�]��=a�m��g*/�0�
+��飹g0�
+%����aɺ����knh< e��9Woh����6�x����M���pDc?��2�+�3_oz���]fa�T߬�'�1��C��E@;l���ԡ�8W�BO�QFd����eGwTB�-C�
�����Fh������������
+���eȳwKK�.u��*;�yDf �L��d�d0�͸��P�sA�
��m�c��AX�����m&>y�9u��n
��<���h�0�����^�
�`�PirL�҇R�0 ��.3�u��;m�a+\�na	b�N��Z��7�<�b>I �

caO
᳣j�_2&1�_.��:�&���U�Y������
>dX!��b�t0��s��g`#
#~��^ǜ�
@�~Ǐ�yk�@]�ҖH�������
7��9�k�I*‡��D�O�Li�+�f[���c�q��bi�j~���<:#���0.[l�z�"��.�S
+��6�� �$���r�<���f� Lô���9sgG���^�碀lZ�
m7y���e���7g�ƪ���w�
�ΒçX"���I:�&ޮ>�>fֲ�=��ݭ�|S��ҊzY�����y�Ge�f�+�xŎsYRL
�n19�
G�
^|Y��h
�	F�
�q��G�!

c{�G�{�/xr#��
K��?zo���>��N=9�4�FZ�
#������0��!&&�g�U1�oЄ�LN��>���O�]�]t�b�'��q��U	�4]��PP�~�Ih�Z�Sœ ���9_t3V

��[/��G}�"���>�P��Ʉ�Xk_���o�n�#���u�n$g/�J�f��`�A'�V�
+�$N�$ё_�e��bb7ۑ�K�O�����"M
��̠fJ�ģ�%���d���E1�;���ax�Af2U�|��ڞE���Q�[G�'�qc�j�
᝖�D� ���L�9�MJ���/�I�wJ+)[����jTT6�G}n<���>��8g
�Z�~Y`&�rE�m��|f�q=�B�Rg�& ,�N��9�(��� n��6�m�T�o?�$ԑ�HN����f����2�>���ׂM���]��͈���`����w�:@��Ef9�8�P`�$����Q.� w�
&�!gr����"����N�aWR��0ҍr֓@�
di��>�M�'�f7%�2y��@��[�M�dʼn10!`���b�2k���Zfm�z
g��T�+5g)k�S�
HV�b�@\�!e��ݤܐ�a�V
+�����T�D"
�"�7 �`g��c3�j
!��S"��F���M�
��C� o����Um��6�g�T�
l�C���Ѿ����326�0
�4 xM@�!]��@<�.m��ݥ�DN73.`s��^�h��w #�
6%̧�nd鲀\]餧L��8�=�}���4����
�j�OýzM{x����_��� �X���
i� ��m#��
��eg%�����?rL*i���ge7U#�x���m���d��*��
+��oKb�hd3�y�/��7I}� V��c'��d9+�%L�
��_>*G���A7�!�t
�W�q(pҤ�8�<DK�0�X�cn�Lj��U�]������]ʿ€ᜋWC6���6o(��۱�ǷxJ���h��5���b�%�.�v)(����-
��tD�`sh�
lc['CM�b���z�.�M��uX�4�T'��q-b�,<:Y̠�s)ᇂU$u�Y]��6�|�(#Wʆ7N4\&6�v�N����#�Qz�Q��{^�R30��
^���o�h�m,8���KST�{m.�;���t���e������i�m��&q>�ڌ[z���atix���9y��w�um�/*�����j��6��q�P�c�9x��6G�3�[N�:�C�������%�?놝~�����l���hW4�>�Meۅ�vS
++I�������9o�VެuLbٞQoc�oz��`,��c�+d���� �N-Z8��\�Mi›�!
�������
�}�Kz�}!�N���ozOQ�M5~���n��5��o��N���J�xګ��I��f7�Ű���;�&����i
XO�҈����!��)��
�G��F���t^�6����:��s��� g�!dv
��%
h����~o
Q�I��4|f4^���J���Q��d@F
tC�g3L
�	���զH��%�U���l��݉ ��F�,^}���T�D��`��uW�_�7���a���o�nr߈]�U!�a��7@����!�w�ђR��\\�p	���gS�L�>�ìJے@������Zً�qLã!�
 �Ӈ¦�r�t��;,@&�R�= 
���g��
F�
�]`P�����_j�R@��MpTt��Ÿo�xg�/���
�f�(&��+���
�?�13
�B�����������uP��~���fZq˘�m���cLx7��U=� ��� &bqw#W�];��:B�1���Xuw	3E%�)e!��;�<D�VSq)�<���A���H.�K������Yr/�����L�;x1����xtjJZ�a����w�Z�y"K����Ҭ� ����N�^�1�c��ۮ�' �M�.���R��!Z) 
�����Ӏ��!�e�
209#K��q�@�z�wS���i�:��%�+$}c0@`�ރ�
x�f�[���ܮ6��86�� ��rU��XOV��J�T��
 
+
�R.�F����Gn�xs�8
+0e
cV�5���
{0�HA�Pa�+���J

�`m$�}��
� ה��.�p�D��Smޱ��I��  ]nҀ:�[�.
+���T�y�!Q'b]<�B�D�ґ8�!sv�|R{�6`���\v���#���b��	�a�<��t_o�FH8S��� X r�`:�O	U
K����&�1������up�
�t-����<@��O}�����!ص��x�$�TT�Έ�-��ɥ0m�j�*�kG��$�;

��p��`eu���E�[�������$y��w}1��k�L��	 n�C1��rߍ\��	�����&X��G��$k��AQ����+]T�`U�ˇ�(�
+z�{�B�$X��P���x�-R�ס8U��d�+CNG1����"/2�-(g9d$響���O��Z��t]g�YȊ�Z��-�E���,�S;3]�X�8~��%Wx �v� �N&~c�����Z�@�ľ�c�%U���M7u��_���(����4�\�V$��:���ƙ4�7f2�~w����.���*&���i	�f� �Xv�
�
�O©��9����\���`�[�X(l�mە�#��B�=���K�~fB
�
�<D<C���>��cQ�и2K������<��u�^e6�T��9�����mS��W�5��z��� .�H�9���b[��U�z��!6QY��Q
��{hf�v�lI�ۘ
���o�7��.ŤYN���c��^33|l�{>�f��O
�oZ�{h�;Vrez,̈������kۤ�u�0{ԡ
,I��zŖl/m`��$w����d����|!ºw�ij �So��؋�렂
�6�]�k3Ӽ�Y�x�ן?�E�cΐ�!��K�ܖ�&9��|,¹��q�����}_��N
,�y39�0���
+[[�A����"^�=��F�ԙ�֠7�Z�ݔK
+�(�`�9L�N{��P팂Q�`��G��UE�[1�6x�0;*3����B5Z��V{�]�����Q)������S�7ǯ�]:
+���UUf[�n+�5gB�M��8^�RR��[
g�
}fQ�R�
�&«��T�«x
��0$��tZN�1�b	���HLᘝr
+���j,[�
F�{l��}��}�»%eԶ�*2gPyA��r�]�J(~�� 	�.*X;Ҕ�_�
��2jW�}�q��6��n*�����Ok_?x�w��f�>�Г���w����<ʹΦ��?ʠ	��0uW��P���%
�U�y���O
$����
E�6��NWۜ�;�,#ꒆ�9�`(��in^�V��
��O���V�+��ʦb2��[3��z+<�N��3�|fa���,����r�Itr�o�J^X� 
gԤ�&��-��8�Y
+AN�hz[��Q�7]�#�ibۮ����&��
���k�� �a)�|�:��;�_4,��3�({E�����P��?gd��
+���)Z4�$v;[n}0\����"
鿲�tP�n at D���xO���x����ɀ�;�B�s��19�h����3!���6�����<�+.0N�dQGQ����Ƴ�
bT���CeZ�l9+�&Y:���0��FMe[Mu����RM۩���{$�*U�K���[��`s�
+dE�����&0��ײ#��`��v
6�S)X1�d.����ꞔ}L����q �\��i����LAQ
H���y�\�Z�j?�4�
+s?Mc|��}pGH�TT-��N`�0�,o`A�j�3]�+��9B�Fa�t�bAh.z !qH���SEKU6h�	5'L�6.��nQ��]dj��
+W�����
�qu� zi�oR��
+�bg������`dž�I�\p7ʰ�@[����]W0q���%R�}X�_��u�2Hu����4T^i���-�3K��
�#��X�#U�\4O���S|z0v(h�We��BA�f6���FTuSԎ��H�ܗ02"�E��civ���N����"����P�	W���}��ɞ:送൥���*1�,��[�WU|L������i�� g��(�'�'��WND`8{����I�"��:6��Kx���c����1�p���
{�,�)sͨ��I�
�Y�.ӝ��^�VO �
+��N�Dw+OI٥����]
N�h��.�98��4�EVͩ{"��JݡiL|�7��MW09��GB��rn&��rD �9/�\�� �r�3f���Hn1��ݐ�,g~�����v����
����>���a�ȥ/~��nxi�NnSџx�]3-I���H#3��b��p�{�i��`:a�=�A\3ȭ��"^���9��E�S���N�0�K�۩|%k��|�ɔ�,E�eR��cޚ�t?
D�J�����7L)$�[?lS�Lk��RH�@��EQ�����c
ʑ��Jb��}��s��Z�u��a��Ek�,8�_�Pn\�����qr{e�{�P
���ŇJ�.T
��
���u��
��b��|�ә!���J��9��
����Q�Ԅ��C��)/�
;<ɀ
�y��'ی^ef_���P��Z�qP�x��mcn���uivc��
�ˮ۱��{�d^59� ���'O|�'&�>���`I�I���žSv��_m�֧��I�Oob{G����;76|���ߐTV>d>9�twi [...]
�����_���?���oN���������}�ѿ��_����~M�������Ͽ�o�����
�NM�_?����?_C�������������;\����w��GW㭀��k�$3B_�_o�/	"�
3�������K�/��-+
τ�7@zU:��

3d�A�S9H�X
vR��F}��_�B��H
��kQ8��T�U�5�
p���8��
l5�Z�J$8ȣS܀��o�����
~Y�1�
����>�o+���-���݁ +�#t�j����x��١��-
�k�D����Q獁ðt���ߏ��x_��O�p�<(2��7���kNbɵxU���q}.��+3�lk!h���.�>
;b"^������}��?�N�|e�1�M�4z�V���w��uaY<|�
�JҒ
+��)f����|��J�K5�ҹ��nZOF~)��z����J6�mԒ��z
�B6g��T���X/`�T9zq�s�Z��4�S�0/�H��?ωx
݇�jM�k�f?��6'�ί���߀���&�<mip=|�
_G�������z�\�u����"����|qZEY�`��ؒʟ�"?
��՚wJ
�G7�y��0C�%�P��̋u�_I|�E�[�^xf�����H���?��#��T�rc�]s���=~|�v�5��F���SmO����i)���1�גmՃ`-� g����K�5�
lq1|v߂�\�@r2
�,v�`:c�)x�M��k�:���x��5I�����kS��
p;%�/A�왼�����`�
xb���E<����|}
+
��L�h�2aG�aI�������p��q�5h���oK�=���B�i������+
�Ծ��UjaE���!���B�p�/C����}T���f at 2��뫇r��j��u
�W��ۇ������R��<G�G�E��j�@0�}ㄺ�1������
�R�p
�������
�E�?�]�0�)k��a��3����>	�N
k�AM=��Oo.���b���a�Y
���n ��
�ŀ���^~�)�5�
5ˈ�r��J�$QU�

�/_�K�3��A�

������ߠ�$�am��a�	�㼭�
�̿�n_�$�T�rB�uy	�ch�U�<�kyMС�z�W�0L���0�#�ߠjk96?�����x���R�`Iك �~�D- ���w����8Ȫ
v
��"�J�'��W8
+�Yy�.�����z {�ЧO�z^��E%�U���+�p]�~t�e��y�
+k���+�q]��.�5����g�_B�
��q�+�#l���
}�
s��m��Mf.�c6�W#��a���P�7�r�x�����
nl1"���{ ��a�>��	O��t�C�xٚځK×��kp
J������������i^��i"S��{�|����|~>(��׵�\D|�W�+�Ű�����#�Q������
�@�_ �ȸ�O����N�e`D�z
�LO
w=�%�a􋧟�7�:)��Dѡe�Pg���W�X�jd��֫�R���|,x
^rْ:��
G�OǓ�Ɗ"��U�"
�����n��%�u��?�$�S���~"��`c6d�&aqH�4�[ ݄�����1F��k�%�ݍF+gμ�e�z3��a�#��'�}ʡ���հ�hų}�[��w��Ă3"��ĝ�,\Q�Y�d���v4Z� �^B=5��s�q(k
�ȸP�CP���+�5���
+7����&�G���j���+����^pG��q�\�0X�
��j�϶���㟓�t��s�Z�2:����yv��0�cOa��eoQ�Gz
����#'��s
F���¸c=�ƃ�"%����
+�+vx�+���Ȍ���4 3/�k�d����\2�!PY��o��J�w�:�
+��>a��4
+[=��ׁ�MB�J�i;�ա���u����7�
��XT�(��SA���5Z|{�m� V%;�����h�� �6��m�ބ[���~�����Z#C�:hK!p6,>��O��t%�Ы�E	�g2 ��Ե����T�@T�sq�\�ϓh����}'}�+�]M�7�l����lʅ��P3�k֎g}d �셯�h`v���
5���S�x��a|��
�A��!Er;�k~[鼧'�d�<�1��7��Q�����b*>>
O��ʾ~{�}~R��I`9NT��b��#�f7�cGA\���Q�Vm��-�PZ����U��M8���_��X:�z�
~���?}�Q
�^�
��	W��?j�G�����|.�
�'M�Ptl���G�*qv����9d]#��
bz g����t\^h��rj���e��8��ȵД�u\��
�6��M����Ic��,�C�����>�u,����5�Ry�a�
{�l�c+j�z��.N��<�
s��N�k�z��+R��0
Lv�]u��e;�0u�7�
+���sh�!N���l�
���lu���e��7�FV��=�n��;��n�P�|�6 at W֎}�
+
�qW=&�.�|�*z@#�F�w4��W���;o���c�e���+%�,��yn��9�u�zJp��((��;���u�O�ȉA�w�
�

]�
��z�A�F�^�x���V�)��z��<^��+6]�^�,ĥ����<�*�%���������C�|h�S����%�7�q ̡d.�w����=�n*zɦ:��E�).b�&�
�W4�2���(7^+N�,%��N�w7�S�<{/
��J��>
ߞ�u��+
*w�w��z�{���W��b��nt����z6
�}D�

2m������+T3�r�0cXKm�"m�`�
+
���WZTީ�V�9��Js �Ы�ͩ��,�
dU���
+�t�Vi�m��~�Yp������z
�a��+Ho1��QD�N}׫�A�{}у
N�
�m,�-R3�#�A�Z�p�h@� Ýs�����"�
h<`H��ɟc/p�
�R���Iu�Y><h��L�$���#D�bڍ:�:0
����*�U?O3��
PJ�i�ʞN��n�v.9g�ƚ��X4*m��G���9�97�֨ϭ��hu�5�F��I����sD������
�i�  ���t�������5
�D��߸zQP�\QF�cC@��N�ո>s(x~"7�~kH�ᘶc<�
���Px��j{i�nL+#�G�p�9S�������/���j�����Nqbl�1��Qd�苕$
�YB��4pP!�	w��x��`���j
ϭQ;Ay�a��A�C�MX�h��Fa
&���	W��"�]@�†F�"Lk}��^�
+���/�&����]�а�ȗlE}�)�y���7��c�_��W<[�tM8
+�t�����A�iI
O��vӼ��pQ7�-�a��
���o�������O
8S�
�6f1q�w�}��a8�L��
M�?���9O���2�W���cK'���~��S�f�>����c�΄ö�	/G�q���	�_6c��{��
���Y���L
Yu6I� 
�
+��3>2��K���v1���'��YA9#KtS�1M ا!lh�ݗ����-.�w8��J渎 Ċ�P%D53��x=t�N��p��)��&?��=ѫ�Z䝼C�`>��\)�67a/��(��[�n�^���¼���g2&���z�[C8��]�L �
$W��f��S8���~
PE��M��;��_!<��S
��
K5�Ƭ# cM�;�*�����9w��7���;�pH���O6!�k[@���q4��ž)(C�����M�<n��
��}j�]���d�NJ
�YZl`�d�
X/z��ު�x�c^}[L��Qf<�6׻�{�~|�%�
K]!�ߑ �
��^
o`@�3��?����+�[ 	$���k���eWB�#$r�v�nB*�m���-��K���ފN:�N�Ͱ���Q�>���x��%v
>
������ t%��k��f)�`�E���=�SxѬ����;�^�:���/��6EP
#?O{'|�+W13��w9N�>��B�B��D��fTݯ��Y����R�`/A|��p��Ȍ������i�ܺ���ʙ��%׫%+�
+���|)e���o��w�ʡ��pO��Ӫ?��qc��W���vX�X�C �מ�d�`
!�&���L�]�B
���*�M�%�M,��5�
����vϕ�`/�0�%p%ļQ�p]f�
�x~l��2C��	R,E�]b�
+1`��c9�F᤯Aqd�>���#�������6(�ݬ�w���S��&���
kB˵
a#��8�#7DSɺ\���܃{��
�4�[
Ը������䧟_�
+'X�u��z*�9 �-pW�	�x�K̊;E�3���_��2	Ȣ>?���_�����]V�Y��o@�T�u)�n�
��tV?�j����	
�T�<0�}
��6���
Pq$�9��p��A>kt	n������c�x��Ǫ�/S���Aad��,[
s>{���%�jmG�iˆ�=�/J#��;2�#t�v�*���	K
An�
ԉv	��b�x���0g
+���ˎ�E0��Z�;�+d�H�#^S=S��k����V
+=�
��yo=(��_�A���
C�V#&��l�6"g֏e����
r��H�b͈Z��=�%l`��b���+��K=����tӋ�	��v�
���_
�@[��geH[����zh�?�-��31�~��

�6�
0�qr�lj�>ǟ3��M���
�V֧���%PB�Z�F���o�](dl���!�
��w���l�S_,������>��d�̀&C��SA���&B��AN8?L�i�Q�
�&[�ԃ�10���of� ��3N�"��Y��:*��R���������<!�, �<)+�J�8�����(�
+�x�xs���z�F4��Q��x����<j�x{w`C�[�:�O
䍍-���-�I�?�k��� �i�z8���	.�
p��<� ѳg��'�pt��O
��A��2�3�AGh#
%6�`�|
B'�2aV�\���x��ō��{a
 &[�@�#��l��'^o���}�~�׺�l���w1���+��{Q8�3]�+|l���#�Ё�a����F
���&1O<�D!܄���OHyE�����������xF��<�cCۍl�:�`�i��T3x�F���c���g�J�I�V7�����:�4����Q�R������2H��=y�8�� {5�ۜ8��o@ި���Ř�Hԥ��y�����z34��#lʱ�w�c�B�^�p=����DmO��
���X:�g�����X��2/�@�
�.�3�8��$�M�9捉Sn㔿k
��T�h^��G6Vw�d*}~@���V#�&�|L)���"�,��7� �0K(b�� �k
ET�+BQ�ī��
+�Y�l0���nӘ�d	Y>Gk mmh:�S�e
�
+�"JB�El�	�?��Aͨ+�,�4#.
�k�!�� S�d�(٪|
h�S���T�\��q�$E�
��|	[�j��b
��W	;ڮ/p�>l�
��q���YK�n_���%΂���;����2Ki]A?K��
Δ
*�3r�B��x�����9:�T4��%������	Ᏽ8!�5�7a�
�)��{q����B�,��?�@����&ā�1�A!Lj���ӚG�2�%3'n=8�‰�J�DE����guU�cc-������j����ָ������
�
pg�KL�P��
����t]K���B�+>�]���l�h�z�-2���m

k
ك��N[��^؎v�"�\�-�e�2vVZ��ž�	�k��-M��V�|#�,
ǭ�W"y1�"�v�C
bD�Ư��w��;�5�
��+���?j�q����zWi�*������H��Uޢ�mZ��
��
��*
����t$�(�6�]㉉��
�r�Ņ�󪬯%Q�|
�i��n�����7�2ܴ
_��`f����S荭����(p�f`
<�YY�S�S�7o��
�cc��*����<�E��
���Fs���y9�\|�;��.dTܔ�LY��\�үi�(�
¡	�
��1)
MU����g	.06X�X�^�Ȓ0��K]�Ԅ8�����!L
:��_BZ�V+'p���=5Ri^H"t�1��${�I����Q8��%���atZ/��
�̓��N|rh
+:f��9p}��������Ӕ�]J�o�+��(R�
��{���
/���CA����w��\H�
HOMD�!�_��Z�{�L��$ozr�U?�0�Я]8}���B��.�4ڭ
8�
��q�j�c� �ia`�p�cY B����"iV�����{;�
K1���݅d?i�j��)��U�x� �z�ٔ
 ��LKx�b� �Y䋷oFQ !F����<��>�!|
\��F}gW���v��`�
�
+����q��ֱZm�avT�đ���7���;�Ѐ
3�`%�s��YM�M�G�x��)�
��1�s�Wp
5$��Ҙ�� c�
+�6A����
+�-�N�BgvV���@D�x1ą枌�=M������դfm�H5\oo�C�^o"�

9�!lPZ�lwn-o�9�e��.�[�V��W��[`�0�O`�r ��.%���ct�#���Q�k�!�0�뭕N&�p�� >��|n��YD�jT|	a9��r����J$L����|��R�O�j�9ŵ�DvG`"��5���
r��`�
����4����
E����6����A at W���BQѨ�0y0Ի�R�\�&nA'�����+m�� 3�@�"H�3����
V��ض�����,!an�ﱓ��9f&�
�1��v�)W��V#�ǩ
+e_�P�e��XjDN1��a!�� ;�o�H;�
�C[:p
�
+��)jF�ڳ��
>?3G�a�oזfDp�b���Xv2Y�����-c�"]�"6���;\�3k� �'��d�J<B��*褽#Da��9:pڧ���A��΄��m5]
l�N�@�8��5�,3����
`~c�;�V�bc���&]3
3�׽BV���Pz��Ē�c
Z<G��u:A[������ǯ����աI��yۄ�:L�
�.6C� ���3�ؼ���zQ2���2���D?#��	�R�$�/�|�[��\
��#A��)��Zm�)���ս
�!Sy�-��<�X�v)"�҂
<"��J�o&_�fR�
�R����=��9L�������
+�KI�bU�$�J��J{v�O{�7�r'��ǷkwU6p�(���si,k\�Ʌ�S�'͛&R�
Si;�����EYU�
Vc*�WI!��|���Kg&gBWW&G�C���K�Y<B�����l�`)���r�
%~��[�Z�:�G�yb<�󻇐���aa1��U��C?�
=_�Z��+�,��Z�p�,��������`����
Թ9
+����?��C+�v_2���Ky0=8+J��}_1�}���}�xcǏ�(�6S�8�r>����vL	�I�Q:�"��م�q��x���Dp`�8�\��ƒ
��E
�(��f�=��I7��?���-���2a��$0f9�_�� �\l'�J

8�?Y�8Mp$�]��A���ê�#�X�+95 ��7�_ �LEY=rX�+"~��IB�S�+�$ �)�+��Hrp��jS�K����q��H
U at 7�MLz��|l2w�(t�U����u�X'�
+I��
�s�
O�>#�K/�Ie�$(�6L
+O��-��z��Y$�X�I6;�@�j�� �8�}qOѺzܾ}�ڸFf6��P��z�L�0R)�H-�W�#;^��5����:Aa��f�syĽ��Hq��@
�c�
���
�n`~bI�ⳑ�����䳺yK�,�ϒ-�ðv�̓�?\����;��.�Ԧ&1}�"����bO.����S���k�:��s^)��t��a9��uN�
+G���Aƭ��j$+�$����]Pk�VS:�1���?7�L<�9h�+�ɱ�9��v��D�P
��2U<Chϖ*���\}
�lwwkx�*��vѨ2o� �\��k�
�}M#.&�})�kI�k�`Sڵ#V�e��~�'5�籑������-k��|��`��.f��ZЫ=R�~��A��ah���
���\9	��Qo��X���F��ǒ��/E�hXc"0
׏hd'�[��3��~��b/�:k_
�G?{
�n�
��7�0�)*AC8x���l
��s��I�\
TևD ;
vJ�ʍ�m�
P���j at W@� C��
+���mj
n\�
��$߀�-����E?���
t
+ ���[|�8��X�'fQ��p��EEf�_<E�L�K�����m�
6��?�Ű2�
s�2a��7u�ѯ���009�}�����fRL�j��ʠ� _�0l(�<^�����w2a��PXo��Kl�|���|p�����'�?�A:��M��IL�y�;�> �/�o�	4q|���.�2���"&��_[���F$�|��}
�ʰ��,K1ю��+�7�3֞�)J��W��
E�a[�'[�Ǡ�M~��j[��9$����>�*�e�Ĥ��L�t�I��H�V�B椘��~�@�{QC���2�ֿG֡�/ƗA3*4����-e�
���1�>?�6�ǀ ��&���l�TI*Ҹ

�%��8LQ����B����'��Q�A!��K��W�G
+��3O�����F�
�J���bC��ȕ7@������
w٤Z>��1���s������[��|�?n�Pef��0�`D2
$�
+F#�c1�����eE*�
Mq�����q�
t�]�
+ߙ
+/��GFd��d�.<N#ez8VI
���O(s��f$���܂�"!�,0��Rd�`
y
v�'ZGiGَ��^��A��ZuXe��B��Pǚ��:�y�g'R����H�c�\�/ y�
+1]2cV�G@�5/{� cj��l4=�&P���0X�W��|�b
��X����z�)|�ʓ�.Dt��>
���ސ)�gJ
}��`���z�6� Q̽���p�a|Ӌo
������b���=K��IJ�I|f�H�N����$���>!�̈́��&�8;fh�

P'M��B@�{��{�ABn*�l�q��P��B�i`-9��>1���*/,�=dA��A���~_����Ǝ
�5GN��;.�;�˄�ŗa������������SJ�g��;0Լ� �v3��´a�G�ˉ4K����T
+�O"� }�Rʓb���k ����O�Teqy�PQ ���Q9�E����s�J�Ʊ�RH��P`�Ep+��>��Q.R�>1:��������H+kRGt,w
�7��3���#�t�ʙ(XÚ_$ic�}O��(�Sm[�>�E;cb��p3!�V�L<Ѭ��$Ƥ������ �vL0=��6�]!8��
Ĝ_"_R]'�d�#:�^"u�ET�k�c� �3�P���w��(f��S�	���Y5sr$��Y$ߤ��
Bb|<<���
{!�m���p �WeƷ��
T�~�~݋pU�K�dPv3v��,3��CHB�io��N]��fL�NW��L at a����Nm�*X�
H�� `����3�0�"�t�e�yql��RH>OZ$o�ަa�Y��$6���
�q�SK�u���9�
+ =
��""��!~
w�p!��� 
2���	T�7���v��Ͱ�w'1<7K���vTiaf�Y��\�<ԚUǣ�〖7<
��%BDD�-��c��y�G��A8@�
a�c��p?���A ��PM�}�yDzo���J����.�'m��k
 T>(��E��?ʈ'#��6dA��<�Y�{���Q
ݫsk�P�*�
���-6�p�tg���;�!��9�)b��bER�5�u��&x
+*ָ�8�r�?j��r#OP/��ut��p
_�h":�@�S��a:z
o~c^�tW/���ڠ`R-����>�cL
�5�7H�{p��@��r��\��S\
I=�*���ܸ�ʉ�"L:�[��
N�7�U��Eکv���e�
�]i������9%v,P������*nB�t��b��3���|�����M�ht�����0��9�yMX)��e�ޯS-�SܞL���Hl`U��"����&�Uz��F2y~�"ɾ�������q�*�����5��BO0ndk���ۊ���m/�m)�\�3m���z�*Ak�ɭ�	��m����6�)�~x]�.l
Fg��75��Ś���
��d�j]V at RJFl���wM�J��|�A"�dh?�
5���l�`�H�[9R
+aQ�̾m��n:{�� C(Ԟ��|w��u�M�!$�.������3��)���V��
q��o�
)Νaz�=�	ze	0n4���V�����nQ���kd�
�NKHz��*��w����$^�
���Y��i�*gI��e��dO7��gUt8ՀZ�����M:&�* ���0���
�q�H�W��)ӕ7�<�8�2F�9�՛�Jr�i���%�&-�Ą���:�T���~݃n���r-ѝ�-�z�
a�\ADw���I���ﬢ
9P�!d*s�ȋ�`��WYLM
�[���9�ζ$�-;(�YY*ǻbo�U�<��E�-��	
խ %
Ro���Cb��,~��u�eU={����V�����4��.�%L�|ׂ͖
����_Ǵ�$կn�RL)�����qR�rR t� 敕"
Hqϼ�p��

���� ����[��
����v��	ا
��c��%/J
+/{���ƺ
AfP40��
�uޱlD����;�:��FO����
�P���O8���y�ފ	<#
Ƅ�l���N�4�Q
��,G�My�\�@],\u�26�r��ꋀΩSk�
RW�Y!�Cr8
+c�N�y�d����^
��1��%tJ�E%�d��N�(^A
+����_�Y��a����Xi��>��0��6e
����Q�L�Z��#7��?�s�LJUq�&U�����ҡ�<I�r���5M�����&�E#��V��n�R-W1�u�Pif�-5)
-D4��0'R�פ,�,�e��˗O���C#pгe�A
�,�d��py9e��A�h
��x�i����u�
˼x�n�rx��,C�
��
��Wk1|?թ.%�!�݌
8{���2�J����
� �w
�B��T~�;�,e���(Ƭ���3�J�8��}Z���]�F����b]�
BU�Q@�
��؅q+�
+Al��l�W�!I��*�S����L�K�����7
+ɉ|��3�i e8-Q�N�7�y6��J��*��7,���*�
1ě�]�bD�b��gK��)����$e�X�d�n!��C�pl1�U��U��&̼�����?�$Q�����s�Ҫ�,��_R��PN@�j_t�ِ����v�
�QF+�(T��@�Ҥ3 d�*:�K}p�Մ��6
������h�����
Ma�C���V�d��%U�HKS�� m�!D��h@	�L��Qe�GO2�Xm�W��!�-U��
++���"k���k�&B��0i��k!؇pg�Dc��;T��.�r�����ˋ�ap�_������vټ��m&o��舽L���+���A�Y���S��(fZK.$+���X��-,�~Q�)�W��㇐L
���
�H{(���ݖ�O��T��`cL-�1����
w���DU�.�J!־��
<&e�Z�
�ӎ4ag�%�n�$v�r�ϔ$�r!ew�W�:���������'���B��6���-~�̋ހ����r�9ݿ��g~U�%�jsd*�ƙ	q�p�}�+'ͪz�*kPn�w��b`��V<{�%w�S�
R����	�^��ՂӜ�,dQ�����ΐ��
�a�.Euh����]IW�^�%������ϥ
�Y��{Du�Y�Y�
��[DD��.f��~o�
�Z0OO�xҗwac���^
�ɸ=�
<"[7�>�.������Y�1z��x�Þ1�ql1�u��-]
���}_ȯ'�����Y
�sv�vqց��tE��7��n#S�,+����v�Tzt:�nr�2�Э���0�di)��u�$��~�
�%B�0�(G����K�,GR%2�ܮq^���36o��"P?+�T
+lJc
Q�QW
��I��R/�u�x�l�E�X>�f"�;�֑����W
��
-�P���Y��
R�
��uϝp8͝@���X1��d�H���/Y�K�&ո&�jƿ�X\��ż4�3n��uBL�@�,+gF���b�e���G!/�s��K����e*I"
�s*��k�WŬqH��fN�,�t��	��	b�H~�
��������5m��;mF~;��
+��Tx�2�d
nS�.q�bd��e�Q_�.����]|"c%�N�4��0�j!( �K��=����ĺ�!ǺX|U�Ϫ
�ȭ�O��:]3���w����F��mʡ^u��,v��W
ӭ��{�d��d��:�F���R��,D�Z_C9΀Y���,\�?�Q��ՑLV���E\^�
M��-�
���*��p��[h��Ԩ����j�Ό�U��^��lc��.�ʶ/P�͆��m*V:V!�s�%����� ���2Q�f�m)��O�B���Ly�ߤ�������d_�yN�.|��~�I�|���V?��u�G2�w7��
+i�c������Y��`��]�U�JN��`Y�'U��������`��5

s)��Ðe^U���cn��|*��7@���ކKgoYr�o���b�a_��7��|�8L
���W

m���“g߱�������X��t4��J�(�5
G:��\HG#�
�{��ۣ�l�,��y�Kh�4،"�c���	���2�i����f�{���5�&bV
+b��w�\?�w
��ݢ[�YU��J9"�@�[
�cZ��3Z˵�*
+�X]
endstream
endobj
12 0 obj
<</Length 65536>>stream
+�pp�$�2�Y��=.�Ag	 ��c����8�}��)V�cp�1�ߟ]��j�pd��� �-���ضխN��
���lNWV��LG�{z� ��=kUeG��5���8 
���ݪ�y<���-��ڤ�"�𻇒&��(��X��ڗBf�,R���D�ۢ���/P���s����d	�����CLq˽d�@F�:�a[s��P����ڪ�h�<u�ᚌ��%L�Ž65�Nda?8�V;��������P�fݗ��^P��;�Q����UA�D*�Ө��,���N;6Y�(1Q�6���-]���oԐOu����hW�`�r�c}3��r��b�*)�]���9@���vp"H�0|�
+?U�zX�
��̤
���b
+�>�h�ѵ�*�`��<��'
l	_ގ��h�3̙өR�	�͇��
5e����A##��M���Iw�1 V�h2}lX5�v
+
��,��m�V5P5�`[��K�O�O�y��*^�W<=�
X��e�dϝ؝{!�U��
'm��t����9�eW"��X���@����J>����d��r0v1-%�"�m�,d6CQ6	�zai[�LV�
�e�ׇ�[[u����mR�D�� ڻ#H�~M
��n
$���jYj
"`[��}�O����mͭδ��GX�J	�<�����g��
N��v9��:;�!�*vBY��“���LP�g���M��]%V�y���D��]��[T��9�8�*�����DL�TV}�\[�[�(B�]�+�
����,6��
��.�ͺ.5�r>u��-��X��4n2-=US^�.ٴ
��x1��f|�CM�s\{�Խ��U?h�&V!t������Uy�*
�WHe ����}F�h(�q� �m]��-gR͕�x��q��E�+�F��,V��n;������}
�?�-h,i2L�|%�ڪd�bD�̚
+�xf�m�Jx�d�����5I�v�տ>��H�Hۤ��Dv�Ga����t�	
��X���~0���&Q{�t�-$8
�V�fL��c��s
+�/(f�Ԣ�W�-\t�v�*�
�uB�P�ѭ�Dz�������R�X��^��	�3a�!~�uʥ2}Oe��u�
��$L%��&�i=�E����G!H֭�Lb w}/�-5*�=�f
y��#�h<M��s��M]
+�h�}�K�1#@�ԐF���M+��$��������[�Z�"������Ő�54���i7�Ƨ��b�(U��G\����f����x54�
�H<�
�'qX 1�̜��hS["��g=a'Vh�
�,>�x�n
+
 ���C0
��bGg�����!f��
-����}(D���b��1Xږ�:;��2�
��d�Z��H�����c*�Fk���N���W�
Aw�8hx�e?�2?��D>əFO��;��DOU���.z�I;�5�)�w|�c��u�.
��=S��"�"�a�KYf2��ߗx�1@��B،yX��^�3B�s����c��{x� �p>վ����A
���LИx�,��é�w�a�-��D�lࡺ�YBvM�K�D�I(=f�`�u]��l��2C~��
�R]y�},�[��w���z�)`1�B֖7ݦ������>�l�PfR�! �L���H�a��T/;�D�M�Wߠ�
}����:d�
+�1�
�
�;� )�<=S�x�T��E��C)�%bYX�Pj��OD�̬�
+sZ����Ḧ�����1l,Dv1��R�,�h�x�.]tfq�&����Ph���rއ��Z3��g�
+jNH�"�E��T����F����~��S�U
�5��]��с!�T$�X�SOj-]M~|��+E	ޑ�x�1��)Q�TV`�G��[JΩ�r0ܮ��^�st�]����ڰ
N
�(1�LUu
K���jd:�O��`��q�j�2���(�2O�HTm
�I�v�>1��Q�,�n��}ׄ@��E5���/
տ͐P�x˞z���2C��(=�Cl�� ���Bd��j"s`$a4�J�����4�cs�r��X�6O�����[d���O�Ԉ��
*m�o�m6N����ip���}�V��
+;{��;ŐQ�Y�
�Y��y];�ɣ%��ࣨ���
�Z~\�,�o)���]l�i���y��
S�Bq�Sgh<�
�=����������d�S� #►�S�a��
!�P7�>w�=n:KV��1�_,�:��"EcU�\< �F��iF���%����]�R�
�8�

+m�Q�[�{b
-/D�PS���>Vۍ>a��T�Y�:� 2RF(�!�����<d,e��M	Z��fZǜ�r4�0�d4b�,QbX( �~U�>�൷-8>9

~�XE��3!r�N�W�aiD)�ѱ4��z�Y�cG��Ԇ�I������SE3>UYӢ���#��!${���Pb0-�D?nA{��V�*�>�ǰw����AƎ�����k]n��;��V=�DQ>�s-�Ɵ<t#��ߑ
I
wi^��T^W��3��&=���r��U7��G�\���
@b� �w�%6�S��
iKJ�C��Na6�4đ����|Ej|᪰N�rz�c��ofU�%гv�rD-�8�kS
�
�Ï_(&�/)��t����
�d+�ʟ��!ܝ��6��R�u�W��ד�ҕ�aɋ�j-ik%
+ɷ���*ad)C�̚��,
a�Yf�&�a����Z�c:{��ٱ61��G�W��0#@���EL�?�0B���A�+�� �	�hƳyĪ�b FBv'w͗��zY,dϤ>{��uV6Rʖ��j���Su�'9Yul�]mX��1���Lm�n���;�� �
�EmZ�(G��@j�P�5��\�-E�k�y5+}k���>w��r&ןh %.Q1�Q��KJ�zx.�E�h=��뮔���]/��${H�L�;�(Ջju��p�u��
���.>�����n=BT�
Y}R�0�_�7�'vp/�j\���
3p3�oht]�O3wl��CLlf�~?�f�6�nU��0���k\
#�j:,��.�
�v�<GD��o
+n�ұ-Q�aY
?�|���'��<_4g^��7$�
V�'���t�K���F]' ���i�d�LY���$��K+l��
+�����Zo4g��7WV`��D��o	X4d��;0�b��g	)�Oi�
�{�g��@��]�$�lOž�G� .�c%�������q�
n��Pp���� E6����L�(�)�j������
2_�`Si[��6����rq�w���!�����W	ܮ�z�]���q��So�2n��>�m��]

!����hu������ˇAL��ݖ�d�D3���������)nr�w
�@�:V��!,\�~��]��N�im�
�m�F	��f�l*�׆�G
��q���aYQ?��(#�-��[��
�U��8��V�%Dj<��Ơ_�����B~�ԭ}q M?�Q'�M<�i~zPL�s�$Y�˘[��6f��4y�E���
|�Nf&�y��a*|n�\r�s�^�D
k��m9���(��hU�<�|�� �V�%��Y
� *8}
+���pU(��8#|{$�z��2�e�d��^+�⍛�$[~i����9-����DQ�@�'3w\+4�
Q�
�6�u��5\��M

�?���@��ˠ�Fn����yғ�V>���N!�����"N�͌�Pu�,� 1�R�=�MC�6�8<��a1�>��8@
��ȸ1���o����XҠ���~h{�H�����`;����v���Ȓ�̐���:'�uV���6�0x|��I��$���!���
l���
;��J�"�]��ZA!�O�SЎ&ݼf O
r߶��$F�E�u,"�c������W#�
�S��[Ѹ�s�W��I�-�̬ⱶS��$����Xiڳ�����'c��w���a�( ���{�r����LP�fB����~�c�o�d�d��*�i�©n���"�el6��;�p����XK�.�FjW�]kW��2�'0v�"	2�']
M�� qt�R��`jP�B�1q��N�%e�
+�<���DR�@�������X�BPI�֎������q�T�&�bc
?�(o���W4��!QNc�dV�pR
�
�'҅im��Dhq�5�^�]�D��l�Ҫmr� ��
�c�#]ޠ�p��S̥_�����p'������	cطF��������*�ߊl�=�-
���- �;Nj��Y���P���P=D{[Y6b7�6OD�
](��Ui��+�tJ
]�TzP
Ƴ��M�!zW��
�������^���d���6Eo�=��
+�<�O�t0	
>E�9.�v�JQ%ӣUqDٳ(��������Ȱ�Bv��b�z.�PYRk�H�V���˼�nQ����F�6p���yK���#)��.�ݻ������!��`o�Rm�q��-~�k�m�>�Sߺ��g����	�d��	�}J��X�����.*I�4�� s}�˰q��O4 at b�ܳ�S���T��V8����^��������0��b�D Jkت���N�����*�j䔒�� ��,f��*�1U��6��^���

+�؁��Bx�
�3B0>��u߼v 5�����d��
�yW�i⍓Y
',��dNr����2&�9%�
=�
+�V�J|
~߲�V���:S(X�o3�](���*�w�by�O��
����\Xu�V��
��s������WE�K(�V�x�/�v��_2�i|����;�d�j7S[ԺXe�-�j�)f�&�a#�H�z���P$�
!S�س.D����Ԇ�ߨ:6��C�柖��
�𧷽�91Q���K��R�x@�J�!9�#?��-���R��\#��Y�p���k3�`m�k�v2��e�ʼYW�<O g�-�e�'�N	?�����<0���
����H;�
���
+o��ƌ����*�+'
�~Hd�oUH	$�8��8d��=�
��M]�����:QR-���h�\\�J�
+7a�J����Y����+�q9��
�4).#1(?+�V���٤<�U*
nsx�8!��.1�9��S1�co�q���c�g��I~I�zN=�q���	a�BbAT��v5�	�
�
+F0P��[�4�;�
[�䦛~�\� bS��L�Ӣ(t
>����-t-���8�#��P^ta5W��^7®oA�R���j�k�F���.�'!=�/
s�A�K*�-������F�B�[1x\(Dž�ڠ #�\SB��C��O�b+�rU�p/�;ijpa6�6GL��K\E뮝��m�#��J��~��0k�i喱�)�S7�z�.E������S��
�jۄ��̮�Xv�
+�ܴh
"�P�qW�< C� [�5:iَ�X\�S��=˲�����8���
���$������i�����PH��ew܆�0��$R%�-69�Y^
�:10��-�7� i<�;k�щ�L��tFR�9���x��g}qq�����_�7'�C�a�2���;��M����¬�ֈ�_�9U+���

�Ѭ���ý�Q�`	`l� �%�d�d�m�h��)��򮛛Q� �©��a�N1�k��
+a��o(N���|�~�S�����RbZ?�l�
+�	%]x
+�&������pH�F����M�'��z���|D?x"��{�ț�t��ͺ����gV�&��M���_�ڼ^�
�m\p���'��V���?5#K��
�ȅ'��%#�I��͞��WA��I&��|�|�q�^���:��JK���ܘ��NZ�	Uh���w	*��X��ʲì���v�25��z NYJw
�
RV��5{�ěf.t[V��l 
x�zVvx:�`�<�;���E��RP�4Z�O�;*	�ʻh�F�b��*�6��g�>5�Q�"x�M�C)
	�н�0?;+=�g֮�*٬\��������!�Sf�,��tt�y�m��0|�Bf�Ӕ_��Jsl�O
`����nB�̠_j��>GO��W���TO��(d:�k%pV	��Re���E���6�}��I_
+�Ϯ���r麊��ӎ3��fR\��a.~���F�B�}z���\����o��礧�
��K���v9}]��3�,�8�B�SE��)��Y5��s𲏑��=�X�l{
%��1�/�K��ca�kA�\�(�s#�osV����sZ2f�
�T2y3y�GI�(�����m�Tu�3x��I���ЌLl��	LȢ��XD~pHDV�d���&�	�?����&Z�v�xុ����QǪ�8���^����zˤ�.h�U�2�f�@@(�Vx��OaU%�C�;RB�f��4ͅ|xw2 R�M,ܜ
/s��ЫD�1j��c&rn�jq�L�\JmL��e�O
v���*$b#�C��s1�_��'s"N��0(����c������	6:�����*�4��&��
�3sb����	Qv���?��r�S2a)�+M(
�.�I|i���LbA��������c���&)��<x`#�4'r�LHs����9�
N�8�+Ww���lf|��Pp5�K>x�8o�`0��g,I:u�
-Y����_
�g`�X�.��p�w��W��_��se�ǣ�2y-M�:�+��+Ca?�&��r0k�[ �s�
+%τ(H���XP3z at Bõͧ��� ����:�O��5�s'� ΚA�qj��p��:�!��O�k��ZS%���Tּ<���[W�ef��x��j!k@�XDbM�v��<" R�
+ at O�`W�i�$YbM:X�����(�Pq�.8B�2KVW�:��v�E.�3]Vʉ�����U����������v�bը��W����UI�e�<���C��7��ʳ���e��vd�Ε�����!�G��
+
�� �Fp@��e75s뜋��l�v�&")n���`ݚ��WΉ@� L�<g�
+�r�ύzC���R���|�������e���$Tڜ��
��,��1���e_�����"2L��*��g�Q��ȝ��^
Ѕ����,�¼
J��ˊ��5E���(
GV���1�\-<�@Y�8 ɶj��ß��9��

��s -�;Fw�sw��
�5��Ҷ>����l,���������g��k
��U	�]�:>u뇺˓kG�-���RA�+MB\gE��ύ

��Xzz
5`�U�H���H�
H��M������e�u6����ܢ�Hj}~��xSl�~��c�|7�.
�&
��`���F����˅�`�lge��!�˝�h��=�O�a�ĺh�~�$��Τt�6�ԃ���f��pt�
�B�u�X�&�v����@Y��@Ţ��ہ6���(�^%]���;(vn�8#�^
%�\ط����
��#%a�b]7��X��
+%o�A�>uVv���@kV�=�
bd��$Ey3M�d�݅���'1ft���:����`Q">T����j���+9�\
]��_�j�`bݧ�G
+?E���k��
�U�#%e����1	�m�.nw��ڍ<
���4H{��Pc5D8ņ\k�
��9�1`�@�N�
���@߄01��������ϒP��ԆI­��T�mf�������"����;Ȍ,�z̠
+q�A�h�7�'�XaI�Pu����vq
�?���	��
 L�DM���g�}��u�XN�Z,�B���C��,TiZ!v��s<W�о�y�xCG�9�ڂ@0 f���:�W
���S�@�aMFK��Yq��䭁�*�/�e �I�Bu�'w�4�?�_lY�th�Jv���-�\
<<�˞.`�s#��OͰum��� pK��<��ݕOz�8�:
��E�6t��8�#.7�
��$6�@��
U��f�g3o%]:��֝TP�U3!*���7
B��Jb�~~����8��q��5&\�+h	nO#�9)���y1�� ��29�ƼØ;Z�
+h��Mq__�6�q ��˦���|N9K�k�
1�Qai��骭`�Bf��6N�<aĂ%ީa���jH`Wx��0�w�I`_]-�S�l�����:Ӗ�U5�
¦�8co
+������A�\T����
+3�J/t��������4qI5�k(�Z�-�Sct5p��2�
s�������B���6.,���w�4�YD�k�:
�o~Ԩ*� �,h�k���=�_����r�bA^ \�!Ì�\��� 4������)��Zz�HC��Y}��QTjg��:��mŷ�|lG��Uy�.�1��~���
+��*+~m塢��ħ�%a�ևL������
S����|��we�1�vma�O�ˇ&��ه
� C/�ɐ z�x���� �q�O񯹰���sx��

+�Y��˛J��CH���<�����
ԇ�c^1'G�=�::X`˴��ɇx^*f�31�Id�+t�	
���Y�/���V�h ���d$�6�HI
!R����=�VE��
�W=�y���ev
���Q���
+S�!<lJ ����Q��
X\_���R�4��
�x[�7�z$�ᗿ�e��?�������?�ֿ����w�O����������O�_�����?|��_������-�?�%}������?��Ϗ��o�[����z�������z������������ٳ��?���c�7Z �7�(~� ��P0~��W����^�Ͽ��{v��tXw�������
4����Ǟ�*4;ȴ�N�y5G7y��«I�t� �� ]4�)}��.�oO��
�/"�Qʳ	�T.���p�1��"�+ґ�l�Zq4k�>��0^5���Yu�*��|���e@�Cœ�����hB}Ƴ��ʵ4���,(��C�i����ݡ̅����	�T�މ��!
Hh1
�f��H���99����
.]B��������n�
|���ڧ�ٵ{����
�p֬o��a�ə�b�3qf:G�Z]q��@�@XX���r���Z�E�6v
|e�'�
U+�|�j�
bP����X`��B����YE��( ��#K��cmFD��L7�CHP�C����.��8C]L��>���ԙ?� $)W�>�
փ�\*^Z���Y
d+�������G��w�E�a�^O�%KyX�_m���)�:@��i�W	ɑ��g�F�&�c���
+>{��Mr
��Ɋ����ԕ�D"z�D��9I�
&tL�=�X�a7I�P�����e\$
����v2��
?��Ih|�
�:��稛�u�Ȗր�q~<F<Z�\Yv�`��]�(�ɔ�"_
+s̙�����B5�#��+LJ|��g\�
QJ9�o
O��I��2��
+�cx8��

+���*[������=l$�t$���
�љ�[@O��x�5P8
+�
z�Uh�T��0�E�:����:���~�<`as�tV����̕J���k�V�<*�'�Q��JI!� � �DX��I�u
&kz_J�3Rյ
\�bk�Q
�4 at Z1�~�- 
jXz}�B��<p���	>�(����.[���L:�Ig����� q�8��f>4���l��)���ǯ�~�D������g�nx��@�(�I<e�f���]fb�Q�/nHgM�%|��-�1�T�Ɍ�7VIm1�U
�S��_b��L��Uoh
��Y;k�H�K��WLE�ި,�;��P!��;.�@i��l�4����(;Y%b��Sc̋��W���s�:@4p�p;
T~�4��)0c	?b+D�g�ʝd4�
+��*�
��4���2�Vl'je&��c��1{
+M��8B�Y=e�\�GA
J9���Hl��UV��p�*f\{��c�fE��Ј�hVeh�
+S��ݨ�=��G�KX#&<��r�FV��C�-NsDU�h����.h��ϴ�!nB�ub Ɍoɪ</
ʼn:-��d�YnmÖ�a�M�lZ
��lW���
�M��@��~j~�Z��"��q�AJ�����zj�
��e.�tA1�%���d� -���CH��|�3$�l�y�BʡUw��7�6Š�
�7��؊�mh]%��}
  p�����b̤n��q�8�Qd����!��m���b��a�O&�z=d�k��������.�3+�NnQr��l� �^E"����d9źc��
g!���k%�^��ChQ��;��Ƿ5�F�W`��������O^�䘰)��Y��T��~���+<�k��o��S����;!$q:Q��M�-����2"`A�|_ї8�Q�@RA�Z
��MU�2�]�)͚�j��
+��O��x
u�b��z$<�5�}r��v���
�����=<���!�<K!B".�fڑv�v�f6Wo�^ y�
+�$
'3%����4N={���@!)G��#KN�<��ŀF���||�a �̃��8��	H�3�d9
Vk�j�.
�B9�QAzh6�j���{3���m�)
�
���+.M��� f! Ä_��q*��.`[M
׆����Y~w���~zS��}gyQ��Z�u9
�
_KA��-ސ
մ�R �QC�!�٭��%���a���)уa����g���
�C����!���F�.
71����B�����:�[
��#��~�;]@ \z�~ �W̘�})���F�0]>I
�X</�� ���$:vЉ皹U`p�3���:7�������r2
��="ۘRx��
L��d��1�W����j���kC��m�	��
F�\,P
+7�W��t�)���gG����L-L�H�>᳢"/z={�
O�7
E�ސ�]���򽥡;���F�	���|]oi�{�79,W%5c�#�ˡ<��m�:�5��׍�
(j��&� ���߻tX*�9t�P�I^�/ג��Ѝs\�o/��&\���#*
�
./����HR�4�0��sR�b�6MS��q��<w����ѓ�Y�C�����U����	@ڂ�$��iA
0J�F�'9D�����j�ua��)��_H���&��1�|��>��a{��Vݍ|!���ڟ����E`�r;
���

+a��H����i�P����p�ie����h/9�h�(V�=ȱƂ��y�Q��L�S��3�̈́0�O���R��1I�^͍U���T�<�!���m��
�o��x?�����u�.Ɣ=ID-����A�R�w6{UI���.)�Q32��g�
+�����d��u�/r .98ZQ��ʏ��H:��'~O�n����+0:@������Uᣐ0��j▓Ř!7c����Ԯ�q�T�g7$�$:�
:VyAV�UXM���że��W5��w4g3��`<�ߚ��ٽ3/�V�,��g�7�rS�lq�~7:\�-��?�!I���1������(2���L�U��G���J�z-p-X��5��Ca

�5ZлU��;^�
B���o}_����/o���_7�F�΢��čSL��Z�2�„o�����G����%R�A*��q�O;�5Ͷ�	�3]W�����$y�8�x
�+�a��Nj��b�>t"�?c\&
��Cx��]x��t
�[��0>�N��!s�w�c�� &��M�y1x�)Nۙ<��,��g���� �qɄ�����F��P��53Հ����F'��
a�[}�!#5���Z�K�,FL�>�v�����ƘwΝi�,]^.��s[<t
v�N*\�c��sK�e��"�Y>���U�!Ix���t1=3�q��@��c�O�pB�B�`�����ȂC~*�
�'��2�ib0d��)�H3�1c��]z��QtTD}[�~?�\��n)�
� [...]
��e��XX��)�b�
��uXeų
�
a�
87'����diE�<�/xԤgk�
����������?���?��?��?��o��C�'�-{;����ۿ�_��O�����O��/����~����k���������9�
��d=�aaRy��f�!į����ɕ陊��J��k���G��Zs桠��Q�x ru1�ۖ'�k]e'<��5B��pSFuۄ���y�#���}�爧#}��tP���5
+�v�8���`B��L���(6�
J�ρ ��@ �U�آ�e� :�m�.�@ƪ�a6��1N�"Z�UQU�O���w����˓j*�=��	`��d��k<Y'a
��K��� '
+?����i�c	��C�$�}s��

�e(&s�G�������<Xv'Р������f�稠:L��Tl��
O�#8N���t&n`�*�kdy���5n1ӝ�'��[����,������fgO:�pC
L�UΞ:��,t

��-�V�W(����k[�~Gv���j�=C��
‚we����Z��c7T����&f_e�`^�tw��6�	K��Ѓ�\	[�a�5<�"2Y�y
�^G�
2֍���-)�/���Se�ۘ��Ĝ~�X4�F���c�!�Fl:���j���ʭ_;W�XM�q�E�l��{%:����稺96�5&$��؈��!F��K;u,Z�V%����Su
�V�ACx�g�x�j��4���O(���v-�8�Y7����x��c�
�J�#U?	�e��Aޑ�3!Rr��o�g�(
+��:|	�'��|^>��z�<Y$�
H�\
�� }�F3�v�[D��ԼS7oV:2�
+"�0>�z
+�=��~��Zg䰌E�S	��\u&�)j�x0p
,|�9)xk�b')��晙��"?14P�M��~DU��ȪQ���e�APǺ�/'�w����8h�l���{`����8n���{dK��K����J
�s���˅L�0B����`�)��
O��l��
To�0�IX
��ώN�z7��
+W�a�~
�$N ��ċO�]���Se�=3�V:�����G��	B�!R�����8݄ �z�
���g�vy�[~.{P�H��1WO�p�����X�U"gݏf�px��������P�t���i���z�) ��Q�e�M�A2WQƅav`=�L
��'�l?�I at 8�~���4���11IT*�խ��Є{*X�҄W@����i ��"0_Nx
X|��u����]��2��la����!6#�Q��ʉX�kพ
9~K�ʫ+�q��=�?z�/��x��p�? \��q_���;?�?���6
��heD�+<�0�A�� 
@
2����&h��c��1k�����9(!�x%�n5�7����<�D���N�N�NZ<�#2F��yR�}:H�S��-�o��
+?���~�W�s�_
���X
����#sn���#}�(u�Kp��M|!VWFg���lP�b~W�b=Iˆ&xN�b��G~ܮ���$���7N���3R��!v���f���<l��Џ���4�.�Xe4���W���h[,؅�Y��=@�b�{�p���ι���6O<Ee��/�
=6��c���j {\\+��
����WȮ�
C�
�
�f�����O
�]��mA��,��G�|
a�l�S�DZ)��ٜCS�
Ǭ
��	�k{.t���0_\|�
��Ѫ�� �l�c~�ywƬX}����9��Z5��F>��=n�Ǯ��B_�1ó=�^ͺ']aC<��!��_�=�'�
v�%
l�wy�����'�x6��BF��Y妙�l{��=ê��b�M|�+�_��#L?�-DP�!<��Rg
���B2\e���>]Ȅ0+�
�p.~Hcl
ᧅ�˳�
�������
Ssq��=����9�-���z�
<�'b�ڌ	-(7W��7Z��
ß��nq��j�^�K�e�|�-=��Sc�z]сH^�{������Xh%�u����

�q�G�	wn��Ĩ �����9��Jf�=�Ҏ2�q=������.�f
[�ua$̖��
��k�w[�3 �+��$S��
�qY5#�!3>�Ǘ��?j>���݀:!�k|�fӘ��`5���-��v��؅
�s�c�.��#.l#q"�K" ���
�~4���;�Xij睱 ��m�vaĸ|�<�:��:��hE4�ʓj�ھ�
��u.}�8��&��+���!\��_�wŰG9��:r���g��
+!h�bF�=(]݊��ւW�v��*$��s+p�����G�x��	m�9g�-Ё�sR��2B� �nq7�V,I�(�������.l�hx�p
����i Ǿ�̀!�j �f�r�p*8I�5-�
V��aT�!��.ܽ�[	��[pb��8�
�����Ҁ��!�+$�]���\����N���21�a�zvG�z[�����E�g�v��b��]���ЮlЧ�5���Tf&�ͣɹy���Q�_�R���@�>�@���p��/僋�b5c�k�A�
��X�����ŕW�`����_�k�"
ߵ�e��"HZ�{�eД�eخu�Z��'�
>�_۳�
B�ђpxP�v�睛!��E�0)#N�s��D���7e��r��>꯻p`_��c�
4{�.�`l��΅��Z��7&�R�v!�T��v���yi�j W��eM�"2�N�Na���B���3Gv&����*������A�
l�
i���r�
+�
+a�<^�`�s��e���`B/�/�@�_��m�}Lx
.Ÿ���&C�r
+��e9�8WU���석j�2ύ
7��x���Z��6��`��pq��������l������˯�r8�+��k0�\�

�Qz��/%n+;��N�xf�
+�����z9�O��7̧��7�|�_.�/�����m�b��M�3���s
+����ufiXa��W
�wT�����Y�7`�
PGD�Lh��8�{�B��i�]=�_o�/Z'ȗ�pX��8
.��"ֵ�o�?an��Z��C�P#\��d�/_����!pGh��5�D��
�})~��%ݴ*��x�aą�Ú_aa|�gh&a��P�fѽ��x��3[�MU�o=p�
�=R��\-5�T�T�b�m��M�M/\ԫ郂�h��݈��V�+��ء�v&�<�
����E��ʤ�֤a-/�
��_
G����]%����kNw��%E0,����}vX
.�T���qP\o��
q(8-�Ue�-�/�rl��90�3'�`��,�1�����*��
� ��*Fih��/��pA/�1`���-?���	�vz�I��@%����v�_��۩�2�1	�
]�U_�ҐԱ�D.\����J��ґ���0
+Ա	�s��f���0��Ǩ�_�#���kŁ��
+�Jǂ��f�5;��l��B/�
Bj>)\`!��^�
��h���.��������j��M5�Y�2�Ts��-6Ɇ��z�
HYpq�
�D����Fo�
+�Єv�����g�h��
�����z9(:SN>��pV:��.�[�|4L6�� 
�}k�:����%j�}L�I��؄pÈB���}����k�ZOLGS�=J����-$���n�s��$���]�J��6�h��Yˑ�4��݋���"X/
�����4� �VW#�Wx֣��,Ԅ���:>���x�����}�k����7n͡����c��+����n�;����
�M?�*]%��n7.���{ 
胻��ʹ
=��q�u�1>�d�ih�J �����c��O��u���hx~�$���"<n��QC!rWe���F�ŏ�2��`�[?�B���͠x��o���K4��Z�*Kgx�#��^�w|����~�N"{".�[KB�ƿ
;T2�"~`RO�3.OS
+�-"E:�	k�W����j�Q��3�]yulkD%�bh��tvZF+�5.���l[��,�*E�!��o�>CI����l�F�jW�_�F�}��Ж	wd�>�F¨{���n
+N�pę�ͽ��-���8"�)ڄ���GR�a:��	��A��F�v�,T��N�
�m��rk[���������aadoZ���U1<}
X�{
��I��e-G��
�.!4U��I��>�5
+���	���b�$-�!N)�ʯ�k��q1"��l�ٳ��*�V��0\�֫�0������Јg6�
��X缩��kq�1AV��qH���	G �]�0�S“y�^2qϾZG
;3�Xז�5dD ����{�'��
y4�\z�a���+��
s���
��i����	�m�ߵ]wu&��4Ð�.�:�.���|~}�����
+o�-y������w[�l[�þ`��~1����G)�M
+
��@Qd�l	�y�e���3"Z�>r��y
+�ވ��YQc�9F���ZX\�7cyTe�q�jn�kv����F6�o���h�!�<���Z�Vs�0n���m
,55"���</0#���1򮨠�~��vl���
,ԛyX.�T��{��-�!D}Fڒ�60�!�-)��*�f��x�g�ĬZ�j�&�jDݻw��彗n:�Suu��.۶?i7�
c`�L����\�
+��jȪYq�?m
��K�V��FS�����LrR��+j���R�ܦ���،m{�e���2�S_"��qe7�SN�k�~
���E�:rfd=^H�{a����q����jFCȄ��
 �:��k͸�xZ�2�n:�N����q!n
?�<�7�P�U����HmK=g�zS�>H���������aTP�� H��
+y�Z*��'/�M1����`t�8
ݚ�WS�6��~LB
�k�M-�'A�	6�q�Ho�����͸&
]�
�ADj���UP�}"3BC����1���B�,��8f�OB��M�N�����Bu?��o�H1��W�T�ݠ�G�7�F��D�ȁ�
(u�e�
_q�Bˆ��a�+'����-��1��U��{ųÌ�X�Ȟ^���7�<��� �Q
I�vlɽ�l;\�`�c��&Eu���2�H�V���R���l�\�m��L��<��hd(�~�!�,�
�^LL�C�e�:�2f��ը�Ǯ��5�����R����T����`�NǶt��
+}"
p���a��[l��+|��%I����T
+[B����v����-��߮k:X��]"�Q½�O]��`������^
���	�s%:���*8���rZ�'kx_���l�x��9/�ⱄ�M�]|��B��;ݫ���&��*�U����y1xO$����{��	`��cgUfX8�F�A1M�®���g�M�[z��_�ˡ
?���r���
���
ח���	�8
�s�!���u��-KU/I׳���ϦX_��m���v��̹̲hBF37���Z��%&	�K�s���*���qYÅ�^�Qdo��iÆ��52��0�c�0�#�89p�#�Kv"�d�9�k~$̥�Y�0C�?�lNG>k�̇_����z�����3m���9Z]��F|D5f����{K:K
+�b̶����

a��O(ަmr���|���<�8��
"ʖ�soT�;�{C�M�U�=��+�+���$�aw�@�W�������U"�\���,&P�����!XH�R��@H&41������A���(b�
+u�2K��A�Yٶ��
S����5�b�o �i`}y���8@F~�

O��~���7'�Vs��<%[�R��B��CM���
+b.K���:֖.��TX�n��/;�{��CZH�*��e�Nk�^@��I^f0A�̼�,<V�

��˸��L�f<E�rqy���%�
ܕ�p
+�g�q&
'��c�����9��5����:9	T��n�������^�Q�z,�� z
�t��|�8���{��m�i���R�6_~�!�˘yt��WA��!�+5�n7���v\l�+!zb?G
h���6����m��{�2�V�N9y�m�]���
Ɋ7vi�[q��B�Q���Ě��
588f���eʬfD!h���W�p�TM �H_,�`a}��GG:I��Zv�t6������
�al�|=��|g���lw5�������2���4S��
+��������1cy�&��媕/3�Uz�6S�P��ϑ��?���P@sP`���r��� DZ X���n ��kȩ��)Ά�h��?
+~I�T���)��f䌮���5������	�/�A���U����8�}�>�a[Fg 
 ��|`X� x���c�9ڽR
uVỉP�g7�� qR��5���v4����#�7��kq�&'���0�j�Ƒ���n�
`��+�̪)I
���`kD(�����#��� a�}�9oPyM���k�)<R(b�$�r������(`
�J!Uf�vyM5x��'��2�_���ˎ�+�=`s���Ǔ;|�@)���OP����� �)���鲱��y�!ǵ<=
+8UK�~���m�=L ܬ��I�>qӶ�j�F��v(1��A��l��;7W`
+��
���g��˲�&�� ��uO�M�_m at O�8��/f�$�ْ�K�dKG �̨G
�UnV��"�eu^1��;��b�n�v~@��iaX@�4LϋaV
+&�PUbL��J���m
�6���ث������Z���\`T�7�*b�F���� ��tM��#�TX"vh+�v�Z�uI\���AL� �Ֆ��sҠ)s�sյ����J�ct�s�b?5��j��8=*�]E�
Giqp�d��r�||I-Z�tg85�v�v��H���l�x�&i��f;@pC�� moZ�X�	1K;�0��YI�uB@M\��a�uRU���B�CEfo+5
4��l��\�2F]e���4Ƞ�o
`��#8yp�$�7"��
��Ɍ��6/u0��
�����"/��KjD�E�����/p��/��8|�1}i^����]z����1|'�Ύվ�@�U5�
��
+�_�QL����x�� _���F��/1���`j	.UYS��8D�l,�?N�ܗy�
�^��3���# ����9pV��ڮ;\ʂ�T3v�(�����Od�lO]�;G^�
v�Sw�����g� �t�*�2ɲ�` }Wi\�H�/���iٌ��Dz<!}�7��
+q3��9�
�_52�&�1��-��-+�	��_;%Z�UJ
p84J�����
�Y
z�\{`%�4m&[�	b�`�l2�|0�����hU�:��J��pt51`7���Y^�4N��;������]5���2`�\�W�o
�y$\��P�Q�ݠ�3Z
�*sbl5�7A��N4�S�T�sbl�I���C�
+���q����呰�8R�$�3|���
+_�' !v�|�l�
����d�;zҶ��,��9e��LM@�H��4�d�
Q��.[�A�tힻ�AACvAK���{;25g/��(U_t����iJ�f�7R}�i6CYN�^ O�������3�(��#��>�z$�Ĉ�&tz�e�VY�.C$�ZI_�8���l�Z���9��4)q:&�r&#{�*[����	��0D$�K��蛛��а� ���y��xҀ$MU҈�D����`T#�kx�\��6�ҹ��V���G/<
��'5������L�,���11�ב1�W�6F��^K n��%W�Fc-��{�
k��Xyȫ�v1��Gc��}�VX
Q�X3���&�7J
�s��@e}AT�ܷʂ��}(UM��6*�{XW�D��Y/[3�I��
(F�T��I����K55I�{ɅKH���/n�qV�
ۿ���/��߳�"ur;�`Yf�n����%�����̫6L�¶{�I%f02�еj���b�T]��]+�Z4��<�A�v


1��i��� ������c�/���7x
'g�S{\`n�L�l;Ns�<̱x�Ut�g���y
+��M;r�8�
lD�b\Lɲ��R`�%�I��V� n�ُ��	��ZV�5c���j!��8��6Z7�tn��?�����*sN���1
3B�����,{`Wn�A��
�~
 �Ƒ����I�<��px��#� �i!7���z��`0�]���$H<a ���'�@��M��u��(�7��v5�WM����
�D�ӹ��`�h!�-F at d��V�����xH2T�7��1k���2rp�^��� ���Gi��dXRf�m0��lL�H��.]���7�b��=���(��xע�����l���?�ؖb�Vpt�H��k�yR�ʰ�5p��b��g�J�
+�N����
���ğ�͗��]u��P���/�]׾!C�L�Z���<Ř���k�������eL�*(���A�F:̑����'}?5nR~!�#��,Ӳ����q�X�P�@�FRQo�
ΰ�9m� I\�M��_N�e�rt(f1ь���"(BHRz��ï�t��f��`Gሀ�E���b|�\I�l�?�jw]�mPLi7�<�q���V�\��D������?^׌}�Ww
+�	y�!��D�4M�ɮ<c�ݧIp0̌��v��v�D��ҦV|�ڕ
�m�^i?�0R�)|A��_b�� G����2�3���x_�7uL�iQ���_8[t��O�a
M�ŝ�צ@u�b�#�HQU�S����<{9U��^�4e����TQ��

ڿ�p-�f�(�mwɺ�E����7�u׽H1�"/[P_F���F�@w����3!��{<�����1-
7(����DV�b-U*�uX�QE
�U�mr��
Um���p���4e�������ԣfh�IY%���J[ ���5m�Tb���<����eH��۴�,�fW�Ӗf\�HAlv��
vh�n˵�@���������&�M6��e��w�됓2[g�8�̖#������\��-�T;9 ي��J$�4-�"���,٢��o�S�~�Z�{���7�,�Ng��~6��������P
+�ˤ���bu�u����]p�#em�	֡��YC~,/9
Nc팑%�S�|Y��b�I���N�Q�
��D�#�p�a5���<�
+�?�`�V߫��a�I�[
+ ����hO�e(Q�A��X�����W��An���\��J�zO@��i�@HLQ��3�m�b���H��P��y^����[����Y>�2���L�m .�T��O
q���#g j-�Vk�kq�
܅j{�#���pk,�	�4q�)j
q��Uo���E�<XA��ȗ�|ʏ�
/E��8PR�V]�W�
+��� ����Ov��{F6��QIP[$���5�
7� 
[Yl
O"�Y�`�
��,�|�ے����{% �%��a�ٮ/0
���E�$�
�ͩ��m�
P�I��a*��6~��(�����	��$<&����ͻ+-�P$�4r����e�ET]�_���ĵ��% "JM�'P�F�CZW�Y#�ie�YYd�V���C�/~�4���Is�b����,� �y;e��⁊tF��X�n�	���M� ��*��S&�l>д�ݠYb���8*����b��Mv����\�W�@�6#�Բ�p����)(��-׊eb�]l8Jמ�;G0?H_֦\��W�C�8�L�F�E]M.5�!8�\�L�\?6���~��r�:Uĕ����|�z��10�T�t�4��� �O2I�Z�����CBaH=
�/_��uɍ�R�}�f�Ia��K��Vܙڳ���sڈ�b�@�p/�
+P���I�O�f`p�b�5�:���
�}�Ⱥ�0V���2�o��[
@��a���g`�������m�T���Sõ,buADш҄�JI̤���؆Ɣh8�b� �k�x,�È�<m!�9����
[4,]ϝ
��<����ح�! S�#
n��N�y����	l~
+���J ��ԯ[�*8!��S�ВڀT�58r	��q0㈙�Vgsm
%�Fؠ
�HɹG���8TDYВ�ㄑc )�G�8
+�#��������p�a/L�

&��'�w�i��n�W�t�O'O�
���n��� U�D
)�ݪH:�<�fuLǤ@�8$��2#��R���T8�fgJrxvF����ZW� �.�T�
�c
WON�P����ti�Hy�{
���`�Žj�y`�
���$';��9�Ϛ~AI��="�u��G�R ,V3�0
+�
+��b�a<�V��f^�
+��@P#��nP�
�[����?_V_�$������gΈ�x���u���Z��u�%�ַ�'@�@�pK�W�~� �<�
A�����ܞ�òpv���
�B��X|Z�T�g�-���W>އe),F�' F�!����|��iB1[��9Sɕ�%o�S�EL=J�����1���)^j�
�h>�F��mZ��U������{���ԁu\�fɬ�/��
:Ғ#Yۛ�J>��.vy���~��6X��4��1�8U[�KA���i���C+#��01)�4#FC�H��2�,y�����\�>sI;O "�͑	��j�H�R ��)F�Bd[D!yuk��4ӷ��}
�����'�>jN8[ud�]�t���@
]Z�GfV+^X��@��'�
N��'�ۙV͢^Y
�@W>�
!�G��� m
�tKAg���`gc���!h,
��5��(
�!�Gs��Zp�	N�S���i�r���!혘��0�6�����	�<!��f/R��Q�c'QK�>F�7k ���m��a9V���>	f��J�PR��9@�V3ʇ1L�U
0$Q
���x����<@O�-��t���)��q��X�S�Ήo8N�9Ow�
�9�����3�D�t9�R4e�8 ���6U�x�I:����
�I���(c���LW�S���<�
�ja����-�o7�
�����")O����� |t�pK��މ���C���������IU|gFBf���=`Ϛ}

+A�P$�C�*}��1��iKK?6N)~�C �씱�._l���!�n�������pei
�(p�����Q���6�,=����"�k%��b��(i��� ����}�v%
C?�xR,��L��*8{նl39m���#Q�0
��U7Q���s5P�0�1
�r}���������<M�s'��Z�6�k�Fa�&�?�Bd�)�7r
��X8��TzE��*p���@��*��խ�kF`�H�`�_����H�RK6��ꢹ�$,�
Vy���Z�58Pur[A�D�M����'�c��b���1чK�\OF��"K��B��N&DT:/��\ޢ�
+�e�e>]|G�����d.��
�����T�Y -���
~<�쇡էl\��9�J�42�S;�;{�������\�l��
˧ݖ��$;4�+pJ��8gAP[6�
+�ɵY=X�l� ��Ʈ�ڒ�R��C�iH�N�\�2�:�
��(�=48����ʿ�K3�
�Ro()�-�n��x�Z��P�!�1Ҋ��7)=g>�dˢ6�KE��ڇbq���*�b���MՆ7��fC/ڏ!7��՛��ZTf)?��q����u]rYX1n
�4^i��m�o�y��
+,w�D-�Ӧ#
��`�L ��t��^��(��)�T�`I��ߟCCS��[�\;K���mǿ���ꊼ �"��.q�w�s���D��s>f�9	��6[�za�T�ɱ��]��hSP5.� I+JMZ�C �,ӆ/���\;JŴ"�ͲP��I�k`lz��0��*�A�$���
0�K;�J̆���1:�@�~b�K��d�at
m��p`��Cmg!�N��w͚�94@I�k>��M���kX�ϒ��4�} i�1�#Q
��
�K��D�	�dO��gi03=��N;�nF����
+
+e$�
Q���U��Oaĭ�
�5`ɚ	��O�_e�
v�I��H;_`.2��S2�rR(6glA��ka�6)��[���o�	��I�6�HH|
9�+�Im��3%���>9�u&#�8{�xF��v� q�r��!�J�r��@�ׇͬ��:���d���'�~d����'�D
+���tr��W���6&f�n�Fz�:B	�by�TP�\�>i��B������
e�W�)���)���6j���)��
�;k���������/�"D�V$��<_/;ٷ:�G��
VgP܉wI/b�]�!I0�F�Ð�/�ǐ(R*/�ː��:/Ѐ+�JoԐ��Z�؀.k�$ܐ�P{/4�0
�/$䐰
R�/4�2
��oD쐴
һc*xH�	�1=��_�>��G�����/�P
 �R�lA(p�!��	���U�!�n�D
BA�P<"V���(B�@��"��g�2WI�7��P��&	ʇ\�F.�$��I(u���*���E�%�o�t^.�0��1���M�&�	en.�8�|N(�s���R?�,P� )
]E��P��*�)(RKY�P��]��"
+
H�RSY�P�*��c�"Z���E�+R�
+�.�`��X 8v'����gy�PJ-]���bn���U".�����b��X�.���䅂z���E��"���]�CQ�P~�"U�����PV1`��5ބ
C	�P.�"-�P�����e(�y��
�5C!΋h�E�3��eCC��X��"\z9
�P#��Pd5�c��[C��P�"
��Fz��tm(s
�^�sC��P��"�[���h
KQ�J0^����YLOE)/���0�H�I I�7,�;V�A
]�Y"������>+g���\��
�	sH$	)'z�;�%��\�1ML���9!�'���Ԡ�F�.䤘��.䨐HR�.����.��K��.�����.�
�.��E����.$��O�$ŀ�x�>F4ɘQR/C���r��	4S5�{{*L��4$�~e�^�!6��^)�!
7 �^H�8$_H�B�u�Bs�P�#�tH���!q�B��C�x�2	�s�Br	�!u�B�)�1w?���$B�Hh %�
.RY�@@�"�
+3���P"��N\�)����M
#҈E7B��P�#��%B"1���H,Rʙ\�O"��PN�"�ʴDz.�@$&���D"5���M�&��	�t��;�HO �s��	T�9���P S
+]ďB��PR�"�$U�-�b��
+
ۂ~C��	n����&V��Ơ�NR�⅗�>o@���	,/-�:�)t����U��V�V �u��
+%�.r]��W(v

���E�B��X�,�@�ȥ��j��M�-�v�d�BɸP\�"Dw�
��.Rx�l^(�w�
��B���
`�
J
^�/҅��a$��'�2��"cq�~��R^?ߠ��E#������|�D��4{��6?�.gJ_�kd^�4oқ�Hg ���2�I�P~4�)�J�����2�WI�H}�]�5t��_/"���l(>{���Iھ�߆B�Q݋ o �{���H �b�_5�C��P�84ŏC�䫠r��
�4G��s(}��~y8<���$a�Xq�*d����4�/� �N�H1�
�Tl+�x��(x� l�-6/
X?c�*���Y��>,V��y�
:�'�zO.��$�G�c"&3�*��Q��Rs�;����l����n�\g:��s
d�d�^��A-5�:
0#����R��Fr��F�C�#1���:�fR+� f
��
��S�Sv
L��@��
q��X���
����d4���ѭU�e�Y��˟�� [...]
X,ch�h ��-�s7Ő��J�G���4۷��E�؍)G�c?
�[�iBzӳ�z�A�|��F%Q
��wO%y�O�TWU�p�:�Z����=�š�Jk#��������:�W�6����`��x��ea5Z� ��<��z�,3�^!�IV�_��Bԗ�S�!|�38,oۊ�p1������b��O��-��7Ռʗ��#� �Go�A�j~�K�OB�ΚI�|"�P��س?�z���Ҳ�8HF[6�2��#h���2fߋ�-�ϩ7 ^�
�I:�&%!J��]��)�W���_>'� �
ߥVcM���s`ɋ������:�Z
i$�Q_
+��eC�ܝɡ#
��QUaf�w����� ��
S	3*�!!MMY�����>4��K|,x��6��'r)��M�T�5>,
���ϙ��X����qS�kUh����B�,Dy�o?A:yK�ЫkNc��र�N�C�uʽqN�;fU\��o�]+O�2/}�%
�nvH��yo�Ƀ�\ɣ���R�d�>,q<)�w�
3ć�q���N&bE�
�K
B~��K���_����mZs�@hȞ2O�[��M�����ֶ�}��h�,�Q6D/BǞ
D����h/�J Ym;�5u?I�;ZR�wM�+��)����
+��=��r���݈ؖ
+��	Sq����,�$r�쵾l�A����#��<_�g̒3_:0$,6)��IȨIeky}<� AI˽�L����p"&�h"���Vn
^ȮB�
��V�����#U?N;sbfh~ ][�Gs
,ޠ��&ǚ�^�e6�^�8�����	���S�= �*�k�f9�:%h�T%��4��T�`��Dr�
u���
�=Q�(��H1���r-�U]���/A�
����m6!�r)�;

�#�IYY��?O�A��@�$�p�Fb�S`�ַ��(-'�f�)�@�Z�o��_�-/�PH:��.���Yn�g��~E��0d��	��}�� -XiN`�cbWW{U������HNq��왂�3Q_~����k���Z(�"�S��S�>����T��6��z��Oi�"5�F0�����d��Ŝz��O8��� $�TN��
b��T�	6��'�aؗr"�v����Zw�N�lF/1����H<
�n�
&3�Pן�h��G�����eMK�f�0S6�sgV��N�
~f��a
�J�
�t*dA���	fx���N=T�j�
����C@�H
���h�z�qKIf� _��q<�
���,��oP����_^���#���J��nzv\0�Dg��Wҩ|�&��$�Q�::

+�M��o��;G`�r"�
 ��O��(��u�y�$%���)�g���ӹR;��(3)��6kQc�*��-�'W�?Z��� �<�ٶ)P
�n�S��Q�����a"�����kI l�&�I��}���q]���Y�q:��d�roF�,"��82��z���0�mi32ݻ�m���U+�P6CfP6A��KY��ˀ@��.A�~iƷ_�.�������a`HYL�Om�Uܸ)
�\���ͪ'l�
�(^C	u�����06�������2��>U��a�o�0��#��j3�>����·Z�*��+��Z��6S5�M�
B���;�
+P8.v�|��#�-��MA3��>ZF^�Z���
SAVS�絤CMvQ
�e65���D��#�W)j�a4���&4�>^�3 at 2��
�i:��cc��E�sa�l�;<�A2�j�z���#Y��a��n�Ŝ��d�����^��
+��
0�Z\Z)�!6�)d[K�:�Dы�e(P},(�6b
eT���)%�"K�~�ԅ���I5��
�S��ˮFڬ��k��h�^TdC��X���c{Ѽ
�qC%�Pu7��h�^tC�����p�O|�2u�C�䋚�Ey9�h��C��X%��(}Q�u���5�6�
�Y�Y��cn@�.5<�����4���
V�#�"�F�I1���$�
���0�� �K�
E�SyO��Y')��Mh�)`��U�E~�D���'u��d�ܖA0#<.a.����oE��2�ֲ�ɭ%ҁ&
:D5�a0�ksݶn���5o�>��\�k�5O#�L)y�bF2�u'�m�b7&B�5�eF�vV�U
��4Ҙ`D=W��5'�L�����jl̗��L�M�FqQϤ�k6Q����r�2�D#��Z��y�C	��KАVc�ϓ%�����;�[8ᓩ�l(5�ˆ�g��:f��x�:�1h�ڈ9�)�"�~M��i�0awI���0exM/���K�2Lp&s�-qJ�^��<%B@%��fފ�_�Ae�}4�HP�75i��u9ʅ��Ȳ^����� {:J��aA�Ȇ���B�3�Y���\��d�4?�def3"�'F�!_��a"4L�^ӫ�Zf���1
��C�����bU��ը��O��!BE�����w���%Rb��z���	�;�*�o��� R�"
;��E��P̠�D�UkGT��������V�'�F̪v�c��j�i�3Ń��H�T��e��
��������q����
+Z�5#���e�g���̷]vR��H4Cs،PA�A�R��8��C�O����	 ��1b�K���z$Z˷s���+hŞFc'��-�Q�;��
���*.�Vk��
�+�ͤ�ΞI��M�ESE����+ q�֘��x�?03��(��Ib *����u���z0# ��c����
H�}�����Teqb%����%��t"5I.K�����Q6�a��P}R�s��	u�f �F��iT���'�Aq�
�eZ�5�7IO��E[8�R��d��$awf5�݈q�·o�:�|�T߼�_1��Ok(6U
�t��U�M^��@^������!{lS
X��p��w_� 2e��ӆ
ʼnѲBrWۑ�
(��Q�-�ʖbRt[Mz�A��d�ڴw�0�Y����� � ��
}�	��T	U%4�n�A��8��Z����0Y�R�HK6	&��JH� ��
v]
�fp:���x�Wv��C^h�����Bt0�jC|iF��[���`Q�W+A"�#�G�*��I*�@s�����M��hGe���㠠�b�������
+���J4�+�nP��ē�̓�Y�H�+)c0씳d��l�z at gTU�JN���`�ʐ��^���̉X!d�$ :��b���X�jBwv�YPh7����6�Fc46�U��7�o׀߳1�W�� ��TŘ���0�h�q��2� ��B��0�)'yW
��ղl���V��L����:Xѭ:�je
G��|l!��/>����n�lu[=bϋ�b1nzW��ۑ�-.�Ӽ�z=�C!�&.�G襄����	��ȣ
+}����s���K
������f�bv �#ܨ�%��>���
+t0�>���p�~���0×I�ɟSc}R�b_��+��@�j\>'���.K���_ǟ�]�|�;��$߸��D+����h]�
�+�����O��ҳWc�
+�{v�w1�U��O��3�
��5Ȅ?[��)��.K�Eza�y�R�;&W�d1
����wH�q�.塁�Gf�����ԇ�nUVy(�s��;�2F�k���X8uz�k+�\J���ZQ��&�
+�1�Ǡ��Mpq��{�G���
8"Q\��bw϶o�&�:$���<)i��P�E�!���,P�����@�xLd�W��[,�؂�:0�IP
�e+�;b������o����<�
2q�W@�
h#�w��@��?:�_�G@�mXGkL�i�ƒ
�=�@�ˑ�����3�AHXmW~
U�N��y�uʃ b�<�%K��Q��W.�/*a�"�f�ʹ������_
=�`���6
n�?o�?p"
��6�L��W>��b@�lMu���B�Z&,C��DPV��:f�#9>�>��F�����y�u�/�T�)���Rb1��#!*	�
��w >r� ���i�f�� �H�9N�覠)���N���vw�>� u�O�f!v��o!�%�	����}��&��Ӝ�
���>C�J�
�\s����Ձ
��1{��(���fĕC7������� �rU#�i�1��C���t����P
����
&o�J���O���vb��̘{�����fJ}�9O��$F����np�㝎�\KI$ {.���Q�֏��ww������=<�3~�I~�_
5:�[����>뷖�A������'|�?>�4�Jv�{�/���6��5(p�ň��
�bХ�	<�٬T䬭�r [...]
+�e���%��ʆ���%22�}��Q��^��ƅlR��)�T!*�\uV��T�k��n�j�S�ŕ�=� ��'8�� \��i�|H�|ѹ��%��0K1w.G]V]שC&I��ߋ�!�4���.*��Z�2$שd�.-�s*f�ՋٺqȟCY������F�o~�'�h��f��qƋ�@���S$��yB��f�$�`;��W��	AFCx�|6����=@C�y'y�m���iP.�$i��p<Զ-(�W:��y���Hs�δ
"?��c�C�x 0��у(����v!z���n��B�K.�>�����Am����k��Ɇڳ�r�����&S6 �hu!WV�c?ܴ��e��@
]_�$� ϲ7��f���M������#�A���t�I͸O�g�o�a�w�Y܋4_A
���!��C�-�e)fw�&!wo��;�.��}��
+#F�O䥘L[�����b��vgv���q�
4�����|�,�"
���1� �A=82���!F-5j4nQ�T�����ԝ��%��[K�O�K��'�%�TT�!��뽿B��U
+���>a�{�
���
��@wE��M稦쏉�j�67b:q��I����.~��p�I}�'�p�c��B�S!I�5i�	3r&
��� �_��A܇��SAw
���M=��	��N
8�b��
+MN���W�Za�Hd�V-V�l>
�A���+�n
�0wk��ja��H3P��uTOc��P�M�f:�J��FY+&3��
?%��sA.Y�V@�'vT3���&<��8
�=�`�[
}����A��—�
+~��g
'�
+�D�����iׇ*��g��3`�6A��n�:<rW�����`
�+��G�'1S0����9
ݺ�{NF�-��;�Ff?���b=Ei
��˻o���\� �
�"�/#����Ҥ�z3n�7̠G$��k�i:5�А6���Q<�0�c��tYXV�f��pG+}��e�	}r����*�23r��+[�EN���ٷ��OD��u�3��~�0�j�
�Nj�
+9����1|q�<I;���Ce���4���b>$~��%-l$A�MؒG*�=�dd	y�D(N�NFչҒu�h�ԋfn,��GުF'�9�O�kp�V�s�PI�q���D�j'
�U
+D�d�m�T�(P��Y�p˻V�}�i��$����F�ֶ#APGc�xjl
+6h��Ū���}"G�믘�OX�O�]��>�
O�� ⾁v�)c�o�†�5Uv�<����ˮ*�RC7�o�	
+ͧ}��k�"@&� ��D�O�K�9/�2 <�lh'v
睬+&�-����N�:���O
޾}�(��'���1ɩd�'�*ID@C(�֙�u���Py�
\Jw�	�-�&FH�H&/��G9�_lK�� pS�UG��1i|���*W
f��
�2uj� @��MF(
+��l�
�
+nu���Z�5��Y`f.�ő��д������xW���9T�
+u�"ͬP_+T⺨v�
+_-�P7,��h���e��@
�����]��b��@�
wQ�
��.�u��]��wUϋ��BM��~_����
+���`�Kx�0��
�ʈ�Pq1�f
u
C��P
�$yQ�
�)#)�H�2TǼ*iƪ��>g ��~���)�Pu4T'�蘆���:�EI����:m��;�k�S���#E,=���1�X^C%�	�Q(��v{Ԫ��
ս���Z�r�[m+M��*znv�#7�2�)���vD�K0�Ʌ�.1S�y3��&ؙ-# �a]��]2��VrM�m���8�������#
��G�����q�ٶ��)����!f���

+m�I/S:[�
�3ָ�b�\�����	
�}ĸ6�H6j�
D� ��Pׯ{��.zK����W�
�{f�*�$ ߻��$
ڍ�,B~�=�����pH�gt/��Ss;���
�x��#��| ]mҏ���|�3V�F
q�O����bs	���B�.3R
�hD
�7����o��D�}L~
�F�áD���}<*��:���4��u1I% {:�U+�v
L�ZQ#�T�Z�<0����&
+�Ͳ�� !º�D
+��
7�f��
�1]�@� �S,n�]d���?Kj莃�g�_ݙ6�D���L	�B��3�ߋC�d�k���I�pQ�b`Q3s"Ѝ[�}���Y��{����pb�Y�=퀟�k�ٚ��
��O��gs�6ۗ�C�T����\�H
����N�D협hϬ
��,L&岬��� �$F[�ù*�>�c�ΐ(�!�Co�8�h4V�'%
�W�AB��#+!�Òӷ���
%检�bG"A ;5���Oo��
�i��][��W�X2��F�`F)Y�ɥ�p����Yڷ�1�
v�l�Ԟ����=z��&"Ʈ���
���olGW���^j�f�	�rl�E1�z(�"��q%j�b��gv�@{IpS^ܿ�آ��Ojb��
(3�uo����=
`�i�E-Fv}R�q��f#2?���F�PWw���x����}B:Q�K�Cݽ���Xb���Il�(Lwގ�Ʀ�ݕee
+�U�`�&�
�4ʰ��
�cdD�$�mj�J�,�-p�>an%��[x&��.+;���*�T�F�AY�±�ķ*5At�w�.4<O
4xz��}�
��WW?������S�x�����_���oA�og"��%'Ã����S|�X�=��0���Y���]4צ��Y͑-�n�GT��#�|�!	!x�t@�H��
C�#�jTG�@�D0�����&�ňj��6��u?��*�ܖ
�u{˸�z�wPN�	�>o��?6� ����^�<����@~r��Y� 5{�h�&��5�V�FѸӐ5S�^�	w���3!�J�k�h���I���Q�Ȯ��MX�=}D�5h��-���1��
�8][����$WK��n��3�3�1��J�*W�g!�+zX�#
跬Ewo�@gPM;O
+��rߞH�3�X�4r�����ʏ3͌.z
Zq�lT�%hT�ߧ�S�.��<�
+�@
-�@��S6��[�I`Z=��$O������'�&�L���5�:w
�F���GGv���cɮv$�[+��^��jH�eW�"�q-�:�:��L���(����h���DZ%A�Ų
+g?����x��y� �߸Ј��
D5�<��\P��O�]-�	��n ig��k��V5]�dzf<����+P��5P���
+�u�%�3�8�\��@m�����L)rםLlO��~&L׏�영���kϐ�!�CT�����'�%�#M f�U��w��Ἰ̠�l�ff0�/��V�؛Ea��׶M�̕˼
+g��l}�_�mi��]6�h��l���n��v��2(]��t��v��>�.�#>ؓ�Q����Mm��jKe:Q;O��7��ea�M4p.&ɛ�F6BY4��L�i�f*�I�U�ECts 5%h7Xd��3dT��T(�H�	Qa�h�
m���+��F�]5C#��۸��
RK\Da��e��C_M�U}�HGl��؆ކq�pB� e�aӋ
sO{���x��K�x��i �
eQ�+��E�z~���
�

@���qXS��S��|6#A�d�����BDQ�=��.��w��)uUE�
N�C5h���J��G[{E�~��
+���m$K��[��h����׻�S�����L�407�`b�&���~J��>��6U�&9&��"�D��fI��~D4�TQ�ŏجI��fVi�Z
��C0X��;�zÓ s��5sV�08��in���Z��3�����Q.RK����Ÿ8�}�P�J?
߉�ur�(�&��F;�wIA��!=%V��`ρ2��ՠ�lF*�M�r/m�%Ў���
����H�_l���v
<e�H�
�U��7����C�cZ���3����z�g1
����	�x!�-�8$�X���]�v�� �L>�'͍7�W�
ͯYq����΄=j�n6��7a����ε�*�
�3jQ��
+~��l	k
,(�Y\�p%F����c��29�� N�&_�=qb/�\?T��
�|���n��y�9�Ltc��(w�	���
��T
P�!��<.&c̬<
��E��?��
�
�+��"Tz
�,�i)D��#[�{�Z
��8*W�Uђ���-�ҁrR�޷����Ɔ	�
+M�6�O�92�i��Ţy���=�?z����0�_@[�c�8,:���Y�mK�).y���+�J
��^]��4����n���}�B���je�s8��*�e
�w���
wiQW
�&]�e�,`�r~
���
�r�q������^���d1<WS�k-A*������b���p��i��c_����g��˞�y=�`���]O�yP�JG�4
��n��m4���W� ���r�*�龑
%��N/� ����d~�X
�:U/��(�ED�
}Ѧ!1mP���i�<ـ���y8�v̒���
+��Q��F�*���]�Btnl
"ǽ��� �M��=s%B@�F$�y�y=�� o �CV2W��iN��'�86�)j�
N��)��JU5"���䢲�׹�7�C&��zX.������	"��PV�]�����&����-+Scdґ���mVݱ
��sÞ7���*�i��j;�w�_G�l
+�T��ܚ��,��	�	N.��3�\�v��� >t\��ԕ�c��P�"�g��)�7�Q��dz�3��@I���,��S��%	��y�69�z��TC;�� ���T�qx��9�����q�n��CH�b�
@;��ޮ�Kk��{�䱬ޫ�
�ܤK��V�T|�sћW�=�?��%@Ej;J���E�PX���=�Hb��>
�3�h5NS
���H첊�&���Шf�Zْ_�{��.��5k�w���ŗ�dRp`�O�I(4(�<(;��*�I�>)��
p��V[�ۢ�p3�Ṗ��&(h6
+�nŻ���7&*j�v=I'o�#
�a�r
�e5��5uo9�B�N�p]Ty�JU4���

��9�!��]���2pB�.��,��y�7S��
�N��e�L��C���l٬-
@�j{����4�&o�\���(�5�:KlY��y�A����.
��H�@JF���J~p��r���$��g�W�#��܆����&�Ma�� ��L�m�dPK3ʗ���n��D5�BMY%v#�'�rP���9��XHIf� 4T�n_Q˛�����h���T���-x���]>P"���4C���Kf���.D‰�Zgx���7��뷞�Q�����[Oz�{�
��u�65�1���ȴͣ��\��r�p�4�
��u���ÿ́#ӛ����fv�u\K���8 ����4�,��>��4$����*�D��|�}�sܵ>
+��ь���j�c�Q9o�����������U���b�

t���V2l�)��X�8�ˢ��LQz��7�s��E=PQ�(���졎�E���*�Ǣ�>}�d�އ
+�-�Hv?T���c���A@�I��u �P�2��=z$��.��.
a?�������&+
����#%���
�h���O��/N�hR�F�t_��'VN�L3Ō�
=�����y����f��}�$O���p��5����#6ԗ(͔�b�[��
,���xF���)0�0�E��"�؉ �ϻvˢ��
 ���עV�N�F�3RG�J��y�=�HG�c��ۣ��;���pA��50�@*��ܟ��u��
�g_����Ltu|�S��I.�����C�g��l�h�Vo�g���k�y�?���w��/�d1'�B�KvxL�
�/���@���F
@�#
���%���=�	7�N�n���&faQ?ԥ��x#���V�u
� �0�Y�N�Np��WQ'�O�7�������Ă���b^ÅP%BRE@��hJǍ�E.�����Y8'���>$_9c�n�s���O��7k[(�GAj/1ⰲ��z?��4�e� iH��z��d�j��:�&����D��3=��z�(m�3$2[Q̋`eN��+�C|�]���VH��B�XH'�P�.4�����B�܍R��B�^H� �R
Zs�D�k��Y�׫I�.�������p��Pt��̪�Bh��^
���bM�إ�R=9}Llo�kƯ�V�^ۦ4��	6��b&G��J.�,��n�*�x�8�IP��
�ɇ0��q۞@��Q@�
G����6=G&N�lX�0�C?�
elj�

�S�+��Z�t�
�8b�$�b���a�3��X1�J�2�PJ�y���)�4�b�
�;�Q
��&T�����G��Ʀ��9dކ
ݐ�r/,�w>q�<�9�>s�|�76uļ9�>�;�;�_��n�SS�ɨ#�]ZH^��#䔡�eD�M�`�Q�t�@��	�ْ�~�T
+������& Pob��;�0�'B��<����1
?��`Σ�]	�ă�
��h�д��q�گ�mÅ	U�+��a6L(���Á:q�c|�W�T�w�֝��G��.�޷�������!xeo��N�f���Ëh
jKbM��Iސ�����V��͎���d޾A%/�p��d�
J^Y�
GU�;Tp8�B���)
���
�d�l6�ߢ�c���N��7A܏�xn,�K��, Ak��OeyW��%��qG�h�M]�a	ɜ\�J�O���Ƌnt�1
�Q�ِs2�X�|L/9�H\9

�)u�6
"��7��'�s��5�Cj� ������*�h�>��
+/�6ʒr��A�0����"���|`C�װِ
*A�@͟`�6E�'�^̹��=�GH�t_
�n�R��;"5�io�nq
B6�pa9|�
w"�Y������.��	���d�C���.�#�&�

�м�m��	�P�3��B*A�9�	Ñ���C�u��_$2EH��R4^~F����_��a�>bM~S������Fώ��ʝM�ڌ�p]��� ��Ud�����'F
Q]Rrc�̟�9��2B!K<��
�A�o0�p�3�n�z0{1����Br F�N�� M2�ge������n�8�gy'�;�#�|\�!!�$Tu���w����9�O?a������ZهH�|�a���$�V�g�W%�y������v�-~o��C/�Y�@�ӤAz2��G(��qWu
�_/� /
�/��
"�/(�1b�/8�
f?D�_� l㷽�.�_�D$�(�jo�Ÿ07�򁎜a��Ƈ�����y)�鑍�mF
�l`f�pnt�wfU����|B�
���y<Q�f�ޗ�|]
FT�S��l�|���
�Sw��2���k�_}(���
+����A�%��{��KZ~�=�BiSJO�
�LJ��YHܦ��m at r�A~~ �_6� i����)�ڰ�ϖ���i�����x�
+��J#�����
�Ca���.�o:["ߞ�2ٳ�f/x���6�
�'p�Yn�ʥ Xd-��Jف�V���ba
>52�%ŏO
+}Pu�$�{v��d���df�
9:��gF��?,�'d	���&ޭ����Y���P2
+����`�f&�~�j߼#[^<��Y�=�_*��@/�n ��]���~�2o�nj�`��L�Aw��*����Ȟ��K(<�W��!:�(���m���-�1V�N�4��T���_�ړ��~7#���B+�ot�Fn���do�S��n�T���fR��T��}��>
���C"uZ�z�uK��=���uۤ$�P��A�BX]����`_��haB�pc��B&xeČA�!�3��^`�!�4�Ƹ�
�5�^���6��^��!�7_��!�8�$_���s�� �!�:�e_ �!�;�_@�!��M���C�{ �� �C�}��^W\X  ��ʹ K� ��ۄ�R��B
�f#��]{繅��
y.�م��
{/d����
0����
���v|cE^���2de��!�3��^��dӐ�za��l׈{a�Fdې�{a�lߐ|��|〙|a1_�!7�ʣ���l��7ouj��Q��u;+S���������`�t�໵�q����O
:]M�Y [...]
+��kv�2��g��1ئ����BW��@&�p/�m���A"Lk�N��
'Z��{CK'a�m�^V�/�{�d at 3'Ƙ�V
S�
��2R4�*�Q����C����ܞ�8�dV���su���ʾ����
Do�H�
mp�I�	=�#گ
��b���d?�Mχ%�q�n��z�8�dі`|O���е�4��q0\���_^!� gR`䢄��2�_����4c� t�W�r㦨E}LMym�Ek���h�|�#n�v�ڶ�aEی.�+!%%!�&�
Ԛ�7�P��w����I����i���P�{9X���m 
+
jߟ�po�$���!�Q��‚v�)��!��O
 m���4��
��"! ��&o ���z���!�3�.��{
+�kO�*UwA�Ib
+�rSH:M�x�׎.9	�_$x�9%�1A4%-
�������e�0/'<V��-�aVP���<S�XV�1L�BX�ӡM�עcX�
K����|![�tz��c��>b�t�
�,R���dj��Ҵ֩
@ �pd�Ԉ���m6 ��*�@�|+o�TH��S\̐OXٙ���Bh晠��J�DPC��X+�pR� ��v]�s*��y’~W��TW
��:��&a�^x��_��A���\¥.�p��:� n2�7I�H<�Mh1�����
�*o\4:B=�P�#R	�(���#�Nɛ�	o@ޚ�qb��p'�@

�m���fe`�#hU���m�Z��m�E{�۾5��Y:��{��P��]�܄�8��Pi����L��u׺݃���ޑz�{��&��
+l +
+P]ĪBa�P+Vˊt�B��XW(�I�]��$�
Q�Kr��W���,�
�,�
��2��Y�w>�� ?��
�Q
�Vy�T9%�+�q�t�H���Ѝ�Ĕ3�w�H
���Kx7��4�S&+�Z��)�q�cE,w������ ���Q��i���yH_��Be�P�,�;{O>��?Q�	H�!��ϐx{�w͈O���kF���7
 |��ٌ�������Pݔ
�{�0�\�����l���?>
+���io�3,��䕐`y
4�ިX
+�_5�Áۨy�����n���&bA��Kg�K���٥7ZH����!�w:�qR�|i�?�@2�Z[�^<�EͶ��d��H%���b�
���
�"ѿCMA8Ӎ����sT�z<��:����L����4�
|����!�.
2��!�9�6j.���~��/��<���om�!��

��t�[B�־6X*���ž�-���|����n3�+���9��;|Ѹ}O;��
X����J�4����Yܽ��6g���[����Z�K���XD�(A�\U\���&�A1
�Bn0�"9�p�U��
�	�N�&
�A9�[��Sm���܄DBɑH�$�2���D�(���Et%h����/WىH�"��x���3�p��e'�y���l���p
��m���,
��Ӣ
+���
��`
�-���r4|�=A�n�dD� ��$�M`"�e+�A�հ�sk��5���;���;) �\�]�ή. 3��"x����
���uǎ�cY�7�`p���ty;���r�]N��̼���gqxj�N���������o	|�?�}��,��"�@�d
��||i�
6S�.�
�����~y�g���V�>�¡u��z�"��RZT{ώ
+��	
�����	�ٕ�P��!3·��ӛ���r at c9�DB�3*ϕT��]q8�O��/d���4ܠ��c�!$�yBm��ߏ@�A��� �m�	�����]�$
��H7o3;�O�@
v��
T8����R�H�P
%R����-���U�:�������Q%1F较[��u� �;�����)F�/K��
-�p�m������mݚi@E�LI�I��PlN
+F> � ��/�3"��H�c��"5���K5���t.G��E6�"�DM��~i�VZ��Ro#��
��
�fP�e64�fQbw;Tc�wYK�v�4˼؊��&�Pö�3�>�q�
�*�a��?)��?�h�HY�.��JRr��)�e4���+Q�T�"y�X	+�T��jDŽ:3�"�E�����J�Y=Z^f{:����Ͷ��Un���v%Z� 
��=I��~�"�H7�چ�@:�b����P(A$�1o���ȠW,`��ؘ[v;8"����W�
+/w�,}�ÕE�UH�k��Hޯ̟�t��
����F��cm�'���^�Yh^)Vv
^?��v,�,H��*��
bb�gd:
�v,Q�_��x| �8�@�@�Kx
+"���tʏ]��!

�o;���
�����>1�Y�H��"Vu�
+%�.rY�++\�����h
�����Ao�՟p�	Ҁt���'�l�:�yX�#�.5~Q���V]��0Wm�7�P���

��zÑ6q�c
+
_ԑ��Y33fm�0���K�-����loJPd=A at c{ͥ9��'�n��f�W�y|D�7�N�`����L���B=s�{�I#hܒ
0�D��
 �����
��fyW3v�����nН�y��RO�rIs���<~_.���IЧ�Cv�ߓ�&������E�pG-�&��~hH:�.Z
+���>T�
�8խůDMHp���\�3n$$^��p��h� �"�>���������\�+��+Y�9��$��Mr�e��K��n��`��!�P
+@�}��(@�o��/s�
[sd�J�S����UN�C�z���
\�C�4�H�
i����Ց��u}>�@�VP�+w��IQ���Be�70��K��#wؽ;9�u(�>��aꨀ���
��ȣ�����D�z���=�
�U��`����m��Z����͌��q,��ȫb�K�w;/�
��rM�d}glQ"�! ��T�^�&���_Cq��7H.���_w 2Q���`���%4µ�T�p06�����5
+s�_-,N�+���T�8\�yjal���,�f���оa�S\;j$fvQ�l_AF��SY�
+�Q&
0,1���O����F�g��d�+vh��O��YW��!�s���������_��L}Gv���O�8��ھʡ�*����
���8���3�N�2F�q��Y� J+5w�^�����\oҚ�aL�|�n8��7�o�o�W�(��2b{Ъ� Q�S�vZ�l$u1�=��G0����'o�O���)����MZ8�r�	�T�<9�b7>��IX���NGﭳ/��	��������2\^a�i�>����du�2�Ώ'����D�W��;��
ck��K�ޠ��WQ͆��B��K
���ѥ1ҥ�R�p)l�ti��|L!��$Q��0M$N�i��\=���%f����`�͸':��O�z�}�
�G�:�]���
��^n��oa����ܥ�\إ.�gw�}��
;�]
AR$L�!*�e�NL�dA=��#��[hX��P�N�_��IV�-��fIZS��
+���px��^�ƀ��� `Aj �Zz`�!�-F��5��(�D��0��A��1qi2;�Z��Q��4�:��w�����|�)]@�ag��Sث��$
�⇶q�$��$�A�C�p,���C�rm������G���8:�����R� ��g�
�/8����_
�Ϸ�7����%�=�����������
~6�/��_�������������Ͽ����_���Ռ������ן�����������Z������n��_��o��k������
�����e�o��������ߧ��^��ך엏.
�uԙ�1}������{���������T}M�p����NY�=���?U
R�'�!��R��S�$(��r����__�C���b����¯�-[K
�Xm�;��8X�h��2B�p!*���֪�a������#�g3��>����V�U#��d�C���f�yq��]�F�r�V�	Jdz���_Q?�K)�F-�U�ɃҺ�"k{��\y-~B�[�F�ktl��'��	_>r~
9�
G�U�-^m�o����|b(˕)��&Ń��:�c�`(r���*�O�'��6f�
a��W�1"��E�7��B�
+x�J���9���L�|�}�-����e�נ;�f��
�*�mF
:�8���
�Cx�L�Ȣ���5�߯�~��3Ic�՟0C�Qޯ9��r��d��`��HGb�ßLRB�lS�
�:����½�
�1�Rkܲ�)�7�n�̜�b��4��A��,r׉��"n��~�±b
�bYhm�;�+[�_̠&����d(��������j�لn����<�a���'���>E��1X
��/'��S���^>5&�fd��l'�.�\���=�����
	�6o[ˈ��2�Ҫ?o{~���`V��,�s����b6�9���h��7��sKż�IU�+�d� ����*앑�}1���&��BH>i����Q����{&�[���8����	3�)�{i0����x4pOv�r�K�ȏ��1�
�
f`Je�c�c^�	�����$VEy��e�1�7 at fj��cF���vޙ�ʯ�	c��y��k�򋑇d=� 1�:9Kؠb�|��:1��c�
p1C�AO�D�Bj���[�]�}���y�!V&�i:T�C�?�p�e��z
/�����'��O��'
�G�p|��zs�
+.���6	�-=���u���G�����e����g�r�Q��~��cru
+4�{xl'�FbqSJ����\���~���^x4v< Zf���՘+v��癘먏Sƌ�
iS�h��A��W�TBa�!Y��v���.�i�P�������!����̲{zi�k��+%u�(^,f��Ȥ3��3J�� kb�҄��r�L

+C�@����n�,�oFl����6�!�^1U9^wݩ�X��B3),MF
�
ƻ���R���kێq���Isf�vwG
+8��5�yn;�E^�i�8m&{�ɵ�o0|��U����S��	�h!
��Uk.�,:��>S�����%o�/��`��=By���\�r�+���2׫.���|kDn6$?�\|�.�_~ΞC5�›(3��T}��w�\�
�_����[�7� -5������ޏhFP��
V̀xȔ(ӯ5@�Q������KL�wU:����ѽpDEZ'}M�n��kr��e�v7�
������S�V���ţTx�Lo��t��t�Xٯt��mz��Ǣz�`�<�ӍV:�,z�^lK,��\��[:�vaY�5��p)�h�؟���p�Y�m\�t�~G��!B�E�,yh>a;ǽָ��財��5�ۮ'�G(6�Ne*��T�ѮD}�vW���[�<
 i"Ӧ;i�z�����D�G	�ˆ��Z50
7�G>���-N[��H���z�H�o�z,#�A�<���"�	�;�
6������9���0S#��l�L�{-.���,�N3�U
.E�q
O�0����#2X6�6;��
B](�Gf�E|����iu���c�]��O����ğ6B���x��2j�0��|4�R���=$&��xX
����tI��:Y؈�\|Ζ�L��M�y`K>z?.^����I��87��t�k��r`w�Ҳ
ma�M̅^��;Q� /���O!%�
+;r-[rW����M����Rc�N%3�2�g����l�<ON
��o>��܋�`��%�����|�
�L��������|�:�ꫧ�h�0 �d�?GL7�z��ȏus�Q������xVA����j��+z4��y�(�p�2��k��7��q2IV�,���o
xtC�
���wk�_�
ܘ�b���8@��G��i�T3�!�1n)Z�e,�l�G^��M����[
��i
{͸ܝ�� 7����_(y
�Kr�b�	����w�`t������0���݊�f����k�Vj����|
�kj4�B�o�s}�7ߋ��>aS�
gD��Ff����MwU��ܛx�fop�� 
Ja[05�
+�C�4{�<�kS�
3�r{�~
�^�k
��
Ϛx�}����������cd�����.��.���{||�<
Ii�X�@/�+��	8��J}�h��Զw��-��S�lg��������(�u�G�7��K�]\}�,�a�E����R8[y�e�:��[�d�ƴ����J���r���2�������
+ 
Y�/
&}��oP쮼#�b��S���K���;��,@���%>�wXOX!M�ٷ{���}��
��1�� �K��_�
�W��zzK���m�'�qz���pN��;̸
+
�4�$���\�1�a��>��7�qa2���$o��+{ �u9�ӓ^�z�,f�[@�L>�'���o5C�lc��~
�b��6#�-ǣ���Nc7���H�ۏQ�S6(�b]xG�:&���� ������ڡ�*.�����S��	Z��{
�=�\�O�G}�:Q����@!Z6� �#�L/�����'�~�ox(��Z�|����+*M,7�SM��	Z�0"Qi�,>&�9���:�(QVM�ʃ+R�)��MQM��d|�����0��z��]�+�c*�>r��ص'���u�W	���K����
�=�,^▃bS�Lۺ�݌��E>}-Č=�����z��?��A}��	�k�JQ��
l�S%��
j� p�
ى1�T2
Z�vx��Ι6�]��Z�<�m�v�[��b����E�s����y
��+�k�K�S���������By[4��	�{^�~�>ʿ�Q
�X���"!�9�Z7��>�ʵ^V�36���'�ހ
�S�Z̧��~�ySv�1 ��1�=8ռ-γ�E���<�X\�Tn�+���
�
ƼMQ��d
+�6o�IR��g=�se�<�Y�L"���9�q��x\��-�D{�K���`w�U�Е/��!�ݾӼXfˤ���v���Ȧ7z������:�6�E��e,���
�o
z)ߕ
?�?�d�f��͞j�!��K凷�	o����4�RҠ�1�>_sZ@�T�#%�]�Kn����>.b�@���
+�D>:3��˵�U�n9���͋)4M���W��:����|d.�C���
�Q��j���Y-7p��K���@��b
+֛�
Pآ
>�E��o0�8�ڭ>�1�����@@՘���]�AФ�߲��'���4���
���>�U�z�s�9�5�����U���B���ZX��ަ�5���[����I���ph��@��H�Xy���1dqx�&	�6���8�T�>�?�gj��#͐��Cl
<��\�xJ4,'	���\��^�9*�Ȧ�2N�R
[�;��,�@�F�%�F��bh��11�"�ʷ��=�^�\�{�XQ{+��s�}�J����͙��Ȋ�re\]��P�A���z��Q�XuyM豿���\�b?��;��;1
X�i %���ۢ�:��LG{��9�G
\�� ϊ/��
'�/W���|��*�a�ʤħ"a�&�9"^ɿ_�/&(�Z����d_B�n����Άꪅ}63rr�U���"��
E8��ˉ�=�{&jrT����0F������"4[b7p������31B抴kv
E}3?Bst���aΈ�f��l7p�P̅e5�ؙ���&�b.[�pU
��5�b�-@���� c�WYx\
� ��(�cg��H�l��/^c`�X:��oѳ��Ҧ�Y��7mm���h�.g |�:ܳBG�ox �5�gTV�����HCr���
*��h��(?V=��k
knd_��~����E(u<�#��Ϲ0�ZX����jU��0Kr�W%�����f%�1A�5�TJ]�Ce�$?�D�
����p7���
�m�_���x�]��4��k��zu at fu���LF���q��t�"M�K��5����3��
�9���{D}x�ia�����0�R���O44s�]��c
����?ƅP=V~��B�y�����A�&�<��޸��?me�q�j��! ��$�]H���&!��/]�k�x�ҟ78�z�\�)
i�^
q
�L�H�B�~-s�Q�
�*��S�G��M����>�o�O�F��L�{�&�� ���M;��Y�0�gp�|��"-n�i�c����f
,��N߆ [�
�£�-��p
+E��׻E����.}6�3�
͵���L�
+��{U�q�ч��(�~�/O�G{��ȃl� 
��Z�����������ؖpଟ�W�ւm�
��������������>�k�|�F����\��>~�a���GL`̀.���gV�׋J��
�}��g�]�#I�3�'�;��i�B1<�/j�$(ʴV��Z�plm�
��fc�*�PM��~�\���#�άJv!Q��!U�������~^=܉ʌB�@����F�.f�Whm�Y3$ؤ�) �wկN����g/0�ߙ0���
+�1���p�������W?Hi����(�Ʃ�غ�U+�X��L�h��������
+�'��d&�����s�'���c�~�"�T�Y-x���
���p�
ʹc��JF��2J&-]
�B07S
�:2��l,
e�'pH�O��#��Q����K�A3FEy�l�
�̓�'����ɲ0R!`;���)W~İ�(w@%w'��R.�k6�?��I�����M��X�Gs�)�mw)���
+Fy�����1����
&���Z�~������R�nh��٫��;(g�@���w�`�$ثa���w�ڪa�"�͖�U*E=�t�W'��:�FM��U[F
�AQ�	��{����-�xJ��A�Oi�$?:ݥ���IV��\�2BP����`�,B�x����Z�ۯQ�=S&���/-�(�c
P�Z�!��R��(�T�.u�L3�t�U��5A�f3,HKDL�.#�`�5�2�;���M�
h��m
�[��R�X�-�SI���.{&\X'�rr�����9�+
��Q%u�DN� %�(C�2y
�]l��G������k�ˌ�",Y!7M��R�
g�
Ux�\c��)���c��b�GM&�Y5��oϥ�o���e
�'MwB[��	Ͳ�yM��m���ɽ�I6U�l�-||���-18.+y%F'N6w
J�@x����L
+X$S��$�%��-aie�z������Gˁ�&F�ۈ�9WYt��W79cG
����|
"��8��盓O�gs3���=�I��Y���
�~+B���y�~A�c~��ԙ��g?��{'qh�#
AH�
)q�d""R
Q[�MF��e�o-s� ݎ�5sz��T1 �#\��jX��<ӻ̶c��eP�O$CQ�m��
��B�t����F����kF!\�`j�8�֬�B�
�K��
��1@ϧ��Q9��evuͭT����?����[��c��T�m��e�N�d�d�
+��e���*l",�[����wi1(�;N�s��3a#[i�4�,���r��
�k��� %�#8���K�P��"�/F��a�K
�o2g�d�
+��Q�
�A���d�
�NF��2��� �?	�̛��2Nց�ޜ}
�@�f6UzDG�����g*s�W��*�.����l��e[�
؈:րe{p
H�a�}�ɲ�e4�S@!
��n��L�ʀ�
������"�n.r`��b�Y���2 }v���`�F8�m������3�۬JmN�jq�f����&��ڙ���(��ʵ�>�s�q�E��k
q�M�ׅ�
��d�n�|�6٠���h�(���7'�
���
��CH ���n%��Tm�
-��'e���*��<�tJC+)��ɂ
+���BD
�>X��������U��̓��r
�Qِ�SF�y/�V�U@�4�YJ)BP
+V����vڶ��5�?�jki9N��V`��\KI^Vj�|J�"��d��ڶ��T7#y��4���&XJ[
��������d�r��T�T/�~�$��,I�2�$�Ƣ���	�'/�+�$��V����倴���H�e��G�W����	<n�e��zبB1�_��
Zcu1���h���ϵq�z�8ʈ׉e=����&�{��&䁟G��E4�W_`�X��L�(�S�h
��#
�EE�	�`�k���Z�
^�١��Ic�{Ͻ�充q{64-�
:��a�GKBѧ��ɥ���C�]�1<�$����^��޲��*-h��9��r��:�ǤbL�t��%[xԤB\vI��јo�8����*;���E��s����;\
M
ZQJ�K��"�
Ē���b
Z4N�˩5��9W̃�@?3�g
+�u�؉�l! �߼s.�W$Aws1?�蜜^�4�k�R4���R/�-��ؖ\*J
z�|I���+K0iy�l1SN��-�,:��<��[�L�
��5W�
+�
5[n�(Q��\�r�.��`ݵ$�t���}I�	���F��RC�b#�4S 栿�D��W�
�&�����t���~�4,ҁ�Jg
j���XF��dN�F5�9��5ɠ1.���W
+'��Ɨ(�HE�8����+��)�e
S(ۂ��n�/e��TZ���	�z����YS�XD�jiN�[�&�+�
��8�x��d s��T��@��_6Ic
�޹f�U�
�T�s3+\��dɹlw�8U�̔#0���<���DD�p����13VA����3$
+3��-�1��
+�!�Z�������`��2h\*�H��'
9l��4_���oaj-Ii�gS�!��J�dx��5�2ћ+@��"Bo<y�2԰
�b/E{�-U"�M���
.4#�
�a6��t,WS4�2ZF{h��
aK`G0�Y�
����	̋>�$b��
�l����y����b�>��ћєeT"&���\LO�f���(т���$�y�t���4����Q����5�
+�\ͭX&�3����5GJ_��J3��X�=�Fԃ-A�M�%o��ſ�j�elR�H�����i�:;m`&T�Ł�6	UWs�t�
�,i�Ȩ������\�MM�I*�8F��I��djs‚���6[�(���d�i���Q�R9�W���͒RW��Ɍ>��%_
��
�R�q
8�A��v�^�B��r���I
�Xs�7�x
+�
������J�i.�d����������t)݁�L��a����n�T�/�
+�t
�����E"��!��Gm�\gPP�j.��)q�Ʋ�N�G��횺�PS��ѩR��XL u��ɂ[�p�ytܵ�9�$�:/�V�'���Do�Ҧdq��d��Ĕ.�����ϳF�1ސ�z�VV���$�st��$ ^2^��~(��-I�mǀ
�o��Œ�MS��n�m0Z��6uid���z�86df�d
4G�D��C�1�C��b��14�&1A
+"9_�큽Z��~�_�e�N~��۷��~{�����sn����}G	����?��o�oj7g������_�鷯~w������������˻~�_��ǿ��y[�t^�uw�����w���?���ww���o�o^�]����/~��o����������a����ŗ�÷��|y�^���������|�Ԩ~\���Q��۫�?{�{h��g����7�}{�U�9��׻�Am>�
�؇v���
��v��oO0�ۯ�����W��߾�C���c�l��������{J]��c�B����}������j��ov�z~�y���ջ�7{P7���x{������W���
7��뛫=g����i�9�����~s��>s�m?=������|}���7wW��}�T{��U�}h�#C?2����?w�6�Y�c���o;���F��@}y��ns�ow��}{��c"���	������o��������=���������n�]��s~�03��ۿ���7/�8	L'�i/�)�� [...]
+7���\��޽���Y�k��*X�}���,.���o�_�H�inW_*=y���3�H>L�>ZU�����9i�?�n�6�X.�n^�/{��<�E�c��
C��`�ҿ<6;?�p�CLq�
��p
�����qo���py�����ް˻��o�\��?����H�����R=�������W�vψ
ٛ |V���
��O�Le8��
�?����ͯ�{���x�I�ٌ����
�����h���݁�w�����h����K>
G��C?z������
�g%�����ooon���99
��� H{�
+Az�d�3�:��#!C��������Uu��g����#���|≿���
��݃�
��݃�<v��s���������w��S��ۏ��A�=�Ӆ����f���{�s��x�_�ݧ��_���m������۫�/�n�6{��ۿ��F�ݦ����/�������n.7Wo������g�T���]�6
�d1������g���s���=�-���4��i��U?ڷe��?%�EZ���.�1R��w
L�{����G{�w���sU{D����}����7�77{y��<�{���
T5d-�4���ț�^��{���_��w����b���=�H�#��������
%I�����
w�[}���]���s��__�_����Z>�z��
3�l޿y�#fp?��	�V�^]��\�l~{����k��C�v?�n������wnR�����˷�o�9S?��3Mu>?_7���
�)x�=���h NnO���<c7�}(��^ߓģʌ�t��#��3�8 ;�gc7�w��g���Kw�����;9B<8��#���g�>_G��3v���U?ڷ���Ĕj�
!���G{�O��>���Ǐc"��Ez�]{�	���B;���������`��<�ǟƴ_��W��,_�=ur����C�t��K>���?�d'��*�,	��Y�ԉ@��S������:ѧ'�OWt
+O��D�
&O'��D�N��D���<y3�WO���R�����
)?��{֧�3�!�����n.������E���&�������|2�
���՛�G�O�*>����IU�،#�U^�/��EH����?_����E�Ë���{����7�o�����wW����g�\�O>�S����S��x�
%��9�g��b���oq,|��{UW=V���(ܵ�
���I�?�k��ƅ��lݏ>
��ޠ`�>���?������w)�~t11��.��)��
C���}z���V��������
�cf*?�x����>a�<���H.��5�w��߾��߃;���i�G��a��u�� N˿�����;Y,O˓��d����<s�%�<�Y���ѿ���d�<Y)?�D�'+�.	�(� ��N���G��9Y)��Z�����{��?ڛ�����.�����nnn��s
7������|C�w�g��-f��_��k|����xq��ʰo�8p[?��R������7Ud�s���'u�I��a3���IϻX�<I_�������M�������?�~���� [...]
��#��)$��>�=6���L���\�����Q]�3z�N�����˜���\޲�f��=��!8���V��~˞�Ax�yJ)�� ���EJ�/��|}���\㔂��D�S`�<ܻ�5��?�n�.���1�g��i���.+�m��&-
���wW�t��^�GS?�*=�5�=����{�>~VL����O�'[p���N
+q�����ׯ��k�f�^C=�1�o���v�|M"}�N�Cڽ{�iO���5�=���O���&��5��	8".t~���=�~�
�y�
�x�
�>�4?� N������}<,�V�<IA��7w���˛��^��b,�ڵ���d�u#��������
�oo�����<���r(5���}"�Ɵ^���O���7�����}&��~z�ח�3�|}���7wW������
Bު�s�ٟC��'���N<2�ܝ���v�G��H��7w�o����	bIO�Pv��
+�
+ek.�<�?�L(?���?��}���.��S�=������*���#���
����>sx~D���Xh�3З�G�I���O~D{Q�c!o���g�?�y�4�O�i5���Z��"w8M�Ib��$����If:�L'�����d�ݏ�If:�L'��g�ut���Ujڝ�IM�'s�>�~�����OB�Ihz�k�g 4�3�� 4���������
��t
��̴��ORӳ���
=���$��<"�w����cڍ���ƹ�n,���Sƀ�T�����>�>��r�RV�_�������~w�����_��@���a������;��U4�ho�~�6W�7t���
y���.�����
G����B����N���d��R�]/�X����k�]�����v��Խj����z��;���rn�k|����xq���I�!����'�������o.7W{nQ��9)|ô{-�Ki�g��'�j��$c`B�
K�?o�*���eR���?�ۿx���������Շ̫��ı�8���rbXN
�×Jh�!��8�~X���uR��
�{ԃ��F��).�
C,K��t�,�_
k�
�s������'��ƍ�}�>?H�k�o������o��Ioz˞��
�[��Џ�-��A8�eO,�
�{��Cpz�NO�S>e�G�z��u
����g��?� ���>J>�:�;�D<�G�sL��9:��<.R��v�;���px1��<�/CvN����B�c&�G���[����x��V
����H�x�?
����9%8�
r��3��沎6u�O���ij��)�x��Gl��g���v�Ι��??�
�'G����t��Ž�
J�=jȞX����7�O�\� [...]
+��IzY^
/>׳�o���I�R�|�ү��E�E
+� �ϻ˷��#���u*?Z���NG�ʖ�D<�I{��
��/on~��^��_���/���U
��_�{��׷���A���~w���
N�q.��|�����w�i��/x�����?�����w���lx����?���}�_�?^���
+�/s��T����X���+
�\�1�<��cD�0,�_���yx����?���B}_������
/^������K~�b�y���,/�Tx��%�����a��
��)28��N���eXB|q�݆%M��e��8�,�p��y����ۖ�s�o���4�c%�Y�5Oˬ�C��e*a�-�ga�����S�Ns��v:�48��S��F�Rۦey��1�`k��g� r

/�22X^�Tg+

/�P�_��	�`��"+QV`k�7g�Ps�]F]�P��F;
C��a|9�1�����r�'Z�d�e�˥n��cL��:,IF1�L9�K
��-��C���y����~,�M�I>6�9��#��+
xy��y”�
��H�4�2�0�X�P�
+��
��?V���ɋˇ��R3)��z�����g
������)�h���e|��zc#&����|�(<Nyr��s��QA�
t0]�!.����ƺO�:H�7��u0�1�N�
$kS7"��1�F̩�Ǥ'$�<�2Ĉ�
S
+���r��ލvP��٭g
���-n=/��_/K�걙�j[�Y=�^���L:�R�k��v)I���]�ւ�vL���/㰌zJ���V���'�l�E`y�)�N�Jk�����er3�ToҜ�J�s�Bz�˨+K];މe�zW�%��U0�q�,e(݉�����vx+�O�؟�:�%�i}#j�e�����ԋ�{V�kR���d^^�&9��N���1�E���߯��B�!�3�LJ��\���K�T�e�Y8�,`%�
@:���X�>�T
�#FV��ݥ�

Y��(�N]#%m�.H��F�͗o�7*̳l�����Qh�R�I�~s�QcP�Z_��\�Tz
+/�."
�t�R�jԆ���}���
�G�[T������U�d)�_�L�A�''Wj�&
j
�Ń{E���Wv���QmYOn���漗u��2&9P�A�]�!���)		���/0��fϣ�a���"
���2�C�vȺjy�����KT�����T�;C�]�,=�zibЅ��*%�ɩ��
���oS��ܶ�nzy�AF5�X��X�V~N��,߯�J3�����
*�L��T�L�t��K�_�Dt�����OZ�9UB��(`�e�SN�,c�����d�Oc���3�U��


wP?��G0��C����|�bewF~*��ܼ�_~
	䗄��h�=�݆��䢷4�?+XOv
F=���r)}I�t��
�ؔbҫS3g�j
Y�5=�3�Zov!��ZX�Ddk��
�u�?����e1��Gvb��vU��u�Y�K�X���v�K�`�2��,m�ܰ��K�C\@�]��T"^�:k��3�1XA&�E���L���
��
��m% 9�t��+�װ�:8�z��v�:Ɂ��Zg9��fY-�����T��Dצi�a%z}fe
F
V���]�AG���f�tC=8\Y��,v
q8��ϓ̋D�))]�q8�a�
�Wy,���}(JB����Tx�Ա(�V�i��_��<�����Z�wq�O��9�{P���a��7�r��,�4t���T��9��	��7�� 	�
�c\	�2�ڒH��A�WYX���e
���4�N�w+g�;�.!ql$g����Vk���9�D�r3�Y*��$X��G�F!�"��;5k�,)���5�Y�J
+��E��(�VA:`�듙�c%��x�'S�
�gH,��v�G=�!�KB�Ce�e��^�0'
d��ݬ�3ڑg³�njqw=H��K�d�܄���i�KgBV������t0_�W+��eRr&�
+����3�,����B�������#>Z ��2Q�<$n�x%)�FP�ap��PA&x��)3�KSr�����
?U��)z��I��/@�6U��B�z:b�DzN�2�rd�Kd�^c�UYB��Br�Č=����K
U}�\���O
�2���d9
��L,�UI�
\r�����:����*
%��e�|�/3�:�[ăX?1�@�H
���%c4EVN3ݟ��)
롗����̫VX����g�ze��$�A�
6��o
EE��R�z�G�8&�zj��
'>��J֣%
O�O:�Gaԗ�2�ےj�$�T�J"�։�@� �sI	��
�HR�Dx	��~�&[d
*X�)�
,�0��گ:�I@����U��11'�
=�y�I鉰���
+&��GI$v�"Df ���V��g�ŐmX�0�B
}�c��!]��L��^�
�d`˸�����v���҂$`X�Tvq滐
�[��2(�
�%�!����
�n]:Q�zf������7m������U,�Ǣ�R)b,�*�F�,
�u˔Ȩ�B�
���Z�eY �e���L�}��e��t���X&��e��BYO�>�n��gZ�$ғ+��M&�d�?*������ &f��^	�F���S�������
cX� 
u%b�(%H���-�#~�.�m6�6h�c�r����3d��Z�z���
f�Mȼ�$ْT!L^�bжsIo��ܚz�f>�̏�A�����0��,
)X�
��2í�ɢ&������iH�D�IkXO�rĵ��"��$��3��L�h��T
E��\Ee�<A�rP�����VS�E���
&(U*
5�k
EY}��u�T��D��#^�����E"t${r�g
�B:Z�w�x�*\��.��
�zݜ��w��>x�,�� ���
+Ӥ!����G �
�Eƞ�2�TI�
B�T����2ғ���6,-*^�0���Q%b�%�:�6�$��_�q�da�rop�J(0S�TW٬4#T��ޣ��F��|��=U��������a

+��c
���2�ň21ȑ��Y�'
,�Rq$
+׹@�5�AV
�� ��J"�8��S3�e��sVvpV}L��VD�$��#TM��zd �$V���d�'qX���u���ٱ>�J��F�B���֝
��"����9��QoX��8�����=��"��ya��&�Aא4{��U���MäB_rⷵu��D���ғ+�8�s/&�(l�K��,F�X��
K��^�T�Q��ֶL"�i�b���&#�9�ə��Ԝ���9���B�@
�<� ���ZۅTެ�N�W at 4��F�cgZE#Yndf�A⧿JЛ-��"��Q{�� �?�Dh�1q�"AS�(wH:�dhu��Z����iE�H�r��D��Ɯ�
Exe����@�a}�
+
mg�'R'���� u"���(�����Yl~�z�jΤ
+ʮ�L*��� �E�4c1���홶.	����<�cJ`]袠{���$,�HB���*y�+�b.�
+S�C
�X�(\i�	^
+V�0��c$�)��>��>�o��z�E��� [
/��H#�/�JH�XDzT�:�l/�C�
�<UET��|�n�heق)]���i�|�eo�x�Aғ4��@ڦ<���CT�dg�������iٰ�+%������	z�i���F/b�"�<
�9*�6#!f��2E!�%�AD
[�&�?�@:���� p֙�*jz�U���^;b
t@
��ԓ��Y��
+���ޑ���dX���cj$
�G'#�����~wѣ5�]N��,v*Y��i�C��"��d�-�̒��
����;�2bcŊΕdgQ=���>��pV����
��C��3OG�J>Q��*wE�dT.�Ҝz^Rᕦe�
gy��(UT`]O���Y�D0�v3f:V�^�� ��?�G�>�z^�������<�3� K�Y.�$��|}7L�7#�2YAV�*�/AA�6\���A��>
Ϥ�!�}5
�#ž>��J�e��K���b����/j�T1� [�2ю7:7���\��Q���4@����K
���4@<-d��9&cR�p!8#�#f��=&u�
+��PQG�0`�)��f��
�w�Zqn�+���g��̢2�����3'r�zH�ZD�
I|�Ȁ6(��l{�2�_g�u�_��w���?|������?���u�����Á�O��!�O2�C��0���ͤ�Ag2�C\���o�Ȣ����e��9ț	{s���tq��u����>ȋ
<��L���!�&l�A�M��a�M�>i���{�����Ҥ�A�i�� �4��m)���<����|�d9�I���I�
�dcqUk��r�zc
r�
����;A�
�&]
�&=��&�q\Æ|��m*���h�j�.̛��’�A](���˵n�k=�֪S����F8�
����q�9�I��l���&]
�҆��x�6�� �6��0�6�� �6��0�6�]������&�� 7�b?���X��ws�G�c
��to���rv��r����;����˛|� �7��no��9���:��
��o"3
��&]�� !� 8��0'8�� 78��A�p���\���g8�����(r��.q��e>�)N6� �8��0�8�� �8�� �8�� �8��09�� 9��0'9ُ����`
�(']��*'�a_g9�}��
fx�Ütq�˜Q��w�-;�m��s`i?�u�����2
�>g���w�C��3�mE�$
�B7
��b��!��W���A��<"yo�ց5?ȹ���uО
�`'L�!.v`����LB�x7;��!G;w�t��^�u������I�w�k뷏˝�=��*���L��x�;\�\�p?��N� �;��
�D�s�

Tt8�� 7<QF�>�'8�
�
�C\��~�S
��:�����q�s�tq�{��p����p�����9顋���
�p*pճS���
���{2Ƀ\��������w۳��hǽv�pޓ?
�'=
��'B�A.|"���']
��'+q�#��Ǻ�A5���|8n��I9�I��'??ȩ�
��w��:
��gW�!�>������|���iU>�������Y=��O������?^�����#n��ţ|s/6�l����/�}{��Ջ7���k�/������U��ۆ?\��_ݽ������W��������\{���ÓLv�������������.��&��$wV����Ò�U��J�9�dҍ��&���\�Z��%�=�b�lF"��HM �y�
�̜�����y#��*y*��4���F�$փ2���J6��l�m-���
+�cC~���L�ck�{��0=51��T�+,F�הi�)�x~��e�r���2‹L�'U�Ȳu&�@J�������V�(�Q�j)~D!
+��&8�T8�������~i'vu#�b�g���4�RjT�+��A�Ձ���
��U�� Fu�`0�3{�$��b����,��z�hSRW�Yx:6� Y���5�Y?F>;i���V��:˧��Dud�E���
���.X�q%)�m^��չ�(��҃�Y�
�B29r�E}�p�:��{��x�K��(\����Y��͘3�©΢CUPt�
�U���F 6d�!��e���l� ��2�-0��@˰ �t
+��1�ŵO�$

�M�B�-�(��w��Gu��x�Ȧ
[�C�q
+J�ˍ��9��"�TPf�5Ȇ$
�-Z
Vp��`�`@\Ԉ:Zh�<C�'�1�Y�J�����D�%M�'����`(jY�a�s�
E�:P������pd��%o�#�,ۃ�� �`&�PA���Ql�"�.͆P��L#Nlj�W���Tl�M`г��s=�H�u�q������Ē[Y��*?���F�B���
e��9{đ$r�/�^�)'��
$�`&���"Bk .I
Hg�k�����t~z��J,
�9,�u%Ɛ��I$Za	���L��
+8��!>1�[�⛀��_1]+�q!�PxP~\%_�Ք����z���Y~-a»'��!�P��+c���([.>|�dfn^����  �Iī�n݅擁��k��j
��Op.��O$�b'!�>C�">`��\:
���
9�l�8ؓ�v����������X8��T�L��,g��%�g2���J�k,�d�hSh��h���׬�1�#�&�G�ץ��<#`���\����*�ևp1�������2A'|
�A��D��t�W�>�|����B��g�H̝����`Ӈc�2O�)Ț>G�u�(rN c�PPuۓ�
+c�_U/J̝:L�"�p��l ��hm9X�AaR�`�@ f=���
�qR9���<
D���۲\W�l�B�VOx�x
��m
l��>��DDBU.'U�����Q4$T�{$`6)Ԓ�2<�j,�	F��#5D2�+ :�����#�h�PQ�q���
fl�B �Pa�eR�܊Ǩ�	�CYS�	an��z���Tp���9�s�\V0B)��y����	14�
��Hn1#��
+#�Hg!Z�Y^��i���ZJ�J¯����D�,�2�p'5�
8̬�I��F°�)M���O���i�;�B����0��絈�Q�r��q���

	8��0e�h(y0�M��AbQ���kH�@�牟U�bH�:�=p��-f_\9�����KR�t at B� ul&]I
�V����l��5yu��AB�mQo��wr�("��= =�CwT�CL�N�[�z!��7
�=
�����nm
+f�����7]�
+��feo��g>ggT���3��1���O�x_��+Y�P
��$;�&92�<!�H˅oRnR~��
�Qv�>��,�0����!ˇHՋ<�
���&��/��ꏟF	]B�WV���G�SM��u�
��w���v��7%a�d��o������ȗn�=LIUj˺�
46���8<$z�'Kp�'~��2������	[�t�yA>YZ�,m���	"pa�P|�\�@M{�%�sv�H�(:���9[�����K���0|l-�B
(F�OQ
�hߗ�X�"�p8�Ҩ��z
+J?�z�Z6XR2���t�h1�3G��Av\��6.3�\�����sv`k���bN�Y���	=Y}�=� [e�����R��gdJjba��B�� *L�=/��u��n	�#q*E`yg$�eֈ;6~��R��I4�yhy��s��EX�yZtX�4HP
��JT���'�`2����BAQAq�$M]V�Ϥnm,�i��o(r��H�,�F
+
+�P�\]ҁK�T��8i��\��:�?]*c��ro���$0��m��3�/
�6
+��
�{�1�
+�](vgݶ��P�

#x+��
&��zP�sx��ɖzTkKA��w�DIX��e.G�)�n�C(�с���m�F��q���-.&��z�r�^g��!�i3���g�0�zŒ�Nߣ�|���
+Tx~
���&�O�ƒs�����Ƣ
+��vB��D�`;[o at k�V��)��iB:�ؖN�'AAT�,

1"��8�Y�����4�Q���1v���I^� VC�Y�U�����BM�~�˦�a֯�4�s��
.����[7
+K$��D��A�Y.|K�����D���65�
�ٚ��a�(�6D�]ѫ/ڂM�	9�@�<���b�H�~j��j��/D�/V���|YMa��Y�zkB��v�™ܰ�
Д-�Ed5ޅN!��f0�[/b/��$
b��zaf�Վ�����ݨ'ַOu-��{L��F�Pˇz|��6����_��l�AaG�]�7R���OS���o�D�
+^��m
LY�V7��;��T%�y�_���:K�6��E�?�L�[��R�G��6V/��~�݃�n :h��փ<]�u
���Z���l=׶���
�=�~)������Hה�^�F���H��.�D���
�8L
� �^�p���]��W��w�����h�y����AbR�FI������L/�`hO 'Qo�
�!�m����(v��8���
}<9UQ y��~[�Yll��=u%[V�F�|f
&��sR��=�s^�Os�wQ��Ɩ�-���p"1��9v�p+]4�������Piϼ�9B@*
�u.P^M~_�<+m=S��6�ց�a ���7
+��L^*��ڎ�`���e
�2
���\&]�����`�F/�An+�,� �
��>6�i�p5���c
�����CC4@���(6����}f���5�#�~�-��=�=����n��}�b�
���e�v/�\��8��tމ]Mn��9g0e�?�	���,�
0�?Y-Pog��̊�#+
+Hk�q�$y�T�#!��U@��8dE⚚&��a�0
+�Й`˴R�F����"�vK�D�Q��-F|�Tg��X)_�s��
(!��	H
Aҁ�ω
Ljf�j<�$Q�r$�%�L5���kMn������v5
+Ep�D������q�����X�A�KВ;�
Rs8�3F��ˍ����Я����ш��2��tQ�7L��Y�g, G�?��Y:H�I#��9
+r`F8{�
D14��Ii�I���1�j�gsQ� J�Wh
+y����r�}�<�u�%.�m$�:���jW��>M�
;Q�z&�4�6s��
�
l
];���,r��I��a?�-W#�Sl0��
j$
+�%�i��Ϛ��PX�������s����5
+sQg>@D�nj- X��yD*N���S�W������b���as���Z�
�

luMv�
�' ;�7
�2���	A
;ά��I|[�Ak�H�oXŌ���+4���m�$Q�k���;�
+B����Z�a(0T
QfE�ݰ�K��LA�_1Jd�
+e��,1���hC��V3m
+��D��V�+
pU 
� r����h�%�
�Ji��D/����lY�p|��b��p�!8��ɼ�a�2���fe��H#��[�
]�h
���p�sH�zP�@z�|^��J6�m[�R�+�[�R$���bRBD[�|��a��Z�b!ۜ�
�C�c at E����a3B��Y��b�ڎ%Ӕ�J-6X<�
+���M
���.)
���Z��
����+����?w��r;�C��Ea(��H���(:������Q,���DJ
��m�%��F���p���h�9�ׅ">�FO�gK?��
l�S�{�
�@tPWFcQ�v�9V���sM�hg��{��sx�mԠ׫���� f�\lfym��'H��u��x
��@F$F�d^j>�$T����K���S��La
�#0��xz�4g9&G�
��D�rVZ2z�R;1��lڙ��*��eV�d��nfh%vj+24/3�8�b#P
u�N�S��e3�`�B�Q�"R�z�Δ-d13�dvhzj��)���)�)�fT#��dY�<&
;�ʯRx��<H�3�&8*�;�ڲ��š�J#�Rz2�i��6V1O�~[[V/I�dlψT#��~��	�脓�Mq~����t-�$&�QC��A�U�CK.1�N���M���w��;P=��#p�XW�
+�����@N���
+�������Q��5��	��� ��|�9<La��]La�H���5
�\A	?_�����bM}�v�٦��f��8�����E�l�vY��D�񯢋��;������A�ڸ����7gx��(�8ƹ
ꩴ9
��@��w��V��+O��.�)YG� ��
��jmP �nK����֔���R
t�x��o�ރF���X�'�dK���cY�]�<#�kׁ{�
t�jOb6�P{�$iI2׫�?섵��=խNI	r9B�3�=��Rqk�3
h��I��L�G3`Yb?�?[�Q�q
h�R�S�b�c�
����=��A��
K�$m�9C�R45N��
�؄�y
�Kx�O��k�<�3ԕg4
*��,2چ��AV������
M�ㆥ d��67��>=�s�nK~�P,<�1�0H4M�R)i��^x2I��+�Q���N�t�� q
kѱɩNx4�
��y'�L	��m�DہM���c/)?艺��r���g�t
��\��I�]Ni
VM�hTۜ�C�k�Ӂ�ie"�s�/
��#>��KH�9M��Q�,t;
�Nv�`M�ۃ�u�7
�Z=�v)qL��hG(�OY�U^ü�"@����
�-^ӮMH5�Ý2o�!z�yzEaz��.�+�m��AW�������A��G�כR�M��@��4E�F��iAԋ��"��$�6m?�[
��!<�O�Y

qV�ŠE�Ȋ���Fm���7� ��@H�Y��7K�F�&�I��AR����q7���q(:gNA���AA�P��Yr{��VLWF<hj:o�i�+]�����gu`���:���3�Mr�������no9醙���P:@�}gl
�D�
$*= ��8�%��)��0z����:�hDvF
eX`����zX�{s�2��-��醠�0H3�`����4E6`V0Ť:��P�
M�DC�_Dԙ}(ݞ�y
�����-��: �`�?h�,Ռ� 	��W�r��>E%�V�pf~ g�AX�:0�@@��dw�'�G��&.'o
B�꨿k�/��R���^�Y3�v�qjbL��Q�< ��
؁x�}���AX�á�)Q��<ԳA~#9B��5
+/({Qgf�A�-���QX��~Y�'�\���ʃ6�
NB+Υ�XH�+Iدky��I-Y��v8��v�sY����σ���A�1�,6�Bs^��^D�
I"{� >�����
<�)T��*�qL�=j`#�_�d�aa�����������h9�6*�ɱ� ����Y�bpP�	y�9g`��>—
�Ihf	���FKO�|m���M���pw`�̎ /��0�S��0jV�nT� ��1 ��~U3��AY�s?R�Ąf��(��p����F�B�h����O�2�;�&	ђ��^J����VS�^������x�Z�f
�S���
8!�@
 )Y���8ph��9בצu�"�
`����Q+�2�|��
0,b�,�"��|�Y�%e�'�] @^2������gk������
�|jF
�@�<h�
=8��1���H93`�
�,�� 1�
��J�����G`Y� n��)�l:P���6�$ԠMA:H���?���hN�(T���f���W�^D�s��Z�pl�
+��
(k}ЦAܶ)�}�
�hU;�:�:h��)��`P�y��V�`v�����46k��	��tSq��
+��%�^2v�S~��J֠�~a�j�j�p��#��W-A�9C�v
U#�s��BQՁ�
�@� :���}R�sVJ+�5�JMfd J:������
[4�r���Z�ms~*��T��5�
]�w�jӜb��s̙H
+k�Hd
+�D!�SC_�$��F��B�s_���^g���E��t7i��V��
���
F���T
+>��T�3*P��_ʴ#/
�P)��y��+���l��ג��\�WU�Nv���3
Ɛ����_��ax�u ��TMe�O��TOp�[Z	�����p�kqi�����+�����}4�, ��ɴ�����:[w1t�8O�@��
��Qz�<�8]�-���'�(
_d��g�2Ы[��Ws��E1~�����gT� ��T�\�zh+��z��
4؊��:p��@YJ�T�M
�ζT�V��x

��̂MECuˠ�3^�$3�{��
2�`F2A75W*��R-�K����
endstream
endobj
13 0 obj
<</Length 65536>>stream
+�� mU���a+7��S�j!AF�xq&���}���TU�A#pY��U�E�t��z�I��}��e�Mȶ
p��mF�
��b}jU���:%�+��o���=(��N�,
%f��U�Q���>���;5	�<�v��m�)�����j���(xq��m
+��}�ArO̝c�?�]
�PU��q0�q��f
�1�.
�uL��T(��m���F���с�<�2�"S�'N�ꕦ� � Mh��`���
� ��i]
zl���ց�ڶO)��B���Vʇ��G��u�@#�䋔�o��1��?-]�;�.
��-���
��m����xp��Ark����o۞G��^�ZP��=P���g���bk͌��9-9y��x��B�0���QA���`]
�
nT�S�EsK�F�<
�V�m��=���6ZFM�>� ���n�@��+'�8o(h��gƌ��_F�˞K4f����u����@V�o��5NՃ�v���� �gu��s�.�9�"D�<:�=8�Dk%)�o,)b36gk�D�T�8Vi��r��嵋?�U�g��bh_o��ٻ
Ձ�1���hv|~3�/�V%
��Q$U�t�ޜ�)A�(�c'�r�g�Dd����-b
B�uҖF�����M9��ai�닳n`�c�Ḍek
+�h�������NV�OrԺt̏��DsՓSi
}f5u�kP��P5Xrq&��^Q\,���r4w�|��;#��̱�]W�f�j������ ��
�C3��5]c�>�)��x^�
l*2�u�%��t�n��:���-a�S�H$7����a���Nҙ{le��o:��&t�D��S
S�殠�0<�Ё
Dy��Tm���C��B�9����ka�TLK�3��sS�˂�m��z������r��S��H���\��2��JtqMv
�;�TٳS����>�Ñ����A�u8e=��Һ��%��նM��J�+��M��{m`7�`ƛ��*���!�������
f��
��+��
�-�>X���0�.9�Ȫ�}3��������T��:�R
+�����T��
��c�$)�1h
Y��n
�usO���E�/|�&�Aj+0���6�!����k�PU�;�*���6��#̙)�k��sa'5�9����uLr)CcfW
"�y@���tp�
�?�n�u��4�VP��o	�, �0r'ixaɵ} l’�ka�k�d
�4u-���h�
+�Htz�2X\�`�\d*��
t�h��_D��tL
���;�j|[x?u�:i˷uC�nX�����Fw�]��S;H�͵�M�� ��
�
m��݋U�<u��b�{x�e�ƍ���;���o�:��,���1�F9�n����L���ܑ͍�,��~X=��2����9�;�v����Z��L�
�X�Ξ�D1g�l
V�
h��s�޴�.m|Qk��G>l��G���-��.�vk
hO�8?����^�t���\ u��?[ù���Z���ʰ�ҵm��뵁�T�X�n�:��_�n`
������n��2*������-M;�nw�߬Dꖃ�
qm
Ω]
p��.�J�O`�
��H������>����-<h��y��t����Fafƅ�ʖ<
)N\&��O�
��08�wYZ�'�{,.cz�p����Ƹ\5.â"
]\Ft��%��g�&����k�|�+��8��BׅKx�/)��x6q*�+2���Kl�m�)4�L3.
SK�Tǭ�ֺ<]�v�g�3��
+���w��|���-�%�T�J)-��K1�Rr��J��qƘWm[⪖`��T�;\�H��_��p�^�h�EaP�f���C��(6�o!`����|�|V1�f�î��:�A�ń�fd3U
[Vm+s?,i�묥WI�<l��A�+�[���`
+hv�`���:h�0][-�O�o�
�~�0�0�ǭ�Z��L����׶m�[Ė3���-g\
{q����W���m����
��r]�-��ٺ���݆�#��f��a�4�cf���Җ�
 '����(���>I^��*�˲"�����p��H�h
4�֌ێ�yrMl�ʬڃpEr�V,�����7�<�>�oZ�=���E�!w
+JX�,����
�O
�#���c
��у��^�h����#`��{�[��n��t.�хP-#���qTga�<:P��o�FЁ�����z�m-�ԃ��^��fm-"��Z��>�_���;'�m
���.���Y�W=���BK���,�m���s˵�c����Qľ%+/��ma�u�����B���+��Mg6���lո�l��k�"~
o�=�/���p�͖�b��
4���
����5�m-���L��	�Tn�"���};��U�.
��qM��"<Zj
�+�)x\��>�~�&t����2�^�^�"C3�XV�fbqP��p�4b�F�b���@��:�et�����@b�*#c`� Ѧ�r54s�K
!�T����W�0��fK2�
�-_�^�W���V����l�{۲3���^r������Sl2�Z�U���
�@^�
�`�R���@���#=}:��.K{m�h�c{X��s��s����z��
DJ�l��� ��d�A[�$v��Y��-��[ٖ�m�� ~H����<3���-#�$���2v���
0���t��FN|�-=c�*�=�Q����`��i)y
+J��K�%�C�]]�D��e[t?o5���&��e���
���1�t��T���.�S�: y-�렑-��.�L,\�9"���bY���ێ-^k9��q��тk;�u 0��}�Z*�%�]Fa����s[s�N��"���5�ܖ�DM�D��~e+,�Zf_�� �P�xw��e�M�0x
7�V˕
om-�f�k��
>w�{
����������6/VS���.S����Ҭ��vzز�!}�UdA�2�&�jʹ�a���5-��l
u�q��1ͳq<l9��\���ҕc�s�=+��VSZO��&D�V�0y�XQ~n)]Q
�ܥ�#0k����ɤ�$ՄΪ�l)Q7�ܧD�R��2
�ܔ�� ϓ�<zޒ@R��	al���Q�N�̹<�V���*9g��`k�l^)�����[�X
G���҃r�ҋ�\�ց�-�
[t�_u�?�VDq1�~��V
�A����aD:V�n5�%=m�
}
Q߲a���@�N�g���-�����ܔ]�ϖ������.kgKX�w��l
����M߫*�Ɋ
!H�o����2+w�	;���l�+��;�"Q�:�i���I%%%˪#ݭ�����K~iB'����ؽH�=_���mm!kw�=��S�ˤ���-u�=�s�r
Fo�x��X�od�<�y��ދ�l|�gxc��l����
l	�_���z.�

�iT���b ����
+�4I��•DyQE�z^�ZMRw����q+
��@�
U�]A�:<�&��#I�
���Q�m5e���?�D%��H�6��K/K*�,���M�(@ �HC�^_�$�Rm ىY�sE�J��i��we����5i�cW����ǖ�C��!�F,.ԤX����-���,���4�����dn
+��)Z������4��e����qL.y��ԁS
+�\�p%� A&��B\���xӉ��4�N�穨�
���7�\
+W��Qp���]�%J�6��k�4�F����X�3��^�(nY�*��XF�G�}
�"&��uy&E��W1��/�}K��l{�S�8�����J!��xH�
���RH��� g�	PǬϋ��ʞ�]��%BrW}ߒD�zˏ���i7Y�ph���Xc
	�(ݶ�7�9Z�
5�	$Y��������^Ւ�%���׽�j����#V��Aѳ�urv.�n�(=>8l
����A�tGUB���߬����T�_nF
+"���&�V��17�ցSq�}�!͖DM}&aP�/
}J$�Ȋ��Kx��;ǣՔ>4����K��5(�����m�)p���":����P��}��U�3'%{H�G�4L�*�lZ�%*�j�\e
F%�
�Զl�bu��E��MG�<�2K;@f l
�	r5j�9�A��cn
+^���x|2��
D�����&�ڊJ&�4��)9�{0*����Y���Ͷ^to8
���#&�M�(hr�
��b�%[*���SP�� ]�(���]?�%�N�*�h?z
&
(i0d
+f쒜����jH�'�4�%d5�`�*P�"\>T���X
��L[`
��@YE�b9�(�o�u��H�@���D�V��.w���\z���-�=
Z��U�ԓ�
%�qf�������0�c$	N�c�Ur�ӤuP���%
+����6�؎��T��-*�/��Ѣ�]�|#�>%����MTP�󸃖b��F�9S��G��� ��v8}Bk�A���R���]��I����WV�DV�B��۩`��#
�I�DV$H���YX� Z��M�)�
�M�@��3�@��2CYF�p�Jx��ܕ���
��R�4�箨RT��*4m�j1��P?�5��hzܧ\mm�R��I�(>
+2��w�=J;}�o���mK1�N[����
0�}
v�՝�4�6I\`��
��Y���1}��l,�Z�f�kw&P�G<I4]���-�>6I�t�D�����9���j��s5.����yXs���.3���$��ڬw�`1R`-Q���h�,�s���EK��Ƴef;�j�B��l
+V���m�ڦ97j2b�ǰi��n9��:V�m����
tԼ}I��c ���{Pu�kЩ�i��v��D�Z�
�鶊�~�]Ub
+��Գ"�X��;���/3'`�ݚG`֣0X+,b�L�����ކ�H��(W����&*h
��5d�hB17ȷ����+����8��HF
c��K|�E�L*
�f��M�/G�����݈1�H1�#���k��I�
+mi,:�v4R����&��5�Z���|x¨
�v�"�8��s����m"�jL0�R�Þ��c��v:�����eR�i}�"��\K-3�;�Y'��\�3�Zh<���K���
K@�nV��or���"R�V�l]
�}��ӗ�K����.���N�,VP)I����<���m�&�;�|Le
V��n��Y�F�����%nX�h{�X���[��ۑH���1��<
˧��T����No�;�-�V�ſH�
�ׇ08�ٓ*���~�'��NA��V�<��}����Kgn;[y���u�����zP>�奈����@�����L�AN��ːճ%Cv�Aq�[u�4X��e~���
2ݚ�yoL'��8xX�yP�j
"�$�
�S��VlU���=2�=��9����=�%��
`�,-�̳���YSgk�^a���1�H[�3A���4>
Vɸ��{+�Ct0�їm%3Lr��9
g�
+�Q��~tia
ѫ�=[l�*����>���Ǣ&YeIK�ujA�ږG�³�d���$pb>Z�B3ouD�-͹�t L�T�$�hR�����
�:h {[���Y�m��U
������f{��Eٵ�D�u{����`K����z�$UyY�(*�EU���gP�c����П!���n�f&�,hgۤ�I�����N��f
FZs�6�����U�`cLV-4j�+�̪�5�H�~��@Yw�w���w��ɥ��`�L p�Ղm$�)��0�ش��k�`�@e�)C1�K[�wQ�V;V���ެ@Тu29gp�����Cm�2�M���B�S\�ד�[��Y�U�ƽ��@�0��7��X�Ie,��cV�0�T�L�5�� _2u!��Zʽ�Q���Wv��7[0ҸҹPaB�cZ�b���,��BE��e[���ڤ����l;��5���t�+���ٶ'�Ε����F�io���.K2Ptd���y���g
��Ϻ=�

� ���yxc`����R�)�-�-L60���
+{�	��
+JtkZ��lA|t�A
R+K���>ڞa�W�op�`)�V�d��n�vs`]$@
+7'�	!���%pl�)D���ໃ��aY��:�Wc%�U��cb�<0!+�
탠&��ܰeA�FD
Fo�B���$md����ױQ�Aܸ
��yі��Dq�
͈,�
AmaV�o�,�hgy47FU���
����+
�+�f��y���F��]>�%|5�v�U��	CcB/��V
8�Q�a4�Q�JɯL����_#�)(
E>)3l<컌��/fu��
��3p7e����ů�(�C�:KO��� 5�P�x�`���;�8$q��d�t�I%C��O�Z���Dr����>���gGmI)��U��[kp�
`�"��kê
�5�hjnũ
�A�
"�Ž��(��?F��8);�� @���1KP;F��v,(}�����2u�� � ��m�D�IM=6h8
�x8�S�
��"����2�HFʆ	2(��ek�%��y�c�֠�V�]Ѧ�e]�j!�m3���B�Z�3���iֶq�m�|���s#��A�4E��� ����9R,j�!��� �![6IR�������`{a��
�[�Q�Ep
h�Gc�{�g#c��c!���� `l?��?��U�-*U:ֈ�޶��[7V}g���s*h���Q;�������X����oiJ���p�^~Gf��^��^��
�\
��H��j��'-�&̉��⫈�_�����u\.�I��o^"<<�{ZF�m�F�Y���EUL��Z���~kn��xK�蓢���.��4%X�1�	�WOu��x�b�Yn�JqZ*�@T��V�l
慣�yT��EP=!�������S� ����l
�����^�ŔgQ8Gs��t<����V������xF9Ҡ�ZO9�5(�,qШEs�L���F�a
�11��u��2��  ��;;lemIîQƨ�M�}��L`�0I��V��L/R���0������za�Bj�3�
>
�"�qo%ͥ�\��'��3Q;�VhO�
+���9A!����U�Y{��G��jwh�}
f]�Ÿ:����[��9
���15��m���
\B�8-��z1�O����_7�Eض�ɮ��(�UQb�TL�pc�F��Z0
+���‡�
	��W,ʡb���
���0	�O~n��ގ>2�^����*Ֆj�Ϋ�'���;�[%A�i3�q�õ�}L����w�#���;{��mYI�8������xf�vϏ8�p�m%��B-
x�
+JZ�xQM�P��-������3 ��G~n���x+;�X2���`�]
�� ���s�/��(��zS}�����V{S�s_�AL.��l��F����
�(�@�ڻV�_���G,
����FF �6���]K�jn��
�H���#`��Pn���X�S�sNy�탽6�X2쮃�UƖB���*��,ѿ���w�A-l�W������M�^{P���8[���k��)���V���
'�>������"�1r�έ�oC���-��bu�u�_���^[�Z����J�-�l|�a'�'�钀lEt�k�{�]�F
+[@�����0��ADh8P���l
#p�^�(����h�~
���kt;��:�\
lo�U����b_Z���>����8i~UU	Q&��ņ���6�A\L7���2��0,ȥ�<�V�b�.�)r�C�
r�nx���5��رe-<�R�q�Rc�Ą��CՇsz��9=���f�A1�ˎ��-;�S��������x�a����>�l'�R��m~��s^/3度l�(�<HZk�y
��zdg?J�H��4�5��b�`
���=b�V���`A�-�,���&�
d�B�>)
2k�O���_
��z>�NU��FmH��q�2�o����(4H�D���c#�d��������J���U!j:�
_R�#Զ����Ys��j��AcI�-*�7п	� j�U�NX 3"���s��-F
��+�(5-�|��Gb	�h��3�0�+FX
�:N6
+K)�H��D!��@���dkP�0��
Q��7�!�l��ڬ.g6�Z	�f!ð�����Hټn�P�q*YU�?�Jێf7��3s6���"�Nr9w"�
��f����ז���&�1�
i�O�����!)s������f#
�4�]DU"�7	�S�e���
l�Em��&��r�5R}'yk|"�I=0��#e�,�C�(!0$�,i�p�W
+#�*�Z���f"����,���=I�@In�̅v0�-�@Ω(:���
�|=;�-R�ӇҢ��AS�Z���𛧔{����{Qۜ�E�8[����S�@8`u�fM`HWq�L�T�R�l.A�V�P��5K&-��G�����̓�c *	M�<U&='��ͅ,��4$r.kŁ��pT-$%�רM
�'�BI
ām`?&�|1�;��Ys�_����ؼ�C����璕�bS�w'�;�Z�b���̭�r��p��ԁd�h�a����s��,�[�I�3�K-B�|�
��|`.=�7,�x�f!9�kq!'��Es�
B���#	��{��g��4��u�bZdЈ���.>�9S�XB�v��$55��k2H�������`iyh&�~3�Ir
^?Ey�s��,�޸%q�{%N���q�׺S���ʦ<
 d
��6�o!�p�Q�������́�&?�j��C����&�VO�|����r<z����;d�\��fK՛Q�;PuEG1�ybT�0P:@r}���ڷ��@�F [...]
k�� ZC7��)Z�h2���裌
�Ebpշ5�
+ϰSh00S=�2� '[=�>�x;D�[�
�]R��6=�=�'�s&Pr�Q�2�H���u x2�ł ��p��tPiA��
+��(4#	�)��5�H��v�/�h!U���%z*!"��iY
+�
��a�ev,-9x�w,�NM������by�R4��!֒ti�
�
��V�䦘U�9鼬,����U
l��h����
?w�pۮ��Z�:g���y�a���
+C�@�o�s��I-(˲�h"��rix���J��l%G����񔓐��νI� `�0��2R&e�m�4LJ�҄�#K~����5��1��)��᪹
c��?��RI4��
+a�p��@ėz����c
4�h
q��Kg�:��a7���<���0d>����)g3�S��+B@�!��'Q28�39ֶ��Ĥ��мm'd�!��X��BMb =t8�e�ʞZH���ڢԋ��KlN)���y�-N9w��V��k�:|�0�%�Dd�Zuq��h����j�©\�?'%�=�_��c�
"qk�ʅ�N�@Q�Yy���Τ	��D3bG_
	��e|&��I
�y�4��y@��j�Ĵh��"
+��z�
���?��	�rv��
+���H�����}楖�˼��
�m��yT��ū�`+�	J�*�I�TFá��

'$;e;=
B�I�A�RT�c��&��F�)vp% ��I��@ѽ6�A�&�1ڒ�N�ٕܳ2L[����5>��G�#�Хr|$�$��hi+Z:M����w����>�
��;�ؚ
>I��x�����`ڎ�Q
�_
,�hh�D����s
+h�s4D��#�k+��,͹΃S
a�$����


�쉱?�f	�t�g^@V�f�`LnA4ș��
D�Ho�f��	��v�������r6EK�&�m�-�e�Y���&7�,"�f5�"��
��^و6E�|䴆�欇�h�E�:���}m
AA���0lo��W(���s���5�i�L��\R�)��Enȸ-/.\����l���:�4�Ic�Ȧ�iaI/4/u����"
5�}�eO����={�u��z����>ߡ��
U��`.�c�i��+袺�M�� �O;{���=�Z�qn�`���nUv�/s3�!̻�&8�7R2�tԟ�E.)9z�1�Y�*��&� [...]
+ۯ؁�@Aan���0��'L���a�4�zR�lR�^�:���
+w"�Y9ƨ
X�ТiO|��V����f
�
����G �s��;(�(t
�M`.�G��y�1G��,�|.
>V�
OK���
V�4^g��&+�@	
��`03*�}'��NNd�"IGCXQ;.io8�+�
P�Q5��/���ŕ�m!Y(L� (Y��
Z���������}��ؔ�;e��$�1��P����ZY��y~�#-Ćn��䄚 
+�Q�
&+�I�Y�KŠ�d�/�Q<}�e��DU����Z�{H��ƶ$:L�Dm\z=a�#�	F��9r�@��//���`8���.��h�"6���\Z�ƃ��p����b.�ƽ�%Ӻn��{��J�.�1�T����َ
X����ťZ���ٔR����r��a��]�jCP��H�l��V�7
k�������b���k
��IS���[\N��A�$(�e*{Y�`h�ݾ����
2�[�HR9�V��DFB�N�Re�����5l�2�d���i�Qu�����cz����̏ncG�/�*����k����ma
��[�U���:��Z#Ĕ�.ei�j���#�5��m����5�!�P�G0������
��0��7��jt4���~/�<�
��m�BK������*;Sq�kF6_4���Ups��-�bRo*:C�a�/������6,[T��M�+B���I
� n1ey7l��(�<s=i���Mf렁�)<(���#��?i�jے,�}����S�S���!V���*�m	����EՅ�{
w7s7�9�9��&�؊�#F�xx��
��^0���cd<�Ȼ���a�G�cuT�-Wc p�
+�m�{���%ٴTj>���j:7���� ����e ] gbp���]���fM>��cmӹI���h�;�?,�}f ���W� ᬸpQݵ�LC����d����c�V��_����9zc9�ACw�u^�O�te;�L�'`E���u�6W� ��"�;{Ŀr��%�}K� &�v��
���X+#� k=�:�3{�$ߔI�ɤV��NDe	�z�0#�3�D�Z'�Z:��j�q�#uG��<eTF�
>	#���b�0�
a���
+sX�c���)��1�i�#t?����
�H���%��d�d�A��^wT-ߋ��U��nw�5�ny�ف &l�������(����
+mZ�Fd�J�]��﷌Ζ�oem�X��]Ԍ|��]�
}V�����q�o�h>R���t�7ް�ȪB����J��;ȭ���v͛lP1-=���R��
�5�r#�I�a�=He��|��@��!h�
�������~`Q9qm4y˶Ц3v�9�T�0��3�g��i�4�s���k-��
+��_�a`�jjh	� �w�̔A�c(�=�OV���x�p��on"�/w��
m��<��� ����b��W������~X
��,*_ �zp�:V�G�"��B�R�Iۤ���D��m`��p��r�e�9��4�T�^C>ï
A�(X	�A�gz�y���JU
,������J��)ǎ?�;��=>����#��d��G���W	�\�6�6ڟ�J3G���Nd���Z�v|���r��o:Hޚ�u��L�n����@a΢�&x(%��&�q�g���v����q
G�I�
�c����~��.S����x�1 
�sfl�̦�i��Е]��$�G�b���Rl�3�h�n`���T|\�Չ�0�Q�(�}��=��g�C���#�36��P,Ņ
�*��A0�֖u-
v�o�Q�g�NHX��q�U�|�
I�ab���ui�[�4,���
�6p�L)��^�u��f���^*p�á�m�!�_�,�Y0��Y!d�5�h9��ſ��P�3
��J��Sy%z���"[���2"�Z�Q���B��ǐ�<
����I��D��(�/h*ؕ�KN
�#(R	Z�5
}Ԅc�ߘ��
���L�6�}j�۞��ޞ�K��\W/ڣݣf*3Tv��Wt#
�3:Į
���x$��<��q3�Jc0|����=�<�'Ɏ����)��9�diM8vO���2�쩙��cMN�(.�bGV��Q�1~���)_"�
Ӊ
I�Ac]�����i���/Z�ve�a϶����A%�=B��鑈������R`�r*�0#-�������s�^ǐ����8F
e:�&Wx.ˤW��ߞs�
L�����A�l�d��J%�����2=��G��mj=$8�r]�R�Y��J��zk2Ɠ�`���f�=����#���r���s�S��OX����[ӥ~�'} 3�������&�]�
طIm�'��P��=�nE(x
j��f��,�����b��<��<B����lk-��N�
��C�a�:�j-a
1M��`i��=�cb�u��V���9
+��h�j�2
�3nƶ�`$q׋b�Hu��f��s��w�UY[X[�!�w �,�R��<�r�k-�^�UsXVrMM�-XS�P����Ĝ|��y:�
h+A�o������w��Q� �KlfC��#g3'�Y��#��
b�'�
���;���[�~���+w
�j��v���ͺ|��C�x6���ݾ�E� ;M6��Km8q���~�`$w�2XƋA���+�8�a�.��.XW�+����9�  b�
&=�;s7�o�.����[fm
%����j�A�G�l�D�xs�68������X�&��x"}&f���+J���Q�Z����px�����D���]��L��r�:�A��ޠ��FE{C �`|J�s
*���.���Wg���3�>-�@�܄
�s'�Z���#
��2�
n6��)��"v��v���고
f�`39��=H�	
�������N�@
�5��I�1�D�E�A�AU=yL-�"cf��iF��e�ܱ�
�Ӝ�vտ"LPK�Moֵ$�_���ʼ�z3�_L�����<�����;�H"���X�2�վ�r�U�ޖ�tz�
�yx�`x-ɨcDi�q�v-#�F��F��6�idjXp��ָ�q���5�L��P-f����X)܆p:! �6�1k$�Ż��z�I�T�^��s������m��F��q-�
��#��

A֖�
2��O ��h�;ֵ�m�w�1�O>@���q[Ԉ������.�n;
Æ/��~bn��̽<���, [...]
G���24��bl6T�Aˋ:���`���u4<�n9-<�nF�9�� �P�
��ֆ�#^3׸�]���sq)��_(;0غ���N�Aw�6�%2>�$���3��J�ȧ}	V�>��P��5�z�Qp�tQ����h>Fo#���C�v]���;�}��K:����}�
,-d�7%���v�G\F�ֹ�
Qi��&y�h|�]� ��C��j�'���
	/
�8�Jn�2
 ���<��偝\&���4�
�)�z>�?��\*���A�Vd�fg=X��AZeY
�Ug�}EbNFL��[�,28�}Zfֶw�@^#n���9H�ݠ�I�ao�=`�ı
��L�|��Lp�06���y&�\%w���̘�&�i\BL#�&�u���8`$9L�i*��V���,~k�
���
�����5��
�@:<P��
�
���7s9o���Tgt��(�4g��y�orL�k%W	^���K��Y�������0/F�s�h˸�cɯ�!X��L a�9���b���x�5
k��!=� �BN���>]�����$�
\5k1�p,������`].�`E��5l U���,�`<��\pWѥ�x[�e�V�ɋ�^ �P
+�
+�A�.�
+��ʚ�VNng�`���a�%U���S�Y^Jr�m'�.<a�A��n5n9
/"[<��Z2� �/�2����H��!`��鞛h
+R��S�]�|����~ 9ڧ�����ғm�K��ND7���<3(�@
�Z1$	��w�,�5���L�
��k�i�qn�n6Q�R�
6w	=V�`�+㪗5��iz��j~��龑�n��,j;��9j,�O���
�{��AlGvu�'`�
+�������DQ�e޸�*��_�ީÈW� 
+P�V)��	~C����mqi�-7R�L��֖=8��hK��_#�,���W`�uy���ٟ��4��͐{A�{|�]�p�bB��J��p�\�q
6�q���(.���#�Iֵ�,�����Sڎ�Az���
+Dfn��Ž����;Kk��
5Id��w쏯h�j<�!��K���e+��

+��`�B���8�B��V�=3=�I�b+1��T-��I��'XcŸH��h��~�`LYh~����4jK�*�7p��W"��U��J"?����"��)�Nй���
����NBz���@Ͻ��am�R�
���
�d��.j+(=���y���
+�m���m���3����3ݡ�0m�ԣ
+y���d����.9L
�� �U������,��w��Ȓcȷ����bU_Ժ60
+id�<$��ڦ���|���)�%y���`�3
,d
��q�j~
�1~���f K|���-�l
��e������J���"���	R at xRno�T����5�sTJ6p�X�\�,� ��
9XU�����8�^���^��ҡ���_OZn*�Vpa�y0��{=
��*`b�'���Ǔ(�J�|�5���ffYhC�댙o�4��W���5���m[�W�Z=��$���{y�
�%�&��d�i�G�XH��%i{�z�<av���E��'���ɯj��f@����]����}��q��˛��"����c�{���>��`����[Ѥ����_MЃ�D
��
��5�3^3s���YG#r�: ��z��I�Y#�	
r��
�٭-SLE�*��̘{n[����8�
�I�!���l�L#�Aڮ�p	3
߬`�X��%b_<"~�����ޙ GxEj�҃�׬� k`����B�{�z����W(X�Rj�0
�.0'5p:�|�
q�[����V��W�f����K��af[�
$���9s��_�
�A؃jˢ!�۷��T2���'���a
���	�#��^LtO��T�u{�W<^Q��> }�E��%S���GV�U!J�8��t]k�\aJ� �
AP`��ٌ'���Y��菊1Px�O�I�z�da�߶�����e�m�"��փ�
+r"yݜ�ms���K�j��\��x�]z��r���觌9���6��:<,��ypvBw�1YE
+���Y7`pf]�I�*YEW$�b�x���y/Y!���|�e3�-L]H�.�X9ƶ�sw0}�L^
-�5(��
Ä�N�-��+�+T+\�,l"�l%i���k�q�x�'��RP�ۂc
M��[�v%@��
k�d�L�����O'�.�}��!��H�p}e�
�-��]�������q�³�j
�
gP�<+߸�t�Dn���,�!
�f�$��\�߰~�F)�
�$�Jub��_���,���;�%�Al]jn���
+�+x#��0�>Jl���Ĩ�Y"�������,�{Y������`i�
q
p��ޘ��aђr
F����F::(�(Q4:
������DW҇�^������+#��e%�D)�*D���v���;�m@��Q%�����b��Oz��±�ο3D�W�}��3舽���
���zR�Ej�����A9˹��۶W���
 �3|�֖�U���O��"@�Qv���>8������b^_Kl
���k����(zݵk9�Qț��6��i�`p[��V��b�P�����t��تѥ���^��I�� ƀ'��"�&��h�ۘd��ȣ
�
Z�iXR�ʕ�ֳ��M at X�~�Fx��a�V2/���>�2�	(L�j
Z�l}Z������ܷ=�����a
�S�hkK�jk�1T�բ:
+pY_T���\�2|��I��a��:��
�B�?���Zo,�!��&���&�l�G��t�_c�r�J
+l=x�V2��J at K~�8�՗!�Vޫ�#�	�|�0h�u)60���_�!�:��hdO?��SW&�%%��ɢO��3�a8ܐ��8�?Ju-PN9ً���i�W(��"�b9E*�Kv�-�ޭw���U��5�^en���J
\��:F�
���X��tK�����}��q�HƱ�C�g\_�-�"��l��:YP�ׂ�ug0D�b�›Vl-b�\�@������G԰Y����ݻ�<�'���5��I�_L��
����V�{�_��9��
Ԑޖf5�6���Av�r��v:�`bX�����;��L�f�������jun�׭��8 r@ �
+��%�F-���Q b1�\_I��A�h�Àp�Z� ���2���m�"�Ґ
yX�� a�`ɛU�|F��
�J)��Ū��#X��V΃����A����aҝe3�9#j`Ψ�4
���Dv�
�|M9��"�Cw�+>h�[�H����b�I�h;�
�,:��
���ѕ��}�ނgY���-z�g-� [...]
+5��uk�n�Q�
��
d��T7�����u
r�����5N����!��Q{�7�)WmEj��	��"`�&�T.�<|�@���)5��>
e�s0��=�[[�Mj��% )$�}ϓ��
0��
��M 
�} k?�oV��
M�
��=��Es�;Ҷ�d������|)�8_(�>�-0�U 
����֖�נo�?/����	����	�*w
�������/־B��+�
���&e�T&����hlf����������ed����ً9="N�Qq'����-��#���֣3�4�H1��m;�@y0b�c�7r��Ȳ�Hö�wV��HZ/�e�f�=� � O�9K�(�� GZ^�3��q�
\����|����OA�2�����Q.D
��A?D�h��0�����3.7�
+
+#1PA���^����G�Eao���ӳ{����碍����f���
��S�.?_e�l0���Skp��$i��cr�fd��G�
�z�Yp_h;G�C�ȃ&�n�`c'%�h�HE.�VE��(M]
^��3�Y02�
�)�X��Vj��_�IH�uv�����?�&dyX�
+<�jw!O��{~�t&Az4�
<�Yڜ�;�&�G�#v�%3G5���#��p衼���g
 ��'�g�q��� �m
/�炡ǝ�3��궚��N9ib�����<Ck�s�q�
�;�\F���Ǖ��
�댥.��-�&|��
�]�
m/\�x����e�D�S��:������3��o<! 6�����J�΃i$�N��B�����[*��hg��D_�Rv��i��9o�9��7��x�*8�J�V8����\�9%�� �c��Ñ�k�]�/�Q
������m��Xj)Y�83�\	����gpU�'��bL��j�E��$���n��Y��jK��v0��x�}=OZA�[�ŝ�++s��ՂQ.���R�.�%���0*��'yٍ`2(����K V������^ ٚ�`�����Tp�6
+	
+�yH#���@Sq�,6���:�0��E�
D�l�b��K&C�9^c�5J0G�'���@t�@y��H# ��V�p
��� ؠƯP�sl�U�Ƃ�&�q^��F@��B��O���71�� v�DD橏��	F����t�%&z�E:��>ZN2^ɺD�Y�5*�,��)��ҷ� ��0S��j0ɠf5 A�u��ϢǮ��W���9x�Ϊsk1
 P��x����?��
+�)�<�j�������00y~
ŕ_ -'~N�	
�BI(����*v�V��2
6����?%~>QS��:������U'y��m��J-&+�A�2gU��	�^.��؃
4<�!G�X՛��(͢�P�2YY�\�-F�B��]���@�e[(�Ar��<`1��+	Sl^�,�G�z��0pq}cn13���o��zp��5	I$���cjG)�
��F��]?|�(HAx|Xn.+�²� �������:�
laGȅ���.�U��[�z��/= �Q�EϚVsl0y\� Ϡ�'���'m߀/�{�������r����9
PsN��,�1��=�s�
+z�$n:����W�
�|���hə̶ �jG�w⤟)����P�)i��L���o������vl�Q-l^j��
(O��������]�&��l$���R'V����4w��_+����x�zd�?'��|����k�J�$y�^M�jgQޫ�>�2���
+�Z*MT*����|���aF0 ;�/u�d�R͂BԪ��d��� ��o��(wl�pӄ��9i�KO�¦%E���|�
 G��ـ0�Ԏ���mYA�AgIei�x�<	�{��AT��
>_�[��*�,9
�^2�U�~��%n�|
�l�>kG�a8��R���-�"
�>���j��+C��e�8�s���ȫ)+Ι~�
�&�d��} 6=rZu���Q��E �l�a
��&�1@^��M�_��=
�v���a���Ң
��U�ml��M at NP�q"r~o�Lo�\�>����%���s����`j�]�i��-6s)�-�V	�Qz42!���E��e��P��,S�x
Q�Т�/�۝��nQ�j7 H�^Y=��m���m�6O��|�

E�
�}q���n`6��^��o���V�
+��63[��N.�
�(��*
����E���&��+F��
+���(WW+�r7�����Rb3
+��A r&�������ƥ|�q���ޫ�Y�f+��0�E�0+te�R1M�%���fG��d%���- � ~�\
����b��<v��J0��~`.��{�Fh����k��Y�-�|

X��e�B�k�ZtdVj!*`Mw�<
+�\�xG!A���o�_(�d���Iӽ��
�^��:�xͥ�Έ���\��k��
���<���8Hf,Zr
��j3�H&��«S1ِ(��
��-Sӳ[��a���)
$��Gk�x7���ۢ,��T�L�FI�0��TR�fq�BS��n��
U��Qn�H}��u��-�Ŷ���B�
+���X�i�WMl�\�ڹ��}޵���I�d�������*�e*���d-ۖ��c�Cu��?
+����1+oڸ9Z�칗����LY�c:�Z�r��&h�N�ul�S��W�
��k
[������deˀ{�C�w~[\T���Y�Y�M����8rE�� y�U�4.��M��*�T6*�[�R���̩VlJ�/E����T����2:�v^������ ����[�o�Is!7��	r��]�
t
+����Q^%�;���'
+o>���
B��0�{�眂>G)�!�[<N,ed����y|ŕ��T�3\���6�;x��@�q��o
9ZG���9g*5J�8Q�'C��ɇ
+O������S�d�g�~Y#�xT{�=�L=2i�6�@A�PЮ����[�ɗf�'�K���
t_�02�v�L���	٦*<����@�V*`F��H� CO� 9@����I�� �����I�p��6�ۨv��;^�;W��1��7�e`T=�I��
�����\��`��`
�=��s���U6��5�?~������19�=�[R@=,�k50"�
V�i mk��(�$m���w���i��A9�C �`\B�jq1�q��4�n 5��l14;�R��9Tރ��,���
��;�1�"k*p
m ��-��G at 8
_zP0h��a��r���-�nC㛍�5c�bڋ���+Stdd�����AS��W���p���o��ȫ��
�n�˸�
!�zp���+$��r����i����ISvE�hkmu���'���a
�.��LlQ��/��y�(����nT�}O��9���QsS� vl.�����v�0�f��ޒq�s&k�>�3j�Z� [...]
GX������D>�
+pF���
+�*8�g���-���ym��u�������3���FY�A�4+�d����u=�#c�"�y��a�:�p&���I��j^$CS`���$��̱a|����o��� �DN\��O��0�Gت@�E����j���u_�i����<ZN�L���ܷ=��Ws��<:���09�Nho�x?Y	��?�R�I����	�Q����'���
+w3���΄oC=����=�}!3�F�bp�D�:
�;���篙�x�Mf�~
�����m���1�����Hmb��H��))��ì�{&5��ն�3�p�c�������JZ`m0
<�CRTrգĬ���
�*l>uیX��
[ɍp�|��j{FAŒ͵��KF��$Y����`
��8]X2��ԙ�?=v��e�T�s�=���B�� �B�6���G��E*`ע�
[3vޤ
2'�J����~�f���I	왻�"�����7��u�/35>ӫ���(�ط��Y*�}�:���_�/R���圻n��/V�?��,0.��bo׼
V���D_&u�m�
$ZMj�A�6�j��i�Q�+6+����lfTN���@~�i��Ōֶ5�-�Ayռ��I���*��N�����o��滐٩��ې�ĒC��M�����G��
%�]�_�uc�ӡ��Z�������'G���M�%�����Ab;�乊�.WR�#�'�1.�޲Bƙ��Vo��;�{�,�u�^�b~��O���!y��l��7��>�~��f�ܕ���k�ji ?�����&S7KWm�Ͳh�	��PZ6���q
x5fT��O?��~U�ێ=��}n��2����	L�i��	�

����C�޴aUu@� y
+�t���۹��,W�&�|��jCo�0;�`Y�j��Sm�
+�v�Y�ۇѢ&��FEK���}��d�g`-�s�^ɽ��lSX4
$ף|?\'~��*}ۖ�[Z��^�k�tl�~hx���F�������Fq�sR\$�"�b���}u�J��2n���aI�Ƭ�
��3@"Ӽ6�����kx��t�4��.jog97=�_/�
4�mӷ`���T�/%�d}S��A%[��vm���*#T�¬��T�e͵�a��Һ�
�:0�Hۄ�X��n$�G��
�0#ؽ�G�������q�;��
� �N
��N��~���V�C��
�&�`_����HF=��r���=�AG�w9*���
� r���-�"4sm����$�S�%�(���~VC���#�l�2F�tAtǖ6��HZ)Uؔ�␙��/;���U�د2!��(�y�e�W�o�G�V��2�
^R��¶�dF%mq�-ܠv8	�ԶIY;\��(kQkK�<�3t�ja�~c���H���ÐvR����_|b�LK��
ĝ��MZd��y�'�Q~�
+8WP�*{oc�[�z�3܅R��;�	/��q͟�?��?�H=�>��a��*��[��� �8_�����/k��Zk>dJMlGQ��({�͘Q�88r��c-�4B�(�������rK� S�|@�y��8KZ %iI:,��!��닎IN`I��_�
��g�Io��)ea��n{�zc�D&̄S�B�/���֢�k޲s`�̰�|T���
@z�n)IP*�T���0�h:�!̣T�у�
J&OEf4
��Gq
84�FVJ�Q3I�c ��v�m at L�3��
�>����e*GL�5q,����_�2<+�.
��pnf��|���+��m�(<�d;V��|0}.^G	�KC%/�a
��U�pT�dB�n�7I��S!�qM{���ɛ�k��
+۶��4-���װP��i����������S��Њ7�c�ѩ��(q�:����{�mE �f�O�k��! Cq�� c�v�:�W0
ʍ�Ѷ[�(�ŒM�j'ȥ�,+�^��A�pe�m�(�@����W$�	���[�e)�T�y8�
�Y�rA�#�Xx\
+����:��c-�"�;U��	F%���k���j���5�'`.4��F��g3��\8�a<"v?��@}���

���
��JH�6j�ƌ�D��h{1N�	�--y����#�
���re�{�g�W��H�[�����
wI��ՂZ��
,da�1D^�����]%_戅����%����}A��͒L����`J�H��+�
�MdO�	��$
[���t]��t�

��u,Ⱥ����B+���
�f�Ѓ���������I��P�'�y�ln�\g>�-�K�,�RO�Km0�g���"&D/k'˘��i�NR\E@���f��z%�0x��z��;dF����r[[�,]K�
�L�� ��Hy�]w�ϯ[ �yF��2���z�H���5��[v��խ:��a��R�OަG��*SIz���nR�i[�[�xW?UKŖ��)�j��z)�" �T�`�R��$��t������?�֥����>��M��
K|�-�߶+��i@��f��m��_��Z_B��	�
�c{��!
\"�ƖRK޹ �)Ӷ
(�����P�c���F�H����	����GoA�����'|��u֥��¾�Ko���X��gp�i-b�_zY>��!���4����%-��]����F�v�SZ�� �s�^�&�粓+ȔDz�<���\#
�-9�ZK˭Ql��_��@#Rlu��0�����׸t�R�5[�k�^�R�@Fu�
����ܣ�_�q�G0}�
+eT��T'k ;p���ؿ�n�<@5�o㇂'[�^��C]�_Ֆ_���������Ф��g�V.ql1�b̹Z�aW�``�5YZ20�0��eD��wx��Bv�F�d#���T�|
+Q�U���*�Q	����'H��q��aW��4�v��^�7��
+k��v'�P�aL�&
+&؟���
+Al�m9�M@
T��U��>]jjLS

@�;���F��>��=
4Ց��3�e�vӫAp���m�+xB�<g2�u��*�ӻ�B~}ݼ:�1�\5��BѥO��|!�@�Ѷ[��} �~��G�_��Zc�0�1N��V�W�5����]�i����y^B�*P����]{�
p��LJ
� @3�m߂��)�N�0����9Gu;����'b
��r��~T��$TE
�\��� ���"�竭�܃���xzn�5�1�*ļ-��@^��}�hu�d~Y�ھ˶4��e��Zv�m�"��=��ɴ?�p��
,+0��	æ�B.���-��( 'Xo[`vKAy��
��~ a0���4�6��?x��5=d*��An>M at m>�#˱TJ���k�Yw=��}�cn_��s��=�ij-ŭ�xx���z.
Z���g]1�%��v)���[���I�,B��
��$	�TZ��K�����*H�#]7��Vb�������M:|2 �_0#V� �D=%�I�	 mkӫ˫lz�俦%��֤G���@���
���Et�I S=0/ʑ�������kK�׫\��g��e�\�
T��,��	�cB�*�=P�B��J@�G"{{UHWn:
�}��pPx)[�>�@�A<�^�8�G����(5 
+l=�7;�O�A��?�a�۾��N�`Ӷ��i`ڸt���m�_l���E�qP��wW�LVFI�
y�Ր�N;E �U>j���K�zq��A�^��)����Ak��ӣ`V� HS���*ua8�ǎ����o��q�5������A���ețʢF�����n�Lh3�S��M���[��y�a����yY9�Q�,�����)�mp�}�������֮��b�])����
}�A�p�e��p�[� p���T��e�k�`G�u���^�y�5gE at .Q�r��8�� c
�;қ�kq��Z�?0�!��u�
$5I3���e�}
+uDAJM�^b�B�Dy*
��_�kQ!���B�D'p�! 5͊g��X(�h�ϓZ���b�����#xQ7����G������69u;�p!��
.�����D0��R��p f�
���#�I���A�G��A�(�#��O�=�%�K%w��u�@�p~�xӶ����_ˈ�U��V��e{���J�Ȟ�WQj�}|C Ҭ
ǜ|�]s�P�Z�=Z�
�k} �(�у
����F̵X��Q�

��a��Z2�3}�
K������`
���ϑ�������A� �Z�G)���%U̘�kLaX�Pu�͖$����O��
�R51d��VLM
Yr51��afS 7���8��
�kp�rn�eR�K�\���
+��a��pS�� ����nG����1�\�36��\�
�
UAߨ��24ɟ[_���bj*k�7�Ѳ��������
+λ8���Pme�k�ӒgU
aղκw�<��\�
Յ�Q���˦T!�SdH
u��}�PW�������({�R�Ȥ�-)L��h`�P�ϭ�
�����Y�?�Ԍ�jW��V�@��=��f�J�SH�Ǘ�+��UQ��**(W�ԚUEO�Zt��d�9h�̼�����~���ܙ��C�
+\��k]��K*�&����R�Ւ|ID&%�������*#��ү�o��f�<	C0�}�,g.�R$G��K���&�%�eo�����
 �"{+��Kﭹ�F�7'⅂��2����m
����ﯱu
9��� ��j'������H�2b!������c��$���\!�D
�z�Q�a���5�,Bٷ��;<
7ղb��/"�hז,v�;têCU��u@��kaI�U�&�gjm
�쑏�J]���g{��	��W���uQ�
d�*gG�����oV�P>��Ħ
\����^�9�I��Ϯ�꺣�q��)�rm	�J��`�;����,�V�6
��*&<J}^��1�[v+���Uo �w����<ٖ~.jk}`�Ac�����-:@a�) I�:�2�I�Ajq��m�����
��&u˾�R��j�s<��e����^��鱴s1=6���JY�T��ai/� ,]����{Ḭ���q����ibo`����a
+���K��fq��ݴ?�;D���>oSM�����u�u��j=��gYOE@�JP�_��]�]�4�Д!�ٲ�J�k�p��Y���yF�4NZ���K��.��e�,'�ԁ.%�^�J��zok�ʛ��Gj.��Je\׶���\|��)����\_L
+Ωu^j�ԭH�OU@�@��K=�Sr��YzUo��o�����
�{�e�3�Y=�
�1�q�E�?Bz8�#�;�Wɖ�zC�l~E~��UU�jk´���\9�d&7��~����'&���|@a���zP��Vow���]�UO��3i�=gKSFn�A�aگ
�䘆��imX��`f�C�����P��ƶy��I�}N��j+�in��N]v?��T���������Q�“G���N����j����U��uKnݵ�
��wuk	
+��-w�&��j�t���a�1��ї��-�r�pXɤ���6���*�
+BɦvUm���&F5�_�NJ�a����z�S��?��ϿW_��6
f�sj���՚Bd�<
���KP
��9�|�q�գ�˔�ɲ0���ߵV��Gj/���j�cD at m�rI��P�H
�
�g
��:�����HA_
��J�Wh ��j	Ym���Vz0�,�8
'�:�d�W̉�s�'��UyF�B 9��h��U4
�>J']^��ԺU�i ʧ�YZ
+gUȬ�D��\)ƭ��_,�\�o H�R �y�Ǧ
Xϡ��F"t�
�ē�������2�@����.7�^�Ť-�yw��C�
+~��-��MǙ��
��o�*����
����Q
뫂��>�h�3��pG
���ھ��Wnl���5����r�+�Y*�_��7�k��N�*�R��6~�_��'Wuʞ������:M 1YZu�k˰>�,#�����œ�M抂2�
+t�0pג��v�������F at z���8�Un��uu�_]�
�����m���F"c�����J͂���7��#�Q@�����Ar�T<�T�� 
!��43)��m�f�J�b
+�W@���
+�
/_A_���6�ж�Ў�:�����Jn�N��8u6�qs��)!�Ӏ���S�i \
+����
��-dĵ�Ѳ=�zV�H�
�6�OY d�)K��[�b�z�a�p)F�L�5�-ڲ���l��(4��ڣ�j�ń�/��8
y�S1��g)
�~Q"sbt�0_�,Tk���sf�K�c�vK���fHSg�1���S�t�m�u��
������o�Z�8)�8�<�����*��H�[t��ũ��AA���eD.�e��+i*:���5�祮�A�U� ��ۿ�'/�
+
�,�nw�l�*�g����e7>լs�����RGe�ͅv� s�e(d�����-
֥����nW��Y�<��8�4�{Я� �
+�Q�܁��=0��˟��_\�G
+��C�a* ���
K2@�>	R@��
+��~z ���1H��
+�� }�r�d�
۽m�+�55p;�
+(���t�w�u�tl�����3�zP�\u�J@����K����
+�_c[��_c���0�mE�p)E�2 j7���
���	8�
�
+��!����kl�T��Va �0��xzҬ���"�d���+���}T��
n Ԡ���� b
�:G�<���/��n"4D#����V�����ҹ����o`
+Q
*Ҷ��
,�v�3���� ���J
ZI-���ԫ��>4�X��4��u;�Y��InU���4%	4��4	��>��^u8����7
+�����+�%����[
�LۭM��t"U�\}Z	�|!��q���KT<s�u�<7#ݻ�~o6ҽ���]�2F�`�E��?�BK}PP�?gx�b�4
��i�D
A�.溎�\�%b�_g��'a�L�I?+2yB����Z4_�'�y���&�
�=�n!���k�m
+�T����<%Y���^�^'@䫑)����8VM�����gԶH��`r�$c���h�(�.TFnW�m�(�
"��P�vM�p������?/����$NT�`�^���2x�I|����m�<�����@m��~��tl/�n�̕��)�,���n?�͓�e!@a��_'
WHN렷��mٔ'�(�+�BF�ޖ
��4\���aZ����ƍ��]�Nez��F�%�;�w�,�7)ml��P�p��LX�(
+"�6I��xx��j�7�{�T.�iy�֘4��E�@����B��;�m�
�@�7�%���-�
��t0
�]���=X8�-)�K��T����!
�jLHeP⌨w���

+"<@@}f
+�2h���-
w��G"���?��Iu�����i�8��׆HL�R
e\i���x�������@���</z������M@���Q�Pp�:��҃2وԲ����͋y��t��
�W,ž���Ψq�"4�y��6{��K�GJ��
<
Fي���9���*�,��m���i�
D�>�����6kb�{���
�ژR@���l�,@�޶��
_���4��1�>��G�v�fm}r�_��3n磀�_i�+�����
��D�
�Y%e��jhK��T��j9�d���]���̸.
�<�#�A��u�:�Ad��|L;��4y�-^A�+�#I,�et�<
=�$	���i˯S9/��h15��դ���b!9�*�Yy%�ߗ�&t��Zp��L�x�v͕n�n�Lk��$�F.P�/U�x at K�O��
����F7�Q_A�TQV�7m���o��k[ѱt7�� ���m�U��U����&w7�i
+�
�~�0�R�
׉�|y�e�Q�
A�r�ЖWb�Xz��ׯ+Y���}�����ݩ(�
\�	���:I�c���
�
���
k�
+�����tP���_����K��;5���w� �ֻvKj2xl�

�+<, ��Wq���^ d�dq�>�(��(�d��pd� �J�R

�ơ�B�<�U��O�u�t"��{
+{r�ߡ�.K������`�\��u�j_u\z�,q#K�J��bT�s�
�z�
� �p0D��e[��Wc UU�T�}����v����=x�m�
+�����zK�N�,Y�m�.�"�2��<�@�����]�)�ە��ޞ9-���
��R�1e
�%�2f�5c����b�ѶU����T��t���V��kO�C��������;w0���d����p
����=h6v���6
��ے�:k�O��r�21�el4��@��z���vE�VX
VR߀�+uQD�Yי�,�ֽ�����f��*9
�nEm{T�O��
q�,�
 �4��(8NK�R��ĥt�KL_�	`�Nf�v��,��GP��aEۏ�%��S۷`��:U�].E
���
�k��i�d��QjF�UTk���]��eq�����-�N.ې��A�����G	���2z��Ίi�G��o�L�z������x]
c��~z�1o~��;̾�u����Z
��x��b��ʸ��>t��͝m�Қ-_�6w��
Lv,�˃_��OSD�]�ΈNUgp�Ѷ�@��i�B�ݚb��U�g�U�I�|p\GOt70��
+4�\6�����Ek˒��ԄK��0t%ح�)��'
��������
33�uG�g�A?��/b�D#��a
Mp�Ak[��'
��)�܃�ڃ}��WpݐzX�С\�1�M
���v�sD���KXm��Ci�
+������N�Q7o��c�6B�>�/�\�����|U!��x](�
6�d��es����&�����
�J�S��d��g���w�M
��QZ�J&�D���F噑�aW�ݛ�8��g���B�
&:b���8���󓕀痁�yu��l�@�'��m�OP��.e��	����\��
�
C�G��ҤD�ȫ����#��S���5)�ro,���e��7�^�	����ŏ�P�1��4�Z��l]ز/� ����9����Q�_˕]�Zc
+/��׫���u}1��Zw�
����R���~)){��HA�>��P,eq�I��/�.C�H��Ҩ
^�â�!@��]��AD���m�J
z����=T���+�=�ow��%CƥL
t��8�������0%��P�
+@7
�4�8(m[FL
�C|X�0[*ji�ð�)U��h5�4H�
vcT����mň�Ʋ�Vز����
�ȖY�
��@�^�
+
ٷ`�
�aR���|kңe
���@�Q�����Y}���,�`���n��0.���PM����K��I~I��/
h$4�M[�<TK����3�?���'�am&~��� �-�N78'��Rո,=({�z�,���(��^/�Rd�j����+�*� ��ƶ��2`�w��R�u�s㨇5�:��e;����z �Y=
+-كgϾe���P���1x۶�<�T��� �}��A9Y�a��]�u?�euo���_!M�2�C�ע��ܴ��}�Ɓ�
rƧɼa%�0}����9}��gg���
O1R)�g�V=���[��Ӟ-C�(8�v ���p
��_�&��-<?_#�����W~��� �[����Q�x
b
�O m�po#�OE{�?���+��ӫB>;L���U�Q�
+o�~�J/;�@\A���Q�+��c8��\��a���I�(�͕=��K�TCp
+���/�D���[�Su*o�L�ֱ�_��:���ނ��^�m�Չ�c�;�`����
������`�8��s
^��xf�Vr=VKuT�U��8�s������,�:��W���=���i�[u�9�'i�G�V�s���N�KO��H��I�|�
���Հ�k�
ڲ0��bgƤ7��G+;�e����c�����e}9*�L6��������}�Z����
�zOP���ɌfU
5x��%>���1���uy�[��=?����H �{Ǐ����#-Ov�\}��g=

\�
�Q��^0�m�}=�e	-��:cZL�����+x��L�gz at eV��7�*:��6~���Y�]���=��Y��`Om
�,O�E�E&+�Q at k[ ��
,_z��m�#�X
�
�Y��Ǽ\�'�:�
�f)��5�b8��
�݃=��8)`�bF]da�<
q���(��)���k6�
��.��w+6�
�n)���뱭�О
<3"����sz

|�Y������1�e
o�*lE�녤�|�[�p�`�5�s�C���W��6�b����5����Y��!-�a�֌�=ٽ��V���K�e�{�[k2���1�N at K�
������M�Ae��.��
�U ��
+>G�
d�8�ᛇc;<{��
�� �4����-�0����c������k	���W��
�|���:��!\��A��#���U�#�����v^2��i~�Y<�>#a�r~C��WvW���t��4�+����T8����+�S����e9 �0�E�3w
=�#�B]���ɹ����,0]�����ɂ��D-Kӂ%
=bC2�=���<�;�
��k��m� ����/p�ϖ���R��Lxy�`�v�s
�mZХf�����
l���o�v��[�$#�+d(�G�8b�T
+��uyyX�(|[
+� �I��
�~ m
$)��c[�l�꽭�)�Y(3��nt
� �m��v��l|� �;��fe�3�e��%�D�"��7��"p�ɮPW(Bߨ������K�=�c��
�uXex���rՌ9�qF���
s��{P#�ii
�e:S	)��T���zxR�ʯ�t.�/!�4+*Q�W
2x�B��l�-�I���4�@��
U��4("5�������
0�*d��mU�R���Vt[�WY����i՘+���
\Kj(�	~C��oCԩ��M�r�nA�%F����!j
�,������+
X~����
���i���dߎ" �m�W B��)y��xk����+��&+��2��04υv�[
pi�BLC_ﳊ�s
��ߵ|'�?��再��i�1��܇G
���v�g���V18|:�V��z�e+-��@���N��_��[�2��
��Wd���_���f�U�-��
�
+�,����zX�yS��kl�h-�}G�>�(�,bJRЍI�xi����
�ׯfLj��F����ޕ�妁����o�MK�F��Nܗi�#8��m	m �?�-��%X�U�-i���N���G�%Q	֪���+&CF��(眢C������\)��ڏ�S�K�S<	` ���V_�N@���n�o�;;�f#
ߜx����e�cb��%��3W���4p�_~^�A��SI�B�D��O�9�`��r?Wp%��_��h�z�9Vc%mk�EjM�&@a�B6�c=�}FC@�aXR-�"Q����YCp�V5����� �$d~/I��%(AK
+z�Ӹ\+i\�_Z5*�C�o��ayk�~.k&���UI�\K@�~o
T"!��/��I��aPY����!�o�d~��yڐ��Tj9���-�
�����*X���#$�|��t6œW�l3��k�E1��}˓/P˘�k��K�W��*�,J-F}
�P���_)�d��O?�H���
����<�>�n+s^�\�QV����|���E �6n% K�A҆��~�s���-A^�đ�1���9DJ��bKG�Ӱ�<�ъ�b�-
wrް[�/�Pqx��������(&��e�K�<�6�,�Bqd��@����_�A���m79�^H�6���d3�
ݖ��)�&PB�!:��h���CV�_b��2����+������| �Gu���
 �Wh`���W�w��iBV+��‚�a�?�eQ�Be"q�4�E�$Q�
�L�����֦�
+hRl,���u���pȓ�춬x����%I�>��b��Z[Sj�����+��`����
9w�[%u˸��w� v���^Y,��W���r
��м&5
u�/V09O �
+΍[�����q�=�h� ��~�4o�!C��p �n�N�4��H���B�*{l9-��?��JJ1�,a5-J�R��L	H)َ��k�g*oJCIiZ��B�$8(��s��T=t�o0
+���YZ4�V��
x�-h�?�@ޠ��Y�Z
�@v
������_�Y���@b�v�/;�,�R[4��ܕ

+�
��,%�X���y���

+
�j�R���Z�O.!U�J at Q�K]W�bQ��S�����޼����j��5�m8H�l`zYɘ<����A _�ߍA�<��a� �gx'��<Kt2��\�G�1��3�*ױ<cc�9'���R�>��u܃N�ڞ���c����lvu_�ŵ��	ܖG�\fi���%ky�5z{~���sd'���������`��E��3����u��
^����c�js�/mWL�.��
+N�C~C�q�גp{�`�+0z�c��<�0bό���܆�)=xf�
�x�+6�PhD��D0ϣ�@N���
���i� ���6�5]7.
�s����3��B������n{��
��W�|���󀛛g����1ߗcB�
+#-7s���t�2�x�t�D`a5��<��̙rr"T������ͦފ0���FN� ��^�YI-i���孠�����`+�wF��ށ"SR90�:�����y�N�#�߱��v��9�!�9�<4[�>�2%�
+�=�zֿ~���[G�~�xk�Eէ5܃c�mK��H�ն���Oh�Θ�>��
�V	��������5�u8�ӝ,�ds����D���[k _�Q�R������18�
4���wYIG���ND�Vf�h<���^ZR ;&�^
".�#8
���Bu/���5
уa)�+ԧ���
�W��몀3C$��D�rz)�f at G�C
+�� �/�
+L�������vz)��1l�h�6��m�������\V�v��]��,D&�����rP�م���d� ����̇�'����|'�+���=p;ڍo�쪓'�z���F�g�\,Ph
]
+׃힜Ŗ�yD����< [o�X��,!�
��N.�`�q
��v�l�1m�~�
�|��~��y�.~���2|��9*��)47�r�üy��I&U��w����#BelK�֤�c
��s�6�T��0��׎����2X^�<sކ�
�"3w�mM�ݎ����5�
��Y���n<{k�i�Q݂|�3˦}����&8��WP�h�~�g��/+PT�ko��CC&]�lc�E��0�gO�{��l���0*Z��n�+wmJ)�ۊ��r�S�y��a���wW?�ޙ籂/W�
�_����?�o�����������������_�_
���_���O��������sQ�^�l��g�a��[�`�r�DZ�D�8
WW�R�y at +qkI��a�s=Ǥ5�:0�����RDXD��1��
�uH���Ew�t��#m���~bށI�"��X�7�p��|n
[C/�����fH���{�3�~
�������Y O
+���~�zKG����n"�ؽ	�N����m�����7�gNO1��q�lc��3���\�� ${�.�ͼ�X3�[(����
+�\���B��(��a��4�Ʋݴ�� n�v�q�K��E�f������H����c�x�z?��aO�N�
��p���H��X�q�
���ߑ "�y����~�mڸmRqT�喈��̸�w�kre�@d���u.�.�R	���6��2��7q�3��D�s��d&��7��S5⤙x���"N�F�yw@�:��g�
/�*��v-
���
g�zc?#3λÕ"�
83u��
�/���N)��T���yFТ ��~�Y.�
�	Gj��_��
�J���Lwt���
����w��@�cͱ�s
��gl���A�\~&;r{�.,B�,�/��}������V�]L�Hx�TX*!�<�B��ZyD������JD<��&�sE��gE��/��%� �g�\K~=+�3_��p�=��[%b_��
(�bV��D
+�}%�k�
G��k8b���f�e
���
sTw��3�?��ʶϛR 6Y�z�<5��ۘ��\�3Ȗ���
�2��	b�h
��f�`_1p�Sl&�m�l~^���? �ղ���=�3L�^6��2׹n��
�N	K|:�z�k��|�Y����ʞ8˽`�&��ɳ���9FW�jxl��=����.F��a1c~�O�	���ݐ}�QP��7٢�)��mꐱJo�[�f¾ɚ
+$����(��"�,}ƶ����n��x��衯|��8��Ô�6��MR���!��mb�D]"�<�<eg��=����4p��p]}�cG�J#�eip�I�>\���(����س,!tg�H�����i�ȥ�G�~� �6U�%��|���6]�Mj��@�2�^�"ސ��-xCq">"��Nh�S�[R�?�o�!�3'�+q�[��o�(�SV
�%b�����o�3>Sr�����iA(�D�-��+5	D���;�O���ߒ���[y�f��D.o(_r
+xK#�nf��)o�l�P޼��PĖ��S(
.s�NOa�����K�P�U�J�����T�:/�&�t�qmLh�F��bg
Gk]�HEߴ����B�D�t�p���;E�q�;
������Xw����|=HE��DŽDK#�ڢ{���ܞ����8g�ʑ�Q�1f��P�
�T�/��)[��k[H U��$��0Z
+�b�6&o=7H�Q�7��"j۵��j������ྯ��`��
S��ύ���#Qdi󱼀 V�N,��!��E0	�0)l�Le���ύ���j �#
<v��]G-jSē|�$��U�A�s���
X��HxV���Y�����C)�W��1�ɱ㚁�`2;	]
E��P�vPĺ,$Ż&���
��(�Y����	%�yF�E�e�Ծ��)k}oh��n�^����J��Q��t�"����U^x��
+�z�""m�Z_+[?g��2���7�����o�3��^��
"�&P��S�з
�IH'� >o�	gƢgf[���-�N����"WV�u0��y�
���j!�+��=���B��nyr�g'
+D]��n��'��@%�m�s�U��ye��sS�~�j��Ҿ��D��ܸ�U79
mmM^z�Q�x���#��T<����VR�.P��
�9
�Jě:o+J�T�����U�E-z�

+x[+�mU��
+
�^���
/U@(�m͐��E^*����uK>T8y��"��N�Pe�"
E������P�D�kĿ͙Qcw���	NYq{�Ym��%v�;=~�.����:�.
���Xi�)
�
�!"���;^	g��G�"��q^��Pěb>o���)">z[z�LE|(j���P*�"�%�h�����&F�y�(��M��~��xZ�"#@�PVk:3�tљi` ����ی��͸���s?r���6g1�b�Xx.�
ʸ��ac�-����Mþ{qr�W�xw8�<�.�-,��	
ۅ��[fFPRą������ ��W��3�掽[��+�i
�^�J��G0{adX�*-)�� T��z�U��|��r��U�lٝbqE��Ϸ;J��?����_�`�0ꡭf֧?i	�G[��?��=
�*i�
���A�
\���5l���6��k�s��G!z6F��s��b�< ��-f�YG�bo����v�_����&b!�S,����G����y���G	��t�`�� �uڍ�ڸ [...]
��4ť-��&�&���'d���3�[��5������
�
��쳝`3D��`�E������M�8�Q@v��
��+�DxV���&ދk����������{��N�fA�
7�������
��+��J�s���Ւb8Q����I
|V�]��}�a�����}�`�c�z�~��
��ٓ�(;�/鯽�}"�r�Λ�ڝ�A��d��iq�n�e�8�{�� ݐ&ݰ�wp/�����(\+����t��j���K�^T/(0b
�G�����R��'�-�� ���~��v/X̝��n�sp����낛ֽO�v�<q�򝤿�3L���ժ>
���$�<k�mQ0�ƴ�E^��1�0{�W�����
庂."0�S��w����7��}e�-��0݊�k��i��p�)�C��ٹ�Z�!E4s�m!$5����s�y ��/�N,b����5��_�>�e����l�g��s���
+:�P���!b���8�x%oӭ�a
	�9a�����p:LP�(oxDA�����\��(

"=)(���t���ܤ�B���!�7���������Z�Lc� ����s�'��i
+���S�b8���3
\��n�x
l��y궄�� ��:���d��r˖
���ܔ��Ď�D熊2�v?�6p@
�Fpٓj�����
+�9�!�I�)k��j�>�+4p*�|�C��:h_��zQ1��
�%x�7�x�2Ԏ�ܨ+^{
F��s9��24�Q����
����l� OP�� �$���Q���8��-[o˅ʇ��qp��z�(b���t�5Y�P3���d�	�j�1�lE�&f�Qµ��2��aഁ�j��}.�����360��l�>S��m��@~��Ĝ�`Jhm

�����'˨ښ��Ց�g��_�X�o@�(�,�p~�s���?�՚��HǬ-��T�F�yf���D^9X��U�G�<b�e����D��8x$�<O�\M<>��_ǐ�����?+T0��mvb����S���?��{����y� �����+�
#�	��f�C"<^��a��2R��
&@����A
+�Ɔ\��5I�ñ
�\��X�Rp��
 �lql��:%ֺ=�bVb�z��/�[.�I�3��)�^�s��ζ��\��Y1����ӕ�\�_'�
�D�����ǁ�(%˱"dِ9�D`������I�i}���-��w�xUt���a-
␖�	�+�2R�`Mr�ʈ�ɯ4��`u�G��8�����.z�8N,d�� !ƒD<�27�9�/r"����n��f��[����ɱ�J��b(���lV���r#ˋl�����ڌ�1�yΜ���o��8l�{�r
+[,�2��^C��^�v�{����.y�29��:���I� ��,@�mtp�&�Gܛ�Í�T�
�?���9<
%�0����'�
� ��?�mZ�I^9��iKpU/֙4v`82��t:��.�� d/Vxy����%T�
p�,}��Ơ��#;��u�ԅˋk�$�:��^@��?�+�ZD�Aw7���a7�q��f���*m�,�����tn�V�N!�rB�+,��I݆�1�~����I[�
x&��]"&W�H�V"�-�$p�ͱrI�b���l�Q4�0%�����ۉ��A�N#���g�E��;��D|
� �D a�͐<���-Yt��h�20�
F��늑Г����);�����
tcX��(�]
޵q1p�h��
g nc�޷�&7](�����!~��0R���
n���o�G�#tc��a�up:X-p_���v���%!RQ���wG�V#A!A��
�:c�
�+�{������2K������ ��.�Mx�_"'f������jt7g��;&a
P��s�xm��=GBu=�w���XY�@٪�Ng{u��Dۏ}-�~2#u�&�[��N�o8�W8��6�ȿ�^sYd�_�{�j?˱�N}��|�c?�
t�櫈�4s�������,��9Ө<V0
+�b�X�+
C�o�"�ʏX���1U�P�VTI?i-���.'��]bH/kf�m�i�|�-��}��t+DF�><�6P��D�
f��(�9h��#H�����U�
++2Ȓ�nDCL�DŽv�e����si
+��'-q�;���� ���s\�
���o,��r�B�W%tM_���*,�wU_X���-/4�����,�I���ܑ��@�h(b��ڸ�U�w�-	h�li�a!$�
�0=����Ad���~L���� ���EHT�5�kWp�Yk����
�@�O��\A�p�y�*��=l����}�
+�u��[\�)��]���H)��v�FK�M�B���
�jbM��;���x���upm��Y

""B58�� fψ
cˈ���Ԝ�3()b>�zgj9���:�ҍ�Dv��+����W�J��'^��?N��t���X"��D����c��2O���&W8�M�%�/1�?�;�/�L��Ԩ
z@ug7o�N�Ϻ���J��G1���>/F��&4�mD���'�\��Dij/��ȩ
�o���v��P���A�%b�j�icp�}�����N�y���i��Z��3[�'[#���bw�#��D8���A�QD�I~
��[u^8��v��p��p�p,L��� �V�x'+S���aL�2g�׺����)ʓq�V��1�/��@k1��D�c�*���y"��E_�zN�,7f	�'z�9���l
�0����TgO�w� b7
SX�d��g�*3::Q����{��z�I�i 7~�Y&���ftb���X�.^��,�v���dA
�u��VGD� ��#�
k��*�f�u��׼Ph��z��:{2�:[��?���"A}��z����5g݃��w��m`)��¹�o�)��rZB
�	��,�r�ɟ��*�9; �MV{�И��'zEǒ0;���/
[�{���
+���+چ�&wU�l���R�\%��7����6͸,��Ih���E���($����ܞ�BD��7�{��[���=�phń��I�\�(B���sq#���)b
+M��Q�u;_ at .�.�0�`�U�Q�V�8Ru�F���*��Da
��r
+�� F*Si��#Б"�����X^���R3��WPZ
a91ʅ�D<�vm�g�1�Ͽ��ã�����&�c�#���2]�K۴� $�j�
;�0�xO�1�1��-['�dT��4�?�&j�|�|&�.���0����g&�{�5}��u�֊��� ��N��m���̨
�
�n�
e��?���֩��!c�
��
+�՟e���%7�=C�[�b^��k��

Ǿ��9ܚ��$P[�
j)<��'��h��a�n�!6i#M�r�K�AwN�籁Y$`G����ы�����y���Oxnn&�{:Ib����DhQlm�+Zs��a
��%'�z�:�
9ns
�v�����+����Т5	��*��=(� 
qs�
�nQ�;�\���n�'�m��w�����d�J|��aw�"m�V����H�
��*XW���E$͔0�=�lQ+���v7Kކ�
d��v�W�
$!�4���$
q'<���f�N���

k��{�+���#9l�?�~������M�:�����%��k���P����/w�O��~V"�ЯΌ�rpsE�C*.�^�b�ᐱ�� ��*
�9��VȀ�Q�Jo ��	��������;n��@��*+G���%Ќ�5��v�ω,iF��B
:H-K`[Kd����f��@����LjY�ȃ��ڦ
�,l�_A��Mk^X��u���
�~�
�:*�m�`\o
��:Z��dQp��'O���lG��
;��\ԁ�}F��R�
J<���\wƠ��b�n+��dp�
Dd����U�mPR�q���2����R���'=���p��_.�yv�t�+k���.I����K@�����`��:�ܫ�,��`
8|e9Z���@��$����|�rH�����U
�@�5trЏ���92�J�[\"Mfo�z�����H��,�κ�E���v���qt�fF�\rQ��VKƖvv󣱊�m�;F�B
0lȞ0~(�.#H���@ș�cr{����Z*�՜X"�f	FI��=q Wڞ�#ӓ�)Z���R�Hq"-;�׶��'3��~��Q�y���tڢ>fez�ࠁ����_���s��R�P�m�}aG+rR���v��u	�I���x�������� �����G�q�n�HR�3����]8lI�;�n�!cK3 [...]
��%�="����]����6҅�S� �T��&ύ�VuD㊻Zs����m�T>�՗ؾ��$��cM'iW�,m��4�Ϋ6.�
 ��n��$�_3������#���:

��
y�vc;VO�Q�FW*�̜ge�Î�]����{������8��Jn7�
���d�w=7�Fq�Px*��<�e�腓;�袌

ݹ�;H� :����
��O=��
@��CD>2�V.�c{�
�� ��+/lh��PBP���Plp��e+�{
� ��Ek��*/i��P�����\y�'_���P�\_�xwƧ�5�Ť���s0�q+O�)�-��H*�S�
+ٚ��Z�-���k�2�
S��r�^y�mů(���~�����4"�x��ƅ����S�{X�LR�����l���}��ޝ=�b	����E���$1o~��/���o��^���`"�8+���Pf��49���["wOH���C\k�'ǧ��RPw{�9�v��po�>y�{k����df�)K,�r�!�	u��>�
�
�
;�I%���~;����Z#JO��y��W�i>�`?L=�-�~����}4� �F��M�z�)%�ݽ 
�܍ľt�������#l�w�z�
e

2��@�a�����a����l�ӻkdI!��Ck�<<n�y�p�E�K��.��
�ϵ��A��� ��x>������ʰ����?�IB�\���
�S���vK��+�'�x����]��O��$ZqT�H�ォ�+)z���
��_BU��ɐz�F�j�s�_����,�RgS�y�r!��Vj�€ˬ����J�ɻY���!N�d�J`:�=�_�t��S' [...]
+��������g[ᘸ_|u�I�G~[���p�5,��/����g����~s���s��%>)�:&+��1T�<
+�*�g�JKh��2��
N��/��t�$�bG{Sj�G��
�n1�o"�]	�M>�""�ʠ/�A�Ͱ�Oԉh# �
�?
�!�?���mH$��,5Kv.����0�L�D�)}�Ú����pӔ!Ȱ�!��%Pt�oe빝��|X��qİ8�y:sS��f�J"�
+ ��y�
��I��		c��jKT�D�o�o�>��֋�����S���^	�K�wR 4gX�%���
+�طX7_�
+��hf��h��VQ7l��)_3�r�:�L�O"kuG���V+Z$�Q������
+
/f�r�.s����Ȥj�����c��ol0,����������!�?�"���6
�K>��Y��w�8]3h�=�
�F�:�o��_��#�+Q�<�/_�g�N�Vw����d�7YtWC�.b��N%�P
����Su�e���M�%Y� ��/
_)���S X��j@�W_N ���s�?��$�#˄�������i ��Ҁj�����V)��S��F����� E�h�㢂Lv�wf�=�^W#
�6{o�RLd_W�����
 6j�a�{�km�^��ǜ1|�N���O��f>{���7��c߆i
�S7���s��	`���G���X�:"�c��F3h�E�Y�
Ls֐�Rrv��8[���� ���hB�O�
SZYXmzd��aIX5�kܭ.A�

 $��BsX��)������QXR5����BFc[�܊%�

���
��a�TX��	@\kNЂ�����H`��B�A�SG�����z'�R���YՂ`mq���%�<��
�ߋ
�M�D�^_c8�g�|��h?q�C�2�pt�g���:Y�eH�2
-[��n�:�!��%�
+��$�䧝�����aȐ[+�Q:f��b 8�J�pՠ�)qƉ���'�u�op�)c2b��
q�~i

�\j�_p
��.�}���~�=�g\���������֏^;��K'5
Vj%��<mVT�z
��v��~:Hh����=k�SU��Y���?Ϙ�G2}ړNUY����g#/
u�w����� �ģ�����s�u-T����������<U	�K�#
�h]�?$_������y�Nٹ�%qK�
a��T�T��>={�bK�)�b�
%�
+R�]
4
�Y-E6�o�p=���1�B�B at K����nJ�Bȷ*+P�Е�!�(��A�Z���W���
��d��Ǖ1x��)��!;M�l��:�Y&���S��8�x4:��S����Ǎ�G���/d��R=�G9���8���qnϗ�>��֋�#��_�^�}I<wI�����/�ܛ�
�D� ��RH�y1Srjk�
��}-<y@<;�-�z �
+
}��Y�]L<ೄ],Lx$��eM����n*��!�-Q*P"���X���H��Q����o��΢�sRAP~�JSUf��oR�l�Xي��>��f���
+4��GKuw�r
^��
+�y>w$W#���NEj䏙/�A
9
e��Ҏ)��c�Q��@1��s��݂�ԗ��/��[L��˪ۘx<
�p���{��PDG
+JHn�����QCü.�P>��Z$+K��>H���3��$]�h����d7n��H���w

B}?!g�j���
B�����?<���B�u��H����(^�{o�G,�[g���P{w	�&����
��6�/�ţ���厷��#"�+)oY"�X���s�����d�:
yEVb~�\���.�8؜��������J<�5Wd�E5�Y�-�
a�L5�}�V����U������܋���dP�>e�|��h�?�'�;�Z]^yy��g�xZ�4��#~�b
Y�
_��+�MbE�.㲕��u�$rk�^>�55��_Q����-��
|ϱeX"��A3�1��L�.�*��`��q�B
+pXwM��xrmK.GM�I��N�Ta	�?w�M�‹)�ַ�	�De��LȚ�m
+֔�7y�,�VxQaT
�MJ����+Iz��:'�޺��
{qLY�f������_~��lBcḂ^?f�g.�8�O����U7�d��	l��`�l6�%���n�P��BtFR�[�'%P���b+�4F�Cنo[@�V0�cE�w��{L��R�Q{�n��\�p`
����K![�`zxt��+�%)��2�2��w�,j�ݔ"��t����h��
+����e��I"��
�������ca	�K��0�U�򉿞����aH�z:>��_�O�dlU̖A���!��Rx���)���U�ə�3CZ���Ur92�� �0�Us�쪶"cbz��C-�R
*WY4�GQ(�
+fY*�ִ{
���AQ�N!� ��fU�j��4��es�]�cS���g�T�����(ř�O7
+|(�1jCo�Ʀr��N.,�`��$��,̊��+�r����$����Է�U?�����c� p��[3�g9"Ln�эK۸O� �-��	�"J�#2�IaId2��5=�Y[�R�W��m��eKt�YiņA�j¼)���$^�����S��k&�"zFy4#A3�K
r����M�꧄��p����&�ȉ������f�0͔��>P�Z_-��C2����6�d}kW����4�t�5�SB�PM���RK23�d����t���_,��j����ܽ�UD�q6����*�Tc�����]+��Ϙy`����J��h2T3�Z��b�2Zbm"�1R�of[�?_���6�C8vOI	���^�����
�����u�s��
+�u1�e�|����j
�|�+)B6��$�Si������p5���U[*c
F l�&�3�%�,"�9 ��
Q?a+��`u�
+Q�3�-ي��Éi	A�A��q��Q!�A�V��t�$�O��R���c
'(��yo�""����
4
t�c�ة�?�����w{���4�C������t�rhm<
[���)���1���C���Wo
+ܶXk:N8��.A�g���x
+U�E��z��4QV�n������ʉ$<L2�C ���d��~�ϏM(�
�.���������?�_yր�ht�Ö� 3s}�%��_�ofL~�xb\ֳ�L=�D0�%_l��$��04�,ڪ=�bU��cYW�)�_�B���Q 
�~R�*�{�y1Y����Z>x'�Hmo��=ڄ�y�J����b#�$�M�b
���Weal
��x+ʂCy9�	��
+���Za�c

�G��Tq�XQ�؝e�cMԷ�lWF�~DfN��|�k�����D�����K�K���9��6
���X(��a�v��
��a��H �� #�Ԍ_
��V"�f�5��e-���2�\Wa*'��4=+�ݩ�JHJlj
��X��P� l�Fl����MJp+��A%h[�
�i�:�C�4Bu諸9	y
!�+���~�-TK対�KR�9ja^
��=�6���H`�M�.1�e%�.��0�B%��,��X
+�+�����-ӇK���'���z%|z���X�Yh�	�u�rـ��e���N�D�k�)�8���S
��q
q
K��^��������s�B.R8�F$+���6�mc�4cK�-�K���vK�
+���Fh�~���?�Nj���өs8Ւ�3+u#J��Ca7C�
��S�|I*��h-�׭�m�/�7~�Z�6=����'���z)��D��B��pn
}���؅$�%V!��Q�
�q��d�	Q� [�ߗ���]���Q!m*Je�����A@��T/ݑF�ey�4@��6��g�X6�e��b�:�����}��7w�
P21�Bj$�m���Ȫ�٦ygN� �ީ
����c��)��4&�+��u�c��
+�@0��>�;���BݤǺ��ZP�P���P	�fK�8����v��_�o�>�4z�z���������[ye��	�G�p�2[����|cwt���~Q��ܜ�OW�
~\��-��ؔ%�c����tfGQ�����r��	eLG4b��2)��>�.�E�Q�8B�
�W�e?_
�W��K�`�)�$(I�&Y�vj����@��,�R���b���V��[ ���Qc�_�|6Wyo�q�跕�U0��A����+BU���Z�gO�w�Pͺ��BW]�
*�Bi�\�J	��^3!"��Ź

Nʹ
+6�t�ݚ���B`��E�vM��˔;;�ss���K��|��ɗ��P�k
��
h��ےh̅�]�qƒ@�N��ɘKA��>^��qV�P�
��Q��#B�2�h�ݐW#1��(.l��R_0�Y#�OWl��5�B#�shq��"-�^�z����m��V߽�p�d�KcR7R��]bݘ���[,s��æ'� ��j?�U6]������T��K&X�9��u�Yc��"�B�����d��5
d�S���
�&�|4�M0G.�::��V�ԺW Y��2k������\��
+�X���Ƈ<}օ�$
���P��
��*�
�h�
ޅE�� Kנ
*��!��J��LB
�_�0"�e(�^�C�P�U��[�$Ȕj���ZT	�"��L����*�����@
��J�c��`)�l�[
+��R���:�k"Q�qսC��J}�����[��Eye�5���-�a
�b
.F,�1���]݋ڰג
���LM<�ĸHx,&l��+��.�:C ,��K������&
�w��ǿ
��m�fqm>L�^�
A]1���\<�٤����F���̨��Q
�s��UC��&b��G
Tz�qlm�/&�{rg�Z[�:��#OF���vҎl�-j��Nhˡ	�JJ(�LS}��H&8�/���.;�
��rҴU��f�	ݠ3JT��O�&�~ e����)���Q74����PIf��ZH�oOP$o	�J_�ܰ0��#�Ը5�ch��{��c�Н�
kF�t��(u�5*¯��
�>�����IC՘8�&E*09�,�"7�S�&@=�
�O�|ր��5�9E�o̸<s�0E�o*�"�i�e���L�rã؊��a��ըO�3
'�{s7Q�S��lm�yā?_��У��
#Tm��4FSI�c��h�7�����[�
8ƓFQ��ou� "z
�v��8���
 �t��.�������5�O�����$�^�{�j*�gc�
+%�0f{,
4i���ך#�z*XH�c���"��a�HC���?��&���Y����L�

P���iՉ�L���g��
��zy,�D��q4k��@MrH
��E�+r�k�q�H��Z�Nҭ�) �hӎ��KȮ��tӷ�m7Sj�8��IPd)�5FS<{�_`�
�\a%R-yJ)�[�U�
�Yc�w���ukܟ`o��;E�����lA�.">9��P)�-���X��H¨r޸�${sw�-�\L�B\Lu�jPe3�Z'�e��V������;��k�B�g�WH���p
��I�1�r%
R��<ԧ�v��
�U
+mA��J�� 
R)DV�Y�Z�f��xШP�4��[c0�F~F4�LD�I�p�ଈ��v��H�F��O�v����x��[s1��W
s��'`�=�����)uv�]�F�O�!
ң�	l�U�m�O�Ihυ+�S'PZ��w�n�(N
+� �3*djҳ��y([��FP���|W���uk�
��YS) `�S�� �����:sN�m�.Z�\�0��Ԧ�Zp�#�8�p�RI�@�M�Sf�Q�I����b���9CU��"��m��i�Ҝ�x�]��]�&�1U�Q�౑L̜`i�V�q�޿��
+eU5�z��H����p���1�#[
�[Lo����dp���>$������1n����hĺm
�-4�s�g���|KgVn<ŧj�����7%����-F�����.$%�b��Y[�!�~U�ET�Dpݔb���=�O!ƥ�E�$ ���?���@��c����
Ӥ�M�8G)��Q8}��Mŵ
zF�t76�Z#�V#
�|�VԴQ���ZE�5*y	�h�婀��XRUw+t�
w8��oYOV�Jm�njtb����*F�)'�˧�YV��$Nm�XH���P��g�q�+�ޙ~�c�h
�z}5�������9�
+��
QX`<:nrzޣ��ׄ�o�ƴ�MAdޢ>�͎
n��x�sxuq+�94
�
l
�Nf��
剶h	�I�N���ʂ�	���d�Vܹ�b�$�U�(��
������{�U����uz�X�{T������,�/IW+<�G�W~���'�!S��C��
=�X��
+����E/ ���9��o��/A1�ʳ�-%�����ݟ?G�
<{�ͷ\�!c)_��9�H2�s{�4C=�
�#�'�a�u���jæ��]���1҆i����a�y�&='����[���0_uvg��ٳj�n����.��	
�$2�o1�L�LeZ+�� %b�a���s
�e#p���A����K#RU�f�d8W,j�D�~��%F?��B%�����:H�&[e����F��l*��$
�P��ěktӣ��F^�n��ރ���v1�T�l
`
h
��ns>^Ɂ� W��
�
����w�Y�0ܯ�W�L��Ed���>���_����ᐇ���T-W6��WW������+{�����+?�f
=@��������Hx�Aq�co��\���W��Rx���¹r�]�
����{�~H�?y�]��o�<9/�q��>��^n�o^]�X�܄/��9x�<}�\

g�����9�C���0K/M��kf���F�=��I���T.��_�-.<��s7��i������[I��6��'��+՛'7��_{���)���{y:��~��?y_��<��_W}�%�����xn~��gg�����yA�ȺxQ�ȺxQ��O�\��Z^�-r�����{~�ȱ���Y/�i/�Y/�
Y/�
�=�s�G6�/��M��d�8)^�C�.^�E�U��<��3ID>?�D���I�Ë�Ig���R/�)��1_/�+�E^�Y�.^�[⋼ �D���%*�� �����\;��Y&���(�D ܳ3M���&��E�&��^�o�.^�qr; [...]
ڜz%�:��`1�԰j\Jv}� ���18N���7��Z�{�(�wV~o���ј��QGq��u`�[$T�d�P�!��'�n:)��lρ�Eź����Y�D����{5��B�P2v�c)��M���
��VѶƎ�>m
��f��cr�wlm�`���
t�0�,�vK
�i�ṕ̠)[���џ�xr�_wkT���;)��W���A�'Ŷ���ysy�T蠱���.+ß�� NL�[-�����&7jW�_w�W��Oۧ�*���R���[�ý�� �|�>c �LXT�������C�0g���>�9���z�y
�?kM�g�Mmt�>㱘ث�H޸u�K�VZa2Ec_
\�FY����0�:�p�]�3ejB}�gA�l(�?3͗xĢF��0�����I��{�q�uD��(=`"5juY���TE�6fq�l���ʴ���*I�>QB���mX��m%	�90K�����!�

H�3uD��
�T`�D��gE���"�%�n��̓I�? =m�m>J�[	����w��'"�edr���1��sb�k�[
��UM��8�	Ğ
+�բ�T�v}���
+;>%1�;ْC7TK������#t(��,�;�
+N�Oz  VJ��@
�hǖ*N����6�3�u�L��ɛ��?�(P�a(���������}T�6i\�Z�4�+)Z�Nٲ�Ǜ(O�5*Ub�DA�[�D�W�*��vKQp.���e4r�1ү�^�063g�^I�,L�O���ܩ��+v2ds�=����@�����٢�m3yd����2����2�dF�6δ:]��mr�'kK���
�GM�1e[:
��B��T��{�)i��S�\#
D�)՝ٙ���a�/��_3y��^�9��f_��Ti~�����������Xo�$Uk����LX��P"�X���,��`
C��.o�-�����6S���U�������
u�LQ�
�Oy#G�5 t�fc�%E�+4�A׋/�C�T���XI<"�v�$�����V����4�8zVMA1�
�,Y�Qt~Ɋ@-�z�[���1�c��P]2g(S�m�-`<��=�8��VV���F$�W���l�¦y��g��\�/%y�;d���d/���%AH
�뽈�
�F��a�R
�&���l�~���e5Z�F��e�h�ֺ6�Յ���4��5�����k3Ql?b���$�
3XK�E,�
�| �@��r9
4�ku�6.Z�o�}���/��00�E�$<c?�J���h�,f>�w,�a����<K�[��Ϻ5
+\
wƴIDڌ��� `�8EGG���d��"m���@j����͈�%�)����b,�6��-<m��
�eE~�sF�d6I�ȳ:b
3_"�Ȁ{������)�P>(˞“�A�Z��5]z�B��p(�n"�f�7���A�SM;>�
�f��D��s�1�r���9t|��*�S?�BGٿF	+7Z%�����d�N���V����ѹ����v�	+Eh�I~�ʱ^;�����Y��4.�H5�ks�����R�_����P	��5�U�3H�e_�Sn`8�6�
D)�a=�b�2O
q�uEF(�.zj�0t
+�`��Ƒ|̻W��R��d�RK�4�>�%�^h
T/�n��Ѓ�?��#��8�}j�3X�\�Qz
2��Yrq��u���[�lP,K��6���P��! �I�N�E} N
 
I֚�pG6G�Zz(�%O��5�dX#Z�&-%Q-���K�J�
+	����q�Ψ�yʖ��)RQM�X�0T��!�Q�;v
����p5y9Ǹ�(Y��_M0O�Cw2o�&�^�Ԋ<��
 J�����e���4�������sf<����ZW�:�&
F(N\�'�g�H{`4�y"嬱���Mn�(�Ҡ��'�����4��4=c{|��ɷ'�Xz�
ʹ,$����:}OR;3#���|>�c
ȍ駶FB���
6�C��
�ۻ�L�QƋ���c4{+�p���ٗ!��==�-�+�J}�TL�z�N|k�3�K�Z�=12� 
�ZM��)Q|�jS��5+ng�4T�5�n�����,��H��Y@�kF�Us���h�T=kp�a��AƞBth
\v�,1�%+u�M��WG��@C���Mjg��Չ
�"ةD7W�[jH[b��6 ����
_
H�k[�e��ؗ.w�k��=�ս��.ze�u�C*�?��h�d�v�%y�V�cY���MÌ�@�V��VS�}�
+��9q wV�a��-=�Rc:��΋MK.����t��6�
J`���OƠ��A	�P&@*
�{
�Ȅ�����>���	�?	�t%R4KQVf
�5Q[o�-�$]� ���R=�
h��
+�2<ղ��7h��}G�|
bZ_�a�e��>���=�˶�x���0��ʩ�,�)G6��P��t��~ܹ�*����-K���T�M$��9�׾٨�)������

pZ+��'���w�׻��]^�Qx!�����qrjc����PFε��W�A@4��������cc��
ij�N�P
+kݵ�������A�0Tl���5�
�kƒM߫��U#��f]\1������m���
����_�z<��}<���^)��e�j�B*j����4���d-*�� �����
+>A
�Ĩ�@+���2�{gќ�!
����,�FC�
�*(
��
$3�x���̝w^vy�DrPz��kr��ژ&��� i�*g+�_��#�`6qh
¦��Ƶ0��!����⍀!��h��
���e�j�颱#��r���4��C#j^������}���;g(~^2�&6H���1��
�<���Hs7�!O������ؿQ�%i܎�Z����_v��=�y<W�f��6���RC�1 a�1+�(���D��2��d� �Q~gT<^!)P�n�O�'i�Lc*X�PU�Mo��@��qMk��=Q�E�`57!��L�*o�\��
$]	#^���L�E�}�d�X�K^�
+ ��S�c�,��qo��
	&���Y3��r'ac�<*��k�b!Ks�*
+gi�iҎCQs�N\�*oP3�x��ʗ �Hȑ�D����Z
�������4��R|���q�5
�X	j�e�,Ũ������{=��~
��
�]��F
,����m6�m~��nш�w2렜a��Y�
U
:�n eYt0�	��p]���>Z`�NU��&T���Y�
�#�5�)�hN��0�yb����0|?0��E�A|ٌUz��ݞ4�76씃�����崓��b���s��De����i�
h�5~�\���Vu)��%����*
��l.��.�D������
�+T��8ẓj�AO.�o����� k�~L]k\��x���x,�9��a.6vp֌�P�f���
݌�p��Lj���aJ�h���L�9�dƝ}��Ш<���;�ʠA�g���ɕ�񝭨4-���9���L�dXbG�>e��5po�8�?�|"�V3�=��%�i��fh���d��
����^|�������d4��f��55"�Sj
+�)+�V"Q�XOTr�y`#�N@�eJ�����i'��|�x_L�Z@Ҩ�����N\�|��y��lֽX~3�%j �I�q=ә�Y��54������|+�Rh�zZ�������s��S��mp���oc8m
�u�[�Թc��|���E_��#;��Tl��o˴kݦ� � �dm�|�e>��Q�[|^���MyIDL��ٞ���}�>��55�i�I+�zO��Z�[�q��ZhI�ʕ5���]�_�����q�
�mo�{(
=�9=N_+���3�	��i�
N�>�f%\!��4ES���4�݂����ZA>&#��0x���TV�����V��@{XO�� <4G��
Ң�
��Ǝ�j�
+=D��F���xEL� �h�{�$���O;#C�&8��n�Zl�a�ȹ9�UQ���"@ �"��J7Dk��Cw	��XtK��"�p�fXL�$6w�z4s���n���#�~s���ӥ�7�믛��\�b�߼�8T|�^
;��	4=���؊���X��"��N6�-���+J��uM���~L�t��}��3BT���`@)BZ#�.�#L�>f��C��m\�
1�S¶���h�V��
9fQ
��D��
�9���Y�r���	�$�=��٪;Kv��zH�O9/��
lc(�@��

+
��>y�����#O�AT�֝k�������i���>�2� *���O(Fc�A1~��
͚�f}��W��]-o�ﲾw��� rk#Ėg�ό;~X�F�+a�
�j�k�̻�}�
Lq,0
��nR2�@f&^��EAR�H�?��|��<pL����*��Luw,p(&�l
FUF�J����ᩤNMC���+���؝sY�^V�����dB*ێ8�L1%�f�g�L����ILuI�U\ic$�B������ﱏC�X�C�B%��kA�Y�Y\��O���P
k�
�7��4d9��"�
��@���5�
��Ty�/�B	��D��4
d/�R'���Kra
��c�
L�̆���2
�h��dٌ�{|
0�HQdA�_6'2|�u@!p�"UW�Ɋ3M3���$�kSld�e��]&�����2G�:�k��q���`����H#�R�2��Y��}te�7������p}������СQ��#��9+�X�髍3�L�R=Ɨ
�VU���|o��{�O��55�Gԑ���*9
-I�c�,����6
+>5�6����v�2c6H~����w�:~,�a�b��7Jd�X��0��/�f#8��u��#aV�Ҝ�_�䲉9e�ϰT��Ea�[��p��d���9�
�&N'
HGa���b��L�+:� G����t˼G��s׻u+����q�6E�g�i��������^x�\�U�q衢����F[��즶��`���'�+w���
Q�w6�%\6�( lѝ��V�<eR� ��*:T���[����ŞhlV
&sşK\Z#A�V����W׽�?6��A�g
+����������6�aM�j�2kt*���n�D��&��
U��%�U�b�f����T�,k��J�+�����J��A�brP�4���Y�?�^P*H3��7J$Ԁ�!�p="ċ&�H��F-�
+r��
�%�� �V�9� ��
pJބ�G�19����?1�1��=
��(H�,���
Ʈ �i$�$�Sq�����^m�r?k�F���x��j��9�S���Ԩ�
A� z��Y��v�j�~��������o��iO��������j�ψn,��y��2S1P��߻m
+��<�2�rT,PF\N����֌�B���W�:3pc���=��rË�$�
7eb��U*�
��];#?&8��6r.��FX�˂ZێI)�6n)��
&i=�#�F0C�̾�����X#��O�	5��u�"�W��qxMI#�._�*i=P��a�8�)��j

��
����+v��Ec]�	�UO���R3f�J�ɵ��V"V�%�.���$A0U���`��q_�ôBP�š{Z�UA�����\��[���g/��2k0X
�݄.�n���u�B���<�5���E��`�#���d��=��
+�~�x���| n@��� ~UY�����kϪ"�s΃�42G��E��W���(@ը__n<O��o'��VP
����~��SD����L��!�|��ն4œ$蒧�W�~,-�Y~��킌���Y��
ٶ��%���;�깘1x�b��J�j#�
K���|o[Ե�盡���G<
,h��l�����+����螋��H���AQ�(4��C�l�F��5k$��Y�5�[`{�g�ֈCX3�`���什
+A�J�w�ŴÝ`��U����G%gԼ�������BJ>�46.k���o�%�fnn�"�� �l�
o[ȩ�
��
+��2d�.s�'>�tʦ�]}  ^ݩ��Ur'�̷@Y71_[:�SJJ���i)��O���"����Y�D�M�B%,�C��Q��L���
d�~­`���'���6�<Ѹ�6B��d�
m��Ͱ�X�m�r�'�cL&�����~̵�O��4=o�{Ϙ
�h���7`ɂ��\Q�[���4���*��924z�V��N��
ow��6c�����ͫ����Q��Q~zu��f$k�tJ���Z]T]��'f��֯T<$��P�9�P
P6܂vb��
+�6�r%�C��E*�j4�Y"_3��K4Kd��ŏYs
{k�I.؇���V-�;
��d&�nH�b\�����)��,��,��cնO8A
+��7*����y�UfF�d�=�

u7(�fO�_��O��QB�����c��*r/Ӻ&�I�s_t�g�Bq`����f�-�q��
WB
��)�)vp�
<k|k�
I\��N����j
[H{p��f%x��I�
���] e
+�ɠ����h��nގ��)��}Z\
Q=�za:�rt�XW������|FWȤ`�WW� �A�ڗ�lIJ�
g4�7��F��9��,�\ɷ�
TkJ�-��[��ɝ�P'
�}�������>����Ռ"
��[w����˼X)y�9�ʼ��F��h�M�<|�sm&�g��*�Gz�0M�b��ٶ
T4`b�q��Mx�+,K�Lg�cM*����V���'N�i����4{9��k\���W8��Ќ�&P���k�p�!�4�>�n
�����EjcՔʃɺ����}Q����J��XY��@-�r�2

:ni�q�qd>�L"�K�� &�`@t�
�&s�\�G<~⫪���	�8��O.d�ǮO��<��
n!dz��}��&6���@�4���:h[��e�iT5Ƒ˘᧍gs���Ԡw���p�n��G:5g��xx�ҥ� 4](��+O�XV����3T��ʰ�s��&d��n��w��=�C��Ż�R/�8ʩMh<�q��������ӵ��§�!U+
k��jy�f$���|U�
+��CT�
+�R���J
��1���n����Yq4r�%,n(�Vl"�о�oȴw�n��
�|m挙d
�
T�U]@��i��[���0씼�[τ܍��$2M����@.
T�l�i�(�U�����k�xY^�Ȼ=kQ�lm�>���9�jTS��:$I��
Q�,��,�`�=��(��p����-���|8����	5!I��6ÈSN
!���o�p�[�^Qo/S���-��L�ٹ+��#8��؞z"��?�I�^�K
��UQ��f
�	z(0���l�s9J~�|M�0AkZ���W���b�
�y lR�:v�d��X�HWF�Ow��%KN�A|e��� &39�F�>��bv��ѓ}Ǣ[����`C
�Ll�����I���}��ߏĈ8������^�p�����I|���G-S����
�@�t����RF��/
�ˠI�<I��
+a)���FCHL
R�
���xԬ��(�6EuF��`���R?�
+�U�t	�gj�nz&�5������ɚ6
]����Տ
��Qϰ�ź>x�tZ@I)LV�R�e�۩�E��]S6	�X:#�
+��Fn0Ҙ겶��vT
+���ncF]��&Pe�X��b=D��y
Z������b�
+t���̫����!:���ڭD�n

r)3�Ƈ4Ύ�Kn�x:qY�mO:)�=��.��]M�Nb$o
�Ҙy&�:`�=[1.{Ol�SDcn
#z �S���h[I##��
+w���]L_��5,��E�G�%�<D��i5������1��}5�2XQe0��:�vr�p��csGY5�� j10
+W�aϳFr
:�����Iz=�"`��j��h��q�P=M�iL���#Ng
r-'=�q���P���m��������c�3�4�
��V�!���Ģ�|b�����ѩ ���`.�
�V��΢�,�����=
O/\�`E9�j텉p��'�� 
��Ⱥ	 Ʌ��N�
,�3#�9`vZԐr1��l�!�oZ����V��/Խ�Ƙic$0+�xG(o�B�	��40gD
+����Ua�|�^7��cGT���A��
��f��F܍�h�"͜�{o���R�J�n5s�m �L�|D��iNb'D�U��P
5�K�
:�"�@���Vk�e,���}�nG���u��/��7��3_��&��6h�
�wkM��6�%����(�~] Y��I##^Nı7AX!�т!������L9�P`�b�ĜI�E��pʢo�"�{k^�s,��X=���d3�v�����!l�Bh�z	�SHw�
�>���TK5Z�mv����?{�3�'�/.�B+ۅ�&�m��8�w4FW\ or�
�D9K�H������+ϴ�gX�T�U��ec�9�1��
+q�;��("n=El�t��~ &�/
��Ԭ�m�x�9�.����&�6�9Tk���N9l���
f
�Ye��0ϙ;w��F��,��^�F� ����G
֡�m�#*��m�
G��H�)NuU�Aӫ��KB�OZ�h*��X���Oz�fd`�S 3�2�O�k�m��XJ��H�l0��U�'I�DV$fe7m.ʺ"�
eYp�T���Í}i\t
-筋�
,v�X>�x
o�XǺ{�Q�
I�F',%o
���lɅ#��qM–�F_
<�|
6�Rғ
�ǃ�����
`ڱ�퐮F��<%��eF۪sct��0�ĸ
R^*GI�$���
im6B
�,Gu�q7%'��J$ʭ�Oޚ�z�e��1���e��YoT�
+�OuW�)m�H�D���m�H6����q-x�
��=<�BF�3X��Á]�Q�va�B�Ŕ�=#77�f�ڏ#O�b`�;�Tt�t}�!�|8!\o\y�ׅ@c�lOqR<�H|h��I�V��`H�s6 �&�
��CWσ�_�ąL}F�:ѹ$�[0�d��R�׌�Q�S�"�v�v�\V��q�b8N�"M����w��U
�����f���mMu�P�����fP��T��f6�x�%a��إ %iy��K��i�~�2�=�~����d��9U;ja6� 4��
�E
 E�W`k
� �e�F�)�U1f��m) �b癄wӋ�a����:��
�Җ,T.�ֵ�hZ��B$x��x����
e�[�\���W�Z�&�i6��[��4Nm�0f�
�nyv���Bm$�`�J�E�T%S���Rކ���\�F�MlZ
�CͰ+�>��t�B���ICN�/t��L�<I $G�v�4����H�F�fccC|A=ӻm
5��(�z�.�X,f�`;-��S�&�.��Z�Q)�q��h�6
n�›&X�F��
⾶SD�J��^r�P4FUtnQBե��U�	�x�0E�\n�\ź�d?F����A�:����|�F梅�u��6D_삨i,[DSLpO��������
Z�Эp�#
�龶�C8�{��/tj�k��$�y�c�
Z���mON9�J"������s��D�Vȇ��hl,�A�Ļ�C��G�P�
-Y���X�
�wQ��SU$4��Ӻ�~O�v�KO��"�b������
�K�"�X~d<�E0��"H��>�AQ��9k'���E�6$	
����*�`�����R�[#�
�oM1^[�EII��n-\8@�뷣�Pɰ%����&� (ep/k�H7a4F�**��*Iin�ĵ)ݝ�*v6���eU*ֶ^�|j*S"���k�y���|m��L;뱅�vg��4P��N���㕉���B��-�:�����4k�30
�j�`���|�.n1͛�j��i�
V$b��,�`M����?{G oZ���S\_�?�KQ�ԉ�
�V�qv�P�.l���K�AҐ3ZQ�H8t��`���

;#z_h+[�sr��+�$M�
+q���Զ���x�IG�UR��r�����KN��C!y�F�6C�MDr3M�(�6B+F��J���s5�nhIv�iXc��w�;p_i�d����v�
jé�Zo�Ψn��k��a�8�x	�%|�ђ��ŒUF�e�:��]�]��ŕ�\�4"�>vW���4}���g�v!���U�( �F�wY��c�R�{
h[g��`B���©��^J�[%*�rjlt��b‚�E���_FAi�Z57�i�u����ys3T��c@��p��6�s�Ƣ#y���@b�/�k4�����R�;� ���\��P)b��b&��څ����핟d�N
<�m��LrΛw�
��s���}|�Ķ��Mҡ
v�D�gn���|����!]Wr����Ҩ�.lt�'�
]݋
=\��ƻ߹bEwf�
� �X���ZX%��
F�׉��(V�<MF��t�;������)ᒑ�O�o�)O3G�]
�u!.�w���FD㛳KO�Ý�
+1�+\J�T	$"ibb�PSTEɿ��!�H�V���UՉʜ�)������cu+�VK,���ǎ�@gv�d�./P�02�P�� �Uc�q
+�[Л
+��ad��x��8I�]*���-�Vx|;*P����%U:WCu>2r�Lur�h�	�+颓�Jy��c�P�q�—L�N%��ٖ�,ņ3Z�Ҝ]���f�5�D6-�,�
��/�eb6tC�di
�V��͠���u]�x�#M���Zc��.����tr�K{c �t�[�g���&�v���O<�~��Č,V�!o �™��{��3��p��־a���;y�$_�
�̯y�Ȁ\�����w*��9������c����g�m�f 照QwU쓳��
+�lA��[
f�r�X��a�4�ŌXS�#���PJd=$
�i
�
݈����tg��ʼn�8	�R����Ч_�g�l|��M�Nn
�a�=�M&Md!�ߩOB�
��W
��+�8��W
+�x��D��i
`��tl3F#XN����đ�
��
���/䃴4�}�,l�7JzM@�E���@Yl+���iD�O����\7�-��T�
JM�s¸Z���M����A��0%�	��o���Hdt�����1&(�Zsސ�-��$�=�*v�=D�����U.(�q�:�i'β�!�-��n@Ă=�:8I`��'
+m�1��0�k�f�B➪����3~%u��
����zƞ�$%o^�qe����Z��34��V��<,:ecF�Y
+6Y'1=6��֠W��N�F"�
$j����I���r!6x����p�3�L�_��#�u!l�����N��`S�2�Q��&��
+W��E�*ɍX�E����яW��0Y�ɇ�
�H��V z.��j�-[6aP�!"B&A��9�?�vp(�As�P�Ft8�Y�OW�P
+�[��W�
5 W<�:�N�q��e?[)�*9�>�1�f᠖ʾ��y�6�����" �.�<h{r~o�Y�����
�h�߰�x�DwG�h�,���Re��Г�5�
c"���X�kJA�"Y�Ϧ��Q4GE��7�GY�5��W<�ǫ�S��Ɵ��
�ө�W&9�N�=����SO��<���M����/�N�^�i���U��{�
zT�3��T�N2m�+��1�����J�
�B�U1�rl�V��X% ؑ@��-��W2u�=uj`2�eK����
r�ݭZ��LkjL=�|ºpx����E^��S�H���:
2�
3�6eL�)�9�6�m����GX:�0�8���p.��P�0ɖ�
�hZ��rN�����2J��'9E��(5E�XXP�L���Tr�H��g��d�$���l$Ju^Ak �Kg.�C�luq@��$�Gl,��
/�Y�dʷX�C4J�I��ܯ
)�Fw����˨eW��R#�z�����*�e�._I�T L)~����X	
 [...]
+�$�;���r��U��5á�.J3�#�j�h�d���T
hT��(�ʦgGHe-Ded���O�n	�Pxu���ˌ^��:��Z�
+�9�,�4�1��#��R�
x����ѓ��
uT�%o�ɰ$bOd���h
U8\ ���"��E2�t_i:��4Ls�� �����. �RU��?�L�CFz
�r��l=
��q7�K��¼����m��I�F��QÕG���'ޔ���:ބ$	�Y��s�!��g��V�#���B}��Z5��*��W�,�^�~w�-���� gž�B���
�M�~�}:U���9�}%M|8����� X�
h�z�b�3�v ��v�kn

\��b5����U*�P$��r�-؈4
l�����g
8p &> %�e.<��ř{R������bT\�o���-��Ľ��
n')�H�TZd?���v���:pF&�x�X�	b$��|@M��=2d_���:� ���
+�
�Uh{��K��f-��5��Iv���
��](�{�Y�B�j �;�cU�;9�4~5�X�
���4*�\j�6��-f8Y�ܓק��mX�0Y�v�i|D�@���8���J��

+tY �h�,�8KT���A
+̫�U6P���
,��
�vlx�\M/P?��
�Q3;�z����� �b��ħ��UE��*������?�X]�I���Y���w���)W���itR��ˁ��#�˴�z���O
�t.��"�
��Ե�s�{�T����[
��k�F/��k�A����"�Ͳx�&��ѩ%�E)��R�
�L7th?j��T �K˙&uc�$d�c
=`�Ud��t��|��
~߷�~'����ꭚ��ء��l2ڦ������@�����EZ`���
+�H@�9�����xۅQI'C���b
#�׽!̦��rV�4QQ!z�6'pI�p���H�y���D��Iޯ
��2�>�
8��0�
1+�߸015Z#��
S�.���M��
��5���j;����KU�� �\ d޹��p?/�FQ45�7��O+'�㓦Fl��u;��<
���4�
!c�6���x;񶇹�am���
"cKڦ��̍�V�%>���H	�w6���,�!T��&�l�\�4���F ��Q�m�Q
�!l�+訵oF3)0�^������9s�Ir*fO?�8��FD�s��/rA���f�"#[֋�
�u%���ݱ�k�`{;9�$��$���7Z���L	��
ꓕ�\�J�aaqi
\�l;�J�H��ZM���ַ�)�n1���+���%%�Ɔ7��C�S��ݬ����X�Q�$>�E!��<]X5�'D�g
������N���4K�Gݱ}jBf���p^��Omf]5�*��3��~��]W�wl��h��4���sq��v��O�Jx��w����h� N
�A�RV�7��[c��]Ҝ���1&��
�}%�&R�߲I��Sօ���JZ٪�Y>k��lSC�}4�4���]���
��[/!\
�E=JCw��֚�
pH�|&N�6	��������\��Y�X�v������Zt�v{�ʨ������Q�j�8��&�;�Ǝv_烘·wQ��^C#�
+�m�"a�@Qۻh|<�*�$"���J�}�$��Gx}�c>��*v�r�
�h��$��J��ÚH��~リ��r��D����r��W4��ey(��^��>�;
�e �( g���ј�#e�]��6^�x-t�+�����H
��A9�G�Qj(�j�n�?pE��a
+����|��2�
,Y�8��Cc���aZ}�^P�qk,)!���\bLE(����x��.^ta|�}�Uv�!m�!ylg��n6u�o'��;062Yv�H�
W�6�͑<N��Zs�9U1�.v܍6}�>�r�zc����U}���n�� X�B���Kcb� թ�+�JT�a�7��2��,���*LGd�5�AYR+I�Z�)��aᰡ����rB��l�>rA�D�)[������ua �����)��fT\U�rw�8NJq‡a
ElP�P��x��~�29뙱V-�9�́l
RIP \���Kġ����c��>�i+�����U�*�Z��Sis"�,��˵�ǟ|�kmg;о=
�O*J����U�q��Z,�V�&�&8
+�TM`[�]� �<�t���n2r����Qv�12�9̅�?���7���vhI<.F��A�b%]Qd��.�8��{�
,B�wc xno)�I��ә%�$D��╧��|�8�6/Z5��.��vԵ��NQ	��llB��xt
�
&V�+ÀAw�� ?����:������]��
��?�`��W ����
k�V���3�E��&�!�N
K���L�ወ��tQ�I
PE���[u{M����1OLЩ���o*��3�	:�dY�<F{[D,�{�ړU���匘%��d
~�B����
�U[L�
�ح�ZM�N)yقD�z���ddw��Pze���xAq(W/ �$U0��sWU���)���Hvc
����>��HT$_�x�nRo	*H�"!�7=�� $>+��!��qG��
]�����(��$�H2�( ��m�
�
l֠��4)D�RK
OyU36u�7��PnP3-k�CM� i��B��P�n�MQ&�J�i1���:��
G�^p�6-��FF]�M���da�6j�'H#�
y0�l���7J.�
�
�}���,�d��F�)U��=������j��$��!S�T ׀m�ؼN,!iN�5$O�拜��.�\͜{�
��	'��r�����o.G?����}+�?[���I��kf��S�]O�b��<���'D�;��-#Y�Ϧi?ؚ��0	�wj�H`l��z!�im���^)YA�-���
.�Z�A9��\GY�kkMA�<^���7Z��wn]�J����z���b l
l�L��Y].Kތ�� �T݋���c�a��!��t�"�<�8g
\�t��h+\�XV�H�� �`��d��=;g��伞{�[p��ɴ"��킅'�*��X�L���x�K�|K.�I8i${�Djq(ͭ����.��@=:
#���q��
������Ѝ	�}�8� �M
+�Y$י_U��@�}��G���1��Gx5���Iɗ�����Z>L�N�P���>#��ؤU.i�Xw�����'ra�B�n�
,3.
+P������M�F��U{ׁ�}�h#>H$�@n�����
���ر;��Э�Ov?�3�xI���Z��
+b���?��H}��bj^_	��<�ž
2Z!��;�� ��a��2n��V��5պ����h�F����>�����S~�
&X�yTj�C��0+�h;,Z��7�z�r06-��
+s~::m�흤&C+2@
��U�ѵ��&�=�a�� ����iu�@���=n�6Z�v�]�+h@��JO
�m��in��T�.o߭s�F��޷�I�9��w���$�+3
�d���M�|���Zg�j�ݫ��5�	u|Jv!a��H��a�p��m�r
�ܰ���o��#��7�6՛�/L�T��!��C���u�LǺ�
+
�]�_���}�d>&�m���㤪\YM1�f][k4�b���i��pI�k������7j
�v����u!1U�����Ө��#x2L�l��^%#�F�堰�ci
�~��.�M
2�B��� ,ƻ~��EC/��a��ͥ'	2~��`��T��]Pt���Q��
�%M�#�
+
AY6\[�X��4Yck�
+
���q4J4h�bu�@��4���cF(qQw-Y�g��ah�K�n�����A�|o��
w�;�-^��F�Ͱ������^O���")�ͺ��'Rd/�O4�fG��3��q�酹�
�a`�
�v;�dY�|IcSU%�	��H��!!�cy�
J��H�@,ľ+G@�&B�. �$��fI
�24�D�mR]3�S���|�6�\[��;�z�@ (��i��
����C�^��w�ބP��uw
+
�:�^\a�ak,��%gj
x*���#Tp԰�j_�շ
�
endstream
endobj
14 0 obj
<</Length 65536>>stream
+�s2��]P��]X������`��4v��h�<���)�<@��#

���a�+p�=��U!܃=(�YF����
 q�VV�e��slS��g�
5'
�f
�~U�)И��d������L�j���Tr�Ġ�
��o�V[�ʙر�l�*�d��D	D�?�ʶ���n��~+%QQi{򀐍F�V�9pY��^��fN-�H��O^�
+][���1����3�F.�R��3P&�#)`�u��E���`�ɚ���iB
+N_ �5���U�PV*%�
d�\ /��g���[Ȃ
�rcY"�n��d–��
UY�qڶdV�/����h��o����X��!J�)�����S

�ǝ��}SR�
T�����4�w�0�����.�PwA��:��Up+C�9�Qʂ�]Npa2P}�n�]}4����?{t�k=Q��H�X�*d�QE�J��(�]l���˸PQ�'BCV$���.K���+���_,�
��r.��Bɵ�Ś�����Ń���5
+c��s�ftbQ޴U%�og�g��K���x�t"5�B�o��ᛥ�Яn$��R���$�=�
|J@�^�='��0[߁}km�� �2u�*��<EW,=T!�/���1�r0I/����W�F�|YL#N$��?��r�H&���#V�
��F&����.�#6=}���N�a��
�
+��ϊ|ȅ�y� � �Ы'�©W<�s����@�D��B��j����4s_۲���p�~�� ��˻�.X-3���N0����1Yf|9�k��yv�_�V����^�@��+/,P���]����]3rڮ;��V.���T�
%$L	ͬ�
(��
{uN! ^��9)
�+7��

����m����1#���V��s*��fn�`V�\泲�@����6ؼ[��J��7�;j��Dؘk
�����
0��
�o
�f�o�j�K��^���I�|� ݖ̠j�~�VШ�U�
V%
b�T�
�'ܭ4�$�r��Ö���rl���<+yw4w5{����	{���`�P�PG��;�&]1:�$�s����Պ~��-��H&C�Xp=G�ۍ~�tO������@����o<tBnw�6���~
,�8
+�]jF��-vȠ����n����fhtg�
�j['��47�
f
*e̮.=�t���z
��l�[
��
��5v�!
튡��ƨ����/(���]�0Sʪe���`TaᦐwN��Bw��t�^�

jw���>z�n:̶��
p�?��N,���[y
+�f���Z��O�'�.ܖ�NSo�IM8T�jPq�.^���u�*�E\��2b�ܦT�v��aٮ�w*��fx!7�si�\I$�R+��g@�G��A��-� M�cpXz,n�'��
>��}6�Vq��`���k��fq��7J=o<s�N.��GD�Xd���H3�l�B�A��V�j�XZ
��q���HA9���@��f�*��`�)�F^*��(���y����0@����Nԑ6"<�z�e0�
�3�֢�i�[����w�����c�U�*l�CL�r�#!
��K���^�5<�\�����H�+����yR��%�
4WB����,D �f!{,�Dm����]�Jm�U��]�
�LHQ3Q -��+Ak[���,�W
+qc:�t5�
;�%��&��b�d�b�f����!��\�fVk�/�x�#����!���O�)1�{����(��.�
9�˅�
��׭{�2��R�
7����8��qZ�H E���=OY�� 
���Cz�.��i��Z
�hL��15���I(�v���hX)�
��9ƺ����mj1�}�e�5ӷ�j��G;{�m��/=1�J��u�|
r}y(�h�4�}h�F
+��,9ς/��Z�h�4�.��:��g;�JC�����pJ��Y������b�lܠ~�����ܫ �U7 59�Ѐ�7j�7�-� ҍ�h��Bd�u��
���W������B*&	�S�
k\8�X��k5�^	�~��VQ�'�ݦ�"'�S s�$Ļ4/�S��-�F6.e���
+�
+x,�VY�8��ݪVҮ�=��7�
w��V����Y)0,� '�RD(�UQy��J�G�ۅ�)6H
1�.�M�3+(�M��.���v�_`rē��^�Z ��F�F�+�5��
Ca,�rk�s�
���'�藊r�����w��f$��E��uodEC�_K@�GS�Aceqap_Fڕ�yXd��!C��N�w�k��ceWό0�К�A
�W>�GX=��ԩv�DM�~�8w�]P�#�
�c����'���&u����b�Ng
�F�fZ�rq0���	m� u�ZV�mݔ�1����.U�^EMr+qUXX�C��#��
���hT�AD����i�D�	�z(�ڏ����eW�n+f���UVb�7Kښ��n��z!p�`�k����ُ��q*,���)~�c�ܪ����_<٫	 ��.2kpx���-]�-���uL��ijn�:�_%U���@
+�if��y��e�Ͻ�Z��J��D�o�	��L+�7�����]҉���6�ԡ��5|�l.wN�����q5��L��u8N�krk��ϒ2b��r�2����c�_<O`E2���5D|7�����AV���ȽL�F�iI��
rG����g���Vڻ��
eg����h�I���V
ڵ���S�9<�vϖ�/��d���
Sra��
Pʒ ���fǮpNIU�L�)�i�|=h#H�
{�����M�"3_�d]���VN	L�D
+K�����Ev�e��m^_�k��C���H#�ڲܲ	
X�Ƒ|�xg�*�r�_j
~SQ��meR��>X�M�-^u[M'�
`XHD�$`Ԗ�jf�􆖍
����	�Q�C�ߓ
�;�M�@E[[�r5�|=�|x/j;�
+%1I,X��@��+*�����B�)nz�.���
n���8���¸�d��"x�T/^x7[v���2y-[�c�_�v
+a:5*�0jŤ�������Pڨڜ��T�^���+}ã[�&�������B%�b[d���\� O��$��*e��:Cϳ�*�8"{э^ 
+I���^dv�oؘӵƽ߇���w�~۵�hms�����bXa��
�p�FR�i����4�#��~A7���!��eL�K���$���ƽ��z����as}K�\w��nqqm�²Xe�`�ihh9zZ7s��t�n-%7���~߻�;\��f>kl
c�H��Sn�2.L��������X�#
�T�7��N̄gT_0L
+� E�D8�U�3Q�]�����A(*/���|�*��܈���3�%�􁆶8��cbAH�QD����?���!�N0�*�ak"��u%
�
����������4���L�f�8VG+�
+�-��6�R�
ٱ[OR*�D�z��%T@��ċ+��FQ�Y���#
:X�Ry4:a�М��J���e�K��̽�7[�\���I�pl~�kJA�������5�7W4�]�.�8�6�,Q�6=Q=�:{��R$�8�9�Zz�jv߭�Ui,j�~�@[_�M�j��eER$�,��I�7ӄۭG�zn�b�Ƅs�E��
�
�r��I�y�r��
4U�x�3楋�H���)�:����'I�<
�DŽ��RɊ>�3�C���*��VMf�g�IV
����>�#lu�3�|͆!���u�4�J��݀��B��2۠U,���l�pU����?��v����֥|���
4��7����P�� ���&�q�i)'u��'�73�g�j�	a\��ՀT�흕�E����oh�.�Y�}r�鑲���G\Xz�Tm|D���NϾ�e+��v>�
+TYn]��b,Eڸ�|"�ý�W����۶S1A�\���XT��|Y[�}�QvΧl� 2#z8!�,
k�i�*�}���Z
"논��N��D�,V��T�4֍�J��2�p��hޒڕk�W����Lw�n��1�w�4P`���$���*J� c5��[�5`��*�r���
l�J*e�sgNK]=CmN������N`ys��?h�+��$����*�g����`"�G�O��� ����P�R��3���S�q��b����I�)��d�R��$�trt�ě�[�u�7���������~���o������{�o��7���w1�<|��ݷ?~���_������<~�ջ_�����|����/���_zo��_��û����?����w�������/~��v���������W����߾�����_��-��o_��~���_~��W����?_�������VE�6���3��3��t�궵
�i<9�?�$'� H�� ���>2�AIrQ%*�D����$��, at r���p��k�]U�i��לY�^�=�NU�
+�j?�y�F���g�����.��i`b�.���?^�~�T�)T�P��F������B�X�.ќ���컊�#D�@F%Hv=
)��}Kp#��v�J��a��#��o�
 ��.����Vw�%I/w���;���*N3��K�P�ڡ<r�U�n�T&߄D
+b+��81��n��!����ˑ�:`Ⰼ���e읅�@t�k���
+=S=�}�6�
.Y�DVV�쿷�i
�j=�,T�]���~��
+��
܏�$�	��CW*zv<YL>��<`J�0�8��jÉY��d������o�r�����
�)Q�\��+K��N��������^Z��m�uW�&r��l�`�m�4�nִP�����l�
�ߴ!��w7�
�b`�,���W F�d�]M��[��]�LA��_��:��(�~���5���;�;�<m�*7��<U�
?�O��x"E�D�Cuj�Iz�����0't�3�Q�#�"{MM醄�ju3�hbH$
+uq��g��`(�,,��I��7��@��ʂ
�M'��Hː�:
�G�%0U
� 0Ɣ�v�4�ēfL�v�&��M
$��m
�	�k
� �%��h!:@e�&���N��څa"
(
+���Rj:��$ɔ��f�SnF�w
>��=
x�1ȼ��fl�LjJ�����*

++ַH�
)q��
M��J����Dۂ���,HD,T�B�%����+���#��%���gKLG �-X5U7�|��7@φ/m���d���Pɼ��#H� �I����!M
�DbY�P��t8�JU)�G�a�#�
&�I�Ne�b�F��E��#{N
�c"q�Æ��>)ؿh�i��˞�0@�'&��ld5/�����q�2{fH�p8�
r� �Lu��o@'�bE�0�_�I�O���Hw�r�Q�	� M��$�Ч,|��C
+ �P4$�OZ��
J�c�y�b��V�gMm60&I���
��6���6

+�� �9j�16uX�IF�`�.q�&��!�	4��	(
]�81t�I';-
�zᇐ�


d��
�
�H��=�A GO�ժ�4��|R��>%�����m�2	�n
��5
>]�Ht�D�Q��B��P�fj5�5�!1t8_�T.�Z�YX��!~ �n��6!�yo�ug�4�6P�x
��LD`k��\7�btD���-u�C�c�.�����LE�$�5Ŭ����~�nv�a�"�d!�X!� ���ΰ�fv�4<��7i�y������.z�U���%+HD{N�2{DآW����-�Ioeh7�;4w{'�

-i_f,�p��}����
+X�
]�գb��� ����Mi}8 �^���	nlltX�6�XK*6�BPK�P���sHd�����#BwI�(Bd����`59}� �������,��MO�d���`�5���n�p�>k��z�����>��1mG\;,�V��]\i�!)� �Zr	�D�6P�C�M=�B^�X����!q�����T�o� ���
�0��Y���J���p:d�A|�?j7*t?�@ aOz��(�l��	�v
+฼0H�j��H6�껾������k	�
+�Y�I�%�,�vj�p����vّJ�`�2�D�
����SF��
	��IC�1�Y�!��ٺp�q�r3ظf80����n$�wSt�����!Ka�m��bl�[�d]c��+#⡩�
�&g�@��9��51�
l�����=y�ɔ{��6$�sq���{�L���:�Ѝ�'mW�C�5�=��M|`�;.�{F�p_=�F�;9�r���>�����!
+�5�=K�~2�����K#�X`��RŮV���5ݗ@
���1
q�J좕�hb�
�����C�r���C!����C!�h�OBb�%VB'���t�
T��H���D#�qÉ���5�i	̶#�\%T���S��
�Z�3H��$�Ow ��㴓�P�ԩ�8��Ay�$M&�N��>㥉�O�w��"��p"���Cj5�f����+=�z�K-t��2
�,�*U[�ȋ����k�Fm쪥X}
GF儱@pX�U��
�t��	�gc=
���5x�h
��U(�1�Y`��Mr
6�T��[	���ۛ@�mL@��j��
z��3e%��
���4���D���"��_Mw4�$o��*�hJ
��	L0zK�L��D���3���$o�i���d��IWp�k�Xr�f��d.��
^h�71��
+M�A-)�7N��O6r�B��P���p1yi�UP�Th�>εx7s[�̆(��<�
�.k�~|!5�l�	�t�u`R]a��&IcjV��b�L؛Ȃ,�|�!m_#��֎PWu���&�Q�DeA��@z\
+�� *Z\;2�|$�U&
Ys����|%SV�8S��ʦda���)T�)�\ڪB7*f1�e
�g[��q4�c�P�՚B��p~HRD���I�F����+O2���
�k���TZ)|�L��9C�\ֈL�����rۘ����Y$~P�v��s��-��	٥P��٬�
3�mf��%?n�<jRٕ�mg��w�L��#
8�
E�fs)�|�����N��@;�'I�Q��m�ѩw�)�~0ly�`�
��)Y�}�K�j�
-�!����G�x�ˋ
ﺅ����	LF8	�&�#�	�^O�)�:
���r`�Y�V��Ĥ2n�WQ+�:
���9�ǬZ��i�� V�6-> x;L�

/�I�#3�:
�p,���x5� ��n�'S���,$�TY=�(�<��c.Q� �'s�/�A�]�M�`�
��D��9�h�p
d��w{cmɮ�����R �����
���q8���Rs�R��"�������	��
+�?��]�6bN�$6�T$�M³�Z��$ڃ��Z���cw�As����H+�\�_���c}����z�������+{(�'���A]���V+�>�,䚈
?[�i��.7�>�M& s�tv8$jo)���I�X�T9~���D�
b����(9��K�i�!�����)][�yV:´IY9̴�[y�s�r�i+�r�ik�r�%V
���'�9�V2�gL�{B3p�$����g��E|����6���T���"
�!
��Bs�bT�0h�ϕ��E�u�H�j����
%�MJ�ɫJ�
�J�y�0���Y3��SZ3��
;a�*��f�*׸.�+��q�Y9�5c[��5�\9�F�r�k&�	h�)Hl% A�@)����R����L� �m��Kh>��HlC�L*Ԇ��T��&U!B�-�Žh�_�4Il�.E�X+��Wx�Ć]�c���Ѩs �I
(��:aPH
� B�~�
+%�
r(<�v
��G���UҎZ�I��(T� GL��

Z��4 V�I�m�C'
ॎ�$,~���Ա�1Sd M;L��k����]c���a
YS���2�_Jg���1;�	̜�wgDשsG�%CD���&ā�MgZ�1�z{���'��l��U{2!)F�W-K�[��2
+b���>�I ;
�������e��$UB�v
e�r��0-
�8���FH�QGB=f�g����kI��L-���-��ҥz�A0<���Bt�S~M�S�p�@|����qr�ql>�O�
m�q���Q�
I�/�
�JzH�
��Ș�*�c�����U�2��4��Z�x��
a*�0�$�J�3E��/P��TjI���$q �~������+i2�NH�%�w���)lK[r���gI�)Cw8��E
y@���%4%Dr�K��\	qp$�yŊ`9�3�RO��^Eɮ�^�l�CF�#q?Ʊ��
R,����v��L��Ht�"��D���P�0,���5�ɟ (�́(|v�Ƭ_�7Q�`�m���S�-i=��KK��cPM�z�a:��������ݭ4��T_���$
<�O��]���Zc
�)MZ'�CnFC����I�{
홬WP񻉗�����~�$�
��!�.��[0
�3�����:9�'P�q��l���IVJ�T
+��jiA���H�������}�i͖?D�.پ�=�%�"����.�;c�c`��yj��@d�iY��UK��jPW.tc#
���ޣ�֙���ݔJ�a8r��_��;�7�cU��
�Q�!}��>q���O  ÐA[�|'PA���$��� ϒYx�B)���^EqDj�'�j	.��6}��� �%t
=�
M�"���C�$'^BV?kQxZə������t���k��U��Ѥb1R�@���-�ٜ�R��P�d
�r`d��2�G������u3�z���t�gK98��2
S�
g�G��p2�IL��+��8S>�Hh.��'��ES<�I4h���D�~��B�a
�+'^q�Ȉ�����CG�K�#.���w���a1a������`^�cA
�o֟v�jț�~r]����r5�*�/!YE8��DF
B�+-f�����i��k��r��ϥ7p8~�I}"�5~�z
h��e��*�+C
+���ސ����(�mHtU�
�s���ѳ��P� �__�&F at Z=�J&����!	��@#!nd�HH��iSd�K�>�=�����Y:�6K/#7#j7Q��&�$'���dܬ�ǵ$�r
��t���#:rQ�
+�	�护�Ҁ�qH� v3-
�Q
6`��0�h��!�U �����N��s�Рm6��d:82e!(�'��U͌���n
�W��$q�
��G�gF��t��!�tP��%�@
�K �VK���e'�����ݔqIR
M�#ckk(��7�B<�T;�,A�s*!�!����JL���Nog}`0�ҶR�b��-� �pa4 at r��ef�P�8"Y�ں��@ߎ���+��M�`�=�Dǫ�>�|V��u�����`_�b	��
+$P�`H��bOj�^߱�VޔЮ��1x�.�a�ܜ�qt��"^X�S'&�>����:�ش�2 at WJW��G�R��s�啥e�->��������8R�C�4@|1��HVt��Og0���{n
�
'Vq;

��ť	�&(C]�M�,
+�
\':�H	Ӯ�
���L�
+g^��޵��2	ߴ�x!�E�
�J& ƪ�.M�&�
0ѱ9��HE�\"vt�YZ�qL*
�
)�Va]�X��УVB����t9
�MǢ��Ҫ���Z�b�P�da�ž�4�P(��=�vX�D����s�ä/�ф��D�R>D*�CfX(v^UK�CsUܘ����_��e�G.1���i�RYͲd(�(چ�
�
%앆�NGQ'P����cU�\o��N�=?@v:p[�
a�X(42�.�d���͈D��NH</�֨v��mR�P_������;5w'w��Ss�sTd��Ҥ�NM<�H1X�S"�y�8x�i���`}P�c�:��U���O�C6s�Jz+�;D�%f
��0��d3r�3�aGf��U�"ݖ]=_�:�-�˓	gQ�k�Zīh#��VUE���,���
G at J�^/����&�m�JHd�p�a���fG�m&�tx<k�`%C
E
3VC�c M��P�Z��N���#m B	��&�0�c'U%��*a
+lKf!�Z�%%��dD�49��
���V
���pb܄2 C$O�	%L�M8*�
+��a�+���i	f��F!�exZ`�ݳ5�Y
��-s0-����D=2��ɖ�x��8	�w
F�[ʼ&<8�u
=�"!
�; L|G���D<c:R��q\;m4D��ī�WѦU�rTW�y9 �?������jo�J�[����H�H7KJ�y��Y8��@��{FA�D at 7G��!#( ��
M�"�a��i�bv(��ÕC�
͔�⤂1{:9
Jz�%�;y�" �Ĕ�/�9��v<��BR{
+w
�H&@����"pԡ��m��>
s�
+|�/̌XՅK�˭S��|�7k<
� ���ء��
;��ܫ�R�3-���-��PSַ&�����ܵ=v�2���
�5
���pꎤ�H^�x-�J7 ��.��%��@.3y
+���C�`LQ1X�,
�aJ�åIGz1�'1�����C2U$�e
Ԙ�aF_t|�U>_m^��/<Ұ��4��
���g�a��-�ߌm����'�Z
Ҫ6�7�q���n���p%P!%rh�@_�UE
�,�P-��Gqcbύ�$
��Fx>�	
+X�"�Y�.�
�J�"a
��\�Iw÷��
�@ђE�-���BcEd�2��0
iv����!ʫ*�J�'���:�d�4;LNLT$�!

Y
+��:�д$��2�
_?}��T��9������@4
ٲ�Y۔��$EAp���E���		hb�Y��t �N�Fv�
���%M�ө�h�YHx)�n�!�Х�D�Ƹ�h��cQ}<���V�H;�S�4����jhU�
�͡7��*�^��1���6Ӗ��fQ��� 7ޖ�~
k!K�-�"
��H���
NA�L��+�UGF%�M��_�ݱL�a��y�* C#c90�2��%����ר�͈��8
���*��=�s
�*��B����W;����
+�'"�$�F�
īT<��~�����*%�W��r5t��V7��?6�o��m���hֱC���~�����)E]��i��5�`D;W��
�&� 4�^�8�Sʽ
���G�J��i�?Q��t1�GL��"�[̀O����d�e�`'�x��.5G���,��a��HA(k���M���
+�j�
)���\z�� `�X˰�2j"{<2͆�z��g at z��(	�T��@���6)��DP�ц�쉦
�}:��m#^��� d�
D�-_
<�3��
�38Diϲ0�v4�{=<�˘�h/�^z4�QlJ���g</����)�p
,�P��G�\ X9�=�$y�9<�d�19���
�+�}D
���0XY| h��y |�4�����GM;$ad�_���m$F��`�
W;w�3N[:8��{�Ax�b�0YI�E_
����-|,5���So���+S��3�&�LFd�ɝ�*@4�YeJ3
v3�D�n@"��
)(� ��h����R@A�gפ�/��7�iTl�aZ�)�ѩ!�kJ��
���E5�@�$rl���]�+;����F����$
�=�@����T�h��
+��D��X��
�Fz7@�ח����J��Ɓ��zlQ�?��‘��a�BJ��ɲ��%Ǭ�b�
6���
	���C���S��2�C����Ɍ�oȒEZb��SL���Y�'|��
̕'-�a@#�C�;�iA�
Q �|���k�D�fqw+9��*)v�%�o-X����]
9�y�D'�}��EWT��Z��x&�P�Ad�����t�p��{,8	�u��^��D�9Sd��2��.%&��O�V s"}p��>A�[�ʣ�*$���K]��06�!z�ŀ��E�����e"���w��%����� Ç¿n��x'�b\� ��-�:гH��%A��=���Zb
p
E/�P��
+Y�6�ԥ ��f��B�u4>
T�A1��,�6�
��	
4��
������*"d�N'~�;\X�ր3/��QG�䡘Z���;*Sɒ���g�z�Jۜ�7�j۾iT���3ca��{�ƭ+7�i߲�0SK�(_�*X�۶�Ɵ�@��ئm�4kX�|�0*@��.��5T���X0?k7M4��#���E�=2��1ϟ�ܸC+ʼn���@��n�2-[7{��!
�7���QR�kT�h�n��2�Y�]
+Ն�F]̀���O�ıhM|�
�J�8����h�1�4�P�w���+=��
dX�����P��D�K7�i�l!3��]���[�/���_�]�����|׿��/����z��{�o~�w���c��^��h��z�c���y��%jխ��x�=��lհ�C�Ļ��նk���
+����B�ރ����/�.�Q�ᣇv��
��*9oL�0�S�'~�w9Y}ǿ5������_u_��o͘0�����*U�~��3����Kt������O�j���	��q�ԩ#s�<���*U�v��S���������s�zs����W��i�s��!m��Y_B�S��݆�����������5;|�OS�g}׿����=e[�н�����7d�8
:������	�Ի��k����Zu����9���{��O��_���nӰ������m��أd��ШE�r��{�?�X��?7����)�ްA�"����_�ȗ=�<k�C��B���_�k����o���J�p���D�Zu*;��l���?����,U��%�ß�j��)���������*��ʕK<�;��xٺ��z0����w���5��]�Z��������jڼn�B�=�w���ث�r�kU+U��ZړU��kۨ\~�����w��yU����1c]�/%�����j���y��|����x���f�����<a��<��
j��A�y����������D�U:�<et���d~�wϔ��{G�ϟ�r52�*�*�n���
�
jY<�G{�L�:U�;x��2��*e��h���ͭ�T�G+߰E�a�'�
)���
?=�hԇ�����e������<\�YNǖ/�`��٪ujUp3��갏w;u�Ogv)î�//������J�br*թ]��T��0tžsW/��z�va�ߋ��7l`��.�J����7��c�wW��
ߺ����/���q�z5,�tO�:Y�*�;�V��������{��j��Y
��c�[�Z�yW�-��ΧS��#�
���ҁO�f���F������]� ﺯ\�N
��^y�'o�w�
Y�P��a���ޙ>�e�h�ݠk�����U��t�
{?
P.���Lxg޴AY1$��a���m����:Ӷ��w���n��
�?pƂ�S^�[�V�A�I��u.���O�,�{)zյ��O�z4��^�΢w�v�����]n��o/�=�J~��
���5h�=���A*\���fm��7�-�gs&�꣩m�|�9aé�k\?��i�P�.��7b���y��~��ㅮ�Wo����F [...]
�2�~+2���ӱ��Q�d��OB��n
_;">�zm'��}���������=ҟ
?���Q��
+�?���_��O���yyg�ͨ�r��ێ�:�mQ�R*16p�u���������U����:�qfes>�b���]�,��4�z��
Ǣ�M����E��Ӿ���-�%V��K�V
�+��b=���<�*�7��zM�_�
��ĕ�'6N����۴
�]O=_��L�G�M���U�YNm}��<��:r���+��Ni�z�
�����͛�6N��U��zsQ�P����/�^��{�؁�#�Q��f�qL��}�'��sQ��K�E��-�k�|��޿ޕ|��%�ת(��FcW'�؍�[�yR6�
�Uy7�}�zZn�te��.���]��|s����\�x�q×��s����_l�����U�������ۯ���CW
�]�C���g�O%�Gz�v��Y��T)�mE�qb���l�	�qU���7/�%^V�O�D�qr��j6��/U�J�Ek��i߸�Zt�����8��y�^�SLV�iO�ȋ]��n�`TS��������U�=_�zE?�?z�ʫ]�� [...]
+m}���x�^/�l��0�5�K�f]��ɩ�l�'���L
蛧7OkC�h9����ʻzb��C�=����'��ɻrtݴl����n٦�KEcst
8����y���mg����5?��F��)���+�6�ӽL�QZq�
+
�OǷ�y��Zm:�6/[:���3h��-J���8t�x���%=�CB���J6b�����Wk<��ʛ��6���jmz��ܸ�>��[�u�Qc���!��z��
g���[�WL��g��d߅�wEs˂�
�����,%���Ѱ�S��z��Q��F��#Əк�r�V
�t�+��G��x�9�\N{��=���=�

�Nn_؇VY/�װ�}���}񾊯
?qD����x���=�]��
�3h�W�ﺴِ�}?��&�ʑ�ӳ����>b��nubֽӨ��c���v�&m:-�E�Jm4생��/�|pŐ���ZG�ϖ�Y>���;|���c��*w2~°��U#�8dU4>��կ4�m:z�S�����AeR�*�W�
]�Ony���P�bmޘ4yD�*1�ݨ��G����H��_ɻ���Kp��l��ݧ�/��i�hW�l�y�;`X1������&O�+�E��J���h�M�Y�t��W���4���e_��M���y�{�D7������
3ڊ]�a���'�o��ܬ��
7�C�qj���K7���Z3p��o.��{�ev��
78
|%���;�uf�ջ��6i`��A�`��a�G�j ����wWo|�e���Gsո�{ϩ53���)��/�Ʈ����W�{�+�3r�ā�G^�A&n%��jc֝�q���/�nsZ�[��zיM�Qٖ
�
+_�������m���q��۹����<c�ܽ��
�� Y�OX�V�뎪V<�q
mB�/>pU�kQw�I�V�ǎ��Ј瑪�g���C�8�=~
��o���%����u^���R���w:b�-�
����αB�w�<����v�a���|vˤ��������bg�N�)R��+�Pua%��<��7|P�
+I�I�QK7mY3w`�W�4�=��vL9��T��G��뷛��7����?S
o-ֺ��כ''�n7k�����~2�w�m>x^��7�����Q��k�W
.����>���
Z9g���t8�g��IX���=s��#��޵���p����ĝ�F���~�~�a���
7�o������mȐn�]#�\m>���/�y�ܮy�����2�/ݧ�-�O��hL�7�l?):�kNk4��}��\+�Ӭ0hپ�5
6}gw���d��U�t
2=��
���������}��$
��W�}c���]��a�σ�hӼ�Y/W��J�^�GO]�j�w�o��y���s�������n
M|����W+�ZLq]>�kռ�'O���'_l�{��+��Sש�o��.�~Ĕ��Z��j}y2c���
ٻc���_�;|��4�-���%�����M�5e@�����_���Ο={��k7�G���%��
ǿ3���k=����V�7�[�;���JC�5k���?�[�<�L����x�<
+z]>�Q�h�T���'k�M�\\��ͦ�?~��y�yz����f��U3:���w_����gQ����M���{���];��X7�4lա4��G]W�����7'Ν=�njs
��h��6�*X+�u���s��߼z|���:�w������!��ӛ&V��U�ϒo~�^��n�RSW���O��4ׅ�����zq����~�u���9���~�w];����X(��}?W�<�a�v��I{~���w~��
����yg������Y5��z�#ͧn<��ey�<�mn�wT
�����s�]>�bPEm��p�ٟ�b7N}9�5��z<kšC?[�.�[6��2�K�\���O��Ůk�6��RQ��<�`��o~��x��E��S)����¸�1���[
�
+��o��n>����ƹ}kg�y�T�z���[~��]?wp��J�fv�FCo>|�'��7/��f݂�	8P��C�?p�'�W�?�����K:���=s��S?�8�z��5
�t�S4�v=V��ď�>��T�ƕ�Gv�xR�&%3GH8͇/�b��
?�m7�]8up���&�j^:_��3�{O�h�'/���]�6�{�\�`B�en�s~�L�~ӗn�{����ׯ\�v�[V/�9�kV��!�
�k=h���v
8~���׮�(�0�y���
gO
;�g˚%�F�iU�X~H4�z����OZ���m_{�Бc'N���k7n���֛7o\�r1z�w��޶a���3G�lU�x�#
+�i�u�Y
?\���5_l�v��Γ'O�_'O
?v����֬�h��#v��
wV��sek�ڹw�AC���0k�ҕ�׬���/�%�/��|��O�.�9n��]ZժT���4]����˖�P�Vv��C��9jt�k�����Ҳf�����	B<
+?[�L��*f�*T(_�Œ�/H�{A<�m�B4)�͖���(MFǖ�
mkz�d۶���&,T����?]
+A�m�u%��d�i��7
+M�
*�lӪYSL48�|��f�sҒK�nٮ]�6�ɥ[vhܤ5���(U�Dy0�B�o͍#�s��h��:E��NЃ�
r��ţ
��0�!� E#D�F(I����j��b� �`:>�A�]$��)��Ҫѻd�[�O�H�c�!`#���c�I��*
f����`,-�$�5��#Z�
@�Z�bL�
�$ �q$C��#*
3�(ae�\@R+�r`�9%a�XD�K�Ȣ
+ D�J�T�B��T�F�,Z�z�
�J����L"`
�bϰ�2[��L�t� ��[~��B�/�~�l
�[�cv��O��z�fHAQ�

�pD
��������z$
 F��1Q�	M���:ϒĤ@N�<Q�G<�φ��Q&��xaA�$`��3�&g��
ѱY&g�#���"ҿ��E|IF�4m�dw.
��
8_�w�Zk6�|�EmҴ���
�UaRϵm$41�%�L��m�B��
Ӓ������Bʭ�?㡚R�MA�%�
k���N<[��^��
pK:���!qw`�	,��c�Z��hq��H
��xD[���O�;I�
C:`���&B���,KB g/@
�x�˪�d5C ����FѨT%
+:o����.3��
�.mM@�<.��bJy���y
M�H�"E�R`Zn"�'�#9��1�4��r@��4he���	�"Lp6��cmW��$re�.RVW�=�\@�Դ�4���4��&�jANw��
+ �&r!C���%t
��%�KbD�pI2X��EL+Lە���/�W��i��LmTh�m��X�&��d�1�(٘�J�Em(��Z��T�ԫe��Qڽr���4�!��E�j1�|Fc]���	C�h�DSL;0:
 $b�7!��6 
��	p�u]ρ�@to�@�l|�G�a���
0�9(��x����C�h�HF��m*��43�'!�)b��{�	�H�Z!R͙�	_
�
J6�ˎ�Q3�7J2�
�[t0b�(>lpHUh�HP��xu
+\��e�)8���A���W��k
+ME������7���Elj&� ����>�t��u�v��1U�]�N7�%^){��bW���0l�f�����uGM�<M�'ƽ;���oӮ�oΛ�莞x����I0�m�F�g��������v�������o�~�Գ|����n��^��|#6�����z57�
�ކ��0�t�v�R�'n���P�@����
���'�wTm
���-_���l��k�r]�L-��z�{�I����
+�!��v�#p}E�i�oU�UV�U
0e~��m_���^]E�1f�C��?��9M3����_���¸
{���M�5H��𮮽�������D�H�O/
�Ɗ�����)�ئq��4~���g�U���%������Q��)M����]����[�X�M"/�ZL�����+yy{��ߪwn�a�k1g�p�U�����u�[�}3��5��rfc�{�7yy����9�n��g�^҉���|=��h�[���ﷱ'J_��L�wT]|6���u�8�E��{�m�l�|T����y77��_:��'��=Q�-{>�w�
5�P������l~L
zz�s�w;��x�Z+��}�
�O�)�ܸ��+���:��#ɿ��ؑ�b���y�6��i�٥����
��B�{�_�0���M�ſk����K�=0j�k�Ĥ����K�o/���6pO^^���g������~�p��
+
�1�
�{��H�����=��:l�
�n $?Y^�|���y>��U�Y��[�6Q��}yyW֊�-S�8?P��ᣎ��}��J�ފh�m��cF�:�|M�ik��K�hd��Ѱ88)�r5��
�J�[=���஗���s�դ%<�k'�v�-��>�V�T��yy��x;��f��K��G��K�p� P�Mz>5�`��pW��C�~� ��#���'Uiᙼ�_@���9yw��ވF��N%
��Y�T�O/坘�R�ѳ�3��難�9���$z���U�.r��n�1Z�5�/AG�}�غ���H<pmc�T*룣'WA)���i��5G�
]3���j�އ�Fo�;w̄>\k̼	\��cg�}>�e������[���#�Z�i�o�	s�s$]�7�G]��.����T�V|��t1j;.�D<�x„����5U����Ѹ[(���?�ග������Q'����
��o�j}*:���k��o���:�
��U0�EJ�W
MuŻ��
�>��^�:u�O>
"{�����|6�u;�x�Ԥ���ү��ȱ3��P��cި�j�A|��+�oC�[�5
:��N�F�&��7N�����y��Q]j������g� �Ĕ��45�X�W}�c��MZ_;�����f/
_15�H^�vQ�j׷���fmX�/5�L��� O����w۹���
�;�P��ཪƷ�����i����
�-������
����
��.�ďIo��O��s�

�, 0c'?1�����N5��������i�����X�Seg�����^����{�����/<^�'��#���;
�����U/O�U XΕ�c��P�-���(��j=?�
��ʮ)�
h��_��Ř��=�@41�xwݞ��QW��
[;�@tU~m�{[� <W�
����N�3< zX�Ѕk��صk��v�ܱe���=��g�㛲;w�ً���;g'�\~��]ڷwi�L��dtx����>�8
�&ρ��(�J(FQ34H��󥌸�bUB��p���1�G��S-���0�]���D�gׅ����$�{��0QI͔|�� Bz�hh�a�R�)����/]~�P�"�N�eZ�^�\�Lzu��$� xQ������K
�Xz
��Kq(��y(-�n!#����nD<v]��
(9��V��e��d��	�,9]����"�q�>@��c]P��^��s8W[
+׉o��:�zXy=�����la��T��""
�
�x)�
}F{�H$�
���
�
�.y$�d��`z� �	�;ɠ�
	}R#���%30
���6T,��� ��#�"`��1*!:}[
+�D]֒2�&V
+tgH�.*E(�@@��]�Tx(���7$_"Ya�4GJ���7l�e�1x�l��J�:�P��aUhj� �n�B O�����R�.��� �
+8(���_8�P�)�
*a(�J,�QK��6ʃ
	X�5pD_��%ջ��1 R��	
��L���?N��V(M��G:��s�3*8­GjȢ !��L�Se4�!P�@
��Qe,v�� �cQ�1Hd3�Z����L�>�घ���E�e�Q�D�ABpw�`�D�oB ��	�82Y� &�@p6YJI
z������b��&Fo6!%K��o٤T�.�KE���
�[t�(���l��� Q�DH(�XK�X�pT��P�(���0���V ��#�T�H/5��=$HC)B�XvL�M��D
`S�/5h�
+�0�  De�d[C�Bu����7Xp�
��
b��"t-��0��D�Y
���d�aqFK*dE���S+E}�vI𜴭�:�H��4���ˋ�e��>�*Q�[�%�ف 'p�úY�Te���y|RpR�(�*)L��T(�aD�I�
+��A�t�I
ZD}�=m�w=� (�:�����h��(|)
EHI�'=3��Sf�d��_�my�Գ�H
���� A�� �,Hb]�ױW�r�Z�?�x
��
l+ ���sq/�\5��h�0\Z�jS��`

^���EϦ����m
�0����2��l�顩$�f��������3�w��=��E��6� 	���ǦXA�Ǒ����!�f�_���%����<
�RR��B�Ys
C�p��f���6Z�
,&�(q�ɹM�a
x.���F�S
�e�_�~��h��/�E�gx�
	hJ@ӲLw�	S�T�
��j��
\_j��R���D
���%t�B�h��#`y
A�%�:�)5�9Eɾ�#�4 %[z?�QB��`Zې�,C�8�0��LQ��U�J`	�$�$\P̤��L	%%=*�ܦ�¡����+P{Y�i��جжԿ�ƅ��V��,ڪ( �
��� ��E��h����K��b�q#$�
H}﨟��Xd�`���٬

8�R(�ɠ�Ѥ� v,�	�;	Ú��"�
��J�R�{K at R�Y4�ڄ��!|Q�nǜ�B�L��B��s�^
�v�~I�/1[��Tmt���I��yB��/F����a��h�m jຼ�	�

�t���b��"�9 z�lB	L��[�
+P�EQI��t�{��:u}���6eϔ}��/��߆٤�o`��ee�HpIO�Z�xR$8*�0 8'�O�F^�3�܂a%�R�

!��!�ґ��<'@L1�j�
%F�IŲ�\q�]T���M`�n@�P��QmD�E�����D|����f at U�в��Fh��(͇��}D1�Dx	w=
����I0s�C��
�ƴӬC��\�.�C�*&F��x�-�i�ر�
5�h�(ђ <�(0D�
M��$���5�:�P��*�a�@�Ҏ
+j�aS#Z|��o-"BČ�`?Vh�i*Œ˓�!�Q�.��<��#�";2|W��̊�a�s�
���
�0� %G|+'�ވ��v/�Kl�l%�
+�0a���W����(��7C���Q�!	j�i�+���N
:
ÁA�
�ɼ
+�R���^�p�„B�gG��C
+��l�$��a���h�'$�Ym� �
)�p!���Q�E!*�A ��0�;���
+�Ć���D�j�+�3�}g@'������V�c��(&z�,T�y1��e��A1!�[>���!$��鏆����48C�M�w
�%a�"�;m�c�H���
\�G\>~"ז�a�Z
+�A�#��
34n�H��k�
G�Q���F�����d�F
+�C�\Z�Ł���" a_�� �A��h��_��tt/���M�a��@s�Fė�za�U70l:�d8�	;
	�
�mC�.0�	'��=��	`Q��+�\aj4A�
�mE��G�фR�\��}
��(:�±�[H��p�>��'J`f�j�mh[l�!uZ�XmJ4<�s孄�v w�����1�f��=�>�ף�tL9�!7 
#
S��}r Ξc�D�� vE�m�1N��tP}
+�f����hK�8Fc���~0;��
������ĎK�f� ,�K緰��Mj(4ı
+!���u�4��ZH�ȥh���Nx-'������dq���{X܄M�0��׆�9Բ
�_��+��<�:�ߠ̡Q�x`�1�Q"�p��F|E�}>,�
+���!~ 49M��
+a]� }[�đ�K���-"q��i�����' �t�Bf,Q���A�t@����U��p���M����N#�U���Y��l�Չ�ӹN�,&g�;
�X��WUē2^΢�l��ڡK�n�ᴈ�o�f
t�q'
9�
)������9���M���e4,ܦ�*�!�kC"��
?��*��
�����r8
t�y�H��\0r%2 �ϧ�-�Z��*o�P�
Ѽ�Kk NDKEϋs l�o�؏6+D��>n؜!�ݧA��6v 8`�C%��g�p�agb�#n:M=�B�#e�
<�
X����\wC��HTZֆ}[������ Qה}0�D>/L�|f ��2��+�uz8�:��4���&�#9lD�2{юN<-)
�;�)Q�P&%:
�;m���c[d]����:ѷ+��t
K��3�%������

���,�!
o��-@ �k��?@ ���x�����Ү?\�(���'
�mr��>�h��8��rn-q��bI��;�
*].�
^V��K���>�}-�@������
�l�
+��r,V�D*#�uBd�&	(��JZ������17w�g*U�s�������g�
+�_~@ӑ���(�Z��&���52]�=��^q�o8��9�L�)x�6Adؚ�=k�%~��o���va��T���N�;}���)�R>V�b5 X���+:F��X��d����&���K��~�e,^�h�ր���ؖ��T�ƹ�%�D

+�q�cE�2��.��*�e@�T���S7N�l�Je�@�y�=����Q�U8q�
�Vy��wG�Y@�S��
2{ր
+�<
�Z+&KV�©T�Qs'�f�����>۳�0r#^8�kâ
ڋ���l�zz<��?� D�͟޹X���8�>��QCU��9��|�O��u��uu��'��
Y�;c��¡�V�&��j��ӫ�2����<5_��=���h2~r��g�C�f�N�ۿs@�&wN�x
��/�upc=��0�y�'��]��_�ٯA���|_��n.����C����w�|�ϼe]uȔ>Ţ�.*��y����T���<0�+����S�l�Qg�ƍ3��
>x�	3s���
��Z0�iT
_X�$剠����߳~P�F��~tY+-��O�Z���_�D����Z��[�"
�؄��L�������,�q�f��u�Z&�Vx�|���o>7i(��x�&Ę��rrr*�`��˿"�KB g�r��I�~�O]��ݶEh�f�����
���֡�ME�D����sd�/��T��
��s�b&���]>zP2 ���
B��\-���eMe
�;�l�X�#S�h�m�2 [...]
ٗ!��^�`%D�%�J��!�Kn�gRgƖ]6J��w�,�L d�?���g�lɡ��5JM����p�YR㏊���ї�����<��{��>�����æ���{�n4�f���4�~��1�����ꔙy� �'�S"��ni����drpx
+H��/2�;m.@R�:}m���4m��pݞ���б��f(?���J^7v�X�hB�I*w���q�؞�ۨL*�:|��2\�����;m�A$ۧ?�ŐW�}�������w�B
]9��6�&���}�뙔
���t�r��>__cjAB������I&�\�U����3U�<mW�kt���9��2y�m��rzגA�3f��>v���Y8n\8�w��Ƶ�'���L[������ft���Uo�־Q���ٴ�9k��-۶o�A�ί���p����W/�ڷfv�֕n�<_����܅��]��<w���7�[�dJ�|�go{�m�.'�cN۬;�8���7r� �S�_���
+=S=�}T�B���hܮY����4��8�E�.��{
�����ӊv��,p�ئp[�N��v<�>Q�L�:�ر/\͎�.�\r��ț�x��
M����L�%���L.8b	$$��O\k*>U�d�Nӱ<v
��YԲ<O��)��ft%��"XC:բ7���\t�q8� �
djx���\�?�
��K!1���I�
���,y�b��XC:����
�Z�E�֓n|�		H3"���f1�!3�� V�u]
E�yF����wM滣����7�g�� ��c`�� �#�ƈ-v�	�<t��=���
Vr9�a�[�;'��M|�
A/$����G<.���Npgep��k�kS���a�^D(��h�`e�#pQ9N��� 3P� Dr)�/�}v"����+�6]ƥs��e9[!�Ly0�
�/}ƭ��Dm�ϟQ6�
$�a���r�A
��� l�(]�r&����W�(���7�f�%9o�ُ.��q����
�izҽ��ѧ�\����]��5�Sz��`�/�D��,0�!s�Z�8!�aȟGa��e8��D�`
��D`#�Tn�^-�A|q�L�f����
!`��2c��5$\,j8
	 ��:�a�u{�>"��PD�O�-C"}���q��SOj9�w(�Q��C_�r0�p�2�����
�0��(�RV�W� n���$\�����M�/ ! �{�$���/�I���q����Xr�XAO�EB���ǖi���B� ��ir��m��
��C��k��wy4f�Q
r�z�9=
4�؉8���xNÉO��j	�Dk!�W	L��4�
��B�#���
 sƕ`i@�u"�#�ԨWor�x#A�
�(Vc�t
�� 䗋H���
$��
opa4^�<�r�v�	
8A�8an�P
�bp *��ls�� 9�K@>���&z2�קp���b�� �a�H`�s��01ҭ�R0���c
+r/䥒������5�����0�	B����!r��n�CLTa�i�
;t4Ǘ" {$�j-���(�"�o �W�a�iښqTD�/Y� ���


���/�H8(
"�g|��D�b�U 
�/uolE�r�0�	�{\��Xr�g����ۼ|)�l/`$��?z,�p�dX�O�ws

�̕�v�i `ƧG�a�RssS�0�,�;F�c"E�������%
�ɾU���Ck D��.̀��a�J�S[� ��^=a�����:
Ka�O�X 
�"�1�I�װ��8PQQ�>�-dϡ*ݥ8�c� ��ېkk0g�'ÿ�	a�X����ܤ

$G�"��#�B|�5�z��k
+�����_�k��愈�[D
+�X�Xn�;]��� |?�ȴ�q�ĵ �w
cb=
S�UqM���8�8%Z��ʀj�!-&����
+[�""8��HQ\��A�@�h]
��؆=������ 9���FoaED�������_���
�m��l7�l61tk`a���%KP@F�i��pע���ر�R�,q�2���M0D�-17��K��-�pP@�
�k.E҉Э�t�8���
r�1!��zIc8DvK
�RES0h
�$ь�V�@I�� p

+���$�"�z*'�
lSY�6���
�CH�6���f��"�Ѵ��-�Z�v�S ��]@P$B:+��
+e-�р5
 ~���i��	
:
ː!rP�(V4��H�i�����K
ڎ���R7� \����-��x� ����
’n�����������r��w�M�A
��'
�����|��rꉧ���Q��|���O���c��ٻ2'��|�z�%�c����?���ߧ2^%��~5K�J����G�{�Ֆmۭ[s
�v��S~�ȃ��T�<*���yYǟ��z	b\�O���͗[���
K)ɏ=�l�RE�������OZ�%�V+�B추U����r�JnL�J�����_��o�JX���ÍvVn��*�@���x���|�I��5�9�R/�ڵ\*Us��, x��Я[�O=P��R�P���!x+
�����No�j�
�c�� ���5��e�2hژ��Y=|�z��۷-�ѲA���jx��u�=U7�6���gMn��E���/
=x��ѯV�
޽I}s>�R-`
�ڡ5�,�.�f�Π �����/_<���}_�?,N�5�Q�j��N�	�\{��j��>w��}+�}�~��&�"�|���D'���[:ٿB�����|�<z�}i�T��s	 ��Y�~m,s�����` �{s��F��d��J��;�����J.ߪs����۾R4M����޳�
��-9��w�E�-խ�@�<�p�T�a��# �|v��Q�jcϭ7vѬ��
�Mg~��h��Cw��c���O���l�N �z�df�����鑐3xq��Ë�_
�N�Mγ���w�,�}c ����1N^�rj�x�lY�E��|��7릜*Ţ�0xޢ@"_c�l�!�X���~���|�9_
Z�t��}<�G��^�u��S�{`�G˹+�w�nP��r#��}���eˍ�q��`�-�����i�m�@��9w��a�S}?۱T�sʴ�O@�fs�~6MC��9���o�DWn�8�y���# �\���/V-����-�5�Z�F�-�o��I���
 �sm��	��
?�zP�T�q<�i�Š����vω�y߯�J�ճ������[�>�	��N�#|��O
���wl~��/
�t��P�.+�9���ż�
ү[CB�f�|B������N��rV
>�yL4ʹZ�aݢiۢ<��_8���<
�y�DT��Ó:���H����F/i6m��:��[/�]ؽ���9���:t�3b���{�-1�х��Q��cyW7FSX�񣣹�ڜo�
_7
:�s���X�n���.�_����Y��b�޷ D�Ɓ��oǦ�
�
��퇻�� ��=�]��٫��:�y"��g-M�a.m�%����k���Ɗ�Sz���m�ٻ	&r�˷Z 8���$������SS*w��U��ۿ��TQ��+"re��7��
�C��4����W��і��
+��cE9������
˧���N��&��˻�ٞZ at L�a�� ��y
4��kߌ���]\�_�{,=
y�������s�Dߴ�x��= ��LZ��E>b(�����o�J�����ÒU�Y���[�
ߔ�}���EMR�`8
D��R�h�k�"Cc����,��ǖ�W����
�{p�v�F��n�A;�QO��&`��a��
+��kp[�;|vKdҩm����?i���=�zt��kCB�g��y���9���#qh���޲a�i$t\}琯��gw��C�|���1�+�N}1\��_���N�Z⺰m|
Tk�Ww껸kJ�����;��⮷�L����I9��Z+��������o���l, l��owmY�dx>�C5&m>qK���
���ڳS���3�}�QK�9w�������/
ݹzf�۱U�j�k��k6l�����D��m;�
>{�™oּ�z�r��@\e����v��W�.�z���ϖL���(�T�B��솷���_��/�阹PE�f6�ddӇAdT�O”j���&��
�?:���bs
���I�������c<�iu-�q%���6%K����s�Ӎ9=
T�N?R0
/g�&Ie
�$�rJ��'�G��ȱ�E\�@���
��	�$�P�g���4�q<P��~�G]o�
(��;�8�@�!g-Fk�l.q����!:S
+�v%V\p�'�n��x��jP?H��"���jm:�'��hG�a�/
m�h'�G�g΀ȯ�D�#qX���
K�\�Q;����G��:,M�( &r��s
� �-�۹�ˋ8

+s��9�蜝�>������!�+��@��L�ր� 
"�%c
v�36=҄
�3���N�U�y���WH�c��K�' ��+�A��Dn�61
D6!Q�g2ű=W�i;�#Jn`�6-_�sE�]���mU��c�)�tq ?M`$�>T*t�y�%Ȉ@�!Ikp�%p⅍���Ëz,��d�]U�@�S85�s�g�:��
7��8����@bE�s�DΡAP qb���r���D��K�= ���5	a���c�0 #�x]���=e�3p�����'
ٹ�,ڦ
�XO �b��F
|}�F��ÓU�}���8(j�0��王��"/���8�!_���M�
+|dM�
+�<�3�A��AV�1̸`�E�6��������I� L!���e�2��b�
+؋
νܻ�Y����e�i�
� 	K�3�
0�����$�p^��_�
D�.:t	t<l�9�2���<
+tU@��0ȣm�DS5���'�2���n��W�s<� �
����0�A�A��
�Hǿ@�
�z��)ԳlZ�=Z��%� 8Q.�
���F�� �%�"��!�M��Ҁ�NNQPC$���C
����u�@�g˷�y�}�$c��Z�
����k���>%�,4&!I�
n�
'��
�q��7㬀𘘋���bjY�����HUh O-A; ނ�!W��	T;90�����/��	٨Mځ ��%6�Ѵ��P@-��]�u �mW�!.���$oHc̴�aC�3W��
���F���!�>�i�7���
+%��1���@t7;P��>�XlOӑ zy�
�����OL��LT��mk�a��ٶdy�d��2�+�� 
��x&�
+аP���Ħ��`�)ࣃ�1�
x
4�T���Z��|�E��NXȂ1
Mb�
��*
�an�)�QQQ����@�7�?P�c����&W�����P@܌�[ ��m����u����
TwB������ߓ��7��?�6J���C��/�K����ou_>ׯ��?��9_����J=$��P����{R�Ǖ߯�Y���h�{
�S*e�(�N͗� �������{��B�uk�s�j��0d�w�]�'���Ip>��� x�e�����e����'z��
����D=��@%�_�� �j�{�j���O<R�U�}�~*�e}$u����fC�H���/G9�@&�t%�V�!���L
P�_8�A�'��9^Iӗ|����쓊֬����D�ϗ�H����(,r�?f�0�C�zŢ
�Q�.ïl�`��%R)�J��
+W&j�'ZQa�ܹ�w�T��Q����/Te�H�O�۷(+z�b�,�,�RN�:Y�F��xJ~���
k����pߋu�0`ǥ
�{E�۲&:f�Ư����惧 [...]
'-��ӹ�׆
�:c�wW
:�2M^iСk+�8��J^���qS�c;q��$�X�MY���������b��=�]�۠7��j����\P
�����v��U��
#"⫏���a�J��;R݁��
lA���:`2��0�����ʄ�o5�?��s�"�&D���;
R%^8�{s�e��_m�����6�5�N_�6�t��C��vDXs���
]���]�G[q
�JeO���?�f�
��ᛣ��#��\�zn�����Z�c��k�إk�?��Y�?�/�4�
�]��
c�,�����R
֓��ډ#��|�ƥ&~�{��	�p>
���
�����8�A�\�JD)v���A�j�F
�9
?fo���u��OH�R۵��p�5�w�Ʃ-�f�>|����:J�F�3��s�yX5]��I�,�j���3�FG�B�h�\�z\X�,�BV}������1�m�
�}�j�+��G-:_�����#�)���]w��^5}ӥ1^�
_N����W:�}���R�����'W���:�s�������R�zq쮘
�҉�w�}����R����1Q�����rH宽��:��q�q�V�1�
(�,����
M:�N�ZPo���No�N�Pc����nϬs��w_.�ڱB���A:L�tױ
� D=���Of�~�|��E�l���w
:w%#��s���۷�-w�L�����ر�o��:y�M+�u,�O1F~�=�\�hz��?¥X�~����7���CE� 1 H,�D��`��� 
v0C
�{z�&z���=��|�'�kdF���ز��%ʒe��
��W�D>��$�O~
9��Ė�ؖ
/�,;�w����uO�`%�V
��W��nխ[��z]!�&WHv���5v+�cG�m���A��m�r�2$�Ƒ��H(�w�1����4����S�%-�����<�����SP��\���~~�=�
+;oTf���lT�DV�9���aq
(�	��L37a�$v
� 璥E�&����
�,XB�
��9k�0w�I�I�.��uS
@U� !�X�I�
�����b02=�2}���Ǵ��f-�i�M�L?�L��V�8m�ݓ.���?O��Y�<�\ͤeŞ$�t-׸���`9��"W�EOO~�����v2�#Q�lO�
��J����,ƙ]L}�
�aj
a��'�C�Ѳg'�Bױu*�0��kI�R�q���F�|�R��=lI�@�q�	�1�i
$Y/�Ůf���7�Le�!I��x�+{��a*���
��/)E����/EB.�
Wt3mTF
���1�5"hI����JH�����Q��5�Ł��x�%�l�$O �����r�j��f�s�53��(!m���(�\
��&b��1Y�?:�rM�� ��
����Ķ�D-�������k�^��o�q��!�DY��8*�8����0��WqLv
� ��
+Pj���"q���$�tX���攇
+F �D���ԾlF��tBHP�lX�`,�'L�"����X�Dk
��S<8T��L�1*d��k�0VD�Y��>2c@�,���<B���I{{������Q����P�֬���DF���<�Y������
2]�e��&2shgf�n�̭M��2d�ąr>"�r�$^	}!3
� ,f�q\��Jv�dª"L
K	�U�$%)7�	z�lG��
'�S��"�&��E� Ӆ�
7�@`#�J�%
GV�Є���M�� 
[�( ��,�c[� ���($�y3q
��S��[��cFY��y�L�1���MM�b��Cv=<6�T/���-���?k
��ԮF�K� pWk�F�����M�e��ډ�7&�
�|iJ<�x����� 0:�8�e��h��F�6z�P��" �j��X�	(tL&�ؗ@��s�4
s��lG��}����4W\D�""l�X]h
�ec�(N�r�]�ĵL�H���G��Qʢ��	E�v<����Y^d$1y
2�±v�B^:V��L����8���:�W�$f7�t(�I���%E
B��S��2ڣu]Ȧ
1�6��|��,�M'�f�!�"�J��KB(�,e
"�����Х
H�4tHׄVȻ:���j%	�h�R�

t
��������G3E���Y5~�4�2�iKIV�W/�o�f���Ɓ&�
�o�ʏ[��0��� m��������t�"�f�4�s���-N9\`
��1�y/�G1@�S��z�j^j�YZ����N��WX:�$�!�^K�S!3?�6��M.3�\F�:n"H'K�H�ɓ)�)$�I	��
$�dh�f���
+)�ZF�Ei��\-�v�
9�
�
�1F�ۤ	I{I��L�K���Szj7����
d@:$(�He������\���)�<���x��U�1��ih"��lȠ�o�!G�%ud�󹛌��������;��\�O͈�y���,����Y3d#��3�.���
��qA�m�4AA
�6�	��Ǝ'�gxGJ�&��D��]���e%Nu���x��#�w�Y"1(S�xݗp��vs\���q�l1&yN!�8bh��$��c��s�ǧ=M��I,S�Ɨ��Tg-#�if���<�
+�
9b+���-�݋�n}�H)��LZ^()�cWjc�G��,�Gښs���3!ل=dP}�d-VG�jyy�MҘNSm_�:��ғB'2�|�1,.�PGk�DI��cEb at eRFbx@Ģ�H,��8��V�PE�K 
�6��YM-���S|A�� .ȫj���/�
d�
�*����z�k
-��$����Cs��f
=K��Ya v`d˫W-��#f�`���-MqMW
����q�����'Qy���t���u"�r���1"���<��{�����
E>4qh*/�,t6����c��׀��űK��t����	׊$a��Pfd|�QH�PL/�~�ꔝ&
%�����%�6�d����k�#��SM�#�Dp9�g�Y����@˾ǖ�<�P�\����`��I���C8�Ӧ�W�8A�4�r@,��wؚ�5���#^��*�(��
JXHE�,c�A{ڴ6���^7/g���6�5\�t
��5���b�*�������	8:1����� ��I�
j�?
+��j���C��7�ώưub��S
1[O���
��bx��l����j���O��1P�M��a|O�7H/�>ϸ��kI�D�b�"%�q8xE
+?�D�(X�\�͵�������NŠ9��j�k�9R�Y����W�04�9�*�K��ٖa2�b�Pߖ�
Sx�����4k���-SQ����.;�\|$�u`4CX������t�	r�[+<0��=�tl�,c"Y����N�z(�'Z$;����d#THQ����p�00�����\�LÉ�d��e�4�F��L
�KLU�9�Ni���z�[
�N�rD��K	'{"$�+f�j���U�a���ct�x��
�7r�i
�\��1���2��xY�� I�oB �%R
Ӭ�Ո�"\�„Y���J�K��ܐ\E�?*�2�Q�&t���DH��b���X(��@�C�	I
�o
�Ŏ�ެ�ca!
+�I��B�(����*;-w���J�*D�0ɓ�XF���_�H$:K.
ٗ�r�Ǟƾ(��*Tl"DMdB�����D��BW]jPM��V�ˎ��k�ۙ�^�(�q%
a )(�P󻣏��(�1�$�9EHT!�q�D?
=c<4�kJn�c�?�+���
��X��E�քbJa`����h�ض
���d���y��tcu&	�gpȌB�@�0q� "(<�$�~l���Z���w4�m̔�dr�O�z+	��ȶ����(>`5$>`I
+i�=K
p"�Բ
)��wT^c��)3M��?q�s���T�Ɲ�ŝ�`���I=�^/�N
��

��0���v�L�Cq�
+-�
���ھx�d��U�\�YXC�R8N���4��Dz皓9�
*%3�,,G��/JF`a� 
I��]�����
�)}�C�H�-�)#�#���Ʌ��>�x���hc�.V��Ѡ׾C�
�4py�?�K��QZᳮ�7Qb���#,�
�h����N$MD�-R1�%}l�F���UI��`�2
+�<VosLB!���$Aj��
+����ϩ�KD�v��j�5Df�o�
)���%b�T;���Gy��ˤeE�����
Kr�K
+�Aۉ�F�h̉!Q�;�n҂o�R[�Hc!�"�U3�C�n#�
+�Ǘ&y	vhk�
��S�SF����,�M��N�6
�^���(ʉ�9���
(q�|�h~b��CT%��
+R�R�S0��
��
=em�iA ��Fs�B��:f�< v@,H_0r���zL�G�
2-x�QOy#�0��?5
�������8Ri��m�
+թ��Le"W�4O���D��4P����h��(�*#3�r�R<X��M����T}3�6Z'�]����7�^II��Lm�\̍�k�ږ>+���^��!�)x�z�����~
-a�\�� 
m
(���v!j�)��z.� �%@���%z�cn� �FB4���f�a
+�p	`uM͈ki4Om4a�#��
BՅ�In���MXl�c3z�AI�0;�\�P]DX���KO��
F“��)*Bo\Δ@�G�pK�J2�.�
cgl2%��<{ǎ���1��K�D&�'�)�T�3+�v 2��<ݰӓ�r=�QD���u)W��E<Ҹ�r��"��cq���dB��.2֡liq�oǗ!�	%͍�
�\����h��c%/V�Bh�
gJ�G8�*�%��|?�C>��lXU{r ���pv��}g.z_[x�,Bf���
��6�#���tDn�pu<�lBHd3 �%�D¤0
�
s�#ї�4��<َ�UK[�}W��20;�k��:���
\`�}iQ����|��%�D��SD�;PB,�Ej
��
l�l	��0$����
�H��b�H�q\�Yq�t�p�tS(��P���Tz6Z�ȁ it�������O�_���ȶ���
�-�
��5erh9�r�l�E�r��'*���J숋��Q�}i�$FR�kP]2Ǚ$���U Jo4�S��xb�p��b�겚;�i �us��=eM2���4)L@m�06��:ٔdMl*$6 )��@���W,pC[�;#�Y⭝8��R�.���
hT̔1v�|���aۂ@�<
h��y���dHbj�N���
-���Ք�������`�	�B<�Ƿ �D4�QCF�{7��V�
n�ɘ㛺	��c�4(‘���Dl�����x&��ޜ��Np�V�
ʱ�]�����-��|�-W1ш�P�m(�tt����O�#1�A�$]����<6*
� M�074�.!�R͍Z!0ɟb+E����c�m`����b�>E35Y/���v�	=cX�J�',s#�e�%�̓���
S3��Ƞ���y.�]�u�$X��R��B
 ��o˸l1
�p�1* [...]
�jX��:�
~ �L��b"tslɠl�c��M
+)��6��&�߶�б}	�$�pVbvɠ��^�y]���0 at U
H()�N�
�@��4W��~�<�ԑ(4HQa�„�(u@�ZB�\��=d$+�(u at O9T��g>��������O�(0�Rl���\�6qΑ���ދ��.
+��2���j�0H5�ǎ���8����hSu�R���A����͉iǖ�x$o\��&�j���q 14
���H��Q�;&
�a�nS��"�B�� ��m
+
B|/r[ꢇ��$���b)K��#A
�k%�B2
��
+����2��6�f3LA �U��¦͂��')�%@�����ք��܀��Q�X���-|5�r!����<���q�p�����C$H!�ȩ�T
plI:������|ސl	�P�EB�E�'B?3/��4H����~�R�Eɕ�`�b@�*U(7�GlQ��jli$���PE1b^���^-*�U�_�<���|��x��I$�6������L��v��Ǥ#�5t�N�R�\8���P�� CB�"��U��@��9j"j\ޜ��BC�,5c���ۉԌ���@�B?��LQĤm����A�,[�٢��
+�8}�FB ���	%���„	�=d(�%IˎqաBpm@�i	]���b�똺�z�b�l��;
�DMy*	��
M�2�
�gZ���v�4�N�/�Y�ͭ9Sl2e
\���p咂4u/��=��H�
��꺆gq
�]7�]�M�͏r�!�M��n`���-

���N3���Bqu�b
��\��6y�)�����7q1��f��y]��	<����R_vܕ�<+Bs�����q�[ Y��R��%ػ����w"7�D�6�D�B�cu�!+��b�Jy�C�
�q!��0�L�#!�>[�b!1
T��f.]��5Y�ᳯ��1��W�0$]p�$ش	�Jo|��}��=Y2���Bl��͓B���#>(�PT
+4?N5�Ӳ�
�B�a��2����6�cA$�1�Yq�E��
87�ٴ�
�l[���7�V046�Y�TmB}#3�.w#���ų�]��R�sc c�O	8��� 

\2B��6+Z\�E�pc��������Qލl��$�;p�I�M8�-n˖v�USsS�b�-G
<?Y�>s�W
zi�۶x6��Tƥ]	�E\۵��_܍>{�Wwj"���.��n7��Y�R�Bq�w��r�tdO�Ğ�]!#û8�
+��Y����b-w�Z.�϶��G����Ȣ����$m� �F at M]�v�ep�h��
4�A[�6ĤbJ���lC���dM2#K���P��{��A�5�4�2��}&#(׏R�Y
�lY��
�	��r��i�YAh�H��j��[B~�-V0�tHގv�
�
%&3�r'���]
�%5�0:�8xGEOe��Ȍ���),�5׵Lp���A2��"����6�
�}	�@�=,��c/`>�c��&��8q����c��:Q��h�D.�5'r�$Z��ʬ���>�4����6��c%��c@"��Id��&�t�[@��IF`�j�n"�'hd[���G�B3ʥ�'��=�&�P�rȠQ�e
8A��{���p���@_�ʉ�����E�
���>j��%h�
�5�6#n�d?�=����^��z��TO�纑���#]��yH
h{�>+���D�[Q×{�x�� �vB�}# \È�rب:A�Z�Ȗ�
��y���N�"��F)��'GM�4��Aɝ0�Xl�^M�h(�X4W�%.�i�\�܂�ظ�4�J�Ē��C
� |";(���	MEb��'G&�HU[i� Y��,p|�M����4h�v���
�bK���
��G'P{�P��\�x2d���F'`��.h.���M��
�ly#xdc)eZ���)mq�j�'4㧠�9��L�(_x��=v=�5
�0*0� �@���`CQ�R�I���H�,Nd�T�ܐ��M��r�]PI:r�����.9�"Mrb�Zd�ȣ�?=2E��ob�H!p�ij2W�|���ё>?@���Yd�c�-/RA�;�"I�z�M�y!�;��
J�`�� }Nů
�a��Ǖ�N�I#��\Mh\7 �0�V9�6����L�!�fB6l��rm�8+!m|��C�
�
߰������r�$����:�hN�!0�jh���x�
+Ō:��
��A�ċ�x��OUע0!�<�2W�u
m�DB�)�Cn�
���ĐL���/�HD@�;PZ�H�m?�K%��E6�Q�,b���y;2��c���X6\h<
�1+&k�c�'�5����i�����ͅ_��7���h:͝��٩�����EXKMw� 
�j�5��"�f�h���K��Mk��iJHfS�����m6K:/,A���sU���-cA�H #�Mg'�]8��˧���U������5b
+���c;j e�!c=]4�_b��&
���}scƥ�8��O
����Ã�ң1�
��L�,�<&dT��:��?����0K>%zff^�sD�!�l�PQ�ϓlm��:��>x{ �T��fi���3}F	-��I�
�Z��(e
+��
�	EL�
)����#4�7�(�ELjX���y*Z 
+"��z���c�F�R��E��(}��AiX�H2.l�O�� ��Q�5���|�P
D�ʙP�|9��B"'T-��s�`�<�
�F�%>d�{��'0� b�':��Mˎd1��#
w�,
+⠱�Ҥ6�-�B�u�+���AL�
�$�B��
}"W�hD��z��o��b�.ϙ�+��$å������;��*��
9A۲U�&J�B��2:֐#
��0�D��ު%�"��D�5Ty5�
�,���Ɉ��9Mu�]�НE�Z�cE��5ׅ�Q5� �[�
�$G���P�~!�iJ� J�]�f��lo�2�is^0��D��)S\�ȥGĜ�6�d���ʀ)^=_ɹ�
����rC	���^�"�Hi�;P@y�+�������q�>S�n�"뗼X�����r0�U������-Q�P�H!�D�'%觨wQ
+*%!j$
+j2		s�F�AwGf ��^�%����
��5�����'�u	
V���B#1s`�X�x�B��R�VBe�Z%��+a��
�	\�0���L����n

���.B�Qh�N4���y8b��N�d�퀝X� r8
�qp]VI`����zʵ�Y�*T��V�4�����,J}4 dL@�PF�}줵�j��|��v
+E�cR�"��[8�@�B��ݡ���-Sh��|/����)K#t�ý������
[2�M	��
8�t�MrF8b>����X�\q@,JH�zH�
�Ű+�����|Ry���s�C����d�qAġ�|�IeM�@U҉��R-��=��
+��Vѱ�����{��1
9OO"Ѣ�ʋ�bO��N5B�̉t[E�+�+N�a�.��j�ڡ��H�=��
���Ј�x�cGZ�v�*9wӱ���D@�D�`I"���.�/�,�h!�V�x��9
�)n�U/@�H��U̔0����j�\��cw����P$1�]&�4�R5M�K���0֤��Tx�8V*�����F
��
��gՉ춁�ȍ�H�%ҫ1�Em���=�
��8��BJ�X
+��j�P�;����
¶j�o�,���՟��Q��R�k���=
+�n���H!�	4se.熆�~(aK���-1�R,vM0H.2$���·��
>�H��͹��"1�P��BMw�1YC�Ϡ��� U�S�JW�J�g_��rM����P����
�k⃍�_e�Y��!d-�f�U'��E��u4�il�*�yY$'w%
+�b
���@�����
}M
��#�����l�Fj8��7*
8�s�:
+Q��Ab-������
+ӷ����VX�b�6��wPφ�j��=�
�iA٩�Q F�
+���<����"�	�
cĒw:^���:.<d�T�
���#F]�����h���J��9#
+�8�Ŕё0�$U�X�<��[�tj�`}��в�"�[��ő�P��
�-S:<�<���6�=��(9gr����"��]ղm��� ���4P�ބ8;���8�����HxO��j���Z��e��DK�M
M4�7�xQ9ñE���e�6,�V�+m�"�G��
�r�	.ϧ�q��VQ]��6���۔g�Bʣ�~h�)�e߳�yZH�8B�L(���2م�P��x�'�.5o���sc�H���!]��,�d<�L��6b���J��%�2-�T��N�]�B�fS�A�J��P�-p�
��(�O����: 79Q�XI�kK���h�¬�3�������j���
��[����
Ʌ\�(E���uT���F9Z �ۖ9_ᎥAq}c|myʀ9��Q�uo�+����^��>9ː�[�ĮW�D�X5��.`j%Ǿ%Q
�Y!5�D���;!���m�}�-������#�%��
���N��ő���€�JA"�_ [...]
+�6Fw��W)2?���p�q
+��e]��g�,TP����B%�q*2���"�;�D�X��!y����0M��
/KL�с�$�G�p�h�	ɢ
/lD
�O������B�&G�
�+��v ;ad+���/Ƌ�(��
:XY��mS��8k:��,�$�S��M�eN�G�4��4�0$�^����U�E�s��?FI�P�r��K*K
+Z9١�,����7|OR�x,�!�@��5А�1}Q��$��|����M	�Y(���E�2�H����t�����
Gu�ě�H⇤	�!B����B�>%5��|g��5�W��?�4�͌ �L�nt�n���m�f�4{�2��Dž�uOyS+&�y�gQް
�
��J��AWC��Ib�p� 1��L�	�jfJY��1�$K��.�D9�����
+-���m��'�2I�c�l�O�g��
+�5P��4�W�
+~*$�f�L
+Ӑ-/֔r�FVMr�d��t�Bv�@%��B������sQhXa�����!MĻD��i�%qQ��ɅA�G�C�'A!5nM��8_rY"�ǫ�IZ
3U$I �B�!	��.�H���K<�%#m2n S�)�ɐ�p�X
C
I>9���
+D�N��
S K8Ty��1D�X�4?R�l
���eII/
+Za�([ ;3a�AչZ�@�HmT��I+��:�Y��vթ�'�V�f(d�T��"Ѯ�mW
+��U�Y��,�t+|�;Cٝ���$��ޠmW�¢����������k9�V˦˸��������3b?�P�u\P�����9i
���aġ�_e�1��h!�
	4�q��A��B�1Cw���!C�q�2���L�7�9SW��ToW�sY��:��!!w�f�P]�{��!�ی��iM��H��� $�ci���
1�Ⱥk�<'bi���j(Z_�K޼0�Pʡ��2Z�$o YH���.?�,���%�����6Y�i�a�f���E�P0di�D	
�s�E�����)b1�q���ҥ��R�ҙF���8�d�	�$��Ps&�im��ʫ��[�>Hgf�qf�|�@|�u��Q�����J�
8�2�*,.K����Q����<!��#�}�"�c����R2{y��*b)
c���!�k4�0�%I�H�9K$�^�,$I��|��x^gT�E���|��Te�L�b-K����˓F���!SJJ�IB<J��#g�D�	H�_�u� [...]
A
>3b�!i��|�0jLW�Ik��6c��D�A$��=7���&�
+Et"�a�
�{���iY� ��*��E0 �dj�`��dI��R+��Ls�,�!
Z�%5�|
+�
����x�X�Tn�D)*�˾�;�A��3K��N��?����`����
���K��C�r�
�{Bٲy���]���A�>
+g��V
��&��\Ї�#�M�h$���Μ
�>�{�ȍ�x�s�s�?oI}��X.������?� ���rU`�T#�!����{�a��ƿ �ްpA�w�y4+�W�Y I���
oX,�K�w1~�|Q
+X3���<Q(�.^�
�K,_��F�.]x}o�˗`��
����j^�Ұ��M��X��o�����|�U7-���+�
%PO��-��Eh���	��@g��/��o]�xuߒ5+��]�d��Ko[��[��N��O(�GP�Vv卋V,�	�l�
������``� � w޺���޺z�=k�߻v��u7n��ƍ��t}��	����5�ﺕ�UHo&0o/�4h����@� , ȍ�W= r# l���w��kŖ��m��o�=}��
�����~��mw�����\q�
lnݍ���,tS0�0`<0���t���J�+;� Z�'� FA���F� Vn���fg����U�}��M��M���~�7�o��q<ݑ��%HWl�k�&��ˡ/�Ûo\
#�!1����¥AC�[|k��u7/�z��e�`
���Ԋ���[��o�7��@����ܺ{��=�V?�m�۶��/��g�jxu Rx޵��l��y0��x�[� ���a� [...]
{�
�o?��
����0
�����}`˭;��˳_�@�9
\�E��o�4�
{p�
@
{
6��|#a�VZ5��
��n�K�:�ଃ1��a�#���
��
�w���;F_�ʡ�0��
+�&De4��{����8���J at T
�4��=ز��x���
L�5 
v�6@�n��q��[:@���6Lp��3,'�;���;O�����@XУ�m����ZX}���ڭ
6
�F8
`���ݰ
+�P �@`�
+ .�\> ŀ��v 
L���^�_�I6
�GÀ��t'��|�
��.��ߧ
�
���;���E������

�)�7"�{O�ì®�m�\�3s��'��þ�{�r &���� .& ��f��}gƃ+���C� �h���>�w�~�:�[���h�j�  �`��X&&�s�
( S����)C�����
�,�u,�u�|��4�!fz8��; -�@�0c4o�4�z��3������6*N�vB��xgd
+vl=8����ނ��t�I:���&lI��.�á�D�"a	��
+x��#
��b�Chv
���h@���֠
*�lÖ6		io'E�����h
+�
+�^��Z
�
t�/ 
+($L>/�J�X�1�9�j�i0�4t��=:��a��]� {&��%�U���7Pr�`�0Nm
�6+�@B� 
+�@S0cp08�{rx�8Y���|WL��6�4&�L(�s��[k�[ dw��- B/'t�
n�r�= ���I#�q.Y�`�|�F�)�1�7X>�!�+(�\D ��
+
��O�֏���� 
��/v �n�w�0K�nL���$:
_ p� �6�2�t�|��>�0 �7�y�Us��P�����҇��X>���a�޶;�
?&K�<Öռ�=��&l^�
ܶP�B`{?�3\�
 �
��L�[ ċ�}rAH��Lf�_��[����2=w
�@�H�
Q�1�B�x�Y7Ћ���F 
+ C܆0��D�@�;M�OB��3�������j�g�FE[~Ty<�
6���z���홙�e���=��W��vnN
�|����6W!�oix0d�,aD��\gh 	�5X;��
���safz�Z�������
�
�ɝ��
+��������!K ���͹�6#�
ȷ�>�33� �̕��@CE��3Lg-�b�W�ٚ
)}.�C��tuZ7����0Mר��	S��va���5����A "3�q.�Lw*�l at 6ւ;�
��A�8{�2�$�~;�|$�sGȗAzj�q�����l�e
W
�kw���� ��[��ꍙ��
��~hP�z�Sw�4��
y�̞��V���c�<}�/ʁ�ꄛ��8$8��� ���Ξ��N ޵Z8�4��Ӈ5B���

��/#�����{J�:
���M�h��"E����D�
���LG �]	m2�9D��� Q��P�3��,������d�����W`�k]4pS���


�@d�B� 
+33' S�6��A��E��� ,�s�
a�v��x��3�O���{�'��I�Q	1�x�ҩ��+�m��m@"#+8W ��%��p�3
-#�Aǁ�zt
'��
+�|�_\D��_$�̖#�U
�}��X�o�+���n����\Q��x�]%���� �23
�qW?�����50��i�:s��,"L�(G�Z�w�<
\= ���߻v9
o^ �^EkP ��,�ׄd�EH:��{�z�lƝwf��#�a 0
�(8#���"=�  �d��-v
�! ,��+a�"�t
O�3�K�F�����K+�DI���� 9�I .~��
+�6��E���[T껔)lC@�{H����p3��"Uh���/��s��|��jn�|��6 a�a�s�P�{k2۽�� �\t�"T!�\t�8,`��
+�W! 8��H��呝��˗#
�~�%o�� �G
ͼa��>�t� >3��mˈF��
�M5�	���/
+�X�=���NM%R}>/
D��pr�u�򵤞H똺h{� T,E�6��� ϶���	$���m�A1
���.ŗ426�L��bʴ��Z98 V :e � pQ���
�	�*�I˷�r���E��
+o��R|�5s�^���	c�g��'�A��sv,5|]D؉0i
#���=+w�Py�z���e!*C��j�{I����E����v�/"LԪ�F�
�H�[Tz�ޓ����kڄ���
z�~�^�
�@Z�E]��=���d
���ͪ%$��e���_��N�CX�����w Y��0�
+��}�VlA�߾ū/�Z�.�l���/�>�%I� ���FKѾ"e7r����r�zZ:�-P' �ØX����Q�e�.����B5қ#t� �%e��dx5�
�<�`���N0�{���?]���k�3+to\0{��EB��\�u���2x�y4q��,��՞6�p��E�/Y�t��%K/jQ�Υ��K�-��}+o���}7-_
+��,m�С��Wݲzͺ��|��w��������E����X�(��{r7�o
�a������^���%
ۚjDV�,7�w=8t��C
9�`�}��/n�Cm�n]�����

:z��G
{*_�|�t6���
kú���úa��%�n\��
����M���o��;�����w�����Vxx���oY�(��

/���շ�ywnN��xaf�|�{���|��'^}��/^(
���i��/_�����l?©8zl��#�3���O��?�����>��_�_�Ћ��
�r{ߒTS
-[���-��GGN�T����
�M�����˯����������?�ڏ~�����V.M���KnZs����yv�R���������M���~����џ��?��/��g�&��9�Ԣe7߹e�g������W?�~h�'?���d5��������W�7��[���wM
��e��TS7�^�
~f�~����Կ������������~�����7������g_���~��'�����Z�x�m�w=R��~��/R
_�����ķ������������73��W��a���;�=����'���+��S�g������?�����o�����g�{��Mko4Mݰ`��o�q������~���g�S�_�Ff������ן��w<�`�����.��ng���������|[�Ԅ�� [...]
+�������#޽��׾�~��é�3ߦh���zz�̻���3Ϧ�vμ�j�9BE��^�(4;翵�
C����1�v��~�{'R;ǜ8���߅ϭ^>���_��~�#?p��V��r��{�c���?���������������ŏ���8sd���|�ut��_��o|����Ͽ�����������=sxG��%+�8�������������Wz�|�w������;�=0� ޠ���[
|���K�}�s���_����_��g_���
ۓ�!,�i�}�p�‹�}�c���O����O|�6���E�o�{���
�������^?�z����mX¾u�=Ï�'�MU��}*S�&�n�k��}����G�
��s������

�ܸj���m��u]���s2nL7,X�dy�-ko���{�so/�xw�=�Z�t�Mpc\5�O��npp{�{�\>�w^s��ç�M���~2[��M�T&0nJ�c�9�
���.�����i��

����b
>����
���I���J�{��p۹��󹜓{�O�kK
c�E�/��lGhL����1ڨ�a��%�,\c%��_��m��c��춦4��;�j�ca4�}��:��O҈Dpc�y��ǔl�p
��Ps�~�Y�)�"ԧ8^S�>�BI`�b�Y��-�v�K���D&�D�ˆ�����|.E��M�k�Z^SA:[
0���p)�2�|;J�٩�_�Sd�ʝ놔G
#W9�9
+�:P,H��)88;���B��E�`h�Q��$r�jG�p�	-��*1���i*I�Qs�"��T�3_# K�r)�L$S�bm��[�"N����ZN
+��ڦ��%�
6$��I�pk��#�i�$�I�pk��#�i�$�DI�pk��#�i��v7)n-�v���v����0)n-���ֆö�~�x�"
�� ����k��I;Z`&>)Hb��m�I;Z`!)0ax-�RE܎�L$�DI�pk��5�TA8���

�
j�����Ա�8Ub��c��:��¸���	3`G�a�����"�E
+XLA�{VR4�Z��f57�*h���� �\�����$���G�#�h)�LB����>%��Z&���<� 69
+�$4�׵�
��P���h�\V��.L�*^�1��&��ӥ�٦8z�'�؜.��8D��IK�P
S�3�	W���7	c8X$GK�BM�.�I�����VS��$�1%xlْ~�4��-��sS���x���	H�V�!/������J%?U�ȝ��'J�Jc
�v��`Vn�&�aa�U�D
+�����1�
��:@L�E�,�8��^�<!*�o�)~�C�7Hd��i(Pd��!��> (��cLm�v_�S������Ǥ5.��z� ��(VrL��0R��pc�̘���h��1ϧn��S�%�=5�(��1�U��,|�|#�nQ~��.�bYݤ�T��[R��ٗ��A
���o~�o�@�u
H�V�!�o��
�I�jc�S���Ԃp���0����H�&E@����[Xr8:�k�
b
����)v�^Ĵ�D�
+���a!�H�1� �@Y�z�0�y
+_���a����3
<��M
�6R��BxS�/�qt�j�*z��C-�]��rp�p�†&5��k񿳇
D
+�-"��
 �V��u s�\��������c�Y{������z��{�*]_�ޯ� ��~��+?��_�޻t}��o�����$��{��{�f{掠K2��
`~c��.��o�s�:����y~��Mlz1t�a�ҕ�޺2�;����e�7�>zؿ}If�bҳl��5wl�?��������\e
T�u��#����~ᥪ�L5"U�
9U~�{��c���_��{�쾃{_�4i���������������g>�c����[9x��K	�7�
8r���s�|�^z��쵏��K����_z��#g��Ԟ;����
KscߋU>��O�ć?��/|����ܩ'��3��ywm<��vߢ�l+���>���|�
���\���|�ݳ���O���Sw.����C�oU#��G�S�|�g>�]G�n{�嗟ܴj��u#�{������>bj�9��O����+/?�~�m�Pa����G���U����;w��A�|��~�='���
�k5�nтE����
z�G�ۼL-�V�~�/�zn�?]�޺{�ݚu����O��G�X�+�ls�S���{~��}�{^�{�
9>������}�SO}��_Yc�c�
�~�?��g���Ͼ���_��_|��{�˯�����+���>���`��_��O��o��W^���/�ԩ��>�������y����_���yb�����jH?������+Om�'�����������+�<�u�S/��x����>�r�5���>��?������jH����w�����'
�^�?##O|7,+��S�=�:�	���_���7^z�K�" ���W_���%���o�+? [...]
�����+�W-d�jϻ~�����7����M5W>��������g��Ї�����o}��ݚ�^
n9���|����'uN:ք6_��_~��9�a�.(�ַ��/��t��|�+��A-悯~��8��	��,X�����SL�ȋ��W�م+�?p��M
R��
ݵ~�·�|��ݲr邦 �K3�6���4��d�x��J���P�
1�_̙�]N��6y�[c
���ӶmI@�y>!b����
�X���}c��"�Fj�[�g6�D�S:��k1���`J:�C͎nc&\��6�)5p|G���M�G�4.o0v8Y:�w��X7�)�~�&�L6"T����cQJ���U�W�"��0
&m2�n�b���UI*�E�$�EZm-���mRm^��
�lJ��!m
-S���7Igc��(�����I0a
�5�X��pƜ�1�@J1�rRv[lSL���V��X_�bJ;
J�JnӶ(�ohQ�k���W
+_��Ɣj���@l�,�sYb�@�
�n6Ӧ��ޖ
:�܎�F�T9��߷oo�03u���cݔ����
�#�bI1�NhO�!�[̴iK�� ���L
	�S��vK�x�'�ڦV�BA������(ժ�e���m�nW�ն9�	�j��X��\[�g�����2�a
��2
R
����m�E]cF_t�<s�Z�
рM10�2[H?�;>�O"~2Z��GƟ+}�{'���ܾ�L}2w,_ɟ-�r#�	D�g9~8�/�Kgk���RAj��V�;rnn��;��#��� 4��`���|#�U��*L2ԥ&:v����/��ϗ��R�
K3k�Ԅk��82R��l�<4�/�ˍj���rQ�R�/�;R9׽U�j��$vP+Tg�I �\n�X)���<Y�����j-ķz�ةuj��983Qܱ%7�hxڄt�y;, )c
+!	�B̡/�?1���
u~=��}��~�2Op�;Np�:��C
+L��+ė�[�e�s�����øL3�l>�#�CKfݾL '�:�C]�k �
��K���;���� � �U�B{GN����#'���n�c��:� =
+L\�Ǝs��T�e$����1)��:+�
L�\h
+�~%�]�q�
@-�����s\߉�8�9oØ������zߎ�*�*������Ji
+�+�a�����

���>�1$\��R�� 	J�
W��-4�
Re{�Kc�<,�
_ꡧ}�z�����3r�L��@,��Bs�������`�4
p��1��@��;N�e��4/
�Um�(��dN�CG��*�id��܎�|9�?U����7kI�L��%���}0�|��
#Q�	p���HM��2�
\MV7ǎ��/�[q�X8�p������Z��U���K�8g`��&��L�\_�?5�Ӑ��77R�בb>H�2#C���L��	���5ߗ�p����mTPq�(��G��狕��	�Z�d�F�- �qI�ǎ
]�-uR���GT�'z4��rޛo9
�Wʌ�Gt�W.V&�?;��h�]�a�ɀ����2k+!�C�R�\p�'�#cж��
q�#�2\bU		��ڏ���OÏg���>34Y
j#���!��k�j&
����	�#!ޱ����

9������i=|6�����c����������M���
83��T�{�w���'�<΄��

�J���h�1='��Ra�,b�K553G6�I@�<2�5�=�����pj�.��
�����
0�V��'�Bχ���8q"����8ϥ������MLo'�%&����9�ؾ
�^,�����v����? \��+�|�J���A͍mz���vH���:#��}EO?�v���+�3��T�2O:�9R��F��45�M��Է��֊g��B�tV�cX��P���
�r��3��Z�
{�aˣ��B�Zkj��
�*�zVk�;�v��5~RC�i���R�@��h�l�Xl2_��N	e���N�*����ʰ���Pu�įG�V=�`7�t������J���Ox}�R�'40�ʱ�|#+�<�f��V�2��g�#狵r~�T�V2�j䶛�jyl���1�V�[* R�;u��N�O�i��&�����ݑO��e����J�LjЧ����uz5�r��{�^]���*���c�]6 [...]
+&�-���3����J���6�@\�lh�
M/�*MgQ~�^-�4�zH��*W蜙�ٱo
�D[���m�%v�M��(8�%M/�hC�C��z
��ܾ�L�#�4��ů����*n<���w�
+�l�O�'���f����O���RѼ�y���R-�/���5�0|{�?����6t�#b̀�~���PN�xZA�ᠯ�~Un�n��mG{֛�����z+l�6���h�~g̞h�a��"?Q}�m��?�8�M��|b��R��
+W�nY/��٪i ��abN�H̘���|���N\0Ngu�x�2�TA�1����'��:��������]�U���)�e�{=�6U��Vz���?3
�J�I	\S:�0W�ys�o�[>A����<�9��]
x���Y@��HH����^�;�{Yn��Uo@�a��UM�sQ\��b��l|�M����:q��N
���q�Ky�\1*�%�NG
_m&��Z�~9��$r���
]��oj9�M.�
ji�쟯� >��_�
�j����W�7�~0
L܃�n���9���&'�O^�ћ��|�O����Uq!�%ND�rwi&�)
3�\Z��Ôn)[X�hq��>
+i#�Vbf[�dq|O^Z�I$�<(
�(�	�d�l�1���sw��s�	[*s �:a��v 3��sཱ��"V�F�A	�DO�+"D��I
���X%\�9���&DžB
��i��s�
��s at 7O��x���jF�i�31zc��
�^ٍ��ψ�	��
�
+,��N;PKѠ�Awf���l�u�-� �h���
�<T��F5�v�.��5C"!�2
�	�:�Li�B�iQ�~��;�va��9W���&�>;�Q�*�N��
�v.�
�j���V	�3g	��o@��[� �� �c�s0�w�G*�� ���fGs�qa��Ўe
����|$��s󟝳�)��ޠ�n�_�� ������d
�=��7��� F~��k���~
�.s��0�<�
+�Oר3f±��ӜC��1��
+Ʈ6�ȟ�a�ut|��c6������1k+|{ ��N���g��
�c�z���

8s�Xht�Ӄ�|c�س;�A.4R��t��b��/Ԫ&���g�.�Det�r��
+���|�
��qG��)��j��=:����e� �Ϝ1VR׌�;�C���np+:�Azd��/��u;��������vc�Dtp1�xv�9�p�5^S��Û\G���B�^gT�Z���f^$&\
+��'A�I��'�'��J >x�0���c u}��
oT-�����/#'K��
���4�y�Z.��~�Z�^�_��C�[
K��{��W�8i�{6���Q�˵�m'
�����g�J�k�즚�.~6�1��w���
�N�io�������w9y�xs,�h��p����uC�
���zG��K�]��@���G�Y�["Y�HD �ғ�7$��
���XT���:�ʤûN:ĐJ���3��A��X���6g��r\�W�n�F�Fp�ƕ�#�Z7f[MU��JgJ��6�+��$�t�u#V��ě'�ˠ�l�r�а<�u���Kqn]����Œg�e�
���l�jbu��@��
/�ܽ�4��$�Wˏ�
*�����۞�*��΂~���(���
�����R��9����+WOz���gʍ�R��Xij�l����K
>3(�F��i�FM٦T&��\ӳ&�
��Bc
�}��O�����p��B`?������B���?:Yj��

�`9�G��
Ɋ�Ri��h���kC��T�Z�E"�ojP��P�+Ǫ�j����N��]�_�4ޯ�)�I(�$�B�E�ݬ���Y��y�����q,�WN�{*��o�:�;Q�0oy䱪/R6�Y�K��mR�&���>�Z���D�|i��
��O�j�z%O��t���7�*=(���q���Ҕ�5
g�@��S,�BuX�DM���Z	�|��
�
+���x�|�
4�E
H��t��;DT�D��uG��Mc�H`��M�#3��m�Q7��	��.#	u>Y��2��7�+yʥ��L^�AW�X9�0�7
+�Oˤ��L0XRZ�?v���7�Ѥ����Gڃ\�E�
+[�[<[��
+�u2�}�,5���l��B�ɐ�ڴ��JiJ[�՚
�h
�F�p���gjg���!�W?
ХJ�se}y�\�������4i��Z�D��!0�W�^�S��6,��K���%L��,�d�p��:+)��P�~�h?��/܁_�7C��f���ۓIV�I��*���G�\����j�L�"Z s�����<h�P�><S�G�.&M�
+��D5�&㶄z1
2�p��DҖ�G3�ؠ�L��PL���z�Z�d,g� �c�s|.�N�v�@sդ��F�X�
](�*�
ul��r��	`�����Z+�{�R����Y�N�L�?V���_�
���T�����s�
;��z�ȿk
-��e-�M�.G�8��
VE��l�x�@���Y�3�29U<�g�Խ��^f3���D
.
�fk��*6ֿ�V�WsvK�k��'Rm<��NU�W��p��0r�4^zx��
nd/HpI�K_��4�A�
͟���zz[��k@
+J=�D镑�F	.h��硕
��546]�):��T��N���bO�I�9q�����q��`pL��k.��mnj����v&:���j�ʶ����v�LMS”�6�īvbmfmaM�̟�6����.Gح\24!�M�(]�������jk�0c�y���Kk+M\MF�.*�X��jm����Ȼ0�⥛E��������`�Cy�<rm�Sa��@�Y�����9
�i�9���~bt����<���o�}ǧ��OO�?
w������]�V!
t��c�p�I�y��6[���sʧ�+�	,�Ye�a[�h���x��ͼO��x��~<Ma�kӓU�53���W�G� `�;�@�hFhG��NS�djh8��:N�����
iy��Zu�ؘ,�����p�M�
��D�<���j��s�hq<w,_*˟��OO�G�   ���yd��W
3�p��|ߦgv���N�����ǎ
G-b��r�o�*W��@����L���Puo���2M\��S�
+���D�X�:TI��?
+�O��ԟ9���H%�HW=�'���by�C=4�j2�zӯ7��T�`���

x��}f����
�8\�`�v�r��	���K׾D��3aw����/�ljc��YW����w��y�cի��^α��եd�w��v�3�X��x����ʛa��ϼp
��Wy�˥��;A<�رQtw���1�
+���=�*TN0Ev4T�E�G��ּ�p� ���lp]��
W;��f���=Q����|tc�� �`�x�1R+���P��s

�D�ƪ3�Bq��]��N��=��b#�ƿ7��"DZqB��`W�r��{d4_����E#K��t�6�� ��7J�r�q�yZ��>:Y*L�֪gJ��CE�ie�<05^�h��r�n�<63^/6V+��	�{1/����#q�`��*8/��q�����b�4��p�b-�P��/��54>hԻ�P(��s�*2�o�Պga�fy�:��PZ�:�n�ͤt��(�]�.�
�M5ky��
�/�][n<_�W
+�+O
+N�fм�����h��i�3�:{��(�H#�ܮ�C�s�X�4���q���e0	IJb\�c��d��Tr���Ե�s�j�
�F�l�:3-������Lc*to>�}�O�I�� �)�!�`�0~�bN�Y;N�a�.�J9���C�gY��u}�s��u�T��V�K�5���:XS�nZ�Q�'s&J�|z�[	R���p�rv&���N�ҵ
�I����D
&LQP��"�вsB]����`3 �j��=��;Ө�h��87M��zij��o��`��ʆ��d
+��0%��B��ۨNϳNqS�f�=�?]3��$^<�W}�#e��2�VϦ��s�jB�r�
+��j
�{$
Nf�
�H��
B�9$�D�b�IU��q�iھ4Mk",\��:�b��4-��Bx`t�8M4��EdL��q�q{��ۼ���Γ�^wD΀�􁑞+���dq��g�T~kvXgA>%;~v��tm��h�����ۄ�%Y[�n�aܱV����@k�J��ko���_�J��&�*�1�mH�UǛ���N�68U��:���`�vv�똥��6V���k[��;�e�Ti�\��
�N�R�6�P�Q*
$��N����z�:@h���)Ԫӝ�|���(7-If�:p����S}��Ŀf�'_�.íV�g���ֵRxk�Bu�S�
t
h#-����b�����Z��j|�uK�z��`[�5P9���
+��Bu�
+�.�S����N�������D
�a�R�F �R�R�v�\T+MR�\*�� ~}s`�MGw� 덲�a���n���R-��K��	�'�J�C����M�S1K���E�-v��Sņn�.�׬%t��i�uY
+4�yS=s�^�6N>qZ��M$
&�z�l%�t�ʬH�8.R�Y+�E��z��x�1��a�*ש��3O? ^�P�>]mt*�4��8��u;Q�5�f�(�x�毁�Y�Z�dwm���bY��H�Gay2�]�„6J
�:�����Xvr���M�@�}K�3]+U����f;U�5��ջ�GsD�Ϻy�*�
�C�Z�6[��&:V����՛G�C���^75�
j���l�t�L��m[��"G�PhS�O<D�y[k��t�ɪy�"�LӈD�։�ZBW�Y�����	/��z�
	
^��j�\r�Oz#�"��+i���T뤙�Y.o��$��Ŝ��lb����4��JZ��j����E�ֽ&�-�F1k&�VǏ AʞG��e��W�g(�s��F�|���<��!@ l''g��+�R�ˮ�w��G��J�f�쯾Pa��J�]5u�_C�1#D�
+F-!��n]�;)mD�#��z�v��օE��'k��cH*g�z�x�ǚ4���'\Ǫ����t=^MMf�q'�:��)�
+ޣ�YN:}a
v���ۦ�'���ɮgsS�}�c��j�KJy�̣F+'
+&�/�޺�$=lQ&�'S
+���;���P��3�#F��R/��
���k�j����H��!��확1(Ǯ4d��/����4t�^�`���J�L�DR���Ws�|
�Bw�#0��h���_�7J|LOy��I�	|�5&�9�~�`���|=��d�������ܑ2����W0��c������s�ԩI����
ՙ�4L]���p@��57w����:ڞ��̫��F�(s%�m�s���!槧4���La�w�����I3�[kFW=�t_��f*�0d�`o
Mj���l�V�!"~r��R�N"���X#_����s�%�/q�xW�լj�
{K�_������M�
Ժ�
��v�z�Jp��WU�:+����ʰ����^ m���g�`���u
o���U+��$:�dq����n���u�+l�3�^O}g�m�-ܰ$�;/C�B�vn��\��{�f?t|��,��/~��8���M�E�U��2
��U��B�:�o
�/���"}���]ӫ���TO���O�}D��\��n���ӥ2
�Щ�ހ��L7�Sj� [...]
+}��M5炾N�ڳ��37�u抾N����}�9��3'�u愾N����`�3�uZ��;�t{�^�{�㤛��.
ל
��-�k�ݧޝ�sE^�w�u炼ם�sB^��J��Y�ѝ�-��*�#�s9��k��me������
�	�
}�G|~�$3H��=���O��vl;�uۃ�
�r�]�t̓��_������}��ć�
�xbw~���
��ٶ�D0�~˳g���
�p�o���'���~챑Aw8^�mϡ��{u����?���g�X��=� �&ڶ'غq��o���cÏ����1}������/�x~����{�;7�p��}��={�
zۃۡ�0 ՏN���Cԋ�~h��`���Y�u�6t�Г���<}򑃻x�)���ZͩO��<<�~�sp��m�o~
+`!���z����y�ڱ�t���a��m?���}r/
yO|����/���P}�S��;��l��R��mr
�x�i(8T�&�?�?=��jO����
�Xz���Ц�ܷ=���̸ٕ$�����
V �����՝���[�zb�ҩӧkO=39֡�����o���:��T{:x|4鶹����;
��t��'�O�
����ݛ��
z�(uڷ���m�]
:�'����w,�S��c�Ak뱬N�6�7
��
Ol9��u���;tl�4:�wo�N��m|��ve
�
�m����2W����t:�ys˚�4��) ����SXX�ӵ���DZ�-�:������6�ԫ���ӻv��/�lhP�}�Z��N���t�C�
Aes�fvZ�����i�&B%����j��J����kY��f��7m���:ݶ�
)R�VX����y<���;��u�]���n88o����S�Q�Z:�a����)
��i�:���dz����֦s;N��m�n��X�=�|z���S��sc'��O�;����{��#���nM:�^����}zY�Z�Sg�
;��
xz�S�O[#����[��͏?48X�ev:v�
;v:|�{�k�{�n��Gƶt�t�16|�0��SV�Աӓ��;&�D΂��#֩�7���t8�|���3;}t���-�R/��{��ةӒ����Ogwz�H�������>5�z�빝��G;t����O���;
ٶaz+��S8Œn�u�����Ooݑ����k�����mm�f�y�؆hW���|+U��+���s�֖N�&��Q�p��n�t�趝���t;u
+�����
�FJ�N@�o��N���m߹�Ȳ+�~
�8ud�H&�!3C6p�=�_Iչ�����o�2����*�>k���J@����4���ܦ_<�%w:�]
�
��|�_��a��OP.6j�l�eq�t�h�y���C-汤���R��B >�/���fa��|��A�b�Խאu��̍ߑ����F-�iei��%���������Bg�j}�z+��ӓ�VzG7��>J�=�>D��y�y�L�#��w��E}xb�1O�t��O��w]�������������X���^�L8yj��� v:�7
���vY�y���
� �K��D}�\ڍ~z]R�b�>]�]����z_Z��ZTNjw�O뿏c &6ME��zgI~�~��97����������JK���
�O������Aɗ����
1��#���9p|�z��Q^� ���f����������ţ���j66O�S�M�.��<<2j��������.��g��G��.��
oy��w�
H��<_> [...]
g}h��
+i1�?���I��Xq�}=�f'v�[���]�\}��LY at W�u�"$#C�f�\z��n�/��
�BP�t.�fI�8��E������"$����G�����W�aFYv
�7x�q����}������t����m.W*�Q\y^�
}i�s�ۖ~��my�x(b"����V��5�`�C��vm
�g�/a
6�I��� M�oq�<�si ���%�h���YH�O�R�9lg���\��\x��ݑ�Κͽ���$B��e���\���� o��n�f2��N_�?D
ݐ�v�"��y����7�-El��{e1l�Š�ى>A�F~e��Z�<����]�Z�Q�mF~���x���]GW��������Fr��_��5�U�$S�OFMi�f�O;�(���{��,�]Q�`�I�f�ş�O��`��RC����zv�r��z�Yc���]	ㄘ8N�Iㄘ<Jg�Z��JdOn�1 �u�x��:��g�A���^������
�(�|Z [...]
+���4��4��ߏ��|r��^b����/W_�p��j#,�
��s�Ǽ�a�J�]�<K!r
�<���a�0�,/	���
X!�ѕ!`X\��
+��<m~���*&a���^7�,

Kp�����g�4
�4�u*6]�=>B�"$���߹K�^�R1��	4��9�Տ
o 
��]��r\l�d~ʑnt����M��
0��ү�X_0�ظЉ���D��\���~c����l?���t� �)
����Ԉ���
+ĺ�S7���~1
E0�/^���F嗏�\���H��D
+b��r)"�[͗}AD�@;�7� ������
e�%FK�n�-�;kmAǯ���Ie��f���S2��w����<�!b�-@�/�<��%J�ags) 艷��&���������ݤ����x��p*/���#9Ė	���?�͟��ĝ
+����$�'B�e�{l�7�C��3X
�yK{��O<�9i�qؙ�U������fc6}�{|s��x9|KJ��-Ѭ���i��mL�빖��-t�",�RG౳
�9I!т�;�ˏ*юmH��e�h�4���.Ѡ�h>-6l?c�{�~�ͷ���O�o
��	
eqA2��!?����/,Wx��qm����h�5�h�!B�%#OȲ�J���΢�K3	Y�/�ќF�̝��h�'WH��'��
+�f�۽�z�F{����P��O�ѣ�<���W��c����gXB�Bvzp4mr�1���Ar���Y
췲���
++bW�
��@,��F�����m��t��Z
�I��Sh1�'�}�����YzOή
k����O��2�6����G����Ñ�?�P�zJ��t2z�����[�ic��՟�>�J�4�
�=���Cg�c ����K��A*>��=EV�G���4T��y.y�1)���l�b��
++����N����ѡ�4'���³pa@
{Œ��O�Bg��W�{7~�:�z㈐ �Rœ}{Q�lD
���G�x� ���QDhJ���TJ��;�j1���Gy�|9���o���{r���n�:��ś@]|��_FΡ�ϠJ
K]|
�e
9t�t �ǒC�AG�1���g�Q��r�ƒz3��ق����g�Q��r�
�r��`�����gб
��s��3����s�|I7���~
6p 9:h�#�������:��E����$x�S>�
��%�>W �M�St��
��C��p��#
�w���3�~'��s
��߲����_ڡ�����
�s�_|+L\�e|�hpJ���3��N)1r�,)sQ�Rl�r#2E���������
AJ>���6���sC_�Sj	�aC
��d�ʨ��/^�=ҋ�nY��p�^ϫ16�
K0�"�#��,����v��G�f�F�]7�'O)���no&��|�n�$S����>y|���l�= +f/;8�!8T���gcoN�߱�U�Eo���|�Y`L�ś]����N;�~�<���$�R`J�]��5�YG��̖ZhNŜ�w��.7��
k�,y|�f�����������/�t�"]�/����S�� ��3�e��F�8 �pB������Q'�yv�p����B������#:X�'e?%w�p�H��ޙ�c�I����g<w'lux,����
�[���uR�S1B�z�sF�S�1���'��y�l�)nI�

7+-�7D�\��QpQ�
.(��gcb�~;����o#)+��fFR�F��N��g�wW#3�:Sc�Ǯ�
)�~����[��w���*��)9vi���N�I�\s�#
q�lND��~��M)3�ʰ���<��M�K
'DF�6����f���"2���d􉝴��^7G���b��93����D�
y��u3SD��'�ih	g
�#2�.�92
-]D&WH��5"�`QS��O5������t��s{��<���B�Yf�'E��������OP�%�qB:��xʠ,��ii��D�,���&�wU
�/C�ե>
+��輺б٬��Yuৎxz�"�$&n野>���w��8;��#+:�f0F�pB8:��O}�.{>\��c�̇��j�|�'Tǐg�i?zFjl>\�l����8;#��x��0:Έw>��
��K����ȣsC��9Q��Q����"v}y�b+��J��G>;��/��L�q�3���-��g"y��}��zB��'!����"�/�'�U&������2���Lw��E�!&�EĒ�	l&tnh�+̆�6
��NC�:Ր�gγ;�Ҳ�I��ɑ�o�وlH�v�phk
ux5�
��L�
Ɇ�^���!�&֗Nu�
��*;<°�I�,z�5�3T��^	
��%\.��x����X2R�ɄKT�d����<�t��2����G'ݤ�H=
SF��X2ROǔ�z:������@'��Zt	t̮h�K6�\��Xǃ�[�S�aR*��[�*[g�T8nLi�pi�=.9n9�T8�_9�T8���R�S7�r��K�^�R���k�����ȭ�h7���Z
+Q�X�SU�Y�@ۆI8����0�
Ӫ��
��y" 1�i�
]����T�3��I����೓�j
��-
�b�OX,��������ڦ�Ƀ��_���G��J��P��W��%����9� t&0e�/l�%����Jʤ4gzO��R�&g���5���
ZY���#�@�O
�\D%���Kv��a�{�з��vFܼy��1.�y�ԟ������]�L[��~uVLv;�
���a'tMa'bPmj��U��JvKȰ�R"�*�UoO"�j��r	�v�^1r����R>r���U�ȇӾi����"ʭ_���7��]���%��M}^w�v�'!#�T�Xtg�NL:�\
�v���R�ݟA�o�#�~
��Ct�ީ2|
�^�v��Y�*��T�+nJ�Jy~#x�T�P
���+��K
/�W�K�:����P����l���=�7l9Nn6үL."�~}��{�S�/���9fR�O���F��ǥ�S��J��$��k�l��H�8����0�ʦ���%��̚M�[Z�Cg��&b��%�WfΦ�-()�q
���Տ�;U�ʦ�9n�qeӥ>=R6]�F
S6
/�.*j=|6
/��3�l:��<�3�l:^���M_6
�{�^�ѳ�x��$�X��xS�9��o)�;���?n�w�l:^.]Bտ!��x]e��M�M�늟_9J6
/�nl��V0;Ē��b!6�l:�6�_�#��ׁ�F�8��x�t�;�FΦs^���E�W�M��+aFʦ���E�|
>���K���Ѳ�x�t	��
[q.�Ki��MǙR07!
���t�u_�;��bJC&ҽ��
+
�.����
��jg
�rL��b�0�W���
+�¤�こ���,�H�Ob�W��/×�K����\&v��R����,Nj�)EJ�TO��,2���,~�?�}��6��
���4T�2w$a�
+�e:��[Z��jx�2w�T�t��	N��I��F.s瓖I�C��s�2��]��??��EQr��O���
q/�V0n0�=W`���|��䊦0��R
 N�健�G=��e��H�T���%��쯥+1�N
0���k�F��0�0k>���`F��M1�Otw�@
<E�=oy���x9Tc<
���4���(�Γ��p�9]�c����*��g6�lB�OU:Ǫ�n/��I,��
6K:م�%$��'����ݖ�a�wv4�[��qYx8��0K�4	��)�N��kl*C�2f�ě���
z�g�O�ǒ��ȍ����s���\���9U����|<t�Ϙ���q�D����%�z��Ls:=����Z쬪�˓��0�:/D��C��9'+��Z+
�i#��w�%v��9gHR�a�
+wIu��S�2cjܥ�|���3U�:�(P)ot6�V��R^�
+w��$�V��W�ؕ�B�V���kA�
|�.�NS�9i�
�rrÛ9�{G���k/?g���|��M�����Cb-���7�Nbr?��ri����H���Ĕ�\�8���$���˄�(�:6�U]���������\)uq�\�
7��/z!6��͡��۞1n釘6.�py��I���g֭��q�)q)Š*
���<;�s\�G3x�6��q���T�1A#���ܣe��2��ݢ�9��3Q�T9�ͳ��<�
s>�r�V͔1�b=�h���zN�q���^�{N�5��xm�3�e�a�R~vk^�=L�;�Wo
��G��ڳr���D��8{�-ճ��읞
]��N���ጽ�����guئ�?���W��t?}�
U�.���u�
��5�݈A���7y�&*	�7(��Fu��*o�Vj����4��7���\F���|8�.�/�o�[GП�V�9�J�S�̮��~E�[k��� ?	��
+ݫ��tCm���8�w��`��]̠k�\䠃��ͩ���+�4��)�8
+�ո�n�p��Y��闍}c��1�M�ݩ~��&w��8ě���go��
2:mƅo����t�'^�����+B�7��
+�NG�b�ă!���Y�V�+b&�x�=]�U���2��L��R^8�����RA�C]qrlYi��O�g�U2��ו�&tV

Ni%�
�Y_=픘'
7����i�D�2&N�N��h�j��_i" �ΫoAq�2Ɯ\3�:5�AJ
S6�u'����p��>�Mf_Zp��3�5��k
���4~s½֝qD�1�v��1�L�+��0ؙ��V���
Qt�f���Yw�w����g���d򑻑���m�)v�1�.��
?@k�����	ٹ1f�U�
��ʤM$3��n9˘H�V�j��OL�z!C�U��"1S�^���$zcljָJ>y�M�sxS�GI��ZJ0���R����������S��ǒ;K��?/O~-�UFZdr.O��v.�A,��N&��#�D(]8�:
� R
v�,@/K�� ��!�肟�6�
y�,��`��
"�<DE��m�-
�;N`t�4Y�i1�͖V�
��,�tY�is }�?s`̂|��>r\`�eB��W卐�wE�8����|)�pc(��D��Ӣ|vE���(_�N�X��q�ʱ��p��E�ղ���|���#�
L�o;�e�5���`^]�q�
_�/}&ט��T��n�@]�!O�f���u���Mʺ~�
��*}]���&q�g
wCQ]��pY.>�!u]��#����Q�/�`�O�Z�����zj=�T�/�<�/��CY��q�����-�u���3�H��~�U�F>�j���g�4��i���ۼ��đ��y�
���2�F����q���g��������������7�)��{))���>��~�ت~���%r ��@���u��S�]�Xi���_|U?~�c�,1��_��ȍ��_|U� ^���q�ڪ�e�~�
=!+-��0e�~�]L�^ׯ[�/c=�Ly���(u������U?\�/���l�~���y.°��8�
�U��z�8�0�v�,Yi�f

[׏;��Mzð������x��~��	�q���O�L_�o_ڶ`�u����
L)p��H7�9'5�U��wFb�-Bu���c����dናrRf}�d�ت~�omJ��:�u��~�^BѬ!��e<
endstream
endobj
15 0 obj
<</Length 9727>>stream
++Y�o�;�|�X{�
~	�çN�Ǻ~���Iw������"�C������b����ҭ�}�U��~i���_r�r
u�x�
�<9DΓ��ߨ�����7
}��#���7
�
��u���
W��z����߱q�2Z]����nv�hu��
'�{I����G:c�8ǖK'��P�ϣ
�W�(W_O��nw�L/$]bZ��.��.7c(��?m�i��1��‹o��m�b&�- �=�YR��]x<Q�}[7j����i�4m��5~�o
�Rs��꼔/��J�8't���yi�p�2�2׬,-V*�[�Bg�C�fgE�^]�
k՟��7/��ůa{��.
�U��f�)
���QN�o����)�|lN
���m�j�yK����	7�7�v�� �.\���Zq�z�
��g6?s�_S��u�g�X��O�{KZ1�}�,Hz�����N~
-M�
�I��)�
��G���Qw������*N*`q�٩齙��J��j��߫Fa�����
	✆�Y�����ʋ��+��$��yea�6��;#�n��y+�ܵV��ZX^�G�]am�}o�e�>R&��
zTYlԨ�$�I�t�5_����60�m��e�����f�o��=��Ȱq���ژg�|fu��,_��Mb��f����Ǣ�{�Zc�����6/�����s�O���e� \�����V�NO�+�j�[Z�� ����{S���>W��f
�۩���/��a	au���*a
��aQ��Y��
���V�?[�:�Yw>C��99[��\��'��߻�(4���3�+�T���ͺ���܂�`��> ��[�t빂��������'��ï͕q�e��k+vޑ׺5z ��#�����`����+�mpy�|��?�%�{�ʷiu�ת�+U�G�?7j��A
�
�zuz���3�\���"����n�壷:aP*O���
+��
�$���A�w�4��4dc�]����uw�/Ɣ�;�E�E��:
z���
�=���{<�
��Ź�����m돾��z��vJ�$5/f��������� �#�����֋���K,w���Wh;�#����Sf��&Oj�
@~8�~5�����@H
���U� nm�����;�J����|�gn���z�Z^>�}�j�E���%�X�j������땻O<~x���RB���Wo��
i۰�
O2���1�c�̲t?�O���� n�J����
_%�����{�]gn���\�گ����
� �v��8��cE[��
Q�8gi��i����Hoc�Eh,�m��h����-0P������c@
+ �m#�t�CdP\;.������?1�3'.�"�	<�s)V�6���UY�گ�Տ׎��9�I&
T��ѝ�p]n��
LT�X�B�v�5�z�	
�\�N�T����6H���t_�����t��k����A*��qd�o���g�F,�(��Wf����&�����$|v�/��o<��({����������QJ�T2�eW�S������Xxk���n�9l��~
�n��B�O��@gg{�NK>*�EJ%�	�:_�g�/D��6F�׮��_�VP�'u�v�u#���z��BSE�d�c�\��
�D��Bc�?�+��6�w�,����@���7���o�\Z�@�S��X��K���
+|m死;���ž�'�LZ 
@�Q��z�3�؂�_�Q�yTr��yω��4a�+_�����K��u���ނqGV/�������Y�𼯽�x9�!D��4rcDD�g=
�B������)�Q]TF�CՇ�,��PK�A��E}�e����[�
ެFA,@��j�{�R�Nbՙ<�~P��ީ=�	�ZfUr�btnݤ���ט�L�M�߳��*�(ѕ/f)5}N�ׯ��y:QZW�S�e��/�&��$��>]'�;�Pd{v�(�Ao�={��s�\��z�ScJ}I݁���yfV���z��l9f�*�UK�ۂ��3R�{�C���~��a;�tAҚ�	Rma��7�!k-ZV��3�5wєWo)�
SaV�w�B7���Ǔuwzxgn�_�s"7;���k-�Ʋg��+>=���,�B�x�Çn|���1{���vM���_��`NY�By�č�<+�� �4��z+b�i�� [...]
+{k^��	_g]��`��#�����������6ý��{�����M
�4�K�0eiZ�=�/9���CK����Gp��W=6/�_�	휌I��(�a�|P�9Ժ�?�+`���2'VO�-��9��s�������
r�Zd�~g�a�wM�aZׄ�����n
�>+���f膡d�֒���K��0�{�����pX�3�rܵt>
��c���3���t�/v���d���ػ�`�� �zև�@%c��u�5S�0���W�'���=Ԗ��]�}�F������UJ3�ˬd�o����Y;�c��e/ۯ-�J���u$���v�Y��y��+f
�3�X[�>�y^�x
�ei^�n�fiZv�Tt/%UqK|��Yi�`V�knd*��x
��@�+t�% ���/��/���B��{����`jk{�̑��!;�ߌ8H�41�j�#ODёT'�6M��'��~Ж��:Wi�
R',��'F�DG v
��/�o���"�� �&
�X�A4����]ioO\ku�噝��\ [...]
<
lmg3y��lK��6�?���c@�L��37�EM����xGk�k7�

�5Ī�yp���^�a�+ ��?����mJ��ǎ<#
��!�&aP3��퍼�b��n� �E�Z�e��S��3/G`e��xB��_"l�M��9,�t������o�9A�gJ��\/,�nߝn�����˖
�֋�/��FY�
+�:	�"�rIݰs��b ���g݆GZ
+���j�ύ=ѭ����}�<�x�*΃�������G
֓�@�< �r������ҽ��N���Iy�Dc;u�*קW椂���Ď�����羷���
+Bv���l�}���v�j��o��'_�
۾�-�#��@]��}#bkW����q�
:�.�6_�O��{�{�����C[���@�jS*�w"{���+$���[tzl��{����_��������=��
�.�zw
+ϯe".�ˑ�Yz{Yw��Ɣ
�5��a��)�}�.�h��S\��Kf��X���ɾ�@����N�`[��U�y��sg�/w7u&7����\���kR�vQ!Fs��F�C܆G3άU�m�-
���\�X6ǾuF�>(N;�x{=��K+
�벽����u�^���s�e򭋷}����» /��Vm�� n���<T	lM����nꄡ�D���?�
�}��6Q�����x����
��G����~�y�}O�M4V[���?�?�'Xx�V� >�%G�V�2ۿ͵����Ż�o�|)�GX��q?�m.�
}q
7
��.
_3'��kC
+~v��4:���i��(���w>ۿ�*n���s��r��E�vG:ԷV����C�t�?����z�H���L�����2Np�`���F#_-��X����;������
~�W����S�p�L��x����#���]�Ǫ���
�=O�m?���
<���*�׿��e�������\�f�	��	,=������w����$^�
i�l��1�63]�t�U�
i�okz�4L�?��<Qx!v�
i�֪z�4x�^ۨ�Н潬�
\��

��|��?�Vܾo�r��.��,8S�&Q
�2X�� �
���m�A�

+�<ٹvzb�Bnl>�~:�x���?�՜Ao�Q���ڍ�������qw���
�n�bʑ`�s	&������mӤ��nS��Mc�4ֺ+��Q{�Ѻ�Vu&ڲ�H"��ӻ/7Sy��)�#

��eg,����a���� ��6���B�T����dnH���;4�w�����푷�
����W??v�l,*�^3"�gЍCjF��M��Ԍ�B&�8�f�_�����Y>�
i�
+
~�=]R2���
e�6�����!ʅ�ӊ��:�W;�X�`������~�6������/i3xj �x��8�� S��|/�؁�q�:��s��u�ď�M͘�{S�ʯM
)�$�]?	H�e���s�j{�� �T�}�8��w���C3�9vF�ډvO&�?�����]�н�c-��_����YK�p�*��p��r��/������<>8c�=å0$��˝�[*��k�!�#����@ 
d���`�fS
��
�`%2�s`�@�
K���e��'XW�v�e��N
P�R-#�x�U��� �C�2�&��
��Sa���E�\!n�iYrINXo�;C�����cCB������p-4��Y<W2��n��4�mi�ߚ��!���$�����I��<�?6�/&�Mr����Lr�
+��Lr�10�
������`F0���C�k�Mn3W�W�̀^�h��*�~���u(N���?|��C�⦹ҧ�M+5�z���

㓁}nW���ޅ?5��
+�}�r���3N�v
÷
N��	��X���P��=�
�Ƶ�?N
��ă��Zo�n��k+�!د����(m��M���
+�
+�r�����ԛf���[�����0!����9!JƄ���
����J��Yy���+�4V�������;1�Mg۽���܄���D	�!����^���
L�[͉g�?�
+]�<�a��,
d�����k����oq�q��>�_���
͛����M����gB�؞��&
q��
���&J剳�
c
+�1��K
+�Ņd�&�U]�M��_
��=M���������
���o>�&�.�p[���-z�-Fa������[�+�ݗc�N������ݜP�S�&����,�A5
�a
+��9��K�hQ�`��(�͐'^=m�ZM��A�Q�4E�IfݐY�!�OE�6�.��6!Z]Z��ؙR]�U�myȉ�Z�D]����uA�YHb]LZ̺.c��3E�Lĺ�P$��	�9!	R]�%
N���*{[`��a�wv�
?};2Ɨ �$A�P�


+���YuM�3�.�&pު@
 ?	�ؠ�̺f�
+~g�[ J�" j��	4H�)M��Yd_�a|�|�k�P8)j]E|K�+�sR��!�:� ,
�ڬ��$�w"�
�TQ�1d bT5S�R�e�Ӣ�U�d��m�m�F��( ^
�� tX��Bߚ	}Ä�LQ����*@�'�S��`‚(�<
W.�-M�;,�}
p.�@Hؓ�'�(@�4�l :�Y�4�
"Н$ f
�ۤ�
�=ϗ�6�� 	��@�	�4��Re�BV��qA�&�n��f	�}
 �Z�)˄yI�������ޔ�0w���o�
+��a�j��D@F�$�u Tl0��x�T5�%t�I�&�o��i�ZT	�l�4o���
dG�g�2#+IQ����"#�U@�#���
+�#0.c
&�hV�:�B'�Re�7����wȏ� 
GRWq�f��.c_0w�s��B�Fұ'X�tI̦T$%�.�����D��&
,	�� 0C���6�؍�n�FB�  C�|�Aa馮Y�D�ulS�.@>�.�)����M$���=��%:@�`G�!���� M�¹�d	����~�f�QqH�Vai 3�� ;^=m@&��HYU�h M$[ �~�
������#In�=﷼6	��*�6_Hy�8�I�@V�� �@i�
��I�C��"�!�ppI���vl!��²Z�;�@��[Ԡ�H��r`8��3�
�`�:�ZEVa��Z��<D�놤Ӝ]���J2`��y
ԙ��:�$�ؐ�Je��
�1R��t���%`#IX�D�87E���B:iJՈ�ՌEa}�	,�B>t( N��A�Țn}C��B�
��<d�C�L��A0�H�N�K���,�zD�XR�$P�j�Q��M
�tj��q@�RM/`U�
�/�-� *1j!�`�"*`��
+� )��P��:�`"�
�� ��X�	l�
ؑ�#ڀ�L`�éL���=I�i��Lf� �����df�,�8q�"�n��@���H��@���:e$@P�
+R'��4���%m����#6H�
�IS���@
+�4|G]��L�ܔ�u440P`)h�	ؓD%���>,��N%
�	��DS
4�
+Z�
$Av[N �e��*5��
!<�"�`�D3
/��z&(Uq�
+�
�M$�+A'
�9��q��bM]G��r at 3tRš���P~�@�E�V0�Fj�4AF���/���U�.��(FC�	R`�2�[`Uԣf"<	v��Mj15��D�*&��N� ��[��`� S�-6
��X�͸/
fFF'�
�d�!�	��DC�^��Է�v���f-�[���V���o!�
�;�u�m�5�[ ��w"ZE���%��8Mg%�m�6 ���YM�^�Y��c4�84XQ�K�Z����F���	
�[ kZ����0N���&GǸ��W� ��X ��6І�U﫧
�
+�b�E��Z��M����
����
Nc�#j"2��v�fiv
�
���ɸ>���L�V|֝�	�w ���2��
lAW�
��* 䂇 ���Ē�& �����H8]��<-0k���6tr�{G�N:MA���)+����N*�ກ�;�Q!�`��T�� L@;�(`������	P3!��5,�jHd�ʨ�E��\͍x�P���
�G)��"0�@B���¦���6\2�L�N%Ug�
B�֘ B
�l$P� (0T
U`ܣ�+�i� �iSW�l��	�w��,a
�6
fZj	�Lm�耴�#O�Q��^�+Ú
Y�y
����|
m.�Ɓo��
<to��
�g\�����7��-n*W�@
�Ѱ��6
����@����6�A�A(�cŠhJ�x١4$�r
���%�M��޷P�L�`FA��"

@3�����oN4O�NdrMư�&3�k 3�wৃk�J��>ú����F���j\U�n��暃��X��n(��m�qA�������i�����e�ƱMc�i���"e�%��›IA�%Q��~Y� ��|A��UfԠ��Np�3@
#H�%��`�&&�z�@@S+"E��6�P)��o�@�!L^������2���3@],��� �����Gm�H~-	��
2G"F�
�������Ze��>4���3�u
�%�$51
�:İ�(�<�Qd|待��f(�g(0��ޠ��R��]����z9�D��O�45S�Ik�C�JU��@!
��PD��>pN�bx6N�i�� [...]
!,
��Xc�j�E��Uc@��|h��$��
+}g���;�R,nn0D�/��"�yS�0#3uO
	,�;p���Q��\ф0PP�[��
+()������蔑dB
����Q`hT�y��fQ�->X�(�i��5�Gih
a�(Ғ&�@Д φ��)3K3R�+	g+@�ɜX$.�<"��
��B�-�
�ƵfI
+�C��FY$��pO@A1�M�6�DvC�R�Y�Cx��
w=~l�1����F �=E�0�·�T"�� 	f�
�H�9�`ܘ綡47X���q�m�|�����y��NC��ksֆߊ�Y�k��'�%+�E��6����A�y��p��
�N؄uf
�s'�{�kB9��Q!��]�ڜzdPK2�.�ͳ{
n���Kx
�<�@B5y���:[��� c��
�	���ag�
MB�d�n��
,=�VlmA�������h�;
�>�u���RP��#
c3d�
#��� ���&�t'��
��`po��<��i�Y(�ӓ�4�g<|�Z�3+�{:8����5�R���
�� �^�K23,�#�&
+"�`A<9N��3���
#O!�=��1�@IA䒬ӆ�h
+���Z��E�9
�n�lX�yH�\'4
�m

+��ඹT^���K�0�-LM1� pK���Gm*
+q�+Bu��"��� �
�w��3��F�я5��d��h7�h�JE�=�Ŵ�	���:�H�-�dn��E%+��%#��l��l-��M���?�jvW����
V��6��LY]�Ѐ?DR�@.�*��@�H"�1h�B�J3dSt[؂5S��%�n)tN�5nʲ
��c,� �u���Z���*)Jᴨ�s��Q�
�g߲���(���49SDE��x��&cA�� S�O���n��:��n@���(��`�GU�ݐՂX!.��
b^� ٱ8#�� ��>8��*�,�B��A�CP���XB�D�\
Z�nb�F�6�T����$����8*��"+5��1
���Q���ʢ�вɝwZ���4����Ll����>�@%�Ẹ�I�&b`�-4 C*��(vV��Y���
Y��Y]�^�M�
�Q�+��d�h��/� X�īh]�th CtF�Y�60TA�
Ȅ�&!�q	��d
x�|�r%Q��d��*�t��};� \� ����t�K:�
+�����Ų
r�%����
�#�b�>{S�A!�B��T5�i��`�ҦI$	�jd>Mc�b�v
��@�2��6���|E�u��
~nh��M��,�"@[PeƓ������	:.`�S�F at T�w�����ȷX�D�k���6-�7d�5��I
+�d��SEG^0T;Ƅ�C�3E@��i�d��D7\�C��/�H��� Mjb<
a"��JM�=NS���p�B�:�(l�� 
CB
+PqC��Z鉢�fi
+���&Q%{��y$�p������Ӷހ�R-���������Շ�l?
��t��nJ���"sc�
�I�
+
]��)���*�
�"
_��-\�>�lڰv�
Y��
�|n�E��6���5���AU�(��e0�H�LAF�tX�
������ ��j����wTvyIEv	_Gq��h��r@��Og�
0z�UC�]U2���U���ch�ax�ɒ��}
+G�H
+ܪm/���):��Bhi��WV!5Q��䙆g�
+>�lhX;��L2*����M����D����LW�>p�n�h��+��=��w_��������Oܽ����<�x�����?���-��z������?ɝ�)
endstream
endobj
32 0 obj
<</CreationDate(D:20100419174251-07'00')/Creator(Adobe Illustrator CS3)/Producer(Adobe PDF library 8.00)/ModDate(D:20100419174251-07'00')/Title(logo)>>
endobj
xref
0 38
0000000003 65535 f
+0000000016 00000 n
+0000042407 00000 n
+0000000004 00001 f
+0000000016 00000 f
+0000042862 00000 n
+0000056093 00000 n
+0000056165 00000 n
+0000056446 00000 n
+0000057773 00000 n
+0000067366 00000 n
+0000132954 00000 n
+0000198542 00000 n
+0000264130 00000 n
+0000329718 00000 n
+0000395306 00000 n
+0000000022 00001 f
+0000042830 00000 n
+0000042458 00000 n
+0000042714 00000 n
+0000042745 00000 n
+0000046790 00000 n
+0000000023 00001 f
+0000000024 00001 f
+0000000028 00001 f
+0000042526 00000 n
+0000042598 00000 n
+0000042629 00000 n
+0000000000 00001 f
+0000046903 00000 n
+0000047159 00000 n
+0000043248 00000 n
+0000405084 00000 n
+0000047408 00000 n
+0000055532 00000 n
+0000055580 00000 n
+0000046459 00000 n
+0000000167 00000 n
+trailer
<</Size 38/Root 1 0 R/Info 32 0 R/ID[<B4F5F6341C66420C9049A7F5BA2578D2><AB39D321FF0E4E49BA9F2FABAED9D06B>]>>
startxref
405252
%%EOF
\ No newline at end of file
diff --git a/www/mustaches.jpg b/www/mustaches.jpg
new file mode 100644
index 0000000..c314564
Binary files /dev/null and b/www/mustaches.jpg differ
diff --git a/www/mustaches.psd b/www/mustaches.psd
new file mode 100644
index 0000000..7648717
Binary files /dev/null and b/www/mustaches.psd differ
diff --git a/www/style.css b/www/style.css
new file mode 100644
index 0000000..124c1f2
--- /dev/null
+++ b/www/style.css
@@ -0,0 +1,43 @@
+body
+{
+    font-family: Arial, Helvetica, sans;
+    font-size: 14px;
+    line-height: 16px;
+    color: black;
+    background-color: white;
+}
+
+h2 { font-size: 1.25em; }
+h3, h4 { font-size: 1em; }
+
+a { color: blue; }
+
+i.title,
+a.credit
+{
+    white-space: nowrap;
+}
+
+em { background-color: #ff3; }
+
+#content
+{
+    width: 500px;
+    margin: 3em auto;
+    padding: 0;
+}
+
+#content p,
+#content h1,
+#content ul
+{
+    margin: 1em 0;
+}
+
+#content ul { padding-left: 2em; }
+#content li { margin: .5em 0; }
+
+#content h1
+{
+    padding: 0;
+}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/tilestache.git



More information about the Pkg-grass-devel mailing list