+++ /dev/null
-<?php
-/**
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2008, 2009, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category StatusNet
- * @package StatusNet
- * @author Brenda Wallace <shiny@cpan.org>
- * @author Brion Vibber <brion@pobox.com>
- * @author Christopher Vollick <psycotica0@gmail.com>
- * @author CiaranG <ciaran@ciarang.com>
- * @author Craig Andrews <candrews@integralblue.com>
- * @author Evan Prodromou <evan@controlezvous.ca>
- * @author Gina Haeussge <osd@foosel.net>
- * @author James Walker <walkah@walkah.net>
- * @author Jeffery To <jeffery.to@gmail.com>
- * @author Mike Cochrane <mikec@mikenz.geek.nz>
- * @author Robin Millette <millette@controlyourself.ca>
- * @author Sarven Capadisli <csarven@controlyourself.ca>
- * @author Tom Adams <tom@holizz.com>
- * @author Zach Copley <zach@status.net>
- * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
- *
- * @license GNU Affero General Public License http://www.gnu.org/licenses/
- */
-
-$_startTime = microtime(true);
-$_perfCounters = array();
-
-// We provide all our dependencies through our own autoload.
-// This will probably be configurable for distributing with
-// system packages (like with Debian apt etc. where included
-// libraries are maintained through repositories)
-set_include_path('.'); // mainly fixes an issue where /usr/share/{pear,php*}/DB/DataObject.php is _old_ on various systems...
-
-define('INSTALLDIR', dirname(__FILE__));
-define('GNUSOCIAL', true);
-define('STATUSNET', true); // compatibility
-
-$user = null;
-$action = null;
-
-function getPath($req)
-{
- $p = null;
-
- if ((common_config('site', 'fancy') || !array_key_exists('PATH_INFO', $_SERVER))
- && array_key_exists('p', $req)
- ) {
- $p = $req['p'];
- } else if (array_key_exists('PATH_INFO', $_SERVER)) {
- $path = $_SERVER['PATH_INFO'];
- $script = $_SERVER['SCRIPT_NAME'];
- if (substr($path, 0, mb_strlen($script)) == $script) {
- $p = substr($path, mb_strlen($script) + 1);
- } else {
- $p = $path;
- }
- } else {
- $p = null;
- }
-
- // Trim all initial '/'
-
- $p = ltrim($p, '/');
-
- return $p;
-}
-
-/**
- * logs and then displays error messages
- *
- * @return void
- */
-function handleError($error)
-{
- try {
-
- if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) {
- return;
- }
-
- $logmsg = "Exception thrown: " . _ve($error->getMessage());
- if ($error instanceof PEAR_Exception && common_config('log', 'debugtrace')) {
- $logmsg .= " PEAR: ". $error->toText();
- }
- // DB queries often end up with a lot of newlines; merge to a single line
- // for easier grepability...
- $logmsg = str_replace("\n", " ", $logmsg);
- common_log(LOG_ERR, $logmsg);
-
- // @fixme backtrace output should be consistent with exception handling
- if (common_config('log', 'debugtrace')) {
- $bt = $error->getTrace();
- foreach ($bt as $n => $line) {
- common_log(LOG_ERR, formatBacktraceLine($n, $line));
- }
- }
- if ($error instanceof DB_DataObject_Error
- || $error instanceof DB_Error
- || ($error instanceof PEAR_Exception && $error->getCode() == -24)
- ) {
- //If we run into a DB error, assume we can't connect to the DB at all
- //so set the current user to null, so we don't try to access the DB
- //while rendering the error page.
- global $_cur;
- $_cur = null;
-
- $msg = sprintf(
- // TRANS: Database error message.
- _('The database for %1$s is not responding correctly, '.
- 'so the site will not work properly. '.
- 'The site admins probably know about the problem, '.
- 'but you can contact them at %2$s to make sure. '.
- 'Otherwise, wait a few minutes and try again.'
- ),
- common_config('site', 'name'),
- common_config('site', 'email')
- );
-
- $erraction = new DBErrorAction($msg, 500);
- } elseif ($error instanceof ClientException) {
- $erraction = new ClientErrorAction($error->getMessage(), $error->getCode());
- } elseif ($error instanceof ServerException) {
- $erraction = new ServerErrorAction($error->getMessage(), $error->getCode(), $error);
- } else {
- // If it wasn't specified more closely which kind of exception it was
- $erraction = new ServerErrorAction($error->getMessage(), 500, $error);
- }
- $erraction->showPage();
-
- } catch (Exception $e) {
- // TRANS: Error message.
- echo _('An error occurred.');
- exit(-1);
- }
- exit(-1);
-}
-
-set_exception_handler('handleError');
-
-// quick check for fancy URL auto-detection support in installer.
-if (preg_replace("/\?.+$/", "", $_SERVER['REQUEST_URI']) === preg_replace("/^\/$/", "", (dirname($_SERVER['REQUEST_URI']))) . '/check-fancy') {
- die("Fancy URL support detection succeeded. We suggest you enable this to get fancy (pretty) URLs.");
-}
-
-require_once INSTALLDIR . '/lib/common.php';
-
-/**
- * Format a backtrace line for debug output roughly like debug_print_backtrace() does.
- * Exceptions already have this built in, but PEAR error objects just give us the array.
- *
- * @param int $n line number
- * @param array $line per-frame array item from debug_backtrace()
- * @return string
- */
-function formatBacktraceLine($n, $line)
-{
- $out = "#$n ";
- if (isset($line['class'])) $out .= $line['class'];
- if (isset($line['type'])) $out .= $line['type'];
- if (isset($line['function'])) $out .= $line['function'];
- $out .= '(';
- if (isset($line['args'])) {
- $args = array();
- foreach ($line['args'] as $arg) {
- // debug_print_backtrace seems to use var_export
- // but this gets *very* verbose!
- $args[] = gettype($arg);
- }
- $out .= implode(',', $args);
- }
- $out .= ')';
- $out .= ' called at [';
- if (isset($line['file'])) $out .= $line['file'];
- if (isset($line['line'])) $out .= ':' . $line['line'];
- $out .= ']';
- return $out;
-}
-
-function setupRW()
-{
- global $config;
-
- static $alwaysRW = array('session', 'remember_me');
-
- $rwdb = $config['db']['database'];
-
- if (Event::handle('StartReadWriteTables', array(&$alwaysRW, &$rwdb))) {
-
- // We ensure that these tables always are used
- // on the master DB
-
- $config['db']['database_rw'] = $rwdb;
- $config['db']['ini_rw'] = INSTALLDIR.'/classes/statusnet.ini';
-
- foreach ($alwaysRW as $table) {
- $config['db']['table_'.$table] = 'rw';
- }
-
- Event::handle('EndReadWriteTables', array($alwaysRW, $rwdb));
- }
-
- return;
-}
-
-function isLoginAction($action)
-{
- static $loginActions = array('login', 'recoverpassword', 'api', 'doc', 'register', 'publicxrds', 'otp', 'opensearch', 'rsd');
-
- $login = null;
-
- if (Event::handle('LoginAction', array($action, &$login))) {
- $login = in_array($action, $loginActions);
- }
-
- return $login;
-}
-
-function main()
-{
- global $user, $action;
-
- if (!_have_config()) {
- $msg = sprintf(
- // TRANS: Error message displayed when there is no StatusNet configuration file.
- _("No configuration file found. Try running ".
- "the installation program first."
- )
- );
- $sac = new ServerErrorAction($msg);
- $sac->showPage();
- return;
- }
-
- // Make sure RW database is setup
-
- setupRW();
-
- // XXX: we need a little more structure in this script
-
- // get and cache current user (may hit RW!)
-
- $user = common_current_user();
-
- // initialize language env
-
- common_init_language();
-
- $path = getPath($_REQUEST);
-
- $r = Router::get();
-
- $args = $r->map($path);
-
- // If the request is HTTP and it should be HTTPS...
- if (GNUsocial::useHTTPS() && !GNUsocial::isHTTPS()) {
- common_redirect(common_local_url($args['action'], $args));
- }
-
- $args = array_merge($args, $_REQUEST ?: []);
-
- Event::handle('ArgsInitialize', array(&$args));
-
- $action = basename($args['action']);
-
- if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
- common_redirect(common_local_url('public'));
- }
-
- // If the site is private, and they're not on one of the "public"
- // parts of the site, redirect to login
-
- if (!$user && common_config('site', 'private')
- && !isLoginAction($action)
- && !preg_match('/rss$/', $action)
- && $action != 'robotstxt'
- && !preg_match('/^Api/', $action)) {
-
- // set returnto
- $rargs =& common_copy_args($args);
- unset($rargs['action']);
- if (common_config('site', 'fancy')) {
- unset($rargs['p']);
- }
- if (array_key_exists('submit', $rargs)) {
- unset($rargs['submit']);
- }
- foreach (array_keys($_COOKIE) as $cookie) {
- unset($rargs[$cookie]);
- }
- common_set_returnto(common_local_url($action, $rargs));
-
- common_redirect(common_local_url('login'));
- }
-
- $action_class = ucfirst($action).'Action';
-
- if (!class_exists($action_class)) {
- // TRANS: Error message displayed when trying to perform an undefined action.
- throw new ClientException(_('Unknown action'), 404);
- }
-
- call_user_func("$action_class::run", $args);
-}
-
-main();
-
-// XXX: cleanup exit() calls or add an exit handler so
-// this always gets called
-
-Event::handle('CleanupPlugin');
+++ /dev/null
-<?php
-/**
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2009-2010, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Installation
- * @package Installation
- *
- * @author Adrian Lang <mail@adrianlang.de>
- * @author Brenda Wallace <shiny@cpan.org>
- * @author Brett Taylor <brett@webfroot.co.nz>
- * @author Brion Vibber <brion@pobox.com>
- * @author CiaranG <ciaran@ciarang.com>
- * @author Craig Andrews <candrews@integralblue.com>
- * @author Eric Helgeson <helfire@Erics-MBP.local>
- * @author Evan Prodromou <evan@status.net>
- * @author Mikael Nordfeldth <mmn@hethane.se>
- * @author Robin Millette <millette@controlyourself.ca>
- * @author Sarven Capadisli <csarven@status.net>
- * @author Tom Adams <tom@holizz.com>
- * @author Zach Copley <zach@status.net>
- * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
- * @license GNU Affero General Public License http://www.gnu.org/licenses/
- * @version 0.9.x
- * @link http://status.net
- */
-
-define('INSTALLDIR', __DIR__);
-
-require INSTALLDIR . '/lib/installer.php';
-
-/**
- * Helper class for building form
- */
-class Posted {
- /**
- * HTML-friendly escaped string for the POST param of given name, or empty.
- * @param string $name
- * @return string
- */
- function value($name)
- {
- return htmlspecialchars($this->string($name));
- }
-
- /**
- * The given POST parameter value, forced to a string.
- * Missing value will give ''.
- *
- * @param string $name
- * @return string
- */
- function string($name)
- {
- return strval($this->raw($name));
- }
-
- /**
- * The given POST parameter value, in its original form.
- * Magic quotes are stripped, if provided.
- * Missing value will give null.
- *
- * @param string $name
- * @return mixed
- */
- function raw($name)
- {
- if (isset($_POST[$name])) {
- return $this->dequote($_POST[$name]);
- } else {
- return null;
- }
- }
-
- /**
- * If necessary, strip magic quotes from the given value.
- *
- * @param mixed $val
- * @return mixed
- */
- function dequote($val)
- {
- if (get_magic_quotes_gpc()) {
- if (is_string($val)) {
- return stripslashes($val);
- } else if (is_array($val)) {
- return array_map(array($this, 'dequote'), $val);
- }
- }
- return $val;
- }
-}
-
-/**
- * Web-based installer: provides a form and such.
- */
-class WebInstaller extends Installer
-{
- /**
- * the actual installation.
- * If call libraries are present, then install
- *
- * @return void
- */
- function main()
- {
- if (!$this->checkPrereqs()) {
- $this->warning(_('Please fix the above stated problems and refresh this page to continue installing.'));
- return;
- }
-
- if ($_SERVER['REQUEST_METHOD'] == 'POST') {
- $this->handlePost();
- } else {
- $this->showForm();
- }
- }
-
- /**
- * Web implementation of warning output
- */
- function warning($message, $submessage='')
- {
- print "<p class=\"error\">$message</p>\n";
- if ($submessage != '') {
- print "<p>$submessage</p>\n";
- }
- }
-
- /**
- * Web implementation of status output
- */
- function updateStatus($status, $error=false)
- {
- echo '<li' . ($error ? ' class="error"': '' ) . ">$status</li>";
- }
-
- /**
- * Show the web form!
- */
- function showForm()
- {
- global $dbModules;
- $post = new Posted();
- $dbRadios = '';
- $dbtype = $post->raw('dbtype');
- foreach (self::$dbModules as $type => $info) {
- if ($this->checkExtension($info['check_module'])) {
- if ($dbtype == null || $dbtype == $type) {
- $checked = 'checked="checked" ';
- $dbtype = $type; // if we didn't have one checked, hit the first
- } else {
- $checked = '';
- }
- $dbRadios .= sprintf('<input type="radio" name="dbtype" id="dbtype-%1$s" value="%1$s" %2$s/>%3$s<br />',
- htmlspecialchars($type), $checked,
- htmlspecialchars($info['name']));
- }
- }
-
- $ssl = array('always'=>null, 'never'=>null);
- if (!empty($_SERVER['HTTPS'])) {
- $ssl['always'] = 'checked="checked"';
- } else {
- $ssl['never'] = 'checked="checked"';
- }
-
- echo<<<E_O_T
- <form method="post" action="install.php" class="form_settings" id="form_install">
- <fieldset>
- <fieldset id="settings_site">
- <legend>Site settings</legend>
- <ul class="form_data">
- <li>
- <label for="sitename">Site name</label>
- <input type="text" id="sitename" name="sitename" value="{$post->value('sitename')}" />
- <p class="form_guide">The name of your site</p>
- </li>
- <li>
- <label for="fancy-enable">Fancy URLs</label>
- <input type="radio" name="fancy" id="fancy-enable" value="enable" checked='checked' /> enable<br />
- <input type="radio" name="fancy" id="fancy-disable" value="" /> disable<br />
- <p class="form_guide" id='fancy-form_guide'>Enable fancy (pretty) URLs. Auto-detection failed, it depends on Javascript.</p>
- </li>
- <li>
- <label for="ssl">Server SSL</label>
- <input type="radio" name="ssl" id="ssl-always" value="always" {$ssl['always']} /> enable<br />
- <input type="radio" name="ssl" id="ssl-never" value="never" {$ssl['never']} /> disable<br />
- <p class="form_guide" id="ssl-form_guide">Enabling SSL (https://) requires extra webserver configuration and certificate generation not offered by this installation.</p>
- </li>
- </ul>
- </fieldset>
-
- <fieldset id="settings_db">
- <legend>Database settings</legend>
- <ul class="form_data">
- <li>
- <label for="host">Hostname</label>
- <input type="text" id="host" name="host" value="{$post->value('host')}" />
- <p class="form_guide">Database hostname</p>
- </li>
- <li>
- <label for="dbtype">Type</label>
- {$dbRadios}
- <p class="form_guide">Database type</p>
- </li>
- <li>
- <label for="database">Name</label>
- <input type="text" id="database" name="database" value="{$post->value('database')}" />
- <p class="form_guide">Database name</p>
- </li>
- <li>
- <label for="dbusername">DB username</label>
- <input type="text" id="dbusername" name="dbusername" value="{$post->value('dbusername')}" />
- <p class="form_guide">Database username</p>
- </li>
- <li>
- <label for="dbpassword">DB password</label>
- <input type="password" id="dbpassword" name="dbpassword" value="{$post->value('dbpassword')}" />
- <p class="form_guide">Database password (optional)</p>
- </li>
- </ul>
- </fieldset>
-
- <fieldset id="settings_admin">
- <legend>Administrator settings</legend>
- <ul class="form_data">
- <li>
- <label for="admin_nickname">Administrator nickname</label>
- <input type="text" id="admin_nickname" name="admin_nickname" value="{$post->value('admin_nickname')}" />
- <p class="form_guide">Nickname for the initial user (administrator)</p>
- </li>
- <li>
- <label for="admin_password">Administrator password</label>
- <input type="password" id="admin_password" name="admin_password" value="{$post->value('admin_password')}" />
- <p class="form_guide">Password for the initial user (administrator)</p>
- </li>
- <li>
- <label for="admin_password2">Confirm password</label>
- <input type="password" id="admin_password2" name="admin_password2" value="{$post->value('admin_password2')}" />
- </li>
- <li>
- <label for="admin_email">Administrator e-mail</label>
- <input id="admin_email" name="admin_email" value="{$post->value('admin_email')}" />
- <p class="form_guide">Optional email address for the initial user (administrator)</p>
- </li>
- </ul>
- </fieldset>
- <fieldset id="settings_profile">
- <legend>Site profile</legend>
- <ul class="form_data">
- <li>
- <label for="site_profile">Type of site</label>
- <select id="site_profile" name="site_profile">
- <option value="community">Community</option>
- <option value="public">Public (open registration)</option>
- <option value="singleuser">Single User</option>
- <option value="private">Private (no federation)</option>
- </select>
- <p class="form_guide">Initial access settings for your site</p>
- </li>
- </ul>
- </fieldset>
- <input type="submit" name="submit" class="submit" value="Submit" />
- </fieldset>
- </form>
-
-E_O_T;
- }
-
- /**
- * Handle a POST submission... if we have valid input, start the install!
- * Otherwise shows the form along with any error messages.
- */
- function handlePost()
- {
- echo <<<STR
- <dl class="system_notice">
- <dt>Page notice</dt>
- <dd>
- <ul>
-STR;
- $this->validated = $this->prepare();
- if ($this->validated) {
- $this->doInstall();
- }
- echo <<<STR
- </ul>
- </dd>
- </dl>
-STR;
- if (!$this->validated) {
- $this->showForm();
- }
- }
-
- /**
- * Read and validate input data.
- * May output side effects.
- *
- * @return boolean success
- */
- function prepare()
- {
- $post = new Posted();
- $this->host = $post->string('host');
- $this->dbtype = $post->string('dbtype');
- $this->database = $post->string('database');
- $this->username = $post->string('dbusername');
- $this->password = $post->string('dbpassword');
- $this->sitename = $post->string('sitename');
- $this->fancy = (bool)$post->string('fancy');
-
- $this->adminNick = strtolower($post->string('admin_nickname'));
- $this->adminPass = $post->string('admin_password');
- $adminPass2 = $post->string('admin_password2');
- $this->adminEmail = $post->string('admin_email');
-
- $this->siteProfile = $post->string('site_profile');
-
- $this->ssl = $post->string('ssl');
-
- $this->server = $_SERVER['HTTP_HOST'];
- $this->path = substr(dirname($_SERVER['PHP_SELF']), 1);
-
- $fail = false;
- if (!$this->validateDb()) {
- $fail = true;
- }
-
- if (!$this->validateAdmin()) {
- $fail = true;
- }
-
- if ($this->adminPass != $adminPass2) {
- $this->updateStatus("Administrator passwords do not match. Did you mistype?", true);
- $fail = true;
- }
-
- if (!in_array($this->ssl, array('never', 'always'))) {
- $this->updateStatus("Bad value for server SSL enabling.");
- $fail = true;
- }
-
- if (!$this->validateSiteProfile()) {
- $fail = true;
- }
-
- return !$fail;
- }
-
-}
-
-?>
-<?php echo"<?"; ?> xml version="1.0" encoding="UTF-8" <?php echo "?>"; ?>
-<!DOCTYPE html
-PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
- <head>
- <title>Install GNU social</title>
- <link rel="shortcut icon" href="favicon.ico"/>
- <link rel="stylesheet" type="text/css" href="theme/base/css/display.css" media="screen, projection, tv"/>
- <link rel="stylesheet" type="text/css" href="theme/neo/css/display.css" media="screen, projection, tv"/>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <script src="js/extlib/jquery.js"></script>
- <script src="js/install.js"></script>
- </head>
- <body id="install">
- <div id="wrap">
- <div id="header">
- <address id="site_contact" class="h-card">
- <a class="u-url p-name home bookmark org" href=".">
- <img class="logo u-photo" src="theme/neo/logo.png" alt="GNU social"/>
- GNU social
- </a>
- </address>
- <div id="site_nav_global_primary"></div>
- </div>
- <div id="core">
- <div id="aside_primary_wrapper">
- <div id="content_wrapper">
- <div id="site_nav_local_views_wrapper">
- <div id="site_nav_local_views"></div>
-
- <div id="content">
- <div id="content_inner">
- <h1>Install GNU social</h1>
-<?php
-$installer = new WebInstaller();
-$installer->main();
-?>
- </div>
- </div>
-
- <div id="aside_primary" class="aside"></div>
- </div>
- </div>
- </div>
- </div>
- <div id="footer"></div>
- </div>
- </body>
-</html>
+++ /dev/null
-$(function() {
-
-function toggleIncomingOptions() {
- var enabled = $('#emailpost').prop('checked', true);
- if (enabled) {
- // Note: button style currently does not respond to disabled in our main themes.
- // Graying out the whole section with a 50% transparency will do for now. :)
- // @todo: add a general 'disabled' class style to the base themes.
- $('#emailincoming').css('opacity', '')
- .find('input').prop('disabled', false);
- } else {
- $('#emailincoming').css('opacity', '0.5')
- .find('input').prop('disabled', true);
- }
-}
-
-toggleIncomingOptions();
-
-$('#emailpost').click(function() {
- toggleIncomingOptions();
-});
-
-});
+++ /dev/null
-<html><body>You are being <a href="https://raw.github.com/tapmodo/Jcrop/master/css/Jcrop.gif">redirected</a>.</body></html>
\ No newline at end of file
+++ /dev/null
-/* jquery.Jcrop.css v0.9.12 - MIT License */
-/*
- The outer-most container in a typical Jcrop instance
- If you are having difficulty with formatting related to styles
- on a parent element, place any fixes here or in a like selector
-
- You can also style this element if you want to add a border, etc
- A better method for styling can be seen below with .jcrop-light
- (Add a class to the holder and style elements for that extended class)
-*/
-.jcrop-holder {
- direction: ltr;
- text-align: left;
- /* IE10 touch compatibility */
- -ms-touch-action: none;
-}
-/* Selection Border */
-.jcrop-vline,
-.jcrop-hline {
- background: #ffffff url("Jcrop.gif");
- font-size: 0;
- position: absolute;
-}
-.jcrop-vline {
- height: 100%;
- width: 1px !important;
-}
-.jcrop-vline.right {
- right: 0;
-}
-.jcrop-hline {
- height: 1px !important;
- width: 100%;
-}
-.jcrop-hline.bottom {
- bottom: 0;
-}
-/* Invisible click targets */
-.jcrop-tracker {
- height: 100%;
- width: 100%;
- /* "turn off" link highlight */
- -webkit-tap-highlight-color: transparent;
- /* disable callout, image save panel */
- -webkit-touch-callout: none;
- /* disable cut copy paste */
- -webkit-user-select: none;
-}
-/* Selection Handles */
-.jcrop-handle {
- background-color: #333333;
- border: 1px #eeeeee solid;
- width: 7px;
- height: 7px;
- font-size: 1px;
-}
-.jcrop-handle.ord-n {
- left: 50%;
- margin-left: -4px;
- margin-top: -4px;
- top: 0;
-}
-.jcrop-handle.ord-s {
- bottom: 0;
- left: 50%;
- margin-bottom: -4px;
- margin-left: -4px;
-}
-.jcrop-handle.ord-e {
- margin-right: -4px;
- margin-top: -4px;
- right: 0;
- top: 50%;
-}
-.jcrop-handle.ord-w {
- left: 0;
- margin-left: -4px;
- margin-top: -4px;
- top: 50%;
-}
-.jcrop-handle.ord-nw {
- left: 0;
- margin-left: -4px;
- margin-top: -4px;
- top: 0;
-}
-.jcrop-handle.ord-ne {
- margin-right: -4px;
- margin-top: -4px;
- right: 0;
- top: 0;
-}
-.jcrop-handle.ord-se {
- bottom: 0;
- margin-bottom: -4px;
- margin-right: -4px;
- right: 0;
-}
-.jcrop-handle.ord-sw {
- bottom: 0;
- left: 0;
- margin-bottom: -4px;
- margin-left: -4px;
-}
-/* Dragbars */
-.jcrop-dragbar.ord-n,
-.jcrop-dragbar.ord-s {
- height: 7px;
- width: 100%;
-}
-.jcrop-dragbar.ord-e,
-.jcrop-dragbar.ord-w {
- height: 100%;
- width: 7px;
-}
-.jcrop-dragbar.ord-n {
- margin-top: -4px;
-}
-.jcrop-dragbar.ord-s {
- bottom: 0;
- margin-bottom: -4px;
-}
-.jcrop-dragbar.ord-e {
- margin-right: -4px;
- right: 0;
-}
-.jcrop-dragbar.ord-w {
- margin-left: -4px;
-}
-/* The "jcrop-light" class/extension */
-.jcrop-light .jcrop-vline,
-.jcrop-light .jcrop-hline {
- background: #ffffff;
- filter: alpha(opacity=70) !important;
- opacity: .70!important;
-}
-.jcrop-light .jcrop-handle {
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- background-color: #000000;
- border-color: #ffffff;
- border-radius: 3px;
-}
-/* The "jcrop-dark" class/extension */
-.jcrop-dark .jcrop-vline,
-.jcrop-dark .jcrop-hline {
- background: #000000;
- filter: alpha(opacity=70) !important;
- opacity: 0.7 !important;
-}
-.jcrop-dark .jcrop-handle {
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- background-color: #ffffff;
- border-color: #000000;
- border-radius: 3px;
-}
-/* Simple macro to turn off the antlines */
-.solid-line .jcrop-vline,
-.solid-line .jcrop-hline {
- background: #ffffff;
-}
-/* Fix for twitter bootstrap et al. */
-.jcrop-holder img,
-img.jcrop-preview {
- max-width: none;
-}
+++ /dev/null
-/* jquery.Jcrop.min.css v0.9.12 (build:20130521) */
-.jcrop-holder{-ms-touch-action:none;direction:ltr;text-align:left;}
-.jcrop-vline,.jcrop-hline{background:#FFF url(Jcrop.gif);font-size:0;position:absolute;}
-.jcrop-vline{height:100%;width:1px!important;}
-.jcrop-vline.right{right:0;}
-.jcrop-hline{height:1px!important;width:100%;}
-.jcrop-hline.bottom{bottom:0;}
-.jcrop-tracker{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;height:100%;width:100%;}
-.jcrop-handle{background-color:#333;border:1px #EEE solid;font-size:1px;height:7px;width:7px;}
-.jcrop-handle.ord-n{left:50%;margin-left:-4px;margin-top:-4px;top:0;}
-.jcrop-handle.ord-s{bottom:0;left:50%;margin-bottom:-4px;margin-left:-4px;}
-.jcrop-handle.ord-e{margin-right:-4px;margin-top:-4px;right:0;top:50%;}
-.jcrop-handle.ord-w{left:0;margin-left:-4px;margin-top:-4px;top:50%;}
-.jcrop-handle.ord-nw{left:0;margin-left:-4px;margin-top:-4px;top:0;}
-.jcrop-handle.ord-ne{margin-right:-4px;margin-top:-4px;right:0;top:0;}
-.jcrop-handle.ord-se{bottom:0;margin-bottom:-4px;margin-right:-4px;right:0;}
-.jcrop-handle.ord-sw{bottom:0;left:0;margin-bottom:-4px;margin-left:-4px;}
-.jcrop-dragbar.ord-n,.jcrop-dragbar.ord-s{height:7px;width:100%;}
-.jcrop-dragbar.ord-e,.jcrop-dragbar.ord-w{height:100%;width:7px;}
-.jcrop-dragbar.ord-n{margin-top:-4px;}
-.jcrop-dragbar.ord-s{bottom:0;margin-bottom:-4px;}
-.jcrop-dragbar.ord-e{margin-right:-4px;right:0;}
-.jcrop-dragbar.ord-w{margin-left:-4px;}
-.jcrop-light .jcrop-vline,.jcrop-light .jcrop-hline{background:#FFF;filter:alpha(opacity=70)!important;opacity:.70!important;}
-.jcrop-light .jcrop-handle{-moz-border-radius:3px;-webkit-border-radius:3px;background-color:#000;border-color:#FFF;border-radius:3px;}
-.jcrop-dark .jcrop-vline,.jcrop-dark .jcrop-hline{background:#000;filter:alpha(opacity=70)!important;opacity:.7!important;}
-.jcrop-dark .jcrop-handle{-moz-border-radius:3px;-webkit-border-radius:3px;background-color:#FFF;border-color:#000;border-radius:3px;}
-.solid-line .jcrop-vline,.solid-line .jcrop-hline{background:#FFF;}
-.jcrop-holder img,img.jcrop-preview{max-width:none;}
+++ /dev/null
-/**
- * jquery.Jcrop.js v0.9.12
- * jQuery Image Cropping Plugin - released under MIT License
- * Author: Kelly Hallman <khallman@gmail.com>
- * http://github.com/tapmodo/Jcrop
- * Copyright (c) 2008-2013 Tapmodo Interactive LLC {{{
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- *
- * }}}
- */
-
-(function ($) {
-
- $.Jcrop = function (obj, opt) {
- var options = $.extend({}, $.Jcrop.defaults),
- docOffset,
- _ua = navigator.userAgent.toLowerCase(),
- is_msie = /msie/.test(_ua),
- ie6mode = /msie [1-6]\./.test(_ua);
-
- // Internal Methods {{{
- function px(n) {
- return Math.round(n) + 'px';
- }
- function cssClass(cl) {
- return options.baseClass + '-' + cl;
- }
- function supportsColorFade() {
- return $.fx.step.hasOwnProperty('backgroundColor');
- }
- function getPos(obj) //{{{
- {
- var pos = $(obj).offset();
- return [pos.left, pos.top];
- }
- //}}}
- function mouseAbs(e) //{{{
- {
- return [(e.pageX - docOffset[0]), (e.pageY - docOffset[1])];
- }
- //}}}
- function setOptions(opt) //{{{
- {
- if (typeof(opt) !== 'object') opt = {};
- options = $.extend(options, opt);
-
- $.each(['onChange','onSelect','onRelease','onDblClick'],function(i,e) {
- if (typeof(options[e]) !== 'function') options[e] = function () {};
- });
- }
- //}}}
- function startDragMode(mode, pos, touch) //{{{
- {
- docOffset = getPos($img);
- Tracker.setCursor(mode === 'move' ? mode : mode + '-resize');
-
- if (mode === 'move') {
- return Tracker.activateHandlers(createMover(pos), doneSelect, touch);
- }
-
- var fc = Coords.getFixed();
- var opp = oppLockCorner(mode);
- var opc = Coords.getCorner(oppLockCorner(opp));
-
- Coords.setPressed(Coords.getCorner(opp));
- Coords.setCurrent(opc);
-
- Tracker.activateHandlers(dragmodeHandler(mode, fc), doneSelect, touch);
- }
- //}}}
- function dragmodeHandler(mode, f) //{{{
- {
- return function (pos) {
- if (!options.aspectRatio) {
- switch (mode) {
- case 'e':
- pos[1] = f.y2;
- break;
- case 'w':
- pos[1] = f.y2;
- break;
- case 'n':
- pos[0] = f.x2;
- break;
- case 's':
- pos[0] = f.x2;
- break;
- }
- } else {
- switch (mode) {
- case 'e':
- pos[1] = f.y + 1;
- break;
- case 'w':
- pos[1] = f.y + 1;
- break;
- case 'n':
- pos[0] = f.x + 1;
- break;
- case 's':
- pos[0] = f.x + 1;
- break;
- }
- }
- Coords.setCurrent(pos);
- Selection.update();
- };
- }
- //}}}
- function createMover(pos) //{{{
- {
- var lloc = pos;
- KeyManager.watchKeys();
-
- return function (pos) {
- Coords.moveOffset([pos[0] - lloc[0], pos[1] - lloc[1]]);
- lloc = pos;
-
- Selection.update();
- };
- }
- //}}}
- function oppLockCorner(ord) //{{{
- {
- switch (ord) {
- case 'n':
- return 'sw';
- case 's':
- return 'nw';
- case 'e':
- return 'nw';
- case 'w':
- return 'ne';
- case 'ne':
- return 'sw';
- case 'nw':
- return 'se';
- case 'se':
- return 'nw';
- case 'sw':
- return 'ne';
- }
- }
- //}}}
- function createDragger(ord) //{{{
- {
- return function (e) {
- if (options.disabled) {
- return false;
- }
- if ((ord === 'move') && !options.allowMove) {
- return false;
- }
-
- // Fix position of crop area when dragged the very first time.
- // Necessary when crop image is in a hidden element when page is loaded.
- docOffset = getPos($img);
-
- btndown = true;
- startDragMode(ord, mouseAbs(e));
- e.stopPropagation();
- e.preventDefault();
- return false;
- };
- }
- //}}}
- function presize($obj, w, h) //{{{
- {
- var nw = $obj.width(),
- nh = $obj.height();
- if ((nw > w) && w > 0) {
- nw = w;
- nh = (w / $obj.width()) * $obj.height();
- }
- if ((nh > h) && h > 0) {
- nh = h;
- nw = (h / $obj.height()) * $obj.width();
- }
- xscale = $obj.width() / nw;
- yscale = $obj.height() / nh;
- $obj.width(nw).height(nh);
- }
- //}}}
- function unscale(c) //{{{
- {
- return {
- x: c.x * xscale,
- y: c.y * yscale,
- x2: c.x2 * xscale,
- y2: c.y2 * yscale,
- w: c.w * xscale,
- h: c.h * yscale
- };
- }
- //}}}
- function doneSelect(pos) //{{{
- {
- var c = Coords.getFixed();
- if ((c.w > options.minSelect[0]) && (c.h > options.minSelect[1])) {
- Selection.enableHandles();
- Selection.done();
- } else {
- Selection.release();
- }
- Tracker.setCursor(options.allowSelect ? 'crosshair' : 'default');
- }
- //}}}
- function newSelection(e) //{{{
- {
- if (options.disabled) {
- return false;
- }
- if (!options.allowSelect) {
- return false;
- }
- btndown = true;
- docOffset = getPos($img);
- Selection.disableHandles();
- Tracker.setCursor('crosshair');
- var pos = mouseAbs(e);
- Coords.setPressed(pos);
- Selection.update();
- Tracker.activateHandlers(selectDrag, doneSelect, e.type.substring(0,5)==='touch');
- KeyManager.watchKeys();
-
- e.stopPropagation();
- e.preventDefault();
- return false;
- }
- //}}}
- function selectDrag(pos) //{{{
- {
- Coords.setCurrent(pos);
- Selection.update();
- }
- //}}}
- function newTracker() //{{{
- {
- var trk = $('<div></div>').addClass(cssClass('tracker'));
- if (is_msie) {
- trk.css({
- opacity: 0,
- backgroundColor: 'white'
- });
- }
- return trk;
- }
- //}}}
-
- // }}}
- // Initialization {{{
- // Sanitize some options {{{
- if (typeof(obj) !== 'object') {
- obj = $(obj)[0];
- }
- if (typeof(opt) !== 'object') {
- opt = {};
- }
- // }}}
- setOptions(opt);
- // Initialize some jQuery objects {{{
- // The values are SET on the image(s) for the interface
- // If the original image has any of these set, they will be reset
- // However, if you destroy() the Jcrop instance the original image's
- // character in the DOM will be as you left it.
- var img_css = {
- border: 'none',
- visibility: 'visible',
- margin: 0,
- padding: 0,
- position: 'absolute',
- top: 0,
- left: 0
- };
-
- var $origimg = $(obj),
- img_mode = true;
-
- if (obj.tagName == 'IMG') {
- // Fix size of crop image.
- // Necessary when crop image is within a hidden element when page is loaded.
- if ($origimg[0].width != 0 && $origimg[0].height != 0) {
- // Obtain dimensions from contained img element.
- $origimg.width($origimg[0].width);
- $origimg.height($origimg[0].height);
- } else {
- // Obtain dimensions from temporary image in case the original is not loaded yet (e.g. IE 7.0).
- var tempImage = new Image();
- tempImage.src = $origimg[0].src;
- $origimg.width(tempImage.width);
- $origimg.height(tempImage.height);
- }
-
- var $img = $origimg.clone().removeAttr('id').css(img_css).show();
-
- $img.width($origimg.width());
- $img.height($origimg.height());
- $origimg.after($img).hide();
-
- } else {
- $img = $origimg.css(img_css).show();
- img_mode = false;
- if (options.shade === null) { options.shade = true; }
- }
-
- presize($img, options.boxWidth, options.boxHeight);
-
- var boundx = $img.width(),
- boundy = $img.height(),
-
-
- $div = $('<div />').width(boundx).height(boundy).addClass(cssClass('holder')).css({
- position: 'relative',
- backgroundColor: options.bgColor
- }).insertAfter($origimg).append($img);
-
- if (options.addClass) {
- $div.addClass(options.addClass);
- }
-
- var $img2 = $('<div />'),
-
- $img_holder = $('<div />')
- .width('100%').height('100%').css({
- zIndex: 310,
- position: 'absolute',
- overflow: 'hidden'
- }),
-
- $hdl_holder = $('<div />')
- .width('100%').height('100%').css('zIndex', 320),
-
- $sel = $('<div />')
- .css({
- position: 'absolute',
- zIndex: 600
- }).dblclick(function(){
- var c = Coords.getFixed();
- options.onDblClick.call(api,c);
- }).insertBefore($img).append($img_holder, $hdl_holder);
-
- if (img_mode) {
-
- $img2 = $('<img />')
- .attr('src', $img.attr('src')).css(img_css).width(boundx).height(boundy),
-
- $img_holder.append($img2);
-
- }
-
- if (ie6mode) {
- $sel.css({
- overflowY: 'hidden'
- });
- }
-
- var bound = options.boundary;
- var $trk = newTracker().width(boundx + (bound * 2)).height(boundy + (bound * 2)).css({
- position: 'absolute',
- top: px(-bound),
- left: px(-bound),
- zIndex: 290
- }).mousedown(newSelection);
-
- /* }}} */
- // Set more variables {{{
- var bgcolor = options.bgColor,
- bgopacity = options.bgOpacity,
- xlimit, ylimit, xmin, ymin, xscale, yscale, enabled = true,
- btndown, animating, shift_down;
-
- docOffset = getPos($img);
- // }}}
- // }}}
- // Internal Modules {{{
- // Touch Module {{{
- var Touch = (function () {
- // Touch support detection function adapted (under MIT License)
- // from code by Jeffrey Sambells - http://github.com/iamamused/
- function hasTouchSupport() {
- var support = {}, events = ['touchstart', 'touchmove', 'touchend'],
- el = document.createElement('div'), i;
-
- try {
- for(i=0; i<events.length; i++) {
- var eventName = events[i];
- eventName = 'on' + eventName;
- var isSupported = (eventName in el);
- if (!isSupported) {
- el.setAttribute(eventName, 'return;');
- isSupported = typeof el[eventName] == 'function';
- }
- support[events[i]] = isSupported;
- }
- return support.touchstart && support.touchend && support.touchmove;
- }
- catch(err) {
- return false;
- }
- }
-
- function detectSupport() {
- if ((options.touchSupport === true) || (options.touchSupport === false)) return options.touchSupport;
- else return hasTouchSupport();
- }
- return {
- createDragger: function (ord) {
- return function (e) {
- if (options.disabled) {
- return false;
- }
- if ((ord === 'move') && !options.allowMove) {
- return false;
- }
- docOffset = getPos($img);
- btndown = true;
- startDragMode(ord, mouseAbs(Touch.cfilter(e)), true);
- e.stopPropagation();
- e.preventDefault();
- return false;
- };
- },
- newSelection: function (e) {
- return newSelection(Touch.cfilter(e));
- },
- cfilter: function (e){
- e.pageX = e.originalEvent.changedTouches[0].pageX;
- e.pageY = e.originalEvent.changedTouches[0].pageY;
- return e;
- },
- isSupported: hasTouchSupport,
- support: detectSupport()
- };
- }());
- // }}}
- // Coords Module {{{
- var Coords = (function () {
- var x1 = 0,
- y1 = 0,
- x2 = 0,
- y2 = 0,
- ox, oy;
-
- function setPressed(pos) //{{{
- {
- pos = rebound(pos);
- x2 = x1 = pos[0];
- y2 = y1 = pos[1];
- }
- //}}}
- function setCurrent(pos) //{{{
- {
- pos = rebound(pos);
- ox = pos[0] - x2;
- oy = pos[1] - y2;
- x2 = pos[0];
- y2 = pos[1];
- }
- //}}}
- function getOffset() //{{{
- {
- return [ox, oy];
- }
- //}}}
- function moveOffset(offset) //{{{
- {
- var ox = offset[0],
- oy = offset[1];
-
- if (0 > x1 + ox) {
- ox -= ox + x1;
- }
- if (0 > y1 + oy) {
- oy -= oy + y1;
- }
-
- if (boundy < y2 + oy) {
- oy += boundy - (y2 + oy);
- }
- if (boundx < x2 + ox) {
- ox += boundx - (x2 + ox);
- }
-
- x1 += ox;
- x2 += ox;
- y1 += oy;
- y2 += oy;
- }
- //}}}
- function getCorner(ord) //{{{
- {
- var c = getFixed();
- switch (ord) {
- case 'ne':
- return [c.x2, c.y];
- case 'nw':
- return [c.x, c.y];
- case 'se':
- return [c.x2, c.y2];
- case 'sw':
- return [c.x, c.y2];
- }
- }
- //}}}
- function getFixed() //{{{
- {
- if (!options.aspectRatio) {
- return getRect();
- }
- // This function could use some optimization I think...
- var aspect = options.aspectRatio,
- min_x = options.minSize[0] / xscale,
-
-
- //min_y = options.minSize[1]/yscale,
- max_x = options.maxSize[0] / xscale,
- max_y = options.maxSize[1] / yscale,
- rw = x2 - x1,
- rh = y2 - y1,
- rwa = Math.abs(rw),
- rha = Math.abs(rh),
- real_ratio = rwa / rha,
- xx, yy, w, h;
-
- if (max_x === 0) {
- max_x = boundx * 10;
- }
- if (max_y === 0) {
- max_y = boundy * 10;
- }
- if (real_ratio < aspect) {
- yy = y2;
- w = rha * aspect;
- xx = rw < 0 ? x1 - w : w + x1;
-
- if (xx < 0) {
- xx = 0;
- h = Math.abs((xx - x1) / aspect);
- yy = rh < 0 ? y1 - h : h + y1;
- } else if (xx > boundx) {
- xx = boundx;
- h = Math.abs((xx - x1) / aspect);
- yy = rh < 0 ? y1 - h : h + y1;
- }
- } else {
- xx = x2;
- h = rwa / aspect;
- yy = rh < 0 ? y1 - h : y1 + h;
- if (yy < 0) {
- yy = 0;
- w = Math.abs((yy - y1) * aspect);
- xx = rw < 0 ? x1 - w : w + x1;
- } else if (yy > boundy) {
- yy = boundy;
- w = Math.abs(yy - y1) * aspect;
- xx = rw < 0 ? x1 - w : w + x1;
- }
- }
-
- // Magic %-)
- if (xx > x1) { // right side
- if (xx - x1 < min_x) {
- xx = x1 + min_x;
- } else if (xx - x1 > max_x) {
- xx = x1 + max_x;
- }
- if (yy > y1) {
- yy = y1 + (xx - x1) / aspect;
- } else {
- yy = y1 - (xx - x1) / aspect;
- }
- } else if (xx < x1) { // left side
- if (x1 - xx < min_x) {
- xx = x1 - min_x;
- } else if (x1 - xx > max_x) {
- xx = x1 - max_x;
- }
- if (yy > y1) {
- yy = y1 + (x1 - xx) / aspect;
- } else {
- yy = y1 - (x1 - xx) / aspect;
- }
- }
-
- if (xx < 0) {
- x1 -= xx;
- xx = 0;
- } else if (xx > boundx) {
- x1 -= xx - boundx;
- xx = boundx;
- }
-
- if (yy < 0) {
- y1 -= yy;
- yy = 0;
- } else if (yy > boundy) {
- y1 -= yy - boundy;
- yy = boundy;
- }
-
- return makeObj(flipCoords(x1, y1, xx, yy));
- }
- //}}}
- function rebound(p) //{{{
- {
- if (p[0] < 0) p[0] = 0;
- if (p[1] < 0) p[1] = 0;
-
- if (p[0] > boundx) p[0] = boundx;
- if (p[1] > boundy) p[1] = boundy;
-
- return [Math.round(p[0]), Math.round(p[1])];
- }
- //}}}
- function flipCoords(x1, y1, x2, y2) //{{{
- {
- var xa = x1,
- xb = x2,
- ya = y1,
- yb = y2;
- if (x2 < x1) {
- xa = x2;
- xb = x1;
- }
- if (y2 < y1) {
- ya = y2;
- yb = y1;
- }
- return [xa, ya, xb, yb];
- }
- //}}}
- function getRect() //{{{
- {
- var xsize = x2 - x1,
- ysize = y2 - y1,
- delta;
-
- if (xlimit && (Math.abs(xsize) > xlimit)) {
- x2 = (xsize > 0) ? (x1 + xlimit) : (x1 - xlimit);
- }
- if (ylimit && (Math.abs(ysize) > ylimit)) {
- y2 = (ysize > 0) ? (y1 + ylimit) : (y1 - ylimit);
- }
-
- if (ymin / yscale && (Math.abs(ysize) < ymin / yscale)) {
- y2 = (ysize > 0) ? (y1 + ymin / yscale) : (y1 - ymin / yscale);
- }
- if (xmin / xscale && (Math.abs(xsize) < xmin / xscale)) {
- x2 = (xsize > 0) ? (x1 + xmin / xscale) : (x1 - xmin / xscale);
- }
-
- if (x1 < 0) {
- x2 -= x1;
- x1 -= x1;
- }
- if (y1 < 0) {
- y2 -= y1;
- y1 -= y1;
- }
- if (x2 < 0) {
- x1 -= x2;
- x2 -= x2;
- }
- if (y2 < 0) {
- y1 -= y2;
- y2 -= y2;
- }
- if (x2 > boundx) {
- delta = x2 - boundx;
- x1 -= delta;
- x2 -= delta;
- }
- if (y2 > boundy) {
- delta = y2 - boundy;
- y1 -= delta;
- y2 -= delta;
- }
- if (x1 > boundx) {
- delta = x1 - boundy;
- y2 -= delta;
- y1 -= delta;
- }
- if (y1 > boundy) {
- delta = y1 - boundy;
- y2 -= delta;
- y1 -= delta;
- }
-
- return makeObj(flipCoords(x1, y1, x2, y2));
- }
- //}}}
- function makeObj(a) //{{{
- {
- return {
- x: a[0],
- y: a[1],
- x2: a[2],
- y2: a[3],
- w: a[2] - a[0],
- h: a[3] - a[1]
- };
- }
- //}}}
-
- return {
- flipCoords: flipCoords,
- setPressed: setPressed,
- setCurrent: setCurrent,
- getOffset: getOffset,
- moveOffset: moveOffset,
- getCorner: getCorner,
- getFixed: getFixed
- };
- }());
-
- //}}}
- // Shade Module {{{
- var Shade = (function() {
- var enabled = false,
- holder = $('<div />').css({
- position: 'absolute',
- zIndex: 240,
- opacity: 0
- }),
- shades = {
- top: createShade(),
- left: createShade().height(boundy),
- right: createShade().height(boundy),
- bottom: createShade()
- };
-
- function resizeShades(w,h) {
- shades.left.css({ height: px(h) });
- shades.right.css({ height: px(h) });
- }
- function updateAuto()
- {
- return updateShade(Coords.getFixed());
- }
- function updateShade(c)
- {
- shades.top.css({
- left: px(c.x),
- width: px(c.w),
- height: px(c.y)
- });
- shades.bottom.css({
- top: px(c.y2),
- left: px(c.x),
- width: px(c.w),
- height: px(boundy-c.y2)
- });
- shades.right.css({
- left: px(c.x2),
- width: px(boundx-c.x2)
- });
- shades.left.css({
- width: px(c.x)
- });
- }
- function createShade() {
- return $('<div />').css({
- position: 'absolute',
- backgroundColor: options.shadeColor||options.bgColor
- }).appendTo(holder);
- }
- function enableShade() {
- if (!enabled) {
- enabled = true;
- holder.insertBefore($img);
- updateAuto();
- Selection.setBgOpacity(1,0,1);
- $img2.hide();
-
- setBgColor(options.shadeColor||options.bgColor,1);
- if (Selection.isAwake())
- {
- setOpacity(options.bgOpacity,1);
- }
- else setOpacity(1,1);
- }
- }
- function setBgColor(color,now) {
- colorChangeMacro(getShades(),color,now);
- }
- function disableShade() {
- if (enabled) {
- holder.remove();
- $img2.show();
- enabled = false;
- if (Selection.isAwake()) {
- Selection.setBgOpacity(options.bgOpacity,1,1);
- } else {
- Selection.setBgOpacity(1,1,1);
- Selection.disableHandles();
- }
- colorChangeMacro($div,0,1);
- }
- }
- function setOpacity(opacity,now) {
- if (enabled) {
- if (options.bgFade && !now) {
- holder.animate({
- opacity: 1-opacity
- },{
- queue: false,
- duration: options.fadeTime
- });
- }
- else holder.css({opacity:1-opacity});
- }
- }
- function refreshAll() {
- options.shade ? enableShade() : disableShade();
- if (Selection.isAwake()) setOpacity(options.bgOpacity);
- }
- function getShades() {
- return holder.children();
- }
-
- return {
- update: updateAuto,
- updateRaw: updateShade,
- getShades: getShades,
- setBgColor: setBgColor,
- enable: enableShade,
- disable: disableShade,
- resize: resizeShades,
- refresh: refreshAll,
- opacity: setOpacity
- };
- }());
- // }}}
- // Selection Module {{{
- var Selection = (function () {
- var awake,
- hdep = 370,
- borders = {},
- handle = {},
- dragbar = {},
- seehandles = false;
-
- // Private Methods
- function insertBorder(type) //{{{
- {
- var jq = $('<div />').css({
- position: 'absolute',
- opacity: options.borderOpacity
- }).addClass(cssClass(type));
- $img_holder.append(jq);
- return jq;
- }
- //}}}
- function dragDiv(ord, zi) //{{{
- {
- var jq = $('<div />').mousedown(createDragger(ord)).css({
- cursor: ord + '-resize',
- position: 'absolute',
- zIndex: zi
- }).addClass('ord-'+ord);
-
- if (Touch.support) {
- jq.bind('touchstart.jcrop', Touch.createDragger(ord));
- }
-
- $hdl_holder.append(jq);
- return jq;
- }
- //}}}
- function insertHandle(ord) //{{{
- {
- var hs = options.handleSize,
-
- div = dragDiv(ord, hdep++).css({
- opacity: options.handleOpacity
- }).addClass(cssClass('handle'));
-
- if (hs) { div.width(hs).height(hs); }
-
- return div;
- }
- //}}}
- function insertDragbar(ord) //{{{
- {
- return dragDiv(ord, hdep++).addClass('jcrop-dragbar');
- }
- //}}}
- function createDragbars(li) //{{{
- {
- var i;
- for (i = 0; i < li.length; i++) {
- dragbar[li[i]] = insertDragbar(li[i]);
- }
- }
- //}}}
- function createBorders(li) //{{{
- {
- var cl,i;
- for (i = 0; i < li.length; i++) {
- switch(li[i]){
- case'n': cl='hline'; break;
- case's': cl='hline bottom'; break;
- case'e': cl='vline right'; break;
- case'w': cl='vline'; break;
- }
- borders[li[i]] = insertBorder(cl);
- }
- }
- //}}}
- function createHandles(li) //{{{
- {
- var i;
- for (i = 0; i < li.length; i++) {
- handle[li[i]] = insertHandle(li[i]);
- }
- }
- //}}}
- function moveto(x, y) //{{{
- {
- if (!options.shade) {
- $img2.css({
- top: px(-y),
- left: px(-x)
- });
- }
- $sel.css({
- top: px(y),
- left: px(x)
- });
- }
- //}}}
- function resize(w, h) //{{{
- {
- $sel.width(Math.round(w)).height(Math.round(h));
- }
- //}}}
- function refresh() //{{{
- {
- var c = Coords.getFixed();
-
- Coords.setPressed([c.x, c.y]);
- Coords.setCurrent([c.x2, c.y2]);
-
- updateVisible();
- }
- //}}}
-
- // Internal Methods
- function updateVisible(select) //{{{
- {
- if (awake) {
- return update(select);
- }
- }
- //}}}
- function update(select) //{{{
- {
- var c = Coords.getFixed();
-
- resize(c.w, c.h);
- moveto(c.x, c.y);
- if (options.shade) Shade.updateRaw(c);
-
- awake || show();
-
- if (select) {
- options.onSelect.call(api, unscale(c));
- } else {
- options.onChange.call(api, unscale(c));
- }
- }
- //}}}
- function setBgOpacity(opacity,force,now) //{{{
- {
- if (!awake && !force) return;
- if (options.bgFade && !now) {
- $img.animate({
- opacity: opacity
- },{
- queue: false,
- duration: options.fadeTime
- });
- } else {
- $img.css('opacity', opacity);
- }
- }
- //}}}
- function show() //{{{
- {
- $sel.show();
-
- if (options.shade) Shade.opacity(bgopacity);
- else setBgOpacity(bgopacity,true);
-
- awake = true;
- }
- //}}}
- function release() //{{{
- {
- disableHandles();
- $sel.hide();
-
- if (options.shade) Shade.opacity(1);
- else setBgOpacity(1);
-
- awake = false;
- options.onRelease.call(api);
- }
- //}}}
- function showHandles() //{{{
- {
- if (seehandles) {
- $hdl_holder.show();
- }
- }
- //}}}
- function enableHandles() //{{{
- {
- seehandles = true;
- if (options.allowResize) {
- $hdl_holder.show();
- return true;
- }
- }
- //}}}
- function disableHandles() //{{{
- {
- seehandles = false;
- $hdl_holder.hide();
- }
- //}}}
- function animMode(v) //{{{
- {
- if (v) {
- animating = true;
- disableHandles();
- } else {
- animating = false;
- enableHandles();
- }
- }
- //}}}
- function done() //{{{
- {
- animMode(false);
- refresh();
- }
- //}}}
- // Insert draggable elements {{{
- // Insert border divs for outline
-
- if (options.dragEdges && $.isArray(options.createDragbars))
- createDragbars(options.createDragbars);
-
- if ($.isArray(options.createHandles))
- createHandles(options.createHandles);
-
- if (options.drawBorders && $.isArray(options.createBorders))
- createBorders(options.createBorders);
-
- //}}}
-
- // This is a hack for iOS5 to support drag/move touch functionality
- $(document).bind('touchstart.jcrop-ios',function(e) {
- if ($(e.currentTarget).hasClass('jcrop-tracker')) e.stopPropagation();
- });
-
- var $track = newTracker().mousedown(createDragger('move')).css({
- cursor: 'move',
- position: 'absolute',
- zIndex: 360
- });
-
- if (Touch.support) {
- $track.bind('touchstart.jcrop', Touch.createDragger('move'));
- }
-
- $img_holder.append($track);
- disableHandles();
-
- return {
- updateVisible: updateVisible,
- update: update,
- release: release,
- refresh: refresh,
- isAwake: function () {
- return awake;
- },
- setCursor: function (cursor) {
- $track.css('cursor', cursor);
- },
- enableHandles: enableHandles,
- enableOnly: function () {
- seehandles = true;
- },
- showHandles: showHandles,
- disableHandles: disableHandles,
- animMode: animMode,
- setBgOpacity: setBgOpacity,
- done: done
- };
- }());
-
- //}}}
- // Tracker Module {{{
- var Tracker = (function () {
- var onMove = function () {},
- onDone = function () {},
- trackDoc = options.trackDocument;
-
- function toFront(touch) //{{{
- {
- $trk.css({
- zIndex: 450
- });
-
- if (touch)
- $(document)
- .bind('touchmove.jcrop', trackTouchMove)
- .bind('touchend.jcrop', trackTouchEnd);
-
- else if (trackDoc)
- $(document)
- .bind('mousemove.jcrop',trackMove)
- .bind('mouseup.jcrop',trackUp);
- }
- //}}}
- function toBack() //{{{
- {
- $trk.css({
- zIndex: 290
- });
- $(document).unbind('.jcrop');
- }
- //}}}
- function trackMove(e) //{{{
- {
- onMove(mouseAbs(e));
- return false;
- }
- //}}}
- function trackUp(e) //{{{
- {
- e.preventDefault();
- e.stopPropagation();
-
- if (btndown) {
- btndown = false;
-
- onDone(mouseAbs(e));
-
- if (Selection.isAwake()) {
- options.onSelect.call(api, unscale(Coords.getFixed()));
- }
-
- toBack();
- onMove = function () {};
- onDone = function () {};
- }
-
- return false;
- }
- //}}}
- function activateHandlers(move, done, touch) //{{{
- {
- btndown = true;
- onMove = move;
- onDone = done;
- toFront(touch);
- return false;
- }
- //}}}
- function trackTouchMove(e) //{{{
- {
- onMove(mouseAbs(Touch.cfilter(e)));
- return false;
- }
- //}}}
- function trackTouchEnd(e) //{{{
- {
- return trackUp(Touch.cfilter(e));
- }
- //}}}
- function setCursor(t) //{{{
- {
- $trk.css('cursor', t);
- }
- //}}}
-
- if (!trackDoc) {
- $trk.mousemove(trackMove).mouseup(trackUp).mouseout(trackUp);
- }
-
- $img.before($trk);
- return {
- activateHandlers: activateHandlers,
- setCursor: setCursor
- };
- }());
- //}}}
- // KeyManager Module {{{
- var KeyManager = (function () {
- var $keymgr = $('<input type="radio" />').css({
- position: 'fixed',
- left: '-120px',
- width: '12px'
- }).addClass('jcrop-keymgr'),
-
- $keywrap = $('<div />').css({
- position: 'absolute',
- overflow: 'hidden'
- }).append($keymgr);
-
- function watchKeys() //{{{
- {
- if (options.keySupport) {
- $keymgr.show();
- $keymgr.focus();
- }
- }
- //}}}
- function onBlur(e) //{{{
- {
- $keymgr.hide();
- }
- //}}}
- function doNudge(e, x, y) //{{{
- {
- if (options.allowMove) {
- Coords.moveOffset([x, y]);
- Selection.updateVisible(true);
- }
- e.preventDefault();
- e.stopPropagation();
- }
- //}}}
- function parseKey(e) //{{{
- {
- if (e.ctrlKey || e.metaKey) {
- return true;
- }
- shift_down = e.shiftKey ? true : false;
- var nudge = shift_down ? 10 : 1;
-
- switch (e.keyCode) {
- case 37:
- doNudge(e, -nudge, 0);
- break;
- case 39:
- doNudge(e, nudge, 0);
- break;
- case 38:
- doNudge(e, 0, -nudge);
- break;
- case 40:
- doNudge(e, 0, nudge);
- break;
- case 27:
- if (options.allowSelect) Selection.release();
- break;
- case 9:
- return true;
- }
-
- return false;
- }
- //}}}
-
- if (options.keySupport) {
- $keymgr.keydown(parseKey).blur(onBlur);
- if (ie6mode || !options.fixedSupport) {
- $keymgr.css({
- position: 'absolute',
- left: '-20px'
- });
- $keywrap.append($keymgr).insertBefore($img);
- } else {
- $keymgr.insertBefore($img);
- }
- }
-
-
- return {
- watchKeys: watchKeys
- };
- }());
- //}}}
- // }}}
- // API methods {{{
- function setClass(cname) //{{{
- {
- $div.removeClass().addClass(cssClass('holder')).addClass(cname);
- }
- //}}}
- function animateTo(a, callback) //{{{
- {
- var x1 = a[0] / xscale,
- y1 = a[1] / yscale,
- x2 = a[2] / xscale,
- y2 = a[3] / yscale;
-
- if (animating) {
- return;
- }
-
- var animto = Coords.flipCoords(x1, y1, x2, y2),
- c = Coords.getFixed(),
- initcr = [c.x, c.y, c.x2, c.y2],
- animat = initcr,
- interv = options.animationDelay,
- ix1 = animto[0] - initcr[0],
- iy1 = animto[1] - initcr[1],
- ix2 = animto[2] - initcr[2],
- iy2 = animto[3] - initcr[3],
- pcent = 0,
- velocity = options.swingSpeed;
-
- x1 = animat[0];
- y1 = animat[1];
- x2 = animat[2];
- y2 = animat[3];
-
- Selection.animMode(true);
- var anim_timer;
-
- function queueAnimator() {
- window.setTimeout(animator, interv);
- }
- var animator = (function () {
- return function () {
- pcent += (100 - pcent) / velocity;
-
- animat[0] = Math.round(x1 + ((pcent / 100) * ix1));
- animat[1] = Math.round(y1 + ((pcent / 100) * iy1));
- animat[2] = Math.round(x2 + ((pcent / 100) * ix2));
- animat[3] = Math.round(y2 + ((pcent / 100) * iy2));
-
- if (pcent >= 99.8) {
- pcent = 100;
- }
- if (pcent < 100) {
- setSelectRaw(animat);
- queueAnimator();
- } else {
- Selection.done();
- Selection.animMode(false);
- if (typeof(callback) === 'function') {
- callback.call(api);
- }
- }
- };
- }());
- queueAnimator();
- }
- //}}}
- function setSelect(rect) //{{{
- {
- setSelectRaw([rect[0] / xscale, rect[1] / yscale, rect[2] / xscale, rect[3] / yscale]);
- options.onSelect.call(api, unscale(Coords.getFixed()));
- Selection.enableHandles();
- }
- //}}}
- function setSelectRaw(l) //{{{
- {
- Coords.setPressed([l[0], l[1]]);
- Coords.setCurrent([l[2], l[3]]);
- Selection.update();
- }
- //}}}
- function tellSelect() //{{{
- {
- return unscale(Coords.getFixed());
- }
- //}}}
- function tellScaled() //{{{
- {
- return Coords.getFixed();
- }
- //}}}
- function setOptionsNew(opt) //{{{
- {
- setOptions(opt);
- interfaceUpdate();
- }
- //}}}
- function disableCrop() //{{{
- {
- options.disabled = true;
- Selection.disableHandles();
- Selection.setCursor('default');
- Tracker.setCursor('default');
- }
- //}}}
- function enableCrop() //{{{
- {
- options.disabled = false;
- interfaceUpdate();
- }
- //}}}
- function cancelCrop() //{{{
- {
- Selection.done();
- Tracker.activateHandlers(null, null);
- }
- //}}}
- function destroy() //{{{
- {
- $div.remove();
- $origimg.show();
- $origimg.css('visibility','visible');
- $(obj).removeData('Jcrop');
- }
- //}}}
- function setImage(src, callback) //{{{
- {
- Selection.release();
- disableCrop();
- var img = new Image();
- img.onload = function () {
- var iw = img.width;
- var ih = img.height;
- var bw = options.boxWidth;
- var bh = options.boxHeight;
- $img.width(iw).height(ih);
- $img.attr('src', src);
- $img2.attr('src', src);
- presize($img, bw, bh);
- boundx = $img.width();
- boundy = $img.height();
- $img2.width(boundx).height(boundy);
- $trk.width(boundx + (bound * 2)).height(boundy + (bound * 2));
- $div.width(boundx).height(boundy);
- Shade.resize(boundx,boundy);
- enableCrop();
-
- if (typeof(callback) === 'function') {
- callback.call(api);
- }
- };
- img.src = src;
- }
- //}}}
- function colorChangeMacro($obj,color,now) {
- var mycolor = color || options.bgColor;
- if (options.bgFade && supportsColorFade() && options.fadeTime && !now) {
- $obj.animate({
- backgroundColor: mycolor
- }, {
- queue: false,
- duration: options.fadeTime
- });
- } else {
- $obj.css('backgroundColor', mycolor);
- }
- }
- function interfaceUpdate(alt) //{{{
- // This method tweaks the interface based on options object.
- // Called when options are changed and at end of initialization.
- {
- if (options.allowResize) {
- if (alt) {
- Selection.enableOnly();
- } else {
- Selection.enableHandles();
- }
- } else {
- Selection.disableHandles();
- }
-
- Tracker.setCursor(options.allowSelect ? 'crosshair' : 'default');
- Selection.setCursor(options.allowMove ? 'move' : 'default');
-
- if (options.hasOwnProperty('trueSize')) {
- xscale = options.trueSize[0] / boundx;
- yscale = options.trueSize[1] / boundy;
- }
-
- if (options.hasOwnProperty('setSelect')) {
- setSelect(options.setSelect);
- Selection.done();
- delete(options.setSelect);
- }
-
- Shade.refresh();
-
- if (options.bgColor != bgcolor) {
- colorChangeMacro(
- options.shade? Shade.getShades(): $div,
- options.shade?
- (options.shadeColor || options.bgColor):
- options.bgColor
- );
- bgcolor = options.bgColor;
- }
-
- if (bgopacity != options.bgOpacity) {
- bgopacity = options.bgOpacity;
- if (options.shade) Shade.refresh();
- else Selection.setBgOpacity(bgopacity);
- }
-
- xlimit = options.maxSize[0] || 0;
- ylimit = options.maxSize[1] || 0;
- xmin = options.minSize[0] || 0;
- ymin = options.minSize[1] || 0;
-
- if (options.hasOwnProperty('outerImage')) {
- $img.attr('src', options.outerImage);
- delete(options.outerImage);
- }
-
- Selection.refresh();
- }
- //}}}
- //}}}
-
- if (Touch.support) $trk.bind('touchstart.jcrop', Touch.newSelection);
-
- $hdl_holder.hide();
- interfaceUpdate(true);
-
- var api = {
- setImage: setImage,
- animateTo: animateTo,
- setSelect: setSelect,
- setOptions: setOptionsNew,
- tellSelect: tellSelect,
- tellScaled: tellScaled,
- setClass: setClass,
-
- disable: disableCrop,
- enable: enableCrop,
- cancel: cancelCrop,
- release: Selection.release,
- destroy: destroy,
-
- focus: KeyManager.watchKeys,
-
- getBounds: function () {
- return [boundx * xscale, boundy * yscale];
- },
- getWidgetSize: function () {
- return [boundx, boundy];
- },
- getScaleFactor: function () {
- return [xscale, yscale];
- },
- getOptions: function() {
- // careful: internal values are returned
- return options;
- },
-
- ui: {
- holder: $div,
- selection: $sel
- }
- };
-
- if (is_msie) $div.bind('selectstart', function () { return false; });
-
- $origimg.data('Jcrop', api);
- return api;
- };
- $.fn.Jcrop = function (options, callback) //{{{
- {
- var api;
- // Iterate over each object, attach Jcrop
- this.each(function () {
- // If we've already attached to this object
- if ($(this).data('Jcrop')) {
- // The API can be requested this way (undocumented)
- if (options === 'api') return $(this).data('Jcrop');
- // Otherwise, we just reset the options...
- else $(this).data('Jcrop').setOptions(options);
- }
- // If we haven't been attached, preload and attach
- else {
- if (this.tagName == 'IMG')
- $.Jcrop.Loader(this,function(){
- $(this).css({display:'block',visibility:'hidden'});
- api = $.Jcrop(this, options);
- if ($.isFunction(callback)) callback.call(api);
- });
- else {
- $(this).css({display:'block',visibility:'hidden'});
- api = $.Jcrop(this, options);
- if ($.isFunction(callback)) callback.call(api);
- }
- }
- });
-
- // Return "this" so the object is chainable (jQuery-style)
- return this;
- };
- //}}}
- // $.Jcrop.Loader - basic image loader {{{
-
- $.Jcrop.Loader = function(imgobj,success,error){
- var $img = $(imgobj), img = $img[0];
-
- function completeCheck(){
- if (img.complete) {
- $img.unbind('.jcloader');
- if ($.isFunction(success)) success.call(img);
- }
- else window.setTimeout(completeCheck,50);
- }
-
- $img
- .bind('load.jcloader',completeCheck)
- .bind('error.jcloader',function(e){
- $img.unbind('.jcloader');
- if ($.isFunction(error)) error.call(img);
- });
-
- if (img.complete && $.isFunction(success)){
- $img.unbind('.jcloader');
- success.call(img);
- }
- };
-
- //}}}
- // Global Defaults {{{
- $.Jcrop.defaults = {
-
- // Basic Settings
- allowSelect: true,
- allowMove: true,
- allowResize: true,
-
- trackDocument: true,
-
- // Styling Options
- baseClass: 'jcrop',
- addClass: null,
- bgColor: 'black',
- bgOpacity: 0.6,
- bgFade: false,
- borderOpacity: 0.4,
- handleOpacity: 0.5,
- handleSize: null,
-
- aspectRatio: 0,
- keySupport: true,
- createHandles: ['n','s','e','w','nw','ne','se','sw'],
- createDragbars: ['n','s','e','w'],
- createBorders: ['n','s','e','w'],
- drawBorders: true,
- dragEdges: true,
- fixedSupport: true,
- touchSupport: null,
-
- shade: null,
-
- boxWidth: 0,
- boxHeight: 0,
- boundary: 2,
- fadeTime: 400,
- animationDelay: 20,
- swingSpeed: 3,
-
- minSelect: [0, 0],
- maxSize: [0, 0],
- minSize: [0, 0],
-
- // Callbacks / Event Handlers
- onChange: function () {},
- onSelect: function () {},
- onDblClick: function () {},
- onRelease: function () {}
- };
-
- // }}}
-}(jQuery));
+++ /dev/null
-/*! jQuery UI - v1.11.3 - 2015-03-07
-* http://jqueryui.com
-* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
-* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
-* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
-
-/* Layout helpers
-----------------------------------*/
-.ui-helper-hidden {
- display: none;
-}
-.ui-helper-hidden-accessible {
- border: 0;
- clip: rect(0 0 0 0);
- height: 1px;
- margin: -1px;
- overflow: hidden;
- padding: 0;
- position: absolute;
- width: 1px;
-}
-.ui-helper-reset {
- margin: 0;
- padding: 0;
- border: 0;
- outline: 0;
- line-height: 1.3;
- text-decoration: none;
- font-size: 100%;
- list-style: none;
-}
-.ui-helper-clearfix:before,
-.ui-helper-clearfix:after {
- content: "";
- display: table;
- border-collapse: collapse;
-}
-.ui-helper-clearfix:after {
- clear: both;
-}
-.ui-helper-clearfix {
- min-height: 0; /* support: IE7 */
-}
-.ui-helper-zfix {
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- position: absolute;
- opacity: 0;
- filter:Alpha(Opacity=0); /* support: IE8 */
-}
-
-.ui-front {
- z-index: 100;
-}
-
-
-/* Interaction Cues
-----------------------------------*/
-.ui-state-disabled {
- cursor: default !important;
-}
-
-
-/* Icons
-----------------------------------*/
-
-/* states and images */
-.ui-icon {
- display: block;
- text-indent: -99999px;
- overflow: hidden;
- background-repeat: no-repeat;
-}
-
-
-/* Misc visuals
-----------------------------------*/
-
-/* Overlays */
-.ui-widget-overlay {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
-}
-.ui-draggable-handle {
- -ms-touch-action: none;
- touch-action: none;
-}
-.ui-resizable {
- position: relative;
-}
-.ui-resizable-handle {
- position: absolute;
- font-size: 0.1px;
- display: block;
- -ms-touch-action: none;
- touch-action: none;
-}
-.ui-resizable-disabled .ui-resizable-handle,
-.ui-resizable-autohide .ui-resizable-handle {
- display: none;
-}
-.ui-resizable-n {
- cursor: n-resize;
- height: 7px;
- width: 100%;
- top: -5px;
- left: 0;
-}
-.ui-resizable-s {
- cursor: s-resize;
- height: 7px;
- width: 100%;
- bottom: -5px;
- left: 0;
-}
-.ui-resizable-e {
- cursor: e-resize;
- width: 7px;
- right: -5px;
- top: 0;
- height: 100%;
-}
-.ui-resizable-w {
- cursor: w-resize;
- width: 7px;
- left: -5px;
- top: 0;
- height: 100%;
-}
-.ui-resizable-se {
- cursor: se-resize;
- width: 12px;
- height: 12px;
- right: 1px;
- bottom: 1px;
-}
-.ui-resizable-sw {
- cursor: sw-resize;
- width: 9px;
- height: 9px;
- left: -5px;
- bottom: -5px;
-}
-.ui-resizable-nw {
- cursor: nw-resize;
- width: 9px;
- height: 9px;
- left: -5px;
- top: -5px;
-}
-.ui-resizable-ne {
- cursor: ne-resize;
- width: 9px;
- height: 9px;
- right: -5px;
- top: -5px;
-}
-.ui-selectable {
- -ms-touch-action: none;
- touch-action: none;
-}
-.ui-selectable-helper {
- position: absolute;
- z-index: 100;
- border: 1px dotted black;
-}
-.ui-sortable-handle {
- -ms-touch-action: none;
- touch-action: none;
-}
-.ui-accordion .ui-accordion-header {
- display: block;
- cursor: pointer;
- position: relative;
- margin: 2px 0 0 0;
- padding: .5em .5em .5em .7em;
- min-height: 0; /* support: IE7 */
- font-size: 100%;
-}
-.ui-accordion .ui-accordion-icons {
- padding-left: 2.2em;
-}
-.ui-accordion .ui-accordion-icons .ui-accordion-icons {
- padding-left: 2.2em;
-}
-.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
- position: absolute;
- left: .5em;
- top: 50%;
- margin-top: -8px;
-}
-.ui-accordion .ui-accordion-content {
- padding: 1em 2.2em;
- border-top: 0;
- overflow: auto;
-}
-.ui-autocomplete {
- position: absolute;
- top: 0;
- left: 0;
- cursor: default;
-}
-.ui-button {
- display: inline-block;
- position: relative;
- padding: 0;
- line-height: normal;
- margin-right: .1em;
- cursor: pointer;
- vertical-align: middle;
- text-align: center;
- overflow: visible; /* removes extra width in IE */
-}
-.ui-button,
-.ui-button:link,
-.ui-button:visited,
-.ui-button:hover,
-.ui-button:active {
- text-decoration: none;
-}
-/* to make room for the icon, a width needs to be set here */
-.ui-button-icon-only {
- width: 2.2em;
-}
-/* button elements seem to need a little more width */
-button.ui-button-icon-only {
- width: 2.4em;
-}
-.ui-button-icons-only {
- width: 3.4em;
-}
-button.ui-button-icons-only {
- width: 3.7em;
-}
-
-/* button text element */
-.ui-button .ui-button-text {
- display: block;
- line-height: normal;
-}
-.ui-button-text-only .ui-button-text {
- padding: .4em 1em;
-}
-.ui-button-icon-only .ui-button-text,
-.ui-button-icons-only .ui-button-text {
- padding: .4em;
- text-indent: -9999999px;
-}
-.ui-button-text-icon-primary .ui-button-text,
-.ui-button-text-icons .ui-button-text {
- padding: .4em 1em .4em 2.1em;
-}
-.ui-button-text-icon-secondary .ui-button-text,
-.ui-button-text-icons .ui-button-text {
- padding: .4em 2.1em .4em 1em;
-}
-.ui-button-text-icons .ui-button-text {
- padding-left: 2.1em;
- padding-right: 2.1em;
-}
-/* no icon support for input elements, provide padding by default */
-input.ui-button {
- padding: .4em 1em;
-}
-
-/* button icon element(s) */
-.ui-button-icon-only .ui-icon,
-.ui-button-text-icon-primary .ui-icon,
-.ui-button-text-icon-secondary .ui-icon,
-.ui-button-text-icons .ui-icon,
-.ui-button-icons-only .ui-icon {
- position: absolute;
- top: 50%;
- margin-top: -8px;
-}
-.ui-button-icon-only .ui-icon {
- left: 50%;
- margin-left: -8px;
-}
-.ui-button-text-icon-primary .ui-button-icon-primary,
-.ui-button-text-icons .ui-button-icon-primary,
-.ui-button-icons-only .ui-button-icon-primary {
- left: .5em;
-}
-.ui-button-text-icon-secondary .ui-button-icon-secondary,
-.ui-button-text-icons .ui-button-icon-secondary,
-.ui-button-icons-only .ui-button-icon-secondary {
- right: .5em;
-}
-
-/* button sets */
-.ui-buttonset {
- margin-right: 7px;
-}
-.ui-buttonset .ui-button {
- margin-left: 0;
- margin-right: -.3em;
-}
-
-/* workarounds */
-/* reset extra padding in Firefox, see h5bp.com/l */
-input.ui-button::-moz-focus-inner,
-button.ui-button::-moz-focus-inner {
- border: 0;
- padding: 0;
-}
-.ui-datepicker {
- width: 17em;
- padding: .2em .2em 0;
- display: none;
-}
-.ui-datepicker .ui-datepicker-header {
- position: relative;
- padding: .2em 0;
-}
-.ui-datepicker .ui-datepicker-prev,
-.ui-datepicker .ui-datepicker-next {
- position: absolute;
- top: 2px;
- width: 1.8em;
- height: 1.8em;
-}
-.ui-datepicker .ui-datepicker-prev-hover,
-.ui-datepicker .ui-datepicker-next-hover {
- top: 1px;
-}
-.ui-datepicker .ui-datepicker-prev {
- left: 2px;
-}
-.ui-datepicker .ui-datepicker-next {
- right: 2px;
-}
-.ui-datepicker .ui-datepicker-prev-hover {
- left: 1px;
-}
-.ui-datepicker .ui-datepicker-next-hover {
- right: 1px;
-}
-.ui-datepicker .ui-datepicker-prev span,
-.ui-datepicker .ui-datepicker-next span {
- display: block;
- position: absolute;
- left: 50%;
- margin-left: -8px;
- top: 50%;
- margin-top: -8px;
-}
-.ui-datepicker .ui-datepicker-title {
- margin: 0 2.3em;
- line-height: 1.8em;
- text-align: center;
-}
-.ui-datepicker .ui-datepicker-title select {
- font-size: 1em;
- margin: 1px 0;
-}
-.ui-datepicker select.ui-datepicker-month,
-.ui-datepicker select.ui-datepicker-year {
- width: 45%;
-}
-.ui-datepicker table {
- width: 100%;
- font-size: .9em;
- border-collapse: collapse;
- margin: 0 0 .4em;
-}
-.ui-datepicker th {
- padding: .7em .3em;
- text-align: center;
- font-weight: bold;
- border: 0;
-}
-.ui-datepicker td {
- border: 0;
- padding: 1px;
-}
-.ui-datepicker td span,
-.ui-datepicker td a {
- display: block;
- padding: .2em;
- text-align: right;
- text-decoration: none;
-}
-.ui-datepicker .ui-datepicker-buttonpane {
- background-image: none;
- margin: .7em 0 0 0;
- padding: 0 .2em;
- border-left: 0;
- border-right: 0;
- border-bottom: 0;
-}
-.ui-datepicker .ui-datepicker-buttonpane button {
- float: right;
- margin: .5em .2em .4em;
- cursor: pointer;
- padding: .2em .6em .3em .6em;
- width: auto;
- overflow: visible;
-}
-.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
- float: left;
-}
-
-/* with multiple calendars */
-.ui-datepicker.ui-datepicker-multi {
- width: auto;
-}
-.ui-datepicker-multi .ui-datepicker-group {
- float: left;
-}
-.ui-datepicker-multi .ui-datepicker-group table {
- width: 95%;
- margin: 0 auto .4em;
-}
-.ui-datepicker-multi-2 .ui-datepicker-group {
- width: 50%;
-}
-.ui-datepicker-multi-3 .ui-datepicker-group {
- width: 33.3%;
-}
-.ui-datepicker-multi-4 .ui-datepicker-group {
- width: 25%;
-}
-.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
-.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
- border-left-width: 0;
-}
-.ui-datepicker-multi .ui-datepicker-buttonpane {
- clear: left;
-}
-.ui-datepicker-row-break {
- clear: both;
- width: 100%;
- font-size: 0;
-}
-
-/* RTL support */
-.ui-datepicker-rtl {
- direction: rtl;
-}
-.ui-datepicker-rtl .ui-datepicker-prev {
- right: 2px;
- left: auto;
-}
-.ui-datepicker-rtl .ui-datepicker-next {
- left: 2px;
- right: auto;
-}
-.ui-datepicker-rtl .ui-datepicker-prev:hover {
- right: 1px;
- left: auto;
-}
-.ui-datepicker-rtl .ui-datepicker-next:hover {
- left: 1px;
- right: auto;
-}
-.ui-datepicker-rtl .ui-datepicker-buttonpane {
- clear: right;
-}
-.ui-datepicker-rtl .ui-datepicker-buttonpane button {
- float: left;
-}
-.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
-.ui-datepicker-rtl .ui-datepicker-group {
- float: right;
-}
-.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
-.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
- border-right-width: 0;
- border-left-width: 1px;
-}
-.ui-dialog {
- overflow: hidden;
- position: absolute;
- top: 0;
- left: 0;
- padding: .2em;
- outline: 0;
-}
-.ui-dialog .ui-dialog-titlebar {
- padding: .4em 1em;
- position: relative;
-}
-.ui-dialog .ui-dialog-title {
- float: left;
- margin: .1em 0;
- white-space: nowrap;
- width: 90%;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-.ui-dialog .ui-dialog-titlebar-close {
- position: absolute;
- right: .3em;
- top: 50%;
- width: 20px;
- margin: -10px 0 0 0;
- padding: 1px;
- height: 20px;
-}
-.ui-dialog .ui-dialog-content {
- position: relative;
- border: 0;
- padding: .5em 1em;
- background: none;
- overflow: auto;
-}
-.ui-dialog .ui-dialog-buttonpane {
- text-align: left;
- border-width: 1px 0 0 0;
- background-image: none;
- margin-top: .5em;
- padding: .3em 1em .5em .4em;
-}
-.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
- float: right;
-}
-.ui-dialog .ui-dialog-buttonpane button {
- margin: .5em .4em .5em 0;
- cursor: pointer;
-}
-.ui-dialog .ui-resizable-se {
- width: 12px;
- height: 12px;
- right: -5px;
- bottom: -5px;
- background-position: 16px 16px;
-}
-.ui-draggable .ui-dialog-titlebar {
- cursor: move;
-}
-.ui-menu {
- list-style: none;
- padding: 0;
- margin: 0;
- display: block;
- outline: none;
-}
-.ui-menu .ui-menu {
- position: absolute;
-}
-.ui-menu .ui-menu-item {
- position: relative;
- margin: 0;
- padding: 3px 1em 3px .4em;
- cursor: pointer;
- min-height: 0; /* support: IE7 */
- /* support: IE10, see #8844 */
- list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
-}
-.ui-menu .ui-menu-divider {
- margin: 5px 0;
- height: 0;
- font-size: 0;
- line-height: 0;
- border-width: 1px 0 0 0;
-}
-.ui-menu .ui-state-focus,
-.ui-menu .ui-state-active {
- margin: -1px;
-}
-
-/* icon support */
-.ui-menu-icons {
- position: relative;
-}
-.ui-menu-icons .ui-menu-item {
- padding-left: 2em;
-}
-
-/* left-aligned */
-.ui-menu .ui-icon {
- position: absolute;
- top: 0;
- bottom: 0;
- left: .2em;
- margin: auto 0;
-}
-
-/* right-aligned */
-.ui-menu .ui-menu-icon {
- left: auto;
- right: 0;
-}
-.ui-progressbar {
- height: 2em;
- text-align: left;
- overflow: hidden;
-}
-.ui-progressbar .ui-progressbar-value {
- margin: -1px;
- height: 100%;
-}
-.ui-progressbar .ui-progressbar-overlay {
- background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
- height: 100%;
- filter: alpha(opacity=25); /* support: IE8 */
- opacity: 0.25;
-}
-.ui-progressbar-indeterminate .ui-progressbar-value {
- background-image: none;
-}
-.ui-selectmenu-menu {
- padding: 0;
- margin: 0;
- position: absolute;
- top: 0;
- left: 0;
- display: none;
-}
-.ui-selectmenu-menu .ui-menu {
- overflow: auto;
- /* Support: IE7 */
- overflow-x: hidden;
- padding-bottom: 1px;
-}
-.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
- font-size: 1em;
- font-weight: bold;
- line-height: 1.5;
- padding: 2px 0.4em;
- margin: 0.5em 0 0 0;
- height: auto;
- border: 0;
-}
-.ui-selectmenu-open {
- display: block;
-}
-.ui-selectmenu-button {
- display: inline-block;
- overflow: hidden;
- position: relative;
- text-decoration: none;
- cursor: pointer;
-}
-.ui-selectmenu-button span.ui-icon {
- right: 0.5em;
- left: auto;
- margin-top: -8px;
- position: absolute;
- top: 50%;
-}
-.ui-selectmenu-button span.ui-selectmenu-text {
- text-align: left;
- padding: 0.4em 2.1em 0.4em 1em;
- display: block;
- line-height: 1.4;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-.ui-slider {
- position: relative;
- text-align: left;
-}
-.ui-slider .ui-slider-handle {
- position: absolute;
- z-index: 2;
- width: 1.2em;
- height: 1.2em;
- cursor: default;
- -ms-touch-action: none;
- touch-action: none;
-}
-.ui-slider .ui-slider-range {
- position: absolute;
- z-index: 1;
- font-size: .7em;
- display: block;
- border: 0;
- background-position: 0 0;
-}
-
-/* support: IE8 - See #6727 */
-.ui-slider.ui-state-disabled .ui-slider-handle,
-.ui-slider.ui-state-disabled .ui-slider-range {
- filter: inherit;
-}
-
-.ui-slider-horizontal {
- height: .8em;
-}
-.ui-slider-horizontal .ui-slider-handle {
- top: -.3em;
- margin-left: -.6em;
-}
-.ui-slider-horizontal .ui-slider-range {
- top: 0;
- height: 100%;
-}
-.ui-slider-horizontal .ui-slider-range-min {
- left: 0;
-}
-.ui-slider-horizontal .ui-slider-range-max {
- right: 0;
-}
-
-.ui-slider-vertical {
- width: .8em;
- height: 100px;
-}
-.ui-slider-vertical .ui-slider-handle {
- left: -.3em;
- margin-left: 0;
- margin-bottom: -.6em;
-}
-.ui-slider-vertical .ui-slider-range {
- left: 0;
- width: 100%;
-}
-.ui-slider-vertical .ui-slider-range-min {
- bottom: 0;
-}
-.ui-slider-vertical .ui-slider-range-max {
- top: 0;
-}
-.ui-spinner {
- position: relative;
- display: inline-block;
- overflow: hidden;
- padding: 0;
- vertical-align: middle;
-}
-.ui-spinner-input {
- border: none;
- background: none;
- color: inherit;
- padding: 0;
- margin: .2em 0;
- vertical-align: middle;
- margin-left: .4em;
- margin-right: 22px;
-}
-.ui-spinner-button {
- width: 16px;
- height: 50%;
- font-size: .5em;
- padding: 0;
- margin: 0;
- text-align: center;
- position: absolute;
- cursor: default;
- display: block;
- overflow: hidden;
- right: 0;
-}
-/* more specificity required here to override default borders */
-.ui-spinner a.ui-spinner-button {
- border-top: none;
- border-bottom: none;
- border-right: none;
-}
-/* vertically center icon */
-.ui-spinner .ui-icon {
- position: absolute;
- margin-top: -8px;
- top: 50%;
- left: 0;
-}
-.ui-spinner-up {
- top: 0;
-}
-.ui-spinner-down {
- bottom: 0;
-}
-
-/* TR overrides */
-.ui-spinner .ui-icon-triangle-1-s {
- /* need to fix icons sprite */
- background-position: -65px -16px;
-}
-.ui-tabs {
- position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
- padding: .2em;
-}
-.ui-tabs .ui-tabs-nav {
- margin: 0;
- padding: .2em .2em 0;
-}
-.ui-tabs .ui-tabs-nav li {
- list-style: none;
- float: left;
- position: relative;
- top: 0;
- margin: 1px .2em 0 0;
- border-bottom-width: 0;
- padding: 0;
- white-space: nowrap;
-}
-.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
- float: left;
- padding: .5em 1em;
- text-decoration: none;
-}
-.ui-tabs .ui-tabs-nav li.ui-tabs-active {
- margin-bottom: -1px;
- padding-bottom: 1px;
-}
-.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
-.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
-.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
- cursor: text;
-}
-.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
- cursor: pointer;
-}
-.ui-tabs .ui-tabs-panel {
- display: block;
- border-width: 0;
- padding: 1em 1.4em;
- background: none;
-}
-.ui-tooltip {
- padding: 8px;
- position: absolute;
- z-index: 9999;
- max-width: 300px;
- -webkit-box-shadow: 0 0 5px #aaa;
- box-shadow: 0 0 5px #aaa;
-}
-body .ui-tooltip {
- border-width: 2px;
-}
-
-/* Component containers
-----------------------------------*/
-.ui-widget {
- font-family: Verdana,Arial,sans-serif;
- font-size: 1.1em;
-}
-.ui-widget .ui-widget {
- font-size: 1em;
-}
-.ui-widget input,
-.ui-widget select,
-.ui-widget textarea,
-.ui-widget button {
- font-family: Verdana,Arial,sans-serif;
- font-size: 1em;
-}
-.ui-widget-content {
- border: 1px solid #aaaaaa;
- background: #ffffff url("images/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;
- color: #222222;
-}
-.ui-widget-content a {
- color: #222222;
-}
-.ui-widget-header {
- border: 1px solid #aaaaaa;
- background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
- color: #222222;
- font-weight: bold;
-}
-.ui-widget-header a {
- color: #222222;
-}
-
-/* Interaction states
-----------------------------------*/
-.ui-state-default,
-.ui-widget-content .ui-state-default,
-.ui-widget-header .ui-state-default {
- border: 1px solid #d3d3d3;
- background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
- font-weight: normal;
- color: #555555;
-}
-.ui-state-default a,
-.ui-state-default a:link,
-.ui-state-default a:visited {
- color: #555555;
- text-decoration: none;
-}
-.ui-state-hover,
-.ui-widget-content .ui-state-hover,
-.ui-widget-header .ui-state-hover,
-.ui-state-focus,
-.ui-widget-content .ui-state-focus,
-.ui-widget-header .ui-state-focus {
- border: 1px solid #999999;
- background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
- font-weight: normal;
- color: #212121;
-}
-.ui-state-hover a,
-.ui-state-hover a:hover,
-.ui-state-hover a:link,
-.ui-state-hover a:visited,
-.ui-state-focus a,
-.ui-state-focus a:hover,
-.ui-state-focus a:link,
-.ui-state-focus a:visited {
- color: #212121;
- text-decoration: none;
-}
-.ui-state-active,
-.ui-widget-content .ui-state-active,
-.ui-widget-header .ui-state-active {
- border: 1px solid #aaaaaa;
- background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
- font-weight: normal;
- color: #212121;
-}
-.ui-state-active a,
-.ui-state-active a:link,
-.ui-state-active a:visited {
- color: #212121;
- text-decoration: none;
-}
-
-/* Interaction Cues
-----------------------------------*/
-.ui-state-highlight,
-.ui-widget-content .ui-state-highlight,
-.ui-widget-header .ui-state-highlight {
- border: 1px solid #fcefa1;
- background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
- color: #363636;
-}
-.ui-state-highlight a,
-.ui-widget-content .ui-state-highlight a,
-.ui-widget-header .ui-state-highlight a {
- color: #363636;
-}
-.ui-state-error,
-.ui-widget-content .ui-state-error,
-.ui-widget-header .ui-state-error {
- border: 1px solid #cd0a0a;
- background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
- color: #cd0a0a;
-}
-.ui-state-error a,
-.ui-widget-content .ui-state-error a,
-.ui-widget-header .ui-state-error a {
- color: #cd0a0a;
-}
-.ui-state-error-text,
-.ui-widget-content .ui-state-error-text,
-.ui-widget-header .ui-state-error-text {
- color: #cd0a0a;
-}
-.ui-priority-primary,
-.ui-widget-content .ui-priority-primary,
-.ui-widget-header .ui-priority-primary {
- font-weight: bold;
-}
-.ui-priority-secondary,
-.ui-widget-content .ui-priority-secondary,
-.ui-widget-header .ui-priority-secondary {
- opacity: .7;
- filter:Alpha(Opacity=70); /* support: IE8 */
- font-weight: normal;
-}
-.ui-state-disabled,
-.ui-widget-content .ui-state-disabled,
-.ui-widget-header .ui-state-disabled {
- opacity: .35;
- filter:Alpha(Opacity=35); /* support: IE8 */
- background-image: none;
-}
-.ui-state-disabled .ui-icon {
- filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
-}
-
-/* Icons
-----------------------------------*/
-
-/* states and images */
-.ui-icon {
- width: 16px;
- height: 16px;
-}
-.ui-icon,
-.ui-widget-content .ui-icon {
- background-image: url("images/ui-icons_222222_256x240.png");
-}
-.ui-widget-header .ui-icon {
- background-image: url("images/ui-icons_222222_256x240.png");
-}
-.ui-state-default .ui-icon {
- background-image: url("images/ui-icons_888888_256x240.png");
-}
-.ui-state-hover .ui-icon,
-.ui-state-focus .ui-icon {
- background-image: url("images/ui-icons_454545_256x240.png");
-}
-.ui-state-active .ui-icon {
- background-image: url("images/ui-icons_454545_256x240.png");
-}
-.ui-state-highlight .ui-icon {
- background-image: url("images/ui-icons_2e83ff_256x240.png");
-}
-.ui-state-error .ui-icon,
-.ui-state-error-text .ui-icon {
- background-image: url("images/ui-icons_cd0a0a_256x240.png");
-}
-
-/* positioning */
-.ui-icon-blank { background-position: 16px 16px; }
-.ui-icon-carat-1-n { background-position: 0 0; }
-.ui-icon-carat-1-ne { background-position: -16px 0; }
-.ui-icon-carat-1-e { background-position: -32px 0; }
-.ui-icon-carat-1-se { background-position: -48px 0; }
-.ui-icon-carat-1-s { background-position: -64px 0; }
-.ui-icon-carat-1-sw { background-position: -80px 0; }
-.ui-icon-carat-1-w { background-position: -96px 0; }
-.ui-icon-carat-1-nw { background-position: -112px 0; }
-.ui-icon-carat-2-n-s { background-position: -128px 0; }
-.ui-icon-carat-2-e-w { background-position: -144px 0; }
-.ui-icon-triangle-1-n { background-position: 0 -16px; }
-.ui-icon-triangle-1-ne { background-position: -16px -16px; }
-.ui-icon-triangle-1-e { background-position: -32px -16px; }
-.ui-icon-triangle-1-se { background-position: -48px -16px; }
-.ui-icon-triangle-1-s { background-position: -64px -16px; }
-.ui-icon-triangle-1-sw { background-position: -80px -16px; }
-.ui-icon-triangle-1-w { background-position: -96px -16px; }
-.ui-icon-triangle-1-nw { background-position: -112px -16px; }
-.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
-.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
-.ui-icon-arrow-1-n { background-position: 0 -32px; }
-.ui-icon-arrow-1-ne { background-position: -16px -32px; }
-.ui-icon-arrow-1-e { background-position: -32px -32px; }
-.ui-icon-arrow-1-se { background-position: -48px -32px; }
-.ui-icon-arrow-1-s { background-position: -64px -32px; }
-.ui-icon-arrow-1-sw { background-position: -80px -32px; }
-.ui-icon-arrow-1-w { background-position: -96px -32px; }
-.ui-icon-arrow-1-nw { background-position: -112px -32px; }
-.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
-.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
-.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
-.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
-.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
-.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
-.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
-.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
-.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
-.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
-.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
-.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
-.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
-.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
-.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
-.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
-.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
-.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
-.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
-.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
-.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
-.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
-.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
-.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
-.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
-.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
-.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
-.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
-.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
-.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
-.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
-.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
-.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
-.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
-.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
-.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
-.ui-icon-arrow-4 { background-position: 0 -80px; }
-.ui-icon-arrow-4-diag { background-position: -16px -80px; }
-.ui-icon-extlink { background-position: -32px -80px; }
-.ui-icon-newwin { background-position: -48px -80px; }
-.ui-icon-refresh { background-position: -64px -80px; }
-.ui-icon-shuffle { background-position: -80px -80px; }
-.ui-icon-transfer-e-w { background-position: -96px -80px; }
-.ui-icon-transferthick-e-w { background-position: -112px -80px; }
-.ui-icon-folder-collapsed { background-position: 0 -96px; }
-.ui-icon-folder-open { background-position: -16px -96px; }
-.ui-icon-document { background-position: -32px -96px; }
-.ui-icon-document-b { background-position: -48px -96px; }
-.ui-icon-note { background-position: -64px -96px; }
-.ui-icon-mail-closed { background-position: -80px -96px; }
-.ui-icon-mail-open { background-position: -96px -96px; }
-.ui-icon-suitcase { background-position: -112px -96px; }
-.ui-icon-comment { background-position: -128px -96px; }
-.ui-icon-person { background-position: -144px -96px; }
-.ui-icon-print { background-position: -160px -96px; }
-.ui-icon-trash { background-position: -176px -96px; }
-.ui-icon-locked { background-position: -192px -96px; }
-.ui-icon-unlocked { background-position: -208px -96px; }
-.ui-icon-bookmark { background-position: -224px -96px; }
-.ui-icon-tag { background-position: -240px -96px; }
-.ui-icon-home { background-position: 0 -112px; }
-.ui-icon-flag { background-position: -16px -112px; }
-.ui-icon-calendar { background-position: -32px -112px; }
-.ui-icon-cart { background-position: -48px -112px; }
-.ui-icon-pencil { background-position: -64px -112px; }
-.ui-icon-clock { background-position: -80px -112px; }
-.ui-icon-disk { background-position: -96px -112px; }
-.ui-icon-calculator { background-position: -112px -112px; }
-.ui-icon-zoomin { background-position: -128px -112px; }
-.ui-icon-zoomout { background-position: -144px -112px; }
-.ui-icon-search { background-position: -160px -112px; }
-.ui-icon-wrench { background-position: -176px -112px; }
-.ui-icon-gear { background-position: -192px -112px; }
-.ui-icon-heart { background-position: -208px -112px; }
-.ui-icon-star { background-position: -224px -112px; }
-.ui-icon-link { background-position: -240px -112px; }
-.ui-icon-cancel { background-position: 0 -128px; }
-.ui-icon-plus { background-position: -16px -128px; }
-.ui-icon-plusthick { background-position: -32px -128px; }
-.ui-icon-minus { background-position: -48px -128px; }
-.ui-icon-minusthick { background-position: -64px -128px; }
-.ui-icon-close { background-position: -80px -128px; }
-.ui-icon-closethick { background-position: -96px -128px; }
-.ui-icon-key { background-position: -112px -128px; }
-.ui-icon-lightbulb { background-position: -128px -128px; }
-.ui-icon-scissors { background-position: -144px -128px; }
-.ui-icon-clipboard { background-position: -160px -128px; }
-.ui-icon-copy { background-position: -176px -128px; }
-.ui-icon-contact { background-position: -192px -128px; }
-.ui-icon-image { background-position: -208px -128px; }
-.ui-icon-video { background-position: -224px -128px; }
-.ui-icon-script { background-position: -240px -128px; }
-.ui-icon-alert { background-position: 0 -144px; }
-.ui-icon-info { background-position: -16px -144px; }
-.ui-icon-notice { background-position: -32px -144px; }
-.ui-icon-help { background-position: -48px -144px; }
-.ui-icon-check { background-position: -64px -144px; }
-.ui-icon-bullet { background-position: -80px -144px; }
-.ui-icon-radio-on { background-position: -96px -144px; }
-.ui-icon-radio-off { background-position: -112px -144px; }
-.ui-icon-pin-w { background-position: -128px -144px; }
-.ui-icon-pin-s { background-position: -144px -144px; }
-.ui-icon-play { background-position: 0 -160px; }
-.ui-icon-pause { background-position: -16px -160px; }
-.ui-icon-seek-next { background-position: -32px -160px; }
-.ui-icon-seek-prev { background-position: -48px -160px; }
-.ui-icon-seek-end { background-position: -64px -160px; }
-.ui-icon-seek-start { background-position: -80px -160px; }
-/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
-.ui-icon-seek-first { background-position: -80px -160px; }
-.ui-icon-stop { background-position: -96px -160px; }
-.ui-icon-eject { background-position: -112px -160px; }
-.ui-icon-volume-off { background-position: -128px -160px; }
-.ui-icon-volume-on { background-position: -144px -160px; }
-.ui-icon-power { background-position: 0 -176px; }
-.ui-icon-signal-diag { background-position: -16px -176px; }
-.ui-icon-signal { background-position: -32px -176px; }
-.ui-icon-battery-0 { background-position: -48px -176px; }
-.ui-icon-battery-1 { background-position: -64px -176px; }
-.ui-icon-battery-2 { background-position: -80px -176px; }
-.ui-icon-battery-3 { background-position: -96px -176px; }
-.ui-icon-circle-plus { background-position: 0 -192px; }
-.ui-icon-circle-minus { background-position: -16px -192px; }
-.ui-icon-circle-close { background-position: -32px -192px; }
-.ui-icon-circle-triangle-e { background-position: -48px -192px; }
-.ui-icon-circle-triangle-s { background-position: -64px -192px; }
-.ui-icon-circle-triangle-w { background-position: -80px -192px; }
-.ui-icon-circle-triangle-n { background-position: -96px -192px; }
-.ui-icon-circle-arrow-e { background-position: -112px -192px; }
-.ui-icon-circle-arrow-s { background-position: -128px -192px; }
-.ui-icon-circle-arrow-w { background-position: -144px -192px; }
-.ui-icon-circle-arrow-n { background-position: -160px -192px; }
-.ui-icon-circle-zoomin { background-position: -176px -192px; }
-.ui-icon-circle-zoomout { background-position: -192px -192px; }
-.ui-icon-circle-check { background-position: -208px -192px; }
-.ui-icon-circlesmall-plus { background-position: 0 -208px; }
-.ui-icon-circlesmall-minus { background-position: -16px -208px; }
-.ui-icon-circlesmall-close { background-position: -32px -208px; }
-.ui-icon-squaresmall-plus { background-position: -48px -208px; }
-.ui-icon-squaresmall-minus { background-position: -64px -208px; }
-.ui-icon-squaresmall-close { background-position: -80px -208px; }
-.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
-.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
-.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
-.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
-.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
-.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
-
-
-/* Misc visuals
-----------------------------------*/
-
-/* Corner radius */
-.ui-corner-all,
-.ui-corner-top,
-.ui-corner-left,
-.ui-corner-tl {
- border-top-left-radius: 4px;
-}
-.ui-corner-all,
-.ui-corner-top,
-.ui-corner-right,
-.ui-corner-tr {
- border-top-right-radius: 4px;
-}
-.ui-corner-all,
-.ui-corner-bottom,
-.ui-corner-left,
-.ui-corner-bl {
- border-bottom-left-radius: 4px;
-}
-.ui-corner-all,
-.ui-corner-bottom,
-.ui-corner-right,
-.ui-corner-br {
- border-bottom-right-radius: 4px;
-}
-
-/* Overlays */
-.ui-widget-overlay {
- background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
- opacity: .3;
- filter: Alpha(Opacity=30); /* support: IE8 */
-}
-.ui-widget-shadow {
- margin: -8px 0 0 -8px;
- padding: 8px;
- background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
- opacity: .3;
- filter: Alpha(Opacity=30); /* support: IE8 */
- border-radius: 8px;
-}
+++ /dev/null
-/*! jQuery UI - v1.11.3 - 2015-03-01
-* http://jqueryui.com
-* Includes: core.js, widget.js, mouse.js, position.js, draggable.js, droppable.js, resizable.js, selectable.js, sortable.js, accordion.js, autocomplete.js, button.js, datepicker.js, dialog.js, menu.js, progressbar.js, selectmenu.js, slider.js, spinner.js, tabs.js, tooltip.js, effect.js, effect-blind.js, effect-bounce.js, effect-clip.js, effect-drop.js, effect-explode.js, effect-fade.js, effect-fold.js, effect-highlight.js, effect-puff.js, effect-pulsate.js, effect-scale.js, effect-shake.js, effect-size.js, effect-slide.js, effect-transfer.js
-* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
-
-(function( factory ) {
- if ( typeof define === "function" && define.amd ) {
-
- // AMD. Register as an anonymous module.
- define([ "jquery" ], factory );
- } else {
-
- // Browser globals
- factory( jQuery );
- }
-}(function( $ ) {
-/*!
- * jQuery UI Core 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/category/ui-core/
- */
-
-
-// $.ui might exist from components with no dependencies, e.g., $.ui.position
-$.ui = $.ui || {};
-
-$.extend( $.ui, {
- version: "1.11.3",
-
- keyCode: {
- BACKSPACE: 8,
- COMMA: 188,
- DELETE: 46,
- DOWN: 40,
- END: 35,
- ENTER: 13,
- ESCAPE: 27,
- HOME: 36,
- LEFT: 37,
- PAGE_DOWN: 34,
- PAGE_UP: 33,
- PERIOD: 190,
- RIGHT: 39,
- SPACE: 32,
- TAB: 9,
- UP: 38
- }
-});
-
-// plugins
-$.fn.extend({
- scrollParent: function( includeHidden ) {
- var position = this.css( "position" ),
- excludeStaticParent = position === "absolute",
- overflowRegex = includeHidden ? /(auto|scroll|hidden)/ : /(auto|scroll)/,
- scrollParent = this.parents().filter( function() {
- var parent = $( this );
- if ( excludeStaticParent && parent.css( "position" ) === "static" ) {
- return false;
- }
- return overflowRegex.test( parent.css( "overflow" ) + parent.css( "overflow-y" ) + parent.css( "overflow-x" ) );
- }).eq( 0 );
-
- return position === "fixed" || !scrollParent.length ? $( this[ 0 ].ownerDocument || document ) : scrollParent;
- },
-
- uniqueId: (function() {
- var uuid = 0;
-
- return function() {
- return this.each(function() {
- if ( !this.id ) {
- this.id = "ui-id-" + ( ++uuid );
- }
- });
- };
- })(),
-
- removeUniqueId: function() {
- return this.each(function() {
- if ( /^ui-id-\d+$/.test( this.id ) ) {
- $( this ).removeAttr( "id" );
- }
- });
- }
-});
-
-// selectors
-function focusable( element, isTabIndexNotNaN ) {
- var map, mapName, img,
- nodeName = element.nodeName.toLowerCase();
- if ( "area" === nodeName ) {
- map = element.parentNode;
- mapName = map.name;
- if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) {
- return false;
- }
- img = $( "img[usemap='#" + mapName + "']" )[ 0 ];
- return !!img && visible( img );
- }
- return ( /^(input|select|textarea|button|object)$/.test( nodeName ) ?
- !element.disabled :
- "a" === nodeName ?
- element.href || isTabIndexNotNaN :
- isTabIndexNotNaN) &&
- // the element and all of its ancestors must be visible
- visible( element );
-}
-
-function visible( element ) {
- return $.expr.filters.visible( element ) &&
- !$( element ).parents().addBack().filter(function() {
- return $.css( this, "visibility" ) === "hidden";
- }).length;
-}
-
-$.extend( $.expr[ ":" ], {
- data: $.expr.createPseudo ?
- $.expr.createPseudo(function( dataName ) {
- return function( elem ) {
- return !!$.data( elem, dataName );
- };
- }) :
- // support: jQuery <1.8
- function( elem, i, match ) {
- return !!$.data( elem, match[ 3 ] );
- },
-
- focusable: function( element ) {
- return focusable( element, !isNaN( $.attr( element, "tabindex" ) ) );
- },
-
- tabbable: function( element ) {
- var tabIndex = $.attr( element, "tabindex" ),
- isTabIndexNaN = isNaN( tabIndex );
- return ( isTabIndexNaN || tabIndex >= 0 ) && focusable( element, !isTabIndexNaN );
- }
-});
-
-// support: jQuery <1.8
-if ( !$( "<a>" ).outerWidth( 1 ).jquery ) {
- $.each( [ "Width", "Height" ], function( i, name ) {
- var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ],
- type = name.toLowerCase(),
- orig = {
- innerWidth: $.fn.innerWidth,
- innerHeight: $.fn.innerHeight,
- outerWidth: $.fn.outerWidth,
- outerHeight: $.fn.outerHeight
- };
-
- function reduce( elem, size, border, margin ) {
- $.each( side, function() {
- size -= parseFloat( $.css( elem, "padding" + this ) ) || 0;
- if ( border ) {
- size -= parseFloat( $.css( elem, "border" + this + "Width" ) ) || 0;
- }
- if ( margin ) {
- size -= parseFloat( $.css( elem, "margin" + this ) ) || 0;
- }
- });
- return size;
- }
-
- $.fn[ "inner" + name ] = function( size ) {
- if ( size === undefined ) {
- return orig[ "inner" + name ].call( this );
- }
-
- return this.each(function() {
- $( this ).css( type, reduce( this, size ) + "px" );
- });
- };
-
- $.fn[ "outer" + name] = function( size, margin ) {
- if ( typeof size !== "number" ) {
- return orig[ "outer" + name ].call( this, size );
- }
-
- return this.each(function() {
- $( this).css( type, reduce( this, size, true, margin ) + "px" );
- });
- };
- });
-}
-
-// support: jQuery <1.8
-if ( !$.fn.addBack ) {
- $.fn.addBack = function( selector ) {
- return this.add( selector == null ?
- this.prevObject : this.prevObject.filter( selector )
- );
- };
-}
-
-// support: jQuery 1.6.1, 1.6.2 (http://bugs.jquery.com/ticket/9413)
-if ( $( "<a>" ).data( "a-b", "a" ).removeData( "a-b" ).data( "a-b" ) ) {
- $.fn.removeData = (function( removeData ) {
- return function( key ) {
- if ( arguments.length ) {
- return removeData.call( this, $.camelCase( key ) );
- } else {
- return removeData.call( this );
- }
- };
- })( $.fn.removeData );
-}
-
-// deprecated
-$.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
-
-$.fn.extend({
- focus: (function( orig ) {
- return function( delay, fn ) {
- return typeof delay === "number" ?
- this.each(function() {
- var elem = this;
- setTimeout(function() {
- $( elem ).focus();
- if ( fn ) {
- fn.call( elem );
- }
- }, delay );
- }) :
- orig.apply( this, arguments );
- };
- })( $.fn.focus ),
-
- disableSelection: (function() {
- var eventType = "onselectstart" in document.createElement( "div" ) ?
- "selectstart" :
- "mousedown";
-
- return function() {
- return this.bind( eventType + ".ui-disableSelection", function( event ) {
- event.preventDefault();
- });
- };
- })(),
-
- enableSelection: function() {
- return this.unbind( ".ui-disableSelection" );
- },
-
- zIndex: function( zIndex ) {
- if ( zIndex !== undefined ) {
- return this.css( "zIndex", zIndex );
- }
-
- if ( this.length ) {
- var elem = $( this[ 0 ] ), position, value;
- while ( elem.length && elem[ 0 ] !== document ) {
- // Ignore z-index if position is set to a value where z-index is ignored by the browser
- // This makes behavior of this function consistent across browsers
- // WebKit always returns auto if the element is positioned
- position = elem.css( "position" );
- if ( position === "absolute" || position === "relative" || position === "fixed" ) {
- // IE returns 0 when zIndex is not specified
- // other browsers return a string
- // we ignore the case of nested elements with an explicit value of 0
- // <div style="z-index: -10;"><div style="z-index: 0;"></div></div>
- value = parseInt( elem.css( "zIndex" ), 10 );
- if ( !isNaN( value ) && value !== 0 ) {
- return value;
- }
- }
- elem = elem.parent();
- }
- }
-
- return 0;
- }
-});
-
-// $.ui.plugin is deprecated. Use $.widget() extensions instead.
-$.ui.plugin = {
- add: function( module, option, set ) {
- var i,
- proto = $.ui[ module ].prototype;
- for ( i in set ) {
- proto.plugins[ i ] = proto.plugins[ i ] || [];
- proto.plugins[ i ].push( [ option, set[ i ] ] );
- }
- },
- call: function( instance, name, args, allowDisconnected ) {
- var i,
- set = instance.plugins[ name ];
-
- if ( !set ) {
- return;
- }
-
- if ( !allowDisconnected && ( !instance.element[ 0 ].parentNode || instance.element[ 0 ].parentNode.nodeType === 11 ) ) {
- return;
- }
-
- for ( i = 0; i < set.length; i++ ) {
- if ( instance.options[ set[ i ][ 0 ] ] ) {
- set[ i ][ 1 ].apply( instance.element, args );
- }
- }
- }
-};
-
-
-/*!
- * jQuery UI Widget 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/jQuery.widget/
- */
-
-
-var widget_uuid = 0,
- widget_slice = Array.prototype.slice;
-
-$.cleanData = (function( orig ) {
- return function( elems ) {
- var events, elem, i;
- for ( i = 0; (elem = elems[i]) != null; i++ ) {
- try {
-
- // Only trigger remove when necessary to save time
- events = $._data( elem, "events" );
- if ( events && events.remove ) {
- $( elem ).triggerHandler( "remove" );
- }
-
- // http://bugs.jquery.com/ticket/8235
- } catch ( e ) {}
- }
- orig( elems );
- };
-})( $.cleanData );
-
-$.widget = function( name, base, prototype ) {
- var fullName, existingConstructor, constructor, basePrototype,
- // proxiedPrototype allows the provided prototype to remain unmodified
- // so that it can be used as a mixin for multiple widgets (#8876)
- proxiedPrototype = {},
- namespace = name.split( "." )[ 0 ];
-
- name = name.split( "." )[ 1 ];
- fullName = namespace + "-" + name;
-
- if ( !prototype ) {
- prototype = base;
- base = $.Widget;
- }
-
- // create selector for plugin
- $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) {
- return !!$.data( elem, fullName );
- };
-
- $[ namespace ] = $[ namespace ] || {};
- existingConstructor = $[ namespace ][ name ];
- constructor = $[ namespace ][ name ] = function( options, element ) {
- // allow instantiation without "new" keyword
- if ( !this._createWidget ) {
- return new constructor( options, element );
- }
-
- // allow instantiation without initializing for simple inheritance
- // must use "new" keyword (the code above always passes args)
- if ( arguments.length ) {
- this._createWidget( options, element );
- }
- };
- // extend with the existing constructor to carry over any static properties
- $.extend( constructor, existingConstructor, {
- version: prototype.version,
- // copy the object used to create the prototype in case we need to
- // redefine the widget later
- _proto: $.extend( {}, prototype ),
- // track widgets that inherit from this widget in case this widget is
- // redefined after a widget inherits from it
- _childConstructors: []
- });
-
- basePrototype = new base();
- // we need to make the options hash a property directly on the new instance
- // otherwise we'll modify the options hash on the prototype that we're
- // inheriting from
- basePrototype.options = $.widget.extend( {}, basePrototype.options );
- $.each( prototype, function( prop, value ) {
- if ( !$.isFunction( value ) ) {
- proxiedPrototype[ prop ] = value;
- return;
- }
- proxiedPrototype[ prop ] = (function() {
- var _super = function() {
- return base.prototype[ prop ].apply( this, arguments );
- },
- _superApply = function( args ) {
- return base.prototype[ prop ].apply( this, args );
- };
- return function() {
- var __super = this._super,
- __superApply = this._superApply,
- returnValue;
-
- this._super = _super;
- this._superApply = _superApply;
-
- returnValue = value.apply( this, arguments );
-
- this._super = __super;
- this._superApply = __superApply;
-
- return returnValue;
- };
- })();
- });
- constructor.prototype = $.widget.extend( basePrototype, {
- // TODO: remove support for widgetEventPrefix
- // always use the name + a colon as the prefix, e.g., draggable:start
- // don't prefix for widgets that aren't DOM-based
- widgetEventPrefix: existingConstructor ? (basePrototype.widgetEventPrefix || name) : name
- }, proxiedPrototype, {
- constructor: constructor,
- namespace: namespace,
- widgetName: name,
- widgetFullName: fullName
- });
-
- // If this widget is being redefined then we need to find all widgets that
- // are inheriting from it and redefine all of them so that they inherit from
- // the new version of this widget. We're essentially trying to replace one
- // level in the prototype chain.
- if ( existingConstructor ) {
- $.each( existingConstructor._childConstructors, function( i, child ) {
- var childPrototype = child.prototype;
-
- // redefine the child widget using the same prototype that was
- // originally used, but inherit from the new version of the base
- $.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto );
- });
- // remove the list of existing child constructors from the old constructor
- // so the old child constructors can be garbage collected
- delete existingConstructor._childConstructors;
- } else {
- base._childConstructors.push( constructor );
- }
-
- $.widget.bridge( name, constructor );
-
- return constructor;
-};
-
-$.widget.extend = function( target ) {
- var input = widget_slice.call( arguments, 1 ),
- inputIndex = 0,
- inputLength = input.length,
- key,
- value;
- for ( ; inputIndex < inputLength; inputIndex++ ) {
- for ( key in input[ inputIndex ] ) {
- value = input[ inputIndex ][ key ];
- if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {
- // Clone objects
- if ( $.isPlainObject( value ) ) {
- target[ key ] = $.isPlainObject( target[ key ] ) ?
- $.widget.extend( {}, target[ key ], value ) :
- // Don't extend strings, arrays, etc. with objects
- $.widget.extend( {}, value );
- // Copy everything else by reference
- } else {
- target[ key ] = value;
- }
- }
- }
- }
- return target;
-};
-
-$.widget.bridge = function( name, object ) {
- var fullName = object.prototype.widgetFullName || name;
- $.fn[ name ] = function( options ) {
- var isMethodCall = typeof options === "string",
- args = widget_slice.call( arguments, 1 ),
- returnValue = this;
-
- if ( isMethodCall ) {
- this.each(function() {
- var methodValue,
- instance = $.data( this, fullName );
- if ( options === "instance" ) {
- returnValue = instance;
- return false;
- }
- if ( !instance ) {
- return $.error( "cannot call methods on " + name + " prior to initialization; " +
- "attempted to call method '" + options + "'" );
- }
- if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) {
- return $.error( "no such method '" + options + "' for " + name + " widget instance" );
- }
- methodValue = instance[ options ].apply( instance, args );
- if ( methodValue !== instance && methodValue !== undefined ) {
- returnValue = methodValue && methodValue.jquery ?
- returnValue.pushStack( methodValue.get() ) :
- methodValue;
- return false;
- }
- });
- } else {
-
- // Allow multiple hashes to be passed on init
- if ( args.length ) {
- options = $.widget.extend.apply( null, [ options ].concat(args) );
- }
-
- this.each(function() {
- var instance = $.data( this, fullName );
- if ( instance ) {
- instance.option( options || {} );
- if ( instance._init ) {
- instance._init();
- }
- } else {
- $.data( this, fullName, new object( options, this ) );
- }
- });
- }
-
- return returnValue;
- };
-};
-
-$.Widget = function( /* options, element */ ) {};
-$.Widget._childConstructors = [];
-
-$.Widget.prototype = {
- widgetName: "widget",
- widgetEventPrefix: "",
- defaultElement: "<div>",
- options: {
- disabled: false,
-
- // callbacks
- create: null
- },
- _createWidget: function( options, element ) {
- element = $( element || this.defaultElement || this )[ 0 ];
- this.element = $( element );
- this.uuid = widget_uuid++;
- this.eventNamespace = "." + this.widgetName + this.uuid;
-
- this.bindings = $();
- this.hoverable = $();
- this.focusable = $();
-
- if ( element !== this ) {
- $.data( element, this.widgetFullName, this );
- this._on( true, this.element, {
- remove: function( event ) {
- if ( event.target === element ) {
- this.destroy();
- }
- }
- });
- this.document = $( element.style ?
- // element within the document
- element.ownerDocument :
- // element is window or document
- element.document || element );
- this.window = $( this.document[0].defaultView || this.document[0].parentWindow );
- }
-
- this.options = $.widget.extend( {},
- this.options,
- this._getCreateOptions(),
- options );
-
- this._create();
- this._trigger( "create", null, this._getCreateEventData() );
- this._init();
- },
- _getCreateOptions: $.noop,
- _getCreateEventData: $.noop,
- _create: $.noop,
- _init: $.noop,
-
- destroy: function() {
- this._destroy();
- // we can probably remove the unbind calls in 2.0
- // all event bindings should go through this._on()
- this.element
- .unbind( this.eventNamespace )
- .removeData( this.widgetFullName )
- // support: jquery <1.6.3
- // http://bugs.jquery.com/ticket/9413
- .removeData( $.camelCase( this.widgetFullName ) );
- this.widget()
- .unbind( this.eventNamespace )
- .removeAttr( "aria-disabled" )
- .removeClass(
- this.widgetFullName + "-disabled " +
- "ui-state-disabled" );
-
- // clean up events and states
- this.bindings.unbind( this.eventNamespace );
- this.hoverable.removeClass( "ui-state-hover" );
- this.focusable.removeClass( "ui-state-focus" );
- },
- _destroy: $.noop,
-
- widget: function() {
- return this.element;
- },
-
- option: function( key, value ) {
- var options = key,
- parts,
- curOption,
- i;
-
- if ( arguments.length === 0 ) {
- // don't return a reference to the internal hash
- return $.widget.extend( {}, this.options );
- }
-
- if ( typeof key === "string" ) {
- // handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } }
- options = {};
- parts = key.split( "." );
- key = parts.shift();
- if ( parts.length ) {
- curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );
- for ( i = 0; i < parts.length - 1; i++ ) {
- curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};
- curOption = curOption[ parts[ i ] ];
- }
- key = parts.pop();
- if ( arguments.length === 1 ) {
- return curOption[ key ] === undefined ? null : curOption[ key ];
- }
- curOption[ key ] = value;
- } else {
- if ( arguments.length === 1 ) {
- return this.options[ key ] === undefined ? null : this.options[ key ];
- }
- options[ key ] = value;
- }
- }
-
- this._setOptions( options );
-
- return this;
- },
- _setOptions: function( options ) {
- var key;
-
- for ( key in options ) {
- this._setOption( key, options[ key ] );
- }
-
- return this;
- },
- _setOption: function( key, value ) {
- this.options[ key ] = value;
-
- if ( key === "disabled" ) {
- this.widget()
- .toggleClass( this.widgetFullName + "-disabled", !!value );
-
- // If the widget is becoming disabled, then nothing is interactive
- if ( value ) {
- this.hoverable.removeClass( "ui-state-hover" );
- this.focusable.removeClass( "ui-state-focus" );
- }
- }
-
- return this;
- },
-
- enable: function() {
- return this._setOptions({ disabled: false });
- },
- disable: function() {
- return this._setOptions({ disabled: true });
- },
-
- _on: function( suppressDisabledCheck, element, handlers ) {
- var delegateElement,
- instance = this;
-
- // no suppressDisabledCheck flag, shuffle arguments
- if ( typeof suppressDisabledCheck !== "boolean" ) {
- handlers = element;
- element = suppressDisabledCheck;
- suppressDisabledCheck = false;
- }
-
- // no element argument, shuffle and use this.element
- if ( !handlers ) {
- handlers = element;
- element = this.element;
- delegateElement = this.widget();
- } else {
- element = delegateElement = $( element );
- this.bindings = this.bindings.add( element );
- }
-
- $.each( handlers, function( event, handler ) {
- function handlerProxy() {
- // allow widgets to customize the disabled handling
- // - disabled as an array instead of boolean
- // - disabled class as method for disabling individual parts
- if ( !suppressDisabledCheck &&
- ( instance.options.disabled === true ||
- $( this ).hasClass( "ui-state-disabled" ) ) ) {
- return;
- }
- return ( typeof handler === "string" ? instance[ handler ] : handler )
- .apply( instance, arguments );
- }
-
- // copy the guid so direct unbinding works
- if ( typeof handler !== "string" ) {
- handlerProxy.guid = handler.guid =
- handler.guid || handlerProxy.guid || $.guid++;
- }
-
- var match = event.match( /^([\w:-]*)\s*(.*)$/ ),
- eventName = match[1] + instance.eventNamespace,
- selector = match[2];
- if ( selector ) {
- delegateElement.delegate( selector, eventName, handlerProxy );
- } else {
- element.bind( eventName, handlerProxy );
- }
- });
- },
-
- _off: function( element, eventName ) {
- eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) +
- this.eventNamespace;
- element.unbind( eventName ).undelegate( eventName );
-
- // Clear the stack to avoid memory leaks (#10056)
- this.bindings = $( this.bindings.not( element ).get() );
- this.focusable = $( this.focusable.not( element ).get() );
- this.hoverable = $( this.hoverable.not( element ).get() );
- },
-
- _delay: function( handler, delay ) {
- function handlerProxy() {
- return ( typeof handler === "string" ? instance[ handler ] : handler )
- .apply( instance, arguments );
- }
- var instance = this;
- return setTimeout( handlerProxy, delay || 0 );
- },
-
- _hoverable: function( element ) {
- this.hoverable = this.hoverable.add( element );
- this._on( element, {
- mouseenter: function( event ) {
- $( event.currentTarget ).addClass( "ui-state-hover" );
- },
- mouseleave: function( event ) {
- $( event.currentTarget ).removeClass( "ui-state-hover" );
- }
- });
- },
-
- _focusable: function( element ) {
- this.focusable = this.focusable.add( element );
- this._on( element, {
- focusin: function( event ) {
- $( event.currentTarget ).addClass( "ui-state-focus" );
- },
- focusout: function( event ) {
- $( event.currentTarget ).removeClass( "ui-state-focus" );
- }
- });
- },
-
- _trigger: function( type, event, data ) {
- var prop, orig,
- callback = this.options[ type ];
-
- data = data || {};
- event = $.Event( event );
- event.type = ( type === this.widgetEventPrefix ?
- type :
- this.widgetEventPrefix + type ).toLowerCase();
- // the original event may come from any element
- // so we need to reset the target on the new event
- event.target = this.element[ 0 ];
-
- // copy original event properties over to the new event
- orig = event.originalEvent;
- if ( orig ) {
- for ( prop in orig ) {
- if ( !( prop in event ) ) {
- event[ prop ] = orig[ prop ];
- }
- }
- }
-
- this.element.trigger( event, data );
- return !( $.isFunction( callback ) &&
- callback.apply( this.element[0], [ event ].concat( data ) ) === false ||
- event.isDefaultPrevented() );
- }
-};
-
-$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
- $.Widget.prototype[ "_" + method ] = function( element, options, callback ) {
- if ( typeof options === "string" ) {
- options = { effect: options };
- }
- var hasOptions,
- effectName = !options ?
- method :
- options === true || typeof options === "number" ?
- defaultEffect :
- options.effect || defaultEffect;
- options = options || {};
- if ( typeof options === "number" ) {
- options = { duration: options };
- }
- hasOptions = !$.isEmptyObject( options );
- options.complete = callback;
- if ( options.delay ) {
- element.delay( options.delay );
- }
- if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {
- element[ method ]( options );
- } else if ( effectName !== method && element[ effectName ] ) {
- element[ effectName ]( options.duration, options.easing, callback );
- } else {
- element.queue(function( next ) {
- $( this )[ method ]();
- if ( callback ) {
- callback.call( element[ 0 ] );
- }
- next();
- });
- }
- };
-});
-
-var widget = $.widget;
-
-
-/*!
- * jQuery UI Mouse 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/mouse/
- */
-
-
-var mouseHandled = false;
-$( document ).mouseup( function() {
- mouseHandled = false;
-});
-
-var mouse = $.widget("ui.mouse", {
- version: "1.11.3",
- options: {
- cancel: "input,textarea,button,select,option",
- distance: 1,
- delay: 0
- },
- _mouseInit: function() {
- var that = this;
-
- this.element
- .bind("mousedown." + this.widgetName, function(event) {
- return that._mouseDown(event);
- })
- .bind("click." + this.widgetName, function(event) {
- if (true === $.data(event.target, that.widgetName + ".preventClickEvent")) {
- $.removeData(event.target, that.widgetName + ".preventClickEvent");
- event.stopImmediatePropagation();
- return false;
- }
- });
-
- this.started = false;
- },
-
- // TODO: make sure destroying one instance of mouse doesn't mess with
- // other instances of mouse
- _mouseDestroy: function() {
- this.element.unbind("." + this.widgetName);
- if ( this._mouseMoveDelegate ) {
- this.document
- .unbind("mousemove." + this.widgetName, this._mouseMoveDelegate)
- .unbind("mouseup." + this.widgetName, this._mouseUpDelegate);
- }
- },
-
- _mouseDown: function(event) {
- // don't let more than one widget handle mouseStart
- if ( mouseHandled ) {
- return;
- }
-
- this._mouseMoved = false;
-
- // we may have missed mouseup (out of window)
- (this._mouseStarted && this._mouseUp(event));
-
- this._mouseDownEvent = event;
-
- var that = this,
- btnIsLeft = (event.which === 1),
- // event.target.nodeName works around a bug in IE 8 with
- // disabled inputs (#7620)
- elIsCancel = (typeof this.options.cancel === "string" && event.target.nodeName ? $(event.target).closest(this.options.cancel).length : false);
- if (!btnIsLeft || elIsCancel || !this._mouseCapture(event)) {
- return true;
- }
-
- this.mouseDelayMet = !this.options.delay;
- if (!this.mouseDelayMet) {
- this._mouseDelayTimer = setTimeout(function() {
- that.mouseDelayMet = true;
- }, this.options.delay);
- }
-
- if (this._mouseDistanceMet(event) && this._mouseDelayMet(event)) {
- this._mouseStarted = (this._mouseStart(event) !== false);
- if (!this._mouseStarted) {
- event.preventDefault();
- return true;
- }
- }
-
- // Click event may never have fired (Gecko & Opera)
- if (true === $.data(event.target, this.widgetName + ".preventClickEvent")) {
- $.removeData(event.target, this.widgetName + ".preventClickEvent");
- }
-
- // these delegates are required to keep context
- this._mouseMoveDelegate = function(event) {
- return that._mouseMove(event);
- };
- this._mouseUpDelegate = function(event) {
- return that._mouseUp(event);
- };
-
- this.document
- .bind( "mousemove." + this.widgetName, this._mouseMoveDelegate )
- .bind( "mouseup." + this.widgetName, this._mouseUpDelegate );
-
- event.preventDefault();
-
- mouseHandled = true;
- return true;
- },
-
- _mouseMove: function(event) {
- // Only check for mouseups outside the document if you've moved inside the document
- // at least once. This prevents the firing of mouseup in the case of IE<9, which will
- // fire a mousemove event if content is placed under the cursor. See #7778
- // Support: IE <9
- if ( this._mouseMoved ) {
- // IE mouseup check - mouseup happened when mouse was out of window
- if ($.ui.ie && ( !document.documentMode || document.documentMode < 9 ) && !event.button) {
- return this._mouseUp(event);
-
- // Iframe mouseup check - mouseup occurred in another document
- } else if ( !event.which ) {
- return this._mouseUp( event );
- }
- }
-
- if ( event.which || event.button ) {
- this._mouseMoved = true;
- }
-
- if (this._mouseStarted) {
- this._mouseDrag(event);
- return event.preventDefault();
- }
-
- if (this._mouseDistanceMet(event) && this._mouseDelayMet(event)) {
- this._mouseStarted =
- (this._mouseStart(this._mouseDownEvent, event) !== false);
- (this._mouseStarted ? this._mouseDrag(event) : this._mouseUp(event));
- }
-
- return !this._mouseStarted;
- },
-
- _mouseUp: function(event) {
- this.document
- .unbind( "mousemove." + this.widgetName, this._mouseMoveDelegate )
- .unbind( "mouseup." + this.widgetName, this._mouseUpDelegate );
-
- if (this._mouseStarted) {
- this._mouseStarted = false;
-
- if (event.target === this._mouseDownEvent.target) {
- $.data(event.target, this.widgetName + ".preventClickEvent", true);
- }
-
- this._mouseStop(event);
- }
-
- mouseHandled = false;
- return false;
- },
-
- _mouseDistanceMet: function(event) {
- return (Math.max(
- Math.abs(this._mouseDownEvent.pageX - event.pageX),
- Math.abs(this._mouseDownEvent.pageY - event.pageY)
- ) >= this.options.distance
- );
- },
-
- _mouseDelayMet: function(/* event */) {
- return this.mouseDelayMet;
- },
-
- // These are placeholder methods, to be overriden by extending plugin
- _mouseStart: function(/* event */) {},
- _mouseDrag: function(/* event */) {},
- _mouseStop: function(/* event */) {},
- _mouseCapture: function(/* event */) { return true; }
-});
-
-
-/*!
- * jQuery UI Position 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/position/
- */
-
-(function() {
-
-$.ui = $.ui || {};
-
-var cachedScrollbarWidth, supportsOffsetFractions,
- max = Math.max,
- abs = Math.abs,
- round = Math.round,
- rhorizontal = /left|center|right/,
- rvertical = /top|center|bottom/,
- roffset = /[\+\-]\d+(\.[\d]+)?%?/,
- rposition = /^\w+/,
- rpercent = /%$/,
- _position = $.fn.position;
-
-function getOffsets( offsets, width, height ) {
- return [
- parseFloat( offsets[ 0 ] ) * ( rpercent.test( offsets[ 0 ] ) ? width / 100 : 1 ),
- parseFloat( offsets[ 1 ] ) * ( rpercent.test( offsets[ 1 ] ) ? height / 100 : 1 )
- ];
-}
-
-function parseCss( element, property ) {
- return parseInt( $.css( element, property ), 10 ) || 0;
-}
-
-function getDimensions( elem ) {
- var raw = elem[0];
- if ( raw.nodeType === 9 ) {
- return {
- width: elem.width(),
- height: elem.height(),
- offset: { top: 0, left: 0 }
- };
- }
- if ( $.isWindow( raw ) ) {
- return {
- width: elem.width(),
- height: elem.height(),
- offset: { top: elem.scrollTop(), left: elem.scrollLeft() }
- };
- }
- if ( raw.preventDefault ) {
- return {
- width: 0,
- height: 0,
- offset: { top: raw.pageY, left: raw.pageX }
- };
- }
- return {
- width: elem.outerWidth(),
- height: elem.outerHeight(),
- offset: elem.offset()
- };
-}
-
-$.position = {
- scrollbarWidth: function() {
- if ( cachedScrollbarWidth !== undefined ) {
- return cachedScrollbarWidth;
- }
- var w1, w2,
- div = $( "<div style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>" ),
- innerDiv = div.children()[0];
-
- $( "body" ).append( div );
- w1 = innerDiv.offsetWidth;
- div.css( "overflow", "scroll" );
-
- w2 = innerDiv.offsetWidth;
-
- if ( w1 === w2 ) {
- w2 = div[0].clientWidth;
- }
-
- div.remove();
-
- return (cachedScrollbarWidth = w1 - w2);
- },
- getScrollInfo: function( within ) {
- var overflowX = within.isWindow || within.isDocument ? "" :
- within.element.css( "overflow-x" ),
- overflowY = within.isWindow || within.isDocument ? "" :
- within.element.css( "overflow-y" ),
- hasOverflowX = overflowX === "scroll" ||
- ( overflowX === "auto" && within.width < within.element[0].scrollWidth ),
- hasOverflowY = overflowY === "scroll" ||
- ( overflowY === "auto" && within.height < within.element[0].scrollHeight );
- return {
- width: hasOverflowY ? $.position.scrollbarWidth() : 0,
- height: hasOverflowX ? $.position.scrollbarWidth() : 0
- };
- },
- getWithinInfo: function( element ) {
- var withinElement = $( element || window ),
- isWindow = $.isWindow( withinElement[0] ),
- isDocument = !!withinElement[ 0 ] && withinElement[ 0 ].nodeType === 9;
- return {
- element: withinElement,
- isWindow: isWindow,
- isDocument: isDocument,
- offset: withinElement.offset() || { left: 0, top: 0 },
- scrollLeft: withinElement.scrollLeft(),
- scrollTop: withinElement.scrollTop(),
-
- // support: jQuery 1.6.x
- // jQuery 1.6 doesn't support .outerWidth/Height() on documents or windows
- width: isWindow || isDocument ? withinElement.width() : withinElement.outerWidth(),
- height: isWindow || isDocument ? withinElement.height() : withinElement.outerHeight()
- };
- }
-};
-
-$.fn.position = function( options ) {
- if ( !options || !options.of ) {
- return _position.apply( this, arguments );
- }
-
- // make a copy, we don't want to modify arguments
- options = $.extend( {}, options );
-
- var atOffset, targetWidth, targetHeight, targetOffset, basePosition, dimensions,
- target = $( options.of ),
- within = $.position.getWithinInfo( options.within ),
- scrollInfo = $.position.getScrollInfo( within ),
- collision = ( options.collision || "flip" ).split( " " ),
- offsets = {};
-
- dimensions = getDimensions( target );
- if ( target[0].preventDefault ) {
- // force left top to allow flipping
- options.at = "left top";
- }
- targetWidth = dimensions.width;
- targetHeight = dimensions.height;
- targetOffset = dimensions.offset;
- // clone to reuse original targetOffset later
- basePosition = $.extend( {}, targetOffset );
-
- // force my and at to have valid horizontal and vertical positions
- // if a value is missing or invalid, it will be converted to center
- $.each( [ "my", "at" ], function() {
- var pos = ( options[ this ] || "" ).split( " " ),
- horizontalOffset,
- verticalOffset;
-
- if ( pos.length === 1) {
- pos = rhorizontal.test( pos[ 0 ] ) ?
- pos.concat( [ "center" ] ) :
- rvertical.test( pos[ 0 ] ) ?
- [ "center" ].concat( pos ) :
- [ "center", "center" ];
- }
- pos[ 0 ] = rhorizontal.test( pos[ 0 ] ) ? pos[ 0 ] : "center";
- pos[ 1 ] = rvertical.test( pos[ 1 ] ) ? pos[ 1 ] : "center";
-
- // calculate offsets
- horizontalOffset = roffset.exec( pos[ 0 ] );
- verticalOffset = roffset.exec( pos[ 1 ] );
- offsets[ this ] = [
- horizontalOffset ? horizontalOffset[ 0 ] : 0,
- verticalOffset ? verticalOffset[ 0 ] : 0
- ];
-
- // reduce to just the positions without the offsets
- options[ this ] = [
- rposition.exec( pos[ 0 ] )[ 0 ],
- rposition.exec( pos[ 1 ] )[ 0 ]
- ];
- });
-
- // normalize collision option
- if ( collision.length === 1 ) {
- collision[ 1 ] = collision[ 0 ];
- }
-
- if ( options.at[ 0 ] === "right" ) {
- basePosition.left += targetWidth;
- } else if ( options.at[ 0 ] === "center" ) {
- basePosition.left += targetWidth / 2;
- }
-
- if ( options.at[ 1 ] === "bottom" ) {
- basePosition.top += targetHeight;
- } else if ( options.at[ 1 ] === "center" ) {
- basePosition.top += targetHeight / 2;
- }
-
- atOffset = getOffsets( offsets.at, targetWidth, targetHeight );
- basePosition.left += atOffset[ 0 ];
- basePosition.top += atOffset[ 1 ];
-
- return this.each(function() {
- var collisionPosition, using,
- elem = $( this ),
- elemWidth = elem.outerWidth(),
- elemHeight = elem.outerHeight(),
- marginLeft = parseCss( this, "marginLeft" ),
- marginTop = parseCss( this, "marginTop" ),
- collisionWidth = elemWidth + marginLeft + parseCss( this, "marginRight" ) + scrollInfo.width,
- collisionHeight = elemHeight + marginTop + parseCss( this, "marginBottom" ) + scrollInfo.height,
- position = $.extend( {}, basePosition ),
- myOffset = getOffsets( offsets.my, elem.outerWidth(), elem.outerHeight() );
-
- if ( options.my[ 0 ] === "right" ) {
- position.left -= elemWidth;
- } else if ( options.my[ 0 ] === "center" ) {
- position.left -= elemWidth / 2;
- }
-
- if ( options.my[ 1 ] === "bottom" ) {
- position.top -= elemHeight;
- } else if ( options.my[ 1 ] === "center" ) {
- position.top -= elemHeight / 2;
- }
-
- position.left += myOffset[ 0 ];
- position.top += myOffset[ 1 ];
-
- // if the browser doesn't support fractions, then round for consistent results
- if ( !supportsOffsetFractions ) {
- position.left = round( position.left );
- position.top = round( position.top );
- }
-
- collisionPosition = {
- marginLeft: marginLeft,
- marginTop: marginTop
- };
-
- $.each( [ "left", "top" ], function( i, dir ) {
- if ( $.ui.position[ collision[ i ] ] ) {
- $.ui.position[ collision[ i ] ][ dir ]( position, {
- targetWidth: targetWidth,
- targetHeight: targetHeight,
- elemWidth: elemWidth,
- elemHeight: elemHeight,
- collisionPosition: collisionPosition,
- collisionWidth: collisionWidth,
- collisionHeight: collisionHeight,
- offset: [ atOffset[ 0 ] + myOffset[ 0 ], atOffset [ 1 ] + myOffset[ 1 ] ],
- my: options.my,
- at: options.at,
- within: within,
- elem: elem
- });
- }
- });
-
- if ( options.using ) {
- // adds feedback as second argument to using callback, if present
- using = function( props ) {
- var left = targetOffset.left - position.left,
- right = left + targetWidth - elemWidth,
- top = targetOffset.top - position.top,
- bottom = top + targetHeight - elemHeight,
- feedback = {
- target: {
- element: target,
- left: targetOffset.left,
- top: targetOffset.top,
- width: targetWidth,
- height: targetHeight
- },
- element: {
- element: elem,
- left: position.left,
- top: position.top,
- width: elemWidth,
- height: elemHeight
- },
- horizontal: right < 0 ? "left" : left > 0 ? "right" : "center",
- vertical: bottom < 0 ? "top" : top > 0 ? "bottom" : "middle"
- };
- if ( targetWidth < elemWidth && abs( left + right ) < targetWidth ) {
- feedback.horizontal = "center";
- }
- if ( targetHeight < elemHeight && abs( top + bottom ) < targetHeight ) {
- feedback.vertical = "middle";
- }
- if ( max( abs( left ), abs( right ) ) > max( abs( top ), abs( bottom ) ) ) {
- feedback.important = "horizontal";
- } else {
- feedback.important = "vertical";
- }
- options.using.call( this, props, feedback );
- };
- }
-
- elem.offset( $.extend( position, { using: using } ) );
- });
-};
-
-$.ui.position = {
- fit: {
- left: function( position, data ) {
- var within = data.within,
- withinOffset = within.isWindow ? within.scrollLeft : within.offset.left,
- outerWidth = within.width,
- collisionPosLeft = position.left - data.collisionPosition.marginLeft,
- overLeft = withinOffset - collisionPosLeft,
- overRight = collisionPosLeft + data.collisionWidth - outerWidth - withinOffset,
- newOverRight;
-
- // element is wider than within
- if ( data.collisionWidth > outerWidth ) {
- // element is initially over the left side of within
- if ( overLeft > 0 && overRight <= 0 ) {
- newOverRight = position.left + overLeft + data.collisionWidth - outerWidth - withinOffset;
- position.left += overLeft - newOverRight;
- // element is initially over right side of within
- } else if ( overRight > 0 && overLeft <= 0 ) {
- position.left = withinOffset;
- // element is initially over both left and right sides of within
- } else {
- if ( overLeft > overRight ) {
- position.left = withinOffset + outerWidth - data.collisionWidth;
- } else {
- position.left = withinOffset;
- }
- }
- // too far left -> align with left edge
- } else if ( overLeft > 0 ) {
- position.left += overLeft;
- // too far right -> align with right edge
- } else if ( overRight > 0 ) {
- position.left -= overRight;
- // adjust based on position and margin
- } else {
- position.left = max( position.left - collisionPosLeft, position.left );
- }
- },
- top: function( position, data ) {
- var within = data.within,
- withinOffset = within.isWindow ? within.scrollTop : within.offset.top,
- outerHeight = data.within.height,
- collisionPosTop = position.top - data.collisionPosition.marginTop,
- overTop = withinOffset - collisionPosTop,
- overBottom = collisionPosTop + data.collisionHeight - outerHeight - withinOffset,
- newOverBottom;
-
- // element is taller than within
- if ( data.collisionHeight > outerHeight ) {
- // element is initially over the top of within
- if ( overTop > 0 && overBottom <= 0 ) {
- newOverBottom = position.top + overTop + data.collisionHeight - outerHeight - withinOffset;
- position.top += overTop - newOverBottom;
- // element is initially over bottom of within
- } else if ( overBottom > 0 && overTop <= 0 ) {
- position.top = withinOffset;
- // element is initially over both top and bottom of within
- } else {
- if ( overTop > overBottom ) {
- position.top = withinOffset + outerHeight - data.collisionHeight;
- } else {
- position.top = withinOffset;
- }
- }
- // too far up -> align with top
- } else if ( overTop > 0 ) {
- position.top += overTop;
- // too far down -> align with bottom edge
- } else if ( overBottom > 0 ) {
- position.top -= overBottom;
- // adjust based on position and margin
- } else {
- position.top = max( position.top - collisionPosTop, position.top );
- }
- }
- },
- flip: {
- left: function( position, data ) {
- var within = data.within,
- withinOffset = within.offset.left + within.scrollLeft,
- outerWidth = within.width,
- offsetLeft = within.isWindow ? within.scrollLeft : within.offset.left,
- collisionPosLeft = position.left - data.collisionPosition.marginLeft,
- overLeft = collisionPosLeft - offsetLeft,
- overRight = collisionPosLeft + data.collisionWidth - outerWidth - offsetLeft,
- myOffset = data.my[ 0 ] === "left" ?
- -data.elemWidth :
- data.my[ 0 ] === "right" ?
- data.elemWidth :
- 0,
- atOffset = data.at[ 0 ] === "left" ?
- data.targetWidth :
- data.at[ 0 ] === "right" ?
- -data.targetWidth :
- 0,
- offset = -2 * data.offset[ 0 ],
- newOverRight,
- newOverLeft;
-
- if ( overLeft < 0 ) {
- newOverRight = position.left + myOffset + atOffset + offset + data.collisionWidth - outerWidth - withinOffset;
- if ( newOverRight < 0 || newOverRight < abs( overLeft ) ) {
- position.left += myOffset + atOffset + offset;
- }
- } else if ( overRight > 0 ) {
- newOverLeft = position.left - data.collisionPosition.marginLeft + myOffset + atOffset + offset - offsetLeft;
- if ( newOverLeft > 0 || abs( newOverLeft ) < overRight ) {
- position.left += myOffset + atOffset + offset;
- }
- }
- },
- top: function( position, data ) {
- var within = data.within,
- withinOffset = within.offset.top + within.scrollTop,
- outerHeight = within.height,
- offsetTop = within.isWindow ? within.scrollTop : within.offset.top,
- collisionPosTop = position.top - data.collisionPosition.marginTop,
- overTop = collisionPosTop - offsetTop,
- overBottom = collisionPosTop + data.collisionHeight - outerHeight - offsetTop,
- top = data.my[ 1 ] === "top",
- myOffset = top ?
- -data.elemHeight :
- data.my[ 1 ] === "bottom" ?
- data.elemHeight :
- 0,
- atOffset = data.at[ 1 ] === "top" ?
- data.targetHeight :
- data.at[ 1 ] === "bottom" ?
- -data.targetHeight :
- 0,
- offset = -2 * data.offset[ 1 ],
- newOverTop,
- newOverBottom;
- if ( overTop < 0 ) {
- newOverBottom = position.top + myOffset + atOffset + offset + data.collisionHeight - outerHeight - withinOffset;
- if ( newOverBottom < 0 || newOverBottom < abs( overTop ) ) {
- position.top += myOffset + atOffset + offset;
- }
- } else if ( overBottom > 0 ) {
- newOverTop = position.top - data.collisionPosition.marginTop + myOffset + atOffset + offset - offsetTop;
- if ( newOverTop > 0 || abs( newOverTop ) < overBottom ) {
- position.top += myOffset + atOffset + offset;
- }
- }
- }
- },
- flipfit: {
- left: function() {
- $.ui.position.flip.left.apply( this, arguments );
- $.ui.position.fit.left.apply( this, arguments );
- },
- top: function() {
- $.ui.position.flip.top.apply( this, arguments );
- $.ui.position.fit.top.apply( this, arguments );
- }
- }
-};
-
-// fraction support test
-(function() {
- var testElement, testElementParent, testElementStyle, offsetLeft, i,
- body = document.getElementsByTagName( "body" )[ 0 ],
- div = document.createElement( "div" );
-
- //Create a "fake body" for testing based on method used in jQuery.support
- testElement = document.createElement( body ? "div" : "body" );
- testElementStyle = {
- visibility: "hidden",
- width: 0,
- height: 0,
- border: 0,
- margin: 0,
- background: "none"
- };
- if ( body ) {
- $.extend( testElementStyle, {
- position: "absolute",
- left: "-1000px",
- top: "-1000px"
- });
- }
- for ( i in testElementStyle ) {
- testElement.style[ i ] = testElementStyle[ i ];
- }
- testElement.appendChild( div );
- testElementParent = body || document.documentElement;
- testElementParent.insertBefore( testElement, testElementParent.firstChild );
-
- div.style.cssText = "position: absolute; left: 10.7432222px;";
-
- offsetLeft = $( div ).offset().left;
- supportsOffsetFractions = offsetLeft > 10 && offsetLeft < 11;
-
- testElement.innerHTML = "";
- testElementParent.removeChild( testElement );
-})();
-
-})();
-
-var position = $.ui.position;
-
-
-/*!
- * jQuery UI Draggable 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/draggable/
- */
-
-
-$.widget("ui.draggable", $.ui.mouse, {
- version: "1.11.3",
- widgetEventPrefix: "drag",
- options: {
- addClasses: true,
- appendTo: "parent",
- axis: false,
- connectToSortable: false,
- containment: false,
- cursor: "auto",
- cursorAt: false,
- grid: false,
- handle: false,
- helper: "original",
- iframeFix: false,
- opacity: false,
- refreshPositions: false,
- revert: false,
- revertDuration: 500,
- scope: "default",
- scroll: true,
- scrollSensitivity: 20,
- scrollSpeed: 20,
- snap: false,
- snapMode: "both",
- snapTolerance: 20,
- stack: false,
- zIndex: false,
-
- // callbacks
- drag: null,
- start: null,
- stop: null
- },
- _create: function() {
-
- if ( this.options.helper === "original" ) {
- this._setPositionRelative();
- }
- if (this.options.addClasses){
- this.element.addClass("ui-draggable");
- }
- if (this.options.disabled){
- this.element.addClass("ui-draggable-disabled");
- }
- this._setHandleClassName();
-
- this._mouseInit();
- },
-
- _setOption: function( key, value ) {
- this._super( key, value );
- if ( key === "handle" ) {
- this._removeHandleClassName();
- this._setHandleClassName();
- }
- },
-
- _destroy: function() {
- if ( ( this.helper || this.element ).is( ".ui-draggable-dragging" ) ) {
- this.destroyOnClear = true;
- return;
- }
- this.element.removeClass( "ui-draggable ui-draggable-dragging ui-draggable-disabled" );
- this._removeHandleClassName();
- this._mouseDestroy();
- },
-
- _mouseCapture: function(event) {
- var o = this.options;
-
- this._blurActiveElement( event );
-
- // among others, prevent a drag on a resizable-handle
- if (this.helper || o.disabled || $(event.target).closest(".ui-resizable-handle").length > 0) {
- return false;
- }
-
- //Quit if we're not on a valid handle
- this.handle = this._getHandle(event);
- if (!this.handle) {
- return false;
- }
-
- this._blockFrames( o.iframeFix === true ? "iframe" : o.iframeFix );
-
- return true;
-
- },
-
- _blockFrames: function( selector ) {
- this.iframeBlocks = this.document.find( selector ).map(function() {
- var iframe = $( this );
-
- return $( "<div>" )
- .css( "position", "absolute" )
- .appendTo( iframe.parent() )
- .outerWidth( iframe.outerWidth() )
- .outerHeight( iframe.outerHeight() )
- .offset( iframe.offset() )[ 0 ];
- });
- },
-
- _unblockFrames: function() {
- if ( this.iframeBlocks ) {
- this.iframeBlocks.remove();
- delete this.iframeBlocks;
- }
- },
-
- _blurActiveElement: function( event ) {
- var document = this.document[ 0 ];
-
- // Only need to blur if the event occurred on the draggable itself, see #10527
- if ( !this.handleElement.is( event.target ) ) {
- return;
- }
-
- // support: IE9
- // IE9 throws an "Unspecified error" accessing document.activeElement from an <iframe>
- try {
-
- // Support: IE9, IE10
- // If the <body> is blurred, IE will switch windows, see #9520
- if ( document.activeElement && document.activeElement.nodeName.toLowerCase() !== "body" ) {
-
- // Blur any element that currently has focus, see #4261
- $( document.activeElement ).blur();
- }
- } catch ( error ) {}
- },
-
- _mouseStart: function(event) {
-
- var o = this.options;
-
- //Create and append the visible helper
- this.helper = this._createHelper(event);
-
- this.helper.addClass("ui-draggable-dragging");
-
- //Cache the helper size
- this._cacheHelperProportions();
-
- //If ddmanager is used for droppables, set the global draggable
- if ($.ui.ddmanager) {
- $.ui.ddmanager.current = this;
- }
-
- /*
- * - Position generation -
- * This block generates everything position related - it's the core of draggables.
- */
-
- //Cache the margins of the original element
- this._cacheMargins();
-
- //Store the helper's css position
- this.cssPosition = this.helper.css( "position" );
- this.scrollParent = this.helper.scrollParent( true );
- this.offsetParent = this.helper.offsetParent();
- this.hasFixedAncestor = this.helper.parents().filter(function() {
- return $( this ).css( "position" ) === "fixed";
- }).length > 0;
-
- //The element's absolute position on the page minus margins
- this.positionAbs = this.element.offset();
- this._refreshOffsets( event );
-
- //Generate the original position
- this.originalPosition = this.position = this._generatePosition( event, false );
- this.originalPageX = event.pageX;
- this.originalPageY = event.pageY;
-
- //Adjust the mouse offset relative to the helper if "cursorAt" is supplied
- (o.cursorAt && this._adjustOffsetFromHelper(o.cursorAt));
-
- //Set a containment if given in the options
- this._setContainment();
-
- //Trigger event + callbacks
- if (this._trigger("start", event) === false) {
- this._clear();
- return false;
- }
-
- //Recache the helper size
- this._cacheHelperProportions();
-
- //Prepare the droppable offsets
- if ($.ui.ddmanager && !o.dropBehaviour) {
- $.ui.ddmanager.prepareOffsets(this, event);
- }
-
- // Reset helper's right/bottom css if they're set and set explicit width/height instead
- // as this prevents resizing of elements with right/bottom set (see #7772)
- this._normalizeRightBottom();
-
- this._mouseDrag(event, true); //Execute the drag once - this causes the helper not to be visible before getting its correct position
-
- //If the ddmanager is used for droppables, inform the manager that dragging has started (see #5003)
- if ( $.ui.ddmanager ) {
- $.ui.ddmanager.dragStart(this, event);
- }
-
- return true;
- },
-
- _refreshOffsets: function( event ) {
- this.offset = {
- top: this.positionAbs.top - this.margins.top,
- left: this.positionAbs.left - this.margins.left,
- scroll: false,
- parent: this._getParentOffset(),
- relative: this._getRelativeOffset()
- };
-
- this.offset.click = {
- left: event.pageX - this.offset.left,
- top: event.pageY - this.offset.top
- };
- },
-
- _mouseDrag: function(event, noPropagation) {
- // reset any necessary cached properties (see #5009)
- if ( this.hasFixedAncestor ) {
- this.offset.parent = this._getParentOffset();
- }
-
- //Compute the helpers position
- this.position = this._generatePosition( event, true );
- this.positionAbs = this._convertPositionTo("absolute");
-
- //Call plugins and callbacks and use the resulting position if something is returned
- if (!noPropagation) {
- var ui = this._uiHash();
- if (this._trigger("drag", event, ui) === false) {
- this._mouseUp({});
- return false;
- }
- this.position = ui.position;
- }
-
- this.helper[ 0 ].style.left = this.position.left + "px";
- this.helper[ 0 ].style.top = this.position.top + "px";
-
- if ($.ui.ddmanager) {
- $.ui.ddmanager.drag(this, event);
- }
-
- return false;
- },
-
- _mouseStop: function(event) {
-
- //If we are using droppables, inform the manager about the drop
- var that = this,
- dropped = false;
- if ($.ui.ddmanager && !this.options.dropBehaviour) {
- dropped = $.ui.ddmanager.drop(this, event);
- }
-
- //if a drop comes from outside (a sortable)
- if (this.dropped) {
- dropped = this.dropped;
- this.dropped = false;
- }
-
- if ((this.options.revert === "invalid" && !dropped) || (this.options.revert === "valid" && dropped) || this.options.revert === true || ($.isFunction(this.options.revert) && this.options.revert.call(this.element, dropped))) {
- $(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10), function() {
- if (that._trigger("stop", event) !== false) {
- that._clear();
- }
- });
- } else {
- if (this._trigger("stop", event) !== false) {
- this._clear();
- }
- }
-
- return false;
- },
-
- _mouseUp: function( event ) {
- this._unblockFrames();
-
- //If the ddmanager is used for droppables, inform the manager that dragging has stopped (see #5003)
- if ( $.ui.ddmanager ) {
- $.ui.ddmanager.dragStop(this, event);
- }
-
- // Only need to focus if the event occurred on the draggable itself, see #10527
- if ( this.handleElement.is( event.target ) ) {
- // The interaction is over; whether or not the click resulted in a drag, focus the element
- this.element.focus();
- }
-
- return $.ui.mouse.prototype._mouseUp.call(this, event);
- },
-
- cancel: function() {
-
- if (this.helper.is(".ui-draggable-dragging")) {
- this._mouseUp({});
- } else {
- this._clear();
- }
-
- return this;
-
- },
-
- _getHandle: function(event) {
- return this.options.handle ?
- !!$( event.target ).closest( this.element.find( this.options.handle ) ).length :
- true;
- },
-
- _setHandleClassName: function() {
- this.handleElement = this.options.handle ?
- this.element.find( this.options.handle ) : this.element;
- this.handleElement.addClass( "ui-draggable-handle" );
- },
-
- _removeHandleClassName: function() {
- this.handleElement.removeClass( "ui-draggable-handle" );
- },
-
- _createHelper: function(event) {
-
- var o = this.options,
- helperIsFunction = $.isFunction( o.helper ),
- helper = helperIsFunction ?
- $( o.helper.apply( this.element[ 0 ], [ event ] ) ) :
- ( o.helper === "clone" ?
- this.element.clone().removeAttr( "id" ) :
- this.element );
-
- if (!helper.parents("body").length) {
- helper.appendTo((o.appendTo === "parent" ? this.element[0].parentNode : o.appendTo));
- }
-
- // http://bugs.jqueryui.com/ticket/9446
- // a helper function can return the original element
- // which wouldn't have been set to relative in _create
- if ( helperIsFunction && helper[ 0 ] === this.element[ 0 ] ) {
- this._setPositionRelative();
- }
-
- if (helper[0] !== this.element[0] && !(/(fixed|absolute)/).test(helper.css("position"))) {
- helper.css("position", "absolute");
- }
-
- return helper;
-
- },
-
- _setPositionRelative: function() {
- if ( !( /^(?:r|a|f)/ ).test( this.element.css( "position" ) ) ) {
- this.element[ 0 ].style.position = "relative";
- }
- },
-
- _adjustOffsetFromHelper: function(obj) {
- if (typeof obj === "string") {
- obj = obj.split(" ");
- }
- if ($.isArray(obj)) {
- obj = { left: +obj[0], top: +obj[1] || 0 };
- }
- if ("left" in obj) {
- this.offset.click.left = obj.left + this.margins.left;
- }
- if ("right" in obj) {
- this.offset.click.left = this.helperProportions.width - obj.right + this.margins.left;
- }
- if ("top" in obj) {
- this.offset.click.top = obj.top + this.margins.top;
- }
- if ("bottom" in obj) {
- this.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top;
- }
- },
-
- _isRootNode: function( element ) {
- return ( /(html|body)/i ).test( element.tagName ) || element === this.document[ 0 ];
- },
-
- _getParentOffset: function() {
-
- //Get the offsetParent and cache its position
- var po = this.offsetParent.offset(),
- document = this.document[ 0 ];
-
- // This is a special case where we need to modify a offset calculated on start, since the following happened:
- // 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent
- // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that
- // the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag
- if (this.cssPosition === "absolute" && this.scrollParent[0] !== document && $.contains(this.scrollParent[0], this.offsetParent[0])) {
- po.left += this.scrollParent.scrollLeft();
- po.top += this.scrollParent.scrollTop();
- }
-
- if ( this._isRootNode( this.offsetParent[ 0 ] ) ) {
- po = { top: 0, left: 0 };
- }
-
- return {
- top: po.top + (parseInt(this.offsetParent.css("borderTopWidth"), 10) || 0),
- left: po.left + (parseInt(this.offsetParent.css("borderLeftWidth"), 10) || 0)
- };
-
- },
-
- _getRelativeOffset: function() {
- if ( this.cssPosition !== "relative" ) {
- return { top: 0, left: 0 };
- }
-
- var p = this.element.position(),
- scrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] );
-
- return {
- top: p.top - ( parseInt(this.helper.css( "top" ), 10) || 0 ) + ( !scrollIsRootNode ? this.scrollParent.scrollTop() : 0 ),
- left: p.left - ( parseInt(this.helper.css( "left" ), 10) || 0 ) + ( !scrollIsRootNode ? this.scrollParent.scrollLeft() : 0 )
- };
-
- },
-
- _cacheMargins: function() {
- this.margins = {
- left: (parseInt(this.element.css("marginLeft"), 10) || 0),
- top: (parseInt(this.element.css("marginTop"), 10) || 0),
- right: (parseInt(this.element.css("marginRight"), 10) || 0),
- bottom: (parseInt(this.element.css("marginBottom"), 10) || 0)
- };
- },
-
- _cacheHelperProportions: function() {
- this.helperProportions = {
- width: this.helper.outerWidth(),
- height: this.helper.outerHeight()
- };
- },
-
- _setContainment: function() {
-
- var isUserScrollable, c, ce,
- o = this.options,
- document = this.document[ 0 ];
-
- this.relativeContainer = null;
-
- if ( !o.containment ) {
- this.containment = null;
- return;
- }
-
- if ( o.containment === "window" ) {
- this.containment = [
- $( window ).scrollLeft() - this.offset.relative.left - this.offset.parent.left,
- $( window ).scrollTop() - this.offset.relative.top - this.offset.parent.top,
- $( window ).scrollLeft() + $( window ).width() - this.helperProportions.width - this.margins.left,
- $( window ).scrollTop() + ( $( window ).height() || document.body.parentNode.scrollHeight ) - this.helperProportions.height - this.margins.top
- ];
- return;
- }
-
- if ( o.containment === "document") {
- this.containment = [
- 0,
- 0,
- $( document ).width() - this.helperProportions.width - this.margins.left,
- ( $( document ).height() || document.body.parentNode.scrollHeight ) - this.helperProportions.height - this.margins.top
- ];
- return;
- }
-
- if ( o.containment.constructor === Array ) {
- this.containment = o.containment;
- return;
- }
-
- if ( o.containment === "parent" ) {
- o.containment = this.helper[ 0 ].parentNode;
- }
-
- c = $( o.containment );
- ce = c[ 0 ];
-
- if ( !ce ) {
- return;
- }
-
- isUserScrollable = /(scroll|auto)/.test( c.css( "overflow" ) );
-
- this.containment = [
- ( parseInt( c.css( "borderLeftWidth" ), 10 ) || 0 ) + ( parseInt( c.css( "paddingLeft" ), 10 ) || 0 ),
- ( parseInt( c.css( "borderTopWidth" ), 10 ) || 0 ) + ( parseInt( c.css( "paddingTop" ), 10 ) || 0 ),
- ( isUserScrollable ? Math.max( ce.scrollWidth, ce.offsetWidth ) : ce.offsetWidth ) -
- ( parseInt( c.css( "borderRightWidth" ), 10 ) || 0 ) -
- ( parseInt( c.css( "paddingRight" ), 10 ) || 0 ) -
- this.helperProportions.width -
- this.margins.left -
- this.margins.right,
- ( isUserScrollable ? Math.max( ce.scrollHeight, ce.offsetHeight ) : ce.offsetHeight ) -
- ( parseInt( c.css( "borderBottomWidth" ), 10 ) || 0 ) -
- ( parseInt( c.css( "paddingBottom" ), 10 ) || 0 ) -
- this.helperProportions.height -
- this.margins.top -
- this.margins.bottom
- ];
- this.relativeContainer = c;
- },
-
- _convertPositionTo: function(d, pos) {
-
- if (!pos) {
- pos = this.position;
- }
-
- var mod = d === "absolute" ? 1 : -1,
- scrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] );
-
- return {
- top: (
- pos.top + // The absolute mouse position
- this.offset.relative.top * mod + // Only for relative positioned nodes: Relative offset from element to offset parent
- this.offset.parent.top * mod - // The offsetParent's offset without borders (offset + border)
- ( ( this.cssPosition === "fixed" ? -this.offset.scroll.top : ( scrollIsRootNode ? 0 : this.offset.scroll.top ) ) * mod)
- ),
- left: (
- pos.left + // The absolute mouse position
- this.offset.relative.left * mod + // Only for relative positioned nodes: Relative offset from element to offset parent
- this.offset.parent.left * mod - // The offsetParent's offset without borders (offset + border)
- ( ( this.cssPosition === "fixed" ? -this.offset.scroll.left : ( scrollIsRootNode ? 0 : this.offset.scroll.left ) ) * mod)
- )
- };
-
- },
-
- _generatePosition: function( event, constrainPosition ) {
-
- var containment, co, top, left,
- o = this.options,
- scrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] ),
- pageX = event.pageX,
- pageY = event.pageY;
-
- // Cache the scroll
- if ( !scrollIsRootNode || !this.offset.scroll ) {
- this.offset.scroll = {
- top: this.scrollParent.scrollTop(),
- left: this.scrollParent.scrollLeft()
- };
- }
-
- /*
- * - Position constraining -
- * Constrain the position to a mix of grid, containment.
- */
-
- // If we are not dragging yet, we won't check for options
- if ( constrainPosition ) {
- if ( this.containment ) {
- if ( this.relativeContainer ){
- co = this.relativeContainer.offset();
- containment = [
- this.containment[ 0 ] + co.left,
- this.containment[ 1 ] + co.top,
- this.containment[ 2 ] + co.left,
- this.containment[ 3 ] + co.top
- ];
- } else {
- containment = this.containment;
- }
-
- if (event.pageX - this.offset.click.left < containment[0]) {
- pageX = containment[0] + this.offset.click.left;
- }
- if (event.pageY - this.offset.click.top < containment[1]) {
- pageY = containment[1] + this.offset.click.top;
- }
- if (event.pageX - this.offset.click.left > containment[2]) {
- pageX = containment[2] + this.offset.click.left;
- }
- if (event.pageY - this.offset.click.top > containment[3]) {
- pageY = containment[3] + this.offset.click.top;
- }
- }
-
- if (o.grid) {
- //Check for grid elements set to 0 to prevent divide by 0 error causing invalid argument errors in IE (see ticket #6950)
- top = o.grid[1] ? this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1] : this.originalPageY;
- pageY = containment ? ((top - this.offset.click.top >= containment[1] || top - this.offset.click.top > containment[3]) ? top : ((top - this.offset.click.top >= containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top;
-
- left = o.grid[0] ? this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0] : this.originalPageX;
- pageX = containment ? ((left - this.offset.click.left >= containment[0] || left - this.offset.click.left > containment[2]) ? left : ((left - this.offset.click.left >= containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left;
- }
-
- if ( o.axis === "y" ) {
- pageX = this.originalPageX;
- }
-
- if ( o.axis === "x" ) {
- pageY = this.originalPageY;
- }
- }
-
- return {
- top: (
- pageY - // The absolute mouse position
- this.offset.click.top - // Click offset (relative to the element)
- this.offset.relative.top - // Only for relative positioned nodes: Relative offset from element to offset parent
- this.offset.parent.top + // The offsetParent's offset without borders (offset + border)
- ( this.cssPosition === "fixed" ? -this.offset.scroll.top : ( scrollIsRootNode ? 0 : this.offset.scroll.top ) )
- ),
- left: (
- pageX - // The absolute mouse position
- this.offset.click.left - // Click offset (relative to the element)
- this.offset.relative.left - // Only for relative positioned nodes: Relative offset from element to offset parent
- this.offset.parent.left + // The offsetParent's offset without borders (offset + border)
- ( this.cssPosition === "fixed" ? -this.offset.scroll.left : ( scrollIsRootNode ? 0 : this.offset.scroll.left ) )
- )
- };
-
- },
-
- _clear: function() {
- this.helper.removeClass("ui-draggable-dragging");
- if (this.helper[0] !== this.element[0] && !this.cancelHelperRemoval) {
- this.helper.remove();
- }
- this.helper = null;
- this.cancelHelperRemoval = false;
- if ( this.destroyOnClear ) {
- this.destroy();
- }
- },
-
- _normalizeRightBottom: function() {
- if ( this.options.axis !== "y" && this.helper.css( "right" ) !== "auto" ) {
- this.helper.width( this.helper.width() );
- this.helper.css( "right", "auto" );
- }
- if ( this.options.axis !== "x" && this.helper.css( "bottom" ) !== "auto" ) {
- this.helper.height( this.helper.height() );
- this.helper.css( "bottom", "auto" );
- }
- },
-
- // From now on bulk stuff - mainly helpers
-
- _trigger: function( type, event, ui ) {
- ui = ui || this._uiHash();
- $.ui.plugin.call( this, type, [ event, ui, this ], true );
-
- // Absolute position and offset (see #6884 ) have to be recalculated after plugins
- if ( /^(drag|start|stop)/.test( type ) ) {
- this.positionAbs = this._convertPositionTo( "absolute" );
- ui.offset = this.positionAbs;
- }
- return $.Widget.prototype._trigger.call( this, type, event, ui );
- },
-
- plugins: {},
-
- _uiHash: function() {
- return {
- helper: this.helper,
- position: this.position,
- originalPosition: this.originalPosition,
- offset: this.positionAbs
- };
- }
-
-});
-
-$.ui.plugin.add( "draggable", "connectToSortable", {
- start: function( event, ui, draggable ) {
- var uiSortable = $.extend( {}, ui, {
- item: draggable.element
- });
-
- draggable.sortables = [];
- $( draggable.options.connectToSortable ).each(function() {
- var sortable = $( this ).sortable( "instance" );
-
- if ( sortable && !sortable.options.disabled ) {
- draggable.sortables.push( sortable );
-
- // refreshPositions is called at drag start to refresh the containerCache
- // which is used in drag. This ensures it's initialized and synchronized
- // with any changes that might have happened on the page since initialization.
- sortable.refreshPositions();
- sortable._trigger("activate", event, uiSortable);
- }
- });
- },
- stop: function( event, ui, draggable ) {
- var uiSortable = $.extend( {}, ui, {
- item: draggable.element
- });
-
- draggable.cancelHelperRemoval = false;
-
- $.each( draggable.sortables, function() {
- var sortable = this;
-
- if ( sortable.isOver ) {
- sortable.isOver = 0;
-
- // Allow this sortable to handle removing the helper
- draggable.cancelHelperRemoval = true;
- sortable.cancelHelperRemoval = false;
-
- // Use _storedCSS To restore properties in the sortable,
- // as this also handles revert (#9675) since the draggable
- // may have modified them in unexpected ways (#8809)
- sortable._storedCSS = {
- position: sortable.placeholder.css( "position" ),
- top: sortable.placeholder.css( "top" ),
- left: sortable.placeholder.css( "left" )
- };
-
- sortable._mouseStop(event);
-
- // Once drag has ended, the sortable should return to using
- // its original helper, not the shared helper from draggable
- sortable.options.helper = sortable.options._helper;
- } else {
- // Prevent this Sortable from removing the helper.
- // However, don't set the draggable to remove the helper
- // either as another connected Sortable may yet handle the removal.
- sortable.cancelHelperRemoval = true;
-
- sortable._trigger( "deactivate", event, uiSortable );
- }
- });
- },
- drag: function( event, ui, draggable ) {
- $.each( draggable.sortables, function() {
- var innermostIntersecting = false,
- sortable = this;
-
- // Copy over variables that sortable's _intersectsWith uses
- sortable.positionAbs = draggable.positionAbs;
- sortable.helperProportions = draggable.helperProportions;
- sortable.offset.click = draggable.offset.click;
-
- if ( sortable._intersectsWith( sortable.containerCache ) ) {
- innermostIntersecting = true;
-
- $.each( draggable.sortables, function() {
- // Copy over variables that sortable's _intersectsWith uses
- this.positionAbs = draggable.positionAbs;
- this.helperProportions = draggable.helperProportions;
- this.offset.click = draggable.offset.click;
-
- if ( this !== sortable &&
- this._intersectsWith( this.containerCache ) &&
- $.contains( sortable.element[ 0 ], this.element[ 0 ] ) ) {
- innermostIntersecting = false;
- }
-
- return innermostIntersecting;
- });
- }
-
- if ( innermostIntersecting ) {
- // If it intersects, we use a little isOver variable and set it once,
- // so that the move-in stuff gets fired only once.
- if ( !sortable.isOver ) {
- sortable.isOver = 1;
-
- sortable.currentItem = ui.helper
- .appendTo( sortable.element )
- .data( "ui-sortable-item", true );
-
- // Store helper option to later restore it
- sortable.options._helper = sortable.options.helper;
-
- sortable.options.helper = function() {
- return ui.helper[ 0 ];
- };
-
- // Fire the start events of the sortable with our passed browser event,
- // and our own helper (so it doesn't create a new one)
- event.target = sortable.currentItem[ 0 ];
- sortable._mouseCapture( event, true );
- sortable._mouseStart( event, true, true );
-
- // Because the browser event is way off the new appended portlet,
- // modify necessary variables to reflect the changes
- sortable.offset.click.top = draggable.offset.click.top;
- sortable.offset.click.left = draggable.offset.click.left;
- sortable.offset.parent.left -= draggable.offset.parent.left -
- sortable.offset.parent.left;
- sortable.offset.parent.top -= draggable.offset.parent.top -
- sortable.offset.parent.top;
-
- draggable._trigger( "toSortable", event );
-
- // Inform draggable that the helper is in a valid drop zone,
- // used solely in the revert option to handle "valid/invalid".
- draggable.dropped = sortable.element;
-
- // Need to refreshPositions of all sortables in the case that
- // adding to one sortable changes the location of the other sortables (#9675)
- $.each( draggable.sortables, function() {
- this.refreshPositions();
- });
-
- // hack so receive/update callbacks work (mostly)
- draggable.currentItem = draggable.element;
- sortable.fromOutside = draggable;
- }
-
- if ( sortable.currentItem ) {
- sortable._mouseDrag( event );
- // Copy the sortable's position because the draggable's can potentially reflect
- // a relative position, while sortable is always absolute, which the dragged
- // element has now become. (#8809)
- ui.position = sortable.position;
- }
- } else {
- // If it doesn't intersect with the sortable, and it intersected before,
- // we fake the drag stop of the sortable, but make sure it doesn't remove
- // the helper by using cancelHelperRemoval.
- if ( sortable.isOver ) {
-
- sortable.isOver = 0;
- sortable.cancelHelperRemoval = true;
-
- // Calling sortable's mouseStop would trigger a revert,
- // so revert must be temporarily false until after mouseStop is called.
- sortable.options._revert = sortable.options.revert;
- sortable.options.revert = false;
-
- sortable._trigger( "out", event, sortable._uiHash( sortable ) );
- sortable._mouseStop( event, true );
-
- // restore sortable behaviors that were modfied
- // when the draggable entered the sortable area (#9481)
- sortable.options.revert = sortable.options._revert;
- sortable.options.helper = sortable.options._helper;
-
- if ( sortable.placeholder ) {
- sortable.placeholder.remove();
- }
-
- // Recalculate the draggable's offset considering the sortable
- // may have modified them in unexpected ways (#8809)
- draggable._refreshOffsets( event );
- ui.position = draggable._generatePosition( event, true );
-
- draggable._trigger( "fromSortable", event );
-
- // Inform draggable that the helper is no longer in a valid drop zone
- draggable.dropped = false;
-
- // Need to refreshPositions of all sortables just in case removing
- // from one sortable changes the location of other sortables (#9675)
- $.each( draggable.sortables, function() {
- this.refreshPositions();
- });
- }
- }
- });
- }
-});
-
-$.ui.plugin.add("draggable", "cursor", {
- start: function( event, ui, instance ) {
- var t = $( "body" ),
- o = instance.options;
-
- if (t.css("cursor")) {
- o._cursor = t.css("cursor");
- }
- t.css("cursor", o.cursor);
- },
- stop: function( event, ui, instance ) {
- var o = instance.options;
- if (o._cursor) {
- $("body").css("cursor", o._cursor);
- }
- }
-});
-
-$.ui.plugin.add("draggable", "opacity", {
- start: function( event, ui, instance ) {
- var t = $( ui.helper ),
- o = instance.options;
- if (t.css("opacity")) {
- o._opacity = t.css("opacity");
- }
- t.css("opacity", o.opacity);
- },
- stop: function( event, ui, instance ) {
- var o = instance.options;
- if (o._opacity) {
- $(ui.helper).css("opacity", o._opacity);
- }
- }
-});
-
-$.ui.plugin.add("draggable", "scroll", {
- start: function( event, ui, i ) {
- if ( !i.scrollParentNotHidden ) {
- i.scrollParentNotHidden = i.helper.scrollParent( false );
- }
-
- if ( i.scrollParentNotHidden[ 0 ] !== i.document[ 0 ] && i.scrollParentNotHidden[ 0 ].tagName !== "HTML" ) {
- i.overflowOffset = i.scrollParentNotHidden.offset();
- }
- },
- drag: function( event, ui, i ) {
-
- var o = i.options,
- scrolled = false,
- scrollParent = i.scrollParentNotHidden[ 0 ],
- document = i.document[ 0 ];
-
- if ( scrollParent !== document && scrollParent.tagName !== "HTML" ) {
- if ( !o.axis || o.axis !== "x" ) {
- if ( ( i.overflowOffset.top + scrollParent.offsetHeight ) - event.pageY < o.scrollSensitivity ) {
- scrollParent.scrollTop = scrolled = scrollParent.scrollTop + o.scrollSpeed;
- } else if ( event.pageY - i.overflowOffset.top < o.scrollSensitivity ) {
- scrollParent.scrollTop = scrolled = scrollParent.scrollTop - o.scrollSpeed;
- }
- }
-
- if ( !o.axis || o.axis !== "y" ) {
- if ( ( i.overflowOffset.left + scrollParent.offsetWidth ) - event.pageX < o.scrollSensitivity ) {
- scrollParent.scrollLeft = scrolled = scrollParent.scrollLeft + o.scrollSpeed;
- } else if ( event.pageX - i.overflowOffset.left < o.scrollSensitivity ) {
- scrollParent.scrollLeft = scrolled = scrollParent.scrollLeft - o.scrollSpeed;
- }
- }
-
- } else {
-
- if (!o.axis || o.axis !== "x") {
- if (event.pageY - $(document).scrollTop() < o.scrollSensitivity) {
- scrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed);
- } else if ($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) {
- scrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed);
- }
- }
-
- if (!o.axis || o.axis !== "y") {
- if (event.pageX - $(document).scrollLeft() < o.scrollSensitivity) {
- scrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed);
- } else if ($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) {
- scrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed);
- }
- }
-
- }
-
- if (scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) {
- $.ui.ddmanager.prepareOffsets(i, event);
- }
-
- }
-});
-
-$.ui.plugin.add("draggable", "snap", {
- start: function( event, ui, i ) {
-
- var o = i.options;
-
- i.snapElements = [];
-
- $(o.snap.constructor !== String ? ( o.snap.items || ":data(ui-draggable)" ) : o.snap).each(function() {
- var $t = $(this),
- $o = $t.offset();
- if (this !== i.element[0]) {
- i.snapElements.push({
- item: this,
- width: $t.outerWidth(), height: $t.outerHeight(),
- top: $o.top, left: $o.left
- });
- }
- });
-
- },
- drag: function( event, ui, inst ) {
-
- var ts, bs, ls, rs, l, r, t, b, i, first,
- o = inst.options,
- d = o.snapTolerance,
- x1 = ui.offset.left, x2 = x1 + inst.helperProportions.width,
- y1 = ui.offset.top, y2 = y1 + inst.helperProportions.height;
-
- for (i = inst.snapElements.length - 1; i >= 0; i--){
-
- l = inst.snapElements[i].left - inst.margins.left;
- r = l + inst.snapElements[i].width;
- t = inst.snapElements[i].top - inst.margins.top;
- b = t + inst.snapElements[i].height;
-
- if ( x2 < l - d || x1 > r + d || y2 < t - d || y1 > b + d || !$.contains( inst.snapElements[ i ].item.ownerDocument, inst.snapElements[ i ].item ) ) {
- if (inst.snapElements[i].snapping) {
- (inst.options.snap.release && inst.options.snap.release.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item })));
- }
- inst.snapElements[i].snapping = false;
- continue;
- }
-
- if (o.snapMode !== "inner") {
- ts = Math.abs(t - y2) <= d;
- bs = Math.abs(b - y1) <= d;
- ls = Math.abs(l - x2) <= d;
- rs = Math.abs(r - x1) <= d;
- if (ts) {
- ui.position.top = inst._convertPositionTo("relative", { top: t - inst.helperProportions.height, left: 0 }).top;
- }
- if (bs) {
- ui.position.top = inst._convertPositionTo("relative", { top: b, left: 0 }).top;
- }
- if (ls) {
- ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l - inst.helperProportions.width }).left;
- }
- if (rs) {
- ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r }).left;
- }
- }
-
- first = (ts || bs || ls || rs);
-
- if (o.snapMode !== "outer") {
- ts = Math.abs(t - y1) <= d;
- bs = Math.abs(b - y2) <= d;
- ls = Math.abs(l - x1) <= d;
- rs = Math.abs(r - x2) <= d;
- if (ts) {
- ui.position.top = inst._convertPositionTo("relative", { top: t, left: 0 }).top;
- }
- if (bs) {
- ui.position.top = inst._convertPositionTo("relative", { top: b - inst.helperProportions.height, left: 0 }).top;
- }
- if (ls) {
- ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l }).left;
- }
- if (rs) {
- ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r - inst.helperProportions.width }).left;
- }
- }
-
- if (!inst.snapElements[i].snapping && (ts || bs || ls || rs || first)) {
- (inst.options.snap.snap && inst.options.snap.snap.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item })));
- }
- inst.snapElements[i].snapping = (ts || bs || ls || rs || first);
-
- }
-
- }
-});
-
-$.ui.plugin.add("draggable", "stack", {
- start: function( event, ui, instance ) {
- var min,
- o = instance.options,
- group = $.makeArray($(o.stack)).sort(function(a, b) {
- return (parseInt($(a).css("zIndex"), 10) || 0) - (parseInt($(b).css("zIndex"), 10) || 0);
- });
-
- if (!group.length) { return; }
-
- min = parseInt($(group[0]).css("zIndex"), 10) || 0;
- $(group).each(function(i) {
- $(this).css("zIndex", min + i);
- });
- this.css("zIndex", (min + group.length));
- }
-});
-
-$.ui.plugin.add("draggable", "zIndex", {
- start: function( event, ui, instance ) {
- var t = $( ui.helper ),
- o = instance.options;
-
- if (t.css("zIndex")) {
- o._zIndex = t.css("zIndex");
- }
- t.css("zIndex", o.zIndex);
- },
- stop: function( event, ui, instance ) {
- var o = instance.options;
-
- if (o._zIndex) {
- $(ui.helper).css("zIndex", o._zIndex);
- }
- }
-});
-
-var draggable = $.ui.draggable;
-
-
-/*!
- * jQuery UI Droppable 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/droppable/
- */
-
-
-$.widget( "ui.droppable", {
- version: "1.11.3",
- widgetEventPrefix: "drop",
- options: {
- accept: "*",
- activeClass: false,
- addClasses: true,
- greedy: false,
- hoverClass: false,
- scope: "default",
- tolerance: "intersect",
-
- // callbacks
- activate: null,
- deactivate: null,
- drop: null,
- out: null,
- over: null
- },
- _create: function() {
-
- var proportions,
- o = this.options,
- accept = o.accept;
-
- this.isover = false;
- this.isout = true;
-
- this.accept = $.isFunction( accept ) ? accept : function( d ) {
- return d.is( accept );
- };
-
- this.proportions = function( /* valueToWrite */ ) {
- if ( arguments.length ) {
- // Store the droppable's proportions
- proportions = arguments[ 0 ];
- } else {
- // Retrieve or derive the droppable's proportions
- return proportions ?
- proportions :
- proportions = {
- width: this.element[ 0 ].offsetWidth,
- height: this.element[ 0 ].offsetHeight
- };
- }
- };
-
- this._addToManager( o.scope );
-
- o.addClasses && this.element.addClass( "ui-droppable" );
-
- },
-
- _addToManager: function( scope ) {
- // Add the reference and positions to the manager
- $.ui.ddmanager.droppables[ scope ] = $.ui.ddmanager.droppables[ scope ] || [];
- $.ui.ddmanager.droppables[ scope ].push( this );
- },
-
- _splice: function( drop ) {
- var i = 0;
- for ( ; i < drop.length; i++ ) {
- if ( drop[ i ] === this ) {
- drop.splice( i, 1 );
- }
- }
- },
-
- _destroy: function() {
- var drop = $.ui.ddmanager.droppables[ this.options.scope ];
-
- this._splice( drop );
-
- this.element.removeClass( "ui-droppable ui-droppable-disabled" );
- },
-
- _setOption: function( key, value ) {
-
- if ( key === "accept" ) {
- this.accept = $.isFunction( value ) ? value : function( d ) {
- return d.is( value );
- };
- } else if ( key === "scope" ) {
- var drop = $.ui.ddmanager.droppables[ this.options.scope ];
-
- this._splice( drop );
- this._addToManager( value );
- }
-
- this._super( key, value );
- },
-
- _activate: function( event ) {
- var draggable = $.ui.ddmanager.current;
- if ( this.options.activeClass ) {
- this.element.addClass( this.options.activeClass );
- }
- if ( draggable ){
- this._trigger( "activate", event, this.ui( draggable ) );
- }
- },
-
- _deactivate: function( event ) {
- var draggable = $.ui.ddmanager.current;
- if ( this.options.activeClass ) {
- this.element.removeClass( this.options.activeClass );
- }
- if ( draggable ){
- this._trigger( "deactivate", event, this.ui( draggable ) );
- }
- },
-
- _over: function( event ) {
-
- var draggable = $.ui.ddmanager.current;
-
- // Bail if draggable and droppable are same element
- if ( !draggable || ( draggable.currentItem || draggable.element )[ 0 ] === this.element[ 0 ] ) {
- return;
- }
-
- if ( this.accept.call( this.element[ 0 ], ( draggable.currentItem || draggable.element ) ) ) {
- if ( this.options.hoverClass ) {
- this.element.addClass( this.options.hoverClass );
- }
- this._trigger( "over", event, this.ui( draggable ) );
- }
-
- },
-
- _out: function( event ) {
-
- var draggable = $.ui.ddmanager.current;
-
- // Bail if draggable and droppable are same element
- if ( !draggable || ( draggable.currentItem || draggable.element )[ 0 ] === this.element[ 0 ] ) {
- return;
- }
-
- if ( this.accept.call( this.element[ 0 ], ( draggable.currentItem || draggable.element ) ) ) {
- if ( this.options.hoverClass ) {
- this.element.removeClass( this.options.hoverClass );
- }
- this._trigger( "out", event, this.ui( draggable ) );
- }
-
- },
-
- _drop: function( event, custom ) {
-
- var draggable = custom || $.ui.ddmanager.current,
- childrenIntersection = false;
-
- // Bail if draggable and droppable are same element
- if ( !draggable || ( draggable.currentItem || draggable.element )[ 0 ] === this.element[ 0 ] ) {
- return false;
- }
-
- this.element.find( ":data(ui-droppable)" ).not( ".ui-draggable-dragging" ).each(function() {
- var inst = $( this ).droppable( "instance" );
- if (
- inst.options.greedy &&
- !inst.options.disabled &&
- inst.options.scope === draggable.options.scope &&
- inst.accept.call( inst.element[ 0 ], ( draggable.currentItem || draggable.element ) ) &&
- $.ui.intersect( draggable, $.extend( inst, { offset: inst.element.offset() } ), inst.options.tolerance, event )
- ) { childrenIntersection = true; return false; }
- });
- if ( childrenIntersection ) {
- return false;
- }
-
- if ( this.accept.call( this.element[ 0 ], ( draggable.currentItem || draggable.element ) ) ) {
- if ( this.options.activeClass ) {
- this.element.removeClass( this.options.activeClass );
- }
- if ( this.options.hoverClass ) {
- this.element.removeClass( this.options.hoverClass );
- }
- this._trigger( "drop", event, this.ui( draggable ) );
- return this.element;
- }
-
- return false;
-
- },
-
- ui: function( c ) {
- return {
- draggable: ( c.currentItem || c.element ),
- helper: c.helper,
- position: c.position,
- offset: c.positionAbs
- };
- }
-
-});
-
-$.ui.intersect = (function() {
- function isOverAxis( x, reference, size ) {
- return ( x >= reference ) && ( x < ( reference + size ) );
- }
-
- return function( draggable, droppable, toleranceMode, event ) {
-
- if ( !droppable.offset ) {
- return false;
- }
-
- var x1 = ( draggable.positionAbs || draggable.position.absolute ).left + draggable.margins.left,
- y1 = ( draggable.positionAbs || draggable.position.absolute ).top + draggable.margins.top,
- x2 = x1 + draggable.helperProportions.width,
- y2 = y1 + draggable.helperProportions.height,
- l = droppable.offset.left,
- t = droppable.offset.top,
- r = l + droppable.proportions().width,
- b = t + droppable.proportions().height;
-
- switch ( toleranceMode ) {
- case "fit":
- return ( l <= x1 && x2 <= r && t <= y1 && y2 <= b );
- case "intersect":
- return ( l < x1 + ( draggable.helperProportions.width / 2 ) && // Right Half
- x2 - ( draggable.helperProportions.width / 2 ) < r && // Left Half
- t < y1 + ( draggable.helperProportions.height / 2 ) && // Bottom Half
- y2 - ( draggable.helperProportions.height / 2 ) < b ); // Top Half
- case "pointer":
- return isOverAxis( event.pageY, t, droppable.proportions().height ) && isOverAxis( event.pageX, l, droppable.proportions().width );
- case "touch":
- return (
- ( y1 >= t && y1 <= b ) || // Top edge touching
- ( y2 >= t && y2 <= b ) || // Bottom edge touching
- ( y1 < t && y2 > b ) // Surrounded vertically
- ) && (
- ( x1 >= l && x1 <= r ) || // Left edge touching
- ( x2 >= l && x2 <= r ) || // Right edge touching
- ( x1 < l && x2 > r ) // Surrounded horizontally
- );
- default:
- return false;
- }
- };
-})();
-
-/*
- This manager tracks offsets of draggables and droppables
-*/
-$.ui.ddmanager = {
- current: null,
- droppables: { "default": [] },
- prepareOffsets: function( t, event ) {
-
- var i, j,
- m = $.ui.ddmanager.droppables[ t.options.scope ] || [],
- type = event ? event.type : null, // workaround for #2317
- list = ( t.currentItem || t.element ).find( ":data(ui-droppable)" ).addBack();
-
- droppablesLoop: for ( i = 0; i < m.length; i++ ) {
-
- // No disabled and non-accepted
- if ( m[ i ].options.disabled || ( t && !m[ i ].accept.call( m[ i ].element[ 0 ], ( t.currentItem || t.element ) ) ) ) {
- continue;
- }
-
- // Filter out elements in the current dragged item
- for ( j = 0; j < list.length; j++ ) {
- if ( list[ j ] === m[ i ].element[ 0 ] ) {
- m[ i ].proportions().height = 0;
- continue droppablesLoop;
- }
- }
-
- m[ i ].visible = m[ i ].element.css( "display" ) !== "none";
- if ( !m[ i ].visible ) {
- continue;
- }
-
- // Activate the droppable if used directly from draggables
- if ( type === "mousedown" ) {
- m[ i ]._activate.call( m[ i ], event );
- }
-
- m[ i ].offset = m[ i ].element.offset();
- m[ i ].proportions({ width: m[ i ].element[ 0 ].offsetWidth, height: m[ i ].element[ 0 ].offsetHeight });
-
- }
-
- },
- drop: function( draggable, event ) {
-
- var dropped = false;
- // Create a copy of the droppables in case the list changes during the drop (#9116)
- $.each( ( $.ui.ddmanager.droppables[ draggable.options.scope ] || [] ).slice(), function() {
-
- if ( !this.options ) {
- return;
- }
- if ( !this.options.disabled && this.visible && $.ui.intersect( draggable, this, this.options.tolerance, event ) ) {
- dropped = this._drop.call( this, event ) || dropped;
- }
-
- if ( !this.options.disabled && this.visible && this.accept.call( this.element[ 0 ], ( draggable.currentItem || draggable.element ) ) ) {
- this.isout = true;
- this.isover = false;
- this._deactivate.call( this, event );
- }
-
- });
- return dropped;
-
- },
- dragStart: function( draggable, event ) {
- // Listen for scrolling so that if the dragging causes scrolling the position of the droppables can be recalculated (see #5003)
- draggable.element.parentsUntil( "body" ).bind( "scroll.droppable", function() {
- if ( !draggable.options.refreshPositions ) {
- $.ui.ddmanager.prepareOffsets( draggable, event );
- }
- });
- },
- drag: function( draggable, event ) {
-
- // If you have a highly dynamic page, you might try this option. It renders positions every time you move the mouse.
- if ( draggable.options.refreshPositions ) {
- $.ui.ddmanager.prepareOffsets( draggable, event );
- }
-
- // Run through all droppables and check their positions based on specific tolerance options
- $.each( $.ui.ddmanager.droppables[ draggable.options.scope ] || [], function() {
-
- if ( this.options.disabled || this.greedyChild || !this.visible ) {
- return;
- }
-
- var parentInstance, scope, parent,
- intersects = $.ui.intersect( draggable, this, this.options.tolerance, event ),
- c = !intersects && this.isover ? "isout" : ( intersects && !this.isover ? "isover" : null );
- if ( !c ) {
- return;
- }
-
- if ( this.options.greedy ) {
- // find droppable parents with same scope
- scope = this.options.scope;
- parent = this.element.parents( ":data(ui-droppable)" ).filter(function() {
- return $( this ).droppable( "instance" ).options.scope === scope;
- });
-
- if ( parent.length ) {
- parentInstance = $( parent[ 0 ] ).droppable( "instance" );
- parentInstance.greedyChild = ( c === "isover" );
- }
- }
-
- // we just moved into a greedy child
- if ( parentInstance && c === "isover" ) {
- parentInstance.isover = false;
- parentInstance.isout = true;
- parentInstance._out.call( parentInstance, event );
- }
-
- this[ c ] = true;
- this[c === "isout" ? "isover" : "isout"] = false;
- this[c === "isover" ? "_over" : "_out"].call( this, event );
-
- // we just moved out of a greedy child
- if ( parentInstance && c === "isout" ) {
- parentInstance.isout = false;
- parentInstance.isover = true;
- parentInstance._over.call( parentInstance, event );
- }
- });
-
- },
- dragStop: function( draggable, event ) {
- draggable.element.parentsUntil( "body" ).unbind( "scroll.droppable" );
- // Call prepareOffsets one final time since IE does not fire return scroll events when overflow was caused by drag (see #5003)
- if ( !draggable.options.refreshPositions ) {
- $.ui.ddmanager.prepareOffsets( draggable, event );
- }
- }
-};
-
-var droppable = $.ui.droppable;
-
-
-/*!
- * jQuery UI Resizable 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/resizable/
- */
-
-
-$.widget("ui.resizable", $.ui.mouse, {
- version: "1.11.3",
- widgetEventPrefix: "resize",
- options: {
- alsoResize: false,
- animate: false,
- animateDuration: "slow",
- animateEasing: "swing",
- aspectRatio: false,
- autoHide: false,
- containment: false,
- ghost: false,
- grid: false,
- handles: "e,s,se",
- helper: false,
- maxHeight: null,
- maxWidth: null,
- minHeight: 10,
- minWidth: 10,
- // See #7960
- zIndex: 90,
-
- // callbacks
- resize: null,
- start: null,
- stop: null
- },
-
- _num: function( value ) {
- return parseInt( value, 10 ) || 0;
- },
-
- _isNumber: function( value ) {
- return !isNaN( parseInt( value, 10 ) );
- },
-
- _hasScroll: function( el, a ) {
-
- if ( $( el ).css( "overflow" ) === "hidden") {
- return false;
- }
-
- var scroll = ( a && a === "left" ) ? "scrollLeft" : "scrollTop",
- has = false;
-
- if ( el[ scroll ] > 0 ) {
- return true;
- }
-
- // TODO: determine which cases actually cause this to happen
- // if the element doesn't have the scroll set, see if it's possible to
- // set the scroll
- el[ scroll ] = 1;
- has = ( el[ scroll ] > 0 );
- el[ scroll ] = 0;
- return has;
- },
-
- _create: function() {
-
- var n, i, handle, axis, hname,
- that = this,
- o = this.options;
- this.element.addClass("ui-resizable");
-
- $.extend(this, {
- _aspectRatio: !!(o.aspectRatio),
- aspectRatio: o.aspectRatio,
- originalElement: this.element,
- _proportionallyResizeElements: [],
- _helper: o.helper || o.ghost || o.animate ? o.helper || "ui-resizable-helper" : null
- });
-
- // Wrap the element if it cannot hold child nodes
- if (this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)) {
-
- this.element.wrap(
- $("<div class='ui-wrapper' style='overflow: hidden;'></div>").css({
- position: this.element.css("position"),
- width: this.element.outerWidth(),
- height: this.element.outerHeight(),
- top: this.element.css("top"),
- left: this.element.css("left")
- })
- );
-
- this.element = this.element.parent().data(
- "ui-resizable", this.element.resizable( "instance" )
- );
-
- this.elementIsWrapper = true;
-
- this.element.css({
- marginLeft: this.originalElement.css("marginLeft"),
- marginTop: this.originalElement.css("marginTop"),
- marginRight: this.originalElement.css("marginRight"),
- marginBottom: this.originalElement.css("marginBottom")
- });
- this.originalElement.css({
- marginLeft: 0,
- marginTop: 0,
- marginRight: 0,
- marginBottom: 0
- });
- // support: Safari
- // Prevent Safari textarea resize
- this.originalResizeStyle = this.originalElement.css("resize");
- this.originalElement.css("resize", "none");
-
- this._proportionallyResizeElements.push( this.originalElement.css({
- position: "static",
- zoom: 1,
- display: "block"
- }) );
-
- // support: IE9
- // avoid IE jump (hard set the margin)
- this.originalElement.css({ margin: this.originalElement.css("margin") });
-
- this._proportionallyResize();
- }
-
- this.handles = o.handles ||
- ( !$(".ui-resizable-handle", this.element).length ?
- "e,s,se" : {
- n: ".ui-resizable-n",
- e: ".ui-resizable-e",
- s: ".ui-resizable-s",
- w: ".ui-resizable-w",
- se: ".ui-resizable-se",
- sw: ".ui-resizable-sw",
- ne: ".ui-resizable-ne",
- nw: ".ui-resizable-nw"
- } );
-
- if (this.handles.constructor === String) {
-
- if ( this.handles === "all") {
- this.handles = "n,e,s,w,se,sw,ne,nw";
- }
-
- n = this.handles.split(",");
- this.handles = {};
-
- for (i = 0; i < n.length; i++) {
-
- handle = $.trim(n[i]);
- hname = "ui-resizable-" + handle;
- axis = $("<div class='ui-resizable-handle " + hname + "'></div>");
-
- axis.css({ zIndex: o.zIndex });
-
- // TODO : What's going on here?
- if ("se" === handle) {
- axis.addClass("ui-icon ui-icon-gripsmall-diagonal-se");
- }
-
- this.handles[handle] = ".ui-resizable-" + handle;
- this.element.append(axis);
- }
-
- }
-
- this._renderAxis = function(target) {
-
- var i, axis, padPos, padWrapper;
-
- target = target || this.element;
-
- for (i in this.handles) {
-
- if (this.handles[i].constructor === String) {
- this.handles[i] = this.element.children( this.handles[ i ] ).first().show();
- }
-
- if (this.elementIsWrapper && this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)) {
-
- axis = $(this.handles[i], this.element);
-
- padWrapper = /sw|ne|nw|se|n|s/.test(i) ? axis.outerHeight() : axis.outerWidth();
-
- padPos = [ "padding",
- /ne|nw|n/.test(i) ? "Top" :
- /se|sw|s/.test(i) ? "Bottom" :
- /^e$/.test(i) ? "Right" : "Left" ].join("");
-
- target.css(padPos, padWrapper);
-
- this._proportionallyResize();
-
- }
-
- // TODO: What's that good for? There's not anything to be executed left
- if (!$(this.handles[i]).length) {
- continue;
- }
- }
- };
-
- // TODO: make renderAxis a prototype function
- this._renderAxis(this.element);
-
- this._handles = $(".ui-resizable-handle", this.element)
- .disableSelection();
-
- this._handles.mouseover(function() {
- if (!that.resizing) {
- if (this.className) {
- axis = this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);
- }
- that.axis = axis && axis[1] ? axis[1] : "se";
- }
- });
-
- if (o.autoHide) {
- this._handles.hide();
- $(this.element)
- .addClass("ui-resizable-autohide")
- .mouseenter(function() {
- if (o.disabled) {
- return;
- }
- $(this).removeClass("ui-resizable-autohide");
- that._handles.show();
- })
- .mouseleave(function() {
- if (o.disabled) {
- return;
- }
- if (!that.resizing) {
- $(this).addClass("ui-resizable-autohide");
- that._handles.hide();
- }
- });
- }
-
- this._mouseInit();
-
- },
-
- _destroy: function() {
-
- this._mouseDestroy();
-
- var wrapper,
- _destroy = function(exp) {
- $(exp)
- .removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing")
- .removeData("resizable")
- .removeData("ui-resizable")
- .unbind(".resizable")
- .find(".ui-resizable-handle")
- .remove();
- };
-
- // TODO: Unwrap at same DOM position
- if (this.elementIsWrapper) {
- _destroy(this.element);
- wrapper = this.element;
- this.originalElement.css({
- position: wrapper.css("position"),
- width: wrapper.outerWidth(),
- height: wrapper.outerHeight(),
- top: wrapper.css("top"),
- left: wrapper.css("left")
- }).insertAfter( wrapper );
- wrapper.remove();
- }
-
- this.originalElement.css("resize", this.originalResizeStyle);
- _destroy(this.originalElement);
-
- return this;
- },
-
- _mouseCapture: function(event) {
- var i, handle,
- capture = false;
-
- for (i in this.handles) {
- handle = $(this.handles[i])[0];
- if (handle === event.target || $.contains(handle, event.target)) {
- capture = true;
- }
- }
-
- return !this.options.disabled && capture;
- },
-
- _mouseStart: function(event) {
-
- var curleft, curtop, cursor,
- o = this.options,
- el = this.element;
-
- this.resizing = true;
-
- this._renderProxy();
-
- curleft = this._num(this.helper.css("left"));
- curtop = this._num(this.helper.css("top"));
-
- if (o.containment) {
- curleft += $(o.containment).scrollLeft() || 0;
- curtop += $(o.containment).scrollTop() || 0;
- }
-
- this.offset = this.helper.offset();
- this.position = { left: curleft, top: curtop };
-
- this.size = this._helper ? {
- width: this.helper.width(),
- height: this.helper.height()
- } : {
- width: el.width(),
- height: el.height()
- };
-
- this.originalSize = this._helper ? {
- width: el.outerWidth(),
- height: el.outerHeight()
- } : {
- width: el.width(),
- height: el.height()
- };
-
- this.sizeDiff = {
- width: el.outerWidth() - el.width(),
- height: el.outerHeight() - el.height()
- };
-
- this.originalPosition = { left: curleft, top: curtop };
- this.originalMousePosition = { left: event.pageX, top: event.pageY };
-
- this.aspectRatio = (typeof o.aspectRatio === "number") ?
- o.aspectRatio :
- ((this.originalSize.width / this.originalSize.height) || 1);
-
- cursor = $(".ui-resizable-" + this.axis).css("cursor");
- $("body").css("cursor", cursor === "auto" ? this.axis + "-resize" : cursor);
-
- el.addClass("ui-resizable-resizing");
- this._propagate("start", event);
- return true;
- },
-
- _mouseDrag: function(event) {
-
- var data, props,
- smp = this.originalMousePosition,
- a = this.axis,
- dx = (event.pageX - smp.left) || 0,
- dy = (event.pageY - smp.top) || 0,
- trigger = this._change[a];
-
- this._updatePrevProperties();
-
- if (!trigger) {
- return false;
- }
-
- data = trigger.apply(this, [ event, dx, dy ]);
-
- this._updateVirtualBoundaries(event.shiftKey);
- if (this._aspectRatio || event.shiftKey) {
- data = this._updateRatio(data, event);
- }
-
- data = this._respectSize(data, event);
-
- this._updateCache(data);
-
- this._propagate("resize", event);
-
- props = this._applyChanges();
-
- if ( !this._helper && this._proportionallyResizeElements.length ) {
- this._proportionallyResize();
- }
-
- if ( !$.isEmptyObject( props ) ) {
- this._updatePrevProperties();
- this._trigger( "resize", event, this.ui() );
- this._applyChanges();
- }
-
- return false;
- },
-
- _mouseStop: function(event) {
-
- this.resizing = false;
- var pr, ista, soffseth, soffsetw, s, left, top,
- o = this.options, that = this;
-
- if (this._helper) {
-
- pr = this._proportionallyResizeElements;
- ista = pr.length && (/textarea/i).test(pr[0].nodeName);
- soffseth = ista && this._hasScroll(pr[0], "left") ? 0 : that.sizeDiff.height;
- soffsetw = ista ? 0 : that.sizeDiff.width;
-
- s = {
- width: (that.helper.width() - soffsetw),
- height: (that.helper.height() - soffseth)
- };
- left = (parseInt(that.element.css("left"), 10) +
- (that.position.left - that.originalPosition.left)) || null;
- top = (parseInt(that.element.css("top"), 10) +
- (that.position.top - that.originalPosition.top)) || null;
-
- if (!o.animate) {
- this.element.css($.extend(s, { top: top, left: left }));
- }
-
- that.helper.height(that.size.height);
- that.helper.width(that.size.width);
-
- if (this._helper && !o.animate) {
- this._proportionallyResize();
- }
- }
-
- $("body").css("cursor", "auto");
-
- this.element.removeClass("ui-resizable-resizing");
-
- this._propagate("stop", event);
-
- if (this._helper) {
- this.helper.remove();
- }
-
- return false;
-
- },
-
- _updatePrevProperties: function() {
- this.prevPosition = {
- top: this.position.top,
- left: this.position.left
- };
- this.prevSize = {
- width: this.size.width,
- height: this.size.height
- };
- },
-
- _applyChanges: function() {
- var props = {};
-
- if ( this.position.top !== this.prevPosition.top ) {
- props.top = this.position.top + "px";
- }
- if ( this.position.left !== this.prevPosition.left ) {
- props.left = this.position.left + "px";
- }
- if ( this.size.width !== this.prevSize.width ) {
- props.width = this.size.width + "px";
- }
- if ( this.size.height !== this.prevSize.height ) {
- props.height = this.size.height + "px";
- }
-
- this.helper.css( props );
-
- return props;
- },
-
- _updateVirtualBoundaries: function(forceAspectRatio) {
- var pMinWidth, pMaxWidth, pMinHeight, pMaxHeight, b,
- o = this.options;
-
- b = {
- minWidth: this._isNumber(o.minWidth) ? o.minWidth : 0,
- maxWidth: this._isNumber(o.maxWidth) ? o.maxWidth : Infinity,
- minHeight: this._isNumber(o.minHeight) ? o.minHeight : 0,
- maxHeight: this._isNumber(o.maxHeight) ? o.maxHeight : Infinity
- };
-
- if (this._aspectRatio || forceAspectRatio) {
- pMinWidth = b.minHeight * this.aspectRatio;
- pMinHeight = b.minWidth / this.aspectRatio;
- pMaxWidth = b.maxHeight * this.aspectRatio;
- pMaxHeight = b.maxWidth / this.aspectRatio;
-
- if (pMinWidth > b.minWidth) {
- b.minWidth = pMinWidth;
- }
- if (pMinHeight > b.minHeight) {
- b.minHeight = pMinHeight;
- }
- if (pMaxWidth < b.maxWidth) {
- b.maxWidth = pMaxWidth;
- }
- if (pMaxHeight < b.maxHeight) {
- b.maxHeight = pMaxHeight;
- }
- }
- this._vBoundaries = b;
- },
-
- _updateCache: function(data) {
- this.offset = this.helper.offset();
- if (this._isNumber(data.left)) {
- this.position.left = data.left;
- }
- if (this._isNumber(data.top)) {
- this.position.top = data.top;
- }
- if (this._isNumber(data.height)) {
- this.size.height = data.height;
- }
- if (this._isNumber(data.width)) {
- this.size.width = data.width;
- }
- },
-
- _updateRatio: function( data ) {
-
- var cpos = this.position,
- csize = this.size,
- a = this.axis;
-
- if (this._isNumber(data.height)) {
- data.width = (data.height * this.aspectRatio);
- } else if (this._isNumber(data.width)) {
- data.height = (data.width / this.aspectRatio);
- }
-
- if (a === "sw") {
- data.left = cpos.left + (csize.width - data.width);
- data.top = null;
- }
- if (a === "nw") {
- data.top = cpos.top + (csize.height - data.height);
- data.left = cpos.left + (csize.width - data.width);
- }
-
- return data;
- },
-
- _respectSize: function( data ) {
-
- var o = this._vBoundaries,
- a = this.axis,
- ismaxw = this._isNumber(data.width) && o.maxWidth && (o.maxWidth < data.width),
- ismaxh = this._isNumber(data.height) && o.maxHeight && (o.maxHeight < data.height),
- isminw = this._isNumber(data.width) && o.minWidth && (o.minWidth > data.width),
- isminh = this._isNumber(data.height) && o.minHeight && (o.minHeight > data.height),
- dw = this.originalPosition.left + this.originalSize.width,
- dh = this.position.top + this.size.height,
- cw = /sw|nw|w/.test(a), ch = /nw|ne|n/.test(a);
- if (isminw) {
- data.width = o.minWidth;
- }
- if (isminh) {
- data.height = o.minHeight;
- }
- if (ismaxw) {
- data.width = o.maxWidth;
- }
- if (ismaxh) {
- data.height = o.maxHeight;
- }
-
- if (isminw && cw) {
- data.left = dw - o.minWidth;
- }
- if (ismaxw && cw) {
- data.left = dw - o.maxWidth;
- }
- if (isminh && ch) {
- data.top = dh - o.minHeight;
- }
- if (ismaxh && ch) {
- data.top = dh - o.maxHeight;
- }
-
- // Fixing jump error on top/left - bug #2330
- if (!data.width && !data.height && !data.left && data.top) {
- data.top = null;
- } else if (!data.width && !data.height && !data.top && data.left) {
- data.left = null;
- }
-
- return data;
- },
-
- _getPaddingPlusBorderDimensions: function( element ) {
- var i = 0,
- widths = [],
- borders = [
- element.css( "borderTopWidth" ),
- element.css( "borderRightWidth" ),
- element.css( "borderBottomWidth" ),
- element.css( "borderLeftWidth" )
- ],
- paddings = [
- element.css( "paddingTop" ),
- element.css( "paddingRight" ),
- element.css( "paddingBottom" ),
- element.css( "paddingLeft" )
- ];
-
- for ( ; i < 4; i++ ) {
- widths[ i ] = ( parseInt( borders[ i ], 10 ) || 0 );
- widths[ i ] += ( parseInt( paddings[ i ], 10 ) || 0 );
- }
-
- return {
- height: widths[ 0 ] + widths[ 2 ],
- width: widths[ 1 ] + widths[ 3 ]
- };
- },
-
- _proportionallyResize: function() {
-
- if (!this._proportionallyResizeElements.length) {
- return;
- }
-
- var prel,
- i = 0,
- element = this.helper || this.element;
-
- for ( ; i < this._proportionallyResizeElements.length; i++) {
-
- prel = this._proportionallyResizeElements[i];
-
- // TODO: Seems like a bug to cache this.outerDimensions
- // considering that we are in a loop.
- if (!this.outerDimensions) {
- this.outerDimensions = this._getPaddingPlusBorderDimensions( prel );
- }
-
- prel.css({
- height: (element.height() - this.outerDimensions.height) || 0,
- width: (element.width() - this.outerDimensions.width) || 0
- });
-
- }
-
- },
-
- _renderProxy: function() {
-
- var el = this.element, o = this.options;
- this.elementOffset = el.offset();
-
- if (this._helper) {
-
- this.helper = this.helper || $("<div style='overflow:hidden;'></div>");
-
- this.helper.addClass(this._helper).css({
- width: this.element.outerWidth() - 1,
- height: this.element.outerHeight() - 1,
- position: "absolute",
- left: this.elementOffset.left + "px",
- top: this.elementOffset.top + "px",
- zIndex: ++o.zIndex //TODO: Don't modify option
- });
-
- this.helper
- .appendTo("body")
- .disableSelection();
-
- } else {
- this.helper = this.element;
- }
-
- },
-
- _change: {
- e: function(event, dx) {
- return { width: this.originalSize.width + dx };
- },
- w: function(event, dx) {
- var cs = this.originalSize, sp = this.originalPosition;
- return { left: sp.left + dx, width: cs.width - dx };
- },
- n: function(event, dx, dy) {
- var cs = this.originalSize, sp = this.originalPosition;
- return { top: sp.top + dy, height: cs.height - dy };
- },
- s: function(event, dx, dy) {
- return { height: this.originalSize.height + dy };
- },
- se: function(event, dx, dy) {
- return $.extend(this._change.s.apply(this, arguments),
- this._change.e.apply(this, [ event, dx, dy ]));
- },
- sw: function(event, dx, dy) {
- return $.extend(this._change.s.apply(this, arguments),
- this._change.w.apply(this, [ event, dx, dy ]));
- },
- ne: function(event, dx, dy) {
- return $.extend(this._change.n.apply(this, arguments),
- this._change.e.apply(this, [ event, dx, dy ]));
- },
- nw: function(event, dx, dy) {
- return $.extend(this._change.n.apply(this, arguments),
- this._change.w.apply(this, [ event, dx, dy ]));
- }
- },
-
- _propagate: function(n, event) {
- $.ui.plugin.call(this, n, [ event, this.ui() ]);
- (n !== "resize" && this._trigger(n, event, this.ui()));
- },
-
- plugins: {},
-
- ui: function() {
- return {
- originalElement: this.originalElement,
- element: this.element,
- helper: this.helper,
- position: this.position,
- size: this.size,
- originalSize: this.originalSize,
- originalPosition: this.originalPosition
- };
- }
-
-});
-
-/*
- * Resizable Extensions
- */
-
-$.ui.plugin.add("resizable", "animate", {
-
- stop: function( event ) {
- var that = $(this).resizable( "instance" ),
- o = that.options,
- pr = that._proportionallyResizeElements,
- ista = pr.length && (/textarea/i).test(pr[0].nodeName),
- soffseth = ista && that._hasScroll(pr[0], "left") ? 0 : that.sizeDiff.height,
- soffsetw = ista ? 0 : that.sizeDiff.width,
- style = { width: (that.size.width - soffsetw), height: (that.size.height - soffseth) },
- left = (parseInt(that.element.css("left"), 10) +
- (that.position.left - that.originalPosition.left)) || null,
- top = (parseInt(that.element.css("top"), 10) +
- (that.position.top - that.originalPosition.top)) || null;
-
- that.element.animate(
- $.extend(style, top && left ? { top: top, left: left } : {}), {
- duration: o.animateDuration,
- easing: o.animateEasing,
- step: function() {
-
- var data = {
- width: parseInt(that.element.css("width"), 10),
- height: parseInt(that.element.css("height"), 10),
- top: parseInt(that.element.css("top"), 10),
- left: parseInt(that.element.css("left"), 10)
- };
-
- if (pr && pr.length) {
- $(pr[0]).css({ width: data.width, height: data.height });
- }
-
- // propagating resize, and updating values for each animation step
- that._updateCache(data);
- that._propagate("resize", event);
-
- }
- }
- );
- }
-
-});
-
-$.ui.plugin.add( "resizable", "containment", {
-
- start: function() {
- var element, p, co, ch, cw, width, height,
- that = $( this ).resizable( "instance" ),
- o = that.options,
- el = that.element,
- oc = o.containment,
- ce = ( oc instanceof $ ) ? oc.get( 0 ) : ( /parent/.test( oc ) ) ? el.parent().get( 0 ) : oc;
-
- if ( !ce ) {
- return;
- }
-
- that.containerElement = $( ce );
-
- if ( /document/.test( oc ) || oc === document ) {
- that.containerOffset = {
- left: 0,
- top: 0
- };
- that.containerPosition = {
- left: 0,
- top: 0
- };
-
- that.parentData = {
- element: $( document ),
- left: 0,
- top: 0,
- width: $( document ).width(),
- height: $( document ).height() || document.body.parentNode.scrollHeight
- };
- } else {
- element = $( ce );
- p = [];
- $([ "Top", "Right", "Left", "Bottom" ]).each(function( i, name ) {
- p[ i ] = that._num( element.css( "padding" + name ) );
- });
-
- that.containerOffset = element.offset();
- that.containerPosition = element.position();
- that.containerSize = {
- height: ( element.innerHeight() - p[ 3 ] ),
- width: ( element.innerWidth() - p[ 1 ] )
- };
-
- co = that.containerOffset;
- ch = that.containerSize.height;
- cw = that.containerSize.width;
- width = ( that._hasScroll ( ce, "left" ) ? ce.scrollWidth : cw );
- height = ( that._hasScroll ( ce ) ? ce.scrollHeight : ch ) ;
-
- that.parentData = {
- element: ce,
- left: co.left,
- top: co.top,
- width: width,
- height: height
- };
- }
- },
-
- resize: function( event ) {
- var woset, hoset, isParent, isOffsetRelative,
- that = $( this ).resizable( "instance" ),
- o = that.options,
- co = that.containerOffset,
- cp = that.position,
- pRatio = that._aspectRatio || event.shiftKey,
- cop = {
- top: 0,
- left: 0
- },
- ce = that.containerElement,
- continueResize = true;
-
- if ( ce[ 0 ] !== document && ( /static/ ).test( ce.css( "position" ) ) ) {
- cop = co;
- }
-
- if ( cp.left < ( that._helper ? co.left : 0 ) ) {
- that.size.width = that.size.width +
- ( that._helper ?
- ( that.position.left - co.left ) :
- ( that.position.left - cop.left ) );
-
- if ( pRatio ) {
- that.size.height = that.size.width / that.aspectRatio;
- continueResize = false;
- }
- that.position.left = o.helper ? co.left : 0;
- }
-
- if ( cp.top < ( that._helper ? co.top : 0 ) ) {
- that.size.height = that.size.height +
- ( that._helper ?
- ( that.position.top - co.top ) :
- that.position.top );
-
- if ( pRatio ) {
- that.size.width = that.size.height * that.aspectRatio;
- continueResize = false;
- }
- that.position.top = that._helper ? co.top : 0;
- }
-
- isParent = that.containerElement.get( 0 ) === that.element.parent().get( 0 );
- isOffsetRelative = /relative|absolute/.test( that.containerElement.css( "position" ) );
-
- if ( isParent && isOffsetRelative ) {
- that.offset.left = that.parentData.left + that.position.left;
- that.offset.top = that.parentData.top + that.position.top;
- } else {
- that.offset.left = that.element.offset().left;
- that.offset.top = that.element.offset().top;
- }
-
- woset = Math.abs( that.sizeDiff.width +
- (that._helper ?
- that.offset.left - cop.left :
- (that.offset.left - co.left)) );
-
- hoset = Math.abs( that.sizeDiff.height +
- (that._helper ?
- that.offset.top - cop.top :
- (that.offset.top - co.top)) );
-
- if ( woset + that.size.width >= that.parentData.width ) {
- that.size.width = that.parentData.width - woset;
- if ( pRatio ) {
- that.size.height = that.size.width / that.aspectRatio;
- continueResize = false;
- }
- }
-
- if ( hoset + that.size.height >= that.parentData.height ) {
- that.size.height = that.parentData.height - hoset;
- if ( pRatio ) {
- that.size.width = that.size.height * that.aspectRatio;
- continueResize = false;
- }
- }
-
- if ( !continueResize ) {
- that.position.left = that.prevPosition.left;
- that.position.top = that.prevPosition.top;
- that.size.width = that.prevSize.width;
- that.size.height = that.prevSize.height;
- }
- },
-
- stop: function() {
- var that = $( this ).resizable( "instance" ),
- o = that.options,
- co = that.containerOffset,
- cop = that.containerPosition,
- ce = that.containerElement,
- helper = $( that.helper ),
- ho = helper.offset(),
- w = helper.outerWidth() - that.sizeDiff.width,
- h = helper.outerHeight() - that.sizeDiff.height;
-
- if ( that._helper && !o.animate && ( /relative/ ).test( ce.css( "position" ) ) ) {
- $( this ).css({
- left: ho.left - cop.left - co.left,
- width: w,
- height: h
- });
- }
-
- if ( that._helper && !o.animate && ( /static/ ).test( ce.css( "position" ) ) ) {
- $( this ).css({
- left: ho.left - cop.left - co.left,
- width: w,
- height: h
- });
- }
- }
-});
-
-$.ui.plugin.add("resizable", "alsoResize", {
-
- start: function() {
- var that = $(this).resizable( "instance" ),
- o = that.options,
- _store = function(exp) {
- $(exp).each(function() {
- var el = $(this);
- el.data("ui-resizable-alsoresize", {
- width: parseInt(el.width(), 10), height: parseInt(el.height(), 10),
- left: parseInt(el.css("left"), 10), top: parseInt(el.css("top"), 10)
- });
- });
- };
-
- if (typeof(o.alsoResize) === "object" && !o.alsoResize.parentNode) {
- if (o.alsoResize.length) {
- o.alsoResize = o.alsoResize[0];
- _store(o.alsoResize);
- } else {
- $.each(o.alsoResize, function(exp) {
- _store(exp);
- });
- }
- } else {
- _store(o.alsoResize);
- }
- },
-
- resize: function(event, ui) {
- var that = $(this).resizable( "instance" ),
- o = that.options,
- os = that.originalSize,
- op = that.originalPosition,
- delta = {
- height: (that.size.height - os.height) || 0,
- width: (that.size.width - os.width) || 0,
- top: (that.position.top - op.top) || 0,
- left: (that.position.left - op.left) || 0
- },
-
- _alsoResize = function(exp, c) {
- $(exp).each(function() {
- var el = $(this), start = $(this).data("ui-resizable-alsoresize"), style = {},
- css = c && c.length ?
- c :
- el.parents(ui.originalElement[0]).length ?
- [ "width", "height" ] :
- [ "width", "height", "top", "left" ];
-
- $.each(css, function(i, prop) {
- var sum = (start[prop] || 0) + (delta[prop] || 0);
- if (sum && sum >= 0) {
- style[prop] = sum || null;
- }
- });
-
- el.css(style);
- });
- };
-
- if (typeof(o.alsoResize) === "object" && !o.alsoResize.nodeType) {
- $.each(o.alsoResize, function(exp, c) {
- _alsoResize(exp, c);
- });
- } else {
- _alsoResize(o.alsoResize);
- }
- },
-
- stop: function() {
- $(this).removeData("resizable-alsoresize");
- }
-});
-
-$.ui.plugin.add("resizable", "ghost", {
-
- start: function() {
-
- var that = $(this).resizable( "instance" ), o = that.options, cs = that.size;
-
- that.ghost = that.originalElement.clone();
- that.ghost
- .css({
- opacity: 0.25,
- display: "block",
- position: "relative",
- height: cs.height,
- width: cs.width,
- margin: 0,
- left: 0,
- top: 0
- })
- .addClass("ui-resizable-ghost")
- .addClass(typeof o.ghost === "string" ? o.ghost : "");
-
- that.ghost.appendTo(that.helper);
-
- },
-
- resize: function() {
- var that = $(this).resizable( "instance" );
- if (that.ghost) {
- that.ghost.css({
- position: "relative",
- height: that.size.height,
- width: that.size.width
- });
- }
- },
-
- stop: function() {
- var that = $(this).resizable( "instance" );
- if (that.ghost && that.helper) {
- that.helper.get(0).removeChild(that.ghost.get(0));
- }
- }
-
-});
-
-$.ui.plugin.add("resizable", "grid", {
-
- resize: function() {
- var outerDimensions,
- that = $(this).resizable( "instance" ),
- o = that.options,
- cs = that.size,
- os = that.originalSize,
- op = that.originalPosition,
- a = that.axis,
- grid = typeof o.grid === "number" ? [ o.grid, o.grid ] : o.grid,
- gridX = (grid[0] || 1),
- gridY = (grid[1] || 1),
- ox = Math.round((cs.width - os.width) / gridX) * gridX,
- oy = Math.round((cs.height - os.height) / gridY) * gridY,
- newWidth = os.width + ox,
- newHeight = os.height + oy,
- isMaxWidth = o.maxWidth && (o.maxWidth < newWidth),
- isMaxHeight = o.maxHeight && (o.maxHeight < newHeight),
- isMinWidth = o.minWidth && (o.minWidth > newWidth),
- isMinHeight = o.minHeight && (o.minHeight > newHeight);
-
- o.grid = grid;
-
- if (isMinWidth) {
- newWidth += gridX;
- }
- if (isMinHeight) {
- newHeight += gridY;
- }
- if (isMaxWidth) {
- newWidth -= gridX;
- }
- if (isMaxHeight) {
- newHeight -= gridY;
- }
-
- if (/^(se|s|e)$/.test(a)) {
- that.size.width = newWidth;
- that.size.height = newHeight;
- } else if (/^(ne)$/.test(a)) {
- that.size.width = newWidth;
- that.size.height = newHeight;
- that.position.top = op.top - oy;
- } else if (/^(sw)$/.test(a)) {
- that.size.width = newWidth;
- that.size.height = newHeight;
- that.position.left = op.left - ox;
- } else {
- if ( newHeight - gridY <= 0 || newWidth - gridX <= 0) {
- outerDimensions = that._getPaddingPlusBorderDimensions( this );
- }
-
- if ( newHeight - gridY > 0 ) {
- that.size.height = newHeight;
- that.position.top = op.top - oy;
- } else {
- newHeight = gridY - outerDimensions.height;
- that.size.height = newHeight;
- that.position.top = op.top + os.height - newHeight;
- }
- if ( newWidth - gridX > 0 ) {
- that.size.width = newWidth;
- that.position.left = op.left - ox;
- } else {
- newWidth = gridX - outerDimensions.width;
- that.size.width = newWidth;
- that.position.left = op.left + os.width - newWidth;
- }
- }
- }
-
-});
-
-var resizable = $.ui.resizable;
-
-
-/*!
- * jQuery UI Selectable 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/selectable/
- */
-
-
-var selectable = $.widget("ui.selectable", $.ui.mouse, {
- version: "1.11.3",
- options: {
- appendTo: "body",
- autoRefresh: true,
- distance: 0,
- filter: "*",
- tolerance: "touch",
-
- // callbacks
- selected: null,
- selecting: null,
- start: null,
- stop: null,
- unselected: null,
- unselecting: null
- },
- _create: function() {
- var selectees,
- that = this;
-
- this.element.addClass("ui-selectable");
-
- this.dragged = false;
-
- // cache selectee children based on filter
- this.refresh = function() {
- selectees = $(that.options.filter, that.element[0]);
- selectees.addClass("ui-selectee");
- selectees.each(function() {
- var $this = $(this),
- pos = $this.offset();
- $.data(this, "selectable-item", {
- element: this,
- $element: $this,
- left: pos.left,
- top: pos.top,
- right: pos.left + $this.outerWidth(),
- bottom: pos.top + $this.outerHeight(),
- startselected: false,
- selected: $this.hasClass("ui-selected"),
- selecting: $this.hasClass("ui-selecting"),
- unselecting: $this.hasClass("ui-unselecting")
- });
- });
- };
- this.refresh();
-
- this.selectees = selectees.addClass("ui-selectee");
-
- this._mouseInit();
-
- this.helper = $("<div class='ui-selectable-helper'></div>");
- },
-
- _destroy: function() {
- this.selectees
- .removeClass("ui-selectee")
- .removeData("selectable-item");
- this.element
- .removeClass("ui-selectable ui-selectable-disabled");
- this._mouseDestroy();
- },
-
- _mouseStart: function(event) {
- var that = this,
- options = this.options;
-
- this.opos = [ event.pageX, event.pageY ];
-
- if (this.options.disabled) {
- return;
- }
-
- this.selectees = $(options.filter, this.element[0]);
-
- this._trigger("start", event);
-
- $(options.appendTo).append(this.helper);
- // position helper (lasso)
- this.helper.css({
- "left": event.pageX,
- "top": event.pageY,
- "width": 0,
- "height": 0
- });
-
- if (options.autoRefresh) {
- this.refresh();
- }
-
- this.selectees.filter(".ui-selected").each(function() {
- var selectee = $.data(this, "selectable-item");
- selectee.startselected = true;
- if (!event.metaKey && !event.ctrlKey) {
- selectee.$element.removeClass("ui-selected");
- selectee.selected = false;
- selectee.$element.addClass("ui-unselecting");
- selectee.unselecting = true;
- // selectable UNSELECTING callback
- that._trigger("unselecting", event, {
- unselecting: selectee.element
- });
- }
- });
-
- $(event.target).parents().addBack().each(function() {
- var doSelect,
- selectee = $.data(this, "selectable-item");
- if (selectee) {
- doSelect = (!event.metaKey && !event.ctrlKey) || !selectee.$element.hasClass("ui-selected");
- selectee.$element
- .removeClass(doSelect ? "ui-unselecting" : "ui-selected")
- .addClass(doSelect ? "ui-selecting" : "ui-unselecting");
- selectee.unselecting = !doSelect;
- selectee.selecting = doSelect;
- selectee.selected = doSelect;
- // selectable (UN)SELECTING callback
- if (doSelect) {
- that._trigger("selecting", event, {
- selecting: selectee.element
- });
- } else {
- that._trigger("unselecting", event, {
- unselecting: selectee.element
- });
- }
- return false;
- }
- });
-
- },
-
- _mouseDrag: function(event) {
-
- this.dragged = true;
-
- if (this.options.disabled) {
- return;
- }
-
- var tmp,
- that = this,
- options = this.options,
- x1 = this.opos[0],
- y1 = this.opos[1],
- x2 = event.pageX,
- y2 = event.pageY;
-
- if (x1 > x2) { tmp = x2; x2 = x1; x1 = tmp; }
- if (y1 > y2) { tmp = y2; y2 = y1; y1 = tmp; }
- this.helper.css({ left: x1, top: y1, width: x2 - x1, height: y2 - y1 });
-
- this.selectees.each(function() {
- var selectee = $.data(this, "selectable-item"),
- hit = false;
-
- //prevent helper from being selected if appendTo: selectable
- if (!selectee || selectee.element === that.element[0]) {
- return;
- }
-
- if (options.tolerance === "touch") {
- hit = ( !(selectee.left > x2 || selectee.right < x1 || selectee.top > y2 || selectee.bottom < y1) );
- } else if (options.tolerance === "fit") {
- hit = (selectee.left > x1 && selectee.right < x2 && selectee.top > y1 && selectee.bottom < y2);
- }
-
- if (hit) {
- // SELECT
- if (selectee.selected) {
- selectee.$element.removeClass("ui-selected");
- selectee.selected = false;
- }
- if (selectee.unselecting) {
- selectee.$element.removeClass("ui-unselecting");
- selectee.unselecting = false;
- }
- if (!selectee.selecting) {
- selectee.$element.addClass("ui-selecting");
- selectee.selecting = true;
- // selectable SELECTING callback
- that._trigger("selecting", event, {
- selecting: selectee.element
- });
- }
- } else {
- // UNSELECT
- if (selectee.selecting) {
- if ((event.metaKey || event.ctrlKey) && selectee.startselected) {
- selectee.$element.removeClass("ui-selecting");
- selectee.selecting = false;
- selectee.$element.addClass("ui-selected");
- selectee.selected = true;
- } else {
- selectee.$element.removeClass("ui-selecting");
- selectee.selecting = false;
- if (selectee.startselected) {
- selectee.$element.addClass("ui-unselecting");
- selectee.unselecting = true;
- }
- // selectable UNSELECTING callback
- that._trigger("unselecting", event, {
- unselecting: selectee.element
- });
- }
- }
- if (selectee.selected) {
- if (!event.metaKey && !event.ctrlKey && !selectee.startselected) {
- selectee.$element.removeClass("ui-selected");
- selectee.selected = false;
-
- selectee.$element.addClass("ui-unselecting");
- selectee.unselecting = true;
- // selectable UNSELECTING callback
- that._trigger("unselecting", event, {
- unselecting: selectee.element
- });
- }
- }
- }
- });
-
- return false;
- },
-
- _mouseStop: function(event) {
- var that = this;
-
- this.dragged = false;
-
- $(".ui-unselecting", this.element[0]).each(function() {
- var selectee = $.data(this, "selectable-item");
- selectee.$element.removeClass("ui-unselecting");
- selectee.unselecting = false;
- selectee.startselected = false;
- that._trigger("unselected", event, {
- unselected: selectee.element
- });
- });
- $(".ui-selecting", this.element[0]).each(function() {
- var selectee = $.data(this, "selectable-item");
- selectee.$element.removeClass("ui-selecting").addClass("ui-selected");
- selectee.selecting = false;
- selectee.selected = true;
- selectee.startselected = true;
- that._trigger("selected", event, {
- selected: selectee.element
- });
- });
- this._trigger("stop", event);
-
- this.helper.remove();
-
- return false;
- }
-
-});
-
-
-/*!
- * jQuery UI Sortable 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/sortable/
- */
-
-
-var sortable = $.widget("ui.sortable", $.ui.mouse, {
- version: "1.11.3",
- widgetEventPrefix: "sort",
- ready: false,
- options: {
- appendTo: "parent",
- axis: false,
- connectWith: false,
- containment: false,
- cursor: "auto",
- cursorAt: false,
- dropOnEmpty: true,
- forcePlaceholderSize: false,
- forceHelperSize: false,
- grid: false,
- handle: false,
- helper: "original",
- items: "> *",
- opacity: false,
- placeholder: false,
- revert: false,
- scroll: true,
- scrollSensitivity: 20,
- scrollSpeed: 20,
- scope: "default",
- tolerance: "intersect",
- zIndex: 1000,
-
- // callbacks
- activate: null,
- beforeStop: null,
- change: null,
- deactivate: null,
- out: null,
- over: null,
- receive: null,
- remove: null,
- sort: null,
- start: null,
- stop: null,
- update: null
- },
-
- _isOverAxis: function( x, reference, size ) {
- return ( x >= reference ) && ( x < ( reference + size ) );
- },
-
- _isFloating: function( item ) {
- return (/left|right/).test(item.css("float")) || (/inline|table-cell/).test(item.css("display"));
- },
-
- _create: function() {
-
- var o = this.options;
- this.containerCache = {};
- this.element.addClass("ui-sortable");
-
- //Get the items
- this.refresh();
-
- //Let's determine if the items are being displayed horizontally
- this.floating = this.items.length ? o.axis === "x" || this._isFloating(this.items[0].item) : false;
-
- //Let's determine the parent's offset
- this.offset = this.element.offset();
-
- //Initialize mouse events for interaction
- this._mouseInit();
-
- this._setHandleClassName();
-
- //We're ready to go
- this.ready = true;
-
- },
-
- _setOption: function( key, value ) {
- this._super( key, value );
-
- if ( key === "handle" ) {
- this._setHandleClassName();
- }
- },
-
- _setHandleClassName: function() {
- this.element.find( ".ui-sortable-handle" ).removeClass( "ui-sortable-handle" );
- $.each( this.items, function() {
- ( this.instance.options.handle ?
- this.item.find( this.instance.options.handle ) : this.item )
- .addClass( "ui-sortable-handle" );
- });
- },
-
- _destroy: function() {
- this.element
- .removeClass( "ui-sortable ui-sortable-disabled" )
- .find( ".ui-sortable-handle" )
- .removeClass( "ui-sortable-handle" );
- this._mouseDestroy();
-
- for ( var i = this.items.length - 1; i >= 0; i-- ) {
- this.items[i].item.removeData(this.widgetName + "-item");
- }
-
- return this;
- },
-
- _mouseCapture: function(event, overrideHandle) {
- var currentItem = null,
- validHandle = false,
- that = this;
-
- if (this.reverting) {
- return false;
- }
-
- if(this.options.disabled || this.options.type === "static") {
- return false;
- }
-
- //We have to refresh the items data once first
- this._refreshItems(event);
-
- //Find out if the clicked node (or one of its parents) is a actual item in this.items
- $(event.target).parents().each(function() {
- if($.data(this, that.widgetName + "-item") === that) {
- currentItem = $(this);
- return false;
- }
- });
- if($.data(event.target, that.widgetName + "-item") === that) {
- currentItem = $(event.target);
- }
-
- if(!currentItem) {
- return false;
- }
- if(this.options.handle && !overrideHandle) {
- $(this.options.handle, currentItem).find("*").addBack().each(function() {
- if(this === event.target) {
- validHandle = true;
- }
- });
- if(!validHandle) {
- return false;
- }
- }
-
- this.currentItem = currentItem;
- this._removeCurrentsFromItems();
- return true;
-
- },
-
- _mouseStart: function(event, overrideHandle, noActivation) {
-
- var i, body,
- o = this.options;
-
- this.currentContainer = this;
-
- //We only need to call refreshPositions, because the refreshItems call has been moved to mouseCapture
- this.refreshPositions();
-
- //Create and append the visible helper
- this.helper = this._createHelper(event);
-
- //Cache the helper size
- this._cacheHelperProportions();
-
- /*
- * - Position generation -
- * This block generates everything position related - it's the core of draggables.
- */
-
- //Cache the margins of the original element
- this._cacheMargins();
-
- //Get the next scrolling parent
- this.scrollParent = this.helper.scrollParent();
-
- //The element's absolute position on the page minus margins
- this.offset = this.currentItem.offset();
- this.offset = {
- top: this.offset.top - this.margins.top,
- left: this.offset.left - this.margins.left
- };
-
- $.extend(this.offset, {
- click: { //Where the click happened, relative to the element
- left: event.pageX - this.offset.left,
- top: event.pageY - this.offset.top
- },
- parent: this._getParentOffset(),
- relative: this._getRelativeOffset() //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helper
- });
-
- // Only after we got the offset, we can change the helper's position to absolute
- // TODO: Still need to figure out a way to make relative sorting possible
- this.helper.css("position", "absolute");
- this.cssPosition = this.helper.css("position");
-
- //Generate the original position
- this.originalPosition = this._generatePosition(event);
- this.originalPageX = event.pageX;
- this.originalPageY = event.pageY;
-
- //Adjust the mouse offset relative to the helper if "cursorAt" is supplied
- (o.cursorAt && this._adjustOffsetFromHelper(o.cursorAt));
-
- //Cache the former DOM position
- this.domPosition = { prev: this.currentItem.prev()[0], parent: this.currentItem.parent()[0] };
-
- //If the helper is not the original, hide the original so it's not playing any role during the drag, won't cause anything bad this way
- if(this.helper[0] !== this.currentItem[0]) {
- this.currentItem.hide();
- }
-
- //Create the placeholder
- this._createPlaceholder();
-
- //Set a containment if given in the options
- if(o.containment) {
- this._setContainment();
- }
-
- if( o.cursor && o.cursor !== "auto" ) { // cursor option
- body = this.document.find( "body" );
-
- // support: IE
- this.storedCursor = body.css( "cursor" );
- body.css( "cursor", o.cursor );
-
- this.storedStylesheet = $( "<style>*{ cursor: "+o.cursor+" !important; }</style>" ).appendTo( body );
- }
-
- if(o.opacity) { // opacity option
- if (this.helper.css("opacity")) {
- this._storedOpacity = this.helper.css("opacity");
- }
- this.helper.css("opacity", o.opacity);
- }
-
- if(o.zIndex) { // zIndex option
- if (this.helper.css("zIndex")) {
- this._storedZIndex = this.helper.css("zIndex");
- }
- this.helper.css("zIndex", o.zIndex);
- }
-
- //Prepare scrolling
- if(this.scrollParent[0] !== this.document[0] && this.scrollParent[0].tagName !== "HTML") {
- this.overflowOffset = this.scrollParent.offset();
- }
-
- //Call callbacks
- this._trigger("start", event, this._uiHash());
-
- //Recache the helper size
- if(!this._preserveHelperProportions) {
- this._cacheHelperProportions();
- }
-
-
- //Post "activate" events to possible containers
- if( !noActivation ) {
- for ( i = this.containers.length - 1; i >= 0; i-- ) {
- this.containers[ i ]._trigger( "activate", event, this._uiHash( this ) );
- }
- }
-
- //Prepare possible droppables
- if($.ui.ddmanager) {
- $.ui.ddmanager.current = this;
- }
-
- if ($.ui.ddmanager && !o.dropBehaviour) {
- $.ui.ddmanager.prepareOffsets(this, event);
- }
-
- this.dragging = true;
-
- this.helper.addClass("ui-sortable-helper");
- this._mouseDrag(event); //Execute the drag once - this causes the helper not to be visible before getting its correct position
- return true;
-
- },
-
- _mouseDrag: function(event) {
- var i, item, itemElement, intersection,
- o = this.options,
- scrolled = false;
-
- //Compute the helpers position
- this.position = this._generatePosition(event);
- this.positionAbs = this._convertPositionTo("absolute");
-
- if (!this.lastPositionAbs) {
- this.lastPositionAbs = this.positionAbs;
- }
-
- //Do scrolling
- if(this.options.scroll) {
- if(this.scrollParent[0] !== this.document[0] && this.scrollParent[0].tagName !== "HTML") {
-
- if((this.overflowOffset.top + this.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) {
- this.scrollParent[0].scrollTop = scrolled = this.scrollParent[0].scrollTop + o.scrollSpeed;
- } else if(event.pageY - this.overflowOffset.top < o.scrollSensitivity) {
- this.scrollParent[0].scrollTop = scrolled = this.scrollParent[0].scrollTop - o.scrollSpeed;
- }
-
- if((this.overflowOffset.left + this.scrollParent[0].offsetWidth) - event.pageX < o.scrollSensitivity) {
- this.scrollParent[0].scrollLeft = scrolled = this.scrollParent[0].scrollLeft + o.scrollSpeed;
- } else if(event.pageX - this.overflowOffset.left < o.scrollSensitivity) {
- this.scrollParent[0].scrollLeft = scrolled = this.scrollParent[0].scrollLeft - o.scrollSpeed;
- }
-
- } else {
-
- if(event.pageY - this.document.scrollTop() < o.scrollSensitivity) {
- scrolled = this.document.scrollTop(this.document.scrollTop() - o.scrollSpeed);
- } else if(this.window.height() - (event.pageY - this.document.scrollTop()) < o.scrollSensitivity) {
- scrolled = this.document.scrollTop(this.document.scrollTop() + o.scrollSpeed);
- }
-
- if(event.pageX - this.document.scrollLeft() < o.scrollSensitivity) {
- scrolled = this.document.scrollLeft(this.document.scrollLeft() - o.scrollSpeed);
- } else if(this.window.width() - (event.pageX - this.document.scrollLeft()) < o.scrollSensitivity) {
- scrolled = this.document.scrollLeft(this.document.scrollLeft() + o.scrollSpeed);
- }
-
- }
-
- if(scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) {
- $.ui.ddmanager.prepareOffsets(this, event);
- }
- }
-
- //Regenerate the absolute position used for position checks
- this.positionAbs = this._convertPositionTo("absolute");
-
- //Set the helper position
- if(!this.options.axis || this.options.axis !== "y") {
- this.helper[0].style.left = this.position.left+"px";
- }
- if(!this.options.axis || this.options.axis !== "x") {
- this.helper[0].style.top = this.position.top+"px";
- }
-
- //Rearrange
- for (i = this.items.length - 1; i >= 0; i--) {
-
- //Cache variables and intersection, continue if no intersection
- item = this.items[i];
- itemElement = item.item[0];
- intersection = this._intersectsWithPointer(item);
- if (!intersection) {
- continue;
- }
-
- // Only put the placeholder inside the current Container, skip all
- // items from other containers. This works because when moving
- // an item from one container to another the
- // currentContainer is switched before the placeholder is moved.
- //
- // Without this, moving items in "sub-sortables" can cause
- // the placeholder to jitter between the outer and inner container.
- if (item.instance !== this.currentContainer) {
- continue;
- }
-
- // cannot intersect with itself
- // no useless actions that have been done before
- // no action if the item moved is the parent of the item checked
- if (itemElement !== this.currentItem[0] &&
- this.placeholder[intersection === 1 ? "next" : "prev"]()[0] !== itemElement &&
- !$.contains(this.placeholder[0], itemElement) &&
- (this.options.type === "semi-dynamic" ? !$.contains(this.element[0], itemElement) : true)
- ) {
-
- this.direction = intersection === 1 ? "down" : "up";
-
- if (this.options.tolerance === "pointer" || this._intersectsWithSides(item)) {
- this._rearrange(event, item);
- } else {
- break;
- }
-
- this._trigger("change", event, this._uiHash());
- break;
- }
- }
-
- //Post events to containers
- this._contactContainers(event);
-
- //Interconnect with droppables
- if($.ui.ddmanager) {
- $.ui.ddmanager.drag(this, event);
- }
-
- //Call callbacks
- this._trigger("sort", event, this._uiHash());
-
- this.lastPositionAbs = this.positionAbs;
- return false;
-
- },
-
- _mouseStop: function(event, noPropagation) {
-
- if(!event) {
- return;
- }
-
- //If we are using droppables, inform the manager about the drop
- if ($.ui.ddmanager && !this.options.dropBehaviour) {
- $.ui.ddmanager.drop(this, event);
- }
-
- if(this.options.revert) {
- var that = this,
- cur = this.placeholder.offset(),
- axis = this.options.axis,
- animation = {};
-
- if ( !axis || axis === "x" ) {
- animation.left = cur.left - this.offset.parent.left - this.margins.left + (this.offsetParent[0] === this.document[0].body ? 0 : this.offsetParent[0].scrollLeft);
- }
- if ( !axis || axis === "y" ) {
- animation.top = cur.top - this.offset.parent.top - this.margins.top + (this.offsetParent[0] === this.document[0].body ? 0 : this.offsetParent[0].scrollTop);
- }
- this.reverting = true;
- $(this.helper).animate( animation, parseInt(this.options.revert, 10) || 500, function() {
- that._clear(event);
- });
- } else {
- this._clear(event, noPropagation);
- }
-
- return false;
-
- },
-
- cancel: function() {
-
- if(this.dragging) {
-
- this._mouseUp({ target: null });
-
- if(this.options.helper === "original") {
- this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper");
- } else {
- this.currentItem.show();
- }
-
- //Post deactivating events to containers
- for (var i = this.containers.length - 1; i >= 0; i--){
- this.containers[i]._trigger("deactivate", null, this._uiHash(this));
- if(this.containers[i].containerCache.over) {
- this.containers[i]._trigger("out", null, this._uiHash(this));
- this.containers[i].containerCache.over = 0;
- }
- }
-
- }
-
- if (this.placeholder) {
- //$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately, it unbinds ALL events from the original node!
- if(this.placeholder[0].parentNode) {
- this.placeholder[0].parentNode.removeChild(this.placeholder[0]);
- }
- if(this.options.helper !== "original" && this.helper && this.helper[0].parentNode) {
- this.helper.remove();
- }
-
- $.extend(this, {
- helper: null,
- dragging: false,
- reverting: false,
- _noFinalSort: null
- });
-
- if(this.domPosition.prev) {
- $(this.domPosition.prev).after(this.currentItem);
- } else {
- $(this.domPosition.parent).prepend(this.currentItem);
- }
- }
-
- return this;
-
- },
-
- serialize: function(o) {
-
- var items = this._getItemsAsjQuery(o && o.connected),
- str = [];
- o = o || {};
-
- $(items).each(function() {
- var res = ($(o.item || this).attr(o.attribute || "id") || "").match(o.expression || (/(.+)[\-=_](.+)/));
- if (res) {
- str.push((o.key || res[1]+"[]")+"="+(o.key && o.expression ? res[1] : res[2]));
- }
- });
-
- if(!str.length && o.key) {
- str.push(o.key + "=");
- }
-
- return str.join("&");
-
- },
-
- toArray: function(o) {
-
- var items = this._getItemsAsjQuery(o && o.connected),
- ret = [];
-
- o = o || {};
-
- items.each(function() { ret.push($(o.item || this).attr(o.attribute || "id") || ""); });
- return ret;
-
- },
-
- /* Be careful with the following core functions */
- _intersectsWith: function(item) {
-
- var x1 = this.positionAbs.left,
- x2 = x1 + this.helperProportions.width,
- y1 = this.positionAbs.top,
- y2 = y1 + this.helperProportions.height,
- l = item.left,
- r = l + item.width,
- t = item.top,
- b = t + item.height,
- dyClick = this.offset.click.top,
- dxClick = this.offset.click.left,
- isOverElementHeight = ( this.options.axis === "x" ) || ( ( y1 + dyClick ) > t && ( y1 + dyClick ) < b ),
- isOverElementWidth = ( this.options.axis === "y" ) || ( ( x1 + dxClick ) > l && ( x1 + dxClick ) < r ),
- isOverElement = isOverElementHeight && isOverElementWidth;
-
- if ( this.options.tolerance === "pointer" ||
- this.options.forcePointerForContainers ||
- (this.options.tolerance !== "pointer" && this.helperProportions[this.floating ? "width" : "height"] > item[this.floating ? "width" : "height"])
- ) {
- return isOverElement;
- } else {
-
- return (l < x1 + (this.helperProportions.width / 2) && // Right Half
- x2 - (this.helperProportions.width / 2) < r && // Left Half
- t < y1 + (this.helperProportions.height / 2) && // Bottom Half
- y2 - (this.helperProportions.height / 2) < b ); // Top Half
-
- }
- },
-
- _intersectsWithPointer: function(item) {
-
- var isOverElementHeight = (this.options.axis === "x") || this._isOverAxis(this.positionAbs.top + this.offset.click.top, item.top, item.height),
- isOverElementWidth = (this.options.axis === "y") || this._isOverAxis(this.positionAbs.left + this.offset.click.left, item.left, item.width),
- isOverElement = isOverElementHeight && isOverElementWidth,
- verticalDirection = this._getDragVerticalDirection(),
- horizontalDirection = this._getDragHorizontalDirection();
-
- if (!isOverElement) {
- return false;
- }
-
- return this.floating ?
- ( ((horizontalDirection && horizontalDirection === "right") || verticalDirection === "down") ? 2 : 1 )
- : ( verticalDirection && (verticalDirection === "down" ? 2 : 1) );
-
- },
-
- _intersectsWithSides: function(item) {
-
- var isOverBottomHalf = this._isOverAxis(this.positionAbs.top + this.offset.click.top, item.top + (item.height/2), item.height),
- isOverRightHalf = this._isOverAxis(this.positionAbs.left + this.offset.click.left, item.left + (item.width/2), item.width),
- verticalDirection = this._getDragVerticalDirection(),
- horizontalDirection = this._getDragHorizontalDirection();
-
- if (this.floating && horizontalDirection) {
- return ((horizontalDirection === "right" && isOverRightHalf) || (horizontalDirection === "left" && !isOverRightHalf));
- } else {
- return verticalDirection && ((verticalDirection === "down" && isOverBottomHalf) || (verticalDirection === "up" && !isOverBottomHalf));
- }
-
- },
-
- _getDragVerticalDirection: function() {
- var delta = this.positionAbs.top - this.lastPositionAbs.top;
- return delta !== 0 && (delta > 0 ? "down" : "up");
- },
-
- _getDragHorizontalDirection: function() {
- var delta = this.positionAbs.left - this.lastPositionAbs.left;
- return delta !== 0 && (delta > 0 ? "right" : "left");
- },
-
- refresh: function(event) {
- this._refreshItems(event);
- this._setHandleClassName();
- this.refreshPositions();
- return this;
- },
-
- _connectWith: function() {
- var options = this.options;
- return options.connectWith.constructor === String ? [options.connectWith] : options.connectWith;
- },
-
- _getItemsAsjQuery: function(connected) {
-
- var i, j, cur, inst,
- items = [],
- queries = [],
- connectWith = this._connectWith();
-
- if(connectWith && connected) {
- for (i = connectWith.length - 1; i >= 0; i--){
- cur = $(connectWith[i], this.document[0]);
- for ( j = cur.length - 1; j >= 0; j--){
- inst = $.data(cur[j], this.widgetFullName);
- if(inst && inst !== this && !inst.options.disabled) {
- queries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element) : $(inst.options.items, inst.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"), inst]);
- }
- }
- }
- }
-
- queries.push([$.isFunction(this.options.items) ? this.options.items.call(this.element, null, { options: this.options, item: this.currentItem }) : $(this.options.items, this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"), this]);
-
- function addItems() {
- items.push( this );
- }
- for (i = queries.length - 1; i >= 0; i--){
- queries[i][0].each( addItems );
- }
-
- return $(items);
-
- },
-
- _removeCurrentsFromItems: function() {
-
- var list = this.currentItem.find(":data(" + this.widgetName + "-item)");
-
- this.items = $.grep(this.items, function (item) {
- for (var j=0; j < list.length; j++) {
- if(list[j] === item.item[0]) {
- return false;
- }
- }
- return true;
- });
-
- },
-
- _refreshItems: function(event) {
-
- this.items = [];
- this.containers = [this];
-
- var i, j, cur, inst, targetData, _queries, item, queriesLength,
- items = this.items,
- queries = [[$.isFunction(this.options.items) ? this.options.items.call(this.element[0], event, { item: this.currentItem }) : $(this.options.items, this.element), this]],
- connectWith = this._connectWith();
-
- if(connectWith && this.ready) { //Shouldn't be run the first time through due to massive slow-down
- for (i = connectWith.length - 1; i >= 0; i--){
- cur = $(connectWith[i], this.document[0]);
- for (j = cur.length - 1; j >= 0; j--){
- inst = $.data(cur[j], this.widgetFullName);
- if(inst && inst !== this && !inst.options.disabled) {
- queries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element[0], event, { item: this.currentItem }) : $(inst.options.items, inst.element), inst]);
- this.containers.push(inst);
- }
- }
- }
- }
-
- for (i = queries.length - 1; i >= 0; i--) {
- targetData = queries[i][1];
- _queries = queries[i][0];
-
- for (j=0, queriesLength = _queries.length; j < queriesLength; j++) {
- item = $(_queries[j]);
-
- item.data(this.widgetName + "-item", targetData); // Data for target checking (mouse manager)
-
- items.push({
- item: item,
- instance: targetData,
- width: 0, height: 0,
- left: 0, top: 0
- });
- }
- }
-
- },
-
- refreshPositions: function(fast) {
-
- //This has to be redone because due to the item being moved out/into the offsetParent, the offsetParent's position will change
- if(this.offsetParent && this.helper) {
- this.offset.parent = this._getParentOffset();
- }
-
- var i, item, t, p;
-
- for (i = this.items.length - 1; i >= 0; i--){
- item = this.items[i];
-
- //We ignore calculating positions of all connected containers when we're not over them
- if(item.instance !== this.currentContainer && this.currentContainer && item.item[0] !== this.currentItem[0]) {
- continue;
- }
-
- t = this.options.toleranceElement ? $(this.options.toleranceElement, item.item) : item.item;
-
- if (!fast) {
- item.width = t.outerWidth();
- item.height = t.outerHeight();
- }
-
- p = t.offset();
- item.left = p.left;
- item.top = p.top;
- }
-
- if(this.options.custom && this.options.custom.refreshContainers) {
- this.options.custom.refreshContainers.call(this);
- } else {
- for (i = this.containers.length - 1; i >= 0; i--){
- p = this.containers[i].element.offset();
- this.containers[i].containerCache.left = p.left;
- this.containers[i].containerCache.top = p.top;
- this.containers[i].containerCache.width = this.containers[i].element.outerWidth();
- this.containers[i].containerCache.height = this.containers[i].element.outerHeight();
- }
- }
-
- return this;
- },
-
- _createPlaceholder: function(that) {
- that = that || this;
- var className,
- o = that.options;
-
- if(!o.placeholder || o.placeholder.constructor === String) {
- className = o.placeholder;
- o.placeholder = {
- element: function() {
-
- var nodeName = that.currentItem[0].nodeName.toLowerCase(),
- element = $( "<" + nodeName + ">", that.document[0] )
- .addClass(className || that.currentItem[0].className+" ui-sortable-placeholder")
- .removeClass("ui-sortable-helper");
-
- if ( nodeName === "tr" ) {
- that.currentItem.children().each(function() {
- $( "<td> </td>", that.document[0] )
- .attr( "colspan", $( this ).attr( "colspan" ) || 1 )
- .appendTo( element );
- });
- } else if ( nodeName === "img" ) {
- element.attr( "src", that.currentItem.attr( "src" ) );
- }
-
- if ( !className ) {
- element.css( "visibility", "hidden" );
- }
-
- return element;
- },
- update: function(container, p) {
-
- // 1. If a className is set as 'placeholder option, we don't force sizes - the class is responsible for that
- // 2. The option 'forcePlaceholderSize can be enabled to force it even if a class name is specified
- if(className && !o.forcePlaceholderSize) {
- return;
- }
-
- //If the element doesn't have a actual height by itself (without styles coming from a stylesheet), it receives the inline height from the dragged item
- if(!p.height()) { p.height(that.currentItem.innerHeight() - parseInt(that.currentItem.css("paddingTop")||0, 10) - parseInt(that.currentItem.css("paddingBottom")||0, 10)); }
- if(!p.width()) { p.width(that.currentItem.innerWidth() - parseInt(that.currentItem.css("paddingLeft")||0, 10) - parseInt(that.currentItem.css("paddingRight")||0, 10)); }
- }
- };
- }
-
- //Create the placeholder
- that.placeholder = $(o.placeholder.element.call(that.element, that.currentItem));
-
- //Append it after the actual current item
- that.currentItem.after(that.placeholder);
-
- //Update the size of the placeholder (TODO: Logic to fuzzy, see line 316/317)
- o.placeholder.update(that, that.placeholder);
-
- },
-
- _contactContainers: function(event) {
- var i, j, dist, itemWithLeastDistance, posProperty, sizeProperty, cur, nearBottom, floating, axis,
- innermostContainer = null,
- innermostIndex = null;
-
- // get innermost container that intersects with item
- for (i = this.containers.length - 1; i >= 0; i--) {
-
- // never consider a container that's located within the item itself
- if($.contains(this.currentItem[0], this.containers[i].element[0])) {
- continue;
- }
-
- if(this._intersectsWith(this.containers[i].containerCache)) {
-
- // if we've already found a container and it's more "inner" than this, then continue
- if(innermostContainer && $.contains(this.containers[i].element[0], innermostContainer.element[0])) {
- continue;
- }
-
- innermostContainer = this.containers[i];
- innermostIndex = i;
-
- } else {
- // container doesn't intersect. trigger "out" event if necessary
- if(this.containers[i].containerCache.over) {
- this.containers[i]._trigger("out", event, this._uiHash(this));
- this.containers[i].containerCache.over = 0;
- }
- }
-
- }
-
- // if no intersecting containers found, return
- if(!innermostContainer) {
- return;
- }
-
- // move the item into the container if it's not there already
- if(this.containers.length === 1) {
- if (!this.containers[innermostIndex].containerCache.over) {
- this.containers[innermostIndex]._trigger("over", event, this._uiHash(this));
- this.containers[innermostIndex].containerCache.over = 1;
- }
- } else {
-
- //When entering a new container, we will find the item with the least distance and append our item near it
- dist = 10000;
- itemWithLeastDistance = null;
- floating = innermostContainer.floating || this._isFloating(this.currentItem);
- posProperty = floating ? "left" : "top";
- sizeProperty = floating ? "width" : "height";
- axis = floating ? "clientX" : "clientY";
-
- for (j = this.items.length - 1; j >= 0; j--) {
- if(!$.contains(this.containers[innermostIndex].element[0], this.items[j].item[0])) {
- continue;
- }
- if(this.items[j].item[0] === this.currentItem[0]) {
- continue;
- }
-
- cur = this.items[j].item.offset()[posProperty];
- nearBottom = false;
- if ( event[ axis ] - cur > this.items[ j ][ sizeProperty ] / 2 ) {
- nearBottom = true;
- }
-
- if ( Math.abs( event[ axis ] - cur ) < dist ) {
- dist = Math.abs( event[ axis ] - cur );
- itemWithLeastDistance = this.items[ j ];
- this.direction = nearBottom ? "up": "down";
- }
- }
-
- //Check if dropOnEmpty is enabled
- if(!itemWithLeastDistance && !this.options.dropOnEmpty) {
- return;
- }
-
- if(this.currentContainer === this.containers[innermostIndex]) {
- if ( !this.currentContainer.containerCache.over ) {
- this.containers[ innermostIndex ]._trigger( "over", event, this._uiHash() );
- this.currentContainer.containerCache.over = 1;
- }
- return;
- }
-
- itemWithLeastDistance ? this._rearrange(event, itemWithLeastDistance, null, true) : this._rearrange(event, null, this.containers[innermostIndex].element, true);
- this._trigger("change", event, this._uiHash());
- this.containers[innermostIndex]._trigger("change", event, this._uiHash(this));
- this.currentContainer = this.containers[innermostIndex];
-
- //Update the placeholder
- this.options.placeholder.update(this.currentContainer, this.placeholder);
-
- this.containers[innermostIndex]._trigger("over", event, this._uiHash(this));
- this.containers[innermostIndex].containerCache.over = 1;
- }
-
-
- },
-
- _createHelper: function(event) {
-
- var o = this.options,
- helper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [event, this.currentItem])) : (o.helper === "clone" ? this.currentItem.clone() : this.currentItem);
-
- //Add the helper to the DOM if that didn't happen already
- if(!helper.parents("body").length) {
- $(o.appendTo !== "parent" ? o.appendTo : this.currentItem[0].parentNode)[0].appendChild(helper[0]);
- }
-
- if(helper[0] === this.currentItem[0]) {
- this._storedCSS = { width: this.currentItem[0].style.width, height: this.currentItem[0].style.height, position: this.currentItem.css("position"), top: this.currentItem.css("top"), left: this.currentItem.css("left") };
- }
-
- if(!helper[0].style.width || o.forceHelperSize) {
- helper.width(this.currentItem.width());
- }
- if(!helper[0].style.height || o.forceHelperSize) {
- helper.height(this.currentItem.height());
- }
-
- return helper;
-
- },
-
- _adjustOffsetFromHelper: function(obj) {
- if (typeof obj === "string") {
- obj = obj.split(" ");
- }
- if ($.isArray(obj)) {
- obj = {left: +obj[0], top: +obj[1] || 0};
- }
- if ("left" in obj) {
- this.offset.click.left = obj.left + this.margins.left;
- }
- if ("right" in obj) {
- this.offset.click.left = this.helperProportions.width - obj.right + this.margins.left;
- }
- if ("top" in obj) {
- this.offset.click.top = obj.top + this.margins.top;
- }
- if ("bottom" in obj) {
- this.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top;
- }
- },
-
- _getParentOffset: function() {
-
-
- //Get the offsetParent and cache its position
- this.offsetParent = this.helper.offsetParent();
- var po = this.offsetParent.offset();
-
- // This is a special case where we need to modify a offset calculated on start, since the following happened:
- // 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent
- // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that
- // the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag
- if(this.cssPosition === "absolute" && this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) {
- po.left += this.scrollParent.scrollLeft();
- po.top += this.scrollParent.scrollTop();
- }
-
- // This needs to be actually done for all browsers, since pageX/pageY includes this information
- // with an ugly IE fix
- if( this.offsetParent[0] === this.document[0].body || (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() === "html" && $.ui.ie)) {
- po = { top: 0, left: 0 };
- }
-
- return {
- top: po.top + (parseInt(this.offsetParent.css("borderTopWidth"),10) || 0),
- left: po.left + (parseInt(this.offsetParent.css("borderLeftWidth"),10) || 0)
- };
-
- },
-
- _getRelativeOffset: function() {
-
- if(this.cssPosition === "relative") {
- var p = this.currentItem.position();
- return {
- top: p.top - (parseInt(this.helper.css("top"),10) || 0) + this.scrollParent.scrollTop(),
- left: p.left - (parseInt(this.helper.css("left"),10) || 0) + this.scrollParent.scrollLeft()
- };
- } else {
- return { top: 0, left: 0 };
- }
-
- },
-
- _cacheMargins: function() {
- this.margins = {
- left: (parseInt(this.currentItem.css("marginLeft"),10) || 0),
- top: (parseInt(this.currentItem.css("marginTop"),10) || 0)
- };
- },
-
- _cacheHelperProportions: function() {
- this.helperProportions = {
- width: this.helper.outerWidth(),
- height: this.helper.outerHeight()
- };
- },
-
- _setContainment: function() {
-
- var ce, co, over,
- o = this.options;
- if(o.containment === "parent") {
- o.containment = this.helper[0].parentNode;
- }
- if(o.containment === "document" || o.containment === "window") {
- this.containment = [
- 0 - this.offset.relative.left - this.offset.parent.left,
- 0 - this.offset.relative.top - this.offset.parent.top,
- o.containment === "document" ? this.document.width() : this.window.width() - this.helperProportions.width - this.margins.left,
- (o.containment === "document" ? this.document.width() : this.window.height() || this.document[0].body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top
- ];
- }
-
- if(!(/^(document|window|parent)$/).test(o.containment)) {
- ce = $(o.containment)[0];
- co = $(o.containment).offset();
- over = ($(ce).css("overflow") !== "hidden");
-
- this.containment = [
- co.left + (parseInt($(ce).css("borderLeftWidth"),10) || 0) + (parseInt($(ce).css("paddingLeft"),10) || 0) - this.margins.left,
- co.top + (parseInt($(ce).css("borderTopWidth"),10) || 0) + (parseInt($(ce).css("paddingTop"),10) || 0) - this.margins.top,
- co.left+(over ? Math.max(ce.scrollWidth,ce.offsetWidth) : ce.offsetWidth) - (parseInt($(ce).css("borderLeftWidth"),10) || 0) - (parseInt($(ce).css("paddingRight"),10) || 0) - this.helperProportions.width - this.margins.left,
- co.top+(over ? Math.max(ce.scrollHeight,ce.offsetHeight) : ce.offsetHeight) - (parseInt($(ce).css("borderTopWidth"),10) || 0) - (parseInt($(ce).css("paddingBottom"),10) || 0) - this.helperProportions.height - this.margins.top
- ];
- }
-
- },
-
- _convertPositionTo: function(d, pos) {
-
- if(!pos) {
- pos = this.position;
- }
- var mod = d === "absolute" ? 1 : -1,
- scroll = this.cssPosition === "absolute" && !(this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent,
- scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);
-
- return {
- top: (
- pos.top + // The absolute mouse position
- this.offset.relative.top * mod + // Only for relative positioned nodes: Relative offset from element to offset parent
- this.offset.parent.top * mod - // The offsetParent's offset without borders (offset + border)
- ( ( this.cssPosition === "fixed" ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ) * mod)
- ),
- left: (
- pos.left + // The absolute mouse position
- this.offset.relative.left * mod + // Only for relative positioned nodes: Relative offset from element to offset parent
- this.offset.parent.left * mod - // The offsetParent's offset without borders (offset + border)
- ( ( this.cssPosition === "fixed" ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ) * mod)
- )
- };
-
- },
-
- _generatePosition: function(event) {
-
- var top, left,
- o = this.options,
- pageX = event.pageX,
- pageY = event.pageY,
- scroll = this.cssPosition === "absolute" && !(this.scrollParent[0] !== this.document[0] && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);
-
- // This is another very weird special case that only happens for relative elements:
- // 1. If the css position is relative
- // 2. and the scroll parent is the document or similar to the offset parent
- // we have to refresh the relative offset during the scroll so there are no jumps
- if(this.cssPosition === "relative" && !(this.scrollParent[0] !== this.document[0] && this.scrollParent[0] !== this.offsetParent[0])) {
- this.offset.relative = this._getRelativeOffset();
- }
-
- /*
- * - Position constraining -
- * Constrain the position to a mix of grid, containment.
- */
-
- if(this.originalPosition) { //If we are not dragging yet, we won't check for options
-
- if(this.containment) {
- if(event.pageX - this.offset.click.left < this.containment[0]) {
- pageX = this.containment[0] + this.offset.click.left;
- }
- if(event.pageY - this.offset.click.top < this.containment[1]) {
- pageY = this.containment[1] + this.offset.click.top;
- }
- if(event.pageX - this.offset.click.left > this.containment[2]) {
- pageX = this.containment[2] + this.offset.click.left;
- }
- if(event.pageY - this.offset.click.top > this.containment[3]) {
- pageY = this.containment[3] + this.offset.click.top;
- }
- }
-
- if(o.grid) {
- top = this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1];
- pageY = this.containment ? ( (top - this.offset.click.top >= this.containment[1] && top - this.offset.click.top <= this.containment[3]) ? top : ((top - this.offset.click.top >= this.containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top;
-
- left = this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0];
- pageX = this.containment ? ( (left - this.offset.click.left >= this.containment[0] && left - this.offset.click.left <= this.containment[2]) ? left : ((left - this.offset.click.left >= this.containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left;
- }
-
- }
-
- return {
- top: (
- pageY - // The absolute mouse position
- this.offset.click.top - // Click offset (relative to the element)
- this.offset.relative.top - // Only for relative positioned nodes: Relative offset from element to offset parent
- this.offset.parent.top + // The offsetParent's offset without borders (offset + border)
- ( ( this.cssPosition === "fixed" ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ))
- ),
- left: (
- pageX - // The absolute mouse position
- this.offset.click.left - // Click offset (relative to the element)
- this.offset.relative.left - // Only for relative positioned nodes: Relative offset from element to offset parent
- this.offset.parent.left + // The offsetParent's offset without borders (offset + border)
- ( ( this.cssPosition === "fixed" ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ))
- )
- };
-
- },
-
- _rearrange: function(event, i, a, hardRefresh) {
-
- a ? a[0].appendChild(this.placeholder[0]) : i.item[0].parentNode.insertBefore(this.placeholder[0], (this.direction === "down" ? i.item[0] : i.item[0].nextSibling));
-
- //Various things done here to improve the performance:
- // 1. we create a setTimeout, that calls refreshPositions
- // 2. on the instance, we have a counter variable, that get's higher after every append
- // 3. on the local scope, we copy the counter variable, and check in the timeout, if it's still the same
- // 4. this lets only the last addition to the timeout stack through
- this.counter = this.counter ? ++this.counter : 1;
- var counter = this.counter;
-
- this._delay(function() {
- if(counter === this.counter) {
- this.refreshPositions(!hardRefresh); //Precompute after each DOM insertion, NOT on mousemove
- }
- });
-
- },
-
- _clear: function(event, noPropagation) {
-
- this.reverting = false;
- // We delay all events that have to be triggered to after the point where the placeholder has been removed and
- // everything else normalized again
- var i,
- delayedTriggers = [];
-
- // We first have to update the dom position of the actual currentItem
- // Note: don't do it if the current item is already removed (by a user), or it gets reappended (see #4088)
- if(!this._noFinalSort && this.currentItem.parent().length) {
- this.placeholder.before(this.currentItem);
- }
- this._noFinalSort = null;
-
- if(this.helper[0] === this.currentItem[0]) {
- for(i in this._storedCSS) {
- if(this._storedCSS[i] === "auto" || this._storedCSS[i] === "static") {
- this._storedCSS[i] = "";
- }
- }
- this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper");
- } else {
- this.currentItem.show();
- }
-
- if(this.fromOutside && !noPropagation) {
- delayedTriggers.push(function(event) { this._trigger("receive", event, this._uiHash(this.fromOutside)); });
- }
- if((this.fromOutside || this.domPosition.prev !== this.currentItem.prev().not(".ui-sortable-helper")[0] || this.domPosition.parent !== this.currentItem.parent()[0]) && !noPropagation) {
- delayedTriggers.push(function(event) { this._trigger("update", event, this._uiHash()); }); //Trigger update callback if the DOM position has changed
- }
-
- // Check if the items Container has Changed and trigger appropriate
- // events.
- if (this !== this.currentContainer) {
- if(!noPropagation) {
- delayedTriggers.push(function(event) { this._trigger("remove", event, this._uiHash()); });
- delayedTriggers.push((function(c) { return function(event) { c._trigger("receive", event, this._uiHash(this)); }; }).call(this, this.currentContainer));
- delayedTriggers.push((function(c) { return function(event) { c._trigger("update", event, this._uiHash(this)); }; }).call(this, this.currentContainer));
- }
- }
-
-
- //Post events to containers
- function delayEvent( type, instance, container ) {
- return function( event ) {
- container._trigger( type, event, instance._uiHash( instance ) );
- };
- }
- for (i = this.containers.length - 1; i >= 0; i--){
- if (!noPropagation) {
- delayedTriggers.push( delayEvent( "deactivate", this, this.containers[ i ] ) );
- }
- if(this.containers[i].containerCache.over) {
- delayedTriggers.push( delayEvent( "out", this, this.containers[ i ] ) );
- this.containers[i].containerCache.over = 0;
- }
- }
-
- //Do what was originally in plugins
- if ( this.storedCursor ) {
- this.document.find( "body" ).css( "cursor", this.storedCursor );
- this.storedStylesheet.remove();
- }
- if(this._storedOpacity) {
- this.helper.css("opacity", this._storedOpacity);
- }
- if(this._storedZIndex) {
- this.helper.css("zIndex", this._storedZIndex === "auto" ? "" : this._storedZIndex);
- }
-
- this.dragging = false;
-
- if(!noPropagation) {
- this._trigger("beforeStop", event, this._uiHash());
- }
-
- //$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately, it unbinds ALL events from the original node!
- this.placeholder[0].parentNode.removeChild(this.placeholder[0]);
-
- if ( !this.cancelHelperRemoval ) {
- if ( this.helper[ 0 ] !== this.currentItem[ 0 ] ) {
- this.helper.remove();
- }
- this.helper = null;
- }
-
- if(!noPropagation) {
- for (i=0; i < delayedTriggers.length; i++) {
- delayedTriggers[i].call(this, event);
- } //Trigger all delayed events
- this._trigger("stop", event, this._uiHash());
- }
-
- this.fromOutside = false;
- return !this.cancelHelperRemoval;
-
- },
-
- _trigger: function() {
- if ($.Widget.prototype._trigger.apply(this, arguments) === false) {
- this.cancel();
- }
- },
-
- _uiHash: function(_inst) {
- var inst = _inst || this;
- return {
- helper: inst.helper,
- placeholder: inst.placeholder || $([]),
- position: inst.position,
- originalPosition: inst.originalPosition,
- offset: inst.positionAbs,
- item: inst.currentItem,
- sender: _inst ? _inst.element : null
- };
- }
-
-});
-
-
-/*!
- * jQuery UI Accordion 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/accordion/
- */
-
-
-var accordion = $.widget( "ui.accordion", {
- version: "1.11.3",
- options: {
- active: 0,
- animate: {},
- collapsible: false,
- event: "click",
- header: "> li > :first-child,> :not(li):even",
- heightStyle: "auto",
- icons: {
- activeHeader: "ui-icon-triangle-1-s",
- header: "ui-icon-triangle-1-e"
- },
-
- // callbacks
- activate: null,
- beforeActivate: null
- },
-
- hideProps: {
- borderTopWidth: "hide",
- borderBottomWidth: "hide",
- paddingTop: "hide",
- paddingBottom: "hide",
- height: "hide"
- },
-
- showProps: {
- borderTopWidth: "show",
- borderBottomWidth: "show",
- paddingTop: "show",
- paddingBottom: "show",
- height: "show"
- },
-
- _create: function() {
- var options = this.options;
- this.prevShow = this.prevHide = $();
- this.element.addClass( "ui-accordion ui-widget ui-helper-reset" )
- // ARIA
- .attr( "role", "tablist" );
-
- // don't allow collapsible: false and active: false / null
- if ( !options.collapsible && (options.active === false || options.active == null) ) {
- options.active = 0;
- }
-
- this._processPanels();
- // handle negative values
- if ( options.active < 0 ) {
- options.active += this.headers.length;
- }
- this._refresh();
- },
-
- _getCreateEventData: function() {
- return {
- header: this.active,
- panel: !this.active.length ? $() : this.active.next()
- };
- },
-
- _createIcons: function() {
- var icons = this.options.icons;
- if ( icons ) {
- $( "<span>" )
- .addClass( "ui-accordion-header-icon ui-icon " + icons.header )
- .prependTo( this.headers );
- this.active.children( ".ui-accordion-header-icon" )
- .removeClass( icons.header )
- .addClass( icons.activeHeader );
- this.headers.addClass( "ui-accordion-icons" );
- }
- },
-
- _destroyIcons: function() {
- this.headers
- .removeClass( "ui-accordion-icons" )
- .children( ".ui-accordion-header-icon" )
- .remove();
- },
-
- _destroy: function() {
- var contents;
-
- // clean up main element
- this.element
- .removeClass( "ui-accordion ui-widget ui-helper-reset" )
- .removeAttr( "role" );
-
- // clean up headers
- this.headers
- .removeClass( "ui-accordion-header ui-accordion-header-active ui-state-default " +
- "ui-corner-all ui-state-active ui-state-disabled ui-corner-top" )
- .removeAttr( "role" )
- .removeAttr( "aria-expanded" )
- .removeAttr( "aria-selected" )
- .removeAttr( "aria-controls" )
- .removeAttr( "tabIndex" )
- .removeUniqueId();
-
- this._destroyIcons();
-
- // clean up content panels
- contents = this.headers.next()
- .removeClass( "ui-helper-reset ui-widget-content ui-corner-bottom " +
- "ui-accordion-content ui-accordion-content-active ui-state-disabled" )
- .css( "display", "" )
- .removeAttr( "role" )
- .removeAttr( "aria-hidden" )
- .removeAttr( "aria-labelledby" )
- .removeUniqueId();
-
- if ( this.options.heightStyle !== "content" ) {
- contents.css( "height", "" );
- }
- },
-
- _setOption: function( key, value ) {
- if ( key === "active" ) {
- // _activate() will handle invalid values and update this.options
- this._activate( value );
- return;
- }
-
- if ( key === "event" ) {
- if ( this.options.event ) {
- this._off( this.headers, this.options.event );
- }
- this._setupEvents( value );
- }
-
- this._super( key, value );
-
- // setting collapsible: false while collapsed; open first panel
- if ( key === "collapsible" && !value && this.options.active === false ) {
- this._activate( 0 );
- }
-
- if ( key === "icons" ) {
- this._destroyIcons();
- if ( value ) {
- this._createIcons();
- }
- }
-
- // #5332 - opacity doesn't cascade to positioned elements in IE
- // so we need to add the disabled class to the headers and panels
- if ( key === "disabled" ) {
- this.element
- .toggleClass( "ui-state-disabled", !!value )
- .attr( "aria-disabled", value );
- this.headers.add( this.headers.next() )
- .toggleClass( "ui-state-disabled", !!value );
- }
- },
-
- _keydown: function( event ) {
- if ( event.altKey || event.ctrlKey ) {
- return;
- }
-
- var keyCode = $.ui.keyCode,
- length = this.headers.length,
- currentIndex = this.headers.index( event.target ),
- toFocus = false;
-
- switch ( event.keyCode ) {
- case keyCode.RIGHT:
- case keyCode.DOWN:
- toFocus = this.headers[ ( currentIndex + 1 ) % length ];
- break;
- case keyCode.LEFT:
- case keyCode.UP:
- toFocus = this.headers[ ( currentIndex - 1 + length ) % length ];
- break;
- case keyCode.SPACE:
- case keyCode.ENTER:
- this._eventHandler( event );
- break;
- case keyCode.HOME:
- toFocus = this.headers[ 0 ];
- break;
- case keyCode.END:
- toFocus = this.headers[ length - 1 ];
- break;
- }
-
- if ( toFocus ) {
- $( event.target ).attr( "tabIndex", -1 );
- $( toFocus ).attr( "tabIndex", 0 );
- toFocus.focus();
- event.preventDefault();
- }
- },
-
- _panelKeyDown: function( event ) {
- if ( event.keyCode === $.ui.keyCode.UP && event.ctrlKey ) {
- $( event.currentTarget ).prev().focus();
- }
- },
-
- refresh: function() {
- var options = this.options;
- this._processPanels();
-
- // was collapsed or no panel
- if ( ( options.active === false && options.collapsible === true ) || !this.headers.length ) {
- options.active = false;
- this.active = $();
- // active false only when collapsible is true
- } else if ( options.active === false ) {
- this._activate( 0 );
- // was active, but active panel is gone
- } else if ( this.active.length && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {
- // all remaining panel are disabled
- if ( this.headers.length === this.headers.find(".ui-state-disabled").length ) {
- options.active = false;
- this.active = $();
- // activate previous panel
- } else {
- this._activate( Math.max( 0, options.active - 1 ) );
- }
- // was active, active panel still exists
- } else {
- // make sure active index is correct
- options.active = this.headers.index( this.active );
- }
-
- this._destroyIcons();
-
- this._refresh();
- },
-
- _processPanels: function() {
- var prevHeaders = this.headers,
- prevPanels = this.panels;
-
- this.headers = this.element.find( this.options.header )
- .addClass( "ui-accordion-header ui-state-default ui-corner-all" );
-
- this.panels = this.headers.next()
- .addClass( "ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom" )
- .filter( ":not(.ui-accordion-content-active)" )
- .hide();
-
- // Avoid memory leaks (#10056)
- if ( prevPanels ) {
- this._off( prevHeaders.not( this.headers ) );
- this._off( prevPanels.not( this.panels ) );
- }
- },
-
- _refresh: function() {
- var maxHeight,
- options = this.options,
- heightStyle = options.heightStyle,
- parent = this.element.parent();
-
- this.active = this._findActive( options.active )
- .addClass( "ui-accordion-header-active ui-state-active ui-corner-top" )
- .removeClass( "ui-corner-all" );
- this.active.next()
- .addClass( "ui-accordion-content-active" )
- .show();
-
- this.headers
- .attr( "role", "tab" )
- .each(function() {
- var header = $( this ),
- headerId = header.uniqueId().attr( "id" ),
- panel = header.next(),
- panelId = panel.uniqueId().attr( "id" );
- header.attr( "aria-controls", panelId );
- panel.attr( "aria-labelledby", headerId );
- })
- .next()
- .attr( "role", "tabpanel" );
-
- this.headers
- .not( this.active )
- .attr({
- "aria-selected": "false",
- "aria-expanded": "false",
- tabIndex: -1
- })
- .next()
- .attr({
- "aria-hidden": "true"
- })
- .hide();
-
- // make sure at least one header is in the tab order
- if ( !this.active.length ) {
- this.headers.eq( 0 ).attr( "tabIndex", 0 );
- } else {
- this.active.attr({
- "aria-selected": "true",
- "aria-expanded": "true",
- tabIndex: 0
- })
- .next()
- .attr({
- "aria-hidden": "false"
- });
- }
-
- this._createIcons();
-
- this._setupEvents( options.event );
-
- if ( heightStyle === "fill" ) {
- maxHeight = parent.height();
- this.element.siblings( ":visible" ).each(function() {
- var elem = $( this ),
- position = elem.css( "position" );
-
- if ( position === "absolute" || position === "fixed" ) {
- return;
- }
- maxHeight -= elem.outerHeight( true );
- });
-
- this.headers.each(function() {
- maxHeight -= $( this ).outerHeight( true );
- });
-
- this.headers.next()
- .each(function() {
- $( this ).height( Math.max( 0, maxHeight -
- $( this ).innerHeight() + $( this ).height() ) );
- })
- .css( "overflow", "auto" );
- } else if ( heightStyle === "auto" ) {
- maxHeight = 0;
- this.headers.next()
- .each(function() {
- maxHeight = Math.max( maxHeight, $( this ).css( "height", "" ).height() );
- })
- .height( maxHeight );
- }
- },
-
- _activate: function( index ) {
- var active = this._findActive( index )[ 0 ];
-
- // trying to activate the already active panel
- if ( active === this.active[ 0 ] ) {
- return;
- }
-
- // trying to collapse, simulate a click on the currently active header
- active = active || this.active[ 0 ];
-
- this._eventHandler({
- target: active,
- currentTarget: active,
- preventDefault: $.noop
- });
- },
-
- _findActive: function( selector ) {
- return typeof selector === "number" ? this.headers.eq( selector ) : $();
- },
-
- _setupEvents: function( event ) {
- var events = {
- keydown: "_keydown"
- };
- if ( event ) {
- $.each( event.split( " " ), function( index, eventName ) {
- events[ eventName ] = "_eventHandler";
- });
- }
-
- this._off( this.headers.add( this.headers.next() ) );
- this._on( this.headers, events );
- this._on( this.headers.next(), { keydown: "_panelKeyDown" });
- this._hoverable( this.headers );
- this._focusable( this.headers );
- },
-
- _eventHandler: function( event ) {
- var options = this.options,
- active = this.active,
- clicked = $( event.currentTarget ),
- clickedIsActive = clicked[ 0 ] === active[ 0 ],
- collapsing = clickedIsActive && options.collapsible,
- toShow = collapsing ? $() : clicked.next(),
- toHide = active.next(),
- eventData = {
- oldHeader: active,
- oldPanel: toHide,
- newHeader: collapsing ? $() : clicked,
- newPanel: toShow
- };
-
- event.preventDefault();
-
- if (
- // click on active header, but not collapsible
- ( clickedIsActive && !options.collapsible ) ||
- // allow canceling activation
- ( this._trigger( "beforeActivate", event, eventData ) === false ) ) {
- return;
- }
-
- options.active = collapsing ? false : this.headers.index( clicked );
-
- // when the call to ._toggle() comes after the class changes
- // it causes a very odd bug in IE 8 (see #6720)
- this.active = clickedIsActive ? $() : clicked;
- this._toggle( eventData );
-
- // switch classes
- // corner classes on the previously active header stay after the animation
- active.removeClass( "ui-accordion-header-active ui-state-active" );
- if ( options.icons ) {
- active.children( ".ui-accordion-header-icon" )
- .removeClass( options.icons.activeHeader )
- .addClass( options.icons.header );
- }
-
- if ( !clickedIsActive ) {
- clicked
- .removeClass( "ui-corner-all" )
- .addClass( "ui-accordion-header-active ui-state-active ui-corner-top" );
- if ( options.icons ) {
- clicked.children( ".ui-accordion-header-icon" )
- .removeClass( options.icons.header )
- .addClass( options.icons.activeHeader );
- }
-
- clicked
- .next()
- .addClass( "ui-accordion-content-active" );
- }
- },
-
- _toggle: function( data ) {
- var toShow = data.newPanel,
- toHide = this.prevShow.length ? this.prevShow : data.oldPanel;
-
- // handle activating a panel during the animation for another activation
- this.prevShow.add( this.prevHide ).stop( true, true );
- this.prevShow = toShow;
- this.prevHide = toHide;
-
- if ( this.options.animate ) {
- this._animate( toShow, toHide, data );
- } else {
- toHide.hide();
- toShow.show();
- this._toggleComplete( data );
- }
-
- toHide.attr({
- "aria-hidden": "true"
- });
- toHide.prev().attr({
- "aria-selected": "false",
- "aria-expanded": "false"
- });
- // if we're switching panels, remove the old header from the tab order
- // if we're opening from collapsed state, remove the previous header from the tab order
- // if we're collapsing, then keep the collapsing header in the tab order
- if ( toShow.length && toHide.length ) {
- toHide.prev().attr({
- "tabIndex": -1,
- "aria-expanded": "false"
- });
- } else if ( toShow.length ) {
- this.headers.filter(function() {
- return parseInt( $( this ).attr( "tabIndex" ), 10 ) === 0;
- })
- .attr( "tabIndex", -1 );
- }
-
- toShow
- .attr( "aria-hidden", "false" )
- .prev()
- .attr({
- "aria-selected": "true",
- "aria-expanded": "true",
- tabIndex: 0
- });
- },
-
- _animate: function( toShow, toHide, data ) {
- var total, easing, duration,
- that = this,
- adjust = 0,
- down = toShow.length &&
- ( !toHide.length || ( toShow.index() < toHide.index() ) ),
- animate = this.options.animate || {},
- options = down && animate.down || animate,
- complete = function() {
- that._toggleComplete( data );
- };
-
- if ( typeof options === "number" ) {
- duration = options;
- }
- if ( typeof options === "string" ) {
- easing = options;
- }
- // fall back from options to animation in case of partial down settings
- easing = easing || options.easing || animate.easing;
- duration = duration || options.duration || animate.duration;
-
- if ( !toHide.length ) {
- return toShow.animate( this.showProps, duration, easing, complete );
- }
- if ( !toShow.length ) {
- return toHide.animate( this.hideProps, duration, easing, complete );
- }
-
- total = toShow.show().outerHeight();
- toHide.animate( this.hideProps, {
- duration: duration,
- easing: easing,
- step: function( now, fx ) {
- fx.now = Math.round( now );
- }
- });
- toShow
- .hide()
- .animate( this.showProps, {
- duration: duration,
- easing: easing,
- complete: complete,
- step: function( now, fx ) {
- fx.now = Math.round( now );
- if ( fx.prop !== "height" ) {
- adjust += fx.now;
- } else if ( that.options.heightStyle !== "content" ) {
- fx.now = Math.round( total - toHide.outerHeight() - adjust );
- adjust = 0;
- }
- }
- });
- },
-
- _toggleComplete: function( data ) {
- var toHide = data.oldPanel;
-
- toHide
- .removeClass( "ui-accordion-content-active" )
- .prev()
- .removeClass( "ui-corner-top" )
- .addClass( "ui-corner-all" );
-
- // Work around for rendering bug in IE (#5421)
- if ( toHide.length ) {
- toHide.parent()[ 0 ].className = toHide.parent()[ 0 ].className;
- }
- this._trigger( "activate", null, data );
- }
-});
-
-
-/*!
- * jQuery UI Menu 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/menu/
- */
-
-
-var menu = $.widget( "ui.menu", {
- version: "1.11.3",
- defaultElement: "<ul>",
- delay: 300,
- options: {
- icons: {
- submenu: "ui-icon-carat-1-e"
- },
- items: "> *",
- menus: "ul",
- position: {
- my: "left-1 top",
- at: "right top"
- },
- role: "menu",
-
- // callbacks
- blur: null,
- focus: null,
- select: null
- },
-
- _create: function() {
- this.activeMenu = this.element;
-
- // Flag used to prevent firing of the click handler
- // as the event bubbles up through nested menus
- this.mouseHandled = false;
- this.element
- .uniqueId()
- .addClass( "ui-menu ui-widget ui-widget-content" )
- .toggleClass( "ui-menu-icons", !!this.element.find( ".ui-icon" ).length )
- .attr({
- role: this.options.role,
- tabIndex: 0
- });
-
- if ( this.options.disabled ) {
- this.element
- .addClass( "ui-state-disabled" )
- .attr( "aria-disabled", "true" );
- }
-
- this._on({
- // Prevent focus from sticking to links inside menu after clicking
- // them (focus should always stay on UL during navigation).
- "mousedown .ui-menu-item": function( event ) {
- event.preventDefault();
- },
- "click .ui-menu-item": function( event ) {
- var target = $( event.target );
- if ( !this.mouseHandled && target.not( ".ui-state-disabled" ).length ) {
- this.select( event );
-
- // Only set the mouseHandled flag if the event will bubble, see #9469.
- if ( !event.isPropagationStopped() ) {
- this.mouseHandled = true;
- }
-
- // Open submenu on click
- if ( target.has( ".ui-menu" ).length ) {
- this.expand( event );
- } else if ( !this.element.is( ":focus" ) && $( this.document[ 0 ].activeElement ).closest( ".ui-menu" ).length ) {
-
- // Redirect focus to the menu
- this.element.trigger( "focus", [ true ] );
-
- // If the active item is on the top level, let it stay active.
- // Otherwise, blur the active item since it is no longer visible.
- if ( this.active && this.active.parents( ".ui-menu" ).length === 1 ) {
- clearTimeout( this.timer );
- }
- }
- }
- },
- "mouseenter .ui-menu-item": function( event ) {
- // Ignore mouse events while typeahead is active, see #10458.
- // Prevents focusing the wrong item when typeahead causes a scroll while the mouse
- // is over an item in the menu
- if ( this.previousFilter ) {
- return;
- }
- var target = $( event.currentTarget );
- // Remove ui-state-active class from siblings of the newly focused menu item
- // to avoid a jump caused by adjacent elements both having a class with a border
- target.siblings( ".ui-state-active" ).removeClass( "ui-state-active" );
- this.focus( event, target );
- },
- mouseleave: "collapseAll",
- "mouseleave .ui-menu": "collapseAll",
- focus: function( event, keepActiveItem ) {
- // If there's already an active item, keep it active
- // If not, activate the first item
- var item = this.active || this.element.find( this.options.items ).eq( 0 );
-
- if ( !keepActiveItem ) {
- this.focus( event, item );
- }
- },
- blur: function( event ) {
- this._delay(function() {
- if ( !$.contains( this.element[0], this.document[0].activeElement ) ) {
- this.collapseAll( event );
- }
- });
- },
- keydown: "_keydown"
- });
-
- this.refresh();
-
- // Clicks outside of a menu collapse any open menus
- this._on( this.document, {
- click: function( event ) {
- if ( this._closeOnDocumentClick( event ) ) {
- this.collapseAll( event );
- }
-
- // Reset the mouseHandled flag
- this.mouseHandled = false;
- }
- });
- },
-
- _destroy: function() {
- // Destroy (sub)menus
- this.element
- .removeAttr( "aria-activedescendant" )
- .find( ".ui-menu" ).addBack()
- .removeClass( "ui-menu ui-widget ui-widget-content ui-menu-icons ui-front" )
- .removeAttr( "role" )
- .removeAttr( "tabIndex" )
- .removeAttr( "aria-labelledby" )
- .removeAttr( "aria-expanded" )
- .removeAttr( "aria-hidden" )
- .removeAttr( "aria-disabled" )
- .removeUniqueId()
- .show();
-
- // Destroy menu items
- this.element.find( ".ui-menu-item" )
- .removeClass( "ui-menu-item" )
- .removeAttr( "role" )
- .removeAttr( "aria-disabled" )
- .removeUniqueId()
- .removeClass( "ui-state-hover" )
- .removeAttr( "tabIndex" )
- .removeAttr( "role" )
- .removeAttr( "aria-haspopup" )
- .children().each( function() {
- var elem = $( this );
- if ( elem.data( "ui-menu-submenu-carat" ) ) {
- elem.remove();
- }
- });
-
- // Destroy menu dividers
- this.element.find( ".ui-menu-divider" ).removeClass( "ui-menu-divider ui-widget-content" );
- },
-
- _keydown: function( event ) {
- var match, prev, character, skip,
- preventDefault = true;
-
- switch ( event.keyCode ) {
- case $.ui.keyCode.PAGE_UP:
- this.previousPage( event );
- break;
- case $.ui.keyCode.PAGE_DOWN:
- this.nextPage( event );
- break;
- case $.ui.keyCode.HOME:
- this._move( "first", "first", event );
- break;
- case $.ui.keyCode.END:
- this._move( "last", "last", event );
- break;
- case $.ui.keyCode.UP:
- this.previous( event );
- break;
- case $.ui.keyCode.DOWN:
- this.next( event );
- break;
- case $.ui.keyCode.LEFT:
- this.collapse( event );
- break;
- case $.ui.keyCode.RIGHT:
- if ( this.active && !this.active.is( ".ui-state-disabled" ) ) {
- this.expand( event );
- }
- break;
- case $.ui.keyCode.ENTER:
- case $.ui.keyCode.SPACE:
- this._activate( event );
- break;
- case $.ui.keyCode.ESCAPE:
- this.collapse( event );
- break;
- default:
- preventDefault = false;
- prev = this.previousFilter || "";
- character = String.fromCharCode( event.keyCode );
- skip = false;
-
- clearTimeout( this.filterTimer );
-
- if ( character === prev ) {
- skip = true;
- } else {
- character = prev + character;
- }
-
- match = this._filterMenuItems( character );
- match = skip && match.index( this.active.next() ) !== -1 ?
- this.active.nextAll( ".ui-menu-item" ) :
- match;
-
- // If no matches on the current filter, reset to the last character pressed
- // to move down the menu to the first item that starts with that character
- if ( !match.length ) {
- character = String.fromCharCode( event.keyCode );
- match = this._filterMenuItems( character );
- }
-
- if ( match.length ) {
- this.focus( event, match );
- this.previousFilter = character;
- this.filterTimer = this._delay(function() {
- delete this.previousFilter;
- }, 1000 );
- } else {
- delete this.previousFilter;
- }
- }
-
- if ( preventDefault ) {
- event.preventDefault();
- }
- },
-
- _activate: function( event ) {
- if ( !this.active.is( ".ui-state-disabled" ) ) {
- if ( this.active.is( "[aria-haspopup='true']" ) ) {
- this.expand( event );
- } else {
- this.select( event );
- }
- }
- },
-
- refresh: function() {
- var menus, items,
- that = this,
- icon = this.options.icons.submenu,
- submenus = this.element.find( this.options.menus );
-
- this.element.toggleClass( "ui-menu-icons", !!this.element.find( ".ui-icon" ).length );
-
- // Initialize nested menus
- submenus.filter( ":not(.ui-menu)" )
- .addClass( "ui-menu ui-widget ui-widget-content ui-front" )
- .hide()
- .attr({
- role: this.options.role,
- "aria-hidden": "true",
- "aria-expanded": "false"
- })
- .each(function() {
- var menu = $( this ),
- item = menu.parent(),
- submenuCarat = $( "<span>" )
- .addClass( "ui-menu-icon ui-icon " + icon )
- .data( "ui-menu-submenu-carat", true );
-
- item
- .attr( "aria-haspopup", "true" )
- .prepend( submenuCarat );
- menu.attr( "aria-labelledby", item.attr( "id" ) );
- });
-
- menus = submenus.add( this.element );
- items = menus.find( this.options.items );
-
- // Initialize menu-items containing spaces and/or dashes only as dividers
- items.not( ".ui-menu-item" ).each(function() {
- var item = $( this );
- if ( that._isDivider( item ) ) {
- item.addClass( "ui-widget-content ui-menu-divider" );
- }
- });
-
- // Don't refresh list items that are already adapted
- items.not( ".ui-menu-item, .ui-menu-divider" )
- .addClass( "ui-menu-item" )
- .uniqueId()
- .attr({
- tabIndex: -1,
- role: this._itemRole()
- });
-
- // Add aria-disabled attribute to any disabled menu item
- items.filter( ".ui-state-disabled" ).attr( "aria-disabled", "true" );
-
- // If the active item has been removed, blur the menu
- if ( this.active && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {
- this.blur();
- }
- },
-
- _itemRole: function() {
- return {
- menu: "menuitem",
- listbox: "option"
- }[ this.options.role ];
- },
-
- _setOption: function( key, value ) {
- if ( key === "icons" ) {
- this.element.find( ".ui-menu-icon" )
- .removeClass( this.options.icons.submenu )
- .addClass( value.submenu );
- }
- if ( key === "disabled" ) {
- this.element
- .toggleClass( "ui-state-disabled", !!value )
- .attr( "aria-disabled", value );
- }
- this._super( key, value );
- },
-
- focus: function( event, item ) {
- var nested, focused;
- this.blur( event, event && event.type === "focus" );
-
- this._scrollIntoView( item );
-
- this.active = item.first();
- focused = this.active.addClass( "ui-state-focus" ).removeClass( "ui-state-active" );
- // Only update aria-activedescendant if there's a role
- // otherwise we assume focus is managed elsewhere
- if ( this.options.role ) {
- this.element.attr( "aria-activedescendant", focused.attr( "id" ) );
- }
-
- // Highlight active parent menu item, if any
- this.active
- .parent()
- .closest( ".ui-menu-item" )
- .addClass( "ui-state-active" );
-
- if ( event && event.type === "keydown" ) {
- this._close();
- } else {
- this.timer = this._delay(function() {
- this._close();
- }, this.delay );
- }
-
- nested = item.children( ".ui-menu" );
- if ( nested.length && event && ( /^mouse/.test( event.type ) ) ) {
- this._startOpening(nested);
- }
- this.activeMenu = item.parent();
-
- this._trigger( "focus", event, { item: item } );
- },
-
- _scrollIntoView: function( item ) {
- var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight;
- if ( this._hasScroll() ) {
- borderTop = parseFloat( $.css( this.activeMenu[0], "borderTopWidth" ) ) || 0;
- paddingTop = parseFloat( $.css( this.activeMenu[0], "paddingTop" ) ) || 0;
- offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop;
- scroll = this.activeMenu.scrollTop();
- elementHeight = this.activeMenu.height();
- itemHeight = item.outerHeight();
-
- if ( offset < 0 ) {
- this.activeMenu.scrollTop( scroll + offset );
- } else if ( offset + itemHeight > elementHeight ) {
- this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight );
- }
- }
- },
-
- blur: function( event, fromFocus ) {
- if ( !fromFocus ) {
- clearTimeout( this.timer );
- }
-
- if ( !this.active ) {
- return;
- }
-
- this.active.removeClass( "ui-state-focus" );
- this.active = null;
-
- this._trigger( "blur", event, { item: this.active } );
- },
-
- _startOpening: function( submenu ) {
- clearTimeout( this.timer );
-
- // Don't open if already open fixes a Firefox bug that caused a .5 pixel
- // shift in the submenu position when mousing over the carat icon
- if ( submenu.attr( "aria-hidden" ) !== "true" ) {
- return;
- }
-
- this.timer = this._delay(function() {
- this._close();
- this._open( submenu );
- }, this.delay );
- },
-
- _open: function( submenu ) {
- var position = $.extend({
- of: this.active
- }, this.options.position );
-
- clearTimeout( this.timer );
- this.element.find( ".ui-menu" ).not( submenu.parents( ".ui-menu" ) )
- .hide()
- .attr( "aria-hidden", "true" );
-
- submenu
- .show()
- .removeAttr( "aria-hidden" )
- .attr( "aria-expanded", "true" )
- .position( position );
- },
-
- collapseAll: function( event, all ) {
- clearTimeout( this.timer );
- this.timer = this._delay(function() {
- // If we were passed an event, look for the submenu that contains the event
- var currentMenu = all ? this.element :
- $( event && event.target ).closest( this.element.find( ".ui-menu" ) );
-
- // If we found no valid submenu ancestor, use the main menu to close all sub menus anyway
- if ( !currentMenu.length ) {
- currentMenu = this.element;
- }
-
- this._close( currentMenu );
-
- this.blur( event );
- this.activeMenu = currentMenu;
- }, this.delay );
- },
-
- // With no arguments, closes the currently active menu - if nothing is active
- // it closes all menus. If passed an argument, it will search for menus BELOW
- _close: function( startMenu ) {
- if ( !startMenu ) {
- startMenu = this.active ? this.active.parent() : this.element;
- }
-
- startMenu
- .find( ".ui-menu" )
- .hide()
- .attr( "aria-hidden", "true" )
- .attr( "aria-expanded", "false" )
- .end()
- .find( ".ui-state-active" ).not( ".ui-state-focus" )
- .removeClass( "ui-state-active" );
- },
-
- _closeOnDocumentClick: function( event ) {
- return !$( event.target ).closest( ".ui-menu" ).length;
- },
-
- _isDivider: function( item ) {
-
- // Match hyphen, em dash, en dash
- return !/[^\-\u2014\u2013\s]/.test( item.text() );
- },
-
- collapse: function( event ) {
- var newItem = this.active &&
- this.active.parent().closest( ".ui-menu-item", this.element );
- if ( newItem && newItem.length ) {
- this._close();
- this.focus( event, newItem );
- }
- },
-
- expand: function( event ) {
- var newItem = this.active &&
- this.active
- .children( ".ui-menu " )
- .find( this.options.items )
- .first();
-
- if ( newItem && newItem.length ) {
- this._open( newItem.parent() );
-
- // Delay so Firefox will not hide activedescendant change in expanding submenu from AT
- this._delay(function() {
- this.focus( event, newItem );
- });
- }
- },
-
- next: function( event ) {
- this._move( "next", "first", event );
- },
-
- previous: function( event ) {
- this._move( "prev", "last", event );
- },
-
- isFirstItem: function() {
- return this.active && !this.active.prevAll( ".ui-menu-item" ).length;
- },
-
- isLastItem: function() {
- return this.active && !this.active.nextAll( ".ui-menu-item" ).length;
- },
-
- _move: function( direction, filter, event ) {
- var next;
- if ( this.active ) {
- if ( direction === "first" || direction === "last" ) {
- next = this.active
- [ direction === "first" ? "prevAll" : "nextAll" ]( ".ui-menu-item" )
- .eq( -1 );
- } else {
- next = this.active
- [ direction + "All" ]( ".ui-menu-item" )
- .eq( 0 );
- }
- }
- if ( !next || !next.length || !this.active ) {
- next = this.activeMenu.find( this.options.items )[ filter ]();
- }
-
- this.focus( event, next );
- },
-
- nextPage: function( event ) {
- var item, base, height;
-
- if ( !this.active ) {
- this.next( event );
- return;
- }
- if ( this.isLastItem() ) {
- return;
- }
- if ( this._hasScroll() ) {
- base = this.active.offset().top;
- height = this.element.height();
- this.active.nextAll( ".ui-menu-item" ).each(function() {
- item = $( this );
- return item.offset().top - base - height < 0;
- });
-
- this.focus( event, item );
- } else {
- this.focus( event, this.activeMenu.find( this.options.items )
- [ !this.active ? "first" : "last" ]() );
- }
- },
-
- previousPage: function( event ) {
- var item, base, height;
- if ( !this.active ) {
- this.next( event );
- return;
- }
- if ( this.isFirstItem() ) {
- return;
- }
- if ( this._hasScroll() ) {
- base = this.active.offset().top;
- height = this.element.height();
- this.active.prevAll( ".ui-menu-item" ).each(function() {
- item = $( this );
- return item.offset().top - base + height > 0;
- });
-
- this.focus( event, item );
- } else {
- this.focus( event, this.activeMenu.find( this.options.items ).first() );
- }
- },
-
- _hasScroll: function() {
- return this.element.outerHeight() < this.element.prop( "scrollHeight" );
- },
-
- select: function( event ) {
- // TODO: It should never be possible to not have an active item at this
- // point, but the tests don't trigger mouseenter before click.
- this.active = this.active || $( event.target ).closest( ".ui-menu-item" );
- var ui = { item: this.active };
- if ( !this.active.has( ".ui-menu" ).length ) {
- this.collapseAll( event, true );
- }
- this._trigger( "select", event, ui );
- },
-
- _filterMenuItems: function(character) {
- var escapedCharacter = character.replace( /[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&" ),
- regex = new RegExp( "^" + escapedCharacter, "i" );
-
- return this.activeMenu
- .find( this.options.items )
-
- // Only match on items, not dividers or other content (#10571)
- .filter( ".ui-menu-item" )
- .filter(function() {
- return regex.test( $.trim( $( this ).text() ) );
- });
- }
-});
-
-
-/*!
- * jQuery UI Autocomplete 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/autocomplete/
- */
-
-
-$.widget( "ui.autocomplete", {
- version: "1.11.3",
- defaultElement: "<input>",
- options: {
- appendTo: null,
- autoFocus: false,
- delay: 300,
- minLength: 1,
- position: {
- my: "left top",
- at: "left bottom",
- collision: "none"
- },
- source: null,
-
- // callbacks
- change: null,
- close: null,
- focus: null,
- open: null,
- response: null,
- search: null,
- select: null
- },
-
- requestIndex: 0,
- pending: 0,
-
- _create: function() {
- // Some browsers only repeat keydown events, not keypress events,
- // so we use the suppressKeyPress flag to determine if we've already
- // handled the keydown event. #7269
- // Unfortunately the code for & in keypress is the same as the up arrow,
- // so we use the suppressKeyPressRepeat flag to avoid handling keypress
- // events when we know the keydown event was used to modify the
- // search term. #7799
- var suppressKeyPress, suppressKeyPressRepeat, suppressInput,
- nodeName = this.element[ 0 ].nodeName.toLowerCase(),
- isTextarea = nodeName === "textarea",
- isInput = nodeName === "input";
-
- this.isMultiLine =
- // Textareas are always multi-line
- isTextarea ? true :
- // Inputs are always single-line, even if inside a contentEditable element
- // IE also treats inputs as contentEditable
- isInput ? false :
- // All other element types are determined by whether or not they're contentEditable
- this.element.prop( "isContentEditable" );
-
- this.valueMethod = this.element[ isTextarea || isInput ? "val" : "text" ];
- this.isNewMenu = true;
-
- this.element
- .addClass( "ui-autocomplete-input" )
- .attr( "autocomplete", "off" );
-
- this._on( this.element, {
- keydown: function( event ) {
- if ( this.element.prop( "readOnly" ) ) {
- suppressKeyPress = true;
- suppressInput = true;
- suppressKeyPressRepeat = true;
- return;
- }
-
- suppressKeyPress = false;
- suppressInput = false;
- suppressKeyPressRepeat = false;
- var keyCode = $.ui.keyCode;
- switch ( event.keyCode ) {
- case keyCode.PAGE_UP:
- suppressKeyPress = true;
- this._move( "previousPage", event );
- break;
- case keyCode.PAGE_DOWN:
- suppressKeyPress = true;
- this._move( "nextPage", event );
- break;
- case keyCode.UP:
- suppressKeyPress = true;
- this._keyEvent( "previous", event );
- break;
- case keyCode.DOWN:
- suppressKeyPress = true;
- this._keyEvent( "next", event );
- break;
- case keyCode.ENTER:
- // when menu is open and has focus
- if ( this.menu.active ) {
- // #6055 - Opera still allows the keypress to occur
- // which causes forms to submit
- suppressKeyPress = true;
- event.preventDefault();
- this.menu.select( event );
- }
- break;
- case keyCode.TAB:
- if ( this.menu.active ) {
- this.menu.select( event );
- }
- break;
- case keyCode.ESCAPE:
- if ( this.menu.element.is( ":visible" ) ) {
- if ( !this.isMultiLine ) {
- this._value( this.term );
- }
- this.close( event );
- // Different browsers have different default behavior for escape
- // Single press can mean undo or clear
- // Double press in IE means clear the whole form
- event.preventDefault();
- }
- break;
- default:
- suppressKeyPressRepeat = true;
- // search timeout should be triggered before the input value is changed
- this._searchTimeout( event );
- break;
- }
- },
- keypress: function( event ) {
- if ( suppressKeyPress ) {
- suppressKeyPress = false;
- if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
- event.preventDefault();
- }
- return;
- }
- if ( suppressKeyPressRepeat ) {
- return;
- }
-
- // replicate some key handlers to allow them to repeat in Firefox and Opera
- var keyCode = $.ui.keyCode;
- switch ( event.keyCode ) {
- case keyCode.PAGE_UP:
- this._move( "previousPage", event );
- break;
- case keyCode.PAGE_DOWN:
- this._move( "nextPage", event );
- break;
- case keyCode.UP:
- this._keyEvent( "previous", event );
- break;
- case keyCode.DOWN:
- this._keyEvent( "next", event );
- break;
- }
- },
- input: function( event ) {
- if ( suppressInput ) {
- suppressInput = false;
- event.preventDefault();
- return;
- }
- this._searchTimeout( event );
- },
- focus: function() {
- this.selectedItem = null;
- this.previous = this._value();
- },
- blur: function( event ) {
- if ( this.cancelBlur ) {
- delete this.cancelBlur;
- return;
- }
-
- clearTimeout( this.searching );
- this.close( event );
- this._change( event );
- }
- });
-
- this._initSource();
- this.menu = $( "<ul>" )
- .addClass( "ui-autocomplete ui-front" )
- .appendTo( this._appendTo() )
- .menu({
- // disable ARIA support, the live region takes care of that
- role: null
- })
- .hide()
- .menu( "instance" );
-
- this._on( this.menu.element, {
- mousedown: function( event ) {
- // prevent moving focus out of the text field
- event.preventDefault();
-
- // IE doesn't prevent moving focus even with event.preventDefault()
- // so we set a flag to know when we should ignore the blur event
- this.cancelBlur = true;
- this._delay(function() {
- delete this.cancelBlur;
- });
-
- // clicking on the scrollbar causes focus to shift to the body
- // but we can't detect a mouseup or a click immediately afterward
- // so we have to track the next mousedown and close the menu if
- // the user clicks somewhere outside of the autocomplete
- var menuElement = this.menu.element[ 0 ];
- if ( !$( event.target ).closest( ".ui-menu-item" ).length ) {
- this._delay(function() {
- var that = this;
- this.document.one( "mousedown", function( event ) {
- if ( event.target !== that.element[ 0 ] &&
- event.target !== menuElement &&
- !$.contains( menuElement, event.target ) ) {
- that.close();
- }
- });
- });
- }
- },
- menufocus: function( event, ui ) {
- var label, item;
- // support: Firefox
- // Prevent accidental activation of menu items in Firefox (#7024 #9118)
- if ( this.isNewMenu ) {
- this.isNewMenu = false;
- if ( event.originalEvent && /^mouse/.test( event.originalEvent.type ) ) {
- this.menu.blur();
-
- this.document.one( "mousemove", function() {
- $( event.target ).trigger( event.originalEvent );
- });
-
- return;
- }
- }
-
- item = ui.item.data( "ui-autocomplete-item" );
- if ( false !== this._trigger( "focus", event, { item: item } ) ) {
- // use value to match what will end up in the input, if it was a key event
- if ( event.originalEvent && /^key/.test( event.originalEvent.type ) ) {
- this._value( item.value );
- }
- }
-
- // Announce the value in the liveRegion
- label = ui.item.attr( "aria-label" ) || item.value;
- if ( label && $.trim( label ).length ) {
- this.liveRegion.children().hide();
- $( "<div>" ).text( label ).appendTo( this.liveRegion );
- }
- },
- menuselect: function( event, ui ) {
- var item = ui.item.data( "ui-autocomplete-item" ),
- previous = this.previous;
-
- // only trigger when focus was lost (click on menu)
- if ( this.element[ 0 ] !== this.document[ 0 ].activeElement ) {
- this.element.focus();
- this.previous = previous;
- // #6109 - IE triggers two focus events and the second
- // is asynchronous, so we need to reset the previous
- // term synchronously and asynchronously :-(
- this._delay(function() {
- this.previous = previous;
- this.selectedItem = item;
- });
- }
-
- if ( false !== this._trigger( "select", event, { item: item } ) ) {
- this._value( item.value );
- }
- // reset the term after the select event
- // this allows custom select handling to work properly
- this.term = this._value();
-
- this.close( event );
- this.selectedItem = item;
- }
- });
-
- this.liveRegion = $( "<span>", {
- role: "status",
- "aria-live": "assertive",
- "aria-relevant": "additions"
- })
- .addClass( "ui-helper-hidden-accessible" )
- .appendTo( this.document[ 0 ].body );
-
- // turning off autocomplete prevents the browser from remembering the
- // value when navigating through history, so we re-enable autocomplete
- // if the page is unloaded before the widget is destroyed. #7790
- this._on( this.window, {
- beforeunload: function() {
- this.element.removeAttr( "autocomplete" );
- }
- });
- },
-
- _destroy: function() {
- clearTimeout( this.searching );
- this.element
- .removeClass( "ui-autocomplete-input" )
- .removeAttr( "autocomplete" );
- this.menu.element.remove();
- this.liveRegion.remove();
- },
-
- _setOption: function( key, value ) {
- this._super( key, value );
- if ( key === "source" ) {
- this._initSource();
- }
- if ( key === "appendTo" ) {
- this.menu.element.appendTo( this._appendTo() );
- }
- if ( key === "disabled" && value && this.xhr ) {
- this.xhr.abort();
- }
- },
-
- _appendTo: function() {
- var element = this.options.appendTo;
-
- if ( element ) {
- element = element.jquery || element.nodeType ?
- $( element ) :
- this.document.find( element ).eq( 0 );
- }
-
- if ( !element || !element[ 0 ] ) {
- element = this.element.closest( ".ui-front" );
- }
-
- if ( !element.length ) {
- element = this.document[ 0 ].body;
- }
-
- return element;
- },
-
- _initSource: function() {
- var array, url,
- that = this;
- if ( $.isArray( this.options.source ) ) {
- array = this.options.source;
- this.source = function( request, response ) {
- response( $.ui.autocomplete.filter( array, request.term ) );
- };
- } else if ( typeof this.options.source === "string" ) {
- url = this.options.source;
- this.source = function( request, response ) {
- if ( that.xhr ) {
- that.xhr.abort();
- }
- that.xhr = $.ajax({
- url: url,
- data: request,
- dataType: "json",
- success: function( data ) {
- response( data );
- },
- error: function() {
- response([]);
- }
- });
- };
- } else {
- this.source = this.options.source;
- }
- },
-
- _searchTimeout: function( event ) {
- clearTimeout( this.searching );
- this.searching = this._delay(function() {
-
- // Search if the value has changed, or if the user retypes the same value (see #7434)
- var equalValues = this.term === this._value(),
- menuVisible = this.menu.element.is( ":visible" ),
- modifierKey = event.altKey || event.ctrlKey || event.metaKey || event.shiftKey;
-
- if ( !equalValues || ( equalValues && !menuVisible && !modifierKey ) ) {
- this.selectedItem = null;
- this.search( null, event );
- }
- }, this.options.delay );
- },
-
- search: function( value, event ) {
- value = value != null ? value : this._value();
-
- // always save the actual value, not the one passed as an argument
- this.term = this._value();
-
- if ( value.length < this.options.minLength ) {
- return this.close( event );
- }
-
- if ( this._trigger( "search", event ) === false ) {
- return;
- }
-
- return this._search( value );
- },
-
- _search: function( value ) {
- this.pending++;
- this.element.addClass( "ui-autocomplete-loading" );
- this.cancelSearch = false;
-
- this.source( { term: value }, this._response() );
- },
-
- _response: function() {
- var index = ++this.requestIndex;
-
- return $.proxy(function( content ) {
- if ( index === this.requestIndex ) {
- this.__response( content );
- }
-
- this.pending--;
- if ( !this.pending ) {
- this.element.removeClass( "ui-autocomplete-loading" );
- }
- }, this );
- },
-
- __response: function( content ) {
- if ( content ) {
- content = this._normalize( content );
- }
- this._trigger( "response", null, { content: content } );
- if ( !this.options.disabled && content && content.length && !this.cancelSearch ) {
- this._suggest( content );
- this._trigger( "open" );
- } else {
- // use ._close() instead of .close() so we don't cancel future searches
- this._close();
- }
- },
-
- close: function( event ) {
- this.cancelSearch = true;
- this._close( event );
- },
-
- _close: function( event ) {
- if ( this.menu.element.is( ":visible" ) ) {
- this.menu.element.hide();
- this.menu.blur();
- this.isNewMenu = true;
- this._trigger( "close", event );
- }
- },
-
- _change: function( event ) {
- if ( this.previous !== this._value() ) {
- this._trigger( "change", event, { item: this.selectedItem } );
- }
- },
-
- _normalize: function( items ) {
- // assume all items have the right format when the first item is complete
- if ( items.length && items[ 0 ].label && items[ 0 ].value ) {
- return items;
- }
- return $.map( items, function( item ) {
- if ( typeof item === "string" ) {
- return {
- label: item,
- value: item
- };
- }
- return $.extend( {}, item, {
- label: item.label || item.value,
- value: item.value || item.label
- });
- });
- },
-
- _suggest: function( items ) {
- var ul = this.menu.element.empty();
- this._renderMenu( ul, items );
- this.isNewMenu = true;
- this.menu.refresh();
-
- // size and position menu
- ul.show();
- this._resizeMenu();
- ul.position( $.extend({
- of: this.element
- }, this.options.position ) );
-
- if ( this.options.autoFocus ) {
- this.menu.next();
- }
- },
-
- _resizeMenu: function() {
- var ul = this.menu.element;
- ul.outerWidth( Math.max(
- // Firefox wraps long text (possibly a rounding bug)
- // so we add 1px to avoid the wrapping (#7513)
- ul.width( "" ).outerWidth() + 1,
- this.element.outerWidth()
- ) );
- },
-
- _renderMenu: function( ul, items ) {
- var that = this;
- $.each( items, function( index, item ) {
- that._renderItemData( ul, item );
- });
- },
-
- _renderItemData: function( ul, item ) {
- return this._renderItem( ul, item ).data( "ui-autocomplete-item", item );
- },
-
- _renderItem: function( ul, item ) {
- return $( "<li>" ).text( item.label ).appendTo( ul );
- },
-
- _move: function( direction, event ) {
- if ( !this.menu.element.is( ":visible" ) ) {
- this.search( null, event );
- return;
- }
- if ( this.menu.isFirstItem() && /^previous/.test( direction ) ||
- this.menu.isLastItem() && /^next/.test( direction ) ) {
-
- if ( !this.isMultiLine ) {
- this._value( this.term );
- }
-
- this.menu.blur();
- return;
- }
- this.menu[ direction ]( event );
- },
-
- widget: function() {
- return this.menu.element;
- },
-
- _value: function() {
- return this.valueMethod.apply( this.element, arguments );
- },
-
- _keyEvent: function( keyEvent, event ) {
- if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
- this._move( keyEvent, event );
-
- // prevents moving cursor to beginning/end of the text field in some browsers
- event.preventDefault();
- }
- }
-});
-
-$.extend( $.ui.autocomplete, {
- escapeRegex: function( value ) {
- return value.replace( /[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&" );
- },
- filter: function( array, term ) {
- var matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), "i" );
- return $.grep( array, function( value ) {
- return matcher.test( value.label || value.value || value );
- });
- }
-});
-
-// live region extension, adding a `messages` option
-// NOTE: This is an experimental API. We are still investigating
-// a full solution for string manipulation and internationalization.
-$.widget( "ui.autocomplete", $.ui.autocomplete, {
- options: {
- messages: {
- noResults: "No search results.",
- results: function( amount ) {
- return amount + ( amount > 1 ? " results are" : " result is" ) +
- " available, use up and down arrow keys to navigate.";
- }
- }
- },
-
- __response: function( content ) {
- var message;
- this._superApply( arguments );
- if ( this.options.disabled || this.cancelSearch ) {
- return;
- }
- if ( content && content.length ) {
- message = this.options.messages.results( content.length );
- } else {
- message = this.options.messages.noResults;
- }
- this.liveRegion.children().hide();
- $( "<div>" ).text( message ).appendTo( this.liveRegion );
- }
-});
-
-var autocomplete = $.ui.autocomplete;
-
-
-/*!
- * jQuery UI Button 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/button/
- */
-
-
-var lastActive,
- baseClasses = "ui-button ui-widget ui-state-default ui-corner-all",
- typeClasses = "ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only",
- formResetHandler = function() {
- var form = $( this );
- setTimeout(function() {
- form.find( ":ui-button" ).button( "refresh" );
- }, 1 );
- },
- radioGroup = function( radio ) {
- var name = radio.name,
- form = radio.form,
- radios = $( [] );
- if ( name ) {
- name = name.replace( /'/g, "\\'" );
- if ( form ) {
- radios = $( form ).find( "[name='" + name + "'][type=radio]" );
- } else {
- radios = $( "[name='" + name + "'][type=radio]", radio.ownerDocument )
- .filter(function() {
- return !this.form;
- });
- }
- }
- return radios;
- };
-
-$.widget( "ui.button", {
- version: "1.11.3",
- defaultElement: "<button>",
- options: {
- disabled: null,
- text: true,
- label: null,
- icons: {
- primary: null,
- secondary: null
- }
- },
- _create: function() {
- this.element.closest( "form" )
- .unbind( "reset" + this.eventNamespace )
- .bind( "reset" + this.eventNamespace, formResetHandler );
-
- if ( typeof this.options.disabled !== "boolean" ) {
- this.options.disabled = !!this.element.prop( "disabled" );
- } else {
- this.element.prop( "disabled", this.options.disabled );
- }
-
- this._determineButtonType();
- this.hasTitle = !!this.buttonElement.attr( "title" );
-
- var that = this,
- options = this.options,
- toggleButton = this.type === "checkbox" || this.type === "radio",
- activeClass = !toggleButton ? "ui-state-active" : "";
-
- if ( options.label === null ) {
- options.label = (this.type === "input" ? this.buttonElement.val() : this.buttonElement.html());
- }
-
- this._hoverable( this.buttonElement );
-
- this.buttonElement
- .addClass( baseClasses )
- .attr( "role", "button" )
- .bind( "mouseenter" + this.eventNamespace, function() {
- if ( options.disabled ) {
- return;
- }
- if ( this === lastActive ) {
- $( this ).addClass( "ui-state-active" );
- }
- })
- .bind( "mouseleave" + this.eventNamespace, function() {
- if ( options.disabled ) {
- return;
- }
- $( this ).removeClass( activeClass );
- })
- .bind( "click" + this.eventNamespace, function( event ) {
- if ( options.disabled ) {
- event.preventDefault();
- event.stopImmediatePropagation();
- }
- });
-
- // Can't use _focusable() because the element that receives focus
- // and the element that gets the ui-state-focus class are different
- this._on({
- focus: function() {
- this.buttonElement.addClass( "ui-state-focus" );
- },
- blur: function() {
- this.buttonElement.removeClass( "ui-state-focus" );
- }
- });
-
- if ( toggleButton ) {
- this.element.bind( "change" + this.eventNamespace, function() {
- that.refresh();
- });
- }
-
- if ( this.type === "checkbox" ) {
- this.buttonElement.bind( "click" + this.eventNamespace, function() {
- if ( options.disabled ) {
- return false;
- }
- });
- } else if ( this.type === "radio" ) {
- this.buttonElement.bind( "click" + this.eventNamespace, function() {
- if ( options.disabled ) {
- return false;
- }
- $( this ).addClass( "ui-state-active" );
- that.buttonElement.attr( "aria-pressed", "true" );
-
- var radio = that.element[ 0 ];
- radioGroup( radio )
- .not( radio )
- .map(function() {
- return $( this ).button( "widget" )[ 0 ];
- })
- .removeClass( "ui-state-active" )
- .attr( "aria-pressed", "false" );
- });
- } else {
- this.buttonElement
- .bind( "mousedown" + this.eventNamespace, function() {
- if ( options.disabled ) {
- return false;
- }
- $( this ).addClass( "ui-state-active" );
- lastActive = this;
- that.document.one( "mouseup", function() {
- lastActive = null;
- });
- })
- .bind( "mouseup" + this.eventNamespace, function() {
- if ( options.disabled ) {
- return false;
- }
- $( this ).removeClass( "ui-state-active" );
- })
- .bind( "keydown" + this.eventNamespace, function(event) {
- if ( options.disabled ) {
- return false;
- }
- if ( event.keyCode === $.ui.keyCode.SPACE || event.keyCode === $.ui.keyCode.ENTER ) {
- $( this ).addClass( "ui-state-active" );
- }
- })
- // see #8559, we bind to blur here in case the button element loses
- // focus between keydown and keyup, it would be left in an "active" state
- .bind( "keyup" + this.eventNamespace + " blur" + this.eventNamespace, function() {
- $( this ).removeClass( "ui-state-active" );
- });
-
- if ( this.buttonElement.is("a") ) {
- this.buttonElement.keyup(function(event) {
- if ( event.keyCode === $.ui.keyCode.SPACE ) {
- // TODO pass through original event correctly (just as 2nd argument doesn't work)
- $( this ).click();
- }
- });
- }
- }
-
- this._setOption( "disabled", options.disabled );
- this._resetButton();
- },
-
- _determineButtonType: function() {
- var ancestor, labelSelector, checked;
-
- if ( this.element.is("[type=checkbox]") ) {
- this.type = "checkbox";
- } else if ( this.element.is("[type=radio]") ) {
- this.type = "radio";
- } else if ( this.element.is("input") ) {
- this.type = "input";
- } else {
- this.type = "button";
- }
-
- if ( this.type === "checkbox" || this.type === "radio" ) {
- // we don't search against the document in case the element
- // is disconnected from the DOM
- ancestor = this.element.parents().last();
- labelSelector = "label[for='" + this.element.attr("id") + "']";
- this.buttonElement = ancestor.find( labelSelector );
- if ( !this.buttonElement.length ) {
- ancestor = ancestor.length ? ancestor.siblings() : this.element.siblings();
- this.buttonElement = ancestor.filter( labelSelector );
- if ( !this.buttonElement.length ) {
- this.buttonElement = ancestor.find( labelSelector );
- }
- }
- this.element.addClass( "ui-helper-hidden-accessible" );
-
- checked = this.element.is( ":checked" );
- if ( checked ) {
- this.buttonElement.addClass( "ui-state-active" );
- }
- this.buttonElement.prop( "aria-pressed", checked );
- } else {
- this.buttonElement = this.element;
- }
- },
-
- widget: function() {
- return this.buttonElement;
- },
-
- _destroy: function() {
- this.element
- .removeClass( "ui-helper-hidden-accessible" );
- this.buttonElement
- .removeClass( baseClasses + " ui-state-active " + typeClasses )
- .removeAttr( "role" )
- .removeAttr( "aria-pressed" )
- .html( this.buttonElement.find(".ui-button-text").html() );
-
- if ( !this.hasTitle ) {
- this.buttonElement.removeAttr( "title" );
- }
- },
-
- _setOption: function( key, value ) {
- this._super( key, value );
- if ( key === "disabled" ) {
- this.widget().toggleClass( "ui-state-disabled", !!value );
- this.element.prop( "disabled", !!value );
- if ( value ) {
- if ( this.type === "checkbox" || this.type === "radio" ) {
- this.buttonElement.removeClass( "ui-state-focus" );
- } else {
- this.buttonElement.removeClass( "ui-state-focus ui-state-active" );
- }
- }
- return;
- }
- this._resetButton();
- },
-
- refresh: function() {
- //See #8237 & #8828
- var isDisabled = this.element.is( "input, button" ) ? this.element.is( ":disabled" ) : this.element.hasClass( "ui-button-disabled" );
-
- if ( isDisabled !== this.options.disabled ) {
- this._setOption( "disabled", isDisabled );
- }
- if ( this.type === "radio" ) {
- radioGroup( this.element[0] ).each(function() {
- if ( $( this ).is( ":checked" ) ) {
- $( this ).button( "widget" )
- .addClass( "ui-state-active" )
- .attr( "aria-pressed", "true" );
- } else {
- $( this ).button( "widget" )
- .removeClass( "ui-state-active" )
- .attr( "aria-pressed", "false" );
- }
- });
- } else if ( this.type === "checkbox" ) {
- if ( this.element.is( ":checked" ) ) {
- this.buttonElement
- .addClass( "ui-state-active" )
- .attr( "aria-pressed", "true" );
- } else {
- this.buttonElement
- .removeClass( "ui-state-active" )
- .attr( "aria-pressed", "false" );
- }
- }
- },
-
- _resetButton: function() {
- if ( this.type === "input" ) {
- if ( this.options.label ) {
- this.element.val( this.options.label );
- }
- return;
- }
- var buttonElement = this.buttonElement.removeClass( typeClasses ),
- buttonText = $( "<span></span>", this.document[0] )
- .addClass( "ui-button-text" )
- .html( this.options.label )
- .appendTo( buttonElement.empty() )
- .text(),
- icons = this.options.icons,
- multipleIcons = icons.primary && icons.secondary,
- buttonClasses = [];
-
- if ( icons.primary || icons.secondary ) {
- if ( this.options.text ) {
- buttonClasses.push( "ui-button-text-icon" + ( multipleIcons ? "s" : ( icons.primary ? "-primary" : "-secondary" ) ) );
- }
-
- if ( icons.primary ) {
- buttonElement.prepend( "<span class='ui-button-icon-primary ui-icon " + icons.primary + "'></span>" );
- }
-
- if ( icons.secondary ) {
- buttonElement.append( "<span class='ui-button-icon-secondary ui-icon " + icons.secondary + "'></span>" );
- }
-
- if ( !this.options.text ) {
- buttonClasses.push( multipleIcons ? "ui-button-icons-only" : "ui-button-icon-only" );
-
- if ( !this.hasTitle ) {
- buttonElement.attr( "title", $.trim( buttonText ) );
- }
- }
- } else {
- buttonClasses.push( "ui-button-text-only" );
- }
- buttonElement.addClass( buttonClasses.join( " " ) );
- }
-});
-
-$.widget( "ui.buttonset", {
- version: "1.11.3",
- options: {
- items: "button, input[type=button], input[type=submit], input[type=reset], input[type=checkbox], input[type=radio], a, :data(ui-button)"
- },
-
- _create: function() {
- this.element.addClass( "ui-buttonset" );
- },
-
- _init: function() {
- this.refresh();
- },
-
- _setOption: function( key, value ) {
- if ( key === "disabled" ) {
- this.buttons.button( "option", key, value );
- }
-
- this._super( key, value );
- },
-
- refresh: function() {
- var rtl = this.element.css( "direction" ) === "rtl",
- allButtons = this.element.find( this.options.items ),
- existingButtons = allButtons.filter( ":ui-button" );
-
- // Initialize new buttons
- allButtons.not( ":ui-button" ).button();
-
- // Refresh existing buttons
- existingButtons.button( "refresh" );
-
- this.buttons = allButtons
- .map(function() {
- return $( this ).button( "widget" )[ 0 ];
- })
- .removeClass( "ui-corner-all ui-corner-left ui-corner-right" )
- .filter( ":first" )
- .addClass( rtl ? "ui-corner-right" : "ui-corner-left" )
- .end()
- .filter( ":last" )
- .addClass( rtl ? "ui-corner-left" : "ui-corner-right" )
- .end()
- .end();
- },
-
- _destroy: function() {
- this.element.removeClass( "ui-buttonset" );
- this.buttons
- .map(function() {
- return $( this ).button( "widget" )[ 0 ];
- })
- .removeClass( "ui-corner-left ui-corner-right" )
- .end()
- .button( "destroy" );
- }
-});
-
-var button = $.ui.button;
-
-
-/*!
- * jQuery UI Datepicker 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/datepicker/
- */
-
-
-$.extend($.ui, { datepicker: { version: "1.11.3" } });
-
-var datepicker_instActive;
-
-function datepicker_getZindex( elem ) {
- var position, value;
- while ( elem.length && elem[ 0 ] !== document ) {
- // Ignore z-index if position is set to a value where z-index is ignored by the browser
- // This makes behavior of this function consistent across browsers
- // WebKit always returns auto if the element is positioned
- position = elem.css( "position" );
- if ( position === "absolute" || position === "relative" || position === "fixed" ) {
- // IE returns 0 when zIndex is not specified
- // other browsers return a string
- // we ignore the case of nested elements with an explicit value of 0
- // <div style="z-index: -10;"><div style="z-index: 0;"></div></div>
- value = parseInt( elem.css( "zIndex" ), 10 );
- if ( !isNaN( value ) && value !== 0 ) {
- return value;
- }
- }
- elem = elem.parent();
- }
-
- return 0;
-}
-/* Date picker manager.
- Use the singleton instance of this class, $.datepicker, to interact with the date picker.
- Settings for (groups of) date pickers are maintained in an instance object,
- allowing multiple different settings on the same page. */
-
-function Datepicker() {
- this._curInst = null; // The current instance in use
- this._keyEvent = false; // If the last event was a key event
- this._disabledInputs = []; // List of date picker inputs that have been disabled
- this._datepickerShowing = false; // True if the popup picker is showing , false if not
- this._inDialog = false; // True if showing within a "dialog", false if not
- this._mainDivId = "ui-datepicker-div"; // The ID of the main datepicker division
- this._inlineClass = "ui-datepicker-inline"; // The name of the inline marker class
- this._appendClass = "ui-datepicker-append"; // The name of the append marker class
- this._triggerClass = "ui-datepicker-trigger"; // The name of the trigger marker class
- this._dialogClass = "ui-datepicker-dialog"; // The name of the dialog marker class
- this._disableClass = "ui-datepicker-disabled"; // The name of the disabled covering marker class
- this._unselectableClass = "ui-datepicker-unselectable"; // The name of the unselectable cell marker class
- this._currentClass = "ui-datepicker-current-day"; // The name of the current day marker class
- this._dayOverClass = "ui-datepicker-days-cell-over"; // The name of the day hover marker class
- this.regional = []; // Available regional settings, indexed by language code
- this.regional[""] = { // Default regional settings
- closeText: "Done", // Display text for close link
- prevText: "Prev", // Display text for previous month link
- nextText: "Next", // Display text for next month link
- currentText: "Today", // Display text for current month link
- monthNames: ["January","February","March","April","May","June",
- "July","August","September","October","November","December"], // Names of months for drop-down and formatting
- monthNamesShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], // For formatting
- dayNames: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], // For formatting
- dayNamesShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], // For formatting
- dayNamesMin: ["Su","Mo","Tu","We","Th","Fr","Sa"], // Column headings for days starting at Sunday
- weekHeader: "Wk", // Column header for week of the year
- dateFormat: "mm/dd/yy", // See format options on parseDate
- firstDay: 0, // The first day of the week, Sun = 0, Mon = 1, ...
- isRTL: false, // True if right-to-left language, false if left-to-right
- showMonthAfterYear: false, // True if the year select precedes month, false for month then year
- yearSuffix: "" // Additional text to append to the year in the month headers
- };
- this._defaults = { // Global defaults for all the date picker instances
- showOn: "focus", // "focus" for popup on focus,
- // "button" for trigger button, or "both" for either
- showAnim: "fadeIn", // Name of jQuery animation for popup
- showOptions: {}, // Options for enhanced animations
- defaultDate: null, // Used when field is blank: actual date,
- // +/-number for offset from today, null for today
- appendText: "", // Display text following the input box, e.g. showing the format
- buttonText: "...", // Text for trigger button
- buttonImage: "", // URL for trigger button image
- buttonImageOnly: false, // True if the image appears alone, false if it appears on a button
- hideIfNoPrevNext: false, // True to hide next/previous month links
- // if not applicable, false to just disable them
- navigationAsDateFormat: false, // True if date formatting applied to prev/today/next links
- gotoCurrent: false, // True if today link goes back to current selection instead
- changeMonth: false, // True if month can be selected directly, false if only prev/next
- changeYear: false, // True if year can be selected directly, false if only prev/next
- yearRange: "c-10:c+10", // Range of years to display in drop-down,
- // either relative to today's year (-nn:+nn), relative to currently displayed year
- // (c-nn:c+nn), absolute (nnnn:nnnn), or a combination of the above (nnnn:-n)
- showOtherMonths: false, // True to show dates in other months, false to leave blank
- selectOtherMonths: false, // True to allow selection of dates in other months, false for unselectable
- showWeek: false, // True to show week of the year, false to not show it
- calculateWeek: this.iso8601Week, // How to calculate the week of the year,
- // takes a Date and returns the number of the week for it
- shortYearCutoff: "+10", // Short year values < this are in the current century,
- // > this are in the previous century,
- // string value starting with "+" for current year + value
- minDate: null, // The earliest selectable date, or null for no limit
- maxDate: null, // The latest selectable date, or null for no limit
- duration: "fast", // Duration of display/closure
- beforeShowDay: null, // Function that takes a date and returns an array with
- // [0] = true if selectable, false if not, [1] = custom CSS class name(s) or "",
- // [2] = cell title (optional), e.g. $.datepicker.noWeekends
- beforeShow: null, // Function that takes an input field and
- // returns a set of custom settings for the date picker
- onSelect: null, // Define a callback function when a date is selected
- onChangeMonthYear: null, // Define a callback function when the month or year is changed
- onClose: null, // Define a callback function when the datepicker is closed
- numberOfMonths: 1, // Number of months to show at a time
- showCurrentAtPos: 0, // The position in multipe months at which to show the current month (starting at 0)
- stepMonths: 1, // Number of months to step back/forward
- stepBigMonths: 12, // Number of months to step back/forward for the big links
- altField: "", // Selector for an alternate field to store selected dates into
- altFormat: "", // The date format to use for the alternate field
- constrainInput: true, // The input is constrained by the current date format
- showButtonPanel: false, // True to show button panel, false to not show it
- autoSize: false, // True to size the input for the date format, false to leave as is
- disabled: false // The initial disabled state
- };
- $.extend(this._defaults, this.regional[""]);
- this.regional.en = $.extend( true, {}, this.regional[ "" ]);
- this.regional[ "en-US" ] = $.extend( true, {}, this.regional.en );
- this.dpDiv = datepicker_bindHover($("<div id='" + this._mainDivId + "' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>"));
-}
-
-$.extend(Datepicker.prototype, {
- /* Class name added to elements to indicate already configured with a date picker. */
- markerClassName: "hasDatepicker",
-
- //Keep track of the maximum number of rows displayed (see #7043)
- maxRows: 4,
-
- // TODO rename to "widget" when switching to widget factory
- _widgetDatepicker: function() {
- return this.dpDiv;
- },
-
- /* Override the default settings for all instances of the date picker.
- * @param settings object - the new settings to use as defaults (anonymous object)
- * @return the manager object
- */
- setDefaults: function(settings) {
- datepicker_extendRemove(this._defaults, settings || {});
- return this;
- },
-
- /* Attach the date picker to a jQuery selection.
- * @param target element - the target input field or division or span
- * @param settings object - the new settings to use for this date picker instance (anonymous)
- */
- _attachDatepicker: function(target, settings) {
- var nodeName, inline, inst;
- nodeName = target.nodeName.toLowerCase();
- inline = (nodeName === "div" || nodeName === "span");
- if (!target.id) {
- this.uuid += 1;
- target.id = "dp" + this.uuid;
- }
- inst = this._newInst($(target), inline);
- inst.settings = $.extend({}, settings || {});
- if (nodeName === "input") {
- this._connectDatepicker(target, inst);
- } else if (inline) {
- this._inlineDatepicker(target, inst);
- }
- },
-
- /* Create a new instance object. */
- _newInst: function(target, inline) {
- var id = target[0].id.replace(/([^A-Za-z0-9_\-])/g, "\\\\$1"); // escape jQuery meta chars
- return {id: id, input: target, // associated target
- selectedDay: 0, selectedMonth: 0, selectedYear: 0, // current selection
- drawMonth: 0, drawYear: 0, // month being drawn
- inline: inline, // is datepicker inline or not
- dpDiv: (!inline ? this.dpDiv : // presentation div
- datepicker_bindHover($("<div class='" + this._inlineClass + " ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>")))};
- },
-
- /* Attach the date picker to an input field. */
- _connectDatepicker: function(target, inst) {
- var input = $(target);
- inst.append = $([]);
- inst.trigger = $([]);
- if (input.hasClass(this.markerClassName)) {
- return;
- }
- this._attachments(input, inst);
- input.addClass(this.markerClassName).keydown(this._doKeyDown).
- keypress(this._doKeyPress).keyup(this._doKeyUp);
- this._autoSize(inst);
- $.data(target, "datepicker", inst);
- //If disabled option is true, disable the datepicker once it has been attached to the input (see ticket #5665)
- if( inst.settings.disabled ) {
- this._disableDatepicker( target );
- }
- },
-
- /* Make attachments based on settings. */
- _attachments: function(input, inst) {
- var showOn, buttonText, buttonImage,
- appendText = this._get(inst, "appendText"),
- isRTL = this._get(inst, "isRTL");
-
- if (inst.append) {
- inst.append.remove();
- }
- if (appendText) {
- inst.append = $("<span class='" + this._appendClass + "'>" + appendText + "</span>");
- input[isRTL ? "before" : "after"](inst.append);
- }
-
- input.unbind("focus", this._showDatepicker);
-
- if (inst.trigger) {
- inst.trigger.remove();
- }
-
- showOn = this._get(inst, "showOn");
- if (showOn === "focus" || showOn === "both") { // pop-up date picker when in the marked field
- input.focus(this._showDatepicker);
- }
- if (showOn === "button" || showOn === "both") { // pop-up date picker when button clicked
- buttonText = this._get(inst, "buttonText");
- buttonImage = this._get(inst, "buttonImage");
- inst.trigger = $(this._get(inst, "buttonImageOnly") ?
- $("<img/>").addClass(this._triggerClass).
- attr({ src: buttonImage, alt: buttonText, title: buttonText }) :
- $("<button type='button'></button>").addClass(this._triggerClass).
- html(!buttonImage ? buttonText : $("<img/>").attr(
- { src:buttonImage, alt:buttonText, title:buttonText })));
- input[isRTL ? "before" : "after"](inst.trigger);
- inst.trigger.click(function() {
- if ($.datepicker._datepickerShowing && $.datepicker._lastInput === input[0]) {
- $.datepicker._hideDatepicker();
- } else if ($.datepicker._datepickerShowing && $.datepicker._lastInput !== input[0]) {
- $.datepicker._hideDatepicker();
- $.datepicker._showDatepicker(input[0]);
- } else {
- $.datepicker._showDatepicker(input[0]);
- }
- return false;
- });
- }
- },
-
- /* Apply the maximum length for the date format. */
- _autoSize: function(inst) {
- if (this._get(inst, "autoSize") && !inst.inline) {
- var findMax, max, maxI, i,
- date = new Date(2009, 12 - 1, 20), // Ensure double digits
- dateFormat = this._get(inst, "dateFormat");
-
- if (dateFormat.match(/[DM]/)) {
- findMax = function(names) {
- max = 0;
- maxI = 0;
- for (i = 0; i < names.length; i++) {
- if (names[i].length > max) {
- max = names[i].length;
- maxI = i;
- }
- }
- return maxI;
- };
- date.setMonth(findMax(this._get(inst, (dateFormat.match(/MM/) ?
- "monthNames" : "monthNamesShort"))));
- date.setDate(findMax(this._get(inst, (dateFormat.match(/DD/) ?
- "dayNames" : "dayNamesShort"))) + 20 - date.getDay());
- }
- inst.input.attr("size", this._formatDate(inst, date).length);
- }
- },
-
- /* Attach an inline date picker to a div. */
- _inlineDatepicker: function(target, inst) {
- var divSpan = $(target);
- if (divSpan.hasClass(this.markerClassName)) {
- return;
- }
- divSpan.addClass(this.markerClassName).append(inst.dpDiv);
- $.data(target, "datepicker", inst);
- this._setDate(inst, this._getDefaultDate(inst), true);
- this._updateDatepicker(inst);
- this._updateAlternate(inst);
- //If disabled option is true, disable the datepicker before showing it (see ticket #5665)
- if( inst.settings.disabled ) {
- this._disableDatepicker( target );
- }
- // Set display:block in place of inst.dpDiv.show() which won't work on disconnected elements
- // http://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height
- inst.dpDiv.css( "display", "block" );
- },
-
- /* Pop-up the date picker in a "dialog" box.
- * @param input element - ignored
- * @param date string or Date - the initial date to display
- * @param onSelect function - the function to call when a date is selected
- * @param settings object - update the dialog date picker instance's settings (anonymous object)
- * @param pos int[2] - coordinates for the dialog's position within the screen or
- * event - with x/y coordinates or
- * leave empty for default (screen centre)
- * @return the manager object
- */
- _dialogDatepicker: function(input, date, onSelect, settings, pos) {
- var id, browserWidth, browserHeight, scrollX, scrollY,
- inst = this._dialogInst; // internal instance
-
- if (!inst) {
- this.uuid += 1;
- id = "dp" + this.uuid;
- this._dialogInput = $("<input type='text' id='" + id +
- "' style='position: absolute; top: -100px; width: 0px;'/>");
- this._dialogInput.keydown(this._doKeyDown);
- $("body").append(this._dialogInput);
- inst = this._dialogInst = this._newInst(this._dialogInput, false);
- inst.settings = {};
- $.data(this._dialogInput[0], "datepicker", inst);
- }
- datepicker_extendRemove(inst.settings, settings || {});
- date = (date && date.constructor === Date ? this._formatDate(inst, date) : date);
- this._dialogInput.val(date);
-
- this._pos = (pos ? (pos.length ? pos : [pos.pageX, pos.pageY]) : null);
- if (!this._pos) {
- browserWidth = document.documentElement.clientWidth;
- browserHeight = document.documentElement.clientHeight;
- scrollX = document.documentElement.scrollLeft || document.body.scrollLeft;
- scrollY = document.documentElement.scrollTop || document.body.scrollTop;
- this._pos = // should use actual width/height below
- [(browserWidth / 2) - 100 + scrollX, (browserHeight / 2) - 150 + scrollY];
- }
-
- // move input on screen for focus, but hidden behind dialog
- this._dialogInput.css("left", (this._pos[0] + 20) + "px").css("top", this._pos[1] + "px");
- inst.settings.onSelect = onSelect;
- this._inDialog = true;
- this.dpDiv.addClass(this._dialogClass);
- this._showDatepicker(this._dialogInput[0]);
- if ($.blockUI) {
- $.blockUI(this.dpDiv);
- }
- $.data(this._dialogInput[0], "datepicker", inst);
- return this;
- },
-
- /* Detach a datepicker from its control.
- * @param target element - the target input field or division or span
- */
- _destroyDatepicker: function(target) {
- var nodeName,
- $target = $(target),
- inst = $.data(target, "datepicker");
-
- if (!$target.hasClass(this.markerClassName)) {
- return;
- }
-
- nodeName = target.nodeName.toLowerCase();
- $.removeData(target, "datepicker");
- if (nodeName === "input") {
- inst.append.remove();
- inst.trigger.remove();
- $target.removeClass(this.markerClassName).
- unbind("focus", this._showDatepicker).
- unbind("keydown", this._doKeyDown).
- unbind("keypress", this._doKeyPress).
- unbind("keyup", this._doKeyUp);
- } else if (nodeName === "div" || nodeName === "span") {
- $target.removeClass(this.markerClassName).empty();
- }
-
- if ( datepicker_instActive === inst ) {
- datepicker_instActive = null;
- }
- },
-
- /* Enable the date picker to a jQuery selection.
- * @param target element - the target input field or division or span
- */
- _enableDatepicker: function(target) {
- var nodeName, inline,
- $target = $(target),
- inst = $.data(target, "datepicker");
-
- if (!$target.hasClass(this.markerClassName)) {
- return;
- }
-
- nodeName = target.nodeName.toLowerCase();
- if (nodeName === "input") {
- target.disabled = false;
- inst.trigger.filter("button").
- each(function() { this.disabled = false; }).end().
- filter("img").css({opacity: "1.0", cursor: ""});
- } else if (nodeName === "div" || nodeName === "span") {
- inline = $target.children("." + this._inlineClass);
- inline.children().removeClass("ui-state-disabled");
- inline.find("select.ui-datepicker-month, select.ui-datepicker-year").
- prop("disabled", false);
- }
- this._disabledInputs = $.map(this._disabledInputs,
- function(value) { return (value === target ? null : value); }); // delete entry
- },
-
- /* Disable the date picker to a jQuery selection.
- * @param target element - the target input field or division or span
- */
- _disableDatepicker: function(target) {
- var nodeName, inline,
- $target = $(target),
- inst = $.data(target, "datepicker");
-
- if (!$target.hasClass(this.markerClassName)) {
- return;
- }
-
- nodeName = target.nodeName.toLowerCase();
- if (nodeName === "input") {
- target.disabled = true;
- inst.trigger.filter("button").
- each(function() { this.disabled = true; }).end().
- filter("img").css({opacity: "0.5", cursor: "default"});
- } else if (nodeName === "div" || nodeName === "span") {
- inline = $target.children("." + this._inlineClass);
- inline.children().addClass("ui-state-disabled");
- inline.find("select.ui-datepicker-month, select.ui-datepicker-year").
- prop("disabled", true);
- }
- this._disabledInputs = $.map(this._disabledInputs,
- function(value) { return (value === target ? null : value); }); // delete entry
- this._disabledInputs[this._disabledInputs.length] = target;
- },
-
- /* Is the first field in a jQuery collection disabled as a datepicker?
- * @param target element - the target input field or division or span
- * @return boolean - true if disabled, false if enabled
- */
- _isDisabledDatepicker: function(target) {
- if (!target) {
- return false;
- }
- for (var i = 0; i < this._disabledInputs.length; i++) {
- if (this._disabledInputs[i] === target) {
- return true;
- }
- }
- return false;
- },
-
- /* Retrieve the instance data for the target control.
- * @param target element - the target input field or division or span
- * @return object - the associated instance data
- * @throws error if a jQuery problem getting data
- */
- _getInst: function(target) {
- try {
- return $.data(target, "datepicker");
- }
- catch (err) {
- throw "Missing instance data for this datepicker";
- }
- },
-
- /* Update or retrieve the settings for a date picker attached to an input field or division.
- * @param target element - the target input field or division or span
- * @param name object - the new settings to update or
- * string - the name of the setting to change or retrieve,
- * when retrieving also "all" for all instance settings or
- * "defaults" for all global defaults
- * @param value any - the new value for the setting
- * (omit if above is an object or to retrieve a value)
- */
- _optionDatepicker: function(target, name, value) {
- var settings, date, minDate, maxDate,
- inst = this._getInst(target);
-
- if (arguments.length === 2 && typeof name === "string") {
- return (name === "defaults" ? $.extend({}, $.datepicker._defaults) :
- (inst ? (name === "all" ? $.extend({}, inst.settings) :
- this._get(inst, name)) : null));
- }
-
- settings = name || {};
- if (typeof name === "string") {
- settings = {};
- settings[name] = value;
- }
-
- if (inst) {
- if (this._curInst === inst) {
- this._hideDatepicker();
- }
-
- date = this._getDateDatepicker(target, true);
- minDate = this._getMinMaxDate(inst, "min");
- maxDate = this._getMinMaxDate(inst, "max");
- datepicker_extendRemove(inst.settings, settings);
- // reformat the old minDate/maxDate values if dateFormat changes and a new minDate/maxDate isn't provided
- if (minDate !== null && settings.dateFormat !== undefined && settings.minDate === undefined) {
- inst.settings.minDate = this._formatDate(inst, minDate);
- }
- if (maxDate !== null && settings.dateFormat !== undefined && settings.maxDate === undefined) {
- inst.settings.maxDate = this._formatDate(inst, maxDate);
- }
- if ( "disabled" in settings ) {
- if ( settings.disabled ) {
- this._disableDatepicker(target);
- } else {
- this._enableDatepicker(target);
- }
- }
- this._attachments($(target), inst);
- this._autoSize(inst);
- this._setDate(inst, date);
- this._updateAlternate(inst);
- this._updateDatepicker(inst);
- }
- },
-
- // change method deprecated
- _changeDatepicker: function(target, name, value) {
- this._optionDatepicker(target, name, value);
- },
-
- /* Redraw the date picker attached to an input field or division.
- * @param target element - the target input field or division or span
- */
- _refreshDatepicker: function(target) {
- var inst = this._getInst(target);
- if (inst) {
- this._updateDatepicker(inst);
- }
- },
-
- /* Set the dates for a jQuery selection.
- * @param target element - the target input field or division or span
- * @param date Date - the new date
- */
- _setDateDatepicker: function(target, date) {
- var inst = this._getInst(target);
- if (inst) {
- this._setDate(inst, date);
- this._updateDatepicker(inst);
- this._updateAlternate(inst);
- }
- },
-
- /* Get the date(s) for the first entry in a jQuery selection.
- * @param target element - the target input field or division or span
- * @param noDefault boolean - true if no default date is to be used
- * @return Date - the current date
- */
- _getDateDatepicker: function(target, noDefault) {
- var inst = this._getInst(target);
- if (inst && !inst.inline) {
- this._setDateFromField(inst, noDefault);
- }
- return (inst ? this._getDate(inst) : null);
- },
-
- /* Handle keystrokes. */
- _doKeyDown: function(event) {
- var onSelect, dateStr, sel,
- inst = $.datepicker._getInst(event.target),
- handled = true,
- isRTL = inst.dpDiv.is(".ui-datepicker-rtl");
-
- inst._keyEvent = true;
- if ($.datepicker._datepickerShowing) {
- switch (event.keyCode) {
- case 9: $.datepicker._hideDatepicker();
- handled = false;
- break; // hide on tab out
- case 13: sel = $("td." + $.datepicker._dayOverClass + ":not(." +
- $.datepicker._currentClass + ")", inst.dpDiv);
- if (sel[0]) {
- $.datepicker._selectDay(event.target, inst.selectedMonth, inst.selectedYear, sel[0]);
- }
-
- onSelect = $.datepicker._get(inst, "onSelect");
- if (onSelect) {
- dateStr = $.datepicker._formatDate(inst);
-
- // trigger custom callback
- onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]);
- } else {
- $.datepicker._hideDatepicker();
- }
-
- return false; // don't submit the form
- case 27: $.datepicker._hideDatepicker();
- break; // hide on escape
- case 33: $.datepicker._adjustDate(event.target, (event.ctrlKey ?
- -$.datepicker._get(inst, "stepBigMonths") :
- -$.datepicker._get(inst, "stepMonths")), "M");
- break; // previous month/year on page up/+ ctrl
- case 34: $.datepicker._adjustDate(event.target, (event.ctrlKey ?
- +$.datepicker._get(inst, "stepBigMonths") :
- +$.datepicker._get(inst, "stepMonths")), "M");
- break; // next month/year on page down/+ ctrl
- case 35: if (event.ctrlKey || event.metaKey) {
- $.datepicker._clearDate(event.target);
- }
- handled = event.ctrlKey || event.metaKey;
- break; // clear on ctrl or command +end
- case 36: if (event.ctrlKey || event.metaKey) {
- $.datepicker._gotoToday(event.target);
- }
- handled = event.ctrlKey || event.metaKey;
- break; // current on ctrl or command +home
- case 37: if (event.ctrlKey || event.metaKey) {
- $.datepicker._adjustDate(event.target, (isRTL ? +1 : -1), "D");
- }
- handled = event.ctrlKey || event.metaKey;
- // -1 day on ctrl or command +left
- if (event.originalEvent.altKey) {
- $.datepicker._adjustDate(event.target, (event.ctrlKey ?
- -$.datepicker._get(inst, "stepBigMonths") :
- -$.datepicker._get(inst, "stepMonths")), "M");
- }
- // next month/year on alt +left on Mac
- break;
- case 38: if (event.ctrlKey || event.metaKey) {
- $.datepicker._adjustDate(event.target, -7, "D");
- }
- handled = event.ctrlKey || event.metaKey;
- break; // -1 week on ctrl or command +up
- case 39: if (event.ctrlKey || event.metaKey) {
- $.datepicker._adjustDate(event.target, (isRTL ? -1 : +1), "D");
- }
- handled = event.ctrlKey || event.metaKey;
- // +1 day on ctrl or command +right
- if (event.originalEvent.altKey) {
- $.datepicker._adjustDate(event.target, (event.ctrlKey ?
- +$.datepicker._get(inst, "stepBigMonths") :
- +$.datepicker._get(inst, "stepMonths")), "M");
- }
- // next month/year on alt +right
- break;
- case 40: if (event.ctrlKey || event.metaKey) {
- $.datepicker._adjustDate(event.target, +7, "D");
- }
- handled = event.ctrlKey || event.metaKey;
- break; // +1 week on ctrl or command +down
- default: handled = false;
- }
- } else if (event.keyCode === 36 && event.ctrlKey) { // display the date picker on ctrl+home
- $.datepicker._showDatepicker(this);
- } else {
- handled = false;
- }
-
- if (handled) {
- event.preventDefault();
- event.stopPropagation();
- }
- },
-
- /* Filter entered characters - based on date format. */
- _doKeyPress: function(event) {
- var chars, chr,
- inst = $.datepicker._getInst(event.target);
-
- if ($.datepicker._get(inst, "constrainInput")) {
- chars = $.datepicker._possibleChars($.datepicker._get(inst, "dateFormat"));
- chr = String.fromCharCode(event.charCode == null ? event.keyCode : event.charCode);
- return event.ctrlKey || event.metaKey || (chr < " " || !chars || chars.indexOf(chr) > -1);
- }
- },
-
- /* Synchronise manual entry and field/alternate field. */
- _doKeyUp: function(event) {
- var date,
- inst = $.datepicker._getInst(event.target);
-
- if (inst.input.val() !== inst.lastVal) {
- try {
- date = $.datepicker.parseDate($.datepicker._get(inst, "dateFormat"),
- (inst.input ? inst.input.val() : null),
- $.datepicker._getFormatConfig(inst));
-
- if (date) { // only if valid
- $.datepicker._setDateFromField(inst);
- $.datepicker._updateAlternate(inst);
- $.datepicker._updateDatepicker(inst);
- }
- }
- catch (err) {
- }
- }
- return true;
- },
-
- /* Pop-up the date picker for a given input field.
- * If false returned from beforeShow event handler do not show.
- * @param input element - the input field attached to the date picker or
- * event - if triggered by focus
- */
- _showDatepicker: function(input) {
- input = input.target || input;
- if (input.nodeName.toLowerCase() !== "input") { // find from button/image trigger
- input = $("input", input.parentNode)[0];
- }
-
- if ($.datepicker._isDisabledDatepicker(input) || $.datepicker._lastInput === input) { // already here
- return;
- }
-
- var inst, beforeShow, beforeShowSettings, isFixed,
- offset, showAnim, duration;
-
- inst = $.datepicker._getInst(input);
- if ($.datepicker._curInst && $.datepicker._curInst !== inst) {
- $.datepicker._curInst.dpDiv.stop(true, true);
- if ( inst && $.datepicker._datepickerShowing ) {
- $.datepicker._hideDatepicker( $.datepicker._curInst.input[0] );
- }
- }
-
- beforeShow = $.datepicker._get(inst, "beforeShow");
- beforeShowSettings = beforeShow ? beforeShow.apply(input, [input, inst]) : {};
- if(beforeShowSettings === false){
- return;
- }
- datepicker_extendRemove(inst.settings, beforeShowSettings);
-
- inst.lastVal = null;
- $.datepicker._lastInput = input;
- $.datepicker._setDateFromField(inst);
-
- if ($.datepicker._inDialog) { // hide cursor
- input.value = "";
- }
- if (!$.datepicker._pos) { // position below input
- $.datepicker._pos = $.datepicker._findPos(input);
- $.datepicker._pos[1] += input.offsetHeight; // add the height
- }
-
- isFixed = false;
- $(input).parents().each(function() {
- isFixed |= $(this).css("position") === "fixed";
- return !isFixed;
- });
-
- offset = {left: $.datepicker._pos[0], top: $.datepicker._pos[1]};
- $.datepicker._pos = null;
- //to avoid flashes on Firefox
- inst.dpDiv.empty();
- // determine sizing offscreen
- inst.dpDiv.css({position: "absolute", display: "block", top: "-1000px"});
- $.datepicker._updateDatepicker(inst);
- // fix width for dynamic number of date pickers
- // and adjust position before showing
- offset = $.datepicker._checkOffset(inst, offset, isFixed);
- inst.dpDiv.css({position: ($.datepicker._inDialog && $.blockUI ?
- "static" : (isFixed ? "fixed" : "absolute")), display: "none",
- left: offset.left + "px", top: offset.top + "px"});
-
- if (!inst.inline) {
- showAnim = $.datepicker._get(inst, "showAnim");
- duration = $.datepicker._get(inst, "duration");
- inst.dpDiv.css( "z-index", datepicker_getZindex( $( input ) ) + 1 );
- $.datepicker._datepickerShowing = true;
-
- if ( $.effects && $.effects.effect[ showAnim ] ) {
- inst.dpDiv.show(showAnim, $.datepicker._get(inst, "showOptions"), duration);
- } else {
- inst.dpDiv[showAnim || "show"](showAnim ? duration : null);
- }
-
- if ( $.datepicker._shouldFocusInput( inst ) ) {
- inst.input.focus();
- }
-
- $.datepicker._curInst = inst;
- }
- },
-
- /* Generate the date picker content. */
- _updateDatepicker: function(inst) {
- this.maxRows = 4; //Reset the max number of rows being displayed (see #7043)
- datepicker_instActive = inst; // for delegate hover events
- inst.dpDiv.empty().append(this._generateHTML(inst));
- this._attachHandlers(inst);
-
- var origyearshtml,
- numMonths = this._getNumberOfMonths(inst),
- cols = numMonths[1],
- width = 17,
- activeCell = inst.dpDiv.find( "." + this._dayOverClass + " a" );
-
- if ( activeCell.length > 0 ) {
- datepicker_handleMouseover.apply( activeCell.get( 0 ) );
- }
-
- inst.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("");
- if (cols > 1) {
- inst.dpDiv.addClass("ui-datepicker-multi-" + cols).css("width", (width * cols) + "em");
- }
- inst.dpDiv[(numMonths[0] !== 1 || numMonths[1] !== 1 ? "add" : "remove") +
- "Class"]("ui-datepicker-multi");
- inst.dpDiv[(this._get(inst, "isRTL") ? "add" : "remove") +
- "Class"]("ui-datepicker-rtl");
-
- if (inst === $.datepicker._curInst && $.datepicker._datepickerShowing && $.datepicker._shouldFocusInput( inst ) ) {
- inst.input.focus();
- }
-
- // deffered render of the years select (to avoid flashes on Firefox)
- if( inst.yearshtml ){
- origyearshtml = inst.yearshtml;
- setTimeout(function(){
- //assure that inst.yearshtml didn't change.
- if( origyearshtml === inst.yearshtml && inst.yearshtml ){
- inst.dpDiv.find("select.ui-datepicker-year:first").replaceWith(inst.yearshtml);
- }
- origyearshtml = inst.yearshtml = null;
- }, 0);
- }
- },
-
- // #6694 - don't focus the input if it's already focused
- // this breaks the change event in IE
- // Support: IE and jQuery <1.9
- _shouldFocusInput: function( inst ) {
- return inst.input && inst.input.is( ":visible" ) && !inst.input.is( ":disabled" ) && !inst.input.is( ":focus" );
- },
-
- /* Check positioning to remain on screen. */
- _checkOffset: function(inst, offset, isFixed) {
- var dpWidth = inst.dpDiv.outerWidth(),
- dpHeight = inst.dpDiv.outerHeight(),
- inputWidth = inst.input ? inst.input.outerWidth() : 0,
- inputHeight = inst.input ? inst.input.outerHeight() : 0,
- viewWidth = document.documentElement.clientWidth + (isFixed ? 0 : $(document).scrollLeft()),
- viewHeight = document.documentElement.clientHeight + (isFixed ? 0 : $(document).scrollTop());
-
- offset.left -= (this._get(inst, "isRTL") ? (dpWidth - inputWidth) : 0);
- offset.left -= (isFixed && offset.left === inst.input.offset().left) ? $(document).scrollLeft() : 0;
- offset.top -= (isFixed && offset.top === (inst.input.offset().top + inputHeight)) ? $(document).scrollTop() : 0;
-
- // now check if datepicker is showing outside window viewport - move to a better place if so.
- offset.left -= Math.min(offset.left, (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ?
- Math.abs(offset.left + dpWidth - viewWidth) : 0);
- offset.top -= Math.min(offset.top, (offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ?
- Math.abs(dpHeight + inputHeight) : 0);
-
- return offset;
- },
-
- /* Find an object's position on the screen. */
- _findPos: function(obj) {
- var position,
- inst = this._getInst(obj),
- isRTL = this._get(inst, "isRTL");
-
- while (obj && (obj.type === "hidden" || obj.nodeType !== 1 || $.expr.filters.hidden(obj))) {
- obj = obj[isRTL ? "previousSibling" : "nextSibling"];
- }
-
- position = $(obj).offset();
- return [position.left, position.top];
- },
-
- /* Hide the date picker from view.
- * @param input element - the input field attached to the date picker
- */
- _hideDatepicker: function(input) {
- var showAnim, duration, postProcess, onClose,
- inst = this._curInst;
-
- if (!inst || (input && inst !== $.data(input, "datepicker"))) {
- return;
- }
-
- if (this._datepickerShowing) {
- showAnim = this._get(inst, "showAnim");
- duration = this._get(inst, "duration");
- postProcess = function() {
- $.datepicker._tidyDialog(inst);
- };
-
- // DEPRECATED: after BC for 1.8.x $.effects[ showAnim ] is not needed
- if ( $.effects && ( $.effects.effect[ showAnim ] || $.effects[ showAnim ] ) ) {
- inst.dpDiv.hide(showAnim, $.datepicker._get(inst, "showOptions"), duration, postProcess);
- } else {
- inst.dpDiv[(showAnim === "slideDown" ? "slideUp" :
- (showAnim === "fadeIn" ? "fadeOut" : "hide"))]((showAnim ? duration : null), postProcess);
- }
-
- if (!showAnim) {
- postProcess();
- }
- this._datepickerShowing = false;
-
- onClose = this._get(inst, "onClose");
- if (onClose) {
- onClose.apply((inst.input ? inst.input[0] : null), [(inst.input ? inst.input.val() : ""), inst]);
- }
-
- this._lastInput = null;
- if (this._inDialog) {
- this._dialogInput.css({ position: "absolute", left: "0", top: "-100px" });
- if ($.blockUI) {
- $.unblockUI();
- $("body").append(this.dpDiv);
- }
- }
- this._inDialog = false;
- }
- },
-
- /* Tidy up after a dialog display. */
- _tidyDialog: function(inst) {
- inst.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar");
- },
-
- /* Close date picker if clicked elsewhere. */
- _checkExternalClick: function(event) {
- if (!$.datepicker._curInst) {
- return;
- }
-
- var $target = $(event.target),
- inst = $.datepicker._getInst($target[0]);
-
- if ( ( ( $target[0].id !== $.datepicker._mainDivId &&
- $target.parents("#" + $.datepicker._mainDivId).length === 0 &&
- !$target.hasClass($.datepicker.markerClassName) &&
- !$target.closest("." + $.datepicker._triggerClass).length &&
- $.datepicker._datepickerShowing && !($.datepicker._inDialog && $.blockUI) ) ) ||
- ( $target.hasClass($.datepicker.markerClassName) && $.datepicker._curInst !== inst ) ) {
- $.datepicker._hideDatepicker();
- }
- },
-
- /* Adjust one of the date sub-fields. */
- _adjustDate: function(id, offset, period) {
- var target = $(id),
- inst = this._getInst(target[0]);
-
- if (this._isDisabledDatepicker(target[0])) {
- return;
- }
- this._adjustInstDate(inst, offset +
- (period === "M" ? this._get(inst, "showCurrentAtPos") : 0), // undo positioning
- period);
- this._updateDatepicker(inst);
- },
-
- /* Action for current link. */
- _gotoToday: function(id) {
- var date,
- target = $(id),
- inst = this._getInst(target[0]);
-
- if (this._get(inst, "gotoCurrent") && inst.currentDay) {
- inst.selectedDay = inst.currentDay;
- inst.drawMonth = inst.selectedMonth = inst.currentMonth;
- inst.drawYear = inst.selectedYear = inst.currentYear;
- } else {
- date = new Date();
- inst.selectedDay = date.getDate();
- inst.drawMonth = inst.selectedMonth = date.getMonth();
- inst.drawYear = inst.selectedYear = date.getFullYear();
- }
- this._notifyChange(inst);
- this._adjustDate(target);
- },
-
- /* Action for selecting a new month/year. */
- _selectMonthYear: function(id, select, period) {
- var target = $(id),
- inst = this._getInst(target[0]);
-
- inst["selected" + (period === "M" ? "Month" : "Year")] =
- inst["draw" + (period === "M" ? "Month" : "Year")] =
- parseInt(select.options[select.selectedIndex].value,10);
-
- this._notifyChange(inst);
- this._adjustDate(target);
- },
-
- /* Action for selecting a day. */
- _selectDay: function(id, month, year, td) {
- var inst,
- target = $(id);
-
- if ($(td).hasClass(this._unselectableClass) || this._isDisabledDatepicker(target[0])) {
- return;
- }
-
- inst = this._getInst(target[0]);
- inst.selectedDay = inst.currentDay = $("a", td).html();
- inst.selectedMonth = inst.currentMonth = month;
- inst.selectedYear = inst.currentYear = year;
- this._selectDate(id, this._formatDate(inst,
- inst.currentDay, inst.currentMonth, inst.currentYear));
- },
-
- /* Erase the input field and hide the date picker. */
- _clearDate: function(id) {
- var target = $(id);
- this._selectDate(target, "");
- },
-
- /* Update the input field with the selected date. */
- _selectDate: function(id, dateStr) {
- var onSelect,
- target = $(id),
- inst = this._getInst(target[0]);
-
- dateStr = (dateStr != null ? dateStr : this._formatDate(inst));
- if (inst.input) {
- inst.input.val(dateStr);
- }
- this._updateAlternate(inst);
-
- onSelect = this._get(inst, "onSelect");
- if (onSelect) {
- onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]); // trigger custom callback
- } else if (inst.input) {
- inst.input.trigger("change"); // fire the change event
- }
-
- if (inst.inline){
- this._updateDatepicker(inst);
- } else {
- this._hideDatepicker();
- this._lastInput = inst.input[0];
- if (typeof(inst.input[0]) !== "object") {
- inst.input.focus(); // restore focus
- }
- this._lastInput = null;
- }
- },
-
- /* Update any alternate field to synchronise with the main field. */
- _updateAlternate: function(inst) {
- var altFormat, date, dateStr,
- altField = this._get(inst, "altField");
-
- if (altField) { // update alternate field too
- altFormat = this._get(inst, "altFormat") || this._get(inst, "dateFormat");
- date = this._getDate(inst);
- dateStr = this.formatDate(altFormat, date, this._getFormatConfig(inst));
- $(altField).each(function() { $(this).val(dateStr); });
- }
- },
-
- /* Set as beforeShowDay function to prevent selection of weekends.
- * @param date Date - the date to customise
- * @return [boolean, string] - is this date selectable?, what is its CSS class?
- */
- noWeekends: function(date) {
- var day = date.getDay();
- return [(day > 0 && day < 6), ""];
- },
-
- /* Set as calculateWeek to determine the week of the year based on the ISO 8601 definition.
- * @param date Date - the date to get the week for
- * @return number - the number of the week within the year that contains this date
- */
- iso8601Week: function(date) {
- var time,
- checkDate = new Date(date.getTime());
-
- // Find Thursday of this week starting on Monday
- checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7));
-
- time = checkDate.getTime();
- checkDate.setMonth(0); // Compare with Jan 1
- checkDate.setDate(1);
- return Math.floor(Math.round((time - checkDate) / 86400000) / 7) + 1;
- },
-
- /* Parse a string value into a date object.
- * See formatDate below for the possible formats.
- *
- * @param format string - the expected format of the date
- * @param value string - the date in the above format
- * @param settings Object - attributes include:
- * shortYearCutoff number - the cutoff year for determining the century (optional)
- * dayNamesShort string[7] - abbreviated names of the days from Sunday (optional)
- * dayNames string[7] - names of the days from Sunday (optional)
- * monthNamesShort string[12] - abbreviated names of the months (optional)
- * monthNames string[12] - names of the months (optional)
- * @return Date - the extracted date value or null if value is blank
- */
- parseDate: function (format, value, settings) {
- if (format == null || value == null) {
- throw "Invalid arguments";
- }
-
- value = (typeof value === "object" ? value.toString() : value + "");
- if (value === "") {
- return null;
- }
-
- var iFormat, dim, extra,
- iValue = 0,
- shortYearCutoffTemp = (settings ? settings.shortYearCutoff : null) || this._defaults.shortYearCutoff,
- shortYearCutoff = (typeof shortYearCutoffTemp !== "string" ? shortYearCutoffTemp :
- new Date().getFullYear() % 100 + parseInt(shortYearCutoffTemp, 10)),
- dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort,
- dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames,
- monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort,
- monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames,
- year = -1,
- month = -1,
- day = -1,
- doy = -1,
- literal = false,
- date,
- // Check whether a format character is doubled
- lookAhead = function(match) {
- var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match);
- if (matches) {
- iFormat++;
- }
- return matches;
- },
- // Extract a number from the string value
- getNumber = function(match) {
- var isDoubled = lookAhead(match),
- size = (match === "@" ? 14 : (match === "!" ? 20 :
- (match === "y" && isDoubled ? 4 : (match === "o" ? 3 : 2)))),
- minSize = (match === "y" ? size : 1),
- digits = new RegExp("^\\d{" + minSize + "," + size + "}"),
- num = value.substring(iValue).match(digits);
- if (!num) {
- throw "Missing number at position " + iValue;
- }
- iValue += num[0].length;
- return parseInt(num[0], 10);
- },
- // Extract a name from the string value and convert to an index
- getName = function(match, shortNames, longNames) {
- var index = -1,
- names = $.map(lookAhead(match) ? longNames : shortNames, function (v, k) {
- return [ [k, v] ];
- }).sort(function (a, b) {
- return -(a[1].length - b[1].length);
- });
-
- $.each(names, function (i, pair) {
- var name = pair[1];
- if (value.substr(iValue, name.length).toLowerCase() === name.toLowerCase()) {
- index = pair[0];
- iValue += name.length;
- return false;
- }
- });
- if (index !== -1) {
- return index + 1;
- } else {
- throw "Unknown name at position " + iValue;
- }
- },
- // Confirm that a literal character matches the string value
- checkLiteral = function() {
- if (value.charAt(iValue) !== format.charAt(iFormat)) {
- throw "Unexpected literal at position " + iValue;
- }
- iValue++;
- };
-
- for (iFormat = 0; iFormat < format.length; iFormat++) {
- if (literal) {
- if (format.charAt(iFormat) === "'" && !lookAhead("'")) {
- literal = false;
- } else {
- checkLiteral();
- }
- } else {
- switch (format.charAt(iFormat)) {
- case "d":
- day = getNumber("d");
- break;
- case "D":
- getName("D", dayNamesShort, dayNames);
- break;
- case "o":
- doy = getNumber("o");
- break;
- case "m":
- month = getNumber("m");
- break;
- case "M":
- month = getName("M", monthNamesShort, monthNames);
- break;
- case "y":
- year = getNumber("y");
- break;
- case "@":
- date = new Date(getNumber("@"));
- year = date.getFullYear();
- month = date.getMonth() + 1;
- day = date.getDate();
- break;
- case "!":
- date = new Date((getNumber("!") - this._ticksTo1970) / 10000);
- year = date.getFullYear();
- month = date.getMonth() + 1;
- day = date.getDate();
- break;
- case "'":
- if (lookAhead("'")){
- checkLiteral();
- } else {
- literal = true;
- }
- break;
- default:
- checkLiteral();
- }
- }
- }
-
- if (iValue < value.length){
- extra = value.substr(iValue);
- if (!/^\s+/.test(extra)) {
- throw "Extra/unparsed characters found in date: " + extra;
- }
- }
-
- if (year === -1) {
- year = new Date().getFullYear();
- } else if (year < 100) {
- year += new Date().getFullYear() - new Date().getFullYear() % 100 +
- (year <= shortYearCutoff ? 0 : -100);
- }
-
- if (doy > -1) {
- month = 1;
- day = doy;
- do {
- dim = this._getDaysInMonth(year, month - 1);
- if (day <= dim) {
- break;
- }
- month++;
- day -= dim;
- } while (true);
- }
-
- date = this._daylightSavingAdjust(new Date(year, month - 1, day));
- if (date.getFullYear() !== year || date.getMonth() + 1 !== month || date.getDate() !== day) {
- throw "Invalid date"; // E.g. 31/02/00
- }
- return date;
- },
-
- /* Standard date formats. */
- ATOM: "yy-mm-dd", // RFC 3339 (ISO 8601)
- COOKIE: "D, dd M yy",
- ISO_8601: "yy-mm-dd",
- RFC_822: "D, d M y",
- RFC_850: "DD, dd-M-y",
- RFC_1036: "D, d M y",
- RFC_1123: "D, d M yy",
- RFC_2822: "D, d M yy",
- RSS: "D, d M y", // RFC 822
- TICKS: "!",
- TIMESTAMP: "@",
- W3C: "yy-mm-dd", // ISO 8601
-
- _ticksTo1970: (((1970 - 1) * 365 + Math.floor(1970 / 4) - Math.floor(1970 / 100) +
- Math.floor(1970 / 400)) * 24 * 60 * 60 * 10000000),
-
- /* Format a date object into a string value.
- * The format can be combinations of the following:
- * d - day of month (no leading zero)
- * dd - day of month (two digit)
- * o - day of year (no leading zeros)
- * oo - day of year (three digit)
- * D - day name short
- * DD - day name long
- * m - month of year (no leading zero)
- * mm - month of year (two digit)
- * M - month name short
- * MM - month name long
- * y - year (two digit)
- * yy - year (four digit)
- * @ - Unix timestamp (ms since 01/01/1970)
- * ! - Windows ticks (100ns since 01/01/0001)
- * "..." - literal text
- * '' - single quote
- *
- * @param format string - the desired format of the date
- * @param date Date - the date value to format
- * @param settings Object - attributes include:
- * dayNamesShort string[7] - abbreviated names of the days from Sunday (optional)
- * dayNames string[7] - names of the days from Sunday (optional)
- * monthNamesShort string[12] - abbreviated names of the months (optional)
- * monthNames string[12] - names of the months (optional)
- * @return string - the date in the above format
- */
- formatDate: function (format, date, settings) {
- if (!date) {
- return "";
- }
-
- var iFormat,
- dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort,
- dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames,
- monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort,
- monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames,
- // Check whether a format character is doubled
- lookAhead = function(match) {
- var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match);
- if (matches) {
- iFormat++;
- }
- return matches;
- },
- // Format a number, with leading zero if necessary
- formatNumber = function(match, value, len) {
- var num = "" + value;
- if (lookAhead(match)) {
- while (num.length < len) {
- num = "0" + num;
- }
- }
- return num;
- },
- // Format a name, short or long as requested
- formatName = function(match, value, shortNames, longNames) {
- return (lookAhead(match) ? longNames[value] : shortNames[value]);
- },
- output = "",
- literal = false;
-
- if (date) {
- for (iFormat = 0; iFormat < format.length; iFormat++) {
- if (literal) {
- if (format.charAt(iFormat) === "'" && !lookAhead("'")) {
- literal = false;
- } else {
- output += format.charAt(iFormat);
- }
- } else {
- switch (format.charAt(iFormat)) {
- case "d":
- output += formatNumber("d", date.getDate(), 2);
- break;
- case "D":
- output += formatName("D", date.getDay(), dayNamesShort, dayNames);
- break;
- case "o":
- output += formatNumber("o",
- Math.round((new Date(date.getFullYear(), date.getMonth(), date.getDate()).getTime() - new Date(date.getFullYear(), 0, 0).getTime()) / 86400000), 3);
- break;
- case "m":
- output += formatNumber("m", date.getMonth() + 1, 2);
- break;
- case "M":
- output += formatName("M", date.getMonth(), monthNamesShort, monthNames);
- break;
- case "y":
- output += (lookAhead("y") ? date.getFullYear() :
- (date.getYear() % 100 < 10 ? "0" : "") + date.getYear() % 100);
- break;
- case "@":
- output += date.getTime();
- break;
- case "!":
- output += date.getTime() * 10000 + this._ticksTo1970;
- break;
- case "'":
- if (lookAhead("'")) {
- output += "'";
- } else {
- literal = true;
- }
- break;
- default:
- output += format.charAt(iFormat);
- }
- }
- }
- }
- return output;
- },
-
- /* Extract all possible characters from the date format. */
- _possibleChars: function (format) {
- var iFormat,
- chars = "",
- literal = false,
- // Check whether a format character is doubled
- lookAhead = function(match) {
- var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match);
- if (matches) {
- iFormat++;
- }
- return matches;
- };
-
- for (iFormat = 0; iFormat < format.length; iFormat++) {
- if (literal) {
- if (format.charAt(iFormat) === "'" && !lookAhead("'")) {
- literal = false;
- } else {
- chars += format.charAt(iFormat);
- }
- } else {
- switch (format.charAt(iFormat)) {
- case "d": case "m": case "y": case "@":
- chars += "0123456789";
- break;
- case "D": case "M":
- return null; // Accept anything
- case "'":
- if (lookAhead("'")) {
- chars += "'";
- } else {
- literal = true;
- }
- break;
- default:
- chars += format.charAt(iFormat);
- }
- }
- }
- return chars;
- },
-
- /* Get a setting value, defaulting if necessary. */
- _get: function(inst, name) {
- return inst.settings[name] !== undefined ?
- inst.settings[name] : this._defaults[name];
- },
-
- /* Parse existing date and initialise date picker. */
- _setDateFromField: function(inst, noDefault) {
- if (inst.input.val() === inst.lastVal) {
- return;
- }
-
- var dateFormat = this._get(inst, "dateFormat"),
- dates = inst.lastVal = inst.input ? inst.input.val() : null,
- defaultDate = this._getDefaultDate(inst),
- date = defaultDate,
- settings = this._getFormatConfig(inst);
-
- try {
- date = this.parseDate(dateFormat, dates, settings) || defaultDate;
- } catch (event) {
- dates = (noDefault ? "" : dates);
- }
- inst.selectedDay = date.getDate();
- inst.drawMonth = inst.selectedMonth = date.getMonth();
- inst.drawYear = inst.selectedYear = date.getFullYear();
- inst.currentDay = (dates ? date.getDate() : 0);
- inst.currentMonth = (dates ? date.getMonth() : 0);
- inst.currentYear = (dates ? date.getFullYear() : 0);
- this._adjustInstDate(inst);
- },
-
- /* Retrieve the default date shown on opening. */
- _getDefaultDate: function(inst) {
- return this._restrictMinMax(inst,
- this._determineDate(inst, this._get(inst, "defaultDate"), new Date()));
- },
-
- /* A date may be specified as an exact value or a relative one. */
- _determineDate: function(inst, date, defaultDate) {
- var offsetNumeric = function(offset) {
- var date = new Date();
- date.setDate(date.getDate() + offset);
- return date;
- },
- offsetString = function(offset) {
- try {
- return $.datepicker.parseDate($.datepicker._get(inst, "dateFormat"),
- offset, $.datepicker._getFormatConfig(inst));
- }
- catch (e) {
- // Ignore
- }
-
- var date = (offset.toLowerCase().match(/^c/) ?
- $.datepicker._getDate(inst) : null) || new Date(),
- year = date.getFullYear(),
- month = date.getMonth(),
- day = date.getDate(),
- pattern = /([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,
- matches = pattern.exec(offset);
-
- while (matches) {
- switch (matches[2] || "d") {
- case "d" : case "D" :
- day += parseInt(matches[1],10); break;
- case "w" : case "W" :
- day += parseInt(matches[1],10) * 7; break;
- case "m" : case "M" :
- month += parseInt(matches[1],10);
- day = Math.min(day, $.datepicker._getDaysInMonth(year, month));
- break;
- case "y": case "Y" :
- year += parseInt(matches[1],10);
- day = Math.min(day, $.datepicker._getDaysInMonth(year, month));
- break;
- }
- matches = pattern.exec(offset);
- }
- return new Date(year, month, day);
- },
- newDate = (date == null || date === "" ? defaultDate : (typeof date === "string" ? offsetString(date) :
- (typeof date === "number" ? (isNaN(date) ? defaultDate : offsetNumeric(date)) : new Date(date.getTime()))));
-
- newDate = (newDate && newDate.toString() === "Invalid Date" ? defaultDate : newDate);
- if (newDate) {
- newDate.setHours(0);
- newDate.setMinutes(0);
- newDate.setSeconds(0);
- newDate.setMilliseconds(0);
- }
- return this._daylightSavingAdjust(newDate);
- },
-
- /* Handle switch to/from daylight saving.
- * Hours may be non-zero on daylight saving cut-over:
- * > 12 when midnight changeover, but then cannot generate
- * midnight datetime, so jump to 1AM, otherwise reset.
- * @param date (Date) the date to check
- * @return (Date) the corrected date
- */
- _daylightSavingAdjust: function(date) {
- if (!date) {
- return null;
- }
- date.setHours(date.getHours() > 12 ? date.getHours() + 2 : 0);
- return date;
- },
-
- /* Set the date(s) directly. */
- _setDate: function(inst, date, noChange) {
- var clear = !date,
- origMonth = inst.selectedMonth,
- origYear = inst.selectedYear,
- newDate = this._restrictMinMax(inst, this._determineDate(inst, date, new Date()));
-
- inst.selectedDay = inst.currentDay = newDate.getDate();
- inst.drawMonth = inst.selectedMonth = inst.currentMonth = newDate.getMonth();
- inst.drawYear = inst.selectedYear = inst.currentYear = newDate.getFullYear();
- if ((origMonth !== inst.selectedMonth || origYear !== inst.selectedYear) && !noChange) {
- this._notifyChange(inst);
- }
- this._adjustInstDate(inst);
- if (inst.input) {
- inst.input.val(clear ? "" : this._formatDate(inst));
- }
- },
-
- /* Retrieve the date(s) directly. */
- _getDate: function(inst) {
- var startDate = (!inst.currentYear || (inst.input && inst.input.val() === "") ? null :
- this._daylightSavingAdjust(new Date(
- inst.currentYear, inst.currentMonth, inst.currentDay)));
- return startDate;
- },
-
- /* Attach the onxxx handlers. These are declared statically so
- * they work with static code transformers like Caja.
- */
- _attachHandlers: function(inst) {
- var stepMonths = this._get(inst, "stepMonths"),
- id = "#" + inst.id.replace( /\\\\/g, "\\" );
- inst.dpDiv.find("[data-handler]").map(function () {
- var handler = {
- prev: function () {
- $.datepicker._adjustDate(id, -stepMonths, "M");
- },
- next: function () {
- $.datepicker._adjustDate(id, +stepMonths, "M");
- },
- hide: function () {
- $.datepicker._hideDatepicker();
- },
- today: function () {
- $.datepicker._gotoToday(id);
- },
- selectDay: function () {
- $.datepicker._selectDay(id, +this.getAttribute("data-month"), +this.getAttribute("data-year"), this);
- return false;
- },
- selectMonth: function () {
- $.datepicker._selectMonthYear(id, this, "M");
- return false;
- },
- selectYear: function () {
- $.datepicker._selectMonthYear(id, this, "Y");
- return false;
- }
- };
- $(this).bind(this.getAttribute("data-event"), handler[this.getAttribute("data-handler")]);
- });
- },
-
- /* Generate the HTML for the current state of the date picker. */
- _generateHTML: function(inst) {
- var maxDraw, prevText, prev, nextText, next, currentText, gotoDate,
- controls, buttonPanel, firstDay, showWeek, dayNames, dayNamesMin,
- monthNames, monthNamesShort, beforeShowDay, showOtherMonths,
- selectOtherMonths, defaultDate, html, dow, row, group, col, selectedDate,
- cornerClass, calender, thead, day, daysInMonth, leadDays, curRows, numRows,
- printDate, dRow, tbody, daySettings, otherMonth, unselectable,
- tempDate = new Date(),
- today = this._daylightSavingAdjust(
- new Date(tempDate.getFullYear(), tempDate.getMonth(), tempDate.getDate())), // clear time
- isRTL = this._get(inst, "isRTL"),
- showButtonPanel = this._get(inst, "showButtonPanel"),
- hideIfNoPrevNext = this._get(inst, "hideIfNoPrevNext"),
- navigationAsDateFormat = this._get(inst, "navigationAsDateFormat"),
- numMonths = this._getNumberOfMonths(inst),
- showCurrentAtPos = this._get(inst, "showCurrentAtPos"),
- stepMonths = this._get(inst, "stepMonths"),
- isMultiMonth = (numMonths[0] !== 1 || numMonths[1] !== 1),
- currentDate = this._daylightSavingAdjust((!inst.currentDay ? new Date(9999, 9, 9) :
- new Date(inst.currentYear, inst.currentMonth, inst.currentDay))),
- minDate = this._getMinMaxDate(inst, "min"),
- maxDate = this._getMinMaxDate(inst, "max"),
- drawMonth = inst.drawMonth - showCurrentAtPos,
- drawYear = inst.drawYear;
-
- if (drawMonth < 0) {
- drawMonth += 12;
- drawYear--;
- }
- if (maxDate) {
- maxDraw = this._daylightSavingAdjust(new Date(maxDate.getFullYear(),
- maxDate.getMonth() - (numMonths[0] * numMonths[1]) + 1, maxDate.getDate()));
- maxDraw = (minDate && maxDraw < minDate ? minDate : maxDraw);
- while (this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1)) > maxDraw) {
- drawMonth--;
- if (drawMonth < 0) {
- drawMonth = 11;
- drawYear--;
- }
- }
- }
- inst.drawMonth = drawMonth;
- inst.drawYear = drawYear;
-
- prevText = this._get(inst, "prevText");
- prevText = (!navigationAsDateFormat ? prevText : this.formatDate(prevText,
- this._daylightSavingAdjust(new Date(drawYear, drawMonth - stepMonths, 1)),
- this._getFormatConfig(inst)));
-
- prev = (this._canAdjustMonth(inst, -1, drawYear, drawMonth) ?
- "<a class='ui-datepicker-prev ui-corner-all' data-handler='prev' data-event='click'" +
- " title='" + prevText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "e" : "w") + "'>" + prevText + "</span></a>" :
- (hideIfNoPrevNext ? "" : "<a class='ui-datepicker-prev ui-corner-all ui-state-disabled' title='"+ prevText +"'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "e" : "w") + "'>" + prevText + "</span></a>"));
-
- nextText = this._get(inst, "nextText");
- nextText = (!navigationAsDateFormat ? nextText : this.formatDate(nextText,
- this._daylightSavingAdjust(new Date(drawYear, drawMonth + stepMonths, 1)),
- this._getFormatConfig(inst)));
-
- next = (this._canAdjustMonth(inst, +1, drawYear, drawMonth) ?
- "<a class='ui-datepicker-next ui-corner-all' data-handler='next' data-event='click'" +
- " title='" + nextText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "w" : "e") + "'>" + nextText + "</span></a>" :
- (hideIfNoPrevNext ? "" : "<a class='ui-datepicker-next ui-corner-all ui-state-disabled' title='"+ nextText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "w" : "e") + "'>" + nextText + "</span></a>"));
-
- currentText = this._get(inst, "currentText");
- gotoDate = (this._get(inst, "gotoCurrent") && inst.currentDay ? currentDate : today);
- currentText = (!navigationAsDateFormat ? currentText :
- this.formatDate(currentText, gotoDate, this._getFormatConfig(inst)));
-
- controls = (!inst.inline ? "<button type='button' class='ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all' data-handler='hide' data-event='click'>" +
- this._get(inst, "closeText") + "</button>" : "");
-
- buttonPanel = (showButtonPanel) ? "<div class='ui-datepicker-buttonpane ui-widget-content'>" + (isRTL ? controls : "") +
- (this._isInRange(inst, gotoDate) ? "<button type='button' class='ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all' data-handler='today' data-event='click'" +
- ">" + currentText + "</button>" : "") + (isRTL ? "" : controls) + "</div>" : "";
-
- firstDay = parseInt(this._get(inst, "firstDay"),10);
- firstDay = (isNaN(firstDay) ? 0 : firstDay);
-
- showWeek = this._get(inst, "showWeek");
- dayNames = this._get(inst, "dayNames");
- dayNamesMin = this._get(inst, "dayNamesMin");
- monthNames = this._get(inst, "monthNames");
- monthNamesShort = this._get(inst, "monthNamesShort");
- beforeShowDay = this._get(inst, "beforeShowDay");
- showOtherMonths = this._get(inst, "showOtherMonths");
- selectOtherMonths = this._get(inst, "selectOtherMonths");
- defaultDate = this._getDefaultDate(inst);
- html = "";
- dow;
- for (row = 0; row < numMonths[0]; row++) {
- group = "";
- this.maxRows = 4;
- for (col = 0; col < numMonths[1]; col++) {
- selectedDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, inst.selectedDay));
- cornerClass = " ui-corner-all";
- calender = "";
- if (isMultiMonth) {
- calender += "<div class='ui-datepicker-group";
- if (numMonths[1] > 1) {
- switch (col) {
- case 0: calender += " ui-datepicker-group-first";
- cornerClass = " ui-corner-" + (isRTL ? "right" : "left"); break;
- case numMonths[1]-1: calender += " ui-datepicker-group-last";
- cornerClass = " ui-corner-" + (isRTL ? "left" : "right"); break;
- default: calender += " ui-datepicker-group-middle"; cornerClass = ""; break;
- }
- }
- calender += "'>";
- }
- calender += "<div class='ui-datepicker-header ui-widget-header ui-helper-clearfix" + cornerClass + "'>" +
- (/all|left/.test(cornerClass) && row === 0 ? (isRTL ? next : prev) : "") +
- (/all|right/.test(cornerClass) && row === 0 ? (isRTL ? prev : next) : "") +
- this._generateMonthYearHeader(inst, drawMonth, drawYear, minDate, maxDate,
- row > 0 || col > 0, monthNames, monthNamesShort) + // draw month headers
- "</div><table class='ui-datepicker-calendar'><thead>" +
- "<tr>";
- thead = (showWeek ? "<th class='ui-datepicker-week-col'>" + this._get(inst, "weekHeader") + "</th>" : "");
- for (dow = 0; dow < 7; dow++) { // days of the week
- day = (dow + firstDay) % 7;
- thead += "<th scope='col'" + ((dow + firstDay + 6) % 7 >= 5 ? " class='ui-datepicker-week-end'" : "") + ">" +
- "<span title='" + dayNames[day] + "'>" + dayNamesMin[day] + "</span></th>";
- }
- calender += thead + "</tr></thead><tbody>";
- daysInMonth = this._getDaysInMonth(drawYear, drawMonth);
- if (drawYear === inst.selectedYear && drawMonth === inst.selectedMonth) {
- inst.selectedDay = Math.min(inst.selectedDay, daysInMonth);
- }
- leadDays = (this._getFirstDayOfMonth(drawYear, drawMonth) - firstDay + 7) % 7;
- curRows = Math.ceil((leadDays + daysInMonth) / 7); // calculate the number of rows to generate
- numRows = (isMultiMonth ? this.maxRows > curRows ? this.maxRows : curRows : curRows); //If multiple months, use the higher number of rows (see #7043)
- this.maxRows = numRows;
- printDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1 - leadDays));
- for (dRow = 0; dRow < numRows; dRow++) { // create date picker rows
- calender += "<tr>";
- tbody = (!showWeek ? "" : "<td class='ui-datepicker-week-col'>" +
- this._get(inst, "calculateWeek")(printDate) + "</td>");
- for (dow = 0; dow < 7; dow++) { // create date picker days
- daySettings = (beforeShowDay ?
- beforeShowDay.apply((inst.input ? inst.input[0] : null), [printDate]) : [true, ""]);
- otherMonth = (printDate.getMonth() !== drawMonth);
- unselectable = (otherMonth && !selectOtherMonths) || !daySettings[0] ||
- (minDate && printDate < minDate) || (maxDate && printDate > maxDate);
- tbody += "<td class='" +
- ((dow + firstDay + 6) % 7 >= 5 ? " ui-datepicker-week-end" : "") + // highlight weekends
- (otherMonth ? " ui-datepicker-other-month" : "") + // highlight days from other months
- ((printDate.getTime() === selectedDate.getTime() && drawMonth === inst.selectedMonth && inst._keyEvent) || // user pressed key
- (defaultDate.getTime() === printDate.getTime() && defaultDate.getTime() === selectedDate.getTime()) ?
- // or defaultDate is current printedDate and defaultDate is selectedDate
- " " + this._dayOverClass : "") + // highlight selected day
- (unselectable ? " " + this._unselectableClass + " ui-state-disabled": "") + // highlight unselectable days
- (otherMonth && !showOtherMonths ? "" : " " + daySettings[1] + // highlight custom dates
- (printDate.getTime() === currentDate.getTime() ? " " + this._currentClass : "") + // highlight selected day
- (printDate.getTime() === today.getTime() ? " ui-datepicker-today" : "")) + "'" + // highlight today (if different)
- ((!otherMonth || showOtherMonths) && daySettings[2] ? " title='" + daySettings[2].replace(/'/g, "'") + "'" : "") + // cell title
- (unselectable ? "" : " data-handler='selectDay' data-event='click' data-month='" + printDate.getMonth() + "' data-year='" + printDate.getFullYear() + "'") + ">" + // actions
- (otherMonth && !showOtherMonths ? " " : // display for other months
- (unselectable ? "<span class='ui-state-default'>" + printDate.getDate() + "</span>" : "<a class='ui-state-default" +
- (printDate.getTime() === today.getTime() ? " ui-state-highlight" : "") +
- (printDate.getTime() === currentDate.getTime() ? " ui-state-active" : "") + // highlight selected day
- (otherMonth ? " ui-priority-secondary" : "") + // distinguish dates from other months
- "' href='#'>" + printDate.getDate() + "</a>")) + "</td>"; // display selectable date
- printDate.setDate(printDate.getDate() + 1);
- printDate = this._daylightSavingAdjust(printDate);
- }
- calender += tbody + "</tr>";
- }
- drawMonth++;
- if (drawMonth > 11) {
- drawMonth = 0;
- drawYear++;
- }
- calender += "</tbody></table>" + (isMultiMonth ? "</div>" +
- ((numMonths[0] > 0 && col === numMonths[1]-1) ? "<div class='ui-datepicker-row-break'></div>" : "") : "");
- group += calender;
- }
- html += group;
- }
- html += buttonPanel;
- inst._keyEvent = false;
- return html;
- },
-
- /* Generate the month and year header. */
- _generateMonthYearHeader: function(inst, drawMonth, drawYear, minDate, maxDate,
- secondary, monthNames, monthNamesShort) {
-
- var inMinYear, inMaxYear, month, years, thisYear, determineYear, year, endYear,
- changeMonth = this._get(inst, "changeMonth"),
- changeYear = this._get(inst, "changeYear"),
- showMonthAfterYear = this._get(inst, "showMonthAfterYear"),
- html = "<div class='ui-datepicker-title'>",
- monthHtml = "";
-
- // month selection
- if (secondary || !changeMonth) {
- monthHtml += "<span class='ui-datepicker-month'>" + monthNames[drawMonth] + "</span>";
- } else {
- inMinYear = (minDate && minDate.getFullYear() === drawYear);
- inMaxYear = (maxDate && maxDate.getFullYear() === drawYear);
- monthHtml += "<select class='ui-datepicker-month' data-handler='selectMonth' data-event='change'>";
- for ( month = 0; month < 12; month++) {
- if ((!inMinYear || month >= minDate.getMonth()) && (!inMaxYear || month <= maxDate.getMonth())) {
- monthHtml += "<option value='" + month + "'" +
- (month === drawMonth ? " selected='selected'" : "") +
- ">" + monthNamesShort[month] + "</option>";
- }
- }
- monthHtml += "</select>";
- }
-
- if (!showMonthAfterYear) {
- html += monthHtml + (secondary || !(changeMonth && changeYear) ? " " : "");
- }
-
- // year selection
- if ( !inst.yearshtml ) {
- inst.yearshtml = "";
- if (secondary || !changeYear) {
- html += "<span class='ui-datepicker-year'>" + drawYear + "</span>";
- } else {
- // determine range of years to display
- years = this._get(inst, "yearRange").split(":");
- thisYear = new Date().getFullYear();
- determineYear = function(value) {
- var year = (value.match(/c[+\-].*/) ? drawYear + parseInt(value.substring(1), 10) :
- (value.match(/[+\-].*/) ? thisYear + parseInt(value, 10) :
- parseInt(value, 10)));
- return (isNaN(year) ? thisYear : year);
- };
- year = determineYear(years[0]);
- endYear = Math.max(year, determineYear(years[1] || ""));
- year = (minDate ? Math.max(year, minDate.getFullYear()) : year);
- endYear = (maxDate ? Math.min(endYear, maxDate.getFullYear()) : endYear);
- inst.yearshtml += "<select class='ui-datepicker-year' data-handler='selectYear' data-event='change'>";
- for (; year <= endYear; year++) {
- inst.yearshtml += "<option value='" + year + "'" +
- (year === drawYear ? " selected='selected'" : "") +
- ">" + year + "</option>";
- }
- inst.yearshtml += "</select>";
-
- html += inst.yearshtml;
- inst.yearshtml = null;
- }
- }
-
- html += this._get(inst, "yearSuffix");
- if (showMonthAfterYear) {
- html += (secondary || !(changeMonth && changeYear) ? " " : "") + monthHtml;
- }
- html += "</div>"; // Close datepicker_header
- return html;
- },
-
- /* Adjust one of the date sub-fields. */
- _adjustInstDate: function(inst, offset, period) {
- var year = inst.drawYear + (period === "Y" ? offset : 0),
- month = inst.drawMonth + (period === "M" ? offset : 0),
- day = Math.min(inst.selectedDay, this._getDaysInMonth(year, month)) + (period === "D" ? offset : 0),
- date = this._restrictMinMax(inst, this._daylightSavingAdjust(new Date(year, month, day)));
-
- inst.selectedDay = date.getDate();
- inst.drawMonth = inst.selectedMonth = date.getMonth();
- inst.drawYear = inst.selectedYear = date.getFullYear();
- if (period === "M" || period === "Y") {
- this._notifyChange(inst);
- }
- },
-
- /* Ensure a date is within any min/max bounds. */
- _restrictMinMax: function(inst, date) {
- var minDate = this._getMinMaxDate(inst, "min"),
- maxDate = this._getMinMaxDate(inst, "max"),
- newDate = (minDate && date < minDate ? minDate : date);
- return (maxDate && newDate > maxDate ? maxDate : newDate);
- },
-
- /* Notify change of month/year. */
- _notifyChange: function(inst) {
- var onChange = this._get(inst, "onChangeMonthYear");
- if (onChange) {
- onChange.apply((inst.input ? inst.input[0] : null),
- [inst.selectedYear, inst.selectedMonth + 1, inst]);
- }
- },
-
- /* Determine the number of months to show. */
- _getNumberOfMonths: function(inst) {
- var numMonths = this._get(inst, "numberOfMonths");
- return (numMonths == null ? [1, 1] : (typeof numMonths === "number" ? [1, numMonths] : numMonths));
- },
-
- /* Determine the current maximum date - ensure no time components are set. */
- _getMinMaxDate: function(inst, minMax) {
- return this._determineDate(inst, this._get(inst, minMax + "Date"), null);
- },
-
- /* Find the number of days in a given month. */
- _getDaysInMonth: function(year, month) {
- return 32 - this._daylightSavingAdjust(new Date(year, month, 32)).getDate();
- },
-
- /* Find the day of the week of the first of a month. */
- _getFirstDayOfMonth: function(year, month) {
- return new Date(year, month, 1).getDay();
- },
-
- /* Determines if we should allow a "next/prev" month display change. */
- _canAdjustMonth: function(inst, offset, curYear, curMonth) {
- var numMonths = this._getNumberOfMonths(inst),
- date = this._daylightSavingAdjust(new Date(curYear,
- curMonth + (offset < 0 ? offset : numMonths[0] * numMonths[1]), 1));
-
- if (offset < 0) {
- date.setDate(this._getDaysInMonth(date.getFullYear(), date.getMonth()));
- }
- return this._isInRange(inst, date);
- },
-
- /* Is the given date in the accepted range? */
- _isInRange: function(inst, date) {
- var yearSplit, currentYear,
- minDate = this._getMinMaxDate(inst, "min"),
- maxDate = this._getMinMaxDate(inst, "max"),
- minYear = null,
- maxYear = null,
- years = this._get(inst, "yearRange");
- if (years){
- yearSplit = years.split(":");
- currentYear = new Date().getFullYear();
- minYear = parseInt(yearSplit[0], 10);
- maxYear = parseInt(yearSplit[1], 10);
- if ( yearSplit[0].match(/[+\-].*/) ) {
- minYear += currentYear;
- }
- if ( yearSplit[1].match(/[+\-].*/) ) {
- maxYear += currentYear;
- }
- }
-
- return ((!minDate || date.getTime() >= minDate.getTime()) &&
- (!maxDate || date.getTime() <= maxDate.getTime()) &&
- (!minYear || date.getFullYear() >= minYear) &&
- (!maxYear || date.getFullYear() <= maxYear));
- },
-
- /* Provide the configuration settings for formatting/parsing. */
- _getFormatConfig: function(inst) {
- var shortYearCutoff = this._get(inst, "shortYearCutoff");
- shortYearCutoff = (typeof shortYearCutoff !== "string" ? shortYearCutoff :
- new Date().getFullYear() % 100 + parseInt(shortYearCutoff, 10));
- return {shortYearCutoff: shortYearCutoff,
- dayNamesShort: this._get(inst, "dayNamesShort"), dayNames: this._get(inst, "dayNames"),
- monthNamesShort: this._get(inst, "monthNamesShort"), monthNames: this._get(inst, "monthNames")};
- },
-
- /* Format the given date for display. */
- _formatDate: function(inst, day, month, year) {
- if (!day) {
- inst.currentDay = inst.selectedDay;
- inst.currentMonth = inst.selectedMonth;
- inst.currentYear = inst.selectedYear;
- }
- var date = (day ? (typeof day === "object" ? day :
- this._daylightSavingAdjust(new Date(year, month, day))) :
- this._daylightSavingAdjust(new Date(inst.currentYear, inst.currentMonth, inst.currentDay)));
- return this.formatDate(this._get(inst, "dateFormat"), date, this._getFormatConfig(inst));
- }
-});
-
-/*
- * Bind hover events for datepicker elements.
- * Done via delegate so the binding only occurs once in the lifetime of the parent div.
- * Global datepicker_instActive, set by _updateDatepicker allows the handlers to find their way back to the active picker.
- */
-function datepicker_bindHover(dpDiv) {
- var selector = "button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";
- return dpDiv.delegate(selector, "mouseout", function() {
- $(this).removeClass("ui-state-hover");
- if (this.className.indexOf("ui-datepicker-prev") !== -1) {
- $(this).removeClass("ui-datepicker-prev-hover");
- }
- if (this.className.indexOf("ui-datepicker-next") !== -1) {
- $(this).removeClass("ui-datepicker-next-hover");
- }
- })
- .delegate( selector, "mouseover", datepicker_handleMouseover );
-}
-
-function datepicker_handleMouseover() {
- if (!$.datepicker._isDisabledDatepicker( datepicker_instActive.inline? datepicker_instActive.dpDiv.parent()[0] : datepicker_instActive.input[0])) {
- $(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");
- $(this).addClass("ui-state-hover");
- if (this.className.indexOf("ui-datepicker-prev") !== -1) {
- $(this).addClass("ui-datepicker-prev-hover");
- }
- if (this.className.indexOf("ui-datepicker-next") !== -1) {
- $(this).addClass("ui-datepicker-next-hover");
- }
- }
-}
-
-/* jQuery extend now ignores nulls! */
-function datepicker_extendRemove(target, props) {
- $.extend(target, props);
- for (var name in props) {
- if (props[name] == null) {
- target[name] = props[name];
- }
- }
- return target;
-}
-
-/* Invoke the datepicker functionality.
- @param options string - a command, optionally followed by additional parameters or
- Object - settings for attaching new datepicker functionality
- @return jQuery object */
-$.fn.datepicker = function(options){
-
- /* Verify an empty collection wasn't passed - Fixes #6976 */
- if ( !this.length ) {
- return this;
- }
-
- /* Initialise the date picker. */
- if (!$.datepicker.initialized) {
- $(document).mousedown($.datepicker._checkExternalClick);
- $.datepicker.initialized = true;
- }
-
- /* Append datepicker main container to body if not exist. */
- if ($("#"+$.datepicker._mainDivId).length === 0) {
- $("body").append($.datepicker.dpDiv);
- }
-
- var otherArgs = Array.prototype.slice.call(arguments, 1);
- if (typeof options === "string" && (options === "isDisabled" || options === "getDate" || options === "widget")) {
- return $.datepicker["_" + options + "Datepicker"].
- apply($.datepicker, [this[0]].concat(otherArgs));
- }
- if (options === "option" && arguments.length === 2 && typeof arguments[1] === "string") {
- return $.datepicker["_" + options + "Datepicker"].
- apply($.datepicker, [this[0]].concat(otherArgs));
- }
- return this.each(function() {
- typeof options === "string" ?
- $.datepicker["_" + options + "Datepicker"].
- apply($.datepicker, [this].concat(otherArgs)) :
- $.datepicker._attachDatepicker(this, options);
- });
-};
-
-$.datepicker = new Datepicker(); // singleton instance
-$.datepicker.initialized = false;
-$.datepicker.uuid = new Date().getTime();
-$.datepicker.version = "1.11.3";
-
-var datepicker = $.datepicker;
-
-
-/*!
- * jQuery UI Dialog 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/dialog/
- */
-
-
-var dialog = $.widget( "ui.dialog", {
- version: "1.11.3",
- options: {
- appendTo: "body",
- autoOpen: true,
- buttons: [],
- closeOnEscape: true,
- closeText: "Close",
- dialogClass: "",
- draggable: true,
- hide: null,
- height: "auto",
- maxHeight: null,
- maxWidth: null,
- minHeight: 150,
- minWidth: 150,
- modal: false,
- position: {
- my: "center",
- at: "center",
- of: window,
- collision: "fit",
- // Ensure the titlebar is always visible
- using: function( pos ) {
- var topOffset = $( this ).css( pos ).offset().top;
- if ( topOffset < 0 ) {
- $( this ).css( "top", pos.top - topOffset );
- }
- }
- },
- resizable: true,
- show: null,
- title: null,
- width: 300,
-
- // callbacks
- beforeClose: null,
- close: null,
- drag: null,
- dragStart: null,
- dragStop: null,
- focus: null,
- open: null,
- resize: null,
- resizeStart: null,
- resizeStop: null
- },
-
- sizeRelatedOptions: {
- buttons: true,
- height: true,
- maxHeight: true,
- maxWidth: true,
- minHeight: true,
- minWidth: true,
- width: true
- },
-
- resizableRelatedOptions: {
- maxHeight: true,
- maxWidth: true,
- minHeight: true,
- minWidth: true
- },
-
- _create: function() {
- this.originalCss = {
- display: this.element[ 0 ].style.display,
- width: this.element[ 0 ].style.width,
- minHeight: this.element[ 0 ].style.minHeight,
- maxHeight: this.element[ 0 ].style.maxHeight,
- height: this.element[ 0 ].style.height
- };
- this.originalPosition = {
- parent: this.element.parent(),
- index: this.element.parent().children().index( this.element )
- };
- this.originalTitle = this.element.attr( "title" );
- this.options.title = this.options.title || this.originalTitle;
-
- this._createWrapper();
-
- this.element
- .show()
- .removeAttr( "title" )
- .addClass( "ui-dialog-content ui-widget-content" )
- .appendTo( this.uiDialog );
-
- this._createTitlebar();
- this._createButtonPane();
-
- if ( this.options.draggable && $.fn.draggable ) {
- this._makeDraggable();
- }
- if ( this.options.resizable && $.fn.resizable ) {
- this._makeResizable();
- }
-
- this._isOpen = false;
-
- this._trackFocus();
- },
-
- _init: function() {
- if ( this.options.autoOpen ) {
- this.open();
- }
- },
-
- _appendTo: function() {
- var element = this.options.appendTo;
- if ( element && (element.jquery || element.nodeType) ) {
- return $( element );
- }
- return this.document.find( element || "body" ).eq( 0 );
- },
-
- _destroy: function() {
- var next,
- originalPosition = this.originalPosition;
-
- this._destroyOverlay();
-
- this.element
- .removeUniqueId()
- .removeClass( "ui-dialog-content ui-widget-content" )
- .css( this.originalCss )
- // Without detaching first, the following becomes really slow
- .detach();
-
- this.uiDialog.stop( true, true ).remove();
-
- if ( this.originalTitle ) {
- this.element.attr( "title", this.originalTitle );
- }
-
- next = originalPosition.parent.children().eq( originalPosition.index );
- // Don't try to place the dialog next to itself (#8613)
- if ( next.length && next[ 0 ] !== this.element[ 0 ] ) {
- next.before( this.element );
- } else {
- originalPosition.parent.append( this.element );
- }
- },
-
- widget: function() {
- return this.uiDialog;
- },
-
- disable: $.noop,
- enable: $.noop,
-
- close: function( event ) {
- var activeElement,
- that = this;
-
- if ( !this._isOpen || this._trigger( "beforeClose", event ) === false ) {
- return;
- }
-
- this._isOpen = false;
- this._focusedElement = null;
- this._destroyOverlay();
- this._untrackInstance();
-
- if ( !this.opener.filter( ":focusable" ).focus().length ) {
-
- // support: IE9
- // IE9 throws an "Unspecified error" accessing document.activeElement from an <iframe>
- try {
- activeElement = this.document[ 0 ].activeElement;
-
- // Support: IE9, IE10
- // If the <body> is blurred, IE will switch windows, see #4520
- if ( activeElement && activeElement.nodeName.toLowerCase() !== "body" ) {
-
- // Hiding a focused element doesn't trigger blur in WebKit
- // so in case we have nothing to focus on, explicitly blur the active element
- // https://bugs.webkit.org/show_bug.cgi?id=47182
- $( activeElement ).blur();
- }
- } catch ( error ) {}
- }
-
- this._hide( this.uiDialog, this.options.hide, function() {
- that._trigger( "close", event );
- });
- },
-
- isOpen: function() {
- return this._isOpen;
- },
-
- moveToTop: function() {
- this._moveToTop();
- },
-
- _moveToTop: function( event, silent ) {
- var moved = false,
- zIndicies = this.uiDialog.siblings( ".ui-front:visible" ).map(function() {
- return +$( this ).css( "z-index" );
- }).get(),
- zIndexMax = Math.max.apply( null, zIndicies );
-
- if ( zIndexMax >= +this.uiDialog.css( "z-index" ) ) {
- this.uiDialog.css( "z-index", zIndexMax + 1 );
- moved = true;
- }
-
- if ( moved && !silent ) {
- this._trigger( "focus", event );
- }
- return moved;
- },
-
- open: function() {
- var that = this;
- if ( this._isOpen ) {
- if ( this._moveToTop() ) {
- this._focusTabbable();
- }
- return;
- }
-
- this._isOpen = true;
- this.opener = $( this.document[ 0 ].activeElement );
-
- this._size();
- this._position();
- this._createOverlay();
- this._moveToTop( null, true );
-
- // Ensure the overlay is moved to the top with the dialog, but only when
- // opening. The overlay shouldn't move after the dialog is open so that
- // modeless dialogs opened after the modal dialog stack properly.
- if ( this.overlay ) {
- this.overlay.css( "z-index", this.uiDialog.css( "z-index" ) - 1 );
- }
-
- this._show( this.uiDialog, this.options.show, function() {
- that._focusTabbable();
- that._trigger( "focus" );
- });
-
- // Track the dialog immediately upon openening in case a focus event
- // somehow occurs outside of the dialog before an element inside the
- // dialog is focused (#10152)
- this._makeFocusTarget();
-
- this._trigger( "open" );
- },
-
- _focusTabbable: function() {
- // Set focus to the first match:
- // 1. An element that was focused previously
- // 2. First element inside the dialog matching [autofocus]
- // 3. Tabbable element inside the content element
- // 4. Tabbable element inside the buttonpane
- // 5. The close button
- // 6. The dialog itself
- var hasFocus = this._focusedElement;
- if ( !hasFocus ) {
- hasFocus = this.element.find( "[autofocus]" );
- }
- if ( !hasFocus.length ) {
- hasFocus = this.element.find( ":tabbable" );
- }
- if ( !hasFocus.length ) {
- hasFocus = this.uiDialogButtonPane.find( ":tabbable" );
- }
- if ( !hasFocus.length ) {
- hasFocus = this.uiDialogTitlebarClose.filter( ":tabbable" );
- }
- if ( !hasFocus.length ) {
- hasFocus = this.uiDialog;
- }
- hasFocus.eq( 0 ).focus();
- },
-
- _keepFocus: function( event ) {
- function checkFocus() {
- var activeElement = this.document[0].activeElement,
- isActive = this.uiDialog[0] === activeElement ||
- $.contains( this.uiDialog[0], activeElement );
- if ( !isActive ) {
- this._focusTabbable();
- }
- }
- event.preventDefault();
- checkFocus.call( this );
- // support: IE
- // IE <= 8 doesn't prevent moving focus even with event.preventDefault()
- // so we check again later
- this._delay( checkFocus );
- },
-
- _createWrapper: function() {
- this.uiDialog = $("<div>")
- .addClass( "ui-dialog ui-widget ui-widget-content ui-corner-all ui-front " +
- this.options.dialogClass )
- .hide()
- .attr({
- // Setting tabIndex makes the div focusable
- tabIndex: -1,
- role: "dialog"
- })
- .appendTo( this._appendTo() );
-
- this._on( this.uiDialog, {
- keydown: function( event ) {
- if ( this.options.closeOnEscape && !event.isDefaultPrevented() && event.keyCode &&
- event.keyCode === $.ui.keyCode.ESCAPE ) {
- event.preventDefault();
- this.close( event );
- return;
- }
-
- // prevent tabbing out of dialogs
- if ( event.keyCode !== $.ui.keyCode.TAB || event.isDefaultPrevented() ) {
- return;
- }
- var tabbables = this.uiDialog.find( ":tabbable" ),
- first = tabbables.filter( ":first" ),
- last = tabbables.filter( ":last" );
-
- if ( ( event.target === last[0] || event.target === this.uiDialog[0] ) && !event.shiftKey ) {
- this._delay(function() {
- first.focus();
- });
- event.preventDefault();
- } else if ( ( event.target === first[0] || event.target === this.uiDialog[0] ) && event.shiftKey ) {
- this._delay(function() {
- last.focus();
- });
- event.preventDefault();
- }
- },
- mousedown: function( event ) {
- if ( this._moveToTop( event ) ) {
- this._focusTabbable();
- }
- }
- });
-
- // We assume that any existing aria-describedby attribute means
- // that the dialog content is marked up properly
- // otherwise we brute force the content as the description
- if ( !this.element.find( "[aria-describedby]" ).length ) {
- this.uiDialog.attr({
- "aria-describedby": this.element.uniqueId().attr( "id" )
- });
- }
- },
-
- _createTitlebar: function() {
- var uiDialogTitle;
-
- this.uiDialogTitlebar = $( "<div>" )
- .addClass( "ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix" )
- .prependTo( this.uiDialog );
- this._on( this.uiDialogTitlebar, {
- mousedown: function( event ) {
- // Don't prevent click on close button (#8838)
- // Focusing a dialog that is partially scrolled out of view
- // causes the browser to scroll it into view, preventing the click event
- if ( !$( event.target ).closest( ".ui-dialog-titlebar-close" ) ) {
- // Dialog isn't getting focus when dragging (#8063)
- this.uiDialog.focus();
- }
- }
- });
-
- // support: IE
- // Use type="button" to prevent enter keypresses in textboxes from closing the
- // dialog in IE (#9312)
- this.uiDialogTitlebarClose = $( "<button type='button'></button>" )
- .button({
- label: this.options.closeText,
- icons: {
- primary: "ui-icon-closethick"
- },
- text: false
- })
- .addClass( "ui-dialog-titlebar-close" )
- .appendTo( this.uiDialogTitlebar );
- this._on( this.uiDialogTitlebarClose, {
- click: function( event ) {
- event.preventDefault();
- this.close( event );
- }
- });
-
- uiDialogTitle = $( "<span>" )
- .uniqueId()
- .addClass( "ui-dialog-title" )
- .prependTo( this.uiDialogTitlebar );
- this._title( uiDialogTitle );
-
- this.uiDialog.attr({
- "aria-labelledby": uiDialogTitle.attr( "id" )
- });
- },
-
- _title: function( title ) {
- if ( !this.options.title ) {
- title.html( " " );
- }
- title.text( this.options.title );
- },
-
- _createButtonPane: function() {
- this.uiDialogButtonPane = $( "<div>" )
- .addClass( "ui-dialog-buttonpane ui-widget-content ui-helper-clearfix" );
-
- this.uiButtonSet = $( "<div>" )
- .addClass( "ui-dialog-buttonset" )
- .appendTo( this.uiDialogButtonPane );
-
- this._createButtons();
- },
-
- _createButtons: function() {
- var that = this,
- buttons = this.options.buttons;
-
- // if we already have a button pane, remove it
- this.uiDialogButtonPane.remove();
- this.uiButtonSet.empty();
-
- if ( $.isEmptyObject( buttons ) || ($.isArray( buttons ) && !buttons.length) ) {
- this.uiDialog.removeClass( "ui-dialog-buttons" );
- return;
- }
-
- $.each( buttons, function( name, props ) {
- var click, buttonOptions;
- props = $.isFunction( props ) ?
- { click: props, text: name } :
- props;
- // Default to a non-submitting button
- props = $.extend( { type: "button" }, props );
- // Change the context for the click callback to be the main element
- click = props.click;
- props.click = function() {
- click.apply( that.element[ 0 ], arguments );
- };
- buttonOptions = {
- icons: props.icons,
- text: props.showText
- };
- delete props.icons;
- delete props.showText;
- $( "<button></button>", props )
- .button( buttonOptions )
- .appendTo( that.uiButtonSet );
- });
- this.uiDialog.addClass( "ui-dialog-buttons" );
- this.uiDialogButtonPane.appendTo( this.uiDialog );
- },
-
- _makeDraggable: function() {
- var that = this,
- options = this.options;
-
- function filteredUi( ui ) {
- return {
- position: ui.position,
- offset: ui.offset
- };
- }
-
- this.uiDialog.draggable({
- cancel: ".ui-dialog-content, .ui-dialog-titlebar-close",
- handle: ".ui-dialog-titlebar",
- containment: "document",
- start: function( event, ui ) {
- $( this ).addClass( "ui-dialog-dragging" );
- that._blockFrames();
- that._trigger( "dragStart", event, filteredUi( ui ) );
- },
- drag: function( event, ui ) {
- that._trigger( "drag", event, filteredUi( ui ) );
- },
- stop: function( event, ui ) {
- var left = ui.offset.left - that.document.scrollLeft(),
- top = ui.offset.top - that.document.scrollTop();
-
- options.position = {
- my: "left top",
- at: "left" + (left >= 0 ? "+" : "") + left + " " +
- "top" + (top >= 0 ? "+" : "") + top,
- of: that.window
- };
- $( this ).removeClass( "ui-dialog-dragging" );
- that._unblockFrames();
- that._trigger( "dragStop", event, filteredUi( ui ) );
- }
- });
- },
-
- _makeResizable: function() {
- var that = this,
- options = this.options,
- handles = options.resizable,
- // .ui-resizable has position: relative defined in the stylesheet
- // but dialogs have to use absolute or fixed positioning
- position = this.uiDialog.css("position"),
- resizeHandles = typeof handles === "string" ?
- handles :
- "n,e,s,w,se,sw,ne,nw";
-
- function filteredUi( ui ) {
- return {
- originalPosition: ui.originalPosition,
- originalSize: ui.originalSize,
- position: ui.position,
- size: ui.size
- };
- }
-
- this.uiDialog.resizable({
- cancel: ".ui-dialog-content",
- containment: "document",
- alsoResize: this.element,
- maxWidth: options.maxWidth,
- maxHeight: options.maxHeight,
- minWidth: options.minWidth,
- minHeight: this._minHeight(),
- handles: resizeHandles,
- start: function( event, ui ) {
- $( this ).addClass( "ui-dialog-resizing" );
- that._blockFrames();
- that._trigger( "resizeStart", event, filteredUi( ui ) );
- },
- resize: function( event, ui ) {
- that._trigger( "resize", event, filteredUi( ui ) );
- },
- stop: function( event, ui ) {
- var offset = that.uiDialog.offset(),
- left = offset.left - that.document.scrollLeft(),
- top = offset.top - that.document.scrollTop();
-
- options.height = that.uiDialog.height();
- options.width = that.uiDialog.width();
- options.position = {
- my: "left top",
- at: "left" + (left >= 0 ? "+" : "") + left + " " +
- "top" + (top >= 0 ? "+" : "") + top,
- of: that.window
- };
- $( this ).removeClass( "ui-dialog-resizing" );
- that._unblockFrames();
- that._trigger( "resizeStop", event, filteredUi( ui ) );
- }
- })
- .css( "position", position );
- },
-
- _trackFocus: function() {
- this._on( this.widget(), {
- focusin: function( event ) {
- this._makeFocusTarget();
- this._focusedElement = $( event.target );
- }
- });
- },
-
- _makeFocusTarget: function() {
- this._untrackInstance();
- this._trackingInstances().unshift( this );
- },
-
- _untrackInstance: function() {
- var instances = this._trackingInstances(),
- exists = $.inArray( this, instances );
- if ( exists !== -1 ) {
- instances.splice( exists, 1 );
- }
- },
-
- _trackingInstances: function() {
- var instances = this.document.data( "ui-dialog-instances" );
- if ( !instances ) {
- instances = [];
- this.document.data( "ui-dialog-instances", instances );
- }
- return instances;
- },
-
- _minHeight: function() {
- var options = this.options;
-
- return options.height === "auto" ?
- options.minHeight :
- Math.min( options.minHeight, options.height );
- },
-
- _position: function() {
- // Need to show the dialog to get the actual offset in the position plugin
- var isVisible = this.uiDialog.is( ":visible" );
- if ( !isVisible ) {
- this.uiDialog.show();
- }
- this.uiDialog.position( this.options.position );
- if ( !isVisible ) {
- this.uiDialog.hide();
- }
- },
-
- _setOptions: function( options ) {
- var that = this,
- resize = false,
- resizableOptions = {};
-
- $.each( options, function( key, value ) {
- that._setOption( key, value );
-
- if ( key in that.sizeRelatedOptions ) {
- resize = true;
- }
- if ( key in that.resizableRelatedOptions ) {
- resizableOptions[ key ] = value;
- }
- });
-
- if ( resize ) {
- this._size();
- this._position();
- }
- if ( this.uiDialog.is( ":data(ui-resizable)" ) ) {
- this.uiDialog.resizable( "option", resizableOptions );
- }
- },
-
- _setOption: function( key, value ) {
- var isDraggable, isResizable,
- uiDialog = this.uiDialog;
-
- if ( key === "dialogClass" ) {
- uiDialog
- .removeClass( this.options.dialogClass )
- .addClass( value );
- }
-
- if ( key === "disabled" ) {
- return;
- }
-
- this._super( key, value );
-
- if ( key === "appendTo" ) {
- this.uiDialog.appendTo( this._appendTo() );
- }
-
- if ( key === "buttons" ) {
- this._createButtons();
- }
-
- if ( key === "closeText" ) {
- this.uiDialogTitlebarClose.button({
- // Ensure that we always pass a string
- label: "" + value
- });
- }
-
- if ( key === "draggable" ) {
- isDraggable = uiDialog.is( ":data(ui-draggable)" );
- if ( isDraggable && !value ) {
- uiDialog.draggable( "destroy" );
- }
-
- if ( !isDraggable && value ) {
- this._makeDraggable();
- }
- }
-
- if ( key === "position" ) {
- this._position();
- }
-
- if ( key === "resizable" ) {
- // currently resizable, becoming non-resizable
- isResizable = uiDialog.is( ":data(ui-resizable)" );
- if ( isResizable && !value ) {
- uiDialog.resizable( "destroy" );
- }
-
- // currently resizable, changing handles
- if ( isResizable && typeof value === "string" ) {
- uiDialog.resizable( "option", "handles", value );
- }
-
- // currently non-resizable, becoming resizable
- if ( !isResizable && value !== false ) {
- this._makeResizable();
- }
- }
-
- if ( key === "title" ) {
- this._title( this.uiDialogTitlebar.find( ".ui-dialog-title" ) );
- }
- },
-
- _size: function() {
- // If the user has resized the dialog, the .ui-dialog and .ui-dialog-content
- // divs will both have width and height set, so we need to reset them
- var nonContentHeight, minContentHeight, maxContentHeight,
- options = this.options;
-
- // Reset content sizing
- this.element.show().css({
- width: "auto",
- minHeight: 0,
- maxHeight: "none",
- height: 0
- });
-
- if ( options.minWidth > options.width ) {
- options.width = options.minWidth;
- }
-
- // reset wrapper sizing
- // determine the height of all the non-content elements
- nonContentHeight = this.uiDialog.css({
- height: "auto",
- width: options.width
- })
- .outerHeight();
- minContentHeight = Math.max( 0, options.minHeight - nonContentHeight );
- maxContentHeight = typeof options.maxHeight === "number" ?
- Math.max( 0, options.maxHeight - nonContentHeight ) :
- "none";
-
- if ( options.height === "auto" ) {
- this.element.css({
- minHeight: minContentHeight,
- maxHeight: maxContentHeight,
- height: "auto"
- });
- } else {
- this.element.height( Math.max( 0, options.height - nonContentHeight ) );
- }
-
- if ( this.uiDialog.is( ":data(ui-resizable)" ) ) {
- this.uiDialog.resizable( "option", "minHeight", this._minHeight() );
- }
- },
-
- _blockFrames: function() {
- this.iframeBlocks = this.document.find( "iframe" ).map(function() {
- var iframe = $( this );
-
- return $( "<div>" )
- .css({
- position: "absolute",
- width: iframe.outerWidth(),
- height: iframe.outerHeight()
- })
- .appendTo( iframe.parent() )
- .offset( iframe.offset() )[0];
- });
- },
-
- _unblockFrames: function() {
- if ( this.iframeBlocks ) {
- this.iframeBlocks.remove();
- delete this.iframeBlocks;
- }
- },
-
- _allowInteraction: function( event ) {
- if ( $( event.target ).closest( ".ui-dialog" ).length ) {
- return true;
- }
-
- // TODO: Remove hack when datepicker implements
- // the .ui-front logic (#8989)
- return !!$( event.target ).closest( ".ui-datepicker" ).length;
- },
-
- _createOverlay: function() {
- if ( !this.options.modal ) {
- return;
- }
-
- // We use a delay in case the overlay is created from an
- // event that we're going to be cancelling (#2804)
- var isOpening = true;
- this._delay(function() {
- isOpening = false;
- });
-
- if ( !this.document.data( "ui-dialog-overlays" ) ) {
-
- // Prevent use of anchors and inputs
- // Using _on() for an event handler shared across many instances is
- // safe because the dialogs stack and must be closed in reverse order
- this._on( this.document, {
- focusin: function( event ) {
- if ( isOpening ) {
- return;
- }
-
- if ( !this._allowInteraction( event ) ) {
- event.preventDefault();
- this._trackingInstances()[ 0 ]._focusTabbable();
- }
- }
- });
- }
-
- this.overlay = $( "<div>" )
- .addClass( "ui-widget-overlay ui-front" )
- .appendTo( this._appendTo() );
- this._on( this.overlay, {
- mousedown: "_keepFocus"
- });
- this.document.data( "ui-dialog-overlays",
- (this.document.data( "ui-dialog-overlays" ) || 0) + 1 );
- },
-
- _destroyOverlay: function() {
- if ( !this.options.modal ) {
- return;
- }
-
- if ( this.overlay ) {
- var overlays = this.document.data( "ui-dialog-overlays" ) - 1;
-
- if ( !overlays ) {
- this.document
- .unbind( "focusin" )
- .removeData( "ui-dialog-overlays" );
- } else {
- this.document.data( "ui-dialog-overlays", overlays );
- }
-
- this.overlay.remove();
- this.overlay = null;
- }
- }
-});
-
-
-/*!
- * jQuery UI Progressbar 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/progressbar/
- */
-
-
-var progressbar = $.widget( "ui.progressbar", {
- version: "1.11.3",
- options: {
- max: 100,
- value: 0,
-
- change: null,
- complete: null
- },
-
- min: 0,
-
- _create: function() {
- // Constrain initial value
- this.oldValue = this.options.value = this._constrainedValue();
-
- this.element
- .addClass( "ui-progressbar ui-widget ui-widget-content ui-corner-all" )
- .attr({
- // Only set static values, aria-valuenow and aria-valuemax are
- // set inside _refreshValue()
- role: "progressbar",
- "aria-valuemin": this.min
- });
-
- this.valueDiv = $( "<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>" )
- .appendTo( this.element );
-
- this._refreshValue();
- },
-
- _destroy: function() {
- this.element
- .removeClass( "ui-progressbar ui-widget ui-widget-content ui-corner-all" )
- .removeAttr( "role" )
- .removeAttr( "aria-valuemin" )
- .removeAttr( "aria-valuemax" )
- .removeAttr( "aria-valuenow" );
-
- this.valueDiv.remove();
- },
-
- value: function( newValue ) {
- if ( newValue === undefined ) {
- return this.options.value;
- }
-
- this.options.value = this._constrainedValue( newValue );
- this._refreshValue();
- },
-
- _constrainedValue: function( newValue ) {
- if ( newValue === undefined ) {
- newValue = this.options.value;
- }
-
- this.indeterminate = newValue === false;
-
- // sanitize value
- if ( typeof newValue !== "number" ) {
- newValue = 0;
- }
-
- return this.indeterminate ? false :
- Math.min( this.options.max, Math.max( this.min, newValue ) );
- },
-
- _setOptions: function( options ) {
- // Ensure "value" option is set after other values (like max)
- var value = options.value;
- delete options.value;
-
- this._super( options );
-
- this.options.value = this._constrainedValue( value );
- this._refreshValue();
- },
-
- _setOption: function( key, value ) {
- if ( key === "max" ) {
- // Don't allow a max less than min
- value = Math.max( this.min, value );
- }
- if ( key === "disabled" ) {
- this.element
- .toggleClass( "ui-state-disabled", !!value )
- .attr( "aria-disabled", value );
- }
- this._super( key, value );
- },
-
- _percentage: function() {
- return this.indeterminate ? 100 : 100 * ( this.options.value - this.min ) / ( this.options.max - this.min );
- },
-
- _refreshValue: function() {
- var value = this.options.value,
- percentage = this._percentage();
-
- this.valueDiv
- .toggle( this.indeterminate || value > this.min )
- .toggleClass( "ui-corner-right", value === this.options.max )
- .width( percentage.toFixed(0) + "%" );
-
- this.element.toggleClass( "ui-progressbar-indeterminate", this.indeterminate );
-
- if ( this.indeterminate ) {
- this.element.removeAttr( "aria-valuenow" );
- if ( !this.overlayDiv ) {
- this.overlayDiv = $( "<div class='ui-progressbar-overlay'></div>" ).appendTo( this.valueDiv );
- }
- } else {
- this.element.attr({
- "aria-valuemax": this.options.max,
- "aria-valuenow": value
- });
- if ( this.overlayDiv ) {
- this.overlayDiv.remove();
- this.overlayDiv = null;
- }
- }
-
- if ( this.oldValue !== value ) {
- this.oldValue = value;
- this._trigger( "change" );
- }
- if ( value === this.options.max ) {
- this._trigger( "complete" );
- }
- }
-});
-
-
-/*!
- * jQuery UI Selectmenu 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/selectmenu
- */
-
-
-var selectmenu = $.widget( "ui.selectmenu", {
- version: "1.11.3",
- defaultElement: "<select>",
- options: {
- appendTo: null,
- disabled: null,
- icons: {
- button: "ui-icon-triangle-1-s"
- },
- position: {
- my: "left top",
- at: "left bottom",
- collision: "none"
- },
- width: null,
-
- // callbacks
- change: null,
- close: null,
- focus: null,
- open: null,
- select: null
- },
-
- _create: function() {
- var selectmenuId = this.element.uniqueId().attr( "id" );
- this.ids = {
- element: selectmenuId,
- button: selectmenuId + "-button",
- menu: selectmenuId + "-menu"
- };
-
- this._drawButton();
- this._drawMenu();
-
- if ( this.options.disabled ) {
- this.disable();
- }
- },
-
- _drawButton: function() {
- var that = this;
-
- // Associate existing label with the new button
- this.label = $( "label[for='" + this.ids.element + "']" ).attr( "for", this.ids.button );
- this._on( this.label, {
- click: function( event ) {
- this.button.focus();
- event.preventDefault();
- }
- });
-
- // Hide original select element
- this.element.hide();
-
- // Create button
- this.button = $( "<span>", {
- "class": "ui-selectmenu-button ui-widget ui-state-default ui-corner-all",
- tabindex: this.options.disabled ? -1 : 0,
- id: this.ids.button,
- role: "combobox",
- "aria-expanded": "false",
- "aria-autocomplete": "list",
- "aria-owns": this.ids.menu,
- "aria-haspopup": "true"
- })
- .insertAfter( this.element );
-
- $( "<span>", {
- "class": "ui-icon " + this.options.icons.button
- })
- .prependTo( this.button );
-
- this.buttonText = $( "<span>", {
- "class": "ui-selectmenu-text"
- })
- .appendTo( this.button );
-
- this._setText( this.buttonText, this.element.find( "option:selected" ).text() );
- this._resizeButton();
-
- this._on( this.button, this._buttonEvents );
- this.button.one( "focusin", function() {
-
- // Delay rendering the menu items until the button receives focus.
- // The menu may have already been rendered via a programmatic open.
- if ( !that.menuItems ) {
- that._refreshMenu();
- }
- });
- this._hoverable( this.button );
- this._focusable( this.button );
- },
-
- _drawMenu: function() {
- var that = this;
-
- // Create menu
- this.menu = $( "<ul>", {
- "aria-hidden": "true",
- "aria-labelledby": this.ids.button,
- id: this.ids.menu
- });
-
- // Wrap menu
- this.menuWrap = $( "<div>", {
- "class": "ui-selectmenu-menu ui-front"
- })
- .append( this.menu )
- .appendTo( this._appendTo() );
-
- // Initialize menu widget
- this.menuInstance = this.menu
- .menu({
- role: "listbox",
- select: function( event, ui ) {
- event.preventDefault();
-
- // support: IE8
- // If the item was selected via a click, the text selection
- // will be destroyed in IE
- that._setSelection();
-
- that._select( ui.item.data( "ui-selectmenu-item" ), event );
- },
- focus: function( event, ui ) {
- var item = ui.item.data( "ui-selectmenu-item" );
-
- // Prevent inital focus from firing and check if its a newly focused item
- if ( that.focusIndex != null && item.index !== that.focusIndex ) {
- that._trigger( "focus", event, { item: item } );
- if ( !that.isOpen ) {
- that._select( item, event );
- }
- }
- that.focusIndex = item.index;
-
- that.button.attr( "aria-activedescendant",
- that.menuItems.eq( item.index ).attr( "id" ) );
- }
- })
- .menu( "instance" );
-
- // Adjust menu styles to dropdown
- this.menu
- .addClass( "ui-corner-bottom" )
- .removeClass( "ui-corner-all" );
-
- // Don't close the menu on mouseleave
- this.menuInstance._off( this.menu, "mouseleave" );
-
- // Cancel the menu's collapseAll on document click
- this.menuInstance._closeOnDocumentClick = function() {
- return false;
- };
-
- // Selects often contain empty items, but never contain dividers
- this.menuInstance._isDivider = function() {
- return false;
- };
- },
-
- refresh: function() {
- this._refreshMenu();
- this._setText( this.buttonText, this._getSelectedItem().text() );
- if ( !this.options.width ) {
- this._resizeButton();
- }
- },
-
- _refreshMenu: function() {
- this.menu.empty();
-
- var item,
- options = this.element.find( "option" );
-
- if ( !options.length ) {
- return;
- }
-
- this._parseOptions( options );
- this._renderMenu( this.menu, this.items );
-
- this.menuInstance.refresh();
- this.menuItems = this.menu.find( "li" ).not( ".ui-selectmenu-optgroup" );
-
- item = this._getSelectedItem();
-
- // Update the menu to have the correct item focused
- this.menuInstance.focus( null, item );
- this._setAria( item.data( "ui-selectmenu-item" ) );
-
- // Set disabled state
- this._setOption( "disabled", this.element.prop( "disabled" ) );
- },
-
- open: function( event ) {
- if ( this.options.disabled ) {
- return;
- }
-
- // If this is the first time the menu is being opened, render the items
- if ( !this.menuItems ) {
- this._refreshMenu();
- } else {
-
- // Menu clears focus on close, reset focus to selected item
- this.menu.find( ".ui-state-focus" ).removeClass( "ui-state-focus" );
- this.menuInstance.focus( null, this._getSelectedItem() );
- }
-
- this.isOpen = true;
- this._toggleAttr();
- this._resizeMenu();
- this._position();
-
- this._on( this.document, this._documentClick );
-
- this._trigger( "open", event );
- },
-
- _position: function() {
- this.menuWrap.position( $.extend( { of: this.button }, this.options.position ) );
- },
-
- close: function( event ) {
- if ( !this.isOpen ) {
- return;
- }
-
- this.isOpen = false;
- this._toggleAttr();
-
- this.range = null;
- this._off( this.document );
-
- this._trigger( "close", event );
- },
-
- widget: function() {
- return this.button;
- },
-
- menuWidget: function() {
- return this.menu;
- },
-
- _renderMenu: function( ul, items ) {
- var that = this,
- currentOptgroup = "";
-
- $.each( items, function( index, item ) {
- if ( item.optgroup !== currentOptgroup ) {
- $( "<li>", {
- "class": "ui-selectmenu-optgroup ui-menu-divider" +
- ( item.element.parent( "optgroup" ).prop( "disabled" ) ?
- " ui-state-disabled" :
- "" ),
- text: item.optgroup
- })
- .appendTo( ul );
-
- currentOptgroup = item.optgroup;
- }
-
- that._renderItemData( ul, item );
- });
- },
-
- _renderItemData: function( ul, item ) {
- return this._renderItem( ul, item ).data( "ui-selectmenu-item", item );
- },
-
- _renderItem: function( ul, item ) {
- var li = $( "<li>" );
-
- if ( item.disabled ) {
- li.addClass( "ui-state-disabled" );
- }
- this._setText( li, item.label );
-
- return li.appendTo( ul );
- },
-
- _setText: function( element, value ) {
- if ( value ) {
- element.text( value );
- } else {
- element.html( " " );
- }
- },
-
- _move: function( direction, event ) {
- var item, next,
- filter = ".ui-menu-item";
-
- if ( this.isOpen ) {
- item = this.menuItems.eq( this.focusIndex );
- } else {
- item = this.menuItems.eq( this.element[ 0 ].selectedIndex );
- filter += ":not(.ui-state-disabled)";
- }
-
- if ( direction === "first" || direction === "last" ) {
- next = item[ direction === "first" ? "prevAll" : "nextAll" ]( filter ).eq( -1 );
- } else {
- next = item[ direction + "All" ]( filter ).eq( 0 );
- }
-
- if ( next.length ) {
- this.menuInstance.focus( event, next );
- }
- },
-
- _getSelectedItem: function() {
- return this.menuItems.eq( this.element[ 0 ].selectedIndex );
- },
-
- _toggle: function( event ) {
- this[ this.isOpen ? "close" : "open" ]( event );
- },
-
- _setSelection: function() {
- var selection;
-
- if ( !this.range ) {
- return;
- }
-
- if ( window.getSelection ) {
- selection = window.getSelection();
- selection.removeAllRanges();
- selection.addRange( this.range );
-
- // support: IE8
- } else {
- this.range.select();
- }
-
- // support: IE
- // Setting the text selection kills the button focus in IE, but
- // restoring the focus doesn't kill the selection.
- this.button.focus();
- },
-
- _documentClick: {
- mousedown: function( event ) {
- if ( !this.isOpen ) {
- return;
- }
-
- if ( !$( event.target ).closest( ".ui-selectmenu-menu, #" + this.ids.button ).length ) {
- this.close( event );
- }
- }
- },
-
- _buttonEvents: {
-
- // Prevent text selection from being reset when interacting with the selectmenu (#10144)
- mousedown: function() {
- var selection;
-
- if ( window.getSelection ) {
- selection = window.getSelection();
- if ( selection.rangeCount ) {
- this.range = selection.getRangeAt( 0 );
- }
-
- // support: IE8
- } else {
- this.range = document.selection.createRange();
- }
- },
-
- click: function( event ) {
- this._setSelection();
- this._toggle( event );
- },
-
- keydown: function( event ) {
- var preventDefault = true;
- switch ( event.keyCode ) {
- case $.ui.keyCode.TAB:
- case $.ui.keyCode.ESCAPE:
- this.close( event );
- preventDefault = false;
- break;
- case $.ui.keyCode.ENTER:
- if ( this.isOpen ) {
- this._selectFocusedItem( event );
- }
- break;
- case $.ui.keyCode.UP:
- if ( event.altKey ) {
- this._toggle( event );
- } else {
- this._move( "prev", event );
- }
- break;
- case $.ui.keyCode.DOWN:
- if ( event.altKey ) {
- this._toggle( event );
- } else {
- this._move( "next", event );
- }
- break;
- case $.ui.keyCode.SPACE:
- if ( this.isOpen ) {
- this._selectFocusedItem( event );
- } else {
- this._toggle( event );
- }
- break;
- case $.ui.keyCode.LEFT:
- this._move( "prev", event );
- break;
- case $.ui.keyCode.RIGHT:
- this._move( "next", event );
- break;
- case $.ui.keyCode.HOME:
- case $.ui.keyCode.PAGE_UP:
- this._move( "first", event );
- break;
- case $.ui.keyCode.END:
- case $.ui.keyCode.PAGE_DOWN:
- this._move( "last", event );
- break;
- default:
- this.menu.trigger( event );
- preventDefault = false;
- }
-
- if ( preventDefault ) {
- event.preventDefault();
- }
- }
- },
-
- _selectFocusedItem: function( event ) {
- var item = this.menuItems.eq( this.focusIndex );
- if ( !item.hasClass( "ui-state-disabled" ) ) {
- this._select( item.data( "ui-selectmenu-item" ), event );
- }
- },
-
- _select: function( item, event ) {
- var oldIndex = this.element[ 0 ].selectedIndex;
-
- // Change native select element
- this.element[ 0 ].selectedIndex = item.index;
- this._setText( this.buttonText, item.label );
- this._setAria( item );
- this._trigger( "select", event, { item: item } );
-
- if ( item.index !== oldIndex ) {
- this._trigger( "change", event, { item: item } );
- }
-
- this.close( event );
- },
-
- _setAria: function( item ) {
- var id = this.menuItems.eq( item.index ).attr( "id" );
-
- this.button.attr({
- "aria-labelledby": id,
- "aria-activedescendant": id
- });
- this.menu.attr( "aria-activedescendant", id );
- },
-
- _setOption: function( key, value ) {
- if ( key === "icons" ) {
- this.button.find( "span.ui-icon" )
- .removeClass( this.options.icons.button )
- .addClass( value.button );
- }
-
- this._super( key, value );
-
- if ( key === "appendTo" ) {
- this.menuWrap.appendTo( this._appendTo() );
- }
-
- if ( key === "disabled" ) {
- this.menuInstance.option( "disabled", value );
- this.button
- .toggleClass( "ui-state-disabled", value )
- .attr( "aria-disabled", value );
-
- this.element.prop( "disabled", value );
- if ( value ) {
- this.button.attr( "tabindex", -1 );
- this.close();
- } else {
- this.button.attr( "tabindex", 0 );
- }
- }
-
- if ( key === "width" ) {
- this._resizeButton();
- }
- },
-
- _appendTo: function() {
- var element = this.options.appendTo;
-
- if ( element ) {
- element = element.jquery || element.nodeType ?
- $( element ) :
- this.document.find( element ).eq( 0 );
- }
-
- if ( !element || !element[ 0 ] ) {
- element = this.element.closest( ".ui-front" );
- }
-
- if ( !element.length ) {
- element = this.document[ 0 ].body;
- }
-
- return element;
- },
-
- _toggleAttr: function() {
- this.button
- .toggleClass( "ui-corner-top", this.isOpen )
- .toggleClass( "ui-corner-all", !this.isOpen )
- .attr( "aria-expanded", this.isOpen );
- this.menuWrap.toggleClass( "ui-selectmenu-open", this.isOpen );
- this.menu.attr( "aria-hidden", !this.isOpen );
- },
-
- _resizeButton: function() {
- var width = this.options.width;
-
- if ( !width ) {
- width = this.element.show().outerWidth();
- this.element.hide();
- }
-
- this.button.outerWidth( width );
- },
-
- _resizeMenu: function() {
- this.menu.outerWidth( Math.max(
- this.button.outerWidth(),
-
- // support: IE10
- // IE10 wraps long text (possibly a rounding bug)
- // so we add 1px to avoid the wrapping
- this.menu.width( "" ).outerWidth() + 1
- ) );
- },
-
- _getCreateOptions: function() {
- return { disabled: this.element.prop( "disabled" ) };
- },
-
- _parseOptions: function( options ) {
- var data = [];
- options.each(function( index, item ) {
- var option = $( item ),
- optgroup = option.parent( "optgroup" );
- data.push({
- element: option,
- index: index,
- value: option.val(),
- label: option.text(),
- optgroup: optgroup.attr( "label" ) || "",
- disabled: optgroup.prop( "disabled" ) || option.prop( "disabled" )
- });
- });
- this.items = data;
- },
-
- _destroy: function() {
- this.menuWrap.remove();
- this.button.remove();
- this.element.show();
- this.element.removeUniqueId();
- this.label.attr( "for", this.ids.element );
- }
-});
-
-
-/*!
- * jQuery UI Slider 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/slider/
- */
-
-
-var slider = $.widget( "ui.slider", $.ui.mouse, {
- version: "1.11.3",
- widgetEventPrefix: "slide",
-
- options: {
- animate: false,
- distance: 0,
- max: 100,
- min: 0,
- orientation: "horizontal",
- range: false,
- step: 1,
- value: 0,
- values: null,
-
- // callbacks
- change: null,
- slide: null,
- start: null,
- stop: null
- },
-
- // number of pages in a slider
- // (how many times can you page up/down to go through the whole range)
- numPages: 5,
-
- _create: function() {
- this._keySliding = false;
- this._mouseSliding = false;
- this._animateOff = true;
- this._handleIndex = null;
- this._detectOrientation();
- this._mouseInit();
- this._calculateNewMax();
-
- this.element
- .addClass( "ui-slider" +
- " ui-slider-" + this.orientation +
- " ui-widget" +
- " ui-widget-content" +
- " ui-corner-all");
-
- this._refresh();
- this._setOption( "disabled", this.options.disabled );
-
- this._animateOff = false;
- },
-
- _refresh: function() {
- this._createRange();
- this._createHandles();
- this._setupEvents();
- this._refreshValue();
- },
-
- _createHandles: function() {
- var i, handleCount,
- options = this.options,
- existingHandles = this.element.find( ".ui-slider-handle" ).addClass( "ui-state-default ui-corner-all" ),
- handle = "<span class='ui-slider-handle ui-state-default ui-corner-all' tabindex='0'></span>",
- handles = [];
-
- handleCount = ( options.values && options.values.length ) || 1;
-
- if ( existingHandles.length > handleCount ) {
- existingHandles.slice( handleCount ).remove();
- existingHandles = existingHandles.slice( 0, handleCount );
- }
-
- for ( i = existingHandles.length; i < handleCount; i++ ) {
- handles.push( handle );
- }
-
- this.handles = existingHandles.add( $( handles.join( "" ) ).appendTo( this.element ) );
-
- this.handle = this.handles.eq( 0 );
-
- this.handles.each(function( i ) {
- $( this ).data( "ui-slider-handle-index", i );
- });
- },
-
- _createRange: function() {
- var options = this.options,
- classes = "";
-
- if ( options.range ) {
- if ( options.range === true ) {
- if ( !options.values ) {
- options.values = [ this._valueMin(), this._valueMin() ];
- } else if ( options.values.length && options.values.length !== 2 ) {
- options.values = [ options.values[0], options.values[0] ];
- } else if ( $.isArray( options.values ) ) {
- options.values = options.values.slice(0);
- }
- }
-
- if ( !this.range || !this.range.length ) {
- this.range = $( "<div></div>" )
- .appendTo( this.element );
-
- classes = "ui-slider-range" +
- // note: this isn't the most fittingly semantic framework class for this element,
- // but worked best visually with a variety of themes
- " ui-widget-header ui-corner-all";
- } else {
- this.range.removeClass( "ui-slider-range-min ui-slider-range-max" )
- // Handle range switching from true to min/max
- .css({
- "left": "",
- "bottom": ""
- });
- }
-
- this.range.addClass( classes +
- ( ( options.range === "min" || options.range === "max" ) ? " ui-slider-range-" + options.range : "" ) );
- } else {
- if ( this.range ) {
- this.range.remove();
- }
- this.range = null;
- }
- },
-
- _setupEvents: function() {
- this._off( this.handles );
- this._on( this.handles, this._handleEvents );
- this._hoverable( this.handles );
- this._focusable( this.handles );
- },
-
- _destroy: function() {
- this.handles.remove();
- if ( this.range ) {
- this.range.remove();
- }
-
- this.element
- .removeClass( "ui-slider" +
- " ui-slider-horizontal" +
- " ui-slider-vertical" +
- " ui-widget" +
- " ui-widget-content" +
- " ui-corner-all" );
-
- this._mouseDestroy();
- },
-
- _mouseCapture: function( event ) {
- var position, normValue, distance, closestHandle, index, allowed, offset, mouseOverHandle,
- that = this,
- o = this.options;
-
- if ( o.disabled ) {
- return false;
- }
-
- this.elementSize = {
- width: this.element.outerWidth(),
- height: this.element.outerHeight()
- };
- this.elementOffset = this.element.offset();
-
- position = { x: event.pageX, y: event.pageY };
- normValue = this._normValueFromMouse( position );
- distance = this._valueMax() - this._valueMin() + 1;
- this.handles.each(function( i ) {
- var thisDistance = Math.abs( normValue - that.values(i) );
- if (( distance > thisDistance ) ||
- ( distance === thisDistance &&
- (i === that._lastChangedValue || that.values(i) === o.min ))) {
- distance = thisDistance;
- closestHandle = $( this );
- index = i;
- }
- });
-
- allowed = this._start( event, index );
- if ( allowed === false ) {
- return false;
- }
- this._mouseSliding = true;
-
- this._handleIndex = index;
-
- closestHandle
- .addClass( "ui-state-active" )
- .focus();
-
- offset = closestHandle.offset();
- mouseOverHandle = !$( event.target ).parents().addBack().is( ".ui-slider-handle" );
- this._clickOffset = mouseOverHandle ? { left: 0, top: 0 } : {
- left: event.pageX - offset.left - ( closestHandle.width() / 2 ),
- top: event.pageY - offset.top -
- ( closestHandle.height() / 2 ) -
- ( parseInt( closestHandle.css("borderTopWidth"), 10 ) || 0 ) -
- ( parseInt( closestHandle.css("borderBottomWidth"), 10 ) || 0) +
- ( parseInt( closestHandle.css("marginTop"), 10 ) || 0)
- };
-
- if ( !this.handles.hasClass( "ui-state-hover" ) ) {
- this._slide( event, index, normValue );
- }
- this._animateOff = true;
- return true;
- },
-
- _mouseStart: function() {
- return true;
- },
-
- _mouseDrag: function( event ) {
- var position = { x: event.pageX, y: event.pageY },
- normValue = this._normValueFromMouse( position );
-
- this._slide( event, this._handleIndex, normValue );
-
- return false;
- },
-
- _mouseStop: function( event ) {
- this.handles.removeClass( "ui-state-active" );
- this._mouseSliding = false;
-
- this._stop( event, this._handleIndex );
- this._change( event, this._handleIndex );
-
- this._handleIndex = null;
- this._clickOffset = null;
- this._animateOff = false;
-
- return false;
- },
-
- _detectOrientation: function() {
- this.orientation = ( this.options.orientation === "vertical" ) ? "vertical" : "horizontal";
- },
-
- _normValueFromMouse: function( position ) {
- var pixelTotal,
- pixelMouse,
- percentMouse,
- valueTotal,
- valueMouse;
-
- if ( this.orientation === "horizontal" ) {
- pixelTotal = this.elementSize.width;
- pixelMouse = position.x - this.elementOffset.left - ( this._clickOffset ? this._clickOffset.left : 0 );
- } else {
- pixelTotal = this.elementSize.height;
- pixelMouse = position.y - this.elementOffset.top - ( this._clickOffset ? this._clickOffset.top : 0 );
- }
-
- percentMouse = ( pixelMouse / pixelTotal );
- if ( percentMouse > 1 ) {
- percentMouse = 1;
- }
- if ( percentMouse < 0 ) {
- percentMouse = 0;
- }
- if ( this.orientation === "vertical" ) {
- percentMouse = 1 - percentMouse;
- }
-
- valueTotal = this._valueMax() - this._valueMin();
- valueMouse = this._valueMin() + percentMouse * valueTotal;
-
- return this._trimAlignValue( valueMouse );
- },
-
- _start: function( event, index ) {
- var uiHash = {
- handle: this.handles[ index ],
- value: this.value()
- };
- if ( this.options.values && this.options.values.length ) {
- uiHash.value = this.values( index );
- uiHash.values = this.values();
- }
- return this._trigger( "start", event, uiHash );
- },
-
- _slide: function( event, index, newVal ) {
- var otherVal,
- newValues,
- allowed;
-
- if ( this.options.values && this.options.values.length ) {
- otherVal = this.values( index ? 0 : 1 );
-
- if ( ( this.options.values.length === 2 && this.options.range === true ) &&
- ( ( index === 0 && newVal > otherVal) || ( index === 1 && newVal < otherVal ) )
- ) {
- newVal = otherVal;
- }
-
- if ( newVal !== this.values( index ) ) {
- newValues = this.values();
- newValues[ index ] = newVal;
- // A slide can be canceled by returning false from the slide callback
- allowed = this._trigger( "slide", event, {
- handle: this.handles[ index ],
- value: newVal,
- values: newValues
- } );
- otherVal = this.values( index ? 0 : 1 );
- if ( allowed !== false ) {
- this.values( index, newVal );
- }
- }
- } else {
- if ( newVal !== this.value() ) {
- // A slide can be canceled by returning false from the slide callback
- allowed = this._trigger( "slide", event, {
- handle: this.handles[ index ],
- value: newVal
- } );
- if ( allowed !== false ) {
- this.value( newVal );
- }
- }
- }
- },
-
- _stop: function( event, index ) {
- var uiHash = {
- handle: this.handles[ index ],
- value: this.value()
- };
- if ( this.options.values && this.options.values.length ) {
- uiHash.value = this.values( index );
- uiHash.values = this.values();
- }
-
- this._trigger( "stop", event, uiHash );
- },
-
- _change: function( event, index ) {
- if ( !this._keySliding && !this._mouseSliding ) {
- var uiHash = {
- handle: this.handles[ index ],
- value: this.value()
- };
- if ( this.options.values && this.options.values.length ) {
- uiHash.value = this.values( index );
- uiHash.values = this.values();
- }
-
- //store the last changed value index for reference when handles overlap
- this._lastChangedValue = index;
-
- this._trigger( "change", event, uiHash );
- }
- },
-
- value: function( newValue ) {
- if ( arguments.length ) {
- this.options.value = this._trimAlignValue( newValue );
- this._refreshValue();
- this._change( null, 0 );
- return;
- }
-
- return this._value();
- },
-
- values: function( index, newValue ) {
- var vals,
- newValues,
- i;
-
- if ( arguments.length > 1 ) {
- this.options.values[ index ] = this._trimAlignValue( newValue );
- this._refreshValue();
- this._change( null, index );
- return;
- }
-
- if ( arguments.length ) {
- if ( $.isArray( arguments[ 0 ] ) ) {
- vals = this.options.values;
- newValues = arguments[ 0 ];
- for ( i = 0; i < vals.length; i += 1 ) {
- vals[ i ] = this._trimAlignValue( newValues[ i ] );
- this._change( null, i );
- }
- this._refreshValue();
- } else {
- if ( this.options.values && this.options.values.length ) {
- return this._values( index );
- } else {
- return this.value();
- }
- }
- } else {
- return this._values();
- }
- },
-
- _setOption: function( key, value ) {
- var i,
- valsLength = 0;
-
- if ( key === "range" && this.options.range === true ) {
- if ( value === "min" ) {
- this.options.value = this._values( 0 );
- this.options.values = null;
- } else if ( value === "max" ) {
- this.options.value = this._values( this.options.values.length - 1 );
- this.options.values = null;
- }
- }
-
- if ( $.isArray( this.options.values ) ) {
- valsLength = this.options.values.length;
- }
-
- if ( key === "disabled" ) {
- this.element.toggleClass( "ui-state-disabled", !!value );
- }
-
- this._super( key, value );
-
- switch ( key ) {
- case "orientation":
- this._detectOrientation();
- this.element
- .removeClass( "ui-slider-horizontal ui-slider-vertical" )
- .addClass( "ui-slider-" + this.orientation );
- this._refreshValue();
-
- // Reset positioning from previous orientation
- this.handles.css( value === "horizontal" ? "bottom" : "left", "" );
- break;
- case "value":
- this._animateOff = true;
- this._refreshValue();
- this._change( null, 0 );
- this._animateOff = false;
- break;
- case "values":
- this._animateOff = true;
- this._refreshValue();
- for ( i = 0; i < valsLength; i += 1 ) {
- this._change( null, i );
- }
- this._animateOff = false;
- break;
- case "step":
- case "min":
- case "max":
- this._animateOff = true;
- this._calculateNewMax();
- this._refreshValue();
- this._animateOff = false;
- break;
- case "range":
- this._animateOff = true;
- this._refresh();
- this._animateOff = false;
- break;
- }
- },
-
- //internal value getter
- // _value() returns value trimmed by min and max, aligned by step
- _value: function() {
- var val = this.options.value;
- val = this._trimAlignValue( val );
-
- return val;
- },
-
- //internal values getter
- // _values() returns array of values trimmed by min and max, aligned by step
- // _values( index ) returns single value trimmed by min and max, aligned by step
- _values: function( index ) {
- var val,
- vals,
- i;
-
- if ( arguments.length ) {
- val = this.options.values[ index ];
- val = this._trimAlignValue( val );
-
- return val;
- } else if ( this.options.values && this.options.values.length ) {
- // .slice() creates a copy of the array
- // this copy gets trimmed by min and max and then returned
- vals = this.options.values.slice();
- for ( i = 0; i < vals.length; i += 1) {
- vals[ i ] = this._trimAlignValue( vals[ i ] );
- }
-
- return vals;
- } else {
- return [];
- }
- },
-
- // returns the step-aligned value that val is closest to, between (inclusive) min and max
- _trimAlignValue: function( val ) {
- if ( val <= this._valueMin() ) {
- return this._valueMin();
- }
- if ( val >= this._valueMax() ) {
- return this._valueMax();
- }
- var step = ( this.options.step > 0 ) ? this.options.step : 1,
- valModStep = (val - this._valueMin()) % step,
- alignValue = val - valModStep;
-
- if ( Math.abs(valModStep) * 2 >= step ) {
- alignValue += ( valModStep > 0 ) ? step : ( -step );
- }
-
- // Since JavaScript has problems with large floats, round
- // the final value to 5 digits after the decimal point (see #4124)
- return parseFloat( alignValue.toFixed(5) );
- },
-
- _calculateNewMax: function() {
- var max = this.options.max,
- min = this._valueMin(),
- step = this.options.step,
- aboveMin = Math.floor( ( max - min ) / step ) * step;
- max = aboveMin + min;
- this.max = parseFloat( max.toFixed( this._precision() ) );
- },
-
- _precision: function() {
- var precision = this._precisionOf( this.options.step );
- if ( this.options.min !== null ) {
- precision = Math.max( precision, this._precisionOf( this.options.min ) );
- }
- return precision;
- },
-
- _precisionOf: function( num ) {
- var str = num.toString(),
- decimal = str.indexOf( "." );
- return decimal === -1 ? 0 : str.length - decimal - 1;
- },
-
- _valueMin: function() {
- return this.options.min;
- },
-
- _valueMax: function() {
- return this.max;
- },
-
- _refreshValue: function() {
- var lastValPercent, valPercent, value, valueMin, valueMax,
- oRange = this.options.range,
- o = this.options,
- that = this,
- animate = ( !this._animateOff ) ? o.animate : false,
- _set = {};
-
- if ( this.options.values && this.options.values.length ) {
- this.handles.each(function( i ) {
- valPercent = ( that.values(i) - that._valueMin() ) / ( that._valueMax() - that._valueMin() ) * 100;
- _set[ that.orientation === "horizontal" ? "left" : "bottom" ] = valPercent + "%";
- $( this ).stop( 1, 1 )[ animate ? "animate" : "css" ]( _set, o.animate );
- if ( that.options.range === true ) {
- if ( that.orientation === "horizontal" ) {
- if ( i === 0 ) {
- that.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { left: valPercent + "%" }, o.animate );
- }
- if ( i === 1 ) {
- that.range[ animate ? "animate" : "css" ]( { width: ( valPercent - lastValPercent ) + "%" }, { queue: false, duration: o.animate } );
- }
- } else {
- if ( i === 0 ) {
- that.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { bottom: ( valPercent ) + "%" }, o.animate );
- }
- if ( i === 1 ) {
- that.range[ animate ? "animate" : "css" ]( { height: ( valPercent - lastValPercent ) + "%" }, { queue: false, duration: o.animate } );
- }
- }
- }
- lastValPercent = valPercent;
- });
- } else {
- value = this.value();
- valueMin = this._valueMin();
- valueMax = this._valueMax();
- valPercent = ( valueMax !== valueMin ) ?
- ( value - valueMin ) / ( valueMax - valueMin ) * 100 :
- 0;
- _set[ this.orientation === "horizontal" ? "left" : "bottom" ] = valPercent + "%";
- this.handle.stop( 1, 1 )[ animate ? "animate" : "css" ]( _set, o.animate );
-
- if ( oRange === "min" && this.orientation === "horizontal" ) {
- this.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { width: valPercent + "%" }, o.animate );
- }
- if ( oRange === "max" && this.orientation === "horizontal" ) {
- this.range[ animate ? "animate" : "css" ]( { width: ( 100 - valPercent ) + "%" }, { queue: false, duration: o.animate } );
- }
- if ( oRange === "min" && this.orientation === "vertical" ) {
- this.range.stop( 1, 1 )[ animate ? "animate" : "css" ]( { height: valPercent + "%" }, o.animate );
- }
- if ( oRange === "max" && this.orientation === "vertical" ) {
- this.range[ animate ? "animate" : "css" ]( { height: ( 100 - valPercent ) + "%" }, { queue: false, duration: o.animate } );
- }
- }
- },
-
- _handleEvents: {
- keydown: function( event ) {
- var allowed, curVal, newVal, step,
- index = $( event.target ).data( "ui-slider-handle-index" );
-
- switch ( event.keyCode ) {
- case $.ui.keyCode.HOME:
- case $.ui.keyCode.END:
- case $.ui.keyCode.PAGE_UP:
- case $.ui.keyCode.PAGE_DOWN:
- case $.ui.keyCode.UP:
- case $.ui.keyCode.RIGHT:
- case $.ui.keyCode.DOWN:
- case $.ui.keyCode.LEFT:
- event.preventDefault();
- if ( !this._keySliding ) {
- this._keySliding = true;
- $( event.target ).addClass( "ui-state-active" );
- allowed = this._start( event, index );
- if ( allowed === false ) {
- return;
- }
- }
- break;
- }
-
- step = this.options.step;
- if ( this.options.values && this.options.values.length ) {
- curVal = newVal = this.values( index );
- } else {
- curVal = newVal = this.value();
- }
-
- switch ( event.keyCode ) {
- case $.ui.keyCode.HOME:
- newVal = this._valueMin();
- break;
- case $.ui.keyCode.END:
- newVal = this._valueMax();
- break;
- case $.ui.keyCode.PAGE_UP:
- newVal = this._trimAlignValue(
- curVal + ( ( this._valueMax() - this._valueMin() ) / this.numPages )
- );
- break;
- case $.ui.keyCode.PAGE_DOWN:
- newVal = this._trimAlignValue(
- curVal - ( (this._valueMax() - this._valueMin()) / this.numPages ) );
- break;
- case $.ui.keyCode.UP:
- case $.ui.keyCode.RIGHT:
- if ( curVal === this._valueMax() ) {
- return;
- }
- newVal = this._trimAlignValue( curVal + step );
- break;
- case $.ui.keyCode.DOWN:
- case $.ui.keyCode.LEFT:
- if ( curVal === this._valueMin() ) {
- return;
- }
- newVal = this._trimAlignValue( curVal - step );
- break;
- }
-
- this._slide( event, index, newVal );
- },
- keyup: function( event ) {
- var index = $( event.target ).data( "ui-slider-handle-index" );
-
- if ( this._keySliding ) {
- this._keySliding = false;
- this._stop( event, index );
- this._change( event, index );
- $( event.target ).removeClass( "ui-state-active" );
- }
- }
- }
-});
-
-
-/*!
- * jQuery UI Spinner 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/spinner/
- */
-
-
-function spinner_modifier( fn ) {
- return function() {
- var previous = this.element.val();
- fn.apply( this, arguments );
- this._refresh();
- if ( previous !== this.element.val() ) {
- this._trigger( "change" );
- }
- };
-}
-
-var spinner = $.widget( "ui.spinner", {
- version: "1.11.3",
- defaultElement: "<input>",
- widgetEventPrefix: "spin",
- options: {
- culture: null,
- icons: {
- down: "ui-icon-triangle-1-s",
- up: "ui-icon-triangle-1-n"
- },
- incremental: true,
- max: null,
- min: null,
- numberFormat: null,
- page: 10,
- step: 1,
-
- change: null,
- spin: null,
- start: null,
- stop: null
- },
-
- _create: function() {
- // handle string values that need to be parsed
- this._setOption( "max", this.options.max );
- this._setOption( "min", this.options.min );
- this._setOption( "step", this.options.step );
-
- // Only format if there is a value, prevents the field from being marked
- // as invalid in Firefox, see #9573.
- if ( this.value() !== "" ) {
- // Format the value, but don't constrain.
- this._value( this.element.val(), true );
- }
-
- this._draw();
- this._on( this._events );
- this._refresh();
-
- // turning off autocomplete prevents the browser from remembering the
- // value when navigating through history, so we re-enable autocomplete
- // if the page is unloaded before the widget is destroyed. #7790
- this._on( this.window, {
- beforeunload: function() {
- this.element.removeAttr( "autocomplete" );
- }
- });
- },
-
- _getCreateOptions: function() {
- var options = {},
- element = this.element;
-
- $.each( [ "min", "max", "step" ], function( i, option ) {
- var value = element.attr( option );
- if ( value !== undefined && value.length ) {
- options[ option ] = value;
- }
- });
-
- return options;
- },
-
- _events: {
- keydown: function( event ) {
- if ( this._start( event ) && this._keydown( event ) ) {
- event.preventDefault();
- }
- },
- keyup: "_stop",
- focus: function() {
- this.previous = this.element.val();
- },
- blur: function( event ) {
- if ( this.cancelBlur ) {
- delete this.cancelBlur;
- return;
- }
-
- this._stop();
- this._refresh();
- if ( this.previous !== this.element.val() ) {
- this._trigger( "change", event );
- }
- },
- mousewheel: function( event, delta ) {
- if ( !delta ) {
- return;
- }
- if ( !this.spinning && !this._start( event ) ) {
- return false;
- }
-
- this._spin( (delta > 0 ? 1 : -1) * this.options.step, event );
- clearTimeout( this.mousewheelTimer );
- this.mousewheelTimer = this._delay(function() {
- if ( this.spinning ) {
- this._stop( event );
- }
- }, 100 );
- event.preventDefault();
- },
- "mousedown .ui-spinner-button": function( event ) {
- var previous;
-
- // We never want the buttons to have focus; whenever the user is
- // interacting with the spinner, the focus should be on the input.
- // If the input is focused then this.previous is properly set from
- // when the input first received focus. If the input is not focused
- // then we need to set this.previous based on the value before spinning.
- previous = this.element[0] === this.document[0].activeElement ?
- this.previous : this.element.val();
- function checkFocus() {
- var isActive = this.element[0] === this.document[0].activeElement;
- if ( !isActive ) {
- this.element.focus();
- this.previous = previous;
- // support: IE
- // IE sets focus asynchronously, so we need to check if focus
- // moved off of the input because the user clicked on the button.
- this._delay(function() {
- this.previous = previous;
- });
- }
- }
-
- // ensure focus is on (or stays on) the text field
- event.preventDefault();
- checkFocus.call( this );
-
- // support: IE
- // IE doesn't prevent moving focus even with event.preventDefault()
- // so we set a flag to know when we should ignore the blur event
- // and check (again) if focus moved off of the input.
- this.cancelBlur = true;
- this._delay(function() {
- delete this.cancelBlur;
- checkFocus.call( this );
- });
-
- if ( this._start( event ) === false ) {
- return;
- }
-
- this._repeat( null, $( event.currentTarget ).hasClass( "ui-spinner-up" ) ? 1 : -1, event );
- },
- "mouseup .ui-spinner-button": "_stop",
- "mouseenter .ui-spinner-button": function( event ) {
- // button will add ui-state-active if mouse was down while mouseleave and kept down
- if ( !$( event.currentTarget ).hasClass( "ui-state-active" ) ) {
- return;
- }
-
- if ( this._start( event ) === false ) {
- return false;
- }
- this._repeat( null, $( event.currentTarget ).hasClass( "ui-spinner-up" ) ? 1 : -1, event );
- },
- // TODO: do we really want to consider this a stop?
- // shouldn't we just stop the repeater and wait until mouseup before
- // we trigger the stop event?
- "mouseleave .ui-spinner-button": "_stop"
- },
-
- _draw: function() {
- var uiSpinner = this.uiSpinner = this.element
- .addClass( "ui-spinner-input" )
- .attr( "autocomplete", "off" )
- .wrap( this._uiSpinnerHtml() )
- .parent()
- // add buttons
- .append( this._buttonHtml() );
-
- this.element.attr( "role", "spinbutton" );
-
- // button bindings
- this.buttons = uiSpinner.find( ".ui-spinner-button" )
- .attr( "tabIndex", -1 )
- .button()
- .removeClass( "ui-corner-all" );
-
- // IE 6 doesn't understand height: 50% for the buttons
- // unless the wrapper has an explicit height
- if ( this.buttons.height() > Math.ceil( uiSpinner.height() * 0.5 ) &&
- uiSpinner.height() > 0 ) {
- uiSpinner.height( uiSpinner.height() );
- }
-
- // disable spinner if element was already disabled
- if ( this.options.disabled ) {
- this.disable();
- }
- },
-
- _keydown: function( event ) {
- var options = this.options,
- keyCode = $.ui.keyCode;
-
- switch ( event.keyCode ) {
- case keyCode.UP:
- this._repeat( null, 1, event );
- return true;
- case keyCode.DOWN:
- this._repeat( null, -1, event );
- return true;
- case keyCode.PAGE_UP:
- this._repeat( null, options.page, event );
- return true;
- case keyCode.PAGE_DOWN:
- this._repeat( null, -options.page, event );
- return true;
- }
-
- return false;
- },
-
- _uiSpinnerHtml: function() {
- return "<span class='ui-spinner ui-widget ui-widget-content ui-corner-all'></span>";
- },
-
- _buttonHtml: function() {
- return "" +
- "<a class='ui-spinner-button ui-spinner-up ui-corner-tr'>" +
- "<span class='ui-icon " + this.options.icons.up + "'>▲</span>" +
- "</a>" +
- "<a class='ui-spinner-button ui-spinner-down ui-corner-br'>" +
- "<span class='ui-icon " + this.options.icons.down + "'>▼</span>" +
- "</a>";
- },
-
- _start: function( event ) {
- if ( !this.spinning && this._trigger( "start", event ) === false ) {
- return false;
- }
-
- if ( !this.counter ) {
- this.counter = 1;
- }
- this.spinning = true;
- return true;
- },
-
- _repeat: function( i, steps, event ) {
- i = i || 500;
-
- clearTimeout( this.timer );
- this.timer = this._delay(function() {
- this._repeat( 40, steps, event );
- }, i );
-
- this._spin( steps * this.options.step, event );
- },
-
- _spin: function( step, event ) {
- var value = this.value() || 0;
-
- if ( !this.counter ) {
- this.counter = 1;
- }
-
- value = this._adjustValue( value + step * this._increment( this.counter ) );
-
- if ( !this.spinning || this._trigger( "spin", event, { value: value } ) !== false) {
- this._value( value );
- this.counter++;
- }
- },
-
- _increment: function( i ) {
- var incremental = this.options.incremental;
-
- if ( incremental ) {
- return $.isFunction( incremental ) ?
- incremental( i ) :
- Math.floor( i * i * i / 50000 - i * i / 500 + 17 * i / 200 + 1 );
- }
-
- return 1;
- },
-
- _precision: function() {
- var precision = this._precisionOf( this.options.step );
- if ( this.options.min !== null ) {
- precision = Math.max( precision, this._precisionOf( this.options.min ) );
- }
- return precision;
- },
-
- _precisionOf: function( num ) {
- var str = num.toString(),
- decimal = str.indexOf( "." );
- return decimal === -1 ? 0 : str.length - decimal - 1;
- },
-
- _adjustValue: function( value ) {
- var base, aboveMin,
- options = this.options;
-
- // make sure we're at a valid step
- // - find out where we are relative to the base (min or 0)
- base = options.min !== null ? options.min : 0;
- aboveMin = value - base;
- // - round to the nearest step
- aboveMin = Math.round(aboveMin / options.step) * options.step;
- // - rounding is based on 0, so adjust back to our base
- value = base + aboveMin;
-
- // fix precision from bad JS floating point math
- value = parseFloat( value.toFixed( this._precision() ) );
-
- // clamp the value
- if ( options.max !== null && value > options.max) {
- return options.max;
- }
- if ( options.min !== null && value < options.min ) {
- return options.min;
- }
-
- return value;
- },
-
- _stop: function( event ) {
- if ( !this.spinning ) {
- return;
- }
-
- clearTimeout( this.timer );
- clearTimeout( this.mousewheelTimer );
- this.counter = 0;
- this.spinning = false;
- this._trigger( "stop", event );
- },
-
- _setOption: function( key, value ) {
- if ( key === "culture" || key === "numberFormat" ) {
- var prevValue = this._parse( this.element.val() );
- this.options[ key ] = value;
- this.element.val( this._format( prevValue ) );
- return;
- }
-
- if ( key === "max" || key === "min" || key === "step" ) {
- if ( typeof value === "string" ) {
- value = this._parse( value );
- }
- }
- if ( key === "icons" ) {
- this.buttons.first().find( ".ui-icon" )
- .removeClass( this.options.icons.up )
- .addClass( value.up );
- this.buttons.last().find( ".ui-icon" )
- .removeClass( this.options.icons.down )
- .addClass( value.down );
- }
-
- this._super( key, value );
-
- if ( key === "disabled" ) {
- this.widget().toggleClass( "ui-state-disabled", !!value );
- this.element.prop( "disabled", !!value );
- this.buttons.button( value ? "disable" : "enable" );
- }
- },
-
- _setOptions: spinner_modifier(function( options ) {
- this._super( options );
- }),
-
- _parse: function( val ) {
- if ( typeof val === "string" && val !== "" ) {
- val = window.Globalize && this.options.numberFormat ?
- Globalize.parseFloat( val, 10, this.options.culture ) : +val;
- }
- return val === "" || isNaN( val ) ? null : val;
- },
-
- _format: function( value ) {
- if ( value === "" ) {
- return "";
- }
- return window.Globalize && this.options.numberFormat ?
- Globalize.format( value, this.options.numberFormat, this.options.culture ) :
- value;
- },
-
- _refresh: function() {
- this.element.attr({
- "aria-valuemin": this.options.min,
- "aria-valuemax": this.options.max,
- // TODO: what should we do with values that can't be parsed?
- "aria-valuenow": this._parse( this.element.val() )
- });
- },
-
- isValid: function() {
- var value = this.value();
-
- // null is invalid
- if ( value === null ) {
- return false;
- }
-
- // if value gets adjusted, it's invalid
- return value === this._adjustValue( value );
- },
-
- // update the value without triggering change
- _value: function( value, allowAny ) {
- var parsed;
- if ( value !== "" ) {
- parsed = this._parse( value );
- if ( parsed !== null ) {
- if ( !allowAny ) {
- parsed = this._adjustValue( parsed );
- }
- value = this._format( parsed );
- }
- }
- this.element.val( value );
- this._refresh();
- },
-
- _destroy: function() {
- this.element
- .removeClass( "ui-spinner-input" )
- .prop( "disabled", false )
- .removeAttr( "autocomplete" )
- .removeAttr( "role" )
- .removeAttr( "aria-valuemin" )
- .removeAttr( "aria-valuemax" )
- .removeAttr( "aria-valuenow" );
- this.uiSpinner.replaceWith( this.element );
- },
-
- stepUp: spinner_modifier(function( steps ) {
- this._stepUp( steps );
- }),
- _stepUp: function( steps ) {
- if ( this._start() ) {
- this._spin( (steps || 1) * this.options.step );
- this._stop();
- }
- },
-
- stepDown: spinner_modifier(function( steps ) {
- this._stepDown( steps );
- }),
- _stepDown: function( steps ) {
- if ( this._start() ) {
- this._spin( (steps || 1) * -this.options.step );
- this._stop();
- }
- },
-
- pageUp: spinner_modifier(function( pages ) {
- this._stepUp( (pages || 1) * this.options.page );
- }),
-
- pageDown: spinner_modifier(function( pages ) {
- this._stepDown( (pages || 1) * this.options.page );
- }),
-
- value: function( newVal ) {
- if ( !arguments.length ) {
- return this._parse( this.element.val() );
- }
- spinner_modifier( this._value ).call( this, newVal );
- },
-
- widget: function() {
- return this.uiSpinner;
- }
-});
-
-
-/*!
- * jQuery UI Tabs 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/tabs/
- */
-
-
-var tabs = $.widget( "ui.tabs", {
- version: "1.11.3",
- delay: 300,
- options: {
- active: null,
- collapsible: false,
- event: "click",
- heightStyle: "content",
- hide: null,
- show: null,
-
- // callbacks
- activate: null,
- beforeActivate: null,
- beforeLoad: null,
- load: null
- },
-
- _isLocal: (function() {
- var rhash = /#.*$/;
-
- return function( anchor ) {
- var anchorUrl, locationUrl;
-
- // support: IE7
- // IE7 doesn't normalize the href property when set via script (#9317)
- anchor = anchor.cloneNode( false );
-
- anchorUrl = anchor.href.replace( rhash, "" );
- locationUrl = location.href.replace( rhash, "" );
-
- // decoding may throw an error if the URL isn't UTF-8 (#9518)
- try {
- anchorUrl = decodeURIComponent( anchorUrl );
- } catch ( error ) {}
- try {
- locationUrl = decodeURIComponent( locationUrl );
- } catch ( error ) {}
-
- return anchor.hash.length > 1 && anchorUrl === locationUrl;
- };
- })(),
-
- _create: function() {
- var that = this,
- options = this.options;
-
- this.running = false;
-
- this.element
- .addClass( "ui-tabs ui-widget ui-widget-content ui-corner-all" )
- .toggleClass( "ui-tabs-collapsible", options.collapsible );
-
- this._processTabs();
- options.active = this._initialActive();
-
- // Take disabling tabs via class attribute from HTML
- // into account and update option properly.
- if ( $.isArray( options.disabled ) ) {
- options.disabled = $.unique( options.disabled.concat(
- $.map( this.tabs.filter( ".ui-state-disabled" ), function( li ) {
- return that.tabs.index( li );
- })
- ) ).sort();
- }
-
- // check for length avoids error when initializing empty list
- if ( this.options.active !== false && this.anchors.length ) {
- this.active = this._findActive( options.active );
- } else {
- this.active = $();
- }
-
- this._refresh();
-
- if ( this.active.length ) {
- this.load( options.active );
- }
- },
-
- _initialActive: function() {
- var active = this.options.active,
- collapsible = this.options.collapsible,
- locationHash = location.hash.substring( 1 );
-
- if ( active === null ) {
- // check the fragment identifier in the URL
- if ( locationHash ) {
- this.tabs.each(function( i, tab ) {
- if ( $( tab ).attr( "aria-controls" ) === locationHash ) {
- active = i;
- return false;
- }
- });
- }
-
- // check for a tab marked active via a class
- if ( active === null ) {
- active = this.tabs.index( this.tabs.filter( ".ui-tabs-active" ) );
- }
-
- // no active tab, set to false
- if ( active === null || active === -1 ) {
- active = this.tabs.length ? 0 : false;
- }
- }
-
- // handle numbers: negative, out of range
- if ( active !== false ) {
- active = this.tabs.index( this.tabs.eq( active ) );
- if ( active === -1 ) {
- active = collapsible ? false : 0;
- }
- }
-
- // don't allow collapsible: false and active: false
- if ( !collapsible && active === false && this.anchors.length ) {
- active = 0;
- }
-
- return active;
- },
-
- _getCreateEventData: function() {
- return {
- tab: this.active,
- panel: !this.active.length ? $() : this._getPanelForTab( this.active )
- };
- },
-
- _tabKeydown: function( event ) {
- var focusedTab = $( this.document[0].activeElement ).closest( "li" ),
- selectedIndex = this.tabs.index( focusedTab ),
- goingForward = true;
-
- if ( this._handlePageNav( event ) ) {
- return;
- }
-
- switch ( event.keyCode ) {
- case $.ui.keyCode.RIGHT:
- case $.ui.keyCode.DOWN:
- selectedIndex++;
- break;
- case $.ui.keyCode.UP:
- case $.ui.keyCode.LEFT:
- goingForward = false;
- selectedIndex--;
- break;
- case $.ui.keyCode.END:
- selectedIndex = this.anchors.length - 1;
- break;
- case $.ui.keyCode.HOME:
- selectedIndex = 0;
- break;
- case $.ui.keyCode.SPACE:
- // Activate only, no collapsing
- event.preventDefault();
- clearTimeout( this.activating );
- this._activate( selectedIndex );
- return;
- case $.ui.keyCode.ENTER:
- // Toggle (cancel delayed activation, allow collapsing)
- event.preventDefault();
- clearTimeout( this.activating );
- // Determine if we should collapse or activate
- this._activate( selectedIndex === this.options.active ? false : selectedIndex );
- return;
- default:
- return;
- }
-
- // Focus the appropriate tab, based on which key was pressed
- event.preventDefault();
- clearTimeout( this.activating );
- selectedIndex = this._focusNextTab( selectedIndex, goingForward );
-
- // Navigating with control/command key will prevent automatic activation
- if ( !event.ctrlKey && !event.metaKey ) {
-
- // Update aria-selected immediately so that AT think the tab is already selected.
- // Otherwise AT may confuse the user by stating that they need to activate the tab,
- // but the tab will already be activated by the time the announcement finishes.
- focusedTab.attr( "aria-selected", "false" );
- this.tabs.eq( selectedIndex ).attr( "aria-selected", "true" );
-
- this.activating = this._delay(function() {
- this.option( "active", selectedIndex );
- }, this.delay );
- }
- },
-
- _panelKeydown: function( event ) {
- if ( this._handlePageNav( event ) ) {
- return;
- }
-
- // Ctrl+up moves focus to the current tab
- if ( event.ctrlKey && event.keyCode === $.ui.keyCode.UP ) {
- event.preventDefault();
- this.active.focus();
- }
- },
-
- // Alt+page up/down moves focus to the previous/next tab (and activates)
- _handlePageNav: function( event ) {
- if ( event.altKey && event.keyCode === $.ui.keyCode.PAGE_UP ) {
- this._activate( this._focusNextTab( this.options.active - 1, false ) );
- return true;
- }
- if ( event.altKey && event.keyCode === $.ui.keyCode.PAGE_DOWN ) {
- this._activate( this._focusNextTab( this.options.active + 1, true ) );
- return true;
- }
- },
-
- _findNextTab: function( index, goingForward ) {
- var lastTabIndex = this.tabs.length - 1;
-
- function constrain() {
- if ( index > lastTabIndex ) {
- index = 0;
- }
- if ( index < 0 ) {
- index = lastTabIndex;
- }
- return index;
- }
-
- while ( $.inArray( constrain(), this.options.disabled ) !== -1 ) {
- index = goingForward ? index + 1 : index - 1;
- }
-
- return index;
- },
-
- _focusNextTab: function( index, goingForward ) {
- index = this._findNextTab( index, goingForward );
- this.tabs.eq( index ).focus();
- return index;
- },
-
- _setOption: function( key, value ) {
- if ( key === "active" ) {
- // _activate() will handle invalid values and update this.options
- this._activate( value );
- return;
- }
-
- if ( key === "disabled" ) {
- // don't use the widget factory's disabled handling
- this._setupDisabled( value );
- return;
- }
-
- this._super( key, value);
-
- if ( key === "collapsible" ) {
- this.element.toggleClass( "ui-tabs-collapsible", value );
- // Setting collapsible: false while collapsed; open first panel
- if ( !value && this.options.active === false ) {
- this._activate( 0 );
- }
- }
-
- if ( key === "event" ) {
- this._setupEvents( value );
- }
-
- if ( key === "heightStyle" ) {
- this._setupHeightStyle( value );
- }
- },
-
- _sanitizeSelector: function( hash ) {
- return hash ? hash.replace( /[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g, "\\$&" ) : "";
- },
-
- refresh: function() {
- var options = this.options,
- lis = this.tablist.children( ":has(a[href])" );
-
- // get disabled tabs from class attribute from HTML
- // this will get converted to a boolean if needed in _refresh()
- options.disabled = $.map( lis.filter( ".ui-state-disabled" ), function( tab ) {
- return lis.index( tab );
- });
-
- this._processTabs();
-
- // was collapsed or no tabs
- if ( options.active === false || !this.anchors.length ) {
- options.active = false;
- this.active = $();
- // was active, but active tab is gone
- } else if ( this.active.length && !$.contains( this.tablist[ 0 ], this.active[ 0 ] ) ) {
- // all remaining tabs are disabled
- if ( this.tabs.length === options.disabled.length ) {
- options.active = false;
- this.active = $();
- // activate previous tab
- } else {
- this._activate( this._findNextTab( Math.max( 0, options.active - 1 ), false ) );
- }
- // was active, active tab still exists
- } else {
- // make sure active index is correct
- options.active = this.tabs.index( this.active );
- }
-
- this._refresh();
- },
-
- _refresh: function() {
- this._setupDisabled( this.options.disabled );
- this._setupEvents( this.options.event );
- this._setupHeightStyle( this.options.heightStyle );
-
- this.tabs.not( this.active ).attr({
- "aria-selected": "false",
- "aria-expanded": "false",
- tabIndex: -1
- });
- this.panels.not( this._getPanelForTab( this.active ) )
- .hide()
- .attr({
- "aria-hidden": "true"
- });
-
- // Make sure one tab is in the tab order
- if ( !this.active.length ) {
- this.tabs.eq( 0 ).attr( "tabIndex", 0 );
- } else {
- this.active
- .addClass( "ui-tabs-active ui-state-active" )
- .attr({
- "aria-selected": "true",
- "aria-expanded": "true",
- tabIndex: 0
- });
- this._getPanelForTab( this.active )
- .show()
- .attr({
- "aria-hidden": "false"
- });
- }
- },
-
- _processTabs: function() {
- var that = this,
- prevTabs = this.tabs,
- prevAnchors = this.anchors,
- prevPanels = this.panels;
-
- this.tablist = this._getList()
- .addClass( "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" )
- .attr( "role", "tablist" )
-
- // Prevent users from focusing disabled tabs via click
- .delegate( "> li", "mousedown" + this.eventNamespace, function( event ) {
- if ( $( this ).is( ".ui-state-disabled" ) ) {
- event.preventDefault();
- }
- })
-
- // support: IE <9
- // Preventing the default action in mousedown doesn't prevent IE
- // from focusing the element, so if the anchor gets focused, blur.
- // We don't have to worry about focusing the previously focused
- // element since clicking on a non-focusable element should focus
- // the body anyway.
- .delegate( ".ui-tabs-anchor", "focus" + this.eventNamespace, function() {
- if ( $( this ).closest( "li" ).is( ".ui-state-disabled" ) ) {
- this.blur();
- }
- });
-
- this.tabs = this.tablist.find( "> li:has(a[href])" )
- .addClass( "ui-state-default ui-corner-top" )
- .attr({
- role: "tab",
- tabIndex: -1
- });
-
- this.anchors = this.tabs.map(function() {
- return $( "a", this )[ 0 ];
- })
- .addClass( "ui-tabs-anchor" )
- .attr({
- role: "presentation",
- tabIndex: -1
- });
-
- this.panels = $();
-
- this.anchors.each(function( i, anchor ) {
- var selector, panel, panelId,
- anchorId = $( anchor ).uniqueId().attr( "id" ),
- tab = $( anchor ).closest( "li" ),
- originalAriaControls = tab.attr( "aria-controls" );
-
- // inline tab
- if ( that._isLocal( anchor ) ) {
- selector = anchor.hash;
- panelId = selector.substring( 1 );
- panel = that.element.find( that._sanitizeSelector( selector ) );
- // remote tab
- } else {
- // If the tab doesn't already have aria-controls,
- // generate an id by using a throw-away element
- panelId = tab.attr( "aria-controls" ) || $( {} ).uniqueId()[ 0 ].id;
- selector = "#" + panelId;
- panel = that.element.find( selector );
- if ( !panel.length ) {
- panel = that._createPanel( panelId );
- panel.insertAfter( that.panels[ i - 1 ] || that.tablist );
- }
- panel.attr( "aria-live", "polite" );
- }
-
- if ( panel.length) {
- that.panels = that.panels.add( panel );
- }
- if ( originalAriaControls ) {
- tab.data( "ui-tabs-aria-controls", originalAriaControls );
- }
- tab.attr({
- "aria-controls": panelId,
- "aria-labelledby": anchorId
- });
- panel.attr( "aria-labelledby", anchorId );
- });
-
- this.panels
- .addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" )
- .attr( "role", "tabpanel" );
-
- // Avoid memory leaks (#10056)
- if ( prevTabs ) {
- this._off( prevTabs.not( this.tabs ) );
- this._off( prevAnchors.not( this.anchors ) );
- this._off( prevPanels.not( this.panels ) );
- }
- },
-
- // allow overriding how to find the list for rare usage scenarios (#7715)
- _getList: function() {
- return this.tablist || this.element.find( "ol,ul" ).eq( 0 );
- },
-
- _createPanel: function( id ) {
- return $( "<div>" )
- .attr( "id", id )
- .addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" )
- .data( "ui-tabs-destroy", true );
- },
-
- _setupDisabled: function( disabled ) {
- if ( $.isArray( disabled ) ) {
- if ( !disabled.length ) {
- disabled = false;
- } else if ( disabled.length === this.anchors.length ) {
- disabled = true;
- }
- }
-
- // disable tabs
- for ( var i = 0, li; ( li = this.tabs[ i ] ); i++ ) {
- if ( disabled === true || $.inArray( i, disabled ) !== -1 ) {
- $( li )
- .addClass( "ui-state-disabled" )
- .attr( "aria-disabled", "true" );
- } else {
- $( li )
- .removeClass( "ui-state-disabled" )
- .removeAttr( "aria-disabled" );
- }
- }
-
- this.options.disabled = disabled;
- },
-
- _setupEvents: function( event ) {
- var events = {};
- if ( event ) {
- $.each( event.split(" "), function( index, eventName ) {
- events[ eventName ] = "_eventHandler";
- });
- }
-
- this._off( this.anchors.add( this.tabs ).add( this.panels ) );
- // Always prevent the default action, even when disabled
- this._on( true, this.anchors, {
- click: function( event ) {
- event.preventDefault();
- }
- });
- this._on( this.anchors, events );
- this._on( this.tabs, { keydown: "_tabKeydown" } );
- this._on( this.panels, { keydown: "_panelKeydown" } );
-
- this._focusable( this.tabs );
- this._hoverable( this.tabs );
- },
-
- _setupHeightStyle: function( heightStyle ) {
- var maxHeight,
- parent = this.element.parent();
-
- if ( heightStyle === "fill" ) {
- maxHeight = parent.height();
- maxHeight -= this.element.outerHeight() - this.element.height();
-
- this.element.siblings( ":visible" ).each(function() {
- var elem = $( this ),
- position = elem.css( "position" );
-
- if ( position === "absolute" || position === "fixed" ) {
- return;
- }
- maxHeight -= elem.outerHeight( true );
- });
-
- this.element.children().not( this.panels ).each(function() {
- maxHeight -= $( this ).outerHeight( true );
- });
-
- this.panels.each(function() {
- $( this ).height( Math.max( 0, maxHeight -
- $( this ).innerHeight() + $( this ).height() ) );
- })
- .css( "overflow", "auto" );
- } else if ( heightStyle === "auto" ) {
- maxHeight = 0;
- this.panels.each(function() {
- maxHeight = Math.max( maxHeight, $( this ).height( "" ).height() );
- }).height( maxHeight );
- }
- },
-
- _eventHandler: function( event ) {
- var options = this.options,
- active = this.active,
- anchor = $( event.currentTarget ),
- tab = anchor.closest( "li" ),
- clickedIsActive = tab[ 0 ] === active[ 0 ],
- collapsing = clickedIsActive && options.collapsible,
- toShow = collapsing ? $() : this._getPanelForTab( tab ),
- toHide = !active.length ? $() : this._getPanelForTab( active ),
- eventData = {
- oldTab: active,
- oldPanel: toHide,
- newTab: collapsing ? $() : tab,
- newPanel: toShow
- };
-
- event.preventDefault();
-
- if ( tab.hasClass( "ui-state-disabled" ) ||
- // tab is already loading
- tab.hasClass( "ui-tabs-loading" ) ||
- // can't switch durning an animation
- this.running ||
- // click on active header, but not collapsible
- ( clickedIsActive && !options.collapsible ) ||
- // allow canceling activation
- ( this._trigger( "beforeActivate", event, eventData ) === false ) ) {
- return;
- }
-
- options.active = collapsing ? false : this.tabs.index( tab );
-
- this.active = clickedIsActive ? $() : tab;
- if ( this.xhr ) {
- this.xhr.abort();
- }
-
- if ( !toHide.length && !toShow.length ) {
- $.error( "jQuery UI Tabs: Mismatching fragment identifier." );
- }
-
- if ( toShow.length ) {
- this.load( this.tabs.index( tab ), event );
- }
- this._toggle( event, eventData );
- },
-
- // handles show/hide for selecting tabs
- _toggle: function( event, eventData ) {
- var that = this,
- toShow = eventData.newPanel,
- toHide = eventData.oldPanel;
-
- this.running = true;
-
- function complete() {
- that.running = false;
- that._trigger( "activate", event, eventData );
- }
-
- function show() {
- eventData.newTab.closest( "li" ).addClass( "ui-tabs-active ui-state-active" );
-
- if ( toShow.length && that.options.show ) {
- that._show( toShow, that.options.show, complete );
- } else {
- toShow.show();
- complete();
- }
- }
-
- // start out by hiding, then showing, then completing
- if ( toHide.length && this.options.hide ) {
- this._hide( toHide, this.options.hide, function() {
- eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" );
- show();
- });
- } else {
- eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" );
- toHide.hide();
- show();
- }
-
- toHide.attr( "aria-hidden", "true" );
- eventData.oldTab.attr({
- "aria-selected": "false",
- "aria-expanded": "false"
- });
- // If we're switching tabs, remove the old tab from the tab order.
- // If we're opening from collapsed state, remove the previous tab from the tab order.
- // If we're collapsing, then keep the collapsing tab in the tab order.
- if ( toShow.length && toHide.length ) {
- eventData.oldTab.attr( "tabIndex", -1 );
- } else if ( toShow.length ) {
- this.tabs.filter(function() {
- return $( this ).attr( "tabIndex" ) === 0;
- })
- .attr( "tabIndex", -1 );
- }
-
- toShow.attr( "aria-hidden", "false" );
- eventData.newTab.attr({
- "aria-selected": "true",
- "aria-expanded": "true",
- tabIndex: 0
- });
- },
-
- _activate: function( index ) {
- var anchor,
- active = this._findActive( index );
-
- // trying to activate the already active panel
- if ( active[ 0 ] === this.active[ 0 ] ) {
- return;
- }
-
- // trying to collapse, simulate a click on the current active header
- if ( !active.length ) {
- active = this.active;
- }
-
- anchor = active.find( ".ui-tabs-anchor" )[ 0 ];
- this._eventHandler({
- target: anchor,
- currentTarget: anchor,
- preventDefault: $.noop
- });
- },
-
- _findActive: function( index ) {
- return index === false ? $() : this.tabs.eq( index );
- },
-
- _getIndex: function( index ) {
- // meta-function to give users option to provide a href string instead of a numerical index.
- if ( typeof index === "string" ) {
- index = this.anchors.index( this.anchors.filter( "[href$='" + index + "']" ) );
- }
-
- return index;
- },
-
- _destroy: function() {
- if ( this.xhr ) {
- this.xhr.abort();
- }
-
- this.element.removeClass( "ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible" );
-
- this.tablist
- .removeClass( "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" )
- .removeAttr( "role" );
-
- this.anchors
- .removeClass( "ui-tabs-anchor" )
- .removeAttr( "role" )
- .removeAttr( "tabIndex" )
- .removeUniqueId();
-
- this.tablist.unbind( this.eventNamespace );
-
- this.tabs.add( this.panels ).each(function() {
- if ( $.data( this, "ui-tabs-destroy" ) ) {
- $( this ).remove();
- } else {
- $( this )
- .removeClass( "ui-state-default ui-state-active ui-state-disabled " +
- "ui-corner-top ui-corner-bottom ui-widget-content ui-tabs-active ui-tabs-panel" )
- .removeAttr( "tabIndex" )
- .removeAttr( "aria-live" )
- .removeAttr( "aria-busy" )
- .removeAttr( "aria-selected" )
- .removeAttr( "aria-labelledby" )
- .removeAttr( "aria-hidden" )
- .removeAttr( "aria-expanded" )
- .removeAttr( "role" );
- }
- });
-
- this.tabs.each(function() {
- var li = $( this ),
- prev = li.data( "ui-tabs-aria-controls" );
- if ( prev ) {
- li
- .attr( "aria-controls", prev )
- .removeData( "ui-tabs-aria-controls" );
- } else {
- li.removeAttr( "aria-controls" );
- }
- });
-
- this.panels.show();
-
- if ( this.options.heightStyle !== "content" ) {
- this.panels.css( "height", "" );
- }
- },
-
- enable: function( index ) {
- var disabled = this.options.disabled;
- if ( disabled === false ) {
- return;
- }
-
- if ( index === undefined ) {
- disabled = false;
- } else {
- index = this._getIndex( index );
- if ( $.isArray( disabled ) ) {
- disabled = $.map( disabled, function( num ) {
- return num !== index ? num : null;
- });
- } else {
- disabled = $.map( this.tabs, function( li, num ) {
- return num !== index ? num : null;
- });
- }
- }
- this._setupDisabled( disabled );
- },
-
- disable: function( index ) {
- var disabled = this.options.disabled;
- if ( disabled === true ) {
- return;
- }
-
- if ( index === undefined ) {
- disabled = true;
- } else {
- index = this._getIndex( index );
- if ( $.inArray( index, disabled ) !== -1 ) {
- return;
- }
- if ( $.isArray( disabled ) ) {
- disabled = $.merge( [ index ], disabled ).sort();
- } else {
- disabled = [ index ];
- }
- }
- this._setupDisabled( disabled );
- },
-
- load: function( index, event ) {
- index = this._getIndex( index );
- var that = this,
- tab = this.tabs.eq( index ),
- anchor = tab.find( ".ui-tabs-anchor" ),
- panel = this._getPanelForTab( tab ),
- eventData = {
- tab: tab,
- panel: panel
- };
-
- // not remote
- if ( this._isLocal( anchor[ 0 ] ) ) {
- return;
- }
-
- this.xhr = $.ajax( this._ajaxSettings( anchor, event, eventData ) );
-
- // support: jQuery <1.8
- // jQuery <1.8 returns false if the request is canceled in beforeSend,
- // but as of 1.8, $.ajax() always returns a jqXHR object.
- if ( this.xhr && this.xhr.statusText !== "canceled" ) {
- tab.addClass( "ui-tabs-loading" );
- panel.attr( "aria-busy", "true" );
-
- this.xhr
- .success(function( response ) {
- // support: jQuery <1.8
- // http://bugs.jquery.com/ticket/11778
- setTimeout(function() {
- panel.html( response );
- that._trigger( "load", event, eventData );
- }, 1 );
- })
- .complete(function( jqXHR, status ) {
- // support: jQuery <1.8
- // http://bugs.jquery.com/ticket/11778
- setTimeout(function() {
- if ( status === "abort" ) {
- that.panels.stop( false, true );
- }
-
- tab.removeClass( "ui-tabs-loading" );
- panel.removeAttr( "aria-busy" );
-
- if ( jqXHR === that.xhr ) {
- delete that.xhr;
- }
- }, 1 );
- });
- }
- },
-
- _ajaxSettings: function( anchor, event, eventData ) {
- var that = this;
- return {
- url: anchor.attr( "href" ),
- beforeSend: function( jqXHR, settings ) {
- return that._trigger( "beforeLoad", event,
- $.extend( { jqXHR: jqXHR, ajaxSettings: settings }, eventData ) );
- }
- };
- },
-
- _getPanelForTab: function( tab ) {
- var id = $( tab ).attr( "aria-controls" );
- return this.element.find( this._sanitizeSelector( "#" + id ) );
- }
-});
-
-
-/*!
- * jQuery UI Tooltip 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/tooltip/
- */
-
-
-var tooltip = $.widget( "ui.tooltip", {
- version: "1.11.3",
- options: {
- content: function() {
- // support: IE<9, Opera in jQuery <1.7
- // .text() can't accept undefined, so coerce to a string
- var title = $( this ).attr( "title" ) || "";
- // Escape title, since we're going from an attribute to raw HTML
- return $( "<a>" ).text( title ).html();
- },
- hide: true,
- // Disabled elements have inconsistent behavior across browsers (#8661)
- items: "[title]:not([disabled])",
- position: {
- my: "left top+15",
- at: "left bottom",
- collision: "flipfit flip"
- },
- show: true,
- tooltipClass: null,
- track: false,
-
- // callbacks
- close: null,
- open: null
- },
-
- _addDescribedBy: function( elem, id ) {
- var describedby = (elem.attr( "aria-describedby" ) || "").split( /\s+/ );
- describedby.push( id );
- elem
- .data( "ui-tooltip-id", id )
- .attr( "aria-describedby", $.trim( describedby.join( " " ) ) );
- },
-
- _removeDescribedBy: function( elem ) {
- var id = elem.data( "ui-tooltip-id" ),
- describedby = (elem.attr( "aria-describedby" ) || "").split( /\s+/ ),
- index = $.inArray( id, describedby );
-
- if ( index !== -1 ) {
- describedby.splice( index, 1 );
- }
-
- elem.removeData( "ui-tooltip-id" );
- describedby = $.trim( describedby.join( " " ) );
- if ( describedby ) {
- elem.attr( "aria-describedby", describedby );
- } else {
- elem.removeAttr( "aria-describedby" );
- }
- },
-
- _create: function() {
- this._on({
- mouseover: "open",
- focusin: "open"
- });
-
- // IDs of generated tooltips, needed for destroy
- this.tooltips = {};
-
- // IDs of parent tooltips where we removed the title attribute
- this.parents = {};
-
- if ( this.options.disabled ) {
- this._disable();
- }
-
- // Append the aria-live region so tooltips announce correctly
- this.liveRegion = $( "<div>" )
- .attr({
- role: "log",
- "aria-live": "assertive",
- "aria-relevant": "additions"
- })
- .addClass( "ui-helper-hidden-accessible" )
- .appendTo( this.document[ 0 ].body );
- },
-
- _setOption: function( key, value ) {
- var that = this;
-
- if ( key === "disabled" ) {
- this[ value ? "_disable" : "_enable" ]();
- this.options[ key ] = value;
- // disable element style changes
- return;
- }
-
- this._super( key, value );
-
- if ( key === "content" ) {
- $.each( this.tooltips, function( id, tooltipData ) {
- that._updateContent( tooltipData.element );
- });
- }
- },
-
- _disable: function() {
- var that = this;
-
- // close open tooltips
- $.each( this.tooltips, function( id, tooltipData ) {
- var event = $.Event( "blur" );
- event.target = event.currentTarget = tooltipData.element[ 0 ];
- that.close( event, true );
- });
-
- // remove title attributes to prevent native tooltips
- this.element.find( this.options.items ).addBack().each(function() {
- var element = $( this );
- if ( element.is( "[title]" ) ) {
- element
- .data( "ui-tooltip-title", element.attr( "title" ) )
- .removeAttr( "title" );
- }
- });
- },
-
- _enable: function() {
- // restore title attributes
- this.element.find( this.options.items ).addBack().each(function() {
- var element = $( this );
- if ( element.data( "ui-tooltip-title" ) ) {
- element.attr( "title", element.data( "ui-tooltip-title" ) );
- }
- });
- },
-
- open: function( event ) {
- var that = this,
- target = $( event ? event.target : this.element )
- // we need closest here due to mouseover bubbling,
- // but always pointing at the same event target
- .closest( this.options.items );
-
- // No element to show a tooltip for or the tooltip is already open
- if ( !target.length || target.data( "ui-tooltip-id" ) ) {
- return;
- }
-
- if ( target.attr( "title" ) ) {
- target.data( "ui-tooltip-title", target.attr( "title" ) );
- }
-
- target.data( "ui-tooltip-open", true );
-
- // kill parent tooltips, custom or native, for hover
- if ( event && event.type === "mouseover" ) {
- target.parents().each(function() {
- var parent = $( this ),
- blurEvent;
- if ( parent.data( "ui-tooltip-open" ) ) {
- blurEvent = $.Event( "blur" );
- blurEvent.target = blurEvent.currentTarget = this;
- that.close( blurEvent, true );
- }
- if ( parent.attr( "title" ) ) {
- parent.uniqueId();
- that.parents[ this.id ] = {
- element: this,
- title: parent.attr( "title" )
- };
- parent.attr( "title", "" );
- }
- });
- }
-
- this._updateContent( target, event );
- },
-
- _updateContent: function( target, event ) {
- var content,
- contentOption = this.options.content,
- that = this,
- eventType = event ? event.type : null;
-
- if ( typeof contentOption === "string" ) {
- return this._open( event, target, contentOption );
- }
-
- content = contentOption.call( target[0], function( response ) {
- // ignore async response if tooltip was closed already
- if ( !target.data( "ui-tooltip-open" ) ) {
- return;
- }
- // IE may instantly serve a cached response for ajax requests
- // delay this call to _open so the other call to _open runs first
- that._delay(function() {
- // jQuery creates a special event for focusin when it doesn't
- // exist natively. To improve performance, the native event
- // object is reused and the type is changed. Therefore, we can't
- // rely on the type being correct after the event finished
- // bubbling, so we set it back to the previous value. (#8740)
- if ( event ) {
- event.type = eventType;
- }
- this._open( event, target, response );
- });
- });
- if ( content ) {
- this._open( event, target, content );
- }
- },
-
- _open: function( event, target, content ) {
- var tooltipData, tooltip, events, delayedShow, a11yContent,
- positionOption = $.extend( {}, this.options.position );
-
- if ( !content ) {
- return;
- }
-
- // Content can be updated multiple times. If the tooltip already
- // exists, then just update the content and bail.
- tooltipData = this._find( target );
- if ( tooltipData ) {
- tooltipData.tooltip.find( ".ui-tooltip-content" ).html( content );
- return;
- }
-
- // if we have a title, clear it to prevent the native tooltip
- // we have to check first to avoid defining a title if none exists
- // (we don't want to cause an element to start matching [title])
- //
- // We use removeAttr only for key events, to allow IE to export the correct
- // accessible attributes. For mouse events, set to empty string to avoid
- // native tooltip showing up (happens only when removing inside mouseover).
- if ( target.is( "[title]" ) ) {
- if ( event && event.type === "mouseover" ) {
- target.attr( "title", "" );
- } else {
- target.removeAttr( "title" );
- }
- }
-
- tooltipData = this._tooltip( target );
- tooltip = tooltipData.tooltip;
- this._addDescribedBy( target, tooltip.attr( "id" ) );
- tooltip.find( ".ui-tooltip-content" ).html( content );
-
- // Support: Voiceover on OS X, JAWS on IE <= 9
- // JAWS announces deletions even when aria-relevant="additions"
- // Voiceover will sometimes re-read the entire log region's contents from the beginning
- this.liveRegion.children().hide();
- if ( content.clone ) {
- a11yContent = content.clone();
- a11yContent.removeAttr( "id" ).find( "[id]" ).removeAttr( "id" );
- } else {
- a11yContent = content;
- }
- $( "<div>" ).html( a11yContent ).appendTo( this.liveRegion );
-
- function position( event ) {
- positionOption.of = event;
- if ( tooltip.is( ":hidden" ) ) {
- return;
- }
- tooltip.position( positionOption );
- }
- if ( this.options.track && event && /^mouse/.test( event.type ) ) {
- this._on( this.document, {
- mousemove: position
- });
- // trigger once to override element-relative positioning
- position( event );
- } else {
- tooltip.position( $.extend({
- of: target
- }, this.options.position ) );
- }
-
- tooltip.hide();
-
- this._show( tooltip, this.options.show );
- // Handle tracking tooltips that are shown with a delay (#8644). As soon
- // as the tooltip is visible, position the tooltip using the most recent
- // event.
- if ( this.options.show && this.options.show.delay ) {
- delayedShow = this.delayedShow = setInterval(function() {
- if ( tooltip.is( ":visible" ) ) {
- position( positionOption.of );
- clearInterval( delayedShow );
- }
- }, $.fx.interval );
- }
-
- this._trigger( "open", event, { tooltip: tooltip } );
-
- events = {
- keyup: function( event ) {
- if ( event.keyCode === $.ui.keyCode.ESCAPE ) {
- var fakeEvent = $.Event(event);
- fakeEvent.currentTarget = target[0];
- this.close( fakeEvent, true );
- }
- }
- };
-
- // Only bind remove handler for delegated targets. Non-delegated
- // tooltips will handle this in destroy.
- if ( target[ 0 ] !== this.element[ 0 ] ) {
- events.remove = function() {
- this._removeTooltip( tooltip );
- };
- }
-
- if ( !event || event.type === "mouseover" ) {
- events.mouseleave = "close";
- }
- if ( !event || event.type === "focusin" ) {
- events.focusout = "close";
- }
- this._on( true, target, events );
- },
-
- close: function( event ) {
- var tooltip,
- that = this,
- target = $( event ? event.currentTarget : this.element ),
- tooltipData = this._find( target );
-
- // The tooltip may already be closed
- if ( !tooltipData ) {
- return;
- }
-
- tooltip = tooltipData.tooltip;
-
- // disabling closes the tooltip, so we need to track when we're closing
- // to avoid an infinite loop in case the tooltip becomes disabled on close
- if ( tooltipData.closing ) {
- return;
- }
-
- // Clear the interval for delayed tracking tooltips
- clearInterval( this.delayedShow );
-
- // only set title if we had one before (see comment in _open())
- // If the title attribute has changed since open(), don't restore
- if ( target.data( "ui-tooltip-title" ) && !target.attr( "title" ) ) {
- target.attr( "title", target.data( "ui-tooltip-title" ) );
- }
-
- this._removeDescribedBy( target );
-
- tooltipData.hiding = true;
- tooltip.stop( true );
- this._hide( tooltip, this.options.hide, function() {
- that._removeTooltip( $( this ) );
- });
-
- target.removeData( "ui-tooltip-open" );
- this._off( target, "mouseleave focusout keyup" );
-
- // Remove 'remove' binding only on delegated targets
- if ( target[ 0 ] !== this.element[ 0 ] ) {
- this._off( target, "remove" );
- }
- this._off( this.document, "mousemove" );
-
- if ( event && event.type === "mouseleave" ) {
- $.each( this.parents, function( id, parent ) {
- $( parent.element ).attr( "title", parent.title );
- delete that.parents[ id ];
- });
- }
-
- tooltipData.closing = true;
- this._trigger( "close", event, { tooltip: tooltip } );
- if ( !tooltipData.hiding ) {
- tooltipData.closing = false;
- }
- },
-
- _tooltip: function( element ) {
- var tooltip = $( "<div>" )
- .attr( "role", "tooltip" )
- .addClass( "ui-tooltip ui-widget ui-corner-all ui-widget-content " +
- ( this.options.tooltipClass || "" ) ),
- id = tooltip.uniqueId().attr( "id" );
-
- $( "<div>" )
- .addClass( "ui-tooltip-content" )
- .appendTo( tooltip );
-
- tooltip.appendTo( this.document[0].body );
-
- return this.tooltips[ id ] = {
- element: element,
- tooltip: tooltip
- };
- },
-
- _find: function( target ) {
- var id = target.data( "ui-tooltip-id" );
- return id ? this.tooltips[ id ] : null;
- },
-
- _removeTooltip: function( tooltip ) {
- tooltip.remove();
- delete this.tooltips[ tooltip.attr( "id" ) ];
- },
-
- _destroy: function() {
- var that = this;
-
- // close open tooltips
- $.each( this.tooltips, function( id, tooltipData ) {
- // Delegate to close method to handle common cleanup
- var event = $.Event( "blur" ),
- element = tooltipData.element;
- event.target = event.currentTarget = element[ 0 ];
- that.close( event, true );
-
- // Remove immediately; destroying an open tooltip doesn't use the
- // hide animation
- $( "#" + id ).remove();
-
- // Restore the title
- if ( element.data( "ui-tooltip-title" ) ) {
- // If the title attribute has changed since open(), don't restore
- if ( !element.attr( "title" ) ) {
- element.attr( "title", element.data( "ui-tooltip-title" ) );
- }
- element.removeData( "ui-tooltip-title" );
- }
- });
- this.liveRegion.remove();
- }
-});
-
-
-/*!
- * jQuery UI Effects 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/category/effects-core/
- */
-
-
-var dataSpace = "ui-effects-",
-
- // Create a local jQuery because jQuery Color relies on it and the
- // global may not exist with AMD and a custom build (#10199)
- jQuery = $;
-
-$.effects = {
- effect: {}
-};
-
-/*!
- * jQuery Color Animations v2.1.2
- * https://github.com/jquery/jquery-color
- *
- * Copyright 2014 jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * Date: Wed Jan 16 08:47:09 2013 -0600
- */
-(function( jQuery, undefined ) {
-
- var stepHooks = "backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor",
-
- // plusequals test for += 100 -= 100
- rplusequals = /^([\-+])=\s*(\d+\.?\d*)/,
- // a set of RE's that can match strings and generate color tuples.
- stringParsers = [ {
- re: /rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
- parse: function( execResult ) {
- return [
- execResult[ 1 ],
- execResult[ 2 ],
- execResult[ 3 ],
- execResult[ 4 ]
- ];
- }
- }, {
- re: /rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
- parse: function( execResult ) {
- return [
- execResult[ 1 ] * 2.55,
- execResult[ 2 ] * 2.55,
- execResult[ 3 ] * 2.55,
- execResult[ 4 ]
- ];
- }
- }, {
- // this regex ignores A-F because it's compared against an already lowercased string
- re: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,
- parse: function( execResult ) {
- return [
- parseInt( execResult[ 1 ], 16 ),
- parseInt( execResult[ 2 ], 16 ),
- parseInt( execResult[ 3 ], 16 )
- ];
- }
- }, {
- // this regex ignores A-F because it's compared against an already lowercased string
- re: /#([a-f0-9])([a-f0-9])([a-f0-9])/,
- parse: function( execResult ) {
- return [
- parseInt( execResult[ 1 ] + execResult[ 1 ], 16 ),
- parseInt( execResult[ 2 ] + execResult[ 2 ], 16 ),
- parseInt( execResult[ 3 ] + execResult[ 3 ], 16 )
- ];
- }
- }, {
- re: /hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
- space: "hsla",
- parse: function( execResult ) {
- return [
- execResult[ 1 ],
- execResult[ 2 ] / 100,
- execResult[ 3 ] / 100,
- execResult[ 4 ]
- ];
- }
- } ],
-
- // jQuery.Color( )
- color = jQuery.Color = function( color, green, blue, alpha ) {
- return new jQuery.Color.fn.parse( color, green, blue, alpha );
- },
- spaces = {
- rgba: {
- props: {
- red: {
- idx: 0,
- type: "byte"
- },
- green: {
- idx: 1,
- type: "byte"
- },
- blue: {
- idx: 2,
- type: "byte"
- }
- }
- },
-
- hsla: {
- props: {
- hue: {
- idx: 0,
- type: "degrees"
- },
- saturation: {
- idx: 1,
- type: "percent"
- },
- lightness: {
- idx: 2,
- type: "percent"
- }
- }
- }
- },
- propTypes = {
- "byte": {
- floor: true,
- max: 255
- },
- "percent": {
- max: 1
- },
- "degrees": {
- mod: 360,
- floor: true
- }
- },
- support = color.support = {},
-
- // element for support tests
- supportElem = jQuery( "<p>" )[ 0 ],
-
- // colors = jQuery.Color.names
- colors,
-
- // local aliases of functions called often
- each = jQuery.each;
-
-// determine rgba support immediately
-supportElem.style.cssText = "background-color:rgba(1,1,1,.5)";
-support.rgba = supportElem.style.backgroundColor.indexOf( "rgba" ) > -1;
-
-// define cache name and alpha properties
-// for rgba and hsla spaces
-each( spaces, function( spaceName, space ) {
- space.cache = "_" + spaceName;
- space.props.alpha = {
- idx: 3,
- type: "percent",
- def: 1
- };
-});
-
-function clamp( value, prop, allowEmpty ) {
- var type = propTypes[ prop.type ] || {};
-
- if ( value == null ) {
- return (allowEmpty || !prop.def) ? null : prop.def;
- }
-
- // ~~ is an short way of doing floor for positive numbers
- value = type.floor ? ~~value : parseFloat( value );
-
- // IE will pass in empty strings as value for alpha,
- // which will hit this case
- if ( isNaN( value ) ) {
- return prop.def;
- }
-
- if ( type.mod ) {
- // we add mod before modding to make sure that negatives values
- // get converted properly: -10 -> 350
- return (value + type.mod) % type.mod;
- }
-
- // for now all property types without mod have min and max
- return 0 > value ? 0 : type.max < value ? type.max : value;
-}
-
-function stringParse( string ) {
- var inst = color(),
- rgba = inst._rgba = [];
-
- string = string.toLowerCase();
-
- each( stringParsers, function( i, parser ) {
- var parsed,
- match = parser.re.exec( string ),
- values = match && parser.parse( match ),
- spaceName = parser.space || "rgba";
-
- if ( values ) {
- parsed = inst[ spaceName ]( values );
-
- // if this was an rgba parse the assignment might happen twice
- // oh well....
- inst[ spaces[ spaceName ].cache ] = parsed[ spaces[ spaceName ].cache ];
- rgba = inst._rgba = parsed._rgba;
-
- // exit each( stringParsers ) here because we matched
- return false;
- }
- });
-
- // Found a stringParser that handled it
- if ( rgba.length ) {
-
- // if this came from a parsed string, force "transparent" when alpha is 0
- // chrome, (and maybe others) return "transparent" as rgba(0,0,0,0)
- if ( rgba.join() === "0,0,0,0" ) {
- jQuery.extend( rgba, colors.transparent );
- }
- return inst;
- }
-
- // named colors
- return colors[ string ];
-}
-
-color.fn = jQuery.extend( color.prototype, {
- parse: function( red, green, blue, alpha ) {
- if ( red === undefined ) {
- this._rgba = [ null, null, null, null ];
- return this;
- }
- if ( red.jquery || red.nodeType ) {
- red = jQuery( red ).css( green );
- green = undefined;
- }
-
- var inst = this,
- type = jQuery.type( red ),
- rgba = this._rgba = [];
-
- // more than 1 argument specified - assume ( red, green, blue, alpha )
- if ( green !== undefined ) {
- red = [ red, green, blue, alpha ];
- type = "array";
- }
-
- if ( type === "string" ) {
- return this.parse( stringParse( red ) || colors._default );
- }
-
- if ( type === "array" ) {
- each( spaces.rgba.props, function( key, prop ) {
- rgba[ prop.idx ] = clamp( red[ prop.idx ], prop );
- });
- return this;
- }
-
- if ( type === "object" ) {
- if ( red instanceof color ) {
- each( spaces, function( spaceName, space ) {
- if ( red[ space.cache ] ) {
- inst[ space.cache ] = red[ space.cache ].slice();
- }
- });
- } else {
- each( spaces, function( spaceName, space ) {
- var cache = space.cache;
- each( space.props, function( key, prop ) {
-
- // if the cache doesn't exist, and we know how to convert
- if ( !inst[ cache ] && space.to ) {
-
- // if the value was null, we don't need to copy it
- // if the key was alpha, we don't need to copy it either
- if ( key === "alpha" || red[ key ] == null ) {
- return;
- }
- inst[ cache ] = space.to( inst._rgba );
- }
-
- // this is the only case where we allow nulls for ALL properties.
- // call clamp with alwaysAllowEmpty
- inst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true );
- });
-
- // everything defined but alpha?
- if ( inst[ cache ] && jQuery.inArray( null, inst[ cache ].slice( 0, 3 ) ) < 0 ) {
- // use the default of 1
- inst[ cache ][ 3 ] = 1;
- if ( space.from ) {
- inst._rgba = space.from( inst[ cache ] );
- }
- }
- });
- }
- return this;
- }
- },
- is: function( compare ) {
- var is = color( compare ),
- same = true,
- inst = this;
-
- each( spaces, function( _, space ) {
- var localCache,
- isCache = is[ space.cache ];
- if (isCache) {
- localCache = inst[ space.cache ] || space.to && space.to( inst._rgba ) || [];
- each( space.props, function( _, prop ) {
- if ( isCache[ prop.idx ] != null ) {
- same = ( isCache[ prop.idx ] === localCache[ prop.idx ] );
- return same;
- }
- });
- }
- return same;
- });
- return same;
- },
- _space: function() {
- var used = [],
- inst = this;
- each( spaces, function( spaceName, space ) {
- if ( inst[ space.cache ] ) {
- used.push( spaceName );
- }
- });
- return used.pop();
- },
- transition: function( other, distance ) {
- var end = color( other ),
- spaceName = end._space(),
- space = spaces[ spaceName ],
- startColor = this.alpha() === 0 ? color( "transparent" ) : this,
- start = startColor[ space.cache ] || space.to( startColor._rgba ),
- result = start.slice();
-
- end = end[ space.cache ];
- each( space.props, function( key, prop ) {
- var index = prop.idx,
- startValue = start[ index ],
- endValue = end[ index ],
- type = propTypes[ prop.type ] || {};
-
- // if null, don't override start value
- if ( endValue === null ) {
- return;
- }
- // if null - use end
- if ( startValue === null ) {
- result[ index ] = endValue;
- } else {
- if ( type.mod ) {
- if ( endValue - startValue > type.mod / 2 ) {
- startValue += type.mod;
- } else if ( startValue - endValue > type.mod / 2 ) {
- startValue -= type.mod;
- }
- }
- result[ index ] = clamp( ( endValue - startValue ) * distance + startValue, prop );
- }
- });
- return this[ spaceName ]( result );
- },
- blend: function( opaque ) {
- // if we are already opaque - return ourself
- if ( this._rgba[ 3 ] === 1 ) {
- return this;
- }
-
- var rgb = this._rgba.slice(),
- a = rgb.pop(),
- blend = color( opaque )._rgba;
-
- return color( jQuery.map( rgb, function( v, i ) {
- return ( 1 - a ) * blend[ i ] + a * v;
- }));
- },
- toRgbaString: function() {
- var prefix = "rgba(",
- rgba = jQuery.map( this._rgba, function( v, i ) {
- return v == null ? ( i > 2 ? 1 : 0 ) : v;
- });
-
- if ( rgba[ 3 ] === 1 ) {
- rgba.pop();
- prefix = "rgb(";
- }
-
- return prefix + rgba.join() + ")";
- },
- toHslaString: function() {
- var prefix = "hsla(",
- hsla = jQuery.map( this.hsla(), function( v, i ) {
- if ( v == null ) {
- v = i > 2 ? 1 : 0;
- }
-
- // catch 1 and 2
- if ( i && i < 3 ) {
- v = Math.round( v * 100 ) + "%";
- }
- return v;
- });
-
- if ( hsla[ 3 ] === 1 ) {
- hsla.pop();
- prefix = "hsl(";
- }
- return prefix + hsla.join() + ")";
- },
- toHexString: function( includeAlpha ) {
- var rgba = this._rgba.slice(),
- alpha = rgba.pop();
-
- if ( includeAlpha ) {
- rgba.push( ~~( alpha * 255 ) );
- }
-
- return "#" + jQuery.map( rgba, function( v ) {
-
- // default to 0 when nulls exist
- v = ( v || 0 ).toString( 16 );
- return v.length === 1 ? "0" + v : v;
- }).join("");
- },
- toString: function() {
- return this._rgba[ 3 ] === 0 ? "transparent" : this.toRgbaString();
- }
-});
-color.fn.parse.prototype = color.fn;
-
-// hsla conversions adapted from:
-
-function hue2rgb( p, q, h ) {
- h = ( h + 1 ) % 1;
- if ( h * 6 < 1 ) {
- return p + ( q - p ) * h * 6;
- }
- if ( h * 2 < 1) {
- return q;
- }
- if ( h * 3 < 2 ) {
- return p + ( q - p ) * ( ( 2 / 3 ) - h ) * 6;
- }
- return p;
-}
-
-spaces.hsla.to = function( rgba ) {
- if ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) {
- return [ null, null, null, rgba[ 3 ] ];
- }
- var r = rgba[ 0 ] / 255,
- g = rgba[ 1 ] / 255,
- b = rgba[ 2 ] / 255,
- a = rgba[ 3 ],
- max = Math.max( r, g, b ),
- min = Math.min( r, g, b ),
- diff = max - min,
- add = max + min,
- l = add * 0.5,
- h, s;
-
- if ( min === max ) {
- h = 0;
- } else if ( r === max ) {
- h = ( 60 * ( g - b ) / diff ) + 360;
- } else if ( g === max ) {
- h = ( 60 * ( b - r ) / diff ) + 120;
- } else {
- h = ( 60 * ( r - g ) / diff ) + 240;
- }
-
- // chroma (diff) == 0 means greyscale which, by definition, saturation = 0%
- // otherwise, saturation is based on the ratio of chroma (diff) to lightness (add)
- if ( diff === 0 ) {
- s = 0;
- } else if ( l <= 0.5 ) {
- s = diff / add;
- } else {
- s = diff / ( 2 - add );
- }
- return [ Math.round(h) % 360, s, l, a == null ? 1 : a ];
-};
-
-spaces.hsla.from = function( hsla ) {
- if ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) {
- return [ null, null, null, hsla[ 3 ] ];
- }
- var h = hsla[ 0 ] / 360,
- s = hsla[ 1 ],
- l = hsla[ 2 ],
- a = hsla[ 3 ],
- q = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s,
- p = 2 * l - q;
-
- return [
- Math.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ),
- Math.round( hue2rgb( p, q, h ) * 255 ),
- Math.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ),
- a
- ];
-};
-
-each( spaces, function( spaceName, space ) {
- var props = space.props,
- cache = space.cache,
- to = space.to,
- from = space.from;
-
- // makes rgba() and hsla()
- color.fn[ spaceName ] = function( value ) {
-
- // generate a cache for this space if it doesn't exist
- if ( to && !this[ cache ] ) {
- this[ cache ] = to( this._rgba );
- }
- if ( value === undefined ) {
- return this[ cache ].slice();
- }
-
- var ret,
- type = jQuery.type( value ),
- arr = ( type === "array" || type === "object" ) ? value : arguments,
- local = this[ cache ].slice();
-
- each( props, function( key, prop ) {
- var val = arr[ type === "object" ? key : prop.idx ];
- if ( val == null ) {
- val = local[ prop.idx ];
- }
- local[ prop.idx ] = clamp( val, prop );
- });
-
- if ( from ) {
- ret = color( from( local ) );
- ret[ cache ] = local;
- return ret;
- } else {
- return color( local );
- }
- };
-
- // makes red() green() blue() alpha() hue() saturation() lightness()
- each( props, function( key, prop ) {
- // alpha is included in more than one space
- if ( color.fn[ key ] ) {
- return;
- }
- color.fn[ key ] = function( value ) {
- var vtype = jQuery.type( value ),
- fn = ( key === "alpha" ? ( this._hsla ? "hsla" : "rgba" ) : spaceName ),
- local = this[ fn ](),
- cur = local[ prop.idx ],
- match;
-
- if ( vtype === "undefined" ) {
- return cur;
- }
-
- if ( vtype === "function" ) {
- value = value.call( this, cur );
- vtype = jQuery.type( value );
- }
- if ( value == null && prop.empty ) {
- return this;
- }
- if ( vtype === "string" ) {
- match = rplusequals.exec( value );
- if ( match ) {
- value = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === "+" ? 1 : -1 );
- }
- }
- local[ prop.idx ] = value;
- return this[ fn ]( local );
- };
- });
-});
-
-// add cssHook and .fx.step function for each named hook.
-// accept a space separated string of properties
-color.hook = function( hook ) {
- var hooks = hook.split( " " );
- each( hooks, function( i, hook ) {
- jQuery.cssHooks[ hook ] = {
- set: function( elem, value ) {
- var parsed, curElem,
- backgroundColor = "";
-
- if ( value !== "transparent" && ( jQuery.type( value ) !== "string" || ( parsed = stringParse( value ) ) ) ) {
- value = color( parsed || value );
- if ( !support.rgba && value._rgba[ 3 ] !== 1 ) {
- curElem = hook === "backgroundColor" ? elem.parentNode : elem;
- while (
- (backgroundColor === "" || backgroundColor === "transparent") &&
- curElem && curElem.style
- ) {
- try {
- backgroundColor = jQuery.css( curElem, "backgroundColor" );
- curElem = curElem.parentNode;
- } catch ( e ) {
- }
- }
-
- value = value.blend( backgroundColor && backgroundColor !== "transparent" ?
- backgroundColor :
- "_default" );
- }
-
- value = value.toRgbaString();
- }
- try {
- elem.style[ hook ] = value;
- } catch ( e ) {
- // wrapped to prevent IE from throwing errors on "invalid" values like 'auto' or 'inherit'
- }
- }
- };
- jQuery.fx.step[ hook ] = function( fx ) {
- if ( !fx.colorInit ) {
- fx.start = color( fx.elem, hook );
- fx.end = color( fx.end );
- fx.colorInit = true;
- }
- jQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) );
- };
- });
-
-};
-
-color.hook( stepHooks );
-
-jQuery.cssHooks.borderColor = {
- expand: function( value ) {
- var expanded = {};
-
- each( [ "Top", "Right", "Bottom", "Left" ], function( i, part ) {
- expanded[ "border" + part + "Color" ] = value;
- });
- return expanded;
- }
-};
-
-// Basic color names only.
-// Usage of any of the other color names requires adding yourself or including
-// jquery.color.svg-names.js.
-colors = jQuery.Color.names = {
- // 4.1. Basic color keywords
- aqua: "#00ffff",
- black: "#000000",
- blue: "#0000ff",
- fuchsia: "#ff00ff",
- gray: "#808080",
- green: "#008000",
- lime: "#00ff00",
- maroon: "#800000",
- navy: "#000080",
- olive: "#808000",
- purple: "#800080",
- red: "#ff0000",
- silver: "#c0c0c0",
- teal: "#008080",
- white: "#ffffff",
- yellow: "#ffff00",
-
- // 4.2.3. "transparent" color keyword
- transparent: [ null, null, null, 0 ],
-
- _default: "#ffffff"
-};
-
-})( jQuery );
-
-/******************************************************************************/
-/****************************** CLASS ANIMATIONS ******************************/
-/******************************************************************************/
-(function() {
-
-var classAnimationActions = [ "add", "remove", "toggle" ],
- shorthandStyles = {
- border: 1,
- borderBottom: 1,
- borderColor: 1,
- borderLeft: 1,
- borderRight: 1,
- borderTop: 1,
- borderWidth: 1,
- margin: 1,
- padding: 1
- };
-
-$.each([ "borderLeftStyle", "borderRightStyle", "borderBottomStyle", "borderTopStyle" ], function( _, prop ) {
- $.fx.step[ prop ] = function( fx ) {
- if ( fx.end !== "none" && !fx.setAttr || fx.pos === 1 && !fx.setAttr ) {
- jQuery.style( fx.elem, prop, fx.end );
- fx.setAttr = true;
- }
- };
-});
-
-function getElementStyles( elem ) {
- var key, len,
- style = elem.ownerDocument.defaultView ?
- elem.ownerDocument.defaultView.getComputedStyle( elem, null ) :
- elem.currentStyle,
- styles = {};
-
- if ( style && style.length && style[ 0 ] && style[ style[ 0 ] ] ) {
- len = style.length;
- while ( len-- ) {
- key = style[ len ];
- if ( typeof style[ key ] === "string" ) {
- styles[ $.camelCase( key ) ] = style[ key ];
- }
- }
- // support: Opera, IE <9
- } else {
- for ( key in style ) {
- if ( typeof style[ key ] === "string" ) {
- styles[ key ] = style[ key ];
- }
- }
- }
-
- return styles;
-}
-
-function styleDifference( oldStyle, newStyle ) {
- var diff = {},
- name, value;
-
- for ( name in newStyle ) {
- value = newStyle[ name ];
- if ( oldStyle[ name ] !== value ) {
- if ( !shorthandStyles[ name ] ) {
- if ( $.fx.step[ name ] || !isNaN( parseFloat( value ) ) ) {
- diff[ name ] = value;
- }
- }
- }
- }
-
- return diff;
-}
-
-// support: jQuery <1.8
-if ( !$.fn.addBack ) {
- $.fn.addBack = function( selector ) {
- return this.add( selector == null ?
- this.prevObject : this.prevObject.filter( selector )
- );
- };
-}
-
-$.effects.animateClass = function( value, duration, easing, callback ) {
- var o = $.speed( duration, easing, callback );
-
- return this.queue( function() {
- var animated = $( this ),
- baseClass = animated.attr( "class" ) || "",
- applyClassChange,
- allAnimations = o.children ? animated.find( "*" ).addBack() : animated;
-
- // map the animated objects to store the original styles.
- allAnimations = allAnimations.map(function() {
- var el = $( this );
- return {
- el: el,
- start: getElementStyles( this )
- };
- });
-
- // apply class change
- applyClassChange = function() {
- $.each( classAnimationActions, function(i, action) {
- if ( value[ action ] ) {
- animated[ action + "Class" ]( value[ action ] );
- }
- });
- };
- applyClassChange();
-
- // map all animated objects again - calculate new styles and diff
- allAnimations = allAnimations.map(function() {
- this.end = getElementStyles( this.el[ 0 ] );
- this.diff = styleDifference( this.start, this.end );
- return this;
- });
-
- // apply original class
- animated.attr( "class", baseClass );
-
- // map all animated objects again - this time collecting a promise
- allAnimations = allAnimations.map(function() {
- var styleInfo = this,
- dfd = $.Deferred(),
- opts = $.extend({}, o, {
- queue: false,
- complete: function() {
- dfd.resolve( styleInfo );
- }
- });
-
- this.el.animate( this.diff, opts );
- return dfd.promise();
- });
-
- // once all animations have completed:
- $.when.apply( $, allAnimations.get() ).done(function() {
-
- // set the final class
- applyClassChange();
-
- // for each animated element,
- // clear all css properties that were animated
- $.each( arguments, function() {
- var el = this.el;
- $.each( this.diff, function(key) {
- el.css( key, "" );
- });
- });
-
- // this is guarnteed to be there if you use jQuery.speed()
- // it also handles dequeuing the next anim...
- o.complete.call( animated[ 0 ] );
- });
- });
-};
-
-$.fn.extend({
- addClass: (function( orig ) {
- return function( classNames, speed, easing, callback ) {
- return speed ?
- $.effects.animateClass.call( this,
- { add: classNames }, speed, easing, callback ) :
- orig.apply( this, arguments );
- };
- })( $.fn.addClass ),
-
- removeClass: (function( orig ) {
- return function( classNames, speed, easing, callback ) {
- return arguments.length > 1 ?
- $.effects.animateClass.call( this,
- { remove: classNames }, speed, easing, callback ) :
- orig.apply( this, arguments );
- };
- })( $.fn.removeClass ),
-
- toggleClass: (function( orig ) {
- return function( classNames, force, speed, easing, callback ) {
- if ( typeof force === "boolean" || force === undefined ) {
- if ( !speed ) {
- // without speed parameter
- return orig.apply( this, arguments );
- } else {
- return $.effects.animateClass.call( this,
- (force ? { add: classNames } : { remove: classNames }),
- speed, easing, callback );
- }
- } else {
- // without force parameter
- return $.effects.animateClass.call( this,
- { toggle: classNames }, force, speed, easing );
- }
- };
- })( $.fn.toggleClass ),
-
- switchClass: function( remove, add, speed, easing, callback) {
- return $.effects.animateClass.call( this, {
- add: add,
- remove: remove
- }, speed, easing, callback );
- }
-});
-
-})();
-
-/******************************************************************************/
-/*********************************** EFFECTS **********************************/
-/******************************************************************************/
-
-(function() {
-
-$.extend( $.effects, {
- version: "1.11.3",
-
- // Saves a set of properties in a data storage
- save: function( element, set ) {
- for ( var i = 0; i < set.length; i++ ) {
- if ( set[ i ] !== null ) {
- element.data( dataSpace + set[ i ], element[ 0 ].style[ set[ i ] ] );
- }
- }
- },
-
- // Restores a set of previously saved properties from a data storage
- restore: function( element, set ) {
- var val, i;
- for ( i = 0; i < set.length; i++ ) {
- if ( set[ i ] !== null ) {
- val = element.data( dataSpace + set[ i ] );
- // support: jQuery 1.6.2
- // http://bugs.jquery.com/ticket/9917
- // jQuery 1.6.2 incorrectly returns undefined for any falsy value.
- // We can't differentiate between "" and 0 here, so we just assume
- // empty string since it's likely to be a more common value...
- if ( val === undefined ) {
- val = "";
- }
- element.css( set[ i ], val );
- }
- }
- },
-
- setMode: function( el, mode ) {
- if (mode === "toggle") {
- mode = el.is( ":hidden" ) ? "show" : "hide";
- }
- return mode;
- },
-
- // Translates a [top,left] array into a baseline value
- // this should be a little more flexible in the future to handle a string & hash
- getBaseline: function( origin, original ) {
- var y, x;
- switch ( origin[ 0 ] ) {
- case "top": y = 0; break;
- case "middle": y = 0.5; break;
- case "bottom": y = 1; break;
- default: y = origin[ 0 ] / original.height;
- }
- switch ( origin[ 1 ] ) {
- case "left": x = 0; break;
- case "center": x = 0.5; break;
- case "right": x = 1; break;
- default: x = origin[ 1 ] / original.width;
- }
- return {
- x: x,
- y: y
- };
- },
-
- // Wraps the element around a wrapper that copies position properties
- createWrapper: function( element ) {
-
- // if the element is already wrapped, return it
- if ( element.parent().is( ".ui-effects-wrapper" )) {
- return element.parent();
- }
-
- // wrap the element
- var props = {
- width: element.outerWidth(true),
- height: element.outerHeight(true),
- "float": element.css( "float" )
- },
- wrapper = $( "<div></div>" )
- .addClass( "ui-effects-wrapper" )
- .css({
- fontSize: "100%",
- background: "transparent",
- border: "none",
- margin: 0,
- padding: 0
- }),
- // Store the size in case width/height are defined in % - Fixes #5245
- size = {
- width: element.width(),
- height: element.height()
- },
- active = document.activeElement;
-
- // support: Firefox
- // Firefox incorrectly exposes anonymous content
- // https://bugzilla.mozilla.org/show_bug.cgi?id=561664
- try {
- active.id;
- } catch ( e ) {
- active = document.body;
- }
-
- element.wrap( wrapper );
-
- // Fixes #7595 - Elements lose focus when wrapped.
- if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {
- $( active ).focus();
- }
-
- wrapper = element.parent(); //Hotfix for jQuery 1.4 since some change in wrap() seems to actually lose the reference to the wrapped element
-
- // transfer positioning properties to the wrapper
- if ( element.css( "position" ) === "static" ) {
- wrapper.css({ position: "relative" });
- element.css({ position: "relative" });
- } else {
- $.extend( props, {
- position: element.css( "position" ),
- zIndex: element.css( "z-index" )
- });
- $.each([ "top", "left", "bottom", "right" ], function(i, pos) {
- props[ pos ] = element.css( pos );
- if ( isNaN( parseInt( props[ pos ], 10 ) ) ) {
- props[ pos ] = "auto";
- }
- });
- element.css({
- position: "relative",
- top: 0,
- left: 0,
- right: "auto",
- bottom: "auto"
- });
- }
- element.css(size);
-
- return wrapper.css( props ).show();
- },
-
- removeWrapper: function( element ) {
- var active = document.activeElement;
-
- if ( element.parent().is( ".ui-effects-wrapper" ) ) {
- element.parent().replaceWith( element );
-
- // Fixes #7595 - Elements lose focus when wrapped.
- if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {
- $( active ).focus();
- }
- }
-
- return element;
- },
-
- setTransition: function( element, list, factor, value ) {
- value = value || {};
- $.each( list, function( i, x ) {
- var unit = element.cssUnit( x );
- if ( unit[ 0 ] > 0 ) {
- value[ x ] = unit[ 0 ] * factor + unit[ 1 ];
- }
- });
- return value;
- }
-});
-
-// return an effect options object for the given parameters:
-function _normalizeArguments( effect, options, speed, callback ) {
-
- // allow passing all options as the first parameter
- if ( $.isPlainObject( effect ) ) {
- options = effect;
- effect = effect.effect;
- }
-
- // convert to an object
- effect = { effect: effect };
-
- // catch (effect, null, ...)
- if ( options == null ) {
- options = {};
- }
-
- // catch (effect, callback)
- if ( $.isFunction( options ) ) {
- callback = options;
- speed = null;
- options = {};
- }
-
- // catch (effect, speed, ?)
- if ( typeof options === "number" || $.fx.speeds[ options ] ) {
- callback = speed;
- speed = options;
- options = {};
- }
-
- // catch (effect, options, callback)
- if ( $.isFunction( speed ) ) {
- callback = speed;
- speed = null;
- }
-
- // add options to effect
- if ( options ) {
- $.extend( effect, options );
- }
-
- speed = speed || options.duration;
- effect.duration = $.fx.off ? 0 :
- typeof speed === "number" ? speed :
- speed in $.fx.speeds ? $.fx.speeds[ speed ] :
- $.fx.speeds._default;
-
- effect.complete = callback || options.complete;
-
- return effect;
-}
-
-function standardAnimationOption( option ) {
- // Valid standard speeds (nothing, number, named speed)
- if ( !option || typeof option === "number" || $.fx.speeds[ option ] ) {
- return true;
- }
-
- // Invalid strings - treat as "normal" speed
- if ( typeof option === "string" && !$.effects.effect[ option ] ) {
- return true;
- }
-
- // Complete callback
- if ( $.isFunction( option ) ) {
- return true;
- }
-
- // Options hash (but not naming an effect)
- if ( typeof option === "object" && !option.effect ) {
- return true;
- }
-
- // Didn't match any standard API
- return false;
-}
-
-$.fn.extend({
- effect: function( /* effect, options, speed, callback */ ) {
- var args = _normalizeArguments.apply( this, arguments ),
- mode = args.mode,
- queue = args.queue,
- effectMethod = $.effects.effect[ args.effect ];
-
- if ( $.fx.off || !effectMethod ) {
- // delegate to the original method (e.g., .show()) if possible
- if ( mode ) {
- return this[ mode ]( args.duration, args.complete );
- } else {
- return this.each( function() {
- if ( args.complete ) {
- args.complete.call( this );
- }
- });
- }
- }
-
- function run( next ) {
- var elem = $( this ),
- complete = args.complete,
- mode = args.mode;
-
- function done() {
- if ( $.isFunction( complete ) ) {
- complete.call( elem[0] );
- }
- if ( $.isFunction( next ) ) {
- next();
- }
- }
-
- // If the element already has the correct final state, delegate to
- // the core methods so the internal tracking of "olddisplay" works.
- if ( elem.is( ":hidden" ) ? mode === "hide" : mode === "show" ) {
- elem[ mode ]();
- done();
- } else {
- effectMethod.call( elem[0], args, done );
- }
- }
-
- return queue === false ? this.each( run ) : this.queue( queue || "fx", run );
- },
-
- show: (function( orig ) {
- return function( option ) {
- if ( standardAnimationOption( option ) ) {
- return orig.apply( this, arguments );
- } else {
- var args = _normalizeArguments.apply( this, arguments );
- args.mode = "show";
- return this.effect.call( this, args );
- }
- };
- })( $.fn.show ),
-
- hide: (function( orig ) {
- return function( option ) {
- if ( standardAnimationOption( option ) ) {
- return orig.apply( this, arguments );
- } else {
- var args = _normalizeArguments.apply( this, arguments );
- args.mode = "hide";
- return this.effect.call( this, args );
- }
- };
- })( $.fn.hide ),
-
- toggle: (function( orig ) {
- return function( option ) {
- if ( standardAnimationOption( option ) || typeof option === "boolean" ) {
- return orig.apply( this, arguments );
- } else {
- var args = _normalizeArguments.apply( this, arguments );
- args.mode = "toggle";
- return this.effect.call( this, args );
- }
- };
- })( $.fn.toggle ),
-
- // helper functions
- cssUnit: function(key) {
- var style = this.css( key ),
- val = [];
-
- $.each( [ "em", "px", "%", "pt" ], function( i, unit ) {
- if ( style.indexOf( unit ) > 0 ) {
- val = [ parseFloat( style ), unit ];
- }
- });
- return val;
- }
-});
-
-})();
-
-/******************************************************************************/
-/*********************************** EASING ***********************************/
-/******************************************************************************/
-
-(function() {
-
-// based on easing equations from Robert Penner (http://www.robertpenner.com/easing)
-
-var baseEasings = {};
-
-$.each( [ "Quad", "Cubic", "Quart", "Quint", "Expo" ], function( i, name ) {
- baseEasings[ name ] = function( p ) {
- return Math.pow( p, i + 2 );
- };
-});
-
-$.extend( baseEasings, {
- Sine: function( p ) {
- return 1 - Math.cos( p * Math.PI / 2 );
- },
- Circ: function( p ) {
- return 1 - Math.sqrt( 1 - p * p );
- },
- Elastic: function( p ) {
- return p === 0 || p === 1 ? p :
- -Math.pow( 2, 8 * (p - 1) ) * Math.sin( ( (p - 1) * 80 - 7.5 ) * Math.PI / 15 );
- },
- Back: function( p ) {
- return p * p * ( 3 * p - 2 );
- },
- Bounce: function( p ) {
- var pow2,
- bounce = 4;
-
- while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {}
- return 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 );
- }
-});
-
-$.each( baseEasings, function( name, easeIn ) {
- $.easing[ "easeIn" + name ] = easeIn;
- $.easing[ "easeOut" + name ] = function( p ) {
- return 1 - easeIn( 1 - p );
- };
- $.easing[ "easeInOut" + name ] = function( p ) {
- return p < 0.5 ?
- easeIn( p * 2 ) / 2 :
- 1 - easeIn( p * -2 + 2 ) / 2;
- };
-});
-
-})();
-
-var effect = $.effects;
-
-
-/*!
- * jQuery UI Effects Blind 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/blind-effect/
- */
-
-
-var effectBlind = $.effects.effect.blind = function( o, done ) {
- // Create element
- var el = $( this ),
- rvertical = /up|down|vertical/,
- rpositivemotion = /up|left|vertical|horizontal/,
- props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
- mode = $.effects.setMode( el, o.mode || "hide" ),
- direction = o.direction || "up",
- vertical = rvertical.test( direction ),
- ref = vertical ? "height" : "width",
- ref2 = vertical ? "top" : "left",
- motion = rpositivemotion.test( direction ),
- animation = {},
- show = mode === "show",
- wrapper, distance, margin;
-
- // if already wrapped, the wrapper's properties are my property. #6245
- if ( el.parent().is( ".ui-effects-wrapper" ) ) {
- $.effects.save( el.parent(), props );
- } else {
- $.effects.save( el, props );
- }
- el.show();
- wrapper = $.effects.createWrapper( el ).css({
- overflow: "hidden"
- });
-
- distance = wrapper[ ref ]();
- margin = parseFloat( wrapper.css( ref2 ) ) || 0;
-
- animation[ ref ] = show ? distance : 0;
- if ( !motion ) {
- el
- .css( vertical ? "bottom" : "right", 0 )
- .css( vertical ? "top" : "left", "auto" )
- .css({ position: "absolute" });
-
- animation[ ref2 ] = show ? margin : distance + margin;
- }
-
- // start at 0 if we are showing
- if ( show ) {
- wrapper.css( ref, 0 );
- if ( !motion ) {
- wrapper.css( ref2, margin + distance );
- }
- }
-
- // Animate
- wrapper.animate( animation, {
- duration: o.duration,
- easing: o.easing,
- queue: false,
- complete: function() {
- if ( mode === "hide" ) {
- el.hide();
- }
- $.effects.restore( el, props );
- $.effects.removeWrapper( el );
- done();
- }
- });
-};
-
-
-/*!
- * jQuery UI Effects Bounce 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/bounce-effect/
- */
-
-
-var effectBounce = $.effects.effect.bounce = function( o, done ) {
- var el = $( this ),
- props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
-
- // defaults:
- mode = $.effects.setMode( el, o.mode || "effect" ),
- hide = mode === "hide",
- show = mode === "show",
- direction = o.direction || "up",
- distance = o.distance,
- times = o.times || 5,
-
- // number of internal animations
- anims = times * 2 + ( show || hide ? 1 : 0 ),
- speed = o.duration / anims,
- easing = o.easing,
-
- // utility:
- ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
- motion = ( direction === "up" || direction === "left" ),
- i,
- upAnim,
- downAnim,
-
- // we will need to re-assemble the queue to stack our animations in place
- queue = el.queue(),
- queuelen = queue.length;
-
- // Avoid touching opacity to prevent clearType and PNG issues in IE
- if ( show || hide ) {
- props.push( "opacity" );
- }
-
- $.effects.save( el, props );
- el.show();
- $.effects.createWrapper( el ); // Create Wrapper
-
- // default distance for the BIGGEST bounce is the outer Distance / 3
- if ( !distance ) {
- distance = el[ ref === "top" ? "outerHeight" : "outerWidth" ]() / 3;
- }
-
- if ( show ) {
- downAnim = { opacity: 1 };
- downAnim[ ref ] = 0;
-
- // if we are showing, force opacity 0 and set the initial position
- // then do the "first" animation
- el.css( "opacity", 0 )
- .css( ref, motion ? -distance * 2 : distance * 2 )
- .animate( downAnim, speed, easing );
- }
-
- // start at the smallest distance if we are hiding
- if ( hide ) {
- distance = distance / Math.pow( 2, times - 1 );
- }
-
- downAnim = {};
- downAnim[ ref ] = 0;
- // Bounces up/down/left/right then back to 0 -- times * 2 animations happen here
- for ( i = 0; i < times; i++ ) {
- upAnim = {};
- upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance;
-
- el.animate( upAnim, speed, easing )
- .animate( downAnim, speed, easing );
-
- distance = hide ? distance * 2 : distance / 2;
- }
-
- // Last Bounce when Hiding
- if ( hide ) {
- upAnim = { opacity: 0 };
- upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance;
-
- el.animate( upAnim, speed, easing );
- }
-
- el.queue(function() {
- if ( hide ) {
- el.hide();
- }
- $.effects.restore( el, props );
- $.effects.removeWrapper( el );
- done();
- });
-
- // inject all the animations we just queued to be first in line (after "inprogress")
- if ( queuelen > 1) {
- queue.splice.apply( queue,
- [ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );
- }
- el.dequeue();
-
-};
-
-
-/*!
- * jQuery UI Effects Clip 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/clip-effect/
- */
-
-
-var effectClip = $.effects.effect.clip = function( o, done ) {
- // Create element
- var el = $( this ),
- props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
- mode = $.effects.setMode( el, o.mode || "hide" ),
- show = mode === "show",
- direction = o.direction || "vertical",
- vert = direction === "vertical",
- size = vert ? "height" : "width",
- position = vert ? "top" : "left",
- animation = {},
- wrapper, animate, distance;
-
- // Save & Show
- $.effects.save( el, props );
- el.show();
-
- // Create Wrapper
- wrapper = $.effects.createWrapper( el ).css({
- overflow: "hidden"
- });
- animate = ( el[0].tagName === "IMG" ) ? wrapper : el;
- distance = animate[ size ]();
-
- // Shift
- if ( show ) {
- animate.css( size, 0 );
- animate.css( position, distance / 2 );
- }
-
- // Create Animation Object:
- animation[ size ] = show ? distance : 0;
- animation[ position ] = show ? 0 : distance / 2;
-
- // Animate
- animate.animate( animation, {
- queue: false,
- duration: o.duration,
- easing: o.easing,
- complete: function() {
- if ( !show ) {
- el.hide();
- }
- $.effects.restore( el, props );
- $.effects.removeWrapper( el );
- done();
- }
- });
-
-};
-
-
-/*!
- * jQuery UI Effects Drop 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/drop-effect/
- */
-
-
-var effectDrop = $.effects.effect.drop = function( o, done ) {
-
- var el = $( this ),
- props = [ "position", "top", "bottom", "left", "right", "opacity", "height", "width" ],
- mode = $.effects.setMode( el, o.mode || "hide" ),
- show = mode === "show",
- direction = o.direction || "left",
- ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
- motion = ( direction === "up" || direction === "left" ) ? "pos" : "neg",
- animation = {
- opacity: show ? 1 : 0
- },
- distance;
-
- // Adjust
- $.effects.save( el, props );
- el.show();
- $.effects.createWrapper( el );
-
- distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ) / 2;
-
- if ( show ) {
- el
- .css( "opacity", 0 )
- .css( ref, motion === "pos" ? -distance : distance );
- }
-
- // Animation
- animation[ ref ] = ( show ?
- ( motion === "pos" ? "+=" : "-=" ) :
- ( motion === "pos" ? "-=" : "+=" ) ) +
- distance;
-
- // Animate
- el.animate( animation, {
- queue: false,
- duration: o.duration,
- easing: o.easing,
- complete: function() {
- if ( mode === "hide" ) {
- el.hide();
- }
- $.effects.restore( el, props );
- $.effects.removeWrapper( el );
- done();
- }
- });
-};
-
-
-/*!
- * jQuery UI Effects Explode 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/explode-effect/
- */
-
-
-var effectExplode = $.effects.effect.explode = function( o, done ) {
-
- var rows = o.pieces ? Math.round( Math.sqrt( o.pieces ) ) : 3,
- cells = rows,
- el = $( this ),
- mode = $.effects.setMode( el, o.mode || "hide" ),
- show = mode === "show",
-
- // show and then visibility:hidden the element before calculating offset
- offset = el.show().css( "visibility", "hidden" ).offset(),
-
- // width and height of a piece
- width = Math.ceil( el.outerWidth() / cells ),
- height = Math.ceil( el.outerHeight() / rows ),
- pieces = [],
-
- // loop
- i, j, left, top, mx, my;
-
- // children animate complete:
- function childComplete() {
- pieces.push( this );
- if ( pieces.length === rows * cells ) {
- animComplete();
- }
- }
-
- // clone the element for each row and cell.
- for ( i = 0; i < rows ; i++ ) { // ===>
- top = offset.top + i * height;
- my = i - ( rows - 1 ) / 2 ;
-
- for ( j = 0; j < cells ; j++ ) { // |||
- left = offset.left + j * width;
- mx = j - ( cells - 1 ) / 2 ;
-
- // Create a clone of the now hidden main element that will be absolute positioned
- // within a wrapper div off the -left and -top equal to size of our pieces
- el
- .clone()
- .appendTo( "body" )
- .wrap( "<div></div>" )
- .css({
- position: "absolute",
- visibility: "visible",
- left: -j * width,
- top: -i * height
- })
-
- // select the wrapper - make it overflow: hidden and absolute positioned based on
- // where the original was located +left and +top equal to the size of pieces
- .parent()
- .addClass( "ui-effects-explode" )
- .css({
- position: "absolute",
- overflow: "hidden",
- width: width,
- height: height,
- left: left + ( show ? mx * width : 0 ),
- top: top + ( show ? my * height : 0 ),
- opacity: show ? 0 : 1
- }).animate({
- left: left + ( show ? 0 : mx * width ),
- top: top + ( show ? 0 : my * height ),
- opacity: show ? 1 : 0
- }, o.duration || 500, o.easing, childComplete );
- }
- }
-
- function animComplete() {
- el.css({
- visibility: "visible"
- });
- $( pieces ).remove();
- if ( !show ) {
- el.hide();
- }
- done();
- }
-};
-
-
-/*!
- * jQuery UI Effects Fade 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/fade-effect/
- */
-
-
-var effectFade = $.effects.effect.fade = function( o, done ) {
- var el = $( this ),
- mode = $.effects.setMode( el, o.mode || "toggle" );
-
- el.animate({
- opacity: mode
- }, {
- queue: false,
- duration: o.duration,
- easing: o.easing,
- complete: done
- });
-};
-
-
-/*!
- * jQuery UI Effects Fold 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/fold-effect/
- */
-
-
-var effectFold = $.effects.effect.fold = function( o, done ) {
-
- // Create element
- var el = $( this ),
- props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
- mode = $.effects.setMode( el, o.mode || "hide" ),
- show = mode === "show",
- hide = mode === "hide",
- size = o.size || 15,
- percent = /([0-9]+)%/.exec( size ),
- horizFirst = !!o.horizFirst,
- widthFirst = show !== horizFirst,
- ref = widthFirst ? [ "width", "height" ] : [ "height", "width" ],
- duration = o.duration / 2,
- wrapper, distance,
- animation1 = {},
- animation2 = {};
-
- $.effects.save( el, props );
- el.show();
-
- // Create Wrapper
- wrapper = $.effects.createWrapper( el ).css({
- overflow: "hidden"
- });
- distance = widthFirst ?
- [ wrapper.width(), wrapper.height() ] :
- [ wrapper.height(), wrapper.width() ];
-
- if ( percent ) {
- size = parseInt( percent[ 1 ], 10 ) / 100 * distance[ hide ? 0 : 1 ];
- }
- if ( show ) {
- wrapper.css( horizFirst ? {
- height: 0,
- width: size
- } : {
- height: size,
- width: 0
- });
- }
-
- // Animation
- animation1[ ref[ 0 ] ] = show ? distance[ 0 ] : size;
- animation2[ ref[ 1 ] ] = show ? distance[ 1 ] : 0;
-
- // Animate
- wrapper
- .animate( animation1, duration, o.easing )
- .animate( animation2, duration, o.easing, function() {
- if ( hide ) {
- el.hide();
- }
- $.effects.restore( el, props );
- $.effects.removeWrapper( el );
- done();
- });
-
-};
-
-
-/*!
- * jQuery UI Effects Highlight 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/highlight-effect/
- */
-
-
-var effectHighlight = $.effects.effect.highlight = function( o, done ) {
- var elem = $( this ),
- props = [ "backgroundImage", "backgroundColor", "opacity" ],
- mode = $.effects.setMode( elem, o.mode || "show" ),
- animation = {
- backgroundColor: elem.css( "backgroundColor" )
- };
-
- if (mode === "hide") {
- animation.opacity = 0;
- }
-
- $.effects.save( elem, props );
-
- elem
- .show()
- .css({
- backgroundImage: "none",
- backgroundColor: o.color || "#ffff99"
- })
- .animate( animation, {
- queue: false,
- duration: o.duration,
- easing: o.easing,
- complete: function() {
- if ( mode === "hide" ) {
- elem.hide();
- }
- $.effects.restore( elem, props );
- done();
- }
- });
-};
-
-
-/*!
- * jQuery UI Effects Size 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/size-effect/
- */
-
-
-var effectSize = $.effects.effect.size = function( o, done ) {
-
- // Create element
- var original, baseline, factor,
- el = $( this ),
- props0 = [ "position", "top", "bottom", "left", "right", "width", "height", "overflow", "opacity" ],
-
- // Always restore
- props1 = [ "position", "top", "bottom", "left", "right", "overflow", "opacity" ],
-
- // Copy for children
- props2 = [ "width", "height", "overflow" ],
- cProps = [ "fontSize" ],
- vProps = [ "borderTopWidth", "borderBottomWidth", "paddingTop", "paddingBottom" ],
- hProps = [ "borderLeftWidth", "borderRightWidth", "paddingLeft", "paddingRight" ],
-
- // Set options
- mode = $.effects.setMode( el, o.mode || "effect" ),
- restore = o.restore || mode !== "effect",
- scale = o.scale || "both",
- origin = o.origin || [ "middle", "center" ],
- position = el.css( "position" ),
- props = restore ? props0 : props1,
- zero = {
- height: 0,
- width: 0,
- outerHeight: 0,
- outerWidth: 0
- };
-
- if ( mode === "show" ) {
- el.show();
- }
- original = {
- height: el.height(),
- width: el.width(),
- outerHeight: el.outerHeight(),
- outerWidth: el.outerWidth()
- };
-
- if ( o.mode === "toggle" && mode === "show" ) {
- el.from = o.to || zero;
- el.to = o.from || original;
- } else {
- el.from = o.from || ( mode === "show" ? zero : original );
- el.to = o.to || ( mode === "hide" ? zero : original );
- }
-
- // Set scaling factor
- factor = {
- from: {
- y: el.from.height / original.height,
- x: el.from.width / original.width
- },
- to: {
- y: el.to.height / original.height,
- x: el.to.width / original.width
- }
- };
-
- // Scale the css box
- if ( scale === "box" || scale === "both" ) {
-
- // Vertical props scaling
- if ( factor.from.y !== factor.to.y ) {
- props = props.concat( vProps );
- el.from = $.effects.setTransition( el, vProps, factor.from.y, el.from );
- el.to = $.effects.setTransition( el, vProps, factor.to.y, el.to );
- }
-
- // Horizontal props scaling
- if ( factor.from.x !== factor.to.x ) {
- props = props.concat( hProps );
- el.from = $.effects.setTransition( el, hProps, factor.from.x, el.from );
- el.to = $.effects.setTransition( el, hProps, factor.to.x, el.to );
- }
- }
-
- // Scale the content
- if ( scale === "content" || scale === "both" ) {
-
- // Vertical props scaling
- if ( factor.from.y !== factor.to.y ) {
- props = props.concat( cProps ).concat( props2 );
- el.from = $.effects.setTransition( el, cProps, factor.from.y, el.from );
- el.to = $.effects.setTransition( el, cProps, factor.to.y, el.to );
- }
- }
-
- $.effects.save( el, props );
- el.show();
- $.effects.createWrapper( el );
- el.css( "overflow", "hidden" ).css( el.from );
-
- // Adjust
- if (origin) { // Calculate baseline shifts
- baseline = $.effects.getBaseline( origin, original );
- el.from.top = ( original.outerHeight - el.outerHeight() ) * baseline.y;
- el.from.left = ( original.outerWidth - el.outerWidth() ) * baseline.x;
- el.to.top = ( original.outerHeight - el.to.outerHeight ) * baseline.y;
- el.to.left = ( original.outerWidth - el.to.outerWidth ) * baseline.x;
- }
- el.css( el.from ); // set top & left
-
- // Animate
- if ( scale === "content" || scale === "both" ) { // Scale the children
-
- // Add margins/font-size
- vProps = vProps.concat([ "marginTop", "marginBottom" ]).concat(cProps);
- hProps = hProps.concat([ "marginLeft", "marginRight" ]);
- props2 = props0.concat(vProps).concat(hProps);
-
- el.find( "*[width]" ).each( function() {
- var child = $( this ),
- c_original = {
- height: child.height(),
- width: child.width(),
- outerHeight: child.outerHeight(),
- outerWidth: child.outerWidth()
- };
- if (restore) {
- $.effects.save(child, props2);
- }
-
- child.from = {
- height: c_original.height * factor.from.y,
- width: c_original.width * factor.from.x,
- outerHeight: c_original.outerHeight * factor.from.y,
- outerWidth: c_original.outerWidth * factor.from.x
- };
- child.to = {
- height: c_original.height * factor.to.y,
- width: c_original.width * factor.to.x,
- outerHeight: c_original.height * factor.to.y,
- outerWidth: c_original.width * factor.to.x
- };
-
- // Vertical props scaling
- if ( factor.from.y !== factor.to.y ) {
- child.from = $.effects.setTransition( child, vProps, factor.from.y, child.from );
- child.to = $.effects.setTransition( child, vProps, factor.to.y, child.to );
- }
-
- // Horizontal props scaling
- if ( factor.from.x !== factor.to.x ) {
- child.from = $.effects.setTransition( child, hProps, factor.from.x, child.from );
- child.to = $.effects.setTransition( child, hProps, factor.to.x, child.to );
- }
-
- // Animate children
- child.css( child.from );
- child.animate( child.to, o.duration, o.easing, function() {
-
- // Restore children
- if ( restore ) {
- $.effects.restore( child, props2 );
- }
- });
- });
- }
-
- // Animate
- el.animate( el.to, {
- queue: false,
- duration: o.duration,
- easing: o.easing,
- complete: function() {
- if ( el.to.opacity === 0 ) {
- el.css( "opacity", el.from.opacity );
- }
- if ( mode === "hide" ) {
- el.hide();
- }
- $.effects.restore( el, props );
- if ( !restore ) {
-
- // we need to calculate our new positioning based on the scaling
- if ( position === "static" ) {
- el.css({
- position: "relative",
- top: el.to.top,
- left: el.to.left
- });
- } else {
- $.each([ "top", "left" ], function( idx, pos ) {
- el.css( pos, function( _, str ) {
- var val = parseInt( str, 10 ),
- toRef = idx ? el.to.left : el.to.top;
-
- // if original was "auto", recalculate the new value from wrapper
- if ( str === "auto" ) {
- return toRef + "px";
- }
-
- return val + toRef + "px";
- });
- });
- }
- }
-
- $.effects.removeWrapper( el );
- done();
- }
- });
-
-};
-
-
-/*!
- * jQuery UI Effects Scale 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/scale-effect/
- */
-
-
-var effectScale = $.effects.effect.scale = function( o, done ) {
-
- // Create element
- var el = $( this ),
- options = $.extend( true, {}, o ),
- mode = $.effects.setMode( el, o.mode || "effect" ),
- percent = parseInt( o.percent, 10 ) ||
- ( parseInt( o.percent, 10 ) === 0 ? 0 : ( mode === "hide" ? 0 : 100 ) ),
- direction = o.direction || "both",
- origin = o.origin,
- original = {
- height: el.height(),
- width: el.width(),
- outerHeight: el.outerHeight(),
- outerWidth: el.outerWidth()
- },
- factor = {
- y: direction !== "horizontal" ? (percent / 100) : 1,
- x: direction !== "vertical" ? (percent / 100) : 1
- };
-
- // We are going to pass this effect to the size effect:
- options.effect = "size";
- options.queue = false;
- options.complete = done;
-
- // Set default origin and restore for show/hide
- if ( mode !== "effect" ) {
- options.origin = origin || [ "middle", "center" ];
- options.restore = true;
- }
-
- options.from = o.from || ( mode === "show" ? {
- height: 0,
- width: 0,
- outerHeight: 0,
- outerWidth: 0
- } : original );
- options.to = {
- height: original.height * factor.y,
- width: original.width * factor.x,
- outerHeight: original.outerHeight * factor.y,
- outerWidth: original.outerWidth * factor.x
- };
-
- // Fade option to support puff
- if ( options.fade ) {
- if ( mode === "show" ) {
- options.from.opacity = 0;
- options.to.opacity = 1;
- }
- if ( mode === "hide" ) {
- options.from.opacity = 1;
- options.to.opacity = 0;
- }
- }
-
- // Animate
- el.effect( options );
-
-};
-
-
-/*!
- * jQuery UI Effects Puff 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/puff-effect/
- */
-
-
-var effectPuff = $.effects.effect.puff = function( o, done ) {
- var elem = $( this ),
- mode = $.effects.setMode( elem, o.mode || "hide" ),
- hide = mode === "hide",
- percent = parseInt( o.percent, 10 ) || 150,
- factor = percent / 100,
- original = {
- height: elem.height(),
- width: elem.width(),
- outerHeight: elem.outerHeight(),
- outerWidth: elem.outerWidth()
- };
-
- $.extend( o, {
- effect: "scale",
- queue: false,
- fade: true,
- mode: mode,
- complete: done,
- percent: hide ? percent : 100,
- from: hide ?
- original :
- {
- height: original.height * factor,
- width: original.width * factor,
- outerHeight: original.outerHeight * factor,
- outerWidth: original.outerWidth * factor
- }
- });
-
- elem.effect( o );
-};
-
-
-/*!
- * jQuery UI Effects Pulsate 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/pulsate-effect/
- */
-
-
-var effectPulsate = $.effects.effect.pulsate = function( o, done ) {
- var elem = $( this ),
- mode = $.effects.setMode( elem, o.mode || "show" ),
- show = mode === "show",
- hide = mode === "hide",
- showhide = ( show || mode === "hide" ),
-
- // showing or hiding leaves of the "last" animation
- anims = ( ( o.times || 5 ) * 2 ) + ( showhide ? 1 : 0 ),
- duration = o.duration / anims,
- animateTo = 0,
- queue = elem.queue(),
- queuelen = queue.length,
- i;
-
- if ( show || !elem.is(":visible")) {
- elem.css( "opacity", 0 ).show();
- animateTo = 1;
- }
-
- // anims - 1 opacity "toggles"
- for ( i = 1; i < anims; i++ ) {
- elem.animate({
- opacity: animateTo
- }, duration, o.easing );
- animateTo = 1 - animateTo;
- }
-
- elem.animate({
- opacity: animateTo
- }, duration, o.easing);
-
- elem.queue(function() {
- if ( hide ) {
- elem.hide();
- }
- done();
- });
-
- // We just queued up "anims" animations, we need to put them next in the queue
- if ( queuelen > 1 ) {
- queue.splice.apply( queue,
- [ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );
- }
- elem.dequeue();
-};
-
-
-/*!
- * jQuery UI Effects Shake 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/shake-effect/
- */
-
-
-var effectShake = $.effects.effect.shake = function( o, done ) {
-
- var el = $( this ),
- props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
- mode = $.effects.setMode( el, o.mode || "effect" ),
- direction = o.direction || "left",
- distance = o.distance || 20,
- times = o.times || 3,
- anims = times * 2 + 1,
- speed = Math.round( o.duration / anims ),
- ref = (direction === "up" || direction === "down") ? "top" : "left",
- positiveMotion = (direction === "up" || direction === "left"),
- animation = {},
- animation1 = {},
- animation2 = {},
- i,
-
- // we will need to re-assemble the queue to stack our animations in place
- queue = el.queue(),
- queuelen = queue.length;
-
- $.effects.save( el, props );
- el.show();
- $.effects.createWrapper( el );
-
- // Animation
- animation[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance;
- animation1[ ref ] = ( positiveMotion ? "+=" : "-=" ) + distance * 2;
- animation2[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance * 2;
-
- // Animate
- el.animate( animation, speed, o.easing );
-
- // Shakes
- for ( i = 1; i < times; i++ ) {
- el.animate( animation1, speed, o.easing ).animate( animation2, speed, o.easing );
- }
- el
- .animate( animation1, speed, o.easing )
- .animate( animation, speed / 2, o.easing )
- .queue(function() {
- if ( mode === "hide" ) {
- el.hide();
- }
- $.effects.restore( el, props );
- $.effects.removeWrapper( el );
- done();
- });
-
- // inject all the animations we just queued to be first in line (after "inprogress")
- if ( queuelen > 1) {
- queue.splice.apply( queue,
- [ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );
- }
- el.dequeue();
-
-};
-
-
-/*!
- * jQuery UI Effects Slide 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/slide-effect/
- */
-
-
-var effectSlide = $.effects.effect.slide = function( o, done ) {
-
- // Create element
- var el = $( this ),
- props = [ "position", "top", "bottom", "left", "right", "width", "height" ],
- mode = $.effects.setMode( el, o.mode || "show" ),
- show = mode === "show",
- direction = o.direction || "left",
- ref = (direction === "up" || direction === "down") ? "top" : "left",
- positiveMotion = (direction === "up" || direction === "left"),
- distance,
- animation = {};
-
- // Adjust
- $.effects.save( el, props );
- el.show();
- distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]( true );
-
- $.effects.createWrapper( el ).css({
- overflow: "hidden"
- });
-
- if ( show ) {
- el.css( ref, positiveMotion ? (isNaN(distance) ? "-" + distance : -distance) : distance );
- }
-
- // Animation
- animation[ ref ] = ( show ?
- ( positiveMotion ? "+=" : "-=") :
- ( positiveMotion ? "-=" : "+=")) +
- distance;
-
- // Animate
- el.animate( animation, {
- queue: false,
- duration: o.duration,
- easing: o.easing,
- complete: function() {
- if ( mode === "hide" ) {
- el.hide();
- }
- $.effects.restore( el, props );
- $.effects.removeWrapper( el );
- done();
- }
- });
-};
-
-
-/*!
- * jQuery UI Effects Transfer 1.11.3
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- *
- * http://api.jqueryui.com/transfer-effect/
- */
-
-
-var effectTransfer = $.effects.effect.transfer = function( o, done ) {
- var elem = $( this ),
- target = $( o.to ),
- targetFixed = target.css( "position" ) === "fixed",
- body = $("body"),
- fixTop = targetFixed ? body.scrollTop() : 0,
- fixLeft = targetFixed ? body.scrollLeft() : 0,
- endPosition = target.offset(),
- animation = {
- top: endPosition.top - fixTop,
- left: endPosition.left - fixLeft,
- height: target.innerHeight(),
- width: target.innerWidth()
- },
- startPosition = elem.offset(),
- transfer = $( "<div class='ui-effects-transfer'></div>" )
- .appendTo( document.body )
- .addClass( o.className )
- .css({
- top: startPosition.top - fixTop,
- left: startPosition.left - fixLeft,
- height: elem.innerHeight(),
- width: elem.innerWidth(),
- position: targetFixed ? "fixed" : "absolute"
- })
- .animate( animation, o.duration, o.easing, function() {
- transfer.remove();
- done();
- });
-};
-
-
-
-}));
\ No newline at end of file
+++ /dev/null
-/*!
- * jQuery Cookie Plugin v1.4.1
- * https://github.com/carhartl/jquery-cookie
- *
- * Copyright 2013 Klaus Hartl
- * Released under the MIT license
- */
-(function (factory) {
- if (typeof define === 'function' && define.amd) {
- // AMD
- define(['jquery'], factory);
- } else if (typeof exports === 'object') {
- // CommonJS
- factory(require('jquery'));
- } else {
- // Browser globals
- factory(jQuery);
- }
-}(function ($) {
-
- var pluses = /\+/g;
-
- function encode(s) {
- return config.raw ? s : encodeURIComponent(s);
- }
-
- function decode(s) {
- return config.raw ? s : decodeURIComponent(s);
- }
-
- function stringifyCookieValue(value) {
- return encode(config.json ? JSON.stringify(value) : String(value));
- }
-
- function parseCookieValue(s) {
- if (s.indexOf('"') === 0) {
- // This is a quoted cookie as according to RFC2068, unescape...
- s = s.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, '\\');
- }
-
- try {
- // Replace server-side written pluses with spaces.
- // If we can't decode the cookie, ignore it, it's unusable.
- // If we can't parse the cookie, ignore it, it's unusable.
- s = decodeURIComponent(s.replace(pluses, ' '));
- return config.json ? JSON.parse(s) : s;
- } catch(e) {}
- }
-
- function read(s, converter) {
- var value = config.raw ? s : parseCookieValue(s);
- return $.isFunction(converter) ? converter(value) : value;
- }
-
- var config = $.cookie = function (key, value, options) {
-
- // Write
-
- if (value !== undefined && !$.isFunction(value)) {
- options = $.extend({}, config.defaults, options);
-
- if (typeof options.expires === 'number') {
- var days = options.expires, t = options.expires = new Date();
- t.setTime(+t + days * 864e+5);
- }
-
- return (document.cookie = [
- encode(key), '=', stringifyCookieValue(value),
- options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
- options.path ? '; path=' + options.path : '',
- options.domain ? '; domain=' + options.domain : '',
- options.secure ? '; secure' : ''
- ].join(''));
- }
-
- // Read
-
- var result = key ? undefined : {};
-
- // To prevent the for loop in the first place assign an empty array
- // in case there are no cookies at all. Also prevents odd result when
- // calling $.cookie().
- var cookies = document.cookie ? document.cookie.split('; ') : [];
-
- for (var i = 0, l = cookies.length; i < l; i++) {
- var parts = cookies[i].split('=');
- var name = decode(parts.shift());
- var cookie = parts.join('=');
-
- if (key && key === name) {
- // If second argument (value) is a function it's a converter...
- result = read(cookie, value);
- break;
- }
-
- // Prevent storing a cookie that we couldn't decode.
- if (!key && (cookie = read(cookie)) !== undefined) {
- result[name] = cookie;
- }
- }
-
- return result;
- };
-
- config.defaults = {};
-
- $.removeCookie = function (key, options) {
- if ($.cookie(key) === undefined) {
- return false;
- }
-
- // Must not alter options, thus extending a fresh object...
- $.cookie(key, '', $.extend({}, options, { expires: -1 }));
- return !$.cookie(key);
- };
-
-}));
+++ /dev/null
-/*!
- * jQuery Form Plugin
- * version: 3.51.0-2014.06.20
- * Requires jQuery v1.5 or later
- * Copyright (c) 2014 M. Alsup
- * Examples and documentation at: http://malsup.com/jquery/form/
- * Project repository: https://github.com/malsup/form
- * Dual licensed under the MIT and GPL licenses.
- * https://github.com/malsup/form#copyright-and-license
- */
-/*global ActiveXObject */
-
-// AMD support
-(function (factory) {
- "use strict";
- if (typeof define === 'function' && define.amd) {
- // using AMD; register as anon module
- define(['jquery'], factory);
- } else {
- // no AMD; invoke directly
- factory( (typeof(jQuery) != 'undefined') ? jQuery : window.Zepto );
- }
-}
-
-(function($) {
-"use strict";
-
-/*
- Usage Note:
- -----------
- Do not use both ajaxSubmit and ajaxForm on the same form. These
- functions are mutually exclusive. Use ajaxSubmit if you want
- to bind your own submit handler to the form. For example,
-
- $(document).ready(function() {
- $('#myForm').on('submit', function(e) {
- e.preventDefault(); // <-- important
- $(this).ajaxSubmit({
- target: '#output'
- });
- });
- });
-
- Use ajaxForm when you want the plugin to manage all the event binding
- for you. For example,
-
- $(document).ready(function() {
- $('#myForm').ajaxForm({
- target: '#output'
- });
- });
-
- You can also use ajaxForm with delegation (requires jQuery v1.7+), so the
- form does not have to exist when you invoke ajaxForm:
-
- $('#myForm').ajaxForm({
- delegation: true,
- target: '#output'
- });
-
- When using ajaxForm, the ajaxSubmit function will be invoked for you
- at the appropriate time.
-*/
-
-/**
- * Feature detection
- */
-var feature = {};
-feature.fileapi = $("<input type='file'/>").get(0).files !== undefined;
-feature.formdata = window.FormData !== undefined;
-
-var hasProp = !!$.fn.prop;
-
-// attr2 uses prop when it can but checks the return type for
-// an expected string. this accounts for the case where a form
-// contains inputs with names like "action" or "method"; in those
-// cases "prop" returns the element
-$.fn.attr2 = function() {
- if ( ! hasProp ) {
- return this.attr.apply(this, arguments);
- }
- var val = this.prop.apply(this, arguments);
- if ( ( val && val.jquery ) || typeof val === 'string' ) {
- return val;
- }
- return this.attr.apply(this, arguments);
-};
-
-/**
- * ajaxSubmit() provides a mechanism for immediately submitting
- * an HTML form using AJAX.
- */
-$.fn.ajaxSubmit = function(options) {
- /*jshint scripturl:true */
-
- // fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
- if (!this.length) {
- log('ajaxSubmit: skipping submit process - no element selected');
- return this;
- }
-
- var method, action, url, $form = this;
-
- if (typeof options == 'function') {
- options = { success: options };
- }
- else if ( options === undefined ) {
- options = {};
- }
-
- method = options.type || this.attr2('method');
- action = options.url || this.attr2('action');
-
- url = (typeof action === 'string') ? $.trim(action) : '';
- url = url || window.location.href || '';
- if (url) {
- // clean url (don't include hash vaue)
- url = (url.match(/^([^#]+)/)||[])[1];
- }
-
- options = $.extend(true, {
- url: url,
- success: $.ajaxSettings.success,
- type: method || $.ajaxSettings.type,
- iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
- }, options);
-
- // hook for manipulating the form data before it is extracted;
- // convenient for use with rich editors like tinyMCE or FCKEditor
- var veto = {};
- this.trigger('form-pre-serialize', [this, options, veto]);
- if (veto.veto) {
- log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
- return this;
- }
-
- // provide opportunity to alter form data before it is serialized
- if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
- log('ajaxSubmit: submit aborted via beforeSerialize callback');
- return this;
- }
-
- var traditional = options.traditional;
- if ( traditional === undefined ) {
- traditional = $.ajaxSettings.traditional;
- }
-
- var elements = [];
- var qx, a = this.formToArray(options.semantic, elements);
- if (options.data) {
- options.extraData = options.data;
- qx = $.param(options.data, traditional);
- }
-
- // give pre-submit callback an opportunity to abort the submit
- if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
- log('ajaxSubmit: submit aborted via beforeSubmit callback');
- return this;
- }
-
- // fire vetoable 'validate' event
- this.trigger('form-submit-validate', [a, this, options, veto]);
- if (veto.veto) {
- log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
- return this;
- }
-
- var q = $.param(a, traditional);
- if (qx) {
- q = ( q ? (q + '&' + qx) : qx );
- }
- if (options.type.toUpperCase() == 'GET') {
- options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
- options.data = null; // data is null for 'get'
- }
- else {
- options.data = q; // data is the query string for 'post'
- }
-
- var callbacks = [];
- if (options.resetForm) {
- callbacks.push(function() { $form.resetForm(); });
- }
- if (options.clearForm) {
- callbacks.push(function() { $form.clearForm(options.includeHidden); });
- }
-
- // perform a load on the target only if dataType is not provided
- if (!options.dataType && options.target) {
- var oldSuccess = options.success || function(){};
- callbacks.push(function(data) {
- var fn = options.replaceTarget ? 'replaceWith' : 'html';
- $(options.target)[fn](data).each(oldSuccess, arguments);
- });
- }
- else if (options.success) {
- callbacks.push(options.success);
- }
-
- options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg
- var context = options.context || this ; // jQuery 1.4+ supports scope context
- for (var i=0, max=callbacks.length; i < max; i++) {
- callbacks[i].apply(context, [data, status, xhr || $form, $form]);
- }
- };
-
- if (options.error) {
- var oldError = options.error;
- options.error = function(xhr, status, error) {
- var context = options.context || this;
- oldError.apply(context, [xhr, status, error, $form]);
- };
- }
-
- if (options.complete) {
- var oldComplete = options.complete;
- options.complete = function(xhr, status) {
- var context = options.context || this;
- oldComplete.apply(context, [xhr, status, $form]);
- };
- }
-
- // are there files to upload?
-
- // [value] (issue #113), also see comment:
- // https://github.com/malsup/form/commit/588306aedba1de01388032d5f42a60159eea9228#commitcomment-2180219
- var fileInputs = $('input[type=file]:enabled', this).filter(function() { return $(this).val() !== ''; });
-
- var hasFileInputs = fileInputs.length > 0;
- var mp = 'multipart/form-data';
- var multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);
-
- var fileAPI = feature.fileapi && feature.formdata;
- log("fileAPI :" + fileAPI);
- var shouldUseFrame = (hasFileInputs || multipart) && !fileAPI;
-
- var jqxhr;
-
- // options.iframe allows user to force iframe mode
- // 06-NOV-09: now defaulting to iframe mode if file input is detected
- if (options.iframe !== false && (options.iframe || shouldUseFrame)) {
- // hack to fix Safari hang (thanks to Tim Molendijk for this)
- // see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
- if (options.closeKeepAlive) {
- $.get(options.closeKeepAlive, function() {
- jqxhr = fileUploadIframe(a);
- });
- }
- else {
- jqxhr = fileUploadIframe(a);
- }
- }
- else if ((hasFileInputs || multipart) && fileAPI) {
- jqxhr = fileUploadXhr(a);
- }
- else {
- jqxhr = $.ajax(options);
- }
-
- $form.removeData('jqxhr').data('jqxhr', jqxhr);
-
- // clear element array
- for (var k=0; k < elements.length; k++) {
- elements[k] = null;
- }
-
- // fire 'notify' event
- this.trigger('form-submit-notify', [this, options]);
- return this;
-
- // utility fn for deep serialization
- function deepSerialize(extraData){
- var serialized = $.param(extraData, options.traditional).split('&');
- var len = serialized.length;
- var result = [];
- var i, part;
- for (i=0; i < len; i++) {
- // #252; undo param space replacement
- serialized[i] = serialized[i].replace(/\+/g,' ');
- part = serialized[i].split('=');
- // #278; use array instead of object storage, favoring array serializations
- result.push([decodeURIComponent(part[0]), decodeURIComponent(part[1])]);
- }
- return result;
- }
-
- // XMLHttpRequest Level 2 file uploads (big hat tip to francois2metz)
- function fileUploadXhr(a) {
- var formdata = new FormData();
-
- for (var i=0; i < a.length; i++) {
- formdata.append(a[i].name, a[i].value);
- }
-
- if (options.extraData) {
- var serializedData = deepSerialize(options.extraData);
- for (i=0; i < serializedData.length; i++) {
- if (serializedData[i]) {
- formdata.append(serializedData[i][0], serializedData[i][1]);
- }
- }
- }
-
- options.data = null;
-
- var s = $.extend(true, {}, $.ajaxSettings, options, {
- contentType: false,
- processData: false,
- cache: false,
- type: method || 'POST'
- });
-
- if (options.uploadProgress) {
- // workaround because jqXHR does not expose upload property
- s.xhr = function() {
- var xhr = $.ajaxSettings.xhr();
- if (xhr.upload) {
- xhr.upload.addEventListener('progress', function(event) {
- var percent = 0;
- var position = event.loaded || event.position; /*event.position is deprecated*/
- var total = event.total;
- if (event.lengthComputable) {
- percent = Math.ceil(position / total * 100);
- }
- options.uploadProgress(event, position, total, percent);
- }, false);
- }
- return xhr;
- };
- }
-
- s.data = null;
- var beforeSend = s.beforeSend;
- s.beforeSend = function(xhr, o) {
- //Send FormData() provided by user
- if (options.formData) {
- o.data = options.formData;
- }
- else {
- o.data = formdata;
- }
- if(beforeSend) {
- beforeSend.call(this, xhr, o);
- }
- };
- return $.ajax(s);
- }
-
- // private function for handling file uploads (hat tip to YAHOO!)
- function fileUploadIframe(a) {
- var form = $form[0], el, i, s, g, id, $io, io, xhr, sub, n, timedOut, timeoutHandle;
- var deferred = $.Deferred();
-
- // #341
- deferred.abort = function(status) {
- xhr.abort(status);
- };
-
- if (a) {
- // ensure that every serialized input is still enabled
- for (i=0; i < elements.length; i++) {
- el = $(elements[i]);
- if ( hasProp ) {
- el.prop('disabled', false);
- }
- else {
- el.removeAttr('disabled');
- }
- }
- }
-
- s = $.extend(true, {}, $.ajaxSettings, options);
- s.context = s.context || s;
- id = 'jqFormIO' + (new Date().getTime());
- if (s.iframeTarget) {
- $io = $(s.iframeTarget);
- n = $io.attr2('name');
- if (!n) {
- $io.attr2('name', id);
- }
- else {
- id = n;
- }
- }
- else {
- $io = $('<iframe name="' + id + '" src="'+ s.iframeSrc +'" />');
- $io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });
- }
- io = $io[0];
-
-
- xhr = { // mock object
- aborted: 0,
- responseText: null,
- responseXML: null,
- status: 0,
- statusText: 'n/a',
- getAllResponseHeaders: function() {},
- getResponseHeader: function() {},
- setRequestHeader: function() {},
- abort: function(status) {
- var e = (status === 'timeout' ? 'timeout' : 'aborted');
- log('aborting upload... ' + e);
- this.aborted = 1;
-
- try { // #214, #257
- if (io.contentWindow.document.execCommand) {
- io.contentWindow.document.execCommand('Stop');
- }
- }
- catch(ignore) {}
-
- $io.attr('src', s.iframeSrc); // abort op in progress
- xhr.error = e;
- if (s.error) {
- s.error.call(s.context, xhr, e, status);
- }
- if (g) {
- $.event.trigger("ajaxError", [xhr, s, e]);
- }
- if (s.complete) {
- s.complete.call(s.context, xhr, e);
- }
- }
- };
-
- g = s.global;
- // trigger ajax global events so that activity/block indicators work like normal
- if (g && 0 === $.active++) {
- $.event.trigger("ajaxStart");
- }
- if (g) {
- $.event.trigger("ajaxSend", [xhr, s]);
- }
-
- if (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) {
- if (s.global) {
- $.active--;
- }
- deferred.reject();
- return deferred;
- }
- if (xhr.aborted) {
- deferred.reject();
- return deferred;
- }
-
- // add submitting element to data if we know it
- sub = form.clk;
- if (sub) {
- n = sub.name;
- if (n && !sub.disabled) {
- s.extraData = s.extraData || {};
- s.extraData[n] = sub.value;
- if (sub.type == "image") {
- s.extraData[n+'.x'] = form.clk_x;
- s.extraData[n+'.y'] = form.clk_y;
- }
- }
- }
-
- var CLIENT_TIMEOUT_ABORT = 1;
- var SERVER_ABORT = 2;
-
- function getDoc(frame) {
- /* it looks like contentWindow or contentDocument do not
- * carry the protocol property in ie8, when running under ssl
- * frame.document is the only valid response document, since
- * the protocol is know but not on the other two objects. strange?
- * "Same origin policy" http://en.wikipedia.org/wiki/Same_origin_policy
- */
-
- var doc = null;
-
- // IE8 cascading access check
- try {
- if (frame.contentWindow) {
- doc = frame.contentWindow.document;
- }
- } catch(err) {
- // IE8 access denied under ssl & missing protocol
- log('cannot get iframe.contentWindow document: ' + err);
- }
-
- if (doc) { // successful getting content
- return doc;
- }
-
- try { // simply checking may throw in ie8 under ssl or mismatched protocol
- doc = frame.contentDocument ? frame.contentDocument : frame.document;
- } catch(err) {
- // last attempt
- log('cannot get iframe.contentDocument: ' + err);
- doc = frame.document;
- }
- return doc;
- }
-
- // Rails CSRF hack (thanks to Yvan Barthelemy)
- var csrf_token = $('meta[name=csrf-token]').attr('content');
- var csrf_param = $('meta[name=csrf-param]').attr('content');
- if (csrf_param && csrf_token) {
- s.extraData = s.extraData || {};
- s.extraData[csrf_param] = csrf_token;
- }
-
- // take a breath so that pending repaints get some cpu time before the upload starts
- function doSubmit() {
- // make sure form attrs are set
- var t = $form.attr2('target'),
- a = $form.attr2('action'),
- mp = 'multipart/form-data',
- et = $form.attr('enctype') || $form.attr('encoding') || mp;
-
- // update form attrs in IE friendly way
- form.setAttribute('target',id);
- if (!method || /post/i.test(method) ) {
- form.setAttribute('method', 'POST');
- }
- if (a != s.url) {
- form.setAttribute('action', s.url);
- }
-
- // ie borks in some cases when setting encoding
- if (! s.skipEncodingOverride && (!method || /post/i.test(method))) {
- $form.attr({
- encoding: 'multipart/form-data',
- enctype: 'multipart/form-data'
- });
- }
-
- // support timout
- if (s.timeout) {
- timeoutHandle = setTimeout(function() { timedOut = true; cb(CLIENT_TIMEOUT_ABORT); }, s.timeout);
- }
-
- // look for server aborts
- function checkState() {
- try {
- var state = getDoc(io).readyState;
- log('state = ' + state);
- if (state && state.toLowerCase() == 'uninitialized') {
- setTimeout(checkState,50);
- }
- }
- catch(e) {
- log('Server abort: ' , e, ' (', e.name, ')');
- cb(SERVER_ABORT);
- if (timeoutHandle) {
- clearTimeout(timeoutHandle);
- }
- timeoutHandle = undefined;
- }
- }
-
- // add "extra" data to form if provided in options
- var extraInputs = [];
- try {
- if (s.extraData) {
- for (var n in s.extraData) {
- if (s.extraData.hasOwnProperty(n)) {
- // if using the $.param format that allows for multiple values with the same name
- if($.isPlainObject(s.extraData[n]) && s.extraData[n].hasOwnProperty('name') && s.extraData[n].hasOwnProperty('value')) {
- extraInputs.push(
- $('<input type="hidden" name="'+s.extraData[n].name+'">').val(s.extraData[n].value)
- .appendTo(form)[0]);
- } else {
- extraInputs.push(
- $('<input type="hidden" name="'+n+'">').val(s.extraData[n])
- .appendTo(form)[0]);
- }
- }
- }
- }
-
- if (!s.iframeTarget) {
- // add iframe to doc and submit the form
- $io.appendTo('body');
- }
- if (io.attachEvent) {
- io.attachEvent('onload', cb);
- }
- else {
- io.addEventListener('load', cb, false);
- }
- setTimeout(checkState,15);
-
- try {
- form.submit();
- } catch(err) {
- // just in case form has element with name/id of 'submit'
- var submitFn = document.createElement('form').submit;
- submitFn.apply(form);
- }
- }
- finally {
- // reset attrs and remove "extra" input elements
- form.setAttribute('action',a);
- form.setAttribute('enctype', et); // #380
- if(t) {
- form.setAttribute('target', t);
- } else {
- $form.removeAttr('target');
- }
- $(extraInputs).remove();
- }
- }
-
- if (s.forceSync) {
- doSubmit();
- }
- else {
- setTimeout(doSubmit, 10); // this lets dom updates render
- }
-
- var data, doc, domCheckCount = 50, callbackProcessed;
-
- function cb(e) {
- if (xhr.aborted || callbackProcessed) {
- return;
- }
-
- doc = getDoc(io);
- if(!doc) {
- log('cannot access response document');
- e = SERVER_ABORT;
- }
- if (e === CLIENT_TIMEOUT_ABORT && xhr) {
- xhr.abort('timeout');
- deferred.reject(xhr, 'timeout');
- return;
- }
- else if (e == SERVER_ABORT && xhr) {
- xhr.abort('server abort');
- deferred.reject(xhr, 'error', 'server abort');
- return;
- }
-
- if (!doc || doc.location.href == s.iframeSrc) {
- // response not received yet
- if (!timedOut) {
- return;
- }
- }
- if (io.detachEvent) {
- io.detachEvent('onload', cb);
- }
- else {
- io.removeEventListener('load', cb, false);
- }
-
- var status = 'success', errMsg;
- try {
- if (timedOut) {
- throw 'timeout';
- }
-
- var isXml = s.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc);
- log('isXml='+isXml);
- if (!isXml && window.opera && (doc.body === null || !doc.body.innerHTML)) {
- if (--domCheckCount) {
- // in some browsers (Opera) the iframe DOM is not always traversable when
- // the onload callback fires, so we loop a bit to accommodate
- log('requeing onLoad callback, DOM not available');
- setTimeout(cb, 250);
- return;
- }
- // let this fall through because server response could be an empty document
- //log('Could not access iframe DOM after mutiple tries.');
- //throw 'DOMException: not available';
- }
-
- //log('response detected');
- var docRoot = doc.body ? doc.body : doc.documentElement;
- xhr.responseText = docRoot ? docRoot.innerHTML : null;
- xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
- if (isXml) {
- s.dataType = 'xml';
- }
- xhr.getResponseHeader = function(header){
- var headers = {'content-type': s.dataType};
- return headers[header.toLowerCase()];
- };
- // support for XHR 'status' & 'statusText' emulation :
- if (docRoot) {
- xhr.status = Number( docRoot.getAttribute('status') ) || xhr.status;
- xhr.statusText = docRoot.getAttribute('statusText') || xhr.statusText;
- }
-
- var dt = (s.dataType || '').toLowerCase();
- var scr = /(json|script|text)/.test(dt);
- if (scr || s.textarea) {
- // see if user embedded response in textarea
- var ta = doc.getElementsByTagName('textarea')[0];
- if (ta) {
- xhr.responseText = ta.value;
- // support for XHR 'status' & 'statusText' emulation :
- xhr.status = Number( ta.getAttribute('status') ) || xhr.status;
- xhr.statusText = ta.getAttribute('statusText') || xhr.statusText;
- }
- else if (scr) {
- // account for browsers injecting pre around json response
- var pre = doc.getElementsByTagName('pre')[0];
- var b = doc.getElementsByTagName('body')[0];
- if (pre) {
- xhr.responseText = pre.textContent ? pre.textContent : pre.innerText;
- }
- else if (b) {
- xhr.responseText = b.textContent ? b.textContent : b.innerText;
- }
- }
- }
- else if (dt == 'xml' && !xhr.responseXML && xhr.responseText) {
- xhr.responseXML = toXml(xhr.responseText);
- }
-
- try {
- data = httpData(xhr, dt, s);
- }
- catch (err) {
- status = 'parsererror';
- xhr.error = errMsg = (err || status);
- }
- }
- catch (err) {
- log('error caught: ',err);
- status = 'error';
- xhr.error = errMsg = (err || status);
- }
-
- if (xhr.aborted) {
- log('upload aborted');
- status = null;
- }
-
- if (xhr.status) { // we've set xhr.status
- status = (xhr.status >= 200 && xhr.status < 300 || xhr.status === 304) ? 'success' : 'error';
- }
-
- // ordering of these callbacks/triggers is odd, but that's how $.ajax does it
- if (status === 'success') {
- if (s.success) {
- s.success.call(s.context, data, 'success', xhr);
- }
- deferred.resolve(xhr.responseText, 'success', xhr);
- if (g) {
- $.event.trigger("ajaxSuccess", [xhr, s]);
- }
- }
- else if (status) {
- if (errMsg === undefined) {
- errMsg = xhr.statusText;
- }
- if (s.error) {
- s.error.call(s.context, xhr, status, errMsg);
- }
- deferred.reject(xhr, 'error', errMsg);
- if (g) {
- $.event.trigger("ajaxError", [xhr, s, errMsg]);
- }
- }
-
- if (g) {
- $.event.trigger("ajaxComplete", [xhr, s]);
- }
-
- if (g && ! --$.active) {
- $.event.trigger("ajaxStop");
- }
-
- if (s.complete) {
- s.complete.call(s.context, xhr, status);
- }
-
- callbackProcessed = true;
- if (s.timeout) {
- clearTimeout(timeoutHandle);
- }
-
- // clean up
- setTimeout(function() {
- if (!s.iframeTarget) {
- $io.remove();
- }
- else { //adding else to clean up existing iframe response.
- $io.attr('src', s.iframeSrc);
- }
- xhr.responseXML = null;
- }, 100);
- }
-
- var toXml = $.parseXML || function(s, doc) { // use parseXML if available (jQuery 1.5+)
- if (window.ActiveXObject) {
- doc = new ActiveXObject('Microsoft.XMLDOM');
- doc.async = 'false';
- doc.loadXML(s);
- }
- else {
- doc = (new DOMParser()).parseFromString(s, 'text/xml');
- }
- return (doc && doc.documentElement && doc.documentElement.nodeName != 'parsererror') ? doc : null;
- };
- var parseJSON = $.parseJSON || function(s) {
- /*jslint evil:true */
- return window['eval']('(' + s + ')');
- };
-
- var httpData = function( xhr, type, s ) { // mostly lifted from jq1.4.4
-
- var ct = xhr.getResponseHeader('content-type') || '',
- xml = type === 'xml' || !type && ct.indexOf('xml') >= 0,
- data = xml ? xhr.responseXML : xhr.responseText;
-
- if (xml && data.documentElement.nodeName === 'parsererror') {
- if ($.error) {
- $.error('parsererror');
- }
- }
- if (s && s.dataFilter) {
- data = s.dataFilter(data, type);
- }
- if (typeof data === 'string') {
- if (type === 'json' || !type && ct.indexOf('json') >= 0) {
- data = parseJSON(data);
- } else if (type === "script" || !type && ct.indexOf("javascript") >= 0) {
- $.globalEval(data);
- }
- }
- return data;
- };
-
- return deferred;
- }
-};
-
-/**
- * ajaxForm() provides a mechanism for fully automating form submission.
- *
- * The advantages of using this method instead of ajaxSubmit() are:
- *
- * 1: This method will include coordinates for <input type="image" /> elements (if the element
- * is used to submit the form).
- * 2. This method will include the submit element's name/value data (for the element that was
- * used to submit the form).
- * 3. This method binds the submit() method to the form for you.
- *
- * The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely
- * passes the options argument along after properly binding events for submit elements and
- * the form itself.
- */
-$.fn.ajaxForm = function(options) {
- options = options || {};
- options.delegation = options.delegation && $.isFunction($.fn.on);
-
- // in jQuery 1.3+ we can fix mistakes with the ready state
- if (!options.delegation && this.length === 0) {
- var o = { s: this.selector, c: this.context };
- if (!$.isReady && o.s) {
- log('DOM not ready, queuing ajaxForm');
- $(function() {
- $(o.s,o.c).ajaxForm(options);
- });
- return this;
- }
- // is your DOM ready? http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
- log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
- return this;
- }
-
- if ( options.delegation ) {
- $(document)
- .off('submit.form-plugin', this.selector, doAjaxSubmit)
- .off('click.form-plugin', this.selector, captureSubmittingElement)
- .on('submit.form-plugin', this.selector, options, doAjaxSubmit)
- .on('click.form-plugin', this.selector, options, captureSubmittingElement);
- return this;
- }
-
- return this.ajaxFormUnbind()
- .bind('submit.form-plugin', options, doAjaxSubmit)
- .bind('click.form-plugin', options, captureSubmittingElement);
-};
-
-// private event handlers
-function doAjaxSubmit(e) {
- /*jshint validthis:true */
- var options = e.data;
- if (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed
- e.preventDefault();
- $(e.target).ajaxSubmit(options); // #365
- }
-}
-
-function captureSubmittingElement(e) {
- /*jshint validthis:true */
- var target = e.target;
- var $el = $(target);
- if (!($el.is("[type=submit],[type=image]"))) {
- // is this a child element of the submit el? (ex: a span within a button)
- var t = $el.closest('[type=submit]');
- if (t.length === 0) {
- return;
- }
- target = t[0];
- }
- var form = this;
- form.clk = target;
- if (target.type == 'image') {
- if (e.offsetX !== undefined) {
- form.clk_x = e.offsetX;
- form.clk_y = e.offsetY;
- } else if (typeof $.fn.offset == 'function') {
- var offset = $el.offset();
- form.clk_x = e.pageX - offset.left;
- form.clk_y = e.pageY - offset.top;
- } else {
- form.clk_x = e.pageX - target.offsetLeft;
- form.clk_y = e.pageY - target.offsetTop;
- }
- }
- // clear form vars
- setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100);
-}
-
-
-// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
-$.fn.ajaxFormUnbind = function() {
- return this.unbind('submit.form-plugin click.form-plugin');
-};
-
-/**
- * formToArray() gathers form element data into an array of objects that can
- * be passed to any of the following ajax functions: $.get, $.post, or load.
- * Each object in the array has both a 'name' and 'value' property. An example of
- * an array for a simple login form might be:
- *
- * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
- *
- * It is this array that is passed to pre-submit callback functions provided to the
- * ajaxSubmit() and ajaxForm() methods.
- */
-$.fn.formToArray = function(semantic, elements) {
- var a = [];
- if (this.length === 0) {
- return a;
- }
-
- var form = this[0];
- var formId = this.attr('id');
- var els = semantic ? form.getElementsByTagName('*') : form.elements;
- var els2;
-
- if (els && !/MSIE [678]/.test(navigator.userAgent)) { // #390
- els = $(els).get(); // convert to standard array
- }
-
- // #386; account for inputs outside the form which use the 'form' attribute
- if ( formId ) {
- els2 = $(':input[form="' + formId + '"]').get(); // hat tip @thet
- if ( els2.length ) {
- els = (els || []).concat(els2);
- }
- }
-
- if (!els || !els.length) {
- return a;
- }
-
- var i,j,n,v,el,max,jmax;
- for(i=0, max=els.length; i < max; i++) {
- el = els[i];
- n = el.name;
- if (!n || el.disabled) {
- continue;
- }
-
- if (semantic && form.clk && el.type == "image") {
- // handle image inputs on the fly when semantic == true
- if(form.clk == el) {
- a.push({name: n, value: $(el).val(), type: el.type });
- a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
- }
- continue;
- }
-
- v = $.fieldValue(el, true);
- if (v && v.constructor == Array) {
- if (elements) {
- elements.push(el);
- }
- for(j=0, jmax=v.length; j < jmax; j++) {
- a.push({name: n, value: v[j]});
- }
- }
- else if (feature.fileapi && el.type == 'file') {
- if (elements) {
- elements.push(el);
- }
- var files = el.files;
- if (files.length) {
- for (j=0; j < files.length; j++) {
- a.push({name: n, value: files[j], type: el.type});
- }
- }
- else {
- // #180
- a.push({ name: n, value: '', type: el.type });
- }
- }
- else if (v !== null && typeof v != 'undefined') {
- if (elements) {
- elements.push(el);
- }
- a.push({name: n, value: v, type: el.type, required: el.required});
- }
- }
-
- if (!semantic && form.clk) {
- // input type=='image' are not found in elements array! handle it here
- var $input = $(form.clk), input = $input[0];
- n = input.name;
- if (n && !input.disabled && input.type == 'image') {
- a.push({name: n, value: $input.val()});
- a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
- }
- }
- return a;
-};
-
-/**
- * Serializes form data into a 'submittable' string. This method will return a string
- * in the format: name1=value1&name2=value2
- */
-$.fn.formSerialize = function(semantic) {
- //hand off to jQuery.param for proper encoding
- return $.param(this.formToArray(semantic));
-};
-
-/**
- * Serializes all field elements in the jQuery object into a query string.
- * This method will return a string in the format: name1=value1&name2=value2
- */
-$.fn.fieldSerialize = function(successful) {
- var a = [];
- this.each(function() {
- var n = this.name;
- if (!n) {
- return;
- }
- var v = $.fieldValue(this, successful);
- if (v && v.constructor == Array) {
- for (var i=0,max=v.length; i < max; i++) {
- a.push({name: n, value: v[i]});
- }
- }
- else if (v !== null && typeof v != 'undefined') {
- a.push({name: this.name, value: v});
- }
- });
- //hand off to jQuery.param for proper encoding
- return $.param(a);
-};
-
-/**
- * Returns the value(s) of the element in the matched set. For example, consider the following form:
- *
- * <form><fieldset>
- * <input name="A" type="text" />
- * <input name="A" type="text" />
- * <input name="B" type="checkbox" value="B1" />
- * <input name="B" type="checkbox" value="B2"/>
- * <input name="C" type="radio" value="C1" />
- * <input name="C" type="radio" value="C2" />
- * </fieldset></form>
- *
- * var v = $('input[type=text]').fieldValue();
- * // if no values are entered into the text inputs
- * v == ['','']
- * // if values entered into the text inputs are 'foo' and 'bar'
- * v == ['foo','bar']
- *
- * var v = $('input[type=checkbox]').fieldValue();
- * // if neither checkbox is checked
- * v === undefined
- * // if both checkboxes are checked
- * v == ['B1', 'B2']
- *
- * var v = $('input[type=radio]').fieldValue();
- * // if neither radio is checked
- * v === undefined
- * // if first radio is checked
- * v == ['C1']
- *
- * The successful argument controls whether or not the field element must be 'successful'
- * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
- * The default value of the successful argument is true. If this value is false the value(s)
- * for each element is returned.
- *
- * Note: This method *always* returns an array. If no valid value can be determined the
- * array will be empty, otherwise it will contain one or more values.
- */
-$.fn.fieldValue = function(successful) {
- for (var val=[], i=0, max=this.length; i < max; i++) {
- var el = this[i];
- var v = $.fieldValue(el, successful);
- if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length)) {
- continue;
- }
- if (v.constructor == Array) {
- $.merge(val, v);
- }
- else {
- val.push(v);
- }
- }
- return val;
-};
-
-/**
- * Returns the value of the field element.
- */
-$.fieldValue = function(el, successful) {
- var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
- if (successful === undefined) {
- successful = true;
- }
-
- if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
- (t == 'checkbox' || t == 'radio') && !el.checked ||
- (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
- tag == 'select' && el.selectedIndex == -1)) {
- return null;
- }
-
- if (tag == 'select') {
- var index = el.selectedIndex;
- if (index < 0) {
- return null;
- }
- var a = [], ops = el.options;
- var one = (t == 'select-one');
- var max = (one ? index+1 : ops.length);
- for(var i=(one ? index : 0); i < max; i++) {
- var op = ops[i];
- if (op.selected) {
- var v = op.value;
- if (!v) { // extra pain for IE...
- v = (op.attributes && op.attributes.value && !(op.attributes.value.specified)) ? op.text : op.value;
- }
- if (one) {
- return v;
- }
- a.push(v);
- }
- }
- return a;
- }
- return $(el).val();
-};
-
-/**
- * Clears the form data. Takes the following actions on the form's input fields:
- * - input text fields will have their 'value' property set to the empty string
- * - select elements will have their 'selectedIndex' property set to -1
- * - checkbox and radio inputs will have their 'checked' property set to false
- * - inputs of type submit, button, reset, and hidden will *not* be effected
- * - button elements will *not* be effected
- */
-$.fn.clearForm = function(includeHidden) {
- return this.each(function() {
- $('input,select,textarea', this).clearFields(includeHidden);
- });
-};
-
-/**
- * Clears the selected form elements.
- */
-$.fn.clearFields = $.fn.clearInputs = function(includeHidden) {
- var re = /^(?:color|date|datetime|email|month|number|password|range|search|tel|text|time|url|week)$/i; // 'hidden' is not in this list
- return this.each(function() {
- var t = this.type, tag = this.tagName.toLowerCase();
- if (re.test(t) || tag == 'textarea') {
- this.value = '';
- }
- else if (t == 'checkbox' || t == 'radio') {
- this.checked = false;
- }
- else if (tag == 'select') {
- this.selectedIndex = -1;
- }
- else if (t == "file") {
- if (/MSIE/.test(navigator.userAgent)) {
- $(this).replaceWith($(this).clone(true));
- } else {
- $(this).val('');
- }
- }
- else if (includeHidden) {
- // includeHidden can be the value true, or it can be a selector string
- // indicating a special test; for example:
- // $('#myForm').clearForm('.special:hidden')
- // the above would clean hidden inputs that have the class of 'special'
- if ( (includeHidden === true && /hidden/.test(t)) ||
- (typeof includeHidden == 'string' && $(this).is(includeHidden)) ) {
- this.value = '';
- }
- }
- });
-};
-
-/**
- * Resets the form data. Causes all form elements to be reset to their original value.
- */
-$.fn.resetForm = function() {
- return this.each(function() {
- // guard against an input with the name of 'reset'
- // note that IE reports the reset function as an 'object'
- if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType)) {
- this.reset();
- }
- });
-};
-
-/**
- * Enables or disables any matching elements.
- */
-$.fn.enable = function(b) {
- if (b === undefined) {
- b = true;
- }
- return this.each(function() {
- this.disabled = !b;
- });
-};
-
-/**
- * Checks/unchecks any matching checkboxes or radio buttons and
- * selects/deselects and matching option elements.
- */
-$.fn.selected = function(select) {
- if (select === undefined) {
- select = true;
- }
- return this.each(function() {
- var t = this.type;
- if (t == 'checkbox' || t == 'radio') {
- this.checked = select;
- }
- else if (this.tagName.toLowerCase() == 'option') {
- var $sel = $(this).parent('select');
- if (select && $sel[0] && $sel[0].type == 'select-one') {
- // deselect all other options
- $sel.find('option').selected(false);
- }
- this.selected = select;
- }
- });
-};
-
-// expose debug var
-$.fn.ajaxSubmit.debug = false;
-
-// helper fn for console logging
-function log() {
- if (!$.fn.ajaxSubmit.debug) {
- return;
- }
- var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');
- if (window.console && window.console.log) {
- window.console.log(msg);
- }
- else if (window.opera && window.opera.postError) {
- window.opera.postError(msg);
- }
-}
-
-}));
+++ /dev/null
-/*!
- * jQuery JavaScript Library v2.1.4
- * http://jquery.com/
- *
- * Includes Sizzle.js
- * http://sizzlejs.com/
- *
- * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
- * Released under the MIT license
- * http://jquery.org/license
- *
- * Date: 2015-04-28T16:01Z
- */
-
-(function( global, factory ) {
-
- if ( typeof module === "object" && typeof module.exports === "object" ) {
- // For CommonJS and CommonJS-like environments where a proper `window`
- // is present, execute the factory and get jQuery.
- // For environments that do not have a `window` with a `document`
- // (such as Node.js), expose a factory as module.exports.
- // This accentuates the need for the creation of a real `window`.
- // e.g. var jQuery = require("jquery")(window);
- // See ticket #14549 for more info.
- module.exports = global.document ?
- factory( global, true ) :
- function( w ) {
- if ( !w.document ) {
- throw new Error( "jQuery requires a window with a document" );
- }
- return factory( w );
- };
- } else {
- factory( global );
- }
-
-// Pass this if window is not defined yet
-}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
-
-// Support: Firefox 18+
-// Can't be in strict mode, several libs including ASP.NET trace
-// the stack via arguments.caller.callee and Firefox dies if
-// you try to trace through "use strict" call chains. (#13335)
-//
-
-var arr = [];
-
-var slice = arr.slice;
-
-var concat = arr.concat;
-
-var push = arr.push;
-
-var indexOf = arr.indexOf;
-
-var class2type = {};
-
-var toString = class2type.toString;
-
-var hasOwn = class2type.hasOwnProperty;
-
-var support = {};
-
-
-
-var
- // Use the correct document accordingly with window argument (sandbox)
- document = window.document,
-
- version = "2.1.4",
-
- // Define a local copy of jQuery
- jQuery = function( selector, context ) {
- // The jQuery object is actually just the init constructor 'enhanced'
- // Need init if jQuery is called (just allow error to be thrown if not included)
- return new jQuery.fn.init( selector, context );
- },
-
- // Support: Android<4.1
- // Make sure we trim BOM and NBSP
- rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
-
- // Matches dashed string for camelizing
- rmsPrefix = /^-ms-/,
- rdashAlpha = /-([\da-z])/gi,
-
- // Used by jQuery.camelCase as callback to replace()
- fcamelCase = function( all, letter ) {
- return letter.toUpperCase();
- };
-
-jQuery.fn = jQuery.prototype = {
- // The current version of jQuery being used
- jquery: version,
-
- constructor: jQuery,
-
- // Start with an empty selector
- selector: "",
-
- // The default length of a jQuery object is 0
- length: 0,
-
- toArray: function() {
- return slice.call( this );
- },
-
- // Get the Nth element in the matched element set OR
- // Get the whole matched element set as a clean array
- get: function( num ) {
- return num != null ?
-
- // Return just the one element from the set
- ( num < 0 ? this[ num + this.length ] : this[ num ] ) :
-
- // Return all the elements in a clean array
- slice.call( this );
- },
-
- // Take an array of elements and push it onto the stack
- // (returning the new matched element set)
- pushStack: function( elems ) {
-
- // Build a new jQuery matched element set
- var ret = jQuery.merge( this.constructor(), elems );
-
- // Add the old object onto the stack (as a reference)
- ret.prevObject = this;
- ret.context = this.context;
-
- // Return the newly-formed element set
- return ret;
- },
-
- // Execute a callback for every element in the matched set.
- // (You can seed the arguments with an array of args, but this is
- // only used internally.)
- each: function( callback, args ) {
- return jQuery.each( this, callback, args );
- },
-
- map: function( callback ) {
- return this.pushStack( jQuery.map(this, function( elem, i ) {
- return callback.call( elem, i, elem );
- }));
- },
-
- slice: function() {
- return this.pushStack( slice.apply( this, arguments ) );
- },
-
- first: function() {
- return this.eq( 0 );
- },
-
- last: function() {
- return this.eq( -1 );
- },
-
- eq: function( i ) {
- var len = this.length,
- j = +i + ( i < 0 ? len : 0 );
- return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
- },
-
- end: function() {
- return this.prevObject || this.constructor(null);
- },
-
- // For internal use only.
- // Behaves like an Array's method, not like a jQuery method.
- push: push,
- sort: arr.sort,
- splice: arr.splice
-};
-
-jQuery.extend = jQuery.fn.extend = function() {
- var options, name, src, copy, copyIsArray, clone,
- target = arguments[0] || {},
- i = 1,
- length = arguments.length,
- deep = false;
-
- // Handle a deep copy situation
- if ( typeof target === "boolean" ) {
- deep = target;
-
- // Skip the boolean and the target
- target = arguments[ i ] || {};
- i++;
- }
-
- // Handle case when target is a string or something (possible in deep copy)
- if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
- target = {};
- }
-
- // Extend jQuery itself if only one argument is passed
- if ( i === length ) {
- target = this;
- i--;
- }
-
- for ( ; i < length; i++ ) {
- // Only deal with non-null/undefined values
- if ( (options = arguments[ i ]) != null ) {
- // Extend the base object
- for ( name in options ) {
- src = target[ name ];
- copy = options[ name ];
-
- // Prevent never-ending loop
- if ( target === copy ) {
- continue;
- }
-
- // Recurse if we're merging plain objects or arrays
- if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
- if ( copyIsArray ) {
- copyIsArray = false;
- clone = src && jQuery.isArray(src) ? src : [];
-
- } else {
- clone = src && jQuery.isPlainObject(src) ? src : {};
- }
-
- // Never move original objects, clone them
- target[ name ] = jQuery.extend( deep, clone, copy );
-
- // Don't bring in undefined values
- } else if ( copy !== undefined ) {
- target[ name ] = copy;
- }
- }
- }
- }
-
- // Return the modified object
- return target;
-};
-
-jQuery.extend({
- // Unique for each copy of jQuery on the page
- expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
-
- // Assume jQuery is ready without the ready module
- isReady: true,
-
- error: function( msg ) {
- throw new Error( msg );
- },
-
- noop: function() {},
-
- isFunction: function( obj ) {
- return jQuery.type(obj) === "function";
- },
-
- isArray: Array.isArray,
-
- isWindow: function( obj ) {
- return obj != null && obj === obj.window;
- },
-
- isNumeric: function( obj ) {
- // parseFloat NaNs numeric-cast false positives (null|true|false|"")
- // ...but misinterprets leading-number strings, particularly hex literals ("0x...")
- // subtraction forces infinities to NaN
- // adding 1 corrects loss of precision from parseFloat (#15100)
- return !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;
- },
-
- isPlainObject: function( obj ) {
- // Not plain objects:
- // - Any object or value whose internal [[Class]] property is not "[object Object]"
- // - DOM nodes
- // - window
- if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
- return false;
- }
-
- if ( obj.constructor &&
- !hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) {
- return false;
- }
-
- // If the function hasn't returned already, we're confident that
- // |obj| is a plain object, created by {} or constructed with new Object
- return true;
- },
-
- isEmptyObject: function( obj ) {
- var name;
- for ( name in obj ) {
- return false;
- }
- return true;
- },
-
- type: function( obj ) {
- if ( obj == null ) {
- return obj + "";
- }
- // Support: Android<4.0, iOS<6 (functionish RegExp)
- return typeof obj === "object" || typeof obj === "function" ?
- class2type[ toString.call(obj) ] || "object" :
- typeof obj;
- },
-
- // Evaluates a script in a global context
- globalEval: function( code ) {
- var script,
- indirect = eval;
-
- code = jQuery.trim( code );
-
- if ( code ) {
- // If the code includes a valid, prologue position
- // strict mode pragma, execute code by injecting a
- // script tag into the document.
- if ( code.indexOf("use strict") === 1 ) {
- script = document.createElement("script");
- script.text = code;
- document.head.appendChild( script ).parentNode.removeChild( script );
- } else {
- // Otherwise, avoid the DOM node creation, insertion
- // and removal by using an indirect global eval
- indirect( code );
- }
- }
- },
-
- // Convert dashed to camelCase; used by the css and data modules
- // Support: IE9-11+
- // Microsoft forgot to hump their vendor prefix (#9572)
- camelCase: function( string ) {
- return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
- },
-
- nodeName: function( elem, name ) {
- return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
- },
-
- // args is for internal usage only
- each: function( obj, callback, args ) {
- var value,
- i = 0,
- length = obj.length,
- isArray = isArraylike( obj );
-
- if ( args ) {
- if ( isArray ) {
- for ( ; i < length; i++ ) {
- value = callback.apply( obj[ i ], args );
-
- if ( value === false ) {
- break;
- }
- }
- } else {
- for ( i in obj ) {
- value = callback.apply( obj[ i ], args );
-
- if ( value === false ) {
- break;
- }
- }
- }
-
- // A special, fast, case for the most common use of each
- } else {
- if ( isArray ) {
- for ( ; i < length; i++ ) {
- value = callback.call( obj[ i ], i, obj[ i ] );
-
- if ( value === false ) {
- break;
- }
- }
- } else {
- for ( i in obj ) {
- value = callback.call( obj[ i ], i, obj[ i ] );
-
- if ( value === false ) {
- break;
- }
- }
- }
- }
-
- return obj;
- },
-
- // Support: Android<4.1
- trim: function( text ) {
- return text == null ?
- "" :
- ( text + "" ).replace( rtrim, "" );
- },
-
- // results is for internal usage only
- makeArray: function( arr, results ) {
- var ret = results || [];
-
- if ( arr != null ) {
- if ( isArraylike( Object(arr) ) ) {
- jQuery.merge( ret,
- typeof arr === "string" ?
- [ arr ] : arr
- );
- } else {
- push.call( ret, arr );
- }
- }
-
- return ret;
- },
-
- inArray: function( elem, arr, i ) {
- return arr == null ? -1 : indexOf.call( arr, elem, i );
- },
-
- merge: function( first, second ) {
- var len = +second.length,
- j = 0,
- i = first.length;
-
- for ( ; j < len; j++ ) {
- first[ i++ ] = second[ j ];
- }
-
- first.length = i;
-
- return first;
- },
-
- grep: function( elems, callback, invert ) {
- var callbackInverse,
- matches = [],
- i = 0,
- length = elems.length,
- callbackExpect = !invert;
-
- // Go through the array, only saving the items
- // that pass the validator function
- for ( ; i < length; i++ ) {
- callbackInverse = !callback( elems[ i ], i );
- if ( callbackInverse !== callbackExpect ) {
- matches.push( elems[ i ] );
- }
- }
-
- return matches;
- },
-
- // arg is for internal usage only
- map: function( elems, callback, arg ) {
- var value,
- i = 0,
- length = elems.length,
- isArray = isArraylike( elems ),
- ret = [];
-
- // Go through the array, translating each of the items to their new values
- if ( isArray ) {
- for ( ; i < length; i++ ) {
- value = callback( elems[ i ], i, arg );
-
- if ( value != null ) {
- ret.push( value );
- }
- }
-
- // Go through every key on the object,
- } else {
- for ( i in elems ) {
- value = callback( elems[ i ], i, arg );
-
- if ( value != null ) {
- ret.push( value );
- }
- }
- }
-
- // Flatten any nested arrays
- return concat.apply( [], ret );
- },
-
- // A global GUID counter for objects
- guid: 1,
-
- // Bind a function to a context, optionally partially applying any
- // arguments.
- proxy: function( fn, context ) {
- var tmp, args, proxy;
-
- if ( typeof context === "string" ) {
- tmp = fn[ context ];
- context = fn;
- fn = tmp;
- }
-
- // Quick check to determine if target is callable, in the spec
- // this throws a TypeError, but we will just return undefined.
- if ( !jQuery.isFunction( fn ) ) {
- return undefined;
- }
-
- // Simulated bind
- args = slice.call( arguments, 2 );
- proxy = function() {
- return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
- };
-
- // Set the guid of unique handler to the same of original handler, so it can be removed
- proxy.guid = fn.guid = fn.guid || jQuery.guid++;
-
- return proxy;
- },
-
- now: Date.now,
-
- // jQuery.support is not used in Core but other projects attach their
- // properties to it so it needs to exist.
- support: support
-});
-
-// Populate the class2type map
-jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
- class2type[ "[object " + name + "]" ] = name.toLowerCase();
-});
-
-function isArraylike( obj ) {
-
- // Support: iOS 8.2 (not reproducible in simulator)
- // `in` check used to prevent JIT error (gh-2145)
- // hasOwn isn't used here due to false negatives
- // regarding Nodelist length in IE
- var length = "length" in obj && obj.length,
- type = jQuery.type( obj );
-
- if ( type === "function" || jQuery.isWindow( obj ) ) {
- return false;
- }
-
- if ( obj.nodeType === 1 && length ) {
- return true;
- }
-
- return type === "array" || length === 0 ||
- typeof length === "number" && length > 0 && ( length - 1 ) in obj;
-}
-var Sizzle =
-/*!
- * Sizzle CSS Selector Engine v2.2.0-pre
- * http://sizzlejs.com/
- *
- * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors
- * Released under the MIT license
- * http://jquery.org/license
- *
- * Date: 2014-12-16
- */
-(function( window ) {
-
-var i,
- support,
- Expr,
- getText,
- isXML,
- tokenize,
- compile,
- select,
- outermostContext,
- sortInput,
- hasDuplicate,
-
- // Local document vars
- setDocument,
- document,
- docElem,
- documentIsHTML,
- rbuggyQSA,
- rbuggyMatches,
- matches,
- contains,
-
- // Instance-specific data
- expando = "sizzle" + 1 * new Date(),
- preferredDoc = window.document,
- dirruns = 0,
- done = 0,
- classCache = createCache(),
- tokenCache = createCache(),
- compilerCache = createCache(),
- sortOrder = function( a, b ) {
- if ( a === b ) {
- hasDuplicate = true;
- }
- return 0;
- },
-
- // General-purpose constants
- MAX_NEGATIVE = 1 << 31,
-
- // Instance methods
- hasOwn = ({}).hasOwnProperty,
- arr = [],
- pop = arr.pop,
- push_native = arr.push,
- push = arr.push,
- slice = arr.slice,
- // Use a stripped-down indexOf as it's faster than native
- // http://jsperf.com/thor-indexof-vs-for/5
- indexOf = function( list, elem ) {
- var i = 0,
- len = list.length;
- for ( ; i < len; i++ ) {
- if ( list[i] === elem ) {
- return i;
- }
- }
- return -1;
- },
-
- booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
-
- // Regular expressions
-
- // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
- whitespace = "[\\x20\\t\\r\\n\\f]",
- // http://www.w3.org/TR/css3-syntax/#characters
- characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
-
- // Loosely modeled on CSS identifier characters
- // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
- // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
- identifier = characterEncoding.replace( "w", "w#" ),
-
- // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
- attributes = "\\[" + whitespace + "*(" + characterEncoding + ")(?:" + whitespace +
- // Operator (capture 2)
- "*([*^$|!~]?=)" + whitespace +
- // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
- "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
- "*\\]",
-
- pseudos = ":(" + characterEncoding + ")(?:\\((" +
- // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
- // 1. quoted (capture 3; capture 4 or capture 5)
- "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
- // 2. simple (capture 6)
- "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
- // 3. anything else (capture 2)
- ".*" +
- ")\\)|)",
-
- // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
- rwhitespace = new RegExp( whitespace + "+", "g" ),
- rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
-
- rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
- rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
-
- rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
-
- rpseudo = new RegExp( pseudos ),
- ridentifier = new RegExp( "^" + identifier + "$" ),
-
- matchExpr = {
- "ID": new RegExp( "^#(" + characterEncoding + ")" ),
- "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
- "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
- "ATTR": new RegExp( "^" + attributes ),
- "PSEUDO": new RegExp( "^" + pseudos ),
- "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
- "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
- "*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
- "bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
- // For use in libraries implementing .is()
- // We use this for POS matching in `select`
- "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
- whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
- },
-
- rinputs = /^(?:input|select|textarea|button)$/i,
- rheader = /^h\d$/i,
-
- rnative = /^[^{]+\{\s*\[native \w/,
-
- // Easily-parseable/retrievable ID or TAG or CLASS selectors
- rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
-
- rsibling = /[+~]/,
- rescape = /'|\\/g,
-
- // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
- runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
- funescape = function( _, escaped, escapedWhitespace ) {
- var high = "0x" + escaped - 0x10000;
- // NaN means non-codepoint
- // Support: Firefox<24
- // Workaround erroneous numeric interpretation of +"0x"
- return high !== high || escapedWhitespace ?
- escaped :
- high < 0 ?
- // BMP codepoint
- String.fromCharCode( high + 0x10000 ) :
- // Supplemental Plane codepoint (surrogate pair)
- String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
- },
-
- // Used for iframes
- // See setDocument()
- // Removing the function wrapper causes a "Permission Denied"
- // error in IE
- unloadHandler = function() {
- setDocument();
- };
-
-// Optimize for push.apply( _, NodeList )
-try {
- push.apply(
- (arr = slice.call( preferredDoc.childNodes )),
- preferredDoc.childNodes
- );
- // Support: Android<4.0
- // Detect silently failing push.apply
- arr[ preferredDoc.childNodes.length ].nodeType;
-} catch ( e ) {
- push = { apply: arr.length ?
-
- // Leverage slice if possible
- function( target, els ) {
- push_native.apply( target, slice.call(els) );
- } :
-
- // Support: IE<9
- // Otherwise append directly
- function( target, els ) {
- var j = target.length,
- i = 0;
- // Can't trust NodeList.length
- while ( (target[j++] = els[i++]) ) {}
- target.length = j - 1;
- }
- };
-}
-
-function Sizzle( selector, context, results, seed ) {
- var match, elem, m, nodeType,
- // QSA vars
- i, groups, old, nid, newContext, newSelector;
-
- if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
- setDocument( context );
- }
-
- context = context || document;
- results = results || [];
- nodeType = context.nodeType;
-
- if ( typeof selector !== "string" || !selector ||
- nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
-
- return results;
- }
-
- if ( !seed && documentIsHTML ) {
-
- // Try to shortcut find operations when possible (e.g., not under DocumentFragment)
- if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
- // Speed-up: Sizzle("#ID")
- if ( (m = match[1]) ) {
- if ( nodeType === 9 ) {
- elem = context.getElementById( m );
- // Check parentNode to catch when Blackberry 4.6 returns
- // nodes that are no longer in the document (jQuery #6963)
- if ( elem && elem.parentNode ) {
- // Handle the case where IE, Opera, and Webkit return items
- // by name instead of ID
- if ( elem.id === m ) {
- results.push( elem );
- return results;
- }
- } else {
- return results;
- }
- } else {
- // Context is not a document
- if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
- contains( context, elem ) && elem.id === m ) {
- results.push( elem );
- return results;
- }
- }
-
- // Speed-up: Sizzle("TAG")
- } else if ( match[2] ) {
- push.apply( results, context.getElementsByTagName( selector ) );
- return results;
-
- // Speed-up: Sizzle(".CLASS")
- } else if ( (m = match[3]) && support.getElementsByClassName ) {
- push.apply( results, context.getElementsByClassName( m ) );
- return results;
- }
- }
-
- // QSA path
- if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
- nid = old = expando;
- newContext = context;
- newSelector = nodeType !== 1 && selector;
-
- // qSA works strangely on Element-rooted queries
- // We can work around this by specifying an extra ID on the root
- // and working up from there (Thanks to Andrew Dupont for the technique)
- // IE 8 doesn't work on object elements
- if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
- groups = tokenize( selector );
-
- if ( (old = context.getAttribute("id")) ) {
- nid = old.replace( rescape, "\\$&" );
- } else {
- context.setAttribute( "id", nid );
- }
- nid = "[id='" + nid + "'] ";
-
- i = groups.length;
- while ( i-- ) {
- groups[i] = nid + toSelector( groups[i] );
- }
- newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;
- newSelector = groups.join(",");
- }
-
- if ( newSelector ) {
- try {
- push.apply( results,
- newContext.querySelectorAll( newSelector )
- );
- return results;
- } catch(qsaError) {
- } finally {
- if ( !old ) {
- context.removeAttribute("id");
- }
- }
- }
- }
- }
-
- // All others
- return select( selector.replace( rtrim, "$1" ), context, results, seed );
-}
-
-/**
- * Create key-value caches of limited size
- * @returns {Function(string, Object)} Returns the Object data after storing it on itself with
- * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
- * deleting the oldest entry
- */
-function createCache() {
- var keys = [];
-
- function cache( key, value ) {
- // Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
- if ( keys.push( key + " " ) > Expr.cacheLength ) {
- // Only keep the most recent entries
- delete cache[ keys.shift() ];
- }
- return (cache[ key + " " ] = value);
- }
- return cache;
-}
-
-/**
- * Mark a function for special use by Sizzle
- * @param {Function} fn The function to mark
- */
-function markFunction( fn ) {
- fn[ expando ] = true;
- return fn;
-}
-
-/**
- * Support testing using an element
- * @param {Function} fn Passed the created div and expects a boolean result
- */
-function assert( fn ) {
- var div = document.createElement("div");
-
- try {
- return !!fn( div );
- } catch (e) {
- return false;
- } finally {
- // Remove from its parent by default
- if ( div.parentNode ) {
- div.parentNode.removeChild( div );
- }
- // release memory in IE
- div = null;
- }
-}
-
-/**
- * Adds the same handler for all of the specified attrs
- * @param {String} attrs Pipe-separated list of attributes
- * @param {Function} handler The method that will be applied
- */
-function addHandle( attrs, handler ) {
- var arr = attrs.split("|"),
- i = attrs.length;
-
- while ( i-- ) {
- Expr.attrHandle[ arr[i] ] = handler;
- }
-}
-
-/**
- * Checks document order of two siblings
- * @param {Element} a
- * @param {Element} b
- * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
- */
-function siblingCheck( a, b ) {
- var cur = b && a,
- diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
- ( ~b.sourceIndex || MAX_NEGATIVE ) -
- ( ~a.sourceIndex || MAX_NEGATIVE );
-
- // Use IE sourceIndex if available on both nodes
- if ( diff ) {
- return diff;
- }
-
- // Check if b follows a
- if ( cur ) {
- while ( (cur = cur.nextSibling) ) {
- if ( cur === b ) {
- return -1;
- }
- }
- }
-
- return a ? 1 : -1;
-}
-
-/**
- * Returns a function to use in pseudos for input types
- * @param {String} type
- */
-function createInputPseudo( type ) {
- return function( elem ) {
- var name = elem.nodeName.toLowerCase();
- return name === "input" && elem.type === type;
- };
-}
-
-/**
- * Returns a function to use in pseudos for buttons
- * @param {String} type
- */
-function createButtonPseudo( type ) {
- return function( elem ) {
- var name = elem.nodeName.toLowerCase();
- return (name === "input" || name === "button") && elem.type === type;
- };
-}
-
-/**
- * Returns a function to use in pseudos for positionals
- * @param {Function} fn
- */
-function createPositionalPseudo( fn ) {
- return markFunction(function( argument ) {
- argument = +argument;
- return markFunction(function( seed, matches ) {
- var j,
- matchIndexes = fn( [], seed.length, argument ),
- i = matchIndexes.length;
-
- // Match elements found at the specified indexes
- while ( i-- ) {
- if ( seed[ (j = matchIndexes[i]) ] ) {
- seed[j] = !(matches[j] = seed[j]);
- }
- }
- });
- });
-}
-
-/**
- * Checks a node for validity as a Sizzle context
- * @param {Element|Object=} context
- * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
- */
-function testContext( context ) {
- return context && typeof context.getElementsByTagName !== "undefined" && context;
-}
-
-// Expose support vars for convenience
-support = Sizzle.support = {};
-
-/**
- * Detects XML nodes
- * @param {Element|Object} elem An element or a document
- * @returns {Boolean} True iff elem is a non-HTML XML node
- */
-isXML = Sizzle.isXML = function( elem ) {
- // documentElement is verified for cases where it doesn't yet exist
- // (such as loading iframes in IE - #4833)
- var documentElement = elem && (elem.ownerDocument || elem).documentElement;
- return documentElement ? documentElement.nodeName !== "HTML" : false;
-};
-
-/**
- * Sets document-related variables once based on the current document
- * @param {Element|Object} [doc] An element or document object to use to set the document
- * @returns {Object} Returns the current document
- */
-setDocument = Sizzle.setDocument = function( node ) {
- var hasCompare, parent,
- doc = node ? node.ownerDocument || node : preferredDoc;
-
- // If no document and documentElement is available, return
- if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
- return document;
- }
-
- // Set our document
- document = doc;
- docElem = doc.documentElement;
- parent = doc.defaultView;
-
- // Support: IE>8
- // If iframe document is assigned to "document" variable and if iframe has been reloaded,
- // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936
- // IE6-8 do not support the defaultView property so parent will be undefined
- if ( parent && parent !== parent.top ) {
- // IE11 does not have attachEvent, so all must suffer
- if ( parent.addEventListener ) {
- parent.addEventListener( "unload", unloadHandler, false );
- } else if ( parent.attachEvent ) {
- parent.attachEvent( "onunload", unloadHandler );
- }
- }
-
- /* Support tests
- ---------------------------------------------------------------------- */
- documentIsHTML = !isXML( doc );
-
- /* Attributes
- ---------------------------------------------------------------------- */
-
- // Support: IE<8
- // Verify that getAttribute really returns attributes and not properties
- // (excepting IE8 booleans)
- support.attributes = assert(function( div ) {
- div.className = "i";
- return !div.getAttribute("className");
- });
-
- /* getElement(s)By*
- ---------------------------------------------------------------------- */
-
- // Check if getElementsByTagName("*") returns only elements
- support.getElementsByTagName = assert(function( div ) {
- div.appendChild( doc.createComment("") );
- return !div.getElementsByTagName("*").length;
- });
-
- // Support: IE<9
- support.getElementsByClassName = rnative.test( doc.getElementsByClassName );
-
- // Support: IE<10
- // Check if getElementById returns elements by name
- // The broken getElementById methods don't pick up programatically-set names,
- // so use a roundabout getElementsByName test
- support.getById = assert(function( div ) {
- docElem.appendChild( div ).id = expando;
- return !doc.getElementsByName || !doc.getElementsByName( expando ).length;
- });
-
- // ID find and filter
- if ( support.getById ) {
- Expr.find["ID"] = function( id, context ) {
- if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
- var m = context.getElementById( id );
- // Check parentNode to catch when Blackberry 4.6 returns
- // nodes that are no longer in the document #6963
- return m && m.parentNode ? [ m ] : [];
- }
- };
- Expr.filter["ID"] = function( id ) {
- var attrId = id.replace( runescape, funescape );
- return function( elem ) {
- return elem.getAttribute("id") === attrId;
- };
- };
- } else {
- // Support: IE6/7
- // getElementById is not reliable as a find shortcut
- delete Expr.find["ID"];
-
- Expr.filter["ID"] = function( id ) {
- var attrId = id.replace( runescape, funescape );
- return function( elem ) {
- var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id");
- return node && node.value === attrId;
- };
- };
- }
-
- // Tag
- Expr.find["TAG"] = support.getElementsByTagName ?
- function( tag, context ) {
- if ( typeof context.getElementsByTagName !== "undefined" ) {
- return context.getElementsByTagName( tag );
-
- // DocumentFragment nodes don't have gEBTN
- } else if ( support.qsa ) {
- return context.querySelectorAll( tag );
- }
- } :
-
- function( tag, context ) {
- var elem,
- tmp = [],
- i = 0,
- // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
- results = context.getElementsByTagName( tag );
-
- // Filter out possible comments
- if ( tag === "*" ) {
- while ( (elem = results[i++]) ) {
- if ( elem.nodeType === 1 ) {
- tmp.push( elem );
- }
- }
-
- return tmp;
- }
- return results;
- };
-
- // Class
- Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
- if ( documentIsHTML ) {
- return context.getElementsByClassName( className );
- }
- };
-
- /* QSA/matchesSelector
- ---------------------------------------------------------------------- */
-
- // QSA and matchesSelector support
-
- // matchesSelector(:active) reports false when true (IE9/Opera 11.5)
- rbuggyMatches = [];
-
- // qSa(:focus) reports false when true (Chrome 21)
- // We allow this because of a bug in IE8/9 that throws an error
- // whenever `document.activeElement` is accessed on an iframe
- // So, we allow :focus to pass through QSA all the time to avoid the IE error
- // See http://bugs.jquery.com/ticket/13378
- rbuggyQSA = [];
-
- if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {
- // Build QSA regex
- // Regex strategy adopted from Diego Perini
- assert(function( div ) {
- // Select is set to empty string on purpose
- // This is to test IE's treatment of not explicitly
- // setting a boolean content attribute,
- // since its presence should be enough
- // http://bugs.jquery.com/ticket/12359
- docElem.appendChild( div ).innerHTML = "<a id='" + expando + "'></a>" +
- "<select id='" + expando + "-\f]' msallowcapture=''>" +
- "<option selected=''></option></select>";
-
- // Support: IE8, Opera 11-12.16
- // Nothing should be selected when empty strings follow ^= or $= or *=
- // The test attribute must be unknown in Opera but "safe" for WinRT
- // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
- if ( div.querySelectorAll("[msallowcapture^='']").length ) {
- rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
- }
-
- // Support: IE8
- // Boolean attributes and "value" are not treated correctly
- if ( !div.querySelectorAll("[selected]").length ) {
- rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
- }
-
- // Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+
- if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
- rbuggyQSA.push("~=");
- }
-
- // Webkit/Opera - :checked should return selected option elements
- // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
- // IE8 throws error here and will not see later tests
- if ( !div.querySelectorAll(":checked").length ) {
- rbuggyQSA.push(":checked");
- }
-
- // Support: Safari 8+, iOS 8+
- // https://bugs.webkit.org/show_bug.cgi?id=136851
- // In-page `selector#id sibing-combinator selector` fails
- if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) {
- rbuggyQSA.push(".#.+[+~]");
- }
- });
-
- assert(function( div ) {
- // Support: Windows 8 Native Apps
- // The type and name attributes are restricted during .innerHTML assignment
- var input = doc.createElement("input");
- input.setAttribute( "type", "hidden" );
- div.appendChild( input ).setAttribute( "name", "D" );
-
- // Support: IE8
- // Enforce case-sensitivity of name attribute
- if ( div.querySelectorAll("[name=d]").length ) {
- rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
- }
-
- // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
- // IE8 throws error here and will not see later tests
- if ( !div.querySelectorAll(":enabled").length ) {
- rbuggyQSA.push( ":enabled", ":disabled" );
- }
-
- // Opera 10-11 does not throw on post-comma invalid pseudos
- div.querySelectorAll("*,:x");
- rbuggyQSA.push(",.*:");
- });
- }
-
- if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
- docElem.webkitMatchesSelector ||
- docElem.mozMatchesSelector ||
- docElem.oMatchesSelector ||
- docElem.msMatchesSelector) )) ) {
-
- assert(function( div ) {
- // Check to see if it's possible to do matchesSelector
- // on a disconnected node (IE 9)
- support.disconnectedMatch = matches.call( div, "div" );
-
- // This should fail with an exception
- // Gecko does not error, returns false instead
- matches.call( div, "[s!='']:x" );
- rbuggyMatches.push( "!=", pseudos );
- });
- }
-
- rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
- rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
-
- /* Contains
- ---------------------------------------------------------------------- */
- hasCompare = rnative.test( docElem.compareDocumentPosition );
-
- // Element contains another
- // Purposefully does not implement inclusive descendent
- // As in, an element does not contain itself
- contains = hasCompare || rnative.test( docElem.contains ) ?
- function( a, b ) {
- var adown = a.nodeType === 9 ? a.documentElement : a,
- bup = b && b.parentNode;
- return a === bup || !!( bup && bup.nodeType === 1 && (
- adown.contains ?
- adown.contains( bup ) :
- a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
- ));
- } :
- function( a, b ) {
- if ( b ) {
- while ( (b = b.parentNode) ) {
- if ( b === a ) {
- return true;
- }
- }
- }
- return false;
- };
-
- /* Sorting
- ---------------------------------------------------------------------- */
-
- // Document order sorting
- sortOrder = hasCompare ?
- function( a, b ) {
-
- // Flag for duplicate removal
- if ( a === b ) {
- hasDuplicate = true;
- return 0;
- }
-
- // Sort on method existence if only one input has compareDocumentPosition
- var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
- if ( compare ) {
- return compare;
- }
-
- // Calculate position if both inputs belong to the same document
- compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
- a.compareDocumentPosition( b ) :
-
- // Otherwise we know they are disconnected
- 1;
-
- // Disconnected nodes
- if ( compare & 1 ||
- (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
-
- // Choose the first element that is related to our preferred document
- if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
- return -1;
- }
- if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
- return 1;
- }
-
- // Maintain original order
- return sortInput ?
- ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
- 0;
- }
-
- return compare & 4 ? -1 : 1;
- } :
- function( a, b ) {
- // Exit early if the nodes are identical
- if ( a === b ) {
- hasDuplicate = true;
- return 0;
- }
-
- var cur,
- i = 0,
- aup = a.parentNode,
- bup = b.parentNode,
- ap = [ a ],
- bp = [ b ];
-
- // Parentless nodes are either documents or disconnected
- if ( !aup || !bup ) {
- return a === doc ? -1 :
- b === doc ? 1 :
- aup ? -1 :
- bup ? 1 :
- sortInput ?
- ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
- 0;
-
- // If the nodes are siblings, we can do a quick check
- } else if ( aup === bup ) {
- return siblingCheck( a, b );
- }
-
- // Otherwise we need full lists of their ancestors for comparison
- cur = a;
- while ( (cur = cur.parentNode) ) {
- ap.unshift( cur );
- }
- cur = b;
- while ( (cur = cur.parentNode) ) {
- bp.unshift( cur );
- }
-
- // Walk down the tree looking for a discrepancy
- while ( ap[i] === bp[i] ) {
- i++;
- }
-
- return i ?
- // Do a sibling check if the nodes have a common ancestor
- siblingCheck( ap[i], bp[i] ) :
-
- // Otherwise nodes in our document sort first
- ap[i] === preferredDoc ? -1 :
- bp[i] === preferredDoc ? 1 :
- 0;
- };
-
- return doc;
-};
-
-Sizzle.matches = function( expr, elements ) {
- return Sizzle( expr, null, null, elements );
-};
-
-Sizzle.matchesSelector = function( elem, expr ) {
- // Set document vars if needed
- if ( ( elem.ownerDocument || elem ) !== document ) {
- setDocument( elem );
- }
-
- // Make sure that attribute selectors are quoted
- expr = expr.replace( rattributeQuotes, "='$1']" );
-
- if ( support.matchesSelector && documentIsHTML &&
- ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
- ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
-
- try {
- var ret = matches.call( elem, expr );
-
- // IE 9's matchesSelector returns false on disconnected nodes
- if ( ret || support.disconnectedMatch ||
- // As well, disconnected nodes are said to be in a document
- // fragment in IE 9
- elem.document && elem.document.nodeType !== 11 ) {
- return ret;
- }
- } catch (e) {}
- }
-
- return Sizzle( expr, document, null, [ elem ] ).length > 0;
-};
-
-Sizzle.contains = function( context, elem ) {
- // Set document vars if needed
- if ( ( context.ownerDocument || context ) !== document ) {
- setDocument( context );
- }
- return contains( context, elem );
-};
-
-Sizzle.attr = function( elem, name ) {
- // Set document vars if needed
- if ( ( elem.ownerDocument || elem ) !== document ) {
- setDocument( elem );
- }
-
- var fn = Expr.attrHandle[ name.toLowerCase() ],
- // Don't get fooled by Object.prototype properties (jQuery #13807)
- val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
- fn( elem, name, !documentIsHTML ) :
- undefined;
-
- return val !== undefined ?
- val :
- support.attributes || !documentIsHTML ?
- elem.getAttribute( name ) :
- (val = elem.getAttributeNode(name)) && val.specified ?
- val.value :
- null;
-};
-
-Sizzle.error = function( msg ) {
- throw new Error( "Syntax error, unrecognized expression: " + msg );
-};
-
-/**
- * Document sorting and removing duplicates
- * @param {ArrayLike} results
- */
-Sizzle.uniqueSort = function( results ) {
- var elem,
- duplicates = [],
- j = 0,
- i = 0;
-
- // Unless we *know* we can detect duplicates, assume their presence
- hasDuplicate = !support.detectDuplicates;
- sortInput = !support.sortStable && results.slice( 0 );
- results.sort( sortOrder );
-
- if ( hasDuplicate ) {
- while ( (elem = results[i++]) ) {
- if ( elem === results[ i ] ) {
- j = duplicates.push( i );
- }
- }
- while ( j-- ) {
- results.splice( duplicates[ j ], 1 );
- }
- }
-
- // Clear input after sorting to release objects
- // See https://github.com/jquery/sizzle/pull/225
- sortInput = null;
-
- return results;
-};
-
-/**
- * Utility function for retrieving the text value of an array of DOM nodes
- * @param {Array|Element} elem
- */
-getText = Sizzle.getText = function( elem ) {
- var node,
- ret = "",
- i = 0,
- nodeType = elem.nodeType;
-
- if ( !nodeType ) {
- // If no nodeType, this is expected to be an array
- while ( (node = elem[i++]) ) {
- // Do not traverse comment nodes
- ret += getText( node );
- }
- } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
- // Use textContent for elements
- // innerText usage removed for consistency of new lines (jQuery #11153)
- if ( typeof elem.textContent === "string" ) {
- return elem.textContent;
- } else {
- // Traverse its children
- for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
- ret += getText( elem );
- }
- }
- } else if ( nodeType === 3 || nodeType === 4 ) {
- return elem.nodeValue;
- }
- // Do not include comment or processing instruction nodes
-
- return ret;
-};
-
-Expr = Sizzle.selectors = {
-
- // Can be adjusted by the user
- cacheLength: 50,
-
- createPseudo: markFunction,
-
- match: matchExpr,
-
- attrHandle: {},
-
- find: {},
-
- relative: {
- ">": { dir: "parentNode", first: true },
- " ": { dir: "parentNode" },
- "+": { dir: "previousSibling", first: true },
- "~": { dir: "previousSibling" }
- },
-
- preFilter: {
- "ATTR": function( match ) {
- match[1] = match[1].replace( runescape, funescape );
-
- // Move the given value to match[3] whether quoted or unquoted
- match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
-
- if ( match[2] === "~=" ) {
- match[3] = " " + match[3] + " ";
- }
-
- return match.slice( 0, 4 );
- },
-
- "CHILD": function( match ) {
- /* matches from matchExpr["CHILD"]
- 1 type (only|nth|...)
- 2 what (child|of-type)
- 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
- 4 xn-component of xn+y argument ([+-]?\d*n|)
- 5 sign of xn-component
- 6 x of xn-component
- 7 sign of y-component
- 8 y of y-component
- */
- match[1] = match[1].toLowerCase();
-
- if ( match[1].slice( 0, 3 ) === "nth" ) {
- // nth-* requires argument
- if ( !match[3] ) {
- Sizzle.error( match[0] );
- }
-
- // numeric x and y parameters for Expr.filter.CHILD
- // remember that false/true cast respectively to 0/1
- match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
- match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
-
- // other types prohibit arguments
- } else if ( match[3] ) {
- Sizzle.error( match[0] );
- }
-
- return match;
- },
-
- "PSEUDO": function( match ) {
- var excess,
- unquoted = !match[6] && match[2];
-
- if ( matchExpr["CHILD"].test( match[0] ) ) {
- return null;
- }
-
- // Accept quoted arguments as-is
- if ( match[3] ) {
- match[2] = match[4] || match[5] || "";
-
- // Strip excess characters from unquoted arguments
- } else if ( unquoted && rpseudo.test( unquoted ) &&
- // Get excess from tokenize (recursively)
- (excess = tokenize( unquoted, true )) &&
- // advance to the next closing parenthesis
- (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
-
- // excess is a negative index
- match[0] = match[0].slice( 0, excess );
- match[2] = unquoted.slice( 0, excess );
- }
-
- // Return only captures needed by the pseudo filter method (type and argument)
- return match.slice( 0, 3 );
- }
- },
-
- filter: {
-
- "TAG": function( nodeNameSelector ) {
- var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
- return nodeNameSelector === "*" ?
- function() { return true; } :
- function( elem ) {
- return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
- };
- },
-
- "CLASS": function( className ) {
- var pattern = classCache[ className + " " ];
-
- return pattern ||
- (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
- classCache( className, function( elem ) {
- return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
- });
- },
-
- "ATTR": function( name, operator, check ) {
- return function( elem ) {
- var result = Sizzle.attr( elem, name );
-
- if ( result == null ) {
- return operator === "!=";
- }
- if ( !operator ) {
- return true;
- }
-
- result += "";
-
- return operator === "=" ? result === check :
- operator === "!=" ? result !== check :
- operator === "^=" ? check && result.indexOf( check ) === 0 :
- operator === "*=" ? check && result.indexOf( check ) > -1 :
- operator === "$=" ? check && result.slice( -check.length ) === check :
- operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
- operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
- false;
- };
- },
-
- "CHILD": function( type, what, argument, first, last ) {
- var simple = type.slice( 0, 3 ) !== "nth",
- forward = type.slice( -4 ) !== "last",
- ofType = what === "of-type";
-
- return first === 1 && last === 0 ?
-
- // Shortcut for :nth-*(n)
- function( elem ) {
- return !!elem.parentNode;
- } :
-
- function( elem, context, xml ) {
- var cache, outerCache, node, diff, nodeIndex, start,
- dir = simple !== forward ? "nextSibling" : "previousSibling",
- parent = elem.parentNode,
- name = ofType && elem.nodeName.toLowerCase(),
- useCache = !xml && !ofType;
-
- if ( parent ) {
-
- // :(first|last|only)-(child|of-type)
- if ( simple ) {
- while ( dir ) {
- node = elem;
- while ( (node = node[ dir ]) ) {
- if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
- return false;
- }
- }
- // Reverse direction for :only-* (if we haven't yet done so)
- start = dir = type === "only" && !start && "nextSibling";
- }
- return true;
- }
-
- start = [ forward ? parent.firstChild : parent.lastChild ];
-
- // non-xml :nth-child(...) stores cache data on `parent`
- if ( forward && useCache ) {
- // Seek `elem` from a previously-cached index
- outerCache = parent[ expando ] || (parent[ expando ] = {});
- cache = outerCache[ type ] || [];
- nodeIndex = cache[0] === dirruns && cache[1];
- diff = cache[0] === dirruns && cache[2];
- node = nodeIndex && parent.childNodes[ nodeIndex ];
-
- while ( (node = ++nodeIndex && node && node[ dir ] ||
-
- // Fallback to seeking `elem` from the start
- (diff = nodeIndex = 0) || start.pop()) ) {
-
- // When found, cache indexes on `parent` and break
- if ( node.nodeType === 1 && ++diff && node === elem ) {
- outerCache[ type ] = [ dirruns, nodeIndex, diff ];
- break;
- }
- }
-
- // Use previously-cached element index if available
- } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
- diff = cache[1];
-
- // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)
- } else {
- // Use the same loop as above to seek `elem` from the start
- while ( (node = ++nodeIndex && node && node[ dir ] ||
- (diff = nodeIndex = 0) || start.pop()) ) {
-
- if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
- // Cache the index of each encountered element
- if ( useCache ) {
- (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
- }
-
- if ( node === elem ) {
- break;
- }
- }
- }
- }
-
- // Incorporate the offset, then check against cycle size
- diff -= last;
- return diff === first || ( diff % first === 0 && diff / first >= 0 );
- }
- };
- },
-
- "PSEUDO": function( pseudo, argument ) {
- // pseudo-class names are case-insensitive
- // http://www.w3.org/TR/selectors/#pseudo-classes
- // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
- // Remember that setFilters inherits from pseudos
- var args,
- fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
- Sizzle.error( "unsupported pseudo: " + pseudo );
-
- // The user may use createPseudo to indicate that
- // arguments are needed to create the filter function
- // just as Sizzle does
- if ( fn[ expando ] ) {
- return fn( argument );
- }
-
- // But maintain support for old signatures
- if ( fn.length > 1 ) {
- args = [ pseudo, pseudo, "", argument ];
- return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
- markFunction(function( seed, matches ) {
- var idx,
- matched = fn( seed, argument ),
- i = matched.length;
- while ( i-- ) {
- idx = indexOf( seed, matched[i] );
- seed[ idx ] = !( matches[ idx ] = matched[i] );
- }
- }) :
- function( elem ) {
- return fn( elem, 0, args );
- };
- }
-
- return fn;
- }
- },
-
- pseudos: {
- // Potentially complex pseudos
- "not": markFunction(function( selector ) {
- // Trim the selector passed to compile
- // to avoid treating leading and trailing
- // spaces as combinators
- var input = [],
- results = [],
- matcher = compile( selector.replace( rtrim, "$1" ) );
-
- return matcher[ expando ] ?
- markFunction(function( seed, matches, context, xml ) {
- var elem,
- unmatched = matcher( seed, null, xml, [] ),
- i = seed.length;
-
- // Match elements unmatched by `matcher`
- while ( i-- ) {
- if ( (elem = unmatched[i]) ) {
- seed[i] = !(matches[i] = elem);
- }
- }
- }) :
- function( elem, context, xml ) {
- input[0] = elem;
- matcher( input, null, xml, results );
- // Don't keep the element (issue #299)
- input[0] = null;
- return !results.pop();
- };
- }),
-
- "has": markFunction(function( selector ) {
- return function( elem ) {
- return Sizzle( selector, elem ).length > 0;
- };
- }),
-
- "contains": markFunction(function( text ) {
- text = text.replace( runescape, funescape );
- return function( elem ) {
- return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
- };
- }),
-
- // "Whether an element is represented by a :lang() selector
- // is based solely on the element's language value
- // being equal to the identifier C,
- // or beginning with the identifier C immediately followed by "-".
- // The matching of C against the element's language value is performed case-insensitively.
- // The identifier C does not have to be a valid language name."
- // http://www.w3.org/TR/selectors/#lang-pseudo
- "lang": markFunction( function( lang ) {
- // lang value must be a valid identifier
- if ( !ridentifier.test(lang || "") ) {
- Sizzle.error( "unsupported lang: " + lang );
- }
- lang = lang.replace( runescape, funescape ).toLowerCase();
- return function( elem ) {
- var elemLang;
- do {
- if ( (elemLang = documentIsHTML ?
- elem.lang :
- elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
-
- elemLang = elemLang.toLowerCase();
- return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
- }
- } while ( (elem = elem.parentNode) && elem.nodeType === 1 );
- return false;
- };
- }),
-
- // Miscellaneous
- "target": function( elem ) {
- var hash = window.location && window.location.hash;
- return hash && hash.slice( 1 ) === elem.id;
- },
-
- "root": function( elem ) {
- return elem === docElem;
- },
-
- "focus": function( elem ) {
- return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
- },
-
- // Boolean properties
- "enabled": function( elem ) {
- return elem.disabled === false;
- },
-
- "disabled": function( elem ) {
- return elem.disabled === true;
- },
-
- "checked": function( elem ) {
- // In CSS3, :checked should return both checked and selected elements
- // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
- var nodeName = elem.nodeName.toLowerCase();
- return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
- },
-
- "selected": function( elem ) {
- // Accessing this property makes selected-by-default
- // options in Safari work properly
- if ( elem.parentNode ) {
- elem.parentNode.selectedIndex;
- }
-
- return elem.selected === true;
- },
-
- // Contents
- "empty": function( elem ) {
- // http://www.w3.org/TR/selectors/#empty-pseudo
- // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
- // but not by others (comment: 8; processing instruction: 7; etc.)
- // nodeType < 6 works because attributes (2) do not appear as children
- for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
- if ( elem.nodeType < 6 ) {
- return false;
- }
- }
- return true;
- },
-
- "parent": function( elem ) {
- return !Expr.pseudos["empty"]( elem );
- },
-
- // Element/input types
- "header": function( elem ) {
- return rheader.test( elem.nodeName );
- },
-
- "input": function( elem ) {
- return rinputs.test( elem.nodeName );
- },
-
- "button": function( elem ) {
- var name = elem.nodeName.toLowerCase();
- return name === "input" && elem.type === "button" || name === "button";
- },
-
- "text": function( elem ) {
- var attr;
- return elem.nodeName.toLowerCase() === "input" &&
- elem.type === "text" &&
-
- // Support: IE<8
- // New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
- ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
- },
-
- // Position-in-collection
- "first": createPositionalPseudo(function() {
- return [ 0 ];
- }),
-
- "last": createPositionalPseudo(function( matchIndexes, length ) {
- return [ length - 1 ];
- }),
-
- "eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
- return [ argument < 0 ? argument + length : argument ];
- }),
-
- "even": createPositionalPseudo(function( matchIndexes, length ) {
- var i = 0;
- for ( ; i < length; i += 2 ) {
- matchIndexes.push( i );
- }
- return matchIndexes;
- }),
-
- "odd": createPositionalPseudo(function( matchIndexes, length ) {
- var i = 1;
- for ( ; i < length; i += 2 ) {
- matchIndexes.push( i );
- }
- return matchIndexes;
- }),
-
- "lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
- var i = argument < 0 ? argument + length : argument;
- for ( ; --i >= 0; ) {
- matchIndexes.push( i );
- }
- return matchIndexes;
- }),
-
- "gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
- var i = argument < 0 ? argument + length : argument;
- for ( ; ++i < length; ) {
- matchIndexes.push( i );
- }
- return matchIndexes;
- })
- }
-};
-
-Expr.pseudos["nth"] = Expr.pseudos["eq"];
-
-// Add button/input type pseudos
-for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
- Expr.pseudos[ i ] = createInputPseudo( i );
-}
-for ( i in { submit: true, reset: true } ) {
- Expr.pseudos[ i ] = createButtonPseudo( i );
-}
-
-// Easy API for creating new setFilters
-function setFilters() {}
-setFilters.prototype = Expr.filters = Expr.pseudos;
-Expr.setFilters = new setFilters();
-
-tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
- var matched, match, tokens, type,
- soFar, groups, preFilters,
- cached = tokenCache[ selector + " " ];
-
- if ( cached ) {
- return parseOnly ? 0 : cached.slice( 0 );
- }
-
- soFar = selector;
- groups = [];
- preFilters = Expr.preFilter;
-
- while ( soFar ) {
-
- // Comma and first run
- if ( !matched || (match = rcomma.exec( soFar )) ) {
- if ( match ) {
- // Don't consume trailing commas as valid
- soFar = soFar.slice( match[0].length ) || soFar;
- }
- groups.push( (tokens = []) );
- }
-
- matched = false;
-
- // Combinators
- if ( (match = rcombinators.exec( soFar )) ) {
- matched = match.shift();
- tokens.push({
- value: matched,
- // Cast descendant combinators to space
- type: match[0].replace( rtrim, " " )
- });
- soFar = soFar.slice( matched.length );
- }
-
- // Filters
- for ( type in Expr.filter ) {
- if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
- (match = preFilters[ type ]( match ))) ) {
- matched = match.shift();
- tokens.push({
- value: matched,
- type: type,
- matches: match
- });
- soFar = soFar.slice( matched.length );
- }
- }
-
- if ( !matched ) {
- break;
- }
- }
-
- // Return the length of the invalid excess
- // if we're just parsing
- // Otherwise, throw an error or return tokens
- return parseOnly ?
- soFar.length :
- soFar ?
- Sizzle.error( selector ) :
- // Cache the tokens
- tokenCache( selector, groups ).slice( 0 );
-};
-
-function toSelector( tokens ) {
- var i = 0,
- len = tokens.length,
- selector = "";
- for ( ; i < len; i++ ) {
- selector += tokens[i].value;
- }
- return selector;
-}
-
-function addCombinator( matcher, combinator, base ) {
- var dir = combinator.dir,
- checkNonElements = base && dir === "parentNode",
- doneName = done++;
-
- return combinator.first ?
- // Check against closest ancestor/preceding element
- function( elem, context, xml ) {
- while ( (elem = elem[ dir ]) ) {
- if ( elem.nodeType === 1 || checkNonElements ) {
- return matcher( elem, context, xml );
- }
- }
- } :
-
- // Check against all ancestor/preceding elements
- function( elem, context, xml ) {
- var oldCache, outerCache,
- newCache = [ dirruns, doneName ];
-
- // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
- if ( xml ) {
- while ( (elem = elem[ dir ]) ) {
- if ( elem.nodeType === 1 || checkNonElements ) {
- if ( matcher( elem, context, xml ) ) {
- return true;
- }
- }
- }
- } else {
- while ( (elem = elem[ dir ]) ) {
- if ( elem.nodeType === 1 || checkNonElements ) {
- outerCache = elem[ expando ] || (elem[ expando ] = {});
- if ( (oldCache = outerCache[ dir ]) &&
- oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
-
- // Assign to newCache so results back-propagate to previous elements
- return (newCache[ 2 ] = oldCache[ 2 ]);
- } else {
- // Reuse newcache so results back-propagate to previous elements
- outerCache[ dir ] = newCache;
-
- // A match means we're done; a fail means we have to keep checking
- if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
- return true;
- }
- }
- }
- }
- }
- };
-}
-
-function elementMatcher( matchers ) {
- return matchers.length > 1 ?
- function( elem, context, xml ) {
- var i = matchers.length;
- while ( i-- ) {
- if ( !matchers[i]( elem, context, xml ) ) {
- return false;
- }
- }
- return true;
- } :
- matchers[0];
-}
-
-function multipleContexts( selector, contexts, results ) {
- var i = 0,
- len = contexts.length;
- for ( ; i < len; i++ ) {
- Sizzle( selector, contexts[i], results );
- }
- return results;
-}
-
-function condense( unmatched, map, filter, context, xml ) {
- var elem,
- newUnmatched = [],
- i = 0,
- len = unmatched.length,
- mapped = map != null;
-
- for ( ; i < len; i++ ) {
- if ( (elem = unmatched[i]) ) {
- if ( !filter || filter( elem, context, xml ) ) {
- newUnmatched.push( elem );
- if ( mapped ) {
- map.push( i );
- }
- }
- }
- }
-
- return newUnmatched;
-}
-
-function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
- if ( postFilter && !postFilter[ expando ] ) {
- postFilter = setMatcher( postFilter );
- }
- if ( postFinder && !postFinder[ expando ] ) {
- postFinder = setMatcher( postFinder, postSelector );
- }
- return markFunction(function( seed, results, context, xml ) {
- var temp, i, elem,
- preMap = [],
- postMap = [],
- preexisting = results.length,
-
- // Get initial elements from seed or context
- elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
-
- // Prefilter to get matcher input, preserving a map for seed-results synchronization
- matcherIn = preFilter && ( seed || !selector ) ?
- condense( elems, preMap, preFilter, context, xml ) :
- elems,
-
- matcherOut = matcher ?
- // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
- postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
-
- // ...intermediate processing is necessary
- [] :
-
- // ...otherwise use results directly
- results :
- matcherIn;
-
- // Find primary matches
- if ( matcher ) {
- matcher( matcherIn, matcherOut, context, xml );
- }
-
- // Apply postFilter
- if ( postFilter ) {
- temp = condense( matcherOut, postMap );
- postFilter( temp, [], context, xml );
-
- // Un-match failing elements by moving them back to matcherIn
- i = temp.length;
- while ( i-- ) {
- if ( (elem = temp[i]) ) {
- matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
- }
- }
- }
-
- if ( seed ) {
- if ( postFinder || preFilter ) {
- if ( postFinder ) {
- // Get the final matcherOut by condensing this intermediate into postFinder contexts
- temp = [];
- i = matcherOut.length;
- while ( i-- ) {
- if ( (elem = matcherOut[i]) ) {
- // Restore matcherIn since elem is not yet a final match
- temp.push( (matcherIn[i] = elem) );
- }
- }
- postFinder( null, (matcherOut = []), temp, xml );
- }
-
- // Move matched elements from seed to results to keep them synchronized
- i = matcherOut.length;
- while ( i-- ) {
- if ( (elem = matcherOut[i]) &&
- (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
-
- seed[temp] = !(results[temp] = elem);
- }
- }
- }
-
- // Add elements to results, through postFinder if defined
- } else {
- matcherOut = condense(
- matcherOut === results ?
- matcherOut.splice( preexisting, matcherOut.length ) :
- matcherOut
- );
- if ( postFinder ) {
- postFinder( null, results, matcherOut, xml );
- } else {
- push.apply( results, matcherOut );
- }
- }
- });
-}
-
-function matcherFromTokens( tokens ) {
- var checkContext, matcher, j,
- len = tokens.length,
- leadingRelative = Expr.relative[ tokens[0].type ],
- implicitRelative = leadingRelative || Expr.relative[" "],
- i = leadingRelative ? 1 : 0,
-
- // The foundational matcher ensures that elements are reachable from top-level context(s)
- matchContext = addCombinator( function( elem ) {
- return elem === checkContext;
- }, implicitRelative, true ),
- matchAnyContext = addCombinator( function( elem ) {
- return indexOf( checkContext, elem ) > -1;
- }, implicitRelative, true ),
- matchers = [ function( elem, context, xml ) {
- var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
- (checkContext = context).nodeType ?
- matchContext( elem, context, xml ) :
- matchAnyContext( elem, context, xml ) );
- // Avoid hanging onto element (issue #299)
- checkContext = null;
- return ret;
- } ];
-
- for ( ; i < len; i++ ) {
- if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
- matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
- } else {
- matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
-
- // Return special upon seeing a positional matcher
- if ( matcher[ expando ] ) {
- // Find the next relative operator (if any) for proper handling
- j = ++i;
- for ( ; j < len; j++ ) {
- if ( Expr.relative[ tokens[j].type ] ) {
- break;
- }
- }
- return setMatcher(
- i > 1 && elementMatcher( matchers ),
- i > 1 && toSelector(
- // If the preceding token was a descendant combinator, insert an implicit any-element `*`
- tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
- ).replace( rtrim, "$1" ),
- matcher,
- i < j && matcherFromTokens( tokens.slice( i, j ) ),
- j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
- j < len && toSelector( tokens )
- );
- }
- matchers.push( matcher );
- }
- }
-
- return elementMatcher( matchers );
-}
-
-function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
- var bySet = setMatchers.length > 0,
- byElement = elementMatchers.length > 0,
- superMatcher = function( seed, context, xml, results, outermost ) {
- var elem, j, matcher,
- matchedCount = 0,
- i = "0",
- unmatched = seed && [],
- setMatched = [],
- contextBackup = outermostContext,
- // We must always have either seed elements or outermost context
- elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
- // Use integer dirruns iff this is the outermost matcher
- dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
- len = elems.length;
-
- if ( outermost ) {
- outermostContext = context !== document && context;
- }
-
- // Add elements passing elementMatchers directly to results
- // Keep `i` a string if there are no elements so `matchedCount` will be "00" below
- // Support: IE<9, Safari
- // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
- for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
- if ( byElement && elem ) {
- j = 0;
- while ( (matcher = elementMatchers[j++]) ) {
- if ( matcher( elem, context, xml ) ) {
- results.push( elem );
- break;
- }
- }
- if ( outermost ) {
- dirruns = dirrunsUnique;
- }
- }
-
- // Track unmatched elements for set filters
- if ( bySet ) {
- // They will have gone through all possible matchers
- if ( (elem = !matcher && elem) ) {
- matchedCount--;
- }
-
- // Lengthen the array for every element, matched or not
- if ( seed ) {
- unmatched.push( elem );
- }
- }
- }
-
- // Apply set filters to unmatched elements
- matchedCount += i;
- if ( bySet && i !== matchedCount ) {
- j = 0;
- while ( (matcher = setMatchers[j++]) ) {
- matcher( unmatched, setMatched, context, xml );
- }
-
- if ( seed ) {
- // Reintegrate element matches to eliminate the need for sorting
- if ( matchedCount > 0 ) {
- while ( i-- ) {
- if ( !(unmatched[i] || setMatched[i]) ) {
- setMatched[i] = pop.call( results );
- }
- }
- }
-
- // Discard index placeholder values to get only actual matches
- setMatched = condense( setMatched );
- }
-
- // Add matches to results
- push.apply( results, setMatched );
-
- // Seedless set matches succeeding multiple successful matchers stipulate sorting
- if ( outermost && !seed && setMatched.length > 0 &&
- ( matchedCount + setMatchers.length ) > 1 ) {
-
- Sizzle.uniqueSort( results );
- }
- }
-
- // Override manipulation of globals by nested matchers
- if ( outermost ) {
- dirruns = dirrunsUnique;
- outermostContext = contextBackup;
- }
-
- return unmatched;
- };
-
- return bySet ?
- markFunction( superMatcher ) :
- superMatcher;
-}
-
-compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
- var i,
- setMatchers = [],
- elementMatchers = [],
- cached = compilerCache[ selector + " " ];
-
- if ( !cached ) {
- // Generate a function of recursive functions that can be used to check each element
- if ( !match ) {
- match = tokenize( selector );
- }
- i = match.length;
- while ( i-- ) {
- cached = matcherFromTokens( match[i] );
- if ( cached[ expando ] ) {
- setMatchers.push( cached );
- } else {
- elementMatchers.push( cached );
- }
- }
-
- // Cache the compiled function
- cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
-
- // Save selector and tokenization
- cached.selector = selector;
- }
- return cached;
-};
-
-/**
- * A low-level selection function that works with Sizzle's compiled
- * selector functions
- * @param {String|Function} selector A selector or a pre-compiled
- * selector function built with Sizzle.compile
- * @param {Element} context
- * @param {Array} [results]
- * @param {Array} [seed] A set of elements to match against
- */
-select = Sizzle.select = function( selector, context, results, seed ) {
- var i, tokens, token, type, find,
- compiled = typeof selector === "function" && selector,
- match = !seed && tokenize( (selector = compiled.selector || selector) );
-
- results = results || [];
-
- // Try to minimize operations if there is no seed and only one group
- if ( match.length === 1 ) {
-
- // Take a shortcut and set the context if the root selector is an ID
- tokens = match[0] = match[0].slice( 0 );
- if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
- support.getById && context.nodeType === 9 && documentIsHTML &&
- Expr.relative[ tokens[1].type ] ) {
-
- context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
- if ( !context ) {
- return results;
-
- // Precompiled matchers will still verify ancestry, so step up a level
- } else if ( compiled ) {
- context = context.parentNode;
- }
-
- selector = selector.slice( tokens.shift().value.length );
- }
-
- // Fetch a seed set for right-to-left matching
- i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
- while ( i-- ) {
- token = tokens[i];
-
- // Abort if we hit a combinator
- if ( Expr.relative[ (type = token.type) ] ) {
- break;
- }
- if ( (find = Expr.find[ type ]) ) {
- // Search, expanding context for leading sibling combinators
- if ( (seed = find(
- token.matches[0].replace( runescape, funescape ),
- rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
- )) ) {
-
- // If seed is empty or no tokens remain, we can return early
- tokens.splice( i, 1 );
- selector = seed.length && toSelector( tokens );
- if ( !selector ) {
- push.apply( results, seed );
- return results;
- }
-
- break;
- }
- }
- }
- }
-
- // Compile and execute a filtering function if one is not provided
- // Provide `match` to avoid retokenization if we modified the selector above
- ( compiled || compile( selector, match ) )(
- seed,
- context,
- !documentIsHTML,
- results,
- rsibling.test( selector ) && testContext( context.parentNode ) || context
- );
- return results;
-};
-
-// One-time assignments
-
-// Sort stability
-support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
-
-// Support: Chrome 14-35+
-// Always assume duplicates if they aren't passed to the comparison function
-support.detectDuplicates = !!hasDuplicate;
-
-// Initialize against the default document
-setDocument();
-
-// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
-// Detached nodes confoundingly follow *each other*
-support.sortDetached = assert(function( div1 ) {
- // Should return 1, but returns 4 (following)
- return div1.compareDocumentPosition( document.createElement("div") ) & 1;
-});
-
-// Support: IE<8
-// Prevent attribute/property "interpolation"
-// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
-if ( !assert(function( div ) {
- div.innerHTML = "<a href='#'></a>";
- return div.firstChild.getAttribute("href") === "#" ;
-}) ) {
- addHandle( "type|href|height|width", function( elem, name, isXML ) {
- if ( !isXML ) {
- return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
- }
- });
-}
-
-// Support: IE<9
-// Use defaultValue in place of getAttribute("value")
-if ( !support.attributes || !assert(function( div ) {
- div.innerHTML = "<input/>";
- div.firstChild.setAttribute( "value", "" );
- return div.firstChild.getAttribute( "value" ) === "";
-}) ) {
- addHandle( "value", function( elem, name, isXML ) {
- if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
- return elem.defaultValue;
- }
- });
-}
-
-// Support: IE<9
-// Use getAttributeNode to fetch booleans when getAttribute lies
-if ( !assert(function( div ) {
- return div.getAttribute("disabled") == null;
-}) ) {
- addHandle( booleans, function( elem, name, isXML ) {
- var val;
- if ( !isXML ) {
- return elem[ name ] === true ? name.toLowerCase() :
- (val = elem.getAttributeNode( name )) && val.specified ?
- val.value :
- null;
- }
- });
-}
-
-return Sizzle;
-
-})( window );
-
-
-
-jQuery.find = Sizzle;
-jQuery.expr = Sizzle.selectors;
-jQuery.expr[":"] = jQuery.expr.pseudos;
-jQuery.unique = Sizzle.uniqueSort;
-jQuery.text = Sizzle.getText;
-jQuery.isXMLDoc = Sizzle.isXML;
-jQuery.contains = Sizzle.contains;
-
-
-
-var rneedsContext = jQuery.expr.match.needsContext;
-
-var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
-
-
-
-var risSimple = /^.[^:#\[\.,]*$/;
-
-// Implement the identical functionality for filter and not
-function winnow( elements, qualifier, not ) {
- if ( jQuery.isFunction( qualifier ) ) {
- return jQuery.grep( elements, function( elem, i ) {
- /* jshint -W018 */
- return !!qualifier.call( elem, i, elem ) !== not;
- });
-
- }
-
- if ( qualifier.nodeType ) {
- return jQuery.grep( elements, function( elem ) {
- return ( elem === qualifier ) !== not;
- });
-
- }
-
- if ( typeof qualifier === "string" ) {
- if ( risSimple.test( qualifier ) ) {
- return jQuery.filter( qualifier, elements, not );
- }
-
- qualifier = jQuery.filter( qualifier, elements );
- }
-
- return jQuery.grep( elements, function( elem ) {
- return ( indexOf.call( qualifier, elem ) >= 0 ) !== not;
- });
-}
-
-jQuery.filter = function( expr, elems, not ) {
- var elem = elems[ 0 ];
-
- if ( not ) {
- expr = ":not(" + expr + ")";
- }
-
- return elems.length === 1 && elem.nodeType === 1 ?
- jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
- jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
- return elem.nodeType === 1;
- }));
-};
-
-jQuery.fn.extend({
- find: function( selector ) {
- var i,
- len = this.length,
- ret = [],
- self = this;
-
- if ( typeof selector !== "string" ) {
- return this.pushStack( jQuery( selector ).filter(function() {
- for ( i = 0; i < len; i++ ) {
- if ( jQuery.contains( self[ i ], this ) ) {
- return true;
- }
- }
- }) );
- }
-
- for ( i = 0; i < len; i++ ) {
- jQuery.find( selector, self[ i ], ret );
- }
-
- // Needed because $( selector, context ) becomes $( context ).find( selector )
- ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
- ret.selector = this.selector ? this.selector + " " + selector : selector;
- return ret;
- },
- filter: function( selector ) {
- return this.pushStack( winnow(this, selector || [], false) );
- },
- not: function( selector ) {
- return this.pushStack( winnow(this, selector || [], true) );
- },
- is: function( selector ) {
- return !!winnow(
- this,
-
- // If this is a positional/relative selector, check membership in the returned set
- // so $("p:first").is("p:last") won't return true for a doc with two "p".
- typeof selector === "string" && rneedsContext.test( selector ) ?
- jQuery( selector ) :
- selector || [],
- false
- ).length;
- }
-});
-
-
-// Initialize a jQuery object
-
-
-// A central reference to the root jQuery(document)
-var rootjQuery,
-
- // A simple way to check for HTML strings
- // Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
- // Strict HTML recognition (#11290: must start with <)
- rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
-
- init = jQuery.fn.init = function( selector, context ) {
- var match, elem;
-
- // HANDLE: $(""), $(null), $(undefined), $(false)
- if ( !selector ) {
- return this;
- }
-
- // Handle HTML strings
- if ( typeof selector === "string" ) {
- if ( selector[0] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) {
- // Assume that strings that start and end with <> are HTML and skip the regex check
- match = [ null, selector, null ];
-
- } else {
- match = rquickExpr.exec( selector );
- }
-
- // Match html or make sure no context is specified for #id
- if ( match && (match[1] || !context) ) {
-
- // HANDLE: $(html) -> $(array)
- if ( match[1] ) {
- context = context instanceof jQuery ? context[0] : context;
-
- // Option to run scripts is true for back-compat
- // Intentionally let the error be thrown if parseHTML is not present
- jQuery.merge( this, jQuery.parseHTML(
- match[1],
- context && context.nodeType ? context.ownerDocument || context : document,
- true
- ) );
-
- // HANDLE: $(html, props)
- if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
- for ( match in context ) {
- // Properties of context are called as methods if possible
- if ( jQuery.isFunction( this[ match ] ) ) {
- this[ match ]( context[ match ] );
-
- // ...and otherwise set as attributes
- } else {
- this.attr( match, context[ match ] );
- }
- }
- }
-
- return this;
-
- // HANDLE: $(#id)
- } else {
- elem = document.getElementById( match[2] );
-
- // Support: Blackberry 4.6
- // gEBID returns nodes no longer in the document (#6963)
- if ( elem && elem.parentNode ) {
- // Inject the element directly into the jQuery object
- this.length = 1;
- this[0] = elem;
- }
-
- this.context = document;
- this.selector = selector;
- return this;
- }
-
- // HANDLE: $(expr, $(...))
- } else if ( !context || context.jquery ) {
- return ( context || rootjQuery ).find( selector );
-
- // HANDLE: $(expr, context)
- // (which is just equivalent to: $(context).find(expr)
- } else {
- return this.constructor( context ).find( selector );
- }
-
- // HANDLE: $(DOMElement)
- } else if ( selector.nodeType ) {
- this.context = this[0] = selector;
- this.length = 1;
- return this;
-
- // HANDLE: $(function)
- // Shortcut for document ready
- } else if ( jQuery.isFunction( selector ) ) {
- return typeof rootjQuery.ready !== "undefined" ?
- rootjQuery.ready( selector ) :
- // Execute immediately if ready is not present
- selector( jQuery );
- }
-
- if ( selector.selector !== undefined ) {
- this.selector = selector.selector;
- this.context = selector.context;
- }
-
- return jQuery.makeArray( selector, this );
- };
-
-// Give the init function the jQuery prototype for later instantiation
-init.prototype = jQuery.fn;
-
-// Initialize central reference
-rootjQuery = jQuery( document );
-
-
-var rparentsprev = /^(?:parents|prev(?:Until|All))/,
- // Methods guaranteed to produce a unique set when starting from a unique set
- guaranteedUnique = {
- children: true,
- contents: true,
- next: true,
- prev: true
- };
-
-jQuery.extend({
- dir: function( elem, dir, until ) {
- var matched = [],
- truncate = until !== undefined;
-
- while ( (elem = elem[ dir ]) && elem.nodeType !== 9 ) {
- if ( elem.nodeType === 1 ) {
- if ( truncate && jQuery( elem ).is( until ) ) {
- break;
- }
- matched.push( elem );
- }
- }
- return matched;
- },
-
- sibling: function( n, elem ) {
- var matched = [];
-
- for ( ; n; n = n.nextSibling ) {
- if ( n.nodeType === 1 && n !== elem ) {
- matched.push( n );
- }
- }
-
- return matched;
- }
-});
-
-jQuery.fn.extend({
- has: function( target ) {
- var targets = jQuery( target, this ),
- l = targets.length;
-
- return this.filter(function() {
- var i = 0;
- for ( ; i < l; i++ ) {
- if ( jQuery.contains( this, targets[i] ) ) {
- return true;
- }
- }
- });
- },
-
- closest: function( selectors, context ) {
- var cur,
- i = 0,
- l = this.length,
- matched = [],
- pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
- jQuery( selectors, context || this.context ) :
- 0;
-
- for ( ; i < l; i++ ) {
- for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {
- // Always skip document fragments
- if ( cur.nodeType < 11 && (pos ?
- pos.index(cur) > -1 :
-
- // Don't pass non-elements to Sizzle
- cur.nodeType === 1 &&
- jQuery.find.matchesSelector(cur, selectors)) ) {
-
- matched.push( cur );
- break;
- }
- }
- }
-
- return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );
- },
-
- // Determine the position of an element within the set
- index: function( elem ) {
-
- // No argument, return index in parent
- if ( !elem ) {
- return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
- }
-
- // Index in selector
- if ( typeof elem === "string" ) {
- return indexOf.call( jQuery( elem ), this[ 0 ] );
- }
-
- // Locate the position of the desired element
- return indexOf.call( this,
-
- // If it receives a jQuery object, the first element is used
- elem.jquery ? elem[ 0 ] : elem
- );
- },
-
- add: function( selector, context ) {
- return this.pushStack(
- jQuery.unique(
- jQuery.merge( this.get(), jQuery( selector, context ) )
- )
- );
- },
-
- addBack: function( selector ) {
- return this.add( selector == null ?
- this.prevObject : this.prevObject.filter(selector)
- );
- }
-});
-
-function sibling( cur, dir ) {
- while ( (cur = cur[dir]) && cur.nodeType !== 1 ) {}
- return cur;
-}
-
-jQuery.each({
- parent: function( elem ) {
- var parent = elem.parentNode;
- return parent && parent.nodeType !== 11 ? parent : null;
- },
- parents: function( elem ) {
- return jQuery.dir( elem, "parentNode" );
- },
- parentsUntil: function( elem, i, until ) {
- return jQuery.dir( elem, "parentNode", until );
- },
- next: function( elem ) {
- return sibling( elem, "nextSibling" );
- },
- prev: function( elem ) {
- return sibling( elem, "previousSibling" );
- },
- nextAll: function( elem ) {
- return jQuery.dir( elem, "nextSibling" );
- },
- prevAll: function( elem ) {
- return jQuery.dir( elem, "previousSibling" );
- },
- nextUntil: function( elem, i, until ) {
- return jQuery.dir( elem, "nextSibling", until );
- },
- prevUntil: function( elem, i, until ) {
- return jQuery.dir( elem, "previousSibling", until );
- },
- siblings: function( elem ) {
- return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
- },
- children: function( elem ) {
- return jQuery.sibling( elem.firstChild );
- },
- contents: function( elem ) {
- return elem.contentDocument || jQuery.merge( [], elem.childNodes );
- }
-}, function( name, fn ) {
- jQuery.fn[ name ] = function( until, selector ) {
- var matched = jQuery.map( this, fn, until );
-
- if ( name.slice( -5 ) !== "Until" ) {
- selector = until;
- }
-
- if ( selector && typeof selector === "string" ) {
- matched = jQuery.filter( selector, matched );
- }
-
- if ( this.length > 1 ) {
- // Remove duplicates
- if ( !guaranteedUnique[ name ] ) {
- jQuery.unique( matched );
- }
-
- // Reverse order for parents* and prev-derivatives
- if ( rparentsprev.test( name ) ) {
- matched.reverse();
- }
- }
-
- return this.pushStack( matched );
- };
-});
-var rnotwhite = (/\S+/g);
-
-
-
-// String to Object options format cache
-var optionsCache = {};
-
-// Convert String-formatted options into Object-formatted ones and store in cache
-function createOptions( options ) {
- var object = optionsCache[ options ] = {};
- jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
- object[ flag ] = true;
- });
- return object;
-}
-
-/*
- * Create a callback list using the following parameters:
- *
- * options: an optional list of space-separated options that will change how
- * the callback list behaves or a more traditional option object
- *
- * By default a callback list will act like an event callback list and can be
- * "fired" multiple times.
- *
- * Possible options:
- *
- * once: will ensure the callback list can only be fired once (like a Deferred)
- *
- * memory: will keep track of previous values and will call any callback added
- * after the list has been fired right away with the latest "memorized"
- * values (like a Deferred)
- *
- * unique: will ensure a callback can only be added once (no duplicate in the list)
- *
- * stopOnFalse: interrupt callings when a callback returns false
- *
- */
-jQuery.Callbacks = function( options ) {
-
- // Convert options from String-formatted to Object-formatted if needed
- // (we check in cache first)
- options = typeof options === "string" ?
- ( optionsCache[ options ] || createOptions( options ) ) :
- jQuery.extend( {}, options );
-
- var // Last fire value (for non-forgettable lists)
- memory,
- // Flag to know if list was already fired
- fired,
- // Flag to know if list is currently firing
- firing,
- // First callback to fire (used internally by add and fireWith)
- firingStart,
- // End of the loop when firing
- firingLength,
- // Index of currently firing callback (modified by remove if needed)
- firingIndex,
- // Actual callback list
- list = [],
- // Stack of fire calls for repeatable lists
- stack = !options.once && [],
- // Fire callbacks
- fire = function( data ) {
- memory = options.memory && data;
- fired = true;
- firingIndex = firingStart || 0;
- firingStart = 0;
- firingLength = list.length;
- firing = true;
- for ( ; list && firingIndex < firingLength; firingIndex++ ) {
- if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
- memory = false; // To prevent further calls using add
- break;
- }
- }
- firing = false;
- if ( list ) {
- if ( stack ) {
- if ( stack.length ) {
- fire( stack.shift() );
- }
- } else if ( memory ) {
- list = [];
- } else {
- self.disable();
- }
- }
- },
- // Actual Callbacks object
- self = {
- // Add a callback or a collection of callbacks to the list
- add: function() {
- if ( list ) {
- // First, we save the current length
- var start = list.length;
- (function add( args ) {
- jQuery.each( args, function( _, arg ) {
- var type = jQuery.type( arg );
- if ( type === "function" ) {
- if ( !options.unique || !self.has( arg ) ) {
- list.push( arg );
- }
- } else if ( arg && arg.length && type !== "string" ) {
- // Inspect recursively
- add( arg );
- }
- });
- })( arguments );
- // Do we need to add the callbacks to the
- // current firing batch?
- if ( firing ) {
- firingLength = list.length;
- // With memory, if we're not firing then
- // we should call right away
- } else if ( memory ) {
- firingStart = start;
- fire( memory );
- }
- }
- return this;
- },
- // Remove a callback from the list
- remove: function() {
- if ( list ) {
- jQuery.each( arguments, function( _, arg ) {
- var index;
- while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
- list.splice( index, 1 );
- // Handle firing indexes
- if ( firing ) {
- if ( index <= firingLength ) {
- firingLength--;
- }
- if ( index <= firingIndex ) {
- firingIndex--;
- }
- }
- }
- });
- }
- return this;
- },
- // Check if a given callback is in the list.
- // If no argument is given, return whether or not list has callbacks attached.
- has: function( fn ) {
- return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
- },
- // Remove all callbacks from the list
- empty: function() {
- list = [];
- firingLength = 0;
- return this;
- },
- // Have the list do nothing anymore
- disable: function() {
- list = stack = memory = undefined;
- return this;
- },
- // Is it disabled?
- disabled: function() {
- return !list;
- },
- // Lock the list in its current state
- lock: function() {
- stack = undefined;
- if ( !memory ) {
- self.disable();
- }
- return this;
- },
- // Is it locked?
- locked: function() {
- return !stack;
- },
- // Call all callbacks with the given context and arguments
- fireWith: function( context, args ) {
- if ( list && ( !fired || stack ) ) {
- args = args || [];
- args = [ context, args.slice ? args.slice() : args ];
- if ( firing ) {
- stack.push( args );
- } else {
- fire( args );
- }
- }
- return this;
- },
- // Call all the callbacks with the given arguments
- fire: function() {
- self.fireWith( this, arguments );
- return this;
- },
- // To know if the callbacks have already been called at least once
- fired: function() {
- return !!fired;
- }
- };
-
- return self;
-};
-
-
-jQuery.extend({
-
- Deferred: function( func ) {
- var tuples = [
- // action, add listener, listener list, final state
- [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
- [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
- [ "notify", "progress", jQuery.Callbacks("memory") ]
- ],
- state = "pending",
- promise = {
- state: function() {
- return state;
- },
- always: function() {
- deferred.done( arguments ).fail( arguments );
- return this;
- },
- then: function( /* fnDone, fnFail, fnProgress */ ) {
- var fns = arguments;
- return jQuery.Deferred(function( newDefer ) {
- jQuery.each( tuples, function( i, tuple ) {
- var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
- // deferred[ done | fail | progress ] for forwarding actions to newDefer
- deferred[ tuple[1] ](function() {
- var returned = fn && fn.apply( this, arguments );
- if ( returned && jQuery.isFunction( returned.promise ) ) {
- returned.promise()
- .done( newDefer.resolve )
- .fail( newDefer.reject )
- .progress( newDefer.notify );
- } else {
- newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
- }
- });
- });
- fns = null;
- }).promise();
- },
- // Get a promise for this deferred
- // If obj is provided, the promise aspect is added to the object
- promise: function( obj ) {
- return obj != null ? jQuery.extend( obj, promise ) : promise;
- }
- },
- deferred = {};
-
- // Keep pipe for back-compat
- promise.pipe = promise.then;
-
- // Add list-specific methods
- jQuery.each( tuples, function( i, tuple ) {
- var list = tuple[ 2 ],
- stateString = tuple[ 3 ];
-
- // promise[ done | fail | progress ] = list.add
- promise[ tuple[1] ] = list.add;
-
- // Handle state
- if ( stateString ) {
- list.add(function() {
- // state = [ resolved | rejected ]
- state = stateString;
-
- // [ reject_list | resolve_list ].disable; progress_list.lock
- }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
- }
-
- // deferred[ resolve | reject | notify ]
- deferred[ tuple[0] ] = function() {
- deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
- return this;
- };
- deferred[ tuple[0] + "With" ] = list.fireWith;
- });
-
- // Make the deferred a promise
- promise.promise( deferred );
-
- // Call given func if any
- if ( func ) {
- func.call( deferred, deferred );
- }
-
- // All done!
- return deferred;
- },
-
- // Deferred helper
- when: function( subordinate /* , ..., subordinateN */ ) {
- var i = 0,
- resolveValues = slice.call( arguments ),
- length = resolveValues.length,
-
- // the count of uncompleted subordinates
- remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
-
- // the master Deferred. If resolveValues consist of only a single Deferred, just use that.
- deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
-
- // Update function for both resolve and progress values
- updateFunc = function( i, contexts, values ) {
- return function( value ) {
- contexts[ i ] = this;
- values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
- if ( values === progressValues ) {
- deferred.notifyWith( contexts, values );
- } else if ( !( --remaining ) ) {
- deferred.resolveWith( contexts, values );
- }
- };
- },
-
- progressValues, progressContexts, resolveContexts;
-
- // Add listeners to Deferred subordinates; treat others as resolved
- if ( length > 1 ) {
- progressValues = new Array( length );
- progressContexts = new Array( length );
- resolveContexts = new Array( length );
- for ( ; i < length; i++ ) {
- if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
- resolveValues[ i ].promise()
- .done( updateFunc( i, resolveContexts, resolveValues ) )
- .fail( deferred.reject )
- .progress( updateFunc( i, progressContexts, progressValues ) );
- } else {
- --remaining;
- }
- }
- }
-
- // If we're not waiting on anything, resolve the master
- if ( !remaining ) {
- deferred.resolveWith( resolveContexts, resolveValues );
- }
-
- return deferred.promise();
- }
-});
-
-
-// The deferred used on DOM ready
-var readyList;
-
-jQuery.fn.ready = function( fn ) {
- // Add the callback
- jQuery.ready.promise().done( fn );
-
- return this;
-};
-
-jQuery.extend({
- // Is the DOM ready to be used? Set to true once it occurs.
- isReady: false,
-
- // A counter to track how many items to wait for before
- // the ready event fires. See #6781
- readyWait: 1,
-
- // Hold (or release) the ready event
- holdReady: function( hold ) {
- if ( hold ) {
- jQuery.readyWait++;
- } else {
- jQuery.ready( true );
- }
- },
-
- // Handle when the DOM is ready
- ready: function( wait ) {
-
- // Abort if there are pending holds or we're already ready
- if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
- return;
- }
-
- // Remember that the DOM is ready
- jQuery.isReady = true;
-
- // If a normal DOM Ready event fired, decrement, and wait if need be
- if ( wait !== true && --jQuery.readyWait > 0 ) {
- return;
- }
-
- // If there are functions bound, to execute
- readyList.resolveWith( document, [ jQuery ] );
-
- // Trigger any bound ready events
- if ( jQuery.fn.triggerHandler ) {
- jQuery( document ).triggerHandler( "ready" );
- jQuery( document ).off( "ready" );
- }
- }
-});
-
-/**
- * The ready event handler and self cleanup method
- */
-function completed() {
- document.removeEventListener( "DOMContentLoaded", completed, false );
- window.removeEventListener( "load", completed, false );
- jQuery.ready();
-}
-
-jQuery.ready.promise = function( obj ) {
- if ( !readyList ) {
-
- readyList = jQuery.Deferred();
-
- // Catch cases where $(document).ready() is called after the browser event has already occurred.
- // We once tried to use readyState "interactive" here, but it caused issues like the one
- // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
- if ( document.readyState === "complete" ) {
- // Handle it asynchronously to allow scripts the opportunity to delay ready
- setTimeout( jQuery.ready );
-
- } else {
-
- // Use the handy event callback
- document.addEventListener( "DOMContentLoaded", completed, false );
-
- // A fallback to window.onload, that will always work
- window.addEventListener( "load", completed, false );
- }
- }
- return readyList.promise( obj );
-};
-
-// Kick off the DOM ready check even if the user does not
-jQuery.ready.promise();
-
-
-
-
-// Multifunctional method to get and set values of a collection
-// The value/s can optionally be executed if it's a function
-var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
- var i = 0,
- len = elems.length,
- bulk = key == null;
-
- // Sets many values
- if ( jQuery.type( key ) === "object" ) {
- chainable = true;
- for ( i in key ) {
- jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
- }
-
- // Sets one value
- } else if ( value !== undefined ) {
- chainable = true;
-
- if ( !jQuery.isFunction( value ) ) {
- raw = true;
- }
-
- if ( bulk ) {
- // Bulk operations run against the entire set
- if ( raw ) {
- fn.call( elems, value );
- fn = null;
-
- // ...except when executing function values
- } else {
- bulk = fn;
- fn = function( elem, key, value ) {
- return bulk.call( jQuery( elem ), value );
- };
- }
- }
-
- if ( fn ) {
- for ( ; i < len; i++ ) {
- fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
- }
- }
- }
-
- return chainable ?
- elems :
-
- // Gets
- bulk ?
- fn.call( elems ) :
- len ? fn( elems[0], key ) : emptyGet;
-};
-
-
-/**
- * Determines whether an object can have data
- */
-jQuery.acceptData = function( owner ) {
- // Accepts only:
- // - Node
- // - Node.ELEMENT_NODE
- // - Node.DOCUMENT_NODE
- // - Object
- // - Any
- /* jshint -W018 */
- return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
-};
-
-
-function Data() {
- // Support: Android<4,
- // Old WebKit does not have Object.preventExtensions/freeze method,
- // return new empty object instead with no [[set]] accessor
- Object.defineProperty( this.cache = {}, 0, {
- get: function() {
- return {};
- }
- });
-
- this.expando = jQuery.expando + Data.uid++;
-}
-
-Data.uid = 1;
-Data.accepts = jQuery.acceptData;
-
-Data.prototype = {
- key: function( owner ) {
- // We can accept data for non-element nodes in modern browsers,
- // but we should not, see #8335.
- // Always return the key for a frozen object.
- if ( !Data.accepts( owner ) ) {
- return 0;
- }
-
- var descriptor = {},
- // Check if the owner object already has a cache key
- unlock = owner[ this.expando ];
-
- // If not, create one
- if ( !unlock ) {
- unlock = Data.uid++;
-
- // Secure it in a non-enumerable, non-writable property
- try {
- descriptor[ this.expando ] = { value: unlock };
- Object.defineProperties( owner, descriptor );
-
- // Support: Android<4
- // Fallback to a less secure definition
- } catch ( e ) {
- descriptor[ this.expando ] = unlock;
- jQuery.extend( owner, descriptor );
- }
- }
-
- // Ensure the cache object
- if ( !this.cache[ unlock ] ) {
- this.cache[ unlock ] = {};
- }
-
- return unlock;
- },
- set: function( owner, data, value ) {
- var prop,
- // There may be an unlock assigned to this node,
- // if there is no entry for this "owner", create one inline
- // and set the unlock as though an owner entry had always existed
- unlock = this.key( owner ),
- cache = this.cache[ unlock ];
-
- // Handle: [ owner, key, value ] args
- if ( typeof data === "string" ) {
- cache[ data ] = value;
-
- // Handle: [ owner, { properties } ] args
- } else {
- // Fresh assignments by object are shallow copied
- if ( jQuery.isEmptyObject( cache ) ) {
- jQuery.extend( this.cache[ unlock ], data );
- // Otherwise, copy the properties one-by-one to the cache object
- } else {
- for ( prop in data ) {
- cache[ prop ] = data[ prop ];
- }
- }
- }
- return cache;
- },
- get: function( owner, key ) {
- // Either a valid cache is found, or will be created.
- // New caches will be created and the unlock returned,
- // allowing direct access to the newly created
- // empty data object. A valid owner object must be provided.
- var cache = this.cache[ this.key( owner ) ];
-
- return key === undefined ?
- cache : cache[ key ];
- },
- access: function( owner, key, value ) {
- var stored;
- // In cases where either:
- //
- // 1. No key was specified
- // 2. A string key was specified, but no value provided
- //
- // Take the "read" path and allow the get method to determine
- // which value to return, respectively either:
- //
- // 1. The entire cache object
- // 2. The data stored at the key
- //
- if ( key === undefined ||
- ((key && typeof key === "string") && value === undefined) ) {
-
- stored = this.get( owner, key );
-
- return stored !== undefined ?
- stored : this.get( owner, jQuery.camelCase(key) );
- }
-
- // [*]When the key is not a string, or both a key and value
- // are specified, set or extend (existing objects) with either:
- //
- // 1. An object of properties
- // 2. A key and value
- //
- this.set( owner, key, value );
-
- // Since the "set" path can have two possible entry points
- // return the expected data based on which path was taken[*]
- return value !== undefined ? value : key;
- },
- remove: function( owner, key ) {
- var i, name, camel,
- unlock = this.key( owner ),
- cache = this.cache[ unlock ];
-
- if ( key === undefined ) {
- this.cache[ unlock ] = {};
-
- } else {
- // Support array or space separated string of keys
- if ( jQuery.isArray( key ) ) {
- // If "name" is an array of keys...
- // When data is initially created, via ("key", "val") signature,
- // keys will be converted to camelCase.
- // Since there is no way to tell _how_ a key was added, remove
- // both plain key and camelCase key. #12786
- // This will only penalize the array argument path.
- name = key.concat( key.map( jQuery.camelCase ) );
- } else {
- camel = jQuery.camelCase( key );
- // Try the string as a key before any manipulation
- if ( key in cache ) {
- name = [ key, camel ];
- } else {
- // If a key with the spaces exists, use it.
- // Otherwise, create an array by matching non-whitespace
- name = camel;
- name = name in cache ?
- [ name ] : ( name.match( rnotwhite ) || [] );
- }
- }
-
- i = name.length;
- while ( i-- ) {
- delete cache[ name[ i ] ];
- }
- }
- },
- hasData: function( owner ) {
- return !jQuery.isEmptyObject(
- this.cache[ owner[ this.expando ] ] || {}
- );
- },
- discard: function( owner ) {
- if ( owner[ this.expando ] ) {
- delete this.cache[ owner[ this.expando ] ];
- }
- }
-};
-var data_priv = new Data();
-
-var data_user = new Data();
-
-
-
-// Implementation Summary
-//
-// 1. Enforce API surface and semantic compatibility with 1.9.x branch
-// 2. Improve the module's maintainability by reducing the storage
-// paths to a single mechanism.
-// 3. Use the same single mechanism to support "private" and "user" data.
-// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
-// 5. Avoid exposing implementation details on user objects (eg. expando properties)
-// 6. Provide a clear path for implementation upgrade to WeakMap in 2014
-
-var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
- rmultiDash = /([A-Z])/g;
-
-function dataAttr( elem, key, data ) {
- var name;
-
- // If nothing was found internally, try to fetch any
- // data from the HTML5 data-* attribute
- if ( data === undefined && elem.nodeType === 1 ) {
- name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
- data = elem.getAttribute( name );
-
- if ( typeof data === "string" ) {
- try {
- data = data === "true" ? true :
- data === "false" ? false :
- data === "null" ? null :
- // Only convert to a number if it doesn't change the string
- +data + "" === data ? +data :
- rbrace.test( data ) ? jQuery.parseJSON( data ) :
- data;
- } catch( e ) {}
-
- // Make sure we set the data so it isn't changed later
- data_user.set( elem, key, data );
- } else {
- data = undefined;
- }
- }
- return data;
-}
-
-jQuery.extend({
- hasData: function( elem ) {
- return data_user.hasData( elem ) || data_priv.hasData( elem );
- },
-
- data: function( elem, name, data ) {
- return data_user.access( elem, name, data );
- },
-
- removeData: function( elem, name ) {
- data_user.remove( elem, name );
- },
-
- // TODO: Now that all calls to _data and _removeData have been replaced
- // with direct calls to data_priv methods, these can be deprecated.
- _data: function( elem, name, data ) {
- return data_priv.access( elem, name, data );
- },
-
- _removeData: function( elem, name ) {
- data_priv.remove( elem, name );
- }
-});
-
-jQuery.fn.extend({
- data: function( key, value ) {
- var i, name, data,
- elem = this[ 0 ],
- attrs = elem && elem.attributes;
-
- // Gets all values
- if ( key === undefined ) {
- if ( this.length ) {
- data = data_user.get( elem );
-
- if ( elem.nodeType === 1 && !data_priv.get( elem, "hasDataAttrs" ) ) {
- i = attrs.length;
- while ( i-- ) {
-
- // Support: IE11+
- // The attrs elements can be null (#14894)
- if ( attrs[ i ] ) {
- name = attrs[ i ].name;
- if ( name.indexOf( "data-" ) === 0 ) {
- name = jQuery.camelCase( name.slice(5) );
- dataAttr( elem, name, data[ name ] );
- }
- }
- }
- data_priv.set( elem, "hasDataAttrs", true );
- }
- }
-
- return data;
- }
-
- // Sets multiple values
- if ( typeof key === "object" ) {
- return this.each(function() {
- data_user.set( this, key );
- });
- }
-
- return access( this, function( value ) {
- var data,
- camelKey = jQuery.camelCase( key );
-
- // The calling jQuery object (element matches) is not empty
- // (and therefore has an element appears at this[ 0 ]) and the
- // `value` parameter was not undefined. An empty jQuery object
- // will result in `undefined` for elem = this[ 0 ] which will
- // throw an exception if an attempt to read a data cache is made.
- if ( elem && value === undefined ) {
- // Attempt to get data from the cache
- // with the key as-is
- data = data_user.get( elem, key );
- if ( data !== undefined ) {
- return data;
- }
-
- // Attempt to get data from the cache
- // with the key camelized
- data = data_user.get( elem, camelKey );
- if ( data !== undefined ) {
- return data;
- }
-
- // Attempt to "discover" the data in
- // HTML5 custom data-* attrs
- data = dataAttr( elem, camelKey, undefined );
- if ( data !== undefined ) {
- return data;
- }
-
- // We tried really hard, but the data doesn't exist.
- return;
- }
-
- // Set the data...
- this.each(function() {
- // First, attempt to store a copy or reference of any
- // data that might've been store with a camelCased key.
- var data = data_user.get( this, camelKey );
-
- // For HTML5 data-* attribute interop, we have to
- // store property names with dashes in a camelCase form.
- // This might not apply to all properties...*
- data_user.set( this, camelKey, value );
-
- // *... In the case of properties that might _actually_
- // have dashes, we need to also store a copy of that
- // unchanged property.
- if ( key.indexOf("-") !== -1 && data !== undefined ) {
- data_user.set( this, key, value );
- }
- });
- }, null, value, arguments.length > 1, null, true );
- },
-
- removeData: function( key ) {
- return this.each(function() {
- data_user.remove( this, key );
- });
- }
-});
-
-
-jQuery.extend({
- queue: function( elem, type, data ) {
- var queue;
-
- if ( elem ) {
- type = ( type || "fx" ) + "queue";
- queue = data_priv.get( elem, type );
-
- // Speed up dequeue by getting out quickly if this is just a lookup
- if ( data ) {
- if ( !queue || jQuery.isArray( data ) ) {
- queue = data_priv.access( elem, type, jQuery.makeArray(data) );
- } else {
- queue.push( data );
- }
- }
- return queue || [];
- }
- },
-
- dequeue: function( elem, type ) {
- type = type || "fx";
-
- var queue = jQuery.queue( elem, type ),
- startLength = queue.length,
- fn = queue.shift(),
- hooks = jQuery._queueHooks( elem, type ),
- next = function() {
- jQuery.dequeue( elem, type );
- };
-
- // If the fx queue is dequeued, always remove the progress sentinel
- if ( fn === "inprogress" ) {
- fn = queue.shift();
- startLength--;
- }
-
- if ( fn ) {
-
- // Add a progress sentinel to prevent the fx queue from being
- // automatically dequeued
- if ( type === "fx" ) {
- queue.unshift( "inprogress" );
- }
-
- // Clear up the last queue stop function
- delete hooks.stop;
- fn.call( elem, next, hooks );
- }
-
- if ( !startLength && hooks ) {
- hooks.empty.fire();
- }
- },
-
- // Not public - generate a queueHooks object, or return the current one
- _queueHooks: function( elem, type ) {
- var key = type + "queueHooks";
- return data_priv.get( elem, key ) || data_priv.access( elem, key, {
- empty: jQuery.Callbacks("once memory").add(function() {
- data_priv.remove( elem, [ type + "queue", key ] );
- })
- });
- }
-});
-
-jQuery.fn.extend({
- queue: function( type, data ) {
- var setter = 2;
-
- if ( typeof type !== "string" ) {
- data = type;
- type = "fx";
- setter--;
- }
-
- if ( arguments.length < setter ) {
- return jQuery.queue( this[0], type );
- }
-
- return data === undefined ?
- this :
- this.each(function() {
- var queue = jQuery.queue( this, type, data );
-
- // Ensure a hooks for this queue
- jQuery._queueHooks( this, type );
-
- if ( type === "fx" && queue[0] !== "inprogress" ) {
- jQuery.dequeue( this, type );
- }
- });
- },
- dequeue: function( type ) {
- return this.each(function() {
- jQuery.dequeue( this, type );
- });
- },
- clearQueue: function( type ) {
- return this.queue( type || "fx", [] );
- },
- // Get a promise resolved when queues of a certain type
- // are emptied (fx is the type by default)
- promise: function( type, obj ) {
- var tmp,
- count = 1,
- defer = jQuery.Deferred(),
- elements = this,
- i = this.length,
- resolve = function() {
- if ( !( --count ) ) {
- defer.resolveWith( elements, [ elements ] );
- }
- };
-
- if ( typeof type !== "string" ) {
- obj = type;
- type = undefined;
- }
- type = type || "fx";
-
- while ( i-- ) {
- tmp = data_priv.get( elements[ i ], type + "queueHooks" );
- if ( tmp && tmp.empty ) {
- count++;
- tmp.empty.add( resolve );
- }
- }
- resolve();
- return defer.promise( obj );
- }
-});
-var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
-
-var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
-
-var isHidden = function( elem, el ) {
- // isHidden might be called from jQuery#filter function;
- // in that case, element will be second argument
- elem = el || elem;
- return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
- };
-
-var rcheckableType = (/^(?:checkbox|radio)$/i);
-
-
-
-(function() {
- var fragment = document.createDocumentFragment(),
- div = fragment.appendChild( document.createElement( "div" ) ),
- input = document.createElement( "input" );
-
- // Support: Safari<=5.1
- // Check state lost if the name is set (#11217)
- // Support: Windows Web Apps (WWA)
- // `name` and `type` must use .setAttribute for WWA (#14901)
- input.setAttribute( "type", "radio" );
- input.setAttribute( "checked", "checked" );
- input.setAttribute( "name", "t" );
-
- div.appendChild( input );
-
- // Support: Safari<=5.1, Android<4.2
- // Older WebKit doesn't clone checked state correctly in fragments
- support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
-
- // Support: IE<=11+
- // Make sure textarea (and checkbox) defaultValue is properly cloned
- div.innerHTML = "<textarea>x</textarea>";
- support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
-})();
-var strundefined = typeof undefined;
-
-
-
-support.focusinBubbles = "onfocusin" in window;
-
-
-var
- rkeyEvent = /^key/,
- rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,
- rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
- rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
-
-function returnTrue() {
- return true;
-}
-
-function returnFalse() {
- return false;
-}
-
-function safeActiveElement() {
- try {
- return document.activeElement;
- } catch ( err ) { }
-}
-
-/*
- * Helper functions for managing events -- not part of the public interface.
- * Props to Dean Edwards' addEvent library for many of the ideas.
- */
-jQuery.event = {
-
- global: {},
-
- add: function( elem, types, handler, data, selector ) {
-
- var handleObjIn, eventHandle, tmp,
- events, t, handleObj,
- special, handlers, type, namespaces, origType,
- elemData = data_priv.get( elem );
-
- // Don't attach events to noData or text/comment nodes (but allow plain objects)
- if ( !elemData ) {
- return;
- }
-
- // Caller can pass in an object of custom data in lieu of the handler
- if ( handler.handler ) {
- handleObjIn = handler;
- handler = handleObjIn.handler;
- selector = handleObjIn.selector;
- }
-
- // Make sure that the handler has a unique ID, used to find/remove it later
- if ( !handler.guid ) {
- handler.guid = jQuery.guid++;
- }
-
- // Init the element's event structure and main handler, if this is the first
- if ( !(events = elemData.events) ) {
- events = elemData.events = {};
- }
- if ( !(eventHandle = elemData.handle) ) {
- eventHandle = elemData.handle = function( e ) {
- // Discard the second event of a jQuery.event.trigger() and
- // when an event is called after a page has unloaded
- return typeof jQuery !== strundefined && jQuery.event.triggered !== e.type ?
- jQuery.event.dispatch.apply( elem, arguments ) : undefined;
- };
- }
-
- // Handle multiple events separated by a space
- types = ( types || "" ).match( rnotwhite ) || [ "" ];
- t = types.length;
- while ( t-- ) {
- tmp = rtypenamespace.exec( types[t] ) || [];
- type = origType = tmp[1];
- namespaces = ( tmp[2] || "" ).split( "." ).sort();
-
- // There *must* be a type, no attaching namespace-only handlers
- if ( !type ) {
- continue;
- }
-
- // If event changes its type, use the special event handlers for the changed type
- special = jQuery.event.special[ type ] || {};
-
- // If selector defined, determine special event api type, otherwise given type
- type = ( selector ? special.delegateType : special.bindType ) || type;
-
- // Update special based on newly reset type
- special = jQuery.event.special[ type ] || {};
-
- // handleObj is passed to all event handlers
- handleObj = jQuery.extend({
- type: type,
- origType: origType,
- data: data,
- handler: handler,
- guid: handler.guid,
- selector: selector,
- needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
- namespace: namespaces.join(".")
- }, handleObjIn );
-
- // Init the event handler queue if we're the first
- if ( !(handlers = events[ type ]) ) {
- handlers = events[ type ] = [];
- handlers.delegateCount = 0;
-
- // Only use addEventListener if the special events handler returns false
- if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
- if ( elem.addEventListener ) {
- elem.addEventListener( type, eventHandle, false );
- }
- }
- }
-
- if ( special.add ) {
- special.add.call( elem, handleObj );
-
- if ( !handleObj.handler.guid ) {
- handleObj.handler.guid = handler.guid;
- }
- }
-
- // Add to the element's handler list, delegates in front
- if ( selector ) {
- handlers.splice( handlers.delegateCount++, 0, handleObj );
- } else {
- handlers.push( handleObj );
- }
-
- // Keep track of which events have ever been used, for event optimization
- jQuery.event.global[ type ] = true;
- }
-
- },
-
- // Detach an event or set of events from an element
- remove: function( elem, types, handler, selector, mappedTypes ) {
-
- var j, origCount, tmp,
- events, t, handleObj,
- special, handlers, type, namespaces, origType,
- elemData = data_priv.hasData( elem ) && data_priv.get( elem );
-
- if ( !elemData || !(events = elemData.events) ) {
- return;
- }
-
- // Once for each type.namespace in types; type may be omitted
- types = ( types || "" ).match( rnotwhite ) || [ "" ];
- t = types.length;
- while ( t-- ) {
- tmp = rtypenamespace.exec( types[t] ) || [];
- type = origType = tmp[1];
- namespaces = ( tmp[2] || "" ).split( "." ).sort();
-
- // Unbind all events (on this namespace, if provided) for the element
- if ( !type ) {
- for ( type in events ) {
- jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
- }
- continue;
- }
-
- special = jQuery.event.special[ type ] || {};
- type = ( selector ? special.delegateType : special.bindType ) || type;
- handlers = events[ type ] || [];
- tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" );
-
- // Remove matching events
- origCount = j = handlers.length;
- while ( j-- ) {
- handleObj = handlers[ j ];
-
- if ( ( mappedTypes || origType === handleObj.origType ) &&
- ( !handler || handler.guid === handleObj.guid ) &&
- ( !tmp || tmp.test( handleObj.namespace ) ) &&
- ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
- handlers.splice( j, 1 );
-
- if ( handleObj.selector ) {
- handlers.delegateCount--;
- }
- if ( special.remove ) {
- special.remove.call( elem, handleObj );
- }
- }
- }
-
- // Remove generic event handler if we removed something and no more handlers exist
- // (avoids potential for endless recursion during removal of special event handlers)
- if ( origCount && !handlers.length ) {
- if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
- jQuery.removeEvent( elem, type, elemData.handle );
- }
-
- delete events[ type ];
- }
- }
-
- // Remove the expando if it's no longer used
- if ( jQuery.isEmptyObject( events ) ) {
- delete elemData.handle;
- data_priv.remove( elem, "events" );
- }
- },
-
- trigger: function( event, data, elem, onlyHandlers ) {
-
- var i, cur, tmp, bubbleType, ontype, handle, special,
- eventPath = [ elem || document ],
- type = hasOwn.call( event, "type" ) ? event.type : event,
- namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : [];
-
- cur = tmp = elem = elem || document;
-
- // Don't do events on text and comment nodes
- if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
- return;
- }
-
- // focus/blur morphs to focusin/out; ensure we're not firing them right now
- if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
- return;
- }
-
- if ( type.indexOf(".") >= 0 ) {
- // Namespaced trigger; create a regexp to match event type in handle()
- namespaces = type.split(".");
- type = namespaces.shift();
- namespaces.sort();
- }
- ontype = type.indexOf(":") < 0 && "on" + type;
-
- // Caller can pass in a jQuery.Event object, Object, or just an event type string
- event = event[ jQuery.expando ] ?
- event :
- new jQuery.Event( type, typeof event === "object" && event );
-
- // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
- event.isTrigger = onlyHandlers ? 2 : 3;
- event.namespace = namespaces.join(".");
- event.namespace_re = event.namespace ?
- new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
- null;
-
- // Clean up the event in case it is being reused
- event.result = undefined;
- if ( !event.target ) {
- event.target = elem;
- }
-
- // Clone any incoming data and prepend the event, creating the handler arg list
- data = data == null ?
- [ event ] :
- jQuery.makeArray( data, [ event ] );
-
- // Allow special events to draw outside the lines
- special = jQuery.event.special[ type ] || {};
- if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
- return;
- }
-
- // Determine event propagation path in advance, per W3C events spec (#9951)
- // Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
- if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
-
- bubbleType = special.delegateType || type;
- if ( !rfocusMorph.test( bubbleType + type ) ) {
- cur = cur.parentNode;
- }
- for ( ; cur; cur = cur.parentNode ) {
- eventPath.push( cur );
- tmp = cur;
- }
-
- // Only add window if we got to document (e.g., not plain obj or detached DOM)
- if ( tmp === (elem.ownerDocument || document) ) {
- eventPath.push( tmp.defaultView || tmp.parentWindow || window );
- }
- }
-
- // Fire handlers on the event path
- i = 0;
- while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {
-
- event.type = i > 1 ?
- bubbleType :
- special.bindType || type;
-
- // jQuery handler
- handle = ( data_priv.get( cur, "events" ) || {} )[ event.type ] && data_priv.get( cur, "handle" );
- if ( handle ) {
- handle.apply( cur, data );
- }
-
- // Native handler
- handle = ontype && cur[ ontype ];
- if ( handle && handle.apply && jQuery.acceptData( cur ) ) {
- event.result = handle.apply( cur, data );
- if ( event.result === false ) {
- event.preventDefault();
- }
- }
- }
- event.type = type;
-
- // If nobody prevented the default action, do it now
- if ( !onlyHandlers && !event.isDefaultPrevented() ) {
-
- if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&
- jQuery.acceptData( elem ) ) {
-
- // Call a native DOM method on the target with the same name name as the event.
- // Don't do default actions on window, that's where global variables be (#6170)
- if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {
-
- // Don't re-trigger an onFOO event when we call its FOO() method
- tmp = elem[ ontype ];
-
- if ( tmp ) {
- elem[ ontype ] = null;
- }
-
- // Prevent re-triggering of the same event, since we already bubbled it above
- jQuery.event.triggered = type;
- elem[ type ]();
- jQuery.event.triggered = undefined;
-
- if ( tmp ) {
- elem[ ontype ] = tmp;
- }
- }
- }
- }
-
- return event.result;
- },
-
- dispatch: function( event ) {
-
- // Make a writable jQuery.Event from the native event object
- event = jQuery.event.fix( event );
-
- var i, j, ret, matched, handleObj,
- handlerQueue = [],
- args = slice.call( arguments ),
- handlers = ( data_priv.get( this, "events" ) || {} )[ event.type ] || [],
- special = jQuery.event.special[ event.type ] || {};
-
- // Use the fix-ed jQuery.Event rather than the (read-only) native event
- args[0] = event;
- event.delegateTarget = this;
-
- // Call the preDispatch hook for the mapped type, and let it bail if desired
- if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
- return;
- }
-
- // Determine handlers
- handlerQueue = jQuery.event.handlers.call( this, event, handlers );
-
- // Run delegates first; they may want to stop propagation beneath us
- i = 0;
- while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
- event.currentTarget = matched.elem;
-
- j = 0;
- while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {
-
- // Triggered event must either 1) have no namespace, or 2) have namespace(s)
- // a subset or equal to those in the bound event (both can have no namespace).
- if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
-
- event.handleObj = handleObj;
- event.data = handleObj.data;
-
- ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
- .apply( matched.elem, args );
-
- if ( ret !== undefined ) {
- if ( (event.result = ret) === false ) {
- event.preventDefault();
- event.stopPropagation();
- }
- }
- }
- }
- }
-
- // Call the postDispatch hook for the mapped type
- if ( special.postDispatch ) {
- special.postDispatch.call( this, event );
- }
-
- return event.result;
- },
-
- handlers: function( event, handlers ) {
- var i, matches, sel, handleObj,
- handlerQueue = [],
- delegateCount = handlers.delegateCount,
- cur = event.target;
-
- // Find delegate handlers
- // Black-hole SVG <use> instance trees (#13180)
- // Avoid non-left-click bubbling in Firefox (#3861)
- if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) {
-
- for ( ; cur !== this; cur = cur.parentNode || this ) {
-
- // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
- if ( cur.disabled !== true || event.type !== "click" ) {
- matches = [];
- for ( i = 0; i < delegateCount; i++ ) {
- handleObj = handlers[ i ];
-
- // Don't conflict with Object.prototype properties (#13203)
- sel = handleObj.selector + " ";
-
- if ( matches[ sel ] === undefined ) {
- matches[ sel ] = handleObj.needsContext ?
- jQuery( sel, this ).index( cur ) >= 0 :
- jQuery.find( sel, this, null, [ cur ] ).length;
- }
- if ( matches[ sel ] ) {
- matches.push( handleObj );
- }
- }
- if ( matches.length ) {
- handlerQueue.push({ elem: cur, handlers: matches });
- }
- }
- }
- }
-
- // Add the remaining (directly-bound) handlers
- if ( delegateCount < handlers.length ) {
- handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });
- }
-
- return handlerQueue;
- },
-
- // Includes some event props shared by KeyEvent and MouseEvent
- props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
-
- fixHooks: {},
-
- keyHooks: {
- props: "char charCode key keyCode".split(" "),
- filter: function( event, original ) {
-
- // Add which for key events
- if ( event.which == null ) {
- event.which = original.charCode != null ? original.charCode : original.keyCode;
- }
-
- return event;
- }
- },
-
- mouseHooks: {
- props: "button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
- filter: function( event, original ) {
- var eventDoc, doc, body,
- button = original.button;
-
- // Calculate pageX/Y if missing and clientX/Y available
- if ( event.pageX == null && original.clientX != null ) {
- eventDoc = event.target.ownerDocument || document;
- doc = eventDoc.documentElement;
- body = eventDoc.body;
-
- event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
- event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 );
- }
-
- // Add which for click: 1 === left; 2 === middle; 3 === right
- // Note: button is not normalized, so don't use it
- if ( !event.which && button !== undefined ) {
- event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
- }
-
- return event;
- }
- },
-
- fix: function( event ) {
- if ( event[ jQuery.expando ] ) {
- return event;
- }
-
- // Create a writable copy of the event object and normalize some properties
- var i, prop, copy,
- type = event.type,
- originalEvent = event,
- fixHook = this.fixHooks[ type ];
-
- if ( !fixHook ) {
- this.fixHooks[ type ] = fixHook =
- rmouseEvent.test( type ) ? this.mouseHooks :
- rkeyEvent.test( type ) ? this.keyHooks :
- {};
- }
- copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
-
- event = new jQuery.Event( originalEvent );
-
- i = copy.length;
- while ( i-- ) {
- prop = copy[ i ];
- event[ prop ] = originalEvent[ prop ];
- }
-
- // Support: Cordova 2.5 (WebKit) (#13255)
- // All events should have a target; Cordova deviceready doesn't
- if ( !event.target ) {
- event.target = document;
- }
-
- // Support: Safari 6.0+, Chrome<28
- // Target should not be a text node (#504, #13143)
- if ( event.target.nodeType === 3 ) {
- event.target = event.target.parentNode;
- }
-
- return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
- },
-
- special: {
- load: {
- // Prevent triggered image.load events from bubbling to window.load
- noBubble: true
- },
- focus: {
- // Fire native event if possible so blur/focus sequence is correct
- trigger: function() {
- if ( this !== safeActiveElement() && this.focus ) {
- this.focus();
- return false;
- }
- },
- delegateType: "focusin"
- },
- blur: {
- trigger: function() {
- if ( this === safeActiveElement() && this.blur ) {
- this.blur();
- return false;
- }
- },
- delegateType: "focusout"
- },
- click: {
- // For checkbox, fire native event so checked state will be right
- trigger: function() {
- if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) {
- this.click();
- return false;
- }
- },
-
- // For cross-browser consistency, don't fire native .click() on links
- _default: function( event ) {
- return jQuery.nodeName( event.target, "a" );
- }
- },
-
- beforeunload: {
- postDispatch: function( event ) {
-
- // Support: Firefox 20+
- // Firefox doesn't alert if the returnValue field is not set.
- if ( event.result !== undefined && event.originalEvent ) {
- event.originalEvent.returnValue = event.result;
- }
- }
- }
- },
-
- simulate: function( type, elem, event, bubble ) {
- // Piggyback on a donor event to simulate a different one.
- // Fake originalEvent to avoid donor's stopPropagation, but if the
- // simulated event prevents default then we do the same on the donor.
- var e = jQuery.extend(
- new jQuery.Event(),
- event,
- {
- type: type,
- isSimulated: true,
- originalEvent: {}
- }
- );
- if ( bubble ) {
- jQuery.event.trigger( e, null, elem );
- } else {
- jQuery.event.dispatch.call( elem, e );
- }
- if ( e.isDefaultPrevented() ) {
- event.preventDefault();
- }
- }
-};
-
-jQuery.removeEvent = function( elem, type, handle ) {
- if ( elem.removeEventListener ) {
- elem.removeEventListener( type, handle, false );
- }
-};
-
-jQuery.Event = function( src, props ) {
- // Allow instantiation without the 'new' keyword
- if ( !(this instanceof jQuery.Event) ) {
- return new jQuery.Event( src, props );
- }
-
- // Event object
- if ( src && src.type ) {
- this.originalEvent = src;
- this.type = src.type;
-
- // Events bubbling up the document may have been marked as prevented
- // by a handler lower down the tree; reflect the correct value.
- this.isDefaultPrevented = src.defaultPrevented ||
- src.defaultPrevented === undefined &&
- // Support: Android<4.0
- src.returnValue === false ?
- returnTrue :
- returnFalse;
-
- // Event type
- } else {
- this.type = src;
- }
-
- // Put explicitly provided properties onto the event object
- if ( props ) {
- jQuery.extend( this, props );
- }
-
- // Create a timestamp if incoming event doesn't have one
- this.timeStamp = src && src.timeStamp || jQuery.now();
-
- // Mark it as fixed
- this[ jQuery.expando ] = true;
-};
-
-// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
-// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
-jQuery.Event.prototype = {
- isDefaultPrevented: returnFalse,
- isPropagationStopped: returnFalse,
- isImmediatePropagationStopped: returnFalse,
-
- preventDefault: function() {
- var e = this.originalEvent;
-
- this.isDefaultPrevented = returnTrue;
-
- if ( e && e.preventDefault ) {
- e.preventDefault();
- }
- },
- stopPropagation: function() {
- var e = this.originalEvent;
-
- this.isPropagationStopped = returnTrue;
-
- if ( e && e.stopPropagation ) {
- e.stopPropagation();
- }
- },
- stopImmediatePropagation: function() {
- var e = this.originalEvent;
-
- this.isImmediatePropagationStopped = returnTrue;
-
- if ( e && e.stopImmediatePropagation ) {
- e.stopImmediatePropagation();
- }
-
- this.stopPropagation();
- }
-};
-
-// Create mouseenter/leave events using mouseover/out and event-time checks
-// Support: Chrome 15+
-jQuery.each({
- mouseenter: "mouseover",
- mouseleave: "mouseout",
- pointerenter: "pointerover",
- pointerleave: "pointerout"
-}, function( orig, fix ) {
- jQuery.event.special[ orig ] = {
- delegateType: fix,
- bindType: fix,
-
- handle: function( event ) {
- var ret,
- target = this,
- related = event.relatedTarget,
- handleObj = event.handleObj;
-
- // For mousenter/leave call the handler if related is outside the target.
- // NB: No relatedTarget if the mouse left/entered the browser window
- if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
- event.type = handleObj.origType;
- ret = handleObj.handler.apply( this, arguments );
- event.type = fix;
- }
- return ret;
- }
- };
-});
-
-// Support: Firefox, Chrome, Safari
-// Create "bubbling" focus and blur events
-if ( !support.focusinBubbles ) {
- jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
-
- // Attach a single capturing handler on the document while someone wants focusin/focusout
- var handler = function( event ) {
- jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
- };
-
- jQuery.event.special[ fix ] = {
- setup: function() {
- var doc = this.ownerDocument || this,
- attaches = data_priv.access( doc, fix );
-
- if ( !attaches ) {
- doc.addEventListener( orig, handler, true );
- }
- data_priv.access( doc, fix, ( attaches || 0 ) + 1 );
- },
- teardown: function() {
- var doc = this.ownerDocument || this,
- attaches = data_priv.access( doc, fix ) - 1;
-
- if ( !attaches ) {
- doc.removeEventListener( orig, handler, true );
- data_priv.remove( doc, fix );
-
- } else {
- data_priv.access( doc, fix, attaches );
- }
- }
- };
- });
-}
-
-jQuery.fn.extend({
-
- on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
- var origFn, type;
-
- // Types can be a map of types/handlers
- if ( typeof types === "object" ) {
- // ( types-Object, selector, data )
- if ( typeof selector !== "string" ) {
- // ( types-Object, data )
- data = data || selector;
- selector = undefined;
- }
- for ( type in types ) {
- this.on( type, selector, data, types[ type ], one );
- }
- return this;
- }
-
- if ( data == null && fn == null ) {
- // ( types, fn )
- fn = selector;
- data = selector = undefined;
- } else if ( fn == null ) {
- if ( typeof selector === "string" ) {
- // ( types, selector, fn )
- fn = data;
- data = undefined;
- } else {
- // ( types, data, fn )
- fn = data;
- data = selector;
- selector = undefined;
- }
- }
- if ( fn === false ) {
- fn = returnFalse;
- } else if ( !fn ) {
- return this;
- }
-
- if ( one === 1 ) {
- origFn = fn;
- fn = function( event ) {
- // Can use an empty set, since event contains the info
- jQuery().off( event );
- return origFn.apply( this, arguments );
- };
- // Use same guid so caller can remove using origFn
- fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
- }
- return this.each( function() {
- jQuery.event.add( this, types, fn, data, selector );
- });
- },
- one: function( types, selector, data, fn ) {
- return this.on( types, selector, data, fn, 1 );
- },
- off: function( types, selector, fn ) {
- var handleObj, type;
- if ( types && types.preventDefault && types.handleObj ) {
- // ( event ) dispatched jQuery.Event
- handleObj = types.handleObj;
- jQuery( types.delegateTarget ).off(
- handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
- handleObj.selector,
- handleObj.handler
- );
- return this;
- }
- if ( typeof types === "object" ) {
- // ( types-object [, selector] )
- for ( type in types ) {
- this.off( type, selector, types[ type ] );
- }
- return this;
- }
- if ( selector === false || typeof selector === "function" ) {
- // ( types [, fn] )
- fn = selector;
- selector = undefined;
- }
- if ( fn === false ) {
- fn = returnFalse;
- }
- return this.each(function() {
- jQuery.event.remove( this, types, fn, selector );
- });
- },
-
- trigger: function( type, data ) {
- return this.each(function() {
- jQuery.event.trigger( type, data, this );
- });
- },
- triggerHandler: function( type, data ) {
- var elem = this[0];
- if ( elem ) {
- return jQuery.event.trigger( type, data, elem, true );
- }
- }
-});
-
-
-var
- rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
- rtagName = /<([\w:]+)/,
- rhtml = /<|&#?\w+;/,
- rnoInnerhtml = /<(?:script|style|link)/i,
- // checked="checked" or checked
- rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
- rscriptType = /^$|\/(?:java|ecma)script/i,
- rscriptTypeMasked = /^true\/(.*)/,
- rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
-
- // We have to close these tags to support XHTML (#13200)
- wrapMap = {
-
- // Support: IE9
- option: [ 1, "<select multiple='multiple'>", "</select>" ],
-
- thead: [ 1, "<table>", "</table>" ],
- col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
- tr: [ 2, "<table><tbody>", "</tbody></table>" ],
- td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
-
- _default: [ 0, "", "" ]
- };
-
-// Support: IE9
-wrapMap.optgroup = wrapMap.option;
-
-wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
-wrapMap.th = wrapMap.td;
-
-// Support: 1.x compatibility
-// Manipulating tables requires a tbody
-function manipulationTarget( elem, content ) {
- return jQuery.nodeName( elem, "table" ) &&
- jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
-
- elem.getElementsByTagName("tbody")[0] ||
- elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
- elem;
-}
-
-// Replace/restore the type attribute of script elements for safe DOM manipulation
-function disableScript( elem ) {
- elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type;
- return elem;
-}
-function restoreScript( elem ) {
- var match = rscriptTypeMasked.exec( elem.type );
-
- if ( match ) {
- elem.type = match[ 1 ];
- } else {
- elem.removeAttribute("type");
- }
-
- return elem;
-}
-
-// Mark scripts as having already been evaluated
-function setGlobalEval( elems, refElements ) {
- var i = 0,
- l = elems.length;
-
- for ( ; i < l; i++ ) {
- data_priv.set(
- elems[ i ], "globalEval", !refElements || data_priv.get( refElements[ i ], "globalEval" )
- );
- }
-}
-
-function cloneCopyEvent( src, dest ) {
- var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
-
- if ( dest.nodeType !== 1 ) {
- return;
- }
-
- // 1. Copy private data: events, handlers, etc.
- if ( data_priv.hasData( src ) ) {
- pdataOld = data_priv.access( src );
- pdataCur = data_priv.set( dest, pdataOld );
- events = pdataOld.events;
-
- if ( events ) {
- delete pdataCur.handle;
- pdataCur.events = {};
-
- for ( type in events ) {
- for ( i = 0, l = events[ type ].length; i < l; i++ ) {
- jQuery.event.add( dest, type, events[ type ][ i ] );
- }
- }
- }
- }
-
- // 2. Copy user data
- if ( data_user.hasData( src ) ) {
- udataOld = data_user.access( src );
- udataCur = jQuery.extend( {}, udataOld );
-
- data_user.set( dest, udataCur );
- }
-}
-
-function getAll( context, tag ) {
- var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) :
- context.querySelectorAll ? context.querySelectorAll( tag || "*" ) :
- [];
-
- return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
- jQuery.merge( [ context ], ret ) :
- ret;
-}
-
-// Fix IE bugs, see support tests
-function fixInput( src, dest ) {
- var nodeName = dest.nodeName.toLowerCase();
-
- // Fails to persist the checked state of a cloned checkbox or radio button.
- if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
- dest.checked = src.checked;
-
- // Fails to return the selected option to the default selected state when cloning options
- } else if ( nodeName === "input" || nodeName === "textarea" ) {
- dest.defaultValue = src.defaultValue;
- }
-}
-
-jQuery.extend({
- clone: function( elem, dataAndEvents, deepDataAndEvents ) {
- var i, l, srcElements, destElements,
- clone = elem.cloneNode( true ),
- inPage = jQuery.contains( elem.ownerDocument, elem );
-
- // Fix IE cloning issues
- if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
- !jQuery.isXMLDoc( elem ) ) {
-
- // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
- destElements = getAll( clone );
- srcElements = getAll( elem );
-
- for ( i = 0, l = srcElements.length; i < l; i++ ) {
- fixInput( srcElements[ i ], destElements[ i ] );
- }
- }
-
- // Copy the events from the original to the clone
- if ( dataAndEvents ) {
- if ( deepDataAndEvents ) {
- srcElements = srcElements || getAll( elem );
- destElements = destElements || getAll( clone );
-
- for ( i = 0, l = srcElements.length; i < l; i++ ) {
- cloneCopyEvent( srcElements[ i ], destElements[ i ] );
- }
- } else {
- cloneCopyEvent( elem, clone );
- }
- }
-
- // Preserve script evaluation history
- destElements = getAll( clone, "script" );
- if ( destElements.length > 0 ) {
- setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
- }
-
- // Return the cloned set
- return clone;
- },
-
- buildFragment: function( elems, context, scripts, selection ) {
- var elem, tmp, tag, wrap, contains, j,
- fragment = context.createDocumentFragment(),
- nodes = [],
- i = 0,
- l = elems.length;
-
- for ( ; i < l; i++ ) {
- elem = elems[ i ];
-
- if ( elem || elem === 0 ) {
-
- // Add nodes directly
- if ( jQuery.type( elem ) === "object" ) {
- // Support: QtWebKit, PhantomJS
- // push.apply(_, arraylike) throws on ancient WebKit
- jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
-
- // Convert non-html into a text node
- } else if ( !rhtml.test( elem ) ) {
- nodes.push( context.createTextNode( elem ) );
-
- // Convert html into DOM nodes
- } else {
- tmp = tmp || fragment.appendChild( context.createElement("div") );
-
- // Deserialize a standard representation
- tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
- wrap = wrapMap[ tag ] || wrapMap._default;
- tmp.innerHTML = wrap[ 1 ] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[ 2 ];
-
- // Descend through wrappers to the right content
- j = wrap[ 0 ];
- while ( j-- ) {
- tmp = tmp.lastChild;
- }
-
- // Support: QtWebKit, PhantomJS
- // push.apply(_, arraylike) throws on ancient WebKit
- jQuery.merge( nodes, tmp.childNodes );
-
- // Remember the top-level container
- tmp = fragment.firstChild;
-
- // Ensure the created nodes are orphaned (#12392)
- tmp.textContent = "";
- }
- }
- }
-
- // Remove wrapper from fragment
- fragment.textContent = "";
-
- i = 0;
- while ( (elem = nodes[ i++ ]) ) {
-
- // #4087 - If origin and destination elements are the same, and this is
- // that element, do not do anything
- if ( selection && jQuery.inArray( elem, selection ) !== -1 ) {
- continue;
- }
-
- contains = jQuery.contains( elem.ownerDocument, elem );
-
- // Append to fragment
- tmp = getAll( fragment.appendChild( elem ), "script" );
-
- // Preserve script evaluation history
- if ( contains ) {
- setGlobalEval( tmp );
- }
-
- // Capture executables
- if ( scripts ) {
- j = 0;
- while ( (elem = tmp[ j++ ]) ) {
- if ( rscriptType.test( elem.type || "" ) ) {
- scripts.push( elem );
- }
- }
- }
- }
-
- return fragment;
- },
-
- cleanData: function( elems ) {
- var data, elem, type, key,
- special = jQuery.event.special,
- i = 0;
-
- for ( ; (elem = elems[ i ]) !== undefined; i++ ) {
- if ( jQuery.acceptData( elem ) ) {
- key = elem[ data_priv.expando ];
-
- if ( key && (data = data_priv.cache[ key ]) ) {
- if ( data.events ) {
- for ( type in data.events ) {
- if ( special[ type ] ) {
- jQuery.event.remove( elem, type );
-
- // This is a shortcut to avoid jQuery.event.remove's overhead
- } else {
- jQuery.removeEvent( elem, type, data.handle );
- }
- }
- }
- if ( data_priv.cache[ key ] ) {
- // Discard any remaining `private` data
- delete data_priv.cache[ key ];
- }
- }
- }
- // Discard any remaining `user` data
- delete data_user.cache[ elem[ data_user.expando ] ];
- }
- }
-});
-
-jQuery.fn.extend({
- text: function( value ) {
- return access( this, function( value ) {
- return value === undefined ?
- jQuery.text( this ) :
- this.empty().each(function() {
- if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
- this.textContent = value;
- }
- });
- }, null, value, arguments.length );
- },
-
- append: function() {
- return this.domManip( arguments, function( elem ) {
- if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
- var target = manipulationTarget( this, elem );
- target.appendChild( elem );
- }
- });
- },
-
- prepend: function() {
- return this.domManip( arguments, function( elem ) {
- if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
- var target = manipulationTarget( this, elem );
- target.insertBefore( elem, target.firstChild );
- }
- });
- },
-
- before: function() {
- return this.domManip( arguments, function( elem ) {
- if ( this.parentNode ) {
- this.parentNode.insertBefore( elem, this );
- }
- });
- },
-
- after: function() {
- return this.domManip( arguments, function( elem ) {
- if ( this.parentNode ) {
- this.parentNode.insertBefore( elem, this.nextSibling );
- }
- });
- },
-
- remove: function( selector, keepData /* Internal Use Only */ ) {
- var elem,
- elems = selector ? jQuery.filter( selector, this ) : this,
- i = 0;
-
- for ( ; (elem = elems[i]) != null; i++ ) {
- if ( !keepData && elem.nodeType === 1 ) {
- jQuery.cleanData( getAll( elem ) );
- }
-
- if ( elem.parentNode ) {
- if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {
- setGlobalEval( getAll( elem, "script" ) );
- }
- elem.parentNode.removeChild( elem );
- }
- }
-
- return this;
- },
-
- empty: function() {
- var elem,
- i = 0;
-
- for ( ; (elem = this[i]) != null; i++ ) {
- if ( elem.nodeType === 1 ) {
-
- // Prevent memory leaks
- jQuery.cleanData( getAll( elem, false ) );
-
- // Remove any remaining nodes
- elem.textContent = "";
- }
- }
-
- return this;
- },
-
- clone: function( dataAndEvents, deepDataAndEvents ) {
- dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
- deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
-
- return this.map(function() {
- return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
- });
- },
-
- html: function( value ) {
- return access( this, function( value ) {
- var elem = this[ 0 ] || {},
- i = 0,
- l = this.length;
-
- if ( value === undefined && elem.nodeType === 1 ) {
- return elem.innerHTML;
- }
-
- // See if we can take a shortcut and just use innerHTML
- if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
- !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
-
- value = value.replace( rxhtmlTag, "<$1></$2>" );
-
- try {
- for ( ; i < l; i++ ) {
- elem = this[ i ] || {};
-
- // Remove element nodes and prevent memory leaks
- if ( elem.nodeType === 1 ) {
- jQuery.cleanData( getAll( elem, false ) );
- elem.innerHTML = value;
- }
- }
-
- elem = 0;
-
- // If using innerHTML throws an exception, use the fallback method
- } catch( e ) {}
- }
-
- if ( elem ) {
- this.empty().append( value );
- }
- }, null, value, arguments.length );
- },
-
- replaceWith: function() {
- var arg = arguments[ 0 ];
-
- // Make the changes, replacing each context element with the new content
- this.domManip( arguments, function( elem ) {
- arg = this.parentNode;
-
- jQuery.cleanData( getAll( this ) );
-
- if ( arg ) {
- arg.replaceChild( elem, this );
- }
- });
-
- // Force removal if there was no new content (e.g., from empty arguments)
- return arg && (arg.length || arg.nodeType) ? this : this.remove();
- },
-
- detach: function( selector ) {
- return this.remove( selector, true );
- },
-
- domManip: function( args, callback ) {
-
- // Flatten any nested arrays
- args = concat.apply( [], args );
-
- var fragment, first, scripts, hasScripts, node, doc,
- i = 0,
- l = this.length,
- set = this,
- iNoClone = l - 1,
- value = args[ 0 ],
- isFunction = jQuery.isFunction( value );
-
- // We can't cloneNode fragments that contain checked, in WebKit
- if ( isFunction ||
- ( l > 1 && typeof value === "string" &&
- !support.checkClone && rchecked.test( value ) ) ) {
- return this.each(function( index ) {
- var self = set.eq( index );
- if ( isFunction ) {
- args[ 0 ] = value.call( this, index, self.html() );
- }
- self.domManip( args, callback );
- });
- }
-
- if ( l ) {
- fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );
- first = fragment.firstChild;
-
- if ( fragment.childNodes.length === 1 ) {
- fragment = first;
- }
-
- if ( first ) {
- scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
- hasScripts = scripts.length;
-
- // Use the original fragment for the last item instead of the first because it can end up
- // being emptied incorrectly in certain situations (#8070).
- for ( ; i < l; i++ ) {
- node = fragment;
-
- if ( i !== iNoClone ) {
- node = jQuery.clone( node, true, true );
-
- // Keep references to cloned scripts for later restoration
- if ( hasScripts ) {
- // Support: QtWebKit
- // jQuery.merge because push.apply(_, arraylike) throws
- jQuery.merge( scripts, getAll( node, "script" ) );
- }
- }
-
- callback.call( this[ i ], node, i );
- }
-
- if ( hasScripts ) {
- doc = scripts[ scripts.length - 1 ].ownerDocument;
-
- // Reenable scripts
- jQuery.map( scripts, restoreScript );
-
- // Evaluate executable scripts on first document insertion
- for ( i = 0; i < hasScripts; i++ ) {
- node = scripts[ i ];
- if ( rscriptType.test( node.type || "" ) &&
- !data_priv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) {
-
- if ( node.src ) {
- // Optional AJAX dependency, but won't run scripts if not present
- if ( jQuery._evalUrl ) {
- jQuery._evalUrl( node.src );
- }
- } else {
- jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) );
- }
- }
- }
- }
- }
- }
-
- return this;
- }
-});
-
-jQuery.each({
- appendTo: "append",
- prependTo: "prepend",
- insertBefore: "before",
- insertAfter: "after",
- replaceAll: "replaceWith"
-}, function( name, original ) {
- jQuery.fn[ name ] = function( selector ) {
- var elems,
- ret = [],
- insert = jQuery( selector ),
- last = insert.length - 1,
- i = 0;
-
- for ( ; i <= last; i++ ) {
- elems = i === last ? this : this.clone( true );
- jQuery( insert[ i ] )[ original ]( elems );
-
- // Support: QtWebKit
- // .get() because push.apply(_, arraylike) throws
- push.apply( ret, elems.get() );
- }
-
- return this.pushStack( ret );
- };
-});
-
-
-var iframe,
- elemdisplay = {};
-
-/**
- * Retrieve the actual display of a element
- * @param {String} name nodeName of the element
- * @param {Object} doc Document object
- */
-// Called only from within defaultDisplay
-function actualDisplay( name, doc ) {
- var style,
- elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
-
- // getDefaultComputedStyle might be reliably used only on attached element
- display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?
-
- // Use of this method is a temporary fix (more like optimization) until something better comes along,
- // since it was removed from specification and supported only in FF
- style.display : jQuery.css( elem[ 0 ], "display" );
-
- // We don't have any data stored on the element,
- // so use "detach" method as fast way to get rid of the element
- elem.detach();
-
- return display;
-}
-
-/**
- * Try to determine the default display value of an element
- * @param {String} nodeName
- */
-function defaultDisplay( nodeName ) {
- var doc = document,
- display = elemdisplay[ nodeName ];
-
- if ( !display ) {
- display = actualDisplay( nodeName, doc );
-
- // If the simple way fails, read from inside an iframe
- if ( display === "none" || !display ) {
-
- // Use the already-created iframe if possible
- iframe = (iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" )).appendTo( doc.documentElement );
-
- // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
- doc = iframe[ 0 ].contentDocument;
-
- // Support: IE
- doc.write();
- doc.close();
-
- display = actualDisplay( nodeName, doc );
- iframe.detach();
- }
-
- // Store the correct default display
- elemdisplay[ nodeName ] = display;
- }
-
- return display;
-}
-var rmargin = (/^margin/);
-
-var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
-
-var getStyles = function( elem ) {
- // Support: IE<=11+, Firefox<=30+ (#15098, #14150)
- // IE throws on elements created in popups
- // FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
- if ( elem.ownerDocument.defaultView.opener ) {
- return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
- }
-
- return window.getComputedStyle( elem, null );
- };
-
-
-
-function curCSS( elem, name, computed ) {
- var width, minWidth, maxWidth, ret,
- style = elem.style;
-
- computed = computed || getStyles( elem );
-
- // Support: IE9
- // getPropertyValue is only needed for .css('filter') (#12537)
- if ( computed ) {
- ret = computed.getPropertyValue( name ) || computed[ name ];
- }
-
- if ( computed ) {
-
- if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
- ret = jQuery.style( elem, name );
- }
-
- // Support: iOS < 6
- // A tribute to the "awesome hack by Dean Edwards"
- // iOS < 6 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
- // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
- if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
-
- // Remember the original values
- width = style.width;
- minWidth = style.minWidth;
- maxWidth = style.maxWidth;
-
- // Put in the new values to get a computed value out
- style.minWidth = style.maxWidth = style.width = ret;
- ret = computed.width;
-
- // Revert the changed values
- style.width = width;
- style.minWidth = minWidth;
- style.maxWidth = maxWidth;
- }
- }
-
- return ret !== undefined ?
- // Support: IE
- // IE returns zIndex value as an integer.
- ret + "" :
- ret;
-}
-
-
-function addGetHookIf( conditionFn, hookFn ) {
- // Define the hook, we'll check on the first run if it's really needed.
- return {
- get: function() {
- if ( conditionFn() ) {
- // Hook not needed (or it's not possible to use it due
- // to missing dependency), remove it.
- delete this.get;
- return;
- }
-
- // Hook needed; redefine it so that the support test is not executed again.
- return (this.get = hookFn).apply( this, arguments );
- }
- };
-}
-
-
-(function() {
- var pixelPositionVal, boxSizingReliableVal,
- docElem = document.documentElement,
- container = document.createElement( "div" ),
- div = document.createElement( "div" );
-
- if ( !div.style ) {
- return;
- }
-
- // Support: IE9-11+
- // Style of cloned element affects source element cloned (#8908)
- div.style.backgroundClip = "content-box";
- div.cloneNode( true ).style.backgroundClip = "";
- support.clearCloneStyle = div.style.backgroundClip === "content-box";
-
- container.style.cssText = "border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;" +
- "position:absolute";
- container.appendChild( div );
-
- // Executing both pixelPosition & boxSizingReliable tests require only one layout
- // so they're executed at the same time to save the second computation.
- function computePixelPositionAndBoxSizingReliable() {
- div.style.cssText =
- // Support: Firefox<29, Android 2.3
- // Vendor-prefix box-sizing
- "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;" +
- "box-sizing:border-box;display:block;margin-top:1%;top:1%;" +
- "border:1px;padding:1px;width:4px;position:absolute";
- div.innerHTML = "";
- docElem.appendChild( container );
-
- var divStyle = window.getComputedStyle( div, null );
- pixelPositionVal = divStyle.top !== "1%";
- boxSizingReliableVal = divStyle.width === "4px";
-
- docElem.removeChild( container );
- }
-
- // Support: node.js jsdom
- // Don't assume that getComputedStyle is a property of the global object
- if ( window.getComputedStyle ) {
- jQuery.extend( support, {
- pixelPosition: function() {
-
- // This test is executed only once but we still do memoizing
- // since we can use the boxSizingReliable pre-computing.
- // No need to check if the test was already performed, though.
- computePixelPositionAndBoxSizingReliable();
- return pixelPositionVal;
- },
- boxSizingReliable: function() {
- if ( boxSizingReliableVal == null ) {
- computePixelPositionAndBoxSizingReliable();
- }
- return boxSizingReliableVal;
- },
- reliableMarginRight: function() {
-
- // Support: Android 2.3
- // Check if div with explicit width and no margin-right incorrectly
- // gets computed margin-right based on width of container. (#3333)
- // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
- // This support function is only executed once so no memoizing is needed.
- var ret,
- marginDiv = div.appendChild( document.createElement( "div" ) );
-
- // Reset CSS: box-sizing; display; margin; border; padding
- marginDiv.style.cssText = div.style.cssText =
- // Support: Firefox<29, Android 2.3
- // Vendor-prefix box-sizing
- "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
- "box-sizing:content-box;display:block;margin:0;border:0;padding:0";
- marginDiv.style.marginRight = marginDiv.style.width = "0";
- div.style.width = "1px";
- docElem.appendChild( container );
-
- ret = !parseFloat( window.getComputedStyle( marginDiv, null ).marginRight );
-
- docElem.removeChild( container );
- div.removeChild( marginDiv );
-
- return ret;
- }
- });
- }
-})();
-
-
-// A method for quickly swapping in/out CSS properties to get correct calculations.
-jQuery.swap = function( elem, options, callback, args ) {
- var ret, name,
- old = {};
-
- // Remember the old values, and insert the new ones
- for ( name in options ) {
- old[ name ] = elem.style[ name ];
- elem.style[ name ] = options[ name ];
- }
-
- ret = callback.apply( elem, args || [] );
-
- // Revert the old values
- for ( name in options ) {
- elem.style[ name ] = old[ name ];
- }
-
- return ret;
-};
-
-
-var
- // Swappable if display is none or starts with table except "table", "table-cell", or "table-caption"
- // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
- rdisplayswap = /^(none|table(?!-c[ea]).+)/,
- rnumsplit = new RegExp( "^(" + pnum + ")(.*)$", "i" ),
- rrelNum = new RegExp( "^([+-])=(" + pnum + ")", "i" ),
-
- cssShow = { position: "absolute", visibility: "hidden", display: "block" },
- cssNormalTransform = {
- letterSpacing: "0",
- fontWeight: "400"
- },
-
- cssPrefixes = [ "Webkit", "O", "Moz", "ms" ];
-
-// Return a css property mapped to a potentially vendor prefixed property
-function vendorPropName( style, name ) {
-
- // Shortcut for names that are not vendor prefixed
- if ( name in style ) {
- return name;
- }
-
- // Check for vendor prefixed names
- var capName = name[0].toUpperCase() + name.slice(1),
- origName = name,
- i = cssPrefixes.length;
-
- while ( i-- ) {
- name = cssPrefixes[ i ] + capName;
- if ( name in style ) {
- return name;
- }
- }
-
- return origName;
-}
-
-function setPositiveNumber( elem, value, subtract ) {
- var matches = rnumsplit.exec( value );
- return matches ?
- // Guard against undefined "subtract", e.g., when used as in cssHooks
- Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) :
- value;
-}
-
-function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
- var i = extra === ( isBorderBox ? "border" : "content" ) ?
- // If we already have the right measurement, avoid augmentation
- 4 :
- // Otherwise initialize for horizontal or vertical properties
- name === "width" ? 1 : 0,
-
- val = 0;
-
- for ( ; i < 4; i += 2 ) {
- // Both box models exclude margin, so add it if we want it
- if ( extra === "margin" ) {
- val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
- }
-
- if ( isBorderBox ) {
- // border-box includes padding, so remove it if we want content
- if ( extra === "content" ) {
- val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
- }
-
- // At this point, extra isn't border nor margin, so remove border
- if ( extra !== "margin" ) {
- val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
- }
- } else {
- // At this point, extra isn't content, so add padding
- val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
-
- // At this point, extra isn't content nor padding, so add border
- if ( extra !== "padding" ) {
- val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
- }
- }
- }
-
- return val;
-}
-
-function getWidthOrHeight( elem, name, extra ) {
-
- // Start with offset property, which is equivalent to the border-box value
- var valueIsBorderBox = true,
- val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
- styles = getStyles( elem ),
- isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
-
- // Some non-html elements return undefined for offsetWidth, so check for null/undefined
- // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
- // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
- if ( val <= 0 || val == null ) {
- // Fall back to computed then uncomputed css if necessary
- val = curCSS( elem, name, styles );
- if ( val < 0 || val == null ) {
- val = elem.style[ name ];
- }
-
- // Computed unit is not pixels. Stop here and return.
- if ( rnumnonpx.test(val) ) {
- return val;
- }
-
- // Check for style in case a browser which returns unreliable values
- // for getComputedStyle silently falls back to the reliable elem.style
- valueIsBorderBox = isBorderBox &&
- ( support.boxSizingReliable() || val === elem.style[ name ] );
-
- // Normalize "", auto, and prepare for extra
- val = parseFloat( val ) || 0;
- }
-
- // Use the active box-sizing model to add/subtract irrelevant styles
- return ( val +
- augmentWidthOrHeight(
- elem,
- name,
- extra || ( isBorderBox ? "border" : "content" ),
- valueIsBorderBox,
- styles
- )
- ) + "px";
-}
-
-function showHide( elements, show ) {
- var display, elem, hidden,
- values = [],
- index = 0,
- length = elements.length;
-
- for ( ; index < length; index++ ) {
- elem = elements[ index ];
- if ( !elem.style ) {
- continue;
- }
-
- values[ index ] = data_priv.get( elem, "olddisplay" );
- display = elem.style.display;
- if ( show ) {
- // Reset the inline display of this element to learn if it is
- // being hidden by cascaded rules or not
- if ( !values[ index ] && display === "none" ) {
- elem.style.display = "";
- }
-
- // Set elements which have been overridden with display: none
- // in a stylesheet to whatever the default browser style is
- // for such an element
- if ( elem.style.display === "" && isHidden( elem ) ) {
- values[ index ] = data_priv.access( elem, "olddisplay", defaultDisplay(elem.nodeName) );
- }
- } else {
- hidden = isHidden( elem );
-
- if ( display !== "none" || !hidden ) {
- data_priv.set( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) );
- }
- }
- }
-
- // Set the display of most of the elements in a second loop
- // to avoid the constant reflow
- for ( index = 0; index < length; index++ ) {
- elem = elements[ index ];
- if ( !elem.style ) {
- continue;
- }
- if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
- elem.style.display = show ? values[ index ] || "" : "none";
- }
- }
-
- return elements;
-}
-
-jQuery.extend({
-
- // Add in style property hooks for overriding the default
- // behavior of getting and setting a style property
- cssHooks: {
- opacity: {
- get: function( elem, computed ) {
- if ( computed ) {
-
- // We should always get a number back from opacity
- var ret = curCSS( elem, "opacity" );
- return ret === "" ? "1" : ret;
- }
- }
- }
- },
-
- // Don't automatically add "px" to these possibly-unitless properties
- cssNumber: {
- "columnCount": true,
- "fillOpacity": true,
- "flexGrow": true,
- "flexShrink": true,
- "fontWeight": true,
- "lineHeight": true,
- "opacity": true,
- "order": true,
- "orphans": true,
- "widows": true,
- "zIndex": true,
- "zoom": true
- },
-
- // Add in properties whose names you wish to fix before
- // setting or getting the value
- cssProps: {
- "float": "cssFloat"
- },
-
- // Get and set the style property on a DOM Node
- style: function( elem, name, value, extra ) {
-
- // Don't set styles on text and comment nodes
- if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
- return;
- }
-
- // Make sure that we're working with the right name
- var ret, type, hooks,
- origName = jQuery.camelCase( name ),
- style = elem.style;
-
- name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );
-
- // Gets hook for the prefixed version, then unprefixed version
- hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
-
- // Check if we're setting a value
- if ( value !== undefined ) {
- type = typeof value;
-
- // Convert "+=" or "-=" to relative numbers (#7345)
- if ( type === "string" && (ret = rrelNum.exec( value )) ) {
- value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
- // Fixes bug #9237
- type = "number";
- }
-
- // Make sure that null and NaN values aren't set (#7116)
- if ( value == null || value !== value ) {
- return;
- }
-
- // If a number, add 'px' to the (except for certain CSS properties)
- if ( type === "number" && !jQuery.cssNumber[ origName ] ) {
- value += "px";
- }
-
- // Support: IE9-11+
- // background-* props affect original clone's values
- if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
- style[ name ] = "inherit";
- }
-
- // If a hook was provided, use that value, otherwise just set the specified value
- if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {
- style[ name ] = value;
- }
-
- } else {
- // If a hook was provided get the non-computed value from there
- if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
- return ret;
- }
-
- // Otherwise just get the value from the style object
- return style[ name ];
- }
- },
-
- css: function( elem, name, extra, styles ) {
- var val, num, hooks,
- origName = jQuery.camelCase( name );
-
- // Make sure that we're working with the right name
- name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );
-
- // Try prefixed name followed by the unprefixed name
- hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
-
- // If a hook was provided get the computed value from there
- if ( hooks && "get" in hooks ) {
- val = hooks.get( elem, true, extra );
- }
-
- // Otherwise, if a way to get the computed value exists, use that
- if ( val === undefined ) {
- val = curCSS( elem, name, styles );
- }
-
- // Convert "normal" to computed value
- if ( val === "normal" && name in cssNormalTransform ) {
- val = cssNormalTransform[ name ];
- }
-
- // Make numeric if forced or a qualifier was provided and val looks numeric
- if ( extra === "" || extra ) {
- num = parseFloat( val );
- return extra === true || jQuery.isNumeric( num ) ? num || 0 : val;
- }
- return val;
- }
-});
-
-jQuery.each([ "height", "width" ], function( i, name ) {
- jQuery.cssHooks[ name ] = {
- get: function( elem, computed, extra ) {
- if ( computed ) {
-
- // Certain elements can have dimension info if we invisibly show them
- // but it must have a current display style that would benefit
- return rdisplayswap.test( jQuery.css( elem, "display" ) ) && elem.offsetWidth === 0 ?
- jQuery.swap( elem, cssShow, function() {
- return getWidthOrHeight( elem, name, extra );
- }) :
- getWidthOrHeight( elem, name, extra );
- }
- },
-
- set: function( elem, value, extra ) {
- var styles = extra && getStyles( elem );
- return setPositiveNumber( elem, value, extra ?
- augmentWidthOrHeight(
- elem,
- name,
- extra,
- jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
- styles
- ) : 0
- );
- }
- };
-});
-
-// Support: Android 2.3
-jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
- function( elem, computed ) {
- if ( computed ) {
- return jQuery.swap( elem, { "display": "inline-block" },
- curCSS, [ elem, "marginRight" ] );
- }
- }
-);
-
-// These hooks are used by animate to expand properties
-jQuery.each({
- margin: "",
- padding: "",
- border: "Width"
-}, function( prefix, suffix ) {
- jQuery.cssHooks[ prefix + suffix ] = {
- expand: function( value ) {
- var i = 0,
- expanded = {},
-
- // Assumes a single number if not a string
- parts = typeof value === "string" ? value.split(" ") : [ value ];
-
- for ( ; i < 4; i++ ) {
- expanded[ prefix + cssExpand[ i ] + suffix ] =
- parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
- }
-
- return expanded;
- }
- };
-
- if ( !rmargin.test( prefix ) ) {
- jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
- }
-});
-
-jQuery.fn.extend({
- css: function( name, value ) {
- return access( this, function( elem, name, value ) {
- var styles, len,
- map = {},
- i = 0;
-
- if ( jQuery.isArray( name ) ) {
- styles = getStyles( elem );
- len = name.length;
-
- for ( ; i < len; i++ ) {
- map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
- }
-
- return map;
- }
-
- return value !== undefined ?
- jQuery.style( elem, name, value ) :
- jQuery.css( elem, name );
- }, name, value, arguments.length > 1 );
- },
- show: function() {
- return showHide( this, true );
- },
- hide: function() {
- return showHide( this );
- },
- toggle: function( state ) {
- if ( typeof state === "boolean" ) {
- return state ? this.show() : this.hide();
- }
-
- return this.each(function() {
- if ( isHidden( this ) ) {
- jQuery( this ).show();
- } else {
- jQuery( this ).hide();
- }
- });
- }
-});
-
-
-function Tween( elem, options, prop, end, easing ) {
- return new Tween.prototype.init( elem, options, prop, end, easing );
-}
-jQuery.Tween = Tween;
-
-Tween.prototype = {
- constructor: Tween,
- init: function( elem, options, prop, end, easing, unit ) {
- this.elem = elem;
- this.prop = prop;
- this.easing = easing || "swing";
- this.options = options;
- this.start = this.now = this.cur();
- this.end = end;
- this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
- },
- cur: function() {
- var hooks = Tween.propHooks[ this.prop ];
-
- return hooks && hooks.get ?
- hooks.get( this ) :
- Tween.propHooks._default.get( this );
- },
- run: function( percent ) {
- var eased,
- hooks = Tween.propHooks[ this.prop ];
-
- if ( this.options.duration ) {
- this.pos = eased = jQuery.easing[ this.easing ](
- percent, this.options.duration * percent, 0, 1, this.options.duration
- );
- } else {
- this.pos = eased = percent;
- }
- this.now = ( this.end - this.start ) * eased + this.start;
-
- if ( this.options.step ) {
- this.options.step.call( this.elem, this.now, this );
- }
-
- if ( hooks && hooks.set ) {
- hooks.set( this );
- } else {
- Tween.propHooks._default.set( this );
- }
- return this;
- }
-};
-
-Tween.prototype.init.prototype = Tween.prototype;
-
-Tween.propHooks = {
- _default: {
- get: function( tween ) {
- var result;
-
- if ( tween.elem[ tween.prop ] != null &&
- (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
- return tween.elem[ tween.prop ];
- }
-
- // Passing an empty string as a 3rd parameter to .css will automatically
- // attempt a parseFloat and fallback to a string if the parse fails.
- // Simple values such as "10px" are parsed to Float;
- // complex values such as "rotate(1rad)" are returned as-is.
- result = jQuery.css( tween.elem, tween.prop, "" );
- // Empty strings, null, undefined and "auto" are converted to 0.
- return !result || result === "auto" ? 0 : result;
- },
- set: function( tween ) {
- // Use step hook for back compat.
- // Use cssHook if its there.
- // Use .style if available and use plain properties where available.
- if ( jQuery.fx.step[ tween.prop ] ) {
- jQuery.fx.step[ tween.prop ]( tween );
- } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
- jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
- } else {
- tween.elem[ tween.prop ] = tween.now;
- }
- }
- }
-};
-
-// Support: IE9
-// Panic based approach to setting things on disconnected nodes
-Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
- set: function( tween ) {
- if ( tween.elem.nodeType && tween.elem.parentNode ) {
- tween.elem[ tween.prop ] = tween.now;
- }
- }
-};
-
-jQuery.easing = {
- linear: function( p ) {
- return p;
- },
- swing: function( p ) {
- return 0.5 - Math.cos( p * Math.PI ) / 2;
- }
-};
-
-jQuery.fx = Tween.prototype.init;
-
-// Back Compat <1.8 extension point
-jQuery.fx.step = {};
-
-
-
-
-var
- fxNow, timerId,
- rfxtypes = /^(?:toggle|show|hide)$/,
- rfxnum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ),
- rrun = /queueHooks$/,
- animationPrefilters = [ defaultPrefilter ],
- tweeners = {
- "*": [ function( prop, value ) {
- var tween = this.createTween( prop, value ),
- target = tween.cur(),
- parts = rfxnum.exec( value ),
- unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
-
- // Starting value computation is required for potential unit mismatches
- start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) &&
- rfxnum.exec( jQuery.css( tween.elem, prop ) ),
- scale = 1,
- maxIterations = 20;
-
- if ( start && start[ 3 ] !== unit ) {
- // Trust units reported by jQuery.css
- unit = unit || start[ 3 ];
-
- // Make sure we update the tween properties later on
- parts = parts || [];
-
- // Iteratively approximate from a nonzero starting point
- start = +target || 1;
-
- do {
- // If previous iteration zeroed out, double until we get *something*.
- // Use string for doubling so we don't accidentally see scale as unchanged below
- scale = scale || ".5";
-
- // Adjust and apply
- start = start / scale;
- jQuery.style( tween.elem, prop, start + unit );
-
- // Update scale, tolerating zero or NaN from tween.cur(),
- // break the loop if scale is unchanged or perfect, or if we've just had enough
- } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
- }
-
- // Update tween properties
- if ( parts ) {
- start = tween.start = +start || +target || 0;
- tween.unit = unit;
- // If a +=/-= token was provided, we're doing a relative animation
- tween.end = parts[ 1 ] ?
- start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :
- +parts[ 2 ];
- }
-
- return tween;
- } ]
- };
-
-// Animations created synchronously will run synchronously
-function createFxNow() {
- setTimeout(function() {
- fxNow = undefined;
- });
- return ( fxNow = jQuery.now() );
-}
-
-// Generate parameters to create a standard animation
-function genFx( type, includeWidth ) {
- var which,
- i = 0,
- attrs = { height: type };
-
- // If we include width, step value is 1 to do all cssExpand values,
- // otherwise step value is 2 to skip over Left and Right
- includeWidth = includeWidth ? 1 : 0;
- for ( ; i < 4 ; i += 2 - includeWidth ) {
- which = cssExpand[ i ];
- attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
- }
-
- if ( includeWidth ) {
- attrs.opacity = attrs.width = type;
- }
-
- return attrs;
-}
-
-function createTween( value, prop, animation ) {
- var tween,
- collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
- index = 0,
- length = collection.length;
- for ( ; index < length; index++ ) {
- if ( (tween = collection[ index ].call( animation, prop, value )) ) {
-
- // We're done with this property
- return tween;
- }
- }
-}
-
-function defaultPrefilter( elem, props, opts ) {
- /* jshint validthis: true */
- var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,
- anim = this,
- orig = {},
- style = elem.style,
- hidden = elem.nodeType && isHidden( elem ),
- dataShow = data_priv.get( elem, "fxshow" );
-
- // Handle queue: false promises
- if ( !opts.queue ) {
- hooks = jQuery._queueHooks( elem, "fx" );
- if ( hooks.unqueued == null ) {
- hooks.unqueued = 0;
- oldfire = hooks.empty.fire;
- hooks.empty.fire = function() {
- if ( !hooks.unqueued ) {
- oldfire();
- }
- };
- }
- hooks.unqueued++;
-
- anim.always(function() {
- // Ensure the complete handler is called before this completes
- anim.always(function() {
- hooks.unqueued--;
- if ( !jQuery.queue( elem, "fx" ).length ) {
- hooks.empty.fire();
- }
- });
- });
- }
-
- // Height/width overflow pass
- if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
- // Make sure that nothing sneaks out
- // Record all 3 overflow attributes because IE9-10 do not
- // change the overflow attribute when overflowX and
- // overflowY are set to the same value
- opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
-
- // Set display property to inline-block for height/width
- // animations on inline elements that are having width/height animated
- display = jQuery.css( elem, "display" );
-
- // Test default display if display is currently "none"
- checkDisplay = display === "none" ?
- data_priv.get( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
-
- if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) {
- style.display = "inline-block";
- }
- }
-
- if ( opts.overflow ) {
- style.overflow = "hidden";
- anim.always(function() {
- style.overflow = opts.overflow[ 0 ];
- style.overflowX = opts.overflow[ 1 ];
- style.overflowY = opts.overflow[ 2 ];
- });
- }
-
- // show/hide pass
- for ( prop in props ) {
- value = props[ prop ];
- if ( rfxtypes.exec( value ) ) {
- delete props[ prop ];
- toggle = toggle || value === "toggle";
- if ( value === ( hidden ? "hide" : "show" ) ) {
-
- // If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden
- if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
- hidden = true;
- } else {
- continue;
- }
- }
- orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
-
- // Any non-fx value stops us from restoring the original display value
- } else {
- display = undefined;
- }
- }
-
- if ( !jQuery.isEmptyObject( orig ) ) {
- if ( dataShow ) {
- if ( "hidden" in dataShow ) {
- hidden = dataShow.hidden;
- }
- } else {
- dataShow = data_priv.access( elem, "fxshow", {} );
- }
-
- // Store state if its toggle - enables .stop().toggle() to "reverse"
- if ( toggle ) {
- dataShow.hidden = !hidden;
- }
- if ( hidden ) {
- jQuery( elem ).show();
- } else {
- anim.done(function() {
- jQuery( elem ).hide();
- });
- }
- anim.done(function() {
- var prop;
-
- data_priv.remove( elem, "fxshow" );
- for ( prop in orig ) {
- jQuery.style( elem, prop, orig[ prop ] );
- }
- });
- for ( prop in orig ) {
- tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
-
- if ( !( prop in dataShow ) ) {
- dataShow[ prop ] = tween.start;
- if ( hidden ) {
- tween.end = tween.start;
- tween.start = prop === "width" || prop === "height" ? 1 : 0;
- }
- }
- }
-
- // If this is a noop like .hide().hide(), restore an overwritten display value
- } else if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" ) {
- style.display = display;
- }
-}
-
-function propFilter( props, specialEasing ) {
- var index, name, easing, value, hooks;
-
- // camelCase, specialEasing and expand cssHook pass
- for ( index in props ) {
- name = jQuery.camelCase( index );
- easing = specialEasing[ name ];
- value = props[ index ];
- if ( jQuery.isArray( value ) ) {
- easing = value[ 1 ];
- value = props[ index ] = value[ 0 ];
- }
-
- if ( index !== name ) {
- props[ name ] = value;
- delete props[ index ];
- }
-
- hooks = jQuery.cssHooks[ name ];
- if ( hooks && "expand" in hooks ) {
- value = hooks.expand( value );
- delete props[ name ];
-
- // Not quite $.extend, this won't overwrite existing keys.
- // Reusing 'index' because we have the correct "name"
- for ( index in value ) {
- if ( !( index in props ) ) {
- props[ index ] = value[ index ];
- specialEasing[ index ] = easing;
- }
- }
- } else {
- specialEasing[ name ] = easing;
- }
- }
-}
-
-function Animation( elem, properties, options ) {
- var result,
- stopped,
- index = 0,
- length = animationPrefilters.length,
- deferred = jQuery.Deferred().always( function() {
- // Don't match elem in the :animated selector
- delete tick.elem;
- }),
- tick = function() {
- if ( stopped ) {
- return false;
- }
- var currentTime = fxNow || createFxNow(),
- remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
- // Support: Android 2.3
- // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
- temp = remaining / animation.duration || 0,
- percent = 1 - temp,
- index = 0,
- length = animation.tweens.length;
-
- for ( ; index < length ; index++ ) {
- animation.tweens[ index ].run( percent );
- }
-
- deferred.notifyWith( elem, [ animation, percent, remaining ]);
-
- if ( percent < 1 && length ) {
- return remaining;
- } else {
- deferred.resolveWith( elem, [ animation ] );
- return false;
- }
- },
- animation = deferred.promise({
- elem: elem,
- props: jQuery.extend( {}, properties ),
- opts: jQuery.extend( true, { specialEasing: {} }, options ),
- originalProperties: properties,
- originalOptions: options,
- startTime: fxNow || createFxNow(),
- duration: options.duration,
- tweens: [],
- createTween: function( prop, end ) {
- var tween = jQuery.Tween( elem, animation.opts, prop, end,
- animation.opts.specialEasing[ prop ] || animation.opts.easing );
- animation.tweens.push( tween );
- return tween;
- },
- stop: function( gotoEnd ) {
- var index = 0,
- // If we are going to the end, we want to run all the tweens
- // otherwise we skip this part
- length = gotoEnd ? animation.tweens.length : 0;
- if ( stopped ) {
- return this;
- }
- stopped = true;
- for ( ; index < length ; index++ ) {
- animation.tweens[ index ].run( 1 );
- }
-
- // Resolve when we played the last frame; otherwise, reject
- if ( gotoEnd ) {
- deferred.resolveWith( elem, [ animation, gotoEnd ] );
- } else {
- deferred.rejectWith( elem, [ animation, gotoEnd ] );
- }
- return this;
- }
- }),
- props = animation.props;
-
- propFilter( props, animation.opts.specialEasing );
-
- for ( ; index < length ; index++ ) {
- result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
- if ( result ) {
- return result;
- }
- }
-
- jQuery.map( props, createTween, animation );
-
- if ( jQuery.isFunction( animation.opts.start ) ) {
- animation.opts.start.call( elem, animation );
- }
-
- jQuery.fx.timer(
- jQuery.extend( tick, {
- elem: elem,
- anim: animation,
- queue: animation.opts.queue
- })
- );
-
- // attach callbacks from options
- return animation.progress( animation.opts.progress )
- .done( animation.opts.done, animation.opts.complete )
- .fail( animation.opts.fail )
- .always( animation.opts.always );
-}
-
-jQuery.Animation = jQuery.extend( Animation, {
-
- tweener: function( props, callback ) {
- if ( jQuery.isFunction( props ) ) {
- callback = props;
- props = [ "*" ];
- } else {
- props = props.split(" ");
- }
-
- var prop,
- index = 0,
- length = props.length;
-
- for ( ; index < length ; index++ ) {
- prop = props[ index ];
- tweeners[ prop ] = tweeners[ prop ] || [];
- tweeners[ prop ].unshift( callback );
- }
- },
-
- prefilter: function( callback, prepend ) {
- if ( prepend ) {
- animationPrefilters.unshift( callback );
- } else {
- animationPrefilters.push( callback );
- }
- }
-});
-
-jQuery.speed = function( speed, easing, fn ) {
- var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
- complete: fn || !fn && easing ||
- jQuery.isFunction( speed ) && speed,
- duration: speed,
- easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
- };
-
- opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
- opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
-
- // Normalize opt.queue - true/undefined/null -> "fx"
- if ( opt.queue == null || opt.queue === true ) {
- opt.queue = "fx";
- }
-
- // Queueing
- opt.old = opt.complete;
-
- opt.complete = function() {
- if ( jQuery.isFunction( opt.old ) ) {
- opt.old.call( this );
- }
-
- if ( opt.queue ) {
- jQuery.dequeue( this, opt.queue );
- }
- };
-
- return opt;
-};
-
-jQuery.fn.extend({
- fadeTo: function( speed, to, easing, callback ) {
-
- // Show any hidden elements after setting opacity to 0
- return this.filter( isHidden ).css( "opacity", 0 ).show()
-
- // Animate to the value specified
- .end().animate({ opacity: to }, speed, easing, callback );
- },
- animate: function( prop, speed, easing, callback ) {
- var empty = jQuery.isEmptyObject( prop ),
- optall = jQuery.speed( speed, easing, callback ),
- doAnimation = function() {
- // Operate on a copy of prop so per-property easing won't be lost
- var anim = Animation( this, jQuery.extend( {}, prop ), optall );
-
- // Empty animations, or finishing resolves immediately
- if ( empty || data_priv.get( this, "finish" ) ) {
- anim.stop( true );
- }
- };
- doAnimation.finish = doAnimation;
-
- return empty || optall.queue === false ?
- this.each( doAnimation ) :
- this.queue( optall.queue, doAnimation );
- },
- stop: function( type, clearQueue, gotoEnd ) {
- var stopQueue = function( hooks ) {
- var stop = hooks.stop;
- delete hooks.stop;
- stop( gotoEnd );
- };
-
- if ( typeof type !== "string" ) {
- gotoEnd = clearQueue;
- clearQueue = type;
- type = undefined;
- }
- if ( clearQueue && type !== false ) {
- this.queue( type || "fx", [] );
- }
-
- return this.each(function() {
- var dequeue = true,
- index = type != null && type + "queueHooks",
- timers = jQuery.timers,
- data = data_priv.get( this );
-
- if ( index ) {
- if ( data[ index ] && data[ index ].stop ) {
- stopQueue( data[ index ] );
- }
- } else {
- for ( index in data ) {
- if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
- stopQueue( data[ index ] );
- }
- }
- }
-
- for ( index = timers.length; index--; ) {
- if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
- timers[ index ].anim.stop( gotoEnd );
- dequeue = false;
- timers.splice( index, 1 );
- }
- }
-
- // Start the next in the queue if the last step wasn't forced.
- // Timers currently will call their complete callbacks, which
- // will dequeue but only if they were gotoEnd.
- if ( dequeue || !gotoEnd ) {
- jQuery.dequeue( this, type );
- }
- });
- },
- finish: function( type ) {
- if ( type !== false ) {
- type = type || "fx";
- }
- return this.each(function() {
- var index,
- data = data_priv.get( this ),
- queue = data[ type + "queue" ],
- hooks = data[ type + "queueHooks" ],
- timers = jQuery.timers,
- length = queue ? queue.length : 0;
-
- // Enable finishing flag on private data
- data.finish = true;
-
- // Empty the queue first
- jQuery.queue( this, type, [] );
-
- if ( hooks && hooks.stop ) {
- hooks.stop.call( this, true );
- }
-
- // Look for any active animations, and finish them
- for ( index = timers.length; index--; ) {
- if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
- timers[ index ].anim.stop( true );
- timers.splice( index, 1 );
- }
- }
-
- // Look for any animations in the old queue and finish them
- for ( index = 0; index < length; index++ ) {
- if ( queue[ index ] && queue[ index ].finish ) {
- queue[ index ].finish.call( this );
- }
- }
-
- // Turn off finishing flag
- delete data.finish;
- });
- }
-});
-
-jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
- var cssFn = jQuery.fn[ name ];
- jQuery.fn[ name ] = function( speed, easing, callback ) {
- return speed == null || typeof speed === "boolean" ?
- cssFn.apply( this, arguments ) :
- this.animate( genFx( name, true ), speed, easing, callback );
- };
-});
-
-// Generate shortcuts for custom animations
-jQuery.each({
- slideDown: genFx("show"),
- slideUp: genFx("hide"),
- slideToggle: genFx("toggle"),
- fadeIn: { opacity: "show" },
- fadeOut: { opacity: "hide" },
- fadeToggle: { opacity: "toggle" }
-}, function( name, props ) {
- jQuery.fn[ name ] = function( speed, easing, callback ) {
- return this.animate( props, speed, easing, callback );
- };
-});
-
-jQuery.timers = [];
-jQuery.fx.tick = function() {
- var timer,
- i = 0,
- timers = jQuery.timers;
-
- fxNow = jQuery.now();
-
- for ( ; i < timers.length; i++ ) {
- timer = timers[ i ];
- // Checks the timer has not already been removed
- if ( !timer() && timers[ i ] === timer ) {
- timers.splice( i--, 1 );
- }
- }
-
- if ( !timers.length ) {
- jQuery.fx.stop();
- }
- fxNow = undefined;
-};
-
-jQuery.fx.timer = function( timer ) {
- jQuery.timers.push( timer );
- if ( timer() ) {
- jQuery.fx.start();
- } else {
- jQuery.timers.pop();
- }
-};
-
-jQuery.fx.interval = 13;
-
-jQuery.fx.start = function() {
- if ( !timerId ) {
- timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
- }
-};
-
-jQuery.fx.stop = function() {
- clearInterval( timerId );
- timerId = null;
-};
-
-jQuery.fx.speeds = {
- slow: 600,
- fast: 200,
- // Default speed
- _default: 400
-};
-
-
-// Based off of the plugin by Clint Helfers, with permission.
-// http://blindsignals.com/index.php/2009/07/jquery-delay/
-jQuery.fn.delay = function( time, type ) {
- time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
- type = type || "fx";
-
- return this.queue( type, function( next, hooks ) {
- var timeout = setTimeout( next, time );
- hooks.stop = function() {
- clearTimeout( timeout );
- };
- });
-};
-
-
-(function() {
- var input = document.createElement( "input" ),
- select = document.createElement( "select" ),
- opt = select.appendChild( document.createElement( "option" ) );
-
- input.type = "checkbox";
-
- // Support: iOS<=5.1, Android<=4.2+
- // Default value for a checkbox should be "on"
- support.checkOn = input.value !== "";
-
- // Support: IE<=11+
- // Must access selectedIndex to make default options select
- support.optSelected = opt.selected;
-
- // Support: Android<=2.3
- // Options inside disabled selects are incorrectly marked as disabled
- select.disabled = true;
- support.optDisabled = !opt.disabled;
-
- // Support: IE<=11+
- // An input loses its value after becoming a radio
- input = document.createElement( "input" );
- input.value = "t";
- input.type = "radio";
- support.radioValue = input.value === "t";
-})();
-
-
-var nodeHook, boolHook,
- attrHandle = jQuery.expr.attrHandle;
-
-jQuery.fn.extend({
- attr: function( name, value ) {
- return access( this, jQuery.attr, name, value, arguments.length > 1 );
- },
-
- removeAttr: function( name ) {
- return this.each(function() {
- jQuery.removeAttr( this, name );
- });
- }
-});
-
-jQuery.extend({
- attr: function( elem, name, value ) {
- var hooks, ret,
- nType = elem.nodeType;
-
- // don't get/set attributes on text, comment and attribute nodes
- if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
- return;
- }
-
- // Fallback to prop when attributes are not supported
- if ( typeof elem.getAttribute === strundefined ) {
- return jQuery.prop( elem, name, value );
- }
-
- // All attributes are lowercase
- // Grab necessary hook if one is defined
- if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
- name = name.toLowerCase();
- hooks = jQuery.attrHooks[ name ] ||
- ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );
- }
-
- if ( value !== undefined ) {
-
- if ( value === null ) {
- jQuery.removeAttr( elem, name );
-
- } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
- return ret;
-
- } else {
- elem.setAttribute( name, value + "" );
- return value;
- }
-
- } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
- return ret;
-
- } else {
- ret = jQuery.find.attr( elem, name );
-
- // Non-existent attributes return null, we normalize to undefined
- return ret == null ?
- undefined :
- ret;
- }
- },
-
- removeAttr: function( elem, value ) {
- var name, propName,
- i = 0,
- attrNames = value && value.match( rnotwhite );
-
- if ( attrNames && elem.nodeType === 1 ) {
- while ( (name = attrNames[i++]) ) {
- propName = jQuery.propFix[ name ] || name;
-
- // Boolean attributes get special treatment (#10870)
- if ( jQuery.expr.match.bool.test( name ) ) {
- // Set corresponding property to false
- elem[ propName ] = false;
- }
-
- elem.removeAttribute( name );
- }
- }
- },
-
- attrHooks: {
- type: {
- set: function( elem, value ) {
- if ( !support.radioValue && value === "radio" &&
- jQuery.nodeName( elem, "input" ) ) {
- var val = elem.value;
- elem.setAttribute( "type", value );
- if ( val ) {
- elem.value = val;
- }
- return value;
- }
- }
- }
- }
-});
-
-// Hooks for boolean attributes
-boolHook = {
- set: function( elem, value, name ) {
- if ( value === false ) {
- // Remove boolean attributes when set to false
- jQuery.removeAttr( elem, name );
- } else {
- elem.setAttribute( name, name );
- }
- return name;
- }
-};
-jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
- var getter = attrHandle[ name ] || jQuery.find.attr;
-
- attrHandle[ name ] = function( elem, name, isXML ) {
- var ret, handle;
- if ( !isXML ) {
- // Avoid an infinite loop by temporarily removing this function from the getter
- handle = attrHandle[ name ];
- attrHandle[ name ] = ret;
- ret = getter( elem, name, isXML ) != null ?
- name.toLowerCase() :
- null;
- attrHandle[ name ] = handle;
- }
- return ret;
- };
-});
-
-
-
-
-var rfocusable = /^(?:input|select|textarea|button)$/i;
-
-jQuery.fn.extend({
- prop: function( name, value ) {
- return access( this, jQuery.prop, name, value, arguments.length > 1 );
- },
-
- removeProp: function( name ) {
- return this.each(function() {
- delete this[ jQuery.propFix[ name ] || name ];
- });
- }
-});
-
-jQuery.extend({
- propFix: {
- "for": "htmlFor",
- "class": "className"
- },
-
- prop: function( elem, name, value ) {
- var ret, hooks, notxml,
- nType = elem.nodeType;
-
- // Don't get/set properties on text, comment and attribute nodes
- if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
- return;
- }
-
- notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
-
- if ( notxml ) {
- // Fix name and attach hooks
- name = jQuery.propFix[ name ] || name;
- hooks = jQuery.propHooks[ name ];
- }
-
- if ( value !== undefined ) {
- return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?
- ret :
- ( elem[ name ] = value );
-
- } else {
- return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ?
- ret :
- elem[ name ];
- }
- },
-
- propHooks: {
- tabIndex: {
- get: function( elem ) {
- return elem.hasAttribute( "tabindex" ) || rfocusable.test( elem.nodeName ) || elem.href ?
- elem.tabIndex :
- -1;
- }
- }
- }
-});
-
-if ( !support.optSelected ) {
- jQuery.propHooks.selected = {
- get: function( elem ) {
- var parent = elem.parentNode;
- if ( parent && parent.parentNode ) {
- parent.parentNode.selectedIndex;
- }
- return null;
- }
- };
-}
-
-jQuery.each([
- "tabIndex",
- "readOnly",
- "maxLength",
- "cellSpacing",
- "cellPadding",
- "rowSpan",
- "colSpan",
- "useMap",
- "frameBorder",
- "contentEditable"
-], function() {
- jQuery.propFix[ this.toLowerCase() ] = this;
-});
-
-
-
-
-var rclass = /[\t\r\n\f]/g;
-
-jQuery.fn.extend({
- addClass: function( value ) {
- var classes, elem, cur, clazz, j, finalValue,
- proceed = typeof value === "string" && value,
- i = 0,
- len = this.length;
-
- if ( jQuery.isFunction( value ) ) {
- return this.each(function( j ) {
- jQuery( this ).addClass( value.call( this, j, this.className ) );
- });
- }
-
- if ( proceed ) {
- // The disjunction here is for better compressibility (see removeClass)
- classes = ( value || "" ).match( rnotwhite ) || [];
-
- for ( ; i < len; i++ ) {
- elem = this[ i ];
- cur = elem.nodeType === 1 && ( elem.className ?
- ( " " + elem.className + " " ).replace( rclass, " " ) :
- " "
- );
-
- if ( cur ) {
- j = 0;
- while ( (clazz = classes[j++]) ) {
- if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
- cur += clazz + " ";
- }
- }
-
- // only assign if different to avoid unneeded rendering.
- finalValue = jQuery.trim( cur );
- if ( elem.className !== finalValue ) {
- elem.className = finalValue;
- }
- }
- }
- }
-
- return this;
- },
-
- removeClass: function( value ) {
- var classes, elem, cur, clazz, j, finalValue,
- proceed = arguments.length === 0 || typeof value === "string" && value,
- i = 0,
- len = this.length;
-
- if ( jQuery.isFunction( value ) ) {
- return this.each(function( j ) {
- jQuery( this ).removeClass( value.call( this, j, this.className ) );
- });
- }
- if ( proceed ) {
- classes = ( value || "" ).match( rnotwhite ) || [];
-
- for ( ; i < len; i++ ) {
- elem = this[ i ];
- // This expression is here for better compressibility (see addClass)
- cur = elem.nodeType === 1 && ( elem.className ?
- ( " " + elem.className + " " ).replace( rclass, " " ) :
- ""
- );
-
- if ( cur ) {
- j = 0;
- while ( (clazz = classes[j++]) ) {
- // Remove *all* instances
- while ( cur.indexOf( " " + clazz + " " ) >= 0 ) {
- cur = cur.replace( " " + clazz + " ", " " );
- }
- }
-
- // Only assign if different to avoid unneeded rendering.
- finalValue = value ? jQuery.trim( cur ) : "";
- if ( elem.className !== finalValue ) {
- elem.className = finalValue;
- }
- }
- }
- }
-
- return this;
- },
-
- toggleClass: function( value, stateVal ) {
- var type = typeof value;
-
- if ( typeof stateVal === "boolean" && type === "string" ) {
- return stateVal ? this.addClass( value ) : this.removeClass( value );
- }
-
- if ( jQuery.isFunction( value ) ) {
- return this.each(function( i ) {
- jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
- });
- }
-
- return this.each(function() {
- if ( type === "string" ) {
- // Toggle individual class names
- var className,
- i = 0,
- self = jQuery( this ),
- classNames = value.match( rnotwhite ) || [];
-
- while ( (className = classNames[ i++ ]) ) {
- // Check each className given, space separated list
- if ( self.hasClass( className ) ) {
- self.removeClass( className );
- } else {
- self.addClass( className );
- }
- }
-
- // Toggle whole class name
- } else if ( type === strundefined || type === "boolean" ) {
- if ( this.className ) {
- // store className if set
- data_priv.set( this, "__className__", this.className );
- }
-
- // If the element has a class name or if we're passed `false`,
- // then remove the whole classname (if there was one, the above saved it).
- // Otherwise bring back whatever was previously saved (if anything),
- // falling back to the empty string if nothing was stored.
- this.className = this.className || value === false ? "" : data_priv.get( this, "__className__" ) || "";
- }
- });
- },
-
- hasClass: function( selector ) {
- var className = " " + selector + " ",
- i = 0,
- l = this.length;
- for ( ; i < l; i++ ) {
- if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
- return true;
- }
- }
-
- return false;
- }
-});
-
-
-
-
-var rreturn = /\r/g;
-
-jQuery.fn.extend({
- val: function( value ) {
- var hooks, ret, isFunction,
- elem = this[0];
-
- if ( !arguments.length ) {
- if ( elem ) {
- hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
-
- if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
- return ret;
- }
-
- ret = elem.value;
-
- return typeof ret === "string" ?
- // Handle most common string cases
- ret.replace(rreturn, "") :
- // Handle cases where value is null/undef or number
- ret == null ? "" : ret;
- }
-
- return;
- }
-
- isFunction = jQuery.isFunction( value );
-
- return this.each(function( i ) {
- var val;
-
- if ( this.nodeType !== 1 ) {
- return;
- }
-
- if ( isFunction ) {
- val = value.call( this, i, jQuery( this ).val() );
- } else {
- val = value;
- }
-
- // Treat null/undefined as ""; convert numbers to string
- if ( val == null ) {
- val = "";
-
- } else if ( typeof val === "number" ) {
- val += "";
-
- } else if ( jQuery.isArray( val ) ) {
- val = jQuery.map( val, function( value ) {
- return value == null ? "" : value + "";
- });
- }
-
- hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
-
- // If set returns undefined, fall back to normal setting
- if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
- this.value = val;
- }
- });
- }
-});
-
-jQuery.extend({
- valHooks: {
- option: {
- get: function( elem ) {
- var val = jQuery.find.attr( elem, "value" );
- return val != null ?
- val :
- // Support: IE10-11+
- // option.text throws exceptions (#14686, #14858)
- jQuery.trim( jQuery.text( elem ) );
- }
- },
- select: {
- get: function( elem ) {
- var value, option,
- options = elem.options,
- index = elem.selectedIndex,
- one = elem.type === "select-one" || index < 0,
- values = one ? null : [],
- max = one ? index + 1 : options.length,
- i = index < 0 ?
- max :
- one ? index : 0;
-
- // Loop through all the selected options
- for ( ; i < max; i++ ) {
- option = options[ i ];
-
- // IE6-9 doesn't update selected after form reset (#2551)
- if ( ( option.selected || i === index ) &&
- // Don't return options that are disabled or in a disabled optgroup
- ( support.optDisabled ? !option.disabled : option.getAttribute( "disabled" ) === null ) &&
- ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
-
- // Get the specific value for the option
- value = jQuery( option ).val();
-
- // We don't need an array for one selects
- if ( one ) {
- return value;
- }
-
- // Multi-Selects return an array
- values.push( value );
- }
- }
-
- return values;
- },
-
- set: function( elem, value ) {
- var optionSet, option,
- options = elem.options,
- values = jQuery.makeArray( value ),
- i = options.length;
-
- while ( i-- ) {
- option = options[ i ];
- if ( (option.selected = jQuery.inArray( option.value, values ) >= 0) ) {
- optionSet = true;
- }
- }
-
- // Force browsers to behave consistently when non-matching value is set
- if ( !optionSet ) {
- elem.selectedIndex = -1;
- }
- return values;
- }
- }
- }
-});
-
-// Radios and checkboxes getter/setter
-jQuery.each([ "radio", "checkbox" ], function() {
- jQuery.valHooks[ this ] = {
- set: function( elem, value ) {
- if ( jQuery.isArray( value ) ) {
- return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
- }
- }
- };
- if ( !support.checkOn ) {
- jQuery.valHooks[ this ].get = function( elem ) {
- return elem.getAttribute("value") === null ? "on" : elem.value;
- };
- }
-});
-
-
-
-
-// Return jQuery for attributes-only inclusion
-
-
-jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
- "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
- "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {
-
- // Handle event binding
- jQuery.fn[ name ] = function( data, fn ) {
- return arguments.length > 0 ?
- this.on( name, null, data, fn ) :
- this.trigger( name );
- };
-});
-
-jQuery.fn.extend({
- hover: function( fnOver, fnOut ) {
- return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
- },
-
- bind: function( types, data, fn ) {
- return this.on( types, null, data, fn );
- },
- unbind: function( types, fn ) {
- return this.off( types, null, fn );
- },
-
- delegate: function( selector, types, data, fn ) {
- return this.on( types, selector, data, fn );
- },
- undelegate: function( selector, types, fn ) {
- // ( namespace ) or ( selector, types [, fn] )
- return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
- }
-});
-
-
-var nonce = jQuery.now();
-
-var rquery = (/\?/);
-
-
-
-// Support: Android 2.3
-// Workaround failure to string-cast null input
-jQuery.parseJSON = function( data ) {
- return JSON.parse( data + "" );
-};
-
-
-// Cross-browser xml parsing
-jQuery.parseXML = function( data ) {
- var xml, tmp;
- if ( !data || typeof data !== "string" ) {
- return null;
- }
-
- // Support: IE9
- try {
- tmp = new DOMParser();
- xml = tmp.parseFromString( data, "text/xml" );
- } catch ( e ) {
- xml = undefined;
- }
-
- if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
- jQuery.error( "Invalid XML: " + data );
- }
- return xml;
-};
-
-
-var
- rhash = /#.*$/,
- rts = /([?&])_=[^&]*/,
- rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
- // #7653, #8125, #8152: local protocol detection
- rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
- rnoContent = /^(?:GET|HEAD)$/,
- rprotocol = /^\/\//,
- rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
-
- /* Prefilters
- * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
- * 2) These are called:
- * - BEFORE asking for a transport
- * - AFTER param serialization (s.data is a string if s.processData is true)
- * 3) key is the dataType
- * 4) the catchall symbol "*" can be used
- * 5) execution will start with transport dataType and THEN continue down to "*" if needed
- */
- prefilters = {},
-
- /* Transports bindings
- * 1) key is the dataType
- * 2) the catchall symbol "*" can be used
- * 3) selection will start with transport dataType and THEN go to "*" if needed
- */
- transports = {},
-
- // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
- allTypes = "*/".concat( "*" ),
-
- // Document location
- ajaxLocation = window.location.href,
-
- // Segment location into parts
- ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
-
-// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
-function addToPrefiltersOrTransports( structure ) {
-
- // dataTypeExpression is optional and defaults to "*"
- return function( dataTypeExpression, func ) {
-
- if ( typeof dataTypeExpression !== "string" ) {
- func = dataTypeExpression;
- dataTypeExpression = "*";
- }
-
- var dataType,
- i = 0,
- dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
-
- if ( jQuery.isFunction( func ) ) {
- // For each dataType in the dataTypeExpression
- while ( (dataType = dataTypes[i++]) ) {
- // Prepend if requested
- if ( dataType[0] === "+" ) {
- dataType = dataType.slice( 1 ) || "*";
- (structure[ dataType ] = structure[ dataType ] || []).unshift( func );
-
- // Otherwise append
- } else {
- (structure[ dataType ] = structure[ dataType ] || []).push( func );
- }
- }
- }
- };
-}
-
-// Base inspection function for prefilters and transports
-function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
-
- var inspected = {},
- seekingTransport = ( structure === transports );
-
- function inspect( dataType ) {
- var selected;
- inspected[ dataType ] = true;
- jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
- var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
- if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
- options.dataTypes.unshift( dataTypeOrTransport );
- inspect( dataTypeOrTransport );
- return false;
- } else if ( seekingTransport ) {
- return !( selected = dataTypeOrTransport );
- }
- });
- return selected;
- }
-
- return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
-}
-
-// A special extend for ajax options
-// that takes "flat" options (not to be deep extended)
-// Fixes #9887
-function ajaxExtend( target, src ) {
- var key, deep,
- flatOptions = jQuery.ajaxSettings.flatOptions || {};
-
- for ( key in src ) {
- if ( src[ key ] !== undefined ) {
- ( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
- }
- }
- if ( deep ) {
- jQuery.extend( true, target, deep );
- }
-
- return target;
-}
-
-/* Handles responses to an ajax request:
- * - finds the right dataType (mediates between content-type and expected dataType)
- * - returns the corresponding response
- */
-function ajaxHandleResponses( s, jqXHR, responses ) {
-
- var ct, type, finalDataType, firstDataType,
- contents = s.contents,
- dataTypes = s.dataTypes;
-
- // Remove auto dataType and get content-type in the process
- while ( dataTypes[ 0 ] === "*" ) {
- dataTypes.shift();
- if ( ct === undefined ) {
- ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
- }
- }
-
- // Check if we're dealing with a known content-type
- if ( ct ) {
- for ( type in contents ) {
- if ( contents[ type ] && contents[ type ].test( ct ) ) {
- dataTypes.unshift( type );
- break;
- }
- }
- }
-
- // Check to see if we have a response for the expected dataType
- if ( dataTypes[ 0 ] in responses ) {
- finalDataType = dataTypes[ 0 ];
- } else {
- // Try convertible dataTypes
- for ( type in responses ) {
- if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
- finalDataType = type;
- break;
- }
- if ( !firstDataType ) {
- firstDataType = type;
- }
- }
- // Or just use first one
- finalDataType = finalDataType || firstDataType;
- }
-
- // If we found a dataType
- // We add the dataType to the list if needed
- // and return the corresponding response
- if ( finalDataType ) {
- if ( finalDataType !== dataTypes[ 0 ] ) {
- dataTypes.unshift( finalDataType );
- }
- return responses[ finalDataType ];
- }
-}
-
-/* Chain conversions given the request and the original response
- * Also sets the responseXXX fields on the jqXHR instance
- */
-function ajaxConvert( s, response, jqXHR, isSuccess ) {
- var conv2, current, conv, tmp, prev,
- converters = {},
- // Work with a copy of dataTypes in case we need to modify it for conversion
- dataTypes = s.dataTypes.slice();
-
- // Create converters map with lowercased keys
- if ( dataTypes[ 1 ] ) {
- for ( conv in s.converters ) {
- converters[ conv.toLowerCase() ] = s.converters[ conv ];
- }
- }
-
- current = dataTypes.shift();
-
- // Convert to each sequential dataType
- while ( current ) {
-
- if ( s.responseFields[ current ] ) {
- jqXHR[ s.responseFields[ current ] ] = response;
- }
-
- // Apply the dataFilter if provided
- if ( !prev && isSuccess && s.dataFilter ) {
- response = s.dataFilter( response, s.dataType );
- }
-
- prev = current;
- current = dataTypes.shift();
-
- if ( current ) {
-
- // There's only work to do if current dataType is non-auto
- if ( current === "*" ) {
-
- current = prev;
-
- // Convert response if prev dataType is non-auto and differs from current
- } else if ( prev !== "*" && prev !== current ) {
-
- // Seek a direct converter
- conv = converters[ prev + " " + current ] || converters[ "* " + current ];
-
- // If none found, seek a pair
- if ( !conv ) {
- for ( conv2 in converters ) {
-
- // If conv2 outputs current
- tmp = conv2.split( " " );
- if ( tmp[ 1 ] === current ) {
-
- // If prev can be converted to accepted input
- conv = converters[ prev + " " + tmp[ 0 ] ] ||
- converters[ "* " + tmp[ 0 ] ];
- if ( conv ) {
- // Condense equivalence converters
- if ( conv === true ) {
- conv = converters[ conv2 ];
-
- // Otherwise, insert the intermediate dataType
- } else if ( converters[ conv2 ] !== true ) {
- current = tmp[ 0 ];
- dataTypes.unshift( tmp[ 1 ] );
- }
- break;
- }
- }
- }
- }
-
- // Apply converter (if not an equivalence)
- if ( conv !== true ) {
-
- // Unless errors are allowed to bubble, catch and return them
- if ( conv && s[ "throws" ] ) {
- response = conv( response );
- } else {
- try {
- response = conv( response );
- } catch ( e ) {
- return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
- }
- }
- }
- }
- }
- }
-
- return { state: "success", data: response };
-}
-
-jQuery.extend({
-
- // Counter for holding the number of active queries
- active: 0,
-
- // Last-Modified header cache for next request
- lastModified: {},
- etag: {},
-
- ajaxSettings: {
- url: ajaxLocation,
- type: "GET",
- isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
- global: true,
- processData: true,
- async: true,
- contentType: "application/x-www-form-urlencoded; charset=UTF-8",
- /*
- timeout: 0,
- data: null,
- dataType: null,
- username: null,
- password: null,
- cache: null,
- throws: false,
- traditional: false,
- headers: {},
- */
-
- accepts: {
- "*": allTypes,
- text: "text/plain",
- html: "text/html",
- xml: "application/xml, text/xml",
- json: "application/json, text/javascript"
- },
-
- contents: {
- xml: /xml/,
- html: /html/,
- json: /json/
- },
-
- responseFields: {
- xml: "responseXML",
- text: "responseText",
- json: "responseJSON"
- },
-
- // Data converters
- // Keys separate source (or catchall "*") and destination types with a single space
- converters: {
-
- // Convert anything to text
- "* text": String,
-
- // Text to html (true = no transformation)
- "text html": true,
-
- // Evaluate text as a json expression
- "text json": jQuery.parseJSON,
-
- // Parse text as xml
- "text xml": jQuery.parseXML
- },
-
- // For options that shouldn't be deep extended:
- // you can add your own custom options here if
- // and when you create one that shouldn't be
- // deep extended (see ajaxExtend)
- flatOptions: {
- url: true,
- context: true
- }
- },
-
- // Creates a full fledged settings object into target
- // with both ajaxSettings and settings fields.
- // If target is omitted, writes into ajaxSettings.
- ajaxSetup: function( target, settings ) {
- return settings ?
-
- // Building a settings object
- ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
-
- // Extending ajaxSettings
- ajaxExtend( jQuery.ajaxSettings, target );
- },
-
- ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
- ajaxTransport: addToPrefiltersOrTransports( transports ),
-
- // Main method
- ajax: function( url, options ) {
-
- // If url is an object, simulate pre-1.5 signature
- if ( typeof url === "object" ) {
- options = url;
- url = undefined;
- }
-
- // Force options to be an object
- options = options || {};
-
- var transport,
- // URL without anti-cache param
- cacheURL,
- // Response headers
- responseHeadersString,
- responseHeaders,
- // timeout handle
- timeoutTimer,
- // Cross-domain detection vars
- parts,
- // To know if global events are to be dispatched
- fireGlobals,
- // Loop variable
- i,
- // Create the final options object
- s = jQuery.ajaxSetup( {}, options ),
- // Callbacks context
- callbackContext = s.context || s,
- // Context for global events is callbackContext if it is a DOM node or jQuery collection
- globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?
- jQuery( callbackContext ) :
- jQuery.event,
- // Deferreds
- deferred = jQuery.Deferred(),
- completeDeferred = jQuery.Callbacks("once memory"),
- // Status-dependent callbacks
- statusCode = s.statusCode || {},
- // Headers (they are sent all at once)
- requestHeaders = {},
- requestHeadersNames = {},
- // The jqXHR state
- state = 0,
- // Default abort message
- strAbort = "canceled",
- // Fake xhr
- jqXHR = {
- readyState: 0,
-
- // Builds headers hashtable if needed
- getResponseHeader: function( key ) {
- var match;
- if ( state === 2 ) {
- if ( !responseHeaders ) {
- responseHeaders = {};
- while ( (match = rheaders.exec( responseHeadersString )) ) {
- responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
- }
- }
- match = responseHeaders[ key.toLowerCase() ];
- }
- return match == null ? null : match;
- },
-
- // Raw string
- getAllResponseHeaders: function() {
- return state === 2 ? responseHeadersString : null;
- },
-
- // Caches the header
- setRequestHeader: function( name, value ) {
- var lname = name.toLowerCase();
- if ( !state ) {
- name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
- requestHeaders[ name ] = value;
- }
- return this;
- },
-
- // Overrides response content-type header
- overrideMimeType: function( type ) {
- if ( !state ) {
- s.mimeType = type;
- }
- return this;
- },
-
- // Status-dependent callbacks
- statusCode: function( map ) {
- var code;
- if ( map ) {
- if ( state < 2 ) {
- for ( code in map ) {
- // Lazy-add the new callback in a way that preserves old ones
- statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
- }
- } else {
- // Execute the appropriate callbacks
- jqXHR.always( map[ jqXHR.status ] );
- }
- }
- return this;
- },
-
- // Cancel the request
- abort: function( statusText ) {
- var finalText = statusText || strAbort;
- if ( transport ) {
- transport.abort( finalText );
- }
- done( 0, finalText );
- return this;
- }
- };
-
- // Attach deferreds
- deferred.promise( jqXHR ).complete = completeDeferred.add;
- jqXHR.success = jqXHR.done;
- jqXHR.error = jqXHR.fail;
-
- // Remove hash character (#7531: and string promotion)
- // Add protocol if not provided (prefilters might expect it)
- // Handle falsy url in the settings object (#10093: consistency with old signature)
- // We also use the url parameter if available
- s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" )
- .replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
-
- // Alias method option to type as per ticket #12004
- s.type = options.method || options.type || s.method || s.type;
-
- // Extract dataTypes list
- s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
-
- // A cross-domain request is in order when we have a protocol:host:port mismatch
- if ( s.crossDomain == null ) {
- parts = rurl.exec( s.url.toLowerCase() );
- s.crossDomain = !!( parts &&
- ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
- ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !==
- ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) )
- );
- }
-
- // Convert data if not already a string
- if ( s.data && s.processData && typeof s.data !== "string" ) {
- s.data = jQuery.param( s.data, s.traditional );
- }
-
- // Apply prefilters
- inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
-
- // If request was aborted inside a prefilter, stop there
- if ( state === 2 ) {
- return jqXHR;
- }
-
- // We can fire global events as of now if asked to
- // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
- fireGlobals = jQuery.event && s.global;
-
- // Watch for a new set of requests
- if ( fireGlobals && jQuery.active++ === 0 ) {
- jQuery.event.trigger("ajaxStart");
- }
-
- // Uppercase the type
- s.type = s.type.toUpperCase();
-
- // Determine if request has content
- s.hasContent = !rnoContent.test( s.type );
-
- // Save the URL in case we're toying with the If-Modified-Since
- // and/or If-None-Match header later on
- cacheURL = s.url;
-
- // More options handling for requests with no content
- if ( !s.hasContent ) {
-
- // If data is available, append data to url
- if ( s.data ) {
- cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
- // #9682: remove data so that it's not used in an eventual retry
- delete s.data;
- }
-
- // Add anti-cache in url if needed
- if ( s.cache === false ) {
- s.url = rts.test( cacheURL ) ?
-
- // If there is already a '_' parameter, set its value
- cacheURL.replace( rts, "$1_=" + nonce++ ) :
-
- // Otherwise add one to the end
- cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
- }
- }
-
- // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
- if ( s.ifModified ) {
- if ( jQuery.lastModified[ cacheURL ] ) {
- jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
- }
- if ( jQuery.etag[ cacheURL ] ) {
- jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
- }
- }
-
- // Set the correct header, if data is being sent
- if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
- jqXHR.setRequestHeader( "Content-Type", s.contentType );
- }
-
- // Set the Accepts header for the server, depending on the dataType
- jqXHR.setRequestHeader(
- "Accept",
- s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
- s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
- s.accepts[ "*" ]
- );
-
- // Check for headers option
- for ( i in s.headers ) {
- jqXHR.setRequestHeader( i, s.headers[ i ] );
- }
-
- // Allow custom headers/mimetypes and early abort
- if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
- // Abort if not done already and return
- return jqXHR.abort();
- }
-
- // Aborting is no longer a cancellation
- strAbort = "abort";
-
- // Install callbacks on deferreds
- for ( i in { success: 1, error: 1, complete: 1 } ) {
- jqXHR[ i ]( s[ i ] );
- }
-
- // Get transport
- transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
-
- // If no transport, we auto-abort
- if ( !transport ) {
- done( -1, "No Transport" );
- } else {
- jqXHR.readyState = 1;
-
- // Send global event
- if ( fireGlobals ) {
- globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
- }
- // Timeout
- if ( s.async && s.timeout > 0 ) {
- timeoutTimer = setTimeout(function() {
- jqXHR.abort("timeout");
- }, s.timeout );
- }
-
- try {
- state = 1;
- transport.send( requestHeaders, done );
- } catch ( e ) {
- // Propagate exception as error if not done
- if ( state < 2 ) {
- done( -1, e );
- // Simply rethrow otherwise
- } else {
- throw e;
- }
- }
- }
-
- // Callback for when everything is done
- function done( status, nativeStatusText, responses, headers ) {
- var isSuccess, success, error, response, modified,
- statusText = nativeStatusText;
-
- // Called once
- if ( state === 2 ) {
- return;
- }
-
- // State is "done" now
- state = 2;
-
- // Clear timeout if it exists
- if ( timeoutTimer ) {
- clearTimeout( timeoutTimer );
- }
-
- // Dereference transport for early garbage collection
- // (no matter how long the jqXHR object will be used)
- transport = undefined;
-
- // Cache response headers
- responseHeadersString = headers || "";
-
- // Set readyState
- jqXHR.readyState = status > 0 ? 4 : 0;
-
- // Determine if successful
- isSuccess = status >= 200 && status < 300 || status === 304;
-
- // Get response data
- if ( responses ) {
- response = ajaxHandleResponses( s, jqXHR, responses );
- }
-
- // Convert no matter what (that way responseXXX fields are always set)
- response = ajaxConvert( s, response, jqXHR, isSuccess );
-
- // If successful, handle type chaining
- if ( isSuccess ) {
-
- // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
- if ( s.ifModified ) {
- modified = jqXHR.getResponseHeader("Last-Modified");
- if ( modified ) {
- jQuery.lastModified[ cacheURL ] = modified;
- }
- modified = jqXHR.getResponseHeader("etag");
- if ( modified ) {
- jQuery.etag[ cacheURL ] = modified;
- }
- }
-
- // if no content
- if ( status === 204 || s.type === "HEAD" ) {
- statusText = "nocontent";
-
- // if not modified
- } else if ( status === 304 ) {
- statusText = "notmodified";
-
- // If we have data, let's convert it
- } else {
- statusText = response.state;
- success = response.data;
- error = response.error;
- isSuccess = !error;
- }
- } else {
- // Extract error from statusText and normalize for non-aborts
- error = statusText;
- if ( status || !statusText ) {
- statusText = "error";
- if ( status < 0 ) {
- status = 0;
- }
- }
- }
-
- // Set data for the fake xhr object
- jqXHR.status = status;
- jqXHR.statusText = ( nativeStatusText || statusText ) + "";
-
- // Success/Error
- if ( isSuccess ) {
- deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
- } else {
- deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
- }
-
- // Status-dependent callbacks
- jqXHR.statusCode( statusCode );
- statusCode = undefined;
-
- if ( fireGlobals ) {
- globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
- [ jqXHR, s, isSuccess ? success : error ] );
- }
-
- // Complete
- completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
-
- if ( fireGlobals ) {
- globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
- // Handle the global AJAX counter
- if ( !( --jQuery.active ) ) {
- jQuery.event.trigger("ajaxStop");
- }
- }
- }
-
- return jqXHR;
- },
-
- getJSON: function( url, data, callback ) {
- return jQuery.get( url, data, callback, "json" );
- },
-
- getScript: function( url, callback ) {
- return jQuery.get( url, undefined, callback, "script" );
- }
-});
-
-jQuery.each( [ "get", "post" ], function( i, method ) {
- jQuery[ method ] = function( url, data, callback, type ) {
- // Shift arguments if data argument was omitted
- if ( jQuery.isFunction( data ) ) {
- type = type || callback;
- callback = data;
- data = undefined;
- }
-
- return jQuery.ajax({
- url: url,
- type: method,
- dataType: type,
- data: data,
- success: callback
- });
- };
-});
-
-
-jQuery._evalUrl = function( url ) {
- return jQuery.ajax({
- url: url,
- type: "GET",
- dataType: "script",
- async: false,
- global: false,
- "throws": true
- });
-};
-
-
-jQuery.fn.extend({
- wrapAll: function( html ) {
- var wrap;
-
- if ( jQuery.isFunction( html ) ) {
- return this.each(function( i ) {
- jQuery( this ).wrapAll( html.call(this, i) );
- });
- }
-
- if ( this[ 0 ] ) {
-
- // The elements to wrap the target around
- wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
-
- if ( this[ 0 ].parentNode ) {
- wrap.insertBefore( this[ 0 ] );
- }
-
- wrap.map(function() {
- var elem = this;
-
- while ( elem.firstElementChild ) {
- elem = elem.firstElementChild;
- }
-
- return elem;
- }).append( this );
- }
-
- return this;
- },
-
- wrapInner: function( html ) {
- if ( jQuery.isFunction( html ) ) {
- return this.each(function( i ) {
- jQuery( this ).wrapInner( html.call(this, i) );
- });
- }
-
- return this.each(function() {
- var self = jQuery( this ),
- contents = self.contents();
-
- if ( contents.length ) {
- contents.wrapAll( html );
-
- } else {
- self.append( html );
- }
- });
- },
-
- wrap: function( html ) {
- var isFunction = jQuery.isFunction( html );
-
- return this.each(function( i ) {
- jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
- });
- },
-
- unwrap: function() {
- return this.parent().each(function() {
- if ( !jQuery.nodeName( this, "body" ) ) {
- jQuery( this ).replaceWith( this.childNodes );
- }
- }).end();
- }
-});
-
-
-jQuery.expr.filters.hidden = function( elem ) {
- // Support: Opera <= 12.12
- // Opera reports offsetWidths and offsetHeights less than zero on some elements
- return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
-};
-jQuery.expr.filters.visible = function( elem ) {
- return !jQuery.expr.filters.hidden( elem );
-};
-
-
-
-
-var r20 = /%20/g,
- rbracket = /\[\]$/,
- rCRLF = /\r?\n/g,
- rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
- rsubmittable = /^(?:input|select|textarea|keygen)/i;
-
-function buildParams( prefix, obj, traditional, add ) {
- var name;
-
- if ( jQuery.isArray( obj ) ) {
- // Serialize array item.
- jQuery.each( obj, function( i, v ) {
- if ( traditional || rbracket.test( prefix ) ) {
- // Treat each array item as a scalar.
- add( prefix, v );
-
- } else {
- // Item is non-scalar (array or object), encode its numeric index.
- buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
- }
- });
-
- } else if ( !traditional && jQuery.type( obj ) === "object" ) {
- // Serialize object item.
- for ( name in obj ) {
- buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
- }
-
- } else {
- // Serialize scalar item.
- add( prefix, obj );
- }
-}
-
-// Serialize an array of form elements or a set of
-// key/values into a query string
-jQuery.param = function( a, traditional ) {
- var prefix,
- s = [],
- add = function( key, value ) {
- // If value is a function, invoke it and return its value
- value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
- s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
- };
-
- // Set traditional to true for jQuery <= 1.3.2 behavior.
- if ( traditional === undefined ) {
- traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
- }
-
- // If an array was passed in, assume that it is an array of form elements.
- if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
- // Serialize the form elements
- jQuery.each( a, function() {
- add( this.name, this.value );
- });
-
- } else {
- // If traditional, encode the "old" way (the way 1.3.2 or older
- // did it), otherwise encode params recursively.
- for ( prefix in a ) {
- buildParams( prefix, a[ prefix ], traditional, add );
- }
- }
-
- // Return the resulting serialization
- return s.join( "&" ).replace( r20, "+" );
-};
-
-jQuery.fn.extend({
- serialize: function() {
- return jQuery.param( this.serializeArray() );
- },
- serializeArray: function() {
- return this.map(function() {
- // Can add propHook for "elements" to filter or add form elements
- var elements = jQuery.prop( this, "elements" );
- return elements ? jQuery.makeArray( elements ) : this;
- })
- .filter(function() {
- var type = this.type;
-
- // Use .is( ":disabled" ) so that fieldset[disabled] works
- return this.name && !jQuery( this ).is( ":disabled" ) &&
- rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
- ( this.checked || !rcheckableType.test( type ) );
- })
- .map(function( i, elem ) {
- var val = jQuery( this ).val();
-
- return val == null ?
- null :
- jQuery.isArray( val ) ?
- jQuery.map( val, function( val ) {
- return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
- }) :
- { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
- }).get();
- }
-});
-
-
-jQuery.ajaxSettings.xhr = function() {
- try {
- return new XMLHttpRequest();
- } catch( e ) {}
-};
-
-var xhrId = 0,
- xhrCallbacks = {},
- xhrSuccessStatus = {
- // file protocol always yields status code 0, assume 200
- 0: 200,
- // Support: IE9
- // #1450: sometimes IE returns 1223 when it should be 204
- 1223: 204
- },
- xhrSupported = jQuery.ajaxSettings.xhr();
-
-// Support: IE9
-// Open requests must be manually aborted on unload (#5280)
-// See https://support.microsoft.com/kb/2856746 for more info
-if ( window.attachEvent ) {
- window.attachEvent( "onunload", function() {
- for ( var key in xhrCallbacks ) {
- xhrCallbacks[ key ]();
- }
- });
-}
-
-support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
-support.ajax = xhrSupported = !!xhrSupported;
-
-jQuery.ajaxTransport(function( options ) {
- var callback;
-
- // Cross domain only allowed if supported through XMLHttpRequest
- if ( support.cors || xhrSupported && !options.crossDomain ) {
- return {
- send: function( headers, complete ) {
- var i,
- xhr = options.xhr(),
- id = ++xhrId;
-
- xhr.open( options.type, options.url, options.async, options.username, options.password );
-
- // Apply custom fields if provided
- if ( options.xhrFields ) {
- for ( i in options.xhrFields ) {
- xhr[ i ] = options.xhrFields[ i ];
- }
- }
-
- // Override mime type if needed
- if ( options.mimeType && xhr.overrideMimeType ) {
- xhr.overrideMimeType( options.mimeType );
- }
-
- // X-Requested-With header
- // For cross-domain requests, seeing as conditions for a preflight are
- // akin to a jigsaw puzzle, we simply never set it to be sure.
- // (it can always be set on a per-request basis or even using ajaxSetup)
- // For same-domain requests, won't change header if already provided.
- if ( !options.crossDomain && !headers["X-Requested-With"] ) {
- headers["X-Requested-With"] = "XMLHttpRequest";
- }
-
- // Set headers
- for ( i in headers ) {
- xhr.setRequestHeader( i, headers[ i ] );
- }
-
- // Callback
- callback = function( type ) {
- return function() {
- if ( callback ) {
- delete xhrCallbacks[ id ];
- callback = xhr.onload = xhr.onerror = null;
-
- if ( type === "abort" ) {
- xhr.abort();
- } else if ( type === "error" ) {
- complete(
- // file: protocol always yields status 0; see #8605, #14207
- xhr.status,
- xhr.statusText
- );
- } else {
- complete(
- xhrSuccessStatus[ xhr.status ] || xhr.status,
- xhr.statusText,
- // Support: IE9
- // Accessing binary-data responseText throws an exception
- // (#11426)
- typeof xhr.responseText === "string" ? {
- text: xhr.responseText
- } : undefined,
- xhr.getAllResponseHeaders()
- );
- }
- }
- };
- };
-
- // Listen to events
- xhr.onload = callback();
- xhr.onerror = callback("error");
-
- // Create the abort callback
- callback = xhrCallbacks[ id ] = callback("abort");
-
- try {
- // Do send the request (this may raise an exception)
- xhr.send( options.hasContent && options.data || null );
- } catch ( e ) {
- // #14683: Only rethrow if this hasn't been notified as an error yet
- if ( callback ) {
- throw e;
- }
- }
- },
-
- abort: function() {
- if ( callback ) {
- callback();
- }
- }
- };
- }
-});
-
-
-
-
-// Install script dataType
-jQuery.ajaxSetup({
- accepts: {
- script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
- },
- contents: {
- script: /(?:java|ecma)script/
- },
- converters: {
- "text script": function( text ) {
- jQuery.globalEval( text );
- return text;
- }
- }
-});
-
-// Handle cache's special case and crossDomain
-jQuery.ajaxPrefilter( "script", function( s ) {
- if ( s.cache === undefined ) {
- s.cache = false;
- }
- if ( s.crossDomain ) {
- s.type = "GET";
- }
-});
-
-// Bind script tag hack transport
-jQuery.ajaxTransport( "script", function( s ) {
- // This transport only deals with cross domain requests
- if ( s.crossDomain ) {
- var script, callback;
- return {
- send: function( _, complete ) {
- script = jQuery("<script>").prop({
- async: true,
- charset: s.scriptCharset,
- src: s.url
- }).on(
- "load error",
- callback = function( evt ) {
- script.remove();
- callback = null;
- if ( evt ) {
- complete( evt.type === "error" ? 404 : 200, evt.type );
- }
- }
- );
- document.head.appendChild( script[ 0 ] );
- },
- abort: function() {
- if ( callback ) {
- callback();
- }
- }
- };
- }
-});
-
-
-
-
-var oldCallbacks = [],
- rjsonp = /(=)\?(?=&|$)|\?\?/;
-
-// Default jsonp settings
-jQuery.ajaxSetup({
- jsonp: "callback",
- jsonpCallback: function() {
- var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
- this[ callback ] = true;
- return callback;
- }
-});
-
-// Detect, normalize options and install callbacks for jsonp requests
-jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
-
- var callbackName, overwritten, responseContainer,
- jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
- "url" :
- typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data"
- );
-
- // Handle iff the expected data type is "jsonp" or we have a parameter to set
- if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
-
- // Get callback name, remembering preexisting value associated with it
- callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
- s.jsonpCallback() :
- s.jsonpCallback;
-
- // Insert callback into url or form data
- if ( jsonProp ) {
- s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
- } else if ( s.jsonp !== false ) {
- s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
- }
-
- // Use data converter to retrieve json after script execution
- s.converters["script json"] = function() {
- if ( !responseContainer ) {
- jQuery.error( callbackName + " was not called" );
- }
- return responseContainer[ 0 ];
- };
-
- // force json dataType
- s.dataTypes[ 0 ] = "json";
-
- // Install callback
- overwritten = window[ callbackName ];
- window[ callbackName ] = function() {
- responseContainer = arguments;
- };
-
- // Clean-up function (fires after converters)
- jqXHR.always(function() {
- // Restore preexisting value
- window[ callbackName ] = overwritten;
-
- // Save back as free
- if ( s[ callbackName ] ) {
- // make sure that re-using the options doesn't screw things around
- s.jsonpCallback = originalSettings.jsonpCallback;
-
- // save the callback name for future use
- oldCallbacks.push( callbackName );
- }
-
- // Call if it was a function and we have a response
- if ( responseContainer && jQuery.isFunction( overwritten ) ) {
- overwritten( responseContainer[ 0 ] );
- }
-
- responseContainer = overwritten = undefined;
- });
-
- // Delegate to script
- return "script";
- }
-});
-
-
-
-
-// data: string of html
-// context (optional): If specified, the fragment will be created in this context, defaults to document
-// keepScripts (optional): If true, will include scripts passed in the html string
-jQuery.parseHTML = function( data, context, keepScripts ) {
- if ( !data || typeof data !== "string" ) {
- return null;
- }
- if ( typeof context === "boolean" ) {
- keepScripts = context;
- context = false;
- }
- context = context || document;
-
- var parsed = rsingleTag.exec( data ),
- scripts = !keepScripts && [];
-
- // Single tag
- if ( parsed ) {
- return [ context.createElement( parsed[1] ) ];
- }
-
- parsed = jQuery.buildFragment( [ data ], context, scripts );
-
- if ( scripts && scripts.length ) {
- jQuery( scripts ).remove();
- }
-
- return jQuery.merge( [], parsed.childNodes );
-};
-
-
-// Keep a copy of the old load method
-var _load = jQuery.fn.load;
-
-/**
- * Load a url into a page
- */
-jQuery.fn.load = function( url, params, callback ) {
- if ( typeof url !== "string" && _load ) {
- return _load.apply( this, arguments );
- }
-
- var selector, type, response,
- self = this,
- off = url.indexOf(" ");
-
- if ( off >= 0 ) {
- selector = jQuery.trim( url.slice( off ) );
- url = url.slice( 0, off );
- }
-
- // If it's a function
- if ( jQuery.isFunction( params ) ) {
-
- // We assume that it's the callback
- callback = params;
- params = undefined;
-
- // Otherwise, build a param string
- } else if ( params && typeof params === "object" ) {
- type = "POST";
- }
-
- // If we have elements to modify, make the request
- if ( self.length > 0 ) {
- jQuery.ajax({
- url: url,
-
- // if "type" variable is undefined, then "GET" method will be used
- type: type,
- dataType: "html",
- data: params
- }).done(function( responseText ) {
-
- // Save response for use in complete callback
- response = arguments;
-
- self.html( selector ?
-
- // If a selector was specified, locate the right elements in a dummy div
- // Exclude scripts to avoid IE 'Permission Denied' errors
- jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) :
-
- // Otherwise use the full result
- responseText );
-
- }).complete( callback && function( jqXHR, status ) {
- self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
- });
- }
-
- return this;
-};
-
-
-
-
-// Attach a bunch of functions for handling common AJAX events
-jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
- jQuery.fn[ type ] = function( fn ) {
- return this.on( type, fn );
- };
-});
-
-
-
-
-jQuery.expr.filters.animated = function( elem ) {
- return jQuery.grep(jQuery.timers, function( fn ) {
- return elem === fn.elem;
- }).length;
-};
-
-
-
-
-var docElem = window.document.documentElement;
-
-/**
- * Gets a window from an element
- */
-function getWindow( elem ) {
- return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;
-}
-
-jQuery.offset = {
- setOffset: function( elem, options, i ) {
- var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
- position = jQuery.css( elem, "position" ),
- curElem = jQuery( elem ),
- props = {};
-
- // Set position first, in-case top/left are set even on static elem
- if ( position === "static" ) {
- elem.style.position = "relative";
- }
-
- curOffset = curElem.offset();
- curCSSTop = jQuery.css( elem, "top" );
- curCSSLeft = jQuery.css( elem, "left" );
- calculatePosition = ( position === "absolute" || position === "fixed" ) &&
- ( curCSSTop + curCSSLeft ).indexOf("auto") > -1;
-
- // Need to be able to calculate position if either
- // top or left is auto and position is either absolute or fixed
- if ( calculatePosition ) {
- curPosition = curElem.position();
- curTop = curPosition.top;
- curLeft = curPosition.left;
-
- } else {
- curTop = parseFloat( curCSSTop ) || 0;
- curLeft = parseFloat( curCSSLeft ) || 0;
- }
-
- if ( jQuery.isFunction( options ) ) {
- options = options.call( elem, i, curOffset );
- }
-
- if ( options.top != null ) {
- props.top = ( options.top - curOffset.top ) + curTop;
- }
- if ( options.left != null ) {
- props.left = ( options.left - curOffset.left ) + curLeft;
- }
-
- if ( "using" in options ) {
- options.using.call( elem, props );
-
- } else {
- curElem.css( props );
- }
- }
-};
-
-jQuery.fn.extend({
- offset: function( options ) {
- if ( arguments.length ) {
- return options === undefined ?
- this :
- this.each(function( i ) {
- jQuery.offset.setOffset( this, options, i );
- });
- }
-
- var docElem, win,
- elem = this[ 0 ],
- box = { top: 0, left: 0 },
- doc = elem && elem.ownerDocument;
-
- if ( !doc ) {
- return;
- }
-
- docElem = doc.documentElement;
-
- // Make sure it's not a disconnected DOM node
- if ( !jQuery.contains( docElem, elem ) ) {
- return box;
- }
-
- // Support: BlackBerry 5, iOS 3 (original iPhone)
- // If we don't have gBCR, just use 0,0 rather than error
- if ( typeof elem.getBoundingClientRect !== strundefined ) {
- box = elem.getBoundingClientRect();
- }
- win = getWindow( doc );
- return {
- top: box.top + win.pageYOffset - docElem.clientTop,
- left: box.left + win.pageXOffset - docElem.clientLeft
- };
- },
-
- position: function() {
- if ( !this[ 0 ] ) {
- return;
- }
-
- var offsetParent, offset,
- elem = this[ 0 ],
- parentOffset = { top: 0, left: 0 };
-
- // Fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent
- if ( jQuery.css( elem, "position" ) === "fixed" ) {
- // Assume getBoundingClientRect is there when computed position is fixed
- offset = elem.getBoundingClientRect();
-
- } else {
- // Get *real* offsetParent
- offsetParent = this.offsetParent();
-
- // Get correct offsets
- offset = this.offset();
- if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
- parentOffset = offsetParent.offset();
- }
-
- // Add offsetParent borders
- parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
- parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
- }
-
- // Subtract parent offsets and element margins
- return {
- top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
- left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
- };
- },
-
- offsetParent: function() {
- return this.map(function() {
- var offsetParent = this.offsetParent || docElem;
-
- while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position" ) === "static" ) ) {
- offsetParent = offsetParent.offsetParent;
- }
-
- return offsetParent || docElem;
- });
- }
-});
-
-// Create scrollLeft and scrollTop methods
-jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
- var top = "pageYOffset" === prop;
-
- jQuery.fn[ method ] = function( val ) {
- return access( this, function( elem, method, val ) {
- var win = getWindow( elem );
-
- if ( val === undefined ) {
- return win ? win[ prop ] : elem[ method ];
- }
-
- if ( win ) {
- win.scrollTo(
- !top ? val : window.pageXOffset,
- top ? val : window.pageYOffset
- );
-
- } else {
- elem[ method ] = val;
- }
- }, method, val, arguments.length, null );
- };
-});
-
-// Support: Safari<7+, Chrome<37+
-// Add the top/left cssHooks using jQuery.fn.position
-// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
-// getComputedStyle returns percent when specified for top/left/bottom/right;
-// rather than make the css module depend on the offset module, just check for it here
-jQuery.each( [ "top", "left" ], function( i, prop ) {
- jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
- function( elem, computed ) {
- if ( computed ) {
- computed = curCSS( elem, prop );
- // If curCSS returns percentage, fallback to offset
- return rnumnonpx.test( computed ) ?
- jQuery( elem ).position()[ prop ] + "px" :
- computed;
- }
- }
- );
-});
-
-
-// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
-jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
- jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
- // Margin is only for outerHeight, outerWidth
- jQuery.fn[ funcName ] = function( margin, value ) {
- var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
- extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
-
- return access( this, function( elem, type, value ) {
- var doc;
-
- if ( jQuery.isWindow( elem ) ) {
- // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
- // isn't a whole lot we can do. See pull request at this URL for discussion:
- // https://github.com/jquery/jquery/pull/764
- return elem.document.documentElement[ "client" + name ];
- }
-
- // Get document width or height
- if ( elem.nodeType === 9 ) {
- doc = elem.documentElement;
-
- // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
- // whichever is greatest
- return Math.max(
- elem.body[ "scroll" + name ], doc[ "scroll" + name ],
- elem.body[ "offset" + name ], doc[ "offset" + name ],
- doc[ "client" + name ]
- );
- }
-
- return value === undefined ?
- // Get width or height on the element, requesting but not forcing parseFloat
- jQuery.css( elem, type, extra ) :
-
- // Set width or height on the element
- jQuery.style( elem, type, value, extra );
- }, type, chainable ? margin : undefined, chainable, null );
- };
- });
-});
-
-
-// The number of elements contained in the matched element set
-jQuery.fn.size = function() {
- return this.length;
-};
-
-jQuery.fn.andSelf = jQuery.fn.addBack;
-
-
-
-
-// Register as a named AMD module, since jQuery can be concatenated with other
-// files that may use define, but not via a proper concatenation script that
-// understands anonymous AMD modules. A named AMD is safest and most robust
-// way to register. Lowercase jquery is used because AMD module names are
-// derived from file names, and jQuery is normally delivered in a lowercase
-// file name. Do this after creating the global so that if an AMD module wants
-// to call noConflict to hide this version of jQuery, it will work.
-
-// Note that for maximum portability, libraries that are not jQuery should
-// declare themselves as anonymous modules, and avoid setting a global if an
-// AMD loader is present. jQuery is a special case. For more information, see
-// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
-
-if ( typeof define === "function" && define.amd ) {
- define( "jquery", [], function() {
- return jQuery;
- });
-}
-
-
-
-
-var
- // Map over jQuery in case of overwrite
- _jQuery = window.jQuery,
-
- // Map over the $ in case of overwrite
- _$ = window.$;
-
-jQuery.noConflict = function( deep ) {
- if ( window.$ === jQuery ) {
- window.$ = _$;
- }
-
- if ( deep && window.jQuery === jQuery ) {
- window.jQuery = _jQuery;
- }
-
- return jQuery;
-};
-
-// Expose jQuery and $ identifiers, even in AMD
-// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
-// and CommonJS for browser emulators (#13566)
-if ( typeof noGlobal === strundefined ) {
- window.jQuery = window.$ = jQuery;
-}
-
-
-
-
-return jQuery;
-
-}));
+++ /dev/null
-// identica badge -- updated to work with the native API, 12-4-2008
-// Modified to point to Identi.ca, 2-20-2009 by Zach
-// Modified for XHTML, 27-9-2009 by Will Daniels
-// (see http://willdaniels.co.uk/blog/tech-stuff/26-identica-badge-xhtml)
-// copyright Kent Brewster 2008
-// see http://kentbrewster.com/identica-badge for info
-
-function createHTMLElement(tagName) {
- if(document.createElementNS)
- var elem = document.createElementNS("http://www.w3.org/1999/xhtml", tagName);
- else
- var elem = document.createElement(tagName);
-
- return elem;
-}
-
-function isNumeric(value) {
- if (value == null || !value.toString().match(/^[-]?\d*\.?\d*$/)) return false;
- return true;
-}
-
-function markupPost(raw, server) {
- var start = 0; var p = createHTMLElement('p');
-
- raw.replace(/((http|https):\/\/|\!|@|#)(([\w_]+)?[^\s]*)/g,
- function(sub, type, scheme, url, word, offset, full)
- {
- if(!scheme && !word) return; // just punctuation
- var label = ''; var href = '';
- var pretext = full.substr(start, offset - start);
-
- moniker = word.split('_'); // behaviour with underscores differs
- if(type == '#') moniker = moniker.join('');
- else word = moniker = moniker[0].toLowerCase();
-
- switch(type) {
- case 'http://': case 'https://': // html links
- href = scheme + '://' + url; break;
- case '@': // link users
- href = 'http://' + server + '/' + moniker; break;
- case '!': // link groups
- href = 'http://' + server + '/group/' + moniker; break;
- case '#': // link tags
- href = 'http://' + server + '/tag/' + moniker; break;
- default: // bad call (just reset position for text)
- start = offset;
- }
- if(scheme) { // only urls will have scheme
- label = sub; start = offset + sub.length;
- } else {
- label = word; pretext += type;
- start = offset + word.length + type.length;
- }
- p.appendChild(document.createTextNode(pretext));
-
- var link = createHTMLElement('a');
- link.appendChild(document.createTextNode(label));
- link.href = href; link.target = '_statusnet';
- p.appendChild(link);
- });
-
- if(start != raw.length) {
- endtext = raw.substr(start);
- p.appendChild(document.createTextNode(endtext));
- }
- return p;
-}
-(function() {
- var trueName = '';
- for (var i = 0; i < 16; i++) {
- trueName += String.fromCharCode(Math.floor(Math.random() * 26) + 97);
- }
- window[trueName] = {};
- var $ = window[trueName];
- $.f = function() {
- return {
- runFunction : [],
- init : function(target) {
- var theScripts = document.getElementsByTagName('script');
- for (var i = 0; i < theScripts.length; i++) {
- if (theScripts[i].src.match(target)) {
- $.a = {};
- if (theScripts[i].innerHTML) {
- $.a = $.f.parseJson(theScripts[i].innerHTML);
- }
- if ($.a.err) {
- alert('bad json!');
- }
- $.f.loadDefaults();
- $.f.buildStructure();
- $.f.buildPresentation();
- theScripts[i].parentNode.insertBefore($.s, theScripts[i]);
- theScripts[i].parentNode.removeChild(theScripts[i]);
- break;
- }
- }
- },
- parseJson : function(json) {
- this.parseJson.data = json;
- if ( typeof json !== 'string') {
- return {"err":"trying to parse a non-string JSON object"};
- }
- try {
- var f = Function(['var document,top,self,window,parent,Number,Date,Object,Function,',
- 'Array,String,Math,RegExp,Image,ActiveXObject;',
- 'return (' , json.replace(/<\!--.+-->/gim,'').replace(/\bfunction\b/g,'function­') , ');'].join(''));
- return f();
- } catch (e) {
- return {"err":"trouble parsing JSON object"};
- }
- },
- loadDefaults : function() {
- $.d = {
- "user":"7000",
- "headerText" : "",
- "height" : 350,
- "width" : 300,
- "background" : "#193441",
- "border" : "1px solid black",
- "userFontSize" : "inherit",
- "userColor" : "inherit",
- "headerBackground" : "transparent",
- "headerColor" : "white",
- "evenBackground" : "#fff",
- "oddBackground" : "#eee",
- "thumbnailBorder" : "1px solid black",
- "thumbnailSize" : 24,
- "padding" : 3,
- "server" : "identi.ca"
- };
- for (var k in $.d) { if ($.a[k] === undefined) { $.a[k] = $.d[k]; } }
- // fix inout units
- if(isNumeric($.a.width)) {
- $.a.innerWidth = ($.a.width - 22) + 'px'; $.a.width += 'px';
- } else {
- $.a.innerWidth = 'auto';
- }
- if(isNumeric($.a.height)) $.a.height += 'px';
- },
- buildPresentation : function () {
- var setZoom = ''; if(navigator.appName == 'Microsoft Internet Explorer') setZoom = 'zoom:1;';
- var ns = createHTMLElement('style');
- document.getElementsByTagName('head')[0].appendChild(ns);
- if (!window.createPopup) {
- ns.appendChild(document.createTextNode(''));
- ns.setAttribute("type", "text/css");
- }
- var s = document.styleSheets[document.styleSheets.length - 1];
- var rules = {
- "" : "{margin:0px;padding:0px;width:" + $.a.width + ";background:" + $.a.background + ";border:" + $.a.border + ";font:87%/1.2em tahoma, veranda, arial, helvetica, clean, sans-serif;}",
- "a" : "{cursor:pointer;text-decoration:none;}",
- "a:hover" : "{text-decoration:underline;}",
- ".cite" : "{" + setZoom + "font-weight:bold;margin:0px 0px 0px 4px;padding:0px;display:block;font-style:normal;line-height:" + ($.a.thumbnailSize/2) + "px;vertical-align:middle;}",
- ".cite a" : "{color:#C15D42;}",
- ".date":"{margin:0px 0px 0px 4px;padding:0px;display:block;font-style:normal;line-height:" + ($.a.thumbnailSize/2) + "px;vertical-align:middle;}",
- ".date:after" : "{clear:both;content:\".\"; display:block;height:0px;visibility:hidden;}",
- ".date a" : "{color:#676;}",
- "h3" : "{margin:0px;padding:" + $.a.padding + "px;font-weight:bold;background:" + $.a.headerBackground + " url('http://" + $.a.server + "/favicon.ico') " + $.a.padding + "px 50% no-repeat;padding-left:" + ($.a.padding + 20) + "px;}",
- "h3.loading" : "{background-image:url('http://l.yimg.com/us.yimg.com/i/us/my/mw/anim_loading_sm.gif');}",
- "h3 a" : "{font-size:92%; color:" + $.a.headerColor + ";}",
- "h4" : "{font-weight:normal;background:" + $.a.headerBackground + ";text-align:right;margin:0px;padding:" + $.a.padding + "px;}",
- "h4 a" : "{font-size:92%; color:" + $.a.headerColor + ";}",
- "img":"{float:left;height:" + $.a.thumbnailSize + "px;width:" + $.a.thumbnailSize + "px;border:" + $.a.thumbnailBorder + ";margin-right:" + $.a.padding + "px;}",
- "p" : "{margin:2px 0px 0px 0px;padding:0px;width:" + $.a.innerWidth + ";overflow:hidden;line-height:normal;}",
- "p a" : "{color:#C15D42;}",
- "ul":"{margin:0px; padding:0px; height:" + $.a.height + ";width:" + $.a.innerWidth + ";overflow:auto;}",
- "ul li":"{background:" + $.a.evenBackground + ";margin:0px;padding:" + $.a.padding + "px;list-style:none;width:auto;overflow:hidden;border-bottom:1px solid #D8E2D7;}",
- "ul li:hover":"{background:#f3f8ea;}"
- };
- var ieRules = "";
- // brute-force each and every style rule here to !important
- // sometimes you have to take off and nuke the site from orbit; it's the only way to be sure
- for (var z in rules) {
- if(z.charAt(0)=='.') var selector = '.' + trueName + '-' + z.substring(1);
- else var selector = '.' + trueName + ' ' + z;
- var rule = rules[z];
- if (typeof rule === 'string') {
- var important = rule.replace(/;/gi, '!important;');
- if (!window.createPopup) {
- var theRule = document.createTextNode(selector + important + '\n');
- ns.appendChild(theRule);
- } else {
- ieRules += selector + important;
- }
- }
- }
- if (window.createPopup) { s.cssText = ieRules; }
- },
- buildStructure : function() {
- $.s = createHTMLElement('div');
- $.s.className = trueName;
- $.s.h = createHTMLElement('h3');
- $.s.h.a = createHTMLElement('a');
- $.s.h.a.target = '_statusnet';
- $.s.h.appendChild($.s.h.a);
- $.s.appendChild($.s.h);
- $.s.r = createHTMLElement('ul');
- $.s.appendChild($.s.r);
- $.s.f = createHTMLElement('h4');
- var a = createHTMLElement('a');
- a.innerHTML = 'get this';
- a.target = '_blank';
- a.href = 'http://identi.ca/doc/badge';
- $.s.f.appendChild(a);
- $.s.appendChild($.s.f);
- $.f.getUser();
- },
- getUser : function() {
- if (!$.f.runFunction) { $.f.runFunction = []; }
- var n = $.f.runFunction.length;
- var id = trueName + '.f.runFunction[' + n + ']';
- $.f.runFunction[n] = function(r) {
- delete($.f.runFunction[n]);
- var a = createHTMLElement('a');
- a.rel = $.a.user;
- a.rev = r.name;
- a.id = r.screen_name;
- $.f.removeScript(id);
- $.f.changeUserTo(a);
- };
- var url = 'http://' + $.a.server + '/api/users/show/' + $.a.user + '.json?callback=' + id;
- $.f.runScript(url, id);
- },
- changeUserTo : function(el) {
- $.a.user = el.rel;
- $.s.h.a.appendChild(document.createTextNode(el.rev + $.a.headerText));
- $.s.h.a.href = 'http://' + $.a.server + '/' + el.id;
- $.f.runSearch();
- },
- runSearch : function() {
- $.s.h.className = 'loading';
- $.s.r.innerHTML = '';
- if (!$.f.runFunction) { $.f.runFunction = []; }
- var n = $.f.runFunction.length;
- var id = trueName + '.f.runFunction[' + n + ']';
- $.f.runFunction[n] = function(r) {
- delete($.f.runFunction[n]);
- $.f.removeScript(id);
- $.f.renderResult(r);
- };
- var url = 'http://' + $.a.server + '/api/statuses/friends/' + $.a.user + '.json?callback=' + id;
- $.f.runScript(url, id);
- },
- renderResult: function(r) {
- for (var i = 0; i < r.length; i++) {
- if (!r[i].status) {
- r.splice(i, 1);
- } else {
- r[i].status_id = parseInt(r[i].status.id);
- }
- }
- r = $.f.sortArray(r, "status_id", true);
- $.s.h.className = ''; // for IE6
- $.s.h.removeAttribute('class');
- for (var i = 0; i < r.length; i++) {
- var li = createHTMLElement('li');
- var icon = createHTMLElement('a');
- if (r[i] && r[i].url) {
- icon.href = r[i].url;
- icon.target = '_statusnet';
- icon.title = 'Visit ' + r[i].screen_name + ' at ' + r[i].url;
- } else {
- icon.href = 'http://' + $.a.server + '/' + r[i].screen_name;
- icon.target = '_statusnet';
- icon.title = 'Visit ' + r[i].screen_name + ' at http://' + $.a.server + '/' + r[i].screen_name;
- }
-
- var img = createHTMLElement('img');
- img.alt = 'profile image for ' + r[i].screen_name;
- img.src = r[i].profile_image_url;
- icon.appendChild(img);
- li.appendChild(icon);
-
- var user = createHTMLElement('span');
- user.className = trueName + '-cite';
- var a = createHTMLElement('a');
- a.rel = r[i].id;
- a.rev = r[i].name;
- a.id = r[i].screen_name;
- a.innerHTML = r[i].name;
- a.href = 'http://' + $.a.server + '/' + r[i].screen_name;
- a.onclick = function() {
- $.f.changeUserTo(this);
- return false;
- };
- user.appendChild(a);
- li.appendChild(user);
- var updated = createHTMLElement('span');
- updated.className = trueName + '-date';
- if (r[i].status && r[i].status.created_at) {
- var date_link = createHTMLElement('a');
- date_link.innerHTML = r[i].status.created_at.split(/\+/)[0];
- date_link.href = 'http://' + $.a.server + '/notice/' + r[i].status.id;
- date_link.target = '_statusnet';
- updated.appendChild(date_link);
- if (r[i].status.in_reply_to_status_id) {
- updated.appendChild(document.createTextNode(' in reply to '));
- var in_reply_to = createHTMLElement('a');
- in_reply_to.innerHTML = r[i].status.in_reply_to_status_id;
- in_reply_to.href = 'http://' + $.a.server + '/notice/' + r[i].status.in_reply_to_status_id;
- in_reply_to.target = '_statusnet';
- updated.appendChild(in_reply_to);
- }
- } else {
- updated.innerHTML = 'has not updated yet';
- }
- li.appendChild(updated);
- var p = createHTMLElement('p');
- if (r[i].status && r[i].status.text) {
- var raw = r[i].status.text;
- p = markupPost(raw, $.a.server);
- }
- li.appendChild(p);
- var a = p.getElementsByTagName('a');
- for (var j = 0; j < a.length; j++) {
- if (a[j].className == 'changeUserTo') {
- a[j].removeAttribute('class');
- a[j].href = 'http://' + $.a.server + '/' + a[j].innerHTML;
- a[j].rel = a[j].innerHTML;
- a[j].onclick = function() {
- $.f.changeUserTo(this);
- return false;
- }
- }
- }
- $.s.r.appendChild(li);
- }
- },
- sortArray : function(r, k, x) {
- if (window.createPopup) {
- return r;
- }
- function s(a, b) {
- if (x === true) {
- return b[k] - a[k];
- } else {
- return a[k] - b[k];
- }
- }
- r = r.sort(s);
- return r;
- },
- runScript : function(url, id) {
- var s = createHTMLElement('script');
- s.id = id;
- s.type ='text/javascript';
- s.src = url;
- document.getElementsByTagName('body')[0].appendChild(s);
- },
- removeScript : function(id) {
- if (document.getElementById(id)) {
- var s = document.getElementById(id);
- s.parentNode.removeChild(s);
- }
- }
- };
- }();
-// var thisScript = /^https?:\/\/[^\/]*r8ar.com\/identica-badge.js$/;
- var thisScript = /identica-badge.js$/;
- if(typeof window.addEventListener !== 'undefined') {
- window.addEventListener('load', function() { $.f.init(thisScript); }, false);
- } else if(typeof window.attachEvent !== 'undefined') {
- window.attachEvent('onload', function() { $.f.init(thisScript); });
- }
-} )();
-
-
+++ /dev/null
-$(function() {
- $.ajax({url:'check-fancy',
- type:'GET',
- success:function(data, textStatus) {
- $('#fancy-enable').prop('checked', true);
- $('#fancy-disable').prop('checked', false);
- $('#fancy-form_guide').text(data);
- },
- error:function(XMLHttpRequest, textStatus, errorThrown) {
- $('#fancy-enable').prop('checked', false);
- $('#fancy-disable').prop('checked', true);
- $('#fancy-enable').prop('disabled', true);
- $('#fancy-disable').prop('disabled', true);
- $('#fancy-form_guide').text("Fancy URL support detection failed, disabling this option. Make sure you renamed htaccess.sample to .htaccess.");
- }
- });
-});
-
+++ /dev/null
-/** Init for Jcrop library and page setup
- *
- * @package StatusNet
- * @author Sarven Capadisli <csarven@status.net>
- * @author Mikael Nordfeldth <mmn@hethane.se>
- * @copyright 2009 StatusNet, Inc.
- * @copyright 2013 Free Software Foundation, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-
-$(function(){
- var x = ($('#avatar_crop_x').val()) ? $('#avatar_crop_x').val() : 0;
- var y = ($('#avatar_crop_y').val()) ? $('#avatar_crop_y').val() : 0;
- var w = ($('#avatar_crop_w').val()) ? $('#avatar_crop_w').val() : $("#avatar_original img").attr("width");
- var h = ($('#avatar_crop_h').val()) ? $('#avatar_crop_h').val() : $("#avatar_original img").attr("height");
-
- $("#avatar_original img").Jcrop({
- onChange: showPreview,
- setSelect: [ x, y, w, h ],
- onSelect: updateCoords,
- aspectRatio: 1,
- boxWidth: 480,
- boxHeight: 480,
- bgColor: '#000',
- bgOpacity: .4
- });
-});
-
-function showPreview(coords) {
- var rx = 96 / coords.w;
- var ry = 96 / coords.h;
-
- var img_width = $("#avatar_original img").attr("width");
- var img_height = $("#avatar_original img").attr("height");
-
- $('#avatar_preview img').css({
- width: Math.round(rx *img_width) + 'px',
- height: Math.round(ry * img_height) + 'px',
- marginLeft: '-' + Math.round(rx * coords.x) + 'px',
- marginTop: '-' + Math.round(ry * coords.y) + 'px'
- });
-};
-
-function updateCoords(c) {
- $('#avatar_crop_x').val(c.x);
- $('#avatar_crop_y').val(c.y);
- $('#avatar_crop_w').val(c.w);
- $('#avatar_crop_h').val(c.h);
-};
+++ /dev/null
-/*
- * StatusNet - a distributed open-source microblogging tool
- * Copyright (C) 2008, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category UI interaction
- * @package StatusNet
- * @author Sarven Capadisli <csarven@status.net>
- * @author Evan Prodromou <evan@status.net>
- * @author Brion Vibber <brion@status.net>
- * @copyright 2009,2010 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-
-var SN = { // StatusNet
- C: { // Config
- I: { // Init
- CounterBlackout: false,
- MaxLength: 140,
- PatternUsername: /^[0-9a-zA-Z\-_.]*$/,
- HTTP20x30x: [200, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, 305, 306, 307],
- },
-
- /**
- * @fixme are these worth the trouble? They seem to mostly just duplicate
- * themselves while slightly obscuring the actual selector, so it's hard
- * to pop over to the HTML and find something.
- *
- * In theory, minification could reduce them to shorter variable names,
- * but at present that doesn't happen with yui-compressor.
- */
- S: { // Selector
- Disabled: 'disabled',
- Warning: 'warning',
- Error: 'error',
- Success: 'success',
- Processing: 'processing',
- CommandResult: 'command_result',
- FormNotice: 'form_notice',
- NoticeDataGeo: 'notice_data-geo',
- NoticeDataGeoCookie: 'NoticeDataGeo',
- NoticeDataGeoSelected: 'notice_data-geo_selected',
- }
- },
-
- V: { // Variables
- // These get set on runtime via inline scripting, so don't put anything here.
- },
-
- /**
- * list of callbacks, categorized into _callbacks['event_name'] = [ callback_function_1, callback_function_2 ]
- *
- * @access private
- */
- _callbacks: {},
-
- /**
- * Map of localized message strings exported to script from the PHP
- * side via Action::getScriptMessages().
- *
- * Retrieve them via SN.msg(); this array is an implementation detail.
- *
- * @access private
- */
- messages: {},
-
- /**
- * Grabs a localized string that's been previously exported to us
- * from server-side code via Action::getScriptMessages().
- *
- * @example alert(SN.msg('coolplugin-failed'));
- *
- * @param {String} key: string key name to pull from message index
- * @return matching localized message string
- */
- msg: function (key) {
- if (SN.messages[key] === undefined) {
- return '[' + key + ']';
- }
- return SN.messages[key];
- },
-
- U: { // Utils
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Sets up event handlers on the new notice form.
- *
- * @param {jQuery} form: jQuery object whose first matching element is the form
- * @access private
- */
- FormNoticeEnhancements: function (form) {
- if ($.data(form[0], 'ElementData') === undefined) {
- var MaxLength = form.find('.count').text();
- if (MaxLength === undefined) {
- MaxLength = SN.C.I.MaxLength;
- }
- $.data(form[0], 'ElementData', {MaxLength: MaxLength});
-
- SN.U.Counter(form);
-
- var NDT = form.find('.notice_data-text:first');
-
- NDT.on('keyup', function (e) {
- SN.U.Counter(form);
- });
-
- var delayedUpdate = function (e) {
- // Cut and paste events fire *before* the operation,
- // so we need to trigger an update in a little bit.
- // This would be so much easier if the 'change' event
- // actually fired every time the value changed. :P
- window.setTimeout(function () {
- SN.U.Counter(form);
- }, 50);
- };
- // Note there's still no event for mouse-triggered 'delete'.
- NDT.on('cut', delayedUpdate)
- .on('paste', delayedUpdate);
- } else {
- form.find('.count').text($.data(form[0], 'ElementData').MaxLength);
- }
- },
-
- /**
- * To be called from event handlers on the notice import form.
- * Triggers an update of the remaining-characters counter.
- *
- * Additional counter updates will be suppressed during the
- * next half-second to avoid flooding the layout engine with
- * updates, followed by another automatic check.
- *
- * The maximum length is pulled from data established by
- * FormNoticeEnhancements.
- *
- * @param {jQuery} form: jQuery object whose first element is the notice posting form
- * @access private
- */
- Counter: function (form) {
- SN.C.I.FormNoticeCurrent = form;
-
- var MaxLength = $.data(form[0], 'ElementData').MaxLength;
-
- if (MaxLength <= 0) {
- return;
- }
-
- var remaining = MaxLength - SN.U.CharacterCount(form);
- var counter = form.find('.count');
-
- if (remaining.toString() != counter.text()) {
- if (!SN.C.I.CounterBlackout || remaining === 0) {
- if (counter.text() != String(remaining)) {
- counter.text(remaining);
- }
- if (remaining < 0) {
- form.addClass(SN.C.S.Warning);
- } else {
- form.removeClass(SN.C.S.Warning);
- }
- // Skip updates for the next 500ms.
- // On slower hardware, updating on every keypress is unpleasant.
- if (!SN.C.I.CounterBlackout) {
- SN.C.I.CounterBlackout = true;
- SN.C.I.FormNoticeCurrent = form;
- window.setTimeout("SN.U.ClearCounterBlackout(SN.C.I.FormNoticeCurrent);", 500);
- }
- }
- }
- },
-
- /**
- * Pull the count of characters in the current edit field.
- * Plugins replacing the edit control may need to override this.
- *
- * @param {jQuery} form: jQuery object whose first element is the notice posting form
- * @return number of chars
- */
- CharacterCount: function (form) {
- return form.find('.notice_data-text:first').val().length;
- },
-
- /**
- * Called internally after the counter update blackout period expires;
- * runs another update to make sure we didn't miss anything.
- *
- * @param {jQuery} form: jQuery object whose first element is the notice posting form
- * @access private
- */
- ClearCounterBlackout: function (form) {
- // Allow keyup events to poke the counter again
- SN.C.I.CounterBlackout = false;
- // Check if the string changed since we last looked
- SN.U.Counter(form);
- },
-
- /**
- * Helper function to rewrite default HTTP form action URLs to HTTPS
- * so we can actually fetch them when on an SSL page in ssl=sometimes
- * mode.
- *
- * It would be better to output URLs that didn't hardcode protocol
- * and hostname in the first place...
- *
- * @param {String} url
- * @return string
- */
- RewriteAjaxAction: function (url) {
- // Quick hack: rewrite AJAX submits to HTTPS if they'd fail otherwise.
- if (document.location.protocol === 'https:' && url.substr(0, 5) === 'http:') {
- return url.replace(/^http:\/\/[^:\/]+/, 'https://' + document.location.host);
- }
- return url;
- },
-
- FormNoticeUniqueID: function (form) {
- var oldId = form.attr('id');
- var newId = 'form_notice_' + Math.floor(Math.random()*999999999);
- var attrs = ['name', 'for', 'id'];
- for (var key in attrs) {
- if (form.attr(attrs[key]) === undefined) {
- continue;
- }
- form.attr(attrs[key], form.attr(attrs[key]).replace(oldId, newId));
- }
- for (var key in attrs) {
- form.find("[" + attrs[key] + "*='" + oldId + "']").each(function () {
- if ($(this).attr(attrs[key]) === undefined) {
- return; // since we're inside the each(function () { ... });
- }
- var newAttr = $(this).attr(attrs[key]).replace(oldId, newId);
- $(this).attr(attrs[key], newAttr);
- });
- }
- },
-
- /**
- * Grabs form data and submits it asynchronously, with 'ajax=1'
- * parameter added to the rest.
- *
- * If a successful response includes another form, that form
- * will be extracted and copied in, replacing the original form.
- * If there's no form, the first paragraph will be used.
- *
- * This will automatically be applied on the 'submit' event for
- * any form with the 'ajax' class.
- *
- * @fixme can sometimes explode confusingly if returnd data is bogus
- * @fixme error handling is pretty vague
- * @fixme can't submit file uploads
- *
- * @param {jQuery} form: jQuery object whose first element is a form
- * @param function onSuccess: something extra to do on success
- *
- * @access public
- */
- FormXHR: function (form, onSuccess) {
- $.ajax({
- type: 'POST',
- dataType: 'xml',
- url: SN.U.RewriteAjaxAction(form.attr('action')),
- data: form.serialize() + '&ajax=1',
- beforeSend: function (xhr) {
- form
- .addClass(SN.C.S.Processing)
- .find('.submit')
- .addClass(SN.C.S.Disabled)
- .prop(SN.C.S.Disabled, true);
- },
- error: function (xhr, textStatus, errorThrown) {
- // If the server end reported an error from StatusNet,
- // find it -- otherwise we'll see what was reported
- // from the browser.
- var errorReported = null;
- if (xhr.responseXML) {
- errorReported = $('#error', xhr.responseXML).text();
- }
- window.alert(errorReported || errorThrown || textStatus);
-
- // Restore the form to original state.
- // Hopefully. :D
- form
- .removeClass(SN.C.S.Processing)
- .find('.submit')
- .removeClass(SN.C.S.Disabled)
- .prop(SN.C.S.Disabled, false);
- },
- success: function (data, textStatus) {
- if ($('form', data)[0] !== undefined) {
- var form_new = document._importNode($('form', data)[0], true);
- form.replaceWith(form_new);
- if (onSuccess) {
- onSuccess();
- }
- } else if ($('p', data)[0] !== undefined) {
- form.replaceWith(document._importNode($('p', data)[0], true));
- if (onSuccess) {
- onSuccess();
- }
- } else {
- window.alert('Unknown error.');
- }
- }
- });
- },
-
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Sets up event handlers for special-cased async submission of the
- * notice-posting form, including some pre-post validation.
- *
- * Unlike FormXHR() this does NOT submit the form immediately!
- * It sets up event handlers so that any method of submitting the
- * form (click on submit button, enter, submit() etc) will trigger
- * it properly.
- *
- * Also unlike FormXHR(), this system will use a hidden iframe
- * automatically to handle file uploads via <input type="file">
- * controls.
- *
- * @fixme tl;dr
- * @fixme vast swaths of duplicate code and really long variable names clutter this function up real bad
- * @fixme error handling is unreliable
- * @fixme cookieValue is a global variable, but probably shouldn't be
- * @fixme saving the location cache cookies should be split out
- * @fixme some error messages are hardcoded english: needs i18n
- *
- * @param {jQuery} form: jQuery object whose first element is a form
- *
- * @access public
- */
- FormNoticeXHR: function (form) {
- SN.C.I.NoticeDataGeo = {};
- form.append('<input type="hidden" name="ajax" value="1"/>');
-
- // Make sure we don't have a mixed HTTP/HTTPS submission...
- form.attr('action', SN.U.RewriteAjaxAction(form.attr('action')));
-
- /**
- * Hide the previous response feedback, if any.
- */
- var removeFeedback = function () {
- form.find('.form_response').remove();
- };
-
- form.ajaxForm({
- dataType: 'xml',
- timeout: SN.V.xhrTimeout,
- beforeSend: function (formData) {
- if (form.find('.notice_data-text:first').val() == '') {
- form.addClass(SN.C.S.Warning);
- return false;
- }
- form
- .addClass(SN.C.S.Processing)
- .find('.submit')
- .addClass(SN.C.S.Disabled)
- .prop(SN.C.S.Disabled, true);
-
- SN.U.normalizeGeoData(form);
-
- return true;
- },
- error: function (xhr, textStatus, errorThrown) {
- form
- .removeClass(SN.C.S.Processing)
- .find('.submit')
- .removeClass(SN.C.S.Disabled)
- .prop(SN.C.S.Disabled, false);
- removeFeedback();
- if (textStatus == 'timeout') {
- // @fixme i18n
- SN.U.showFeedback(form, 'error', 'Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.');
- } else {
- var response = SN.U.GetResponseXML(xhr);
- if ($('.' + SN.C.S.Error, response).length > 0) {
- form.append(document._importNode($('.' + SN.C.S.Error, response)[0], true));
- } else {
- if (parseInt(xhr.status) === 0 || $.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
- form
- .resetForm()
- .find('.attach-status').remove();
- SN.U.FormNoticeEnhancements(form);
- } else {
- // @fixme i18n
- SN.U.showFeedback(form, 'error', '(Sorry! We had trouble sending your notice (' + xhr.status + ' ' + xhr.statusText + '). Please report the problem to the site administrator if this happens again.');
- }
- }
- }
- },
- success: function (data, textStatus) {
- removeFeedback();
- var errorResult = $('#' + SN.C.S.Error, data);
- if (errorResult.length > 0) {
- SN.U.showFeedback(form, 'error', errorResult.text());
- } else {
- SN.E.ajaxNoticePosted(form, data, textStatus);
- }
- },
- complete: function (xhr, textStatus) {
- form
- .removeClass(SN.C.S.Processing)
- .find('.submit')
- .prop(SN.C.S.Disabled, false)
- .removeClass(SN.C.S.Disabled);
-
- form.find('[name=lat]').val(SN.C.I.NoticeDataGeo.NLat);
- form.find('[name=lon]').val(SN.C.I.NoticeDataGeo.NLon);
- form.find('[name=location_ns]').val(SN.C.I.NoticeDataGeo.NLNS);
- form.find('[name=location_id]').val(SN.C.I.NoticeDataGeo.NLID);
- form.find('[name=notice_data-geo]').prop('checked', SN.C.I.NoticeDataGeo.NDG);
- }
- });
- },
-
- FormProfileSearchXHR: function (form) {
- $.ajax({
- type: 'POST',
- dataType: 'xml',
- url: form.attr('action'),
- data: form.serialize() + '&ajax=1',
- beforeSend: function (xhr) {
- form
- .addClass(SN.C.S.Processing)
- .find('.submit')
- .addClass(SN.C.S.Disabled)
- .prop(SN.C.S.Disabled, true);
- },
- error: function (xhr, textStatus, errorThrown) {
- window.alert(errorThrown || textStatus);
- },
- success: function (data, textStatus) {
- var results_placeholder = $('#profile_search_results');
- if ($('ul', data)[0] !== undefined) {
- var list = document._importNode($('ul', data)[0], true);
- results_placeholder.replaceWith(list);
- } else {
- var _error = $('<li/>').append(document._importNode($('p', data)[0], true));
- results_placeholder.html(_error);
- }
- form
- .removeClass(SN.C.S.Processing)
- .find('.submit')
- .removeClass(SN.C.S.Disabled)
- .prop(SN.C.S.Disabled, false);
- }
- });
- },
-
- FormPeopletagsXHR: function (form) {
- $.ajax({
- type: 'POST',
- dataType: 'xml',
- url: form.attr('action'),
- data: form.serialize() + '&ajax=1',
- beforeSend: function (xhr) {
- form.find('.submit')
- .addClass(SN.C.S.Processing)
- .addClass(SN.C.S.Disabled)
- .prop(SN.C.S.Disabled, true);
- },
- error: function (xhr, textStatus, errorThrown) {
- window.alert(errorThrown || textStatus);
- },
- success: function (data, textStatus) {
- var results_placeholder = form.parents('.entity_tags');
- if ($('.entity_tags', data)[0] !== undefined) {
- var tags = document._importNode($('.entity_tags', data)[0], true);
- $(tags).find('.editable').append($('<button class="peopletags_edit_button"/>'));
- results_placeholder.replaceWith(tags);
- } else {
- results_placeholder.find('p').remove();
- results_placeholder.append(document._importNode($('p', data)[0], true));
- form.removeClass(SN.C.S.Processing)
- .find('.submit')
- .removeClass(SN.C.S.Disabled)
- .prop(SN.C.S.Disabled, false);
- }
- }
- });
- },
-
- normalizeGeoData: function (form) {
- SN.C.I.NoticeDataGeo.NLat = form.find('[name=lat]').val();
- SN.C.I.NoticeDataGeo.NLon = form.find('[name=lon]').val();
- SN.C.I.NoticeDataGeo.NLNS = form.find('[name=location_ns]').val();
- SN.C.I.NoticeDataGeo.NLID = form.find('[name=location_id]').val();
- SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').prop('checked'); // @fixme (does this still need to be fixed somehow?)
-
- var cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
-
- if (cookieValue !== undefined && cookieValue != 'disabled') {
- cookieValue = JSON.parse(cookieValue);
- SN.C.I.NoticeDataGeo.NLat = form.find('[name=lat]').val(cookieValue.NLat).val();
- SN.C.I.NoticeDataGeo.NLon = form.find('[name=lon]').val(cookieValue.NLon).val();
- if (cookieValue.NLNS) {
- SN.C.I.NoticeDataGeo.NLNS = form.find('[name=location_ns]').val(cookieValue.NLNS).val();
- SN.C.I.NoticeDataGeo.NLID = form.find('[name=location_id]').val(cookieValue.NLID).val();
- } else {
- form.find('[name=location_ns]').val('');
- form.find('[name=location_id]').val('');
- }
- }
- if (cookieValue == 'disabled') {
- SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').prop('checked', false).prop('checked');
- } else {
- SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').prop('checked', true).prop('checked');
- }
-
- },
-
- /**
- * Fetch an XML DOM from an XHR's response data.
- *
- * Works around unavailable responseXML when document.domain
- * has been modified by Meteor or other tools, in some but not
- * all browsers.
- *
- * @param {XMLHTTPRequest} xhr
- * @return DOMDocument
- */
- GetResponseXML: function (xhr) {
- try {
- return xhr.responseXML;
- } catch (e) {
- return (new DOMParser()).parseFromString(xhr.responseText, "text/xml");
- }
- },
-
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Sets up event handlers on all visible notice's option <a> elements
- * with the "popup" class so they behave as expected with AJAX.
- *
- * (without javascript the link goes to a page that expects you to verify
- * the action through a form)
- *
- * @access private
- */
- NoticeOptionsAjax: function () {
- $(document).on('click', '.notice-options > a.popup', function (e) {
- e.preventDefault();
- var noticeEl = $(this).closest('.notice');
- $.ajax({
- url: $(this).attr('href'),
- data: {ajax: 1},
- success: function (data, textStatus, xhr) {
- SN.U.NoticeOptionPopup(data, noticeEl);
- },
- });
- return false;
- });
- },
-
- NoticeOptionPopup: function (data, noticeEl) {
- title = $('head > title', data).text();
- body = $('body', data).html();
- dialog = $(body).dialog({
- height: "auto",
- width: "auto",
- modal: true,
- resizable: true,
- title: title,
- });
- },
-
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Sets up event handlers on all visible notice's reply buttons to
- * tweak the new-notice form with needed variables and focus it
- * when pushed.
- *
- * (This replaces the default reply button behavior to submit
- * directly to a form which comes back with a specialized page
- * with the form data prefilled.)
- *
- * @access private
- */
- NoticeReply: function () {
- $(document).on('click', '#content .notice_reply', function (e) {
- e.preventDefault();
- var notice = $(this).closest('li.notice');
- SN.U.NoticeInlineReplyTrigger(notice);
- return false;
- });
- },
-
- /**
- * Stub -- kept for compat with plugins for now.
- * @access private
- */
- NoticeReplyTo: function (notice) {
- },
-
- /**
- * Open up a notice's inline reply box.
- *
- * @param {jQuery} notice: jQuery object containing one notice
- * @param {String} initialText
- */
- NoticeInlineReplyTrigger: function (notice, initialText) {
- // Find the notice we're replying to...
- var id = $($('.notice_id', notice)[0]).text();
- var replyForm;
- var parentNotice = notice;
- var stripForm = true; // strip a couple things out of reply forms that are inline
-
- var list = notice.find('.threaded-replies');
- if (list.length == 0) {
- list = notice.closest('.threaded-replies');
- }
- if (list.length == 0) {
- list = $('<ul class="notices threaded-replies xoxo"></ul>');
- notice.append(list);
- list = notice.find('.threaded-replies');
- }
-
- var nextStep = function () {
- // Override...?
- replyForm.find('input[name=inreplyto]').val(id);
- if (stripForm) {
- // Don't do this for old-school reply form, as they don't come back!
- replyForm.find('#notice_to').prop('disabled', true).hide();
- replyForm.find('#notice_private').prop('disabled', true).hide();
- replyForm.find('label[for=notice_to]').hide();
- replyForm.find('label[for=notice_private]').hide();
- }
- replyItem.show();
-
- // Set focus...
- var text = replyForm.find('textarea');
- if (text.length == 0) {
- throw "No textarea";
- }
- var replyto = '';
- if (initialText) {
- replyto = initialText + ' ';
- }
- text.val(replyto + text.val().replace(new RegExp(replyto, 'i'), ''));
- text.data('initialText', $.trim(initialText));
- text.focus();
- if (text[0].setSelectionRange) {
- var len = text.val().length;
- text[0].setSelectionRange(len, len);
- }
- };
-
- // Create the reply form entry
- var replyItem = $('li.notice-reply', list);
- if (replyItem.length == 0) {
- replyItem = $('<li class="notice-reply"></li>');
- }
- replyForm = replyItem.children('form');
- if (replyForm.length == 0) {
- // Let's try another trick to avoid fetching by URL
- var noticeForm = $('#input_form_status > form');
- if (noticeForm.length == 0) {
- // No notice form found on the page, so let's just
- // fetch a fresh copy of the notice form over AJAX.
- $.ajax({
- url: SN.V.urlNewNotice,
- data: {ajax: 1, inreplyto: id},
- success: function (data, textStatus, xhr) {
- var formEl = document._importNode($('form', data)[0], true);
- replyForm = $(formEl);
- replyItem.append(replyForm);
- list.append(replyItem);
-
- SN.Init.NoticeFormSetup(replyForm);
- nextStep();
- },
- });
- // We do everything relevant in 'success' above
- return;
- }
- replyForm = noticeForm.clone();
- SN.Init.NoticeFormSetup(replyForm);
- replyItem.append(replyForm);
- list.append(replyItem);
- }
- // replyForm is set, we're not fetching by URL...
- // Next setp is to configure in-reply-to etc.
- nextStep();
- },
-
- /**
- * Setup function -- DOES NOT apply immediately.
- *
- * Uses 'on' rather than 'live' or 'bind', so applies to future as well as present items.
- */
- NoticeInlineReplySetup: function () {
- // Expand conversation links
- $(document).on('click', 'li.notice-reply-comments a', function () {
- var url = $(this).attr('href');
- var area = $(this).closest('.threaded-replies');
- $.ajax({
- url: url,
- data: {ajax: 1},
- success: function (data, textStatus, xhr) {
- var replies = $('.threaded-replies', data);
- if (replies.length) {
- area.replaceWith(document._importNode(replies[0], true));
- }
- },
- });
- return false;
- });
- },
-
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Sets up event handlers for repeat forms to toss up a confirmation
- * popout before submitting.
- *
- * Uses 'on' rather than 'live' or 'bind', so applies to future as well as present items.
- *
- */
- NoticeRepeat: function () {
- $('body').on('click', '.form_repeat', function (e) {
- e.preventDefault();
-
- SN.U.NoticeRepeatConfirmation($(this));
- return false;
- });
- },
-
- /**
- * Shows a confirmation dialog box variant of the repeat button form.
- * This seems to use a technique where the repeat form contains
- * _both_ a standalone button _and_ text and buttons for a dialog.
- * The dialog will close after its copy of the form is submitted,
- * or if you click its 'close' button.
- *
- * The dialog is created by duplicating the original form and changing
- * its style; while clever, this is hard to generalize and probably
- * duplicates a lot of unnecessary HTML output.
- *
- * @fixme create confirmation dialogs through a generalized interface
- * that can be reused instead of hardcoded text and styles.
- *
- * @param {jQuery} form
- */
- NoticeRepeatConfirmation: function (form) {
- var submit_i = form.find('.submit');
-
- var submit = submit_i.clone();
- submit
- .addClass('submit_dialogbox')
- .removeClass('submit');
- form.append(submit);
- submit.on('click', function () { SN.U.FormXHR(form); return false; });
-
- submit_i.hide();
-
- form
- .addClass('dialogbox')
- .append('<button class="close" title="' + SN.msg('popup_close_button') + '">×</button>')
- .closest('.notice-options')
- .addClass('opaque');
-
- form.find('button.close').click(function () {
- $(this).remove();
-
- form
- .removeClass('dialogbox')
- .closest('.notice-options')
- .removeClass('opaque');
-
- form.find('.submit_dialogbox').remove();
- form.find('.submit').show();
-
- return false;
- });
- },
-
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Goes through all notices currently displayed and sets up attachment
- * handling if needed.
- */
- NoticeAttachments: function () {
- $('.notice a.attachment').each(function () {
- SN.U.NoticeWithAttachment($(this).closest('.notice'));
- });
- },
-
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Sets up special attachment link handling if needed. Currently this
- * consists only of making the "more" button used for OStatus message
- * cropping turn into an auto-expansion button that loads the full
- * text from an attachment file.
- *
- * @param {jQuery} notice
- */
- NoticeWithAttachment: function (notice) {
- if (notice.find('.attachment').length === 0) {
- return;
- }
-
- $(document).on('click','.attachment.more',function () {
- var m = $(this);
- m.addClass(SN.C.S.Processing);
- $.get(m.attr('href'), {ajax: 1}, function (data) {
- m.parent('.e-content').html($(data).find('#attachment_view .e-content').html());
- });
-
- return false;
- });
-
- },
-
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Sets up event handlers for the file-attachment widget in the
- * new notice form. When a file is selected, a box will be added
- * below the text input showing the filename and, if supported
- * by the browser, a thumbnail preview.
- *
- * This preview box will also allow removing the attachment
- * prior to posting.
- *
- * @param {jQuery} form
- */
- NoticeDataAttach: function (form) {
- var i;
- var NDA = form.find('input[type=file]');
- NDA.change(function (event) {
- form.find('.attach-status').remove();
-
- if (typeof this.files === "object") {
- var attachStatus = $('<ul class="attach-status ' + SN.C.S.Success + '"></ul>');
- form.append(attachStatus);
- // Some newer browsers will let us fetch the files for preview.
- for (i = 0; i < this.files.length; i++) {
- SN.U.PreviewAttach(form, this.files[i]);
- }
- } else {
- var filename = $(this).val();
- if (!filename) {
- // No file -- we've been tricked!
- return false;
- }
-
- var attachStatus = $('<div class="attach-status ' + SN.C.S.Success + '"><code></code> <button class="close">×</button></div>');
- attachStatus.find('code').text(filename);
- attachStatus.find('button').click(function () {
- attachStatus.remove();
- NDA.val('');
-
- return false;
- });
- form.append(attachStatus);
- }
- });
- },
-
- /**
- * Get PHP's MAX_FILE_SIZE setting for this form;
- * used to apply client-side file size limit checks.
- *
- * @param {jQuery} form
- * @return int max size in bytes; 0 or negative means no limit
- */
- maxFileSize: function (form) {
- var max = $(form).find('input[name=MAX_FILE_SIZE]').attr('value');
- if (max) {
- return parseInt(max);
- }
- return 0;
- },
-
- /**
- * For browsers with FileAPI support: make a thumbnail if possible,
- * and append it into the attachment display widget.
- *
- * Known good:
- * - Firefox 3.6.6, 4.0b7
- * - Chrome 8.0.552.210
- *
- * Known ok metadata, can't get contents:
- * - Safari 5.0.2
- *
- * Known fail:
- * - Opera 10.63, 11 beta (no input.files interface)
- *
- * @param {jQuery} form
- * @param {File} file
- *
- * @todo use configured thumbnail size
- * @todo detect pixel size?
- * @todo should we render a thumbnail to a canvas and then use the smaller image?
- */
- PreviewAttach: function (form, file) {
- var tooltip = file.type + ' ' + Math.round(file.size / 1024) + 'KB';
- var preview = true;
-
- var blobAsDataURL;
- if (window.createObjectURL !== undefined) {
- /**
- * createObjectURL lets us reference the file directly from an <img>
- * This produces a compact URL with an opaque reference to the file,
- * which we can reference immediately.
- *
- * - Firefox 3.6.6: no
- * - Firefox 4.0b7: no
- * - Safari 5.0.2: no
- * - Chrome 8.0.552.210: works!
- */
- blobAsDataURL = function (blob, callback) {
- callback(window.createObjectURL(blob));
- };
- } else if (window.FileReader !== undefined) {
- /**
- * FileAPI's FileReader can build a data URL from a blob's contents,
- * but it must read the file and build it asynchronously. This means
- * we'll be passing a giant data URL around, which may be inefficient.
- *
- * - Firefox 3.6.6: works!
- * - Firefox 4.0b7: works!
- * - Safari 5.0.2: no
- * - Chrome 8.0.552.210: works!
- */
- blobAsDataURL = function (blob, callback) {
- var reader = new FileReader();
- reader.onload = function (event) {
- callback(reader.result);
- };
- reader.readAsDataURL(blob);
- };
- } else {
- preview = false;
- }
-
- var imageTypes = ['image/png', 'image/jpeg', 'image/gif', 'image/svg+xml',
- 'image/bmp', 'image/webp', 'image/vnd.microsoft.icon'];
- if ($.inArray(file.type, imageTypes) == -1) {
- // We probably don't know how to show the file.
- preview = false;
- }
-
- var maxSize = 8 * 1024 * 1024;
- if (file.size > maxSize) {
- // Don't kill the browser trying to load some giant image.
- preview = false;
- }
-
- var fileentry = $('<li>')
- .attr('class', 'attachment')
- .attr('style', 'text-align: center');
- if (preview) {
- blobAsDataURL(file, function (url) {
- var img = $('<img>')
- .attr('title', tooltip)
- .attr('alt', tooltip)
- .attr('src', url)
- .attr('style', 'height: 120px');
- fileentry.append(img);
- fileentry.append($('<br><code>' + file.name + '</code>'));
- form.find('.attach-status').append(fileentry);
- });
- } else {
- fileentry.append($('<code>' + file.type + '</code>'));
- fileentry.append($('<br><code>' + file.name + '</code>'));
- form.find('.attach-status').append(fileentry);
- }
- },
-
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Initializes state for the location-lookup features in the
- * new-notice form. Seems to set up some event handlers for
- * triggering lookups and using the new values.
- *
- * @param {jQuery} form
- *
- * @fixme tl;dr
- * @fixme there's not good visual state update here, so users have a
- * hard time figuring out if it's working or fixing if it's wrong.
- *
- */
- NoticeLocationAttach: function (form) {
- // @fixme this should not be tied to the main notice form, as there may be multiple notice forms...
- var NLat = form.find('[name=lat]');
- var NLon = form.find('[name=lon]');
- var NLNS = form.find('[name=location_ns]').val();
- var NLID = form.find('[name=location_id]').val();
- var NLN = ''; // @fixme
- var NDGe = form.find('[name=notice_data-geo]');
- var check = form.find('[name=notice_data-geo]');
- var label = form.find('label.notice_data-geo');
-
- function removeNoticeDataGeo(error) {
- label
- .attr('title', $.trim(label.text()))
- .removeClass('checked');
-
- form.find('[name=lat]').val('');
- form.find('[name=lon]').val('');
- form.find('[name=location_ns]').val('');
- form.find('[name=location_id]').val('');
- form.find('[name=notice_data-geo]').prop('checked', false);
-
- $.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled', { path: '/' });
-
- if (error) {
- form.find('.geo_status_wrapper').removeClass('success').addClass('error');
- form.find('.geo_status_wrapper .geo_status').text(error);
- } else {
- form.find('.geo_status_wrapper').remove();
- }
- }
-
- function getJSONgeocodeURL(geocodeURL, data) {
- SN.U.NoticeGeoStatus(form, 'Looking up place name...');
- $.getJSON(geocodeURL, data, function (location) {
- var lns, lid, NLN_text;
-
- if (location.location_ns !== undefined) {
- form.find('[name=location_ns]').val(location.location_ns);
- lns = location.location_ns;
- }
-
- if (location.location_id !== undefined) {
- form.find('[name=location_id]').val(location.location_id);
- lid = location.location_id;
- }
-
- if (location.name === undefined) {
- NLN_text = data.lat + ';' + data.lon;
- } else {
- NLN_text = location.name;
- }
-
- SN.U.NoticeGeoStatus(form, NLN_text, data.lat, data.lon, location.url);
- label
- .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
-
- form.find('[name=lat]').val(data.lat);
- form.find('[name=lon]').val(data.lon);
- form.find('[name=location_ns]').val(lns);
- form.find('[name=location_id]').val(lid);
- form.find('[name=notice_data-geo]').prop('checked', true);
-
- var cookieValue = {
- NLat: data.lat,
- NLon: data.lon,
- NLNS: lns,
- NLID: lid,
- NLN: NLN_text,
- NLNU: location.url,
- NDG: true
- };
-
- $.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue), { path: '/' });
- });
- }
-
- if (check.length > 0) {
- if ($.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
- check.prop('checked', false);
- } else {
- check.prop('checked', true);
- }
-
- var NGW = form.find('.notice_data-geo_wrap');
- var geocodeURL = NGW.attr('data-api');
-
- label.attr('title', label.text());
-
- check.change(function () {
- if (check.prop('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === undefined) {
- label
- .attr('title', NoticeDataGeo_text.ShareDisable)
- .addClass('checked');
-
- if ($.cookie(SN.C.S.NoticeDataGeoCookie) === undefined || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
- if (navigator.geolocation) {
- SN.U.NoticeGeoStatus(form, 'Requesting location from browser...');
- navigator.geolocation.getCurrentPosition(
- function (position) {
- form.find('[name=lat]').val(position.coords.latitude);
- form.find('[name=lon]').val(position.coords.longitude);
-
- var data = {
- lat: position.coords.latitude,
- lon: position.coords.longitude,
- token: $('#token').val()
- };
-
- getJSONgeocodeURL(geocodeURL, data);
- },
-
- function (error) {
- switch(error.code) {
- case error.PERMISSION_DENIED:
- removeNoticeDataGeo('Location permission denied.');
- break;
- case error.TIMEOUT:
- //$('#' + SN.C.S.NoticeDataGeo).prop('checked', false);
- removeNoticeDataGeo('Location lookup timeout.');
- break;
- }
- },
-
- {
- timeout: 10000
- }
- );
- } else {
- if (NLat.length > 0 && NLon.length > 0) {
- var data = {
- lat: NLat,
- lon: NLon,
- token: $('#token').val()
- };
-
- getJSONgeocodeURL(geocodeURL, data);
- } else {
- removeNoticeDataGeo();
- check.remove();
- label.remove();
- }
- }
- } else {
- try {
- var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
-
- form.find('[name=lat]').val(cookieValue.NLat);
- form.find('[name=lon]').val(cookieValue.NLon);
- form.find('[name=location_ns]').val(cookieValue.NLNS);
- form.find('[name=location_id]').val(cookieValue.NLID);
- form.find('[name=notice_data-geo]').prop('checked', cookieValue.NDG);
-
- SN.U.NoticeGeoStatus(form, cookieValue.NLN, cookieValue.NLat, cookieValue.NLon, cookieValue.NLNU);
- label
- .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
- .addClass('checked');
- } catch (e) {
- console.log('Parsing error:', e);
- }
- }
- } else {
- removeNoticeDataGeo();
- }
- }).change();
- }
- },
-
- /**
- * Create or update a geolocation status widget in this notice posting form.
- *
- * @param {jQuery} form
- * @param {String} status
- * @param {String} lat (optional)
- * @param {String} lon (optional)
- * @param {String} url (optional)
- */
- NoticeGeoStatus: function (form, status, lat, lon, url)
- {
- var wrapper = form.find('.geo_status_wrapper');
- if (wrapper.length == 0) {
- wrapper = $('<div class="' + SN.C.S.Success + ' geo_status_wrapper"><button class="close" style="float:right">×</button><div class="geo_status"></div></div>');
- wrapper.find('button.close').click(function () {
- form.find('[name=notice_data-geo]').prop('checked', false).change();
- return false;
- });
- form.append(wrapper);
- }
- var label;
- if (url) {
- label = $('<a></a>').attr('href', url);
- } else {
- label = $('<span></span>');
- }
- label.text(status);
- if (lat || lon) {
- var latlon = lat + ';' + lon;
- label.attr('title', latlon);
- if (!status) {
- label.text(latlon)
- }
- }
- wrapper.find('.geo_status').empty().append(label);
- },
-
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Initializes event handlers for the "Send direct message" link on
- * profile pages, setting it up to display a dialog box when clicked.
- *
- * Unlike the repeat confirmation form, this appears to fetch
- * the form _from the original link target_, so the form itself
- * doesn't need to be in the current document.
- *
- * @fixme breaks ability to open link in new window?
- */
- NewDirectMessage: function () {
- NDM = $('.entity_send-a-message a');
- NDM.attr({'href': NDM.attr('href') + '&ajax=1'});
- NDM.on('click', function () {
- var NDMF = $('.entity_send-a-message form');
- if (NDMF.length === 0) {
- $(this).addClass(SN.C.S.Processing);
- $.get(NDM.attr('href'), null, function (data) {
- $('.entity_send-a-message').append(document._importNode($('form', data)[0], true));
- NDMF = $('.entity_send-a-message .form_notice');
- SN.U.FormNoticeXHR(NDMF);
- SN.U.FormNoticeEnhancements(NDMF);
- NDMF.append('<button class="close">×</button>');
- $('.entity_send-a-message button').click(function () {
- NDMF.hide();
- return false;
- });
- NDM.removeClass(SN.C.S.Processing);
- });
- } else {
- NDMF.show();
- $('.entity_send-a-message textarea').focus();
- }
- return false;
- });
- },
-
- /**
- * Return a date object with the current local time on the
- * given year, month, and day.
- *
- * @param {number} year: 4-digit year
- * @param {number} month: 0 == January
- * @param {number} day: 1 == 1
- * @return {Date}
- */
- GetFullYear: function (year, month, day) {
- var date = new Date();
- date.setFullYear(year, month, day);
-
- return date;
- },
-
- /**
- * Check if the current page is a timeline where the current user's
- * posts should be displayed immediately on success.
- *
- * @fixme this should be done in a saner way, with machine-readable
- * info about what page we're looking at.
- *
- * @param {DOMElement} notice: HTML chunk with formatted notice
- * @return boolean
- */
- belongsOnTimeline: function (notice) {
- var action = $("body").attr('id');
- if (action == 'public') {
- return true;
- }
-
- var profileLink = $('#nav_profile a').attr('href');
- if (profileLink) {
- var authorUrl = $(notice).find('.h-card.p-author').attr('href');
- if (authorUrl == profileLink) {
- if (action == 'all' || action == 'showstream') {
- // Posts always show on your own friends and profile streams.
- return true;
- }
- }
- }
-
- // @fixme tag, group, reply timelines should be feasible as well.
- // Mismatch between id-based and name-based user/group links currently complicates
- // the lookup, since all our inline mentions contain the absolute links but the
- // UI links currently on the page use malleable names.
-
- return false;
- },
-
- /**
- * Switch to another active input sub-form.
- * This will hide the current form (if any), show the new one, and
- * update the input type tab selection state.
- *
- * @param {String} tag
- */
- switchInputFormTab: function (tag, setFocus) {
- if (typeof setFocus === 'undefined') { setFocus = true; }
- // The one that's current isn't current anymore
- $('.input_form_nav_tab.current').removeClass('current');
- if (tag != null) {
- $('#input_form_nav_' + tag).addClass('current');
- }
-
- // Don't remove 'current' if we also have the "nonav" class.
- // An example would be the message input form. removing
- // 'current' will cause the form to vanish from the page.
- var nonav = $('.input_form.current.nonav');
- if (nonav.length > 0) {
- return;
- }
-
- $('.input_form.current').removeClass('current');
- if (tag == null) {
- // we're done here, no new inputform to focus on
- return false;
- }
-
- var noticeForm = $('#input_form_' + tag)
- .addClass('current')
- .find('.ajax-notice').each(function () {
- var form = $(this);
- SN.Init.NoticeFormSetup(form);
- });
- if (setFocus) {
- noticeForm.find('.notice_data-text').focus();
- }
-
- return false;
- },
-
- showMoreMenuItems: function (menuid) {
- $('#' + menuid + ' .more_link').remove();
- var selector = '#' + menuid + ' .extended_menu';
- var extended = $(selector);
- extended.removeClass('extended_menu');
- return void(0);
- },
-
- /**
- * Show a response feedback bit under a form.
- *
- * @param {Element} form: the new-notice form usually
- * @param {String} cls: CSS class name to use ('error' or 'success')
- * @param {String} text
- * @access public
- */
- showFeedback: function (form, cls, text) {
- form.append(
- $('<p class="form_response"></p>')
- .addClass(cls)
- .text(text)
- );
- },
-
- addCallback: function (ename, callback) {
- // initialize to array if it's undefined
- if (typeof SN._callbacks[ename] === 'undefined') {
- SN._callbacks[ename] = [];
- }
- SN._callbacks[ename].push(callback);
- },
-
- runCallbacks: function (ename, data) {
- if (typeof SN._callbacks[ename] === 'undefined') {
- return;
- }
- for (cbname in SN._callbacks[ename]) {
- SN._callbacks[ename][cbname](data);
- }
- }
- },
-
- E: { /* Events */
- /* SN.E.ajaxNoticePosted, called when a notice has been posted successfully via an AJAX form
- @param form the originating form element
- @param data data from success() callback
- @param textStatus textStatus from success() callback
- */
- ajaxNoticePosted: function (form, data, textStatus) {
- var commandResult = $('#' + SN.C.S.CommandResult, data);
- if (commandResult.length > 0) {
- SN.U.showFeedback(form, 'success', commandResult.text());
- } else {
- // New notice post was successful. If on our timeline, show it!
- var notice = document._importNode($('li', data)[0], true);
- var notices = $('#notices_primary .notices:first');
- var replyItem = form.closest('li.notice-reply');
-
- if (replyItem.length > 0) {
- // If this is an inline reply, remove the form...
- var list = form.closest('.threaded-replies');
-
- var id = $(notice).attr('id');
- if ($('#' + id).length == 0) {
- $(notice).insertBefore(replyItem);
- } // else Realtime came through before us...
-
- replyItem.remove();
-
- } else if (notices.length > 0 && SN.U.belongsOnTimeline(notice)) {
- // Not a reply. If on our timeline, show it at the top!
-
- if ($('#' + notice.id).length === 0) {
- var notice_irt_value = form.find('[name=inreplyto]').val();
- var notice_irt = '#notices_primary #notice-' + notice_irt_value;
- if ($('body')[0].id == 'conversation') {
- if (notice_irt_value.length > 0 && $(notice_irt + ' .notices').length < 1) {
- $(notice_irt).append('<ul class="notices"></ul>');
- }
- $($(notice_irt + ' .notices')[0]).append(notice);
- } else {
- notices.prepend(notice);
- }
- $('#' + notice.id)
- .css({display: 'none'})
- .fadeIn(2500);
- SN.U.NoticeWithAttachment($('#' + notice.id));
- SN.U.switchInputFormTab(null);
- }
- } else {
- // Not on a timeline that this belongs on?
- // Just show a success message.
- // @fixme inline
- SN.U.showFeedback(form, 'success', $('title', data).text());
- }
- }
- form.resetForm();
- form.find('[name=inreplyto]').val('');
- form.find('.attach-status').remove();
- SN.U.FormNoticeEnhancements(form);
-
- SN.U.runCallbacks('notice_posted', {"notice": notice});
- },
- },
-
-
- Init: {
- /**
- * If user is logged in, run setup code for the new notice form:
- *
- * - char counter
- * - AJAX submission
- * - location events
- * - file upload events
- */
- NoticeForm: function () {
- if ($('body.user_in').length > 0) {
- // SN.Init.NoticeFormSetup() will get run
- // when forms get displayed for the first time...
-
- // Initialize the input form field
- $('#input_form_nav .input_form_nav_tab.current').each(function () {
- current_tab_id = $(this).attr('id').substring('input_form_nav_'.length);
- SN.U.switchInputFormTab(current_tab_id, false);
- });
-
- // Make inline reply forms self-close when clicking out.
- $('body').on('click', function (e) {
- var openReplies = $('li.notice-reply');
- if (openReplies.length > 0) {
- var target = $(e.target);
- openReplies.each(function () {
- // Did we click outside this one?
- var replyItem = $(this);
- if (replyItem.has(e.target).length == 0) {
- var textarea = replyItem.find('.notice_data-text:first');
- var cur = $.trim(textarea.val());
- // Only close if there's been no edit.
- if (cur == '' || cur == textarea.data('initialText')) {
- var parentNotice = replyItem.closest('li.notice');
- replyItem.hide();
- parentNotice.find('li.notice-reply-placeholder').show();
- }
- }
- });
- }
- });
- }
- },
-
- /**
- * Encapsulate notice form setup for a single form.
- * Plugins can add extra setup by monkeypatching this
- * function.
- *
- * @param {jQuery} form
- */
- NoticeFormSetup: function (form) {
- if (form.data('NoticeFormSetup')) {
- return false;
- }
- SN.U.NoticeLocationAttach(form);
- SN.U.FormNoticeUniqueID(form);
- SN.U.FormNoticeXHR(form);
- SN.U.FormNoticeEnhancements(form);
- SN.U.NoticeDataAttach(form);
- form.data('NoticeFormSetup', true);
- },
-
- /**
- * Run setup code for notice timeline views items:
- *
- * - AJAX submission for fave/repeat/reply (if logged in)
- * - Attachment link extras ('more' links)
- */
- Notices: function () {
- if ($('body.user_in').length > 0) {
- SN.U.NoticeRepeat();
- SN.U.NoticeReply();
- SN.U.NoticeInlineReplySetup();
- SN.U.NoticeOptionsAjax();
- }
-
- SN.U.NoticeAttachments();
- },
-
- /**
- * Run setup code for user & group profile page header area if logged in:
- *
- * - AJAX submission for sub/unsub/join/leave/nudge
- * - AJAX form popup for direct-message
- */
- EntityActions: function () {
- if ($('body.user_in').length > 0) {
- $(document).on('click', '.form_user_subscribe', function () { SN.U.FormXHR($(this)); return false; });
- $(document).on('click', '.form_user_unsubscribe', function () { SN.U.FormXHR($(this)); return false; });
- $(document).on('click', '.form_group_join', function () { SN.U.FormXHR($(this)); return false; });
- $(document).on('click', '.form_group_leave', function () { SN.U.FormXHR($(this)); return false; });
- $(document).on('click', '.form_user_nudge', function () { SN.U.FormXHR($(this)); return false; });
- $(document).on('click', '.form_peopletag_subscribe', function () { SN.U.FormXHR($(this)); return false; });
- $(document).on('click', '.form_peopletag_unsubscribe', function () { SN.U.FormXHR($(this)); return false; });
- $(document).on('click', '.form_user_add_peopletag', function () { SN.U.FormXHR($(this)); return false; });
- $(document).on('click', '.form_user_remove_peopletag', function () { SN.U.FormXHR($(this)); return false; });
-
- SN.U.NewDirectMessage();
- }
- },
-
- ProfileSearch: function () {
- if ($('body.user_in').length > 0) {
- $(document).on('click', '.form_peopletag_edit_user_search input.submit', function () {
- SN.U.FormProfileSearchXHR($(this).parents('form')); return false;
- });
- }
- },
-
- /**
- * Run setup for the ajax people tags editor
- *
- * - show edit button
- * - set event handle for click on edit button
- * - loads people tag autocompletion data if not already present
- * or if it is stale.
- *
- */
- PeopleTags: function () {
- $('.user_profile_tags .editable').append($('<button class="peopletags_edit_button"/>'));
-
- $(document).on('click', '.peopletags_edit_button', function () {
- var form = $(this).parents('dd').eq(0).find('form');
- // We can buy time from the above animation
-
- $.ajax({
- url: _peopletagAC,
- dataType: 'json',
- data: {token: $('#token').val()},
- ifModified: true,
- success: function (data) {
- // item.label is used to match
- for (i=0; i < data.length; i++) {
- data[i].label = data[i].tag;
- }
-
- SN.C.PtagACData = data;
- }
- });
-
- $(this).parents('ul').eq(0).fadeOut(200, function () {form.fadeIn(200).find('input#tags')});
- });
-
- $(document).on('click', '.user_profile_tags form .submit', function () {
- SN.U.FormPeopletagsXHR($(this).parents('form')); return false;
- });
- },
-
- /**
- * Set up any generic 'ajax' form so it submits via AJAX with auto-replacement.
- */
- AjaxForms: function () {
- $(document).on('submit', 'form.ajax', function () {
- SN.U.FormXHR($(this));
- return false;
- });
- $(document).on('click', 'form.ajax input[type=submit]', function () {
- // Some forms rely on knowing which submit button was clicked.
- // Save a hidden input field which'll be picked up during AJAX
- // submit...
- var button = $(this);
- var form = button.closest('form');
- form.find('.hidden-submit-button').remove();
- $('<input class="hidden-submit-button" type="hidden" />')
- .attr('name', button.attr('name'))
- .val(button.val())
- .appendTo(form);
- });
- },
-
- /**
- * Add logic to any file upload forms to handle file size limits,
- * on browsers that support basic FileAPI.
- */
- UploadForms: function () {
- $('input[type=file]').change(function (event) {
- if (typeof this.files === "object" && this.files.length > 0) {
- var size = 0;
- for (var i = 0; i < this.files.length; i++) {
- size += this.files[i].size;
- }
-
- var max = SN.U.maxFileSize($(this.form));
- if (max > 0 && size > max) {
- var msg = 'File too large: maximum upload size is %d bytes.';
- alert(msg.replace('%d', max));
-
- // Clear the files.
- $(this).val('');
- event.preventDefault();
- return false;
- }
- }
- });
- },
-
- CheckBoxes: function () {
- $("span[class='checkbox-wrapper']").addClass("unchecked");
- $(".checkbox-wrapper").click(function () {
- if ($(this).children("input").prop("checked")) {
- // uncheck
- $(this).children("input").prop("checked", false);
- $(this).removeClass("checked");
- $(this).addClass("unchecked");
- $(this).children("label").text("Private?");
- } else {
- // check
- $(this).children("input").prop("checked", true);
- $(this).removeClass("unchecked");
- $(this).addClass("checked");
- $(this).children("label").text("Private");
- }
- });
- }
- }
-};
-
-/**
- * Run initialization functions on DOM-ready.
- *
- * Note that if we're waiting on other scripts to load, this won't happen
- * until that's done. To load scripts asynchronously without delaying setup,
- * don't start them loading until after DOM-ready time!
- */
-$(function () {
- SN.Init.AjaxForms();
- SN.Init.UploadForms();
- SN.Init.CheckBoxes();
- if ($('.' + SN.C.S.FormNotice).length > 0) {
- SN.Init.NoticeForm();
- }
- if ($('#content .notices').length > 0) {
- SN.Init.Notices();
- }
- if ($('#content .entity_actions').length > 0) {
- SN.Init.EntityActions();
- }
- if ($('#profile_search_results').length > 0) {
- SN.Init.ProfileSearch();
- }
- if ($('.user_profile_tags .editable').length > 0) {
- SN.Init.PeopleTags();
- }
-});
-
+++ /dev/null
-/* is this stuff defined? */
-if (!document.ELEMENT_NODE) {
- document.ELEMENT_NODE = 1;
- document.ATTRIBUTE_NODE = 2;
- document.TEXT_NODE = 3;
- document.CDATA_SECTION_NODE = 4;
- document.ENTITY_REFERENCE_NODE = 5;
- document.ENTITY_NODE = 6;
- document.PROCESSING_INSTRUCTION_NODE = 7;
- document.COMMENT_NODE = 8;
- document.DOCUMENT_NODE = 9;
- document.DOCUMENT_TYPE_NODE = 10;
- document.DOCUMENT_FRAGMENT_NODE = 11;
- document.NOTATION_NODE = 12;
-}
-
-document._importNode = function(node, allChildren) {
- /* find the node type to import */
- switch (node.nodeType) {
- case document.ELEMENT_NODE:
- /* create a new element */
- var newNode = document.createElement(node.nodeName);
- /* does the node have any attributes to add? */
- if (node.attributes && node.attributes.length > 0)
- /* add all of the attributes */
- for (var i = 0, il = node.attributes.length; i < il;) {
- if (node.attributes[i].nodeName == 'class') {
- newNode.className = node.getAttribute(node.attributes[i++].nodeName);
- } else {
- newNode.setAttribute(node.attributes[i].nodeName, node.getAttribute(node.attributes[i++].nodeName));
- }
- }
- /* are we going after children too, and does the node have any? */
- if (allChildren && node.childNodes && node.childNodes.length > 0)
- /* recursively get all of the child nodes */
- for (var i = 0, il = node.childNodes.length; i < il;)
- newNode.appendChild(document._importNode(node.childNodes[i++], allChildren));
- return newNode;
- break;
- case document.TEXT_NODE:
- case document.CDATA_SECTION_NODE:
- case document.COMMENT_NODE:
- return document.createTextNode(node.nodeValue);
- break;
- }
-};
-
+++ /dev/null
-/** Init for Autocomplete (requires jquery-ui)
- *
- * @package Plugin
- * @author Mikael Nordfeldth <mmn@hethane.se>
- * @copyright 2013 Free Software Foundation, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-
-var origInit = SN.Init.NoticeFormSetup;
-SN.Init.NoticeFormSetup = function(form) {
- origInit(form);
-
- // Only attach to traditional-style forms
- var textarea = form.find('.notice_data-text:first');
- if (textarea.length === 0) {
- return;
- }
-
- function termSplit(val) {
- return val.split(/ \s*/);
- }
- function extractLast( term ) {
- return termSplit(term).pop();
- }
- var apiUrl = $('#autocomplete-api').attr('data-url');
- // migrated "multiple" and "multipleSeparator" from
- // http://www.learningjquery.com/2010/06/autocomplete-migration-guide
- textarea
- .bind('keydown', function( event ) {
- if ( event.keyCode === $.ui.keyCode.TAB &&
- $( this ).data( "ui-autocomplete" ).menu.active ) {
- event.preventDefault();
- }
- })
- .autocomplete({
- minLength: 1, // 1 is default
- source: function (request, response) {
- $.getJSON( apiUrl, {
- term: extractLast(request.term)
- }, response );
- },
- search: function () {
- // custom minLength, we though we match the 1 below
- var term = extractLast(this.value);
- if (term.length <= 1) {
- return false;
- }
- },
- focus: function () {
- // prevent value inserted on focus
- return false;
- },
- select: function (event, ui) {
- var terms = termSplit(this.value);
- terms.pop(); // remove latest term
- terms.push(ui.item.value); // insert
- terms.push(''); // empty element, for the join()
- this.value = terms.join(' ');
- return false;
- },
- })
- .data('ui-autocomplete')._renderItem = function (ul, item) {
- return $('<li></li>')
- .data('ui-autocomplete-item', item)
- .append('<a><img style="display:inline; vertical-align: middle"><span /></a>')
- .find('img').attr('src', item.avatar).end()
- .find('span').text(item.label).end()
- .appendTo(ul);
- };
-};
-
-/**
- * Called when a people tag edit box is shown in the interface
- *
- * - loads the jQuery UI autocomplete plugin
- * - sets event handlers for tag completion
- *
- */
-SN.Init.PeopletagAutocomplete = function(txtBox) {
- var split,
- extractLast;
-
- split = function(val) {
- return val.split( /\s+/ );
- };
-
- extractLast = function(term) {
- return split(term).pop();
- };
-
- // don't navigate away from the field on tab when selecting an item
- txtBox
- .on('keydown', function(event) {
- if (event.keyCode === $.ui.keyCode.TAB &&
- $(this).data('ui-autocomplete').menu.active) {
- event.preventDefault();
- }
- })
- .autocomplete({
- minLength: 0,
- source: function(request, response) {
- // delegate back to autocomplete, but extract the last term
- response($.ui.autocomplete.filter(
- SN.C.PtagACData, extractLast(request.term)));
- },
- focus: function () {
- return false;
- },
- select: function(event, ui) {
- var terms = split(this.value);
- terms.pop();
- terms.push(ui.item.value);
- terms.push('');
- this.value = terms.join(' ');
- return false;
- }
- })
- .data('ui-autocomplete')
- ._renderItem = function (ul, item) {
- // FIXME: with jQuery UI you cannot have it highlight the match
- var _l = '<a class="ptag-ac-line-tag">' + item.tag +
- ' <em class="privacy_mode">' + item.mode + '</em>' +
- '<span class="freq">' + item.freq + '</span></a>';
-
- return $('<li/>')
- .addClass('mode-' + item.mode)
- .addClass('ptag-ac-line')
- .data('item.autocomplete', item)
- .append(_l)
- .appendTo(ul);
- };
-};
-
-$(document).on('click', '.peopletags_edit_button', function () {
- SN.Init.PeopletagAutocomplete($(this).closest('dd').find('[name="tags"]'));
-});
+++ /dev/null
-<!-- Copyright 2008-2010 StatusNet Inc. and contributors. -->
-<!-- Document licensed under Creative Commons Attribution 3.0 Unported. See -->
-<!-- http://creativecommons.org/licenses/by/3.0/ for details. -->
-
-A bookmarklet is a small piece of javascript code used as a bookmark. This one will let you post to %%site.name%% simply by selecting some text on a page and pressing the bookmarklet.
-
-Drag-and-drop the following link to your bookmarks bar or right-click it and add it to your browser favorites to keep it handy.
-
-<a href="javascript:(function(){var%20d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),f='http://%%site.server%%/%%site.path%%/index.php?action=bookmarkpopup',l=d.location,e=encodeURIComponent,g=f+'&title='+((e(s))?e(s):e(document.title))+'&url='+e(l.href);function%20a(){if(!w.open(g,'t','toolbar=0,resizable=0,scrollbars=1,status=1,width=650,height=520')){l.href=g;}}a();})()">Bookmark on %%site.name%%</a>
+++ /dev/null
-$(document).ready(
- function() {
- var form = $('#form_new_bookmark');
- form.append('<input type="hidden" name="ajax" value="1"/>');
- function doClose() {
- self.close();
- // If in popup blocker situation, we'll have to redirect back.
- setTimeout(function() {
- window.location = $('#url').val();
- }, 100);
- }
- form.ajaxForm({dataType: 'xml',
- timeout: '60000',
- beforeSend: function(formData) {
- form.addClass('processing');
- form.find('#submit').addClass('disabled');
- },
- error: function (xhr, textStatus, errorThrown) {
- form.removeClass('processing');
- form.find('#submit').removeClass('disabled');
- doClose();
- },
- success: function(data, textStatus) {
- form.removeClass('processing');
- form.find('#submit').removeClass('disabled');
- doClose();
- }});
-
- }
-);
\ No newline at end of file
+++ /dev/null
-/* Bookmark specific styles */
-
-.bookmark-tags li { display: inline; }
-
-.bookmark h3 {
- margin: 4px 0px 8px 0px;
-}
-
-.bookmark-notice-count {
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- padding: 1px 6px;
- font-size: 1.2em;
- line-height: 1.2em;
- background: #fff;
- border: 1px solid #7b8dbb;
- color: #3e3e8c !important;
- position: relative;
- right: 4px;
- margin-left: 10px;
-}
-
-.bookmark-notice-count:hover {
- text-decoration: none;
- background: #f2f2f2;
- border: 1px solid #7b8dbb;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.notice .bookmark-description {
- clear: both;
- margin-left: 0px;
- margin-bottom: 0px;
-}
-
-.notice .bookmark-author {
- margin-left: 0px;
- float: left;
-}
-
-.bookmark-tags {
- clear: both;
- margin-bottom: 4px;
- line-height: 1.6em;
-}
-
-ul.bookmark-tags a {
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- padding: 1px 6px;
- background: #f2f2f2;
- color: #3e3e8c !important;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
- font-size: 0.88em;
-}
-
-ul.bookmark-tags a:hover {
- background-color: #cdd1dd;
- text-decoration: none;
-}
-
-.bookmark-avatar {
- float: none !important;
- position: relative;
- top: 2px;
-}
-
-.bookmark div.e-content {
- font-size: 0.88em;
- line-height: 1.2em;
- margin-top: 6px;
- opacity: 0.6;
- margin-bottom: 0px;
-}
-
-.bookmark:hover div.e-content {
- opacity: 1;
-}
-
-#bookmarkpopup {
- min-width: 600px;
- margin-top: 0px;
- height: 100%;
- border: 10px solid #364A84;
- background: #364A84;
-}
-
-#bookmarkpopup #wrap {
- width: auto;
- min-width: 560px;
- padding: 40px 0px 25px 0px;
- margin-right: 2px;
- background: #fff url(../mobilelogo.png) no-repeat 6px 6px;
-}
-
-#bookmarkpopup #header {
- width: auto;
- padding: 0px 10px;
-}
-
-#bookmarkpopup .form_settings label {
- margin-top: 2px;
- text-align: right;
- width: 24%;
- font-size: 1.2em;
-}
-
-#bookmarkpopup .form_settings .form_data input {
- width: 60%;
-}
-
-#bookmarkpopup .form_guide {
- color: #777;
-}
-
-#bookmarkpopup #bookmark-submit {
- min-width: 100px;
-}
-
-#bookmarkpopup fieldset fieldset {
- margin-bottom: 10px;
-}
-
-#form_initial_bookmark.form_settings .form_data li {
- margin-bottom: 0px;
-}
-
-#form_new_bookmark.form_settings .bookmarkform-thumbnail {
- position: absolute;
- top: 50px;
- right: 0px;
-}
+++ /dev/null
-var Bookmark = {
-
- // Special XHR that sends in some code to be run
- // when the full bookmark form gets loaded
- BookmarkXHR: function(form)
- {
- SN.U.FormXHR(form, Bookmark.InitBookmarkForm);
- return false;
- },
-
- // Special initialization function just for the
- // second step in the bookmarking workflow
- InitBookmarkForm: function() {
- SN.Init.CheckBoxes();
- $('fieldset fieldset label').inFieldLabels({ fadeOpacity:0 });
- SN.Init.NoticeFormSetup($('#form_new_bookmark'));
- }
-}
-
-$(document).ready(function() {
-
- // Stop normal live event stuff
- $(document).off("submit", "form.ajax");
- $(document).off("click", "form.ajax input[type=submit]");
-
- // Make the bookmark submit super special
- $(document).on('submit', '#form_initial_bookmark', function (e) {
- Bookmark.BookmarkXHR($(this));
- e.stopPropagation();
- return false;
- });
-
- // Restore live event stuff to other forms & submit buttons
- SN.Init.AjaxForms();
-
-});
+++ /dev/null
-//wrap everything in a self-executing anonymous function to avoid conflicts
-(function(){
-
- // smart(x) from Paul Irish
- // http://paulirish.com/2009/throttled-smartresize-jquery-event-handler/
-
- (function($,sr){
-
- // debouncing function from John Hann
- // http://unscriptable.com/index.php/2009/03/20/debouncing-javascript-methods/
- var debounce = function (func, threshold, execAsap) {
- var timeout;
-
- return function debounced () {
- var obj = this, args = arguments;
- function delayed () {
- if (!execAsap)
- func.apply(obj, args);
- timeout = null;
- };
-
- if (timeout)
- clearTimeout(timeout);
- else if (execAsap)
- func.apply(obj, args);
-
- timeout = setTimeout(delayed, threshold || 100);
- };
- }
- jQuery.fn[sr] = function(fn){ return fn ? this.bind('keypress', debounce(fn, 1000)) : this.trigger(sr); };
-
- })(jQuery,'smartkeypress');
-
- function longestWordInString(string)
- {
- var words = string.split(/\s/);
- var longestWord = 0;
- for(var i=0;i<words.length;i++)
- if(words[i].length > longestWord) longestWord = words[i].length;
- return longestWord;
- }
-
- function shorten()
- {
- var $noticeDataText = $('#'+SN.C.S.NoticeDataText);
- var noticeText = $noticeDataText.val();
-
- if(noticeText.length > maxNoticeLength || longestWordInString(noticeText) > maxUrlLength) {
- var original = $noticeDataText.val();
- shortenAjax = $.ajax({
- url: $('address .url')[0].href+'/plugins/ClientSideShorten/shorten',
- data: { text: $noticeDataText.val() },
- dataType: 'text',
- success: function(data) {
- if(original == $noticeDataText.val()) {
- $noticeDataText.val(data).keyup();
- }
- }
- });
- }
- }
-
- $(document).ready(function(){
- $noticeDataText = $('#'+SN.C.S.NoticeDataText);
- $noticeDataText.smartkeypress(function(e){
- //if(typeof(shortenAjax) !== 'undefined') shortenAjax.abort();
- if(e.charCode == '32') {
- shorten();
- }
- });
- $noticeDataText.bind('paste', function() {
- //if(typeof(shortenAjax) !== 'undefined') shortenAjax.abort();
- setTimeout(shorten,1);
- });
- });
-
-})();
+++ /dev/null
-// update the local timeline from a Comet server
-var CometUpdate = function()
-{
- var _server;
- var _timeline;
- var _userid;
- var _replyurl;
- var _favorurl;
- var _deleteurl;
- var _cometd;
-
- return {
- init: function(server, timeline, userid, replyurl, favorurl, deleteurl)
- {
- _cometd = $.cometd; // Uses the default Comet object
- _cometd.init(server);
- _server = server;
- _timeline = timeline;
- _userid = userid;
- _favorurl = favorurl;
- _replyurl = replyurl;
- _deleteurl = deleteurl;
- _cometd.subscribe(timeline, function(message) { RealtimeUpdate.receive(message.data) });
- $(window).unload(function() { _cometd.disconnect(); } );
- }
- }
-}();
+++ /dev/null
-/**
- * Copyright 2008 Mort Bay Consulting Pty. Ltd.
- * Dual licensed under the Apache License 2.0 and the MIT license.
- * ----------------------------------------------------------------------------
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http: *www.apache.org/licenses/LICENSE-2.0
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ----------------------------------------------------------------------------
- * Licensed under the MIT license;
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- * ----------------------------------------------------------------------------
- * $Revision$ $Date$
- */
-(function($)
-{
- /**
- * The constructor for a Comet object.
- * There is a default Comet instance already created at the variable <code>$.cometd</code>,
- * and hence that can be used to start a comet conversation with a server.
- * In the rare case a page needs more than one comet conversation, a new instance can be
- * created via:
- * <pre>
- * var url2 = ...;
- * var cometd2 = new $.Cometd();
- * cometd2.init(url2);
- * </pre>
- */
- $.Cometd = function(name)
- {
- var _name = name || 'default';
- var _logPriorities = { debug: 1, info: 2, warn: 3, error: 4 };
- var _logLevel = 'info';
- var _url;
- var _xd = false;
- var _transport;
- var _status = 'disconnected';
- var _messageId = 0;
- var _clientId = null;
- var _batch = 0;
- var _messageQueue = [];
- var _listeners = {};
- var _backoff = 0;
- var _backoffIncrement = 1000;
- var _maxBackoff = 60000;
- var _scheduledSend = null;
- var _extensions = [];
- var _advice = {};
- var _handshakeProps;
-
- /**
- * Returns the name assigned to this Comet object, or the string 'default'
- * if no name has been explicitely passed as parameter to the constructor.
- */
- this.getName = function()
- {
- return _name;
- };
-
- /**
- * Configures the initial comet communication with the comet server.
- * @param cometURL the URL of the comet server
- */
- this.configure = function(cometURL)
- {
- _configure(cometURL);
- };
-
- function _configure(cometURL)
- {
- _url = cometURL;
- _debug('Initializing comet with url: {}', _url);
-
- // Check immediately if we're cross domain
- // If cross domain, the handshake must not send the long polling transport type
- var urlParts = /(^https?:)?(\/\/(([^:\/\?#]+)(:(\d+))?))?([^\?#]*)/.exec(cometURL);
- if (urlParts[3]) _xd = urlParts[3] != location.host;
-
- // Temporary setup a transport to send the initial handshake
- // The transport may be changed as a result of handshake
- if (_xd)
- _transport = newCallbackPollingTransport();
- else
- _transport = newLongPollingTransport();
- _debug('Initial transport is {}', _transport.getType());
- };
-
- /**
- * Configures and establishes the comet communication with the comet server
- * via a handshake and a subsequent connect.
- * @param cometURL the URL of the comet server
- * @param handshakeProps an object to be merged with the handshake message
- * @see #configure(cometURL)
- * @see #handshake(handshakeProps)
- */
- this.init = function(cometURL, handshakeProps)
- {
- _configure(cometURL);
- _handshake(handshakeProps);
- };
-
- /**
- * Establishes the comet communication with the comet server
- * via a handshake and a subsequent connect.
- * @param handshakeProps an object to be merged with the handshake message
- */
- this.handshake = function(handshakeProps)
- {
- _handshake(handshakeProps);
- };
-
- /**
- * Disconnects from the comet server.
- * @param disconnectProps an object to be merged with the disconnect message
- */
- this.disconnect = function(disconnectProps)
- {
- var bayeuxMessage = {
- channel: '/meta/disconnect'
- };
- var message = $.extend({}, disconnectProps, bayeuxMessage);
- // Deliver immediately
- // The handshake and connect mechanism make use of startBatch(), and in case
- // of a failed handshake the disconnect would not be delivered if using _send().
- _setStatus('disconnecting');
- _deliver([message], false);
- };
-
- /**
- * Marks the start of a batch of application messages to be sent to the server
- * in a single request, obtaining a single response containing (possibly) many
- * application reply messages.
- * Messages are held in a queue and not sent until {@link #endBatch()} is called.
- * If startBatch() is called multiple times, then an equal number of endBatch()
- * calls must be made to close and send the batch of messages.
- * @see #endBatch()
- */
- this.startBatch = function()
- {
- _startBatch();
- };
-
- /**
- * Marks the end of a batch of application messages to be sent to the server
- * in a single request.
- * @see #startBatch()
- */
- this.endBatch = function()
- {
- _endBatch(true);
- };
-
- /**
- * Subscribes to the given channel, performing the given callback in the given scope
- * when a message for the channel arrives.
- * @param channel the channel to subscribe to
- * @param scope the scope of the callback
- * @param callback the callback to call when a message is delivered to the channel
- * @param subscribeProps an object to be merged with the subscribe message
- * @return the subscription handle to be passed to {@link #unsubscribe(object)}
- */
- this.subscribe = function(channel, scope, callback, subscribeProps)
- {
- var subscription = this.addListener(channel, scope, callback);
-
- // Send the subscription message after the subscription registration to avoid
- // races where the server would deliver a message to the subscribers, but here
- // on the client the subscription has not been added yet to the data structures
- var bayeuxMessage = {
- channel: '/meta/subscribe',
- subscription: channel
- };
- var message = $.extend({}, subscribeProps, bayeuxMessage);
- _send(message);
-
- return subscription;
- };
-
- /**
- * Unsubscribes the subscription obtained with a call to {@link #subscribe(string, object, function)}.
- * @param subscription the subscription to unsubscribe.
- */
- this.unsubscribe = function(subscription, unsubscribeProps)
- {
- // Remove the local listener before sending the message
- // This ensures that if the server fails, this client does not get notifications
- this.removeListener(subscription);
- var bayeuxMessage = {
- channel: '/meta/unsubscribe',
- subscription: subscription[0]
- };
- var message = $.extend({}, unsubscribeProps, bayeuxMessage);
- _send(message);
- };
-
- /**
- * Publishes a message on the given channel, containing the given content.
- * @param channel the channel to publish the message to
- * @param content the content of the message
- * @param publishProps an object to be merged with the publish message
- */
- this.publish = function(channel, content, publishProps)
- {
- var bayeuxMessage = {
- channel: channel,
- data: content
- };
- var message = $.extend({}, publishProps, bayeuxMessage);
- _send(message);
- };
-
- /**
- * Adds a listener for bayeux messages, performing the given callback in the given scope
- * when a message for the given channel arrives.
- * @param channel the channel the listener is interested to
- * @param scope the scope of the callback
- * @param callback the callback to call when a message is delivered to the channel
- * @returns the subscription handle to be passed to {@link #removeListener(object)}
- * @see #removeListener(object)
- */
- this.addListener = function(channel, scope, callback)
- {
- // The data structure is a map<channel, subscription[]>, where each subscription
- // holds the callback to be called and its scope.
-
- // Normalize arguments
- if (!callback)
- {
- callback = scope;
- scope = undefined;
- }
-
- var subscription = {
- scope: scope,
- callback: callback
- };
-
- var subscriptions = _listeners[channel];
- if (!subscriptions)
- {
- subscriptions = [];
- _listeners[channel] = subscriptions;
- }
- // Pushing onto an array appends at the end and returns the id associated with the element increased by 1.
- // Note that if:
- // a.push('a'); var hb=a.push('b'); delete a[hb-1]; var hc=a.push('c');
- // then:
- // hc==3, a.join()=='a',,'c', a.length==3
- var subscriptionIndex = subscriptions.push(subscription) - 1;
- _debug('Added listener: channel \'{}\', callback \'{}\', index {}', channel, callback.name, subscriptionIndex);
-
- // The subscription to allow removal of the listener is made of the channel and the index
- return [channel, subscriptionIndex];
- };
-
- /**
- * Removes the subscription obtained with a call to {@link #addListener(string, object, function)}.
- * @param subscription the subscription to unsubscribe.
- */
- this.removeListener = function(subscription)
- {
- var subscriptions = _listeners[subscription[0]];
- if (subscriptions)
- {
- delete subscriptions[subscription[1]];
- _debug('Removed listener: channel \'{}\', index {}', subscription[0], subscription[1]);
- }
- };
-
- /**
- * Removes all listeners registered with {@link #addListener(channel, scope, callback)} or
- * {@link #subscribe(channel, scope, callback)}.
- */
- this.clearListeners = function()
- {
- _listeners = {};
- };
-
- /**
- * Returns a string representing the status of the bayeux communication with the comet server.
- */
- this.getStatus = function()
- {
- return _status;
- };
-
- /**
- * Sets the backoff period used to increase the backoff time when retrying an unsuccessful or failed message.
- * Default value is 1 second, which means if there is a persistent failure the retries will happen
- * after 1 second, then after 2 seconds, then after 3 seconds, etc. So for example with 15 seconds of
- * elapsed time, there will be 5 retries (at 1, 3, 6, 10 and 15 seconds elapsed).
- * @param period the backoff period to set
- * @see #getBackoffIncrement()
- */
- this.setBackoffIncrement = function(period)
- {
- _backoffIncrement = period;
- };
-
- /**
- * Returns the backoff period used to increase the backoff time when retrying an unsuccessful or failed message.
- * @see #setBackoffIncrement(period)
- */
- this.getBackoffIncrement = function()
- {
- return _backoffIncrement;
- };
-
- /**
- * Returns the backoff period to wait before retrying an unsuccessful or failed message.
- */
- this.getBackoffPeriod = function()
- {
- return _backoff;
- };
-
- /**
- * Sets the log level for console logging.
- * Valid values are the strings 'error', 'warn', 'info' and 'debug', from
- * less verbose to more verbose.
- * @param level the log level string
- */
- this.setLogLevel = function(level)
- {
- _logLevel = level;
- };
-
- /**
- * Registers an extension whose callbacks are called for every incoming message
- * (that comes from the server to this client implementation) and for every
- * outgoing message (that originates from this client implementation for the
- * server).
- * The format of the extension object is the following:
- * <pre>
- * {
- * incoming: function(message) { ... },
- * outgoing: function(message) { ... }
- * }
- * Both properties are optional, but if they are present they will be called
- * respectively for each incoming message and for each outgoing message.
- * </pre>
- * @param name the name of the extension
- * @param extension the extension to register
- * @return true if the extension was registered, false otherwise
- * @see #unregisterExtension(name)
- */
- this.registerExtension = function(name, extension)
- {
- var existing = false;
- for (var i = 0; i < _extensions.length; ++i)
- {
- var existingExtension = _extensions[i];
- if (existingExtension.name == name)
- {
- existing = true;
- return false;
- }
- }
- if (!existing)
- {
- _extensions.push({
- name: name,
- extension: extension
- });
- _debug('Registered extension \'{}\'', name);
- return true;
- }
- else
- {
- _info('Could not register extension with name \'{}\': another extension with the same name already exists');
- return false;
- }
- };
-
- /**
- * Unregister an extension previously registered with
- * {@link #registerExtension(name, extension)}.
- * @param name the name of the extension to unregister.
- * @return true if the extension was unregistered, false otherwise
- */
- this.unregisterExtension = function(name)
- {
- var unregistered = false;
- $.each(_extensions, function(index, extension)
- {
- if (extension.name == name)
- {
- _extensions.splice(index, 1);
- unregistered = true;
- _debug('Unregistered extension \'{}\'', name);
- return false;
- }
- });
- return unregistered;
- };
-
- /**
- * Starts a the batch of messages to be sent in a single request.
- * @see _endBatch(deliverMessages)
- */
- function _startBatch()
- {
- ++_batch;
- };
-
- /**
- * Ends the batch of messages to be sent in a single request,
- * optionally delivering messages present in the message queue depending
- * on the given argument.
- * @param deliverMessages whether to deliver the messages in the queue or not
- * @see _startBatch()
- */
- function _endBatch(deliverMessages)
- {
- --_batch;
- if (_batch < 0) _batch = 0;
- if (deliverMessages && _batch == 0 && !_isDisconnected())
- {
- var messages = _messageQueue;
- _messageQueue = [];
- if (messages.length > 0) _deliver(messages, false);
- }
- };
-
- function _nextMessageId()
- {
- return ++_messageId;
- };
-
- /**
- * Converts the given response into an array of bayeux messages
- * @param response the response to convert
- * @return an array of bayeux messages obtained by converting the response
- */
- function _convertToMessages(response)
- {
- if (response === undefined) return [];
- if (response instanceof Array) return response;
- if (response instanceof String || typeof response == 'string') return eval('(' + response + ')');
- if (response instanceof Object) return [response];
- throw 'Conversion Error ' + response + ', typeof ' + (typeof response);
- };
-
- function _setStatus(newStatus)
- {
- _debug('{} -> {}', _status, newStatus);
- _status = newStatus;
- };
-
- function _isDisconnected()
- {
- return _status == 'disconnecting' || _status == 'disconnected';
- };
-
- /**
- * Sends the initial handshake message
- */
- function _handshake(handshakeProps)
- {
- _debug('Starting handshake');
- _clientId = null;
-
- // Start a batch.
- // This is needed because handshake and connect are async.
- // It may happen that the application calls init() then subscribe()
- // and the subscribe message is sent before the connect message, if
- // the subscribe message is not held until the connect message is sent.
- // So here we start a batch to hold temporarly any message until
- // the connection is fully established.
- _batch = 0;
- _startBatch();
-
- // Save the original properties provided by the user
- // Deep copy to avoid the user to be able to change them later
- _handshakeProps = $.extend(true, {}, handshakeProps);
-
- var bayeuxMessage = {
- version: '1.0',
- minimumVersion: '0.9',
- channel: '/meta/handshake',
- supportedConnectionTypes: _xd ? ['callback-polling'] : ['long-polling', 'callback-polling']
- };
- // Do not allow the user to mess with the required properties,
- // so merge first the user properties and *then* the bayeux message
- var message = $.extend({}, handshakeProps, bayeuxMessage);
-
- // We started a batch to hold the application messages,
- // so here we must bypass it and deliver immediately.
- _setStatus('handshaking');
- _deliver([message], false);
- };
-
- function _findTransport(handshakeResponse)
- {
- var transportTypes = handshakeResponse.supportedConnectionTypes;
- if (_xd)
- {
- // If we are cross domain, check if the server supports it, that's the only option
- if ($.inArray('callback-polling', transportTypes) >= 0) return _transport;
- }
- else
- {
- // Check if we can keep long-polling
- if ($.inArray('long-polling', transportTypes) >= 0) return _transport;
-
- // The server does not support long-polling
- if ($.inArray('callback-polling', transportTypes) >= 0) return newCallbackPollingTransport();
- }
- return null;
- };
-
- function _delayedHandshake()
- {
- _setStatus('handshaking');
- _delayedSend(function()
- {
- _handshake(_handshakeProps);
- });
- };
-
- function _delayedConnect()
- {
- _setStatus('connecting');
- _delayedSend(function()
- {
- _connect();
- });
- };
-
- function _delayedSend(operation)
- {
- _cancelDelayedSend();
- var delay = _backoff;
- _debug("Delayed send: backoff {}, interval {}", _backoff, _advice.interval);
- if (_advice.interval && _advice.interval > 0)
- delay += _advice.interval;
- _scheduledSend = _setTimeout(operation, delay);
- };
-
- function _cancelDelayedSend()
- {
- if (_scheduledSend !== null) clearTimeout(_scheduledSend);
- _scheduledSend = null;
- };
-
- function _setTimeout(funktion, delay)
- {
- return setTimeout(function()
- {
- try
- {
- funktion();
- }
- catch (x)
- {
- _debug('Exception during scheduled execution of function \'{}\': {}', funktion.name, x);
- }
- }, delay);
- };
-
- /**
- * Sends the connect message
- */
- function _connect()
- {
- _debug('Starting connect');
- var message = {
- channel: '/meta/connect',
- connectionType: _transport.getType()
- };
- _setStatus('connecting');
- _deliver([message], true);
- _setStatus('connected');
- };
-
- function _send(message)
- {
- if (_batch > 0)
- _messageQueue.push(message);
- else
- _deliver([message], false);
- };
-
- /**
- * Delivers the messages to the comet server
- * @param messages the array of messages to send
- */
- function _deliver(messages, comet)
- {
- // We must be sure that the messages have a clientId.
- // This is not guaranteed since the handshake may take time to return
- // (and hence the clientId is not known yet) and the application
- // may create other messages.
- $.each(messages, function(index, message)
- {
- message['id'] = _nextMessageId();
- if (_clientId) message['clientId'] = _clientId;
- messages[index] = _applyOutgoingExtensions(message);
- });
-
- var self = this;
- var envelope = {
- url: _url,
- messages: messages,
- onSuccess: function(request, response)
- {
- try
- {
- _handleSuccess.call(self, request, response, comet);
- }
- catch (x)
- {
- _debug('Exception during execution of success callback: {}', x);
- }
- },
- onFailure: function(request, reason, exception)
- {
- try
- {
- _handleFailure.call(self, request, messages, reason, exception, comet);
- }
- catch (x)
- {
- _debug('Exception during execution of failure callback: {}', x);
- }
- }
- };
- _debug('Sending request to {}, message(s): {}', envelope.url, JSON.stringify(envelope.messages));
- _transport.send(envelope, comet);
- };
-
- function _applyIncomingExtensions(message)
- {
- for (var i = 0; i < _extensions.length; ++i)
- {
- var extension = _extensions[i];
- var callback = extension.extension.incoming;
- if (callback && typeof callback === 'function')
- {
- _debug('Calling incoming extension \'{}\', callback \'{}\'', extension.name, callback.name);
- message = _applyExtension(extension.name, callback, message) || message;
- }
- }
- return message;
- };
-
- function _applyOutgoingExtensions(message)
- {
- for (var i = 0; i < _extensions.length; ++i)
- {
- var extension = _extensions[i];
- var callback = extension.extension.outgoing;
- if (callback && typeof callback === 'function')
- {
- _debug('Calling outgoing extension \'{}\', callback \'{}\'', extension.name, callback.name);
- message = _applyExtension(extension.name, callback, message) || message;
- }
- }
- return message;
- };
-
- function _applyExtension(name, callback, message)
- {
- try
- {
- return callback(message);
- }
- catch (x)
- {
- _debug('Exception during execution of extension \'{}\': {}', name, x);
- return message;
- }
- };
-
- function _handleSuccess(request, response, comet)
- {
- var messages = _convertToMessages(response);
- _debug('Received response {}', JSON.stringify(messages));
-
- // Signal the transport it can deliver other queued requests
- _transport.complete(request, true, comet);
-
- for (var i = 0; i < messages.length; ++i)
- {
- var message = messages[i];
- message = _applyIncomingExtensions(message);
-
- if (message.advice) _advice = message.advice;
-
- var channel = message.channel;
- switch (channel)
- {
- case '/meta/handshake':
- _handshakeSuccess(message);
- break;
- case '/meta/connect':
- _connectSuccess(message);
- break;
- case '/meta/disconnect':
- _disconnectSuccess(message);
- break;
- case '/meta/subscribe':
- _subscribeSuccess(message);
- break;
- case '/meta/unsubscribe':
- _unsubscribeSuccess(message);
- break;
- default:
- _messageSuccess(message);
- break;
- }
- }
- };
-
- function _handleFailure(request, messages, reason, exception, comet)
- {
- var xhr = request.xhr;
- _debug('Request failed, status: {}, reason: {}, exception: {}', xhr && xhr.status, reason, exception);
-
- // Signal the transport it can deliver other queued requests
- _transport.complete(request, false, comet);
-
- for (var i = 0; i < messages.length; ++i)
- {
- var message = messages[i];
- var channel = message.channel;
- switch (channel)
- {
- case '/meta/handshake':
- _handshakeFailure(xhr, message);
- break;
- case '/meta/connect':
- _connectFailure(xhr, message);
- break;
- case '/meta/disconnect':
- _disconnectFailure(xhr, message);
- break;
- case '/meta/subscribe':
- _subscribeFailure(xhr, message);
- break;
- case '/meta/unsubscribe':
- _unsubscribeFailure(xhr, message);
- break;
- default:
- _messageFailure(xhr, message);
- break;
- }
- }
- };
-
- function _handshakeSuccess(message)
- {
- if (message.successful)
- {
- _debug('Handshake successful');
- // Save clientId, figure out transport, then follow the advice to connect
- _clientId = message.clientId;
-
- var newTransport = _findTransport(message);
- if (newTransport === null)
- {
- throw 'Could not agree on transport with server';
- }
- else
- {
- if (_transport.getType() != newTransport.getType())
- {
- _debug('Changing transport from {} to {}', _transport.getType(), newTransport.getType());
- _transport = newTransport;
- }
- }
-
- // Notify the listeners
- // Here the new transport is in place, as well as the clientId, so
- // the listener can perform a publish() if it wants, and the listeners
- // are notified before the connect below.
- _notifyListeners('/meta/handshake', message);
-
- var action = _advice.reconnect ? _advice.reconnect : 'retry';
- switch (action)
- {
- case 'retry':
- _delayedConnect();
- break;
- default:
- break;
- }
- }
- else
- {
- _debug('Handshake unsuccessful');
-
- var retry = !_isDisconnected() && _advice.reconnect != 'none';
- if (!retry) _setStatus('disconnected');
-
- _notifyListeners('/meta/handshake', message);
- _notifyListeners('/meta/unsuccessful', message);
-
- // Only try again if we haven't been disconnected and
- // the advice permits us to retry the handshake
- if (retry)
- {
- _increaseBackoff();
- _debug('Handshake failure, backing off and retrying in {} ms', _backoff);
- _delayedHandshake();
- }
- }
- };
-
- function _handshakeFailure(xhr, message)
- {
- _debug('Handshake failure');
-
- // Notify listeners
- var failureMessage = {
- successful: false,
- failure: true,
- channel: '/meta/handshake',
- request: message,
- xhr: xhr,
- advice: {
- action: 'retry',
- interval: _backoff
- }
- };
-
- var retry = !_isDisconnected() && _advice.reconnect != 'none';
- if (!retry) _setStatus('disconnected');
-
- _notifyListeners('/meta/handshake', failureMessage);
- _notifyListeners('/meta/unsuccessful', failureMessage);
-
- // Only try again if we haven't been disconnected and the
- // advice permits us to try again
- if (retry)
- {
- _increaseBackoff();
- _debug('Handshake failure, backing off and retrying in {} ms', _backoff);
- _delayedHandshake();
- }
- };
-
- function _connectSuccess(message)
- {
- var action = _isDisconnected() ? 'none' : (_advice.reconnect ? _advice.reconnect : 'retry');
- if (!_isDisconnected()) _setStatus(action == 'retry' ? 'connecting' : 'disconnecting');
-
- if (message.successful)
- {
- _debug('Connect successful');
-
- // End the batch and allow held messages from the application
- // to go to the server (see _handshake() where we start the batch).
- // The batch is ended before notifying the listeners, so that
- // listeners can batch other cometd operations
- _endBatch(true);
-
- // Notify the listeners after the status change but before the next connect
- _notifyListeners('/meta/connect', message);
-
- // Connect was successful.
- // Normally, the advice will say "reconnect: 'retry', interval: 0"
- // and the server will hold the request, so when a response returns
- // we immediately call the server again (long polling)
- switch (action)
- {
- case 'retry':
- _resetBackoff();
- _delayedConnect();
- break;
- default:
- _resetBackoff();
- _setStatus('disconnected');
- break;
- }
- }
- else
- {
- _debug('Connect unsuccessful');
-
- // Notify the listeners after the status change but before the next action
- _notifyListeners('/meta/connect', message);
- _notifyListeners('/meta/unsuccessful', message);
-
- // Connect was not successful.
- // This may happen when the server crashed, the current clientId
- // will be invalid, and the server will ask to handshake again
- switch (action)
- {
- case 'retry':
- _increaseBackoff();
- _delayedConnect();
- break;
- case 'handshake':
- // End the batch but do not deliver the messages until we connect successfully
- _endBatch(false);
- _resetBackoff();
- _delayedHandshake();
- break;
- case 'none':
- _resetBackoff();
- _setStatus('disconnected');
- break;
- }
- }
- };
-
- function _connectFailure(xhr, message)
- {
- _debug('Connect failure');
-
- // Notify listeners
- var failureMessage = {
- successful: false,
- failure: true,
- channel: '/meta/connect',
- request: message,
- xhr: xhr,
- advice: {
- action: 'retry',
- interval: _backoff
- }
- };
- _notifyListeners('/meta/connect', failureMessage);
- _notifyListeners('/meta/unsuccessful', failureMessage);
-
- if (!_isDisconnected())
- {
- var action = _advice.reconnect ? _advice.reconnect : 'retry';
- switch (action)
- {
- case 'retry':
- _increaseBackoff();
- _debug('Connect failure, backing off and retrying in {} ms', _backoff);
- _delayedConnect();
- break;
- case 'handshake':
- _resetBackoff();
- _delayedHandshake();
- break;
- case 'none':
- _resetBackoff();
- break;
- default:
- _debug('Unrecognized reconnect value: {}', action);
- break;
- }
- }
- };
-
- function _disconnectSuccess(message)
- {
- if (message.successful)
- {
- _debug('Disconnect successful');
- _disconnect(false);
- _notifyListeners('/meta/disconnect', message);
- }
- else
- {
- _debug('Disconnect unsuccessful');
- _disconnect(true);
- _notifyListeners('/meta/disconnect', message);
- _notifyListeners('/meta/usuccessful', message);
- }
- };
-
- function _disconnect(abort)
- {
- _cancelDelayedSend();
- if (abort) _transport.abort();
- _clientId = null;
- _setStatus('disconnected');
- _batch = 0;
- _messageQueue = [];
- _resetBackoff();
- };
-
- function _disconnectFailure(xhr, message)
- {
- _debug('Disconnect failure');
- _disconnect(true);
-
- var failureMessage = {
- successful: false,
- failure: true,
- channel: '/meta/disconnect',
- request: message,
- xhr: xhr,
- advice: {
- action: 'none',
- interval: 0
- }
- };
- _notifyListeners('/meta/disconnect', failureMessage);
- _notifyListeners('/meta/unsuccessful', failureMessage);
- };
-
- function _subscribeSuccess(message)
- {
- if (message.successful)
- {
- _debug('Subscribe successful');
- _notifyListeners('/meta/subscribe', message);
- }
- else
- {
- _debug('Subscribe unsuccessful');
- _notifyListeners('/meta/subscribe', message);
- _notifyListeners('/meta/unsuccessful', message);
- }
- };
-
- function _subscribeFailure(xhr, message)
- {
- _debug('Subscribe failure');
-
- var failureMessage = {
- successful: false,
- failure: true,
- channel: '/meta/subscribe',
- request: message,
- xhr: xhr,
- advice: {
- action: 'none',
- interval: 0
- }
- };
- _notifyListeners('/meta/subscribe', failureMessage);
- _notifyListeners('/meta/unsuccessful', failureMessage);
- };
-
- function _unsubscribeSuccess(message)
- {
- if (message.successful)
- {
- _debug('Unsubscribe successful');
- _notifyListeners('/meta/unsubscribe', message);
- }
- else
- {
- _debug('Unsubscribe unsuccessful');
- _notifyListeners('/meta/unsubscribe', message);
- _notifyListeners('/meta/unsuccessful', message);
- }
- };
-
- function _unsubscribeFailure(xhr, message)
- {
- _debug('Unsubscribe failure');
-
- var failureMessage = {
- successful: false,
- failure: true,
- channel: '/meta/unsubscribe',
- request: message,
- xhr: xhr,
- advice: {
- action: 'none',
- interval: 0
- }
- };
- _notifyListeners('/meta/unsubscribe', failureMessage);
- _notifyListeners('/meta/unsuccessful', failureMessage);
- };
-
- function _messageSuccess(message)
- {
- if (message.successful === undefined)
- {
- if (message.data)
- {
- // It is a plain message, and not a bayeux meta message
- _notifyListeners(message.channel, message);
- }
- else
- {
- _debug('Unknown message {}', JSON.stringify(message));
- }
- }
- else
- {
- if (message.successful)
- {
- _debug('Publish successful');
- _notifyListeners('/meta/publish', message);
- }
- else
- {
- _debug('Publish unsuccessful');
- _notifyListeners('/meta/publish', message);
- _notifyListeners('/meta/unsuccessful', message);
- }
- }
- };
-
- function _messageFailure(xhr, message)
- {
- _debug('Publish failure');
-
- var failureMessage = {
- successful: false,
- failure: true,
- channel: message.channel,
- request: message,
- xhr: xhr,
- advice: {
- action: 'none',
- interval: 0
- }
- };
- _notifyListeners('/meta/publish', failureMessage);
- _notifyListeners('/meta/unsuccessful', failureMessage);
- };
-
- function _notifyListeners(channel, message)
- {
- // Notify direct listeners
- _notify(channel, message);
-
- // Notify the globbing listeners
- var channelParts = channel.split("/");
- var last = channelParts.length - 1;
- for (var i = last; i > 0; --i)
- {
- var channelPart = channelParts.slice(0, i).join('/') + '/*';
- // We don't want to notify /foo/* if the channel is /foo/bar/baz,
- // so we stop at the first non recursive globbing
- if (i == last) _notify(channelPart, message);
- // Add the recursive globber and notify
- channelPart += '*';
- _notify(channelPart, message);
- }
- };
-
- function _notify(channel, message)
- {
- var subscriptions = _listeners[channel];
- if (subscriptions && subscriptions.length > 0)
- {
- for (var i = 0; i < subscriptions.length; ++i)
- {
- var subscription = subscriptions[i];
- // Subscriptions may come and go, so the array may have 'holes'
- if (subscription)
- {
- try
- {
- _debug('Notifying subscription: channel \'{}\', callback \'{}\'', channel, subscription.callback.name);
- subscription.callback.call(subscription.scope, message);
- }
- catch (x)
- {
- // Ignore exceptions from callbacks
- _warn('Exception during execution of callback \'{}\' on channel \'{}\' for message {}, exception: {}', subscription.callback.name, channel, JSON.stringify(message), x);
- }
- }
- }
- }
- };
-
- function _resetBackoff()
- {
- _backoff = 0;
- };
-
- function _increaseBackoff()
- {
- if (_backoff < _maxBackoff) _backoff += _backoffIncrement;
- };
-
- var _error = this._error = function(text, args)
- {
- _log('error', _format.apply(this, arguments));
- };
-
- var _warn = this._warn = function(text, args)
- {
- _log('warn', _format.apply(this, arguments));
- };
-
- var _info = this._info = function(text, args)
- {
- _log('info', _format.apply(this, arguments));
- };
-
- var _debug = this._debug = function(text, args)
- {
- _log('debug', _format.apply(this, arguments));
- };
-
- function _log(level, text)
- {
- var priority = _logPriorities[level];
- var configPriority = _logPriorities[_logLevel];
- if (!configPriority) configPriority = _logPriorities['info'];
- if (priority >= configPriority)
- {
- if (window.console) window.console.log(text);
- }
- };
-
- function _format(text)
- {
- var braces = /\{\}/g;
- var result = '';
- var start = 0;
- var count = 0;
- while (braces.test(text))
- {
- result += text.substr(start, braces.lastIndex - start - 2);
- var arg = arguments[++count];
- result += arg !== undefined ? arg : '{}';
- start = braces.lastIndex;
- }
- result += text.substr(start, text.length - start);
- return result;
- };
-
- function newLongPollingTransport()
- {
- return $.extend({}, new Transport('long-polling'), new LongPollingTransport());
- };
-
- function newCallbackPollingTransport()
- {
- return $.extend({}, new Transport('callback-polling'), new CallbackPollingTransport());
- };
-
- /**
- * Base object with the common functionality for transports.
- * The key responsibility is to allow at most 2 outstanding requests to the server,
- * to avoid that requests are sent behind a long poll.
- * To achieve this, we have one reserved request for the long poll, and all other
- * requests are serialized one after the other.
- */
- var Transport = function(type)
- {
- var _maxRequests = 2;
- var _requestIds = 0;
- var _cometRequest = null;
- var _requests = [];
- var _packets = [];
-
- this.getType = function()
- {
- return type;
- };
-
- this.send = function(packet, comet)
- {
- if (comet)
- _cometSend(this, packet);
- else
- _send(this, packet);
- };
-
- function _cometSend(self, packet)
- {
- if (_cometRequest !== null) throw 'Concurrent comet requests not allowed, request ' + _cometRequest.id + ' not yet completed';
-
- var requestId = ++_requestIds;
- _debug('Beginning comet request {}', requestId);
-
- var request = {id: requestId};
- _debug('Delivering comet request {}', requestId);
- self.deliver(packet, request);
- _cometRequest = request;
- };
-
- function _send(self, packet)
- {
- var requestId = ++_requestIds;
- _debug('Beginning request {}, {} other requests, {} queued requests', requestId, _requests.length, _packets.length);
-
- var request = {id: requestId};
- // Consider the comet request which should always be present
- if (_requests.length < _maxRequests - 1)
- {
- _debug('Delivering request {}', requestId);
- self.deliver(packet, request);
- _requests.push(request);
- }
- else
- {
- _packets.push([packet, request]);
- _debug('Queued request {}, {} queued requests', requestId, _packets.length);
- }
- };
-
- this.complete = function(request, success, comet)
- {
- if (comet)
- _cometComplete(request);
- else
- _complete(this, request, success);
- };
-
- function _cometComplete(request)
- {
- var requestId = request.id;
- if (_cometRequest !== request) throw 'Comet request mismatch, completing request ' + requestId;
-
- // Reset comet request
- _cometRequest = null;
- _debug('Ended comet request {}', requestId);
- };
-
- function _complete(self, request, success)
- {
- var requestId = request.id;
- var index = $.inArray(request, _requests);
- // The index can be negative the request has been aborted
- if (index >= 0) _requests.splice(index, 1);
- _debug('Ended request {}, {} other requests, {} queued requests', requestId, _requests.length, _packets.length);
-
- if (_packets.length > 0)
- {
- var packet = _packets.shift();
- if (success)
- {
- _debug('Dequeueing and sending request {}, {} queued requests', packet[1].id, _packets.length);
- _send(self, packet[0]);
- }
- else
- {
- _debug('Dequeueing and failing request {}, {} queued requests', packet[1].id, _packets.length);
- // Keep the semantic of calling response callbacks asynchronously after the request
- setTimeout(function() { packet[0].onFailure(packet[1], 'error'); }, 0);
- }
- }
- };
-
- this.abort = function()
- {
- for (var i = 0; i < _requests.length; ++i)
- {
- var request = _requests[i];
- _debug('Aborting request {}', request.id);
- if (request.xhr) request.xhr.abort();
- }
- if (_cometRequest)
- {
- _debug('Aborting comet request {}', _cometRequest.id);
- if (_cometRequest.xhr) _cometRequest.xhr.abort();
- }
- _cometRequest = null;
- _requests = [];
- _packets = [];
- };
- };
-
- var LongPollingTransport = function()
- {
- this.deliver = function(packet, request)
- {
- request.xhr = $.ajax({
- url: packet.url,
- type: 'POST',
- contentType: 'text/json;charset=UTF-8',
- beforeSend: function(xhr)
- {
- xhr.setRequestHeader('Connection', 'Keep-Alive');
- return true;
- },
- data: JSON.stringify(packet.messages),
- success: function(response) { packet.onSuccess(request, response); },
- error: function(xhr, reason, exception) { packet.onFailure(request, reason, exception); }
- });
- };
- };
-
- var CallbackPollingTransport = function()
- {
- var _maxLength = 2000;
- this.deliver = function(packet, request)
- {
- // Microsoft Internet Explorer has a 2083 URL max length
- // We must ensure that we stay within that length
- var messages = JSON.stringify(packet.messages);
- // Encode the messages because all brackets, quotes, commas, colons, etc
- // present in the JSON will be URL encoded, taking many more characters
- var urlLength = packet.url.length + encodeURI(messages).length;
- _debug('URL length: {}', urlLength);
- // Let's stay on the safe side and use 2000 instead of 2083
- // also because we did not count few characters among which
- // the parameter name 'message' and the parameter 'jsonp',
- // which sum up to about 50 chars
- if (urlLength > _maxLength)
- {
- var x = packet.messages.length > 1 ?
- 'Too many bayeux messages in the same batch resulting in message too big ' +
- '(' + urlLength + ' bytes, max is ' + _maxLength + ') for transport ' + this.getType() :
- 'Bayeux message too big (' + urlLength + ' bytes, max is ' + _maxLength + ') ' +
- 'for transport ' + this.getType();
- // Keep the semantic of calling response callbacks asynchronously after the request
- _setTimeout(function() { packet.onFailure(request, 'error', x); }, 0);
- }
- else
- {
- $.ajax({
- url: packet.url,
- type: 'GET',
- dataType: 'jsonp',
- jsonp: 'jsonp',
- beforeSend: function(xhr)
- {
- xhr.setRequestHeader('Connection', 'Keep-Alive');
- return true;
- },
- data:
- {
- // In callback-polling, the content must be sent via the 'message' parameter
- message: messages
- },
- success: function(response) { packet.onSuccess(request, response); },
- error: function(xhr, reason, exception) { packet.onFailure(request, reason, exception); }
- });
- }
- };
- };
- };
-
- /**
- * The JS object that exposes the comet API to applications
- */
- $.cometd = new $.Cometd(); // The default instance
-
-})(jQuery);
+++ /dev/null
-
-/**
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Plugin
- * @package StatusNet
- * @author Behrooz shabani (everplays) - <behrooz@rock.com>
- * @copyright 2009-2010 Behrooz shabani
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
- *
- */
-
-(function($){
- $.fn.isRTL = function(str){
- if(typeof str != typeof "" || str.length<1)
- return false;
- var cc = str.charCodeAt(0);
- if(cc>=1536 && cc<=1791) // arabic, persian, ...
- return true;
- if(cc>=65136 && cc<=65279) // arabic peresent 2
- return true;
- if(cc>=64336 && cc<=65023) // arabic peresent 1
- return true;
- if(cc>=1424 && cc<=1535) // hebrew
- return true;
- if(cc>=64256 && cc<=64335) // hebrew peresent
- return true;
- if(cc>=1792 && cc<=1871) // Syriac
- return true;
- if(cc>=1920 && cc<=1983) // Thaana
- return true;
- if(cc>=1984 && cc<=2047) // NKo
- return true;
- if(cc>=11568 && cc<=11647) // Tifinagh
- return true;
- return false;
- };
- var origInit = SN.Init.NoticeFormSetup;
- SN.Init.NoticeFormSetup = function(form) {
- origInit(form);
- var tArea = form.find(".notice_data-text:first");
- if (tArea.length > 0) {
- var tCleaner = new RegExp('@[^ ]+|![^ ]+|#[^ ]+|^RT[: ]{1}| RT | RT: |^RD[: ]{1}| RD | RD: |[♺♻:]+', 'g')
- var ping = function(){
- var cleaned = tArea.val().replace(tCleaner, '').replace(/^[ ]+/, '');
- if($().isRTL(cleaned))
- tArea.css('direction', 'rtl');
- else
- tArea.css('direction', 'ltr');
- };
- tArea.bind('keyup cut paste', function() {
- // cut/paste trigger before the change
- window.setTimeout(ping, 0);
- });
- form.bind('reset', function() {
- tArea.css('direction', 'ltr');
- });
- }
- };
-})(jQuery);
+++ /dev/null
-/* CSS file for the Directory plugin */
-
-div#profile_directory div.alpha_nav {
- overflow: hidden;
- width: 100%;
- text-align: center;
-}
-
-/* XXX: this needs serious CSS foo */
-div#profile_directory div.alpha_nav > a {
- border-left: 1px solid #000;
- padding-left: 2px;
-}
-div#profile_directory div.alpha_nav > a.first {
- border-left: none;
-}
-
-div#profile_directory div.alpha_nav a:link {
- text-decoration: none;
-}
-
-div#profile_directory div.alpha_nav a:visited {
- text-decoration: none;
-}
-div#profile_directory div.alpha_nav a:active {
- text-decoration: none;
-}
-div#profile_directory div.alpha_nav a:hover {
- text-decoration: underline; color: blue;
-}
-
-div#profile_directory div.alpha_nav a.current {
- background-color:#9BB43E;
-}
-
-table.profile_list {
- width: 100%;
-}
-
-table.profile_list tr {
- float: none;
-}
-
-table.profie_list td {
- width: 100%;
- padding: 0;
-}
-
-
-th.current {
- background-image: url(../images/control_arrow_down.gif);
- background-repeat: no-repeat;
- background-position: 60% 2px;
-}
-
-th.current.reverse {
- background-image: url(../images/control_arrow_up.gif);
- background-repeat: no-repeat;
- background-position: 60% 2px;
-}
+++ /dev/null
-// XXX: Should I do crazy SN.X.Y.Z.A namespace instead?
-var SN_WHITELIST = SN_WHITELIST || {};
-
-SN_WHITELIST.updateButtons = function () {
- $("ul > li > a.remove_row").show();
- $("ul > li > a.add_row").hide();
-
- var lis = $('ul > li > input[name^="username[]"]');
- if (lis.length === 1) {
- $("ul > li > a.remove_row").hide();
- } else {
- $("ul > li > a.remove_row:first").show();
- }
- $("ul > li > a.add_row:last").show();
-};
-
-SN_WHITELIST.resetRow = function (row) {
- $("input", row).val('');
- // Make sure the default domain is the first selection
- $("select option:first", row).val();
- $("a.remove_row", row).show();
-};
-
-SN_WHITELIST.addRow = function () {
- var row = $(this).closest("li");
- var newRow = row.clone();
- $(row).find('a.add_row').hide();
- SN_WHITELIST.resetRow(newRow);
- $(newRow).insertAfter(row).show("blind", "fast", function () {
- SN_WHITELIST.updateButtons();
- });
-};
-
-SN_WHITELIST.removeRow = function () {
- var that = this;
-
- $("#confirm-dialog").dialog({
- buttons : {
- "Confirm" : function () {
- $(this).dialog("close");
- $(that).closest("li").hide("blind", "fast", function () {
- $(this).remove();
- SN_WHITELIST.updateButtons();
- });
- },
- "Cancel" : function () {
- $(this).dialog("close");
- }
- }
- });
-
- if ($(this).closest('li').find(':input[name^=username]').val()) {
- $("#confirm-dialog").dialog("open");
- } else {
- $(that).closest("li").hide("blind", "fast", function () {
- $(this).remove();
- SN_WHITELIST.updateButtons();
- });
- }
-};
-
-$(document).ready(function () {
- $("#confirm-dialog").dialog({
- autoOpen: false,
- modal: true
- });
-
- $(document).on('click', '.add_row', SN_WHITELIST.addRow);
- $(document).on('click', '.remove_row', SN_WHITELIST.removeRow);
-
- SN_WHITELIST.updateButtons();
-});
+++ /dev/null
-/* Event specific styles */
-
-.event-tags li { display: inline; }
-.event-mentions li { display: inline; }
-.event-avatar { float: left; }
-.event-notice-count { float: right; }
-.event-info { float: left; }
-.event-title { margin-left: 0px; }
-.ui-autocomplete {
- max-height: 100px;
- overflow-y: auto;
- /* prevent horizontal scrollbar */
- overflow-x: hidden;
- /* add padding to account for vertical scrollbar */
- padding-right: 20px;
-}
-
-.attending-list { list-style-type: none; float: left; width: 100%; }
-
-#form_event_rsvp { clear: left; }
-
-li.rsvp-list { float: left; clear: left; }
-
-li.rsvp-list ul.entities {
- display:inline;
-}
-li.rsvp-list .entities li {
- list-style-type: none;
- margin-right: 3px;
- margin-bottom: 8px;
- display: inline;
-}
-li.rsvp-list .entities li .u-photo {
- margin: 0 !important;
- float: none !important;
-}
-
-.notice .h-event div {
- margin-bottom: 8px;
-}
-
-.event-info {
- margin-left: 0px !important;
- margin-top: 2px !important;
-}
-
-.notice .event-info + .notice-options {
- margin-top: 14px;
-}
-
-.notice .threaded-replies .event-info + .notice-options {
- margin-top: 20px;
-}
-
-#form_event_rsvp #new_rsvp_data {
- display: inline;
- margin: 10px 0px;
-}
-
-#form_event_rsvp input.submit {
- height: auto;
- padding: 0px 10px;
- margin-left: 10px;
- color:#fff;
- font-weight: bold;
- text-transform: uppercase;
- font-size: 1.1em;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
- border: 1px solid #d7621c;
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- background: #FB6104;
- background: -moz-linear-gradient(top, #ff9d63 0%, #fb6104 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9d63), color-stop(100%,#fb6104));
- background: -webkit-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- background: -o-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- background: -ms-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9d63', endColorstr='#fb6104',GradientType=0 );
- background: linear-gradient(top, #ff9d63 0%,#fb6104 100%);
-}
-
-#form_event_rsvp input.submit:hover {
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
- background: #ff9d63;
- background: -moz-linear-gradient(top, #fb6104 0%, #fc8035 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fb6104), color-stop(100%,#fc8035));
- background: -webkit-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- background: -o-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- background: -ms-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb6104', endColorstr='#fc8035',GradientType=0 );
- background: linear-gradient(top, #fb6104 0%,#fc8035 100%);
-}
-
-#wrap .h-event form.processing input.submit {
- text-indent: 0;
- background: #ff9d63;
-}
-
-#input_form_event .form_settings .form_data {
- float: left;
-}
-
-#input_form_event .form_settings .form_data li {
- float: left;
- width: auto;
-}
-
-#input_form_event .form_settings .form_data label {
- width: auto;
-}
-
-label[for=event-starttime], label[for=event-endtime] {
- display: none !important;
-}
-
-#event-starttime, #event-endtime {
- margin-top: -1px;
- margin-bottom: -1px;
- height: 2em;
-}
-
-#event-startdate, #event-enddate {
- margin-right: 20px;
- width: 120px;
-}
+++ /dev/null
-$(document).ready(function() {
-
- // get current time from server
- var today = new Date($('now').val());
-
- $("#event-startdate").datepicker({
- // Don't let the user set a start date < before today
- minDate: today,
- onClose: onStartDateSelected
- });
-
- $("#event-enddate").datepicker({
- minDate: today,
- onClose: onEndDateSelected
- });
-
- $("#event-starttime").change(function(e) {
- var tz = $("#tz").val();
-
- var startDate = $("#event-startdate").val();
- var startTime = $("#event-starttime option:selected").val().replace(/(pm|am)/, ' $1');
- var startStr = startDate + ' ' + startTime + ' ' + tz;
-
- var endDate = $("#event-enddate").val();
- var endTime = $("#event-endtime option:selected").val();
- var endStr = endDate + ' ' + endTime.replace(/(pm|am)/, ' $1') + ' ' + tz;
-
- // just need to compare hours
- var start = new Date(startStr);
- var end = new Date(endStr);
-
- updateTimes(startStr, (startDate === endDate), function (data) {
- var times = [];
- $.each(data, function(key, val) {
- times.push('<option value="' + key + '">' + val + '</option>');
- });
- $("#event-endtime").html(times.join(''));
-
- if (start > end) {
- $("#event-endtime").val(startTime).attr("selected", "selected");
- } else {
- $("#event-endtime").val(endTime).attr("selected", "selected");
- }
- });
-
- });
-
- $("#event-endtime").change(function(e) {
- var HOUR = 60 * 60 * 1000;
- var tz = $("#tz").val();
- var startDate = $("#event-startdate").val();
- var endDate = $("#event-enddate").val();
- var starttime = $("#event-starttime option:selected").val();
- var endtime = $("#event-endtime option:selected").val();
- var endtimeText = $("#event-endtime option:selected").text();
-
- // If the end time is in the next day then update the start date
- if (startDate === endDate) {
- var startstr = startDate + ' ' + starttime.replace(/(pm|am)/, ' $1') + ' ' + tz;
- var start = new Date(startstr);
- var matches = endtimeText.match(/\(.*\)/);
- var hours;
- if (matches) {
- hours = matches[0].substr(1).split(' ')[0]; // get x from (x hours)
- if (hours) {
- if (hours == 30) {
- hours = .5; // special case: x == 30 from (30 mins)
- }
- var end = new Date(start.getTime() + (hours * HOUR));
- if (end.getDate() > start.getDate()) {
- $("#event-enddate").datepicker('setDate', end);
- var endstr = endDate + ' 12:00 am ' + tz;
- updateTimes(endstr, false, function(data) {
- var times = [];
- $.each(data, function(key, val) {
- times.push('<option value="' + key + '">' + val + '</option>');
- });
- $("#event-endtime").html(times.join(''));
-
- if (start > end) {
- $("#event-endtime").val(starttime).attr("selected", "selected");
- } else {
- $("#event-endtime").val(endtime).attr("selected", "selected");
- }
- });
- }
- }
- }
- }
- });
-
- function onStartDateSelected(dateText, inst) {
- var tz = $("#tz").val();
- var startTime = $("#event-starttime option:selected").val();
- var startDateTime = new Date(dateText + ' ' + startTime.replace(/(pm|am)/, ' $1') + ' ' + tz);
-
- // When we update the start date and time, we need to update the end date and time
- // to make sure they are equal or in the future
- $("#event-enddate").datepicker('option', 'minDate', startDateTime);
-
- recalculateTimes();
- }
-
- function onEndDateSelected(dateText, inst) {
- recalculateTimes();
- }
-
- function recalculateTimes(showDuration) {
- var tz = $("#tz").val();
-
- var startDate = $("#event-startdate").val();
- var startTime = $("#event-starttime option:selected").val();
- var startStr = startDate + ' ' + startTime.replace(/(pm|am)/, ' $1') + ' ' + tz;
- var startDateTime = new Date(startStr);
-
- var endDate = $("#event-enddate").val();
- var endTime = $("#event-endtime option:selected").val();
- var endDateTime = new Date(endDate + ' ' + endTime.replace(/(pm|am)/, ' $1') + ' ' + tz);
- var showDuration = true;
-
- if (endDateTime.getDate() !== startDateTime.getDate()) {
- starStr = endDate + ' 12:00 am ' + tz;
- showDuration = false;
- }
-
- updateTimes(startStr, showDuration, function(data) {
- var times = [];
- $.each(data, function(key, val) {
- times.push('<option value="' + key + '">' + val + '</option>');
- });
- $("#event-endtime").html(times.join(''));
- if (startDateTime > endDateTime) {
- $("#event-endtime").val(startTime).attr("selected", "selected");
- } else {
- $("#event-endtime").val(endTime).attr("selected", "selected");
- }
- });
- }
-
- function updateTimes(start, duration, onSuccess) {
- $.getJSON($('#timelist_action_url').val(), {start: start, ajax: true, duration: duration}, onSuccess);
- }
-
-});
+++ /dev/null
-/* Note the #content is only needed to override weird crap in default styles */
-
-#profiledetail .entity_actions {
- margin-top: 0px;
- margin-bottom: 0px;
-}
-
-#profiledetail #content h3 {
- margin-bottom: 5px;
-}
-
-#content table.extended-profile {
- width: 100%;
- border-collapse: separate;
- border-spacing: 0px 8px;
- margin-bottom: 10px;
-}
-
-#content table.extended-profile th {
- color: #777;
- background-color: #ECECF2;
- width: 150px;
- text-align: right;
- padding: 2px 8px 2px 0px;
-}
-
-#content table.extended-profile th.employer, #content table.extended-profile th.institution {
- display: none;
-}
-
-#content table.extended-profile td {
- padding: 2px 0px 2px 8px;
-}
-
-.experience-item, .education-item {
- float: left;
- padding-bottom: 4px;
-}
-
-.experience-item .label, .education-item .label {
- float: left;
- clear: left;
- position: relative;
- left: -8px;
- margin-right: 2px;
- margin-bottom: 8px;
- color: #777;
- background-color: #ECECF2;
- width: 150px;
- text-align: right;
- padding: 2px 8px 2px 0px;
-}
-
-.experience-item .field, .education-item .field {
- float: left;
- padding-top: 2px;
- padding-bottom: 2px;
- max-width: 350px;
-}
-
-#profiledetailsettings #content table.extended-profile td {
- padding: 0px 0px 0px 8px;
-}
-
-#profiledetailsettings input {
- margin-right: 8px;
-}
-
-.form_settings .extended-profile label {
- display: none;
-}
-
-.extended-profile textarea {
- width: 280px;
-}
-
-.extended-profile input[type=text] {
- width: 280px;
-}
-
-.extended-profile .phone-item input[type=text], .extended-profile .im-item input[type=text], .extended-profile .website-item input[type=text] {
- width: 175px;
-}
-
-.extended-profile input.hasDatepicker {
- width: 100px;
-}
-
-.experience-item input[type=text], .education-item input[type=text] {
- float: left;
-}
-
-.extended-profile .current-checkbox {
- float: left;
- position: relative;
- top: 2px;
-}
-
-.form_settings .extended-profile input.checkbox {
- margin-left: 0px;
- left: 0px;
- top: 2px;
-}
-
-.form_settings .extended-profile label.checkbox {
- max-width: 100%;
- float: none;
- display: inline;
- left: -20px;
-}
-
-.extended-profile select {
- padding-right: 2px;
- font-size: 0.88em;
-}
-
-.extended-profile a.add_row, .extended-profile a.remove_row {
- display: block;
- height: 16px;
- width: 16px;
- overflow: hidden;
- background-image: url('../../../theme/base/images/icons/icons-01.gif');
- background-repeat: no-repeat;
-}
-
-.extended-profile a.remove_row {
- background-position: 0px -1252px;
- float: right;
- position: relative;
- top: 6px;
- line-height: 4em;
-}
-
-.extended-profile a.add_row {
- clear: both;
- position: relative;
- top: 6px;
- left: 2px;
- background-position: 0px -1186px;
- width: 120px;
- padding-left: 20px;
- line-height: 1.2em;
-}
-
-#content table.extended-profile .supersizeme th {
- border-bottom: 28px solid #fff;
-}
-
-#profiledetailsettings .experience-item, #profiledetailsettings .education-item {
- margin-bottom: 10px;
- width: 100%;
-}
-
-#profiledetailsettings .education-item textarea {
- float: left;
- margin-bottom: 8px;
-}
-
-#profiledetailsettings tr:last-child .experience-item, #profiledetailsettings tr:last-child .education-item {
- margin-bottom: 0px;
-}
-
-#profiledetailsettings .experience-item a.add_row, #profiledetailsettings .education-item a.add_row {
- left: 160px;
-}
+++ /dev/null
-var SN_EXTENDED = SN_EXTENDED || {};
-
-SN_EXTENDED.reorder = function (cls) {
-
- var divs = $('div[class=' + cls + ']');
-
- $(divs).each(function (i, div) {
- $(div).find('a.add_row').hide();
- $(div).find('a.remove_row').show();
- SN_EXTENDED.replaceIndex(SN_EXTENDED.rowIndex(div), i);
- });
-
- var lastDiv = $(divs).last().closest('tr');
- lastDiv.addClass('supersizeme');
-
- $(divs).last().find('a.add_row').show();
-
- if (divs.length == 1) {
- $(divs).find('a.remove_row').fadeOut("slow");
- }
-};
-
-SN_EXTENDED.rowIndex = function (div) {
- var idstr = $(div).attr('id');
- var id = idstr.match(/\d+/);
- return id;
-};
-
-SN_EXTENDED.rowCount = function (cls) {
- var divs = $.find('div[class=' + cls + ']');
- return divs.length;
-};
-
-SN_EXTENDED.replaceIndex = function (elem, oldIndex, newIndex) {
- $(elem).find('*').each(function () {
- $.each(this.attributes, function (i, attrib) {
- var regexp = /extprofile-.*-\d.*/;
- var value = attrib.value;
- var match = value.match(regexp);
- if (match !== null) {
- attrib.value = value.replace("-" + oldIndex, "-" + newIndex);
- }
- });
- });
-}
-
-SN_EXTENDED.resetRow = function (elem) {
- $(elem).find('input, textarea').attr('value', '');
- $(elem).find('input').removeAttr('disabled');
- $(elem).find("select option[value='office']").attr("selected", true);
- $(elem).find("input:checkbox").attr('checked', false);
- $(elem).find("input[name$=-start], input[name$=-end]").each(function () {
- $(this).removeClass('hasDatepicker');
- $(this).datepicker({ dateFormat: 'd M yy' });
- });
-};
-
-SN_EXTENDED.addRow = function () {
- var div = $(this).closest('div');
- var id = div.attr('id');
- var cls = div.attr('class');
- var index = id.match(/\d+/);
- var newIndex = parseInt(index) + 1;
- var newtr = $(div).closest('tr').removeClass('supersizeme').clone();
- SN_EXTENDED.replaceIndex(newtr, index, newIndex);
- SN_EXTENDED.resetRow(newtr);
- $(div).closest('tr').after(newtr);
- SN_EXTENDED.reorder(cls);
-};
-
-SN_EXTENDED.removeRow = function () {
-
- var div = $(this).closest('div');
- var id = $(div).attr('id');
- var cls = $(div).attr('class');
- var that = this;
-
- $("#confirm-dialog").dialog({
- buttons : {
- "Confirm" : function () {
- $(this).dialog("close");
- var target = $(that).closest('tr');
- target.fadeOut("slow", function () {
- $(target).remove();
- SN_EXTENDED.reorder(cls);
- });
- },
- "Cancel" : function () {
- $(this).dialog("close");
- }
- }
- });
-
- var cnt = SN_EXTENDED.rowCount(cls);
-
- if (cnt > 1) {
- $("#confirm-dialog").dialog("open");
- }
-};
-
-$(document).ready(function () {
-
- $("#confirm-dialog").dialog({
- autoOpen: false,
- modal: true
- });
-
- $("input#extprofile-manager").autocomplete({
- source: 'finduser',
- minLength: 2 });
-
- $("input[name$=-start], input[name$=-end], #extprofile-birthday").datepicker({ dateFormat: 'd M yy' });
-
- var multifields = ["phone-item", "experience-item", "education-item", "im-item", 'website-item'];
-
- for (f in multifields) {
- SN_EXTENDED.reorder(multifields[f]);
- }
-
- $("input#extprofile-manager").autocomplete({
- source: 'finduser',
- minLength: 2 });
-
- $(document).on('click', '.add_row', SN_EXTENDED.addRow);
- $(document).on('click', '.remove_row', SN_EXTENDED.removeRow);
-
- $('input:checkbox[name$=current]').each(function () {
- var input = $(this).parent().siblings('input[id$=-end]');
- if ($(this).is(':checked')) {
- $(input).attr('disabled', 'true');
- }
- });
-
- $(document).on('click', 'input:checkbox[name$=current]', function () {
- var input = $(this).parent().siblings('input[id$=-end]');
- if ($(this).is(':checked')) {
- $(input).val('');
- $(input).attr('disabled', 'true');
- } else {
- $(input).removeAttr('disabled');
- }
- });
-
-});
+++ /dev/null
-function increasePhotoSize() {
- $('.photoingallery, .albumingallery').each(function(index) {
- this.height *= 1.1;
- this.width *= 1.1;
- });
- return false;
-}
-
-function decreasePhotoSize() {
- $('.photoingallery, .albumingallery').each(function(index) {
- this.height /= 1.1;
- this.width /= 1.1;
- });
- return false;
-}
-
-function scalePhotosToSize(size) {
- $('.photoingallery, .albumingallery').each(function(index) {
- if(this.height > this.width) {
- this.width = this.width*size/this.height;
- this.height = size;
- }
- else {
- this.height = this.height*size/this.width;
- this.width = size;
- }
- });
- return false;
-}
\ No newline at end of file
+++ /dev/null
-.photocontainer, .albumcontainer {
- display: block;
- background-color: yellow;
- float: left;
- padding: 20px;
- margin: 15px;
-}
-
-.photodescription {
- display: block;
- background-color: #dddddd;
- padding: 20px;
- margin: 15px;
-}
\ No newline at end of file
+++ /dev/null
-SN.U.NoticeReplySet = function(nick,id) {
- $('div.replyform').hide();
- $('div#form'+id).show();
-}
+++ /dev/null
-.biotitle {
- font-weight: bold;
-}
-.biovalue {
- font-style: italic;
-}
-#showstream ol.notices ol.notices {
- background-image: url(/plugins/GNUsocialProfileExtensions/res/bgstripe.gif);
- background-repeat: repeat-y;
- background-position: left top;
- padding-left: 15px;
- color: #333333;
-}
-#showstream ol.notices ol.notices ol.notices {
- padding-left: 5px;
-}
-div.replyform {
- display: none;
- padding-left: 15px;
-}
-.replyform .form_notice {
- width: 75%;
-}
\ No newline at end of file
+++ /dev/null
-
-// notices
-jQuery(document).ready(function($){
- $('notices_primary').infinitescroll({
- debug: false,
- infiniteScroll : !infinite_scroll_on_next_only,
- nextSelector : 'body#public li.nav_next a,'+
- 'body#all li.nav_next a,'+
- 'body#showstream li.nav_next a,'+
- 'body#replies li.nav_next a,'+
- 'body#showfavorites li.nav_next a,'+
- 'body#showgroup li.nav_next a,'+
- 'body#favorited li.nav_next a',
- loadingImg : ajax_loader_url,
- text : "<em>Loading the next set of posts...</em>",
- donetext : "<em>Congratulations, you\'ve reached the end of the Internet.</em>",
- navSelector : "#pagination",
- contentSelector : "#notices_primary ol.notices",
- itemSelector : "#notices_primary ol.notices > li"
- },function(){
- // Reply button and attachment magic need to be set up
- // for each new notice.
- // DO NOT run SN.Init.Notices() which will duplicate stuff.
- $(this).find('.notice').each(function() {
- SN.U.NoticeReplyTo($(this));
- SN.U.NoticeWithAttachment($(this));
- });
-
- // moving the loaded notices out of their container
- $('#infscr-loading').remove();
- var ids_to_append = Array(); var i=0;
- $.each($('.infscr-pages').children('.notice'),function(){
-
- // remove dupes
- if($('.threaded-notices > #' + $(this).attr('id')).length > 0) {
- $(this).remove();
- }
-
- // keep new unique notices
- else {
- ids_to_append[i] = $(this).attr('id');
- i++;
- }
- });
- var loaded_html = $('.infscr-pages').html();
- $('.infscr-pages').remove();
-
- // no results
- if(loaded_html == '') {
- }
- // append
- else {
- $('#notices_primary ol.notices').append(loaded_html);
- }
-
- });
-});
-
-
-// users
-jQuery(document).ready(function($){
- $('profile_list').infinitescroll({
- debug: false,
- infiniteScroll : !infinite_scroll_on_next_only,
- nextSelector : 'body#subscribers li.nav_next a, body#subscriptions li.nav_next a',
- loadingImg : ajax_loader_url,
- text : "<em>Loading the next set of users...</em>",
- donetext : "<em>Congratulations, you\'ve reached the end of the Internet.</em>",
- navSelector : "#pagination",
- contentSelector : "#content_inner ul.profile_list",
- itemSelector : "#content_inner ul.profile_list > li"
- },function(){
- // Reply button and attachment magic need to be set up
- // for each new notice.
- // DO NOT run SN.Init.Notices() which will duplicate stuff.
- $(this).find('.profile').each(function() {
- SN.U.NoticeReplyTo($(this));
- SN.U.NoticeWithAttachment($(this));
- });
-
- // moving the loaded notices out of their container
- $('#infscr-loading').remove();
- var ids_to_append = Array(); var i=0;
- $.each($('.infscr-pages').children('.profile'),function(){
-
- // remove dupes
- if($('.profile_list > #' + $(this).attr('id')).length > 0) {
- $(this).remove();
- }
-
- // keep new unique notices
- else {
- ids_to_append[i] = $(this).attr('id');
- i++;
- }
- });
- var loaded_html = $('.infscr-pages').html();
- $('.infscr-pages').remove();
-
- // no results
- if(loaded_html == '') {
- }
- // append
- else {
- $('#content_inner ul.profile_list').append(loaded_html);
- }
-
- });
-});
-
-
-// user directory
-jQuery(document).ready(function($){
- $('profile_list').infinitescroll({
- debug: false,
- infiniteScroll : !infinite_scroll_on_next_only,
- nextSelector : 'body#userdirectory li.nav_next a',
- loadingImg : ajax_loader_url,
- text : "<em>Loading the next set of users...</em>",
- donetext : "<em>Congratulations, you\'ve reached the end of the Internet.</em>",
- navSelector : "#pagination",
- contentSelector : "#profile_directory table.profile_list tbody",
- itemSelector : "#profile_directory table.profile_list tbody tr"
- },function(){
- // Reply button and attachment magic need to be set up
- // for each new notice.
- // DO NOT run SN.Init.Notices() which will duplicate stuff.
- $(this).find('.profile').each(function() {
- SN.U.NoticeReplyTo($(this));
- SN.U.NoticeWithAttachment($(this));
- });
-
- // moving the loaded notices out of their container
- $('#infscr-loading').remove();
- var ids_to_append = Array(); var i=0;
- $.each($('.infscr-pages').children('.profile'),function(){
-
- // remove dupes
- if($('.profile_list > #' + $(this).attr('id')).length > 0) {
- $(this).remove();
- }
-
- // keep new unique notices
- else {
- ids_to_append[i] = $(this).attr('id');
- i++;
- }
- });
- var loaded_html = $('.infscr-pages').html();
- $('.infscr-pages').remove();
-
- // no results
- if(loaded_html == '') {
- }
- // append
- else {
- $('#profile_directory table.profile_list tbody').append(loaded_html);
- }
-
- });
-});
\ No newline at end of file
+++ /dev/null
-
-/*!
-// Infinite Scroll jQuery plugin
-// copyright Paul Irish, licensed GPL & MIT
-// version 1.2.090804
-
-// home and docs: http://www.infinite-scroll.com
-*/
-
-// todo: add preloading option.
-
-;(function($){
-
- $.fn.infinitescroll = function(options,callback){
-
- // console log wrapper.
- function debug(){
- if (opts.debug) { window.console && console.log.call(console,arguments)}
- }
-
- // grab each selector option and see if any fail.
- function areSelectorsValid(opts){
- for (var key in opts){
- if (key.indexOf && (key.indexOf('Selector') != -1) && $(opts[key]).length === 0){
- debug('Your ' + key + ' found no elements.');
- return false;
- }
- return true;
- }
- }
-
-
- // find the number to increment in the path.
- function determinePath(path){
-
- path.match(relurl) ? path.match(relurl)[2] : path;
-
- // there is a 2 in the url surrounded by slashes, e.g. /page/2/
- if ( path.match(/^(.*?)\b2\b(.*?$)/) ){
- path = path.match(/^(.*?)\b2\b(.*?$)/).slice(1);
- } else
- // if there is any 2 in the url at all.
- if (path.match(/^(.*?)2(.*?$)/)){
- debug('Trying backup next selector parse technique. Treacherous waters here, matey.');
- path = path.match(/^(.*?)2(.*?$)/).slice(1);
- } else {
- debug('Sorry, we couldn\'t parse your Next (Previous Posts) URL. Verify your the css selector points to the correct A tag. If you still get this error: yell, scream, and kindly ask for help at infinite-scroll.com.');
- props.isInvalidPage = true; //prevent it from running on this page.
- }
-
- return path;
- }
-
-
- // 'document' means the full document usually, but sometimes the content of the overflow'd div in local mode
- function getDocumentHeight(){
- // weird doubletouch of scrollheight because http://soulpass.com/2006/07/24/ie-and-scrollheight/
- return opts.localMode ? ($(props.container)[0].scrollHeight && $(props.container)[0].scrollHeight)
- // needs to be document's height. (not props.container's) html's height is wrong in IE.
- : $(document).height()
- }
-
-
-
- function isNearBottom(opts,props){
-
- // distance remaining in the scroll
- // computed as: document height - distance already scroll - viewport height - buffer
- var pixelsFromWindowBottomToBottom = getDocumentHeight() -
- (opts.localMode ? $(props.container).scrollTop() :
- // have to do this bs because safari doesnt report a scrollTop on the html element
- ($(props.container).scrollTop() || $(props.container.ownerDocument.body).scrollTop())) -
- $(opts.localMode ? props.container : window).height();
-
- debug('math:',pixelsFromWindowBottomToBottom, props.pixelsFromNavToBottom);
-
- // if distance remaining in the scroll (including buffer) is less than the orignal nav to bottom....
- return (pixelsFromWindowBottomToBottom - opts.bufferPx < props.pixelsFromNavToBottom);
- }
-
- function showDoneMsg(){
- props.loadingMsg
- .find('img').hide()
- .parent()
- .find('div').html(opts.donetext).animate({opacity: 1},2000).fadeOut('normal');
-
- // user provided callback when done
- opts.errorCallback();
- }
-
- function infscrSetup(path,opts,props,callback){
-
- if (props.isDuringAjax || props.isInvalidPage || props.isDone) return;
-
- if ( opts.infiniteScroll && !isNearBottom(opts,props) ) return;
-
- // we dont want to fire the ajax multiple times
- props.isDuringAjax = true;
-
- // show the loading message and hide the previous/next links
- props.loadingMsg.appendTo( opts.contentSelector ).show();
- if(opts.infiniteScroll) $( opts.navSelector ).hide();
-
- // increment the URL bit. e.g. /page/3/
- props.currPage++;
-
- debug('heading into ajax',path);
-
- // if we're dealing with a table we can't use DIVs
- var box = $(opts.contentSelector).is('table') ? $('<tbody/>') : $('<div/>');
-
- box
- .attr('id','infscr-page-'+props.currPage)
- .addClass('infscr-pages')
- .appendTo( opts.contentSelector )
- .load( path.join( props.currPage ) + ' ' + opts.itemSelector,null,function(){
-
- // if we've hit the last page...
- if (props.isDone){
- showDoneMsg();
- return false;
-
- } else {
-
- // if it didn't return anything
- if (box.children().length == 0){
- // fake an ajaxError so we can quit.
- $.event.trigger( "ajaxError", [{status:404}] );
- }
-
- // fadeout currently makes the <em>'d text ugly in IE6
- props.loadingMsg.fadeOut('normal' );
-
- // smooth scroll to ease in the new content
- if (opts.animate){
- var scrollTo = $(window).scrollTop() + $('#infscr-loading').height() + opts.extraScrollPx + 'px';
- $('html,body').animate({scrollTop: scrollTo}, 800,function(){ props.isDuringAjax = false; });
- }
-
- // pass in the new DOM element as context for the callback
- callback.call( box[0] );
-
- if (!opts.animate) props.isDuringAjax = false; // once the call is done, we can allow it again.
- }
- }); // end of load()
-
-
- } // end of infscrSetup()
-
-
-
-
- // lets get started.
-
- var opts = $.extend({}, $.infinitescroll.defaults, options);
- var props = $.infinitescroll; // shorthand
- callback = callback || function(){};
-
- if (!areSelectorsValid(opts)){ return false; }
-
- // we doing this on an overflow:auto div?
- props.container = opts.localMode ? this : document.documentElement;
-
- // contentSelector we'll use for our .load()
- opts.contentSelector = opts.contentSelector || this;
-
-
- // get the relative URL - everything past the domain name.
- var relurl = /(.*?\/\/).*?(\/.*)/;
- var path = $(opts.nextSelector).attr('href');
-
-
- if (!path) { debug('Navigation selector not found'); return; }
-
- // set the path to be a relative URL from root.
- path = determinePath(path);
-
-
- // reset scrollTop in case of page refresh:
- if (opts.localMode) $(props.container)[0].scrollTop = 0;
-
- // distance from nav links to bottom
- // computed as: height of the document + top offset of container - top offset of nav link
- props.pixelsFromNavToBottom = getDocumentHeight() +
- $(props.container).offset().top -
- $(opts.navSelector).offset().top;
-
- // define loading msg
- props.loadingMsg = $('<div id="infscr-loading" style="text-align: center;"><img alt="Loading..." src="'+
- opts.loadingImg+'" /><div>'+opts.loadingText+'</div></div>');
- // preload the image
- (new Image()).src = opts.loadingImg;
-
-
-
- // set up our bindings
- $(document).ajaxError(function(e,xhr,opt){
- debug('Page not found. Self-destructing...');
-
- // die if we're out of pages.
- if (xhr.status == 404){
- showDoneMsg();
- props.isDone = true;
- $(opts.localMode ? this : window).unbind('scroll.infscr');
- }
- });
-
- if(opts.infiniteScroll){
- // bind scroll handler to element (if its a local scroll) or window
- $(opts.localMode ? this : window)
- .bind('scroll.infscr', function(){ infscrSetup(path,opts,props,callback); } )
- .trigger('scroll.infscr'); // trigger the event, in case it's a short page
- }else{
- $(opts.nextSelector).click(
- function(){
- infscrSetup(path,opts,props,callback);
- return false;
- }
- );
- }
-
-
- return this;
-
- } // end of $.fn.infinitescroll()
-
-
-
- // options and read-only properties object
-
- $.infinitescroll = {
- defaults : {
- debug : false,
- infiniteScroll : true,
- preload : false,
- nextSelector : "div.navigation a:first",
- loadingImg : "http://www.infinite-scroll.com/loading.gif",
- loadingText : "<em>Loading the next set of posts...</em>",
- donetext : "<em>Congratulations, you've reached the end of the internet.</em>",
- navSelector : "div.navigation",
- contentSelector : null, // not really a selector. :) it's whatever the method was called on..
- extraScrollPx : 150,
- itemSelector : "div.post",
- animate : false,
- localMode : false,
- bufferPx : 40,
- errorCallback : function(){}
- },
- loadingImg : undefined,
- loadingMsg : undefined,
- container : undefined,
- currPage : 1,
- currDOMChunk : null, // defined in setup()'s load()
- isDuringAjax : false,
- isInvalidPage : false,
- isDone : false // for when it goes all the way through the archive.
- };
-
-
-
-})(jQuery);
+++ /dev/null
-/*
-// Infinite Scroll jQuery plugin
-// copyright Paul Irish, licensed GPL & MIT
-// version 1.2.090804
-
-// home and docs: http://www.infinite-scroll.com
-*/
-(function(A){A.fn.infinitescroll=function(N,L){function E(){if(B.debug){window.console&&console.log.call(console,arguments)}}function G(P){for(var O in P){if(O.indexOf&&O.indexOf("Selector")&&A(P[O]).length===0){E("Your "+O+" found no elements.");return false}return true}}function K(O){O.match(C)?O.match(C)[2]:O;if(O.match(/^(.*?)\b2\b(.*?$)/)){O=O.match(/^(.*?)\b2\b(.*?$)/).slice(1)}else{if(O.match(/^(.*?)2(.*?$)/)){E("Trying backup next selector parse technique. Treacherous waters here, matey.");O=O.match(/^(.*?)2(.*?$)/).slice(1)}else{E("Sorry, we couldn't parse your Next (Previous Posts) URL. Verify your the css selector points to the correct A tag. If you still get this error: yell, scream, and kindly ask for help at infinite-scroll.com.");H.isInvalidPage=true}}return O}function I(){return B.localMode?(A(H.container)[0].scrollHeight&&A(H.container)[0].scrollHeight):A(document).height()}function F(Q,P){var O=I()-(Q.localMode?A(P.container).scrollTop():(A(P.container).scrollTop()||A(P.container.ownerDocument.body).scrollTop()))-A(Q.localMode?P.container:window).height();E("math:",O,P.pixelsFromNavToBottom);return(O-Q.bufferPx<P.pixelsFromNavToBottom)}function J(){H.loadingMsg.find("img").hide().parent().find("div").html(B.donetext).animate({opacity:1},2000).fadeOut("normal");B.errorCallback()}function D(R,Q,O,S){if(O.isDuringAjax||O.isInvalidPage||O.isDone){return }if(!F(Q,O)){return }O.isDuringAjax=true;O.loadingMsg.appendTo(Q.contentSelector).show();A(Q.navSelector).hide();O.currPage++;E("heading into ajax",R);var P=A(Q.contentSelector).is("table")?A("<tbody/>"):A("<div/>");P.attr("id","infscr-page-"+O.currPage).addClass("infscr-pages").appendTo(Q.contentSelector).load(R.join(O.currPage)+" "+Q.itemSelector,null,function(){if(O.isDone){J();return false}else{if(P.children().length==0){A.event.trigger("ajaxError",[{status:404}])}O.loadingMsg.fadeOut("normal");if(Q.animate){var T=A(window).scrollTop()+A("#infscr-loading").height()+Q.extraScrollPx+"px";A("html,body").animate({scrollTop:T},800,function(){O.isDuringAjax=false})}S.call(P[0]);if(!Q.animate){O.isDuringAjax=false}}})}var B=A.extend({},A.infinitescroll.defaults,N);var H=A.infinitescroll;L=L||function(){};if(!G(B)){return false}H.container=B.localMode?this:document.documentElement;B.contentSelector=B.contentSelector||this;var C=/(.*?\/\/).*?(\/.*)/;var M=A(B.nextSelector).attr("href");if(!M){E("Navigation selector not found");return }M=K(M);if(B.localMode){A(H.container)[0].scrollTop=0}H.pixelsFromNavToBottom=I()+A(H.container).offset().top-A(B.navSelector).offset().top;H.loadingMsg=A('<div id="infscr-loading" style="text-align: center;"><img alt="Loading..." src="'+B.loadingImg+'" /><div>'+B.loadingText+"</div></div>");(new Image()).src=B.loadingImg;A(document).ajaxError(function(P,Q,O){E("Page not found. Self-destructing...");if(Q.status==404){J();H.isDone=true;A(B.localMode?this:window).unbind("scroll.infscr")}});A(B.localMode?this:window).bind("scroll.infscr",function(){D(M,B,H,L)}).trigger("scroll.infscr");return this};A.infinitescroll={defaults:{debug:false,preload:false,nextSelector:"div.navigation a:first",loadingImg:"http://www.infinite-scroll.com/loading.gif",loadingText:"<em>Loading the next set of posts...</em>",donetext:"<em>Congratulations, you've reached the end of the internet.</em>",navSelector:"div.navigation",contentSelector:null,extraScrollPx:150,itemSelector:"div.post",animate:false,localMode:false,bufferPx:40,errorCallback:function(){}},loadingImg:undefined,loadingMsg:undefined,container:undefined,currPage:1,currDOMChunk:null,isDuringAjax:false,isInvalidPage:false,isDone:false}})(jQuery);
\ No newline at end of file
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-08 18:20+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:54
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Afrikaans (http://www.transifex.com/gnu-social/gnu-social/language/af/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: af\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Arabic (http://www.transifex.com/gnu-social/gnu-social/language/ar/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Arabic (Egypt) (http://www.transifex.com/gnu-social/gnu-social/language/ar_EG/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ar_EG\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Asturian (http://www.transifex.com/gnu-social/gnu-social/language/ast/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ast\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Belarusian (Tarask) (http://www.transifex.com/gnu-social/gnu-social/language/be@tarask/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: be@tarask\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Bulgarian (http://www.transifex.com/gnu-social/gnu-social/language/bg/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: bg\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Bengali (India) (http://www.transifex.com/gnu-social/gnu-social/language/bn_IN/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: bn_IN\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Breton (http://www.transifex.com/gnu-social/gnu-social/language/br/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: br\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Catalan (http://www.transifex.com/gnu-social/gnu-social/language/ca/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ca\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Czech (http://www.transifex.com/gnu-social/gnu-social/language/cs/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: cs\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Danish (http://www.transifex.com/gnu-social/gnu-social/language/da/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: da\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: German (http://www.transifex.com/gnu-social/gnu-social/language/de/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll fügt die folgende Funktionalität zu deiner StatusNet-Installation hinzu: Wenn ein Benutzer Richtung Seitenende scrollt, wird die nächste Nachrichtenseite automatisch geladen und angefügt. Das bedeutet, dass du nie „Nächste Seite“ klicken musst, was die Attraktivität dramatisch erhöht."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Greek (http://www.transifex.com/gnu-social/gnu-social/language/el/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: el\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-# Luke Hollins <luke@farcry.ca>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-03-07 19:41+0000\n"
-"Last-Translator: Luke Hollins <luke@farcry.ca>\n"
-"Language-Team: English (United Kingdom) (http://www.transifex.com/gnu-social/gnu-social/language/en_GB/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: en_GB\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll adds the following functionality to your StatusNet installation: When a user scrolls towards the bottom of the page, the next page of notices is automatically retrieved and appended. This means they never need to click \"Next Page\", which dramatically increases stickiness."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Esperanto (http://www.transifex.com/gnu-social/gnu-social/language/eo/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: eo\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-# Juan Riquelme González <soulchainer@gmail.com>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-27 14:21+0000\n"
-"Last-Translator: Juan Riquelme González <soulchainer@gmail.com>\n"
-"Language-Team: Spanish (http://www.transifex.com/gnu-social/gnu-social/language/es/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll añade la función «Desplazamiento infinito» a tu instalación GNU social. Con ella activada, cuando un usuario alcanza el final de la página actual, se carga y añade inmediatamente la página siguiente (de existir). Así, no se fuerza al usuario a clicar continuamente en un botón si quiere cargar más contenido, lo que mejora la navegabilidad e incrementa la capacidad del sitio para retener su atención."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2011 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Basque (http://www.transifex.com/gnu-social/gnu-social/language/eu/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: eu\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll pluginak scrollarekin behera egin einean orria luzatzen du ohar zaharrak azpikaldean gehituz, \"Hurrengo Orria\" linka ezabatzen du aldi berean."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Persian (http://www.transifex.com/gnu-social/gnu-social/language/fa/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fa\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Finnish (http://www.transifex.com/gnu-social/gnu-social/language/fi/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: French (http://www.transifex.com/gnu-social/gnu-social/language/fr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "InfiniteScroll ajoute la fonctionnalité suivante à votre installation StatusNet : lorsqu’un utilisateur fait défiler la page jusqu’à la fin, la page d’avis suivante est automatiquement téléchargée et ajoutée à la suite. Ceci signifie que l’utilisateur n’a plus besoin de cliquer sur le bouton « Page suivante », ce qui augmente considérablement l’adhérence de l’utilisateur."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Friulian (http://www.transifex.com/gnu-social/gnu-social/language/fur/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fur\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2011 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Galician (http://www.transifex.com/gnu-social/gnu-social/language/gl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: gl\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll engade a seguinte funcionalizade á súa instalación de StatusNet: Cando un usuario se despraza ata o pé da páxina, recupérase e engádese a seguinte páxina de notas. Isto significa que non é necesario premer en \"Páxina seguinte\", algo que aumenta considerablemente a capacidade de retención."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Hebrew (http://www.transifex.com/gnu-social/gnu-social/language/he/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: he\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll (גלילה אינסופית) מוסיפה את התכונות הבאות להתקנת ה־StatusNet שלך: כאשר משתמש גולל אל עבר תחתית הדף, דף העדכונים הבא נטען ונוסף אוטומטית. משמעות הדבר היא שאין על המשתמשים ללחוץ על \"הדף הבא\", מה שמגביר את תחושת הדבקות בצורה דרמטית."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Upper Sorbian (http://www.transifex.com/gnu-social/gnu-social/language/hsb/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: hsb\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Hungarian (http://www.transifex.com/gnu-social/gnu-social/language/hu/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: hu\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Armenian (Armenia) (http://www.transifex.com/gnu-social/gnu-social/language/hy_AM/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: hy_AM\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Interlingua (http://www.transifex.com/gnu-social/gnu-social/language/ia/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ia\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll adde le sequente functionalitate a tu installation de StatusNet: Quando un usator face rolar le pagina verso le fundo, le sequente pagina de notas es automaticamente recuperate e adjungite. Isto significa que ille nunquam ha besonio de cliccar super \"Pagina sequente\", lo que augmenta dramaticamente le adherentia."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-# zk <zamani.karmana@gmail.com>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-05-28 15:50+0000\n"
-"Last-Translator: zk <zamani.karmana@gmail.com>\n"
-"Language-Team: Indonesian (http://www.transifex.com/gnu-social/gnu-social/language/id/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: id\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll menambahkan fungsi berikut ke pemasangan StatusNet anda: Ketika seorang pengguna menggulir ke bawah halaman, halaman pemberitahuan selanjutnya secara otomatis diambil dan ditambahkan. Ini berarti mereka tidak perlu menekan \"Halaman Selanjutnya\", yang akan meningkatkan kelekatan."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-# Ciencisto Dementa <maliktunga@users.noreply.github.com>, 2015
-# William <fxinkeo@mail.com>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-06-16 22:00+0000\n"
-"Last-Translator: Ciencisto Dementa <maliktunga@users.noreply.github.com>\n"
-"Language-Team: Ido (http://www.transifex.com/gnu-social/gnu-social/language/io/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: io\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll adjuntas la sequanta funciono a vua instaluro GNU social: Kande uzanto iras vers la fundo di la pagino, la sequanta pagino di avizi esas automatale riganis ed adjuntis. Ico signifikas ke li nulatempe mustas pulsar \"Sequanta pagino\", quo ya augmentas adheremeso."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Icelandic (http://www.transifex.com/gnu-social/gnu-social/language/is/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: is\n"
-"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2012 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Italian (http://www.transifex.com/gnu-social/gnu-social/language/it/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "InfiniteScroll aggiunge le seguenti funzionalità alla vostra installazione di StatusNet: quando un utente scorre verso il fondo della pagina, la pagina delle comunicazioni seguenti è automaticamente recuperata e messa di seguito. Questo significa che gli utenti non necessitano di cliccare su \"Pagina seguente\", che aumenta considerevolmente la concentrazione dell'utilizzatore"
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Japanese (http://www.transifex.com/gnu-social/gnu-social/language/ja/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "無限スクロールは、StatusNetのインストールに次の機能を追加します:ユーザーがページの最後までスクロースしたとき、次のページの通知が自動的に取得され追加されます。これはつまり、「次のページ」をクリックする必要がなく、手間を劇的に改善します。"
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Georgian (http://www.transifex.com/gnu-social/gnu-social/language/ka/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ka\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Korean (http://www.transifex.com/gnu-social/gnu-social/language/ko/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ko\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Colognian (http://www.transifex.com/gnu-social/gnu-social/language/ksh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ksh\n"
-"Plural-Forms: nplurals=3; plural=(n==0) ? 0 : (n==1) ? 1 : 2;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Luxembourgish (http://www.transifex.com/gnu-social/gnu-social/language/lb/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: lb\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Lithuanian (http://www.transifex.com/gnu-social/gnu-social/language/lt/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: lt\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 09:39+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Latvian (http://www.transifex.com/gnu-social/gnu-social/language/lv/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: lv\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Malagasy (http://www.transifex.com/gnu-social/gnu-social/language/mg/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: mg\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Macedonian (http://www.transifex.com/gnu-social/gnu-social/language/mk/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: mk\n"
-"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "„Бесконечно лизгање“ ја додава следнава функција во Вашата инсталација на StatusNet: Кога еден корисник лизга кон дното на страницата, следната страница автоматски се појавува во продолжение. Со ова се отстранува потребата од стискање на „Следна страница“, што значително ја зголемува лепливоста."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Malayalam (http://www.transifex.com/gnu-social/gnu-social/language/ml/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ml\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Malay (http://www.transifex.com/gnu-social/gnu-social/language/ms/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ms\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Burmese (http://www.transifex.com/gnu-social/gnu-social/language/my/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: my\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Norwegian Bokmål (http://www.transifex.com/gnu-social/gnu-social/language/nb/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: nb\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll legger til følgende funksjonalitet til din StatusNet-installasjon: Når en bruker ruller mot bunnen av siden hentes den neste siden med notiser og legges til automatisk. Dette betyr at de aldri trenger å klikke «Neste side». Dette øker «stickiness» dramatisk."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 09:30+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Nepali (http://www.transifex.com/gnu-social/gnu-social/language/ne/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ne\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Dutch (http://www.transifex.com/gnu-social/gnu-social/language/nl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: nl\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Oneindig scrollen (Infinite Scroll) maakt het mogelijk om in een StatusNet-site naar onderaan de pagina te scrollen en dan automatisch de volgende pagina te zien laden. Een gebruiker hoeft dus nooit meer op \"Volgende pagina\" te klikken zodat ze langers op de site blijven."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Norwegian Nynorsk (http://www.transifex.com/gnu-social/gnu-social/language/nn/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: nn\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Polish (http://www.transifex.com/gnu-social/gnu-social/language/pl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: pl\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Portuguese (http://www.transifex.com/gnu-social/gnu-social/language/pt/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/gnu-social/gnu-social/language/pt_BR/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Infinite Scroll adiciona a seguinte funcionalidade a sua instalação StatusNet: Quando um usuário se desloca para o final da página, a próxima página de mensagens é recuperada e adicionada automaticamente. Isto significa que não será necessário clicar em \"Próxima página\", que aumenta drasticamente a capacidade de retenção de usuários."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Romanian (Romania) (http://www.transifex.com/gnu-social/gnu-social/language/ro_RO/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ro_RO\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Russian (http://www.transifex.com/gnu-social/gnu-social/language/ru/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ru\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Бесконечная прокрутка добавляет следующую функциональность вашему сайту StatusNet: Когда пользователь прокручивает страницу уведомлений до самого низа, следующая страница уведомлений автоматически запрашивается и добавлятся. Это значит, что вам никогда не прийдётся нажимать кнопку \"Следующая страница\", что резко увеличивает клейкость."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Slovenian (http://www.transifex.com/gnu-social/gnu-social/language/sl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Serbian (http://www.transifex.com/gnu-social/gnu-social/language/sr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: sr\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Swedish (http://www.transifex.com/gnu-social/gnu-social/language/sv/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: sv\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 08:48+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Tamil (http://www.transifex.com/gnu-social/gnu-social/language/ta/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ta\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Telugu (http://www.transifex.com/gnu-social/gnu-social/language/te/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: te\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Tagalog (http://www.transifex.com/gnu-social/gnu-social/language/tl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: tl\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Nagdaragdag ang Walang Hangganang Balumbon ng sumusunod na tungkulin sa iyong instalasyon ng StatusNet: Kapag ang isang tagagamit ay nagpapadulas papunta sa ilalim ng pahina, ang susunod na pahina ng mga pabatid ay kusang muling nakukuha at nadurugtong. Nangangahulugan ito na hindi nila kailangan kailanman na pindutin ang \"Susunod na Pahina\", na mabisang nagpapataas ng pagkamadikit."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Turkish (http://www.transifex.com/gnu-social/gnu-social/language/tr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: tr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Ukrainian (http://www.transifex.com/gnu-social/gnu-social/language/uk/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: uk\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "Нескінченна прокрутка сторінки додає наступні функції сайту StatusNet: коли користувач прокручує сторінку до самого її низу, дописи з наступної сторінки додаються автоматично. Це означає, що вам не доведеться натискати «Назад» (до попередньої сторінки), аби переглянути повідомлення."
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Urdu (Pakistan) (http://www.transifex.com/gnu-social/gnu-social/language/ur_PK/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ur_PK\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Vietnamese (http://www.transifex.com/gnu-social/gnu-social/language/vi/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: vi\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Chinese (http://www.transifex.com/gnu-social/gnu-social/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:43+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Chinese (China) (http://www.transifex.com/gnu-social/gnu-social/language/zh_CN/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_CN\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr "无限滚动(Infinite Scroll)给你的 StatusNet 网站增加了这些功能:当用户滚动页面到底部的时候,将自动获取下一页的消息并追加显示出来。这样用户就不用再去点击“下一页”按钮了,大大的增加了黏贴度。"
+++ /dev/null
-# Translation file for GNU social - the free software social networking platform
-# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
-# This file is under https://www.gnu.org/licenses/agpl v3 or later
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:29+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Chinese (Taiwan) (http://www.transifex.com/gnu-social/gnu-social/language/zh_TW/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_TW\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Plugin dscription.
-#: InfiniteScrollPlugin.php:60
-msgid ""
-"Infinite Scroll adds the following functionality to your StatusNet "
-"installation: When a user scrolls towards the bottom of the page, the next "
-"page of notices is automatically retrieved and appended. This means they "
-"never need to click \"Next Page\", which dramatically increases stickiness."
-msgstr ""
+++ /dev/null
-/**
- * (c) 2010 StatusNet, Inc.
- */
-
-(function() {
- /**
- * Quickie wrapper around ooembed JSON lookup
- */
- var oEmbed = {
- api: 'https://noembed.com/embed',
- width: 100,
- height: 75,
- cache: {},
- callbacks: {},
-
- /**
- * Do a cached oEmbed lookup for the given URL.
- *
- * @param {String} url
- * @param {function} callback
- */
- lookup: function(url, callback)
- {
- if (typeof oEmbed.cache[url] == "object") {
- // We already have a successful lookup.
- callback(oEmbed.cache[url]);
- } else if (typeof oEmbed.callbacks[url] == "undefined") {
- // No lookup yet... Start it!
- oEmbed.callbacks[url] = [callback];
-
- oEmbed.rawLookup(url, function(data) {
- oEmbed.cache[url] = data;
- var callbacks = oEmbed.callbacks[url];
- oEmbed.callbacks[url] = undefined;
- for (var i = 0; i < callbacks.length; i++) {
- callbacks[i](data);
- }
- });
- } else {
- // A lookup is in progress.
- oEmbed.callbacks[url].push(callback);
- }
- },
-
- /**
- * Do an oEmbed lookup for the given URL.
- *
- * @fixme proxy through ourselves if possible?
- * @fixme use the global thumbnail size settings
- *
- * @param {String} url
- * @param {function} callback
- */
- rawLookup: function(url, callback)
- {
- var params = {
- url: url,
- format: 'json',
- maxwidth: oEmbed.width,
- maxheight: oEmbed.height,
- token: $('#token').val()
- };
- $.ajax({
- url: oEmbed.api,
- data: params,
- dataType: 'json',
- success: function(data, xhr) {
- callback(data);
- },
- error: function(xhr, textStatus, errorThrown) {
- callback(null);
- }
- });
- }
- };
-
- SN.Init.LinkPreview = function(params) {
- if (params.api) oEmbed.api = params.api;
- if (params.width) oEmbed.width = params.width;
- if (params.height) oEmbed.height = params.height;
- }
-
- // Piggyback on the counter update...
- var origCounter = SN.U.Counter;
- SN.U.Counter = function(form) {
- var preview = form.data('LinkPreview');
- if (preview) {
- preview.previewLinks(form.find('.notice_data-text:first').val());
- }
- return origCounter(form);
- }
-
- // Customize notice form init...
- var origSetup = SN.Init.NoticeFormSetup;
- SN.Init.NoticeFormSetup = function(form) {
- origSetup(form);
-
- form
- .bind('reset', function() {
- LinkPreview.clear();
- });
-
- var LinkPreview = {
- links: [],
- state: [],
- refresh: [],
-
- /**
- * Find URL links from the source text that may be interesting.
- *
- * @param {String} text
- * @return {Array} list of URLs
- */
- findLinks: function (text)
- {
- // @fixme match this to core code
- var re = /(?:^| )(https?:\/\/.+?\/.+?)(?= |$)/mg;
- var links = [];
- var matches;
- while ((matches = re.exec(text)) !== null) {
- links.push(matches[1]);
- }
- return links;
- },
-
- ensureArea: function() {
- if (form.find('.link-preview').length < 1) {
- form.append('<div class="notice-status link-preview thumbnails"></div>');
- }
- },
-
- /**
- * Start looking up info for a link preview...
- * May start async data loads.
- *
- * @param {number} col: column number to insert preview into
- */
- prepLinkPreview: function(col)
- {
- var id = 'link-preview-' + col;
- var url = LinkPreview.links[col];
- LinkPreview.refresh[col] = false;
- LinkPreview.markLoading(col);
-
- oEmbed.lookup(url, function(data) {
- var thumb = null;
- var width = 100;
- if (data && typeof data.thumbnail_url == "string") {
- thumb = data.thumbnail_url;
- if (typeof data.thumbnail_width !== "undefined") {
- if (data.thumbnail_width < width) {
- width = data.thumbnail_width;
- }
- }
- } else if (data && data.type == 'photo' && typeof data.url == "string") {
- thumb = data.url;
- if (typeof data.width !== "undefined") {
- if (data.width < width) {
- width = data.width;
- }
- }
- }
-
- if (thumb) {
- LinkPreview.ensureArea();
- var link = $('<span class="inline-attachment"><a><img/></a></span>');
- link.find('a')
- .attr('href', url)
- .attr('target', '_blank')
- .last()
- .find('img')
- .attr('src', thumb)
- .attr('width', width)
- .attr('title', data.title || data.url || url);
- form.find('.' + id)
- .empty()
- .append(link);
- } else {
- // No thumbnail available or error retriving it.
- LinkPreview.clearLink(col);
- }
-
- if (LinkPreview.refresh[col]) {
- // Darn user has typed more characters.
- // Go fetch another link!
- LinkPreview.prepLinkPreview(col);
- } else {
- LinkPreview.markDone(col);
- }
- });
- },
-
- /**
- * Update the live preview section with links found in the given text.
- * May start async data loads.
- *
- * @param {String} text: free-form input text
- */
- previewLinks: function(text)
- {
- var i;
- var old = LinkPreview.links;
- var links = LinkPreview.findLinks(text);
- LinkPreview.links = links;
-
- // Check for existing common elements...
- for (i = 0; i < old.length && i < links.length; i++) {
- if (links[i] != old[i]) {
- if (LinkPreview.state[i] == "loading") {
- // Slate this column for a refresh when this one's done.
- LinkPreview.refresh[i] = true;
- } else {
- // Change an existing entry!
- LinkPreview.prepLinkPreview(i);
- }
- }
- }
- if (links.length > old.length) {
- // Adding new entries, whee!
- for (i = old.length; i < links.length; i++) {
- LinkPreview.addPreviewArea(i);
- LinkPreview.prepLinkPreview(i);
- }
- } else if (old.length > links.length) {
- // Remove preview entries for links that have been removed.
- for (i = links.length; i < old.length; i++) {
- LinkPreview.clearLink(i);
- }
- }
- if (links.length == 0) {
- LinkPreview.clear();
- }
- },
-
- addPreviewArea: function(col) {
- LinkPreview.ensureArea();
- var id = 'link-preview-' + col;
- if (form.find('.' + id).length < 1) {
- form.find('.link-preview').append('<span class="' + id + '"></span>');
- }
- },
-
- clearLink: function(col) {
- var id = 'link-preview-' + col;
- form.find('.' + id).html('');
- },
-
- markLoading: function(col) {
- LinkPreview.state[col] = "loading";
- var id = 'link-preview-' + col;
- form.find('.' + id).attr('style', 'opacity: 0.5');
- },
-
- markDone: function(col) {
- LinkPreview.state[col] = "done";
- var id = 'link-preview-' + col;
- form.find('.' + id).removeAttr('style');
- },
-
- /**
- * Clear out any link preview data.
- */
- clear: function() {
- LinkPreview.links = [];
- form.find('.link-preview').remove();
- }
- };
- form.data('LinkPreview', LinkPreview);
- }
-})();
+++ /dev/null
-.fake: clean all
-
-TARGET=OpenLayers.js
-SOURCEDIR=OpenLayers-2.10/
-HERE=`pwd`
-
-all: $(TARGET)
-
-clean:
- rm -f $(TARGET)
-
-$(TARGET): statusnet.cfg
- cp -f statusnet.cfg $(SOURCEDIR)/build/statusnet.cfg
- (cd $(SOURCEDIR)/build && ./build.py statusnet.cfg)
- yui-compressor $(SOURCEDIR)/build/OpenLayers.js -o $(TARGET)
+++ /dev/null
-var OpenLayers={singleFile:true};(function(){var j=(typeof OpenLayers=="object"&&OpenLayers.singleFile);var a;window.OpenLayers={_scriptName:(!j)?"lib/OpenLayers.js":"OpenLayers.js",_getScriptLocation:function(){if(a!=undefined){return a}a="";var r=new RegExp("(^|(.*?\\/))("+OpenLayers._scriptName+")(\\?|$)");var n=document.getElementsByTagName("script");for(var p=0,h=n.length;p<h;p++){var q=n[p].getAttribute("src");if(q){var o=q.match(r);if(o){a=o[1];break}}}return a}};if(!j){var k=new Array("OpenLayers/Util.js","OpenLayers/BaseTypes.js","OpenLayers/BaseTypes/Class.js","OpenLayers/BaseTypes/Bounds.js","OpenLayers/BaseTypes/Element.js","OpenLayers/BaseTypes/LonLat.js","OpenLayers/BaseTypes/Pixel.js","OpenLayers/BaseTypes/Size.js","OpenLayers/Console.js","OpenLayers/Tween.js","Rico/Corner.js","Rico/Color.js","OpenLayers/Ajax.js","OpenLayers/Events.js","OpenLayers/Request.js","OpenLayers/Request/XMLHttpRequest.js","OpenLayers/Projection.js","OpenLayers/Map.js","OpenLayers/Layer.js","OpenLayers/Icon.js","OpenLayers/Marker.js","OpenLayers/Marker/Box.js","OpenLayers/Popup.js","OpenLayers/Tile.js","OpenLayers/Tile/Image.js","OpenLayers/Tile/Image/IFrame.js","OpenLayers/Tile/WFS.js","OpenLayers/Layer/Image.js","OpenLayers/Layer/SphericalMercator.js","OpenLayers/Layer/EventPane.js","OpenLayers/Layer/FixedZoomLevels.js","OpenLayers/Layer/VirtualEarth.js","OpenLayers/Layer/Yahoo.js","OpenLayers/Layer/HTTPRequest.js","OpenLayers/Layer/Grid.js","OpenLayers/Layer/MapGuide.js","OpenLayers/Layer/MapServer.js","OpenLayers/Layer/MapServer/Untiled.js","OpenLayers/Layer/KaMap.js","OpenLayers/Layer/KaMapCache.js","OpenLayers/Layer/MultiMap.js","OpenLayers/Layer/Markers.js","OpenLayers/Layer/Text.js","OpenLayers/Layer/WorldWind.js","OpenLayers/Layer/ArcGIS93Rest.js","OpenLayers/Layer/WMS.js","OpenLayers/Layer/WMS/Untiled.js","OpenLayers/Layer/WMS/Post.js","OpenLayers/Layer/WMTS.js","OpenLayers/Layer/ArcIMS.js","OpenLayers/Layer/GeoRSS.js","OpenLayers/Layer/Boxes.js","OpenLayers/Layer/XYZ.js","OpenLayers/Layer/TMS.js","OpenLayers/Layer/TileCache.js","OpenLayers/Layer/Zoomify.js","OpenLayers/Popup/Anchored.js","OpenLayers/Popup/AnchoredBubble.js","OpenLayers/Popup/Framed.js","OpenLayers/Popup/FramedCloud.js","OpenLayers/Feature.js","OpenLayers/Feature/Vector.js","OpenLayers/Feature/WFS.js","OpenLayers/Handler.js","OpenLayers/Handler/Click.js","OpenLayers/Handler/Hover.js","OpenLayers/Handler/Point.js","OpenLayers/Handler/Path.js","OpenLayers/Handler/Polygon.js","OpenLayers/Handler/Feature.js","OpenLayers/Handler/Drag.js","OpenLayers/Handler/RegularPolygon.js","OpenLayers/Handler/Box.js","OpenLayers/Handler/MouseWheel.js","OpenLayers/Handler/Keyboard.js","OpenLayers/Control.js","OpenLayers/Control/Attribution.js","OpenLayers/Control/Button.js","OpenLayers/Control/ZoomBox.js","OpenLayers/Control/ZoomToMaxExtent.js","OpenLayers/Control/DragPan.js","OpenLayers/Control/Navigation.js","OpenLayers/Control/MouseDefaults.js","OpenLayers/Control/MousePosition.js","OpenLayers/Control/OverviewMap.js","OpenLayers/Control/KeyboardDefaults.js","OpenLayers/Control/PanZoom.js","OpenLayers/Control/PanZoomBar.js","OpenLayers/Control/ArgParser.js","OpenLayers/Control/Permalink.js","OpenLayers/Control/Scale.js","OpenLayers/Control/ScaleLine.js","OpenLayers/Control/Snapping.js","OpenLayers/Control/Split.js","OpenLayers/Control/LayerSwitcher.js","OpenLayers/Control/DrawFeature.js","OpenLayers/Control/DragFeature.js","OpenLayers/Control/ModifyFeature.js","OpenLayers/Control/Panel.js","OpenLayers/Control/SelectFeature.js","OpenLayers/Control/NavigationHistory.js","OpenLayers/Control/Measure.js","OpenLayers/Control/WMSGetFeatureInfo.js","OpenLayers/Control/WMTSGetFeatureInfo.js","OpenLayers/Control/Graticule.js","OpenLayers/Control/TransformFeature.js","OpenLayers/Control/SLDSelect.js","OpenLayers/Geometry.js","OpenLayers/Geometry/Rectangle.js","OpenLayers/Geometry/Collection.js","OpenLayers/Geometry/Point.js","OpenLayers/Geometry/MultiPoint.js","OpenLayers/Geometry/Curve.js","OpenLayers/Geometry/LineString.js","OpenLayers/Geometry/LinearRing.js","OpenLayers/Geometry/Polygon.js","OpenLayers/Geometry/MultiLineString.js","OpenLayers/Geometry/MultiPolygon.js","OpenLayers/Geometry/Surface.js","OpenLayers/Renderer.js","OpenLayers/Renderer/Elements.js","OpenLayers/Renderer/SVG.js","OpenLayers/Renderer/Canvas.js","OpenLayers/Renderer/VML.js","OpenLayers/Layer/Vector.js","OpenLayers/Layer/Vector/RootContainer.js","OpenLayers/Strategy.js","OpenLayers/Strategy/Filter.js","OpenLayers/Strategy/Fixed.js","OpenLayers/Strategy/Cluster.js","OpenLayers/Strategy/Paging.js","OpenLayers/Strategy/BBOX.js","OpenLayers/Strategy/Save.js","OpenLayers/Strategy/Refresh.js","OpenLayers/Filter.js","OpenLayers/Filter/FeatureId.js","OpenLayers/Filter/Logical.js","OpenLayers/Filter/Comparison.js","OpenLayers/Filter/Spatial.js","OpenLayers/Protocol.js","OpenLayers/Protocol/HTTP.js","OpenLayers/Protocol/SQL.js","OpenLayers/Protocol/SQL/Gears.js","OpenLayers/Protocol/WFS.js","OpenLayers/Protocol/WFS/v1.js","OpenLayers/Protocol/WFS/v1_0_0.js","OpenLayers/Protocol/WFS/v1_1_0.js","OpenLayers/Protocol/SOS.js","OpenLayers/Protocol/SOS/v1_0_0.js","OpenLayers/Layer/PointTrack.js","OpenLayers/Layer/GML.js","OpenLayers/Style.js","OpenLayers/Style2.js","OpenLayers/StyleMap.js","OpenLayers/Rule.js","OpenLayers/Format.js","OpenLayers/Format/XML.js","OpenLayers/Format/Context.js","OpenLayers/Format/ArcXML.js","OpenLayers/Format/ArcXML/Features.js","OpenLayers/Format/GML.js","OpenLayers/Format/GML/Base.js","OpenLayers/Format/GML/v2.js","OpenLayers/Format/GML/v3.js","OpenLayers/Format/Atom.js","OpenLayers/Format/KML.js","OpenLayers/Format/GeoRSS.js","OpenLayers/Format/WFS.js","OpenLayers/Format/WFSCapabilities.js","OpenLayers/Format/WFSCapabilities/v1.js","OpenLayers/Format/WFSCapabilities/v1_0_0.js","OpenLayers/Format/WFSCapabilities/v1_1_0.js","OpenLayers/Format/WFSDescribeFeatureType.js","OpenLayers/Format/WMSDescribeLayer.js","OpenLayers/Format/WMSDescribeLayer/v1_1.js","OpenLayers/Format/WKT.js","OpenLayers/Format/OSM.js","OpenLayers/Format/GPX.js","OpenLayers/Format/Filter.js","OpenLayers/Format/Filter/v1.js","OpenLayers/Format/Filter/v1_0_0.js","OpenLayers/Format/Filter/v1_1_0.js","OpenLayers/Format/SLD.js","OpenLayers/Format/SLD/v1.js","OpenLayers/Format/SLD/v1_0_0.js","OpenLayers/Format/OWSCommon/v1.js","OpenLayers/Format/OWSCommon/v1_0_0.js","OpenLayers/Format/OWSCommon/v1_1_0.js","OpenLayers/Format/CSWGetDomain.js","OpenLayers/Format/CSWGetDomain/v2_0_2.js","OpenLayers/Format/CSWGetRecords.js","OpenLayers/Format/CSWGetRecords/v2_0_2.js","OpenLayers/Format/WFST.js","OpenLayers/Format/WFST/v1.js","OpenLayers/Format/WFST/v1_0_0.js","OpenLayers/Format/WFST/v1_1_0.js","OpenLayers/Format/Text.js","OpenLayers/Format/JSON.js","OpenLayers/Format/GeoJSON.js","OpenLayers/Format/WMC.js","OpenLayers/Format/WMC/v1.js","OpenLayers/Format/WMC/v1_0_0.js","OpenLayers/Format/WMC/v1_1_0.js","OpenLayers/Format/WMSCapabilities.js","OpenLayers/Format/WMSCapabilities/v1.js","OpenLayers/Format/WMSCapabilities/v1_1.js","OpenLayers/Format/WMSCapabilities/v1_1_0.js","OpenLayers/Format/WMSCapabilities/v1_1_1.js","OpenLayers/Format/WMSCapabilities/v1_3.js","OpenLayers/Format/WMSCapabilities/v1_3_0.js","OpenLayers/Format/WMSGetFeatureInfo.js","OpenLayers/Format/SOSCapabilities.js","OpenLayers/Format/SOSCapabilities/v1_0_0.js","OpenLayers/Format/SOSGetObservation.js","OpenLayers/Format/SOSGetFeatureOfInterest.js","OpenLayers/Format/OWSContext.js","OpenLayers/Format/OWSContext/v0_3_1.js","OpenLayers/Format/WMTSCapabilities.js","OpenLayers/Format/WMTSCapabilities/v1_0_0.js","OpenLayers/Layer/WFS.js","OpenLayers/Control/GetFeature.js","OpenLayers/Control/MouseToolbar.js","OpenLayers/Control/NavToolbar.js","OpenLayers/Control/PanPanel.js","OpenLayers/Control/Pan.js","OpenLayers/Control/ZoomIn.js","OpenLayers/Control/ZoomOut.js","OpenLayers/Control/ZoomPanel.js","OpenLayers/Control/EditingToolbar.js","OpenLayers/Symbolizer.js","OpenLayers/Symbolizer/Point.js","OpenLayers/Symbolizer/Line.js","OpenLayers/Symbolizer/Polygon.js","OpenLayers/Symbolizer/Text.js","OpenLayers/Symbolizer/Raster.js","OpenLayers/Lang.js","OpenLayers/Lang/en.js");var c=navigator.userAgent;var e=(c.match("MSIE")||c.match("Safari"));if(e){var b=new Array(k.length)}var l=OpenLayers._getScriptLocation()+"lib/";for(var d=0,g=k.length;d<g;d++){if(e){b[d]="<script src='"+l+k[d]+"'><\/script>"}else{var m=document.createElement("script");m.src=l+k[d];var f=document.getElementsByTagName("head").length?document.getElementsByTagName("head")[0]:document.body;f.appendChild(m)}}if(e){document.write(b.join(""))}}})();OpenLayers.VERSION_NUMBER="OpenLayers 2.10 -- $Revision: 10721 $";OpenLayers.String={startsWith:function(b,a){return(b.indexOf(a)==0)},contains:function(b,a){return(b.indexOf(a)!=-1)},trim:function(a){return a.replace(/^\s\s*/,"").replace(/\s\s*$/,"")},camelize:function(f){var d=f.split("-");var b=d[0];for(var c=1,a=d.length;c<a;c++){var e=d[c];b+=e.charAt(0).toUpperCase()+e.substring(1)}return b},format:function(d,c,a){if(!c){c=window}var b=function(j,e){var h;var g=e.split(/\.+/);for(var f=0;f<g.length;f++){if(f==0){h=c}h=h[g[f]]}if(typeof h=="function"){h=a?h.apply(null,a):h()}if(typeof h=="undefined"){return"undefined"}else{return h}};return d.replace(OpenLayers.String.tokenRegEx,b)},tokenRegEx:/\$\{([\w.]+?)\}/g,numberRegEx:/^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/,isNumeric:function(a){return OpenLayers.String.numberRegEx.test(a)},numericIf:function(a){return OpenLayers.String.isNumeric(a)?parseFloat(a):a}};if(!String.prototype.startsWith){String.prototype.startsWith=function(a){OpenLayers.Console.warn(OpenLayers.i18n("methodDeprecated",{newMethod:"OpenLayers.String.startsWith"}));return OpenLayers.String.startsWith(this,a)}}if(!String.prototype.contains){String.prototype.contains=function(a){OpenLayers.Console.warn(OpenLayers.i18n("methodDeprecated",{newMethod:"OpenLayers.String.contains"}));return OpenLayers.String.contains(this,a)}}if(!String.prototype.trim){String.prototype.trim=function(){OpenLayers.Console.warn(OpenLayers.i18n("methodDeprecated",{newMethod:"OpenLayers.String.trim"}));return OpenLayers.String.trim(this)}}if(!String.prototype.camelize){String.prototype.camelize=function(){OpenLayers.Console.warn(OpenLayers.i18n("methodDeprecated",{newMethod:"OpenLayers.String.camelize"}));return OpenLayers.String.camelize(this)}}OpenLayers.Number={decimalSeparator:".",thousandsSeparator:",",limitSigDigs:function(a,c){var b=0;if(c>0){b=parseFloat(a.toPrecision(c))}return b},format:function(c,a,g,i){a=(typeof a!="undefined")?a:0;g=(typeof g!="undefined")?g:OpenLayers.Number.thousandsSeparator;i=(typeof i!="undefined")?i:OpenLayers.Number.decimalSeparator;if(a!=null){c=parseFloat(c.toFixed(a))}var b=c.toString().split(".");if(b.length==1&&a==null){a=0}var d=b[0];if(g){var e=/(-?[0-9]+)([0-9]{3})/;while(e.test(d)){d=d.replace(e,"$1"+g+"$2")}}var f;if(a==0){f=d}else{var h=b.length>1?b[1]:"0";if(a!=null){h=h+new Array(a-h.length+1).join("0")}f=d+i+h}return f}};if(!Number.prototype.limitSigDigs){Number.prototype.limitSigDigs=function(a){OpenLayers.Console.warn(OpenLayers.i18n("methodDeprecated",{newMethod:"OpenLayers.Number.limitSigDigs"}));return OpenLayers.Number.limitSigDigs(this,a)}}OpenLayers.Function={bind:function(c,b){var a=Array.prototype.slice.apply(arguments,[2]);return function(){var d=a.concat(Array.prototype.slice.apply(arguments,[0]));return c.apply(b,d)}},bindAsEventListener:function(b,a){return function(c){return b.call(a,c||window.event)}},False:function(){return false},True:function(){return true}};if(!Function.prototype.bind){Function.prototype.bind=function(){OpenLayers.Console.warn(OpenLayers.i18n("methodDeprecated",{newMethod:"OpenLayers.Function.bind"}));Array.prototype.unshift.apply(arguments,[this]);return OpenLayers.Function.bind.apply(null,arguments)}}if(!Function.prototype.bindAsEventListener){Function.prototype.bindAsEventListener=function(a){OpenLayers.Console.warn(OpenLayers.i18n("methodDeprecated",{newMethod:"OpenLayers.Function.bindAsEventListener"}));return OpenLayers.Function.bindAsEventListener(this,a)}}OpenLayers.Array={filter:function(g,f,b){var d=[];if(Array.prototype.filter){d=g.filter(f,b)}else{var a=g.length;if(typeof f!="function"){throw new TypeError()}for(var c=0;c<a;c++){if(c in g){var e=g[c];if(f.call(b,e,c,g)){d.push(e)}}}}return d}};OpenLayers.Date={toISOString:(function(){if("toISOString" in Date.prototype){return function(b){return b.toISOString()}}else{function a(c,b){var d=c+"";while(d.length<b){d="0"+d}return d}return function(b){var c;if(isNaN(b.getTime())){c="Invalid Date"}else{c=b.getUTCFullYear()+"-"+a(b.getUTCMonth()+1,2)+"-"+a(b.getUTCDate(),2)+"T"+a(b.getUTCHours(),2)+":"+a(b.getUTCMinutes(),2)+":"+a(b.getUTCSeconds(),2)+"."+a(b.getUTCMilliseconds(),3)+"Z"}return c}}})(),parse:function(j){var b;var p=Date.parse(j);if(!isNaN(p)){b=new Date(p)}else{var h=j.match(/^(?:(\d{4})(?:-(\d{2})(?:-(\d{2}))?)?)?(?:T(\d{1,2}):(\d{2}):(\d{2}(?:\.\d+)?)(Z|(?:[+-]\d{1,2}(?::(\d{2}))?)))?$/);var b;if(h&&(h[1]||h[7])){var k=parseInt(h[1],10)||0;var i=(parseInt(h[2],10)-1)||0;var m=parseInt(h[3],10)||1;b=new Date(Date.UTC(k,i,m));var l=h[7];if(l){var n=parseInt(h[4],10);var d=parseInt(h[5],10);var a=parseFloat(h[6]);var o=a|0;var c=Math.round(1000*(a-o));b.setUTCHours(n,d,o,c);if(l!=="Z"){var g=parseInt(l,10);var f=parseInt(h[8])||0;var e=-1000*(60*(g*60)+f*60);b=new Date(b.getTime()+e)}}}else{b=new Date("invalid")}}return b}};OpenLayers.Class=function(){var e=function(){if(arguments&&arguments[0]!=OpenLayers.Class.isPrototype){this.initialize.apply(this,arguments)}};var c={};var g,b,d;for(var f=0,a=arguments.length;f<a;++f){d=arguments[f];if(typeof d=="function"){if(f==0&&a>1){b=d.prototype.initialize;d.prototype.initialize=function(){};c=new d();if(b===undefined){delete d.prototype.initialize}else{d.prototype.initialize=b}}g=d.prototype}else{g=d}OpenLayers.Util.extend(c,g)}e.prototype=c;return e};OpenLayers.Class.isPrototype=function(){};OpenLayers.Class.create=function(){return function(){if(arguments&&arguments[0]!=OpenLayers.Class.isPrototype){this.initialize.apply(this,arguments)}}};OpenLayers.Class.inherit=function(){var d=arguments[0];var e=new d(OpenLayers.Class.isPrototype);for(var c=1,a=arguments.length;c<a;c++){if(typeof arguments[c]=="function"){var b=arguments[c];arguments[c]=new b(OpenLayers.Class.isPrototype)}OpenLayers.Util.extend(e,arguments[c])}return e};OpenLayers.Util={};OpenLayers.Util.getElement=function(){var d=[];for(var c=0,a=arguments.length;c<a;c++){var b=arguments[c];if(typeof b=="string"){b=document.getElementById(b)}if(arguments.length==1){return b}d.push(b)}return d};OpenLayers.Util.isElement=function(a){return !!(a&&a.nodeType===1)};if(typeof window.$==="undefined"){window.$=OpenLayers.Util.getElement}OpenLayers.Util.extend=function(a,e){a=a||{};if(e){for(var d in e){var c=e[d];if(c!==undefined){a[d]=c}}var b=typeof window.Event=="function"&&e instanceof window.Event;if(!b&&e.hasOwnProperty&&e.hasOwnProperty("toString")){a.toString=e.toString}}return a};OpenLayers.Util.removeItem=function(c,b){for(var a=c.length-1;a>=0;a--){if(c[a]==b){c.splice(a,1)}}return c};OpenLayers.Util.clearArray=function(a){OpenLayers.Console.warn(OpenLayers.i18n("methodDeprecated",{newMethod:"array = []"}));a.length=0};OpenLayers.Util.indexOf=function(d,c){if(typeof d.indexOf=="function"){return d.indexOf(c)}else{for(var b=0,a=d.length;b<a;b++){if(d[b]==c){return b}}return -1}};OpenLayers.Util.modifyDOMElement=function(e,h,d,f,a,c,g,b){if(h){e.id=h}if(d){e.style.left=d.x+"px";e.style.top=d.y+"px"}if(f){e.style.width=f.w+"px";e.style.height=f.h+"px"}if(a){e.style.position=a}if(c){e.style.border=c}if(g){e.style.overflow=g}if(parseFloat(b)>=0&&parseFloat(b)<1){e.style.filter="alpha(opacity="+(b*100)+")";e.style.opacity=b}else{if(parseFloat(b)==1){e.style.filter="";e.style.opacity=""}}};OpenLayers.Util.createDiv=function(a,i,h,f,e,c,b,g){var d=document.createElement("div");if(f){d.style.backgroundImage="url("+f+")"}if(!a){a=OpenLayers.Util.createUniqueID("OpenLayersDiv")}if(!e){e="absolute"}OpenLayers.Util.modifyDOMElement(d,a,i,h,e,c,b,g);return d};OpenLayers.Util.createImage=function(a,h,g,e,d,c,f,i){var b=document.createElement("img");if(!a){a=OpenLayers.Util.createUniqueID("OpenLayersDiv")}if(!d){d="relative"}OpenLayers.Util.modifyDOMElement(b,a,h,g,d,c,null,f);if(i){b.style.display="none";OpenLayers.Event.observe(b,"load",OpenLayers.Function.bind(OpenLayers.Util.onImageLoad,b));OpenLayers.Event.observe(b,"error",OpenLayers.Function.bind(OpenLayers.Util.onImageLoadError,b))}b.style.alt=a;b.galleryImg="no";if(e){b.src=e}return b};OpenLayers.Util.setOpacity=function(b,a){OpenLayers.Util.modifyDOMElement(b,null,null,null,null,null,null,a)};OpenLayers.Util.onImageLoad=function(){if(!this.viewRequestID||(this.map&&this.viewRequestID==this.map.viewRequestID)){this.style.display=""}OpenLayers.Element.removeClass(this,"olImageLoadError")};OpenLayers.IMAGE_RELOAD_ATTEMPTS=0;OpenLayers.Util.onImageLoadError=function(){this._attempts=(this._attempts)?(this._attempts+1):1;if(this._attempts<=OpenLayers.IMAGE_RELOAD_ATTEMPTS){var d=this.urls;if(d&&d instanceof Array&&d.length>1){var e=this.src.toString();var c,a;for(a=0;c=d[a];a++){if(e.indexOf(c)!=-1){break}}var f=Math.floor(d.length*Math.random());var b=d[f];a=0;while(b==c&&a++<4){f=Math.floor(d.length*Math.random());b=d[f]}this.src=e.replace(c,b)}else{this.src=this.src}}else{OpenLayers.Element.addClass(this,"olImageLoadError")}this.style.display=""};OpenLayers.Util.alphaHackNeeded=null;OpenLayers.Util.alphaHack=function(){if(OpenLayers.Util.alphaHackNeeded==null){var d=navigator.appVersion.split("MSIE");var a=parseFloat(d[1]);var b=false;try{b=!!(document.body.filters)}catch(c){}OpenLayers.Util.alphaHackNeeded=(b&&(a>=5.5)&&(a<7))}return OpenLayers.Util.alphaHackNeeded};OpenLayers.Util.modifyAlphaImageDiv=function(a,b,j,i,g,f,c,d,h){OpenLayers.Util.modifyDOMElement(a,b,j,i,f,null,null,h);var e=a.childNodes[0];if(g){e.src=g}OpenLayers.Util.modifyDOMElement(e,a.id+"_innerImage",null,i,"relative",c);if(OpenLayers.Util.alphaHack()){if(a.style.display!="none"){a.style.display="inline-block"}if(d==null){d="scale"}a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+e.src+"', sizingMethod='"+d+"')";if(parseFloat(a.style.opacity)>=0&&parseFloat(a.style.opacity)<1){a.style.filter+=" alpha(opacity="+a.style.opacity*100+")"}e.style.filter="alpha(opacity=0)"}};OpenLayers.Util.createAlphaImageDiv=function(b,j,i,g,f,c,d,h,k){var a=OpenLayers.Util.createDiv();var e=OpenLayers.Util.createImage(null,null,null,null,null,null,null,false);a.appendChild(e);if(k){e.style.display="none";OpenLayers.Event.observe(e,"load",OpenLayers.Function.bind(OpenLayers.Util.onImageLoad,a));OpenLayers.Event.observe(e,"error",OpenLayers.Function.bind(OpenLayers.Util.onImageLoadError,a))}OpenLayers.Util.modifyAlphaImageDiv(a,b,j,i,g,f,c,d,h);return a};OpenLayers.Util.upperCaseObject=function(b){var a={};for(var c in b){a[c.toUpperCase()]=b[c]}return a};OpenLayers.Util.applyDefaults=function(d,c){d=d||{};var b=typeof window.Event=="function"&&c instanceof window.Event;for(var a in c){if(d[a]===undefined||(!b&&c.hasOwnProperty&&c.hasOwnProperty(a)&&!d.hasOwnProperty(a))){d[a]=c[a]}}if(!b&&c&&c.hasOwnProperty&&c.hasOwnProperty("toString")&&!d.hasOwnProperty("toString")){d.toString=c.toString}return d};OpenLayers.Util.getParameterString=function(c){var b=[];for(var h in c){var g=c[h];if((g!=null)&&(typeof g!="function")){var d;if(typeof g=="object"&&g.constructor==Array){var e=[];var i;for(var a=0,f=g.length;a<f;a++){i=g[a];e.push(encodeURIComponent((i===null||i===undefined)?"":i))}d=e.join(",")}else{d=encodeURIComponent(g)}b.push(encodeURIComponent(h)+"="+d)}}return b.join("&")};OpenLayers.Util.urlAppend=function(a,b){var d=a;if(b){var c=(a+" ").split(/[?&]/);d+=(c.pop()===" "?b:c.length?"&"+b:"?"+b)}return d};OpenLayers.ImgPath="";OpenLayers.Util.getImagesLocation=function(){return OpenLayers.ImgPath||(OpenLayers._getScriptLocation()+"img/")};OpenLayers.Util.Try=function(){var d=null;for(var c=0,a=arguments.length;c<a;c++){var b=arguments[c];try{d=b();break}catch(f){}}return d};OpenLayers.Util.getNodes=function(c,b){var a=OpenLayers.Util.Try(function(){return OpenLayers.Util._getNodes(c.documentElement.childNodes,b)},function(){return OpenLayers.Util._getNodes(c.childNodes,b)});return a};OpenLayers.Util._getNodes=function(c,e){var b=[];for(var d=0,a=c.length;d<a;d++){if(c[d].nodeName==e){b.push(c[d])}}return b};OpenLayers.Util.getTagText=function(c,d,b){var a=OpenLayers.Util.getNodes(c,d);if(a&&(a.length>0)){if(!b){b=0}if(a[b].childNodes.length>1){return a.childNodes[1].nodeValue}else{if(a[b].childNodes.length==1){return a[b].firstChild.nodeValue}}}else{return""}};OpenLayers.Util.getXmlNodeValue=function(a){var b=null;OpenLayers.Util.Try(function(){b=a.text;if(!b){b=a.textContent}if(!b){b=a.firstChild.nodeValue}},function(){b=a.textContent});return b};OpenLayers.Util.mouseLeft=function(a,c){var b=(a.relatedTarget)?a.relatedTarget:a.toElement;while(b!=c&&b!=null){b=b.parentNode}return(b!=c)};OpenLayers.Util.DEFAULT_PRECISION=14;OpenLayers.Util.toFloat=function(b,a){if(a==null){a=OpenLayers.Util.DEFAULT_PRECISION}var b;if(a==0){b=parseFloat(b)}else{b=parseFloat(parseFloat(b).toPrecision(a))}return b};OpenLayers.Util.rad=function(a){return a*Math.PI/180};OpenLayers.Util.deg=function(a){return a*180/Math.PI};OpenLayers.Util.VincentyConstants={a:6378137,b:6356752.3142,f:1/298.257223563};OpenLayers.Util.distVincenty=function(g,e){var k=OpenLayers.Util.VincentyConstants;var M=k.a,K=k.b,G=k.f;var n=OpenLayers.Util.rad(e.lon-g.lon);var J=Math.atan((1-G)*Math.tan(OpenLayers.Util.rad(g.lat)));var I=Math.atan((1-G)*Math.tan(OpenLayers.Util.rad(e.lat)));var m=Math.sin(J),i=Math.cos(J);var l=Math.sin(I),h=Math.cos(I);var r=n,o=2*Math.PI;var q=20;while(Math.abs(r-o)>1e-12&&--q>0){var z=Math.sin(r),c=Math.cos(r);var N=Math.sqrt((h*z)*(h*z)+(i*l-m*h*c)*(i*l-m*h*c));if(N==0){return 0}var E=m*l+i*h*c;var y=Math.atan2(N,E);var j=Math.asin(i*h*z/N);var F=Math.cos(j)*Math.cos(j);var p=E-2*m*l/F;var v=G/16*F*(4+G*(4-3*F));o=r;r=n+(1-v)*G*Math.sin(j)*(y+v*N*(p+v*E*(-1+2*p*p)))}if(q==0){return NaN}var u=F*(M*M-K*K)/(K*K);var x=1+u/16384*(4096+u*(-768+u*(320-175*u)));var w=u/1024*(256+u*(-128+u*(74-47*u)));var D=w*N*(p+w/4*(E*(-1+2*p*p)-w/6*p*(-3+4*N*N)*(-3+4*p*p)));var t=K*x*(y-D);var H=t.toFixed(3)/1000;return H};OpenLayers.Util.destinationVincenty=function(l,P,E){var o=OpenLayers.Util;var i=o.VincentyConstants;var Q=i.a,O=i.b,J=i.f;var N=l.lon;var g=l.lat;var q=E;var D=o.rad(P);var G=Math.sin(D);var h=Math.cos(D);var F=(1-J)*Math.tan(o.rad(g));var c=1/Math.sqrt((1+F*F)),j=F*c;var p=Math.atan2(F,h);var y=c*G;var I=1-y*y;var t=I*(Q*Q-O*O)/(O*O);var x=1+t/16384*(4096+t*(-768+t*(320-175*t)));var v=t/1024*(256+t*(-128+t*(74-47*t)));var w=q/(O*x),K=2*Math.PI;while(Math.abs(w-K)>1e-12){var m=Math.cos(2*p+w);var R=Math.sin(w);var H=Math.cos(w);var z=v*R*(m+v/4*(H*(-1+2*m*m)-v/6*m*(-3+4*R*R)*(-3+4*m*m)));K=w;w=q/(O*x)+z}var M=j*R-c*H*h;var d=Math.atan2(j*H+c*R*h,(1-J)*Math.sqrt(y*y+M*M));var n=Math.atan2(R*G,c*H-j*R*h);var r=J/16*I*(4+J*(4-3*I));var k=n-(1-r)*J*y*(w+r*R*(m+r*H*(-1+2*m*m)));var e=Math.atan2(y,-M);return new OpenLayers.LonLat(N+o.deg(k),o.deg(d))};OpenLayers.Util.getParameters=function(b){b=b||window.location.href;var a="";if(OpenLayers.String.contains(b,"?")){var c=b.indexOf("?")+1;var e=OpenLayers.String.contains(b,"#")?b.indexOf("#"):b.length;a=b.substring(c,e)}var l={};var d=a.split(/[&;]/);for(var g=0,h=d.length;g<h;++g){var f=d[g].split("=");if(f[0]){var k=decodeURIComponent(f[0]);var j=f[1]||"";j=decodeURIComponent(j.replace(/\+/g," ")).split(",");if(j.length==1){j=j[0]}l[k]=j}}return l};OpenLayers.Util.getArgs=function(a){OpenLayers.Console.warn(OpenLayers.i18n("methodDeprecated",{newMethod:"OpenLayers.Util.getParameters"}));return OpenLayers.Util.getParameters(a)};OpenLayers.Util.lastSeqID=0;OpenLayers.Util.createUniqueID=function(a){if(a==null){a="id_"}OpenLayers.Util.lastSeqID+=1;return a+OpenLayers.Util.lastSeqID};OpenLayers.INCHES_PER_UNIT={inches:1,ft:12,mi:63360,m:39.3701,km:39370.1,dd:4374754,yd:36};OpenLayers.INCHES_PER_UNIT["in"]=OpenLayers.INCHES_PER_UNIT.inches;OpenLayers.INCHES_PER_UNIT.degrees=OpenLayers.INCHES_PER_UNIT.dd;OpenLayers.INCHES_PER_UNIT.nmi=1852*OpenLayers.INCHES_PER_UNIT.m;OpenLayers.METERS_PER_INCH=0.0254000508001016;OpenLayers.Util.extend(OpenLayers.INCHES_PER_UNIT,{Inch:OpenLayers.INCHES_PER_UNIT.inches,Meter:1/OpenLayers.METERS_PER_INCH,Foot:0.3048006096012192/OpenLayers.METERS_PER_INCH,IFoot:0.3048/OpenLayers.METERS_PER_INCH,ClarkeFoot:0.3047972651151/OpenLayers.METERS_PER_INCH,SearsFoot:0.30479947153867626/OpenLayers.METERS_PER_INCH,GoldCoastFoot:0.3047997101815088/OpenLayers.METERS_PER_INCH,IInch:0.0254/OpenLayers.METERS_PER_INCH,MicroInch:0.0000254/OpenLayers.METERS_PER_INCH,Mil:2.54e-8/OpenLayers.METERS_PER_INCH,Centimeter:0.01/OpenLayers.METERS_PER_INCH,Kilometer:1000/OpenLayers.METERS_PER_INCH,Yard:0.9144018288036576/OpenLayers.METERS_PER_INCH,SearsYard:0.914398414616029/OpenLayers.METERS_PER_INCH,IndianYard:0.9143985307444408/OpenLayers.METERS_PER_INCH,IndianYd37:0.91439523/OpenLayers.METERS_PER_INCH,IndianYd62:0.9143988/OpenLayers.METERS_PER_INCH,IndianYd75:0.9143985/OpenLayers.METERS_PER_INCH,IndianFoot:0.30479951/OpenLayers.METERS_PER_INCH,IndianFt37:0.30479841/OpenLayers.METERS_PER_INCH,IndianFt62:0.3047996/OpenLayers.METERS_PER_INCH,IndianFt75:0.3047995/OpenLayers.METERS_PER_INCH,Mile:1609.3472186944373/OpenLayers.METERS_PER_INCH,IYard:0.9144/OpenLayers.METERS_PER_INCH,IMile:1609.344/OpenLayers.METERS_PER_INCH,NautM:1852/OpenLayers.METERS_PER_INCH,"Lat-66":110943.31648893273/OpenLayers.METERS_PER_INCH,"Lat-83":110946.25736872235/OpenLayers.METERS_PER_INCH,Decimeter:0.1/OpenLayers.METERS_PER_INCH,Millimeter:0.001/OpenLayers.METERS_PER_INCH,Dekameter:10/OpenLayers.METERS_PER_INCH,Decameter:10/OpenLayers.METERS_PER_INCH,Hectometer:100/OpenLayers.METERS_PER_INCH,GermanMeter:1.0000135965/OpenLayers.METERS_PER_INCH,CaGrid:0.999738/OpenLayers.METERS_PER_INCH,ClarkeChain:20.1166194976/OpenLayers.METERS_PER_INCH,GunterChain:20.11684023368047/OpenLayers.METERS_PER_INCH,BenoitChain:20.116782494375872/OpenLayers.METERS_PER_INCH,SearsChain:20.11676512155/OpenLayers.METERS_PER_INCH,ClarkeLink:0.201166194976/OpenLayers.METERS_PER_INCH,GunterLink:0.2011684023368047/OpenLayers.METERS_PER_INCH,BenoitLink:0.20116782494375873/OpenLayers.METERS_PER_INCH,SearsLink:0.2011676512155/OpenLayers.METERS_PER_INCH,Rod:5.02921005842012/OpenLayers.METERS_PER_INCH,IntnlChain:20.1168/OpenLayers.METERS_PER_INCH,IntnlLink:0.201168/OpenLayers.METERS_PER_INCH,Perch:5.02921005842012/OpenLayers.METERS_PER_INCH,Pole:5.02921005842012/OpenLayers.METERS_PER_INCH,Furlong:201.1684023368046/OpenLayers.METERS_PER_INCH,Rood:3.778266898/OpenLayers.METERS_PER_INCH,CapeFoot:0.3047972615/OpenLayers.METERS_PER_INCH,Brealey:375/OpenLayers.METERS_PER_INCH,ModAmFt:0.304812252984506/OpenLayers.METERS_PER_INCH,Fathom:1.8288/OpenLayers.METERS_PER_INCH,"NautM-UK":1853.184/OpenLayers.METERS_PER_INCH,"50kilometers":50000/OpenLayers.METERS_PER_INCH,"150kilometers":150000/OpenLayers.METERS_PER_INCH});OpenLayers.Util.extend(OpenLayers.INCHES_PER_UNIT,{mm:OpenLayers.INCHES_PER_UNIT.Meter/1000,cm:OpenLayers.INCHES_PER_UNIT.Meter/100,dm:OpenLayers.INCHES_PER_UNIT.Meter*100,km:OpenLayers.INCHES_PER_UNIT.Meter*1000,kmi:OpenLayers.INCHES_PER_UNIT.nmi,fath:OpenLayers.INCHES_PER_UNIT.Fathom,ch:OpenLayers.INCHES_PER_UNIT.IntnlChain,link:OpenLayers.INCHES_PER_UNIT.IntnlLink,"us-in":OpenLayers.INCHES_PER_UNIT.inches,"us-ft":OpenLayers.INCHES_PER_UNIT.Foot,"us-yd":OpenLayers.INCHES_PER_UNIT.Yard,"us-ch":OpenLayers.INCHES_PER_UNIT.GunterChain,"us-mi":OpenLayers.INCHES_PER_UNIT.Mile,"ind-yd":OpenLayers.INCHES_PER_UNIT.IndianYd37,"ind-ft":OpenLayers.INCHES_PER_UNIT.IndianFt37,"ind-ch":20.11669506/OpenLayers.METERS_PER_INCH});OpenLayers.DOTS_PER_INCH=72;OpenLayers.Util.normalizeScale=function(b){var a=(b>1)?(1/b):b;return a};OpenLayers.Util.getResolutionFromScale=function(d,a){var b;if(d){if(a==null){a="degrees"}var c=OpenLayers.Util.normalizeScale(d);b=1/(c*OpenLayers.INCHES_PER_UNIT[a]*OpenLayers.DOTS_PER_INCH)}return b};OpenLayers.Util.getScaleFromResolution=function(b,a){if(a==null){a="degrees"}var c=b*OpenLayers.INCHES_PER_UNIT[a]*OpenLayers.DOTS_PER_INCH;return c};OpenLayers.Util.safeStopPropagation=function(a){OpenLayers.Event.stop(a,true)};OpenLayers.Util.pagePosition=function(f){var a=0,d=0;var b=f;var g=f;while(b){if(b==document.body){if(OpenLayers.Element.getStyle(g,"position")=="absolute"){break}}a+=b.offsetTop||0;d+=b.offsetLeft||0;g=b;try{b=b.offsetParent}catch(c){OpenLayers.Console.error(OpenLayers.i18n("pagePositionFailed",{elemId:b.id}));break}}b=f;while(b){a-=b.scrollTop||0;d-=b.scrollLeft||0;b=b.parentNode}return[d,a]};OpenLayers.Util.isEquivalentUrl=function(f,e,c){c=c||{};OpenLayers.Util.applyDefaults(c,{ignoreCase:true,ignorePort80:true,ignoreHash:true});var b=OpenLayers.Util.createUrlObject(f,c);var a=OpenLayers.Util.createUrlObject(e,c);for(var d in b){if(d!=="args"){if(b[d]!=a[d]){return false}}}for(var d in b.args){if(b.args[d]!=a.args[d]){return false}delete a.args[d]}for(var d in a.args){return false}return true};OpenLayers.Util.createUrlObject=function(c,k){k=k||{};if(!(/^\w+:\/\//).test(c)){var g=window.location;var e=g.port?":"+g.port:"";var h=g.protocol+"//"+g.host.split(":").shift()+e;if(c.indexOf("/")===0){c=h+c}else{var f=g.pathname.split("/");f.pop();c=h+f.join("/")+"/"+c}}if(k.ignoreCase){c=c.toLowerCase()}var i=document.createElement("a");i.href=c;var d={};d.host=i.host.split(":").shift();d.protocol=i.protocol;if(k.ignorePort80){d.port=(i.port=="80"||i.port=="0")?"":i.port}else{d.port=(i.port==""||i.port=="0")?"80":i.port}d.hash=(k.ignoreHash||i.hash==="#")?"":i.hash;var b=i.search;if(!b){var j=c.indexOf("?");b=(j!=-1)?c.substr(j):""}d.args=OpenLayers.Util.getParameters(b);d.pathname=(i.pathname.charAt(0)=="/")?i.pathname:"/"+i.pathname;return d};OpenLayers.Util.removeTail=function(b){var c=null;var a=b.indexOf("?");var d=b.indexOf("#");if(a==-1){c=(d!=-1)?b.substr(0,d):b}else{c=(d!=-1)?b.substr(0,Math.min(a,d)):b.substr(0,a)}return c};OpenLayers.Util.getBrowserName=function(){var b="";var a=navigator.userAgent.toLowerCase();if(a.indexOf("opera")!=-1){b="opera"}else{if(a.indexOf("msie")!=-1){b="msie"}else{if(a.indexOf("safari")!=-1){b="safari"}else{if(a.indexOf("mozilla")!=-1){if(a.indexOf("firefox")!=-1){b="firefox"}else{b="mozilla"}}}}}return b};OpenLayers.Util.getRenderedDimensions=function(b,o,p){var k,e;var a=document.createElement("div");a.style.visibility="hidden";var n=(p&&p.containerElement)?p.containerElement:document.body;if(o){if(o.w){k=o.w;a.style.width=k+"px"}else{if(o.h){e=o.h;a.style.height=e+"px"}}}if(p&&p.displayClass){a.className=p.displayClass}var f=document.createElement("div");f.innerHTML=b;f.style.overflow="visible";if(f.childNodes){for(var d=0,c=f.childNodes.length;d<c;d++){if(!f.childNodes[d].style){continue}f.childNodes[d].style.overflow="visible"}}a.appendChild(f);n.appendChild(a);var m=false;var j=a.parentNode;while(j&&j.tagName.toLowerCase()!="body"){var g=OpenLayers.Element.getStyle(j,"position");if(g=="absolute"){m=true;break}else{if(g&&g!="static"){break}}j=j.parentNode}if(!m){a.style.position="absolute"}if(!k){k=parseInt(f.scrollWidth);a.style.width=k+"px"}if(!e){e=parseInt(f.scrollHeight)}a.removeChild(f);n.removeChild(a);return new OpenLayers.Size(k,e)};OpenLayers.Util.getScrollbarWidth=function(){var c=OpenLayers.Util._scrollbarWidth;if(c==null){var e=null;var d=null;var a=0;var b=0;e=document.createElement("div");e.style.position="absolute";e.style.top="-1000px";e.style.left="-1000px";e.style.width="100px";e.style.height="50px";e.style.overflow="hidden";d=document.createElement("div");d.style.width="100%";d.style.height="200px";e.appendChild(d);document.body.appendChild(e);a=d.offsetWidth;e.style.overflow="scroll";b=d.offsetWidth;document.body.removeChild(document.body.lastChild);OpenLayers.Util._scrollbarWidth=(a-b);c=OpenLayers.Util._scrollbarWidth}return c};OpenLayers.Util.getFormattedLonLat=function(h,b,e){if(!e){e="dms"}var d=Math.abs(h);var i=Math.floor(d);var a=(d-i)/(1/60);var c=a;a=Math.floor(a);var g=(c-a)/(1/60);g=Math.round(g*10);g/=10;if(i<10){i="0"+i}var f=i+"\u00B0";if(e.indexOf("dm")>=0){if(a<10){a="0"+a}f+=a+"'";if(e.indexOf("dms")>=0){if(g<10){g="0"+g}f+=g+'"'}}if(b=="lon"){f+=h<0?OpenLayers.i18n("W"):OpenLayers.i18n("E")}else{f+=h<0?OpenLayers.i18n("S"):OpenLayers.i18n("N")}return f};OpenLayers.Element={visible:function(a){return OpenLayers.Util.getElement(a).style.display!="none"},toggle:function(){for(var c=0,a=arguments.length;c<a;c++){var b=OpenLayers.Util.getElement(arguments[c]);var d=OpenLayers.Element.visible(b)?"hide":"show";OpenLayers.Element[d](b)}},hide:function(){for(var c=0,a=arguments.length;c<a;c++){var b=OpenLayers.Util.getElement(arguments[c]);if(b){b.style.display="none"}}},show:function(){for(var c=0,a=arguments.length;c<a;c++){var b=OpenLayers.Util.getElement(arguments[c]);if(b){b.style.display=""}}},remove:function(a){a=OpenLayers.Util.getElement(a);a.parentNode.removeChild(a)},getHeight:function(a){a=OpenLayers.Util.getElement(a);return a.offsetHeight},getDimensions:function(c){c=OpenLayers.Util.getElement(c);if(OpenLayers.Element.getStyle(c,"display")!="none"){return{width:c.offsetWidth,height:c.offsetHeight}}var b=c.style;var f=b.visibility;var d=b.position;var a=b.display;b.visibility="hidden";b.position="absolute";b.display="";var g=c.clientWidth;var e=c.clientHeight;b.display=a;b.position=d;b.visibility=f;return{width:g,height:e}},hasClass:function(b,a){var c=b.className;return(!!c&&new RegExp("(^|\\s)"+a+"(\\s|$)").test(c))},addClass:function(b,a){if(!OpenLayers.Element.hasClass(b,a)){b.className+=(b.className?" ":"")+a}return b},removeClass:function(b,a){var c=b.className;if(c){b.className=OpenLayers.String.trim(c.replace(new RegExp("(^|\\s+)"+a+"(\\s+|$)")," "))}return b},toggleClass:function(b,a){if(OpenLayers.Element.hasClass(b,a)){OpenLayers.Element.removeClass(b,a)}else{OpenLayers.Element.addClass(b,a)}return b},getStyle:function(c,d){c=OpenLayers.Util.getElement(c);var e=null;if(c&&c.style){e=c.style[OpenLayers.String.camelize(d)];if(!e){if(document.defaultView&&document.defaultView.getComputedStyle){var b=document.defaultView.getComputedStyle(c,null);e=b?b.getPropertyValue(d):null}else{if(c.currentStyle){e=c.currentStyle[OpenLayers.String.camelize(d)]}}}var a=["left","top","right","bottom"];if(window.opera&&(OpenLayers.Util.indexOf(a,d)!=-1)&&(OpenLayers.Element.getStyle(c,"position")=="static")){e="auto"}}return e=="auto"?null:e}};OpenLayers.Size=OpenLayers.Class({w:0,h:0,initialize:function(a,b){this.w=parseFloat(a);this.h=parseFloat(b)},toString:function(){return("w="+this.w+",h="+this.h)},clone:function(){return new OpenLayers.Size(this.w,this.h)},equals:function(b){var a=false;if(b!=null){a=((this.w==b.w&&this.h==b.h)||(isNaN(this.w)&&isNaN(this.h)&&isNaN(b.w)&&isNaN(b.h)))}return a},CLASS_NAME:"OpenLayers.Size"});OpenLayers.Console={log:function(){},debug:function(){},info:function(){},warn:function(){},error:function(){},userError:function(a){alert(a)},assert:function(){},dir:function(){},dirxml:function(){},trace:function(){},group:function(){},groupEnd:function(){},time:function(){},timeEnd:function(){},profile:function(){},profileEnd:function(){},count:function(){},CLASS_NAME:"OpenLayers.Console"};(function(){var b=document.getElementsByTagName("script");for(var c=0,a=b.length;c<a;++c){if(b[c].src.indexOf("firebug.js")!=-1){if(console){OpenLayers.Util.extend(OpenLayers.Console,console);break}}}})();OpenLayers.Icon=OpenLayers.Class({url:null,size:null,offset:null,calculateOffset:null,imageDiv:null,px:null,initialize:function(a,b,d,c){this.url=a;this.size=(b)?b:new OpenLayers.Size(20,20);this.offset=d?d:new OpenLayers.Pixel(-(this.size.w/2),-(this.size.h/2));this.calculateOffset=c;var e=OpenLayers.Util.createUniqueID("OL_Icon_");this.imageDiv=OpenLayers.Util.createAlphaImageDiv(e)},destroy:function(){this.erase();OpenLayers.Event.stopObservingElement(this.imageDiv.firstChild);this.imageDiv.innerHTML="";this.imageDiv=null},clone:function(){return new OpenLayers.Icon(this.url,this.size,this.offset,this.calculateOffset)},setSize:function(a){if(a!=null){this.size=a}this.draw()},setUrl:function(a){if(a!=null){this.url=a}this.draw()},draw:function(a){OpenLayers.Util.modifyAlphaImageDiv(this.imageDiv,null,null,this.size,this.url,"absolute");this.moveTo(a);return this.imageDiv},erase:function(){if(this.imageDiv!=null&&this.imageDiv.parentNode!=null){OpenLayers.Element.remove(this.imageDiv)}},setOpacity:function(a){OpenLayers.Util.modifyAlphaImageDiv(this.imageDiv,null,null,null,null,null,null,null,a)},moveTo:function(a){if(a!=null){this.px=a}if(this.imageDiv!=null){if(this.px==null){this.display(false)}else{if(this.calculateOffset){this.offset=this.calculateOffset(this.size)}var b=this.px.offset(this.offset);OpenLayers.Util.modifyAlphaImageDiv(this.imageDiv,null,b)}}},display:function(a){this.imageDiv.style.display=(a)?"":"none"},isDrawn:function(){var a=(this.imageDiv&&this.imageDiv.parentNode&&(this.imageDiv.parentNode.nodeType!=11));return a},CLASS_NAME:"OpenLayers.Icon"});OpenLayers.Popup=OpenLayers.Class({events:null,id:"",lonlat:null,div:null,contentSize:null,size:null,contentHTML:null,backgroundColor:"",opacity:"",border:"",contentDiv:null,groupDiv:null,closeDiv:null,autoSize:false,minSize:null,maxSize:null,displayClass:"olPopup",contentDisplayClass:"olPopupContent",padding:0,disableFirefoxOverflowHack:false,fixPadding:function(){if(typeof this.padding=="number"){this.padding=new OpenLayers.Bounds(this.padding,this.padding,this.padding,this.padding)}},panMapIfOutOfView:false,keepInMap:false,closeOnMove:false,map:null,initialize:function(g,c,f,b,e,d){if(g==null){g=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")}this.id=g;this.lonlat=c;this.contentSize=(f!=null)?f:new OpenLayers.Size(OpenLayers.Popup.WIDTH,OpenLayers.Popup.HEIGHT);if(b!=null){this.contentHTML=b}this.backgroundColor=OpenLayers.Popup.COLOR;this.opacity=OpenLayers.Popup.OPACITY;this.border=OpenLayers.Popup.BORDER;this.div=OpenLayers.Util.createDiv(this.id,null,null,null,null,null,"hidden");this.div.className=this.displayClass;var a=this.id+"_GroupDiv";this.groupDiv=OpenLayers.Util.createDiv(a,null,null,null,"relative",null,"hidden");var g=this.div.id+"_contentDiv";this.contentDiv=OpenLayers.Util.createDiv(g,null,this.contentSize.clone(),null,"relative");this.contentDiv.className=this.contentDisplayClass;this.groupDiv.appendChild(this.contentDiv);this.div.appendChild(this.groupDiv);if(e){this.addCloseBox(d)}this.registerEvents()},destroy:function(){this.id=null;this.lonlat=null;this.size=null;this.contentHTML=null;this.backgroundColor=null;this.opacity=null;this.border=null;if(this.closeOnMove&&this.map){this.map.events.unregister("movestart",this,this.hide)}this.events.destroy();this.events=null;if(this.closeDiv){OpenLayers.Event.stopObservingElement(this.closeDiv);this.groupDiv.removeChild(this.closeDiv)}this.closeDiv=null;this.div.removeChild(this.groupDiv);this.groupDiv=null;if(this.map!=null){this.map.removePopup(this)}this.map=null;this.div=null;this.autoSize=null;this.minSize=null;this.maxSize=null;this.padding=null;this.panMapIfOutOfView=null},draw:function(a){if(a==null){if((this.lonlat!=null)&&(this.map!=null)){a=this.map.getLayerPxFromLonLat(this.lonlat)}}if(this.closeOnMove){this.map.events.register("movestart",this,this.hide)}if(!this.disableFirefoxOverflowHack&&OpenLayers.Util.getBrowserName()=="firefox"){this.map.events.register("movestart",this,function(){var b=document.defaultView.getComputedStyle(this.contentDiv,null);var c=b.getPropertyValue("overflow");if(c!="hidden"){this.contentDiv._oldOverflow=c;this.contentDiv.style.overflow="hidden"}});this.map.events.register("moveend",this,function(){var b=this.contentDiv._oldOverflow;if(b){this.contentDiv.style.overflow=b;this.contentDiv._oldOverflow=null}})}this.moveTo(a);if(!this.autoSize&&!this.size){this.setSize(this.contentSize)}this.setBackgroundColor();this.setOpacity();this.setBorder();this.setContentHTML();if(this.panMapIfOutOfView){this.panIntoView()}return this.div},updatePosition:function(){if((this.lonlat)&&(this.map)){var a=this.map.getLayerPxFromLonLat(this.lonlat);if(a){this.moveTo(a)}}},moveTo:function(a){if((a!=null)&&(this.div!=null)){this.div.style.left=a.x+"px";this.div.style.top=a.y+"px"}},visible:function(){return OpenLayers.Element.visible(this.div)},toggle:function(){if(this.visible()){this.hide()}else{this.show()}},show:function(){OpenLayers.Element.show(this.div);if(this.panMapIfOutOfView){this.panIntoView()}},hide:function(){OpenLayers.Element.hide(this.div)},setSize:function(c){this.size=c.clone();var b=this.getContentDivPadding();var a=b.left+b.right;var e=b.top+b.bottom;this.fixPadding();a+=this.padding.left+this.padding.right;e+=this.padding.top+this.padding.bottom;if(this.closeDiv){var d=parseInt(this.closeDiv.style.width);a+=d+b.right}this.size.w+=a;this.size.h+=e;if(OpenLayers.Util.getBrowserName()=="msie"){this.contentSize.w+=b.left+b.right;this.contentSize.h+=b.bottom+b.top}if(this.div!=null){this.div.style.width=this.size.w+"px";this.div.style.height=this.size.h+"px"}if(this.contentDiv!=null){this.contentDiv.style.width=c.w+"px";this.contentDiv.style.height=c.h+"px"}},updateSize:function(){var e="<div class='"+this.contentDisplayClass+"'>"+this.contentDiv.innerHTML+"</div>";var h=(this.map)?this.map.layerContainerDiv:document.body;var i=OpenLayers.Util.getRenderedDimensions(e,null,{displayClass:this.displayClass,containerElement:h});var g=this.getSafeContentSize(i);var f=null;if(g.equals(i)){f=i}else{var b=new OpenLayers.Size();b.w=(g.w<i.w)?g.w:null;b.h=(g.h<i.h)?g.h:null;if(b.w&&b.h){f=g}else{var d=OpenLayers.Util.getRenderedDimensions(e,b,{displayClass:this.contentDisplayClass,containerElement:h});var c=OpenLayers.Element.getStyle(this.contentDiv,"overflow");if((c!="hidden")&&(d.equals(g))){var a=OpenLayers.Util.getScrollbarWidth();if(b.w){d.h+=a}else{d.w+=a}}f=this.getSafeContentSize(d)}}this.setSize(f)},setBackgroundColor:function(a){if(a!=undefined){this.backgroundColor=a}if(this.div!=null){this.div.style.backgroundColor=this.backgroundColor}},setOpacity:function(a){if(a!=undefined){this.opacity=a}if(this.div!=null){this.div.style.opacity=this.opacity;this.div.style.filter="alpha(opacity="+this.opacity*100+")"}},setBorder:function(a){if(a!=undefined){this.border=a}if(this.div!=null){this.div.style.border=this.border}},setContentHTML:function(a){if(a!=null){this.contentHTML=a}if((this.contentDiv!=null)&&(this.contentHTML!=null)&&(this.contentHTML!=this.contentDiv.innerHTML)){this.contentDiv.innerHTML=this.contentHTML;if(this.autoSize){this.registerImageListeners();this.updateSize()}}},registerImageListeners:function(){var f=function(){this.popup.updateSize();if(this.popup.visible()&&this.popup.panMapIfOutOfView){this.popup.panIntoView()}OpenLayers.Event.stopObserving(this.img,"load",this.img._onImageLoad)};var b=this.contentDiv.getElementsByTagName("img");for(var e=0,a=b.length;e<a;e++){var c=b[e];if(c.width==0||c.height==0){var d={popup:this,img:c};c._onImgLoad=OpenLayers.Function.bind(f,d);OpenLayers.Event.observe(c,"load",c._onImgLoad)}}},getSafeContentSize:function(k){var d=k.clone();var i=this.getContentDivPadding();var j=i.left+i.right;var g=i.top+i.bottom;this.fixPadding();j+=this.padding.left+this.padding.right;g+=this.padding.top+this.padding.bottom;if(this.closeDiv){var c=parseInt(this.closeDiv.style.width);j+=c+i.right}if(this.minSize){d.w=Math.max(d.w,(this.minSize.w-j));d.h=Math.max(d.h,(this.minSize.h-g))}if(this.maxSize){d.w=Math.min(d.w,(this.maxSize.w-j));d.h=Math.min(d.h,(this.maxSize.h-g))}if(this.map&&this.map.size){var f=0,e=0;if(this.keepInMap&&!this.panMapIfOutOfView){var h=this.map.getPixelFromLonLat(this.lonlat);switch(this.relativePosition){case"tr":f=h.x;e=this.map.size.h-h.y;break;case"tl":f=this.map.size.w-h.x;e=this.map.size.h-h.y;break;case"bl":f=this.map.size.w-h.x;e=h.y;break;case"br":f=h.x;e=h.y;break;default:f=h.x;e=this.map.size.h-h.y;break}}var a=this.map.size.h-this.map.paddingForPopups.top-this.map.paddingForPopups.bottom-g-e;var b=this.map.size.w-this.map.paddingForPopups.left-this.map.paddingForPopups.right-j-f;d.w=Math.min(d.w,b);d.h=Math.min(d.h,a)}return d},getContentDivPadding:function(){var a=this._contentDivPadding;if(!a){if(this.div.parentNode==null){this.div.style.display="none";document.body.appendChild(this.div)}a=new OpenLayers.Bounds(OpenLayers.Element.getStyle(this.contentDiv,"padding-left"),OpenLayers.Element.getStyle(this.contentDiv,"padding-bottom"),OpenLayers.Element.getStyle(this.contentDiv,"padding-right"),OpenLayers.Element.getStyle(this.contentDiv,"padding-top"));this._contentDivPadding=a;if(this.div.parentNode==document.body){document.body.removeChild(this.div);this.div.style.display=""}}return a},addCloseBox:function(c){this.closeDiv=OpenLayers.Util.createDiv(this.id+"_close",null,new OpenLayers.Size(17,17));this.closeDiv.className="olPopupCloseBox";var b=this.getContentDivPadding();this.closeDiv.style.right=b.right+"px";this.closeDiv.style.top=b.top+"px";this.groupDiv.appendChild(this.closeDiv);var a=c||function(d){this.hide();OpenLayers.Event.stop(d)};OpenLayers.Event.observe(this.closeDiv,"click",OpenLayers.Function.bindAsEventListener(a,this))},panIntoView:function(){var e=this.map.getSize();var d=this.map.getViewPortPxFromLayerPx(new OpenLayers.Pixel(parseInt(this.div.style.left),parseInt(this.div.style.top)));var c=d.clone();if(d.x<this.map.paddingForPopups.left){c.x=this.map.paddingForPopups.left}else{if((d.x+this.size.w)>(e.w-this.map.paddingForPopups.right)){c.x=e.w-this.map.paddingForPopups.right-this.size.w}}if(d.y<this.map.paddingForPopups.top){c.y=this.map.paddingForPopups.top}else{if((d.y+this.size.h)>(e.h-this.map.paddingForPopups.bottom)){c.y=e.h-this.map.paddingForPopups.bottom-this.size.h}}var b=d.x-c.x;var a=d.y-c.y;this.map.pan(b,a)},registerEvents:function(){this.events=new OpenLayers.Events(this,this.div,null,true);this.events.on({mousedown:this.onmousedown,mousemove:this.onmousemove,mouseup:this.onmouseup,click:this.onclick,mouseout:this.onmouseout,dblclick:this.ondblclick,scope:this})},onmousedown:function(a){this.mousedown=true;OpenLayers.Event.stop(a,true)},onmousemove:function(a){if(this.mousedown){OpenLayers.Event.stop(a,true)}},onmouseup:function(a){if(this.mousedown){this.mousedown=false;OpenLayers.Event.stop(a,true)}},onclick:function(a){OpenLayers.Event.stop(a,true)},onmouseout:function(a){this.mousedown=false},ondblclick:function(a){OpenLayers.Event.stop(a,true)},CLASS_NAME:"OpenLayers.Popup"});OpenLayers.Popup.WIDTH=200;OpenLayers.Popup.HEIGHT=200;OpenLayers.Popup.COLOR="white";OpenLayers.Popup.OPACITY=1;OpenLayers.Popup.BORDER="0px";OpenLayers.Bounds=OpenLayers.Class({left:null,bottom:null,right:null,top:null,centerLonLat:null,initialize:function(d,a,b,c){if(d!=null){this.left=OpenLayers.Util.toFloat(d)}if(a!=null){this.bottom=OpenLayers.Util.toFloat(a)}if(b!=null){this.right=OpenLayers.Util.toFloat(b)}if(c!=null){this.top=OpenLayers.Util.toFloat(c)}},clone:function(){return new OpenLayers.Bounds(this.left,this.bottom,this.right,this.top)},equals:function(b){var a=false;if(b!=null){a=((this.left==b.left)&&(this.right==b.right)&&(this.top==b.top)&&(this.bottom==b.bottom))}return a},toString:function(){return("left-bottom=("+this.left+","+this.bottom+") right-top=("+this.right+","+this.top+")")},toArray:function(a){if(a===true){return[this.bottom,this.left,this.top,this.right]}else{return[this.left,this.bottom,this.right,this.top]}},toBBOX:function(b,e){if(b==null){b=6}var g=Math.pow(10,b);var f=Math.round(this.left*g)/g;var d=Math.round(this.bottom*g)/g;var c=Math.round(this.right*g)/g;var a=Math.round(this.top*g)/g;if(e===true){return d+","+f+","+a+","+c}else{return f+","+d+","+c+","+a}},toGeometry:function(){return new OpenLayers.Geometry.Polygon([new OpenLayers.Geometry.LinearRing([new OpenLayers.Geometry.Point(this.left,this.bottom),new OpenLayers.Geometry.Point(this.right,this.bottom),new OpenLayers.Geometry.Point(this.right,this.top),new OpenLayers.Geometry.Point(this.left,this.top)])])},getWidth:function(){return(this.right-this.left)},getHeight:function(){return(this.top-this.bottom)},getSize:function(){return new OpenLayers.Size(this.getWidth(),this.getHeight())},getCenterPixel:function(){return new OpenLayers.Pixel((this.left+this.right)/2,(this.bottom+this.top)/2)},getCenterLonLat:function(){if(!this.centerLonLat){this.centerLonLat=new OpenLayers.LonLat((this.left+this.right)/2,(this.bottom+this.top)/2)}return this.centerLonLat},scale:function(e,c){if(c==null){c=this.getCenterLonLat()}var a,h;if(c.CLASS_NAME=="OpenLayers.LonLat"){a=c.lon;h=c.lat}else{a=c.x;h=c.y}var g=(this.left-a)*e+a;var b=(this.bottom-h)*e+h;var d=(this.right-a)*e+a;var f=(this.top-h)*e+h;return new OpenLayers.Bounds(g,b,d,f)},add:function(a,c){if((a==null)||(c==null)){var b=OpenLayers.i18n("boundsAddError");OpenLayers.Console.error(b);return null}return new OpenLayers.Bounds(this.left+a,this.bottom+c,this.right+a,this.top+c)},extend:function(a){var b=null;if(a){switch(a.CLASS_NAME){case"OpenLayers.LonLat":b=new OpenLayers.Bounds(a.lon,a.lat,a.lon,a.lat);break;case"OpenLayers.Geometry.Point":b=new OpenLayers.Bounds(a.x,a.y,a.x,a.y);break;case"OpenLayers.Bounds":b=a;break}if(b){this.centerLonLat=null;if((this.left==null)||(b.left<this.left)){this.left=b.left}if((this.bottom==null)||(b.bottom<this.bottom)){this.bottom=b.bottom}if((this.right==null)||(b.right>this.right)){this.right=b.right}if((this.top==null)||(b.top>this.top)){this.top=b.top}}}},containsLonLat:function(b,a){return this.contains(b.lon,b.lat,a)},containsPixel:function(b,a){return this.contains(b.x,b.y,a)},contains:function(b,d,a){if(a==null){a=true}if(b==null||d==null){return false}b=OpenLayers.Util.toFloat(b);d=OpenLayers.Util.toFloat(d);var c=false;if(a){c=((b>=this.left)&&(b<=this.right)&&(d>=this.bottom)&&(d<=this.top))}else{c=((b>this.left)&&(b<this.right)&&(d>this.bottom)&&(d<this.top))}return c},intersectsBounds:function(e,b){if(b==null){b=true}var d=false;var h=(this.left==e.right||this.right==e.left||this.top==e.bottom||this.bottom==e.top);if(b||!h){var g=(((e.bottom>=this.bottom)&&(e.bottom<=this.top))||((this.bottom>=e.bottom)&&(this.bottom<=e.top)));var f=(((e.top>=this.bottom)&&(e.top<=this.top))||((this.top>e.bottom)&&(this.top<e.top)));var c=(((e.left>=this.left)&&(e.left<=this.right))||((this.left>=e.left)&&(this.left<=e.right)));var a=(((e.right>=this.left)&&(e.right<=this.right))||((this.right>=e.left)&&(this.right<=e.right)));d=((g||f)&&(c||a))}return d},containsBounds:function(g,b,a){if(b==null){b=false}if(a==null){a=true}var c=this.contains(g.left,g.bottom,a);var d=this.contains(g.right,g.bottom,a);var f=this.contains(g.left,g.top,a);var e=this.contains(g.right,g.top,a);return(b)?(c||d||f||e):(c&&d&&f&&e)},determineQuadrant:function(c){var b="";var a=this.getCenterLonLat();b+=(c.lat<a.lat)?"b":"t";b+=(c.lon<a.lon)?"l":"r";return b},transform:function(d,b){this.centerLonLat=null;var e=OpenLayers.Projection.transform({x:this.left,y:this.bottom},d,b);var a=OpenLayers.Projection.transform({x:this.right,y:this.bottom},d,b);var c=OpenLayers.Projection.transform({x:this.left,y:this.top},d,b);var f=OpenLayers.Projection.transform({x:this.right,y:this.top},d,b);this.left=Math.min(e.x,c.x);this.bottom=Math.min(e.y,a.y);this.right=Math.max(a.x,f.x);this.top=Math.max(c.y,f.y);return this},wrapDateLine:function(a,c){c=c||{};var d=c.leftTolerance||0;var b=c.rightTolerance||0;var e=this.clone();if(a){while(e.left<a.left&&(e.right-b)<=a.left){e=e.add(a.getWidth(),0)}while((e.left+d)>=a.right&&e.right>a.right){e=e.add(-a.getWidth(),0)}}return e},CLASS_NAME:"OpenLayers.Bounds"});OpenLayers.Bounds.fromString=function(b){var a=b.split(",");return OpenLayers.Bounds.fromArray(a)};OpenLayers.Bounds.fromArray=function(a){return new OpenLayers.Bounds(parseFloat(a[0]),parseFloat(a[1]),parseFloat(a[2]),parseFloat(a[3]))};OpenLayers.Bounds.fromSize=function(a){return new OpenLayers.Bounds(0,a.h,a.w,0)};OpenLayers.Bounds.oppositeQuadrant=function(a){var b="";b+=(a.charAt(0)=="t")?"b":"t";b+=(a.charAt(1)=="l")?"r":"l";return b};OpenLayers.LonLat=OpenLayers.Class({lon:0,lat:0,initialize:function(b,a){this.lon=OpenLayers.Util.toFloat(b);this.lat=OpenLayers.Util.toFloat(a)},toString:function(){return("lon="+this.lon+",lat="+this.lat)},toShortString:function(){return(this.lon+", "+this.lat)},clone:function(){return new OpenLayers.LonLat(this.lon,this.lat)},add:function(c,a){if((c==null)||(a==null)){var b=OpenLayers.i18n("lonlatAddError");OpenLayers.Console.error(b);return null}return new OpenLayers.LonLat(this.lon+OpenLayers.Util.toFloat(c),this.lat+OpenLayers.Util.toFloat(a))},equals:function(b){var a=false;if(b!=null){a=((this.lon==b.lon&&this.lat==b.lat)||(isNaN(this.lon)&&isNaN(this.lat)&&isNaN(b.lon)&&isNaN(b.lat)))}return a},transform:function(c,b){var a=OpenLayers.Projection.transform({x:this.lon,y:this.lat},c,b);this.lon=a.x;this.lat=a.y;return this},wrapDateLine:function(a){var b=this.clone();if(a){while(b.lon<a.left){b.lon+=a.getWidth()}while(b.lon>a.right){b.lon-=a.getWidth()}}return b},CLASS_NAME:"OpenLayers.LonLat"});OpenLayers.LonLat.fromString=function(b){var a=b.split(",");return new OpenLayers.LonLat(a[0],a[1])};OpenLayers.Pixel=OpenLayers.Class({x:0,y:0,initialize:function(a,b){this.x=parseFloat(a);this.y=parseFloat(b)},toString:function(){return("x="+this.x+",y="+this.y)},clone:function(){return new OpenLayers.Pixel(this.x,this.y)},equals:function(a){var b=false;if(a!=null){b=((this.x==a.x&&this.y==a.y)||(isNaN(this.x)&&isNaN(this.y)&&isNaN(a.x)&&isNaN(a.y)))}return b},add:function(a,c){if((a==null)||(c==null)){var b=OpenLayers.i18n("pixelAddError");OpenLayers.Console.error(b);return null}return new OpenLayers.Pixel(this.x+a,this.y+c)},offset:function(a){var b=this.clone();if(a){b=this.add(a.x,a.y)}return b},CLASS_NAME:"OpenLayers.Pixel"});OpenLayers.Control=OpenLayers.Class({id:null,map:null,div:null,type:null,allowSelection:false,displayClass:"",title:"",autoActivate:false,active:null,handler:null,eventListeners:null,events:null,EVENT_TYPES:["activate","deactivate"],initialize:function(a){this.displayClass=this.CLASS_NAME.replace("OpenLayers.","ol").replace(/\./g,"");OpenLayers.Util.extend(this,a);this.events=new OpenLayers.Events(this,null,this.EVENT_TYPES);if(this.eventListeners instanceof Object){this.events.on(this.eventListeners)}if(this.id==null){this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")}},destroy:function(){if(this.events){if(this.eventListeners){this.events.un(this.eventListeners)}this.events.destroy();this.events=null}this.eventListeners=null;if(this.handler){this.handler.destroy();this.handler=null}if(this.handlers){for(var a in this.handlers){if(this.handlers.hasOwnProperty(a)&&typeof this.handlers[a].destroy=="function"){this.handlers[a].destroy()}}this.handlers=null}if(this.map){this.map.removeControl(this);this.map=null}},setMap:function(a){this.map=a;if(this.handler){this.handler.setMap(a)}},draw:function(a){if(this.div==null){this.div=OpenLayers.Util.createDiv(this.id);this.div.className=this.displayClass;if(!this.allowSelection){this.div.className+=" olControlNoSelect";this.div.setAttribute("unselectable","on",0);this.div.onselectstart=OpenLayers.Function.False}if(this.title!=""){this.div.title=this.title}}if(a!=null){this.position=a.clone()}this.moveTo(this.position);return this.div},moveTo:function(a){if((a!=null)&&(this.div!=null)){this.div.style.left=a.x+"px";this.div.style.top=a.y+"px"}},activate:function(){if(this.active){return false}if(this.handler){this.handler.activate()}this.active=true;if(this.map){OpenLayers.Element.addClass(this.map.viewPortDiv,this.displayClass.replace(/ /g,"")+"Active")}this.events.triggerEvent("activate");return true},deactivate:function(){if(this.active){if(this.handler){this.handler.deactivate()}this.active=false;if(this.map){OpenLayers.Element.removeClass(this.map.viewPortDiv,this.displayClass.replace(/ /g,"")+"Active")}this.events.triggerEvent("deactivate");return true}return false},CLASS_NAME:"OpenLayers.Control"});OpenLayers.Control.TYPE_BUTTON=1;OpenLayers.Control.TYPE_TOGGLE=2;OpenLayers.Control.TYPE_TOOL=3;OpenLayers.Lang={code:null,defaultCode:"en",getCode:function(){if(!OpenLayers.Lang.code){OpenLayers.Lang.setCode()}return OpenLayers.Lang.code},setCode:function(b){var d;if(!b){b=(OpenLayers.Util.getBrowserName()=="msie")?navigator.userLanguage:navigator.language}var c=b.split("-");c[0]=c[0].toLowerCase();if(typeof OpenLayers.Lang[c[0]]=="object"){d=c[0]}if(c[1]){var a=c[0]+"-"+c[1].toUpperCase();if(typeof OpenLayers.Lang[a]=="object"){d=a}}if(!d){OpenLayers.Console.warn("Failed to find OpenLayers.Lang."+c.join("-")+" dictionary, falling back to default language");d=OpenLayers.Lang.defaultCode}OpenLayers.Lang.code=d},translate:function(b,a){var d=OpenLayers.Lang[OpenLayers.Lang.getCode()];var c=d[b];if(!c){c=b}if(a){c=OpenLayers.String.format(c,a)}return c}};OpenLayers.i18n=OpenLayers.Lang.translate;OpenLayers.Popup.Anchored=OpenLayers.Class(OpenLayers.Popup,{relativePosition:null,keepInMap:true,anchor:null,initialize:function(h,d,g,c,b,f,e){var a=[h,d,g,c,f,e];OpenLayers.Popup.prototype.initialize.apply(this,a);this.anchor=(b!=null)?b:{size:new OpenLayers.Size(0,0),offset:new OpenLayers.Pixel(0,0)}},destroy:function(){this.anchor=null;this.relativePosition=null;OpenLayers.Popup.prototype.destroy.apply(this,arguments)},show:function(){this.updatePosition();OpenLayers.Popup.prototype.show.apply(this,arguments)},moveTo:function(c){var b=this.relativePosition;this.relativePosition=this.calculateRelativePosition(c);var d=this.calculateNewPx(c);var a=new Array(d);OpenLayers.Popup.prototype.moveTo.apply(this,a);if(this.relativePosition!=b){this.updateRelativePosition()}},setSize:function(b){OpenLayers.Popup.prototype.setSize.apply(this,arguments);if((this.lonlat)&&(this.map)){var a=this.map.getLayerPxFromLonLat(this.lonlat);this.moveTo(a)}},calculateRelativePosition:function(b){var d=this.map.getLonLatFromLayerPx(b);var c=this.map.getExtent();var a=c.determineQuadrant(d);return OpenLayers.Bounds.oppositeQuadrant(a)},updateRelativePosition:function(){},calculateNewPx:function(b){var e=b.offset(this.anchor.offset);var a=this.size||this.contentSize;var d=(this.relativePosition.charAt(0)=="t");e.y+=(d)?-(a.h+this.anchor.size.h):this.anchor.size.h;var c=(this.relativePosition.charAt(1)=="l");e.x+=(c)?-(a.w+this.anchor.size.w):this.anchor.size.w;return e},CLASS_NAME:"OpenLayers.Popup.Anchored"});OpenLayers.Tween=OpenLayers.Class({INTERVAL:10,easing:null,begin:null,finish:null,duration:null,callbacks:null,time:null,interval:null,playing:false,initialize:function(a){this.easing=(a)?a:OpenLayers.Easing.Expo.easeOut},start:function(c,b,d,a){this.playing=true;this.begin=c;this.finish=b;this.duration=d;this.callbacks=a.callbacks;this.time=0;if(this.interval){window.clearInterval(this.interval);this.interval=null}if(this.callbacks&&this.callbacks.start){this.callbacks.start.call(this,this.begin)}this.interval=window.setInterval(OpenLayers.Function.bind(this.play,this),this.INTERVAL)},stop:function(){if(!this.playing){return}if(this.callbacks&&this.callbacks.done){this.callbacks.done.call(this,this.finish)}window.clearInterval(this.interval);this.interval=null;this.playing=false},play:function(){var g={};for(var d in this.begin){var a=this.begin[d];var e=this.finish[d];if(a==null||e==null||isNaN(a)||isNaN(e)){OpenLayers.Console.error("invalid value for Tween")}var h=e-a;g[d]=this.easing.apply(this,[this.time,a,h,this.duration])}this.time++;if(this.callbacks&&this.callbacks.eachStep){this.callbacks.eachStep.call(this,g)}if(this.time>this.duration){this.stop()}},CLASS_NAME:"OpenLayers.Tween"});OpenLayers.Easing={CLASS_NAME:"OpenLayers.Easing"};OpenLayers.Easing.Linear={easeIn:function(e,a,g,f){return g*e/f+a},easeOut:function(e,a,g,f){return g*e/f+a},easeInOut:function(e,a,g,f){return g*e/f+a},CLASS_NAME:"OpenLayers.Easing.Linear"};OpenLayers.Easing.Expo={easeIn:function(e,a,g,f){return(e==0)?a:g*Math.pow(2,10*(e/f-1))+a},easeOut:function(e,a,g,f){return(e==f)?a+g:g*(-Math.pow(2,-10*e/f)+1)+a},easeInOut:function(e,a,g,f){if(e==0){return a}if(e==f){return a+g}if((e/=f/2)<1){return g/2*Math.pow(2,10*(e-1))+a}return g/2*(-Math.pow(2,-10*--e)+2)+a},CLASS_NAME:"OpenLayers.Easing.Expo"};OpenLayers.Easing.Quad={easeIn:function(e,a,g,f){return g*(e/=f)*e+a},easeOut:function(e,a,g,f){return -g*(e/=f)*(e-2)+a},easeInOut:function(e,a,g,f){if((e/=f/2)<1){return g/2*e*e+a}return -g/2*((--e)*(e-2)-1)+a},CLASS_NAME:"OpenLayers.Easing.Quad"};OpenLayers.Control.ArgParser=OpenLayers.Class(OpenLayers.Control,{center:null,zoom:null,layers:null,displayProjection:null,initialize:function(a){OpenLayers.Control.prototype.initialize.apply(this,arguments)},setMap:function(e){OpenLayers.Control.prototype.setMap.apply(this,arguments);for(var c=0,a=this.map.controls.length;c<a;c++){var d=this.map.controls[c];if((d!=this)&&(d.CLASS_NAME=="OpenLayers.Control.ArgParser")){if(d.displayProjection!=this.displayProjection){this.displayProjection=d.displayProjection}break}}if(c==this.map.controls.length){var b=OpenLayers.Util.getParameters();if(b.layers){this.layers=b.layers;this.map.events.register("addlayer",this,this.configureLayers);this.configureLayers()}if(b.lat&&b.lon){this.center=new OpenLayers.LonLat(parseFloat(b.lon),parseFloat(b.lat));if(b.zoom){this.zoom=parseInt(b.zoom)}this.map.events.register("changebaselayer",this,this.setCenter);this.setCenter()}}},setCenter:function(){if(this.map.baseLayer){this.map.events.unregister("changebaselayer",this,this.setCenter);if(this.displayProjection){this.center.transform(this.displayProjection,this.map.getProjectionObject())}this.map.setCenter(this.center,this.zoom)}},configureLayers:function(){if(this.layers.length==this.map.layers.length){this.map.events.unregister("addlayer",this,this.configureLayers);for(var d=0,a=this.layers.length;d<a;d++){var b=this.map.layers[d];var e=this.layers.charAt(d);if(e=="B"){this.map.setBaseLayer(b)}else{if((e=="T")||(e=="F")){b.setVisibility(e=="T")}}}}},CLASS_NAME:"OpenLayers.Control.ArgParser"});OpenLayers.Control.Attribution=OpenLayers.Class(OpenLayers.Control,{separator:", ",initialize:function(a){OpenLayers.Control.prototype.initialize.apply(this,arguments)},destroy:function(){this.map.events.un({removelayer:this.updateAttribution,addlayer:this.updateAttribution,changelayer:this.updateAttribution,changebaselayer:this.updateAttribution,scope:this});OpenLayers.Control.prototype.destroy.apply(this,arguments)},draw:function(){OpenLayers.Control.prototype.draw.apply(this,arguments);this.map.events.on({changebaselayer:this.updateAttribution,changelayer:this.updateAttribution,addlayer:this.updateAttribution,removelayer:this.updateAttribution,scope:this});this.updateAttribution();return this.div},updateAttribution:function(){var d=[];if(this.map&&this.map.layers){for(var c=0,a=this.map.layers.length;c<a;c++){var b=this.map.layers[c];if(b.attribution&&b.getVisibility()){if(OpenLayers.Util.indexOf(d,b.attribution)===-1){d.push(b.attribution)}}}this.div.innerHTML=d.join(this.separator)}},CLASS_NAME:"OpenLayers.Control.Attribution"});OpenLayers.Control.PanZoom=OpenLayers.Class(OpenLayers.Control,{slideFactor:50,slideRatio:null,buttons:null,position:null,initialize:function(a){this.position=new OpenLayers.Pixel(OpenLayers.Control.PanZoom.X,OpenLayers.Control.PanZoom.Y);OpenLayers.Control.prototype.initialize.apply(this,arguments)},destroy:function(){OpenLayers.Control.prototype.destroy.apply(this,arguments);this.removeButtons();this.buttons=null;this.position=null},draw:function(b){OpenLayers.Control.prototype.draw.apply(this,arguments);b=this.position;this.buttons=[];var c=new OpenLayers.Size(18,18);var a=new OpenLayers.Pixel(b.x+c.w/2,b.y);this._addButton("panup","north-mini.png",a,c);b.y=a.y+c.h;this._addButton("panleft","west-mini.png",b,c);this._addButton("panright","east-mini.png",b.add(c.w,0),c);this._addButton("pandown","south-mini.png",a.add(0,c.h*2),c);this._addButton("zoomin","zoom-plus-mini.png",a.add(0,c.h*3+5),c);this._addButton("zoomworld","zoom-world-mini.png",a.add(0,c.h*4+5),c);this._addButton("zoomout","zoom-minus-mini.png",a.add(0,c.h*5+5),c);return this.div},_addButton:function(a,d,i,g){var f=OpenLayers.Util.getImagesLocation()+d;var b=OpenLayers.Util.createAlphaImageDiv(this.id+"_"+a,i,g,f,"absolute");this.div.appendChild(b);OpenLayers.Event.observe(b,"mousedown",OpenLayers.Function.bindAsEventListener(this.buttonDown,b));OpenLayers.Event.observe(b,"dblclick",OpenLayers.Function.bindAsEventListener(this.doubleClick,b));OpenLayers.Event.observe(b,"click",OpenLayers.Function.bindAsEventListener(this.doubleClick,b));b.action=a;b.map=this.map;if(!this.slideRatio){var c=this.slideFactor;var e=function(){return c}}else{var h=this.slideRatio;var e=function(j){return this.map.getSize()[j]*h}}b.getSlideFactor=e;this.buttons.push(b);return b},_removeButton:function(a){OpenLayers.Event.stopObservingElement(a);a.map=null;a.getSlideFactor=null;this.div.removeChild(a);OpenLayers.Util.removeItem(this.buttons,a)},removeButtons:function(){for(var a=this.buttons.length-1;a>=0;--a){this._removeButton(this.buttons[a])}},doubleClick:function(a){OpenLayers.Event.stop(a);return false},buttonDown:function(a){if(!OpenLayers.Event.isLeftClick(a)){return}switch(this.action){case"panup":this.map.pan(0,-this.getSlideFactor("h"));break;case"pandown":this.map.pan(0,this.getSlideFactor("h"));break;case"panleft":this.map.pan(-this.getSlideFactor("w"),0);break;case"panright":this.map.pan(this.getSlideFactor("w"),0);break;case"zoomin":this.map.zoomIn();break;case"zoomout":this.map.zoomOut();break;case"zoomworld":this.map.zoomToMaxExtent();break}OpenLayers.Event.stop(a)},CLASS_NAME:"OpenLayers.Control.PanZoom"});OpenLayers.Control.PanZoom.X=4;OpenLayers.Control.PanZoom.Y=4;OpenLayers.Event={observers:false,KEY_BACKSPACE:8,KEY_TAB:9,KEY_RETURN:13,KEY_ESC:27,KEY_LEFT:37,KEY_UP:38,KEY_RIGHT:39,KEY_DOWN:40,KEY_DELETE:46,element:function(a){return a.target||a.srcElement},isLeftClick:function(a){return(((a.which)&&(a.which==1))||((a.button)&&(a.button==1)))},isRightClick:function(a){return(((a.which)&&(a.which==3))||((a.button)&&(a.button==2)))},stop:function(b,a){if(!a){if(b.preventDefault){b.preventDefault()}else{b.returnValue=false}}if(b.stopPropagation){b.stopPropagation()}else{b.cancelBubble=true}},findElement:function(c,b){var a=OpenLayers.Event.element(c);while(a.parentNode&&(!a.tagName||(a.tagName.toUpperCase()!=b.toUpperCase()))){a=a.parentNode}return a},observe:function(b,d,c,a){var e=OpenLayers.Util.getElement(b);a=a||false;if(d=="keypress"&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||e.attachEvent)){d="keydown"}if(!this.observers){this.observers={}}if(!e._eventCacheID){var f="eventCacheID_";if(e.id){f=e.id+"_"+f}e._eventCacheID=OpenLayers.Util.createUniqueID(f)}var g=e._eventCacheID;if(!this.observers[g]){this.observers[g]=[]}this.observers[g].push({element:e,name:d,observer:c,useCapture:a});if(e.addEventListener){e.addEventListener(d,c,a)}else{if(e.attachEvent){e.attachEvent("on"+d,c)}}},stopObservingElement:function(a){var b=OpenLayers.Util.getElement(a);var c=b._eventCacheID;this._removeElementObservers(OpenLayers.Event.observers[c])},_removeElementObservers:function(e){if(e){for(var b=e.length-1;b>=0;b--){var c=e[b];var a=new Array(c.element,c.name,c.observer,c.useCapture);var d=OpenLayers.Event.stopObserving.apply(this,a)}}},stopObserving:function(h,a,g,b){b=b||false;var f=OpenLayers.Util.getElement(h);var d=f._eventCacheID;if(a=="keypress"){if(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||f.detachEvent){a="keydown"}}var k=false;var c=OpenLayers.Event.observers[d];if(c){var e=0;while(!k&&e<c.length){var j=c[e];if((j.name==a)&&(j.observer==g)&&(j.useCapture==b)){c.splice(e,1);if(c.length==0){delete OpenLayers.Event.observers[d]}k=true;break}e++}}if(k){if(f.removeEventListener){f.removeEventListener(a,g,b)}else{if(f&&f.detachEvent){f.detachEvent("on"+a,g)}}}return k},unloadCache:function(){if(OpenLayers.Event&&OpenLayers.Event.observers){for(var a in OpenLayers.Event.observers){var b=OpenLayers.Event.observers[a];OpenLayers.Event._removeElementObservers.apply(this,[b])}OpenLayers.Event.observers=false}},CLASS_NAME:"OpenLayers.Event"};OpenLayers.Event.observe(window,"unload",OpenLayers.Event.unloadCache,false);if(window.Event){OpenLayers.Util.applyDefaults(window.Event,OpenLayers.Event)}else{var Event=OpenLayers.Event}OpenLayers.Events=OpenLayers.Class({BROWSER_EVENTS:["mouseover","mouseout","mousedown","mouseup","mousemove","click","dblclick","rightclick","dblrightclick","resize","focus","blur"],listeners:null,object:null,element:null,eventTypes:null,eventHandler:null,fallThrough:null,includeXY:false,clearMouseListener:null,initialize:function(c,e,g,f,b){OpenLayers.Util.extend(this,b);this.object=c;this.fallThrough=f;this.listeners={};this.eventHandler=OpenLayers.Function.bindAsEventListener(this.handleBrowserEvent,this);this.clearMouseListener=OpenLayers.Function.bind(this.clearMouseCache,this);this.eventTypes=[];if(g!=null){for(var d=0,a=g.length;d<a;d++){this.addEventType(g[d])}}if(e!=null){this.attachToElement(e)}},destroy:function(){if(this.element){OpenLayers.Event.stopObservingElement(this.element);if(this.element.hasScrollEvent){OpenLayers.Event.stopObserving(window,"scroll",this.clearMouseListener)}}this.element=null;this.listeners=null;this.object=null;this.eventTypes=null;this.fallThrough=null;this.eventHandler=null},addEventType:function(a){if(!this.listeners[a]){this.eventTypes.push(a);this.listeners[a]=[]}},attachToElement:function(d){if(this.element){OpenLayers.Event.stopObservingElement(this.element)}this.element=d;for(var c=0,a=this.BROWSER_EVENTS.length;c<a;c++){var b=this.BROWSER_EVENTS[c];this.addEventType(b);OpenLayers.Event.observe(d,b,this.eventHandler)}OpenLayers.Event.observe(d,"dragstart",OpenLayers.Event.stop)},on:function(a){for(var b in a){if(b!="scope"){this.register(b,a.scope,a[b])}}},register:function(b,d,c){if((c!=null)&&(OpenLayers.Util.indexOf(this.eventTypes,b)!=-1)){if(d==null){d=this.object}var a=this.listeners[b];a.push({obj:d,func:c})}},registerPriority:function(b,d,c){if(c!=null){if(d==null){d=this.object}var a=this.listeners[b];if(a!=null){a.unshift({obj:d,func:c})}}},un:function(a){for(var b in a){if(b!="scope"){this.unregister(b,a.scope,a[b])}}},unregister:function(d,f,e){if(f==null){f=this.object}var c=this.listeners[d];if(c!=null){for(var b=0,a=c.length;b<a;b++){if(c[b].obj==f&&c[b].func==e){c.splice(b,1);break}}}},remove:function(a){if(this.listeners[a]!=null){this.listeners[a]=[]}},triggerEvent:function(e,b){var d=this.listeners[e];if(!d||d.length==0){return}if(b==null){b={}}b.object=this.object;b.element=this.element;if(!b.type){b.type=e}var d=d.slice(),f;for(var c=0,a=d.length;c<a;c++){var g=d[c];f=g.func.apply(g.obj,[b]);if((f!=undefined)&&(f==false)){break}}if(!this.fallThrough){OpenLayers.Event.stop(b,true)}return f},handleBrowserEvent:function(a){if(this.includeXY){a.xy=this.getMousePosition(a)}this.triggerEvent(a.type,a)},clearMouseCache:function(){this.element.scrolls=null;this.element.lefttop=null;this.element.offsets=null},getMousePosition:function(a){if(!this.includeXY){this.clearMouseCache()}else{if(!this.element.hasScrollEvent){OpenLayers.Event.observe(window,"scroll",this.clearMouseListener);this.element.hasScrollEvent=true}}if(!this.element.scrolls){this.element.scrolls=[(document.documentElement.scrollLeft||document.body.scrollLeft),(document.documentElement.scrollTop||document.body.scrollTop)]}if(!this.element.lefttop){this.element.lefttop=[(document.documentElement.clientLeft||0),(document.documentElement.clientTop||0)]}if(!this.element.offsets){this.element.offsets=OpenLayers.Util.pagePosition(this.element);this.element.offsets[0]+=this.element.scrolls[0];this.element.offsets[1]+=this.element.scrolls[1]}return new OpenLayers.Pixel((a.clientX+this.element.scrolls[0])-this.element.offsets[0]-this.element.lefttop[0],(a.clientY+this.element.scrolls[1])-this.element.offsets[1]-this.element.lefttop[1])},CLASS_NAME:"OpenLayers.Events"});OpenLayers.Format=OpenLayers.Class({options:null,externalProjection:null,internalProjection:null,data:null,keepData:false,initialize:function(a){OpenLayers.Util.extend(this,a);this.options=a},destroy:function(){},read:function(a){OpenLayers.Console.userError(OpenLayers.i18n("readNotImplemented"))},write:function(a){OpenLayers.Console.userError(OpenLayers.i18n("writeNotImplemented"))},CLASS_NAME:"OpenLayers.Format"});OpenLayers.Lang.en={unhandledRequest:"Unhandled request return ${statusText}",permalink:"Permalink",overlays:"Overlays",baseLayer:"Base Layer",sameProjection:"The overview map only works when it is in the same projection as the main map",readNotImplemented:"Read not implemented.",writeNotImplemented:"Write not implemented.",noFID:"Can't update a feature for which there is no FID.",errorLoadingGML:"Error in loading GML file ${url}",browserNotSupported:"Your browser does not support vector rendering. Currently supported renderers are:\n${renderers}",componentShouldBe:"addFeatures : component should be an ${geomType}",getFeatureError:"getFeatureFromEvent called on layer with no renderer. This usually means you destroyed a layer, but not some handler which is associated with it.",minZoomLevelError:"The minZoomLevel property is only intended for use with the FixedZoomLevels-descendent layers. That this wfs layer checks for minZoomLevel is a relic of thepast. We cannot, however, remove it without possibly breaking OL based applications that may depend on it. Therefore we are deprecating it -- the minZoomLevel check below will be removed at 3.0. Please instead use min/max resolution setting as described here: http://trac.openlayers.org/wiki/SettingZoomLevels",commitSuccess:"WFS Transaction: SUCCESS ${response}",commitFailed:"WFS Transaction: FAILED ${response}",Warning:"The Layer was unable to load correctly.<br><br>To get rid of this message, select a new BaseLayer in the layer switcher in the upper-right corner.",getLayerWarning:"The ${layerType} Layer was unable to load correctly.<br><br>To get rid of this message, select a new BaseLayer in the layer switcher in the upper-right corner.<br><br>Most likely, this is because the ${layerLib} library script was not correctly included.<br><br>Developers: For help getting this working correctly, <a href='http://trac.openlayers.org/wiki/${layerLib}' target='_blank'>click here</a>",scale:"Scale = 1 : ${scaleDenom}",W:"W",E:"E",N:"N",S:"S",graticule:"Graticule",layerAlreadyAdded:"You tried to add the layer: ${layerName} to the map, but it has already been added",reprojectDeprecated:"You are using the 'reproject' option on the ${layerName} layer. This option is deprecated: its use was designed to support displaying data over commercial basemaps, but that functionality should now be achieved by using Spherical Mercator support. More information is available from http://trac.openlayers.org/wiki/SphericalMercator.",methodDeprecated:"This method has been deprecated and will be removed in 3.0. Please use ${newMethod} instead.",boundsAddError:"You must pass both x and y values to the add function.",lonlatAddError:"You must pass both lon and lat values to the add function.",pixelAddError:"You must pass both x and y values to the add function.",unsupportedGeometryType:"Unsupported geometry type: ${geomType}",pagePositionFailed:"OpenLayers.Util.pagePosition failed: element with id ${elemId} may be misplaced.",filterEvaluateNotImplemented:"evaluate is not implemented for this filter type.",end:""};OpenLayers.Popup.AnchoredBubble=OpenLayers.Class(OpenLayers.Popup.Anchored,{rounded:false,initialize:function(g,c,f,b,a,e,d){this.padding=new OpenLayers.Bounds(0,OpenLayers.Popup.AnchoredBubble.CORNER_SIZE,0,OpenLayers.Popup.AnchoredBubble.CORNER_SIZE);OpenLayers.Popup.Anchored.prototype.initialize.apply(this,arguments)},draw:function(a){OpenLayers.Popup.Anchored.prototype.draw.apply(this,arguments);this.setContentHTML();this.setBackgroundColor();this.setOpacity();return this.div},updateRelativePosition:function(){this.setRicoCorners()},setSize:function(a){OpenLayers.Popup.Anchored.prototype.setSize.apply(this,arguments);this.setRicoCorners()},setBackgroundColor:function(a){if(a!=undefined){this.backgroundColor=a}if(this.div!=null){if(this.contentDiv!=null){this.div.style.background="transparent";OpenLayers.Rico.Corner.changeColor(this.groupDiv,this.backgroundColor)}}},setOpacity:function(a){OpenLayers.Popup.Anchored.prototype.setOpacity.call(this,a);if(this.div!=null){if(this.groupDiv!=null){OpenLayers.Rico.Corner.changeOpacity(this.groupDiv,this.opacity)}}},setBorder:function(a){this.border=0},setRicoCorners:function(){var a=this.getCornersToRound(this.relativePosition);var b={corners:a,color:this.backgroundColor,bgColor:"transparent",blend:false};if(!this.rounded){OpenLayers.Rico.Corner.round(this.div,b);this.rounded=true}else{OpenLayers.Rico.Corner.reRound(this.groupDiv,b);this.setBackgroundColor();this.setOpacity()}},getCornersToRound:function(){var a=["tl","tr","bl","br"];var b=OpenLayers.Bounds.oppositeQuadrant(this.relativePosition);OpenLayers.Util.removeItem(a,b);return a.join(" ")},CLASS_NAME:"OpenLayers.Popup.AnchoredBubble"});OpenLayers.Popup.AnchoredBubble.CORNER_SIZE=5;OpenLayers.Projection=OpenLayers.Class({proj:null,projCode:null,initialize:function(b,a){OpenLayers.Util.extend(this,a);this.projCode=b;if(window.Proj4js){this.proj=new Proj4js.Proj(b)}},getCode:function(){return this.proj?this.proj.srsCode:this.projCode},getUnits:function(){return this.proj?this.proj.units:null},toString:function(){return this.getCode()},equals:function(a){if(a&&a.getCode){return this.getCode()==a.getCode()}else{return false}},destroy:function(){delete this.proj;delete this.projCode},CLASS_NAME:"OpenLayers.Projection"});OpenLayers.Projection.transforms={};OpenLayers.Projection.addTransform=function(c,b,a){if(!OpenLayers.Projection.transforms[c]){OpenLayers.Projection.transforms[c]={}}OpenLayers.Projection.transforms[c][b]=a};OpenLayers.Projection.transform=function(a,c,b){if(c.proj&&b.proj){a=Proj4js.transform(c.proj,b.proj,a)}else{if(c&&b&&OpenLayers.Projection.transforms[c.getCode()]&&OpenLayers.Projection.transforms[c.getCode()][b.getCode()]){OpenLayers.Projection.transforms[c.getCode()][b.getCode()](a)}}return a};OpenLayers.Tile=OpenLayers.Class({EVENT_TYPES:["loadstart","loadend","reload","unload"],events:null,id:null,layer:null,url:null,bounds:null,size:null,position:null,isLoading:false,initialize:function(d,a,e,b,c){this.layer=d;this.position=a.clone();this.bounds=e.clone();this.url=b;this.size=c.clone();this.id=OpenLayers.Util.createUniqueID("Tile_");this.events=new OpenLayers.Events(this,null,this.EVENT_TYPES)},unload:function(){if(this.isLoading){this.isLoading=false;this.events.triggerEvent("unload")}},destroy:function(){this.layer=null;this.bounds=null;this.size=null;this.position=null;this.events.destroy();this.events=null},clone:function(a){if(a==null){a=new OpenLayers.Tile(this.layer,this.position,this.bounds,this.url,this.size)}OpenLayers.Util.applyDefaults(a,this);return a},draw:function(){var a=this.layer.maxExtent;var b=(a&&this.bounds.intersectsBounds(a,false));this.shouldDraw=(b||this.layer.displayOutsideMaxExtent);this.clear();return this.shouldDraw},moveTo:function(b,a,c){if(c==null){c=true}this.bounds=b.clone();this.position=a.clone();if(c){this.draw()}},clear:function(){},getBoundsFromBaseLayer:function(a){var f=OpenLayers.i18n("reprojectDeprecated",{layerName:this.layer.name});OpenLayers.Console.warn(f);var d=this.layer.map.getLonLatFromLayerPx(a);var c=a.clone();c.x+=this.size.w;c.y+=this.size.h;var b=this.layer.map.getLonLatFromLayerPx(c);if(d.lon>b.lon){if(d.lon<0){d.lon=-180-(d.lon+180)}else{b.lon=180+b.lon+180}}var e=new OpenLayers.Bounds(d.lon,b.lat,b.lon,d.lat);return e},showTile:function(){if(this.shouldDraw){this.show()}},show:function(){},hide:function(){},CLASS_NAME:"OpenLayers.Tile"});OpenLayers.Handler=OpenLayers.Class({id:null,control:null,map:null,keyMask:null,active:false,evt:null,initialize:function(d,b,a){OpenLayers.Util.extend(this,a);this.control=d;this.callbacks=b;var c=this.map||d.map;if(c){this.setMap(c)}this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")},setMap:function(a){this.map=a},checkModifiers:function(a){if(this.keyMask==null){return true}var b=(a.shiftKey?OpenLayers.Handler.MOD_SHIFT:0)|(a.ctrlKey?OpenLayers.Handler.MOD_CTRL:0)|(a.altKey?OpenLayers.Handler.MOD_ALT:0);return(b==this.keyMask)},activate:function(){if(this.active){return false}var c=OpenLayers.Events.prototype.BROWSER_EVENTS;for(var b=0,a=c.length;b<a;b++){if(this[c[b]]){this.register(c[b],this[c[b]])}}this.active=true;return true},deactivate:function(){if(!this.active){return false}var c=OpenLayers.Events.prototype.BROWSER_EVENTS;for(var b=0,a=c.length;b<a;b++){if(this[c[b]]){this.unregister(c[b],this[c[b]])}}this.active=false;return true},callback:function(b,a){if(b&&this.callbacks[b]){this.callbacks[b].apply(this.control,a)}},register:function(a,b){this.map.events.registerPriority(a,this,b);this.map.events.registerPriority(a,this,this.setEvent)},unregister:function(a,b){this.map.events.unregister(a,this,b);this.map.events.unregister(a,this,this.setEvent)},setEvent:function(a){this.evt=a;return true},destroy:function(){this.deactivate();this.control=this.map=null},CLASS_NAME:"OpenLayers.Handler"});OpenLayers.Handler.MOD_NONE=0;OpenLayers.Handler.MOD_SHIFT=1;OpenLayers.Handler.MOD_CTRL=2;OpenLayers.Handler.MOD_ALT=4;OpenLayers.Map=OpenLayers.Class({Z_INDEX_BASE:{BaseLayer:100,Overlay:325,Feature:725,Popup:750,Control:1000},EVENT_TYPES:["preaddlayer","addlayer","removelayer","changelayer","movestart","move","moveend","zoomend","popupopen","popupclose","addmarker","removemarker","clearmarkers","mouseover","mouseout","mousemove","dragstart","drag","dragend","changebaselayer"],id:null,fractionalZoom:false,events:null,allOverlays:false,div:null,dragging:false,size:null,viewPortDiv:null,layerContainerOrigin:null,layerContainerDiv:null,layers:null,controls:null,popups:null,baseLayer:null,center:null,resolution:null,zoom:0,panRatio:1.5,viewRequestID:0,tileSize:null,projection:"EPSG:4326",units:"degrees",resolutions:null,maxResolution:1.40625,minResolution:null,maxScale:null,minScale:null,maxExtent:null,minExtent:null,restrictedExtent:null,numZoomLevels:16,theme:null,displayProjection:null,fallThrough:true,panTween:null,eventListeners:null,panMethod:OpenLayers.Easing.Expo.easeOut,panDuration:50,paddingForPopups:null,initialize:function(h,d){if(arguments.length===1&&typeof h==="object"){d=h;h=d&&d.div}this.tileSize=new OpenLayers.Size(OpenLayers.Map.TILE_WIDTH,OpenLayers.Map.TILE_HEIGHT);this.maxExtent=new OpenLayers.Bounds(-180,-90,180,90);this.paddingForPopups=new OpenLayers.Bounds(15,15,15,15);this.theme=OpenLayers._getScriptLocation()+"theme/default/style.css";OpenLayers.Util.extend(this,d);this.layers=[];this.id=OpenLayers.Util.createUniqueID("OpenLayers.Map_");this.div=OpenLayers.Util.getElement(h);if(!this.div){this.div=document.createElement("div");this.div.style.height="1px";this.div.style.width="1px"}OpenLayers.Element.addClass(this.div,"olMap");var g=this.id+"_OpenLayers_ViewPort";this.viewPortDiv=OpenLayers.Util.createDiv(g,null,null,null,"relative",null,"hidden");this.viewPortDiv.style.width="100%";this.viewPortDiv.style.height="100%";this.viewPortDiv.className="olMapViewport";this.div.appendChild(this.viewPortDiv);g=this.id+"_OpenLayers_Container";this.layerContainerDiv=OpenLayers.Util.createDiv(g);this.layerContainerDiv.style.zIndex=this.Z_INDEX_BASE.Popup-1;this.viewPortDiv.appendChild(this.layerContainerDiv);this.events=new OpenLayers.Events(this,this.div,this.EVENT_TYPES,this.fallThrough,{includeXY:true});this.updateSize();if(this.eventListeners instanceof Object){this.events.on(this.eventListeners)}this.events.register("movestart",this,this.updateSize);if(OpenLayers.String.contains(navigator.appName,"Microsoft")){this.events.register("resize",this,this.updateSize)}else{this.updateSizeDestroy=OpenLayers.Function.bind(this.updateSize,this);OpenLayers.Event.observe(window,"resize",this.updateSizeDestroy)}if(this.theme){var f=true;var c=document.getElementsByTagName("link");for(var e=0,a=c.length;e<a;++e){if(OpenLayers.Util.isEquivalentUrl(c.item(e).href,this.theme)){f=false;break}}if(f){var b=document.createElement("link");b.setAttribute("rel","stylesheet");b.setAttribute("type","text/css");b.setAttribute("href",this.theme);document.getElementsByTagName("head")[0].appendChild(b)}}if(this.controls==null){if(OpenLayers.Control!=null){this.controls=[new OpenLayers.Control.Navigation(),new OpenLayers.Control.PanZoom(),new OpenLayers.Control.ArgParser(),new OpenLayers.Control.Attribution()]}else{this.controls=[]}}for(var e=0,a=this.controls.length;e<a;e++){this.addControlToMap(this.controls[e])}this.popups=[];this.unloadDestroy=OpenLayers.Function.bind(this.destroy,this);OpenLayers.Event.observe(window,"unload",this.unloadDestroy);if(d&&d.layers){this.addLayers(d.layers);if(d.center){this.setCenter(d.center,d.zoom)}}},render:function(a){this.div=OpenLayers.Util.getElement(a);OpenLayers.Element.addClass(this.div,"olMap");this.events.attachToElement(this.div);this.viewPortDiv.parentNode.removeChild(this.viewPortDiv);this.div.appendChild(this.viewPortDiv);this.updateSize()},unloadDestroy:null,updateSizeDestroy:null,destroy:function(){if(!this.unloadDestroy){return false}if(this.panTween){this.panTween.stop();this.panTween=null}OpenLayers.Event.stopObserving(window,"unload",this.unloadDestroy);this.unloadDestroy=null;if(this.updateSizeDestroy){OpenLayers.Event.stopObserving(window,"resize",this.updateSizeDestroy)}else{this.events.unregister("resize",this,this.updateSize)}this.paddingForPopups=null;if(this.controls!=null){for(var a=this.controls.length-1;a>=0;--a){this.controls[a].destroy()}this.controls=null}if(this.layers!=null){for(var a=this.layers.length-1;a>=0;--a){this.layers[a].destroy(false)}this.layers=null}if(this.viewPortDiv){this.div.removeChild(this.viewPortDiv)}this.viewPortDiv=null;if(this.eventListeners){this.events.un(this.eventListeners);this.eventListeners=null}this.events.destroy();this.events=null},setOptions:function(a){OpenLayers.Util.extend(this,a)},getTileSize:function(){return this.tileSize},getBy:function(e,c,a){var d=(typeof a.test=="function");var b=OpenLayers.Array.filter(this[e],function(f){return f[c]==a||(d&&a.test(f[c]))});return b},getLayersBy:function(b,a){return this.getBy("layers",b,a)},getLayersByName:function(a){return this.getLayersBy("name",a)},getLayersByClass:function(a){return this.getLayersBy("CLASS_NAME",a)},getControlsBy:function(b,a){return this.getBy("controls",b,a)},getControlsByClass:function(a){return this.getControlsBy("CLASS_NAME",a)},getLayer:function(e){var b=null;for(var d=0,a=this.layers.length;d<a;d++){var c=this.layers[d];if(c.id==e){b=c;break}}return b},setLayerZIndex:function(b,a){b.setZIndex(this.Z_INDEX_BASE[b.isBaseLayer?"BaseLayer":"Overlay"]+a*5)},resetLayersZIndex:function(){for(var c=0,a=this.layers.length;c<a;c++){var b=this.layers[c];this.setLayerZIndex(b,c)}},addLayer:function(c){for(var b=0,a=this.layers.length;b<a;b++){if(this.layers[b]==c){var d=OpenLayers.i18n("layerAlreadyAdded",{layerName:c.name});OpenLayers.Console.warn(d);return false}}if(this.allOverlays){c.isBaseLayer=false}if(this.events.triggerEvent("preaddlayer",{layer:c})===false){return}c.div.className="olLayerDiv";c.div.style.overflow="";this.setLayerZIndex(c,this.layers.length);if(c.isFixed){this.viewPortDiv.appendChild(c.div)}else{this.layerContainerDiv.appendChild(c.div)}this.layers.push(c);c.setMap(this);if(c.isBaseLayer||(this.allOverlays&&!this.baseLayer)){if(this.baseLayer==null){this.setBaseLayer(c)}else{c.setVisibility(false)}}else{c.redraw()}this.events.triggerEvent("addlayer",{layer:c});c.afterAdd()},addLayers:function(c){for(var b=0,a=c.length;b<a;b++){this.addLayer(c[b])}},removeLayer:function(c,e){if(e==null){e=true}if(c.isFixed){this.viewPortDiv.removeChild(c.div)}else{this.layerContainerDiv.removeChild(c.div)}OpenLayers.Util.removeItem(this.layers,c);c.removeMap(this);c.map=null;if(this.baseLayer==c){this.baseLayer=null;if(e){for(var b=0,a=this.layers.length;b<a;b++){var d=this.layers[b];if(d.isBaseLayer||this.allOverlays){this.setBaseLayer(d);break}}}}this.resetLayersZIndex();this.events.triggerEvent("removelayer",{layer:c})},getNumLayers:function(){return this.layers.length},getLayerIndex:function(a){return OpenLayers.Util.indexOf(this.layers,a)},setLayerIndex:function(d,b){var e=this.getLayerIndex(d);if(b<0){b=0}else{if(b>this.layers.length){b=this.layers.length}}if(e!=b){this.layers.splice(e,1);this.layers.splice(b,0,d);for(var c=0,a=this.layers.length;c<a;c++){this.setLayerZIndex(this.layers[c],c)}this.events.triggerEvent("changelayer",{layer:d,property:"order"});if(this.allOverlays){if(b===0){this.setBaseLayer(d)}else{if(this.baseLayer!==this.layers[0]){this.setBaseLayer(this.layers[0])}}}}},raiseLayer:function(b,c){var a=this.getLayerIndex(b)+c;this.setLayerIndex(b,a)},setBaseLayer:function(c){if(c!=this.baseLayer){if(OpenLayers.Util.indexOf(this.layers,c)!=-1){var a=this.getCenter();var d=OpenLayers.Util.getResolutionFromScale(this.getScale(),c.units);if(this.baseLayer!=null&&!this.allOverlays){this.baseLayer.setVisibility(false)}this.baseLayer=c;this.viewRequestID++;if(!this.allOverlays||this.baseLayer.visibility){this.baseLayer.setVisibility(true)}if(a!=null){var b=this.getZoomForResolution(d||this.resolution,true);this.setCenter(a,b,false,true)}this.events.triggerEvent("changebaselayer",{layer:this.baseLayer})}}},addControl:function(b,a){this.controls.push(b);this.addControlToMap(b,a)},addControls:function(b,g){var e=(arguments.length===1)?[]:g;for(var d=0,a=b.length;d<a;d++){var f=b[d];var c=(e[d])?e[d]:null;this.addControl(f,c)}},addControlToMap:function(b,a){b.outsideViewport=(b.div!=null);if(this.displayProjection&&!b.displayProjection){b.displayProjection=this.displayProjection}b.setMap(this);var c=b.draw(a);if(c){if(!b.outsideViewport){c.style.zIndex=this.Z_INDEX_BASE.Control+this.controls.length;this.viewPortDiv.appendChild(c)}}if(b.autoActivate){b.activate()}},getControl:function(e){var b=null;for(var c=0,a=this.controls.length;c<a;c++){var d=this.controls[c];if(d.id==e){b=d;break}}return b},removeControl:function(a){if((a)&&(a==this.getControl(a.id))){if(a.div&&(a.div.parentNode==this.viewPortDiv)){this.viewPortDiv.removeChild(a.div)}OpenLayers.Util.removeItem(this.controls,a)}},addPopup:function(a,d){if(d){for(var b=this.popups.length-1;b>=0;--b){this.removePopup(this.popups[b])}}a.map=this;this.popups.push(a);var c=a.draw();if(c){c.style.zIndex=this.Z_INDEX_BASE.Popup+this.popups.length;this.layerContainerDiv.appendChild(c)}},removePopup:function(a){OpenLayers.Util.removeItem(this.popups,a);if(a.div){try{this.layerContainerDiv.removeChild(a.div)}catch(b){}}a.map=null},getSize:function(){var a=null;if(this.size!=null){a=this.size.clone()}return a},updateSize:function(){var c=this.getCurrentSize();if(c&&!isNaN(c.h)&&!isNaN(c.w)){this.events.clearMouseCache();var f=this.getSize();if(f==null){this.size=f=c}if(!c.equals(f)){this.size=c;for(var d=0,b=this.layers.length;d<b;d++){this.layers[d].onMapResize()}var a=this.getCenter();if(this.baseLayer!=null&&a!=null){var e=this.getZoom();this.zoom=null;this.setCenter(a,e)}}}},getCurrentSize:function(){var a=new OpenLayers.Size(this.div.clientWidth,this.div.clientHeight);if(a.w==0&&a.h==0||isNaN(a.w)&&isNaN(a.h)){a.w=this.div.offsetWidth;a.h=this.div.offsetHeight}if(a.w==0&&a.h==0||isNaN(a.w)&&isNaN(a.h)){a.w=parseInt(this.div.style.width);a.h=parseInt(this.div.style.height)}return a},calculateBounds:function(a,b){var e=null;if(a==null){a=this.getCenter()}if(b==null){b=this.getResolution()}if((a!=null)&&(b!=null)){var d=this.getSize();var f=d.w*b;var c=d.h*b;e=new OpenLayers.Bounds(a.lon-f/2,a.lat-c/2,a.lon+f/2,a.lat+c/2)}return e},getCenter:function(){var a=null;if(this.center){a=this.center.clone()}return a},getZoom:function(){return this.zoom},pan:function(d,c,e){e=OpenLayers.Util.applyDefaults(e,{animate:true,dragging:false});var f=this.getViewPortPxFromLonLat(this.getCenter());var b=f.add(d,c);if(!e.dragging||!b.equals(f)){var a=this.getLonLatFromViewPortPx(b);if(e.animate){this.panTo(a)}else{this.setCenter(a,null,e.dragging)}}},panTo:function(b){if(this.panMethod&&this.getExtent().scale(this.panRatio).containsLonLat(b)){if(!this.panTween){this.panTween=new OpenLayers.Tween(this.panMethod)}var a=this.getCenter();if(b.lon==a.lon&&b.lat==a.lat){return}var d={lon:a.lon,lat:a.lat};var c={lon:b.lon,lat:b.lat};this.panTween.start(d,c,this.panDuration,{callbacks:{start:OpenLayers.Function.bind(function(e){this.events.triggerEvent("movestart")},this),eachStep:OpenLayers.Function.bind(function(e){e=new OpenLayers.LonLat(e.lon,e.lat);this.moveTo(e,this.zoom,{dragging:true,noEvent:true})},this),done:OpenLayers.Function.bind(function(e){e=new OpenLayers.LonLat(e.lon,e.lat);this.moveTo(e,this.zoom,{noEvent:true});this.events.triggerEvent("moveend")},this)}})}else{this.setCenter(b)}},setCenter:function(c,a,b,d){this.moveTo(c,a,{dragging:b,forceZoomChange:d,caller:"setCenter"})},moveTo:function(g,n,q){if(!q){q={}}if(n!=null){n=parseFloat(n);if(!this.fractionalZoom){n=Math.round(n)}}var m=q.dragging;var c=q.forceZoomChange;var h=q.noEvent;if(this.panTween&&q.caller=="setCenter"){this.panTween.stop()}if(!this.center&&!this.isValidLonLat(g)){g=this.maxExtent.getCenterLonLat()}if(this.restrictedExtent!=null){if(g==null){g=this.getCenter()}if(n==null){n=this.getZoom()}var d=this.getResolutionForZoom(n);var o=this.calculateBounds(g,d);if(!this.restrictedExtent.containsBounds(o)){var p=this.restrictedExtent.getCenterLonLat();if(o.getWidth()>this.restrictedExtent.getWidth()){g=new OpenLayers.LonLat(p.lon,g.lat)}else{if(o.left<this.restrictedExtent.left){g=g.add(this.restrictedExtent.left-o.left,0)}else{if(o.right>this.restrictedExtent.right){g=g.add(this.restrictedExtent.right-o.right,0)}}}if(o.getHeight()>this.restrictedExtent.getHeight()){g=new OpenLayers.LonLat(g.lon,p.lat)}else{if(o.bottom<this.restrictedExtent.bottom){g=g.add(0,this.restrictedExtent.bottom-o.bottom)}else{if(o.top>this.restrictedExtent.top){g=g.add(0,this.restrictedExtent.top-o.top)}}}}}var b=c||((this.isValidZoomLevel(n))&&(n!=this.getZoom()));var e=(this.isValidLonLat(g))&&(!g.equals(this.center));if(b||e||!m){if(!this.dragging&&!h){this.events.triggerEvent("movestart")}if(e){if((!b)&&(this.center)){this.centerLayerContainer(g)}this.center=g.clone()}if((b)||(this.layerContainerOrigin==null)){this.layerContainerOrigin=this.center.clone();this.layerContainerDiv.style.left="0px";this.layerContainerDiv.style.top="0px"}if(b){this.zoom=n;this.resolution=this.getResolutionForZoom(n);this.viewRequestID++}var a=this.getExtent();if(this.baseLayer.visibility){this.baseLayer.moveTo(a,b,m);if(m){this.baseLayer.events.triggerEvent("move")}else{this.baseLayer.events.triggerEvent("moveend",{zoomChanged:b})}}a=this.baseLayer.getExtent();for(var f=0,k=this.layers.length;f<k;f++){var j=this.layers[f];if(j!==this.baseLayer&&!j.isBaseLayer){var l=j.calculateInRange();if(j.inRange!=l){j.inRange=l;if(!l){j.display(false)}this.events.triggerEvent("changelayer",{layer:j,property:"visibility"})}if(l&&j.visibility){j.moveTo(a,b,m);if(m){j.events.triggerEvent("move")}else{j.events.triggerEvent("moveend",{zoomChanged:b})}}}}if(b){for(var f=0,k=this.popups.length;f<k;f++){this.popups[f].updatePosition()}}this.events.triggerEvent("move");if(b){this.events.triggerEvent("zoomend")}}if(!m&&!h){this.events.triggerEvent("moveend")}this.dragging=!!m},centerLayerContainer:function(b){var a=this.getViewPortPxFromLonLat(this.layerContainerOrigin);var c=this.getViewPortPxFromLonLat(b);if((a!=null)&&(c!=null)){this.layerContainerDiv.style.left=Math.round(a.x-c.x)+"px";this.layerContainerDiv.style.top=Math.round(a.y-c.y)+"px"}},isValidZoomLevel:function(a){return((a!=null)&&(a>=0)&&(a<this.getNumZoomLevels()))},isValidLonLat:function(c){var b=false;if(c!=null){var a=this.getMaxExtent();b=a.containsLonLat(c)}return b},getProjection:function(){var a=this.getProjectionObject();return a?a.getCode():null},getProjectionObject:function(){var a=null;if(this.baseLayer!=null){a=this.baseLayer.projection}return a},getMaxResolution:function(){var a=null;if(this.baseLayer!=null){a=this.baseLayer.maxResolution}return a},getMaxExtent:function(b){var a=null;if(b&&b.restricted&&this.restrictedExtent){a=this.restrictedExtent}else{if(this.baseLayer!=null){a=this.baseLayer.maxExtent}}return a},getNumZoomLevels:function(){var a=null;if(this.baseLayer!=null){a=this.baseLayer.numZoomLevels}return a},getExtent:function(){var a=null;if(this.baseLayer!=null){a=this.baseLayer.getExtent()}return a},getResolution:function(){var a=null;if(this.baseLayer!=null){a=this.baseLayer.getResolution()}else{if(this.allOverlays===true&&this.layers.length>0){a=this.layers[0].getResolution()}}return a},getUnits:function(){var a=null;if(this.baseLayer!=null){a=this.baseLayer.units}return a},getScale:function(){var c=null;if(this.baseLayer!=null){var b=this.getResolution();var a=this.baseLayer.units;c=OpenLayers.Util.getScaleFromResolution(b,a)}return c},getZoomForExtent:function(c,b){var a=null;if(this.baseLayer!=null){a=this.baseLayer.getZoomForExtent(c,b)}return a},getResolutionForZoom:function(b){var a=null;if(this.baseLayer){a=this.baseLayer.getResolutionForZoom(b)}return a},getZoomForResolution:function(a,c){var b=null;if(this.baseLayer!=null){b=this.baseLayer.getZoomForResolution(a,c)}return b},zoomTo:function(a){if(this.isValidZoomLevel(a)){this.setCenter(null,a)}},zoomIn:function(){this.zoomTo(this.getZoom()+1)},zoomOut:function(){this.zoomTo(this.getZoom()-1)},zoomToExtent:function(d,c){var b=d.getCenterLonLat();if(this.baseLayer.wrapDateLine){var a=this.getMaxExtent();d=d.clone();while(d.right<d.left){d.right+=a.getWidth()}b=d.getCenterLonLat().wrapDateLine(a)}this.setCenter(b,this.getZoomForExtent(d,c))},zoomToMaxExtent:function(c){var b=(c)?c.restricted:true;var a=this.getMaxExtent({restricted:b});this.zoomToExtent(a)},zoomToScale:function(h,g){var d=OpenLayers.Util.getResolutionFromScale(h,this.baseLayer.units);var c=this.getSize();var f=c.w*d;var b=c.h*d;var a=this.getCenter();var e=new OpenLayers.Bounds(a.lon-f/2,a.lat-b/2,a.lon+f/2,a.lat+b/2);this.zoomToExtent(e,g)},getLonLatFromViewPortPx:function(a){var b=null;if(this.baseLayer!=null){b=this.baseLayer.getLonLatFromViewPortPx(a)}return b},getViewPortPxFromLonLat:function(b){var a=null;if(this.baseLayer!=null){a=this.baseLayer.getViewPortPxFromLonLat(b)}return a},getLonLatFromPixel:function(a){return this.getLonLatFromViewPortPx(a)},getPixelFromLonLat:function(b){var a=this.getViewPortPxFromLonLat(b);a.x=Math.round(a.x);a.y=Math.round(a.y);return a},getGeodesicPixelSize:function(g){var d=g?this.getLonLatFromPixel(g):(this.getCenter()||new OpenLayers.LonLat(0,0));var e=this.getResolution();var c=d.add(-e/2,0);var i=d.add(e/2,0);var b=d.add(0,-e/2);var f=d.add(0,e/2);var h=new OpenLayers.Projection("EPSG:4326");var a=this.getProjectionObject()||h;if(!a.equals(h)){c.transform(a,h);i.transform(a,h);b.transform(a,h);f.transform(a,h)}return new OpenLayers.Size(OpenLayers.Util.distVincenty(c,i),OpenLayers.Util.distVincenty(b,f))},getViewPortPxFromLayerPx:function(d){var c=null;if(d!=null){var b=parseInt(this.layerContainerDiv.style.left);var a=parseInt(this.layerContainerDiv.style.top);c=d.add(b,a)}return c},getLayerPxFromViewPortPx:function(c){var d=null;if(c!=null){var b=-parseInt(this.layerContainerDiv.style.left);var a=-parseInt(this.layerContainerDiv.style.top);d=c.add(b,a);if(isNaN(d.x)||isNaN(d.y)){d=null}}return d},getLonLatFromLayerPx:function(a){a=this.getViewPortPxFromLayerPx(a);return this.getLonLatFromViewPortPx(a)},getLayerPxFromLonLat:function(b){var a=this.getPixelFromLonLat(b);return this.getLayerPxFromViewPortPx(a)},CLASS_NAME:"OpenLayers.Map"});OpenLayers.Map.TILE_WIDTH=256;OpenLayers.Map.TILE_HEIGHT=256;OpenLayers.Marker=OpenLayers.Class({icon:null,lonlat:null,events:null,map:null,initialize:function(c,b){this.lonlat=c;var a=(b)?b:OpenLayers.Marker.defaultIcon();if(this.icon==null){this.icon=a}else{this.icon.url=a.url;this.icon.size=a.size;this.icon.offset=a.offset;this.icon.calculateOffset=a.calculateOffset}this.events=new OpenLayers.Events(this,this.icon.imageDiv,null)},destroy:function(){this.erase();this.map=null;this.events.destroy();this.events=null;if(this.icon!=null){this.icon.destroy();this.icon=null}},draw:function(a){return this.icon.draw(a)},erase:function(){if(this.icon!=null){this.icon.erase()}},moveTo:function(a){if((a!=null)&&(this.icon!=null)){this.icon.moveTo(a)}this.lonlat=this.map.getLonLatFromLayerPx(a)},isDrawn:function(){var a=(this.icon&&this.icon.isDrawn());return a},onScreen:function(){var b=false;if(this.map){var a=this.map.getExtent();b=a.containsLonLat(this.lonlat)}return b},inflate:function(b){if(this.icon){var a=new OpenLayers.Size(this.icon.size.w*b,this.icon.size.h*b);this.icon.setSize(a)}},setOpacity:function(a){this.icon.setOpacity(a)},setUrl:function(a){this.icon.setUrl(a)},display:function(a){this.icon.display(a)},CLASS_NAME:"OpenLayers.Marker"});OpenLayers.Marker.defaultIcon=function(){var a=OpenLayers.Util.getImagesLocation()+"marker.png";var b=new OpenLayers.Size(21,25);var c=function(d){return new OpenLayers.Pixel(-(d.w/2),-d.h)};return new OpenLayers.Icon(a,b,null,c)};OpenLayers.Tile.Image=OpenLayers.Class(OpenLayers.Tile,{url:null,imgDiv:null,frame:null,layerAlphaHack:null,isBackBuffer:false,lastRatio:1,isFirstDraw:true,backBufferTile:null,initialize:function(d,a,e,b,c){OpenLayers.Tile.prototype.initialize.apply(this,arguments);this.url=b;this.frame=document.createElement("div");this.frame.style.overflow="hidden";this.frame.style.position="absolute";this.layerAlphaHack=this.layer.alpha&&OpenLayers.Util.alphaHack()},destroy:function(){if(this.imgDiv!=null){if(this.layerAlphaHack){OpenLayers.Event.stopObservingElement(this.imgDiv.childNodes[0])}OpenLayers.Event.stopObservingElement(this.imgDiv);if(this.imgDiv.parentNode==this.frame){this.frame.removeChild(this.imgDiv);this.imgDiv.map=null}this.imgDiv.urls=null;this.imgDiv.src=OpenLayers.Util.getImagesLocation()+"blank.gif"}this.imgDiv=null;if((this.frame!=null)&&(this.frame.parentNode==this.layer.div)){this.layer.div.removeChild(this.frame)}this.frame=null;if(this.backBufferTile){this.backBufferTile.destroy();this.backBufferTile=null}this.layer.events.unregister("loadend",this,this.resetBackBuffer);OpenLayers.Tile.prototype.destroy.apply(this,arguments)},clone:function(a){if(a==null){a=new OpenLayers.Tile.Image(this.layer,this.position,this.bounds,this.url,this.size)}a=OpenLayers.Tile.prototype.clone.apply(this,[a]);a.imgDiv=null;return a},draw:function(){if(this.layer!=this.layer.map.baseLayer&&this.layer.reproject){this.bounds=this.getBoundsFromBaseLayer(this.position)}var a=OpenLayers.Tile.prototype.draw.apply(this,arguments);if((OpenLayers.Util.indexOf(this.layer.SUPPORTED_TRANSITIONS,this.layer.transitionEffect)!=-1)||this.layer.singleTile){if(a){if(!this.backBufferTile){this.backBufferTile=this.clone();this.backBufferTile.hide();this.backBufferTile.isBackBuffer=true;this.events.register("loadend",this,this.resetBackBuffer);this.layer.events.register("loadend",this,this.resetBackBuffer)}this.startTransition()}else{if(this.backBufferTile){this.backBufferTile.clear()}}}else{if(a&&this.isFirstDraw){this.events.register("loadend",this,this.showTile);this.isFirstDraw=false}}if(!a){return false}if(this.isLoading){this.events.triggerEvent("reload")}else{this.isLoading=true;this.events.triggerEvent("loadstart")}return this.renderTile()},resetBackBuffer:function(){this.showTile();if(this.backBufferTile&&(this.isFirstDraw||!this.layer.numLoadingTiles)){this.isFirstDraw=false;var a=this.layer.maxExtent;var b=(a&&this.bounds.intersectsBounds(a,false));if(b){this.backBufferTile.position=this.position;this.backBufferTile.bounds=this.bounds;this.backBufferTile.size=this.size;this.backBufferTile.imageSize=this.layer.getImageSize(this.bounds)||this.size;this.backBufferTile.imageOffset=this.layer.imageOffset;this.backBufferTile.resolution=this.layer.getResolution();this.backBufferTile.renderTile()}this.backBufferTile.hide()}},renderTile:function(){if(this.imgDiv==null){this.initImgDiv()}this.imgDiv.viewRequestID=this.layer.map.viewRequestID;if(this.layer.async){this.layer.getURLasync(this.bounds,this,"url",this.positionImage)}else{if(this.layer.url instanceof Array){this.imgDiv.urls=this.layer.url.slice()}this.url=this.layer.getURL(this.bounds);this.positionImage()}return true},positionImage:function(){if(this.layer===null){return}OpenLayers.Util.modifyDOMElement(this.frame,null,this.position,this.size);var a=this.layer.getImageSize(this.bounds);if(this.layerAlphaHack){OpenLayers.Util.modifyAlphaImageDiv(this.imgDiv,null,null,a,this.url)}else{OpenLayers.Util.modifyDOMElement(this.imgDiv,null,null,a);this.imgDiv.src=this.url}},clear:function(){if(this.imgDiv){this.hide();if(OpenLayers.Tile.Image.useBlankTile){this.imgDiv.src=OpenLayers.Util.getImagesLocation()+"blank.gif"}}},initImgDiv:function(){var d=this.layer.imageOffset;var b=this.layer.getImageSize(this.bounds);if(this.layerAlphaHack){this.imgDiv=OpenLayers.Util.createAlphaImageDiv(null,d,b,null,"relative",null,null,null,true)}else{this.imgDiv=OpenLayers.Util.createImage(null,d,b,null,"relative",null,null,true)}this.imgDiv.className="olTileImage";this.frame.style.zIndex=this.isBackBuffer?0:1;this.frame.appendChild(this.imgDiv);this.layer.div.appendChild(this.frame);if(this.layer.opacity!=null){OpenLayers.Util.modifyDOMElement(this.imgDiv,null,null,null,null,null,null,this.layer.opacity)}this.imgDiv.map=this.layer.map;var c=function(){if(this.isLoading){this.isLoading=false;this.events.triggerEvent("loadend")}};if(this.layerAlphaHack){OpenLayers.Event.observe(this.imgDiv.childNodes[0],"load",OpenLayers.Function.bind(c,this))}else{OpenLayers.Event.observe(this.imgDiv,"load",OpenLayers.Function.bind(c,this))}var a=function(){if(this.imgDiv._attempts>OpenLayers.IMAGE_RELOAD_ATTEMPTS){c.call(this)}};OpenLayers.Event.observe(this.imgDiv,"error",OpenLayers.Function.bind(a,this))},checkImgURL:function(){if(this.layer){var a=this.layerAlphaHack?this.imgDiv.firstChild.src:this.imgDiv.src;if(!OpenLayers.Util.isEquivalentUrl(a,this.url)){this.hide()}}},startTransition:function(){if(!this.backBufferTile||!this.backBufferTile.imgDiv){return}var d=1;if(this.backBufferTile.resolution){d=this.backBufferTile.resolution/this.layer.getResolution()}if(d!=this.lastRatio){if(this.layer.transitionEffect=="resize"){var c=new OpenLayers.LonLat(this.backBufferTile.bounds.left,this.backBufferTile.bounds.top);var b=new OpenLayers.Size(this.backBufferTile.size.w*d,this.backBufferTile.size.h*d);var a=this.layer.map.getLayerPxFromLonLat(c);OpenLayers.Util.modifyDOMElement(this.backBufferTile.frame,null,a,b);var e=this.backBufferTile.imageSize;e=new OpenLayers.Size(e.w*d,e.h*d);var f=this.backBufferTile.imageOffset;if(f){f=new OpenLayers.Pixel(f.x*d,f.y*d)}OpenLayers.Util.modifyDOMElement(this.backBufferTile.imgDiv,null,f,e);this.backBufferTile.show()}}else{if(this.layer.singleTile){this.backBufferTile.show()}else{this.backBufferTile.hide()}}this.lastRatio=d},show:function(){this.frame.style.display="";if(OpenLayers.Util.indexOf(this.layer.SUPPORTED_TRANSITIONS,this.layer.transitionEffect)!=-1){if(navigator.userAgent.toLowerCase().indexOf("gecko")!=-1){this.frame.scrollLeft=this.frame.scrollLeft}}},hide:function(){this.frame.style.display="none"},CLASS_NAME:"OpenLayers.Tile.Image"});OpenLayers.Tile.Image.useBlankTile=(OpenLayers.Util.getBrowserName()=="safari"||OpenLayers.Util.getBrowserName()=="opera");OpenLayers.Feature=OpenLayers.Class({layer:null,id:null,lonlat:null,data:null,marker:null,popupClass:OpenLayers.Popup.AnchoredBubble,popup:null,initialize:function(a,c,b){this.layer=a;this.lonlat=c;this.data=(b!=null)?b:{};this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")},destroy:function(){if((this.layer!=null)&&(this.layer.map!=null)){if(this.popup!=null){this.layer.map.removePopup(this.popup)}}if(this.layer!=null&&this.marker!=null){this.layer.removeMarker(this.marker)}this.layer=null;this.id=null;this.lonlat=null;this.data=null;if(this.marker!=null){this.destroyMarker(this.marker);this.marker=null}if(this.popup!=null){this.destroyPopup(this.popup);this.popup=null}},onScreen:function(){var b=false;if((this.layer!=null)&&(this.layer.map!=null)){var a=this.layer.map.getExtent();b=a.containsLonLat(this.lonlat)}return b},createMarker:function(){if(this.lonlat!=null){this.marker=new OpenLayers.Marker(this.lonlat,this.data.icon)}return this.marker},destroyMarker:function(){this.marker.destroy()},createPopup:function(b){if(this.lonlat!=null){var c=this.id+"_popup";var a=(this.marker)?this.marker.icon:null;if(!this.popup){this.popup=new this.popupClass(c,this.lonlat,this.data.popupSize,this.data.popupContentHTML,a,b)}if(this.data.overflow!=null){this.popup.contentDiv.style.overflow=this.data.overflow}this.popup.feature=this}return this.popup},destroyPopup:function(){if(this.popup){this.popup.feature=null;this.popup.destroy();this.popup=null}},CLASS_NAME:"OpenLayers.Feature"});OpenLayers.Handler.Click=OpenLayers.Class(OpenLayers.Handler,{delay:300,single:true,"double":false,pixelTolerance:0,stopSingle:false,stopDouble:false,timerId:null,down:null,rightclickTimerId:null,initialize:function(c,b,a){OpenLayers.Handler.prototype.initialize.apply(this,arguments);if(this.pixelTolerance!=null){this.mousedown=function(d){this.down=d.xy;return true}}},mousedown:null,mouseup:function(b){var a=true;if(this.checkModifiers(b)&&this.control.handleRightClicks&&OpenLayers.Event.isRightClick(b)){a=this.rightclick(b)}return a},rightclick:function(b){if(this.passesTolerance(b)){if(this.rightclickTimerId!=null){this.clearTimer();this.callback("dblrightclick",[b]);return !this.stopDouble}else{var a=this["double"]?OpenLayers.Util.extend({},b):this.callback("rightclick",[b]);var c=OpenLayers.Function.bind(this.delayedRightCall,this,a);this.rightclickTimerId=window.setTimeout(c,this.delay)}}return !this.stopSingle},delayedRightCall:function(a){this.rightclickTimerId=null;if(a){this.callback("rightclick",[a])}return !this.stopSingle},dblclick:function(a){if(this.passesTolerance(a)){if(this["double"]){this.callback("dblclick",[a])}this.clearTimer()}return !this.stopDouble},click:function(b){if(this.passesTolerance(b)){if(this.timerId!=null){this.clearTimer()}else{var a=this.single?OpenLayers.Util.extend({},b):null;this.timerId=window.setTimeout(OpenLayers.Function.bind(this.delayedCall,this,a),this.delay)}}return !this.stopSingle},passesTolerance:function(b){var c=true;if(this.pixelTolerance!=null&&this.down){var a=Math.sqrt(Math.pow(this.down.x-b.xy.x,2)+Math.pow(this.down.y-b.xy.y,2));if(a>this.pixelTolerance){c=false}}return c},clearTimer:function(){if(this.timerId!=null){window.clearTimeout(this.timerId);this.timerId=null}if(this.rightclickTimerId!=null){window.clearTimeout(this.rightclickTimerId);this.rightclickTimerId=null}},delayedCall:function(a){this.timerId=null;if(a){this.callback("click",[a])}},deactivate:function(){var a=false;if(OpenLayers.Handler.prototype.deactivate.apply(this,arguments)){this.clearTimer();this.down=null;a=true}return a},CLASS_NAME:"OpenLayers.Handler.Click"});OpenLayers.Handler.Drag=OpenLayers.Class(OpenLayers.Handler,{started:false,stopDown:true,dragging:false,last:null,start:null,oldOnselectstart:null,interval:0,timeoutId:null,documentDrag:false,documentEvents:null,initialize:function(c,b,a){OpenLayers.Handler.prototype.initialize.apply(this,arguments)},down:function(a){},move:function(a){},up:function(a){},out:function(a){},mousedown:function(b){var a=true;this.dragging=false;if(this.checkModifiers(b)&&OpenLayers.Event.isLeftClick(b)){this.started=true;this.start=b.xy;this.last=b.xy;OpenLayers.Element.addClass(this.map.viewPortDiv,"olDragDown");this.down(b);this.callback("down",[b.xy]);OpenLayers.Event.stop(b);if(!this.oldOnselectstart){this.oldOnselectstart=(document.onselectstart)?document.onselectstart:OpenLayers.Function.True}document.onselectstart=OpenLayers.Function.False;a=!this.stopDown}else{this.started=false;this.start=null;this.last=null}return a},mousemove:function(a){if(this.started&&!this.timeoutId&&(a.xy.x!=this.last.x||a.xy.y!=this.last.y)){if(this.documentDrag===true&&this.documentEvents){if(a.element===document){this.adjustXY(a);this.setEvent(a)}else{this.destroyDocumentEvents()}}if(this.interval>0){this.timeoutId=setTimeout(OpenLayers.Function.bind(this.removeTimeout,this),this.interval)}this.dragging=true;this.move(a);this.callback("move",[a.xy]);if(!this.oldOnselectstart){this.oldOnselectstart=document.onselectstart;document.onselectstart=OpenLayers.Function.False}this.last=this.evt.xy}return true},removeTimeout:function(){this.timeoutId=null},mouseup:function(b){if(this.started){if(this.documentDrag===true&&this.documentEvents){this.adjustXY(b);this.destroyDocumentEvents()}var a=(this.start!=this.last);this.started=false;this.dragging=false;OpenLayers.Element.removeClass(this.map.viewPortDiv,"olDragDown");this.up(b);this.callback("up",[b.xy]);if(a){this.callback("done",[b.xy])}document.onselectstart=this.oldOnselectstart}return true},mouseout:function(b){if(this.started&&OpenLayers.Util.mouseLeft(b,this.map.div)){if(this.documentDrag===true){this.documentEvents=new OpenLayers.Events(this,document,null,null,{includeXY:true});this.documentEvents.on({mousemove:this.mousemove,mouseup:this.mouseup});OpenLayers.Element.addClass(document.body,"olDragDown")}else{var a=(this.start!=this.last);this.started=false;this.dragging=false;OpenLayers.Element.removeClass(this.map.viewPortDiv,"olDragDown");this.out(b);this.callback("out",[]);if(a){this.callback("done",[b.xy])}if(document.onselectstart){document.onselectstart=this.oldOnselectstart}}}return true},click:function(a){return(this.start==this.last)},activate:function(){var a=false;if(OpenLayers.Handler.prototype.activate.apply(this,arguments)){this.dragging=false;a=true}return a},deactivate:function(){var a=false;if(OpenLayers.Handler.prototype.deactivate.apply(this,arguments)){this.started=false;this.dragging=false;this.start=null;this.last=null;a=true;OpenLayers.Element.removeClass(this.map.viewPortDiv,"olDragDown")}return a},adjustXY:function(a){var b=OpenLayers.Util.pagePosition(this.map.div);a.xy.x-=b[0];a.xy.y-=b[1]},destroyDocumentEvents:function(){OpenLayers.Element.removeClass(document.body,"olDragDown");this.documentEvents.destroy();this.documentEvents=null},CLASS_NAME:"OpenLayers.Handler.Drag"});OpenLayers.Handler.MouseWheel=OpenLayers.Class(OpenLayers.Handler,{wheelListener:null,mousePosition:null,interval:0,delta:0,cumulative:true,initialize:function(c,b,a){OpenLayers.Handler.prototype.initialize.apply(this,arguments);this.wheelListener=OpenLayers.Function.bindAsEventListener(this.onWheelEvent,this)},destroy:function(){OpenLayers.Handler.prototype.destroy.apply(this,arguments);this.wheelListener=null},onWheelEvent:function(k){if(!this.map||!this.checkModifiers(k)){return}var g=false;var m=false;var f=false;var b=OpenLayers.Event.element(k);while((b!=null)&&!f&&!g){if(!g){try{if(b.currentStyle){c=b.currentStyle.overflow}else{var a=document.defaultView.getComputedStyle(b,null);var c=a.getPropertyValue("overflow")}g=(c&&(c=="auto")||(c=="scroll"))}catch(d){}}if(!m){for(var h=0,j=this.map.layers.length;h<j;h++){if(b==this.map.layers[h].div||b==this.map.layers[h].pane){m=true;break}}}f=(b==this.map.div);b=b.parentNode}if(!g&&f){if(m){var l=0;if(!k){k=window.event}if(k.wheelDelta){l=k.wheelDelta/120;if(window.opera&&window.opera.version()<9.2){l=-l}}else{if(k.detail){l=-k.detail/3}}this.delta=this.delta+l;if(this.interval){window.clearTimeout(this._timeoutId);this._timeoutId=window.setTimeout(OpenLayers.Function.bind(function(){this.wheelZoom(k)},this),this.interval)}else{this.wheelZoom(k)}}OpenLayers.Event.stop(k)}},wheelZoom:function(a){var b=this.delta;this.delta=0;if(b){if(this.mousePosition){a.xy=this.mousePosition}if(!a.xy){a.xy=this.map.getPixelFromLonLat(this.map.getCenter())}if(b<0){this.callback("down",[a,this.cumulative?b:-1])}else{this.callback("up",[a,this.cumulative?b:1])}}},mousemove:function(a){this.mousePosition=a.xy},activate:function(a){if(OpenLayers.Handler.prototype.activate.apply(this,arguments)){var b=this.wheelListener;OpenLayers.Event.observe(window,"DOMMouseScroll",b);OpenLayers.Event.observe(window,"mousewheel",b);OpenLayers.Event.observe(document,"mousewheel",b);return true}else{return false}},deactivate:function(a){if(OpenLayers.Handler.prototype.deactivate.apply(this,arguments)){var b=this.wheelListener;OpenLayers.Event.stopObserving(window,"DOMMouseScroll",b);OpenLayers.Event.stopObserving(window,"mousewheel",b);OpenLayers.Event.stopObserving(document,"mousewheel",b);return true}else{return false}},CLASS_NAME:"OpenLayers.Handler.MouseWheel"});OpenLayers.Layer=OpenLayers.Class({id:null,name:null,div:null,opacity:null,alwaysInRange:null,EVENT_TYPES:["loadstart","loadend","loadcancel","visibilitychanged","move","moveend"],RESOLUTION_PROPERTIES:["scales","resolutions","maxScale","minScale","maxResolution","minResolution","numZoomLevels","maxZoomLevel"],events:null,map:null,isBaseLayer:false,alpha:false,displayInLayerSwitcher:true,visibility:true,attribution:null,inRange:false,imageSize:null,imageOffset:null,options:null,eventListeners:null,gutter:0,projection:null,units:null,scales:null,resolutions:null,maxExtent:null,minExtent:null,maxResolution:null,minResolution:null,numZoomLevels:null,minScale:null,maxScale:null,displayOutsideMaxExtent:false,wrapDateLine:false,transitionEffect:null,SUPPORTED_TRANSITIONS:["resize"],metadata:{},initialize:function(b,a){this.addOptions(a);this.name=b;if(this.id==null){this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_");this.div=OpenLayers.Util.createDiv(this.id);this.div.style.width="100%";this.div.style.height="100%";this.div.dir="ltr";this.events=new OpenLayers.Events(this,this.div,this.EVENT_TYPES);if(this.eventListeners instanceof Object){this.events.on(this.eventListeners)}}if(this.wrapDateLine){this.displayOutsideMaxExtent=true}},destroy:function(a){if(a==null){a=true}if(this.map!=null){this.map.removeLayer(this,a)}this.projection=null;this.map=null;this.name=null;this.div=null;this.options=null;if(this.events){if(this.eventListeners){this.events.un(this.eventListeners)}this.events.destroy()}this.eventListeners=null;this.events=null},clone:function(a){if(a==null){a=new OpenLayers.Layer(this.name,this.getOptions())}OpenLayers.Util.applyDefaults(a,this);a.map=null;return a},getOptions:function(){var a={};for(var b in this.options){a[b]=this[b]}return a},setName:function(a){if(a!=this.name){this.name=a;if(this.map!=null){this.map.events.triggerEvent("changelayer",{layer:this,property:"name"})}}},addOptions:function(c){if(this.options==null){this.options={}}OpenLayers.Util.extend(this.options,c);OpenLayers.Util.extend(this,c);if(typeof this.projection=="string"){this.projection=new OpenLayers.Projection(this.projection)}if(this.projection&&this.projection.getUnits()){this.units=this.projection.getUnits()}if(this.map){var a=this.RESOLUTION_PROPERTIES.concat(["projection","units","minExtent","maxExtent"]);for(var b in c){if(c.hasOwnProperty(b)&&OpenLayers.Util.indexOf(a,b)>=0){this.initResolutions();break}}}},onMapResize:function(){},redraw:function(){var b=false;if(this.map){this.inRange=this.calculateInRange();var c=this.getExtent();if(c&&this.inRange&&this.visibility){var a=true;this.moveTo(c,a,false);this.events.triggerEvent("moveend",{zoomChanged:a});b=true}}return b},moveTo:function(b,a,c){var d=this.visibility;if(!this.isBaseLayer){d=d&&this.inRange}this.display(d)},setMap:function(b){if(this.map==null){this.map=b;this.maxExtent=this.maxExtent||this.map.maxExtent;this.minExtent=this.minExtent||this.map.minExtent;this.projection=this.projection||this.map.projection;if(typeof this.projection=="string"){this.projection=new OpenLayers.Projection(this.projection)}this.units=this.projection.getUnits()||this.units||this.map.units;this.initResolutions();if(!this.isBaseLayer){this.inRange=this.calculateInRange();var a=((this.visibility)&&(this.inRange));this.div.style.display=a?"":"none"}this.setTileSize()}},afterAdd:function(){},removeMap:function(a){},getImageSize:function(a){return(this.imageSize||this.tileSize)},setTileSize:function(a){var b=(a)?a:((this.tileSize)?this.tileSize:this.map.getTileSize());this.tileSize=b;if(this.gutter){this.imageOffset=new OpenLayers.Pixel(-this.gutter,-this.gutter);this.imageSize=new OpenLayers.Size(b.w+(2*this.gutter),b.h+(2*this.gutter))}},getVisibility:function(){return this.visibility},setVisibility:function(a){if(a!=this.visibility){this.visibility=a;this.display(a);this.redraw();if(this.map!=null){this.map.events.triggerEvent("changelayer",{layer:this,property:"visibility"})}this.events.triggerEvent("visibilitychanged")}},display:function(a){if(a!=(this.div.style.display!="none")){this.div.style.display=(a&&this.calculateInRange())?"block":"none"}},calculateInRange:function(){var b=false;if(this.alwaysInRange){b=true}else{if(this.map){var a=this.map.getResolution();b=((a>=this.minResolution)&&(a<=this.maxResolution))}}return b},setIsBaseLayer:function(a){if(a!=this.isBaseLayer){this.isBaseLayer=a;if(this.map!=null){this.map.events.triggerEvent("changebaselayer",{layer:this})}}},initResolutions:function(){var e,a;var f={},d=true;for(e=0,a=this.RESOLUTION_PROPERTIES.length;e<a;e++){var h=this.RESOLUTION_PROPERTIES[e];f[h]=this.options[h];if(d&&this.options[h]){d=false}}if(this.alwaysInRange==null){this.alwaysInRange=d}if(f.resolutions==null){f.resolutions=this.resolutionsFromScales(f.scales)}if(f.resolutions==null){f.resolutions=this.calculateResolutions(f)}if(f.resolutions==null){for(e=0,a=this.RESOLUTION_PROPERTIES.length;e<a;e++){var h=this.RESOLUTION_PROPERTIES[e];f[h]=this.options[h]!=null?this.options[h]:this.map[h]}if(f.resolutions==null){f.resolutions=this.resolutionsFromScales(f.scales)}if(f.resolutions==null){f.resolutions=this.calculateResolutions(f)}}var c;if(this.options.maxResolution&&this.options.maxResolution!=="auto"){c=this.options.maxResolution}if(this.options.minScale){c=OpenLayers.Util.getResolutionFromScale(this.options.minScale,this.units)}var b;if(this.options.minResolution&&this.options.minResolution!=="auto"){b=this.options.minResolution}if(this.options.maxScale){b=OpenLayers.Util.getResolutionFromScale(this.options.maxScale,this.units)}if(f.resolutions){f.resolutions.sort(function(j,i){return(i-j)});if(!c){c=f.resolutions[0]}if(!b){var g=f.resolutions.length-1;b=f.resolutions[g]}}this.resolutions=f.resolutions;if(this.resolutions){a=this.resolutions.length;this.scales=new Array(a);for(e=0;e<a;e++){this.scales[e]=OpenLayers.Util.getScaleFromResolution(this.resolutions[e],this.units)}this.numZoomLevels=a}this.minResolution=b;if(b){this.maxScale=OpenLayers.Util.getScaleFromResolution(b,this.units)}this.maxResolution=c;if(c){this.minScale=OpenLayers.Util.getScaleFromResolution(c,this.units)}},resolutionsFromScales:function(d){if(d==null){return}var b,c,a;a=d.length;b=new Array(a);for(c=0;c<a;c++){b[c]=OpenLayers.Util.getResolutionFromScale(d[c],this.units)}return b},calculateResolutions:function(k){var m=k.maxResolution;if(k.minScale!=null){m=OpenLayers.Util.getResolutionFromScale(k.minScale,this.units)}else{if(m=="auto"&&this.maxExtent!=null){var l=this.map.getSize();var j=this.maxExtent.getWidth()/l.w;var g=this.maxExtent.getHeight()/l.h;m=Math.max(j,g)}}var f=k.minResolution;if(k.maxScale!=null){f=OpenLayers.Util.getResolutionFromScale(k.maxScale,this.units)}else{if(k.minResolution=="auto"&&this.minExtent!=null){var l=this.map.getSize();var j=this.minExtent.getWidth()/l.w;var g=this.minExtent.getHeight()/l.h;f=Math.max(j,g)}}var a=k.maxZoomLevel;var b=k.numZoomLevels;if(typeof f==="number"&&typeof m==="number"&&b===undefined){var h=m/f;b=Math.floor(Math.log(h)/Math.log(2))+1}else{if(b===undefined&&a!=null){b=a+1}}if(typeof b!=="number"||b<=0||(typeof m!=="number"&&typeof f!=="number")){return}var d=new Array(b);var c=2;if(typeof f=="number"&&typeof m=="number"){c=Math.pow((m/f),(1/(b-1)))}var e;if(typeof m==="number"){for(e=0;e<b;e++){d[e]=m/Math.pow(c,e)}}else{for(e=0;e<b;e++){d[b-1-e]=f*Math.pow(c,e)}}return d},getResolution:function(){var a=this.map.getZoom();return this.getResolutionForZoom(a)},getExtent:function(){return this.map.calculateBounds()},getZoomForExtent:function(b,c){var d=this.map.getSize();var a=Math.max(b.getWidth()/d.w,b.getHeight()/d.h);return this.getZoomForResolution(a,c)},getDataExtent:function(){},getResolutionForZoom:function(c){c=Math.max(0,Math.min(c,this.resolutions.length-1));var b;if(this.map.fractionalZoom){var a=Math.floor(c);var d=Math.ceil(c);b=this.resolutions[a]-((c-a)*(this.resolutions[a]-this.resolutions[d]))}else{b=this.resolutions[Math.round(c)]}return b},getZoomForResolution:function(e,a){var n;if(this.map.fractionalZoom){var k=0;var c=this.resolutions.length-1;var d=this.resolutions[k];var b=this.resolutions[c];var j;for(var f=0,g=this.resolutions.length;f<g;++f){j=this.resolutions[f];if(j>=e){d=j;k=f}if(j<=e){b=j;c=f;break}}var h=d-b;if(h>0){n=k+((d-e)/h)}else{n=k}}else{var l;var m=Number.POSITIVE_INFINITY;for(var f=0,g=this.resolutions.length;f<g;f++){if(a){l=Math.abs(this.resolutions[f]-e);if(l>m){break}m=l}else{if(this.resolutions[f]<e){break}}}n=Math.max(0,f-1)}return n},getLonLatFromViewPortPx:function(b){var e=null;if(b!=null){var d=this.map.getSize();var a=this.map.getCenter();if(a){var c=this.map.getResolution();var g=b.x-(d.w/2);var f=b.y-(d.h/2);e=new OpenLayers.LonLat(a.lon+g*c,a.lat-f*c);if(this.wrapDateLine){e=e.wrapDateLine(this.maxExtent)}}}return e},getViewPortPxFromLonLat:function(d){var b=null;if(d!=null){var a=this.map.getResolution();var c=this.map.getExtent();b=new OpenLayers.Pixel((1/a*(d.lon-c.left)),(1/a*(c.top-d.lat)))}return b},setOpacity:function(b){if(b!=this.opacity){this.opacity=b;for(var d=0,a=this.div.childNodes.length;d<a;++d){var c=this.div.childNodes[d].firstChild;OpenLayers.Util.modifyDOMElement(c,null,null,null,null,null,null,b)}if(this.map!=null){this.map.events.triggerEvent("changelayer",{layer:this,property:"opacity"})}}},getZIndex:function(){return this.div.style.zIndex},setZIndex:function(a){this.div.style.zIndex=a},adjustBounds:function(b){if(this.gutter){var a=this.gutter*this.map.getResolution();b=new OpenLayers.Bounds(b.left-a,b.bottom-a,b.right+a,b.top+a)}if(this.wrapDateLine){var c={rightTolerance:this.getResolution()};b=b.wrapDateLine(this.maxExtent,c)}return b},CLASS_NAME:"OpenLayers.Layer"});OpenLayers.Control.DragPan=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_TOOL,panned:false,interval:25,documentDrag:false,draw:function(){this.handler=new OpenLayers.Handler.Drag(this,{move:this.panMap,done:this.panMapDone},{interval:this.interval,documentDrag:this.documentDrag})},panMap:function(a){this.panned=true;this.map.pan(this.handler.last.x-a.x,this.handler.last.y-a.y,{dragging:this.handler.dragging,animate:false})},panMapDone:function(a){if(this.panned){this.panMap(a);this.panned=false}},CLASS_NAME:"OpenLayers.Control.DragPan"});OpenLayers.State={UNKNOWN:"Unknown",INSERT:"Insert",UPDATE:"Update",DELETE:"Delete"};OpenLayers.Feature.Vector=OpenLayers.Class(OpenLayers.Feature,{fid:null,geometry:null,attributes:null,bounds:null,state:null,style:null,url:null,renderIntent:"default",initialize:function(c,a,b){OpenLayers.Feature.prototype.initialize.apply(this,[null,null,a]);this.lonlat=null;this.geometry=c?c:null;this.state=null;this.attributes={};if(a){this.attributes=OpenLayers.Util.extend(this.attributes,a)}this.style=b?b:null},destroy:function(){if(this.layer){this.layer.removeFeatures(this);this.layer=null}this.geometry=null;OpenLayers.Feature.prototype.destroy.apply(this,arguments)},clone:function(){return new OpenLayers.Feature.Vector(this.geometry?this.geometry.clone():null,this.attributes,this.style)},onScreen:function(d){var c=false;if(this.layer&&this.layer.map){var a=this.layer.map.getExtent();if(d){var b=this.geometry.getBounds();c=a.intersectsBounds(b)}else{var e=a.toGeometry();c=e.intersects(this.geometry)}}return c},getVisibility:function(){return !(this.style&&this.style.display=="none"||!this.layer||this.layer&&this.layer.styleMap&&this.layer.styleMap.createSymbolizer(this,this.renderIntent).display=="none"||this.layer&&!this.layer.getVisibility())},createMarker:function(){return null},destroyMarker:function(){},createPopup:function(){return null},atPoint:function(b,d,c){var a=false;if(this.geometry){a=this.geometry.atPoint(b,d,c)}return a},destroyPopup:function(){},move:function(a){if(!this.layer||!this.geometry.move){return}var b;if(a.CLASS_NAME=="OpenLayers.LonLat"){b=this.layer.getViewPortPxFromLonLat(a)}else{b=a}var d=this.layer.getViewPortPxFromLonLat(this.geometry.getBounds().getCenterLonLat());var c=this.layer.map.getResolution();this.geometry.move(c*(b.x-d.x),c*(d.y-b.y));this.layer.drawFeature(this);return d},toState:function(a){if(a==OpenLayers.State.UPDATE){switch(this.state){case OpenLayers.State.UNKNOWN:case OpenLayers.State.DELETE:this.state=a;break;case OpenLayers.State.UPDATE:case OpenLayers.State.INSERT:break}}else{if(a==OpenLayers.State.INSERT){switch(this.state){case OpenLayers.State.UNKNOWN:break;default:this.state=a;break}}else{if(a==OpenLayers.State.DELETE){switch(this.state){case OpenLayers.State.INSERT:break;case OpenLayers.State.DELETE:break;case OpenLayers.State.UNKNOWN:case OpenLayers.State.UPDATE:this.state=a;break}}else{if(a==OpenLayers.State.UNKNOWN){this.state=a}}}}},CLASS_NAME:"OpenLayers.Feature.Vector"});OpenLayers.Feature.Vector.style={"default":{fillColor:"#ee9900",fillOpacity:0.4,hoverFillColor:"white",hoverFillOpacity:0.8,strokeColor:"#ee9900",strokeOpacity:1,strokeWidth:1,strokeLinecap:"round",strokeDashstyle:"solid",hoverStrokeColor:"red",hoverStrokeOpacity:1,hoverStrokeWidth:0.2,pointRadius:6,hoverPointRadius:1,hoverPointUnit:"%",pointerEvents:"visiblePainted",cursor:"inherit"},select:{fillColor:"blue",fillOpacity:0.4,hoverFillColor:"white",hoverFillOpacity:0.8,strokeColor:"blue",strokeOpacity:1,strokeWidth:2,strokeLinecap:"round",strokeDashstyle:"solid",hoverStrokeColor:"red",hoverStrokeOpacity:1,hoverStrokeWidth:0.2,pointRadius:6,hoverPointRadius:1,hoverPointUnit:"%",pointerEvents:"visiblePainted",cursor:"pointer"},temporary:{fillColor:"#66cccc",fillOpacity:0.2,hoverFillColor:"white",hoverFillOpacity:0.8,strokeColor:"#66cccc",strokeOpacity:1,strokeLinecap:"round",strokeWidth:2,strokeDashstyle:"solid",hoverStrokeColor:"red",hoverStrokeOpacity:1,hoverStrokeWidth:0.2,pointRadius:6,hoverPointRadius:1,hoverPointUnit:"%",pointerEvents:"visiblePainted",cursor:"inherit"},"delete":{display:"none"}};OpenLayers.Handler.Box=OpenLayers.Class(OpenLayers.Handler,{dragHandler:null,boxDivClassName:"olHandlerBoxZoomBox",boxCharacteristics:null,initialize:function(c,b,a){OpenLayers.Handler.prototype.initialize.apply(this,arguments);var b={down:this.startBox,move:this.moveBox,out:this.removeBox,up:this.endBox};this.dragHandler=new OpenLayers.Handler.Drag(this,b,{keyMask:this.keyMask})},destroy:function(){if(this.dragHandler){this.dragHandler.destroy();this.dragHandler=null}OpenLayers.Handler.prototype.destroy.apply(this,arguments)},setMap:function(a){OpenLayers.Handler.prototype.setMap.apply(this,arguments);if(this.dragHandler){this.dragHandler.setMap(a)}},startBox:function(a){this.zoomBox=OpenLayers.Util.createDiv("zoomBox",this.dragHandler.start);this.zoomBox.className=this.boxDivClassName;this.zoomBox.style.zIndex=this.map.Z_INDEX_BASE.Popup-1;this.map.viewPortDiv.appendChild(this.zoomBox);OpenLayers.Element.addClass(this.map.viewPortDiv,"olDrawBox")},moveBox:function(f){var d=this.dragHandler.start.x;var b=this.dragHandler.start.y;var c=Math.abs(d-f.x);var a=Math.abs(b-f.y);this.zoomBox.style.width=Math.max(1,c)+"px";this.zoomBox.style.height=Math.max(1,a)+"px";this.zoomBox.style.left=f.x<d?f.x+"px":d+"px";this.zoomBox.style.top=f.y<b?f.y+"px":b+"px";var e=this.getBoxCharacteristics();if(e.newBoxModel){if(f.x>d){this.zoomBox.style.width=Math.max(1,c-e.xOffset)+"px"}if(f.y>b){this.zoomBox.style.height=Math.max(1,a-e.yOffset)+"px"}}},endBox:function(b){var a;if(Math.abs(this.dragHandler.start.x-b.x)>5||Math.abs(this.dragHandler.start.y-b.y)>5){var g=this.dragHandler.start;var f=Math.min(g.y,b.y);var c=Math.max(g.y,b.y);var e=Math.min(g.x,b.x);var d=Math.max(g.x,b.x);a=new OpenLayers.Bounds(e,c,d,f)}else{a=this.dragHandler.start.clone()}this.removeBox();this.callback("done",[a])},removeBox:function(){this.map.viewPortDiv.removeChild(this.zoomBox);this.zoomBox=null;this.boxCharacteristics=null;OpenLayers.Element.removeClass(this.map.viewPortDiv,"olDrawBox")},activate:function(){if(OpenLayers.Handler.prototype.activate.apply(this,arguments)){this.dragHandler.activate();return true}else{return false}},deactivate:function(){if(OpenLayers.Handler.prototype.deactivate.apply(this,arguments)){this.dragHandler.deactivate();return true}else{return false}},getBoxCharacteristics:function(){if(!this.boxCharacteristics){var a=parseInt(OpenLayers.Element.getStyle(this.zoomBox,"border-left-width"))+parseInt(OpenLayers.Element.getStyle(this.zoomBox,"border-right-width"))+1;var c=parseInt(OpenLayers.Element.getStyle(this.zoomBox,"border-top-width"))+parseInt(OpenLayers.Element.getStyle(this.zoomBox,"border-bottom-width"))+1;var b=OpenLayers.Util.getBrowserName()=="msie"?document.compatMode!="BackCompat":true;this.boxCharacteristics={xOffset:a,yOffset:c,newBoxModel:b}}return this.boxCharacteristics},CLASS_NAME:"OpenLayers.Handler.Box"});OpenLayers.Layer.HTTPRequest=OpenLayers.Class(OpenLayers.Layer,{URL_HASH_FACTOR:(Math.sqrt(5)-1)/2,url:null,params:null,reproject:false,initialize:function(d,c,e,b){var a=arguments;a=[d,b];OpenLayers.Layer.prototype.initialize.apply(this,a);this.url=c;this.params=OpenLayers.Util.extend({},e)},destroy:function(){this.url=null;this.params=null;OpenLayers.Layer.prototype.destroy.apply(this,arguments)},clone:function(a){if(a==null){a=new OpenLayers.Layer.HTTPRequest(this.name,this.url,this.params,this.getOptions())}a=OpenLayers.Layer.prototype.clone.apply(this,[a]);return a},setUrl:function(a){this.url=a},mergeNewParams:function(b){this.params=OpenLayers.Util.extend(this.params,b);var a=this.redraw();if(this.map!=null){this.map.events.triggerEvent("changelayer",{layer:this,property:"params"})}return a},redraw:function(a){if(a){return this.mergeNewParams({_olSalt:Math.random()})}else{return OpenLayers.Layer.prototype.redraw.apply(this,[])}},selectUrl:function(e,d){var c=1;for(var b=0,a=e.length;b<a;b++){c*=e.charCodeAt(b)*this.URL_HASH_FACTOR;c-=Math.floor(c)}return d[Math.floor(c*d.length)]},getFullRequestString:function(g,d){var b=d||this.url;var f=OpenLayers.Util.extend({},this.params);f=OpenLayers.Util.extend(f,g);var e=OpenLayers.Util.getParameterString(f);if(b instanceof Array){b=this.selectUrl(e,b)}var a=OpenLayers.Util.upperCaseObject(OpenLayers.Util.getParameters(b));for(var c in f){if(c.toUpperCase() in a){delete f[c]}}e=OpenLayers.Util.getParameterString(f);return OpenLayers.Util.urlAppend(b,e)},CLASS_NAME:"OpenLayers.Layer.HTTPRequest"});OpenLayers.Layer.Markers=OpenLayers.Class(OpenLayers.Layer,{isBaseLayer:false,markers:null,drawn:false,initialize:function(b,a){OpenLayers.Layer.prototype.initialize.apply(this,arguments);this.markers=[]},destroy:function(){this.clearMarkers();this.markers=null;OpenLayers.Layer.prototype.destroy.apply(this,arguments)},setOpacity:function(b){if(b!=this.opacity){this.opacity=b;for(var c=0,a=this.markers.length;c<a;c++){this.markers[c].setOpacity(this.opacity)}}},moveTo:function(d,b,e){OpenLayers.Layer.prototype.moveTo.apply(this,arguments);if(b||!this.drawn){for(var c=0,a=this.markers.length;c<a;c++){this.drawMarker(this.markers[c])}this.drawn=true}},addMarker:function(a){this.markers.push(a);if(this.opacity!=null){a.setOpacity(this.opacity)}if(this.map&&this.map.getExtent()){a.map=this.map;this.drawMarker(a)}},removeMarker:function(a){if(this.markers&&this.markers.length){OpenLayers.Util.removeItem(this.markers,a);a.erase()}},clearMarkers:function(){if(this.markers!=null){while(this.markers.length>0){this.removeMarker(this.markers[0])}}},drawMarker:function(a){var b=this.map.getLayerPxFromLonLat(a.lonlat);if(b==null){a.display(false)}else{if(!a.isDrawn()){var c=a.draw(b);this.div.appendChild(c)}else{if(a.icon){a.icon.moveTo(b)}}}},getDataExtent:function(){var b=null;if(this.markers&&(this.markers.length>0)){var b=new OpenLayers.Bounds();for(var d=0,a=this.markers.length;d<a;d++){var c=this.markers[d];b.extend(c.lonlat)}}return b},CLASS_NAME:"OpenLayers.Layer.Markers"});OpenLayers.Control.ZoomBox=OpenLayers.Class(OpenLayers.Control,{type:OpenLayers.Control.TYPE_TOOL,out:false,alwaysZoom:false,draw:function(){this.handler=new OpenLayers.Handler.Box(this,{done:this.zoomBox},{keyMask:this.keyMask})},zoomBox:function(h){if(h instanceof OpenLayers.Bounds){var b;if(!this.out){var i=this.map.getLonLatFromPixel(new OpenLayers.Pixel(h.left,h.bottom));var m=this.map.getLonLatFromPixel(new OpenLayers.Pixel(h.right,h.top));b=new OpenLayers.Bounds(i.lon,i.lat,m.lon,m.lat)}else{var g=Math.abs(h.right-h.left);var j=Math.abs(h.top-h.bottom);var e=Math.min((this.map.size.h/j),(this.map.size.w/g));var n=this.map.getExtent();var a=this.map.getLonLatFromPixel(h.getCenterPixel());var c=a.lon-(n.getWidth()/2)*e;var f=a.lon+(n.getWidth()/2)*e;var l=a.lat-(n.getHeight()/2)*e;var d=a.lat+(n.getHeight()/2)*e;b=new OpenLayers.Bounds(c,l,f,d)}var k=this.map.getZoom();this.map.zoomToExtent(b);if(k==this.map.getZoom()&&this.alwaysZoom==true){this.map.zoomTo(k+(this.out?-1:1))}}else{if(!this.out){this.map.setCenter(this.map.getLonLatFromPixel(h),this.map.getZoom()+1)}else{this.map.setCenter(this.map.getLonLatFromPixel(h),this.map.getZoom()-1)}}},CLASS_NAME:"OpenLayers.Control.ZoomBox"});OpenLayers.Format.WKT=OpenLayers.Class(OpenLayers.Format,{initialize:function(a){this.regExes={typeStr:/^\s*(\w+)\s*\(\s*(.*)\s*\)\s*$/,spaces:/\s+/,parenComma:/\)\s*,\s*\(/,doubleParenComma:/\)\s*\)\s*,\s*\(\s*\(/,trimParens:/^\s*\(?(.*?)\)?\s*$/};OpenLayers.Format.prototype.initialize.apply(this,[a])},read:function(f){var e,d,h;var g=this.regExes.typeStr.exec(f);if(g){d=g[1].toLowerCase();h=g[2];if(this.parse[d]){e=this.parse[d].apply(this,[h])}if(this.internalProjection&&this.externalProjection){if(e&&e.CLASS_NAME=="OpenLayers.Feature.Vector"){e.geometry.transform(this.externalProjection,this.internalProjection)}else{if(e&&d!="geometrycollection"&&typeof e=="object"){for(var c=0,a=e.length;c<a;c++){var b=e[c];b.geometry.transform(this.externalProjection,this.internalProjection)}}}}}return e},write:function(a){var f,j,h,d,b;if(a.constructor==Array){f=a;b=true}else{f=[a];b=false}var c=[];if(b){c.push("GEOMETRYCOLLECTION(")}for(var e=0,g=f.length;e<g;++e){if(b&&e>0){c.push(",")}j=f[e].geometry;h=j.CLASS_NAME.split(".")[2].toLowerCase();if(!this.extract[h]){return null}if(this.internalProjection&&this.externalProjection){j=j.clone();j.transform(this.internalProjection,this.externalProjection)}d=this.extract[h].apply(this,[j]);c.push(h.toUpperCase()+"("+d+")")}if(b){c.push(")")}return c.join("")},extract:{point:function(a){return a.x+" "+a.y},multipoint:function(c){var d=[];for(var b=0,a=c.components.length;b<a;++b){d.push("("+this.extract.point.apply(this,[c.components[b]])+")")}return d.join(",")},linestring:function(b){var d=[];for(var c=0,a=b.components.length;c<a;++c){d.push(this.extract.point.apply(this,[b.components[c]]))}return d.join(",")},multilinestring:function(c){var d=[];for(var b=0,a=c.components.length;b<a;++b){d.push("("+this.extract.linestring.apply(this,[c.components[b]])+")")}return d.join(",")},polygon:function(c){var d=[];for(var b=0,a=c.components.length;b<a;++b){d.push("("+this.extract.linestring.apply(this,[c.components[b]])+")")}return d.join(",")},multipolygon:function(d){var c=[];for(var b=0,a=d.components.length;b<a;++b){c.push("("+this.extract.polygon.apply(this,[d.components[b]])+")")}return c.join(",")}},parse:{point:function(b){var a=OpenLayers.String.trim(b).split(this.regExes.spaces);return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Point(a[0],a[1]))},multipoint:function(f){var b;var d=OpenLayers.String.trim(f).split(this.regExes.parenComma);var e=[];for(var c=0,a=d.length;c<a;++c){b=d[c].replace(this.regExes.trimParens,"$1");e.push(this.parse.point.apply(this,[b]).geometry)}return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.MultiPoint(e))},linestring:function(e){var c=OpenLayers.String.trim(e).split(",");var d=[];for(var b=0,a=c.length;b<a;++b){d.push(this.parse.point.apply(this,[c[b]]).geometry)}return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.LineString(d))},multilinestring:function(f){var c;var b=OpenLayers.String.trim(f).split(this.regExes.parenComma);var e=[];for(var d=0,a=b.length;d<a;++d){c=b[d].replace(this.regExes.trimParens,"$1");e.push(this.parse.linestring.apply(this,[c]).geometry)}return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.MultiLineString(e))},polygon:function(h){var c,b,f;var g=OpenLayers.String.trim(h).split(this.regExes.parenComma);var e=[];for(var d=0,a=g.length;d<a;++d){c=g[d].replace(this.regExes.trimParens,"$1");b=this.parse.linestring.apply(this,[c]).geometry;f=new OpenLayers.Geometry.LinearRing(b.components);e.push(f)}return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Polygon(e))},multipolygon:function(f){var d;var b=OpenLayers.String.trim(f).split(this.regExes.doubleParenComma);var e=[];for(var c=0,a=b.length;c<a;++c){d=b[c].replace(this.regExes.trimParens,"$1");e.push(this.parse.polygon.apply(this,[d]).geometry)}return new OpenLayers.Feature.Vector(new OpenLayers.Geometry.MultiPolygon(e))},geometrycollection:function(e){e=e.replace(/,\s*([A-Za-z])/g,"|$1");var d=OpenLayers.String.trim(e).split("|");var c=[];for(var b=0,a=d.length;b<a;++b){c.push(OpenLayers.Format.WKT.prototype.read.apply(this,[d[b]]))}return c}},CLASS_NAME:"OpenLayers.Format.WKT"});OpenLayers.Layer.Grid=OpenLayers.Class(OpenLayers.Layer.HTTPRequest,{tileSize:null,grid:null,singleTile:false,ratio:1.5,buffer:2,numLoadingTiles:0,initialize:function(c,b,d,a){OpenLayers.Layer.HTTPRequest.prototype.initialize.apply(this,arguments);this.events.addEventType("tileloaded");this.grid=[]},destroy:function(){this.clearGrid();this.grid=null;this.tileSize=null;OpenLayers.Layer.HTTPRequest.prototype.destroy.apply(this,arguments)},clearGrid:function(){if(this.grid){for(var f=0,b=this.grid.length;f<b;f++){var e=this.grid[f];for(var c=0,a=e.length;c<a;c++){var d=e[c];this.removeTileMonitoringHooks(d);d.destroy()}}this.grid=[]}},clone:function(a){if(a==null){a=new OpenLayers.Layer.Grid(this.name,this.url,this.params,this.getOptions())}a=OpenLayers.Layer.HTTPRequest.prototype.clone.apply(this,[a]);if(this.tileSize!=null){a.tileSize=this.tileSize.clone()}a.grid=[];return a},moveTo:function(d,a,e){OpenLayers.Layer.HTTPRequest.prototype.moveTo.apply(this,arguments);d=d||this.map.getExtent();if(d!=null){var c=!this.grid.length||a;var b=this.getTilesBounds();if(this.singleTile){if(c||(!e&&!b.containsBounds(d))){this.initSingleTile(d)}}else{if(c||!b.containsBounds(d,true)){this.initGriddedTiles(d)}else{this.moveGriddedTiles(d)}}}},setTileSize:function(a){if(this.singleTile){a=this.map.getSize();a.h=parseInt(a.h*this.ratio);a.w=parseInt(a.w*this.ratio)}OpenLayers.Layer.HTTPRequest.prototype.setTileSize.apply(this,[a])},getGridBounds:function(){var a="The getGridBounds() function is deprecated. It will be removed in 3.0. Please use getTilesBounds() instead.";OpenLayers.Console.warn(a);return this.getTilesBounds()},getTilesBounds:function(){var e=null;if(this.grid.length){var a=this.grid.length-1;var d=this.grid[a][0];var b=this.grid[0].length-1;var c=this.grid[0][b];e=new OpenLayers.Bounds(d.bounds.left,d.bounds.bottom,c.bounds.right,c.bounds.top)}return e},initSingleTile:function(f){var a=f.getCenterLonLat();var h=f.getWidth()*this.ratio;var b=f.getHeight()*this.ratio;var g=new OpenLayers.Bounds(a.lon-(h/2),a.lat-(b/2),a.lon+(h/2),a.lat+(b/2));var d=new OpenLayers.LonLat(g.left,g.top);var c=this.map.getLayerPxFromLonLat(d);if(!this.grid.length){this.grid[0]=[]}var e=this.grid[0][0];if(!e){e=this.addTile(g,c);this.addTileMonitoringHooks(e);e.draw();this.grid[0][0]=e}else{e.moveTo(g,c)}this.removeExcessTiles(1,1)},calculateGridLayout:function(a,o,e){var k=e*this.tileSize.w;var c=e*this.tileSize.h;var i=a.left-o.left;var l=Math.floor(i/k)-this.buffer;var j=i/k-l;var f=-j*this.tileSize.w;var m=o.left+l*k;var b=a.top-(o.bottom+c);var h=Math.ceil(b/c)+this.buffer;var n=h-b/c;var d=-n*this.tileSize.h;var g=o.bottom+h*c;return{tilelon:k,tilelat:c,tileoffsetlon:m,tileoffsetlat:g,tileoffsetx:f,tileoffsety:d}},initGriddedTiles:function(i){var g=this.map.getSize();var v=Math.ceil(g.h/this.tileSize.h)+Math.max(1,2*this.buffer);var z=Math.ceil(g.w/this.tileSize.w)+Math.max(1,2*this.buffer);var o=this.getMaxExtent();var r=this.map.getResolution();var q=this.calculateGridLayout(i,o,r);var f=Math.round(q.tileoffsetx);var c=Math.round(q.tileoffsety);var k=q.tileoffsetlon;var n=q.tileoffsetlat;var e=q.tilelon;var j=q.tilelat;this.origin=new OpenLayers.Pixel(f,c);var u=f;var w=k;var t=0;var a=parseInt(this.map.layerContainerDiv.style.left);var s=parseInt(this.map.layerContainerDiv.style.top);do{var h=this.grid[t++];if(!h){h=[];this.grid.push(h)}k=w;f=u;var d=0;do{var b=new OpenLayers.Bounds(k,n,k+e,n+j);var m=f;m-=a;var l=c;l-=s;var p=new OpenLayers.Pixel(m,l);var A=h[d++];if(!A){A=this.addTile(b,p);this.addTileMonitoringHooks(A);h.push(A)}else{A.moveTo(b,p,false)}k+=e;f+=this.tileSize.w}while((k<=i.right+e*this.buffer)||d<z);n-=j;c+=this.tileSize.h}while((n>=i.bottom-j*this.buffer)||t<v);this.removeExcessTiles(t,d);this.spiralTileLoad()},getMaxExtent:function(){return this.maxExtent},spiralTileLoad:function(){var b=[];var h=["right","down","left","up"];var g=0;var a=-1;var k=OpenLayers.Util.indexOf(h,"right");var l=0;while(l<h.length){var j=g;var c=a;switch(h[k]){case"right":c++;break;case"down":j++;break;case"left":c--;break;case"up":j--;break}var f=null;if((j<this.grid.length)&&(j>=0)&&(c<this.grid[0].length)&&(c>=0)){f=this.grid[j][c]}if((f!=null)&&(!f.queued)){b.unshift(f);f.queued=true;l=0;g=j;a=c}else{k=(k+1)%4;l++}}for(var d=0,e=b.length;d<e;d++){var f=b[d];f.draw();f.queued=false}},addTile:function(b,a){},addTileMonitoringHooks:function(a){a.onLoadStart=function(){if(this.numLoadingTiles==0){this.events.triggerEvent("loadstart")}this.numLoadingTiles++};a.events.register("loadstart",this,a.onLoadStart);a.onLoadEnd=function(){this.numLoadingTiles--;this.events.triggerEvent("tileloaded");if(this.numLoadingTiles==0){this.events.triggerEvent("loadend")}};a.events.register("loadend",this,a.onLoadEnd);a.events.register("unload",this,a.onLoadEnd)},removeTileMonitoringHooks:function(a){a.unload();a.events.un({loadstart:a.onLoadStart,loadend:a.onLoadEnd,unload:a.onLoadEnd,scope:this})},moveGriddedTiles:function(c){var b=this.buffer||1;while(true){var a=this.grid[0][0].position;var d=this.map.getViewPortPxFromLayerPx(a);if(d.x>-this.tileSize.w*(b-1)){this.shiftColumn(true)}else{if(d.x<-this.tileSize.w*b){this.shiftColumn(false)}else{if(d.y>-this.tileSize.h*(b-1)){this.shiftRow(true)}else{if(d.y<-this.tileSize.h*b){this.shiftRow(false)}else{break}}}}}},shiftRow:function(n){var c=(n)?0:(this.grid.length-1);var b=this.grid;var f=b[c];var e=this.map.getResolution();var h=(n)?-this.tileSize.h:this.tileSize.h;var g=e*-h;var m=(n)?b.pop():b.shift();for(var j=0,l=f.length;j<l;j++){var d=f[j];var a=d.bounds.clone();var k=d.position.clone();a.bottom=a.bottom+g;a.top=a.top+g;k.y=k.y+h;m[j].moveTo(a,k)}if(n){b.unshift(m)}else{b.push(m)}},shiftColumn:function(m){var d=(m)?-this.tileSize.w:this.tileSize.w;var c=this.map.getResolution();var k=c*d;for(var e=0,g=this.grid.length;e<g;e++){var l=this.grid[e];var j=(m)?0:(l.length-1);var b=l[j];var a=b.bounds.clone();var f=b.position.clone();a.left=a.left+k;a.right=a.right+k;f.x=f.x+d;var h=m?this.grid[e].pop():this.grid[e].shift();h.moveTo(a,f);if(m){l.unshift(h)}else{l.push(h)}}},removeExcessTiles:function(e,c){while(this.grid.length>e){var f=this.grid.pop();for(var b=0,a=f.length;b<a;b++){var d=f[b];this.removeTileMonitoringHooks(d);d.destroy()}}while(this.grid[0].length>c){for(var b=0,a=this.grid.length;b<a;b++){var f=this.grid[b];var d=f.pop();this.removeTileMonitoringHooks(d);d.destroy()}}},onMapResize:function(){if(this.singleTile){this.clearGrid();this.setTileSize()}},getTileBounds:function(d){var c=this.maxExtent;var f=this.getResolution();var e=f*this.tileSize.w;var b=f*this.tileSize.h;var h=this.getLonLatFromViewPortPx(d);var a=c.left+(e*Math.floor((h.lon-c.left)/e));var g=c.bottom+(b*Math.floor((h.lat-c.bottom)/b));return new OpenLayers.Bounds(a,g,a+e,g+b)},CLASS_NAME:"OpenLayers.Layer.Grid"});OpenLayers.Control.Navigation=OpenLayers.Class(OpenLayers.Control,{dragPan:null,dragPanOptions:null,documentDrag:false,zoomBox:null,zoomBoxEnabled:true,zoomWheelEnabled:true,mouseWheelOptions:null,handleRightClicks:false,zoomBoxKeyMask:OpenLayers.Handler.MOD_SHIFT,autoActivate:true,initialize:function(a){this.handlers={};OpenLayers.Control.prototype.initialize.apply(this,arguments)},destroy:function(){this.deactivate();if(this.dragPan){this.dragPan.destroy()}this.dragPan=null;if(this.zoomBox){this.zoomBox.destroy()}this.zoomBox=null;OpenLayers.Control.prototype.destroy.apply(this,arguments)},activate:function(){this.dragPan.activate();if(this.zoomWheelEnabled){this.handlers.wheel.activate()}this.handlers.click.activate();if(this.zoomBoxEnabled){this.zoomBox.activate()}return OpenLayers.Control.prototype.activate.apply(this,arguments)},deactivate:function(){this.zoomBox.deactivate();this.dragPan.deactivate();this.handlers.click.deactivate();this.handlers.wheel.deactivate();return OpenLayers.Control.prototype.deactivate.apply(this,arguments)},draw:function(){if(this.handleRightClicks){this.map.viewPortDiv.oncontextmenu=OpenLayers.Function.False}var a={dblclick:this.defaultDblClick,dblrightclick:this.defaultDblRightClick};var b={"double":true,stopDouble:true};this.handlers.click=new OpenLayers.Handler.Click(this,a,b);this.dragPan=new OpenLayers.Control.DragPan(OpenLayers.Util.extend({map:this.map,documentDrag:this.documentDrag},this.dragPanOptions));this.zoomBox=new OpenLayers.Control.ZoomBox({map:this.map,keyMask:this.zoomBoxKeyMask});this.dragPan.draw();this.zoomBox.draw();this.handlers.wheel=new OpenLayers.Handler.MouseWheel(this,{up:this.wheelUp,down:this.wheelDown},this.mouseWheelOptions)},defaultDblClick:function(b){var a=this.map.getLonLatFromViewPortPx(b.xy);this.map.setCenter(a,this.map.zoom+1)},defaultDblRightClick:function(b){var a=this.map.getLonLatFromViewPortPx(b.xy);this.map.setCenter(a,this.map.zoom-1)},wheelChange:function(i,c){var h=this.map.getZoom();var f=this.map.getZoom()+Math.round(c);f=Math.max(f,0);f=Math.min(f,this.map.getNumZoomLevels());if(f===h){return}var j=this.map.getSize();var e=j.w/2-i.xy.x;var d=i.xy.y-j.h/2;var g=this.map.baseLayer.getResolutionForZoom(f);var a=this.map.getLonLatFromPixel(i.xy);var b=new OpenLayers.LonLat(a.lon+e*g,a.lat+d*g);this.map.setCenter(b,f)},wheelUp:function(a,b){this.wheelChange(a,b||1)},wheelDown:function(a,b){this.wheelChange(a,b||-1)},disableZoomBox:function(){this.zoomBoxEnabled=false;this.zoomBox.deactivate()},enableZoomBox:function(){this.zoomBoxEnabled=true;if(this.active){this.zoomBox.activate()}},disableZoomWheel:function(){this.zoomWheelEnabled=false;this.handlers.wheel.deactivate()},enableZoomWheel:function(){this.zoomWheelEnabled=true;if(this.active){this.handlers.wheel.activate()}},CLASS_NAME:"OpenLayers.Control.Navigation"});OpenLayers.Geometry=OpenLayers.Class({id:null,parent:null,bounds:null,initialize:function(){this.id=OpenLayers.Util.createUniqueID(this.CLASS_NAME+"_")},destroy:function(){this.id=null;this.bounds=null},clone:function(){return new OpenLayers.Geometry()},setBounds:function(a){if(a){this.bounds=a.clone()}},clearBounds:function(){this.bounds=null;if(this.parent){this.parent.clearBounds()}},extendBounds:function(b){var a=this.getBounds();if(!a){this.setBounds(b)}else{this.bounds.extend(b)}},getBounds:function(){if(this.bounds==null){this.calculateBounds()}return this.bounds},calculateBounds:function(){},distanceTo:function(b,a){},getVertices:function(a){},atPoint:function(e,h,f){var c=false;var d=this.getBounds();if((d!=null)&&(e!=null)){var b=(h!=null)?h:0;var a=(f!=null)?f:0;var g=new OpenLayers.Bounds(this.bounds.left-b,this.bounds.bottom-a,this.bounds.right+b,this.bounds.top+a);c=g.containsLonLat(e)}return c},getLength:function(){return 0},getArea:function(){return 0},getCentroid:function(){return null},toString:function(){return OpenLayers.Format.WKT.prototype.write(new OpenLayers.Feature.Vector(this))},CLASS_NAME:"OpenLayers.Geometry"});OpenLayers.Geometry.fromWKT=function(f){var g=arguments.callee.format;if(!g){g=new OpenLayers.Format.WKT();arguments.callee.format=g}var d;var b=g.read(f);if(b instanceof OpenLayers.Feature.Vector){d=b.geometry}else{if(b instanceof Array){var a=b.length;var e=new Array(a);for(var c=0;c<a;++c){e[c]=b[c].geometry}d=new OpenLayers.Geometry.Collection(e)}}return d};OpenLayers.Geometry.segmentsIntersect=function(a,H,b){var s=b&&b.point;var z=b&&b.tolerance;var f=false;var B=a.x1-H.x1;var F=a.y1-H.y1;var o=a.x2-a.x1;var w=a.y2-a.y1;var t=H.y2-H.y1;var l=H.x2-H.x1;var D=(t*o)-(l*w);var e=(l*F)-(t*B);var c=(o*F)-(w*B);if(D==0){if(e==0&&c==0){f=true}}else{var E=e/D;var C=c/D;if(E>=0&&E<=1&&C>=0&&C<=1){if(!s){f=true}else{var h=a.x1+(E*o);var g=a.y1+(E*w);f=new OpenLayers.Geometry.Point(h,g)}}}if(z){var r;if(f){if(s){var n=[a,H];var A,h,g;outer:for(var v=0;v<2;++v){A=n[v];for(var u=1;u<3;++u){h=A["x"+u];g=A["y"+u];r=Math.sqrt(Math.pow(h-f.x,2)+Math.pow(g-f.y,2));if(r<z){f.x=h;f.y=g;break outer}}}}}else{var n=[a,H];var q,G,h,g,m,k;outer:for(var v=0;v<2;++v){q=n[v];G=n[(v+1)%2];for(var u=1;u<3;++u){m={x:q["x"+u],y:q["y"+u]};k=OpenLayers.Geometry.distanceToSegment(m,G);if(k.distance<z){if(s){f=new OpenLayers.Geometry.Point(m.x,m.y)}else{f=true}break outer}}}}}return f};OpenLayers.Geometry.distanceToSegment=function(k,d){var c=k.x;var j=k.y;var b=d.x1;var i=d.y1;var a=d.x2;var f=d.y2;var m=a-b;var l=f-i;var h=((m*(c-b))+(l*(j-i)))/(Math.pow(m,2)+Math.pow(l,2));var g,e;if(h<=0){g=b;e=i}else{if(h>=1){g=a;e=f}else{g=b+h*m;e=i+h*l}}return{distance:Math.sqrt(Math.pow(g-c,2)+Math.pow(e-j,2)),x:g,y:e}};OpenLayers.Layer.TMS=OpenLayers.Class(OpenLayers.Layer.Grid,{serviceVersion:"1.0.0",isBaseLayer:true,tileOrigin:null,serverResolutions:null,zoomOffset:0,initialize:function(d,c,b){var a=[];a.push(d,c,{},b);OpenLayers.Layer.Grid.prototype.initialize.apply(this,a)},destroy:function(){OpenLayers.Layer.Grid.prototype.destroy.apply(this,arguments)},clone:function(a){if(a==null){a=new OpenLayers.Layer.TMS(this.name,this.url,this.getOptions())}a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a]);return a},getURL:function(d){d=this.adjustBounds(d);var c=this.map.getResolution();var a=Math.round((d.left-this.tileOrigin.lon)/(c*this.tileSize.w));var g=Math.round((d.bottom-this.tileOrigin.lat)/(c*this.tileSize.h));var f=this.serverResolutions!=null?OpenLayers.Util.indexOf(this.serverResolutions,c):this.map.getZoom()+this.zoomOffset;var e=this.serviceVersion+"/"+this.layername+"/"+f+"/"+a+"/"+g+"."+this.type;var b=this.url;if(b instanceof Array){b=this.selectUrl(e,b)}return b+e},addTile:function(b,a){return new OpenLayers.Tile.Image(this,a,b,null,this.tileSize)},setMap:function(a){OpenLayers.Layer.Grid.prototype.setMap.apply(this,arguments);if(!this.tileOrigin){this.tileOrigin=new OpenLayers.LonLat(this.map.maxExtent.left,this.map.maxExtent.bottom)}},CLASS_NAME:"OpenLayers.Layer.TMS"});OpenLayers.Layer.WMS=OpenLayers.Class(OpenLayers.Layer.Grid,{DEFAULT_PARAMS:{service:"WMS",version:"1.1.1",request:"GetMap",styles:"",exceptions:"application/vnd.ogc.se_inimage",format:"image/jpeg"},reproject:false,isBaseLayer:true,encodeBBOX:false,noMagic:false,yx:{"EPSG:4326":true},initialize:function(d,c,e,b){var a=[];e=OpenLayers.Util.upperCaseObject(e);if(parseFloat(e.VERSION)>=1.3&&!e.EXCEPTIONS){e.EXCEPTIONS="INIMAGE"}a.push(d,c,e,b);OpenLayers.Layer.Grid.prototype.initialize.apply(this,a);OpenLayers.Util.applyDefaults(this.params,OpenLayers.Util.upperCaseObject(this.DEFAULT_PARAMS));if(!this.noMagic&&this.params.TRANSPARENT&&this.params.TRANSPARENT.toString().toLowerCase()=="true"){if((b==null)||(!b.isBaseLayer)){this.isBaseLayer=false}if(this.params.FORMAT=="image/jpeg"){this.params.FORMAT=OpenLayers.Util.alphaHack()?"image/gif":"image/png"}}},destroy:function(){OpenLayers.Layer.Grid.prototype.destroy.apply(this,arguments)},clone:function(a){if(a==null){a=new OpenLayers.Layer.WMS(this.name,this.url,this.params,this.getOptions())}a=OpenLayers.Layer.Grid.prototype.clone.apply(this,[a]);return a},reverseAxisOrder:function(){return(parseFloat(this.params.VERSION)>=1.3&&!!this.yx[this.map.getProjectionObject().getCode()])},getURL:function(c){c=this.adjustBounds(c);var d=this.getImageSize();var e={};var b=this.reverseAxisOrder();e.BBOX=this.encodeBBOX?c.toBBOX(null,b):c.toArray(b);e.WIDTH=d.w;e.HEIGHT=d.h;var a=this.getFullRequestString(e);return a},addTile:function(b,a){return new OpenLayers.Tile.Image(this,a,b,null,this.tileSize)},mergeNewParams:function(c){var b=OpenLayers.Util.upperCaseObject(c);var a=[b];return OpenLayers.Layer.Grid.prototype.mergeNewParams.apply(this,a)},getFullRequestString:function(d,b){var a=this.map.getProjection();var c=(a=="none")?null:a;if(parseFloat(this.params.VERSION)>=1.3){this.params.CRS=c}else{this.params.SRS=c}return OpenLayers.Layer.Grid.prototype.getFullRequestString.apply(this,arguments)},CLASS_NAME:"OpenLayers.Layer.WMS"});OpenLayers.Geometry.Collection=OpenLayers.Class(OpenLayers.Geometry,{components:null,componentTypes:null,initialize:function(a){OpenLayers.Geometry.prototype.initialize.apply(this,arguments);this.components=[];if(a!=null){this.addComponents(a)}},destroy:function(){this.components.length=0;this.components=null;OpenLayers.Geometry.prototype.destroy.apply(this,arguments)},clone:function(){var geometry=eval("new "+this.CLASS_NAME+"()");for(var i=0,len=this.components.length;i<len;i++){geometry.addComponent(this.components[i].clone())}OpenLayers.Util.applyDefaults(geometry,this);return geometry},getComponentsString:function(){var b=[];for(var c=0,a=this.components.length;c<a;c++){b.push(this.components[c].toShortString())}return b.join(",")},calculateBounds:function(){this.bounds=null;if(this.components&&this.components.length>0){this.setBounds(this.components[0].getBounds());for(var b=1,a=this.components.length;b<a;b++){this.extendBounds(this.components[b].getBounds())}}},addComponents:function(c){if(!(c instanceof Array)){c=[c]}for(var b=0,a=c.length;b<a;b++){this.addComponent(c[b])}},addComponent:function(b,a){var d=false;if(b){if(this.componentTypes==null||(OpenLayers.Util.indexOf(this.componentTypes,b.CLASS_NAME)>-1)){if(a!=null&&(a<this.components.length)){var e=this.components.slice(0,a);var c=this.components.slice(a,this.components.length);e.push(b);this.components=e.concat(c)}else{this.components.push(b)}b.parent=this;this.clearBounds();d=true}}return d},removeComponents:function(b){if(!(b instanceof Array)){b=[b]}for(var a=b.length-1;a>=0;--a){this.removeComponent(b[a])}},removeComponent:function(a){OpenLayers.Util.removeItem(this.components,a);this.clearBounds()},getLength:function(){var c=0;for(var b=0,a=this.components.length;b<a;b++){c+=this.components[b].getLength()}return c},getArea:function(){var c=0;for(var b=0,a=this.components.length;b<a;b++){c+=this.components[b].getArea()}return c},getGeodesicArea:function(b){var d=0;for(var c=0,a=this.components.length;c<a;c++){d+=this.components[c].getGeodesicArea(b)}return d},getCentroid:function(g){if(!g){return this.components.length&&this.components[0].getCentroid()}var l=this.components.length;if(!l){return false}var b=[];var c=[];var d=0;var h=Number.MAX_VALUE;var m;for(var k=0;k<l;++k){m=this.components[k];var e=m.getArea();var f=m.getCentroid(true);if(isNaN(e)||isNaN(f.x)||isNaN(f.y)){continue}b.push(e);d+=e;h=(e<h&&e>0)?e:h;c.push(f)}l=b.length;if(d===0){for(var k=0;k<l;++k){b[k]=1}d=b.length}else{for(var k=0;k<l;++k){b[k]/=h}d/=h}var j=0,a=0,f,e;for(var k=0;k<l;++k){f=c[k];e=b[k];j+=f.x*e;a+=f.y*e}return new OpenLayers.Geometry.Point(j/d,a/d)},getGeodesicLength:function(b){var d=0;for(var c=0,a=this.components.length;c<a;c++){d+=this.components[c].getGeodesicLength(b)}return d},move:function(b,d){for(var c=0,a=this.components.length;c<a;c++){this.components[c].move(b,d)}},rotate:function(d,b){for(var c=0,a=this.components.length;c<a;++c){this.components[c].rotate(d,b)}},resize:function(d,a,c){for(var b=0;b<this.components.length;++b){this.components[b].resize(d,a,c)}return this},distanceTo:function(h,j){var c=!(j&&j.edge===false);var a=c&&j&&j.details;var k,d,b;var e=Number.POSITIVE_INFINITY;for(var f=0,g=this.components.length;f<g;++f){k=this.components[f].distanceTo(h,j);b=a?k.distance:k;if(b<e){e=b;d=k;if(e==0){break}}}return d},equals:function(d){var b=true;if(!d||!d.CLASS_NAME||(this.CLASS_NAME!=d.CLASS_NAME)){b=false}else{if(!(d.components instanceof Array)||(d.components.length!=this.components.length)){b=false}else{for(var c=0,a=this.components.length;c<a;++c){if(!this.components[c].equals(d.components[c])){b=false;break}}}}return b},transform:function(e,c){if(e&&c){for(var d=0,a=this.components.length;d<a;d++){var b=this.components[d];b.transform(e,c)}this.bounds=null}return this},intersects:function(d){var b=false;for(var c=0,a=this.components.length;c<a;++c){b=d.intersects(this.components[c]);if(b){break}}return b},getVertices:function(b){var c=[];for(var d=0,a=this.components.length;d<a;++d){Array.prototype.push.apply(c,this.components[d].getVertices(b))}return c},CLASS_NAME:"OpenLayers.Geometry.Collection"});OpenLayers.Geometry.Point=OpenLayers.Class(OpenLayers.Geometry,{x:null,y:null,initialize:function(a,b){OpenLayers.Geometry.prototype.initialize.apply(this,arguments);this.x=parseFloat(a);this.y=parseFloat(b)},clone:function(a){if(a==null){a=new OpenLayers.Geometry.Point(this.x,this.y)}OpenLayers.Util.applyDefaults(a,this);return a},calculateBounds:function(){this.bounds=new OpenLayers.Bounds(this.x,this.y,this.x,this.y)},distanceTo:function(f,j){var d=!(j&&j.edge===false);var a=d&&j&&j.details;var b,e,h,c,g,i;if(f instanceof OpenLayers.Geometry.Point){e=this.x;h=this.y;c=f.x;g=f.y;b=Math.sqrt(Math.pow(e-c,2)+Math.pow(h-g,2));i=!a?b:{x0:e,y0:h,x1:c,y1:g,distance:b}}else{i=f.distanceTo(this,j);if(a){i={x0:i.x1,y0:i.y1,x1:i.x0,y1:i.y0,distance:i.distance}}}return i},equals:function(a){var b=false;if(a!=null){b=((this.x==a.x&&this.y==a.y)||(isNaN(this.x)&&isNaN(this.y)&&isNaN(a.x)&&isNaN(a.y)))}return b},toShortString:function(){return(this.x+", "+this.y)},move:function(a,b){this.x=this.x+a;this.y=this.y+b;this.clearBounds()},rotate:function(d,b){d*=Math.PI/180;var a=this.distanceTo(b);var c=d+Math.atan2(this.y-b.y,this.x-b.x);this.x=b.x+(a*Math.cos(c));this.y=b.y+(a*Math.sin(c));this.clearBounds()},getCentroid:function(){return new OpenLayers.Geometry.Point(this.x,this.y)},resize:function(c,a,b){b=(b==undefined)?1:b;this.x=a.x+(c*b*(this.x-a.x));this.y=a.y+(c*(this.y-a.y));this.clearBounds();return this},intersects:function(b){var a=false;if(b.CLASS_NAME=="OpenLayers.Geometry.Point"){a=this.equals(b)}else{a=b.intersects(this)}return a},transform:function(b,a){if((b&&a)){OpenLayers.Projection.transform(this,b,a);this.bounds=null}return this},getVertices:function(a){return[this]},CLASS_NAME:"OpenLayers.Geometry.Point"});OpenLayers.Geometry.MultiPoint=OpenLayers.Class(OpenLayers.Geometry.Collection,{componentTypes:["OpenLayers.Geometry.Point"],initialize:function(a){OpenLayers.Geometry.Collection.prototype.initialize.apply(this,arguments)},addPoint:function(a,b){this.addComponent(a,b)},removePoint:function(a){this.removeComponent(a)},CLASS_NAME:"OpenLayers.Geometry.MultiPoint"});OpenLayers.Geometry.Curve=OpenLayers.Class(OpenLayers.Geometry.MultiPoint,{componentTypes:["OpenLayers.Geometry.Point"],initialize:function(a){OpenLayers.Geometry.MultiPoint.prototype.initialize.apply(this,arguments)},getLength:function(){var c=0;if(this.components&&(this.components.length>1)){for(var b=1,a=this.components.length;b<a;b++){c+=this.components[b-1].distanceTo(this.components[b])}}return c},getGeodesicLength:function(b){var e=this;if(b){var c=new OpenLayers.Projection("EPSG:4326");if(!c.equals(b)){e=this.clone().transform(b,c)}}var f=0;if(e.components&&(e.components.length>1)){var h,g;for(var d=1,a=e.components.length;d<a;d++){h=e.components[d-1];g=e.components[d];f+=OpenLayers.Util.distVincenty({lon:h.x,lat:h.y},{lon:g.x,lat:g.y})}}return f*1000},CLASS_NAME:"OpenLayers.Geometry.Curve"});OpenLayers.Geometry.LineString=OpenLayers.Class(OpenLayers.Geometry.Curve,{initialize:function(a){OpenLayers.Geometry.Curve.prototype.initialize.apply(this,arguments)},removeComponent:function(a){if(this.components&&(this.components.length>2)){OpenLayers.Geometry.Collection.prototype.removeComponent.apply(this,arguments)}},intersects:function(m){var c=false;var l=m.CLASS_NAME;if(l=="OpenLayers.Geometry.LineString"||l=="OpenLayers.Geometry.LinearRing"||l=="OpenLayers.Geometry.Point"){var p=this.getSortedSegments();var n;if(l=="OpenLayers.Geometry.Point"){n=[{x1:m.x,y1:m.y,x2:m.x,y2:m.y}]}else{n=m.getSortedSegments()}var s,g,e,a,r,q,d,b;outer:for(var h=0,k=p.length;h<k;++h){s=p[h];g=s.x1;e=s.x2;a=s.y1;r=s.y2;inner:for(var f=0,o=n.length;f<o;++f){q=n[f];if(q.x1>e){break}if(q.x2<g){continue}d=q.y1;b=q.y2;if(Math.min(d,b)>Math.max(a,r)){continue}if(Math.max(d,b)<Math.min(a,r)){continue}if(OpenLayers.Geometry.segmentsIntersect(s,q)){c=true;break outer}}}}else{c=m.intersects(this)}return c},getSortedSegments:function(){var a=this.components.length-1;var b=new Array(a),e,d;for(var c=0;c<a;++c){e=this.components[c];d=this.components[c+1];if(e.x<d.x){b[c]={x1:e.x,y1:e.y,x2:d.x,y2:d.y}}else{b[c]={x1:d.x,y1:d.y,x2:e.x,y2:e.y}}}function f(h,g){return h.x1-g.x1}return b.sort(f)},splitWithSegment:function(r,b){var c=!(b&&b.edge===false);var o=b&&b.tolerance;var a=[];var t=this.getVertices();var n=[];var v=[];var h=false;var e,d,l;var j,q,u;var f={point:true,tolerance:o};var g=null;for(var m=0,k=t.length-2;m<=k;++m){e=t[m];n.push(e.clone());d=t[m+1];u={x1:e.x,y1:e.y,x2:d.x,y2:d.y};l=OpenLayers.Geometry.segmentsIntersect(r,u,f);if(l instanceof OpenLayers.Geometry.Point){if((l.x===r.x1&&l.y===r.y1)||(l.x===r.x2&&l.y===r.y2)||l.equals(e)||l.equals(d)){q=true}else{q=false}if(q||c){if(!l.equals(v[v.length-1])){v.push(l.clone())}if(m===0){if(l.equals(e)){continue}}if(l.equals(d)){continue}h=true;if(!l.equals(e)){n.push(l)}a.push(new OpenLayers.Geometry.LineString(n));n=[l.clone()]}}}if(h){n.push(d.clone());a.push(new OpenLayers.Geometry.LineString(n))}if(v.length>0){var p=r.x1<r.x2?1:-1;var s=r.y1<r.y2?1:-1;g={lines:a,points:v.sort(function(w,i){return(p*w.x-p*i.x)||(s*w.y-s*i.y)})}}return g},split:function(x,b){var n=null;var d=b&&b.mutual;var l,e,m,c;if(x instanceof OpenLayers.Geometry.LineString){var w=this.getVertices();var g,f,v,h,a,p;var s=[];m=[];for(var t=0,o=w.length-2;t<=o;++t){g=w[t];f=w[t+1];v={x1:g.x,y1:g.y,x2:f.x,y2:f.y};c=c||[x];if(d){s.push(g.clone())}for(var r=0;r<c.length;++r){h=c[r].splitWithSegment(v,b);if(h){a=h.lines;if(a.length>0){a.unshift(r,1);Array.prototype.splice.apply(c,a);r+=a.length-2}if(d){for(var q=0,u=h.points.length;q<u;++q){p=h.points[q];if(!p.equals(g)){s.push(p);m.push(new OpenLayers.Geometry.LineString(s));if(p.equals(f)){s=[]}else{s=[p.clone()]}}}}}}}if(d&&m.length>0&&s.length>0){s.push(f.clone());m.push(new OpenLayers.Geometry.LineString(s))}}else{n=x.splitWith(this,b)}if(c&&c.length>1){e=true}else{c=[]}if(m&&m.length>1){l=true}else{m=[]}if(e||l){if(d){n=[m,c]}else{n=c}}return n},splitWith:function(b,a){return b.split(this,a)},getVertices:function(a){var b;if(a===true){b=[this.components[0],this.components[this.components.length-1]]}else{if(a===false){b=this.components.slice(1,this.components.length-1)}else{b=this.components.slice()}}return b},distanceTo:function(h,g){var k=!(g&&g.edge===false);var B=k&&g&&g.details;var q,e={};var t=Number.POSITIVE_INFINITY;if(h instanceof OpenLayers.Geometry.Point){var r=this.getSortedSegments();var p=h.x;var o=h.y;var z;for(var v=0,w=r.length;v<w;++v){z=r[v];q=OpenLayers.Geometry.distanceToSegment(h,z);if(q.distance<t){t=q.distance;e=q;if(t===0){break}}else{if(z.x2>p&&((o>z.y1&&o<z.y2)||(o<z.y1&&o>z.y2))){break}}}if(B){e={distance:e.distance,x0:e.x,y0:e.y,x1:p,y1:o}}else{e=e.distance}}else{if(h instanceof OpenLayers.Geometry.LineString){var d=this.getSortedSegments();var c=h.getSortedSegments();var b,a,n,A,f;var m=c.length;var l={point:true};outer:for(var v=0,w=d.length;v<w;++v){b=d[v];A=b.x1;f=b.y1;for(var u=0;u<m;++u){a=c[u];n=OpenLayers.Geometry.segmentsIntersect(b,a,l);if(n){t=0;e={distance:0,x0:n.x,y0:n.y,x1:n.x,y1:n.y};break outer}else{q=OpenLayers.Geometry.distanceToSegment({x:A,y:f},a);if(q.distance<t){t=q.distance;e={distance:t,x0:A,y0:f,x1:q.x,y1:q.y}}}}}if(!B){e=e.distance}if(t!==0){if(b){q=h.distanceTo(new OpenLayers.Geometry.Point(b.x2,b.y2),g);var s=B?q.distance:q;if(s<t){if(B){e={distance:t,x0:q.x1,y0:q.y1,x1:q.x0,y1:q.y0}}else{e=s}}}}}else{e=h.distanceTo(this,g);if(B){e={distance:e.distance,x0:e.x1,y0:e.y1,x1:e.x0,y1:e.y0}}}}return e},CLASS_NAME:"OpenLayers.Geometry.LineString"});OpenLayers.Geometry.LinearRing=OpenLayers.Class(OpenLayers.Geometry.LineString,{componentTypes:["OpenLayers.Geometry.Point"],initialize:function(a){OpenLayers.Geometry.LineString.prototype.initialize.apply(this,arguments)},addComponent:function(a,b){var c=false;var d=this.components.pop();if(b!=null||!a.equals(d)){c=OpenLayers.Geometry.Collection.prototype.addComponent.apply(this,arguments)}var e=this.components[0];OpenLayers.Geometry.Collection.prototype.addComponent.apply(this,[e]);return c},removeComponent:function(a){if(this.components.length>4){this.components.pop();OpenLayers.Geometry.Collection.prototype.removeComponent.apply(this,arguments);var b=this.components[0];OpenLayers.Geometry.Collection.prototype.addComponent.apply(this,[b])}},move:function(b,d){for(var c=0,a=this.components.length;c<a-1;c++){this.components[c].move(b,d)}},rotate:function(d,b){for(var c=0,a=this.components.length;c<a-1;++c){this.components[c].rotate(d,b)}},resize:function(e,b,d){for(var c=0,a=this.components.length;c<a-1;++c){this.components[c].resize(e,b,d)}return this},transform:function(e,c){if(e&&c){for(var d=0,a=this.components.length;d<a-1;d++){var b=this.components[d];b.transform(e,c)}this.bounds=null}return this},getCentroid:function(){if(this.components&&(this.components.length>2)){var h=0;var g=0;for(var e=0;e<this.components.length-1;e++){var d=this.components[e];var k=this.components[e+1];h+=(d.x+k.x)*(d.x*k.y-k.x*d.y);g+=(d.y+k.y)*(d.x*k.y-k.x*d.y)}var f=-1*this.getArea();var a=h/(6*f);var j=g/(6*f);return new OpenLayers.Geometry.Point(a,j)}else{return null}},getArea:function(){var g=0;if(this.components&&(this.components.length>2)){var f=0;for(var e=0,d=this.components.length;e<d-1;e++){var a=this.components[e];var h=this.components[e+1];f+=(a.x+h.x)*(h.y-a.y)}g=-f/2}return g},getGeodesicArea:function(b){var d=this;if(b){var c=new OpenLayers.Projection("EPSG:4326");if(!c.equals(b)){d=this.clone().transform(b,c)}}var f=0;var a=d.components&&d.components.length;if(a>2){var h,g;for(var e=0;e<a-1;e++){h=d.components[e];g=d.components[e+1];f+=OpenLayers.Util.rad(g.x-h.x)*(2+Math.sin(OpenLayers.Util.rad(h.y))+Math.sin(OpenLayers.Util.rad(g.y)))}f=f*6378137*6378137/2}return f},containsPoint:function(m){var s=OpenLayers.Number.limitSigDigs;var l=14;var k=s(m.x,l);var j=s(m.y,l);function r(w,t,v,i,u){return(((t-i)*w)+((i*v)-(t*u)))/(v-u)}var a=this.components.length-1;var g,f,q,d,o,b,e,c;var h=0;for(var n=0;n<a;++n){g=this.components[n];q=s(g.x,l);d=s(g.y,l);f=this.components[n+1];o=s(f.x,l);b=s(f.y,l);if(d==b){if(j==d){if(q<=o&&(k>=q&&k<=o)||q>=o&&(k<=q&&k>=o)){h=-1;break}}continue}e=s(r(j,q,d,o,b),l);if(e==k){if(d<b&&(j>=d&&j<=b)||d>b&&(j<=d&&j>=b)){h=-1;break}}if(e<=k){continue}if(q!=o&&(e<Math.min(q,o)||e>Math.max(q,o))){continue}if(d<b&&(j>=d&&j<b)||d>b&&(j<d&&j>=b)){++h}}var p=(h==-1)?1:!!(h&1);return p},intersects:function(d){var b=false;if(d.CLASS_NAME=="OpenLayers.Geometry.Point"){b=this.containsPoint(d)}else{if(d.CLASS_NAME=="OpenLayers.Geometry.LineString"){b=d.intersects(this)}else{if(d.CLASS_NAME=="OpenLayers.Geometry.LinearRing"){b=OpenLayers.Geometry.LineString.prototype.intersects.apply(this,[d])}else{for(var c=0,a=d.components.length;c<a;++c){b=d.components[c].intersects(this);if(b){break}}}}}return b},getVertices:function(a){return(a===true)?[]:this.components.slice(0,this.components.length-1)},CLASS_NAME:"OpenLayers.Geometry.LinearRing"});
\ No newline at end of file
+++ /dev/null
-The default OpenLayers.js file, minified, weighs in at a whopping 943kb uncompressed.
-With gzip compression it's still over 200kb, so we're building a stripped-down copy
-with just what we need.
-
-Docs on how the stripping process works:
-http://docs.openlayers.org/library/deploying.html
-
-To recreate this OpenLayers.js file:
-
- # get yui-compressor (install from apt, or set up a shell script or alias to the jar)
- # download and decompress OpenLayers-2.10 zip or tgz
- make clean && make
-
-If necessary, change the relative path to the OpenLayers source directory in the Makefile.
+++ /dev/null
-# Modified lite.cfg for building an OpenLayers subset for StatusNet's Mapstraction plugin.
-
-# This file includes a small subset of OpenLayers code, designed to be
-# integrated into another application. It includes only the Layer types
-# neccesary to create tiled or untiled WMS, and does not include any Controls.
-# This is the result of what was at the time called "Webmap.js" at the FOSS4G
-# Web Mapping BOF.
-
-[first]
-OpenLayers/SingleFile.js
-OpenLayers.js
-OpenLayers/BaseTypes.js
-OpenLayers/BaseTypes/Class.js
-OpenLayers/Util.js
-
-[last]
-
-[include]
-OpenLayers/Map.js
-OpenLayers/Layer/WMS.js
-
-# Needed for Mapstraction on StatusNet
-OpenLayers/Feature.js
-OpenLayers/Feature/Vector.js
-OpenLayers/Geometry.js
-OpenLayers/Geometry/Point.js
-OpenLayers/Geometry/LinearRing.js
-OpenLayers/Geometry/LineString.js
-OpenLayers/Icon.js
-OpenLayers/Layer/Markers.js
-OpenLayers/Layer/TMS.js
-OpenLayers/Marker.js
-OpenLayers/Popup.js
-
-# Default controls, needed to keep the map dynamic
-OpenLayers/Control/ArgParser.js
-OpenLayers/Control/Attribution.js
-OpenLayers/Control/Navigation.js
-OpenLayers/Control/PanZoom.js
-
-[exclude]
-
-
+++ /dev/null
-.olControlZoomPanel div {
- background-image: url(img/zoom-panel-NOALPHA.png);
-}
-.olControlPanPanel div {
- background-image: url(img/pan-panel-NOALPHA.png);
-}
-
+++ /dev/null
-div.olMap {
- z-index: 0;
- padding: 0px!important;
- margin: 0px!important;
- cursor: default;
-}
-
-div.olMapViewport {
- text-align: left;
-}
-
-div.olLayerDiv {
- -moz-user-select: none;
-}
-
-.olControlAttribution {
- font-size: smaller;
- right: 3px;
- bottom: 4.5em;
- position: absolute;
- display: block;
-}
-.olControlScale {
- right: 3px;
- bottom: 3em;
- display: block;
- position: absolute;
- font-size: smaller;
-}
-.olControlScaleLine {
- display: block;
- position: absolute;
- left: 10px;
- bottom: 15px;
- font-size: xx-small;
-}
-.olControlScaleLineBottom {
- border: solid 2px black;
- border-bottom: none;
- margin-top:-2px;
- text-align: center;
-}
-.olControlScaleLineTop {
- border: solid 2px black;
- border-top: none;
- text-align: center;
-}
-
-.olControlPermalink {
- right: 3px;
- bottom: 1.5em;
- display: block;
- position: absolute;
- font-size: smaller;
-}
-
-div.olControlMousePosition {
- bottom: 0em;
- right: 3px;
- display: block;
- position: absolute;
- font-family: Arial;
- font-size: smaller;
-}
-
-.olControlOverviewMapContainer {
- position: absolute;
- bottom: 0px;
- right: 0px;
-}
-
-.olControlOverviewMapElement {
- padding: 10px 18px 10px 10px;
- background-color: #00008B;
- -moz-border-radius: 1em 0 0 0;
-}
-
-.olControlOverviewMapMinimizeButton {
- right: 0px;
- bottom: 80px;
-}
-
-.olControlOverviewMapMaximizeButton {
- right: 0px;
- bottom: 80px;
-}
-
-.olControlOverviewMapExtentRectangle {
- overflow: hidden;
- background-image: url("img/blank.gif");
- cursor: move;
- border: 2px dotted red;
-}
-.olControlOverviewMapRectReplacement {
- overflow: hidden;
- cursor: move;
- background-image: url("img/overview_replacement.gif");
- background-repeat: no-repeat;
- background-position: center;
-}
-
-.olLayerGeoRSSDescription {
- float:left;
- width:100%;
- overflow:auto;
- font-size:1.0em;
-}
-.olLayerGeoRSSClose {
- float:right;
- color:gray;
- font-size:1.2em;
- margin-right:6px;
- font-family:sans-serif;
-}
-.olLayerGeoRSSTitle {
- float:left;font-size:1.2em;
-}
-
-.olPopupContent {
- padding:5px;
- overflow: auto;
-}
-.olControlNavToolbar {
- width:0px;
- height:0px;
-}
-.olControlNavToolbar div {
- display:block;
- width: 28px;
- height: 28px;
- top: 300px;
- left: 6px;
- position: relative;
-}
-
-.olControlNavigationHistory {
- background-image: url("img/navigation_history.png");
- background-repeat: no-repeat;
- width: 24px;
- height: 24px;
-
-}
-.olControlNavigationHistoryPreviousItemActive {
- background-position: 0px 0px;
-}
-.olControlNavigationHistoryPreviousItemInactive {
- background-position: 0px -24px;
-}
-.olControlNavigationHistoryNextItemActive {
- background-position: -24px 0px;
-}
-.olControlNavigationHistoryNextItemInactive {
- background-position: -24px -24px;
-}
-
-.olControlNavToolbar .olControlNavigationItemActive {
- background-image: url("img/panning-hand-on.png");
- background-repeat: no-repeat;
-}
-.olControlNavToolbar .olControlNavigationItemInactive {
- background-image: url("img/panning-hand-off.png");
- background-repeat: no-repeat;
-}
-.olControlNavToolbar .olControlZoomBoxItemActive {
- background-image: url("img/drag-rectangle-on.png");
- background-color: orange;
- background-repeat: no-repeat;
-}
-.olControlNavToolbar .olControlZoomBoxItemInactive {
- background-image: url("img/drag-rectangle-off.png");
- background-repeat: no-repeat;
-}
-.olControlEditingToolbar {
- float:right;
- right: 0px;
- height: 30px;
- width: 200px;
-}
-.olControlEditingToolbar div {
- background-image: url("img/editing_tool_bar.png");
- background-repeat: no-repeat;
- float:right;
- width: 24px;
- height: 24px;
- margin: 5px;
-}
-.olControlEditingToolbar .olControlNavigationItemActive {
- background-position: -103px -23px;
-}
-.olControlEditingToolbar .olControlNavigationItemInactive {
- background-position: -103px -0px;
-}
-.olControlEditingToolbar .olControlDrawFeaturePointItemActive {
- background-position: -77px -23px;
-}
-.olControlEditingToolbar .olControlDrawFeaturePointItemInactive {
- background-position: -77px -0px;
-}
-.olControlEditingToolbar .olControlDrawFeaturePathItemInactive {
- background-position: -51px 0px;
-}
-.olControlEditingToolbar .olControlDrawFeaturePathItemActive {
- background-position: -51px -23px;
-}
-.olControlEditingToolbar .olControlDrawFeaturePolygonItemInactive {
- background-position: -26px 0px;
-}
-.olControlEditingToolbar .olControlDrawFeaturePolygonItemActive {
- background-position: -26px -23px ;
-}
-div.olControlSaveFeaturesItemActive {
- background-image: url(img/save_features_on.png);
- background-repeat: no-repeat;
- background-position: 0px 1px;
-}
-div.olControlSaveFeaturesItemInactive {
- background-image: url(img/save_features_off.png);
- background-repeat: no-repeat;
- background-position: 0px 1px;
-}
-
-.olHandlerBoxZoomBox {
- border: 2px solid red;
- position: absolute;
- background-color: white;
- opacity: 0.50;
- font-size: 1px;
- filter: alpha(opacity=50);
-}
-.olHandlerBoxSelectFeature {
- border: 2px solid blue;
- position: absolute;
- background-color: white;
- opacity: 0.50;
- font-size: 1px;
- filter: alpha(opacity=50);
-}
-
-.olControlPanPanel {
- top: 10px;
- left: 5px;
-}
-
-.olControlPanPanel div {
- background-image: url(img/pan-panel.png);
- height: 18px;
- width: 18px;
- cursor: pointer;
- position: absolute;
-}
-
-.olControlPanPanel .olControlPanNorthItemInactive {
- top: 0px;
- left: 9px;
- background-position: 0px 0px;
-}
-.olControlPanPanel .olControlPanSouthItemInactive {
- top: 36px;
- left: 9px;
- background-position: 18px 0px;
-}
-.olControlPanPanel .olControlPanWestItemInactive {
- position: absolute;
- top: 18px;
- left: 0px;
- background-position: 0px 18px;
-}
-.olControlPanPanel .olControlPanEastItemInactive {
- top: 18px;
- left: 18px;
- background-position: 18px 18px;
-}
-
-.olControlZoomPanel {
- top: 71px;
- left: 14px;
-}
-
-.olControlZoomPanel div {
- background-image: url(img/zoom-panel.png);
- position: absolute;
- height: 18px;
- width: 18px;
- cursor: pointer;
-}
-
-.olControlZoomPanel .olControlZoomInItemInactive {
- top: 0px;
- left: 0px;
- background-position: 0px 0px;
-}
-
-.olControlZoomPanel .olControlZoomToMaxExtentItemInactive {
- top: 18px;
- left: 0px;
- background-position: 0px -18px;
-}
-
-.olControlZoomPanel .olControlZoomOutItemInactive {
- top: 36px;
- left: 0px;
- background-position: 0px 18px;
-}
-
-.olPopupCloseBox {
- background: url("img/close.gif") no-repeat;
- cursor: pointer;
-}
-
-.olFramedCloudPopupContent {
- padding: 5px;
- overflow: auto;
-}
-
-.olControlNoSelect {
- -moz-user-select: none;
-}
-
-.olImageLoadError {
- background-color: pink;
- opacity: 0.5;
- filter: alpha(opacity=50); /* IE */
-}
-
-/**
- * Cursor styles
- */
-
-.olCursorWait {
- cursor: wait;
-}
-.olDragDown {
- cursor: move;
-}
-.olDrawBox {
- cursor: crosshair;
-}
-.olControlDragFeatureOver {
- cursor: move;
-}
-.olControlDragFeatureActive.olControlDragFeatureOver.olDragDown {
- cursor: -moz-grabbing;
-}
-
-/**
- * Layer switcher
- */
-.olControlLayerSwitcher {
- position: absolute;
- top: 25px;
- right: 0px;
- width: 20em;
- font-family: sans-serif;
- font-weight: bold;
- margin-top: 3px;
- margin-left: 3px;
- margin-bottom: 3px;
- font-size: smaller;
- color: white;
- background-color: transparent;
-}
-
-.olControlLayerSwitcher .layersDiv {
- padding-top: 5px;
- padding-left: 10px;
- padding-bottom: 5px;
- padding-right: 75px;
- background-color: darkblue;
- width: 100%;
- height: 100%;
-}
-
-.olControlLayerSwitcher .layersDiv .baseLbl,
-.olControlLayerSwitcher .layersDiv .dataLbl {
- margin-top: 3px;
- margin-left: 3px;
- margin-bottom: 3px;
-}
-
-.olControlLayerSwitcher .layersDiv .baseLayersDiv,
-.olControlLayerSwitcher .layersDiv .dataLayersDiv {
- padding-left: 10px;
-}
-
-.olControlLayerSwitcher .maximizeDiv,
-.olControlLayerSwitcher .minimizeDiv {
- top: 5px;
- right: 0px;
-}
+++ /dev/null
-mxn.register('{{api_id}}', {\r
-\r
-Mapstraction: {\r
-\r
- init: function(element, api) {\r
- var me = this;\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- applyOptions: function(){\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- resizeTo: function(width, height){\r
- // TODO: Add provider code\r
- },\r
-\r
- addControls: function( args ) {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- addSmallControls: function() {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- addLargeControls: function() {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- addMapTypeControls: function() {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- setCenterAndZoom: function(point, zoom) {\r
- var map = this.maps[this.api];\r
- var pt = point.toProprietary(this.api);\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- addMarker: function(marker, old) {\r
- var map = this.maps[this.api];\r
- var pin = marker.toProprietary(this.api);\r
-\r
- // TODO: Add provider code\r
-\r
- return pin;\r
- },\r
-\r
- removeMarker: function(marker) {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- removeAllMarkers: function() {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- declutterMarkers: function(opts) {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- addPolyline: function(polyline, old) {\r
- var map = this.maps[this.api];\r
- var pl = polyline.toProprietary(this.api);\r
-\r
- // TODO: Add provider code\r
-\r
- return pl;\r
- },\r
-\r
- removePolyline: function(polyline) {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- getCenter: function() {\r
- var point;\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
-\r
- return point;\r
- },\r
-\r
- setCenter: function(point, options) {\r
- var map = this.maps[this.api];\r
- var pt = point.toProprietary(this.api);\r
- if(options && options.pan) {\r
- // TODO: Add provider code\r
- }\r
- else {\r
- // TODO: Add provider code\r
- }\r
- },\r
-\r
- setZoom: function(zoom) {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
-\r
- },\r
-\r
- getZoom: function() {\r
- var map = this.maps[this.api];\r
- var zoom;\r
-\r
- // TODO: Add provider code\r
-\r
- return zoom;\r
- },\r
-\r
- getZoomLevelForBoundingBox: function( bbox ) {\r
- var map = this.maps[this.api];\r
- // NE and SW points from the bounding box.\r
- var ne = bbox.getNorthEast();\r
- var sw = bbox.getSouthWest();\r
- var zoom;\r
-\r
- // TODO: Add provider code\r
-\r
- return zoom;\r
- },\r
-\r
- setMapType: function(type) {\r
- var map = this.maps[this.api];\r
- switch(type) {\r
- case mxn.Mapstraction.ROAD:\r
- // TODO: Add provider code\r
- break;\r
- case mxn.Mapstraction.SATELLITE:\r
- // TODO: Add provider code\r
- break;\r
- case mxn.Mapstraction.HYBRID:\r
- // TODO: Add provider code\r
- break;\r
- default:\r
- // TODO: Add provider code\r
- }\r
- },\r
-\r
- getMapType: function() {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
-\r
- //return mxn.Mapstraction.ROAD;\r
- //return mxn.Mapstraction.SATELLITE;\r
- //return mxn.Mapstraction.HYBRID;\r
-\r
- },\r
-\r
- getBounds: function () {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
-\r
- //return new mxn.BoundingBox( , , , );\r
- },\r
-\r
- setBounds: function(bounds){\r
- var map = this.maps[this.api];\r
- var sw = bounds.getSouthWest();\r
- var ne = bounds.getNorthEast();\r
-\r
- // TODO: Add provider code\r
-\r
- },\r
-\r
- addImageOverlay: function(id, src, opacity, west, south, east, north, oContext) {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- setImagePosition: function(id, oContext) {\r
- var map = this.maps[this.api];\r
- var topLeftPoint; var bottomRightPoint;\r
-\r
- // TODO: Add provider code\r
-\r
- //oContext.pixels.top = ...;\r
- //oContext.pixels.left = ...;\r
- //oContext.pixels.bottom = ...;\r
- //oContext.pixels.right = ...;\r
- },\r
-\r
- addOverlay: function(url, autoCenterAndZoom) {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
-\r
- },\r
-\r
- addTileLayer: function(tile_url, opacity, copyright_text, min_zoom, max_zoom) {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- toggleTileLayer: function(tile_url) {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- getPixelRatio: function() {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- },\r
-\r
- mousePosition: function(element) {\r
- var map = this.maps[this.api];\r
-\r
- // TODO: Add provider code\r
- }\r
-},\r
-\r
-LatLonPoint: {\r
-\r
- toProprietary: function() {\r
- // TODO: Add provider code\r
- },\r
-\r
- fromProprietary: function(point) {\r
- // TODO: Add provider code\r
- }\r
-\r
-},\r
-\r
-Marker: {\r
-\r
- toProprietary: function() {\r
- // TODO: Add provider code\r
- },\r
-\r
- openBubble: function() {\r
- // TODO: Add provider code\r
- },\r
-\r
- hide: function() {\r
- // TODO: Add provider code\r
- },\r
-\r
- show: function() {\r
- // TODO: Add provider code\r
- },\r
-\r
- update: function() {\r
- // TODO: Add provider code\r
- }\r
-\r
-},\r
-\r
-Polyline: {\r
-\r
- toProprietary: function() {\r
- // TODO: Add provider code\r
- },\r
-\r
- show: function() {\r
- // TODO: Add provider code\r
- },\r
-\r
- hide: function() {\r
- // TODO: Add provider code\r
- }\r
-\r
-}\r
-\r
-});
\ No newline at end of file
+++ /dev/null
-mxn.register('cloudmade', {
-
- Mapstraction: {
-
- init: function(element, api) {
- var me = this;
- var cloudmade = new CM.Tiles.CloudMade.Web({key: cloudmade_key});
- this.maps[api] = new CM.Map(element, cloudmade);
- this.loaded[api] = true;
-
- CM.Event.addListener(this.maps[api], 'click', function(location,marker) {
- if ( marker && marker.mapstraction_marker ) {
- marker.mapstraction_marker.click.fire();
- }
- else if ( location ) {
- me.click.fire({'location': new mxn.LatLonPoint(location.lat(), location.lng())});
- }
-
- // If the user puts their own markers directly on the map
- // then there is no location and this event should not fire.
- if ( location ) {
- me.clickHandler(location.lat(),location.lng(),location,me);
- }
- });
- },
-
- applyOptions: function(){
- var map = this.maps[this.api];
- if(this.options.enableScrollWheelZoom){
- map.enableScrollWheelZoom();
- }
- },
-
- resizeTo: function(width, height){
- this.maps[this.api].checkResize();
- },
-
- addControls: function( args ) {
- var map = this.maps[this.api];
-
- var c = this.addControlsArgs;
- switch (c.zoom) {
- case 'large':
- this.addLargeControls();
- break;
- case 'small':
- this.addSmallControls();
- break;
- }
-
- if (c.map_type) {
- this.addMapTypeControls();
- }
- if (c.scale) {
- map.addControl(new CM.ScaleControl());
- this.addControlsArgs.scale = true;
- }
- },
-
- addSmallControls: function() {
- var map = this.maps[this.api];
- map.addControl(new CM.SmallMapControl());
- this.addControlsArgs.zoom = 'small';
- },
-
- addLargeControls: function() {
- var map = this.maps[this.api];
- map.addControl(new CM.LargeMapControl());
- this.addControlsArgs.zoom = 'large';
- },
-
- addMapTypeControls: function() {
- var map = this.maps[this.api];
-
- map.addControl(new CM.TileLayerControl());
- this.addControlsArgs.map_type = true;
- },
-
- dragging: function(on) {
- var map = this.maps[this.api];
-
- if (on) {
- map.enableDragging();
- } else {
- map.disableDragging();
- }
- },
-
- setCenterAndZoom: function(point, zoom) {
- var map = this.maps[this.api];
- var pt = point.toProprietary(this.api);
- map.setCenter(pt, zoom);
-
- },
-
- addMarker: function(marker, old) {
- var map = this.maps[this.api];
- var pin = marker.toProprietary(this.api);
- map.addOverlay(pin);
- return pin;
- },
-
- removeMarker: function(marker) {
- var map = this.maps[this.api];
- marker.proprietary_marker.closeInfoWindow();
- map.removeOverlay(marker.proprietary_marker);
- },
-
- removeAllMarkers: function() {
- // Done in mxn.core.js
- },
-
- declutterMarkers: function(opts) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- addPolyline: function(polyline, old) {
- var map = this.maps[this.api];
- var pl = polyline.toProprietary(this.api);
- map.addOverlay(pl);
- return pl;
- },
-
- removePolyline: function(polyline) {
- var map = this.maps[this.api];
- map.removeOverlay(polyline.proprietary_polyline);
- },
-
- getCenter: function() {
- var map = this.maps[this.api];
- var pt = map.getCenter();
-
- return new mxn.LatLonPoint(pt.lat(), pt.lng());
- },
-
- setCenter: function(point, options) {
- var map = this.maps[this.api];
- var pt = point.toProprietary(this.api);
- if(options !== null && options.pan) { map.panTo(pt); }
- else { map.setCenter(pt); }
- },
-
- setZoom: function(zoom) {
- var map = this.maps[this.api];
- map.setZoom(zoom);
- },
-
- getZoom: function() {
- var map = this.maps[this.api];
- return map.getZoom();
- },
-
- getZoomLevelForBoundingBox: function( bbox ) {
- var map = this.maps[this.api];
- // NE and SW points from the bounding box.
- var ne = bbox.getNorthEast();
- var sw = bbox.getSouthWest();
-
- var zoom = map.getBoundsZoomLevel(new CM.LatLngBounds(sw.toProprietary(this.api), ne.toProprietary(this.api)));
- return zoom;
- },
-
- setMapType: function(type) {
- var map = this.maps[this.api];
-
- // TODO: Are there any MapTypes for Cloudmade?
-
- switch(type) {
- case mxn.Mapstraction.ROAD:
- // TODO: Add provider code
- break;
- case mxn.Mapstraction.SATELLITE:
- // TODO: Add provider code
- break;
- case mxn.Mapstraction.HYBRID:
- // TODO: Add provider code
- break;
- default:
- // TODO: Add provider code
- }
- },
-
- getMapType: function() {
- var map = this.maps[this.api];
-
- // TODO: Are there any MapTypes for Cloudmade?
-
- return mxn.Mapstraction.ROAD;
- //return mxn.Mapstraction.SATELLITE;
- //return mxn.Mapstraction.HYBRID;
-
- },
-
- getBounds: function () {
- var map = this.maps[this.api];
-
- var box = map.getBounds();
- var sw = box.getSouthWest();
- var ne = box.getNorthEast();
-
- return new mxn.BoundingBox(sw.lat(), sw.lng(), ne.lat(), ne.lng());
- },
-
- setBounds: function(bounds){
- var map = this.maps[this.api];
- var sw = bounds.getSouthWest();
- var ne = bounds.getNorthEast();
-
- map.zoomToBounds(new CM.LatLngBounds(sw.toProprietary(this.api), ne.toProprietary(this.api)));
- },
-
- addImageOverlay: function(id, src, opacity, west, south, east, north, oContext) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- setImagePosition: function(id, oContext) {
- var map = this.maps[this.api];
- var topLeftPoint; var bottomRightPoint;
-
- // TODO: Add provider code
-
- },
-
- addOverlay: function(url, autoCenterAndZoom) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
-
- },
-
- addTileLayer: function(tile_url, opacity, copyright_text, min_zoom, max_zoom) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- toggleTileLayer: function(tile_url) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- getPixelRatio: function() {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- mousePosition: function(element) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- }
- },
-
- LatLonPoint: {
-
- toProprietary: function() {
- var cll = new CM.LatLng(this.lat,this.lon);
- return cll;
- },
-
- fromProprietary: function(point) {
- return new mxn.LatLonPoint(point.lat(),point.lng());
- }
-
- },
-
- Marker: {
-
- toProprietary: function() {
- var pt = this.location.toProprietary(this.api);
- var options = {};
-
- if (this.iconUrl) {
- var cicon = new CM.Icon();
- cicon.image = this.iconUrl;
- if (this.iconSize) {
- cicon.iconSize = new CM.Size(this.iconSize[0], this.iconSize[1]);
- if (this.iconAnchor) {
- cicon.iconAnchor = new CM.Point(this.iconAnchor[0], this.iconAnchor[1]);
- }
- }
- if (this.iconShadowUrl) {
- cicon.shadow = this.iconShadowUrl;
- if (this.iconShadowSize) {
- cicon.shadowSize = new CM.Size(this.iconShadowSize[0], this.iconShadowSize[1]);
- }
- }
- options.icon = cicon;
- }
- if (this.labelText) {
- options.title = this.labelText;
- }
- var cmarker = new CM.Marker(pt, options);
-
- if (this.infoBubble) {
- cmarker.bindInfoWindow(this.infoBubble);
- }
-
-
- return cmarker;
- },
-
- openBubble: function() {
- var pin = this.proprietary_marker;
- pin.openInfoWindow(this.infoBubble);
- },
-
- hide: function() {
- var pin = this.proprietary_marker;
- pin.hide();
- },
-
- show: function() {
- var pin = this.proprietary_marker;
- pin.show();
- },
-
- update: function() {
- // TODO: Add provider code
- }
-
- },
-
- Polyline: {
-
- toProprietary: function() {
- var pts = [];
- var poly;
-
- for (var i = 0, length = this.points.length ; i< length; i++){
- pts.push(this.points[i].toProprietary(this.api));
- }
- if (this.closed || pts[0].equals(pts[pts.length-1])) {
- poly = new CM.Polygon(pts, this.color, this.width, this.opacity, this.fillColor || "#5462E3", this.opacity || "0.3");
- } else {
- poly = new CM.Polyline(pts, this.color, this.width, this.opacity);
- }
- return poly;
- },
-
- show: function() {
- this.proprietary_polyline.show();
- },
-
- hide: function() {
- this.proprietary_polyline.hide();
- }
-
- }
-
-});
+++ /dev/null
-(function(){
-
-/**
- * @exports mxn.util.$m as $m
- */
-var $m = mxn.util.$m;
-
-/**
- * Initialise our provider. This function should only be called
- * from within mapstraction code, not exposed as part of the API.
- * @private
- */
-var init = function() {
- this.invoker.go('init', [ this.currentElement, this.api ]);
- this.applyOptions();
-};
-
-/**
- * Mapstraction instantiates a map with some API choice into the HTML element given
- * @name mxn.Mapstraction
- * @constructor
- * @param {String} element The HTML element to replace with a map
- * @param {String} api The API to use, one of 'yahoo', 'microsoft', 'openstreetmap', 'multimap', 'map24', 'openlayers', 'mapquest'. If omitted, first loaded provider implementation is used.
- * @param {Bool} debug optional parameter to turn on debug support - this uses alert panels for unsupported actions
- * @exports Mapstraction as mxn.Mapstraction
- */
-var Mapstraction = mxn.Mapstraction = function(element, api, debug) {
- if (!api){
- api = mxn.util.getAvailableProviders()[0];
- }
- this.api = api;
- this.maps = {};
- this.currentElement = $m(element);
- this.eventListeners = [];
- this.markers = [];
- this.layers = [];
- this.polylines = [];
- this.images = [];
- this.controls = [];
- this.loaded = {};
- this.onload = {};
- this.element = element;
-
- // option defaults
- this.options = {
- enableScrollWheelZoom: false,
- enableDragging: true
- };
-
- this.addControlsArgs = {};
-
- // set up our invoker for calling API methods
- this.invoker = new mxn.Invoker(this, 'Mapstraction', function(){ return this.api; });
-
- // Adding our events
- mxn.addEvents(this, [
-
- /**
- * Map has loaded
- * @name mxn.Mapstraction#load
- * @event
- */
- 'load',
-
- /**
- * Map is clicked {location: LatLonPoint}
- * @name mxn.Mapstraction#click
- * @event
- */
- 'click',
-
- /**
- * Map is panned
- * @name mxn.Mapstraction#endPan
- * @event
- */
- 'endPan',
-
- /**
- * Zoom is changed
- * @name mxn.Mapstraction#changeZoom
- * @event
- */
- 'changeZoom',
-
- /**
- * Marker is removed {marker: Marker}
- * @name mxn.Mapstraction#markerAdded
- * @event
- */
- 'markerAdded',
-
- /**
- * Marker is removed {marker: Marker}
- * @name mxn.Mapstraction#markerRemoved
- * @event
- */
- 'markerRemoved',
-
- /**
- * Polyline is added {polyline: Polyline}
- * @name mxn.Mapstraction#polylineAdded
- * @event
- */
- 'polylineAdded',
-
- /**
- * Polyline is removed {polyline: Polyline}
- * @name mxn.Mapstraction#polylineRemoved
- * @event
- */
- 'polylineRemoved'
- ]);
-
- // finally initialize our proper API map
- init.apply(this);
-};
-
-// Map type constants
-Mapstraction.ROAD = 1;
-Mapstraction.SATELLITE = 2;
-Mapstraction.HYBRID = 3;
-
-// methods that have no implementation in mapstraction core
-mxn.addProxyMethods(Mapstraction, [
- /**
- * Adds a large map panning control and zoom buttons to the map
- * @name mxn.Mapstraction#addLargeControls
- * @function
- */
- 'addLargeControls',
-
- /**
- * Adds a map type control to the map (streets, aerial imagery etc)
- * @name mxn.Mapstraction#addMapTypeControls
- * @function
- */
- 'addMapTypeControls',
-
- /**
- * Adds a GeoRSS or KML overlay to the map
- * some flavors of GeoRSS and KML are not supported by some of the Map providers
- * @name mxn.Mapstraction#addOverlay
- * @function
- * @param {String} url GeoRSS or KML feed URL
- * @param {Boolean} autoCenterAndZoom Set true to auto center and zoom after the feed is loaded
- */
- 'addOverlay',
-
- /**
- * Adds a small map panning control and zoom buttons to the map
- * @name mxn.Mapstraction#addSmallControls
- * @function
- */
- 'addSmallControls',
-
- /**
- * Applies the current option settings
- * @name mxn.Mapstraction#applyOptions
- * @function
- */
- 'applyOptions',
-
- /**
- * Gets the BoundingBox of the map
- * @name mxn.Mapstraction#getBounds
- * @function
- * @returns {BoundingBox} The bounding box for the current map state
- */
- 'getBounds',
-
- /**
- * Gets the central point of the map
- * @name mxn.Mapstraction#getCenter
- * @function
- * @returns {LatLonPoint} The center point of the map
- */
- 'getCenter',
-
- /**
- * Gets the imagery type for the map.
- * The type can be one of:
- * mxn.Mapstraction.ROAD
- * mxn.Mapstraction.SATELLITE
- * mxn.Mapstraction.HYBRID
- * @name mxn.Mapstraction#getMapType
- * @function
- * @returns {Number}
- */
- 'getMapType',
-
- /**
- * Returns a ratio to turn distance into pixels based on current projection
- * @name mxn.Mapstraction#getPixelRatio
- * @function
- * @returns {Float} ratio
- */
- 'getPixelRatio',
-
- /**
- * Returns the zoom level of the map
- * @name mxn.Mapstraction#getZoom
- * @function
- * @returns {Integer} The zoom level of the map
- */
- 'getZoom',
-
- /**
- * Returns the best zoom level for bounds given
- * @name mxn.Mapstraction#getZoomLevelForBoundingBox
- * @function
- * @param {BoundingBox} bbox The bounds to fit
- * @returns {Integer} The closest zoom level that contains the bounding box
- */
- 'getZoomLevelForBoundingBox',
-
- /**
- * Displays the coordinates of the cursor in the HTML element
- * @name mxn.Mapstraction#mousePosition
- * @function
- * @param {String} element ID of the HTML element to display the coordinates in
- */
- 'mousePosition',
-
- /**
- * Resize the current map to the specified width and height
- * (since it is actually on a child div of the mapElement passed
- * as argument to the Mapstraction constructor, the resizing of this
- * mapElement may have no effect on the size of the actual map)
- * @name mxn.Mapstraction#resizeTo
- * @function
- * @param {Integer} width The width the map should be.
- * @param {Integer} height The width the map should be.
- */
- 'resizeTo',
-
- /**
- * Sets the map to the appropriate location and zoom for a given BoundingBox
- * @name mxn.Mapstraction#setBounds
- * @function
- * @param {BoundingBox} bounds The bounding box you want the map to show
- */
- 'setBounds',
-
- /**
- * setCenter sets the central point of the map
- * @name mxn.Mapstraction#setCenter
- * @function
- * @param {LatLonPoint} point The point at which to center the map
- * @param {Object} options Optional parameters
- * @param {Boolean} options.pan Whether the map should move to the locations using a pan or just jump straight there
- */
- 'setCenter',
-
- /**
- * Centers the map to some place and zoom level
- * @name mxn.Mapstraction#setCenterAndZoom
- * @function
- * @param {LatLonPoint} point Where the center of the map should be
- * @param {Integer} zoom The zoom level where 0 is all the way out.
- */
- 'setCenterAndZoom',
-
- /**
- * Sets the imagery type for the map
- * The type can be one of:
- * mxn.Mapstraction.ROAD
- * mxn.Mapstraction.SATELLITE
- * mxn.Mapstraction.HYBRID
- * @name mxn.Mapstraction#setMapType
- * @function
- * @param {Number} type
- */
- 'setMapType',
-
- /**
- * Sets the zoom level for the map
- * MS doesn't seem to do zoom=0, and Gg's sat goes closer than it's maps, and MS's sat goes closer than Y!'s
- * TODO: Mapstraction.prototype.getZoomLevels or something.
- * @name mxn.Mapstraction#setZoom
- * @function
- * @param {Number} zoom The (native to the map) level zoom the map to.
- */
- 'setZoom',
-
- /**
- * Turns a Tile Layer on or off
- * @name mxn.Mapstraction#toggleTileLayer
- * @function
- * @param {tile_url} url of the tile layer that was created.
- */
- 'toggleTileLayer'
-]);
-
-/**
- * Sets the current options to those specified in oOpts and applies them
- * @param {Object} oOpts Hash of options to set
- */
-Mapstraction.prototype.setOptions = function(oOpts){
- mxn.util.merge(this.options, oOpts);
- this.applyOptions();
-};
-
-/**
- * Sets an option and applies it.
- * @param {String} sOptName Option name
- * @param vVal Option value
- */
-Mapstraction.prototype.setOption = function(sOptName, vVal){
- this.options[sOptName] = vVal;
- this.applyOptions();
-};
-
-/**
- * Enable scroll wheel zooming
- * @deprecated Use setOption instead.
- */
-Mapstraction.prototype.enableScrollWheelZoom = function() {
- this.setOption('enableScrollWheelZoom', true);
-};
-
-/**
- * Enable/disable dragging of the map
- * @param {Boolean} on
- * @deprecated Use setOption instead.
- */
-Mapstraction.prototype.dragging = function(on) {
- this.setOption('enableDragging', on);
-};
-
-/**
- * Change the current api on the fly
- * @param {String} api The API to swap to
- * @param element
- */
-Mapstraction.prototype.swap = function(element,api) {
- if (this.api === api) {
- return;
- }
-
- var center = this.getCenter();
- var zoom = this.getZoom();
-
- this.currentElement.style.visibility = 'hidden';
- this.currentElement.style.display = 'none';
-
- this.currentElement = $m(element);
- this.currentElement.style.visibility = 'visible';
- this.currentElement.style.display = 'block';
-
- this.api = api;
-
- if (this.maps[this.api] === undefined) {
- init.apply(this);
-
- this.setCenterAndZoom(center,zoom);
-
- for (var i = 0; i < this.markers.length; i++) {
- this.addMarker(this.markers[i], true);
- }
-
- for (var j = 0; j < this.polylines.length; j++) {
- this.addPolyline( this.polylines[j], true);
- }
- }
- else {
-
- //sync the view
- this.setCenterAndZoom(center,zoom);
-
- //TODO synchronize the markers and polylines too
- // (any overlays created after api instantiation are not sync'd)
- }
-
- this.addControls(this.addControlsArgs);
-
-};
-
-/**
- * Returns the loaded state of a Map Provider
- * @param {String} api Optional API to query for. If not specified, returns state of the originally created API
- */
-Mapstraction.prototype.isLoaded = function(api){
- if (api === null) {
- api = this.api;
- }
- return this.loaded[api];
-};
-
-/**
- * Set the debugging on or off - shows alert panels for functions that don't exist in Mapstraction
- * @param {Boolean} debug true to turn on debugging, false to turn it off
- */
-Mapstraction.prototype.setDebug = function(debug){
- if(debug !== null) {
- this.debug = debug;
- }
- return this.debug;
-};
-
-
-/////////////////////////
-//
-// Event Handling
-//
-// FIXME need to consolidate some of these handlers...
-//
-///////////////////////////
-
-// Click handler attached to native API
-Mapstraction.prototype.clickHandler = function(lat, lon, me) {
- this.callEventListeners('click', {
- location: new LatLonPoint(lat, lon)
- });
-};
-
-// Move and zoom handler attached to native API
-Mapstraction.prototype.moveendHandler = function(me) {
- this.callEventListeners('moveend', {});
-};
-
-/**
- * Add a listener for an event.
- * @param {String} type Event type to attach listener to
- * @param {Function} func Callback function
- * @param {Object} caller Callback object
- */
-Mapstraction.prototype.addEventListener = function() {
- var listener = {};
- listener.event_type = arguments[0];
- listener.callback_function = arguments[1];
-
- // added the calling object so we can retain scope of callback function
- if(arguments.length == 3) {
- listener.back_compat_mode = false;
- listener.callback_object = arguments[2];
- }
- else {
- listener.back_compat_mode = true;
- listener.callback_object = null;
- }
- this.eventListeners.push(listener);
-};
-
-/**
- * Call listeners for a particular event.
- * @param {String} sEventType Call listeners of this event type
- * @param {Object} oEventArgs Event args object to pass back to the callback
- */
-Mapstraction.prototype.callEventListeners = function(sEventType, oEventArgs) {
- oEventArgs.source = this;
- for(var i = 0; i < this.eventListeners.length; i++) {
- var evLi = this.eventListeners[i];
- if(evLi.event_type == sEventType) {
- // only two cases for this, click and move
- if(evLi.back_compat_mode) {
- if(evLi.event_type == 'click') {
- evLi.callback_function(oEventArgs.location);
- }
- else {
- evLi.callback_function();
- }
- }
- else {
- var scope = evLi.callback_object || this;
- evLi.callback_function.call(scope, oEventArgs);
- }
- }
- }
-};
-
-
-////////////////////
-//
-// map manipulation
-//
-/////////////////////
-
-
-/**
- * addControls adds controls to the map. You specify which controls to add in
- * the associative array that is the only argument.
- * addControls can be called multiple time, with different args, to dynamically change controls.
- *
- * args = {
- * pan: true,
- * zoom: 'large' || 'small',
- * overview: true,
- * scale: true,
- * map_type: true,
- * }
- * @param {array} args Which controls to switch on
- */
-Mapstraction.prototype.addControls = function( args ) {
- this.addControlsArgs = args;
- this.invoker.go('addControls', arguments);
-};
-
-/**
- * Adds a marker pin to the map
- * @param {Marker} marker The marker to add
- * @param {Boolean} old If true, doesn't add this marker to the markers array. Used by the "swap" method
- */
-Mapstraction.prototype.addMarker = function(marker, old) {
- marker.mapstraction = this;
- marker.api = this.api;
- marker.location.api = this.api;
- marker.map = this.maps[this.api];
- var propMarker = this.invoker.go('addMarker', arguments);
- marker.setChild(propMarker);
- if (!old) {
- this.markers.push(marker);
- }
- this.markerAdded.fire({'marker': marker});
-};
-
-/**
- * addMarkerWithData will addData to the marker, then add it to the map
- * @param {Marker} marker The marker to add
- * @param {Object} data A data has to add
- */
-Mapstraction.prototype.addMarkerWithData = function(marker, data) {
- marker.addData(data);
- this.addMarker(marker);
-};
-
-/**
- * addPolylineWithData will addData to the polyline, then add it to the map
- * @param {Polyline} polyline The polyline to add
- * @param {Object} data A data has to add
- */
-Mapstraction.prototype.addPolylineWithData = function(polyline, data) {
- polyline.addData(data);
- this.addPolyline(polyline);
-};
-
-/**
- * removeMarker removes a Marker from the map
- * @param {Marker} marker The marker to remove
- */
-Mapstraction.prototype.removeMarker = function(marker) {
- var current_marker;
- for(var i = 0; i < this.markers.length; i++){
- current_marker = this.markers[i];
- if(marker == current_marker) {
- this.invoker.go('removeMarker', arguments);
- marker.onmap = false;
- this.markers.splice(i, 1);
- this.markerRemoved.fire({'marker': marker});
- break;
- }
- }
-};
-
-/**
- * removeAllMarkers removes all the Markers on a map
- */
-Mapstraction.prototype.removeAllMarkers = function() {
- var current_marker;
- while(this.markers.length > 0) {
- current_marker = this.markers.pop();
- this.invoker.go('removeMarker', [current_marker]);
- }
-};
-
-/**
- * Declutter the markers on the map, group together overlapping markers.
- * @param {Object} opts Declutter options
- */
-Mapstraction.prototype.declutterMarkers = function(opts) {
- if(this.loaded[this.api] === false) {
- var me = this;
- this.onload[this.api].push( function() {
- me.declutterMarkers(opts);
- } );
- return;
- }
-
- var map = this.maps[this.api];
-
- switch(this.api)
- {
- // case 'yahoo':
- //
- // break;
- // case 'openstreetmap':
- //
- // break;
- // case 'microsoft':
- //
- // break;
- // case 'openlayers':
- //
- // break;
- case 'multimap':
- /*
- * Multimap supports quite a lot of decluttering options such as whether
- * to use an accurate of fast declutter algorithm and what icon to use to
- * represent a cluster. Using all this would mean abstracting all the enums
- * etc so we're only implementing the group name function at the moment.
- */
- map.declutterGroup(opts.groupName);
- break;
- // case 'mapquest':
- //
- // break;
- // case 'map24':
- //
- // break;
- case ' dummy':
- break;
- default:
- if(this.debug) {
- alert(this.api + ' not supported by Mapstraction.declutterMarkers');
- }
- }
-};
-
-/**
- * Add a polyline to the map
- * @param {Polyline} polyline The Polyline to add to the map
- * @param {Boolean} old If true replaces an existing Polyline
- */
-Mapstraction.prototype.addPolyline = function(polyline, old) {
- polyline.api = this.api;
- polyline.map = this.maps[this.api];
- var propPoly = this.invoker.go('addPolyline', arguments);
- polyline.setChild(propPoly);
- if(!old) {
- this.polylines.push(polyline);
- }
- this.polylineAdded.fire({'polyline': polyline});
-};
-
-// Private remove implementation
-var removePolylineImpl = function(polyline) {
- this.invoker.go('removePolyline', arguments);
- polyline.onmap = false;
- this.polylineRemoved.fire({'polyline': polyline});
-};
-
-/**
- * Remove the polyline from the map
- * @param {Polyline} polyline The Polyline to remove from the map
- */
-Mapstraction.prototype.removePolyline = function(polyline) {
- var current_polyline;
- for(var i = 0; i < this.polylines.length; i++){
- current_polyline = this.polylines[i];
- if(polyline == current_polyline) {
- this.polylines.splice(i, 1);
- removePolylineImpl.call(this, polyline);
- break;
- }
- }
-};
-
-/**
- * Removes all polylines from the map
- */
-Mapstraction.prototype.removeAllPolylines = function() {
- var current_polyline;
- while(this.polylines.length > 0) {
- current_polyline = this.polylines.pop();
- removePolylineImpl.call(this, current_polyline);
- }
-};
-
-/**
- * autoCenterAndZoom sets the center and zoom of the map to the smallest bounding box
- * containing all markers
- */
-Mapstraction.prototype.autoCenterAndZoom = function() {
- var lat_max = -90;
- var lat_min = 90;
- var lon_max = -180;
- var lon_min = 180;
- var lat, lon;
- var checkMinMax = function(){
- if (lat > lat_max) {
- lat_max = lat;
- }
- if (lat < lat_min) {
- lat_min = lat;
- }
- if (lon > lon_max) {
- lon_max = lon;
- }
- if (lon < lon_min) {
- lon_min = lon;
- }
- };
- for (var i = 0; i < this.markers.length; i++) {
- lat = this.markers[i].location.lat;
- lon = this.markers[i].location.lon;
- checkMinMax();
- }
- for(i = 0; i < this.polylines.length; i++) {
- for (var j = 0; j < this.polylines[i].points.length; j++) {
- lat = this.polylines[i].points[j].lat;
- lon = this.polylines[i].points[j].lon;
- checkMinMax();
- }
- }
- this.setBounds( new BoundingBox(lat_min, lon_min, lat_max, lon_max) );
-};
-
-/**
- * centerAndZoomOnPoints sets the center and zoom of the map from an array of points
- *
- * This is useful if you don't want to have to add markers to the map
- */
-Mapstraction.prototype.centerAndZoomOnPoints = function(points) {
- var bounds = new BoundingBox(points[0].lat,points[0].lon,points[0].lat,points[0].lon);
-
- for (var i=1, len = points.length ; i<len; i++) {
- bounds.extend(points[i]);
- }
-
- this.setBounds(bounds);
-};
-
-/**
- * Sets the center and zoom of the map to the smallest bounding box
- * containing all visible markers and polylines
- * will only include markers and polylines with an attribute of "visible"
- */
-Mapstraction.prototype.visibleCenterAndZoom = function() {
- var lat_max = -90;
- var lat_min = 90;
- var lon_max = -180;
- var lon_min = 180;
- var lat, lon;
- var checkMinMax = function(){
- if (lat > lat_max) {
- lat_max = lat;
- }
- if (lat < lat_min) {
- lat_min = lat;
- }
- if (lon > lon_max) {
- lon_max = lon;
- }
- if (lon < lon_min) {
- lon_min = lon;
- }
- };
- for (var i=0; i<this.markers.length; i++) {
- if (this.markers[i].getAttribute("visible")) {
- lat = this.markers[i].location.lat;
- lon = this.markers[i].location.lon;
- checkMinMax();
- }
- }
-
- for (i=0; i<this.polylines.length; i++){
- if (this.polylines[i].getAttribute("visible")) {
- for (j=0; j<this.polylines[i].points.length; j++) {
- lat = this.polylines[i].points[j].lat;
- lon = this.polylines[i].points[j].lon;
- checkMinMax();
- }
- }
- }
-
- this.setBounds(new BoundingBox(lat_min, lon_min, lat_max, lon_max));
-};
-
-/**
- * Automatically sets center and zoom level to show all polylines
- * Takes into account radious of polyline
- * @param {Int} radius
- */
-Mapstraction.prototype.polylineCenterAndZoom = function(radius) {
- var lat_max = -90;
- var lat_min = 90;
- var lon_max = -180;
- var lon_min = 180;
-
- for (var i=0; i < mapstraction.polylines.length; i++)
- {
- for (var j=0; j<mapstraction.polylines[i].points.length; j++)
- {
- lat = mapstraction.polylines[i].points[j].lat;
- lon = mapstraction.polylines[i].points[j].lon;
-
- latConv = lonConv = radius;
-
- if (radius > 0)
- {
- latConv = (radius / mapstraction.polylines[i].points[j].latConv());
- lonConv = (radius / mapstraction.polylines[i].points[j].lonConv());
- }
-
- if ((lat + latConv) > lat_max) {
- lat_max = (lat + latConv);
- }
- if ((lat - latConv) < lat_min) {
- lat_min = (lat - latConv);
- }
- if ((lon + lonConv) > lon_max) {
- lon_max = (lon + lonConv);
- }
- if ((lon - lonConv) < lon_min) {
- lon_min = (lon - lonConv);
- }
- }
- }
-
- this.setBounds(new BoundingBox(lat_min, lon_min, lat_max, lon_max));
-};
-
-/**
- * addImageOverlay layers an georeferenced image over the map
- * @param {id} unique DOM identifier
- * @param {src} url of image
- * @param {opacity} opacity 0-100
- * @param {west} west boundary
- * @param {south} south boundary
- * @param {east} east boundary
- * @param {north} north boundary
- */
-Mapstraction.prototype.addImageOverlay = function(id, src, opacity, west, south, east, north) {
-
- var b = document.createElement("img");
- b.style.display = 'block';
- b.setAttribute('id',id);
- b.setAttribute('src',src);
- b.style.position = 'absolute';
- b.style.zIndex = 1;
- b.setAttribute('west',west);
- b.setAttribute('south',south);
- b.setAttribute('east',east);
- b.setAttribute('north',north);
-
- var oContext = {
- imgElm: b
- };
-
- this.invoker.go('addImageOverlay', arguments, { context: oContext });
-};
-
-Mapstraction.prototype.setImageOpacity = function(id, opacity) {
- if (opacity < 0) {
- opacity = 0;
- }
- if (opacity >= 100) {
- opacity = 100;
- }
- var c = opacity / 100;
- var d = document.getElementById(id);
- if(typeof(d.style.filter)=='string'){
- d.style.filter='alpha(opacity:'+opacity+')';
- }
- if(typeof(d.style.KHTMLOpacity)=='string'){
- d.style.KHTMLOpacity=c;
- }
- if(typeof(d.style.MozOpacity)=='string'){
- d.style.MozOpacity=c;
- }
- if(typeof(d.style.opacity)=='string'){
- d.style.opacity=c;
- }
-};
-
-Mapstraction.prototype.setImagePosition = function(id) {
- var imgElement = document.getElementById(id);
- var oContext = {
- latLng: {
- top: imgElement.getAttribute('north'),
- left: imgElement.getAttribute('west'),
- bottom: imgElement.getAttribute('south'),
- right: imgElement.getAttribute('east')
- },
- pixels: { top: 0, right: 0, bottom: 0, left: 0 }
- };
-
- this.invoker.go('setImagePosition', arguments, { context: oContext });
-
- imgElement.style.top = oContext.pixels.top.toString() + 'px';
- imgElement.style.left = oContext.pixels.left.toString() + 'px';
- imgElement.style.width = (oContext.pixels.right - oContext.pixels.left).toString() + 'px';
- imgElement.style.height = (oContext.pixels.bottom - oContext.pixels.top).toString() + 'px';
-};
-
-Mapstraction.prototype.addJSON = function(json) {
- var features;
- if (typeof(json) == "string") {
- features = eval('(' + json + ')');
- } else {
- features = json;
- }
- features = features.features;
- var map = this.maps[this.api];
- var html = "";
- var item;
- var polyline;
- var marker;
- var markers = [];
-
- if(features.type == "FeatureCollection") {
- this.addJSON(features.features);
- }
-
- for (var i = 0; i < features.length; i++) {
- item = features[i];
- switch(item.geometry.type) {
- case "Point":
- html = "<strong>" + item.title + "</strong><p>" + item.description + "</p>";
- marker = new Marker(new LatLonPoint(item.geometry.coordinates[1],item.geometry.coordinates[0]));
- markers.push(marker);
- this.addMarkerWithData(marker,{
- infoBubble : html,
- label : item.title,
- date : "new Date(\""+item.date+"\")",
- iconShadow : item.icon_shadow,
- marker : item.id,
- iconShadowSize : item.icon_shadow_size,
- icon : "http://boston.openguides.org/markers/AQUA.png",
- iconSize : item.icon_size,
- category : item.source_id,
- draggable : false,
- hover : false
- });
- break;
- case "Polygon":
- var points = [];
- polyline = new Polyline(points);
- mapstraction.addPolylineWithData(polyline,{
- fillColor : item.poly_color,
- date : "new Date(\""+item.date+"\")",
- category : item.source_id,
- width : item.line_width,
- opacity : item.line_opacity,
- color : item.line_color,
- polygon : true
- });
- markers.push(polyline);
- break;
- default:
- // console.log("Geometry: " + features.items[i].geometry.type);
- }
- }
- return markers;
-};
-
-/**
- * Adds a Tile Layer to the map
- *
- * Requires providing a parameterized tile url. Use {Z}, {X}, and {Y} to specify where the parameters
- * should go in the URL.
- *
- * For example, the OpenStreetMap tiles are:
- * m.addTileLayer("http://tile.openstreetmap.org/{Z}/{X}/{Y}.png", 1.0, "OSM", 1, 19, true);
- *
- * @param {tile_url} template url of the tiles.
- * @param {opacity} opacity of the tile layer - 0 is transparent, 1 is opaque. (default=0.6)
- * @param {copyright_text} copyright text to use for the tile layer. (default=Mapstraction)
- * @param {min_zoom} Minimum (furtherest out) zoom level that tiles are available (default=1)
- * @param {max_zoom} Maximum (closest) zoom level that the tiles are available (default=18)
- * @param {map_type} Should the tile layer be a selectable map type in the layers palette (default=false)
- */
-Mapstraction.prototype.addTileLayer = function(tile_url, opacity, copyright_text, min_zoom, max_zoom, map_type) {
- if(!tile_url) {
- return;
- }
-
- this.tileLayers = this.tileLayers || [];
- opacity = opacity || 0.6;
- copyright_text = copyright_text || "Mapstraction";
- min_zoom = min_zoom || 1;
- max_zoom = max_zoom || 18;
- map_type = map_type || false;
-
- return this.invoker.go('addTileLayer', [ tile_url, opacity, copyright_text, min_zoom, max_zoom, map_type] );
-};
-
-/**
- * addFilter adds a marker filter
- * @param {field} name of attribute to filter on
- * @param {operator} presently only "ge" or "le"
- * @param {value} the value to compare against
- */
-Mapstraction.prototype.addFilter = function(field, operator, value) {
- if (!this.filters) {
- this.filters = [];
- }
- this.filters.push( [field, operator, value] );
-};
-
-/**
- * Remove the specified filter
- * @param {Object} field
- * @param {Object} operator
- * @param {Object} value
- */
-Mapstraction.prototype.removeFilter = function(field, operator, value) {
- if (!this.filters) {
- return;
- }
-
- var del;
- for (var f=0; f<this.filters.length; f++) {
- if (this.filters[f][0] == field &&
- (! operator || (this.filters[f][1] == operator && this.filters[f][2] == value))) {
- this.filters.splice(f,1);
- f--; //array size decreased
- }
- }
-};
-
-/**
- * Delete the current filter if present; otherwise add it
- * @param {Object} field
- * @param {Object} operator
- * @param {Object} value
- */
-Mapstraction.prototype.toggleFilter = function(field, operator, value) {
- if (!this.filters) {
- this.filters = [];
- }
-
- var found = false;
- for (var f = 0; f < this.filters.length; f++) {
- if (this.filters[f][0] == field && this.filters[f][1] == operator && this.filters[f][2] == value) {
- this.filters.splice(f,1);
- f--; //array size decreased
- found = true;
- }
- }
-
- if (! found) {
- this.addFilter(field, operator, value);
- }
-};
-
-/**
- * removeAllFilters
- */
-Mapstraction.prototype.removeAllFilters = function() {
- this.filters = [];
-};
-
-/**
- * doFilter executes all filters added since last call
- * Now supports a callback function for when a marker is shown or hidden
- * @param {Function} showCallback
- * @param {Function} hideCallback
- * @returns {Int} count of visible markers
- */
-Mapstraction.prototype.doFilter = function(showCallback, hideCallback) {
- var map = this.maps[this.api];
- var visibleCount = 0;
- var f;
- if (this.filters) {
- switch (this.api) {
- case 'multimap':
- /* TODO polylines aren't filtered in multimap */
- var mmfilters = [];
- for (f=0; f<this.filters.length; f++) {
- mmfilters.push( new MMSearchFilter( this.filters[f][0], this.filters[f][1], this.filters[f][2] ));
- }
- map.setMarkerFilters( mmfilters );
- map.redrawMap();
- break;
- case ' dummy':
- break;
- default:
- var vis;
- for (var m=0; m<this.markers.length; m++) {
- vis = true;
- for (f = 0; f < this.filters.length; f++) {
- if (! this.applyFilter(this.markers[m], this.filters[f])) {
- vis = false;
- }
- }
- if (vis) {
- visibleCount ++;
- if (showCallback){
- showCallback(this.markers[m]);
- }
- else {
- this.markers[m].show();
- }
- }
- else {
- if (hideCallback){
- hideCallback(this.markers[m]);
- }
- else {
- this.markers[m].hide();
- }
- }
-
- this.markers[m].setAttribute("visible", vis);
- }
- break;
- }
- }
- return visibleCount;
-};
-
-Mapstraction.prototype.applyFilter = function(o, f) {
- var vis = true;
- switch (f[1]) {
- case 'ge':
- if (o.getAttribute( f[0] ) < f[2]) {
- vis = false;
- }
- break;
- case 'le':
- if (o.getAttribute( f[0] ) > f[2]) {
- vis = false;
- }
- break;
- case 'eq':
- if (o.getAttribute( f[0] ) == f[2]) {
- vis = false;
- }
- break;
- }
-
- return vis;
-};
-
-/**
- * getAttributeExtremes returns the minimum/maximum of "field" from all markers
- * @param {field} name of "field" to query
- * @returns {array} of minimum/maximum
- */
-Mapstraction.prototype.getAttributeExtremes = function(field) {
- var min;
- var max;
- for (var m=0; m<this.markers.length; m++) {
- if (! min || min > this.markers[m].getAttribute(field)) {
- min = this.markers[m].getAttribute(field);
- }
- if (! max || max < this.markers[m].getAttribute(field)) {
- max = this.markers[m].getAttribute(field);
- }
- }
- for (var p=0; m<this.polylines.length; m++) {
- if (! min || min > this.polylines[p].getAttribute(field)) {
- min = this.polylines[p].getAttribute(field);
- }
- if (! max || max < this.polylines[p].getAttribute(field)) {
- max = this.polylines[p].getAttribute(field);
- }
- }
-
- return [min, max];
-};
-
-/**
- * getMap returns the native map object that mapstraction is talking to
- * @returns the native map object mapstraction is using
- */
-Mapstraction.prototype.getMap = function() {
- // FIXME in an ideal world this shouldn't exist right?
- return this.maps[this.api];
-};
-
-
-//////////////////////////////
-//
-// LatLonPoint
-//
-/////////////////////////////
-
-/**
- * LatLonPoint is a point containing a latitude and longitude with helper methods
- * @name mxn.LatLonPoint
- * @constructor
- * @param {double} lat is the latitude
- * @param {double} lon is the longitude
- * @exports LatLonPoint as mxn.LatLonPoint
- */
-var LatLonPoint = mxn.LatLonPoint = function(lat, lon) {
- // TODO error if undefined?
- // if (lat == undefined) alert('undefined lat');
- // if (lon == undefined) alert('undefined lon');
- this.lat = lat;
- this.lon = lon;
- this.lng = lon; // lets be lon/lng agnostic
-
- this.invoker = new mxn.Invoker(this, 'LatLonPoint');
-};
-
-mxn.addProxyMethods(LatLonPoint, [
- 'fromProprietary', 'toProprietary'
-], true);
-
-/**
- * toString returns a string represntation of a point
- * @returns a string like '51.23, -0.123'
- * @type String
- */
-LatLonPoint.prototype.toString = function() {
- return this.lat + ', ' + this.lon;
-};
-
-/**
- * distance returns the distance in kilometers between two points
- * @param {LatLonPoint} otherPoint The other point to measure the distance from to this one
- * @returns the distance between the points in kilometers
- * @type double
- */
-LatLonPoint.prototype.distance = function(otherPoint) {
- // Uses Haversine formula from http://www.movable-type.co.uk
- var rads = Math.PI / 180;
- var diffLat = (this.lat-otherPoint.lat) * rads;
- var diffLon = (this.lon-otherPoint.lon) * rads;
- var a = Math.sin(diffLat / 2) * Math.sin(diffLat / 2) +
- Math.cos(this.lat*rads) * Math.cos(otherPoint.lat*rads) *
- Math.sin(diffLon/2) * Math.sin(diffLon/2);
- return 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)) * 6371; // Earth's mean radius in km
-};
-
-/**
- * equals tests if this point is the same as some other one
- * @param {LatLonPoint} otherPoint The other point to test with
- * @returns true or false
- * @type boolean
- */
-LatLonPoint.prototype.equals = function(otherPoint) {
- return this.lat == otherPoint.lat && this.lon == otherPoint.lon;
-};
-
-/**
- * Returns latitude conversion based on current projection
- * @returns {Float} conversion
- */
-LatLonPoint.prototype.latConv = function() {
- return this.distance(new LatLonPoint(this.lat + 0.1, this.lon))*10;
-};
-
-/**
- * Returns longitude conversion based on current projection
- * @returns {Float} conversion
- */
-LatLonPoint.prototype.lonConv = function() {
- return this.distance(new LatLonPoint(this.lat, this.lon + 0.1))*10;
-};
-
-
-//////////////////////////
-//
-// BoundingBox
-//
-//////////////////////////
-
-/**
- * BoundingBox creates a new bounding box object
- * @name mxn.BoundingBox
- * @constructor
- * @param {double} swlat the latitude of the south-west point
- * @param {double} swlon the longitude of the south-west point
- * @param {double} nelat the latitude of the north-east point
- * @param {double} nelon the longitude of the north-east point
- * @exports BoundingBox as mxn.BoundingBox
- */
-var BoundingBox = mxn.BoundingBox = function(swlat, swlon, nelat, nelon) {
- //FIXME throw error if box bigger than world
- //alert('new bbox ' + swlat + ',' + swlon + ',' + nelat + ',' + nelon);
- this.sw = new LatLonPoint(swlat, swlon);
- this.ne = new LatLonPoint(nelat, nelon);
-};
-
-/**
- * getSouthWest returns a LatLonPoint of the south-west point of the bounding box
- * @returns the south-west point of the bounding box
- * @type LatLonPoint
- */
-BoundingBox.prototype.getSouthWest = function() {
- return this.sw;
-};
-
-/**
- * getNorthEast returns a LatLonPoint of the north-east point of the bounding box
- * @returns the north-east point of the bounding box
- * @type LatLonPoint
- */
-BoundingBox.prototype.getNorthEast = function() {
- return this.ne;
-};
-
-/**
- * isEmpty finds if this bounding box has zero area
- * @returns whether the north-east and south-west points of the bounding box are the same point
- * @type boolean
- */
-BoundingBox.prototype.isEmpty = function() {
- return this.ne == this.sw; // is this right? FIXME
-};
-
-/**
- * contains finds whether a given point is within a bounding box
- * @param {LatLonPoint} point the point to test with
- * @returns whether point is within this bounding box
- * @type boolean
- */
-BoundingBox.prototype.contains = function(point){
- return point.lat >= this.sw.lat && point.lat <= this.ne.lat && point.lon >= this.sw.lon && point.lon <= this.ne.lon;
-};
-
-/**
- * toSpan returns a LatLonPoint with the lat and lon as the height and width of the bounding box
- * @returns a LatLonPoint containing the height and width of this bounding box
- * @type LatLonPoint
- */
-BoundingBox.prototype.toSpan = function() {
- return new LatLonPoint( Math.abs(this.sw.lat - this.ne.lat), Math.abs(this.sw.lon - this.ne.lon) );
-};
-
-/**
- * extend extends the bounding box to include the new point
- */
-BoundingBox.prototype.extend = function(point) {
- if(this.sw.lat > point.lat) {
- this.sw.lat = point.lat;
- }
- if(this.sw.lon > point.lon) {
- this.sw.lon = point.lon;
- }
- if(this.ne.lat < point.lat) {
- this.ne.lat = point.lat;
- }
- if(this.ne.lon < point.lon) {
- this.ne.lon = point.lon;
- }
- return;
-};
-
-//////////////////////////////
-//
-// Marker
-//
-///////////////////////////////
-
-/**
- * Marker create's a new marker pin
- * @name mxn.Marker
- * @constructor
- * @param {LatLonPoint} point the point on the map where the marker should go
- * @exports Marker as mxn.Marker
- */
-var Marker = mxn.Marker = function(point) {
- this.api = null;
- this.location = point;
- this.onmap = false;
- this.proprietary_marker = false;
- this.attributes = [];
- this.invoker = new mxn.Invoker(this, 'Marker', function(){return this.api;});
- mxn.addEvents(this, [
- 'openInfoBubble', // Info bubble opened
- 'closeInfoBubble', // Info bubble closed
- 'click' // Marker clicked
- ]);
-};
-
-mxn.addProxyMethods(Marker, [
- 'fromProprietary',
- 'hide',
- 'openBubble',
- 'show',
- 'toProprietary',
- 'update'
-]);
-
-Marker.prototype.setChild = function(some_proprietary_marker) {
- this.proprietary_marker = some_proprietary_marker;
- some_proprietary_marker.mapstraction_marker = this;
- this.onmap = true;
-};
-
-Marker.prototype.setLabel = function(labelText) {
- this.labelText = labelText;
-};
-
-/**
- * addData conviniently set a hash of options on a marker
- */
-Marker.prototype.addData = function(options){
- for(var sOptKey in options) {
- if(options.hasOwnProperty(sOptKey)){
- switch(sOptKey) {
- case 'label':
- this.setLabel(options.label);
- break;
- case 'infoBubble':
- this.setInfoBubble(options.infoBubble);
- break;
- case 'icon':
- if(options.iconSize && options.iconAnchor) {
- this.setIcon(options.icon, options.iconSize, options.iconAnchor);
- }
- else if(options.iconSize) {
- this.setIcon(options.icon, options.iconSize);
- }
- else {
- this.setIcon(options.icon);
- }
- break;
- case 'iconShadow':
- if(options.iconShadowSize) {
- this.setShadowIcon(options.iconShadow, [ options.iconShadowSize[0], options.iconShadowSize[1] ]);
- }
- else {
- this.setIcon(options.iconShadow);
- }
- break;
- case 'infoDiv':
- this.setInfoDiv(options.infoDiv[0],options.infoDiv[1]);
- break;
- case 'draggable':
- this.setDraggable(options.draggable);
- break;
- case 'hover':
- this.setHover(options.hover);
- this.setHoverIcon(options.hoverIcon);
- break;
- case 'hoverIcon':
- this.setHoverIcon(options.hoverIcon);
- break;
- case 'openBubble':
- this.openBubble();
- break;
- case 'groupName':
- this.setGroupName(options.groupName);
- break;
- default:
- // don't have a specific action for this bit of
- // data so set a named attribute
- this.setAttribute(sOptKey, options[sOptKey]);
- break;
- }
- }
- }
-};
-
-/**
- * setInfoBubble sets the html/text content for a bubble popup for a marker
- * @param {String} infoBubble the html/text you want displayed
- */
-Marker.prototype.setInfoBubble = function(infoBubble) {
- this.infoBubble = infoBubble;
-};
-
-/**
- * setInfoDiv sets the text and the id of the div element where to the information
- * useful for putting information in a div outside of the map
- * @param {String} infoDiv the html/text you want displayed
- * @param {String} div the element id to use for displaying the text/html
- */
-Marker.prototype.setInfoDiv = function(infoDiv,div){
- this.infoDiv = infoDiv;
- this.div = div;
-};
-
-/**
- * setIcon sets the icon for a marker
- * @param {String} iconUrl The URL of the image you want to be the icon
- */
-Marker.prototype.setIcon = function(iconUrl, iconSize, iconAnchor) {
- this.iconUrl = iconUrl;
- if(iconSize) {
- this.iconSize = iconSize;
- }
- if(iconAnchor) {
- this.iconAnchor = iconAnchor;
- }
-};
-
-/**
- * setIconSize sets the size of the icon for a marker
- * @param {String} iconSize The array size in pixels of the marker image
- */
-Marker.prototype.setIconSize = function(iconSize){
- if(iconSize) {
- this.iconSize = iconSize;
- }
-};
-
-/**
- * setIconAnchor sets the anchor point for a marker
- * @param {String} iconAnchor The array offset of the anchor point
- */
-Marker.prototype.setIconAnchor = function(iconAnchor){
- if(iconAnchor) {
- this.iconAnchor = iconAnchor;
- }
-};
-
-/**
- * setShadowIcon sets the icon for a marker
- * @param {String} iconUrl The URL of the image you want to be the icon
- */
-Marker.prototype.setShadowIcon = function(iconShadowUrl, iconShadowSize){
- this.iconShadowUrl = iconShadowUrl;
- if(iconShadowSize) {
- this.iconShadowSize = iconShadowSize;
- }
-};
-
-Marker.prototype.setHoverIcon = function(hoverIconUrl){
- this.hoverIconUrl = hoverIconUrl;
-};
-
-/**
- * setDraggable sets the draggable state of the marker
- * @param {Bool} draggable set to true if marker should be draggable by the user
- */
-Marker.prototype.setDraggable = function(draggable) {
- this.draggable = draggable;
-};
-
-/**
- * setHover sets that the marker info is displayed on hover
- * @param {Bool} hover set to true if marker should display info on hover
- */
-Marker.prototype.setHover = function(hover) {
- this.hover = hover;
-};
-
-/**
- * Markers are grouped up by this name. declutterGroup makes use of this.
- */
-Marker.prototype.setGroupName = function(sGrpName) {
- this.groupName = sGrpName;
-};
-
-/**
- * setAttribute: set an arbitrary key/value pair on a marker
- * @arg(String) key
- * @arg value
- */
-Marker.prototype.setAttribute = function(key,value) {
- this.attributes[key] = value;
-};
-
-/**
- * getAttribute: gets the value of "key"
- * @arg(String) key
- * @returns value
- */
-Marker.prototype.getAttribute = function(key) {
- return this.attributes[key];
-};
-
-
-///////////////
-// Polyline ///
-///////////////
-
-/**
- * Instantiates a new Polyline.
- * @name mxn.Polyline
- * @constructor
- * @param {Point[]} points Points that make up the Polyline.
- * @exports Polyline as mxn.Polyline
- */
-var Polyline = mxn.Polyline = function(points) {
- this.api = null;
- this.points = points;
- this.attributes = [];
- this.onmap = false;
- this.proprietary_polyline = false;
- this.pllID = "mspll-"+new Date().getTime()+'-'+(Math.floor(Math.random()*Math.pow(2,16)));
- this.invoker = new mxn.Invoker(this, 'Polyline', function(){return this.api;});
-};
-
-mxn.addProxyMethods(Polyline, [
- 'fromProprietary',
- 'hide',
- 'show',
- 'toProprietary',
- 'update'
-]);
-
-/**
- * addData conviniently set a hash of options on a polyline
- */
-Polyline.prototype.addData = function(options){
- for(var sOpt in options) {
- if(options.hasOwnProperty(sOpt)){
- switch(sOpt) {
- case 'color':
- this.setColor(options.color);
- break;
- case 'width':
- this.setWidth(options.width);
- break;
- case 'opacity':
- this.setOpacity(options.opacity);
- break;
- case 'closed':
- this.setClosed(options.closed);
- break;
- case 'fillColor':
- this.setFillColor(options.fillColor);
- break;
- default:
- this.setAttribute(sOpt, options[sOpt]);
- break;
- }
- }
- }
-};
-
-Polyline.prototype.setChild = function(some_proprietary_polyline) {
- this.proprietary_polyline = some_proprietary_polyline;
- this.onmap = true;
-};
-
-/**
- * in the form: #RRGGBB
- * Note map24 insists on upper case, so we convert it.
- */
-Polyline.prototype.setColor = function(color){
- this.color = (color.length==7 && color[0]=="#") ? color.toUpperCase() : color;
-};
-
-/**
- * Stroke width of the polyline
- * @param {Integer} width
- */
-Polyline.prototype.setWidth = function(width){
- this.width = width;
-};
-
-/**
- * A float between 0.0 and 1.0
- * @param {Float} opacity
- */
-Polyline.prototype.setOpacity = function(opacity){
- this.opacity = opacity;
-};
-
-/**
- * Marks the polyline as a closed polygon
- * @param {Boolean} bClosed
- */
-Polyline.prototype.setClosed = function(bClosed){
- this.closed = bClosed;
-};
-
-/**
- * Fill color for a closed polyline as HTML color value e.g. #RRGGBB
- * @param {String} sFillColor HTML color value #RRGGBB
- */
-Polyline.prototype.setFillColor = function(sFillColor) {
- this.fillColor = sFillColor;
-};
-
-
-/**
- * setAttribute: set an arbitrary key/value pair on a polyline
- * @arg(String) key
- * @arg value
- */
-Polyline.prototype.setAttribute = function(key,value) {
- this.attributes[key] = value;
-};
-
-/**
- * getAttribute: gets the value of "key"
- * @arg(String) key
- * @returns value
- */
-Polyline.prototype.getAttribute = function(key) {
- return this.attributes[key];
-};
-
-/**
- * Simplifies a polyline, averaging and reducing the points
- * @param {Integer} tolerance (1.0 is a good starting point)
- */
-Polyline.prototype.simplify = function(tolerance) {
- var reduced = [];
-
- // First point
- reduced[0] = this.points[0];
-
- var markerPoint = 0;
-
- for (var i = 1; i < this.points.length-1; i++){
- if (this.points[i].distance(this.points[markerPoint]) >= tolerance)
- {
- reduced[reduced.length] = this.points[i];
- markerPoint = i;
- }
- }
-
- // Last point
- reduced[reduced.length] = this.points[this.points.length-1];
-
- // Revert
- this.points = reduced;
-};
-
-///////////////
-// Radius //
-///////////////
-
-/**
- * Creates a new radius object for drawing circles around a point, does a lot of initial calculation to increase load time
- * @returns a new Radius
- * @type Radius
- * @constructor
- * @classDescription Radius
- * @param {Object} Center LatLonPoint of the radius
- * @param {quality} Number of points that comprise the approximated circle (20 is a good starting point)
- */
-var Radius = mxn.Radius = function(center, quality) {
- this.center = center;
- var latConv = center.latConv();
- var lonConv = center.lonConv();
-
- // Create Radian conversion constant
- var rad = Math.PI / 180;
- this.calcs = [];
-
- for(var i = 0; i < 360; i += quality){
- this.calcs.push([Math.cos(i * rad) / latConv, Math.sin(i * rad) / lonConv]);
- }
-};
-
-/**
- * Returns polyline of a circle around the point based on new radius
- * @param {Radius} radius
- * @param {Colour} colour
- * @returns {Polyline} Polyline
- */
-Radius.prototype.getPolyline = function(radius, colour) {
- var points = [];
-
- for(var i = 0; i < this.calcs.length; i++){
- var point = new LatLonPoint(
- this.center.lat + (radius * this.calcs[i][0]),
- this.center.lon + (radius * this.calcs[i][1])
- );
- points.push(point);
- }
-
- // Add first point
- points.push(points[0]);
-
- var line = new Polyline(points);
- line.setColor(colour);
-
- return line;
-};
-
-
-})();
\ No newline at end of file
+++ /dev/null
-mxn.register('geocommons', {
-
- Mapstraction: {
-
- init: function(element, api) {
- var me = this;
- this.element = element;
- Maker.maker_host='http://maker.geocommons.com';
- Maker.finder_host='http://finder.geocommons.com';
- Maker.core_host='http://geocommons.com';
- },
-
- applyOptions: function(){
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- resizeTo: function(width, height){
- var map = this.maps[this.api];
- map.setSize(width,height);
- },
-
- addControls: function( args ) {
- var map = this.maps[this.api];
- map.showControl("Zoom", args.zoom || false);
- map.showControl("Layers", args.layers || false);
- map.showControl("Styles", args.styles || false);
- map.showControl("Basemap", args.map_type || false);
- map.showControl("Legend", args.legend || false, "open");
- // showControl("Legend", true, "close");
- },
-
- addSmallControls: function() {
- var map = this.maps[this.api];
- showControl("Zoom", args.zoom);
- showControl("Legend", args.legend, "open");
- },
-
- addLargeControls: function() {
- var map = this.maps[this.api];
- showControl("Zoom", args.zoom);
- showControl("Layers", args.layers);
- showControl("Legend", args.legend, "open");
- },
-
- addMapTypeControls: function() {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- dragging: function(on) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- setCenterAndZoom: function(point, zoom) {
- var map = this.maps[this.api];
- map.setCenterZoom(point.lat, point.lon,zoom);
- },
-
- getCenter: function() {
- var map = this.maps[this.api];
- var point = map.getCenterZoom()[0];
- return mxn.LatLonPoint(point.lat,point.lon);
- },
-
- setCenter: function(point, options) {
- var map = this.maps[this.api];
- map.setCenter(point.lat, point.lon);
- },
-
- setZoom: function(zoom) {
- var map = this.maps[this.api];
- map.setZoom(zoom);
- },
-
- getZoom: function() {
- var map = this.maps[this.api];
- return map.getZoom();
- },
-
- getZoomLevelForBoundingBox: function( bbox ) {
- var map = this.maps[this.api];
- // NE and SW points from the bounding box.
- var ne = bbox.getNorthEast();
- var sw = bbox.getSouthWest();
- var zoom;
-
- // TODO: Add provider code
-
- return zoom;
- },
-
- setMapType: function(type) {
- var map = this.maps[this.api];
- switch(type) {
- case mxn.Mapstraction.ROAD:
- map.setMapProvider("OpenStreetMap (road)");
- break;
- case mxn.Mapstraction.SATELLITE:
- map.setMapProvider("BlueMarble");
- break;
- default:
- map.setMapProvider(type);
- }
- },
-
- getMapType: function() {
- var map = this.maps[this.api];
- switch(map.getMapProvider) {
- case "OpenStreetMap (Road)":
- retu
-
- }
- // TODO: Add provider code
-
- //return mxn.Mapstraction.ROAD;
- //return mxn.Mapstraction.SATELLITE;
- //return mxn.Mapstraction.HYBRID;
-
- },
-
- getBounds: function () {
- var map = this.maps[this.api];
- var extent = map.getExtent();
- return new mxn.BoundingBox( extent.northWest.lat, extent.southEast.lon, extent.southEast.lat, extent.northWest.lon);
- },
-
- setBounds: function(bounds){
- var map = this.maps[this.api];
- var sw = bounds.getSouthWest();
- var ne = bounds.getNorthEast();
- map.setExtent(ne.lat,sw.lat,ne.lon,sw.lon);
-
- },
-
- addImageOverlay: function(id, src, opacity, west, south, east, north, oContext) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- addOverlay: function(url, autoCenterAndZoom) {
- var map = this.maps[this.api];
- var me = this;
- Maker.load_map(this.element.id, url);
- setTimeout(function() { me.maps[me.api] = swfobject.getObjectById(FlashMap.dom_id);}, 500);
- },
-
- addTileLayer: function(tile_url, opacity, copyright_text, min_zoom, max_zoom) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- toggleTileLayer: function(tile_url) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- getPixelRatio: function() {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- mousePosition: function(element) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- }
- },
-
- LatLonPoint: {
-
- toProprietary: function() {
- // TODO: Add provider code
- },
-
- fromProprietary: function(point) {
- // TODO: Add provider code
- }
-
- },
-
- Marker: {
-
- toProprietary: function() {
- // TODO: Add provider code
- },
-
- openBubble: function() {
- // TODO: Add provider code
- },
-
- hide: function() {
- // TODO: Add provider code
- },
-
- show: function() {
- // TODO: Add provider code
- },
-
- update: function() {
- // TODO: Add provider code
- }
-
- },
-
- Polyline: {
-
- toProprietary: function() {
- // TODO: Add provider code
- },
-
- show: function() {
- // TODO: Add provider code
- },
-
- hide: function() {
- // TODO: Add provider code
- }
-
- }
-
-});
\ No newline at end of file
+++ /dev/null
-// Auto-load scripts\r
-//\r
-// specify which map providers to load by using\r
-// <script src="mxn.js?(provider1,provider2,[module1,module2])" ...\r
-// in your HTML\r
-//\r
-// for each provider mxn.provider.module.js and mxn.module.js will be loaded\r
-// module 'core' is always loaded\r
-//\r
-// NOTE: if you call without providers\r
-// <script src="mxn.js" ...\r
-// no scripts will be loaded at all and it is then up to you to load the scripts independently\r
-(function() {\r
- var providers = null;\r
- var modules = 'core';\r
- var scriptBase;\r
- var scripts = document.getElementsByTagName('script');\r
-\r
- // Determine which scripts we need to load\r
- for (var i = 0; i < scripts.length; i++) {\r
- var match = scripts[i].src.replace(/%20/g , '').match(/^(.*?)mxn\.js(\?\(\[?(.*?)\]?\))?$/);\r
- if (match != null) {\r
- scriptBase = match[1];\r
- if (match[3]) {\r
- var settings = match[3].split(',[');\r
- providers = settings[0].replace(']' , '');\r
- if (settings[1]) modules += ',' + settings[1];\r
- }\r
- break;\r
- }\r
- }\r
-\r
- if (providers == null || providers == 'none') return; // Bail out if no auto-load has been found\r
- providers = providers.replace(/ /g, '').split(',');\r
- modules = modules.replace(/ /g, '').split(',');\r
-\r
- // Actually load the scripts\r
- for (i = 0; i < modules.length; i++) {\r
- document.write("<script type='text/javascript' src='" + scriptBase + 'mxn.' + modules[i] + '.js' + "'></script>");\r
- for (var j = 0; j < providers.length; j++) document.write("<script type='text/javascript' src='" + scriptBase + 'mxn.' + providers[j] + '.' + modules[i] + '.js' + "'></script>");\r
- }\r
-})();\r
-\r
-(function(){\r
-\r
-// holds all our implementing functions\r
-var apis = {};\r
-\r
-// Our special private methods\r
-/**\r
- * Calls the API specific implementation of a particular method.\r
- * @private\r
- */\r
-var invoke = function(sApiId, sObjName, sFnName, oScope, args){\r
- if(!hasImplementation(sApiId, sObjName, sFnName)) {\r
- throw 'Method ' + sFnName + ' of object ' + sObjName + ' is not supported by API ' + sApiId + '. Are you missing a script tag?';\r
- }\r
- return apis[sApiId][sObjName][sFnName].apply(oScope, args);\r
-};\r
-\r
-/**\r
- * Determines whether the specified API provides an implementation for the\r
- * specified object and function name.\r
- * @private\r
- */\r
-var hasImplementation = function(sApiId, sObjName, sFnName){\r
- if(typeof(apis[sApiId]) == 'undefined') {\r
- throw 'API ' + sApiId + ' not loaded. Are you missing a script tag?';\r
- }\r
- if(typeof(apis[sApiId][sObjName]) == 'undefined') {\r
- throw 'Object definition ' + sObjName + ' in API ' + sApiId + ' not loaded. Are you missing a script tag?';\r
- }\r
- return typeof(apis[sApiId][sObjName][sFnName]) == 'function';\r
-};\r
-\r
-/**\r
- * @name mxn\r
- * @namespace\r
- */\r
-var mxn = window.mxn = /** @lends mxn */ {\r
-\r
- /**\r
- * Registers a set of provider specific implementation functions.\r
- * @function\r
- * @param {String} sApiId The API ID to register implementing functions for.\r
- * @param {Object} oApiImpl An object containing the API implementation.\r
- */\r
- register: function(sApiId, oApiImpl){\r
- if(!apis.hasOwnProperty(sApiId)){\r
- apis[sApiId] = {};\r
- }\r
- mxn.util.merge(apis[sApiId], oApiImpl);\r
- },\r
-\r
- /**\r
- * Adds a list of named proxy methods to the prototype of a\r
- * specified constructor function.\r
- * @function\r
- * @param {Function} func Constructor function to add methods to\r
- * @param {Array} aryMethods Array of method names to create\r
- * @param {Boolean} bWithApiArg Optional. Whether the proxy methods will use an API argument\r
- */\r
- addProxyMethods: function(func, aryMethods, bWithApiArg){\r
- for(var i = 0; i < aryMethods.length; i++) {\r
- var sMethodName = aryMethods[i];\r
- if(bWithApiArg){\r
- func.prototype[sMethodName] = new Function('return this.invoker.go(\'' + sMethodName + '\', arguments, { overrideApi: true } );');\r
- }\r
- else {\r
- func.prototype[sMethodName] = new Function('return this.invoker.go(\'' + sMethodName + '\', arguments);');\r
- }\r
- }\r
- },\r
-\r
- /*\r
- checkLoad: function(funcDetails){\r
- if(this.loaded[this.api] === false) {\r
- var scope = this;\r
- this.onload[this.api].push( function() { funcDetails.callee.apply(scope, funcDetails); } );\r
- return true;\r
- }\r
- return false;\r
- },\r
- */\r
-\r
- /**\r
- * Bulk add some named events to an object.\r
- * @function\r
- * @param {Object} oEvtSrc The event source object.\r
- * @param {String[]} aEvtNames Event names to add.\r
- */\r
- addEvents: function(oEvtSrc, aEvtNames){\r
- for(var i = 0; i < aEvtNames.length; i++){\r
- var sEvtName = aEvtNames[i];\r
- if(sEvtName in oEvtSrc){\r
- throw 'Event or method ' + sEvtName + ' already declared.';\r
- }\r
- oEvtSrc[sEvtName] = new mxn.Event(sEvtName, oEvtSrc);\r
- }\r
- }\r
-\r
-};\r
-\r
-/**\r
- * Instantiates a new Event\r
- * @constructor\r
- * @param {String} sEvtName The name of the event.\r
- * @param {Object} oEvtSource The source object of the event.\r
- */\r
-mxn.Event = function(sEvtName, oEvtSource){\r
- var handlers = [];\r
- if(!sEvtName){\r
- throw 'Event name must be provided';\r
- }\r
- /**\r
- * Add a handler to the Event.\r
- * @param {Function} fn The handler function.\r
- * @param {Object} ctx The context of the handler function.\r
- */\r
- this.addHandler = function(fn, ctx){\r
- handlers.push({context: ctx, handler: fn});\r
- };\r
- /**\r
- * Remove a handler from the Event.\r
- * @param {Function} fn The handler function.\r
- * @param {Object} ctx The context of the handler function.\r
- */\r
- this.removeHandler = function(fn, ctx){\r
- for(var i = 0; i < handlers.length; i++){\r
- if(handlers[i].handler == fn && handlers[i].context == ctx){\r
- handlers.splice(i, 1);\r
- }\r
- }\r
- };\r
- /**\r
- * Remove all handlers from the Event.\r
- */\r
- this.removeAllHandlers = function(){\r
- handlers = [];\r
- };\r
- /**\r
- * Fires the Event.\r
- * @param {Object} oEvtArgs Event arguments object to be passed to the handlers.\r
- */\r
- this.fire = function(oEvtArgs){\r
- var args = [sEvtName, oEvtSource, oEvtArgs];\r
- for(var i = 0; i < handlers.length; i++){\r
- handlers[i].handler.apply(handlers[i].context, args);\r
- }\r
- };\r
-};\r
-\r
-/**\r
- * Creates a new Invoker, a class which helps with on-the-fly\r
- * invocation of the correct API methods.\r
- * @constructor\r
- * @param {Object} aobj The core object whose methods will make cals to go()\r
- * @param {String} asClassName The name of the Mapstraction class to be invoked, normally the same name as aobj's constructor function\r
- * @param {Function} afnApiIdGetter The function on object aobj which will return the active API ID\r
- */\r
-mxn.Invoker = function(aobj, asClassName, afnApiIdGetter){\r
- var obj = aobj;\r
- var sClassName = asClassName;\r
- var fnApiIdGetter = afnApiIdGetter;\r
- var defOpts = {\r
- overrideApi: false, // {Boolean} API ID is overridden by value in first argument\r
- context: null, // {Object} Local vars can be passed from the body of the method to the API method within this object\r
- fallback: null // {Function} If an API implementation doesn't exist this function is run instead\r
- };\r
-\r
- /**\r
- * Invoke the API implementation of a specific method.\r
- * @param {String} sMethodName The method name to invoke\r
- * @param {Array} args Arguments to pass on\r
- * @param {Object} oOptions Optional. Extra options for invocation\r
- * @param {Boolean} oOptions.overrideApi When true the first argument is used as the API ID.\r
- * @param {Object} oOptions.context A context object for passing extra information on to the provider implementation.\r
- * @param {Function} oOptions.fallback A fallback function to run if the provider implementation is missing.\r
- */\r
- this.go = function(sMethodName, args, oOptions){\r
-\r
- if(typeof(oOptions) == 'undefined'){\r
- oOptions = defOpts;\r
- }\r
-\r
- var sApiId = oOptions.overrideApi ? args[0] : fnApiIdGetter.apply(obj);\r
-\r
- if(typeof(sApiId) != 'string'){\r
- throw 'API ID not available.';\r
- }\r
-\r
- if(typeof(oOptions.context) != 'undefined' && oOptions.context !== null){\r
- // make sure args is an array\r
- args = Array.prototype.slice.apply(args);\r
- args.push(oOptions.context);\r
- }\r
-\r
- if(typeof(oOptions.fallback) == 'function' && !hasImplementation(sApiId, sClassName, sMethodName)){\r
- // we've got no implementation but have got a fallback function\r
- return oOptions.fallback.apply(obj, args);\r
- }\r
- else {\r
- return invoke(sApiId, sClassName, sMethodName, obj, args);\r
- }\r
-\r
- };\r
-\r
-};\r
-\r
-/**\r
- * @namespace\r
- */\r
-mxn.util = {\r
-\r
- /**\r
- * Merges properties of one object into another recursively.\r
- * @param {Object} oRecv The object receiveing properties\r
- * @param {Object} oGive The object donating properties\r
- */\r
- merge: function(oRecv, oGive){\r
- for (var sPropName in oGive){\r
- if (oGive.hasOwnProperty(sPropName)) {\r
- if(!oRecv.hasOwnProperty(sPropName)){\r
- oRecv[sPropName] = oGive[sPropName];\r
- }\r
- else {\r
- mxn.util.merge(oRecv[sPropName], oGive[sPropName]);\r
- }\r
- }\r
- }\r
- },\r
-\r
- /**\r
- * $m, the dollar function, elegantising getElementById()\r
- * @return An HTML element or array of HTML elements\r
- */\r
- $m: function() {\r
- var elements = [];\r
- for (var i = 0; i < arguments.length; i++) {\r
- var element = arguments[i];\r
- if (typeof(element) == 'string') {\r
- element = document.getElementById(element);\r
- }\r
- if (arguments.length == 1) {\r
- return element;\r
- }\r
- elements.push(element);\r
- }\r
- return elements;\r
- },\r
-\r
- /**\r
- * loadScript is a JSON data fetcher\r
- * @param {String} src URL to JSON file\r
- * @param {Function} callback Callback function\r
- */\r
- loadScript: function(src, callback) {\r
- var script = document.createElement('script');\r
- script.type = 'text/javascript';\r
- script.src = src;\r
- if (callback) {\r
- if(script.addEventListener){\r
- script.addEventListener('load', callback, true);\r
- }\r
- else if(script.attachEvent){\r
- var done = false;\r
- script.attachEvent("onreadystatechange",function(){\r
- if ( !done && document.readyState === "complete" ) {\r
- done = true;\r
- callback();\r
- }\r
- });\r
- }\r
- }\r
- var h = document.getElementsByTagName('head')[0];\r
- h.appendChild( script );\r
- return;\r
- },\r
-\r
- /**\r
- *\r
- * @param {Object} point\r
- * @param {Object} level\r
- */\r
- convertLatLonXY_Yahoo: function(point, level) { //Mercator\r
- var size = 1 << (26 - level);\r
- var pixel_per_degree = size / 360.0;\r
- var pixel_per_radian = size / (2 * Math.PI);\r
- var origin = new YCoordPoint(size / 2 , size / 2);\r
- var answer = new YCoordPoint();\r
- answer.x = Math.floor(origin.x + point.lon * pixel_per_degree);\r
- var sin = Math.sin(point.lat * Math.PI / 180.0);\r
- answer.y = Math.floor(origin.y + 0.5 * Math.log((1 + sin) / (1 - sin)) * -pixel_per_radian);\r
- return answer;\r
- },\r
-\r
- /**\r
- * Load a stylesheet from a remote file.\r
- * @param {String} href URL to the CSS file\r
- */\r
- loadStyle: function(href) {\r
- var link = document.createElement('link');\r
- link.type = 'text/css';\r
- link.rel = 'stylesheet';\r
- link.href = href;\r
- document.getElementsByTagName('head')[0].appendChild(link);\r
- return;\r
- },\r
-\r
- /**\r
- * getStyle provides cross-browser access to css\r
- * @param {Object} el HTML Element\r
- * @param {String} prop Style property name\r
- */\r
- getStyle: function(el, prop) {\r
- var y;\r
- if (el.currentStyle) {\r
- y = el.currentStyle[prop];\r
- }\r
- else if (window.getComputedStyle) {\r
- y = window.getComputedStyle( el, '').getPropertyValue(prop);\r
- }\r
- return y;\r
- },\r
-\r
- /**\r
- * Convert longitude to metres\r
- * http://www.uwgb.edu/dutchs/UsefulData/UTMFormulas.HTM\r
- * "A degree of longitude at the equator is 111.2km... For other latitudes,\r
- * multiply by cos(lat)"\r
- * assumes the earth is a sphere but good enough for our purposes\r
- * @param {Float} lon\r
- * @param {Float} lat\r
- */\r
- lonToMetres: function(lon, lat) {\r
- return lon * (111200 * Math.cos(lat * (Math.PI / 180)));\r
- },\r
-\r
- /**\r
- * Convert metres to longitude\r
- * @param {Object} m\r
- * @param {Object} lat\r
- */\r
- metresToLon: function(m, lat) {\r
- return m / (111200 * Math.cos(lat * (Math.PI / 180)));\r
- },\r
-\r
- /**\r
- * Convert kilometres to miles\r
- * @param {Float} km\r
- * @returns {Float} miles\r
- */\r
- KMToMiles: function(km) {\r
- return km / 1.609344;\r
- },\r
-\r
- /**\r
- * Convert miles to kilometres\r
- * @param {Float} miles\r
- * @returns {Float} km\r
- */\r
- milesToKM: function(miles) {\r
- return miles * 1.609344;\r
- },\r
-\r
- /**\r
- *\r
- * @param {Object} number\r
- * @param {Object} base\r
- */\r
- logN: function(number, base) {\r
- return Math.log(number) / Math.log(base);\r
- },\r
-\r
- /**\r
- * Returns array of loaded provider apis\r
- * @returns {Array} providers\r
- */\r
- getAvailableProviders : function () {\r
- var providers = [];\r
- for (var propertyName in apis){\r
- if (apis.hasOwnProperty(propertyName)) {\r
- providers.push(propertyName);\r
- }\r
- }\r
- return providers;\r
- }\r
-\r
-};\r
-\r
-/**\r
- * Class for converting between HTML and RGB integer color formats.\r
- * Accepts either a HTML color string argument or three integers for R, G and B.\r
- * @constructor\r
- */\r
-mxn.util.Color = function() {\r
- if(arguments.length == 3) {\r
- this.red = arguments[0];\r
- this.green = arguments[1];\r
- this.blue = arguments[2];\r
- }\r
- else if(arguments.length == 1) {\r
- this.setHexColor(arguments[0]);\r
- }\r
-};\r
-\r
-mxn.util.Color.prototype.reHex = /^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$/;\r
-\r
-/**\r
- * Set the color from the supplied HTML hex string.\r
- * @param {String} strHexColor A HTML hex color string e.g. '#00FF88'.\r
- */\r
-mxn.util.Color.prototype.setHexColor = function(strHexColor) {\r
- var match = strHexColor.match(this.reHex);\r
- if(match) {\r
- strHexColor = match[1];\r
- }\r
- else {\r
- throw 'Invalid HEX color format, expected #000, 000, #000000 or 000000';\r
- }\r
- if(strHexColor.length == 3) {\r
- strHexColor = strHexColor.replace(/\w/g, function(str){return str.concat(str);});\r
- }\r
- this.red = parseInt(strHexColor.substr(0,2), 16);\r
- this.green = parseInt(strHexColor.substr(2,2), 16);\r
- this.blue = parseInt(strHexColor.substr(4,2), 16);\r
-};\r
-\r
-/**\r
- * Retrieve the color value as an HTML hex string.\r
- * @returns {String} Format '00FF88' - note no preceding #.\r
- */\r
-mxn.util.Color.prototype.getHexColor = function() {\r
- var vals = [this.red.toString(16), this.green.toString(16), this.blue.toString(16)];\r
- for(var i = 0; i < vals.length; i++) {\r
- vals[i] = (vals[i].length == 1) ? '0' + vals[i] : vals[i];\r
- vals[i] = vals[i].toUpperCase();\r
- }\r
- return vals.join('');\r
-};\r
-\r
-})();
\ No newline at end of file
+++ /dev/null
-mxn.register('microsoft', { \r
-\r
-Mapstraction: {\r
- \r
- init: function(element, api) { \r
- var me = this;\r
- if (VEMap){\r
- this.maps[api] = new VEMap(element.id);\r
- \r
- \r
- \r
- this.maps[api].AttachEvent('onclick', function(event){\r
- me.clickHandler();\r
- var x = event.mapX;\r
- var y = event.mapY;\r
- var pixel = new VEPixel(x,y);\r
- me.click.fire({'location': new mxn.LatLonPoint(pixel.Latitude, pixel.Longitude)});\r
- \r
- \r
- });\r
- this.maps[api].AttachEvent('onendzoom', function(event){\r
- me.moveendHandler(me);\r
- me.changeZoom.fire();\r
- \r
- \r
- });\r
- this.maps[api].AttachEvent('onendpan', function(event){\r
- me.moveendHandler(me);\r
- me.endPan.fire();\r
- \r
- \r
- });\r
- this.maps[api].AttachEvent('onchangeview', function(event){\r
- me.endPan.fire();\r
- \r
- \r
- });\r
- this.maps[api].LoadMap();\r
- document.getElementById("MSVE_obliqueNotification").style.visibility = "hidden"; \r
- \r
- //removes the bird's eye pop-up\r
- this.loaded[api] = true;\r
- me.load.fire(); \r
- }\r
- else{\r
- alert(api + ' map script not imported')\r
- \r
- }\r
- \r
- },\r
- \r
- applyOptions: function(){\r
- var map = this.maps[this.api];\r
- if(this.options.enableScrollWheelZoom){\r
- map.enableContinuousZoom();\r
- map.enableScrollWheelZoom(); \r
- \r
- }\r
- \r
- },\r
-\r
- resizeTo: function(width, height){ \r
- this.maps[this.api].Resize(width, height);\r
- },\r
-\r
- addControls: function( args ) {\r
- var map = this.maps[this.api];\r
- \r
- if (args.pan) {\r
- map.SetDashboardSize(VEDashboardSize.Normal);\r
- }\r
- else {\r
- map.SetDashboardSize(VEDashboardSize.Tiny)\r
- }\r
-\r
- if (args.zoom == 'large') {\r
- map.SetDashboardSize(VEDashboardSize.Small)\r
- }\r
- else if ( args.zoom == 'small' ) {\r
- map.SetDashboardSize(VEDashboardSize.Tiny)\r
- }\r
- else {\r
- map.HideDashboard();\r
- map.HideScalebar();\r
- }\r
- \r
- \r
- },\r
-\r
- addSmallControls: function() {\r
- var map = this.maps[this.api];\r
- map.SetDashboardSize(VEDashboardSize.Tiny);\r
- \r
- },\r
-\r
- addLargeControls: function() {\r
- var map = this.maps[this.api];\r
- map.SetDashboardSize(VEDashboardSize.Normal);\r
- this.addControlsArgs.pan=true;\r
- this.addControlsArgs.zoom = 'large';\r
- },\r
-\r
- addMapTypeControls: function() {\r
- var map = this.maps[this.api];\r
- map.addTypeControl();\r
- \r
- },\r
-\r
- dragging: function(on) {\r
- var map = this.maps[this.api];\r
- if(on){\r
- map.enableDragMap();\r
- }\r
- else{\r
- map.disableDragMap();\r
- \r
- }\r
- },\r
-\r
- setCenterAndZoom: function(point, zoom) { \r
- var map = this.maps[this.api];\r
- var pt = point.toProprietary(this.api);\r
- var vzoom = zoom;\r
- map.SetCenterAndZoom(new VELatLong(point.lat,point.lon), vzoom)\r
- \r
- },\r
- \r
- addMarker: function(marker, old) {\r
- var map = this.maps[this.api];\r
- marker.pinID = "mspin-"+new Date().getTime()+'-'+(Math.floor(Math.random()*Math.pow(2,16)));\r
- var pin = marker.toProprietary(this.api);\r
- map.AddShape(pin);\r
- //give onclick event\r
- //give on double click event\r
- //give on close window\r
- //return the marker\r
- \r
- \r
- return pin;\r
- },\r
-\r
- removeMarker: function(marker) {\r
- var map = this.maps[this.api];\r
- var id = marker.proprietary_marker.GetID();\r
- var microsoftShape = map.GetShapeByID(id);\r
- map.DeleteShape(microsoftShape);\r
- },\r
-\r
- removeAllMarkers: function() {\r
- var map = this.maps[this.api];\r
- \r
- // TODO: Add provider code\r
- },\r
- \r
- declutterMarkers: function(opts) {\r
- var map = this.maps[this.api];\r
- \r
- // TODO: Add provider code\r
- },\r
-\r
- addPolyline: function(polyline, old) {\r
- var map = this.maps[this.api];\r
- var pl = polyline.toProprietary(this.api);\r
- pl.HideIcon();//hide the icon VE automatically displays\r
- map.AddShape(pl);\r
- \r
- return pl;\r
- },\r
-\r
- removePolyline: function(polyline) {\r
- var map = this.maps[this.api];\r
- var id = polyline.proprietary_polyline.GetID();\r
- var microsoftShape = map.GetShapeByID(id);\r
- map.DeleteShape(microsoftShape);\r
- },\r
- \r
- getCenter: function() {\r
- var map = this.maps[this.api];\r
- var LL = map.GetCenter();\r
- var point = new mxn.LatLonPoint(LL.Latitude, LL.Longitude);\r
- return point;\r
- \r
- },\r
- \r
- setCenter: function(point, options) {\r
- var map = this.maps[this.api];\r
- var pt = point.toProprietary(this.api);\r
- map.SetCenter(new VELatLong(point.lat, point.lon));\r
- \r
- \r
- },\r
-\r
- setZoom: function(zoom) {\r
- var map = this.maps[this.api];\r
- map.SetZoomLevel(zoom);\r
- \r
- \r
- },\r
- \r
- getZoom: function() {\r
- var map = this.maps[this.api];\r
- var zoom = map.GetZoomLevel();\r
- \r
- return zoom;\r
- },\r
-\r
- getZoomLevelForBoundingBox: function( bbox ) {\r
- var map = this.maps[this.api];\r
- // NE and SW points from the bounding box.\r
- var ne = bbox.getNorthEast();\r
- var sw = bbox.getSouthWest();\r
- var zoom;\r
- \r
- // TODO: Add provider code\r
- \r
- return zoom;\r
- },\r
-\r
- setMapType: function(type) {\r
- var map = this.maps[this.api];\r
- switch(type) {\r
- case mxn.Mapstraction.ROAD:\r
- map.SetMapStyle(VEMapStyle.Road);\r
- break;\r
- case mxn.Mapstraction.SATELLITE:\r
- map.SetMapStyle(VEMapStyle.Aerial);\r
- break;\r
- case mxn.Mapstraction.HYBRID:\r
- map.SetMapStyle(VEMapStyle.Hybrid);\r
- break;\r
- default:\r
- map.SetMapStyle(VEMapStyle.Road);\r
- } \r
- },\r
-\r
- getMapType: function() {\r
- var map = this.maps[this.api];\r
- var mode = map.GetMapStyle();\r
- switch(mode){\r
- case VEMapStyle.Aerial:\r
- return mxn.Mapstraction.SATELLITE;\r
- case VEMapStyle.Road:\r
- return mxn.Mapstraction.ROAD;\r
- case VEMapStyle.Hybrid:\r
- return mxn.Mapstraction.HYBRID;\r
- default:\r
- return null;\r
- \r
- }\r
- \r
-\r
- },\r
-\r
- getBounds: function () {\r
- var map = this.maps[this.api];\r
- view = map.GetMapView();\r
- var topleft = view.TopLeftLatLong;\r
- var bottomright = view.BottomRightLatLong;\r
- \r
- return new mxn.BoundingBox(bottomright.Latitude,topleft.Longitude,topleft.Latitude, bottomright.Longitude );\r
- },\r
-\r
- setBounds: function(bounds){\r
- var map = this.maps[this.api];\r
- var sw = bounds.getSouthWest();\r
- var ne = bounds.getNorthEast();\r
- \r
- var rec = new VELatLongRectangle(new VELatLong(ne.lat, ne.lon), new VELatLong(sw.lat, sw.lon));\r
- map.SetMapView(rec);\r
- \r
- \r
- \r
- },\r
-\r
- addImageOverlay: function(id, src, opacity, west, south, east, north, oContext) {\r
- var map = this.maps[this.api];\r
- \r
- // TODO: Add provider code\r
- },\r
-\r
- setImagePosition: function(id, oContext) {\r
- var map = this.maps[this.api];\r
- var topLeftPoint; var bottomRightPoint;\r
-\r
- // TODO: Add provider code\r
-\r
- // oContext.pixels.top = ...;\r
- // oContext.pixels.left = ...;\r
- // oContext.pixels.bottom = ...;\r
- // oContext.pixels.right = ...;\r
- },\r
- \r
- addOverlay: function(url, autoCenterAndZoom) {\r
- var map = this.maps[this.api];\r
- var layer = new VEShapeLayer(); \r
- var mlayerspec = new VEShapeSourceSpecification(VEDataType.GeoRSS, url, layer);\r
- map.AddShapeLayer(layer);\r
- \r
- \r
- \r
- },\r
-\r
- addTileLayer: function(tile_url, opacity, copyright_text, min_zoom, max_zoom) {\r
- throw 'Not implemented';\r
- },\r
-\r
- toggleTileLayer: function(tile_url) {\r
- throw 'Not implemented';\r
- },\r
-\r
- getPixelRatio: function() {\r
- throw 'Not implemented';\r
- },\r
- \r
- mousePosition: function(element) {\r
- var locDisp = document.getElementById(element);\r
- if (locDisp != null) {\r
- var map = this.maps[this.api];\r
- map.AttachEvent("onmousemove", function(veEvent){\r
- var latlon = map.PixelToLatLong(new VEPixel(veEvent.mapX, veEvent.mapY));\r
- var loc = latlon.Latitude.toFixed(4) + " / " + latlon.Longitude.toFixed(4);\r
- locDisp.innerHTML = loc;\r
-\r
- });\r
- locDisp.innerHTML = "0.0000 / 0.0000";\r
- }\r
- }\r
-},\r
-\r
-LatLonPoint: {\r
- \r
- toProprietary: function() {\r
- return new VELatLong(this.lat, this.lon);\r
- },\r
-\r
- fromProprietary: function(mpoint) {\r
- this.lat =mpoint.Latitude;\r
- this.lon =mpoint.Longitude;\r
- }\r
- \r
-},\r
-\r
-Marker: {\r
- \r
- toProprietary: function() {\r
- var mmarker = new VEShape(VEShapeType.Pushpin, this.location.toProprietary('microsoft'));\r
- \r
- \r
- return mmarker;\r
- \r
- },\r
-\r
- openBubble: function() { \r
- var mmarker = this.proprietary_marker;\r
- map.ClearInfoBoxStyles();\r
- mmarker.SetTitle(this.infoBubble);\r
- },\r
-\r
- hide: function() {\r
- this.proprietary_marker.hide();\r
- },\r
-\r
- show: function() {\r
- this.proprietary_marker_unhide();\r
- },\r
-\r
- update: function() {\r
- throw 'Not implemented';\r
- }\r
- \r
-},\r
-\r
-Polyline: {\r
-\r
- toProprietary: function() {\r
- var mpoints =[];\r
- for(var i =0, length = this.points.length; i < length; i++)\r
- {\r
- mpoints.push(this.points[i].toProprietary('microsoft'));\r
- }\r
- var mpolyline = new VEShape(VEShapeType.Polyline, mpoints);\r
- if(this.color){\r
- var color = new mxn.util.Color(this.color);\r
- var opacity = (typeof(this.opacity) == 'undefined' || this.opacity === null) ? 1.0 : this.opacity;\r
- var vecolor = new VEColor(color.red, color.green, color.blue, opacity);\r
- mpolyline.SetLineColor(vecolor);\r
- }\r
- // TODO ability to change line width\r
- return mpolyline;\r
- },\r
- \r
- show: function() {\r
- this.proprietary_polyline.Show();\r
- },\r
-\r
- hide: function() {\r
- this.proprietary_polyline.Hide();\r
- }\r
- \r
-}\r
-\r
-});\r
+++ /dev/null
-mxn.register('openlayers', {
-
- Mapstraction: {
-
- init: function(element, api){
- var me = this;
- this.maps[api] = new OpenLayers.Map(
- element.id,
- {
- maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34),
- maxResolution:156543,
- numZoomLevels:18,
- units:'meters',
- projection: "EPSG:41001"
- }
- );
-
- this.layers['osmmapnik'] = new OpenLayers.Layer.TMS(
- 'OSM Mapnik',
- [
- "http://a.tile.openstreetmap.org/",
- "http://b.tile.openstreetmap.org/",
- "http://c.tile.openstreetmap.org/"
- ],
- {
- type:'png',
- getURL: function (bounds) {
- var res = this.map.getResolution();
- var x = Math.round ((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));
- var y = Math.round ((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));
- var z = this.map.getZoom();
- var limit = Math.pow(2, z);
- if (y < 0 || y >= limit) {
- return null;
- } else {
- x = ((x % limit) + limit) % limit;
- var path = z + "/" + x + "/" + y + "." + this.type;
- var url = this.url;
- if (url instanceof Array) {
- url = this.selectUrl(path, url);
- }
- return url + path;
- }
- },
- displayOutsideMaxExtent: true
- }
- );
-
- this.layers['osm'] = new OpenLayers.Layer.TMS(
- 'OSM',
- [
- "http://a.tah.openstreetmap.org/Tiles/tile.php/",
- "http://b.tah.openstreetmap.org/Tiles/tile.php/",
- "http://c.tah.openstreetmap.org/Tiles/tile.php/"
- ],
- {
- type:'png',
- getURL: function (bounds) {
- var res = this.map.getResolution();
- var x = Math.round ((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));
- var y = Math.round ((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));
- var z = this.map.getZoom();
- var limit = Math.pow(2, z);
- if (y < 0 || y >= limit) {
- return null;
- } else {
- x = ((x % limit) + limit) % limit;
- var path = z + "/" + x + "/" + y + "." + this.type;
- var url = this.url;
- if (url instanceof Array) {
- url = this.selectUrl(path, url);
- }
- return url + path;
- }
- },
- displayOutsideMaxExtent: true
- }
- );
-
- this.maps[api].addLayer(this.layers['osmmapnik']);
- this.maps[api].addLayer(this.layers['osm']);
- },
-
- applyOptions: function(){
- // var map = this.maps[this.api];
- // var myOptions = [];
- // if (this.options.enableDragging) {
- // myOptions.draggable = true;
- // }
- // if (this.options.enableScrollWheelZoom){
- // myOptions.scrollwheel = true;
- // }
- // map.setOptions(myOptions);
- },
-
- resizeTo: function(width, height){
- this.currentElement.style.width = width;
- this.currentElement.style.height = height;
- this.maps[this.api].updateSize();
- },
-
- addControls: function( args ) {
- var map = this.maps[this.api];
- // FIXME: OpenLayers has a bug removing all the controls says crschmidt
- for (var i = map.controls.length; i>1; i--) {
- map.controls[i-1].deactivate();
- map.removeControl(map.controls[i-1]);
- }
- if ( args.zoom == 'large' ) {
- map.addControl(new OpenLayers.Control.PanZoomBar());
- }
- else if ( args.zoom == 'small' ) {
- map.addControl(new OpenLayers.Control.ZoomPanel());
- if ( args.pan) {
- map.addControl(new OpenLayers.Control.PanPanel());
- }
- }
- else {
- if ( args.pan){
- map.addControl(new OpenLayers.Control.PanPanel());
- }
- }
- if ( args.overview ) {
- map.addControl(new OpenLayers.Control.OverviewMap());
- }
- if ( args.map_type ) {
- map.addControl(new OpenLayers.Control.LayerSwitcher());
- }
- },
-
- addSmallControls: function() {
- var map = this.maps[this.api];
- this.addControlsArgs.pan = false;
- this.addControlsArgs.scale = false;
- this.addControlsArgs.zoom = 'small';
- map.addControl(new OpenLayers.Control.ZoomBox());
- map.addControl(new OpenLayers.Control.LayerSwitcher({
- 'ascending':false
- }));
- },
-
- addLargeControls: function() {
- var map = this.maps[this.api];
- map.addControl(new OpenLayers.Control.PanZoomBar());
- this.addControlsArgs.pan = true;
- this.addControlsArgs.zoom = 'large';
- },
-
- addMapTypeControls: function() {
- var map = this.maps[this.api];
- map.addControl( new OpenLayers.Control.LayerSwitcher({
- 'ascending':false
- }) );
- this.addControlsArgs.map_type = true;
- },
-
- setCenterAndZoom: function(point, zoom) {
- var map = this.maps[this.api];
- var pt = point.toProprietary(this.api);
- map.setCenter(point.toProprietary(this.api), zoom);
- },
-
- addMarker: function(marker, old) {
- var map = this.maps[this.api];
- var pin = marker.toProprietary(this.api);
- if (!this.layers['markers']) {
- this.layers['markers'] = new OpenLayers.Layer.Markers('markers');
- map.addLayer(this.layers['markers']);
- }
- this.layers['markers'].addMarker(pin);
-
- return pin;
- },
-
- removeMarker: function(marker) {
- var map = this.maps[this.api];
- var pin = marker.toProprietary(this.api);
- this.layers['markers'].removeMarker(pin);
- pin.destroy();
-
- },
-
- removeAllMarkers: function() {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- declutterMarkers: function(opts) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- addPolyline: function(polyline, old) {
- var map = this.maps[this.api];
- var pl = polyline.toProprietary(this.api);
-
- if (!this.layers['polylines']) {
- this.layers['polylines'] = new OpenLayers.Layer.Vector('polylines');
- map.addLayer(this.layers['polylines']);
- }
- polyline.setChild(pl);
- this.layers['polylines'].addFeatures([pl]);
- return pl;
- },
-
- removePolyline: function(polyline) {
- var map = this.maps[this.api];
- var pl = polyline.toProprietary(this.api);
- this.layers['polylines'].removeFeatures([pl]);
- },
- removeAllPolylines: function() {
- var olpolylines = [];
- for(var i = 0, length = this.polylines.length; i < length; i++){
- olpolylines.push(this.polylines[i].toProprietary(this.api));
- }
- if (this.layers['polylines']) this.layers['polylines'].removeFeatures(olpolylines);
- },
-
- getCenter: function() {
- var map = this.maps[this.api];
- pt = map.getCenter();
- return new mxn.LatLonPoint(pt.lat, pt.lon);
- },
-
- setCenter: function(point, options) {
- var map = this.maps[this.api];
- var pt = point.toProprietary(this.api);
- map.setCenter(pt);
-
- },
-
- setZoom: function(zoom) {
- var map = this.maps[this.api];
- map.zoomTo(zoom);
- },
-
- getZoom: function() {
- var map = this.maps[this.api];
- return map.zoom;
- },
-
- getZoomLevelForBoundingBox: function( bbox ) {
- var map = this.maps[this.api];
- // throw 'Not implemented';
- return zoom;
- },
-
- setMapType: function(type) {
- var map = this.maps[this.api];
- throw 'Not implemented (setMapType)';
- },
-
- getMapType: function() {
- var map = this.maps[this.api];
- // TODO: implement actual layer support
- return mxn.Mapstraction.ROAD;
- },
-
- getBounds: function () {
- var map = this.maps[this.api];
- var olbox = map.calculateBounds();
- return new mxn.BoundingBox(olbox.bottom, olbox.left, olbox.top, olbox.right);
- },
-
- setBounds: function(bounds){
- var map = this.maps[this.api];
- var sw = bounds.getSouthWest();
- var ne = bounds.getNorthEast();
-
- if(sw.lon > ne.lon) {
- sw.lon -= 360;
- }
-
- var obounds = new OpenLayers.Bounds();
-
- obounds.extend(new mxn.LatLonPoint(sw.lat,sw.lon).toProprietary(this.api));
- obounds.extend(new mxn.LatLonPoint(ne.lat,ne.lon).toProprietary(this.api));
- map.zoomToExtent(obounds);
- },
-
- addImageOverlay: function(id, src, opacity, west, south, east, north, oContext) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- setImagePosition: function(id, oContext) {
- var map = this.maps[this.api];
- var topLeftPoint; var bottomRightPoint;
-
- // TODO: Add provider code
-
- //oContext.pixels.top = ...;
- //oContext.pixels.left = ...;
- //oContext.pixels.bottom = ...;
- //oContext.pixels.right = ...;
- },
-
- addOverlay: function(url, autoCenterAndZoom) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
-
- },
-
- addTileLayer: function(tile_url, opacity, copyright_text, min_zoom, max_zoom) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- toggleTileLayer: function(tile_url) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- getPixelRatio: function() {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- },
-
- mousePosition: function(element) {
- var map = this.maps[this.api];
-
- // TODO: Add provider code
- }
- },
-
- LatLonPoint: {
-
- toProprietary: function() {
- var ollon = this.lon * 20037508.34 / 180;
- var ollat = Math.log(Math.tan((90 + this.lat) * Math.PI / 360)) / (Math.PI / 180);
- ollat = ollat * 20037508.34 / 180;
- return new OpenLayers.LonLat(ollon, ollat);
- },
-
- fromProprietary: function(olPoint) {
- var lon = (olPoint.lon / 20037508.34) * 180;
- var lat = (olPoint.lat / 20037508.34) * 180;
- lat = 180/Math.PI * (2 * Math.atan(Math.exp(lat * Math.PI / 180)) - Math.PI / 2);
- this.lon = lon;
- this.lat = lat;
- }
-
- },
-
- Marker: {
-
- toProprietary: function() {
- var size, anchor, icon;
- if(this.iconSize) {
- size = new OpenLayers.Size(this.iconSize[0], this.iconSize[1]);
- }
- else {
- size = new OpenLayers.Size(21,25);
- }
-
- if(this.iconAnchor) {
- anchor = new OpenLayers.Pixel(this.iconAnchor[0], this.iconAnchor[1]);
- }
- else {
- // FIXME: hard-coding the anchor point
- anchor = new OpenLayers.Pixel(-(size.w/2), -size.h);
- }
-
- if(this.iconUrl) {
- icon = new OpenLayers.Icon(this.iconUrl, size, anchor);
- }
- else {
- icon = new OpenLayers.Icon('http://openlayers.org/dev/img/marker-gold.png', size, anchor);
- }
- var marker = new OpenLayers.Marker(this.location.toProprietary("openlayers"), icon);
-
- if(this.infoBubble) {
- var popup = new OpenLayers.Popup(null,
- this.location.toProprietary("openlayers"),
- new OpenLayers.Size(100,100),
- this.infoBubble,
- true);
- popup.autoSize = true;
- var theMap = this.map;
- if(this.hover) {
- marker.events.register("mouseover", marker, function(event) {
- theMap.addPopup(popup);
- popup.show();
- });
- marker.events.register("mouseout", marker, function(event) {
- popup.hide();
- theMap.removePopup(popup);
- });
- }
- else {
- var shown = false;
- marker.events.register("mousedown", marker, function(event) {
- if (shown) {
- popup.hide();
- theMap.removePopup(popup);
- shown = false;
- } else {
- theMap.addPopup(popup);
- popup.show();
- shown = true;
- }
- });
- }
- }
-
- if(this.hoverIconUrl) {
- // TODO
- }
-
- if(this.infoDiv){
- // TODO
- }
- return marker;
- },
-
- openBubble: function() {
- // TODO: Add provider code
- },
-
- hide: function() {
- this.proprietary_marker.setOptions({visible:false});
- },
-
- show: function() {
- this.proprietary_marker.setOptions({visible:true});
- },
-
- update: function() {
- // TODO: Add provider code
- }
-
- },
-
- Polyline: {
-
- toProprietary: function() {
- var olpolyline;
- var olpoints = [];
- var ring;
- var style = {
- strokeColor: this.color || "#000000",
- strokeOpacity: this.opacity || 1,
- strokeWidth: this.width || 1,
- fillColor: this.fillColor || "#000000",
- fillOpacity: this.getAttribute('fillOpacity') || 0.2
- };
-
- //TODO Handle closed attribute
-
- for (var i = 0, length = this.points.length ; i< length; i++){
- olpoint = this.points[i].toProprietary("openlayers");
- olpoints.push(new OpenLayers.Geometry.Point(olpoint.lon, olpoint.lat));
- }
-
- if (this.closed) {
- // a closed polygon
- ring = new OpenLayers.Geometry.LinearRing(olpoints);
- } else {
- // a line
- ring = new OpenLayers.Geometry.LineString(olpoints);
- }
-
- olpolyline = new OpenLayers.Feature.Vector(ring, null, style);
-
- return olpolyline;
- },
-
- show: function() {
- throw 'Not implemented';
- },
-
- hide: function() {
- throw 'Not implemented';
- }
-
- }
-
-});
\ No newline at end of file
+++ /dev/null
-mxn.register('yahoo', { \r
-\r
-Mapstraction: {\r
- \r
- init: function(element,api) { \r
- var me = this;\r
- if (YMap) {\r
- this.maps[api] = new YMap(element);\r
-\r
- YEvent.Capture(this.maps[api], EventsList.MouseClick, function(event,location) {\r
- me.clickHandler(location.Lat, location.Lon, location, me);\r
- me.click.fire({'location': new mxn.LatLonPoint(location.Lat, location.Lon)});\r
- });\r
- YEvent.Capture(this.maps[api], EventsList.changeZoom, function() {\r
- me.moveendHandler(me);\r
- me.changeZoom.fire();\r
- });\r
- YEvent.Capture(this.maps[api], EventsList.endPan, function() {\r
- me.moveendHandler(me);\r
- me.endPan.fire();\r
- });\r
- YEvent.Capture(this.maps[api], EventsList.endAutoPan, function() {\r
- me.endPan.fire();\r
- });\r
- \r
- this.loaded[api] = true;\r
- me.load.fire();\r
- }\r
- else {\r
- alert(api + ' map script not imported');\r
- } \r
- },\r
- \r
- applyOptions: function(){\r
- \r
- /*\r
- if (this.options.enableDragging) {\r
- map.enableDragMap();\r
- } else {\r
- map.disableDragMap();\r
- }*/\r
- \r
- },\r
-\r
- resizeTo: function(width, height){ \r
- this.maps[this.api].resizeTo(new YSize(width,height));\r
- },\r
-\r
- addControls: function( args ) {\r
- var map = this.maps[this.api];\r
- \r
- if (args.pan) {\r
- map.addPanControl();\r
- }\r
- else {\r
- // Yahoo doesn't check the pan control is there before trying to remove it\r
- // so throws an exception :(\r
- map.addPanControl();\r
- map.removePanControl();\r
- }\r
- \r
- if (args.zoom == 'large') {\r
- map.addZoomLong();\r
- }\r
- else if ( args.zoom == 'small' ) {\r
- map.addZoomShort();\r
- }\r
- else {\r
- map.removeZoomScale();\r
- }\r
- },\r
-\r
- addSmallControls: function() {\r
- var map = this.maps[this.api];\r
- map.addPanControl();\r
- map.addZoomShort();\r
- this.addControlsArgs.pan = true;\r
- this.addControlsArgs.zoom = 'small';\r
- },\r
-\r
- addLargeControls: function() {\r
- var map = this.maps[this.api];\r
- map.addPanControl();\r
- map.addZoomLong();\r
- this.addControlsArgs.pan = true; // keep the controls in case of swap\r
- this.addControlsArgs.zoom = 'large';\r
- },\r
-\r
- addMapTypeControls: function() {\r
- var map = this.maps[this.api];\r
- map.addTypeControl();\r
- },\r
-\r
- dragging: function(on) {\r
- var map = this.maps[this.api];\r
- if (on) {\r
- map.enableDragMap();\r
- } else {\r
- map.disableDragMap();\r
- }\r
- },\r
-\r
- setCenterAndZoom: function(point, zoom) { \r
- var map = this.maps[this.api];\r
- var pt = point.toProprietary(this.api);\r
- \r
- var yzoom = 18 - zoom; // maybe?\r
- map.drawZoomAndCenter(pt,yzoom);\r
- },\r
- \r
- addMarker: function(marker, old) {\r
- var map = this.maps[this.api];\r
- var pin = marker.toProprietary(this.api);\r
- map.addOverlay(pin);\r
- YEvent.Capture(pin, EventsList.MouseClick, function() {\r
- marker.click.fire();\r
- });\r
- YEvent.Capture(pin, EventsList.openSmartWindow, function() {\r
- marker.openInfoBubble.fire();\r
- });\r
- YEvent.Capture(pin, EventsList.closeSmartWindow, function() {\r
- marker.closeInfoBubble.fire();\r
- });\r
- return pin;\r
- },\r
-\r
- removeMarker: function(marker) {\r
- var map = this.maps[this.api];\r
- map.removeOverlay(marker.proprietary_marker);\r
- },\r
-\r
- removeAllMarkers: function() {\r
- var map = this.maps[this.api];\r
- map.removeMarkersAll();\r
- },\r
- \r
- declutterMarkers: function(opts) {\r
- throw 'Not implemented';\r
- },\r
-\r
- addPolyline: function(polyline, old) {\r
- var map = this.maps[this.api];\r
- var pl = polyline.toProprietary(this.api);\r
- map.addOverlay(pl);\r
- return pl;\r
- },\r
-\r
- removePolyline: function(polyline) {\r
- var map = this.maps[this.api];\r
- map.removeOverlay(polyline.proprietary_polyline);\r
- },\r
- \r
- getCenter: function() {\r
- var map = this.maps[this.api];\r
- var pt = map.getCenterLatLon();\r
- var point = new mxn.LatLonPoint(pt.Lat, pt.Lon);\r
- return point;\r
- },\r
-\r
- setCenter: function(point, options) {\r
- var map = this.maps[this.api];\r
- var pt = point.toProprietary(this.api);\r
- map.panToLatLon(pt);\r
- },\r
-\r
- setZoom: function(zoom) {\r
- var map = this.maps[this.api];\r
- var yzoom = 18 - zoom; // maybe?\r
- map.setZoomLevel(yzoom); \r
- },\r
- \r
- getZoom: function() {\r
- var map = this.maps[this.api];\r
- return 18 - map.getZoomLevel();\r
- },\r
-\r
- getZoomLevelForBoundingBox: function( bbox ) {\r
- throw 'Not implemented';\r
- },\r
-\r
- setMapType: function(type) {\r
- var map = this.maps[this.api];\r
- \r
- switch(type) {\r
- case mxn.Mapstraction.ROAD:\r
- map.setMapType(YAHOO_MAP_REG);\r
- break;\r
- case mxn.Mapstraction.SATELLITE:\r
- map.setMapType(YAHOO_MAP_SAT);\r
- break;\r
- case mxn.Mapstraction.HYBRID:\r
- map.setMapType(YAHOO_MAP_HYB);\r
- break;\r
- default:\r
- map.setMapType(YAHOO_MAP_REG);\r
- }\r
- },\r
-\r
- getMapType: function() {\r
- var map = this.maps[this.api];\r
- var type = map.getCurrentMapType();\r
- switch(type) {\r
- case YAHOO_MAP_REG:\r
- return mxn.Mapstraction.ROAD;\r
- case YAHOO_MAP_SAT:\r
- return mxn.Mapstraction.SATELLITE;\r
- case YAHOO_MAP_HYB:\r
- return mxn.Mapstraction.HYBRID;\r
- default:\r
- return null;\r
- }\r
- },\r
-\r
- getBounds: function () {\r
- var map = this.maps[this.api];\r
- var ybox = map.getBoundsLatLon();\r
- return new mxn.BoundingBox(ybox.LatMin, ybox.LonMin, ybox.LatMax, ybox.LonMax);\r
- },\r
-\r
- setBounds: function(bounds){\r
- var map = this.maps[this.api];\r
- var sw = bounds.getSouthWest();\r
- var ne = bounds.getNorthEast();\r
- \r
- if(sw.lon > ne.lon) {\r
- sw.lon -= 360;\r
- }\r
- var center = new YGeoPoint((sw.lat + ne.lat)/2, (ne.lon + sw.lon)/2);\r
- \r
- var container = map.getContainerSize();\r
- for(var zoom = 1 ; zoom <= 17 ; zoom++){\r
- var sw_pix = mxn.util.convertLatLonXY_Yahoo(sw,zoom);\r
- var ne_pix = mxn.util.convertLatLonXY_Yahoo(ne,zoom);\r
- if(sw_pix.x > ne_pix.x) {\r
- sw_pix.x -= (1 << (26 - zoom)); //earth circumference in pixel\r
- }\r
- if(Math.abs(ne_pix.x - sw_pix.x) <= container.width\r
- && Math.abs(ne_pix.y - sw_pix.y) <= container.height){\r
- map.drawZoomAndCenter(center, zoom); //Call drawZoomAndCenter here: OK if called multiple times anyway\r
- break;\r
- }\r
- } \r
- },\r
- \r
- addImageOverlay: function(id, src, opacity, west, south, east, north, oContext) {\r
- throw 'Not implemented';\r
- },\r
-\r
- setImagePosition: function(id) {\r
- throw 'Not implemented';\r
- }, \r
- \r
- addOverlay: function(url, autoCenterAndZoom) {\r
- var map = this.maps[this.api];\r
- map.addOverlay(new YGeoRSS(url));\r
- },\r
- \r
- addTileLayer: function(tile_url, opacity, copyright_text, min_zoom, max_zoom) {\r
- throw 'Not implemented';\r
- },\r
-\r
- toggleTileLayer: function(tile_url) {\r
- throw 'Not implemented';\r
- },\r
- \r
- getPixelRatio: function() {\r
- throw 'Not implemented'; \r
- },\r
- \r
- mousePosition: function(element) {\r
- throw 'Not implemented';\r
- }\r
- \r
-},\r
-\r
-LatLonPoint: {\r
- \r
- toProprietary: function() {\r
- return new YGeoPoint(this.lat,this.lon);\r
- },\r
-\r
- fromProprietary: function(yahooPoint) {\r
- this.lat = yahooPoint.Lat;\r
- this.lon = yahooPoint.Lon;\r
- }\r
- \r
-},\r
-\r
-Marker: {\r
- \r
- toProprietary: function() {\r
- var ymarker, size;\r
- var infoBubble, event_action, infoDiv, div;\r
- \r
- if(this.iconSize) {\r
- size = new YSize(this.iconSize[0], this.iconSize[1]);\r
- }\r
- if(this.iconUrl) {\r
- if(this.iconSize){\r
- ymarker = new YMarker(this.location.toProprietary('yahoo'), new YImage(this.iconUrl, size));\r
- }\r
- else {\r
- ymarker = new YMarker(this.location.toProprietary('yahoo'), new YImage(this.iconUrl));\r
- }\r
- }\r
- else {\r
- if(this.iconSize) {\r
- ymarker = new YMarker(this.location.toProprietary('yahoo'), null, size);\r
- }\r
- else {\r
- ymarker = new YMarker(this.location.toProprietary('yahoo'));\r
- }\r
- }\r
-\r
- if(this.labelText) {\r
- ymarker.addLabel(this.labelText);\r
- }\r
-\r
- if(this.infoBubble) {\r
- infoBubble = this.infoBubble;\r
- if(this.hover) {\r
- event_action = EventsList.MouseOver;\r
- }\r
- else {\r
- event_action = EventsList.MouseClick;\r
- }\r
- YEvent.Capture(ymarker, event_action, function() {\r
- ymarker.openSmartWindow(infoBubble);\r
- });\r
-\r
- }\r
-\r
- if(this.infoDiv) {\r
- infoDiv = this.infoDiv;\r
- div = this.div;\r
- if(this.hover) {\r
- event_action = EventsList.MouseOver;\r
- }\r
- else {\r
- event_action = EventsList.MouseClick;\r
- }\r
- YEvent.Capture(ymarker, event_action, function() {\r
- document.getElementById(div).innerHTML = infoDiv;\r
- });\r
- }\r
-\r
- return ymarker;\r
- },\r
-\r
- openBubble: function() {\r
- var ypin = this.proprietary_marker;\r
- ypin.openSmartWindow(this.infoBubble);\r
- },\r
-\r
- hide: function() {\r
- this.proprietary_marker.hide();\r
- },\r
-\r
- show: function() {\r
- this.proprietary_marker.unhide();\r
- },\r
-\r
- update: function() {\r
- throw 'Not implemented';\r
- }\r
- \r
-},\r
-\r
-Polyline: {\r
-\r
- toProprietary: function() { \r
- var ypolyline;\r
- var ypoints = [];\r
- for (var i = 0, length = this.points.length ; i< length; i++){\r
- ypoints.push(this.points[i].toProprietary('yahoo'));\r
- }\r
- ypolyline = new YPolyline(ypoints,this.color,this.width,this.opacity);\r
- return ypolyline;\r
- },\r
- \r
- show: function() {\r
- throw 'Not implemented';\r
- },\r
-\r
- hide: function() {\r
- throw 'Not implemented';\r
- }\r
- \r
-}\r
-\r
-});
\ No newline at end of file
+++ /dev/null
-function scrapeNotices(user)
-{
- var notices = [];
- $(".notice").each(function(){
- var notice = getNoticeFromElement($(this));
- if (user) {
- notice['user'] = user;
- } else {
- notice['user'] = getUserFromElement($(this));
- }
- if(notice['geo'])
- notices.push(notice);
- });
-
- return notices;
-}
-
-function scrapeUser()
-{
- var avatarURL = $(".entity_profile .entity_depiction img.avatar").attr('src');
- var profileURL = $(".entity_profile .entity_nickname .url").attr('href');
- var nickname = $(".entity_profile .entity_nickname .nickname").text();
-
- return {
- 'profile_image_url': avatarURL,
- 'profile_url': profileURL,
- 'screen_name': nickname
- };
-}
-
-function getNoticeFromElement(noticeElement)
-{
- var notice = {};
-
- if(noticeElement.find(".geo").length) {
- var latlon = noticeElement.find(".geo").attr('title').split(";");
- notice['geo']={'coordinates': [
- parseFloat(latlon[0]),
- parseFloat(latlon[1])] };
- }
-
- notice['html'] = noticeElement.find(".e-content").html();
- notice['url'] = noticeElement.find("a.timestamp").attr('href');
- notice['created_at'] = noticeElement.find("abbr.published").text();
-
- return notice;
-}
-
-function getUserFromElement(noticeElement)
-{
- var avatarURL = noticeElement.find("img.avatar").attr('src');
- var profileURL = noticeElement.find(".author a.url").attr('href');
- var nickname = noticeElement.find(".author .nickname").text();
-
- return {
- 'profile_image_url': avatarURL,
- 'profile_url': profileURL,
- 'screen_name': nickname
- };
-}
-
-function showMapstraction(element, notices) {
- if(element instanceof jQuery) element = element[0];
- if(! $.isArray(notices)) notices = [notices];
- var mapstraction = new mxn.Mapstraction(element, _provider);
-
- var minLat = 181.0;
- var maxLat = -181.0;
- var minLon = 181.0;
- var maxLon = -181.0;
-
- for (var i in notices)
- {
- var n = notices[i];
-
- var lat = n['geo']['coordinates'][0];
- var lon = n['geo']['coordinates'][1];
-
- if (lat < minLat) {
- minLat = lat;
- }
-
- if (lat > maxLat) {
- maxLat = lat;
- }
-
- if (lon < minLon) {
- minLon = lon;
- }
-
- if (lon > maxLon) {
- maxLon = lon;
- }
-
- pt = new mxn.LatLonPoint(lat, lon);
- mkr = new mxn.Marker(pt);
-
- mkr.setIcon(n['user']['profile_image_url'], [24, 24]);
- mkr.setInfoBubble('<a href="'+ n['user']['profile_url'] + '">' + n['user']['screen_name'] + '</a>' + ' ' + n['html'] +
- '<br/><a href="'+ n['url'] + '">'+ n['created_at'] + '</a>');
-
- mapstraction.addMarker(mkr);
- }
-
- bounds = new mxn.BoundingBox(minLat, minLon, maxLat, maxLon);
-
- mapstraction.setBounds(bounds);
-}
+++ /dev/null
-// Update the local timeline from a Meteor server
-
-var MeteorUpdater = function()
-{
- return {
-
- init: function(server, port, scheme, timeline)
- {
- Meteor.callbacks["process"] = function(data) {
- RealtimeUpdate.receive(JSON.parse(data));
- };
-
- Meteor.host = server;
- Meteor.port = port;
- Meteor.scheme = scheme;
- Meteor.joinChannel(timeline, 0);
- Meteor.connect();
- }
- }
-}();
-
+++ /dev/null
-@import url(mp-screen.css);
+++ /dev/null
-#wrap {
- margin: 0;
- padding: 0;
- min-width:0;
- max-width:100%;
- width: auto;
- border: none;
-}
-
-#header {
- width: 100%;
-}
-
-address {
- margin: 1px 0 0;
- height: 24px;
-}
-
-address img {
- float: left;
- background: #fff;
- padding: 2px 2px 2px 6px;
-}
-
-address img + .fn {
- display:block;
- margin-top: 8px;
- clear: left;
- float: left;
- color: #000;
- margin-left: 6px;
-}
-
-#site_nav_global_primary {
- width: 100%;
- padding: 2px 0;
- height: auto;
- left:0;
-}
-
-#site_nav_global_primary li {
- margin-right: 4px;
-}
-
-#site_nav_global_primary li:last-child {
- margin-right: 0px;
-}
-
-#site_nav_global_primary a {
- padding: 2px 4px;
-}
-
-#core {
- width: 100%;
- border-left: none;
- border-right: none;
-}
-
-#aside_primary_wrapper {
- background: none;
-}
-
-#content_wrapper {
- right: 0px;
- border: none;
-}
-
-#site_nav_local_views_wrapper {
- right: 0px;
- border: none;
-}
-
-#navtoggle {
- float: right;
- padding: 2px 6px;
- text-decoration: none;
-}
-
-#site_nav_local_views {
- margin-bottom: 0px;
- padding: 10px 0px 10px 6px;
- left: 0px;
- width: 100%;
- display: none;
-}
-
-#site_nav_local_views h3 {
- font-size: 1em;
- margin-bottom: 0px;
-}
-
-#site_nav_local_views li {
- margin: 0 6px 0 0;
- clear: left;
-}
-
-#site_nav_local_views li li {
- float: left;
- clear: none;
- margin: 0 10px 6px 0;
-}
-
-#login #site_nav_local_views, #register #site_nav_local_views, #openidlogin #site_nav_local_views {
- display: block;
- margin-top: 25px;
-}
-
-#login #navtoggle, #register #navtoggle, #openidlogin #navtoggle {
- display: none;
-}
-
-#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li {
- float: left;
- clear: none;
- margin: 0 10px 6px 0;
-}
-
-#content {
- width: 96%;
- padding: 10px 2%;
- min-height: auto;
- left: 0px;
-}
-
-#content h1 {
- clear: left;
-}
-
-#footer {
- width: auto;
- padding: 10px 4px 4px 4px;
-}
-
-.input_forms {
- width: 102%;
- left: -2%;
- padding-left: 2%;
-}
-
-#input_form_nav li a {
- margin-right: 6px;
-}
-
-.input_form {
- clear: left;
- width: 100%;
- padding-bottom: 0px;
-}
-
-#input_form_status, #input_form_direct {
- padding-bottom: 40px;
-}
-
-.form_notice_placeholder .placeholder {
- width: 290px;
- margin-bottom: 20px;
-}
-
-.form_notice {
- float: left;
- width: 300px;
- padding: 4px 0px;
-}
-
-#form_notice-direct.form_notice {
- padding-top: 0px;
-}
-
-.form_notice textarea, #form_notice-direct.form_notice textarea {
- width: 292px;
- height: 36px;
- padding: 4px 4px 16px 4px;
- font-size: 1em;
-}
-
-.form_notice .count {
- position: absolute;
- top: 46px;
- left: 278px;
-}
-
-#form_notice-direct.form_notice .count {
- top: 76px;
- left: 278px;
-}
-
-.form_notice .error,
-.form_notice .success,
-.form_notice .notice-status {
- width: 285px;
-}
-
-
-/*input type=file no good in
-iPhone/iPod Touch, Android, Opera Mini Simulator
-*/
-
-.form_notice .notice_data-attach, .form_notice .notice_data-geo_wrap label, .form_notice .notice_data-geo_wrap input {
- display:none;
-}
-
-.checkbox-wrapper {
- margin-left: 0px;
- clear: left;
- float: left;
- width: 200px;
- z-index: 2;
-}
-
-.form_notice .checkbox-wrapper {
- margin-left: 0px;
-}
-
-.checkbox-wrapper label.checkbox {
- display: none !important;
-}
-
-.checkbox-wrapper #notice_private {
- display: inline;
- margin-top: 10px;
- margin-left: 20px;
-}
-
-.form_notice .checkbox-wrapper #notice_private {
- margin-left: 0px;
-}
-
-.checkbox-wrapper:before {
- content: "Send privately?";
-}
-
-.input_form .form_settings fieldset fieldset {
- width: 300px;
-}
-
-.input_form .form_settings label {
- display: inline;
-}
-
-label[for=blog-entry-content] {
- display: none !important;
-}
-
-.input_form .form_settings li input {
- width: 292px;
-}
-
-.input_form .form_settings li textarea {
- width: 292px;
-}
-
-.bookmarkform-thumbnail {
- display: none;
-}
-
-.input_form .form_settings .submit {
- margin: 10px 0;
- clear: left;
- float: left;
-}
-
-.form_notice input.submit {
- margin-top: -45px;
- width: 80px;
-}
-
-#form_notice-direct.form_notice #notice_action-submit {
- top: 148px;
-}
-
-.threaded-replies {
- width: 80%;
-}
-
-#content .notice .threaded-replies .notice {
- width: 95%;
-}
-
-.threaded-replies .placeholder {
- margin: 10px;
- width: 92%;
-}
-
-.threaded-replies .form_notice {
- margin-bottom: 10px;
-}
-
-.threaded-replies .form_notice textarea {
- width: 220px;
-}
-
-.threaded-replies .form_notice .count {
- left: 215px;
- top: 55px;
-}
-
-.threaded-replies .form_notice #notice_action-submit {
- position: relative;
- top: 0;
- bottom: 0px;
- left: 0;
- margin-top: 10px;
-}
-
-.threaded-replies .form_notice .error,
-.threaded-replies .form_notice .success,
-.threaded-replies .form_notice .notice-status {
- width: 210px;
-}
-
-.form_settings fieldset {
- margin-bottom: 7px;
-}
-
-.form_settings label {
- width: auto;
- display: block;
- text-align: left;
-}
-
-.form_settings .form_data li {
- margin-bottom: 10px;
-}
-
-.form_settings .form_data textarea,
-.form_settings .form_data select,
-.form_settings .form_data input {
- margin-left: 0;
-}
-
-.form_settings .form_data textarea {
- width: 98%;
-}
-
-.form_settings .form_data label {
- float: none;
-}
-
-.form_settings .form_data p.form_guide {
- margin-left: 0;
-}
-
-.form_settings input.checkbox, .form_settings input.radio {
- left: 0px;
-}
-
-.form_settings label.checkbox, .form_settings label.radio {
- left: -10px;
-}
-
-.notice .addressees:before {
- content: '\003E';
-}
+++ /dev/null
-.remote-profile-options {
- position: absolute;
- z-index: 999;
-
- background: url(../../../theme/base/images/icons/twotone/green/admin.gif) no-repeat 8px 8px white;
- border: solid 1px #c0c0c0;
-
- margin-top: 32px;
-
- padding: 6px 16px;
- padding-left: 32px;
-
- border-radius: 8px;
-
- box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3);
-
- display: none;
-}
+++ /dev/null
-/**
- * modplus.js
- * (c) 2010 StatusNet, Inc
- */
-
-$(function() {
- // Notice lists...
- $(document).on('mouseenter', '.notice .p-author', function(e) {
- var notice = $(this).closest('.notice');
- var popup = notice.find('.remote-profile-options');
- if (popup.length) {
- popup.fadeIn();
- }
- });
- $(document).on('mouseleave', '.notice', function(e) {
- var notice = $(this);
- var popup = notice.find('.remote-profile-options');
- if (popup.length) {
- popup.fadeOut();
- }
- });
-
- // Profile lists...
- $(document).on('mouseenter', '.profile .u-photo', function(e) {
- var profile = $(this).closest('.profile');
- var popup = profile.find('.remote-profile-options');
- if (popup.length) {
- popup.fadeIn();
- }
- });
- $(document).on('mouseleave', '.profile', function(e) {
- var profile = $(this);
- var popup = profile.find('.remote-profile-options');
- if (popup.length) {
- popup.fadeOut();
- }
- });
-
-});
+++ /dev/null
-Feed icon rendered from http://commons.wikimedia.org/wiki/File:Feed-icon.svg
-
-Originally distributed by the Mozilla Foundation under a MPL/GPL/LGPL tri-license:
-
-http://www.mozilla.org/MPL/boilerplate-1.1/mpl-tri-license-html
+++ /dev/null
-/*
- * StatusNet - a distributed open-source microblogging tool
- * Copyright (C) 2010, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category OStatus UI interaction
- * @package StatusNet
- * @author Sarven Capadisli <csarven@status.net>
- * @copyright 2010 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- * @note Everything in here should eventually migrate over to /js/util.js's SN.
- */
-
-SN.U.DialogBox = {
- Subscribe: function (a) {
- var f = a.parent().find('.form_settings');
- if (f.length > 0) {
- f.show();
- }
- else {
- $.ajax({
- type: 'GET',
- dataType: 'xml',
- url: a[0].href + ((a[0].href.match(/[\\?]/) === null)?'?':'&') + 'ajax=1',
- beforeSend: function (formData) {
- a.addClass('processing');
- },
- error: function (xhr, textStatus, errorThrown) {
- alert(errorThrown || textStatus);
- },
- success: function (data, textStatus, xhr) {
- if (typeof($('form', data)[0]) != 'undefined') {
- a.after(document._importNode($('form', data)[0], true));
-
- var form = a.parent().find('.form_settings');
-
- form
- .addClass('dialogbox')
- .append('<button class="close">×</button>');
-
- form
- .find('.submit')
- .addClass('submit_dialogbox')
- .removeClass('submit')
- .bind('click', function () {
- form.addClass('processing');
- });
-
- form.find('button.close').click(function (){
- form.hide();
-
- return false;
- });
-
- form.find('#profile').focus();
- }
-
- a.removeClass('processing');
- }
- });
- }
- }
-};
-
-SN.Init.Subscribe = function () {
- $(document).on('click',
- '.entity_subscribe .entity_remote_subscribe, .entity_tag .entity_remote_tag',
- function () { SN.U.DialogBox.Subscribe($(this)); return false; });
-};
-
-$(document).ready(function () {
- SN.Init.Subscribe();
-
- $('.form_remote_authorize').bind('submit', function () {
- $(this).addClass(SN.C.S.Processing); return true;
- });
-});
+++ /dev/null
-#form_ostatus_connect.dialogbox .form_data label,
-#form_ostatus_sub.dialogbox .form_data label {
- display: block;
- width: 100%;
- text-align: left;
-}
-
-#form_ostatus_connect.dialogbox .form_data input,
-#form_ostatus_sub.dialogbox .form_data input {
- width: 90%;
- padding: 4px;
- margin: 0;
- background-color: #fff !important;
- border: 1px solid #888;
-}
-
-#form_ostatus_connect.dialogbox .form_data .form_guide,
-#form_ostatus_sub.dialogbox .form_data .form_guide {
- margin-left: 0;
- background-color: #fff !important;
-}
-
-#form_ostatus_connect.dialogbox #ostatus_nickname,
-#form_ostatus_sub.dialogbox #ostatus_nickname {
- display: none;
-}
-
-#form_ostatus_connect.dialogbox input.submit_dialogbox,
-#form_ostatus_sub.dialogbox input.submit_dialogbox {
- padding: 4px;
-}
-
-.entity_remote_tag {
- background-position: 5px -257px;
-}
-
-.section .entity_remote_tag {
- background-position: 5px -257px;
-}
+++ /dev/null
-.u-photo.oembed {
- float: left;
- margin-bottom: 1ex;
- margin-right: 1em;
-}
-
-.p-author.oembed {
- font-style: italic;
-}
-
-.p-summary.oembed {
- line-height: 1.25em;
- max-height: 5em;
- overflow: auto;
-}
+++ /dev/null
-TCPSocket = Orbited.TCPSocket;
-
+++ /dev/null
-// Update the local timeline from a Orbited server
-
-var OrbitedUpdater = function()
-{
- return {
-
- init: function(server, port, timeline, username, password)
- {
- // set up stomp client.
- stomp = new STOMPClient();
-
- stomp.onmessageframe = function(frame) {
- RealtimeUpdate.receive(JSON.parse(frame.body));
- };
-
- stomp.onconnectedframe = function() {
- stomp.subscribe(timeline);
- }
-
- stomp.connect(server, port, username, password);
- }
- }
-}();
-
+++ /dev/null
-/* Poll specific styles */
-
-.poll-block {
- float: left;
- height: 16px;
- background: #8aa;
- margin-right: 8px;
-}
-
-.poll-winner {
- background: #4af;
-}
-
-.notice div.poll-content {
- opacity: 1;
-}
-
-#poll-response-submit {
- min-width: 100px;
-}
+++ /dev/null
-/* QnA */
-
-.question .answer-count, .qna-full-question .answer-count {
- display: block;
- clear: left;
-}
-
-.question .answer-count:before, .qna-full-question .answer-count:before {
- content: '(';
-}
-
-.question .answer-count:after, .qna-full-question .answer-count:after {
- content: ')';
-}
-
-.question .notice-answer {
- margin-left: 10px;
- padding-bottom: 10px;
-}
-
-ul.qna-dummy {
- clear: left;
- float: left;
- list-style-type: none;
- width: 458px;
- margin-left: 59px;
- padding-right: 2px;
- border-left: 3px solid #ECECF2;
- background: #fafafa;
- font-size: 1em;
-}
-
-ul.qna-dummy + ul.threaded-replies li.notice:first-child, li.notice-answer + li.notice {
- border-top: 2px dotted #eee;
- margin-top: -10px;
- padding-top: 10px;
-}
-
-.qna-dummy-placeholder input {
- margin: 10px 0px 10px 10px;
- width: 426px;
- color: #888;
- border: 1px solid #A6A6A6;
- padding: 4px 4px 4px 6px;
-}
-
-.question fieldset, .qna-full-question fieldset {
- margin: 0px;
-}
-
-.question fieldset legend, .qna-full-question fieldset legend, .answer fieldset legend {
- display: none;
-}
-
-.question label[for=qna-answer], .qna-full-question label[for=qna-answer] {
- display: none;
-}
-
-.question #qna-answer, .qna-full-question #qna-answer {
- width: 426px;
- height: 54px;
- padding: 6px 5px;
- font-size: 1.2em;
- margin-top: 10px;
- margin-bottom: 10px;
- border: 1px solid #A6A6A6;
-}
-
-.qna-full-question textarea {
- width: 508px;
-}
-
-.question p.best:before, .answer p.best:before {
- content: '[Best] ';
-}
-
-.question .question-closed {
- display: block;
- font-style: italic;
-}
-
-.question div.question-description {
- font-size: 1em;
- line-height: 1.36em;
- margin-top: 0px;
- opacity: 1;
-}
-
-.question div.answer-content, .qna-full-question div.answer-content {
- font-size: 1em;
- opacity: 1;
-}
-
-.qna-dummy-placeholder input, .question #qna-answer, .qna-full-question #qna-answer {
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-.question-description input.submit, .answer-content input.submit {
- height: auto;
- padding: 0px 10px;
- margin: 6px 0px 10px 0px;
- color:#fff;
- font-weight: bold;
- text-transform: uppercase;
- font-size: 1.1em;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
- border: 1px solid #d7621c;
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- background: #FB6104;
- background: -moz-linear-gradient(top, #ff9d63 0%, #fb6104 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9d63), color-stop(100%,#fb6104));
- background: -webkit-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- background: -o-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- background: -ms-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9d63', endColorstr='#fb6104',GradientType=0 );
- background: linear-gradient(top, #ff9d63 0%,#fb6104 100%);
-}
-
-#qna-answer-submit {
- min-width: 100px;
-}
-
-.question .question-description input.submit:hover, .question .answer-content input.submit:hover {
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
- background: #ff9d63;
- background: -moz-linear-gradient(top, #fb6104 0%, #fc8035 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fb6104), color-stop(100%,#fc8035));
- background: -webkit-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- background: -o-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- background: -ms-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb6104', endColorstr='#fc8035',GradientType=0 );
- background: linear-gradient(top, #fb6104 0%,#fc8035 100%);
-}
-
-.question .question-description #answer-form input.submit {
- margin-top: 0px;
-}
-
-.question p.best, .answer p.best {
- background: url(../images/rosette.png) no-repeat top left;
- padding-left: 20px;
-}
-
-.question p.best:before, .answer p.best:before {
- content: none !important;
-}
+++ /dev/null
-var QnA = {
-
- // @fixme: Should use ID
- close: function (form, best) {
- var notice = $(form).closest('li.h-entry.notice.question');
-
- notice.find('input#qna-best-answer,#qna-question-close').hide();
- notice.find('textarea').hide();
-
- var list = notice.find('ul');
-
- notice.find('ul > li.notice-answer-placeholder').remove();
- notice.find('ul > li.notice-answer').remove();
-
- if (best) {
- var p = notice.parent().find('div.question-description > form > fieldset > p');
- if (p.length != 0) {
- p.append($('<span class="question-closed">This question is closed.</span>'));
- }
- }
- },
-
- init: function () {
- QnA.NoticeInlineAnswerSetup();
-
- $(document).on('submit', 'form.form_question_show', function () {
- QnA.close(this);
- });
- $(document).on('submit', 'form.form_answer_show', function () {
- QnA.close(this, true);
- });
- },
-
- /**
- * Open up a question's inline answer box.
- *
- * @param {jQuery} notice: jQuery object containing one notice
- */
- NoticeInlineAnswerTrigger: function (notice) {
- // Find the notice we're replying to...
- var id = $($('.notice_id', notice)[0]).text();
- var parentNotice = notice;
-
- // Find the threaded replies view we'll be adding to...
- var list = notice.closest('.notices');
- if (list.hasClass('threaded-replies')) {
-
- // We're replying to a reply; use reply form on the end of this list.
- // We'll add our form at the end of this; grab the root notice.
- parentNotice = list.closest('.notice');
-
- } else {
-
- // We're replying to a parent notice; pull its threaded list
- // and we'll add on the end of it. Will add if needed.
- list = $('ul.threaded-replies', notice);
- }
-
- // See if the form's already open...
- var answerForm = $('.qna_answer_form', list);
-
- var hideReplyPlaceholders = function (notice) {
- // Do we still have a dummy answer placeholder? If so get rid of
- // reply place holders for this question. If the current user hasn't
- // answered the question we want to direct her to providing an
- // answer. She can still reply by hitting the reply button if she
- // really wants to.
- var dummyAnswer = $('ul.qna-dummy', notice);
- if (dummyAnswer.length > 0) {
- notice.find('li.notice-reply-placeholder').hide();
- }
- }
-
- var nextStep = function () {
- var dummyAnswer = $('ul.qna-dummy', notice);
- dummyAnswer.hide();
-
- // Set focus...
- var text = answerForm.find('textarea');
-
- if (text.length == 0) {
- throw "No textarea";
- }
-
- text.focus();
-
- $('body').click(function (e) {
- var dummyAnswer = $('ul.qna-dummy', notice);
- var style = dummyAnswer.attr('style');
- var ans = $(notice).find('li.h-entry.notice.anwer', notice)
- if (ans > 0) {
- hideReplyPlaceholders(notice);
- }
-
- var openAnswers = $('li.notice-answer');
- if (openAnswers.length > 0) {
- var target = $(e.target);
- openAnswers.each(function () {
-
- // Did we click outside this one?
- var answerItem = $(this);
- var parentNotice = answerItem.closest('li.notice');
-
- if (answerItem.has(e.target).length == 0) {
- var textarea = answerItem.find('.notice_data-text:first');
- var cur = $.trim(textarea.val());
- // Only close if there's been no edit.
- if (cur == '' || cur == textarea.data('initialText')) {
- answerItem.remove();
- dummyAnswer.show();
- }
- }
- });
- }
- });
- };
-
- // See if the form's already open...
- if (answerForm.length > 0 ) {
- nextStep();
- } else {
- var placeholder = list.find('li.qna-dummy-placeholder').hide();
-
- // Create the answer form entry at the end
- var answerItem = $('li.notice-answer', list);
-
- if (answerItem.length == 0) {
- answerItem = $('<li class="notice-answer"></li>');
- var intermediateStep = function (formMaster) {
- // @todo cache the form if we can (worth it?)
- var formEl = document._importNode(formMaster, true);
- $(formEl).data('NoticeFormSetup', true);
- answerItem.append(formEl);
- list.prepend(answerItem); // *before* the placeholder
- var form = answerForm = $(formEl);
- QnA.AnswerFormSetup(form);
- nextStep();
- };
-
- if (QnA.AnswerFormMaster) {
- // @todo if we had a cached for here's where we'd use it'
- intermediateStep(QnA.AnswerFormMaster);
- } else {
- // Fetch a fresh copy of the answer form over AJAX.
- // Warning: this can have a delay, which looks bad.
- // @fixme this fallback may or may not work
- var url = $('#answer-action').attr('value');
- $.get(url, {ajax: 1}, function (data, textStatus, xhr) {
- intermediateStep($('form', data)[0]);
- });
- }
- }
- }
- },
-
- /**
- * Setup function -- DOES NOT apply immediately.
- *
- * Sets up event handlers for inline reply mini-form placeholders.
- * Uses 'live' rather than 'bind', so applies to future as well as present items.
- */
- NoticeInlineAnswerSetup: function () {
-
- $(document).on('focus',
- 'li.qna-dummy-placeholder input.placeholder',
- function () {
- var notice = $(this).closest('li.notice');
- QnA.NoticeInlineAnswerTrigger(notice);
- return false;
- });
-
- },
-
- AnswerFormSetup: function (form) {
-
- form.find('textarea').focus();
-
- if (!form.data('NoticeFormSetup')) {
- alert('gargargar');
- }
-
- if (!form.data('AnswerFormSetup')) {
- //SN.U.NoticeLocationAttach(form);
- QnA.FormAnswerXHR(form);
- //SN.U.FormNoticeEnhancements(form);
- //SN.U.NoticeDataAttach(form);
- form.data('NoticeFormSetup', true);
- }
- },
-
- /**
- * Setup function -- DOES NOT trigger actions immediately.
- *
- * Sets up event handlers for special-cased async submission of the
- * answer-posting form, including some pre-post validation.
- *
- * @fixme geodata
- * @fixme refactor and unify with FormNoticeXHR in util.js
- *
- * @param {jQuery} form: jQuery object whose first element is a form
- *
- * @access public
- */
- FormAnswerXHR: function (form) {
-
- //SN.C.I.NoticeDataGeo = {};
- form.append('<input type="hidden" name="ajax" value="1"/>');
-
- // Make sure we don't have a mixed HTTP/HTTPS submission...
- form.attr('action', SN.U.RewriteAjaxAction(form.attr('action')));
-
- /**
- * Show a response feedback bit under the new-notice dialog.
- *
- * @param {String} cls: CSS class name to use ('error' or 'success')
- * @param {String} text
- * @access private
- */
- var showFeedback = function (cls, text) {
- form.append(
- $('<p class="form_response"></p>')
- .addClass(cls)
- .text(text)
- );
- };
-
- /**
- * Hide the previous response feedback, if any.
- */
- var removeFeedback = function () {
- form.find('.form_response').remove();
- };
-
- form.ajaxForm({
- dataType: 'xml',
- timeout: '60000',
-
- beforeSend: function (formData) {
-
- if (form.find('.notice_data-text:first').val() == '') {
- form.addClass(SN.C.S.Warning);
- return false;
- }
- form
- .addClass(SN.C.S.Processing)
- .find('.submit')
- .addClass(SN.C.S.Disabled)
- .attr(SN.C.S.Disabled, SN.C.S.Disabled);
- return true;
- },
- error: function (xhr, textStatus, errorThrown) {
- form
- .removeClass(SN.C.S.Processing)
- .find('.submit')
- .removeClass(SN.C.S.Disabled)
- .removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
- removeFeedback();
- if (textStatus == 'timeout') {
- // @fixme i18n
- showFeedback('error', 'Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.');
- }
- else {
- var response = SN.U.GetResponseXML(xhr);
- if ($('.'+SN.C.S.Error, response).length > 0) {
- form.append(document._importNode($('.'+SN.C.S.Error, response)[0], true));
- }
- else {
- if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
- form
- .resetForm()
- .find('.attach-status').remove();
- SN.U.FormNoticeEnhancements(form);
- }
- else {
- // @fixme i18n
- showFeedback('error', '(Sorry! We had trouble sending your notice ('+xhr.status+' '+xhr.statusText+'). Please report the problem to the site administrator if this happens again.');
- }
- }
- }
- },
- success: function (data, textStatus) {
-
- removeFeedback();
- var errorResult = $('#'+SN.C.S.Error, data);
- if (errorResult.length > 0) {
- showFeedback('error', errorResult.text());
- }
- else {
-
- // New notice post was successful. If on our timeline, show it!
- var notice = document._importNode($('li', data)[0], true);
- var notices = $('#notices_primary .notices:first');
- var answerItem = form.closest('li.notice-answer');
- var questionItem = form.closest('li.question');
-
- var dummyAnswer = form.find('ul.qna-dummy', questionItem).remove();
- if (answerItem.length > 0) {
-
- // If this is an inline answer, remove the form...
- var list = form.closest('.threaded-replies');
-
- // if the inserted notice's parent question needs it give it a placeholder
- var ans = questionItem.find('ul > li.h-entry.notice.answer');
- if (ans.length == 0) {
- SN.U.NoticeInlineReplyPlaceholder(questionItem);
- }
-
- var id = $(notice).attr('id');
- if ($("#"+id).length == 0) {
- $(notice).insertBefore(answerItem);
- answerItem.remove();
- } else {
- // NOP
- // Realtime came through before us...
- }
-
- } else if (notices.length > 0 && SN.U.belongsOnTimeline(notice)) {
-
- // Not a reply. If on our timeline, show it at the
- if ($('#'+notice.id).length === 0) {
- var notice_irt_value = form.find('#inreplyto').val();
- var notice_irt = '#notices_primary #notice-'+notice_irt_value;
- if($('body')[0].id == 'conversation') {
- if(notice_irt_value.length > 0 && $(notice_irt+' .notices').length < 1) {
- $(notice_irt).append('<ul class="notices"></ul>');
- }
- $($(notice_irt+' .notices')[0]).append(notice);
- }
- else {
- notices.prepend(notice);
- }
- $('#'+notice.id)
- .css({display:'none'})
- .fadeIn(2500);
- }
-
- // realtime injected the notice first
-
- } else {
- // Not on a timeline that this belongs on?
- // Just show a success message.
- // @fixme inline
- showFeedback('success', $('title', data).text());
- }
- }
- },
- complete: function (xhr, textStatus) {
- form
- .removeClass(SN.C.S.Processing)
- .find('.submit')
- .removeAttr(SN.C.S.Disabled)
- .removeClass(SN.C.S.Disabled);
- }
- });
- }
-};
-
-$(document).ready(function () {
- QnA.init();
-});
+++ /dev/null
-.realtime-popup address {
-display:none;
-}
-
-.realtime-popup #content {
-width:93.5%;
-}
-
-.realtime-popup #form_notice {
-margin:18px 0 18px 1.795%;
-width:93%;
-max-width:451px;
-}
-
-.realtime-popup #form_notice label[for=notice_data-text],
-.realtime-popup h1 {
-display:none;
-}
-
-.realtime-popup #form_notice label.notice_data-attach,
-.realtime-popup #form_notice input.notice_data-attach,
-.realtime-popup #form_notice label.notice_data-geo {
-top:0;
-}
-
-.realtime-popup #form_notice input.notice_data-attach {
-left:auto;
-right:0;
-}
-
-.realtime-popup .entity_profile {
-width:70%;
-}
-.realtime-popup .entity_actions {
-margin-left:1%;
-}
-
-#notices_primary {
-position:relative;
-}
-
-#realtime_actions {
-position: absolute;
-top: -20px;
-right: 0;
-margin: 0 0 11px 0;
-}
-
-#realtime_actions li {
-margin-left: 18px;
-list-style-type: none;
-float: left;
-}
-
-#realtime_actions button {
-width: 16px;
-height: 16px;
-display: block;
-border: none;
-cursor: pointer;
-text-indent: -9999px;
-float: left;
-}
-
-#realtime_play {
-margin-left: 4px;
-}
-
-#queued_counter {
-float:left;
-line-height:1.2;
-}
-
-#showstream #notices_primary {
-margin-top: 18px;
-}
+++ /dev/null
-/*
- * StatusNet - a distributed open-source microblogging tool
- * Copyright (C) 2009-2011, StatusNet, Inc.
- *
- * Add a notice encoded as JSON into the current timeline
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Plugin
- * @package StatusNet
- * @author Evan Prodromou <evan@status.net>
- * @author Sarven Capadisli <csarven@status.net>
- * @copyright 2009-2011 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-
-/**
- * This is the UI portion of the Realtime plugin base class, handling
- * queueing up and displaying of notices that have been received through
- * other code in one of the subclassed plugin implementations such as
- * Meteor or Orbited.
- *
- * Notices are passed in as JSON objects formatted per the Twitter-compatible
- * API.
- *
- * @todo Currently we duplicate a lot of formatting and layout code from
- * the PHP side of StatusNet, which makes it very difficult to maintain
- * this package. Internationalization as well as newer features such
- * as location data, customized source links for OStatus profiles,
- * and image thumbnails are not yet supported in Realtime yet because
- * they have not been implemented here.
- */
-RealtimeUpdate = {
- _userid: 0,
- _showurl: '',
- _keepaliveurl: '',
- _closeurl: '',
- _updatecounter: 0,
- _maxnotices: 50,
- _windowhasfocus: true,
- _documenttitle: '',
- _paused:false,
- _queuedNotices:[],
-
- /**
- * Initialize the Realtime plugin UI on a page with a timeline view.
- *
- * This function is called from a JS fragment inserted by the PHP side
- * of the Realtime plugin, and provides us with base information
- * needed to build a near-replica of StatusNet's NoticeListItem output.
- *
- * Once the UI is initialized, a plugin subclass will need to actually
- * feed data into the RealtimeUpdate object!
- *
- * @param {int} userid: local profile ID of the currently logged-in user
- * @param {String} showurl: URL for shownotice action, used when fetching formatting notices.
- * This URL contains a stub value of 0000000000 which will be replaced with the notice ID.
- *
- * @access public
- */
- init: function(userid, showurl)
- {
- RealtimeUpdate._userid = userid;
- RealtimeUpdate._showurl = showurl;
-
- RealtimeUpdate._documenttitle = document.title;
-
- $(window).bind('focus', function() {
- RealtimeUpdate._windowhasfocus = true;
-
- // Clear the counter on the window title when we focus in.
- RealtimeUpdate._updatecounter = 0;
- RealtimeUpdate.removeWindowCounter();
- });
-
- $(window).bind('blur', function() {
- $('#notices_primary .notice').removeClass('mark-top');
-
- $('#notices_primary .notice:first').addClass('mark-top');
-
- // While we're in the background, received messages will increment
- // a counter that we put on the window title. This will cause some
- // browsers to also flash or mark the tab or window title bar until
- // you seek attention (eg Firefox 4 pinned app tabs).
- RealtimeUpdate._windowhasfocus = false;
-
- return false;
- });
- },
-
- /**
- * Accept a notice in a Twitter-API JSON style and either show it
- * or queue it up, depending on whether the realtime display is
- * active.
- *
- * The meat of a Realtime plugin subclass is to provide a substrate
- * transport to receive data and shove it into this function. :)
- *
- * Note that the JSON data is extended from the standard API return
- * with additional fields added by RealtimePlugin's PHP code.
- *
- * @param {Object} data: extended JSON API-formatted notice
- *
- * @access public
- */
- receive: function(data)
- {
- if (RealtimeUpdate.isNoticeVisible(data.id)) {
- // Probably posted by the user in this window, and so already
- // shown by the AJAX form handler. Ignore it.
- return;
- }
- if (RealtimeUpdate._paused === false) {
- RealtimeUpdate.purgeLastNoticeItem();
-
- RealtimeUpdate.insertNoticeItem(data);
- }
- else {
- RealtimeUpdate._queuedNotices.push(data);
-
- RealtimeUpdate.updateQueuedCounter();
- }
-
- RealtimeUpdate.updateWindowCounter();
- },
-
- /**
- * Add a visible representation of the given notice at the top of
- * the current timeline.
- *
- * If the notice is already in the timeline, nothing will be added.
- *
- * @param {Object} data: extended JSON API-formatted notice
- *
- * @fixme while core UI JS code is used to activate the AJAX UI controls,
- * the actual production of HTML (in makeNoticeItem and its subs)
- * duplicates core code without plugin hook points or i18n support.
- *
- * @access private
- */
- insertNoticeItem: function(data) {
- // Don't add it if it already exists
- if (RealtimeUpdate.isNoticeVisible(data.id)) {
- return;
- }
-
- RealtimeUpdate.makeNoticeItem(data, function(noticeItem) {
- // Check again in case it got shown while we were waiting for data...
- if (RealtimeUpdate.isNoticeVisible(data.id)) {
- return;
- }
- var noticeItemID = $(noticeItem).attr('id');
-
- var list = $("#notices_primary .notices:first")
- var prepend = true;
-
- var threaded = list.hasClass('threaded-notices');
- if (threaded && data.in_reply_to_status_id) {
- // aho!
- var parent = $('#notice-' + data.in_reply_to_status_id);
- if (parent.length == 0) {
- // @todo fetch the original, insert it, and finish the rest
- } else {
- // Check the parent notice to make sure it's not a reply itself.
- // If so, use it's parent as the parent.
- var parentList = parent.closest('.notices');
- if (parentList.hasClass('threaded-replies')) {
- parent = parentList.closest('.notice');
- }
- list = parent.find('.threaded-replies');
- if (list.length == 0) {
- list = $('<ul class="notices threaded-replies xoxo"></ul>');
- parent.append(list);
- SN.U.NoticeInlineReplyPlaceholder(parent);
- }
- prepend = false;
- }
- }
-
- var newNotice = $(noticeItem);
- if (prepend) {
- list.prepend(newNotice);
- } else {
- var placeholder = list.find('li.notice-reply-placeholder')
- if (placeholder.length > 0) {
- newNotice.insertBefore(placeholder)
- } else {
- newNotice.appendTo(list);
- }
- }
- newNotice.css({display:"none"}).fadeIn(1000);
-
- SN.U.NoticeReplyTo($('#'+noticeItemID));
- SN.U.NoticeWithAttachment($('#'+noticeItemID));
- });
- },
-
- /**
- * Check if the given notice is visible in the timeline currently.
- * Used to avoid duplicate processing of notices that have been
- * displayed by other means.
- *
- * @param {number} id: notice ID to check
- *
- * @return boolean
- *
- * @access private
- */
- isNoticeVisible: function(id) {
- return ($("#notice-"+id).length > 0);
- },
-
- /**
- * Trims a notice off the end of the timeline if we have more than the
- * maximum number of notices visible.
- *
- * @access private
- */
- purgeLastNoticeItem: function() {
- if ($('#notices_primary .notice').length > RealtimeUpdate._maxnotices) {
- $("#notices_primary .notice:last").remove();
- }
- },
-
- /**
- * If the window/tab is in background, increment the counter of newly
- * received notices and append it onto the window title.
- *
- * Has no effect if the window is in foreground.
- *
- * @access private
- */
- updateWindowCounter: function() {
- if (RealtimeUpdate._windowhasfocus === false) {
- RealtimeUpdate._updatecounter += 1;
- document.title = '('+RealtimeUpdate._updatecounter+') ' + RealtimeUpdate._documenttitle;
- }
- },
-
- /**
- * Clear the background update counter from the window title.
- *
- * @access private
- *
- * @fixme could interfere with anything else trying similar tricks
- */
- removeWindowCounter: function() {
- document.title = RealtimeUpdate._documenttitle;
- },
-
- /**
- * Builds a notice HTML block from JSON API-style data;
- * loads data from server, so runs async.
- *
- * @param {Object} data: extended JSON API-formatted notice
- * @param {function} callback: function(DOMNode) to receive new code
- *
- * @access private
- */
- makeNoticeItem: function(data, callback)
- {
- var url = RealtimeUpdate._showurl.replace('0000000000', data.id);
- $.get(url, {ajax: 1}, function(data, textStatus, xhr) {
- var notice = $('li.notice:first', data);
- if (notice.length) {
- var node = document._importNode(notice[0], true);
- callback(node);
- }
- });
- },
-
- /**
- * Creates a favorite button.
- *
- * @param {number} id: notice ID to work with
- * @param {String} session_key: session token for form CSRF protection
- * @return {String} HTML fragment
- *
- * @fixme this replicates core StatusNet code, making maintenance harder
- * @fixme sloppy HTML building (raw concat without escaping)
- * @fixme no i18n support
- *
- * @access private
- */
- makeFavoriteForm: function(id, session_key)
- {
- var ff;
-
- ff = "<form id=\"favor-"+id+"\" class=\"form_favor\" method=\"post\" action=\""+RealtimeUpdate._favorurl+"\">"+
- "<fieldset>"+
- "<legend>Favor this notice</legend>"+
- "<input name=\"token\" type=\"hidden\" id=\"token-"+id+"\" value=\""+session_key+"\"/>"+
- "<input name=\"notice\" type=\"hidden\" id=\"notice-n"+id+"\" value=\""+id+"\"/>"+
- "<input type=\"submit\" id=\"favor-submit-"+id+"\" name=\"favor-submit-"+id+"\" class=\"submit\" value=\"Favor\" title=\"Favor this notice\"/>"+
- "</fieldset>"+
- "</form>";
- return ff;
- },
-
- /**
- * Creates a reply button.
- *
- * @param {number} id: notice ID to work with
- * @param {String} nickname: nick of the user to whom we are replying
- * @return {String} HTML fragment
- *
- * @fixme this replicates core StatusNet code, making maintenance harder
- * @fixme sloppy HTML building (raw concat without escaping)
- * @fixme no i18n support
- *
- * @access private
- */
- makeReplyLink: function(id, nickname)
- {
- var rl;
- rl = "<a class=\"notice_reply\" href=\""+RealtimeUpdate._replyurl+"?replyto="+nickname+"\" title=\"Reply to this notice\">Reply <span class=\"notice_id\">"+id+"</span></a>";
- return rl;
- },
-
- /**
- * Creates a repeat button.
- *
- * @param {number} id: notice ID to work with
- * @param {String} session_key: session token for form CSRF protection
- * @return {String} HTML fragment
- *
- * @fixme this replicates core StatusNet code, making maintenance harder
- * @fixme sloppy HTML building (raw concat without escaping)
- * @fixme no i18n support
- *
- * @access private
- */
- makeRepeatForm: function(id, session_key)
- {
- var rf;
- rf = "<form id=\"repeat-"+id+"\" class=\"form_repeat\" method=\"post\" action=\""+RealtimeUpdate._repeaturl+"\">"+
- "<fieldset>"+
- "<legend>Repeat this notice?</legend>"+
- "<input name=\"token\" type=\"hidden\" id=\"token-"+id+"\" value=\""+session_key+"\"/>"+
- "<input name=\"notice\" type=\"hidden\" id=\"notice-"+id+"\" value=\""+id+"\"/>"+
- "<input type=\"submit\" id=\"repeat-submit-"+id+"\" name=\"repeat-submit-"+id+"\" class=\"submit\" value=\"Yes\" title=\"Repeat this notice\"/>"+
- "</fieldset>"+
- "</form>";
-
- return rf;
- },
-
- /**
- * Creates a delete button.
- *
- * @param {number} id: notice ID to create a delete link for
- * @return {String} HTML fragment
- *
- * @fixme this replicates core StatusNet code, making maintenance harder
- * @fixme sloppy HTML building (raw concat without escaping)
- * @fixme no i18n support
- *
- * @access private
- */
- makeDeleteLink: function(id)
- {
- var dl, delurl;
- delurl = RealtimeUpdate._deleteurl.replace("0000000000", id);
-
- dl = "<a class=\"notice_delete\" href=\""+delurl+"\" title=\"Delete this notice\">Delete</a>";
-
- return dl;
- },
-
- /**
- * Adds a control widget at the top of the timeline view, containing
- * pause/play and popup buttons.
- *
- * @param {String} url: full URL to the popup window variant of this timeline page
- * @param {String} timeline: string key for the timeline (eg 'public' or 'evan-all')
- * @param {String} path: URL to the base directory containing the Realtime plugin,
- * used to fetch resources if needed.
- *
- * @todo timeline and path parameters are unused and probably should be removed.
- *
- * @access private
- */
- initActions: function(url, timeline, path, keepaliveurl, closeurl)
- {
- $('#notices_primary').prepend('<ul id="realtime_actions"><li id="realtime_playpause"></li><li id="realtime_timeline"></li></ul>');
-
- RealtimeUpdate._pluginPath = path;
- RealtimeUpdate._keepaliveurl = keepaliveurl;
- RealtimeUpdate._closeurl = closeurl;
-
-
- // On unload, let the server know we're no longer listening
- $(window).unload(function() {
- $.ajax({
- type: 'POST',
- url: RealtimeUpdate._closeurl});
- });
-
- setInterval(function() {
- $.ajax({
- type: 'POST',
- url: RealtimeUpdate._keepaliveurl});
-
- }, 15 * 60 * 1000 ); // every 15 min; timeout in 30 min
-
- RealtimeUpdate.initPlayPause();
- RealtimeUpdate.initAddPopup(url, timeline, RealtimeUpdate._pluginPath);
- },
-
- /**
- * Initialize the state of the play/pause controls.
- *
- * If the browser supports the localStorage interface, we'll attempt
- * to retrieve a pause state from there; otherwise we default to paused.
- *
- * @access private
- */
- initPlayPause: function()
- {
- if (typeof(localStorage) == 'undefined') {
- RealtimeUpdate.showPause();
- }
- else {
- if (localStorage.getItem('RealtimeUpdate_paused') === 'true') {
- RealtimeUpdate.showPlay();
- }
- else {
- RealtimeUpdate.showPause();
- }
- }
- },
-
- /**
- * Switch the realtime UI into paused state.
- * Uses SN.msg i18n system for the button label and tooltip.
- *
- * State will be saved and re-used next time if the browser supports
- * the localStorage interface (via setPause).
- *
- * @access private
- */
- showPause: function()
- {
- RealtimeUpdate.setPause(false);
- RealtimeUpdate.showQueuedNotices();
- RealtimeUpdate.addNoticesHover();
-
- $('#realtime_playpause').remove();
- $('#realtime_actions').prepend('<li id="realtime_playpause"><button id="realtime_pause" class="pause"></button></li>');
- $('#realtime_pause').text(SN.msg('realtime_pause'))
- .attr('title', SN.msg('realtime_pause_tooltip'))
- .bind('click', function() {
- RealtimeUpdate.removeNoticesHover();
- RealtimeUpdate.showPlay();
- return false;
- });
- },
-
- /**
- * Switch the realtime UI into play state.
- * Uses SN.msg i18n system for the button label and tooltip.
- *
- * State will be saved and re-used next time if the browser supports
- * the localStorage interface (via setPause).
- *
- * @access private
- */
- showPlay: function()
- {
- RealtimeUpdate.setPause(true);
- $('#realtime_playpause').remove();
- $('#realtime_actions').prepend('<li id="realtime_playpause"><span id="queued_counter"></span> <button id="realtime_play" class="play"></button></li>');
- $('#realtime_play').text(SN.msg('realtime_play'))
- .attr('title', SN.msg('realtime_play_tooltip'))
- .bind('click', function() {
- RealtimeUpdate.showPause();
- return false;
- });
- },
-
- /**
- * Update the internal pause/play state.
- * Do not call directly; use showPause() and showPlay().
- *
- * State will be saved and re-used next time if the browser supports
- * the localStorage interface.
- *
- * @param {boolean} state: true = paused, false = not paused
- *
- * @access private
- */
- setPause: function(state)
- {
- RealtimeUpdate._paused = state;
- if (typeof(localStorage) != 'undefined') {
- localStorage.setItem('RealtimeUpdate_paused', RealtimeUpdate._paused);
- }
- },
-
- /**
- * Go through notices we have previously received while paused,
- * dumping them into the timeline view.
- *
- * @fixme long timelines are not trimmed here as they are for things received while not paused
- *
- * @access private
- */
- showQueuedNotices: function()
- {
- $.each(RealtimeUpdate._queuedNotices, function(i, n) {
- RealtimeUpdate.insertNoticeItem(n);
- });
-
- RealtimeUpdate._queuedNotices = [];
-
- RealtimeUpdate.removeQueuedCounter();
- },
-
- /**
- * Update the Realtime widget control's counter of queued notices to show
- * the current count. This will be called after receiving and queueing
- * a notice while paused.
- *
- * @access private
- */
- updateQueuedCounter: function()
- {
- $('#realtime_playpause #queued_counter').html('('+RealtimeUpdate._queuedNotices.length+')');
- },
-
- /**
- * Clear the Realtime widget control's counter of queued notices.
- *
- * @access private
- */
- removeQueuedCounter: function()
- {
- $('#realtime_playpause #queued_counter').empty();
- },
-
- /**
- * Set up event handlers on the timeline view to automatically pause
- * when the mouse is over the timeline, as this indicates the user's
- * desire to interact with the UI. (Which is hard to do when it's moving!)
- *
- * @access private
- */
- addNoticesHover: function()
- {
- $('#notices_primary .notices').hover(
- function() {
- if (RealtimeUpdate._paused === false) {
- RealtimeUpdate.showPlay();
- }
- },
- function() {
- if (RealtimeUpdate._paused === true) {
- RealtimeUpdate.showPause();
- }
- }
- );
- },
-
- /**
- * Tear down event handlers on the timeline view to automatically pause
- * when the mouse is over the timeline.
- *
- * @fixme this appears to remove *ALL* event handlers from the timeline,
- * which assumes that nobody else is adding any event handlers.
- * Sloppy -- we should only remove the ones we add.
- *
- * @access private
- */
- removeNoticesHover: function()
- {
- $('#notices_primary .notices').unbind();
- },
-
- /**
- * UI initialization, to be called from Realtime plugin code on regular
- * timeline pages.
- *
- * Adds a button to the control widget at the top of the timeline view,
- * allowing creation of a popup window with a more compact real-time
- * view of the current timeline.
- *
- * @param {String} url: full URL to the popup window variant of this timeline page
- * @param {String} timeline: string key for the timeline (eg 'public' or 'evan-all')
- * @param {String} path: URL to the base directory containing the Realtime plugin,
- * used to fetch resources if needed.
- *
- * @todo timeline and path parameters are unused and probably should be removed.
- *
- * @access public
- */
- initAddPopup: function(url, timeline, path)
- {
- $('#realtime_timeline').append('<button id="realtime_popup"></button>');
- $('#realtime_popup').text(SN.msg('realtime_popup'))
- .attr('title', SN.msg('realtime_popup_tooltip'))
- .bind('click', function() {
- window.open(url,
- '',
- 'toolbar=no,resizable=yes,scrollbars=yes,status=no,menubar=no,personalbar=no,location=no,width=500,height=550');
-
- return false;
- });
- },
-
- /**
- * UI initialization, to be called from Realtime plugin code on popup
- * compact timeline pages.
- *
- * Sets up links in notices to open in a new window.
- *
- * @fixme fails to do the same for UI links like context view which will
- * look bad in the tiny chromeless window.
- *
- * @access public
- */
- initPopupWindow: function()
- {
- $('.notices .entry-title a, .notices .e-content a').bind('click', function() {
- window.open(this.href, '');
-
- return false;
- });
-
- $('#showstream .entity_profile').css({'width':'69%'});
- }
-}
-
+++ /dev/null
-window.buildAttachmentHTML = function(attachments){
- var attachmentHTML = '';
- var oembedHTML = '';
- var quotedNotices = [];
- var attachmentNum = 0;
- var oembedNum = 0;
- var urlsToHide = [];
- if(typeof attachments != "undefined") {
- $.each(attachments, function(){
-
- // quoted notices
- if(typeof this.quoted_notice != 'undefined') {
-
- var quotedContent = this.quoted_notice.content;
-
- // quoted notice's attachments' thumb urls
- var quotedAttachmentsHTML = '';
- var quotedAttachmentsHTMLbefore = '';
- var quotedAttachmentsHTMLafter = '';
- if(typeof this.quoted_notice.attachments != 'undefined' && this.quoted_notice.attachments.length > 0) {
- quotedAttachmentsHTML += '<div class="quoted-notice-attachments quoted-notice-attachments-num-' + this.quoted_notice.attachments.length + '">'
- $.each(this.quoted_notice.attachments,function(k,qAttach){
- quotedAttachmentsHTML += '<div class="quoted-notice-img-container" style="background-image:url(\'' + qAttach.thumb_url + '\')"><img class="quoted-notice-img" src="' + qAttach.thumb_url + '" /></div>';
- // remove attachment string from content
- quotedContent = quotedContent.split(window.siteInstanceURL + 'attachment/' + qAttach.attachment_id).join('');
- });
- quotedAttachmentsHTML += '</div>';
-
- // if there is only one attachment, it goes before, otherwise after
- if(this.quoted_notice.attachments.length == 1) {
- quotedAttachmentsHTMLbefore = quotedAttachmentsHTML;
- }
- else {
- quotedAttachmentsHTMLafter = quotedAttachmentsHTML;
- }
- }
-
- var quotedNoticeHTML = quotedAttachmentsHTMLbefore + '\
- <div class="quoted-notice-header">\
- <span class="quoted-notice-author-fullname">' + this.quoted_notice.fullname + '</span>\
- <span class="quoted-notice-author-nickname">' + this.quoted_notice.nickname + '</span>\
- </div>\
- <div class="quoted-notice-body">' + $.trim(quotedContent) + '</div>\
- ' + quotedAttachmentsHTMLafter;
-
- quotedNotices.push({
- url: this.url,
- html: quotedNoticeHTML,
- href: window.siteInstanceURL + 'notice/' + this.quoted_notice.id,
- class:'quoted-notice'
- });
- }
-
- // if we have Twitter oembed data, we add is as quotes
- else if(typeof this.oembed != 'undefined'
- && this.oembed !== false
- && this.oembed.provider == 'Twitter') {
-
- var twitterHTML = '<div class="oembed-item-header">\
- <span class="oembed-item-title">' + this.oembed.author_name + '</span>\
- <span class="oembed-username">' + this.oembed.title + '</span>\
- </div>\
- <div class="oembed-item-body">' + this.oembed.oembedHTML + '</div>\
- <div class="oembed-item-footer">\
- <span class="oembed-item-provider">' + this.oembed.provider + '</span>\
- </div>';
- quotedNotices.push({
- url: this.url,
- html: twitterHTML,
- href: this.url,
- class:'oembed-item'
- });
- }
- // if we have other oembed data (but not for photos and youtube, we handle those later)
- else if(typeof this.oembed != 'undefined'
- && this.oembed !== false
- && this.oembed.title !== null
- && this.oembed.provider != 'YouTube'
- && this.oembed.provider != 'Vimeo'
- && this.oembed.type != 'photo') {
-
- var oembedImage = '';
- // only local images
- if(typeof this.thumb_url != 'undefined'
- && this.thumb_url !== null
- && isLocalURL(this.thumb_url)) {
- oembedImage = '<div class="oembed-img-container" style="background-image:url(\'' + this.thumb_url + '\')"><img class="oembed-img" src="' + this.thumb_url + '" /></div>';
- }
-
- var oembedBody = '';
-
- // don't add body if html it's too similar (80%) to the title (wordpress does this..)
- if(this.oembed.oembedHTML !== null
- && this.oembed.oembedHTML.length > 0) {
- if(this.oembed.oembedHTML.length > 200) {
- this.oembed.oembedHTML = this.oembed.oembedHTML.substring(0,200) + '…';
- }
- if(stringSimilarity(this.oembed.oembedHTML,this.oembed.title.substring(0,200)) < 80) {
- oembedBody = this.oembed.oembedHTML;
- }
- }
-
- if(this.oembed.provider === null) {
- var oembedProvider = this.url;
- var oembedProviderURL = '';
- }
- else {
- var oembedProvider = this.oembed.provider;
- var oembedProviderURL = removeProtocolFromUrl(this.oembed.provider_url);
- // remove trailing /
- if(oembedProviderURL.slice(-1) == '/') {
- oembedProviderURL = oembedProviderURL.slice(0,-1);
- }
- }
-
- // If the oembed data is generated by Qvitter, we know a better way of showing the title
- var oembedTitle = this.oembed.title;
- var oembedTitleHTML = '<span class="oembed-item-title">' + oembedTitle + '</span>';
- if(oembedTitle.slice(-10) == ' (Qvitter)') {
- var oembedTimePosted = parseTwitterLongDate(oembedTitle.slice(0,-10));
- var oembedGNUsocialUsername = this.oembed.author_name.substring(this.oembed.author_name.lastIndexOf('(')+1,this.oembed.author_name.lastIndexOf(')'));
- var oembedGNUsocialFullname = this.oembed.author_name.slice(0,-(oembedGNUsocialUsername.length+3));
- oembedTitleHTML = '<span class="oembed-item-title">' + oembedGNUsocialFullname + '</span>\
- <span class="oembed-username">@' + oembedGNUsocialUsername + '</span>';
- }
-
-
- oembedHTML += '<a href="' + this.url + '" class="oembed-item">\
- ' + oembedImage + '\
- <div class="oembed-item-header">\
- ' + oembedTitleHTML + '\
- </div>\
- <div class="oembed-item-body">' + oembedBody + '</div>\
- <div class="oembed-item-footer">\
- <span class="oembed-item-provider">' + oembedProvider + '</span>\
- <span class="oembed-item-provider-url">' + oembedProviderURL + '</span>\
- </div>\
- </a>';
- oembedNum++;
- }
- // if there's a local thumb_url we assume this is a image or video
- else if(typeof this.thumb_url != 'undefined'
- && this.thumb_url !== null
- && isLocalURL(this.thumb_url)) {
- var bigThumbW = 1000;
- var bigThumbH = 3000;
- if(bigThumbW > window.siteMaxThumbnailSize) {
- bigThumbW = window.siteMaxThumbnailSize;
- }
- if(bigThumbH > window.siteMaxThumbnailSize) {
- bigThumbH = window.siteMaxThumbnailSize;
- }
-
- // very long landscape images should not have background-size:cover
- var noCoverClass='';
- if(this.width/this.height > 2) {
- noCoverClass=' no-cover';
- }
-
- // play button for videos and animated gifs
- var playButtonClass = '';
- if(typeof this.animated != 'undefined' && this.animated === true
- || (this.url.indexOf('://www.youtube.com') > -1 || this.url.indexOf('://youtu.be') > -1)
- || this.url.indexOf('://vimeo.com') > -1) {
- playButtonClass = ' play-button';
- }
-
- // gif-class
- var animatedGifClass = '';
- if(typeof this.animated != 'undefined' && this.animated === true) {
- var animatedGifClass = ' animated-gif';
- }
-
- // animated gifs always get default small non-animated thumbnail
- if(this.animated === true) {
- var img_url = this.thumb_url;
- }
- // if no dimensions are set, go with default thumb
- else if(this.width === null && this.height === null) {
- var img_url = this.thumb_url;
- }
- // large images get large thumbnail
- else if(this.width > 1000) {
- var img_url = this.large_thumb_url;
- }
- // no thumbnails for small local images
- else if (this.url.indexOf(window.siteInstanceURL) === 0) {
- var img_url = this.url;
- }
- // small thumbnail for small remote images
- else {
- var img_url = this.thumb_url;
- }
-
- var urlToHide = window.siteInstanceURL + 'attachment/' + this.id;
-
- attachmentHTML += '<a data-local-attachment-url="' + urlToHide + '" style="background-image:url(\'' + img_url + '\')" class="thumb-container' + noCoverClass + playButtonClass + animatedGifClass + ' ' + CSSclassNameByHostFromURL(this.url) + '" href="' + this.url + '"><img class="attachment-thumb" data-mime-type="' + this.mimetype + '" src="' + img_url + '"/ data-width="' + this.width + '" data-height="' + this.height + '" data-full-image-url="' + this.url + '" data-thumb-url="' + img_url + '"></a>';
- urlsToHide.push(urlToHide); // hide this attachment url from the queet text
- attachmentNum++;
- }
- else if (this.mimetype == 'image/svg+xml') {
- var urlToHide = window.siteInstanceURL + 'attachment/' + this.id;
- attachmentHTML += '<a data-local-attachment-url="' + urlToHide + '" style="background-image:url(\'' + this.url + '\')" class="thumb-container" href="' + this.url + '"><img class="attachment-thumb" data-mime-type="' + this.mimetype + '" src="' + this.url + '"/></a>';
- urlsToHide.push(urlToHide); // hide this attachment url from the queet text
- attachmentNum++;
- }
- });
- }
- return { html: '<div class="oembed-data oembed-num-' + oembedNum + '">' + oembedHTML + '</div><div class="queet-thumbs thumb-num-' + attachmentNum + '"><div class="sensitive-blocker"> </div>' + attachmentHTML + '</div>',
- urlsToHide: urlsToHide,
- quotedNotices: quotedNotices
- };
- }
-
-
-window.sensitiveContentOriginalBuildQueetHtml = window.buildQueetHtml;
-
-window.buildQueetHtml = function(obj, idInStream, extraClasses, requeeted_by, isConversation) {
- //add tags to json if they don't exit
- if (obj.tags && obj.tags.length > 0) {
- for (var tagI = 0; tagI < obj.tags.length; ++tagI) {
- extraClasses += (' data-tag-' + obj.tags[tagI]);
- if (window.loggedIn.hide_sensitive && obj.tags[tagI] === 'nsfw') extraClasses += ' sensitive-notice';
- }
- }
-
- return window.sensitiveContentOriginalBuildQueetHtml(obj, idInStream, extraClasses, requeeted_by, isConversation);
-}
\ No newline at end of file
+++ /dev/null
-icon-sharing.png is from http://www.openshareicons.com/
-
-Shareaholic has made the Open Share Icon freely available for use by others under the
-Creative Commons Attribution-Share Alike 3.0 Unported License.
-
-
-icon-twitter.png is from http://twitter.com/favicon.ico and distributed under fair use
-icon-facebook.png is from http://facebook.com/favicon.ico and distributed under fair use
-icon-statusnet.png is from http://status.net/favicon.ico and distributed under fair use
+++ /dev/null
-.notice-share {
- width: 24px;
- float: right;
-}
-
-.notice-share li a {
- display: block;
- width: 16px;
- height: 16px;
- background: url(icon-share.png) no-repeat;
-}
-.notice-share li.notice-share-twitter a {
- background-image: url(icon-twitter.png);
-}
-.notice-share li.notice-share-facebook a {
- background-image: url(icon-facebook.png);
-}
-.notice-share li.notice-share-statusnet a {
- background-image: url(icon-statusnet.png);
-}
-.notice-share li a span {
- display: none;
-}
+++ /dev/null
-/* undo insane stuff from core styles */
-#add-mirror-wizard img {
- display: inline;
-}
-
-/* we need #something to override most of the #content crap */
-
-#add-mirror-wizard {
- margin-left: 20px;
- margin-right: 20px;
-}
-
-#add-mirror-wizard .provider-list table {
- width: 100%;
-}
-
-#add-mirror-wizard .provider-heading img {
- vertical-align: middle;
-}
-#add-mirror-wizard .provider-heading {
- cursor: pointer;
-}
-#add-mirror-wizard .provider-detail fieldset {
- margin-top: 8px; /* hack */
- margin-bottom: 8px; /* hack */
-}
\ No newline at end of file
+++ /dev/null
-$(function() {
- /**
- * Append 'ajax=1' parameter onto URL.
- */
- function ajaxize(url) {
- if (url.indexOf('?') == '-1') {
- return url + '?ajax=1';
- } else {
- return url + '&ajax=1';
- }
- }
-
- var addMirror = $('#add-mirror');
- var wizard = $('#add-mirror-wizard');
- if (wizard.length > 0) {
- var list = wizard.find('.provider-list');
- var providers = list.find('.provider-heading');
- providers.click(function(event) {
- console.log(this);
- var targetUrl = $(this).find('a').attr('href');
- if (targetUrl) {
- // Make sure we don't accidentally follow the direct link
- event.preventDefault();
-
- var node = this;
- function showNew() {
- var detail = $('<div class="provider-detail" style="display: none"></div>').insertAfter(node);
- detail.load(ajaxize(targetUrl), function(responseText, testStatus, xhr) {
- detail.slideDown('fast', function() {
- detail.find('input[type="text"]').focus();
- });
- });
- }
-
- var old = addMirror.find('.provider-detail');
- if (old.length) {
- old.slideUp('fast', function() {
- old.remove();
- showNew();
- });
- } else {
- showNew();
- }
- }
- });
- }
-});
\ No newline at end of file
+++ /dev/null
-jQuery(function($){
- $('#notice_data-text').bind('keydown',function(e){
- if (e.which==9) {
- setTimeout(function(){ $('#notice_action-submit').focus(); },15);
- }
- });
-});
<?php
+// This file is part of GNU social - https://www.gnu.org/software/social
+//
+// GNU social is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// GNU social is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
+
/**
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2008, 2009, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category StatusNet
- * @package StatusNet
- * @author Brenda Wallace <shiny@cpan.org>
- * @author Brion Vibber <brion@pobox.com>
- * @author Christopher Vollick <psycotica0@gmail.com>
- * @author CiaranG <ciaran@ciarang.com>
- * @author Craig Andrews <candrews@integralblue.com>
- * @author Evan Prodromou <evan@controlezvous.ca>
- * @author Gina Haeussge <osd@foosel.net>
- * @author James Walker <walkah@walkah.net>
- * @author Jeffery To <jeffery.to@gmail.com>
- * @author Mike Cochrane <mikec@mikenz.geek.nz>
- * @author Robin Millette <millette@controlyourself.ca>
- * @author Sarven Capadisli <csarven@controlyourself.ca>
- * @author Tom Adams <tom@holizz.com>
- * @author Zach Copley <zach@status.net>
- * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
+ * Main GNU social entry point
*
- * @license GNU Affero General Public License http://www.gnu.org/licenses/
+ * @package GNUsocial
+ * @author Brenda Wallace <shiny@cpan.org>
+ * @author Brion Vibber <brion@pobox.com>
+ * @author Brion Vibber <brion@status.net>
+ * @author Christopher Vollick <candrews@integralblue.com>
+ * @author CiaranG <ciaran@ciarang.com>
+ * @author Craig Andrews <candrews@integralblue.com>
+ * @author Craig Andrews <evan@status.net>
+ * @author Evan Prodromou <evan@controlezvous.ca>
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @author Evan Prodromou <evan@prodromou.name>
+ * @author Evan Prodromou <evan@status.net>
+ * @author Gina Haeussge <osd@foosel.net>
+ * @author James Walker <walkah@walkah.net>
+ * @author Jeffery To <candrews@integralblue.com>
+ * @author Jeffery To <jeffery.to@gmail.com>
+ * @author Mikael Nordfeldth <mmn@hethane.se>
+ * @author Mike Cochrane <mikec@mikenz.geek.nz>
+ * @author Robin Millette <millette@controlyourself.ca>
+ * @author Sarven Capadisli <csarven@controlyourself.ca>
+ * @author Sarven Capadisli <csarven@status.net>
+ * @author Siebrand Mazeland <s.mazeland@xs4all.nl>
+ * @author Tom Adams <candrews@integralblue.com>
+ * @author Tom Adams <tom@holizz.com>
+ * @author Zach Copley <zach@status.net>
+ * @author Diogo Cordeiro <diogo@fc.up.pt>
+ * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
+ * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
*/
$_startTime = microtime(true);
margin-left: 56px;
max-height: 400px;
overflow-y: auto;
+ word-wrap: break-word;
}
.notice .e-content img {
+++ /dev/null
-* To use a theme other than neo, add this to config.php:
-$config['site']['theme'] = 'yourthemename';
-
-* To use/import the base theme, add this to your theme.ini file:
-include=base
-
-* To include an external CSS resource (e.g. for a webfont), add this to the top of your theme.ini file:
-external[]="yourexternalURL"
+++ /dev/null
-/** theme: base
- *
- * @package StatusNet
- * @author Samantha Doherty <sammy@status.net>
- * @copyright 2011 StatusNet, Inc.
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://status.net/
- */
-
-
-@media screen, projection, tv {
-
-/* general styles and layout */
-
-* {margin: 0; padding: 0; vertical-align: baseline;}
-a abbr {border-bottom: 0; cursor: pointer;}
-input.submit {cursor: pointer;}
-table {border-collapse: collapse;}
-ol, ul {list-style-position: inside;}
-fieldset {border: none;}
-legend {font-weight: bold; font-size: 1.2em;}
-input, textarea, select, option {padding: 2px;}
-
-textarea {
- overflow:auto;
- resize: vertical;
-}
-
-body {
- background-color: #f2f2f2;
- color: #000;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 14px;
- line-height: 1.6;
-}
-
-a {
- text-decoration: none;
- outline: none;
-}
-
-a:hover {
- text-decoration: underline;
-}
-
-a img {
- border: 0;
- text-decoration: none;
-}
-
-h1, h2, h3, h4 {
- font-weight: normal;
- margin-bottom: 1ex;
-}
-h5, h6 {
- font-weight: normal;
- margin-bottom: 0;
-}
-
-h1 {font-size: 2.0em;}
-h2 {font-size: 1.6em;}
-h3 {font-size: 1.4em;}
-h4 {font-size: 1.2em;}
-h5 {font-size: 1.1em;}
-h6 {font-size: 1em;}
-
-p {
- margin-bottom: 1.4em;
-}
-
-.form_notice p, li p, .section p {
- margin-bottom: 0;
-}
-
-input, textarea, select, option {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 1em;
-}
-
-select {
- padding-right: 10px;
- padding-bottom: 0px;
- margin-top: -4px;
-}
-
-option {
- padding-bottom: 0px;
-}
-
-.hidden {
- display: none;
-}
-
-#wrap {
- position: relative;
- width: 960px;
- margin: 0px auto;
- background-color: #fff;
- border-left: 10px solid #fff;
- border-right: 10px solid #fff;
- padding-top: 10px;
-}
-
-#header {
- position: relative;
- width: 960px;
- padding: 0px
-}
-
-#core {
- position: relative;
- float: left;
- clear: both;
- margin: 0px;
- width: 958px;
- border-top: 5px solid #ccc;
- border-left: 1px solid #ccc;
- border-right: 1px solid #ccc;
-}
-
-#aside_primary_wrapper {
- width: 100%;
- float: left;
- overflow: hidden;
- position: relative;
- background-color: #f2f2f2;
-}
-
-#content_wrapper {
- width: 100%;
- float: left;
- position: relative;
- right: 239px;
- background-color: #fff;
- border-right: 1px solid #ccc;
-}
-
-#content_inner {
- clear: both;
- display: block;
- position: relative;
-}
-
-#site_nav_local_views_wrapper {
- width: 100%;
- float: left;
- position: relative;
- right: 561px;
- background-color: #f2f2f2;
- border-right: 1px solid #ccc;
-}
-
-#site_nav_local_views {
- width: 138px;
- float: left;
- overflow: hidden;
- position: relative;
- left: 800px;
- margin: 0px 0px 20px 0px;
- padding: 22px 10px 40px 10px;
-}
-
-#content {
- width: 520px;
- float: left;
- overflow: hidden;
- position: relative;
- left: 801px;
- margin: 0px;
- padding: 20px 20px 40px 20px;
- background-color: #fff;
-}
-
-#aside_primary {
- width: 218px;
- float: left;
- overflow: hidden;
- position: relative;
- left: 802px;
- padding: 22px 10px 40px 10px;
- margin: 0px 0px 20px 0px;
-}
-
-#footer {
- clear: both;
- position: relative;
- width: 940px;
- background-color: #ccc;
- padding: 10px;
-}
-
-/* header elements */
-
-address {
- float: left;
- position: relative;
- margin: -2px 0 3px 0;
- padding: 0px;
- z-index: 99;
-}
-
-address a, address img {
- display: block;
-}
-
-address img {
- max-width: 158px;
-}
-
-address img + .p-name {
- display: none;
-}
-
-address .poweredby {
- display: block;
- width: auto;
-}
-
-#site_nav_global_primary {
- display: block;
- position: absolute;
- top: 0;
- right: 0;
- width: 800px;
- margin: 0px;
- height: 24px;
- line-height: 20px;
-}
-
-#site_nav_global_primary ul {
- float: right;
-}
-
-#site_nav_global_primary li {
- display: inline;
- margin-right: 10px;
-}
-
-#site_nav_global_primary li:last-child {
- margin-right: 0px;
-}
-
-#header-search {
- float: right;
- position: relative;
- top: -8px;
- margin-left: 10px;
-}
-
-#site_notice {
- margin: 26px 0px 4px 0px;
- padding: 10px;
- background-color: #f2f2f2;
-}
-
-#site_notice p {
- margin-bottom: 0px;
-}
-
-/* input forms */
-
-.input_forms {
- position: relative;
- margin-bottom: 10px;
- border-bottom: 1px dotted #ccc;
- width: 100%;
-}
-
-.input_forms > label {
- float: left;
- margin-right: 1em;
- opacity: 0.6;
-}
-
-#input_form_nav {
- float: left;
- margin-bottom: 10px;
- list-style-type: none;
-}
-
-#input_form_nav li {
- display: inline;
-}
-
-#input_form_nav li a {
- margin-right: 10px;
-}
-
-.input_form_nav_tab.current a {
- text-decoration: underline;
-}
-
-.input_form {
- position: relative;
- float: left;
- width: 520px;
- padding-bottom: 20px;
- display: none;
-}
-
-.input_form.current {
- display: block;
-}
-
-.form_notice {
- margin-bottom: 10px;
- position: relative;
-}
-
-.form_notice fieldset {
- width: auto;
-}
-
-.form_notice legend {
- display: none;
-}
-
-.form_notice #notice_data-text-label { /* TODO can remove this now? */
- display: none;
-}
-
-.form_notice_placeholder .placeholder {
- width: 508px;
- padding: 4px 4px 4px 6px;
- border: 1px solid #a6a6a6;
- z-index: 97;
- font-size: 1em;
- color: #888;
-}
-
-.form_notice textarea {
- clear: left;
- float: left;
- position: relative;
- width: 483px;
- height: 42px;
- padding: 6px 5px 18px 5px;
- border: 1px solid #a6a6a6;
- z-index: 97;
- font-size: 1.2em;
-}
-
-#form_notice-direct.form_notice textarea {
- width: 508px;
-}
-
-.form_notice label.notice_data-attach,
-.form_notice input.notice_data-attach {
- position: absolute;
- cursor: pointer;
-}
-.form_notice label.notice_data-attach {
- top: 0px;
- right: 0px;
- z-index: 96;
- text-indent: -9999px;
- width: 16px;
- height: 16px;
-}
-
-.form_notice input.notice_data-attach {
- top: 0;
- right: 0;
- padding:0;
- height:16px;
-}
-
-.form_notice .notice_data-geo_wrap label,
-.form_notice .notice_data-geo_wrap input {
- position: absolute;
- top: 26px;
- right: 0px;
- cursor: pointer;
- width: 16px;
- height: 16px;
- display: block;
- z-index: 99;
-}
-
-.form_notice .notice_data-geo_wrap input {
- visibility:hidden;
-}
-
-.form_notice .notice_data-geo_wrap label {
- font-weight:normal;
- font-size:1em;
- margin-bottom:0;
- text-indent:-9999px;
-}
-
-.form_notice label {
- opacity: 0.6;
-}
-
-.form_notice label:hover {
- opacity: 1;
-}
-
-.form_notice input.notice_data-attach {
- opacity: 0;
-}
-
-.form_notice .count {
- position: absolute;
- bottom: 72px;
- right: 32px;
- z-index: 99;
- font-size: 0.8em;
- height: 1em;
- color: #777;
-}
-
-.form_notice.warning .count {
- color: #ff0000;
-}
-
-#form_notice-direct.form_notice .count {
- top: 84px;
- right: 7px;
-}
-
-.form_notice .error,
-.form_notice .success,
-.form_notice .notice-status {
- position: relative;
- overflow: auto;
- line-height: 1.2em;
- padding: 5px 5px 5px 10px;
- margin: 10px 0px 0px 0px;
- width: 478px;
- border: 1px solid #ccc;
-}
-
-.form_notice .error {
- border: 1px solid #d05858;
-}
-
-.form_notice .attach-status button.close,
-.form_notice .notice-status button.close {
- float:right;
- font-size:0.8em;
-}
-
-.input_form .form_settings fieldset {
- margin: 0px;
- padding: 0px;
-}
-
-.input_form .form_settings fieldset fieldset {
- width: 400px;
- float: left;
- background: none;
- border: none;
- margin-bottom: 0px;
- padding: 0px;
-}
-
-.input_form .form_settings .form_data li {
- position: relative;
- margin-bottom: 12px;
-}
-
-.input_form fieldset fieldset label {
- float: none;
- text-align: left;
- color: #888;
-}
-
-.input_form .form_settings li input {
- width: 388px;
- margin-left: 0;
- margin-right: 0;
- padding: 4px 5px 4px 5px;
- border: 1px solid #a6a6a6;
- font-size: 1em;
-}
-
-.input_form .form_settings li textarea {
- width: 388px;
- margin-left: 0;
- padding: 4px 5px 4px 5px;
- border: 1px solid #a6a6a6;
- z-index: 97;
- font-size: 1em;
-}
-
-.input_form .form_data label {
- display: none;
-}
-
-.input_form .form_settings .form_data p.form_guide {
- margin-left: 5px;
-}
-
-.form_notice label[for=to] {
- float: left;
-}
-
-.form_notice select[id=to] {
- float:left;
- margin: -4px 0px 10px 10px;
- max-width: 450px;
-}
-
-.form_notice .to-selector {
- clear: left;
- padding-top: 15px;
- z-index: 99;
-}
-
-.form_notice .to-selector > select {
- max-width: 300px;
-}
-
-.form_settings label[for=notice_to] {
- left: 5px;
- margin-left: 0px;
- margin-right: 10px;
- position: relative;
- clear: left;
- background: none;
-}
-
-.checkbox-wrapper {
- padding: 2px;
- margin-left: 10px;
-}
-
-.form_notice .checkbox-wrapper {
- display: inline;
- margin-left: 10px;
-}
-
-.form_settings .checkbox-wrapper label.checkbox {
- margin-left: 0px;
- margin-top: 6px;
- line-height: 1.2em;
- left: -3px;
- float: none;
-}
-
-.checkbox-wrapper #notice_private {
- display:none;
-}
-
-.checkbox-wrapper.unchecked label.checkbox {
- padding-left: 20px;
- background: url(../images/icons/lock_open.png) no-repeat 0px 0px;
- opacity: 0.6;
-}
-
-.checkbox-wrapper.unchecked label.checkbox:hover {
- opacity: 1;
- cursor: pointer;
-}
-
-.checkbox-wrapper.checked label.checkbox {
- padding-left: 20px;
- background: url(../images/icons/lock.png) no-repeat 0px 0px;
- color: red;
- opacity: 1;
-}
-
-.checkbox-wrapper.checked label.checkbox:hover {
- cursor: pointer;
-}
-
-.form_notice input.submit {
- position: absolute;
- right: 0px;
- margin-top: -1.5em;
- float: left;
- width: 100px;
- padding: 0px;
- z-index: 99;
-}
-
-.input_form .form_settings .submit {
- position: relative;
- top: 0;
- right: 0;
- float: right;
- width: 100px;
- height: 26px;
- line-height: 26px;
- padding: 0px 10px;
- margin: 0px;
- z-index: 1;
-}
-
-.form_settings {
- clear: both;
-}
-
-/* site nav local views */
-
-
-#site_nav_local_views li {
- display: block;
- margin: 0px 0px 8px 0px;
-}
-
-#site_nav_local_views li ul {
- margin-bottom: 20px;
-}
-
-#site_nav_local_views a {
- word-wrap: break-word;
-}
-
-#site_nav_local_views .current a {
- text-decoration: underline;
-}
-
-
-/* aside primary */
-
-#aside_primary .section {
- position: relative;
- float: left;
- clear: both;
- width: 100%;
- margin-bottom: 20px;
-}
-
-
-/* notices */
-
-#notices_primary {
- padding-top: 3px;
- clear: both;
-}
-
-#notices_primary h2 {
- display: none;
-}
-
-#notices_primary .e-content h2 {
- display: block;
-}
-
-.notice {
- list-style-type: none;
- margin-bottom: 10px;
- clear: left;
- padding-bottom: 2px;
- line-height: 1.36em;
-}
-
-.profile, .application, #content .peopletag {
- position:relative;
- clear:both;
- float:left;
- width:100%;
-}
-
-.application, #content .peopletag {
- position:relative;
- clear:both;
- float:left;
- width:100%;
-}
-
-.notice .parents {
- display: inline;
-}
-
-.notice .parents::before {
- content: '\25B8 ';
-}
-.notice .addressees, .notice .addressees li {
- display: inline;
-}
-.notice .addressees > li::before {
- content: ',';
-}
-.notice .addressees > li:first-child::before {
- content: '';
-}
-
-.notice .addressees .group {
- font-style: italic;
-}
-
-.p-name {
- overflow: hidden;
-}
-
-.notice .p-author {
- font-weight: bold;
-}
-
-#core .h-card .u-photo {
- float: left;
- margin-right: 8px;
-}
-
-.h-card .u-url, .h-card.u-url {
- text-decoration:none;
-}
-.h-card .u-url:hover, .h-card.u-url:hover {
- text-decoration:underline;
-}
-
-.notice .automatic {
- font-style:italic;
-}
-
-#remoteprofile .notice .h-entry,
-#showstream .notice .h-entry,
-#remoteprofile .notice .entry-title,
-#showstream .notice .entry-title {
- min-height: 1px;
-}
-
-#remoteprofile #content .notice .author,
-#showstream #content .notice .author {
- display: none;
-}
-
-#remoteprofile .notice,
-#showstream .notice {
- min-height: 1em;
-}
-
-#shownotice .notice .h-entry {
- font-size:2.2em;
- min-height:123px;
- font-size: 1.6em;
- line-height: 1.2em;
-}
-
-.notice .e-content {
- margin-left: 56px;
- max-height: 400px;
- overflow-y: auto;
- word-wrap: break-word;
-}
-
-.notice .e-content img {
- max-width: 100%;
-}
-
-.notice-options {
- margin-bottom: 7px;
- float: right;
- position: relative;
-}
-
-.notice-options fieldset {
- border: none;
-}
-
-.notice-options legend {
- display: none;
-}
-
-.notice-options form, .notice-options a, .notice-options .repeated {
- float: left;
- margin-right: 10px;
-}
-
-.notice-options input, .notice-options a, .notice-options .repeated {
- text-indent: -9999px;
- outline:none;
-}
-
-.notice-options input.submit, .notice-options a, .notice-options .repeated {
- display: block;
- border: 0;
- height: 16px;
- width: 16px;
-}
-
-.notice-options input.submit, .notice-options a {
- opacity: 0.6;
-}
-
-.notice-options input.submit:hover, .notice-options a:hover {
- opacity: 1;
-}
-
-.notice .attachment {
- position:relative;
- padding-left:16px;
-}
-
-.notice .attachment.more, .mode-private .privacy_mode {
- text-indent:-9999px;
- width:16px;
- height:16px;
- display:inline-block;
- overflow:hidden;
- vertical-align:middle;
- margin-left:4px;
-}
-
-#attachments .attachment,
-.notice .attachment.more {
- padding-left:0;
-}
-
-.notice .attachment img {
- position:absolute;
- top:18px;
- left:0;
- z-index:99;
-}
-
-#shownotice .notice .attachment img {
- position:static;
-}
-
-.notice.h-entry .attachments {
- position: relative;
- margin-bottom: 1em;
- list-style-type: none;
-}
-
-.notice.h-entry .attachments > li {
- clear: both;
- background-color: #f9f9f9;
- border: 1px lightgrey solid;
- margin-bottom: 1ex;
- padding: 1ex 1ex 0 1ex;
- overflow: auto;
- text-align: center;
- position: relative;
-}
-
-.notice.h-entry .attachments .inline-attachment > article {
- text-align: left;
-}
-
-.notice.h-entry .attachments .inline-attachment > * {
- height: auto;
- margin-bottom: 1ex;
- max-width: 100%;
-}
-.notice.h-entry .attachments .inline-attachment > label {
- font-size: 0.8em;
- line-height: 16px;
- height: 16px;
-}
-
-#attachments {
- clear:both;
- float:left;
- width:100%;
- margin-top:18px;
-}
-
-#attachments dt {
- font-weight:bold;
- font-size:1.3em;
- margin-bottom:4px;
-}
-
-#attachments ol li {
- margin-bottom:18px;
- list-style-type:decimal;
- float:left;
- clear:both;
-}
-
-#attachment_view img, #attachment_view .attachment_player {
- height: auto;
- width: auto;
- max-width:480px;
- max-height:480px;
-}
-
-#attachment_view #oembed_info {
- margin-top:11px;
-}
-
-#attachment_view #oembed_info dt,
-#attachment_view #oembed_info dd {
- float:left;
-}
-
-#attachment_view #oembed_info dt {
- clear:left;
- margin-right:11px;
- font-weight:bold;
-}
-
-#attachment_view #oembed_info dt:after {
- content: ":";
-}
-
-/* threaded replies */
-
-.threaded-replies {
- clear: both;
- width: 458px;
- margin-left: 55px;
- margin-bottom: 10px;
- padding-right: 2px;
- border-left: 3px solid #ECECF2;
- background: #fafafa;
- color: #222;
- font-size: 1em;
-}
-
-.threaded-replies:empty {
- display: none;
-}
-
-#content .notice .threaded-replies .notice,
-#content .notice .threaded-replies .notice-data {
- width: 440px;
- padding-bottom: 1ex;
- padding-top: 1ex;
- border-bottom: 2px dotted #eee;
- line-height: 1.36em;
- margin-top: 0px;
- margin-bottom: 0px;
- margin-left: 10px;
- background: none;
-}
-
-#content .notice .threaded-replies .notice.h-entry,
-#content .notice .threaded-replies .entry-title {
- min-height: 1px;
-}
-
-#content .threaded-replies .notice .p-author .u-photo {
- height: 24px;
- width: 24px;
- top: 12px;
-}
-
-#content .threaded-replies .notice.h-entry .e-content {
- margin-left: 32px;
-}
-
-.threaded-replies .notice-repeats,
-.threaded-replies .notice-faves {
- clear: both;
- font-size: 0.88em;
-}
-.threaded-replies .notice-faves:before {
- content: "\2665";
- margin-right: 1ex;
-}
-.threaded-replies .notice-repeats:before {
- content: "\267B";
- margin-right: 1ex;
-}
-
-.threaded-replies li {
- list-style-type: none;
-}
-
-.threaded-replies .notice-reply-comments {
- margin: 2px 0px 4px 10px;
-}
-
-.threaded-replies .placeholder {
- margin: 10px;
- width: 426px;
- padding: 4px 4px 4px 6px;
- border: 1px solid #a6a6a6;
- color: #888;
-}
-
-.threaded-replies .notice-reply {
- clear: left;
- position: relative;
- padding: 10px;
- padding-bottom: 44px;
-}
-
-.threaded-replies .form_notice textarea {
- width: 395px;
-}
-
-.threaded-replies .form_notice label.notice_data-attach {
- top: 0;
- right: 1ex;
-}
-
-.threaded-replies .form_notice .notice_data-geo_wrap label,
-.threaded-replies .form_notice .notice_data-geo_wrap input {
- top: 36px;
- right: 10px;
-}
-
-.threaded-replies .form_notice .count {
- bottom: 1ex;
- right: 0;
-}
-
-.threaded-replies .form_notice input.submit {
- bottom: -5ex;
- right: 1ex;
-}
-
-.threaded-replies .form_notice .error,
-.threaded-replies .form_notice .success,
-.threaded-replies .form_notice .notice-status {
- width: 390px;
-}
-
-.threaded-replies .to-selector {
- display: none;
-}
-
-.notice .permalink:after {
- content: ']';
-}
-
-.notice .permalink:before {
- content: '[';
-}
-
-.notice footer .source + .permalink.external {
- display: none;
-}
-
-/* old school conversation style */
-
-#conversation .notices .notices {
- background-color:rgba(200, 200, 200, 0.050);
- margin-left: 15px;
- width: auto;
-}
-
-#conversation .notices .notices .notices .notices .notices .notices .notices .notices .notices .notices .notices .notices .notices {
- background: none;
- margin-left: 0px;
-}
-
-/* aside primary specific styles */
-
-.aside .section p,
-.aside .section .more {
- clear:both;
-}
-
-.notice-headers > .u-uid {
- display:none;
-}
-
-#aside_primary ol.notices {
- list-style-type: none;
- float: left;
- position: relative;
- margin-bottom: 10px;
- width: 100%;
-}
-
-#aside_primary .notice .h-card .u-photo {
- height: 24px;
- width: 24px;
- margin-right: 8px;
-}
-#aside_primary .notice .e-content {
- margin-left: 32px;
-}
-
-#export_data li {
- list-style-type:none;
-}
-
-#export_data li a {
- display: block;
- padding-left: 30px;
- height: 16px;
- line-height: 16px;
- margin-bottom: 15px;
-}
-
-#aside_primary td {
- padding-right: 10px;
- padding-bottom: 10px;
-}
-
-.section tbody td {
- padding-right:18px;
- padding-bottom:11px;
-}
-
-#entity_statistics dt,
-#entity_statistics dd {
- display:inline;
- margin-right:11px;
-}
-
-#entity_statistics dt:after {
- content: ":";
-}
-
-.section ul.entities {
- float:left;
- width:100%;
-}
-
-.section .entities li {
- list-style-type: none;
- float: left;
- margin-right: 3px;
- margin-bottom: 8px;
- display: inline;
-}
-.section .entities li .u-photo {
- margin: 0;
-}
-
-.tag-cloud {
- list-style-type:none;
- text-align:center;
-}
-
-.aside .tag-cloud {
- font-size:0.8em;
- word-wrap:break-word;
-}
-
-.tag-cloud li {
- display:inline;
- margin-right:7px;
- line-height:1.25;
-}
-
-.tag-cloud li:before {
- content:'\0009';
-}
-
-.aside .tag-cloud li {
- line-height:1.5;
-}
-
-.tag-cloud li a {
- text-decoration:none;
-}
-
-#tagcloud.section dt {
- text-transform:uppercase;
- font-weight:bold;
-}
-
-.tag-cloud-1 {
- font-size:1em;
-}
-
-.tag-cloud-2 {
- font-size:1.25em;
-}
-
-.tag-cloud-3 {
- font-size:1.75em;
-}
-
-.tag-cloud-4 {
- font-size:2em;
-}
-
-.tag-cloud-5 {
- font-size:2.25em;
-}
-
-.tag-cloud-6 {
- font-size:2.75em;
-}
-
-.tag-cloud-7 {
- font-size:3.25em;
-}
-
-#publictagcloud #tagcloud.section dt {
- display:none;
-}
-
-/* secondary elements */
-
-.error, .success, .notice-status {
- background-color: #F7E8E8;
- padding: 4px 10px;
-}
-.success, .notice-status {
- background-color: #f2f2f2;
-}
-
-#page_notice {
- clear:both;
- margin-bottom:18px;
-}
-
-.e-content .success {
- padding: 6px;
-}
-
-.system_notice ul,
-.instructions ul {
- margin-left:1em;
-}
-
-.instructions p,
-.instructions ul {
- margin-bottom:18px;
-}
-
-.help dt {
- display:none;
-}
-
-.guide {
- clear:both;
-}
-
-button.close,
-button.minimize {
- width:16px;
- height:16px;
- text-indent:-9999px;
- padding:0;
- border:0;
- text-align:center;
- font-weight:bold;
- cursor:pointer;
-}
-
-.dialogbox {
- position:absolute;
- width: 200px;
- top: 0px;
- right: 0px;
- z-index:9;
- float:none;
- padding:11px;
- border-style:solid;
- border-width:1px;
- background: #fff;
- color: #000;
-}
-
-.dialogbox legend {
- display:block !important;
- margin-right:18px;
- margin-bottom:18px;
-}
-
-.dialogbox button.close {
- position:absolute;
- right:3px;
- top:3px;
-}
-
-.dialogbox .form_guide {
- font-weight:normal;
- padding:0;
-}
-
-.dialogbox .submit_dialogbox {
- font-weight:bold;
- text-indent:0;
- min-width:46px;
-}
-
-.dialogbox input {
- padding-left:4px;
-}
-
-.dialogbox fieldset {
- margin-bottom:0;
-}
-
-.notice-options .form_repeat.dialogbox input.submit_dialogbox {
- float: right;
- min-width: 80px;
-}
-
-#pagination {
- background-color: #f2f2f2;
- clear: left;
- margin-top: 20px;
- padding: 1%;
- height: 1em;
-}
-
-#pagination li {
- display: inline;
-}
-
-#pagination .nav_prev {
- float: left;
-}
-
-#pagination .nav_next {
- float: right;
-}
-
-#wrap form.processing input.submit,
-#wrap a.processing,
-.dialogbox.processing .submit_dialogbox {
- background: url(../images/icons/icon_processing.gif) no-repeat 47% 47%;
- cursor: wait;
- outline: none;
- text-indent: -9999px;
-}
-
-/* footer elements */
-
-#site_nav_global_secondary dt {
- display: none;
-}
-
-#site_nav_global_secondary li {
- display: inline;
- margin-right: 20px;
-}
-
-#licenses dt {
- display: none;
-}
-
-#licenses dd {
- margin-top: 10px;
-}
-
-#site_content_license_cc {
- margin-bottom:0;
-}
-
-#site_content_license_cc img {
- display:inline;
- vertical-align:top;
- margin-right:4px;
-}
-
-form ul li {
- list-style-type:none;
- margin:0 0 18px 0;
-}
-
-form label.submit {
- display:none;
-}
-
-.form_settings fieldset {
- margin-top: 10px;
- margin-bottom: 10px;
- border: none;
-}
-
-.form_settings fieldset fieldset {
- margin-bottom: 20px;
- padding: 10px;
- padding-top: 10px;
- border-width:1px;
- border-style:solid;
- background:rgba(240, 240, 240, 0.2);
-}
-
-.form_settings fieldset fieldset legend {
- line-height:0;
- font-size: 1.4em;
- font-weight: normal;
-}
-
-.form_settings input.sync {
- margin-left: 3px;
-}
-
-.form_settings .element_actions input[type=submit] {
- padding: 0px 4px;
- margin: 3px;
-}
-
-.form_settings .form_data li {
- width:100%;
- float:left;
- margin-bottom: 22px;
-}
-
-.form_settings .form_data label {
- float:left;
-}
-
-.form_settings .form_data textarea,
-.form_settings .form_data select,
-.form_settings .form_data input {
- margin-left:1.795%;
- float:left;
-}
-
-.form_settings .form_data select {
- margin-top: 0px;
-}
-
-
-.form_settings .form_data input.submit,
-.form_settings .form_data input.checkbox,
-.form_settings .form_data input.radio {
- width:auto;
-}
-
-.form_settings .form_data textarea {
- width:63%;
-}
-
-.form_settings .form_data input.submit {
- margin-left:0;
-}
-
-.form_settings label {
- margin-top:2px;
- width: 25%;
- text-align: right;
-}
-
-.form_settings input.checkbox, .form_settings input.radio {
- margin-left: 25%;
- margin-top: 3px;
- position: relative;
- left: -14px;
-}
-
-.form_settings label.checkbox, .form_settings label.radio {
- width: auto;
- max-width: 60%;
- position: relative;
- left: -25px;
-}
-
-.form_settings label.checkbox {
- text-align: left;
- line-height: 1.2em;
-}
-
-.form_settings label.radio {
- text-align: left;
- margin: 0px;
-}
-
-.form_settings li input.radio {
- clear: left;
-}
-
-.form_actions label {
- display:none;
-}
-
-.form_guide {
- font-style:italic;
-}
-
-.form_settings #settings_autosubscribe label {
- display:inline;
- font-weight:bold;
-}
-
-#form_settings_profile legend,
-#form_login legend,
-#form_register legend,
-#form_password legend,
-#form_settings_avatar legend,
-#newgroup legend,
-#editgroup legend,
-.form_tag_user legend,
-#form_remote_subscribe legend,
-#form_openid_login legend,
-#form_search legend,
-#form_invite legend,
-#form_notice_delete legend,
-#form_password_recover legend,
-#form_password_change legend,
-.form_entity_block legend,
-#form_filter_bytag legend,
-#apioauthauthorize_allowdeny,
-.form_tag_user_wrap form,
-.form_tag_user_wrap label,
-.form_tag_user_wrap legend {
- display:none;
-}
-
-.form_tag_user_wrap {
- clear:both;
-}
-
-.form_tag_user {
- float:left;
- width:auto;
-}
-
-.form_tag_user input.submit {
- width:50px;
-}
-
-.form_settings .form_data p.form_guide {
- clear:both;
- margin-left: 27%;
- margin-bottom:0;
- line-height: 1.2em;
- padding-top: 4px;
-}
-
-.form_settings p {
- margin-bottom:11px;
-}
-
-.form_settings .form_note {
- padding:0 7px;
-}
-
-.form_settings .form_response {
- margin-top: 10px;
-}
-
-.form_settings input {
- margin-right: 20px;
-}
-
-#form_search .submit {
- margin-left:11px;
-}
-
-#form_search .form_data input {
- width:auto;
-}
-
-.h-entry .e-content .form_settings ul {
- margin-left:0;
-}
-
-.notice > footer {
- clear: left;
- font-size: 0.8em;
- margin-left: 56px;
-}
-
-.notice > footer .attachments-title {
- margin-bottom: 0;
- margin-top: 1em;
-}
-
-.threaded-replies .notice > footer, .section .notice > footer {
- margin-left:33px;
-}
-
-.notice > footer .timestamp span.p-name {
- display: none;
-}
-
-.limited-scope .e-content .timestamp:before {
- content:'☠';
- font-size:150%;
-}
-
-#content .notice-source-activity div.entry-title, .notice-source-activity div.e-content {
- margin-left: 0;
-}
-
-#content .notice-source-activity div.entry-title {
- font-style: italic;
- min-height: 0;
-}
-
-#content .notice-source-activity .notice div.entry-title {
- font-style: normal;
-}
-
-div.e-content.plaintext {
- border: dashed 1px gray;
- font-family: monospace;
- padding: 1em;
- white-space: pre-line;
-}
-
-span.rtl {
- display: block;
- direction: rtl;
- text-align: right;
- float: right;
-}
-
-#filter_tags ul li,
-.entity_send-a-message .form_notice,
-.form_settings fieldset fieldset,
-.entity_moderation:hover ul,
-.entity_role:hover ul,
-.dialogbox {
- border-color:#DDDDDD;
-}
-
-.form_settings input.form_action-primary {
- background:none;
-}
-
-.form_settings .form_note {
- background-color: #d1f7cb;
-}
-
-#form_settings_photo .form_data {
- clear:both;
-}
-
-#form_settings_avatar li {
- width:auto;
-}
-
-#form_settings_avatar input {
- margin-left:0;
-}
-
-#avatar_original,
-#avatar_preview {
- float:left;
-}
-
-#avatar_preview {
- margin-left:29px;
-}
-
-#avatar_preview_view {
- height:96px;
- width:96px;
- margin-bottom:18px;
- overflow:hidden;
-}
-
-#settings_attach,
-#form_settings_avatar .form_actions {
- clear:both;
-}
-
-#form_settings_avatar .form_actions {
- margin-bottom:0;
-}
-
-.entity_profile {
- position:relative;
- width:73%;
- min-height:123px;
- float:left;
- margin-bottom:18px;
- margin-left:0;
- overflow:hidden;
-}
-
-.entity_profile dt,
-#entity_statistics dt {
- font-weight:bold;
-}
-
-.entity_profile dd {
- display:inline;
-}
-
-.entity_profile .entity_depiction {
- float:left;
- width:96px;
- margin-right:18px;
- margin-bottom:18px;
- text-align: center;
-}
-
-.entity_profile .entity_fn,
-.entity_profile .entity_nickname,
-.entity_profile .entity_location,
-.entity_profile .entity_url,
-.entity_profile .entity_note,
-.entity_profile .entity_tags,
-.entity_profile .entity_aliases,
-.entity_profile .entity_statistics {
- margin-left:113px;
- margin-bottom:4px;
-}
-
-.peopletags_edit_button {
- cursor:pointer;
- border:0;
- padding:0;
- width:16px;
- height:16px;
- position: relative;
- top: -3px;
-}
-
-ul.profile_list {
- list-style-type:none;
-}
-
-ul.profile_list li {
- margin-bottom: 20px;
-}
-
-ul.profiles.groups {
- list-style-type:none;
-}
-
-.profile_list .h-card .u-photo {
- margin-right: 4px;
-}
-
-table.profile_list tbody tr:nth-child(2n+1) {
- background-color: #fafafa !important;
- border: none !important;
-}
-
-.entity_profile .entity_nickname,
-.entity_profile .entity_fn {
- margin-left:0;
-}
-
-.entity_profile .p-nickname {
- font-weight: bold;
-}
-
-.entity_profile .p-name {
- clear: left;
-}
-
-.entity_profile .label {
- display: block;
-}
-
-.entity_profile .p-name:before {
- content: "(";
- font-weight:normal;
-}
-
-.entity_profile .p-name:after {
- content: ")";
- font-weight:normal;
-}
-
-.entity_profile .p-nickname:after,
-.entity_profile .p-nickname:before {
- content:"";
-}
-
-.entity_profile dt,
-.entity_profile h2 {
- display:none;
-}
-
-.entity_profile .role {
- margin-left:11px;
- font-style:italic;
-}
-
-.entity_actions {
- float:right;
- margin-left:2%;
- margin-bottom: 28px;
- min-width:21%;
-}
-
-.entity_actions h2 {
- display:none;
-}
-
-.entity_actions ul {
- list-style-type:none;
-}
-
-.entity_actions li {
- margin-bottom:7px;
-}
-
-.entity_actions li:first-child {
- border-top:0;
-}
-
-.entity_actions fieldset {
- border:0;
- padding:0;
-}
-
-.entity_actions legend {
- display:none;
-}
-
-.entity_actions input.submit {
- display:block;
- text-align:left;
- width:100%;
-}
-
-.entity_actions a, .entity_actions input, .entity_actions p {
- color: #333 !important;
- font-weight: normal;
- line-height: 1.6em;
-}
-
-.entity_actions a {
- text-decoration:none;
- display:block;
- padding: 3px 4px 4px 28px;
-}
-
-.entity_actions input {
- padding: 4px 4px 4px 26px;
-}
-
-.entity_actions a, .entity_actions p, .entity_actions .entity_approval input, .entity_actions .entity_subscribe input, .entity_actions .entity_block input, .entity_actions .entity_moderation input, .entity_actions .entity_role input, .entity_actions .entity_nudge input, .entity_actions .entity_delete input, .entity_actions input.submit {
- background-color: #ccc !important;
- border: none;
-}
-
-.entity_actions p {
- padding: 2px 4px 4px 28px;
-}
-
-.entity_actions a:hover, .entity_actions p:hover, .entity_actions, .entity_subscribe input:hover, .entity_actions .entity_subscribe input:hover, .entity_actions .entity_block input:hover, .entity_actions .entity_moderation input:hover, .entity_actions .entity_role input:hover, .entity_actions .entity_nudge input:hover, .entity_actions .entity_delete input:hover, .entity_actions input.submit:hover {
- background-color: #f2f2f2 !important;
-}
-
-.entity_actions #entity_remote_subscribe a {
- padding-right: 6px;
-}
-
-.entity_actions .accept {
- margin-bottom:18px;
-}
-
-.entity_send-a-message button {
- position:absolute;
- top:3px;
- right:3px;
-}
-
-.entity_send-a-message .form_notice {
- width: 410px;
- padding: 10px;
- position: absolute;
- top: 46px;
- right: 10px;
- z-index: 2;
-}
-
-.entity_send-a-message .form_notice fieldset {
- width: 410px;
-}
-
-.entity_send-a-message .form_notice textarea {
- width: 280px;
-}
-
-.entity_send-a-message .form_notice legend {
- display:block;
- margin-bottom:11px;
- font-weight: normal;
- color: #333 !important;
-}
-
-.entity_send-a-message .form_notice label,
-.entity_send-a-message .form_notice select {
- display:none;
-}
-
-.entity_send-a-message .form_notice .submit {
- position: absolute;
- top: 52px;
- right: 0px;
- text-align: center;
-}
-
-.entity_moderation,
-.entity_role {
- position:relative;
-}
-
-.entity_moderation p,
-.entity_role p {
- padding-bottom:2px;
- margin-bottom:7px;
-}
-
-.entity_moderation ul,
-.entity_role ul {
- display:none;
-}
-
-.entity_moderation:hover ul,
-.entity_role:hover ul {
- display:block;
- width:110%;
- padding:11px;
- position:absolute;
- z-index:1;
- border-width:1px;
- border-style:solid;
- top: 20px;
- right: 0px;
- background-color: #fff;
-}
-
-.entity_tags ul {
- list-style-type:none;
- display:inline;
-}
-
-.entity_tags li {
- display:inline;
- margin-right:7px;
-}
-
-.entity_tags li:before {
- content:'\0009';
-}
-
-.entity_tags p.error {
- clear:both;
-}
-
-#filter_tags {
- margin-bottom: 20px;
- padding-bottom: 10px;
- border-bottom: 1px solid #ccc;
- float: left;
-}
-
-#filter_tags dt {
- display:none;
-}
-
-#filter_tags ul {
- list-style-type:none;
-}
-
-#filter_tags li {
- float:left;
- margin-left:7px;
- padding-left:7px;
- border-left-width: 1px;
- border-left-style:solid;
-}
-
-#filter_tags #filter_tags_all,
-#filter_tags #filter_tags_for {
- margin-left: 10px;
- border-left:0;
- padding-left:0;
-}
-
-#filter_tags_all a,
-#filter_tags_for a {
- font-weight:bold;
- margin-top: 4px;
- float:left;
-}
-
-#filter_tags_for a {
- margin:0;
-}
-
-#filter_tags #form_filter_bymode .form_guide {
- display:none;
-}
-
-#filter_tags #form_filter_bymode .checkbox {
- float:none;
-}
-
-#filter_tags #form_filter_bymode legend {
- display:none;
-}
-
-#filter_tags_item label {
- margin-right: 14px;
- margin-left: 7px;
- padding-top: 4px;
-}
-
-#filter_tags_item label,
-#filter_tags_item select {
- float:left;
-}
-
-#filter_tags_item p {
- float:left;
- clear:both;
- margin-left:38px;
-}
-
-#filter_tags_item .submit {
- position:relative;
- top:3px;
- left:3px;
-}
-
-.profile .entity_profile {
- margin-bottom:10px;
- min-height:60px;
-}
-
-.profile .form_group_join legend,
-.profile .form_group_leave legend,
-.profile .form_user_subscribe legend,
-.profile .form_user_unsubscribe legend,
-.form_user_add_peopletag legend,
-.form_user_remove_peopletag legend {
- display:none;
-}
-
-.profile .entity_profile .p-name,
-.profile .entity_profile .u-url[rel~=contact] {
- margin-left:0;
- display:inline;
-}
-
-.profile .entity_profile .note,
-.profile .entity_profile .u-url,
-.profile .entity_profile .entity_tags,
-.profile .entity_profile .form_subscription_edit {
- margin-left:55px;
- clear:none;
- display:block;
- width:auto;
-}
-
-.profile_block .group_aliases .group_alias {
- display:inline;
- list-style-type: none;
- font-style: italic;
-}
-
-.profile_block .entity_tags dt {
- display: inline;
- margin-right: 3px;
- font-weight: bold;
-}
-
-.profile_block .entity_tags dd {
- display: inline;
-}
-
-.profile .entity_profile .form_subscription_edit {
- clear:left;
-}
-
-.peopletag {
- min-height: 90px;
- list-style: none;
-}
-
-.peopletag .e-content {
- width:auto;
-}
-
-.peopletag .tagged-count a:after,
-.peopletag .subscriber-count a:after,
-.entity_tags dt:after {
- content: ':';
-}
-
-.peopletag .updated {
- display:none;
-}
-
-.peopletag .tag a{
- font-weight: bold;
-}
-
-.peopletag .tag:before {
-/* raquo */
- content: "\00BB";
-}
-
-.peopletag .entity_statistics {
- font-size:80%;
-}
-
-.profile-lister li {
- min-height:30px;
- padding:5px;
- clear:both;
- border-top: 1px #eee solid;
-}
-
-.profile-lister {
- list-style-type:none;
-}
-
-.profile_search_wrap h3 {
- float:left;
- font-weight:normal;
- margin-right:10px;
-}
-
-.profile-lister li .u-photo {
- display:inline;
- margin-right:7px;
- margin-bottom:-5px;
-}
-
-.profile-lister li .p-name {
- font-weight:bold;
-}
-
-.profile-lister li .entity_actions {
- margin:0;
-}
-
-#profile_search_results {
- display:block;
- border-radius:4px;
- max-height:800px;
- margin:10px 0;
- padding: 5px;
- border:1px #ddd solid;
- background:#f1f1f1;
-}
-
-#profile_search_results.empty {
- display: none;
-}
-
-.form_peopletag_edit_user_search legend,
-.form_peopletag_edit_user_search label,
-.form_peopletag_edit_user_search .form_guide {
- display:none;
-}
-
-.form_peopletag_edit_user_search #field {
- height:30px;
-}
-
-.form_peopletag_edit_user_search .submit {
- width:60px;
-}
-
-.form_user_remove_peopletag,
-.form_user_add_peopletag {
- float:right;
-}
-
-.form_user_add_peopletag input.submit,
-.form_user_remove_peopletag input.submit {
- width:100px;
- padding-left:25px;
- text-align:left;
-}
-
-.profile .entity_profile .form_subscription_edit label {
- font-weight:normal;
- margin-right:11px;
-}
-
-.applications {
- margin-bottom:18px;
- float:left;
- width:100%;
-}
-
-.applications li {
- list-style-type:none;
-}
-
-.application img,
-#showapplication .entity_profile img,
-.form_data #application_icon img,
-#apioauthauthorize .form_data img {
- max-width:96px;
- max-height:96px;
-}
-
-#apioauthauthorize .form_data img {
- margin-right:18px;
- float:left;
-}
-
-.oauth-desktop-mode #wrap {
- min-width: 500px;
-}
-
-.oauth-desktop-mode #content {
- width: 480px;
- padding: 6px;
- margin: 4px 0px 0px 4px;
- border-top-left-radius: 7px;
-}
-
-.oauth-desktop-mode fieldset {
- margin-bottom: 10px !important;
-}
-
-#oauth_pin {
- text-align: center;
- font-size: 3em;
-}
-
-#showapplication .entity_profile {
- width:68%;
-}
-
-#showapplication .entity_profile .entity_fn {
- margin-left:0;
-}
-
-#showapplication .entity_profile .p-name:before,
-#showapplication .entity_profile .p-name:after {
- content:'';
-}
-
-#showapplication .entity_data {
- clear:both;
- margin-bottom:18px;
-}
-
-#showapplication .entity_data h2 {
- display:none;
-}
-
-#showapplication .entity_data dd {
- font-family:monospace;
- font-size:1.3em;
- margin-bottom: 10px;
-}
-
-.form_data #application_types label.radio,
-.form_data #default_access_types label.radio {
- width:14.5%;
-}
-
-.mark-top {
- border-top: 1px solid #ccc;
- padding-top: 5px;
-}
-
-#realtime_actions {
- position: relative !important;
- right: -4px !important;
- top: -65px !important;
- float: right;
- padding-top: 15px;
- margin-bottom: -8px !important;
-}
-
-#realtime_actions li {
- margin-left: 2px !important;
-}
-
-#realtime_play, #realtime_pause, #realtime_popup {
- background-image: url(../images/icons/icons-01.gif);
- background-repeat: no-repeat;
- background-color: transparent;
-}
-
-#realtime_play {
- background-position: 0 -2308px;
-}
-
-#realtime_pause {
- background-position: 0 -2374px;
-}
-
-#realtime_popup {
- background-position: 0 -1714px;
-}
-
-#realtime_play, #realtime_pause, #realtime_popup {
- opacity: 0.6;
-}
-
-#realtime_play:hover, #realtime_pause:hover, #realtime_popup:hover {
- opacity: 1;
-}
-
-body.realtime-popup {
- min-width: 100%;
- overflow-x: hidden;
-}
-
-.realtime-popup #content {
- padding: 0px !important;
- margin: 0px !important;
- left: 0;
- right: 0;
- width: 100% !important;
- overflow: visible;
-}
-
-.realtime-popup #content_inner {
- padding: 5px;
-}
-
-.realtime-popup .input_forms {
- top: 0px;
- left: 0px;
- padding: 10px 0px 0px 5px;
-}
-
-.realtime-popup .form_notice_placeholder .placeholder {
- width: 445px;
-}
-
-.realtime-popup .input_form {
- width: 470px;
-}
-
-.realtime-popup .form_notice fieldset {
- width: 430px !important;
-}
-
-.realtime-popup .form_notice textarea {
- width: 425px !important;
-}
-
-.realtime-popup .form_notice label.notice_data-attach {
- right: 0px !important;
- top: 3px !important;
-}
-
-.realtime-popup .form_notice #notice_data-geo_wrap label, .realtime-popup .form_notice #notice_data-geo_wrap input {
- right: 8px !important;
- top: 3px !important;
-}
-
-.realtime-popup .form_notice .error,
-.realtime-popup .form_notice .success,
-.realtime-popup .form_notice .notice-status {
- width: 430px;
-}
-
-/* icons */
-
-.form_notice label.notice_data-attach,
-#export_data li a.rss,
-#export_data li a.atom,
-#export_data li a.foaf,
-.entity_edit a,
-.entity_send-a-message a,
-.entity_nudge p,
-.form_user_nudge input.submit,
-.form_user_block input.submit,
-.form_user_unblock input.submit,
-.form_group_block input.submit,
-.form_group_unblock input.submit,
-.form_make_admin input.submit,
-.notice .attachment,
-.notice-options .notice_reply,
-.notice-options form.form_favor input.submit,
-.notice-options form.form_disfavor input.submit,
-.notice-options .notice_delete,
-.notice-options form.form_repeat input.submit,
-#new_group a,
-#pagination .nav_prev a,
-#pagination .nav_next a,
-button.close,
-.form_group_leave input.submit,
-.form_user_unsubscribe input.submit,
-.form_group_join input.submit,
-.form_user_subscribe input.submit,
-.form_remote_authorize input.submit,
-.entity_subscribe a,
-.entity_moderation p,
-.entity_sandbox input.submit,
-.entity_silence input.submit,
-.entity_delete input.submit,
-.entity_role p,
-.entity_role_administrator input.submit,
-.entity_role_moderator input.submit,
-.form_user_remove_peopletag input.submit,
-.form_user_add_peopletag input.submit,
-.form_peopletag_subscribe input.submit,
-.form_peopletag_unsubscribe input.submit,
-.form_group_queue #approve,
-.form_group_queue #cancel,
-.notice-options .repeated,
-.form_notice label.notice_data-geo,
-button.minimize,
-.form_reset_key input.submit,
-.entity_tag a,
-.entity_clear input.submit,
-.entity_flag input.submit,
-.entity_flag p,
-.entity_approval input.submit,
-.entity_subscribe input.submit,
-#realtime_play,
-#realtime_pause,
-#realtime_popup,
-.peopletags_edit_button,
-.mode-private .privacy_mode {
- background-image:url(../images/icons/icons-01.gif);
- background-repeat:no-repeat;
- background-color:transparent;
-}
-
-button.close {
- background-position:0 -1120px;
-}
-
-button.minimize {
- background-position:0 -1912px;
-}
-
-#export_data li a.rss {
- background-position:0 -130px;
-}
-
-#export_data li a.atom {
- background-position:0 -64px;
-}
-
-#export_data li a.foaf {
- background-position:0 1px;
-}
-
-#export_data li a.json {
- background-image:url(../images/icons/activitystreams.png);
- background-repeat:no-repeat;
- background-color:transparent;
-}
-
-
-.form_group_queue #approve {
- background-position:2px -2174px;
-}
-
-.form_group_queue #cancel {
- background-position:2px -2240px;
-}
-
-.form_group_leave input.submit,
-.form_user_unsubscribe input.submit,
-.form_user_remove_peopletag input.submit,
-.form_peopletag_unsubscribe input.submit {
- background-position:5px -1246px;
-}
-
-.form_group_join input.submit,
-.form_user_subscribe input.submit,
-.form_remote_authorize input.submit,
-.form_user_add_peopletag input.submit,
-.form_peopletag_subscribe input.submit,
-.entity_subscribe a {
- background-position:5px -1181px;
-}
-
- .peopletags_edit_button {
- background-position: 0 -724px;
-}
-
-.entity_edit a {
- background-position: 5px -719px;
-}
-.entity_send-a-message a {
- background-position: 5px -852px;
-}
-
-.entity_nudge p,
-.form_user_nudge input.submit {
- background-position: 5px -785px;
-}
-
-.form_user_block input.submit,
-.form_user_unblock input.submit,
-.form_group_block input.submit,
-.form_group_unblock input.submit {
- background-position: 5px -918px;
-}
-
-.form_make_admin input.submit {
- background-position: 5px -983px;
-}
-
-.entity_moderation p {
- background-position: 5px -1313px;
-}
-
-.entity_sandbox input.submit {
- background-position: 5px -1380px;
-}
-
-.entity_silence input.submit {
- background-position: 5px -1445px;
-}
-
-.entity_delete input.submit {
- background-position: 5px -1511px;
-}
-
-.entity_sandbox .form_user_unsandbox input.submit {
- background-position: 5px -2568px;
-}
-
-.entity_silence .form_user_unsilence input.submit {
- background-position: 5px -2633px;
-}
-
-.entity_role p {
- background-position: 5px -2436px;
-}
-
-.entity_role_administrator .form_user_grantrole input.submit {
- background-position: 5px -983px;
-}
-
-.entity_role_moderator .form_user_grantrole input.submit {
- background-position: 5px -1313px;
-}
-
-.entity_role_administrator .form_user_revokerole input.submit {
- background-position: 5px -2699px;
-}
-
-.entity_role_moderator .form_user_revokerole input.submit {
- background-position: 5px -2501px;
-}
-
-.form_reset_key input.submit {
- background-position: 5px -1973px;
-}
-
-.entity_clear input.submit {
- background-position: 5px -2039px;
-}
-
-.entity_flag input.submit,
-.entity_flag p {
- background-position: 5px -2105px;
-}
-
-.entity_approval input.approve,
-.entity_subscribe input.accept {
- background-position: 5px -2171px;
-}
-
-.entity_approval input.cancel,
-.entity_subscribe input.reject {
- background-position: 5px -2237px;
-}
-
-#realtime_play {
- background-position: 0 -2308px;
-}
-
-#realtime_pause {
- background-position: 0 -2374px;
-}
-
-#realtime_popup {
- background-position: 0 -1714px;
-}
-
-.notice .attachment {
- background-position:0 -394px;
-}
-
-.notice .attachment.more {
- background-position:0 -2770px;
-}
-
-#attachments .attachment {
- background:none;
-}
-
-.notice-options .notice_reply {
- background-position:0 -592px;
-}
-
-.notice-options form.form_favor input.submit {
- background-position:0 -460px;
-}
-
-.notice-options form.form_disfavor input.submit {
- background-position:0 -526px;
-}
-
-.notice-options .notice_delete {
- background-position:0 -658px;
-}
-
-.notice-options .form_repeat.processing {
- background-image:none;
-}
-
-.notice-options form.form_repeat input.submit {
- background-position:0 -1582px;
-}
-
-.notice-options .repeated {
- background-position:0 -1648px;
-}
-
-#new_group a {
- background-position:0 -1054px;
-}
-
-.form_notice label.notice_data-attach {
- background-position: 0 -328px;
-}
-
-.form_notice label.notice_data-geo {
- background-position: 0 -1780px;
-}
-
-.form_notice label.notice_data-geo.checked {
- background-position: 0 -1846px;
-}
-
-#pagination .nav_prev a {
- padding-top: 8px;
- padding-left: 25px;
- background-position:0 -187px;
-}
-
-#pagination .nav_next a {
- padding-top: 9px;
- padding-right: 25px;
- background-position: 115% -252px;
-}
-
-#usergroups #new_group {
- float: left;
- margin-right: 2em;
-}
-
-#new_group, #group_search {
- margin-bottom:18px;
-}
-
-#new_group a {
- padding-left:20px;
-}
-
-.entity_tags li.mode-private {
- color: #829D25;
-}
-
-.mode-private .privacy_mode {
- background-position: 0px -1978px;
-}
-
-/* tag autocomplete */
-
-.ptag-ac-line {
- font-weight: normal;
- background-color: white;
- min-height:30px;
-}
-
-.ptag-ac-line:nth-child(odd) {
- background-color: #fafafa;
-}
-
-.ptag-ac-line-tag {
- min-width: 150px;
- display: inline-block;
-}
-
-.ptag-ac-line .freq {
- min-width: 50px;
- text-align: right;
- float:right;
-}
-
-.ptag-ac-line.mode-public .privacy_mode {
- display:none;
-}
-
-#site_nav_local_views li.extended_menu a {
- display:none;
-}
-
-.profile_block_otherprofile_list li {
- display: inline;
- list-style-type: none;
-}
-
-}/*end of @media screen, projection, tv*/
-
-
-@media print {
-a:after { background-color:#FFFFFF; }
-a:not([href^="#"]):after { content:" <"attr(href)"> "; }
-img { border:none; }
-p { orphans: 2; widows: 1; }
-
-#site_nav_global_primary,
-#site_nav_local_views,
-#form_notice,
-.pagination,
-#site_nav_global_secondary,
-.entity_actions,
-.notice-options,
-#aside_primary,
-.form_subscription_edit .submit {
- display:none;
-}
-
-.timestamp dt, .timestamp dd,
-.device dt, .device dd {
- display:inline;
-}
-
-.profiles li,
-.notices li {
- margin-bottom:18px;
-}
-
-}/*end of @media print*/
+++ /dev/null
-/* placeholder for RTL style */
+++ /dev/null
-/** Universal Ad Package styles:
- * Medium Rectangle 300x250
- * Rectangle 180x150
- * Leaderboard 728x90
- * Wide Skyscraper 160x600
- *
- * @package StatusNet
- * @author Sarven Capadisli <csarven@status.net>
- * @copyright 2010 StatusNet, Inc.
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://status.net/
- */
-
-
-.ad {
-border:1px solid #CCC;
-float:left;
-}
-
-#ad_medium-rectangle {
-width:300px;
-height:250px;
-
-margin-left:1.35%;
-margin-bottom:18px;
-}
-
-#ad_rectangle {
-width:180px;
-height:150px;
-
-float:none;
-clear:both;
-margin:0 auto;
-margin-bottom:29px;
-}
-
-#ad_leaderboard {
-width:728px;
-height:90px;
-
-margin:0 auto 18px;
-float:none;
-clear:both;
-}
-
-#ad_wide-skyscraper {
-width:160px;
-height:600px;
-
-float:right;
-margin-top:18px;
-margin-right:8.25%;
-}
+++ /dev/null
-/**
- * @author Paul Jarvis
- * @license http://dev.perl.org/licenses/ Artistic License/GPL
- * @note
- White left arrow with green background
- White right arrow with green background
- White clip with green background
- White heart with green background
- White reply with green background
- White garbage with green background
- White pencil with green background
- White envelope with green background
- White speech bubble with green background
- White shield with green background
- White asterisk with green background
- White x with green background
- White plus with green background
- White minus with green background
- White skull with green background
- White recycle with green background
- White external with green background
- White key with green background
- White flag with green background
- White checkmark with green background
- White reject with green background
- White play with green background
- White pause with green background
- */
-
-
-/**
- * @author Sarven Capadisli <csarven@status.net>
- * @copyright 2008-2010 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- * @note
- Green clip with transparent background
- Green heart with white background
- White person with tie with green background
- White sherif badge with green background
- White boxes with green background
- White speech bubble broken with green background
- Green recycle with transparent background
- Green pin with white background
- White pin with green background
- White underscore with green background
- White C with green background
- White magic wand with green background
- Green badge with white background
- Green sandbox with white background
- Green speech bubble broken with white background
- Green person with tie with white background
- */
-
-Created by various authors
-* FOAF icon from http://iandavis.com/2006/foaf-icons/ with Public Domain license
-* Atom feed icon from http://intertwingly.net/wiki/pie/Icon with Public Domain license
-* RSS feed icon from http://www.feedicons.com/ (Mozilla, Microsoft, Matt Brett) with MPL/GPL/LGPL tri-license
-* Processing icon from/by Unknown with Unknown license //FIXME
-* lock and lock_open icons by Mark James http://www.famfamfam.com/lab/icons/silk/ (Creative Commons Attribution 2.5 License)
+++ /dev/null
-/** theme: neo-blue
- *
- * @package StatusNet
- * @author Samantha Doherty <sammy@status.net>
- * @copyright 2011 StatusNet, Inc.
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://status.net/
- */
-
-@media screen, projection, tv {
-
-body {
- background: #7e89a4;
-}
-
-#wrap {
- border: none;
- padding: 0px 10px;
- box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
- -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
- background: #fff;
-}
-
-#header {
- padding-top: 7px;
-}
-
-#site_nav_global_primary {
- top: 0px;
- right: -14px;
- padding-top: 5px;
- height: 30px;
- width: 986px;
- box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
- -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
- -webkit-border-bottom-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
- border-bottom-left-radius: 4px;
- -webkit-border-bottom-right-radius: 4px;
- -moz-border-radius-bottomright: 4px;
- border-bottom-right-radius: 4px;
- z-index: 98;
- border-bottom: 1px solid #fff;
- border-left: 1px solid #516499;
- border-right: 1px solid #516499;
-}
-
-#site_nav_global_primary a:hover {
- background: #4c619c;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-
-#site_notice {
- margin: 45px 0px 0px 0px;
- background-color: #f2f2f2; /* XXX */
-}
-
-#core {
- border-top: none;
- margin-top: 3px;
-}
-
-.input_forms {
- background-color: #fff;
- left: 0px;
- padding: 18px 0px 0px 0px;
-}
-
-}/*end of @media screen, projection, tv*/
+++ /dev/null
-address img {
- background: none !important;
-}
-
-/* copy of mp-screen.css from neo theme */
-
-body {
- background-image: none;
- min-width: 0;
-}
-
-#header {
- padding: 0;
-}
-
-#site_nav_global_primary {
- top: 0;
- -webkit-border-top-right-radius: 0px;
- -moz-border-radius-topright: 0px;
- border-top-right-radius: 0px;
- line-height: 16px;
-}
-
-#site_nav_global_primary li {
- float: left;
- margin-right: 8px;
-}
-
-#site_nav_local_views {
- line-height: 2em;
-}
-
-#site_nav_local_views h3 {
- color: #333;
- background: none;
- text-transform: none;
- letter-spacing: 0;
- padding-bottom: 0;
-}
-
-#site_nav_local_views li li {
- margin: 0 6px 6px 0;
-}
-
-#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li {
- margin: 0 6px 6px 0;
-}
-
-#site_nav_local_views a {
- color: #fff;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);;
- background: #364a84;
- background: -moz-linear-gradient(top, #7b8dbb , #364a84);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#364a84));
- font-size: 0.9em;
- width: auto;
-}
-
-#site_nav_local_views a:hover {
- background: #7b8dbb;
- background: -moz-linear-gradient(top, #364a84 , #7b8dbb);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#364a84), color-stop(100%,#7b8dbb));
-}
-
-.input_forms {
- top: -10px;
- padding-right: 0;
-}
-
-#input_form_nav li a {
- padding: 0px 4px 1px 4px;
-}
-
-.form_notice .count {
- top: 44px;
- left: 276px;
-}
-
-#form_notice-direct.form_notice .count {
- top: 74px;
- left: 276px;
-}
-
-#event-startdate, #event-starttime, #event-enddate, #event-endtime {
- width: 120px;
- margin-right: 12px;
-}
-
-.input_form .form_settings .submit {
- font-size: 1em;
-}
-
-.form_notice input.submit {
- font-size: 1em;
-}
-
-.question div.question-description {
- max-width: 100% !important;
-}
-
-ul.qna-dummy {
- width: 80%;
-}
-
-.qna-dummy-placeholder input {
- width: 92%;
-}
-
-.question #qna-answer, .qna-full-question #qna-answer {
- width: 220px;
-}
-
-.threaded-replies #answer-form fieldset {
- width: 220px;
-}
-
-.threaded-replies #qna-answer-submit {
- float: left;
- clear: left;
- position: relative;
- top: 0;
- bottom: 0px;
- left: 0;
- margin-top: 10px;
-}
-
-a.company_logo {
- display: none !important;
-}
+++ /dev/null
-include=neo
+++ /dev/null
-GNU social by Jonas Laugs with lettering by Steven DuBois.
-License: CC0 1.0 Universal http://creativecommons.org/publicdomain/zero/1.0/
-
-Default avatars are modified from an image by Francesco 'Architetto' Rollandin.
-http://www.openclipart.org/detail/34957
-
-Some icons by Mark James
-http://www.famfamfam.com/lab/icons/silk/
-http://creativecommons.org/licenses/by/2.5/ Creative Commons Attribution 2.5 License
+++ /dev/null
-/** theme: neo-gnu
- *
- * @package GNUsocial
- * @author Samantha Doherty <sammy@status.net>
- * @modified MeikoDis <meikodis@meikodis.org>
- * @copyright 2011 StatusNet, Inc.
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://gnu.io/
- */
-
-@media screen, projection, tv {
-
-/* general styles and layout */
-
-body {
- /* background-color: #C6C8CC;
- background-image: url(../images/bg.png); */
- background-color: #e9eaed;
- color: #222;
-}
-
-a {color: #666;}
-a:hover {color: #a22430;}
-
-abbr {border-bottom: none;}
-
-h1 {font-size: 1.6em;}
-h2 {font-size: 1.6em;}
-h3 {font-size: 1.4em;}
-h4 {font-size: 1.4em;}
-h5 {font-size: 1.2em;}
-h6 {font-size: 1em;}
-
-#wrap {
- background: #fff url('../images/brdr_black_dot.png') repeat-x 0px 10px;
-}
-
-#header {
- padding-top: 12px;
-}
-
-#core {
- border-top: 3px solid #ccc;
- border-left: 1px solid #d8dae6;
- border-right: 1px solid #d8dae6;
-}
-
-#aside_primary_wrapper {
- background-color: #ECECF2;
-}
-
-#content_wrapper {
- border-right: 1px solid #d8dae6;
-}
-
-#site_nav_local_views_wrapper {
- background-color: #ECECF2;
- border-right: 1px solid #d8dae6;
-}
-
-#footer {
- top: -6px;
- -webkit-border-top-left-radius: 6px;
- -webkit-border-top-right-radius: 6px;
- -moz-border-radius-topleft: 6px;
- -moz-border-radius-topright: 6px;
- border-top-left-radius: 6px;
- border-top-right-radius: 6px;
-}
-
-/* header elements */
-
-address img {
- max-width: 150px;
-}
-
-#site_nav_global_primary {
- top: 16px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- background: #ccc;
- background: -moz-linear-gradient(top, #666 0%, #ccc 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#666), color-stop(100%,#ccc));
- background: -webkit-linear-gradient(top, #666 0%,#ccc 100%);
- background: -o-linear-gradient(top, #666 0%,#ccc 100%);
- background: -ms-linear-gradient(top, #666 0%,#ccc 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666', endColorstr='#ccc',GradientType=0 );
- background: linear-gradient(top, #666 0%,#ccc 100%);
-}
-
-#site_nav_global_primary li {
- margin-right: 0px;
-}
-
-#site_nav_global_primary li:last-child {
- margin-right: 10px;
-}
-
-#site_nav_global_primary a {
- padding: 2px 10px 2px 10px;
- height: 20px;
- display: block;
- float: left;
- color: #fff;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
-}
-
-#site_nav_global_primary a:hover {
- color: #fff;
- text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
-}
-
-#header-search {
- top: 1px;
- margin-left: 6px;
-}
-
-#header-search #search-q {
- position: relative;
- width: 131px;
- height: 12px;
- margin-right: 10px;
- padding: 2px 22px 2px 6px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- border: none;
- font-size: 0.88em;
-}
-
-#header-search input[type="submit"] {
- border: 0;
- background: url(../images/magnifier.png) no-repeat 2px 1px;
- text-indent: -9999px;
- width: 20px;
- height: 18px;
- position: absolute;
- right: 10px;
- top: 2px;
- z-index: 2;
- cursor: pointer;
-}
-
-#site_notice {
- margin: 28px 0px 0px 160px;
- padding: 2px;
- background-color: #fff;
-}
-
-/* input forms */
-
-.input_forms {
- float: left;
- top: -20px;
- left: -20px;
- padding: 18px 20px 0px 20px;
- border-bottom: none;
- margin-bottom: 0px;
- background: #fafafa url('../images/brdr_black_dot.png') repeat-x bottom left;
-}
-
-#input_form_nav li a {
- display: block;
- float: left;
- padding: 0px 10px 1px 10px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- border: 1px solid #ECECF2;
- font-weight: bold;
- line-height: 1.4em;
- color: #666;
- text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.9);
- background: #ececf2;
- background: -moz-linear-gradient(top, #ffffff 0%, #ececf2 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ececf2));
- background: -webkit-linear-gradient(top, #ffffff 0%,#ececf2 100%);
- background: -o-linear-gradient(top, #ffffff 0%,#ececf2 100%);
- background: -ms-linear-gradient(top, #ffffff 0%,#ececf2 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ececf2',GradientType=0 );
- background: linear-gradient(top, #ffffff 0%,#ececf2 100%);
-}
-
-#input_form_nav li:hover a, #input_form_nav li.current a {
- color: #fff;
- text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
- border: 1px solid #ececf2;
- background: #ccc;
- background: -moz-linear-gradient(top, #666 0%, #ccc 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#666), color-stop(100%,#ccc));
- background: -webkit-linear-gradient(top, #666 0%,#ccc 100%);
- background: -o-linear-gradient(top, #666 0%,#ccc 100%);
- background: -ms-linear-gradient(top, #666 0%,#ccc 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666', endColorstr='#ccc',GradientType=0 );
- background: linear-gradient(top, #7b8dbb 0%,#ccc 100%);
-}
-
-.input_form_nav_tab a, .input_form_nav_tab.current a {
- text-decoration: none;
-}
-
-.input_form fieldset fieldset label {
- background: none;
-}
-
-.form_notice .error,
-.form_notice .success,
-.form_notice .notice-status {
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-
-.form_notice_placeholder .placeholder,
-.form_notice textarea ,
-.input_form .form_settings li input,
-.input_form .form_settings li textarea,
-.threaded-replies .placeholder { /* TODO combine all these declarations */
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-.input_form .form_settings .submit {
- font-size: 1.1em;
-}
-
-/* site nav local views */
-
-#site_nav_local_views h3 {
- border-bottom: 1px dashed gray;
- margin-bottom: 1ex;
- padding-bottom: 1ex;
- color: #7a7c87;
- font-size: 1.1em;
- letter-spacing: 2px;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
- text-transform: uppercase;
-}
-
-#site_nav_local_views a {
- display: block;
- line-height: 1em;
- padding: 1ex;
- border-radius: 0.5ex;
- text-transform: uppercase;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
- word-wrap: break-word;
-}
-
-#site_nav_local_views a:hover, #site_nav_local_views .current a {
- color: #fff;
- text-decoration: none;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
- background: #ccc;
- background: -moz-linear-gradient(top, #666 0%, #ccc 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#666), color-stop(100%,#ccc));
- background: -webkit-linear-gradient(top, #666 0%,#ccc 100%);
- background: -o-linear-gradient(top, #666 0%,#ccc 100%);
- background: -ms-linear-gradient(top, #666 0%,#ccc 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666', endColorstr='#ccc',GradientType=0 );
- background: linear-gradient(top, #666 0%,#ccc 100%);
-}
-
-/* aside primary */
-
-#aside_primary .section {
- font-size: 0.88em;
-}
-
-#aside_primary h2 {
- margin-bottom: 10px;
- padding-bottom: 6px;
- background: url('../images/brdr_black_dot.png') repeat-x bottom left;
- color: #7a7c87;
- font-size: 1.25em;
- letter-spacing: 2px;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
- text-transform: uppercase;
-}
-
-.profile_block .entity_actions {
- float: right;
- width: 110px;
- margin-top: 2px;
- margin-bottom: 2px;
-}
-
-.profile_block .entity_moderation:hover ul,
-.profile_block .entity_role:hover ul {
- right: 20px;
-}
-
-.profile_block_name {
- font-size: 14px;
- font-weight: bold;
-}
-
-.profile_block_location {
- font-weight: bold;
-}
-
-.profile_block_description {
- line-height: 1.2em;
-}
-
-#site_nav_object ul {
- background: url('../images/brdr_black_dot.png') repeat-x top left;
-}
-
-#site_nav_object li {
- display: block;
- margin: -8px 0px 8px 0px;
- padding-top: 8px;
-}
-
-#site_nav_object a {
- font-size: 14px;
- display: block;
- padding: 0px 0px 1px 10px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- text-transform: uppercase;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-#site_nav_object a:hover, #site_nav_object .current a {
- color: #fff;
- text-decoration: none;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
- background: #ccc;
- background: -moz-linear-gradient(top, #666 0%, #ccc 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#666), color-stop(100%,#ccc));
- background: -webkit-linear-gradient(top, #666 0%,#ccc 100%);
- background: -o-linear-gradient(top, #666 0%,#ccc 100%);
- background: -ms-linear-gradient(top, #666 0%,#ccc 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666', endColorstr='#ccc',GradientType=0 );
- background: linear-gradient(top, #666 0%,#ccc 100%);
-}
-
-.section ul.entities {
- width: 240px;
-}
-
-.section .entities li {
- margin-right: 3.6px;
- margin-bottom: 5px;
- width: 24px;
-}
-
-#popular_notices .avatar {
- position: relative;
- top: 4px;
- margin-bottom: 6px;
-}
-
-#aside_primary td {
- padding-right: 20px;
- padding-bottom: 14px;
-}
-
-#aside_primary td .nickname {
- line-height: 1.6em;
-}
-
-.section .avatar {
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
- -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
- -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
-}
-
-.invite_button {
- height: 2.1em;
- line-height: 2.1em;
- display: block;
- text-align: center;
- color:#fff;
- font-weight: bold;
- text-transform: uppercase;
- font-size: 1.2em;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
- border: 1px solid #c33541;
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- background: #a22430;
- background: -moz-linear-gradient(top, #a22430 0%, #c33541 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a22430), color-stop(100%,#c33541));
- background: -webkit-linear-gradient(top, #a22430 0%,#c33541 100%);
- background: -o-linear-gradient(top, #a22430 0%,#c33541 100%);
- background: -ms-linear-gradient(top, #a22430 0%,#c33541 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a22430', endColorstr='#c33541',GradientType=0 );
- background: linear-gradient(top, #a22430 0%,#c33541 100%);
-}
-
-.invite_button:hover {
- color: #fff;
- text-decoration: none;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
- background: #a22430;
- background: -moz-linear-gradient(top, #c33541 0%, #d44652 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c33541), color-stop(100%,#d44652));
- background: -webkit-linear-gradient(top, #a22430 0%,#d44652 100%);
- background: -o-linear-gradient(top, #a22430 0%,#d44652 100%);
- background: -ms-linear-gradient(top, #a22430 0%,#d44652 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a22430', endColorstr='#d44652',GradientType=0 );
- background: linear-gradient(top, #a22430 0%,#d44652 100%);
-
-}
-
-/* notices etc */
-
-#content h1 {
- border-bottom: 3px solid #A6ADBF;
- color: #A6ADBF;
- font-size: 1.4em;
- letter-spacing: 4px;
- text-transform: none;
-}
-
-#content .notice {
- padding-bottom: 4px;
- border-bottom: 2px dotted #eee;
-}
-
-.notice div.entry-content {
- font-size: 0.88em;
- line-height: 1.2em;
- margin-top: 6px;
- opacity: 0.6;
-}
-
-.notice:hover div.entry-content {
- opacity: 1;
-}
-
-.user_in .notice div.entry-content {
- max-width: 440px;
-}
-
-div.entry-content a.response:before {
- content: "(";
-}
-
-div.entry-content a.response:after {
- content: ")";
-}
-
-.notice-options {
- margin-top: 4px;
-}
-
-.notice-options .form_repeat.dialogbox {
- margin-right: 0px;
- border: 1px solid #aaa;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
- -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
- -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
-}
-
-.notice-options .form_repeat.dialogbox legend {
- padding-top: 10px;
-}
-
-#content .threaded-replies .notice .author .photo {
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
- -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
- -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
-}
-
-.user_in.realtime-popup .notice div.entry-content {
- max-width: 320px;
-}
-
-
-.realtime-popup .threaded-replies {
- margin-left: 15px;
-}
-
-.realtime-popup .threaded-replies .form_notice textarea {
- width: 385px !important;
-}
-
-.realtime-popup .threaded-replies .form_notice label.notice_data-attach {
- top: 10px !important;
- right: 10px !important;
-}
-
-
-.pagination {
- height: 1.2em;
-}
-
-.entity_profile {
- float: left;
- width: 360px;
- margin-top: 4px;
-}
-
-.entity_profile .entity_depiction {
- margin-top: 4px;
-}
-
-.entity_actions {
- width: 140px;
- margin-top: 8px;
- margin-bottom: 10px;
-}
-
-.entity_actions a, .entity_actions p, .entity_actions .entity_subscribe input, .entity_actions .entity_block input, .entity_actions .entity_moderation input, .entity_actions .entity_role input, .entity_actions .entity_nudge input, .entity_actions .entity_delete input, .entity_actions input.submit {
- text-shadow:0 1px 0 rgba(255,255,255,0.4);
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- background-color: #CDD1DD !important;
-}
-
-.entity_moderation:hover ul,
-.entity_role:hover ul {
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
-}
-
-.entity_send-a-message .form_notice legend {
- text-shadow:0 1px 0 rgba(255,255,255,0.4);
-}
-
-.entity_send-a-message .form_notice {
- border: 1px solid #7B4E82;
-}
-
-.entity_send-a-message .form_notice #notice_action-submit {
- color: #fff !important;
- top: 46px;
-}
-
-.entity_subscribe .dialogbox, .entity_tag .dialogbox {
- border: 1px solid #aaa;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
- -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
- -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
-}
-
-.entity_subscribe .dialogbox input.submit_dialogbox, .entity_tag .dialogbox input.submit_dialogbox {
- color: #fff !important;
-}
-
-#filter_tags_item .submit {
- left: 6px;
- top: -3px;
-}
-
-#pagination {
- height: 1.2em;
- padding-bottom: 12px;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-
-#pagination a {
- color: #666;
-}
-
-
-#footer a {
- color: #666;
-}
-
-#site_nav_global_secondary {
- margin-bottom: 10px;
-}
-
-.error, .success, .notice-status {
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-
-
-.form_notice input.submit, .form_settings input.submit, .form_settings input.cancel, #form_invite input.submit,
-.entity_subscribe .dialogbox input.submit_dialogbox,
-.entity_tag .dialogbox input.submit_dialogbox,
-.form_repeat.dialogbox input.submit_dialogbox
-{ /* TODO combine all these declarations */
- height: 1.9em;
- padding: 0px 10px;
- color:#fff;
- font-weight: bold;
- text-transform: uppercase;
- font-size: 1.2em;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
- border: 1px solid #c33541;
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- background: #a22430;
- background: -moz-linear-gradient(top, #a22430 0%, #c33541 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a22430), color-stop(100%,#c33541));
- background: -webkit-linear-gradient(top, #a22430 0%,#c33541 100%);
- background: -o-linear-gradient(top, #a22430 0%,#c33541 100%);
- background: -ms-linear-gradient(top, #a22430 0%,#c33541 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a22430', endColorstr='#c33541',GradientType=0 );
- background: linear-gradient(top, #a22430 0%,#c33541 100%);
-}
-
-.form_notice input.submit:hover, .form_settings input.submit:hover, .form_settings input.cancel:hover, #form_invite input.submit:hover,
-.entity_subscribe .dialogbox input.submit_dialogbox:hover,
-.entity_tag .dialogbox input.submit_dialogbox:hover,
-.form_repeat.dialogbox input.submit_dialogbox:hover
-{
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
- background: #a22430;
- background: -moz-linear-gradient(top, #c33541 0%, #d44652 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c33541), color-stop(100%,#d44652));
- background: -webkit-linear-gradient(top, #c33541 0%,#d44652 100%);
- background: -o-linear-gradient(top, #c33541 0%,#d44652 100%);
- background: -ms-linear-gradient(top, #c33541 0%,#d44652 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c33541', endColorstr='#d44652',GradientType=0 );
- background: linear-gradient(top, #c33541 0%,#d44652 100%);
-}
-
-.form_settings input#cancel, #form_action-no {
- background: #f2f2f2;
- color: #c33541;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.form_settings input#cancel:hover, #form_action-no:hover {
- background: #fff;
- color: #c33541;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.form_settings fieldset fieldset {
- margin-bottom: 30px;
- padding-top: 25px;
-}
-
-#invite #content p {
- margin-bottom: 15px;
-}
-
-#invite #content ul {
- list-style-type: none;
- margin-bottom: 25px;
- margin-left: 25px;
-}
-
-#invite #content li {
- background: url(../images/resultset_next.png) no-repeat 0px 3px;
- padding-left: 20px;
- margin-bottom: 10px;
-}
-
-#invite #content #form_invite ul, #invite #content #form_invite li {
- margin-left: 0px;
- padding-left: 0px;
- background: none;
-}
-
-#form_invite input[type=text], #form_invite textarea {
- width: 250px;
- padding: 5px;
- border: 1px solid #a6a6a6;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-#form_invite textarea {
- clear: left;
- width: 508px;
- height: 48px;
-}
-
-#form_invite a.add_row, #form_invite a.remove_row {
- display: block;
- height: 16px;
- width: 16px;
- overflow: hidden;
- background-image: url('../../base/images/icons/icons-01.gif');
- background-repeat: no-repeat;
-}
-
-#form_invite a.remove_row {
- background-position: 0px -1252px;
- display: inline-block;
- position: relative;
- top: 4px;
- left: 10px;
- line-height: 4em;
-}
-
-#form_invite a.add_row {
- clear: both;
- position: relative;
- top: 10px;
- background-position: 0px -1186px;
- width: 120px;
- padding-left: 20px;
- line-height: 1.2em;
-}
-
-#form_invite label[for=personal] {
- display: block;
- margin-top: 25px;
-}
-
-#content thead th {
-text-align:left;
-}
-#content tbody th {
-vertical-align:top;
-text-align:left;
-font-weight:normal;
-padding-top:11px;
-padding-right:18px;
-}
-#content tbody tr {
- border-top: 1px dotted #bbb;
-}
-#content td {
-padding:11px 18px 11px 0;
-vertical-align:top;
-}
-#content td:last-child {
-padding-right:0;
-}
-
-/* Search */
-
-#form_search {
- padding-bottom: 10px;
- margin-bottom: 20px;
- background: url('../images/brdr_black_dot.png') repeat-x bottom left;
-}
-
-#form_search fieldset {
- margin-bottom: 0px;
-}
-
-#form_search ul.form_data #q {
- margin-left: 10px;
- width: 210px;
-}
-
-#form_search input.submit {
- height: 1.6em;
- line-height: 1.6em;
- font-size: 1.1em;
- padding-bottom: 2px;
- margin-left: 5px;
-}
-
-#noticesearch .entity_actions {
- margin: 0px;
-}
-
-#noticesearch p.error {
- margin-top: 60px;
-}
-
-/* Limited-scope */
-
-.limited-scope .entry-content .timestamp {
- padding-left: 20px;
- position: relative;
-}
-
-.limited-scope .entry-content .timestamp:before {
- content: url(../images/lock.png);
- position: absolute;
- top: -2px;
- left: 0px;
-}
-
-.limited-scope li .entry-content .timestamp {
- padding-left: 0px;
-}
-
-.limited-scope li .entry-content .timestamp:before {
- content: none;
-}
-
-.limited-scope li.limited-scope .entry-content .timestamp {
- padding-left: 20px;
-}
-
-.limited-scope li.limited-scope .entry-content .timestamp:before {
- content: url(../images/lock.png);
- position: absolute;
- top: -2px;
- left: 0px;
-}
-
-/* Blog */
-
-label[for=blog-entry-content] {
- display: none !important;
-}
-
-#input_form_blog td {
- padding-top: 0px;
- padding-bottom: 0px;
-}
-
-#input_form_blog td.mceToolbar {
- padding-top: 4px;
-}
-
-h4.blog-entry-title {
- margin-bottom: 8px;
- line-height: 1.2em;
-}
-
-/* Bookmark specific styles */
-/* TODO separate base styles and move to plugin */
-
-.bookmark h3 {
- margin: 0px 0px 8px 0px;
- float: left;
- line-height: 1.2em;
- max-width: 92%;
-}
-
-.bookmark-notice-count {
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- padding: 1px 6px;
- font-size: 1.2em;
- line-height: 1.2em;
- background: #fff;
- border: 1px solid #7b8dbb;
- color: #666 !important;
- position: relative;
- right: 4px;
- margin-left: 10px;
-}
-
-.bookmark-notice-count:hover {
- text-decoration: none;
- background: #f2f2f2;
- border: 1px solid #7b8dbb;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.notice .bookmark-description {
- clear: both;
- margin-left: 0px;
- margin-bottom: 0px;
-}
-
-.notice .bookmark-author {
- margin-left: 0px;
- float: left;
-}
-
-.bookmark-tags {
- clear: both;
- margin-bottom: 8px;
- line-height: 1.6em;
-}
-
-ul.bookmark-tags a {
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- padding: 1px 6px;
- background: #f2f2f2;
- color: #666 !important;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
- font-size: 0.88em;
-}
-
-ul.bookmark-tags a:hover {
- background-color: #cdd1dd;
- text-decoration: none;
-}
-
-.bookmark-avatar {
- float: none !important;
- position: relative;
- top: 2px;
-}
-
-.bookmark div.entry-content {
- font-size: 0.88em;
- line-height: 1.2em;
- margin-top: 6px;
- opacity: 0.6;
- margin-bottom: 0px;
-}
-
-.bookmark:hover div.entry-content {
- opacity: 1;
-}
-
-#bookmarkpopup {
- min-width: 600px;
- margin-top: 0px;
- height: 100%;
- border: 10px solid #364A84;
- background: #364A84;
-}
-
-#bookmarkpopup #wrap {
- width: auto;
- min-width: 560px;
- padding: 40px 0px 25px 0px;
- margin-right: 2px;
- background: #fff url(../mobilelogo.png) no-repeat 6px 6px;
-}
-
-#bookmarkpopup #header {
- width: auto;
- padding: 0px 10px;
-}
-
-#bookmarkpopup .form_settings label {
- margin-top: 2px;
- text-align: right;
- width: 24%;
- font-size: 1.2em;
-}
-
-#bookmarkpopup .form_settings .form_data input {
- width: 60%;
-}
-
-#bookmarkpopup .form_guide {
- color: #777;
-}
-
-#bookmarkpopup #bookmark-submit {
- min-width: 100px;
-}
-
-#bookmarkpopup fieldset fieldset {
- margin-bottom: 10px;
-}
-
-#form_initial_bookmark.form_settings .form_data li {
- margin-bottom: 0px;
-}
-
-#form_new_bookmark.form_settings .bookmarkform-thumbnail {
- position: absolute;
- top: 50px;
- right: 0px;
-}
-
-/* Onboard specific styles */
-/* TODO move to plugin */
-
-#cboxOverlay{
- background: url(../images/lightbox_bg.png) repeat 0 0 !important;
-}
-
-#cboxContent{
- background: #fff url(../logo.png) no-repeat 10px bottom !important;
-}
-
-.onboard_iframe {
- background: none;
- padding: 10px;
-}
-
-.onboard_iframe #wrap {
- width: auto;
- background: none;
-}
-
-.onboard_welcome p {
- margin-bottom: 10px;
-}
-
-.onboard_welcome ul {
- list-style-type: none;
- margin-bottom: 10px;
-}
-
-.onboard_welcome ul li {
- background: url(../images/resultset_next.png) no-repeat 0px 3px;
- padding-left: 20px;
- margin-left: 10px;
-}
-
-#aside_primary #onboard_section {
- background: #f2f2f2;
- width: 196px;
- padding: 10px;
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border: 1px solid #516499;
- background: #fafafa;
-}
-
-#onboard_section H2 {
- -webkit-border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
- border-top-left-radius: 4px;
- -webkit-border-top-right-radius: 4px;
- -moz-border-radius-topright: 4px;
- border-top-right-radius: 4px;
- position: relative;
- top: -11px;
- left: -11px;
- padding: 2px 0px 2px 10px;
- margin-right: -22px;
- margin-bottom: 5px;
- color: #fff;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
- background: #ccc;
- background: -moz-linear-gradient(top, #666 0%, #ccc 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#666), color-stop(100%,#ccc));
- background: -webkit-linear-gradient(top, #666 0%,#ccc 100%);
- background: -o-linear-gradient(top, #666 0%,#ccc 100%);
- background: -ms-linear-gradient(top, #666 0%,#ccc 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666', endColorstr='#ccc',GradientType=0 );
- background: linear-gradient(top, #666 0%,#ccc 100%);
-}
-
-#onboard_section ul {
- list-style-type: none;
-}
-
-#onboard_section .onboard-step-incomplete {
- background: url(../images/resultset_next.png) no-repeat 0px 1px;
- padding-left: 20px;
- margin-bottom: 10px;
-}
-
-#onboard_section .onboard-step-complete {
- background: url(../images/tick.png) no-repeat 0px 1px;
- padding-left: 20px;
- margin-bottom: 10px;
- text-decoration: line-through;
- color: #555;
-}
-
-/* Billing specific styles */
-/* TODO move to plugin */
-
-#content table.billing_info {
- margin-top: 10px;
- background:rgba(240, 240, 240, 0.4);
-}
-
-#content table.billing_info th {
- text-align: right;
- width: 50%;
-}
-
-.invalid {
- border: solid 2px red !important;
-}
-
-#payment_history table {
- width: 100%;
-}
-
-#billingadminpanel .form_settings input {
- margin-right: 0px;
-}
-
-/* Directory specific styles */
-/* TODO separate base styles and move to plugin */
-
-div#profile_directory div.alpha_nav > a {
- border-left: 1px solid #ccc !important;
- padding-left: 3.5px !important;
- padding-right: 4px !important;
- margin-right: 0px;
- float: left;
- line-height: 1.4em;
-}
-
-div#profile_directory div.alpha_nav > a.first {
- border-left: none !important;
-}
-
-div#profile_directory div.alpha_nav a.current {
- background-color: #ECECF2 !important;
-}
-
-table.profile_list {
- margin-top: 25px;
-}
-
-.profile_list th {
- font-size: 0.8em;
-}
-
-.profile_list th#created {
- width: 100px;
-}
-
-.profile_list th#subscriptions {
- width: 90px;
-}
-
-.profile_list th.current {
- background: none !important;
-}
-
-.profile_list th.current.reverse {
- background: none !important;
-}
-
-.profile_list th.current a {
- padding-right: 25px;
- background: url(../images/bluearrow_down.png) no-repeat top right;
-}
-
-.profile_list th.current.reverse a {
- background: url(../images/bluearrow_up.png) no-repeat top right;
-}
-
-td.entity_profile {
- width: auto;
- min-width: 250px;
-}
-
-.profile_list .fn {
- display: block;
- font-size: 1.1em;
- width: auto;
-}
-
-.profile_list .nickname, .profile_list .fn.nickname {
- position: relative;
- top: -8px;
- display: block;
- margin-bottom: -12px;
- font-size: 1.4em;
-}
-
-.profile_list .note {
- font-size: 0.88em;
- line-height: 1.36em;
-}
-
-.profile_list .entry_created, .profile_list .entry_subscriber_count, .profile_list .entry_notice_count {
- font-size: 0.88em;
-}
-
-.profile_list td.entity_actions {
- width: 24px;
- max-width: 24px;
- min-width: 24px;
- height: 20px;
- padding-left: 6px !important;
- position: relative;
- float: none;
- display: table-cell !important;
-}
-
-.profile_list .entity_actions ul {
- position: absolute;
- right: 20px;
-}
-
-.profile_list .entity_actions input {
- width: 22px;
- height: 22px;
- padding-top: 1px;
- padding-right: 0px;
- padding-left: 20px;
- display: block;
- overflow: hidden;
- font-size: 0em;
- border: 1px solid #CDD1DD;
-}
-
-.profile_list .form_group_leave input.submit,
-.profile_list .form_user_unsubscribe input.submit {
- background-position: 2px -1250px;
-}
-
-.profile_list .form_group_join input.submit,
-.profile_list .form_user_subscribe input.submit {
- background-position: 2px -1184px;
-}
-
-.profile_list .entity_actions input:hover {
- width: auto;
- padding-right: 10px;
- overflow: visible;
- font-size: 1em;
- line-height: 1.3em;
- border: 1px solid #A6ADBF;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-/* Event specific styles */
-/* TODO separate base styles and move to plugin */
-
-.notice .vevent div {
- margin-bottom: 8px;
-}
-
-.event-info {
- margin-left: 0px !important;
- margin-top: 2px !important;
-}
-
-.notice .event-info + .notice-options {
- margin-top: 14px;
-}
-
-.notice .threaded-replies .event-info + .notice-options {
- margin-top: 20px;
-}
-
-#form_event_rsvp #new_rsvp_data {
- display: inline;
- margin: 10px 0px;
-}
-
-#form_event_rsvp input.submit {
- height: auto;
- padding: 0px 10px;
- margin-left: 10px;
- color:#fff;
- font-weight: bold;
- text-transform: uppercase;
- font-size: 1.1em;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
- border: 1px solid #c33541;
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- background: #a22430;
- background: -moz-linear-gradient(top, #a22430 0%, #c33541 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a22430), color-stop(100%,#c33541));
- background: -webkit-linear-gradient(top, #a22430 0%,#c33541 100%);
- background: -o-linear-gradient(top, #a22430 0%,#c33541 100%);
- background: -ms-linear-gradient(top, #a22430 0%,#c33541 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a22430', endColorstr='#c33541',GradientType=0 );
- background: linear-gradient(top, #a22430 0%,#c33541 100%);
-}
-
-#form_event_rsvp input.submit:hover {
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
- background: #a22430;
- background: -moz-linear-gradient(top, #c33541 0%, #d44652 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c33541), color-stop(100%,#d44652));
- background: -webkit-linear-gradient(top, #c33541 0%,#d44652 100%);
- background: -o-linear-gradient(top, #c33541 0%,#d44652 100%);
- background: -ms-linear-gradient(top, #c33541 0%,#d44652 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c33541', endColorstr='#d44652',GradientType=0 );
- background: linear-gradient(top, #c33541 0%,#d44652 100%);
-}
-
-#wrap .vevent form.processing input.submit {
- text-indent: 0;
- background: #a22430;
-}
-
-#input_form_event .form_settings .form_data {
- float: left;
-}
-
-#input_form_event .form_settings .form_data li {
- float: left;
- width: auto;
-}
-
-#input_form_event .form_settings .form_data label {
- width: auto;
-}
-
-label[for=event-starttime], label[for=event-endtime] {
- display: none !important;
-}
-
-#event-starttime, #event-endtime {
- margin-top: -1px;
- margin-bottom: -1px;
- height: 2em;
-}
-
-#event-startdate, #event-enddate {
- margin-right: 20px;
- width: 120px;
-}
-
-/* QnA */
-
-.question div.question-description {
- font-size: 1em;
- line-height: 1.36em;
- margin-top: 0px;
- opacity: 1;
-}
-
-.question div.answer-content, .qna-full-question div.answer-content {
- font-size: 1em;
- opacity: 1;
-}
-
-.qna-dummy-placeholder input, .question #qna-answer, .qna-full-question #qna-answer {
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-.question-description input.submit, .answer-content input.submit {
- height: auto;
- padding: 0px 10px;
- margin: 6px 0px 10px 0px;
- color:#fff;
- font-weight: bold;
- text-transform: uppercase;
- font-size: 1.1em;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
- border: 1px solid #c33541;
- border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- background: #a22430;
- background: -moz-linear-gradient(top, #a22430 0%, #c33541 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a22430), color-stop(100%,#c33541));
- background: -webkit-linear-gradient(top, #a22430 0%,#c33541 100%);
- background: -o-linear-gradient(top, #a22430 0%,#c33541 100%);
- background: -ms-linear-gradient(top, #a22430 0%,#c33541 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a22430', endColorstr='#c33541',GradientType=0 );
- background: linear-gradient(top, #a22430 0%,#c33541 100%);
-}
-
-#qna-answer-submit {
- min-width: 100px;
-}
-
-.question .question-description input.submit:hover, .question .answer-content input.submit:hover {
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
- background: #a22430;
- background: -moz-linear-gradient(top, #c33541 0%, #d44652 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c33541), color-stop(100%,#d44652));
- background: -webkit-linear-gradient(top, #c33541 0%,#d44652 100%);
- background: -o-linear-gradient(top, #c33541 0%,#d44652 100%);
- background: -ms-linear-gradient(top, #c33541 0%,#d44652 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c33541', endColorstr='#d44652',GradientType=0 );
- background: linear-gradient(top, #c33541 0%,#d44652 100%);
-}
-
-.question .question-description #answer-form input.submit {
- margin-top: 0px;
-}
-
-.question p.best, .answer p.best {
- background: url(../images/rosette.png) no-repeat top left;
- padding-left: 20px;
-}
-
-.question p.best:before, .answer p.best:before {
- content: none !important;
-}
-
-/* Poll specific styles */
-
-.notice div.poll-content {
- opacity: 1;
-}
-
-#poll-response-submit {
- min-width: 100px;
-}
-
-/* SNOD CompanyLogo styling */
-/* TODO move to plugin */
-
-#site_nav_local_views a.company_logo {
- width: 138px;
- padding: 0px;
- font-weight: bold;
- text-transform: none;
- line-height: 1em;
- margin-bottom: 0px;
- position: relative;
- top: -4px;
-}
-
-#site_nav_local_views a.company_logo:hover {
- background: none;
- color: blue;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.company_logo img {
- max-width: 138px;
- margin-bottom: 4px;
-}
-
-.company_logo span {
- display: block;
-}
-
-a.company_logo:hover span {
- text-decoration: underline;
-}
-
-}/*end of @media screen, projection, tv*/
-
+++ /dev/null
-body {
- background-image: none;
- min-width: 0;
-}
-
-#header {
- padding: 0;
-}
-
-#site_nav_global_primary {
- top: 0;
- -webkit-border-top-right-radius: 0px;
- -moz-border-radius-topright: 0px;
- border-top-right-radius: 0px;
- line-height: 16px;
-}
-
-#site_nav_global_primary li {
- float: left;
- margin-right: 8px;
-}
-
-#site_nav_local_views {
- line-height: 2em;
-}
-
-#site_nav_local_views h3 {
- color: #333;
- background: none;
- text-transform: none;
- letter-spacing: 0;
- padding-bottom: 0;
-}
-
-#site_nav_local_views li li {
- margin: 0 6px 6px 0;
-}
-
-#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li {
- margin: 0 6px 6px 0;
-}
-
-#site_nav_local_views a {
- color: #fff;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);;
- background: #364a84;
- background: -moz-linear-gradient(top, #7b8dbb , #364a84);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#364a84));
- font-size: 0.9em;
- width: auto;
-}
-
-#site_nav_local_views a:hover {
- background: #7b8dbb;
- background: -moz-linear-gradient(top, #364a84 , #7b8dbb);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#364a84), color-stop(100%,#7b8dbb));
-}
-
-.input_forms {
- top: -10px;
- padding-right: 0;
-}
-
-#input_form_nav li a {
- padding: 0px 4px 1px 4px;
-}
-
-.form_notice .count {
- top: 44px;
- left: 276px;
-}
-
-#form_notice-direct.form_notice .count {
- top: 74px;
- left: 276px;
-}
-
-#event-startdate, #event-starttime, #event-enddate, #event-endtime {
- width: 120px;
- margin-right: 12px;
-}
-
-.input_form .form_settings .submit {
- font-size: 1em;
-}
-
-.form_notice input.submit {
- font-size: 1em;
-}
-
-.question div.question-description {
- max-width: 100% !important;
-}
-
-ul.qna-dummy {
- width: 80%;
-}
-
-.qna-dummy-placeholder input {
- width: 92%;
-}
-
-.question #qna-answer, .qna-full-question #qna-answer {
- width: 220px;
-}
-
-.threaded-replies #answer-form fieldset {
- width: 220px;
-}
-
-.threaded-replies #qna-answer-submit {
- float: left;
- clear: left;
- position: relative;
- top: 0;
- bottom: 0px;
- left: 0;
- margin-top: 10px;
-}
-
-a.company_logo {
- display: none !important;
-}
+++ /dev/null
-/** theme: neo
- *
- * @package StatusNet
- * @author Osama Khalid <osamak@gnu.org>
- * @copyright Osama Khalid
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://status.net/
- */
-
-body {
- direction: rtl;
-}
-
-span.rtl{
- direction: rtl !important;
-}
-
-#content .notice .entry-title{
- direction: ltr;
-}
-
-.form_notice textarea{
- direction: ltr;
-}
-
-#site_nav_global_primary ul{
- float: left;
-}
-
-.notice div.entry-content {
- float: right;
- clear: right;
-}
-
-#content .notice .threaded-replies .notice div.entry-content{
- clear: right;
- float: right;
-}
-
-#content h1{
- font-weight: bold;
- letter-spacing: 0;
-}
-
-.threaded-replies {
- border-right: 3px solid #ECECF2;
- border-left: 0;
- margin-right: 59px;
- margin-left: 0;
-}
-
-address{
- float: right;
-}
-
-#site_nav_global_primary {
- left: 0;
- right: auto;
-}
-
-.input_form .form_settings .submit{
- float: left;
-}
-
-.input_form .form_settings fieldset fieldset{
- float: right;
-}
-
-.input_form fieldset fieldset label{
- right: 6px;
- text-align: right;
-}
-
-#input_form_event .form_settings .form_data li{
- float: right;
-}
-
-.notice .author {
- direction: rtl;
- float: right;
- margin-left: 8px;
- margin-right: 0;
-}
-
-.section .notice .author {
- margin-left: 0;
-}
-
-.notice p.entry-content {
- float: left;
-}
-
-.threaded-replies .form_notice #notice_action-submit {
- right: 10px;
-}
-
-.form_notice input.submit{
- float: right;
-}
-
-#export_data li a{
- padding-right: 30px;
- padding-left: 0;
-/* background-position: right center; */
-}
-
-#content .notice .threaded-replies .notice .entry-title{
- margin: 2px 35px 0 7px;
-}
-
-#content .notice .entry-title {
- margin: 2px 59px 0 7px;
-}
-
-#content .notice .author .photo{
- right: 0;
- left: auto;
-}
-
-.notice-options{
- float: left;
-}
-
-.notice div.entry-content {
- margin-right: 59px;
- margin-left: 0;
-}
-
-#core .vcard .photo {
- margin-left: 11px;
- margin-right: 0;
-}
-
-.threaded-replies .notice-reply-comments {
- margin: 2px 10px 4px 0;
-}
-
-#shownotice .notice div.entry-content {
- margin-right: 0;
-}
-
-.notice .addressees:before {
- content: '\25C2';
-}
-
-#content thead th {
- text-align: right;
-}
-
-.profile_list th.current a {
- background-position: left top;
- padding-left: 25px;
-}
-
-.form_settings .form_data textarea, .form_settings .form_data select, .form_settings .form_data input {
- float: right;
- margin-right: 1.795%;
-}
-
-.form_settings .form_data label {
- float: right;
-}
-
-.form_settings label {
- text-align: left;
-}
-
-#form_search input.submit {
- margin-right: 5px;
-}
-
-#site_nav_local_views H3{
- font-weight: bold;
- letter-spacing: 0;
-}
-
-#aside_primary h2{
- font-weight: bold;
- letter-spacing: 0;
-}
-
-.form_settings label[for="notice_to"] {
- margin-left: 10px;
- margin-right: 0;
-}
-
-select {
- padding-left: 10px;
-}
-
-#input_form_nav li a {
- float: right;
-}
-
-#content table.extended-profile td {
- padding-left: 0 !important;
- padding-right: 8px !important;
-}
-
-.experience-item, .education-item {
- float: right;
-}
-
-#site_nav_global_primary a {
- float: right;
-}
-
-.form_settings .form_data p.form_guide {
- margin-right: 27%;
-}
-
-.form_settings label.checkbox {
- text-align: right;
-}
-
-.form_settings label.checkbox, .form_settings label.radio {
- left: 0;
- right: -25px;
-}
-
-.form_settings input.checkbox, .form_settings input.radio {
- margin-right: 25%;
- margin-left: 20px;
- right: -14px;
- left: 0;
-}
-
-.form_settings input {
- margin-left: 20px;
-}
-
-.form_settings .form_data li {
- float: right;
-}
-
-#header-search {
- float: left;
-}
-
-#header-search input[type="submit"] {
- left: 0;
- right: auto;
-}
-
-#avatarfile {
- width: 100%;
-}
-
-.form_settings .checkbox-wrapper label.checkbox {
- right: -3px;
- left: auto;
-}
-
-.checkbox-wrapper.unchecked label.checkbox, .checkbox-wrapper.checked label.checkbox {
- padding-right: 20px;
- padding-left: 0;
- background-position: right center;
-}
-
-.input_form .form_settings .form_data p.form_guide {
- margin-right: 5px;
- margin-left: 27%;
-}
-
-.experience-item, .education-item {
- float: right !important;
-}
-
-.profile_block .entity_actions {
- float: left;
-}
-
-.profile .entity_profile .fn, .profile .entity_profile .label {
- margin-right: 11px;
- margin-left: 0;
-}
-
-#core .vcard .photo {
- float: right;
-}
-
-.profile_list .label {
- margin-right: 59px !important;
-}
-
-.profile .entity_profile .note, .profile .entity_profile .url, .profile .entity_profile .entity_tags, .profile .entity_profile .form_subscription_edit {
- margin-right: 59px;
- margin-left: 0;
-}
-
-.profile_list .entity_actions ul {
- left: 20px;
- right: auto;
-}
-
-.entity_actions input.submit {
- text-align: right;
-}
-
-#entity_statistics dt, #entity_statistics dd {
- margin-left: 11px;
- margin-right: 0;
-}
-
-#showstream .notice .entry-title, #showstream .notice div.entry-content {
- margin-right: 0;
-}
-
-.limited-scope .entry-content .timestamp:before {
- right: 0;
- left: auto;
-}
-
-.limited-scope .entry-content .timestamp {
- padding-left: 0;
- padding-right: 20px;
-}
-
-.section ul.entities {
- float: right;
-}
-
-.section .entities li {
- float: right;
-}
-
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="141.11111mm" height="141.11111mm" viewBox="0 0 499.99998 500.00005" id="svg2" version="1.1" inkscape:version="0.91 r13725" inkscape:export-filename="/home/alberto/NewGS edited.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" sodipodi:docname="GS avatar Final.svg">
- <defs id="defs4"/>
- <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.35355339" inkscape:cx="-611.42805" inkscape:cy="426.03658" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1366" inkscape:window-height="716" inkscape:window-x="0" inkscape:window-y="29" inkscape:window-maximized="1" showguides="false">
- <inkscape:grid type="xygrid" id="grid4146"/>
- </sodipodi:namedview>
- <metadata id="metadata7">
- <rdf:RDF>
- <cc:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
- <dc:title/>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="translate(-157.14286,-79.50503)">
- <rect style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect4685" width="500.00009" height="500.00009" x="157.14281" y="79.50502"/>
- <g id="g5206" transform="translate(5.0010184,16.878838)">
- <path id="path5202" transform="translate(157.14281,79.50503)" d="m 156.0957,58.869141 c -2.68025,0.0382 -5.40172,0.373422 -8.12109,0.976562 -4.27851,0.94895 -8.60777,2.588306 -12.59766,4.853516 -4.01887,2.281669 -7.73517,5.2222 -10.96484,8.724609 -3.23012,3.50289 -5.98354,7.539503 -8.00391,12.039063 -2.01857,4.495529 -3.38338,9.436829 -3.87695,14.667969 -0.50485,5.68236 -0.0729,12.79202 2.70703,20.16016 1.36562,3.61951 3.29345,7.34391 5.90625,10.94531 2.61146,3.59956 6.03849,7.0071 10.35742,10.1289 9.53878,6.89481 23.71189,11.49816 41.58399,13.83985 -5.91744,3.3848 -10.93941,6.88738 -14.68555,10.24804 -5.021,-4.706 -14.55133,-11.82251 -27.82031,-22.85937 -23.77204,-19.77309 -82.709577,-23.05953 -82.734377,-14.14063 -0.0278,10.01879 15.25625,50.60502 63.740237,43.14649 20.31295,-3.12485 31.72368,-0.31868 39.21484,1.29492 -19.37347,20.97225 -43.38563,52.45365 -31.125,87.50977 32.5947,93.19612 56.11218,146.97265 125.32617,146.97265 69.214,0 94.53219,-53.33948 125.32032,-146.97265 11.60063,-35.28002 -11.74959,-66.53752 -31.12305,-87.50977 7.49115,-1.6136 18.90189,-4.41977 39.21484,-1.29492 48.48399,7.45853 63.76615,-33.1277 63.73828,-43.14649 -0.0248,-8.9189 -58.96038,-5.63246 -82.73242,14.14063 -13.26898,11.03686 -22.80127,18.15337 -27.82226,22.85937 -2.58848,-3.42164 -7.1092,-7.00722 -12.95313,-10.4707 17.06416,-2.40798 30.62176,-6.9443 39.85352,-13.61719 4.31893,-3.1218 7.74401,-6.52934 10.35547,-10.1289 2.6128,-3.6014 4.54258,-7.3258 5.9082,-10.94531 2.77992,-7.36814 3.20993,-14.4778 2.70508,-20.16016 -0.49357,-5.23114 -1.85643,-10.17244 -3.875,-14.667969 -2.02037,-4.49956 -4.77379,-8.536173 -8.00391,-12.039063 -3.22967,-3.502409 -6.94793,-6.44294 -10.9668,-8.724609 -3.98989,-2.26521 -8.31719,-3.904566 -12.5957,-4.853516 -17.40396,-3.860099 -34.92622,3.313482 -40.78711,28.380859 1.6307,-4.282299 8.33903,-17.124026 24.52539,-17.878906 9.97855,-0.46537 17.73729,4.163357 22.68555,10.416016 4.89527,6.185699 6.47977,14.299742 5.63281,20.169918 -0.97936,6.7878 -5.99826,25.42473 -34.45508,24.58789 -18.69599,-0.5498 -35.3627,-18.64648 -58.92383,-18.64648 -7.42488,0 -12.3863,2.29126 -15.70312,5.42773 -3.31682,-3.13647 -8.27824,-5.42773 -15.70312,-5.42773 -23.56113,0 -40.22784,18.09668 -58.92383,18.64648 -28.45682,0.83684 -33.47572,-17.80009 -34.45508,-24.58789 -0.84696,-5.870176 0.73754,-13.984219 5.63281,-20.169918 4.94826,-6.252659 12.707,-10.881386 22.68555,-10.416016 16.18636,0.75488 22.89469,13.596607 24.52539,17.878906 C 183.81659,67.075965 170.56906,58.662871 156.0957,58.869141 Z" style="display:inline;fill:#a22430;fill-opacity:0.85098039;stroke:none" inkscape:connector-curvature="0"/>
- <path inkscape:connector-curvature="0" id="path5157" d="m 313.23851,138.37417 c -2.68025,0.0382 -5.40172,0.37342 -8.12109,0.97656 -4.27851,0.94895 -8.60777,2.58831 -12.59766,4.85352 -4.01887,2.28167 -7.73517,5.2222 -10.96484,8.72461 -3.23012,3.50289 -5.98354,7.5395 -8.00391,12.03906 -2.01857,4.49553 -3.38338,9.43683 -3.87695,14.66797 -0.50485,5.68236 -0.0729,12.79202 2.70703,20.16016 1.36562,3.61951 3.29345,7.34391 5.90625,10.94531 2.61146,3.59956 6.03849,7.0071 10.35742,10.1289 14.838,10.72518 40.83724,15.93497 74.64063,15.65039 21.51239,-0.1811 32.86693,-6.81751 38.85742,-13.4746 5.99049,6.65709 17.34503,13.2935 38.85742,13.4746 33.80339,0.28458 59.80263,-4.92521 74.64063,-15.65039 4.31893,-3.1218 7.74401,-6.52934 10.35547,-10.1289 2.6128,-3.6014 4.54258,-7.3258 5.9082,-10.94531 2.77992,-7.36814 3.20993,-14.4778 2.70508,-20.16016 -0.49357,-5.23114 -1.85643,-10.17244 -3.875,-14.66797 -2.02037,-4.49956 -4.77379,-8.53617 -8.00391,-12.03906 -3.22967,-3.50241 -6.94793,-6.44294 -10.9668,-8.72461 -3.98989,-2.26521 -8.31719,-3.90457 -12.5957,-4.85352 -17.40396,-3.8601 -34.92622,3.31348 -40.78711,28.38086 1.6307,-4.2823 8.33903,-17.12402 24.52539,-17.8789 9.97855,-0.46537 17.73729,4.16335 22.68555,10.41601 4.89527,6.1857 6.47977,14.29974 5.63281,20.16992 -0.97936,6.7878 -5.99826,25.42473 -34.45508,24.58789 -18.696,-0.5498 -35.3627,-18.64648 -58.92383,-18.64648 -7.42489,0 -12.3863,2.29126 -15.70312,5.42773 -3.31682,-3.13647 -8.27823,-5.42773 -15.70312,-5.42773 -23.56113,0 -40.22783,18.09668 -58.92383,18.64648 -28.45682,0.83684 -33.47572,-17.80009 -34.45508,-24.58789 -0.84696,-5.87018 0.73754,-13.98422 5.63281,-20.16992 4.94826,-6.25266 12.707,-10.88138 22.68555,-10.41601 16.18636,0.75488 22.89469,13.5966 24.52539,17.8789 -4.94513,-21.1506 -18.19266,-29.56369 -32.66602,-29.35742 z" style="display:inline;fill:#a22430;fill-opacity:0.85098039;stroke:none"/>
- <path sodipodi:nodetypes="csccc" style="opacity:1;fill:#a22430;fill-opacity:0.85098039;fill-rule:nonzero;stroke:none;stroke-width:3.67872214;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 316.40417,339.90855 c 32.59469,93.19613 16.53711,145.08383 85.75112,145.08383 69.214,0 54.93762,-51.45065 85.72574,-145.08383 3.04616,-57.94864 -4.43738,-62.72475 -85.73722,-62.35823 -76.96659,-0.36652 -88.47651,3.8032 -85.73964,62.35823 z" id="path4152" inkscape:connector-curvature="0"/>
- <ellipse ry="41.798668" rx="40.000877" cy="318.71783" cx="451.22238" id="path4139" style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
- <ellipse ry="41.798668" rx="40.000877" cy="318.71783" cx="353.06296" id="ellipse4143" style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
- <circle r="13.983542" cy="318.71783" cx="355.13037" id="path4671" style="opacity:1;fill:#a22430;fill-opacity:0.85022027;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
- <circle style="opacity:1;fill:#a22430;fill-opacity:0.85022027;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="circle4673" cx="449.15485" cy="318.71783" r="13.983542"/>
- </g>
- </g>
-</svg>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="350"
- height="110"
- id="svg2880"
- version="1.1"
- inkscape:version="0.47 r22583"
- sodipodi:docname="gnu-social-logo.svg"
- inkscape:export-filename="/home/robmyers/Desktop/social_logo_competition/gnu-social-logo.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs2882">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 526.18109 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="744.09448 : 526.18109 : 1"
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
- id="perspective2888" />
- <inkscape:perspective
- id="perspective2859"
- inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
- inkscape:vp_z="1 : 0.5 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_x="0 : 0.5 : 1"
- sodipodi:type="inkscape:persp3d" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.0757525"
- inkscape:cx="138.57143"
- inkscape:cy="38.571429"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="false"
- inkscape:window-width="1022"
- inkscape:window-height="730"
- inkscape:window-x="0"
- inkscape:window-y="49"
- inkscape:window-maximized="0" />
- <metadata
- id="metadata2885">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Layer 1"
- inkscape:groupmode="layer"
- id="layer1"
- transform="translate(-119.19595,-274.32438)">
- <g
- transform="translate(106.33914,-525.03507)"
- style="display:inline"
- id="g4669">
- <g
- id="g4644">
- <path
- sodipodi:nodetypes="ccsc"
- inkscape:connector-curvature="0"
- id="path4639"
- d="m 96.925831,881.563 c -3.735488,21.79036 -38.392563,21.90151 -38.392563,21.90151 0,0 21.203396,-6.56966 19.750703,-22.34174 -1.327052,-14.408 18.64186,0.44023 18.64186,0.44023 z"
- style="fill:#a22430;fill-opacity:1;stroke:none" />
- <rect
- style="fill:#a22430;fill-opacity:1;stroke:none"
- id="rect3328"
- width="89.521233"
- height="77.451447"
- x="27.052763"
- y="805.25439"
- ry="12.913471" />
- <path
- style="fill:#ffffff;fill-opacity:1;stroke:none"
- d="m 75.035672,851.19107 18.049506,0 c 0,0 0,-8.6579 0,0 0,8.65789 -3.668599,22.15834 -20.837642,21.27788 -17.169046,-0.88046 -20.984391,-14.38091 -21.131135,-23.47904 -0.146742,-9.09813 2.647404,-20.32513 22.892066,-19.81044 17.315785,0.44023 18.929973,16.28858 18.929973,16.28858 l -8.364408,-0.14674 c 0,0 -1.907672,-8.6579 -12.03301,-8.21766 -10.125331,0.44023 -11.446027,2.20115 -11.446027,12.91347 0,10.71231 4.695277,14.39422 11.886261,14.67439 11.299291,0.44023 10.272082,-5.86976 10.272082,-5.86976 l -5.282787,0.29349 z"
- id="path4512"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccssssccsssccc" />
- <path
- style="fill:#ffffff;fill-opacity:1;stroke:none"
- d="m 84.147497,815.7524 c 1.37154,-1.22326 7.263833,5.94313 7.410571,8.73126 0.215959,4.10316 0.324743,11.56015 -11.886259,11.44603 -7.850803,-0.0734 -8.217663,-5.42952 -8.217663,-5.42952 0,0 -0.220117,-4.62244 4.035458,-4.62244 4.25557,0 2.858324,3.00825 6.236624,3.00825 5.062667,0 4.273427,-2.05348 4.402315,-4.69581 0.293494,-6.0165 -3.352577,-7.21451 -1.981046,-8.43777 z"
- id="path4516"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="zsscsssz" />
- <path
- sodipodi:nodetypes="zsscsssz"
- inkscape:connector-curvature="0"
- id="path4611"
- d="m 59.19991,815.7524 c -1.371534,-1.22326 -7.410569,4.62243 -7.410569,8.73126 0,4.10883 -0.324741,11.56015 11.886261,11.44603 7.850803,-0.0734 8.217663,-5.42952 8.217663,-5.42952 0,0 0.220117,-4.62244 -4.035458,-4.62244 -4.255574,0 -2.858321,3.00825 -6.236621,3.00825 -5.062668,0 -4.273428,-2.05348 -4.402318,-4.69581 -0.293491,-6.0165 3.352577,-7.21451 1.981042,-8.43777 z"
- style="fill:#ffffff;fill-opacity:1;stroke:none" />
- </g>
- <g
- id="g4633">
- <path
- id="path4483"
- style="font-size:62.32410049px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#a22430;fill-opacity:1;stroke:none;font-family:Colaborate-Bold;-inkscape-font-specification:Colaborate-Bold"
- d="m 159.21484,828.89684 c -2.99155,0.12465 -9.34862,0.62324 -11.6546,0.81021 -1.74508,-0.24929 -2.67994,-0.49859 -4.79896,-0.49859 -12.02854,0 -13.64898,7.60354 -13.64898,10.90672 0,3.55247 1.99437,6.17008 2.67994,7.04262 -1.86972,1.24648 -3.55248,3.11621 -3.55248,5.1729 0,2.30599 0.68557,4.30036 3.36551,5.54685 -1.30881,0.62324 -3.92642,1.8074 -3.92642,5.1729 0,4.79895 3.55248,8.22678 15.58102,8.22678 7.29192,0 15.26941,-1.93206 15.26941,-8.41376 0,-5.29754 -2.5553,-7.66586 -14.64617,-8.5384 -7.04261,-0.49859 -8.47607,-0.87254 -8.47607,-2.36831 0,-0.99719 0.49859,-1.62043 1.12183,-1.68276 1.68275,0.68557 5.54685,0.93487 6.35706,0.93487 11.09368,0 13.64898,-6.29474 13.64898,-10.96905 0,-2.36831 -1.68276,-4.6743 -2.61762,-5.79614 l 3.24086,0 2.05669,-5.54684 m -11.21834,11.09369 c 0,1.99437 -1.18416,4.79895 -5.04825,4.79895 -2.43064,0 -5.29755,-0.68556 -5.29755,-4.54966 0,-4.54965 3.42783,-4.6743 5.23523,-4.6743 3.80176,0 5.11057,1.8074 5.11057,4.42501 m 1.86973,22.87294 c 0,1.93205 -1.37114,2.36832 -6.60636,2.36832 -2.74226,0 -6.91797,-0.87254 -6.91797,-2.49296 0,-0.81022 0.31162,-1.62043 0.81021,-2.18135 10.28347,0.0623 12.71412,1.30881 12.71412,2.30599" />
- <path
- id="path4485"
- style="font-size:62.32410049px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#a22430;fill-opacity:1;stroke:none;font-family:Colaborate-Bold;-inkscape-font-specification:Colaborate-Bold"
- d="m 188.10672,858.56311 0,-17.94934 c 0,-6.54402 -1.74509,-11.46764 -10.47045,-11.46764 -3.73944,0 -6.17009,3.24086 -7.41657,4.42502 l -1.24648,-3.49015 -7.91516,0 c 0.31162,1.86972 0.81021,3.67712 0.81021,6.04543 l 0,22.43668 8.5384,0 0,-17.26378 c 1.43346,-2.74225 3.11621,-5.67149 5.6715,-5.67149 3.49014,0 3.49015,2.43064 3.49015,4.42501 l 0,18.51026 8.5384,0" />
- <path
- id="path4487"
- style="font-size:62.32410049px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#a22430;fill-opacity:1;stroke:none;font-family:Colaborate-Bold;-inkscape-font-specification:Colaborate-Bold"
- d="m 219.83239,858.56311 c -0.31162,-1.86972 -0.81022,-3.67712 -0.81022,-6.04544 l 0,-22.43667 -8.5384,0 0,17.26377 c -1.43345,2.74226 -2.86691,5.6715 -5.42219,5.6715 -3.17853,0 -3.30318,-2.49297 -3.30318,-4.42502 l 0,-18.51025 -8.5384,0 0,17.94934 c 0,6.54402 2.0567,11.46763 10.28347,11.46763 3.73945,0 5.92079,-3.24085 7.16728,-4.42501 l 1.24648,3.49015 7.91516,0" />
- <path
- id="path4489"
- style="font-size:62.32410049px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#a22430;fill-opacity:1;stroke:none;font-family:Colaborate-Regular;-inkscape-font-specification:Colaborate-Regular"
- d="m 244.39955,850.83492 c 0,-6.66867 -5.67149,-8.16446 -10.22115,-9.59791 -2.92923,-0.93486 -5.35987,-1.74508 -5.35987,-3.86409 0,-2.74226 2.18135,-3.73945 5.54684,-3.73945 2.99156,0 4.73664,0.87254 7.60355,2.18134 l 1.99437,-4.6743 c -3.92642,-1.30881 -6.73101,-1.86973 -9.47327,-1.86973 -5.54684,0 -11.40531,1.86973 -11.40531,8.28911 0,5.73381 4.86129,7.41657 9.16165,8.7877 3.42782,1.12183 6.41938,1.99437 6.41938,4.54966 0,2.49296 -1.18416,4.11339 -5.4222,4.11339 -3.3655,0 -5.29755,-0.87254 -8.60072,-2.18135 l -1.93205,4.61199 c 2.92923,1.18415 7.10495,1.93204 10.40812,1.93204 5.73381,0 11.28066,-2.30599 11.28066,-8.5384" />
- <path
- id="path4491"
- style="font-size:62.32410049px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#a22430;fill-opacity:1;stroke:none;font-family:Colaborate-Regular;-inkscape-font-specification:Colaborate-Regular"
- d="m 273.80462,844.16624 c 0,-8.22677 -3.36551,-14.89546 -13.27503,-14.89546 -9.8472,0 -13.33736,7.04263 -13.33736,14.89546 0,8.22678 3.42784,15.20708 13.33736,15.20708 9.8472,0 13.27503,-6.9803 13.27503,-15.20708 m -5.73381,0 c 0,6.91797 -2.11903,10.8444 -7.54122,10.8444 -5.60916,0 -7.60354,-4.23805 -7.60354,-10.8444 0,-6.98029 2.36832,-10.53277 7.60354,-10.53277 5.54684,0 7.54122,3.55248 7.54122,10.53277" />
- <path
- id="path4493"
- style="font-size:62.32410049px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#a22430;fill-opacity:1;stroke:none;font-family:Colaborate-Regular;-inkscape-font-specification:Colaborate-Regular"
- d="m 299.65625,857.37895 -1.93205,-4.61198 c -2.43063,1.24648 -5.79614,2.24367 -7.72819,2.24367 -5.23522,0 -7.66586,-3.80178 -7.66586,-10.47045 0,-7.29191 2.18135,-10.90672 7.72819,-10.90672 2.11902,0 5.35987,1.18416 7.47889,2.24367 l 1.93205,-4.61199 c -2.0567,-0.81021 -6.79333,-1.93204 -9.34862,-1.93204 -9.3486,0 -13.52433,5.98312 -13.52433,15.20708 0,8.72536 4.30037,14.77081 13.33736,14.77081 2.18134,0 7.54122,-0.87254 9.72256,-1.93205" />
- <path
- id="path4495"
- style="font-size:62.32410049px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#a22430;fill-opacity:1;stroke:none;font-family:Colaborate-Regular;-inkscape-font-specification:Colaborate-Regular"
- d="m 309.15365,823.72394 0,-5.48452 -5.98312,0 0,5.48452 5.98312,0 m -0.18697,34.83917 0,-28.48211 -5.60917,0 0,28.48211 5.60917,0" />
- <path
- id="path4497"
- style="font-size:62.32410049px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#a22430;fill-opacity:1;stroke:none;font-family:Colaborate-Regular;-inkscape-font-specification:Colaborate-Regular"
- d="m 337.86828,858.56311 c -0.37394,-3.30317 -0.99718,-6.48171 -0.99718,-8.72537 l 0,-11.40531 c 0,-6.23241 -4.23805,-9.09932 -10.28348,-9.09932 -4.42501,0 -8.60073,0.87254 -12.1532,2.18134 l 1.93205,4.61198 c 2.74226,-1.3088 6.10776,-2.49296 10.03418,-2.49296 3.98874,0 4.86128,2.55529 4.86128,5.54685 l 0,1.80739 -2.55529,0 c -12.15319,0 -15.45638,4.30037 -15.45638,10.09651 0,5.54684 4.23805,8.22678 10.71975,8.22678 3.3655,0 6.23241,-2.11902 7.72819,-3.86409 0.0623,0.31162 0.99718,2.8669 0.99718,3.1162 l 5.1729,0 m -6.54403,-6.91797 c -1.18415,1.93204 -3.55247,3.3655 -6.4817,3.3655 -3.3655,0 -5.73382,-1.37114 -5.73382,-4.17572 0,-4.05106 2.61762,-5.98311 10.47045,-5.98311 l 1.74507,0 0,6.79333" />
- <path
- id="path4499"
- style="font-size:62.32410049px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#a22430;fill-opacity:1;stroke:none;font-family:Colaborate-Regular;-inkscape-font-specification:Colaborate-Regular"
- d="m 348.66086,858.56311 0,-40.94693 -5.54684,0 0,40.94693 5.54684,0" />
- </g>
- </g>
- </g>
-</svg>
+++ /dev/null
-include=base
+++ /dev/null
-/** theme: neo-light
- *
- * @package StatusNet
- * @author Samantha Doherty <sammy@status.net>
- * @copyright 2011 StatusNet, Inc.
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://status.net/
- */
-
-@media screen, projection, tv {
-
-body {
- background: #f0f2f5;
-}
-
-#wrap {
- background-color: #f0f2f5;
- border: none;
-}
-
-#aside_primary_wrapper {
- background-color: #fafafa;
-}
-
-#content_wrapper {
- border-right: 1px solid #fff;
-}
-
-#site_nav_local_views_wrapper {
- background-color: #fafafa;
- border-right: 1px solid #fff;
-}
-
-#site_notice {
- background: #fff;
-}
-
-.input_forms {
- background-color: #fff;
- left: 0px;
- padding: 18px 0px 0px 0px;
-}
-
-}/*end of @media screen, projection, tv*/
+++ /dev/null
-/* copy of mp-screen.css from neo theme */
-
-body {
- background-image: none;
- min-width: 0;
-}
-
-#header {
- padding: 0;
-}
-
-#site_nav_global_primary {
- top: 0;
- -webkit-border-top-right-radius: 0px;
- -moz-border-radius-topright: 0px;
- border-top-right-radius: 0px;
- line-height: 16px;
-}
-
-#site_nav_global_primary li {
- float: left;
- margin-right: 8px;
-}
-
-#site_nav_local_views {
- line-height: 2em;
-}
-
-#site_nav_local_views h3 {
- color: #333;
- background: none;
- text-transform: none;
- letter-spacing: 0;
- padding-bottom: 0;
-}
-
-#site_nav_local_views li li {
- margin: 0 6px 6px 0;
-}
-
-#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li {
- margin: 0 6px 6px 0;
-}
-
-#site_nav_local_views a {
- color: #fff;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);;
- background: #364a84;
- background: -moz-linear-gradient(top, #7b8dbb , #364a84);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#364a84));
- font-size: 0.9em;
- width: auto;
-}
-
-#site_nav_local_views a:hover {
- background: #7b8dbb;
- background: -moz-linear-gradient(top, #364a84 , #7b8dbb);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#364a84), color-stop(100%,#7b8dbb));
-}
-
-.input_forms {
- top: -10px;
- padding-right: 0;
-}
-
-#input_form_nav li a {
- padding: 0px 4px 1px 4px;
-}
-
-.form_notice .count {
- top: 44px;
- left: 276px;
-}
-
-#form_notice-direct.form_notice .count {
- top: 74px;
- left: 276px;
-}
-
-#event-startdate, #event-starttime, #event-enddate, #event-endtime {
- width: 120px;
- margin-right: 12px;
-}
-
-.input_form .form_settings .submit {
- font-size: 1em;
-}
-
-.form_notice input.submit {
- font-size: 1em;
-}
-
-.question div.question-description {
- max-width: 100% !important;
-}
-
-ul.qna-dummy {
- width: 80%;
-}
-
-.qna-dummy-placeholder input {
- width: 92%;
-}
-
-.question #qna-answer, .qna-full-question #qna-answer {
- width: 220px;
-}
-
-.threaded-replies #answer-form fieldset {
- width: 220px;
-}
-
-.threaded-replies #qna-answer-submit {
- float: left;
- clear: left;
- position: relative;
- top: 0;
- bottom: 0px;
- left: 0;
- margin-top: 10px;
-}
-
-a.company_logo {
- display: none !important;
-}
+++ /dev/null
-include=neo
+++ /dev/null
- GNU AFFERO GENERAL PUBLIC LICENSE
- Version 3, 19 November 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The GNU Affero General Public License is a free, copyleft license for
-software and other kinds of works, specifically designed to ensure
-cooperation with the community in the case of network server software.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-our General Public Licenses are intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
- Developers that use our General Public Licenses protect your rights
-with two steps: (1) assert copyright on the software, and (2) offer
-you this License which gives you legal permission to copy, distribute
-and/or modify the software.
-
- A secondary benefit of defending all users' freedom is that
-improvements made in alternate versions of the program, if they
-receive widespread use, become available for other developers to
-incorporate. Many developers of free software are heartened and
-encouraged by the resulting cooperation. However, in the case of
-software used on network servers, this result may fail to come about.
-The GNU General Public License permits making a modified version and
-letting the public access it on a server without ever releasing its
-source code to the public.
-
- The GNU Affero General Public License is designed specifically to
-ensure that, in such cases, the modified source code becomes available
-to the community. It requires the operator of a network server to
-provide the source code of the modified version running there to the
-users of that server. Therefore, public use of a modified version, on
-a publicly accessible server, gives the public access to the source
-code of the modified version.
-
- An older license, called the Affero General Public License and
-published by Affero, was designed to accomplish similar goals. This is
-a different license, not a version of the Affero GPL, but Affero has
-released a new version of the Affero GPL which permits relicensing under
-this license.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- TERMS AND CONDITIONS
-
- 0. Definitions.
-
- "This License" refers to version 3 of the GNU Affero General Public License.
-
- "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
- "The Program" refers to any copyrightable work licensed under this
-License. Each licensee is addressed as "you". "Licensees" and
-"recipients" may be individuals or organizations.
-
- To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy. The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
- A "covered work" means either the unmodified Program or a work based
-on the Program.
-
- To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy. Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
- To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies. Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
- An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License. If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
- 1. Source Code.
-
- The "source code" for a work means the preferred form of the work
-for making modifications to it. "Object code" means any non-source
-form of a work.
-
- A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
- The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form. A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
- The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities. However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work. For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
- The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
- The Corresponding Source for a work in source code form is that
-same work.
-
- 2. Basic Permissions.
-
- All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met. This License explicitly affirms your unlimited
-permission to run the unmodified Program. The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work. This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
- You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force. You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright. Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
- Conveying under any other circumstances is permitted solely under
-the conditions stated below. Sublicensing is not allowed; section 10
-makes it unnecessary.
-
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
- No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
- When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
- 4. Conveying Verbatim Copies.
-
- You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
- You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
- 5. Conveying Modified Source Versions.
-
- You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified
- it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is
- released under this License and any conditions added under section
- 7. This requirement modifies the requirement in section 4 to
- "keep intact all notices".
-
- c) You must license the entire work, as a whole, under this
- License to anyone who comes into possession of a copy. This
- License will therefore apply, along with any applicable section 7
- additional terms, to the whole of the work, and all its parts,
- regardless of how they are packaged. This License gives no
- permission to license the work in any other way, but it does not
- invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display
- Appropriate Legal Notices; however, if the Program has interactive
- interfaces that do not display Appropriate Legal Notices, your
- work need not make them do so.
-
- A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit. Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
- 6. Conveying Non-Source Forms.
-
- You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by the
- Corresponding Source fixed on a durable physical medium
- customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by a
- written offer, valid for at least three years and valid for as
- long as you offer spare parts or customer support for that product
- model, to give anyone who possesses the object code either (1) a
- copy of the Corresponding Source for all the software in the
- product that is covered by this License, on a durable physical
- medium customarily used for software interchange, for a price no
- more than your reasonable cost of physically performing this
- conveying of source, or (2) access to copy the
- Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the
- written offer to provide the Corresponding Source. This
- alternative is allowed only occasionally and noncommercially, and
- only if you received the object code with such an offer, in accord
- with subsection 6b.
-
- d) Convey the object code by offering access from a designated
- place (gratis or for a charge), and offer equivalent access to the
- Corresponding Source in the same way through the same place at no
- further charge. You need not require recipients to copy the
- Corresponding Source along with the object code. If the place to
- copy the object code is a network server, the Corresponding Source
- may be on a different server (operated by you or a third party)
- that supports equivalent copying facilities, provided you maintain
- clear directions next to the object code saying where to find the
- Corresponding Source. Regardless of what server hosts the
- Corresponding Source, you remain obligated to ensure that it is
- available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided
- you inform other peers where the object code and Corresponding
- Source of the work are being offered to the general public at no
- charge under subsection 6d.
-
- A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
- A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling. In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage. For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product. A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
- "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source. The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
- If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information. But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
- The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed. Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
- Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
- 7. Additional Terms.
-
- "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law. If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
- When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it. (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.) You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
- Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the
- terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or
- author attributions in that material or in the Appropriate Legal
- Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or
- requiring that modified versions of such material be marked in
- reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or
- authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some
- trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that
- material by anyone who conveys the material (or modified versions of
- it) with contractual assumptions of liability to the recipient, for
- any liability that these contractual assumptions directly impose on
- those licensors and authors.
-
- All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10. If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term. If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
- If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
- Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
- 8. Termination.
-
- You may not propagate or modify a covered work except as expressly
-provided under this License. Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
- However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
- Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
- Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License. If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
- 9. Acceptance Not Required for Having Copies.
-
- You are not required to accept this License in order to receive or
-run a copy of the Program. Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance. However,
-nothing other than this License grants you permission to propagate or
-modify any covered work. These actions infringe copyright if you do
-not accept this License. Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
- 10. Automatic Licensing of Downstream Recipients.
-
- Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License. You are not responsible
-for enforcing compliance by third parties with this License.
-
- An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations. If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
- You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License. For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
- 11. Patents.
-
- A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based. The
-work thus licensed is called the contributor's "contributor version".
-
- A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version. For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
- Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
- In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement). To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
- If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients. "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
- If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
- A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License. You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
- Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
- 12. No Surrender of Others' Freedom.
-
- If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all. For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
- 13. Remote Network Interaction; Use with the GNU General Public License.
-
- Notwithstanding any other provision of this License, if you modify the
-Program, your modified version must prominently offer all users
-interacting with it remotely through a computer network (if your version
-supports such interaction) an opportunity to receive the Corresponding
-Source of your version by providing access to the Corresponding Source
-from a network server at no charge, through some standard or customary
-means of facilitating copying of software. This Corresponding Source
-shall include the Corresponding Source for any work covered by version 3
-of the GNU General Public License that is incorporated pursuant to the
-following paragraph.
-
- Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU General Public License into a single
-combined work, and to convey the resulting work. The terms of this
-License will continue to apply to the part which is the covered work,
-but the work with which it is combined will remain governed by version
-3 of the GNU General Public License.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU Affero General Public License from time to time. Such new versions
-will be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Program specifies that a certain numbered version of the GNU Affero General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation. If the Program does not specify a version number of the
-GNU Affero General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
- If the Program specifies that a proxy can decide which future
-versions of the GNU Affero General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
- Later license versions may give you additional or different
-permissions. However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
- 15. Disclaimer of Warranty.
-
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
- 16. Limitation of Liability.
-
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
- 17. Interpretation of Sections 15 and 16.
-
- If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
- <one line to give the program's name and a brief idea of what it does.>
- Copyright (C) <year> <name of author>
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-Also add information on how to contact you by electronic and paper mail.
-
- If your software can interact with users remotely through a computer
-network, you should also make sure that it provides a way for users to
-get its source. For example, if your program is a web application, its
-interface could display a "Source" link that leads users to an archive
-of the code. There are many ways you could offer source, and different
-solutions will be better for different programs; see section 13 for the
-specific requirements.
-
- You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU AGPL, see
-<http://www.gnu.org/licenses/>.
+++ /dev/null
-Neo Quitter
-==========================================
-
-* Author: Hannes Mannerheim (<h@nnesmannerhe.im>)
-* Last mod.: Oct, 2014
-* Version: 1
-* GitHub: <https://github.com/hannesmannerheim/neo-quitter>
-
-Neo Quitter is free software: you can redistribute it and / or modify it
-under the terms of the GNU Affero General Public License as published by
-the Free Software Foundation, either version three of the License or (at
-your option) any later version.
-
-Neo Quitter is distributed in hope that it will be useful but WITHOUT ANY
-WARRANTY; without even the implied warranty of MERCHANTABILTY or FITNESS
-FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
-more details.
-
-You should have received a copy of the GNU Affero General Public License
-along with Neo Quitter. If not, see <http://www.gnu.org/licenses/>.
-
-About
------
-
-Neo Quitter is based Neo, the standard theme for GNU Social.
-
-
-Setup
------
-
-1. Add the directory neo-quitter to your /theme/ folder
-
-2. add `$config['site']['theme'] = 'neo-quitter';` to config.php
-
-Credits
--------
-
-Default avatars are modified from an image by Francesco 'Architetto' Rollandin.
-http://www.openclipart.org/detail/34957
-
-Some icons by Mark James
-http://www.famfamfam.com/lab/icons/silk/
-http://creativecommons.org/licenses/by/2.5/ Creative Commons Attribution 2.5 License
-
-Lato font by Łukasz Dziedzic (http://www.typoland.com)
-SIL Open Font License, 1.1 (http://scripts.sil.org/OFL)
-Prepared for web with Font Squirrel (http://www.fontsquirrel.com/fontface/generator)
+++ /dev/null
-/** theme: neo
- *
- * @package StatusNet
- * @author Samantha Doherty <sammy@status.net>
- * @copyright 2011 StatusNet, Inc.
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://status.net/
- */
-
-/* genericons */
-@font-face {
- font-family: 'Genericons';
- src: url('genericons/Genericons.eot');
-}
-
-@font-face {
- font-family: 'Genericons';
- src: url('genericons/Genericons.woff') format('woff'),
- url('genericons/Genericons.ttf') format('truetype'),
- url('genericons/Genericons.svg#genericonsregular') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- @font-face {
- font-family: "Genericons";
- src: url("genericons/Genericons.svg#Genericons") format("svg");
- }
-}
-
-/* font awesome */
-@font-face {
- font-family: 'fa';
- src: url('../fonts/fontawesome-webfont.eot?v=4.2.0');
- src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
-@media screen, projection, tv {
-
-/* general styles and layout */
-
-html, body {
- height:100%;
- }
-
-body {
- background-color: #E9EAED;
- color: #222;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-}
-
-input, textarea, select, option {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-}
-
-a {color: #666;}
-a:hover {color: #a22430;text-decoration:underline;}
-
-#aside_primary a {color: rgba(0,0,0,0.8);}
-
-abbr {border-bottom: none;}
-
-h1 {font-size: 1.6em;}
-h2 {font-size: 1.6em;}
-h3 {font-size: 1.4em;}
-h4 {font-size: 1.4em;}
-h5 {font-size: 1.2em;}
-h6 {font-size: 1em;}
-
-#wrap {
- padding-top: 46px;
- border:0 none;
- background-color: transparent;
- width:960px;
-}
-
-#header,
-#header-search input[type="submit"],
-.form_notice_placeholder,
-#site_nav_local_views li.current a,
-#site_nav_local_views li a:hover,
-#site_nav_object li.current a,
-#site_nav_object li a:hover,
-#showstream .entry-metadata .repeat,
-body#outbox #core ul.messages .notice:before,
-#header:before,
-address {
- background-image: url("../icons-hires.png?v=2");
- background-size: 150px 2786px;
- background-repeat:no-repeat;
-}
-
-address {
- background-position: -10px -600px;
- cursor: pointer;
- display: block;
- height: 34px;
- left: 50%;
- margin-left: -466px;
- position: fixed;
- top: 6px;
- width: 89px;
- z-index: 1001;
- background-color:#a22430;
-}
-
-address:hover {
- background-position: -10px -635px;
-}
-
-address a {
- height: 34px;
- width: 89px;
- display:block;
-}
-
-.logo {
- display: none;
-}
-
-#header {
- background-color: #fff;
- display: block;
- height: 30px;
- left: 0;
- padding-top: 16px;
- position: fixed;
- top: 0;
- width: 100%;
- z-index: 100;
- box-shadow:0 1px 2px rgba(0, 0, 0, 0.25)
-}
-
-#core {
- border-top: 0 none;
- border-left: 0 none;
- border-right: 0 none;
- min-height:calc(100vh - 46px);
-}
-
-
-#aside_primary_wrapper {
- background-color: transparent;
-}
-
-#content_wrapper {
- background-color:transparent;
- border:0 none;
-}
-
-
-#site_nav_local_views_wrapper {
- background-color: transparent;
- border:0 none;
-}
-
-#site_nav_local_views {
- padding: 13px 10px 40px;
- }
-
-#footer {
- display:none;
-}
-
-/* header elements */
-
-#site_nav_global_primary {
- top: 10px;
- left: 50%;
- margin-left:-320px;
- position:fixed;
- }
-
-#site_nav_global_primary li {
- margin-right: 0px;
-}
-
-#site_nav_global_primary li:last-child {
- margin-right: 10px;
-}
-
-#site_nav_global_primary a {
- padding: 2px 10px 2px 10px;
- height: 46px;
- line-height: 46px;
- box-sizing:border-box;
- display: block;
- float: left;
- color: #777777;
- border-bottom:0 none;
- transition:all 0.2s;
-}
-
-#site_nav_global_primary a:hover {
- color: #c33541;
- border-bottom:3px solid #c33541;
- text-decoration: none;
-}
-
-#site_nav_global_primary #nav_logout a:before,
-#site_nav_global_primary #nav_admin a:before,
-#site_nav_global_primary #nav_account a:before,
-#site_nav_global_primary #toggleqvitter a:before,
-#site_nav_global_primary #top_nav_doc_faq a:before {
- content: "\f085";
- display: inline-block;
- font: 18px/1 "fa";
- padding-right:10px;
- vertical-align:middle;
- padding-bottom:3px;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-}
-
-#site_nav_global_primary #nav_admin a:before {
- content: "\f12e";
-}
-
-#site_nav_global_primary #nav_logout a:before {
- content: "\f206";
-}
-
-#site_nav_global_primary #toggleqvitter a:before {
- content: "\f0c3";
-}
-
-#site_nav_global_primary #top_nav_doc_faq a:before {
- content: "\f1cd";
-}
-
-#header-search {
- top: 1px;
- margin-left: 6px;
-}
-
-#header-search #search-q {
- position: relative;
- width: 131px;
- height: 12px;
- margin-right: 10px;
- padding: 2px 22px 2px 6px;
- border-radius: 4px;
- border: none;
- font-size: 0.88em;
-}
-
-#header-search input[type="submit"] {
- background-color: transparent;
- border: 0 none;
- cursor: pointer;
- height: 18px;
- position: absolute;
- right: 25px;
- text-indent: -9999px;
- top: 4px;
- width: 20px;
- z-index: 2;
- background-position: 0px -293px;
-}
-
-/* hide site notice after 5 s */
-#site_notice {
- background-color: pink;
- border-radius: 0;
- bottom: 0;
- box-sizing: border-box;
- font-size: 20px;
- margin: 0;
- padding: 10px 20px 10px 40px;
- position: fixed;
- text-align: left;
- width: 100%;
- -moz-animation: hideSiteNotice 2s ease-in 5s forwards;
- -webkit-animation: hideSiteNotice 2s ease-in 5s forwards;
- -o-animation: hideSiteNotice 2s ease-in 5s forwards;
- animation: hideSiteNotice 2s ease-in 5s forwards;
- -webkit-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
-}
-
-#site_notice:before {
- width:30px;
- height:30px;
- position:absolute;
- display:block;
- left:10px;
- top:10px;
- content: "\f071";
- font-family:fa;
-}
-
-@keyframes hideSiteNotice {
- to {
- bottom:-1000px;
- overflow:hidden;
- }
-}
-
-@-webkit-keyframes hideSiteNotice {
- to {
- bottom:-1000px;
- visibility:hidden;
- }
-}
-
-#header-search #search-q {
- background-color: rgba(0,0,0,0.03);
- border: 1px solid rgba(0,0,0,0.1);
- border-radius: 21px;
- box-sizing: border-box;
- color: rgba(0,0,0,0.8);
- display: block;
- font-size: 12px;
- height: 32px;
- line-height: 1;
- padding: 5px 27px 6px 12px;
- transition: all 0.2s ease-in-out 0s;
- width:100%;
- outline:none;
- margin-top:-4px;
- right:10px;
- width:163px;
-}
-
-#header-search #search-q:focus {
- box-shadow:none;
- text-shadow:none;
- background-color:#fff;
- color:#666;
-}
-
-#site_nav_global_primary ul {
- height:40px;
- position:absolute;
- top:-10px;
- right:190px;
-}
-
-#content {
- background-color: transparent;
- padding: 12px 40px 40px 0;
-}
-
-#content_inner {
- width: 542px;
-}
-
-/* faq */
-body#doc #content_inner {
- background-color:#fff;
- padding:10px;
- border-radius:5px;
-}
-
-body#doc #content_inner h1 {
- padding-top:10px;
- font-size:25px;
- color:#333;
- text-transform:none;
-}
-
-body#doc #content_inner h2 {
- padding-top:50px;
- line-height: 27px;
-}
-
-body#doc #content_inner h2 a {
- font-size:0;
-}
-
-body#doc #content_inner h2 a:before {
- content:"\f0aa";
- font-family:"fa";
- font-size:20px;
-}
-
-body#doc #content_inner h2 a:hover {
- text-decoration:none;
-}
-
-body#doc #content_inner h2#faq-table-of-contents {
- padding-top:20px;
-}
-
-body#doc #content_inner li {
- padding-left:20px;
- font-weight:bold;
-}
-
-body#doc #content_inner p.indent {
- background-color: rgba(0, 0, 0, 0.1);
- border-left: 3px solid #ccc;
- margin-left: 50px;
- padding: 5px 5px 5px 10px;
-}
-
-body#doc #content_inner p.faq-credits {
- margin-top:40px;
-}
-
-/* input forms */
-
-.input_forms {
- background: none repeat scroll 0 0 #fff;
- border-color: #e5e6e9 #dfe0e4 #d0d1d5;
- border-image: none;
- border-radius: 3px;
- border-style: solid;
- border-width: 1px;
- float: left;
- left: 0;
- margin-bottom: 10px;
- padding: 0;
- top: 0;
- width: 542px;
-}
-
-.input_form .form_settings li input {
- margin: 0 0 5px 5px;
-}
-
-.input_form .form_settings li textarea {
- margin: 0 0 5px 5px;
-}
-
-.input_form fieldset fieldset label {
- left: 10px;
- background: #fff;
-}
-
-.input_forms > label {
- margin: 10px 1ex;
-}
-
-#input_form_nav {
- margin: 2px;
-}
-
-#input_form_nav li a {
- display: block;
- float: left;
- font-family: "Helvetica Neue",Arial,sans-serif;
- font-size: 13px;
- font-weight: bold;
- line-height: 1em;
- background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%) repeat-x scroll 0 0 rgba(0, 0, 0, 0);
- border: 1px solid #cccccc;
- border-radius: 4px;
- color: rgba(0,0,0,0.8);
- padding: 5px 10px;
- cursor: pointer;
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
- margin: 5px;
-}
-
-#input_form_nav li.current a {
- background: -moz-linear-gradient(top, #a22430 0%, #c33541 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a22430), color-stop(100%,#c33541)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a22430 0%,#c33541 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a22430 0%,#c33541 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a22430 0%,#c33541 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a22430 0%,#c33541 100%); /* W3C */
- background-repeat: repeat-x;
- text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 1px;
- border-color:#c33541;
- color:#fff;
-}
-
-#input_form_nav li:hover a {
- background: -moz-linear-gradient(top, #c33541 0%, #d44652 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c33541), color-stop(100%,#d44652)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #c33541 0%,#d44652 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #c33541 0%,#d44652 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #c33541 0%,#d44652 100%); /* IE10+ */
- background: linear-gradient(to bottom, #c33541 0%,#d44652 100%); /* W3C */
- background-repeat: repeat-x;
- text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 1px;
- border-color:#c33541;
- color:#fff;
-}
-
-.input_form_nav_tab a, .input_form_nav_tab.current a {
- text-decoration: none;
-}
-
-#input_form_event .form_settings .form_data li {
- width: 100% !important;
-}
-
-.form_notice .error, .form_notice .success, .form_notice .notice-status {
- background-color: #a22430;
- border: 0 none;
- border-radius: 0;
- color: rgba(255, 255, 255, 0.9);
- line-height: 1.2em;
- margin: 0;
- overflow: auto;
- padding: 5px 5px 5px 10px;
- position: relative;
- width: 527px;
- overflow:hidden;
- animation: rolldown 0.3s linear 1;
-}
-
-@keyframes rolldown {
- 0% {height: 0;}
- 100% {height: 17px;}
-}
-
-body #aside_primary .account_profile_block .user_profile_tags {
- display:none;
-}
-
-/* filter people by tags doesn't work anyway, and is confusing as peopletags and lists have been merged, it seems */
-#filter_tags {
- display:none;
-}
-
-/* already present in right margin */
-#content_inner > .entity_actions > #entity_remote_subscribe {
- display:none;
-}
-
-/* settings */
-#content_inner > .form_settings {
- background-color: #fff;
- border-color: #e5e6e9 #dfe0e4 #d0d1d5;
- border-image: none;
- border-radius: 3px;
- border-style: solid;
- border-width: 1px;
- padding: 12px 12px 0;
- padding:20px;
- margin-bottom:20px;
-}
-
-#aside_primary #account_actions {
- background-color: rgba(255,192,203,0.5);
- border-color: #e5e6e9 #dfe0e4 #d0d1d5;
- border-image: none;
- border-radius: 3px;
- border-style: solid;
- border-width: 1px;
- padding: 12px 12px 0;
- width: 150px;
- padding:20px;
- margin-bottom:20px;
-}
-
-/* profile lists */
-ul.profile_list > li {
- background-color: #fff;
- border-color: #e5e6e9 #dfe0e4 #d0d1d5;
- border-image: none;
- border-radius: 3px;
- border-style: solid;
- border-width: 1px;
- padding: 12px 12px 0;
- width: 518px;
- padding-bottom:8px;
-}
-
-ul.profile_list li {
- margin-bottom: 8px;
-}
-
-.profile_list .h-card .p-nickname:before {
- content:"@";
-}
-
-#groupdirectory .profile_list .h-card .p-nickname:before {
- content:"!";
-}
-
-.profile_list .h-card .p-nickname {
- font-size:14px;
- font-weight:bold;
-}
-
-.profile_list .h-card .u-photo {
- margin-left: 10px;
- margin-right: 10px;
-}
-
-
-/* these apply to both profiles and groups */
-.entity_profile .p-name,
-.entity_profile .p-locality,
-.entity_profile .role,
-.entity_profile > span,
-.entity_profile .u-url[rel~="contact"] {
- display: inline;
- font-size:1.0em;
- color:#9197a3;
-}
-
-.entity_profile .p-nickname {
- color:#666 !important;
- display: block !important;
-}
-
-.entity_profile .label {
- display: inline !important;
-}
-
-.entity_profile .p-name:after {
- content: "";
-}
-
-.profile .entity_profile .u-url {
- font-size:1.0em;
-}
-
-/* clear parethesis from base theme */
-.entity_profile .p-name:before,
-.entity_profile .p-name:after {
- content: "";
-}
-
-.entity_profile .role:before {
- content: "(";
-}
-
-.entity_profile .role:after {
- content: ")";
-}
-
-.entity_profile .label:before,
-.profile .entity_profile .p-locality:before {
- content:" · ";
-}
-
-/* profiles' profile blocks */
-#aside_primary .account_profile_block .profile_block_description {
- font-style:italic;
- padding:10px 0;
-}
-
-#aside_primary .account_profile_block .entity_actions .entity_edit {
- position:absolute;
- height:25px;
- width:auto;
- top:-5px;
- display:block;
- float:none;
- margin:0;
- padding:0;
- min-width:0;
- left: 100px;
-}
-
-#aside_primary .account_profile_block .entity_actions .entity_edit:hover {
- opacity:1;
-}
-
-#aside_primary .account_profile_block .entity_actions ul li a {
- background-color:transparent !important;
-}
-
-#aside_primary .account_profile_block .entity_send-a-message { /* not working anyway */
- display:none;
-}
-
-#aside_primary .section .entity_actions > p {
- background-color: transparent !important;
- display: block;
- float: none;
- height: 25px;
- margin: 0;
- min-width: 0;
-/* opacity: 0.5; */
- padding: 0;
- position: absolute;
- right: 0;
- top: -3px;
- width: auto;
- }
-#aside_primary .section .entity_actions > p:hover {
-/* opacity:1; */
-}
-
-#aside_primary .section a.entity_remote_subscribe {
- background-color:transparent !important;
- padding-right:2px;
-}
-
-.entity_subscribe .dialogbox,
-.entity_tag .dialogbox {
- width: 200px;
-}
-
-.form_settings fieldset {
- border: medium none;
- margin-bottom: 0;
- margin-top: 0;
-}
-
-.threaded-replies {
- margin-top: 4px;
- float: none;
-}
-
-#conversation .notices .notices {
- float: none;
- margin-left: 55px;
-}
-
-.threaded-replies .placeholder { /* TODO combine all these declarations */
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-.input_form .form_settings .submit {
- line-height: 16px;
-}
-
-/* site nav local views */
-
-#site_nav_local_views h3,
-#aside_primary h2 {
- color: rgba(0,0,0,0.4);
- font-size: 13px;
- font-weight: bold;
- letter-spacing: 0;
- margin-bottom: 5px;
- text-shadow: none;
- text-transform: uppercase;
- padding:0 10px;
-}
-
-#site_nav_local_views li,
-#site_nav_object li {
- display: block;
- margin: 0 0 3px;
-}
-
-#site_nav_local_views a,
-#site_nav_object a {
- display: block;
- width: 105px;
- padding: 0 10px;
- border-radius: 4px;
- word-wrap: break-word;
- color:rgba(0,0,0,0.7);
- border-radius:3px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-
-#site_nav_object a {
- font-size:15px;
-}
-
-#site_nav_local_views li.current a {
- background-position:-3px -54px;
- color:rgba(0,0,0,0.8);
-}
-
-#site_nav_object li.current a {
- background-position:-3px -53px;
- color:rgba(0,0,0,0.8);
-}
-
-#site_nav_local_views li a:hover{
- background-position:-3px -79px;
- text-decoration:none;
-}
-
-#site_nav_object li a:hover {
- background-position:-3px -78px;
- text-decoration:none;
-}
-
-#site_nav_local_views .current a,
-#site_nav_object .current a {
- font-weight:bold;
- text-decoration:none;
-}
-
-/* aside primary */
-
-#aside_primary {
- width:205px;
- float: left;
- left: 802px;
- margin: 0 0 20px;
- overflow: hidden;
- padding: 13px 10px 40px;
-}
-
-#aside_primary .section {
- font-size: 0.88em;
-}
-
-#aside_primary h2 {
- padding:0;
-}
-
-.profile_block .entity_actions {
- float: right;
- width: 100px;
-}
-
-.profile_block .entity_moderation:hover ul,
-.profile_block .entity_role:hover ul {
- right: 20px;
-}
-
-.profile_block_name {
- font-size: 14px;
- font-weight: bold;
-}
-
-.profile_block_location {
- font-weight: bold;
-}
-
-.profile_block_description {
- line-height: 1.2em;
-}
-
-
-.section ul.entities {
- width: 240px;
-}
-
-.section .entities li {
- margin-right: 3.6px;
- margin-bottom: 5px;
- width: 24px;
-}
-
-#popular_notices .avatar {
- position: relative;
- top: 4px;
- margin-bottom: 6px;
- height:24px;
- width:24px;
-}
-
-#popular_notices .p-author {
- position:relative;
-}
-
-#aside_primary td {
- padding-right: 20px;
- padding-bottom: 14px;
-}
-
-#aside_primary td .nickname {
- line-height: 1.6em;
-}
-
-.section .avatar {
- box-shadow: none;
- border-radius: 5px;
-}
-
-.account_profile_block {
- position:relative;
-}
-
-.account_profile_block:before {
- border: 1px solid rgba(0, 0, 0, 0.2);
- border-radius: 5px;
- box-sizing: border-box;
- content: "";
- display: block;
- height: 96px;
- left: 0;
- position: absolute;
- top: 0;
- width: 96px;
-}
-
-.invite_button {
- background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%) repeat-x scroll 0 0 rgba(0, 0, 0, 0);
- border: 1px solid #cccccc;
- border-radius: 4px;
- color: rgba(0,0,0,0.8);
- cursor: pointer;
- display: inline-block;
- font-family: "Helvetica Neue",Arial,sans-serif;
- font-size: 13px;
- font-weight: bold;
- line-height: 18px;
- margin-bottom: 0;
- margin-right: 0;
- margin-top: 0;
- padding: 5px 20px;
- position: relative;
- text-align: center;
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
- width: 150px;
-}
-
-.invite_button:hover {
- background-color: #D8D8D8;
- background: -moz-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(216,216,216,1) 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(248,248,248,1)), color-stop(100%,rgba(216,216,216,1)));
- background: -webkit-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
- background: -o-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
- background: -ms-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
- background: linear-gradient(to bottom, rgba(248,248,248,1) 0%,rgba(216,216,216,1) 100%);
- border-color: #BBBBBB;
- text-decoration: none;
- color: rgba(0,0,0,0.8);
-}
-
-/* notice form */
-
-.input_form {
- display: none;
- float: left;
- padding-bottom: 0;
- position: relative;
- width: 520px;
-}
-
-.form_notice_placeholder {
-/* background-position: 12px 12px; */
-background:none;
- height: 40px;
- opacity: 0.5;
- padding: 12px;
-}
-
-.form_notice_placeholder:after {
- content: "\f040";
- display: block;
- font: 25px/1 "fa";
- height: 50px;
- left: 18px;
- position: absolute;
- top: 19px;
- width: 50px;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-}
-
-.form_notice_placeholder:hover {
- opacity:0.7;
-}
-
-.form_notice_placeholder .placeholder {
- border: 0 none;
- color: #000;
- font-size: 1em;
- padding: 12px 4px 16px 40px;
- width: 508px;
- z-index: 97;
- font-size:15px;
- background:transparent;
-}
-
-.form_notice_placeholder .placeholder,
-.form_notice textarea,
-.input_form .form_settings li input,
-.input_form .form_settings li textarea,
-.threaded-replies .placeholder {
- border-radius: 0;
- box-shadow: none;
- background: none repeat scroll 0 0 #fff;
-}
-
-.form_notice textarea {
- outline:none;
- border:0 none;
- border-bottom:1px solid #e9eaed;
- box-shadow: none;
- display: block;
- float: none;
- resize: none;
- width:518px;
- padding:12px;
- height: 60px;
-}
-
-.checkbox-wrapper.checked label.checkbox,
-.checkbox-wrapper.unchecked label.checkbox {
- background-image:none;
- color:transparent;
-}
-
-.checkbox-wrapper.checked label.checkbox:before,
-.checkbox-wrapper.unchecked label.checkbox:before {
- content: "\f023";
- display: block;
- font: 22px/1 "fa";
- height: 35px;
- left: 10px;
- position: absolute;
- top: 0px;
- width: 35px;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color:rgba(0,0,0,0.6);
- text-indent:0;
- text-align:left;
-}
-
-.checkbox-wrapper.unchecked label.checkbox:before {
- content: "\f09c";
-}
-
-.form_notice label.notice_data-attach {
- background-image:none;
- display: block;
- left: 5px;
- position: absolute;
- top: 93px;
-}
-
-.form_notice label.notice_data-attach:before {
- content: "\f416";
- display: block;
- font: 35px/1 "Genericons";
- height: 35px;
- left: 0px;
- position: absolute;
- top: 0px;
- width: 35px;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color:rgba(0,0,0,0.6);
- text-indent:0;
- text-align:left;
-}
-
-.form_notice .count {
- right: -18px;
- top:65px;
-}
-
-.form_notice fieldset {
- height:135px;
-}
-
-.form_notice {
- margin-bottom: 0;
-}
-
-.form_notice .checkbox-wrapper {
- display: block;
- top: 96px;
- left: 280px;
- position: absolute;
-}
-
-.form_notice .to-selector > label {
- display:none;
-}
-
-.to-selector select {
- display:block;
- position:absolute;
- top:99px;
- left:45px;
-}
-
-#notice_action-submit {
- display: block;
- margin-top: 0;
- position: absolute;
- right: -15px;
- top: 92px;
-}
-
-/* reply form */
-
-.threaded-replies .form_notice label.notice_data-attach {
- left: 11px;
- right: auto;
- top: 101px;
-}
-
-.threaded-replies .form_notice .count {
- right: 14px;
- top: 77px;
-}
-
-.threaded-replies .form_notice textarea {
- border:1px solid #dcdee3;
-}
-
-.threaded-replies .form_notice .submit {
- height:30px;
- right: 10px !important;
- top: 103px !important;
-}
-
-.threaded-replies .notice-reply {
- clear: left;
- padding: 10px 10px 3px;
- position: relative;
-}
-
-/* DM's */
-body#inbox,
-body#outbox {
-}
-
-body#inbox .form_notice select[id="to"],
-body#outbox .form_notice select[id="to"] {
- float: none;
- margin: -4px 0 10px 10px;
- max-width: 450px;
- position: absolute;
- top: 98px;
- left:0px;
-}
-
-body#inbox .form_notice label[for="to"],
-body#outbox .form_notice label[for="to"] {
- display:none;
-}
-
-body#inbox #form_notice-direct.form_notice textarea,
-body#outbox #form_notice-direct.form_notice textarea {
- width: 518px;
-}
-
-body#inbox #form_notice-direct.form_notice .count,
-body#outbox #form_notice-direct.form_notice .count {
- right: -17px;
- top: 67px;
-}
-
-ul.messages > .notice {
- padding-bottom:20px !important;
-}
-
-body#outbox #core ul.messages .notice:before {
- background-position: -8px -150px;
- content: " ";
- display: block;
- height: 40px;
- left: 0;
- position: absolute;
- top: 17px;
- width: 40px;
- z-index: 10;
-}
-
-/* pagniation */
-
-#pagination {
- border-radius: 0;
- height: 1.2em;
- padding-bottom: 12px;
- width: 533px;
- background:transparent;
-}
-
-#pagination .nav_next {
- border-radius: 25px;
- display: block;
- float: none;
- font-size: 25px;
- height: 50px;
- line-height: 50px;
- text-align: center;
- width: 533px;
-}
-
-#pagination .nav_prev {
- display:none;
-}
-
-#pagination .nav_next a {
- border-radius: 50px;
- display: block;
- float: none;
- font-size: 25px;
- height: 50px;
- line-height: 50px;
- text-align: center;
- width: 533px;
- border:2px solid rgba(0,0,0,0.2);
- padding:0;
- color:rgba(0,0,0,0.2);
-}
-
-#pagination .nav_next a:hover {
- border:2px solid rgba(0,0,0,0.5);
- color:rgba(0,0,0,0.5);
- text-decoration:none;
-}
-
-/* notices etc */
-
-#page_notice {
- clear: both;
- margin-bottom: 18px;
- color:rgba(0,0,0,0.4);
- font-size:13px;
- letter-spacing: 0.3px;
-}
-
-/* notices etc */
-
-#content h1 {
- color: rgba(0,0,0,0.4);
- font-size: 13px;
- font-weight: bold;
- letter-spacing: 0;
- margin-bottom: 5px;
- padding: 0;
- text-shadow: none;
- text-transform: uppercase;
-}
-
-
-#content #content_inner > .threaded-notices > .notice,
-#content #content_inner > .threaded-notices > .infscr-pages > .notice,
-#content #content_inner > .notices > .infscr-pages > .notice,
-#content #content_inner > .notices > .notice,
-#content #notices_primary > .threaded-notices > .notice,
-#content #notices_primary > .threaded-notices > .infscr-pages > .notice,
-#content #notices_primary > .notices > .infscr-pages > .notice,
-#content #notices_primary > .notices > .notice {
- border-color: #e5e6e9 #dfe0e4 #d0d1d5;
- border-image: none;
- border-radius: 3px;
- border-style: solid;
- border-width: 1px;
- width:518px;
- background-color:#fff;
- padding:12px;
- padding-bottom:0;
-}
-
-#content .notice {
- padding-bottom: 4px;
-}
-
-.notice div.entry-content {
- font-size: 0.88em;
- line-height: 1.2em;
- margin-top: 6px;
- opacity: 0.6;
-}
-
-.notice:hover div.entry-content {
- opacity: 1;
-}
-
-.user_in .notice div.entry-content {
- max-width: 440px;
-}
-
-div.entry-content a.response:before {
- content: "(";
-}
-
-div.entry-content a.response:after {
- content: ")";
-}
-
-.notice-options {
- margin-top: 4px;
-}
-
-.notice-options {
- margin-top: 4px;
-}
-
-.notice-options .form_repeat.dialogbox {
- margin-right: 0px;
- border: 1px solid #aaa;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
- -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
- -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
-}
-
-.notice-options .form_repeat.dialogbox legend {
- padding-top: 10px;
-}
-
-#content .threaded-replies .notice .author .photo {
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
- -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
- -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
-}
-
-.user_in.realtime-popup .notice div.e-content {
- max-width: 320px;
-}
-
-.realtime-popup .threaded-replies {
- margin-left: 15px;
-}
-
-.realtime-popup .threaded-replies .form_notice textarea {
- width: 385px !important;
-}
-
-.realtime-popup .threaded-replies .form_notice label.notice_data-attach {
- top: 10px !important;
- right: 10px !important;
-}
-
-#realtime_actions {
- padding-top: 0px !important;
- top: -25px !important;
-}
-
-#realtime_actions button {
- margin-right: 5px;
-}
-
-.pagination {
- height: 1.2em;
-}
-
-.entity_profile {
- float: left;
- width: 360px;
- margin-top: 4px;
-}
-
-.entity_profile .entity_depiction {
- margin-top: 4px;
-}
-
-.entity_actions {
- width: 140px;
- margin-top: 0;
- margin-bottom: 0;
-}
-
-.entity_moderation:hover ul,
-.entity_role:hover ul {
- border-radius: 4px;
-}
-
-.entity_send-a-message .form_notice legend {
- text-shadow:0 1px 0 rgba(255,255,255,0.4);
-}
-
-.entity_send-a-message .form_notice {
- border: 1px solid #7B4E82;
-}
-
-.entity_send-a-message .form_notice #notice_action-submit {
- color: #fff !important;
- top: 46px;
-}
-
-.entity_subscribe .dialogbox, .entity_tag .dialogbox {
- border: 1px solid #aaa;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
-}
-
-.entity_subscribe .dialogbox input.submit_dialogbox, .entity_tag .dialogbox input.submit_dialogbox {
- color: #fff !important;
-}
-
-#filter_tags_item .submit {
- left: 6px;
- top: -3px;
-}
-
-#pagination {
- height: 1.2em;
- padding-bottom: 120px;
- border-radius: 6px;
-}
-
-#pagination a {
- color: #3e3e8c;
-}
-
-
-#footer a {
- color: #3e3e8c;
-}
-
-#site_nav_global_secondary {
- margin-bottom: 10px;
-}
-
-.error, .success, .notice-status {
- border-radius: 6px;
-}
-
-#aside_primary a.timestamp {
- color: rgba(0, 0, 0, 0.3);
-}
-
-.notice > footer {
- margin-bottom: 5px;
-}
-
-/* loading */
-
-#infscr-loading {
- font-size:20px;
- color: rgba(0,0,0,0.4);
-}
-
-#infscr-loading img {
- display:none;
-}
-
-/* menu icons */
-#nav_local_default li a {
- line-height:22px;
-}
-
-#nav_local_default a {
- padding-left:32px;
-}
-
-#nav_profile a:before,
-#nav_timeline_replies a:before,
-#nav_timeline_personal a:before,
-#nav_local_default li:first-child ul.nav li:nth-child(4) a:before, /* messages... */
-#nav_timeline_favorites a:before,
-#nav_timeline_public a:before,
-#nav_groups a:before,
-#nav_recent-tags a:before,
-#nav_timeline_favorited a:before,
-#nav_directory a:before,
-#nav_lists a:before {
- content: "\f409";
- display: inline;
- font-family:'Genericons';
- font-size:20px;
- line-height:22px;
- position:absolute;
- display:block;
- box-sizing:border-box;
- height:22px;
- width:22px;
- margin-left:-22px;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color:rgba(0,0,0,0.4);
-}
-
-.nav li.current a:before {
- color:rgba(0,0,0,0.6) !important;
- font-weight:normal !important;
-}
-#nav_profile a:before {
- content: "\f304";
- margin-top:-1px;
-}
-
-#nav_timeline_replies a:before {
- content: "\f086";
- font-family:'fa';
- font-size:14px;
- margin-left:-19px;
-}
-
-#nav_local_default li:first-child ul.nav li:nth-child(4) a:before {
- content: "\f0e0";
- font-family:'fa';
- font-size:12px;
- margin-left:-18px;
-}
-
-#nav_timeline_favorites a:before {
- content: "\f005";
- font-family:'fa';
- font-size:14px;
- margin-left:-18px;
-}
-
-#nav_timeline_public a:before {
- content: "\f475";
-}
-
-#nav_groups a:before {
- content: "\f0c0";
- font-family:'fa';
- font-size:12px;
- margin-left:-18px;
-}
-
-#nav_recent-tags a:before {
- content: "\f02c";
- font-family:'fa';
- font-size:12px;
- margin-left:-18px;
-}
-
-#nav_timeline_favorited a:before {
- content: "\f140";
- font-family:'fa';
- font-size:14px;
- margin-left:-17px;
-}
-
-#nav_directory a:before {
- content: "\f1ae";
- font-family: "fa";
- font-size: 15px;
- margin-left: -16px;
- margin-top: -1px;
-}
-
-#nav_lists a:before {
- content: "\f0c9";
- font-family: "fa";
- font-size: 15px;
- margin-left: -18px;
-}
-
-
-.profile_list td.entity_actions {
- width: 24px;
- max-width: 24px;
- min-width: 24px;
- height: 20px;
- padding-left: 6px !important;
- position: relative;
- float: none;
- display: table-cell !important;
-}
-
-.profile_list .entity_actions ul {
- position: absolute;
- right: 20px;
-}
-
-.profile_list .entity_actions input {
- width: 22px;
- height: 22px;
- padding-top: 1px;
- padding-right: 0px;
- padding-left: 20px;
- display: block;
- overflow: hidden;
- font-size: 0em;
- border: 1px solid #CDD1DD;
-}
-
-.form_user_unsubscribe input.submit {
- background-position: 2px -1250px;
-}
-
-.form_user_subscribe input.submit {
- background-position: 2px -1184px;
-}
-
-.form_user_block input.submit {
- background-position: 2px -920px;
-}
-
-.profile_list .entity_actions input:hover {
- width: auto;
- padding-right: 10px;
- overflow: visible;
- font-size: 1em;
- line-height: 1.3em;
- border: 1px solid #A6ADBF;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
- -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-.peopletags_edit_button {
- position:relative;
-}
-
-.peopletags_edit_button:before {
- margin-left: -2px;
- top: -2px;
-}
-
-
-#export_data li a.foaf,
-#export_data li a.json,
-#export_data li:nth-child(2) {
- display:none;
-}
-
-
-.group_profile_block .entity_actions li a,
-.group_profile_block .entity_actions input.submit {
- background-color:transparent !important;
-}
-
-#gnusocial-version {
-border: 1px solid rgba(0, 0, 0, 0.3);
- border-radius: 15px;
- box-sizing: border-box;
- float: left;
- font-size: 11px;
- padding: 15px;
- width: 100%;
-}
-
-#gnusocial-version a,
-#gnusocial-version p {
- margin:0;
- color:rgba(0,0,0,0.5);
-}
-
-.form_notice input.submit, .form_settings input.submit, .form_settings input.cancel, #form_invite input.submit,
-.entity_subscribe .dialogbox input.submit_dialogbox,
-.entity_tag .dialogbox input.submit_dialogbox,
-.form_repeat.dialogbox input.submit_dialogbox
-{ /* TODO combine all these declarations */
- font-family: "Helvetica Neue",Arial,sans-serif;
- font-size: 13px;
- font-weight: 700;
- color: #FFFFFF;
- line-height: 16px;
- background: -moz-linear-gradient(top, #a22430 0%, #c33541 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a22430), color-stop(100%,#c33541)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #a22430 0%,#c33541 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #a22430 0%,#c33541 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #a22430 0%,#c33541 100%); /* IE10+ */
- background: linear-gradient(to bottom, #a22430 0%,#c33541 100%); /* W3C */
- background-repeat: repeat-x;
- padding-top: 5px;
- padding-right: 10px;
- padding-bottom: 5px;
- padding-left: 10px;
- border-top-width: 1px;
- border-right-width: 1px;
- border-bottom-width: 1px;
- border-left-width: 1px;
- border-top-color: #c33541;
- border-right-color: #c33541;
- border-bottom-color: #c33541;
- border-left-color: #c33541;
- border-top-style: solid;
- border-right-style: solid;
- border-bottom-style: solid;
- border-left-style: solid;
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 0px 0px inset;
- border-image-outset: 0 0 0 0;
- border-image-repeat: stretch stretch;
- border-image-slice: 100% 100% 100% 100%;
- border-image-source: none;
- border-image-width: 1 1 1 1;
- cursor: pointer;
- text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 1px;
-}
-
-.form_notice input.submit:hover, .form_settings input.submit:hover, .form_settings input.cancel:hover, #form_invite input.submit:hover,
-.entity_subscribe .dialogbox input.submit_dialogbox:hover,
-.entity_tag .dialogbox input.submit_dialogbox:hover,
-.form_repeat.dialogbox input.submit_dialogbox:hover
-{
- background: -moz-linear-gradient(top, #c33541 0%, #d44652 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c33541), color-stop(100%,#d44652)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #c33541 0%,#d44652 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #c33541 0%,#d44652 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #c33541 0%,#d44652 100%); /* IE10+ */
- background: linear-gradient(to bottom, #c33541 0%,#d44652 100%); /* W3C */
- background-repeat: repeat-x;
- border-color:#c33541;
- color:#fff;
-}
-
-.form_settings input#cancel, #form_action-no {
- background: #f2f2f2;
- color: #d7621c;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.form_settings input#cancel:hover, #form_action-no:hover {
- background: #fff;
- color: #d7621c;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.form_settings fieldset fieldset {
- margin-bottom: 30px;
- padding-top: 25px;
-}
-
-#invite #content p {
- margin-bottom: 15px;
-}
-
-#invite #content ul {
- list-style-type: none;
- margin-bottom: 25px;
- margin-left: 25px;
-}
-
-#invite #content li {
- background: url(../images/resultset_next.png) no-repeat 0px 3px;
- padding-left: 20px;
- margin-bottom: 10px;
-}
-
-#invite #content #form_invite ul, #invite #content #form_invite li {
- margin-left: 0px;
- padding-left: 0px;
- background: none;
-}
-
-#form_invite input[type=text], #form_invite textarea {
- width: 250px;
- padding: 5px;
- border: 1px solid #a6a6a6;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-#form_invite textarea {
- clear: left;
- width: 508px;
- height: 48px;
-}
-
-#form_invite a.add_row, #form_invite a.remove_row {
- display: block;
- height: 16px;
- width: 16px;
- overflow: hidden;
- background-image: url('../../base/images/icons/icons-01.gif');
- background-repeat: no-repeat;
-}
-
-#form_invite a.remove_row {
- background-position: 0px -1252px;
- display: inline-block;
- position: relative;
- top: 4px;
- left: 10px;
- line-height: 4em;
-}
-
-#form_invite a.add_row {
- clear: both;
- position: relative;
- top: 10px;
- background-position: 0px -1186px;
- width: 120px;
- padding-left: 20px;
- line-height: 1.2em;
-}
-
-#form_invite label[for=personal] {
- display: block;
- margin-top: 25px;
-}
-
-#content thead th {
- text-align:left;
-}
-
-#content tbody th {
- vertical-align:top;
- text-align:left;
- font-weight:normal;
- padding-top:11px;
- padding-right:18px;
-}
-
-#content tbody tr {
- border-top: 1px dotted #bbb;
-}
-
-#content td {
- padding:11px 18px 11px 0;
- vertical-align:top;
-}
-
-#content td:last-child {
- padding-right:0;
-}
-
-/* Search */
-
-#form_search {
- padding-bottom: 10px;
- margin-bottom: 20px;
- background: url('../images/brdr_black_dot.png') repeat-x bottom left;
-}
-
-#form_search fieldset {
- margin-bottom: 0px;
-}
-
-#form_search ul.form_data #q {
- margin-left: 10px;
- width: 210px;
-}
-
-#form_search input.submit {
- height: 30px;
- margin-left: 5px;
-}
-
-#noticesearch .entity_actions {
- margin: 0px;
-}
-
-#noticesearch p.error {
- margin-top: 60px;
-}
-
-/* Limited-scope */
-
-.limited-scope .e-content .timestamp {
- padding-left: 20px;
- position: relative;
-}
-
-.limited-scope .e-content .timestamp:before {
- content: url(../images/lock.png);
- position: absolute;
- top: -2px;
- left: 0px;
-}
-
-.limited-scope li .e-content .timestamp {
- padding-left: 0px;
-}
-
-.limited-scope li .e-content .timestamp:before {
- content: none;
-}
-
-.limited-scope li.limited-scope .e-content .timestamp {
- padding-left: 20px;
-}
-
-.limited-scope li.limited-scope .e-content .timestamp:before {
- content: url(../images/lock.png);
- position: absolute;
- top: -2px;
- left: 0px;
-}
-
-/* Blog */
-
-label[for=blog-entry-content] {
- display: none !important;
-}
-
-#input_form_blog td {
- padding-top: 0px;
- padding-bottom: 0px;
-}
-
-#input_form_blog td.mceToolbar {
- padding-top: 4px;
-}
-
-h4.blog-entry-title {
- margin-bottom: 8px;
- line-height: 1.2em;
-}
-
-/* Onboard specific styles */
-/* TODO move to plugin */
-
-#cboxOverlay{
- background: url(../images/lightbox_bg.png) repeat 0 0 !important;
-}
-
-#cboxContent{
- background: #fff url(../logo.png) no-repeat 10px bottom !important;
-}
-
-.onboard_iframe {
- background: none;
- padding: 10px;
-}
-
-.onboard_iframe #wrap {
- width: auto;
- background: none;
-}
-
-.onboard_welcome p {
- margin-bottom: 10px;
-}
-
-.onboard_welcome ul {
- list-style-type: none;
- margin-bottom: 10px;
-}
-
-.onboard_welcome ul li {
- background: url(../images/resultset_next.png) no-repeat 0px 3px;
- padding-left: 20px;
- margin-left: 10px;
-}
-
-#aside_primary #onboard_section {
- background: #f2f2f2;
- width: 196px;
- padding: 10px;
- border-radius: 4px;
- border: 1px solid #516499;
- background: #fafafa;
-}
-
-#onboard_section H2 {
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- position: relative;
- top: -11px;
- left: -11px;
- padding: 2px 0px 2px 10px;
- margin-right: -22px;
- margin-bottom: 5px;
- color: #fff;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
- background: #364A84;
- background: -moz-linear-gradient(top, #516499 0%, #364a84 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#516499), color-stop(100%,#364a84));
- background: -webkit-linear-gradient(top, #516499 0%,#364a84 100%);
- background: -o-linear-gradient(top, #516499 0%,#364a84 100%);
- background: -ms-linear-gradient(top, #516499 0%,#364a84 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#516499', endColorstr='#364a84',GradientType=0 );
- background: linear-gradient(top, #516499 0%,#364a84 100%);
-}
-
-#onboard_section ul {
- list-style-type: none;
-}
-
-#onboard_section .onboard-step-incomplete {
- background: url(../images/resultset_next.png) no-repeat 0px 1px;
- padding-left: 20px;
- margin-bottom: 10px;
-}
-
-#onboard_section .onboard-step-complete {
- background: url(../images/tick.png) no-repeat 0px 1px;
- padding-left: 20px;
- margin-bottom: 10px;
- text-decoration: line-through;
- color:rgba(0,0,0,0.5);
-}
-
-/* Billing specific styles */
-/* TODO move to plugin */
-
-#content table.billing_info {
- margin-top: 10px;
- background:rgba(240, 240, 240, 0.4);
-}
-
-#content table.billing_info th {
- text-align: right;
- width: 50%;
-}
-
-.invalid {
- border: solid 2px red !important;
-}
-
-#payment_history table {
- width: 100%;
-}
-
-#billingadminpanel .form_settings input {
- margin-right: 0px;
-}
-
-/* Directory specific styles */
-/* TODO separate base styles and move to plugin */
-
-div#profile_directory div.alpha_nav > a {
- border-left: 1px solid #ccc !important;
- padding-left: 3.5px !important;
- padding-right: 4px !important;
- margin-right: 0px;
- float: left;
- line-height: 1.4em;
-}
-
-div#profile_directory div.alpha_nav > a.first {
- border-left: none !important;
-}
-
-div#profile_directory div.alpha_nav a.current {
- background-color: #ECECF2 !important;
-}
-
-table.profile_list {
- margin-top: 25px;
-}
-
-.profile_list th {
- font-size: 0.8em;
-}
-
-.profile_list th#created {
- width: 100px;
-}
-
-.profile_list th#subscriptions {
- width: 90px;
-}
-
-.profile_list th.current {
- background: none !important;
-}
-
-.profile_list th.current.reverse {
- background: none !important;
-}
-
-.profile_list th.current a {
- padding-right: 25px;
- background: url(../images/bluearrow_down.png) no-repeat top right;
-}
-
-.profile_list th.current.reverse a {
- background: url(../images/bluearrow_up.png) no-repeat top right;
-}
-
-table.profile_list tr.alt {
- background-color: #fafafa !important;
- border: none !important;
-}
-
-td.entity_profile {
- width: auto;
- min-width: 250px;
-}
-
-
-/* SNOD CompanyLogo styling */
-/* TODO move to plugin */
-
-#site_nav_local_views a.company_logo {
- width: 138px;
- padding: 0px;
- font-weight: bold;
- text-transform: none;
- line-height: 1em;
- margin-bottom: 20px;
- position: relative;
- top: -4px;
-}
-
-#site_nav_local_views a.company_logo:hover {
- background: none;
- color: blue;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.company_logo img {
- max-width: 138px;
- margin-bottom: 4px;
-}
-
-.company_logo span {
- display: block;
-}
-
-a.company_logo:hover span {
- text-decoration: underline;
-}
-
-}/*end of @media screen, projection, tv*/
+++ /dev/null
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<!--
-2014-10-3: Created.
--->
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata>
-Created by FontForge 20120731 at Fri Oct 3 09:39:07 2014
- By Joen
-Created by Joen with FontForge 2.0 (http://fontforge.sf.net)
-</metadata>
-<defs>
-<font id="Genericons" horiz-adv-x="2048" >
- <font-face
- font-family="Genericons"
- font-weight="500"
- font-stretch="normal"
- units-per-em="2048"
- panose-1="2 0 6 9 0 0 0 0 0 0"
- ascent="2048"
- descent="0"
- bbox="-0.0140489 0 2048.01 2048"
- underline-thickness="102.4"
- underline-position="-204.8"
- unicode-range="U+F100-F517"
- />
- <missing-glyph />
- <glyph glyph-name="uniF413" unicode=""
-d="M256 1280c565.504 0 1024 -458.496 1024 -1024h-256c0 423.552 -344.448 768 -768 768v256zM256 1792c848.256 0 1536 -687.744 1536 -1536h-256c0 705.792 -574.208 1280 -1280 1280v256zM448 640c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192
-s-192 86.0156 -192 192s85.8877 192 192 192z" />
- <glyph glyph-name="uniF462" unicode=""
-d="M618.502 1337l-213.004 142.004l-303.335 -455.002l303.335 -455.002l213.004 142.004l-208.665 312.998zM1642.5 1479l-213.004 -142.004l208.665 -312.998l-208.665 -312.998l213.004 -142.004l303.335 455.002zM771.821 543.045l248.357 -62.0898l256 1024
-l-248.357 62.0898z" />
- <glyph glyph-name="uniF457" unicode=""
-d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 512c70.6562 0 128 57.4717 128 128s-57.3438 128 -128 128c-70.7842 0 -128 -57.4717 -128 -128s57.2158 -128 128 -128z
-M1342.72 1155.84c24.832 38.9121 37.248 85.1201 37.1201 138.752c0 74.4961 -27.6475 133.504 -83.7119 176.641c-55.9355 43.2637 -133.632 64.7676 -231.936 64.7676c-119.809 0 -234.496 -31.2324 -344.32 -93.9521l91.9043 -180.096
-c89.2158 47.2314 167.168 70.9121 233.983 70.9121c26.752 0 48.5127 -5.37598 65.2803 -16.2559c17.2803 -10.752 25.4717 -25.4727 25.4717 -44.0322c0 -23.2959 -8.06348 -44.0322 -23.5518 -62.208c-16 -18.0479 -41.4717 -38.4004 -77.1836 -60.9277
-c-45.1846 -28.1602 -76.416 -57.0889 -94.3359 -87.04c-17.5361 -29.6963 -26.3682 -66.4326 -26.3682 -109.44v-56.96h203.647v34.0479c0 18.6885 5.50391 35.2002 17.2803 48.8965c12.0322 14.0801 40.96 36.0957 86.9121 66.0479
-c55.04 34.8154 94.5918 71.6797 119.808 110.848z" />
- <glyph glyph-name="uniF403" unicode=""
-d="M1541.38 1530.62l506.624 -506.624l-506.624 -506.624c-131.456 -134.272 -314.752 -217.728 -517.376 -217.728c-202.752 0 -386.048 83.4551 -517.504 217.983l-506.496 506.368v0l506.496 506.496c131.456 134.4 314.624 217.984 517.504 217.984
-c202.752 0 385.92 -83.584 517.376 -217.856zM1404.42 651.776l372.096 372.224l-370.943 370.944c-102.528 104.704 -237.568 161.536 -381.568 161.536c-144.128 0 -279.168 -56.9609 -380.288 -160.385l-372.096 -372.096l370.688 -370.56
-c102.528 -104.96 237.696 -161.792 381.824 -161.792c144 0 279.168 56.832 380.288 160.128zM1408 1024zM640 1024c0 212.096 172.032 384 384 384s384 -171.904 384 -384c0 -211.968 -172.032 -384 -384 -384s-384 172.032 -384 384zM768 1152
-c0 -70.6562 57.2158 -128 128 -128c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128c-70.7842 0 -128 -57.3438 -128 -128z" />
- <glyph glyph-name="uniF505" unicode=""
-d="M256 1408v256h256v-256h-256zM768 1664h1024v-256h-1024v256zM256 896v256h256v-256h-256zM1408 1152v-256h-640v256h640zM256 384v256h256v-256h-256zM768 384v256h896v-256h-896z" />
- <glyph glyph-name="uniF50F" unicode=""
-d="M1920 1024l-384 -384v256h-384v-384h256l-384 -384l-384 384h256v384h-384v-256l-384 384l384 384v-256h384v384h-256l384 384l384 -384h-256v-384h384v256z" />
- <glyph glyph-name="uniF307" unicode=""
-d="M768 640v128h128v-128h-128zM768 896v128h128v-128h-128zM768 1152v128h128v-128h-128zM512 640v128h128v-128h-128zM512 896v128h128v-128h-128zM1280 896v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 1152v128h128v-128h-128zM1408 1664h256v-1280h-1408
-v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128zM1024 896v128h128v-128h-128zM1024 640v128h128v-128h-128z
-" />
- <glyph glyph-name="uniF460" unicode=""
-d="M1664 1280h128l-256 -768h-768l256 768h128l86.2725 256h339.455zM1300.86 1280h214.271l-43.1357 128h-128zM809.728 1536l86.2725 -256l-256 -768h-128l-256 768h128l86.2725 256h339.455zM532.864 1280h214.271l-43.1357 128h-128z" />
- <glyph glyph-name="uniF430" unicode=""
-d="M1024 1453.31l86.6562 -86.6553l-342.656 -342.656h896v-128h-896l342.656 -342.656l-86.6562 -86.6553l-493.312 493.312z" />
- <glyph glyph-name="uniF515" unicode=""
-d="M1024 1920c494.848 0 896 -401.152 896 -896s-401.152 -896 -896 -896s-896 401.152 -896 896s401.152 896 896 896zM1387.52 601.216c29.4404 0 55.6807 23.6807 55.8086 56.0645c0 33.1514 -13.0557 46.4639 -35.4561 59.5195
-c-150.4 90.1123 -325.12 135.168 -521.216 135.168c-114.433 0 -224.769 -14.4639 -335.36 -39.6797c-27.1357 -5.12012 -48.7676 -23.8076 -48.7676 -61.4404c0 -29.1836 22.6553 -56.3193 56.7041 -56.3193c11.0078 0 29.4395 5.75977 44.1592 8.83203
-c90.2402 18.6875 186.752 30.9756 282.624 30.9756c171.776 0 333.696 -41.3438 463.616 -119.808c13.5684 -8.32031 23.4238 -13.3125 37.8877 -13.3125zM1485.18 838.4c38.9121 0 69.7607 31.3594 69.8887 70.0156c0 31.8721 -11.0078 53.6318 -40.832 70.7842
-c-178.433 106.752 -405.376 165.12 -639.872 165.12c-149.76 0 -252.544 -21.248 -353.28 -48.8965c-37.248 -10.624 -55.6797 -36.7354 -55.6797 -74.8799c0 -38.7842 31.3594 -70.1436 69.8877 -70.1436c16.3838 0 26.1123 5.11914 43.5205 10.1113
-c81.1514 21.5039 179.071 37.376 292.479 37.376c221.185 0 423.168 -57.4717 568.96 -144c13.3125 -7.55176 25.6006 -15.4873 44.9277 -15.4873zM1596.29 1114.24c45.3115 0 84.6084 35.0713 84.3516 83.8398c0 42.752 -18.9434 66.0479 -46.208 81.4082
-c-202.111 118.912 -478.976 172.928 -742.016 172.928c-155.008 0 -297.472 -17.5361 -425.216 -55.168c-32.5117 -9.59961 -62.7197 -36.9922 -62.7197 -85.6318c0 -47.8721 36.7354 -85.6318 84.4795 -85.6318c16.5117 0 33.0244 6.39941 46.0801 9.72754
-c113.024 30.5918 236.416 43.0078 357.888 43.0078c243.328 0 495.104 -53.5039 657.28 -150.784c17.0244 -9.34375 27.7764 -13.6953 46.0801 -13.6953z" />
- <glyph glyph-name="uniF448" unicode=""
-d="M512 384v1280h384v-1280h-384zM1152 1664h384v-1280h-384v1280z" />
- <glyph glyph-name="uniF453" unicode=""
-d="M1536 2048c141.312 0 256 -114.688 256 -256v-1536c0 -141.312 -114.688 -256 -256 -256h-1024c-141.312 0 -256 114.688 -256 256v1536c0 141.312 114.688 256 256 256h1024zM1024 128c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
-c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1536 512v1280h-1024v-1280h1024z" />
- <glyph glyph-name="uniF419" unicode=""
-d="M0 256v256h2048v-256h-2048zM0 1792h2048v-256h-2048v256zM0 896v256h2048v-256h-2048z" />
- <glyph glyph-name="uniF423" unicode=""
-d="M567.936 1440.9l-267.136 -480.896h403.2v-384h-128v256h-492.8l372.864 671.104zM1644.8 960h403.2v-384h-128v256h-492.8l372.864 671.104l112 -62.207zM1088 1344c176.768 0 320 -143.232 320 -320s-143.232 -320 -320 -320s-320 143.232 -320 320
-s143.232 320 320 320zM1088 832c105.856 0 192 86.1436 192 192s-86.1436 192 -192 192s-192 -86.1436 -192 -192s86.1436 -192 192 -192z" />
- <glyph glyph-name="uniF512" unicode=""
-d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312z" />
- <glyph glyph-name="uniF417" unicode=""
-d="M960 1792c318.08 0 576 -257.92 576 -576c0 -159.232 -64.6396 -303.36 -169.088 -407.68l-406.912 -407.04l-406.912 407.04c-104.448 104.319 -169.088 248.447 -169.088 407.68c0 318.08 257.92 576 576 576zM960 896c176.64 0 320 143.36 320 320
-s-143.36 320 -320 320c-176.768 0 -320 -143.36 -320 -320s143.232 -320 320 -320z" />
- <glyph glyph-name="uniF410" unicode=""
-d="M256 1536h1536v-128l-768 -384l-768 384v128zM256 1216l768 -384l768 384v-704h-1536v704z" />
- <glyph glyph-name="uniF449" unicode=""
-d="M512 512v1024h1024v-1024h-1024z" />
- <glyph glyph-name="uniF467" unicode=""
-d="M1280 1280c282.752 0 512 -229.248 512 -512v-299.904l-150.016 149.889c-99.9688 99.9678 -231.04 150.016 -361.984 150.016h-256v-384l-640 640l640 640v-384h256z" />
- <glyph glyph-name="uniF224" unicode=""
-d="M1536 1792c141.312 0 256 -114.688 256 -256v-384c0 -424.064 -343.936 -768 -768 -768s-768 343.936 -768 768v384c0 141.312 114.688 256 256 256h1024zM1498.5 1189.5c50.0479 50.0479 50.0479 131.072 0 180.992c-50.0479 50.0479 -130.944 50.0479 -180.992 0
-l-293.504 -293.504l-293.504 293.504c-50.0479 50.0479 -131.072 50.0479 -180.992 0c-50.0479 -49.9199 -50.0479 -130.944 0 -180.992l361.984 -361.984l4.22363 4.22461c22.4004 -37.376 61.5684 -63.7441 108.288 -63.7441s85.8877 26.3682 108.288 63.7441
-l4.22363 -4.22461z" />
- <glyph glyph-name="uniF203" unicode=""
-d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-281.856v711.168h269.44l12.416 259.456h-281.984v192.384v0.255859v12.0322c0 71.2959 15.2324 114.432 108.544 114.432c86.6562 0 166.017 -0.639648 166.017 -0.639648
-l5.8877 242.304s-77.6963 9.98438 -182.528 9.98438c-259.584 0 -372.096 -159.872 -372.096 -333.952v-236.8h-254.336v-259.328h254.336v-711.296h-723.84c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280z" />
- <glyph glyph-name="uniF502" unicode=""
-d="M128 2048h1920l-960 -960z" />
- <glyph glyph-name="uniF412" unicode=""
-d="M1920 832l-640 -640v448h-1024v704l384 384v-704h640v448z" />
- <glyph glyph-name="uniF440" unicode=""
-d="M1152 640v-256h256l-384 -384l-384 384h256v256h256zM1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-384v256h-512v-256h-384c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.40039c-4.09668 20.7363 -6.40039 42.1123 -6.40039 64
-c0 176.768 143.232 320 320 320c89.3438 0 169.984 -36.7363 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
- <glyph glyph-name="uniF305" unicode=""
-d="M1408 1664h256v-1280h-1408v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128zM960 1280
-c35.3281 0 64 -28.6719 64 -64v-512c0 -35.3281 -28.6719 -64 -64 -64s-64 28.6719 -64 64v448h-64c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h128z" />
- <glyph glyph-name="uniF443" unicode=""
-d="M1152 1664l384 -384v-121.472v-6.52832v-768h-1024v1280h512h128zM1408 512v640h-256h-128v128v256h-384v-1024h768z" />
- <glyph glyph-name="uniF411" unicode=""
-d="M1280 1728l448 -448l-896 -896h-448v448zM1280 1536l-594.688 -594.688l96 -96l594.688 594.688zM768 512l128 128l-96 96v0l-64 64v0l-96 96l-128 -128zM845.312 781.312l96 -96l594.688 594.688l-96 96z" />
- <glyph glyph-name="uniF402" unicode=""
-d="M896 1536v-256h256v-128h-256v-256h-128v256h-256v128h256v256h128zM1297.15 878.848l494.848 -494.848l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576
-c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM832 768c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448s200.576 -448 448 -448z" />
- <glyph glyph-name="uniF420" unicode=""
-d="M483.2 1564.8l-227.2 227.2h640v-640l-232.32 232.32c-93.0557 -92.1602 -151.68 -218.88 -151.68 -360.32c0 -238.208 163.584 -436.736 384 -493.824v-262.656c-363.008 61.0566 -640 376.064 -640 756.48c0 212.096 88.0645 402.048 227.2 540.8zM1792 1024
-c0 -212.096 -88.0645 -401.92 -227.2 -540.8l227.2 -227.2h-640v640l18.5596 -18.5596l213.761 -213.761c93.0557 92.1602 151.68 218.88 151.68 360.32c0 238.208 -163.584 436.736 -384 493.824v262.656c363.008 -61.0566 640 -376.064 640 -756.48z" />
- <glyph glyph-name="uniF425" unicode=""
-d="M704 1024c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64s-64 28.6719 -64 64s28.6719 64 64 64zM704 1280c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64s-64 28.6719 -64 64s28.6719 64 64 64zM704 768c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64
-s-64 28.6719 -64 64s28.6719 64 64 64zM896 896v128h384v-128h-384zM896 640v128h384v-128h-384zM1280 1664h256v-1280h-1152v1280h256c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM832 1664c-35.3281 0 -64 -28.6719 -64 -64s28.6719 -64 64 -64
-h256c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256zM1408 512v1024h-128v-128h-640v128h-128v-1024h896zM896 1152v128h384v-128h-384z" />
- <glyph glyph-name="uniF508" unicode=""
-d="M1450.5 1395.2c45.6963 -69.376 124.288 -115.2 213.504 -115.2c5.50391 0 10.4961 1.28027 15.8721 1.66406l-399.872 -799.872l-256 512l-256 -512l-128 256l-256 -512l-299.776 599.424l228.992 114.561l70.7842 -141.568l256 512l128 -256l256 512l256 -512z
-M1664 1728c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192s-192 86.0156 -192 192s85.8877 192 192 192z" />
- <glyph glyph-name="uniF507" unicode=""
-d="M1792 604.544c76.2881 -44.416 128 -126.08 128 -220.544c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256c0 94.5918 51.7119 176.128 128 220.544v163.456c0 70.7842 -57.2158 128 -128 128h-256v-291.456c76.2881 -44.416 128 -126.08 128 -220.544
-c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256c0 94.4639 51.8398 176.128 128 220.544v291.456h-256c-70.6562 0 -128 -57.2158 -128 -128v-163.456c76.1602 -44.416 128 -126.08 128 -220.544c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256
-c0 94.4639 51.8398 176.128 128 220.544v163.456c0 212.096 171.904 384 384 384h256v291.456c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256c0 -94.4639 -51.7119 -176.128 -128 -220.544v-291.456h256
-c211.968 0 384 -171.904 384 -384v-163.456zM1024 1792c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM384 256c70.6562 0 128 57.2158 128 128s-57.3438 128 -128 128s-128 -57.2158 -128 -128
-s57.3438 -128 128 -128zM1024 256c70.6562 0 128 57.2158 128 128s-57.3438 128 -128 128s-128 -57.2158 -128 -128s57.3438 -128 128 -128zM1664 256c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128s-128 -57.2158 -128 -128s57.2158 -128 128 -128z" />
- <glyph glyph-name="uniF306" unicode=""
-d="M1151.87 1219.46c0.12793 -0.511719 0.12793 -0.896484 0.12793 -1.4082v-1.79199v-0.255859c0 -5.12012 -0.639648 -10.3682 -1.91992 -15.4883l-128 -512c-8.57617 -34.1758 -43.2637 -55.04 -77.5684 -46.5918c-34.3037 8.57617 -55.168 43.2637 -46.5918 77.5684
-l108.16 432.512h-174.08c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h256h1.53613h1.28027c1.02344 -0.12793 1.91992 -0.12793 2.81543 -0.255859h0.255859c30.3359 -2.68848 54.5283 -26.624 57.8564 -56.96v0c0 -0.768555 0.12793 -1.4082 0.12793 -2.04785
-v-1.28027zM1408 1664h256v-1280h-1408v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128z" />
- <glyph glyph-name="uniF406" unicode=""
-d="M2048 1920l-832 -832l832 -832l-128 -128l-832 832l-832 -832l-128 128l832 832l-832 832l128 128l832 -832l832 832z" />
- <glyph glyph-name="uniF215" unicode=""
-d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280zM1024 1408c-212.096 0 -384 -171.904 -384 -384c0 -211.968 171.904 -384 384 -384
-c211.968 0 384 172.032 384 384c0 212.096 -172.032 384 -384 384zM1792 384v768h-274.176c10.624 -41.0879 18.1758 -83.4561 18.1758 -128c0 -282.752 -229.248 -512 -512 -512s-512 229.248 -512 512c0 44.5439 7.42383 86.9121 18.1758 128h-274.176v-768
-c0 -70.7842 57.3438 -128 128 -128h1280c70.7842 0 128 57.2158 128 128zM1792 1536v128c0 70.6562 -57.2158 128 -128 128h-128c-70.7842 0 -128 -57.3438 -128 -128v-128c0 -70.6562 57.2158 -128 128 -128h128c70.7842 0 128 57.3438 128 128z" />
- <glyph glyph-name="uniF202" unicode=""
-d="M1920 1583.74c-49.2803 -73.7285 -111.744 -138.368 -183.552 -190.208c0.767578 -15.7441 1.2793 -31.6162 1.2793 -47.4883c0 -485.76 -369.92 -1046.02 -1046.27 -1046.02c-207.616 0 -400.768 60.7998 -563.456 165.248
-c28.7998 -3.45605 58.1123 -5.24805 87.8076 -5.24805c172.032 0 330.752 58.752 456.448 157.439c-160.768 2.81641 -296.576 108.929 -343.424 255.104c22.5283 -3.96777 45.4404 -6.52832 69.248 -6.52832c33.5361 0 65.9199 4.48047 96.7676 12.7998
-c-168.319 33.792 -294.912 182.272 -294.912 360.448v4.73633c49.6641 -27.5205 106.368 -44.0322 166.528 -45.9521c-98.6875 65.9199 -163.456 178.432 -163.456 305.92c0 67.3281 18.1758 130.688 49.792 184.96c181.376 -222.464 452.353 -368.768 757.889 -384.128
-c-6.27246 26.8799 -9.60059 54.9121 -9.60059 83.7119c0 203.008 164.608 367.616 367.616 367.616c105.855 0 201.472 -44.6719 268.544 -116.096c83.584 16.5117 162.304 47.1035 233.216 89.2158c-27.3916 -85.8887 -85.7598 -157.952 -161.536 -203.393
-c74.3682 8.83203 145.152 28.5439 211.072 57.8564z" />
- <glyph glyph-name="uniF222" unicode=""
-d="M1223.94 775.936c20.0967 20.0967 52.0967 19.9688 72.0645 0c19.9678 -19.9678 19.9678 -52.9912 0 -72.96c-56.96 -56.96 -145.92 -86.0156 -270.976 -86.0156c-126.977 0 -216.064 29.0557 -273.024 86.0156c-19.9678 19.9688 -19.9678 52.9922 0 72.96
-c19.9678 19.9688 51.9678 19.9688 71.9355 0c38.0166 -38.0156 103.04 -56.0635 199.04 -56.0635c97.9209 0 162.944 18.0479 200.96 56.0635zM894.976 982.016c0 -61.0557 -49.9199 -112 -112 -112c-60.9277 0 -110.976 50.9443 -110.976 112
-c0 61.9521 49.9199 112 110.976 112c61.9521 0 112 -50.0479 112 -112zM1265.02 1094.02c61.9512 0 112 -50.0479 112 -112c0 -61.0557 -50.0488 -112 -112 -112c-61.9521 0 -112 50.9443 -112 112c0 61.9521 50.0479 112 112 112zM1698.05 1089.02
-c24.96 17.9199 43.0078 45.9512 43.1357 78.9756c0 54.0156 -44.0312 98.0479 -98.0479 98.0479c-32 0 -57.9834 -16 -76.0322 -39.04c53.8887 -39.9355 98.9443 -87.04 130.944 -137.983zM1021.06 500.992c347.904 0 631.937 177.023 632.064 393.983
-c0 219.009 -284.032 396.032 -632.064 396.032c-349.056 0 -632.96 -177.023 -632.96 -395.008s283.904 -395.008 632.96 -395.008zM306.944 1168c0 -30.9756 16 -57.9844 39.9355 -74.8799c32 50.9443 76.9277 97.0234 131.968 136.96
-c-17.9199 22.0156 -43.0078 35.9678 -72.96 35.9678c-54.9121 0 -98.9434 -44.0322 -98.9434 -98.0479zM1600 1805.06c-41.9844 0 -77.0557 -35.0713 -77.0557 -77.0557s35.0713 -77.0557 77.0557 -77.0557s77.0557 34.9434 77.0557 77.0557
-s-35.0713 77.0557 -77.0557 77.0557zM1842.94 1168c0 -75.0078 -41.9844 -137.984 -101.889 -173.056c8.95996 -32 13.9521 -64.8965 13.9521 -98.9443c0 -274.944 -329.088 -498.048 -734.08 -498.048s-734.976 222.976 -734.976 497.023
-c0 35.9688 6.01562 70.0166 16.1279 104.064c-57.9844 34.9443 -97.0244 97.0244 -97.0244 168.96c0 110.976 89.9844 200.96 200.96 200.96c66.0488 0 124.032 -32.8955 160 -82.9443c114.944 60.9287 257.024 99.9688 411.904 105.984l92.0322 456.96
-c3.07227 14.0801 11.0078 25.9844 23.04 33.0244c12.0322 8.06348 25.9834 9.9834 39.04 7.04004l312.96 -72.0645c30.9756 52.9922 88.96 89.9844 155.008 89.9844c98.9443 0 179.072 -80 179.072 -178.944s-80 -178.944 -178.944 -178.944
-c-95.1035 0 -172.032 73.9844 -178.048 167.937l-262.016 60.0322l-77.0566 -386.049c148.992 -7.93555 285.952 -46.9756 397.057 -108.031c35.9678 51.9678 94.9756 86.0156 162.943 86.0156c109.952 0 199.937 -89.9844 199.937 -200.96z" />
- <glyph glyph-name="uniF214" unicode=""
-d="M1091.2 1920v-452.992h425.216v-281.216h-425.216v-459.52c0 -103.937 5.50391 -170.624 16.6396 -200.192c10.8799 -29.3125 31.4883 -52.8643 61.3125 -70.5283c39.6797 -23.8076 84.8633 -35.7119 135.936 -35.7119c90.624 0 180.864 29.4404 270.72 88.4482v-282.624
-c-76.6719 -35.9678 -146.048 -61.3125 -208 -75.9043c-61.9512 -14.4639 -129.023 -21.7598 -201.216 -21.7598c-81.9199 0 -154.368 10.3682 -217.344 30.9756c-62.9756 20.6084 -116.608 50.3047 -161.024 88.4482c-44.5439 38.2725 -75.2637 78.9766 -92.416 122.112
-c-17.1514 43.1357 -25.7275 105.6 -25.7275 187.52v628.736h-198.016v253.568c70.3994 22.9121 130.688 55.6797 180.863 98.4316c50.3047 42.624 90.4961 93.8242 120.832 153.856c30.3359 59.7754 51.2002 135.808 62.7207 228.352h254.72z" />
- <glyph glyph-name="uniF104" unicode=""
-d="M512 1664l1152 -640l-1152 -640v1280z" />
- <glyph glyph-name="uniF50B" unicode=""
-d="M1408 1152l-384 -384l-384 384h256v512h256v-512h256zM384 640h1280v-256h-1280v256z" />
- <glyph glyph-name="uniF409" unicode=""
-d="M1024 1664l640 -512l-128 -128v-512h-1024v512l-128 128zM1152 576v448h-256v-448h256z" />
- <glyph glyph-name="uniF458" unicode=""
-d="M1920 1024l-1024 -640v480l-768 -480v1280l768 -480v480z" />
- <glyph glyph-name="uniF218" unicode=""
-d="M1792 1152h256v-128h-256v-256h-128v256h-256v128h256v256h128v-256zM1301.5 1920l-150.528 -84.7363h-145.792c54.0166 -44.6719 167.04 -138.624 167.04 -317.439c0 -173.952 -98.8154 -256.256 -197.504 -333.952
-c-30.5918 -30.4639 -65.9199 -63.4883 -65.9199 -115.2s35.3281 -79.8721 61.1846 -101.12l84.7354 -65.792c103.424 -86.9121 197.376 -166.912 197.376 -329.216c0 -221.184 -213.888 -444.544 -618.368 -444.544c-341.119 0 -505.728 162.304 -505.728 336.384
-c0 84.6084 42.3682 204.544 181.12 286.849c145.792 89.4717 343.424 101.119 449.152 108.159c-32.8965 42.3682 -70.5283 87.04 -70.5283 159.744c0 40.1924 11.7754 63.7441 23.5518 91.7764c-25.9844 -2.04785 -51.7119 -4.6084 -75.2637 -4.6084
-c-249.216 0 -390.4 185.856 -390.4 369.28c0 108.032 49.4082 227.968 150.528 315.008c134.144 110.592 294.016 129.408 420.864 129.408h484.479zM1094.53 480.768c0 119.809 -77.5684 183.425 -256.385 310.528c-18.8154 2.30371 -30.5918 2.30371 -54.0156 2.30371
-c-21.1201 0 -148.224 -4.60742 -246.912 -37.6318c-51.8398 -18.8154 -202.368 -75.1357 -202.368 -242.304c0 -166.784 162.305 -286.848 413.952 -286.848c225.792 0 345.729 108.159 345.729 253.951zM906.496 1238.02c54.0156 54.1445 58.752 129.408 58.624 171.648
-c0 169.344 -101.12 432.768 -296.192 432.768c-61.3115 0 -127.104 -30.5918 -164.735 -77.5674c-39.9365 -49.4082 -51.7119 -112.896 -51.7119 -174.08c0 -157.568 91.6475 -418.561 294.016 -418.561c58.752 0 122.368 28.2881 160 65.792z" />
- <glyph glyph-name="uniF513" unicode=""
-d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312zM1024 807.68l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456l-118.016 358.528v-702.849z
-" />
- <glyph glyph-name="uniF301" unicode=""
-d="M704 1152h960l-256 -640h-1024v1024h384l64 -128h448v-128h-640l-128 -256h128z" />
- <glyph glyph-name="uniF474" unicode=""
-d="M128 1408v384h384zM640 768v512h768v-512h-768zM1536 1792h384v-384zM128 640l384 -384h-384v384zM1536 256l384 384v-384h-384zM1536 1408l256 384l128 -128zM1536 640l384 -256l-128 -128zM128 384l384 256l-256 -384zM128 1664l128 128l256 -384z" />
- <glyph glyph-name="uniF438" unicode=""
-d="M1280 1792c141.312 0 256 -114.688 256 -256v-1024c0 -141.312 -114.688 -256 -256 -256h-512c-141.312 0 -256 114.688 -256 256v384h128v-128h768v768h-768v-128h-128v128c0 141.312 114.688 256 256 256h512zM1024 384c70.7842 0 128 57.2158 128 128
-s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM768 896v128h-512v256h512v128l384 -256z" />
- <glyph glyph-name="uniF451" unicode=""
-d="M256 384v1280l1024 -640zM1408 1664h384v-1280h-384v1280z" />
- <glyph glyph-name="uniF404" unicode=""
-d="M1024 640c-19.8398 0 -39.04 2.43164 -57.8564 5.63184l436.225 436.225c3.2002 -18.8164 5.63184 -38.0166 5.63184 -57.8564c0 -211.968 -172.032 -384 -384 -384zM1696.26 1375.74l351.744 -351.744l-506.624 -506.624
-c-131.456 -134.272 -314.752 -217.728 -517.376 -217.728c-117.248 0 -226.944 29.3115 -324.864 79.1035l147.072 146.944c56.7041 -20.6084 115.968 -34.0479 177.92 -34.0479c144 0 279.168 56.832 380.288 160.128l372.096 372.224l-216.063 215.936zM1606.02 1722.11
-l128.641 -129.024l-1279.87 -1279.87l-128.896 128.769l128 128.128l-453.888 453.888v0l506.496 506.496c131.456 134.4 314.624 217.984 517.504 217.984c170.368 0 324.48 -61.8242 448 -160.385zM896 1024c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128
-c-70.7842 0 -128 -57.3438 -128 -128s57.2158 -128 128 -128zM1229.18 1345.28l105.729 105.728c-90.752 66.8164 -197.12 105.473 -310.912 105.473c-144.128 0 -279.168 -56.9609 -380.288 -160.385l-372.096 -372.096l318.208 -318.336l113.023 113.024
-c-38.6553 59.5195 -62.8477 129.023 -62.8477 205.312c0 212.096 172.032 384 384 384c76.2881 0 145.792 -24.1924 205.184 -62.7197z" />
- <glyph glyph-name="uniF209" unicode=""
-d="M1073.15 2048c481.664 0 798.976 -348.672 798.976 -722.944c0 -495.104 -275.328 -865.151 -680.96 -865.151c-136.32 0 -264.448 73.7275 -308.352 157.439c0 0 -73.2168 -290.943 -88.832 -347.136c-26.8809 -97.2803 -79.2324 -194.56 -127.104 -270.208
-l-148.992 54.0156c-3.58398 88.3203 -0.639648 194.049 22.0166 289.92c24.1914 102.4 162.304 687.744 162.304 687.744s-40.3203 80.6406 -40.3203 199.809c0 187.008 108.544 326.784 243.456 326.784c114.816 0 170.24 -86.1445 170.24 -189.44
-c0 -115.328 -73.7275 -288 -111.488 -448c-31.6152 -133.632 67.2002 -242.816 199.168 -242.816c239.232 0 400.128 307.072 400.128 670.977c0 276.607 -186.367 483.712 -525.184 483.712c-382.72 0 -621.312 -285.568 -621.312 -604.544
-c0 -110.08 32.5117 -187.521 83.1992 -247.424c23.5527 -27.7764 26.624 -38.9121 18.3047 -70.6562c-6.0166 -23.04 -19.9688 -78.9766 -25.7285 -101.248c-8.44824 -32 -34.3037 -43.2637 -63.2314 -31.3604c-176.257 71.6807 -258.433 264.96 -258.433 482.048
-c0 358.656 302.336 788.48 902.145 788.48z" />
- <glyph glyph-name="uniF217" unicode=""
-d="M1024 1920c494.08 0 896 -402.048 896 -896c0 -494.08 -401.92 -896 -896 -896c-493.952 0 -896 401.92 -896 896c0 493.952 402.048 896 896 896zM1112.83 1769.47c-211.2 10.4961 -420.864 -73.4717 -564.608 -220.16
-c-146.432 -144.256 -216.063 -354.176 -189.695 -551.68c23.4238 -197.248 142.592 -378.496 307.584 -476.032c160.768 -96 365.312 -104.191 530.943 -29.0557c-47.1035 -13.0557 -96.6396 -20.3516 -147.712 -20.3516c-303.487 0 -550.399 246.911 -550.399 550.399
-c0 143.872 55.6797 274.944 146.304 373.12c1.02441 1.02441 1.91992 1.91992 2.81641 2.94434c4.60742 4.73535 9.08789 9.47168 13.6953 14.208c0.512695 0.383789 0.896484 1.02344 1.4082 1.2793c128 148.353 317.056 242.177 528.256 242.177
-c221.057 0 418.176 -102.912 546.048 -263.424c-20.8633 33.5352 -44.0312 65.6631 -69.376 95.6152c-137.983 168.832 -343.68 273.408 -555.264 280.96zM1415.04 1006.21c4.35156 -90.3682 -25.3438 -182.912 -80.7676 -257.152
-c-55.5527 -73.8555 -135.169 -129.664 -225.28 -156.928c-74.8799 -22.7842 -156.544 -25.5996 -234.112 -7.04004c54.0166 -21.6318 112.896 -33.6641 174.464 -33.6641c259.968 0 471.296 211.456 471.296 471.296c0 0.768555 -0.12793 1.66406 -0.12793 2.68848
-c-13.6953 142.336 -88.1914 276.352 -200.319 359.168c-137.345 104.576 -332.288 116.864 -479.232 38.0156c-73.2158 -38.5273 -136.832 -97.1514 -176.896 -166.912c-40.5762 -69.8877 -58.4961 -151.68 -52.2246 -230.912
-c10.624 -158.976 124.8 -305.023 271.616 -345.216c146.432 -44.0322 313.344 19.584 391.936 142.849c82.5605 120.447 62.7207 293.119 -36.3516 391.68c-94.0801 104.192 -260.992 115.968 -367.872 36.8643c-54.0156 -38.6562 -92.5439 -94.3359 -105.344 -157.057
-c-13.3125 -62.0801 -1.66406 -128.64 30.4639 -181.76c32.1279 -53.7598 83.7119 -93.5684 141.952 -108.032c58.2402 -15.1035 121.6 -4.86328 171.52 25.6006c50.5605 30.4639 87.5518 80.1279 97.9199 135.68c11.3926 55.2959 -1.66406 114.432 -34.3037 158.848
-c-32.1279 45.5684 -82.8164 73.3447 -135.936 76.9287c-52.9922 4.0957 -105.856 -17.2803 -141.568 -54.2725c-36.6084 -35.9678 -52.0957 -89.0879 -44.6719 -137.855c7.55176 -48.6406 38.2715 -93.6963 80 -115.584c26.4961 -14.7207 57.4717 -19.8408 86.9121 -16.3848
-c-62.0801 1.53613 -114.177 43.2646 -131.456 100.097c-0.512695 0.767578 -1.02441 1.66406 -1.4082 2.6875c-17.9199 41.4717 -13.0557 94.3359 16.1279 133.376c28.416 38.7842 77.5684 63.3604 128.768 60.7998c51.0723 -1.66406 101.376 -33.0234 128 -78.9756
-c27.3926 -45.8242 32 -106.752 7.80859 -158.336c-24.0645 -51.7119 -73.7285 -90.2402 -131.584 -101.632c-57.4717 -12.416 -122.752 4.73535 -167.68 47.3594c-44.8008 40.96 -72.0645 104.192 -67.4561 168.32c3.83984 133.12 150.911 237.44 287.104 200.96
-c138.368 -31.6162 226.944 -196.736 173.824 -338.304c-48.6406 -142.72 -224.769 -225.536 -373.888 -166.912c-74.1123 27.5195 -134.784 85.8877 -169.729 157.568c-34.9443 72.1914 -42.2402 158.592 -17.9199 237.695c47.8721 161.664 226.176 269.185 398.848 238.464
-c175.36 -25.5996 313.217 -192.64 317.568 -374.016zM1024 207.488c319.232 0 595.968 184.319 730.112 451.712c37.248 84.7354 58.8799 175.744 58.8799 265.728c0 318.977 -247.04 554.368 -553.216 607.616c154.496 -64 279.296 -200.32 331.52 -362.496
-c70.1445 -203.136 20.8643 -447.872 -133.12 -608.896c-148.224 -162.944 -384.384 -245.633 -608.128 -206.208c-226.048 35.584 -422.912 198.271 -517.504 407.936c-97.792 209.408 -90.3682 468.224 26.8799 674.432c116.736 206.337 329.344 354.433 566.272 395.009
-c11.7754 2.17578 23.6797 3.96777 35.584 5.37598c-420.992 -32.1279 -753.664 -384.641 -753.664 -813.696c0 -450.304 366.208 -816.512 816.384 -816.512z" />
- <glyph glyph-name="uniF469" unicode=""
-d="M256 1280h1536v-768h-256v384h-1024v-384h-256v768zM1408 1664v-256h-768v256h768zM1408 640c0 -98.3037 37.5039 -196.48 112.512 -271.488l112.513 -112.512h-768l-112.513 112.512c-75.0078 75.0078 -112.512 173.185 -112.512 271.488v128h768v-128z" />
- <glyph glyph-name="uniF476" unicode=""
-d="M384 1248c123.776 0 224 -100.224 224 -224c0 -123.648 -100.224 -224 -224 -224s-224 100.352 -224 224c0 123.776 100.224 224 224 224zM1024 1248c123.648 0 224 -100.224 224 -224c0 -123.648 -100.352 -224 -224 -224c-123.776 0 -224 100.352 -224 224
-c0 123.776 100.224 224 224 224zM1664 1248c123.648 0 224 -100.224 224 -224c0 -123.648 -100.352 -224 -224 -224s-224 100.352 -224 224c0 123.776 100.352 224 224 224z" />
- <glyph glyph-name="uniF211" unicode=""
-d="M1472 1440c229.888 0 416 -186.24 416 -416s-186.112 -416 -416 -416s-416 186.24 -416 416s186.112 416 416 416zM576 1440c229.76 0 416 -186.24 416 -416s-186.24 -416 -416 -416s-416 186.24 -416 416s186.24 416 416 416z" />
- <glyph glyph-name="uniF456" unicode=""
-d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896
-l51.584 640h-281.6l51.2002 -640h178.815z" />
- <glyph glyph-name="uniF471" unicode=""
-d="M512 1664h358.656c163.328 0 281.855 -23.2959 355.712 -69.7598c73.7275 -46.4639 110.592 -120.448 110.592 -221.824c0 -68.8643 -16.1279 -125.312 -48.3838 -169.344c-32.3838 -44.1602 -75.2646 -70.6562 -128.769 -79.6162v-7.93652
-c72.96 -16.2559 125.568 -46.7197 157.952 -91.3916c32.2559 -44.6719 48.5127 -104.063 48.5127 -178.048c0 -105.088 -38.0166 -187.008 -113.921 -245.888c-76.0312 -58.8809 -178.943 -88.1924 -309.248 -88.1924h-431.104v1152zM768 1207.81h130.176
-c66.3047 0 114.176 10.2402 143.872 30.7207c29.5684 20.4795 44.5439 54.3994 44.5439 101.632c0 44.1602 -16.1279 75.7754 -48.5117 94.9756c-32.3838 19.0723 -83.4561 28.7998 -153.344 28.7998h-116.736v-256.128zM768 1013.89v-300.16h147.456
-c67.2002 0 116.864 12.9287 148.864 38.6562c32.1279 25.7285 48.1279 65.1523 48.1279 118.145c0 95.6152 -68.3525 143.487 -204.929 143.487h-139.52v-0.12793z" />
- <glyph glyph-name="uniF433" unicode=""
-d="M0 896l896 -896h-896v896z" />
- <glyph glyph-name="uniF447" unicode=""
-d="M1408 512c70.7842 0 128 -57.2158 128 -128s-57.2158 -128 -128 -128s-128 57.2158 -128 128s57.2158 128 128 128zM640 512c70.6562 0 128 -57.2158 128 -128s-57.3438 -128 -128 -128s-128 57.2158 -128 128s57.3438 128 128 128zM1536 896h-896v-128h896v-128h-1024
-v1024h-256v128h384v-256h1152z" />
- <glyph glyph-name="uniF511" unicode=""
-d="M1024 1510.53l-118.016 -358.528h-371.328l300.288 -209.92l-118.272 -353.28l307.328 218.88l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456zM1024 1920v0l210.688 -640h685.312l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496
-l212.991 636.032l-555.264 387.968h685.312z" />
- <glyph glyph-name="uniF427" unicode=""
-d="M1717.72 1436.21c99.7246 -99.7246 99.7246 -261.281 0 -361.006l-232.861 -232.989c-98.5723 -98.5723 -257.44 -99.3398 -357.421 -2.81543l-455.353 -455.354h-288.036v287.908l455.097 454.969l-0.767578 0.768555c-99.5967 99.5957 -99.5967 261.408 0 361.005
-l232.989 232.989c99.5957 99.7246 261.408 99.7246 361.005 0zM1344.04 1104.01l160.02 160.021l-256.031 256.031l-160.021 -160.02z" />
- <glyph glyph-name="uniF219" unicode=""
-d="M1438.08 1832.7c0 0 563.456 -229.376 370.176 -838.4c-267.264 -554.496 -784.64 -349.056 -784.64 -349.056v-277.504s-19.7119 -153.344 -202.88 -220.288c-183.296 -66.6885 -351.616 59.5195 -351.616 59.5195v279.809
-c83.584 -85.5039 195.712 -134.272 240.128 -9.98438v945.92h311.68v-537.472s460.416 -138.496 522.368 289.792c9.85645 475.392 -546.944 472.832 -546.944 472.832s-349.184 22.2715 -522.495 -257.536c-131.2 -222.848 37.1191 -423.424 37.1191 -423.424
-l-225.279 -200.448s-339.2 418.433 -7.42383 871.552c430.848 487.681 1159.81 194.688 1159.81 194.688z" />
- <glyph glyph-name="uniF100" unicode=""
-d="M512 1408h1024v-128h-1024v128zM1152 1152v-128h-640v128h640zM1280 1024v128h256v-128h-256zM896 768v128h640v-128h-640zM768 896v-128h-256v128h256zM512 512v128h768v-128h-768z" />
- <glyph glyph-name="uniF400" unicode=""
-d="M1792 384l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM384 1216c0 -247.424 200.576 -448 448 -448
-c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448z" />
- <glyph glyph-name="uniF439" unicode=""
-d="M896 1664v-384h-256v384c0 70.7842 57.3438 128 128 128s128 -57.2158 128 -128zM1408 1664v-384h-256v384c0 70.7842 57.2158 128 128 128s128 -57.2158 128 -128zM384 1152h1280c0 -309.632 -219.904 -567.68 -512 -627.072v-268.928h-256v268.928
-c-292.096 59.2646 -512 317.44 -512 627.072z" />
- <glyph glyph-name="uniF509" unicode=""
-d="M1534.21 717.824l147.712 -88.5762c-134.4 -223.36 -378.24 -373.248 -657.92 -373.248c-279.552 0 -523.52 149.888 -657.92 373.248l147.712 88.7041c92.1602 -98.1758 226.816 -168.96 382.208 -194.688v500.736h-128v128h128v163.456
-c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256c0 -94.4639 -51.7119 -176.128 -128 -220.544v-163.456h128v-128h-128v-500.864c155.52 25.7285 289.92 96.3838 382.208 194.688zM1024 1664
-c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128c70.7842 0 128 57.3438 128 128s-57.2158 128 -128 128z" />
- <glyph glyph-name="uniF510" unicode=""
-d="M1664 1152v-256h-512v-512h-256v512h-512v256h512v512h256v-512h512z" />
- <glyph glyph-name="uniF445" unicode=""
-d="M1888 748.032l-57.5996 -139.648l-305.408 21.8887c-31.3604 -39.9365 -66.9443 -75.6484 -106.88 -107.009l21.7598 -305.536l-139.264 -57.5996l-200.704 231.552c-25.2158 -3.07129 -49.9199 -7.67969 -75.9043 -7.67969c-25.7275 0 -50.1758 4.6084 -75.1357 7.67969
-l-200.96 -231.808l-139.393 57.7275l21.7607 305.408c-39.9365 31.3604 -75.5205 66.9443 -107.009 106.88l-305.536 -21.7598l-57.7275 139.264l231.68 200.832c-3.07129 25.0879 -7.67969 49.792 -7.67969 75.7764c0 25.7275 4.6084 50.1758 7.55176 75.1357
-l-231.552 200.96l57.7275 139.393l305.28 -21.7607c31.4883 39.9365 67.2002 75.7764 107.265 107.265l-21.7607 305.408l139.137 57.5996l200.96 -231.68c24.96 2.94336 49.5352 7.67969 75.3916 7.67969s50.4316 -4.73633 75.3916 -7.67969l200.96 231.68
-l139.265 -57.5996l-21.8887 -305.408c39.9365 -31.3604 75.6484 -67.0723 107.137 -107.008l305.408 21.6318l57.5996 -139.136l-231.552 -200.832c3.07129 -25.0889 7.67969 -49.6641 7.67969 -75.6484c0 -25.7275 -4.6084 -50.3037 -7.67969 -75.2637zM1280 1024
-c0 141.312 -114.688 256 -256 256s-256 -114.688 -256 -256s114.688 -256 256 -256s256 114.688 256 256z" />
- <glyph glyph-name="uniF516" unicode=""
-d="M1024 1452.42v-467.328h-155.776v467.328h155.776zM1408 1452.42v-467.328h-155.776v467.328h155.776zM323.2 1920h1596.8v-1090.82l-467.456 -445.184h-350.464l-233.6 -256h-228.48v256h-512v1224.32zM1764.22 907.136v857.088h-1285.5v-1129.73h350.977v-211.328
-l233.472 211.328h428.16z" />
- <glyph glyph-name="uniF435" unicode=""
-d="M384 512l640 640l640 -640h-1280zM384 1408h1280v-128h-1280v128z" />
- <glyph glyph-name="uniF300" unicode=""
-d="M1536 1536c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-448l-448 -448v448h-128c-141.312 0 -256 114.688 -256 256v384c0 141.312 114.688 256 256 256h1024z" />
- <glyph glyph-name="uniF514" unicode=""
-d="M1664 768v128l256 -256l-256 -256v128h-256c-282.752 0 -512 229.248 -512 512c0 141.312 -114.688 256 -256 256h-384v256h384c282.752 0 512 -229.248 512 -512c0 -141.312 114.688 -256 256 -256h256zM1408 1280c-61.8242 0 -117.888 -22.9121 -162.176 -59.3916
-c-27.3926 83.9678 -70.7842 160 -128 224.768c82.5596 56.96 182.271 90.624 290.176 90.624h256v128l256 -256l-256 -256v128h-256zM640 768c61.8242 0 117.888 22.9121 162.176 59.3916c27.3926 -83.9678 70.7842 -160 128 -224.768
-c-82.5596 -56.832 -182.271 -90.624 -290.176 -90.624h-384v256h384z" />
- <glyph glyph-name="uniF102" unicode=""
-d="M1408 1408l512 -128v-896h-1792v896l512 128l128 256h512zM1024 512.256c247.552 0 448 200.448 448 448c0 247.424 -200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448c0 -247.552 200.576 -448 448 -448zM512 1600v-96.1279l-256 -64v160.128h256z
-M1024 1280.13c176.768 0 320 -143.231 320 -320c0 -176.768 -143.232 -320 -320 -320s-320 143.232 -320 320c0 176.769 143.232 320 320 320z" />
- <glyph glyph-name="uniF466" unicode=""
-d="M640 1344l-320 -320l320 -320v-320l-640 640l640 640v-320zM1408 1280c282.752 0 512 -229.248 512 -512v-299.904l-150.016 149.889c-99.9688 99.9678 -231.04 150.016 -361.984 150.016h-256v-384l-640 640l640 640v-384h256z" />
- <glyph glyph-name="uniF463" unicode=""
-d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
-M1920 640v128h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
- <glyph glyph-name="uniF422" unicode=""
-d="M384 1536h1152v-1024h-1152v1024zM1408 640v640h-896v-640h896z" />
- <glyph glyph-name="uniF201" unicode=""
-d="M1024 128c128 0 256 32 368 80c-16 144 -64 368 -208 688c-288 -96 -560 -304 -704 -576c144 -128 336 -192 544 -192zM1536 288c208 144 352 384 384 640c-192 32 -368 32 -576 0c16 -32 128 -304 192 -640zM128 1088v-64c0 -224 80 -432 224 -592
-c176 288 496 496 784 592c-16 48 -48 112 -80 176c-368 -112 -592 -144 -928 -112zM1760 1536c-160 -128 -368 -192 -560 -288c48 -64 64 -112 96 -176c208 48 480 32 624 0c-16 176 -64 336 -160 464zM672 1856c-256 -112 -448 -336 -512 -624c288 -32 688 48 832 96
-c-96 192 -192 352 -320 528zM1024 1920c-64 0 -128 -16 -192 -16c128 -208 192 -320 304 -512c128 48 384 128 528 256c-160 160 -384 272 -640 272zM1024 2048c560 0 1024 -464 1024 -1024s-464 -1024 -1024 -1024s-1024 464 -1024 1024s464 1024 1024 1024z" />
- <glyph glyph-name="uniF426" unicode=""
-d="M1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.52832c-4.35254 20.8643 -6.52832 41.9844 -6.52832 64c0 176.768 143.232 320 320 320
-c89.3438 0 169.984 -36.8643 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
- <glyph glyph-name="uniF446" unicode=""
-d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM1536 1024c0 282.752 -229.248 512 -512 512c-94.8477 0 -182.528 -27.5195 -258.688 -72.4482l698.368 -698.24
-c44.8008 76.1602 72.3203 163.969 72.3203 258.688zM512 1024c0 -282.752 229.248 -512 512 -512c94.7197 0 182.4 27.5195 258.56 72.3203l-698.239 698.239c-44.8008 -76.1592 -72.3203 -163.84 -72.3203 -258.56z" />
- <glyph glyph-name="uniF504" unicode=""
-d="M1664 1536c0 -94.4639 -51.7119 -176.128 -128 -220.544v-163.456c0 -282.752 -229.248 -512 -512 -512c-141.312 0 -256 -114.688 -256 -256v-128h-256v1059.46c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256
-c0 -94.4639 -51.8398 -176.128 -128 -220.544v-490.496c75.5195 44.0322 162.304 71.04 256 71.04c141.312 0 256 114.688 256 256v163.456c-76.2881 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256zM640 1664
-c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM1408 1408c70.7842 0 128 57.3438 128 128s-57.2158 128 -128 128s-128 -57.3438 -128 -128s57.2158 -128 128 -128z" />
- <glyph glyph-name="uniF465" unicode=""
-d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
-M1531.52 384l452.48 452.48l-90.4961 90.4951l-361.984 -361.983l-180.991 180.992l-90.4961 -90.4961z" />
- <glyph glyph-name="uniF424" unicode=""
-d="M1408 1792l384 -384v-768l-384 -384h-768l-384 384v768l384 384h768zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896l51.584 640h-281.6l51.2002 -640h178.815z" />
- <glyph glyph-name="uniF418" unicode=""
-d="M1408 1504l128 -96l-512 -768h-128l-288 416l128 128l224 -192z" />
- <glyph glyph-name="uniF429" unicode=""
-d="M1024 1453.31l493.312 -493.312l-493.312 -493.312l-86.6562 86.6553l342.656 342.656h-896v128h896l-342.656 342.656z" />
- <glyph glyph-name="uniF308" unicode=""
-d="M477.696 568.192l543.104 543.104l90.3682 -90.624l-542.976 -542.976c-100.225 -100.353 -152.32 -115.84 -226.305 -135.809c20.0967 74.1123 35.584 126.08 135.809 226.305zM1189.5 1732.61l180.992 180.991l542.976 -543.104l-180.991 -180.992
-c-50.0488 50.0479 -130.944 50.0479 -180.992 0l-180.992 -180.992c-50.0479 -50.0479 -50.0479 -130.943 0 -180.992l-180.992 -180.991l-543.104 542.976l180.991 180.992c50.0488 -50.0479 131.072 -50.0479 181.12 0l180.992 181.12
-c50.0479 50.0479 50.0479 130.943 0 180.992z" />
- <glyph glyph-name="uniF226" unicode=""
-d="M1477.76 1792c120.32 0 152.576 -68.6084 126.464 -195.584l-51.8398 -258.688c-40.96 -206.848 -88.0635 -445.695 -94.0801 -470.144c-11.0078 -44.1602 -27.9033 -119.168 -132.992 -119.168h-250.367c-9.98438 0 -9.98438 0 -20.0967 -10.1123
-c-6.65527 -6.65527 -393.344 -455.424 -393.344 -455.424c-30.208 -34.6875 -80.3838 -28.5439 -98.6875 -21.1201c-18.3047 7.2959 -50.6885 29.6963 -50.6885 89.9844v1301.63s33.2803 138.624 146.304 138.624h819.328zM1394.94 1391.1l34.3037 179.2
-c6.27148 29.6963 -16.3838 52.4805 -40.5762 52.4805h-657.536c-29.8242 0 -49.792 -26.8799 -49.792 -49.792v-1015.68c0 -3.19922 2.43262 -3.83984 4.86426 -1.15137c0 0 242.304 290.815 269.184 324.352c26.8809 33.4082 39.168 38.6562 79.3604 38.6562h221.184
-c30.208 0 47.2324 25.3438 50.3047 40.1924c3.2002 14.8477 28.9277 149.12 34.4316 176.256s-19.3281 54.9121 -44.7998 54.9121h-270.976c-35.9688 0 -61.8242 25.4717 -61.8242 61.3115v39.04c0 35.9678 25.7275 60.416 61.5674 60.416h319.232
-s46.9756 20.4805 51.0723 39.8076z" />
- <glyph glyph-name="uniF205" unicode=""
-d="M1024 1920c493.952 0 896 -401.92 896 -896c0 -493.952 -402.048 -896 -896 -896c-494.08 0 -896 402.048 -896 896c0 494.08 401.92 896 896 896zM218.496 1024c0 -318.848 185.216 -594.432 454.016 -724.992l-384.256 1052.93
-c-44.6719 -100.224 -69.7598 -211.071 -69.7598 -327.936zM1024 218.496c93.8242 0 183.808 16.1279 267.648 45.5684c-2.17676 3.45508 -4.09668 7.16797 -5.76074 11.2637l-247.552 678.271l-241.92 -702.336c72.1924 -21.248 148.48 -32.7676 227.584 -32.7676z
-M1134.98 1401.73l291.072 -866.176l80.3838 268.544c34.9443 111.488 61.3125 191.488 61.3125 260.48c0 99.584 -35.8398 168.576 -66.4326 222.08c-40.7031 66.4316 -78.9756 122.624 -78.9756 189.056c0 74.1123 56.1924 142.977 135.168 142.977
-c3.58398 0 7.04004 -0.384766 10.4961 -0.640625c-143.36 131.328 -334.208 211.456 -544 211.456c-281.472 0 -529.024 -144.256 -673.024 -363.008c18.9443 -0.639648 36.7363 -0.896484 51.8408 -0.896484c84.2236 0 214.655 10.2402 214.655 10.2402
-c43.3926 2.56055 48.5127 -61.3115 5.24805 -66.4316c0 0 -43.7754 -5.12012 -92.1602 -7.68066l293.12 -872.575l176.256 528.64l-125.439 343.936c-43.3926 2.56055 -84.4805 7.68066 -84.4805 7.68066c-43.2637 2.55957 -38.2715 68.9922 5.12012 66.4316
-c0 0 132.992 -10.2402 212.225 -10.2402c84.2236 0 214.783 10.2402 214.783 10.2402c43.3926 2.56055 48.5127 -61.3115 5.12012 -66.4316c0 0 -43.6475 -5.12012 -92.2881 -7.68066zM1730.82 1410.56c3.58398 -25.7275 5.50391 -53.248 5.63184 -82.8154
-c0 -81.792 -15.4883 -173.696 -61.3125 -288.512l-246.144 -711.425c239.488 139.521 400.512 399.104 400.512 696.192c0 140.16 -35.8398 271.872 -98.6875 386.56z" />
- <glyph glyph-name="uniF472" unicode=""
-d="M1368.06 1408h-128l-240.129 -768h128l-39.9355 -128h-448l39.9355 128h128l240.129 768h-128l39.9355 128h448z" />
- <glyph glyph-name="uniF216" unicode=""
-d="M1791.62 1265.92c0.383789 -2.94434 0.639648 -5.75977 0.639648 -8.7041v-466.943c0 -2.94434 -0.255859 -5.76074 -0.511719 -8.96094c-0.12793 -0.767578 -0.383789 -1.79199 -0.511719 -2.81543c-0.384766 -1.79199 -0.640625 -3.58398 -1.15234 -5.50391
-c-0.255859 -1.02441 -0.768555 -2.04785 -1.02441 -3.07227c-0.639648 -1.66406 -1.15137 -3.2002 -1.79199 -4.86426c-0.511719 -1.02344 -1.02344 -2.04785 -1.53613 -3.07129c-0.639648 -1.53613 -1.40723 -2.94434 -2.30371 -4.48047
-c-0.511719 -0.895508 -1.28027 -1.91992 -1.91992 -2.94434c-0.767578 -1.2793 -1.66406 -2.55957 -2.6875 -3.96777c-0.768555 -0.895508 -1.53613 -1.79199 -2.30469 -2.81543c-1.02344 -1.02441 -2.04785 -2.30469 -3.32812 -3.45605
-c-0.767578 -0.896484 -1.66406 -1.79199 -2.6875 -2.68848c-1.02441 -0.895508 -2.30371 -2.04785 -3.71191 -3.07227c-0.768555 -0.767578 -1.79199 -1.53516 -2.81641 -2.30371l-1.15137 -0.767578l-702.208 -467.072
-c-11.1367 -7.42383 -23.8086 -11.0078 -36.6084 -11.0078s-25.4717 3.58398 -36.7363 11.2637l-702.208 467.072c-0.255859 0.255859 -0.639648 0.511719 -1.02344 0.767578l-2.94434 2.30469c-1.28027 0.895508 -2.55957 2.04785 -3.71191 3.07129
-c-0.895508 0.896484 -1.79199 1.79199 -2.6875 2.68848c-1.02441 1.02344 -2.17676 2.30371 -3.2002 3.45605c-0.768555 0.895508 -1.53613 1.79199 -2.30469 2.81543c-0.895508 1.28027 -1.79199 2.56055 -2.6875 3.96875
-c-0.768555 0.895508 -1.4082 1.91992 -1.91992 2.94336c-0.896484 1.53613 -1.66406 2.94434 -2.30371 4.48047c-0.512695 0.895508 -1.02441 1.91992 -1.53613 3.07129c-0.640625 1.66406 -1.15234 3.2002 -1.66406 4.86426
-c-0.383789 0.896484 -0.768555 1.91992 -1.02441 3.07227c-0.511719 1.91992 -0.767578 3.71191 -1.15137 5.50391c-0.128906 1.02441 -0.384766 2.04785 -0.512695 2.94434c-0.383789 2.81543 -0.639648 5.75977 -0.639648 8.57617v466.943
-c0 2.94434 0.255859 5.75977 0.639648 8.7041c0.12793 0.896484 0.383789 1.79199 0.512695 2.81641c0.383789 1.91992 0.639648 3.71191 1.15137 5.50391c0.255859 1.15137 0.640625 2.17578 1.02441 3.2002c0.511719 1.53516 1.02344 3.19922 1.66406 4.86328
-c0.511719 1.02441 1.02344 2.04785 1.53613 3.2002c0.639648 1.53613 1.40723 2.81641 2.30371 4.48047c0.639648 0.895508 1.28027 1.91992 1.91992 2.94336c0.767578 1.28027 1.79199 2.68848 2.6875 3.96875c0.640625 1.02344 1.4082 1.79199 2.30469 2.81543
-c1.02344 1.28027 2.04785 2.43164 3.2002 3.58398c0.895508 0.768555 1.79199 1.66406 2.6875 2.68848c1.15234 1.02344 2.43164 2.04785 3.71191 3.07129l2.94434 2.17676c0.383789 0.255859 0.767578 0.639648 1.15137 0.895508l702.208 466.944
-c22.1445 14.7197 51.0723 14.7197 73.2168 0l702.08 -467.2c0.383789 -0.255859 0.767578 -0.639648 1.15137 -0.896484c0.896484 -0.767578 1.91992 -1.53516 2.81641 -2.30371c1.2793 -0.895508 2.55957 -1.91992 3.71191 -3.07227
-c1.02344 -0.895508 1.91992 -1.79199 2.6875 -2.6875c1.15234 -1.02441 2.17676 -2.17578 3.32812 -3.45605c0.768555 -0.896484 1.53613 -1.79199 2.30469 -2.81641c0.895508 -1.2793 1.79199 -2.55957 2.6875 -3.96777
-c0.639648 -0.895508 1.4082 -1.91992 1.91992 -2.94434c0.896484 -1.53516 1.66406 -2.81543 2.30371 -4.35156c0.512695 -1.02441 1.02441 -2.04785 1.53613 -3.2002c0.640625 -1.66406 1.15234 -3.2002 1.79199 -4.73535
-c0.255859 -1.02441 0.768555 -2.04883 1.02441 -3.2002c0.511719 -1.79199 0.767578 -3.58398 1.15137 -5.50391c0.128906 -0.896484 0.384766 -1.79199 0.512695 -2.81641zM1090.05 1601.28v-307.328l286.208 -190.977l231.168 154.24zM957.952 1601.28l-517.248 -344.064
-l231.04 -154.24l286.208 191.104v307.2zM387.84 1133.95v-220.416l165.12 110.208zM957.952 446.208v307.328l-286.208 190.976l-231.04 -154.111zM1024 867.84l233.472 155.904l-233.472 155.904l-233.472 -155.904zM1090.05 446.208l517.376 344.064l-231.168 154.111
-l-286.208 -190.976v-307.2zM1660.29 913.536v220.416l-165.248 -110.208z" />
- <glyph glyph-name="uniF475" unicode=""
-d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM476.16 1340.54l-2.81641 3.96777c-4.60742 -7.93555 -8.83203 -16.1279 -13.1836 -24.3193l4.47949 1.02344l17.5361 6.27246l30.208 2.6875zM1024 384
-c265.088 0 493.056 162.176 590.208 392.576l-6.52832 10.4961l14.9766 50.8154l-34.6885 25.2158l-25.3438 7.55273l-23.5518 19.8398l-55.8086 -21.1201l-52.7354 -3.07227l-39.9365 29.0566l-39.04 53.5039l-0.767578 32.5117l0.895508 54.2725l5.63184 7.55176
-l4.86426 18.1758l22.7842 35.0723l13.3125 13.0557l18.6875 20.7363l13.0557 25.5996l36.8643 34.9443l37.7598 -0.383789l27.6484 9.59961l66.4316 7.16797l25.9844 -36.8643l24.1924 -10.4961c-8.44824 39.4248 -20.2246 77.6963 -35.585 114.049l-5.50391 5.11914
-l-13.4395 -6.65527l-28.9277 -2.68848l-23.8086 -21.248l-25.9834 -35.0723l-50.6885 -11.6475l-23.5518 9.21582l2.6875 40.5762l13.3125 25.2158l46.4639 -2.6875l8.57617 21.8877l-24.0645 26.624l20.6084 8.32031l40.4482 22.0156l14.4639 11.6484
-c-49.1523 77.6953 -113.664 144.256 -190.721 194.688l-4.35156 -1.79199l20.3516 -17.792l-32.8955 5.24805l-4.6084 -9.34375l21.248 -2.56055l-7.93555 -8.95996l-59.9043 -10.3682l-77.3115 -34.3037l-59.9043 -28.9277l-6.27246 59.6475l16.8965 32.6406
-l-12.416 21.7598l-45.9521 19.4561l-22.1436 17.1523l32.1279 7.67969l69.1201 16.8955l29.8232 1.66406c-64.7676 22.1445 -132.991 36.7363 -205.056 36.7363c-146.56 0 -280.064 -51.4561 -388.096 -134.656l38.2715 1.15234l47.7441 -12.2881l32 -8.19238
-l34.8164 7.80859l47.6152 -6.0166l29.9521 7.2959l5.63184 18.0488l28.1602 -2.94434l11.0078 -22.7842l47.6162 4.35254l-74.752 -24.7041l-36.0957 -20.8643l-55.168 -42.2402l13.6963 -14.9756l38.3994 -18.0479l27.3926 -28.0322l33.6641 34.4316l19.4551 37.8887
-l33.0244 22.6553l33.0244 -16.7676l9.08789 -18.4316l28.9277 10.2393l10.2402 -55.168l20.4795 -20.0957l-74.752 -19.0723l-54.7842 -21.5039l42.752 11.7764l-5.24707 -17.1523l13.5674 -15.3604l11.2646 -7.16797l-45.9521 -18.6875l16.1279 18.8154l-25.9844 -5.63184
-l-31.2314 -14.8477l-14.208 -16.5117l-34.9443 -19.3281l-25.6006 -20.2246l-9.72754 -23.4238l-32.7676 -26.752l-25.8564 -59.3916l-8.06348 -25.7285l-23.6807 47.4883l-46.208 -0.12793l-38.3994 0.255859l-49.2803 -39.6797l-6.52832 -43.5205l29.6963 -32.3838
-l57.2158 30.7197l-14.8477 -43.5195l-40.4482 -26.1123l-39.2959 9.47266l-43.5205 18.1758l-49.9199 79.1035l-22.1436 47.2324l-5.24805 16.2559l7.42383 -66.0479l-0.639648 -17.1523l-8.19238 10.2402l-4.99219 16.6396l-9.9834 12.416l-5.12012 22.9121
-l-0.255859 35.9678l-26.752 46.3359c-17.4082 -58.1113 -29.5684 -118.399 -29.5684 -182.144c0 -295.936 202.88 -543.232 476.16 -616.192l-4.0957 12.6729l-9.60059 137.6l-11.1357 62.8477l-67.3281 65.792l-31.7441 56.3203l-10.624 27.9043l7.67969 16.5117
-l14.0801 52.9922l7.55273 61.6953l-8.32031 4.73633l-14.9756 -10.8799l-19.9688 9.34375l13.4404 6.27246l59.9043 13.8242l39.4238 17.6631l-2.43262 -26.752l14.5928 24.1924l19.7119 -6.91211l67.7119 -21.6318l48.5117 -33.6641l34.9443 -19.3281l8.31934 -5.50391
-l-8.19141 -48.7676l33.4082 9.47168l-8.32031 -16.6396l47.3604 -10.1123l48 -3.96777l31.3594 -19.7119l1.28027 -57.3447l-22.7842 -65.4072l-27.6475 -68.0967l-50.1768 -30.8477l-39.9355 -90.8799l-36.0957 5.12012l17.1514 -23.4238l-1.91992 -16.5127
-l-33.2803 -26.4961c19.4561 -1.79199 38.1445 -5.8877 57.9844 -5.8877z" />
- <glyph glyph-name="uniF432" unicode=""
-d="M1408 640l-448 448l-448 -448l-128 128l576 576l576 -576z" />
- <glyph glyph-name="uniF210" unicode=""
-d="M1024 2048c565.632 0 1024 -458.496 1024 -1024c0 -565.632 -458.368 -1024 -1024 -1024c-100.864 0 -198.016 14.7197 -290.176 42.1123c38.7842 61.4395 81.2793 140.288 103.04 219.264c12.6719 45.5684 72.0635 281.6 72.0635 281.6
-c35.7119 -67.9678 139.648 -127.743 250.24 -127.743c329.088 0 552.448 300.159 552.448 701.823c0 303.744 -257.28 586.624 -648.192 586.624c-486.527 0 -731.904 -348.8 -731.904 -639.744c0 -176.128 66.5605 -332.928 209.664 -391.168
-c23.4248 -9.59961 44.416 -0.511719 51.2002 25.4727c4.73633 18.0479 16 63.4873 20.9922 82.1758c6.78418 25.7275 4.0957 34.6875 -14.8477 57.2158c-41.0879 48.6406 -67.4561 111.488 -67.4561 200.704c0 258.816 193.536 490.496 504.063 490.496
-c274.944 0 426.112 -168.064 426.112 -392.448c0 -295.296 -130.432 -544.384 -324.608 -544.384c-107.136 0 -187.264 88.5762 -161.664 197.12c30.7207 129.664 90.4961 269.824 90.4961 363.392c0 83.8398 -44.9277 153.729 -138.111 153.729
-c-109.44 0 -197.504 -113.28 -197.504 -265.088c0 -96.6406 32.7676 -162.049 32.7676 -162.049s-112.128 -474.88 -131.712 -557.951c-18.4316 -77.8242 -20.7363 -163.456 -17.9199 -235.137c-360.832 158.336 -612.992 518.784 -612.992 937.984
-c0 565.504 458.496 1024 1024 1024z" />
- <glyph glyph-name="uniF437" unicode=""
-d="M1280 1792c141.312 0 256 -114.688 256 -256v-1024c0 -141.312 -114.688 -256 -256 -256h-512c-141.312 0 -256 114.688 -256 256v1024c0 141.312 114.688 256 256 256h512zM1024 384c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
-c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1408 768v768h-768v-768h768z" />
- <glyph glyph-name="uniF468" unicode=""
-d="M256 256v1536h256v-1536h-256zM1536 1664h256v-768h-256c-256 0 -256 128 -512 128s-256 -128 -384 -128v768c128 0 128 128 384 128s256 -128 512 -128z" />
- <glyph glyph-name="uniF107" unicode=""
-d="M1088 1792c176.768 0 320 -143.232 320 -320v-384c0 -131.2 -78.9756 -243.584 -192 -292.992v150.912c39.04 35.2002 64 85.6318 64 142.08v384c0 105.856 -86.1436 192 -192 192s-192 -86.1436 -192 -192v-384c0 -56.4482 24.96 -106.88 64 -142.08v-150.912
-c-112.896 49.4082 -192 161.792 -192 292.992v384c0 176.768 143.232 320 320 320zM960 1380.99c112.896 -49.4082 192 -161.792 192 -292.992v-384c0 -176.768 -143.232 -320 -320 -320s-320 143.232 -320 320v384c0 131.2 79.1035 243.584 192 292.992v-150.912
-c-39.04 -35.2002 -64 -85.6318 -64 -142.08v-384c0 -105.856 86.1436 -192 192 -192s192 86.1436 192 192v384c0 56.4482 -24.96 106.88 -64 142.08v150.912z" />
- <glyph glyph-name="uniF442" unicode=""
-d="M1280 640v256l128 128v-512h-896v896h512l-128 -128h-256v-640h640zM1024 1664h640v-640h-128v421.504l-549.504 -549.504l-90.4961 90.4961l549.504 549.504h-421.504v128z" />
- <glyph glyph-name="uniF221" unicode=""
-d="M1664 1024c0 -55.9355 -35.9678 -102.912 -85.8877 -120.32c13.8232 -20.6074 21.8877 -45.0557 21.8877 -71.6797c0 -55.8076 -35.9678 -102.784 -85.8877 -120.32c13.8232 -20.6074 21.8877 -45.0557 21.8877 -71.6797c0 -70.6562 -57.3438 -128 -128 -128h-64
-c70.6562 0 128 -57.3438 128 -128s-57.3438 -128 -128 -128h-448c-192 0 -256 128 -384 128h-128v640h192c128 0 320 256 320 640c0 0 0 128 64 128s192 -144 192 -320c0 -192 -32 -320 -32 -320h416c70.6562 0 128 -57.3438 128 -128z" />
- <glyph glyph-name="uniF50A" unicode=""
-d="M1856 1024c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64h-204.928c-9.85645 -48.7676 -26.624 -94.5918 -46.8486 -138.624c116.608 -134.528 187.776 -309.376 187.776 -501.376v-64c0 -35.2002 -28.6719 -64 -64 -64s-64 28.7998 -64 64v64
-c0 144.896 -48.7676 277.888 -130.048 385.152c-116.736 -155.265 -300.672 -257.152 -509.952 -257.152c-208.768 0 -392.448 101.504 -509.312 256.128c-81.2803 -106.88 -130.688 -239.231 -130.688 -384.128v-64c0 -35.2002 -28.6719 -64 -64 -64s-64 28.7998 -64 64v64
-c0 192 71.2959 366.72 187.904 501.376c-20.3525 44.0322 -36.9922 89.8564 -46.9766 138.624h-204.928c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h192c0 61.6963 12.1602 119.936 29.0557 176c-98.1758 129.024 -157.056 289.408 -157.056 464v64
-c0 35.3281 28.6719 64 64 64s64 -28.6719 64 -64v-64c0 -353.408 286.592 -640 640 -640c353.536 0 640 286.592 640 640v64c0 35.3281 28.6719 64 64 64s64 -28.6719 64 -64v-64c0 -173.952 -58.4961 -333.824 -156.032 -462.592
-c17.2803 -56.3203 28.0322 -115.328 28.0322 -177.408h192zM1024 1152c-208.896 0 -388.352 126.08 -467.84 305.92c116.864 126.08 282.496 206.08 467.84 206.08c185.472 0 350.976 -80 467.84 -206.08c-79.4883 -179.84 -258.815 -305.92 -467.84 -305.92z" />
- <glyph glyph-name="uniF455" unicode=""
-d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 1536c-70.7842 0 -128 -57.3438 -128 -128s57.2158 -128 128 -128c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128zM1280 512
-v128h-160v512h-320.128v-128h128.128v-384h-160v-128h512z" />
- <glyph glyph-name="uniF223" unicode=""
-d="M1105.28 1232.51v92.9287c0 44.1592 -36.4805 79.8711 -81.2803 79.8711s-81.2803 -35.7119 -81.2803 -79.8711l-0.383789 -481.024c-2.55957 -184.192 -155.008 -332.416 -342.912 -332.416c-189.696 0 -343.424 150.912 -343.424 337.28v209.151h262.784v-206.592
-c0 -43.9043 36.3516 -79.7441 81.2803 -79.7441c44.9277 0 81.2793 35.7119 81.2793 79.7441v487.168c6.65625 180.48 157.185 324.992 342.656 324.992c186.112 0 337.152 -145.536 342.656 -327.04v-106.624l-156.416 -45.8242zM1529.22 1058.43h262.784v-209.151
-c0 -186.368 -153.728 -337.28 -343.424 -337.28c-188.544 0 -341.632 149.376 -343.296 334.08v210.304l104.96 -48l156.288 45.8242v-211.84c0 -44.2881 36.3516 -80 81.4072 -80c44.9287 0 81.2803 35.7119 81.2803 80v216.063z" />
- <glyph glyph-name="uniF212" unicode=""
-d="M1658.75 1791.87c184.192 -5.37598 270.976 -123.776 260.352 -355.072c-7.93555 -172.928 -129.792 -409.472 -365.439 -710.016c-243.584 -313.729 -449.792 -470.784 -618.368 -470.784c-104.448 0 -192.896 95.6162 -264.96 286.72
-c-48.2559 175.232 -96.5117 350.336 -144.64 525.568c-53.6318 190.976 -111.232 286.592 -172.672 286.592c-13.4404 0 -60.416 -27.7764 -140.673 -83.584l-84.3516 107.648c88.4482 77.0557 175.616 154.111 261.504 231.168
-c117.888 100.991 206.464 154.111 265.472 159.487c139.521 13.3125 225.28 -81.2793 257.536 -283.392c34.8164 -218.24 58.8799 -353.92 72.4482 -407.04c40.1924 -180.992 84.4805 -271.36 132.736 -271.36c37.5039 0 93.8232 58.752 169.088 176.128
-c75.0078 117.376 115.2 206.849 120.576 268.16c10.624 101.376 -29.4404 152.192 -120.576 152.192c-43.0078 0 -87.2959 -9.98438 -132.736 -29.1846c88.0645 285.952 256.512 424.704 504.704 416.769z" />
- <glyph glyph-name="uniF206" unicode=""
-d="M571.904 570.112c-36.4805 0 -71.6807 -1.02441 -110.208 -1.02441c-127.36 0 -240.513 -32 -333.696 -83.3281v484.864c78.0801 -78.208 189.696 -126.208 329.984 -126.336c20.2236 0 39.6797 1.02344 58.8799 2.43164
-c-18.8164 -35.9678 -32.2559 -76.1602 -32.2559 -118.271c0 -70.9121 39.04 -111.36 87.2959 -158.336zM575.232 937.088c-163.584 4.86426 -319.104 155.008 -347.265 369.792c-28.2881 214.912 81.4082 379.264 244.992 374.4
-c163.584 -4.86426 303.488 -181.12 331.648 -396.032c28.2881 -214.784 -65.9199 -353.024 -229.376 -348.16zM965.504 217.856c4.99219 -21.248 7.80762 -43.1367 7.80762 -65.5361c0 -8.19238 -0.639648 -16.2559 -1.02344 -24.3203h-588.288
-c-115.328 0 -211.712 76.7998 -243.712 181.504c74.8799 110.72 228.224 189.824 401.408 187.904c56.832 -0.640625 109.823 -9.72852 157.952 -25.3438c132.352 -91.9043 238.976 -149.376 265.855 -254.208zM1920 1536h-256v256h-128v-256h-256v-128h256v-256h128v256
-h256v-1024.13c0 -141.312 -114.688 -256 -256 -256h-506.624c2.55957 16.7676 4.22363 33.5361 4.22363 50.3037c0 183.937 -39.6797 276.48 -235.647 423.424c-56.1924 42.2402 -178.688 128.769 -178.688 186.881c0 67.9678 19.4561 101.632 121.856 181.504
-c104.96 82.0479 179.328 190.208 179.328 324.352c0 146.176 -59.7764 278.912 -172.16 343.296h159.36l135.68 142.464h-606.977c-174.336 0 -332.159 -72.832 -436.352 -181.376v65.2803c0 141.312 114.688 256 256 256h1280c141.312 0 256 -114.688 256 -256v-128z" />
- <glyph glyph-name="uniF407" unicode=""
-d="M1280 1536l256 -128v-128h-128h-128h-128h-128h-128h-128h-128h-128h-128v128l256 128c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM1088 1408c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256c-35.3281 0 -64 -28.6719 -64 -64
-s28.6719 -64 64 -64h256zM1280 1216h128v-704c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.6562 0 -128 57.2158 -128 128v704h128v-704h128v704h128v-704h128v704h128v-704h128v704z" />
- <glyph glyph-name="uniF414" unicode=""
-d="M1996.03 601.984c116.992 -190.208 29.6953 -345.984 -193.536 -345.984h-1556.99c-223.231 0 -310.528 155.776 -193.536 345.984l759.552 1236.99c116.864 190.336 308.097 190.336 424.961 0zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
-c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896l51.584 640h-281.6l51.2002 -640h178.815z" />
- <glyph glyph-name="uniF50E" unicode=""
-d="M384 896v256h1280v-256h-1280z" />
- <glyph glyph-name="uniF461" unicode=""
-d="M1024 384l-647.552 612.992c-149.376 141.312 -161.408 383.231 -27.1367 540.288c134.4 157.184 364.416 169.855 513.792 28.5439l160.896 -152.32l160.768 152.32c149.248 141.184 379.393 128.64 513.792 -28.5439
-c134.656 -157.057 122.368 -398.977 -27.0078 -540.416z" />
- <glyph glyph-name="uniF470" unicode=""
-d="M1536 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-1024c-70.6562 0 -128 57.2158 -128 128v640c0 70.6562 57.3438 128 128 128v128c0 282.752 229.248 512 512 512s512 -229.248 512 -512v-128zM768 1152h512v128
-c0 141.312 -114.688 256 -256 256s-256 -114.688 -256 -256v-128z" />
- <glyph glyph-name="uniF50C" unicode=""
-d="M1479.55 819.2c98.5605 -32 203.137 -51.2002 312.448 -51.2002v-512c-848.256 0 -1536 687.744 -1536 1536h512c0 -162.048 38.5283 -314.752 105.856 -450.816l-189.185 -189.184c136.192 -235.008 344.96 -422.4 595.328 -532.224z" />
- <glyph glyph-name="uniF220" unicode=""
-d="M1856.77 834.048c32.3848 -65.6641 50.6885 -138.88 50.3047 -217.344c0 -269.696 -218.88 -488.704 -488.576 -488.704c-83.584 0 -161.92 21.376 -230.656 58.1123c-50.4316 -8.83203 -102.016 -13.8242 -154.496 -13.8242
-c-465.279 0 -842.624 377.216 -842.624 842.496c0 58.2402 6.14453 114.688 17.2803 169.6c-42.4961 72.1924 -67.0723 156.8 -67.0723 246.912c0 269.824 218.88 488.704 488.704 488.704c95.7441 0 184.704 -27.3916 260.225 -75.0078
-c46.4639 7.80762 94.5918 12.416 143.871 12.416c465.408 0 842.624 -377.344 842.624 -842.624c0 -62.0801 -6.65527 -122.752 -19.584 -180.736zM1466.11 612.096c38.9121 55.5527 58.624 118.656 58.752 188.16c0 58.2402 -11.2646 107.904 -34.1758 148.353
-c-22.9121 40.3193 -54.7842 73.8555 -95.2324 100.224c-39.168 25.7275 -87.8076 48.1279 -143.744 66.0479c-55.4238 17.9199 -118.271 34.1758 -186.496 48.6396c-53.7598 12.416 -93.0557 21.8887 -116.479 28.6729c-23.04 6.14355 -45.4404 15.2314 -67.8398 26.3672
-c-21.8887 10.624 -38.5283 23.5527 -50.4326 38.0166c-11.1357 13.9521 -16.7676 30.3359 -16.7676 49.2803c0 31.2314 16.8955 57.4717 52.2236 80.5117c36.3525 23.5518 85.6318 35.9678 146.048 35.9678c64.8965 0 112.384 -11.2637 140.544 -32.6396
-c29.1846 -21.6318 54.2725 -53.6318 75.5205 -93.3125c18.5596 -31.3594 34.9434 -53.248 50.6875 -67.2002c16.3838 -14.5918 40.5762 -22.3994 71.9365 -22.3994c34.9434 0 63.8721 12.416 86.9121 36.4795c23.04 23.4248 34.6875 50.8164 34.6875 81.1523
-c0 31.3604 -9.08789 63.3604 -25.2158 95.7441c-17.2803 32.3838 -44.7998 63.1035 -81.9199 92.2881c-36.8643 28.5439 -83.8398 52.0957 -139.008 69.5039c-55.8086 16.7676 -121.729 25.5996 -196.736 25.5996c-94.7197 0 -177.536 -13.1836 -247.424 -39.04
-c-70.5283 -26.3682 -125.952 -64.3838 -163.584 -113.664c-38.0166 -49.2793 -56.96 -106.496 -56.96 -170.239c0 -67.2002 17.792 -123.776 54.2715 -169.217c35.0723 -44.1592 83.9688 -79.8721 144.385 -105.728c58.752 -25.2158 133.247 -47.3604 220.672 -66.0479
-c64.2559 -13.3125 115.712 -26.2402 154.239 -38.0166c36.8643 -11.2637 67.3281 -27.9033 89.9844 -49.2793c22.1436 -20.7363 32.6396 -46.9766 32.6396 -80.1279c0 -42.3682 -20.2236 -76.8008 -62.0801 -105.345c-43.1357 -29.0557 -100.352 -43.9033 -169.728 -43.9033
-c-50.9443 0 -92.416 7.16797 -122.624 21.6318c-30.3359 13.9521 -54.2715 32.5117 -70.5283 54.2715c-17.2793 22.6562 -33.4072 51.4561 -48.6396 85.7607c-13.4404 31.3594 -29.5684 55.8076 -49.2803 72.0635c-20.7354 17.2803 -45.3115 25.7285 -74.4961 25.7285
-c-35.0713 0 -64.7676 -10.3682 -87.8076 -32.3848c-23.5518 -21.8877 -35.3281 -48.6396 -35.3281 -79.6152c0 -48.8965 17.9199 -100.608 53.8877 -152.192c35.0723 -50.9443 82.3047 -92.416 138.752 -123.136c79.3604 -41.8564 180.864 -63.1045 301.696 -63.1045
-c100.736 0 189.44 15.4883 263.04 46.208c75.3926 30.9766 132.225 74.4961 171.648 129.92z" />
- <glyph glyph-name="uniF415" unicode=""
-d="M1408 1024h512v-256h-310.016c-98.8164 -225.92 -323.584 -384 -585.984 -384c-176.768 0 -335.488 72.832 -451.072 188.928l0.640625 0.640625c-50.0488 50.0479 -50.0488 130.943 0 180.991c50.0479 50.0488 130.943 50.1768 180.991 0
-c69.376 -69.6318 163.456 -114.56 269.44 -114.56c212.096 0 384 171.904 384 384zM1024 1408c-212.096 0 -384 -171.904 -384 -384h-512v256h310.016c98.8164 225.92 323.712 384 585.984 384c176.896 0 335.488 -72.96 451.072 -188.928
-c50.0479 -50.0479 50.0479 -130.944 0 -180.992s-130.944 -50.0479 -180.992 0l-0.639648 -0.639648c-69.376 69.6318 -163.328 114.56 -269.44 114.56zM832 1024c0 106.112 86.0156 192 192 192c106.112 0 192 -85.8877 192 -192s-85.8877 -192 -192 -192
-c-105.984 0 -192 85.8877 -192 192z" />
- <glyph glyph-name="uniF207" unicode=""
-d="M604.672 256h-329.216v990.72h329.216v-990.72zM440.064 1381.89h-2.04883c-110.464 0 -182.016 76.1602 -182.016 171.137c0 97.1514 73.5996 171.136 186.368 171.136c112.512 0 181.888 -74.1123 184.063 -171.136c0 -94.9766 -71.5518 -171.137 -186.367 -171.137z
-M1792 256h-329.216v530.048c0 133.12 -47.3604 224 -166.656 224c-91.1357 0 -145.28 -61.1836 -169.088 -120.32c-8.57617 -21.2471 -10.752 -50.9434 -10.752 -80.5117v-553.216h-329.344s4.35156 897.792 0 990.72h329.344v-140.416
-c43.7764 67.4561 121.984 163.584 296.448 163.584c216.704 0 379.264 -141.567 379.264 -445.823v-568.064z" />
- <glyph glyph-name="uniF500" unicode=""
-d="M2048 0h-1920l960 959.872z" />
- <glyph glyph-name="uniF302" unicode=""
-d="M1024 1536h512v-512l-768 -768l-512 512zM1280 1152c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128s-128 -57.2158 -128 -128s57.2158 -128 128 -128z" />
- <glyph glyph-name="uniF108" unicode=""
-d="M1664 1536c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-128v-448l-448 448h-331.008l128 128h395.008c211.712 0 384 172.288 384 384v384zM1280 1792c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-448
-l-448 -448v448h-128c-141.312 0 -256 114.688 -256 256v384c0 141.312 114.688 256 256 256h1024z" />
- <glyph glyph-name="uniF405" unicode=""
-d="M1536 1408l-320 -320l320 -320l-128 -128l-320 320l-320 -320l-128 128l320 320l-320 320l128 128l320 -320l320 320z" />
- <glyph glyph-name="uniF501" unicode=""
-d="M0 128v1920l960 -960z" />
- <glyph glyph-name="uniF50D" unicode=""
-d="M1024.13 896c-105.984 0 -192.128 86.0156 -192.128 192v512c0 105.856 86.1436 192 192.128 192c106.112 0 191.872 -86.1436 191.872 -192v-512c0 -105.984 -85.7598 -192 -191.872 -192zM1401.47 1024h192c-27.3916 -244.48 -206.464 -441.984 -441.472 -496v-272
-h-256v272c-234.88 54.0156 -414.08 251.52 -441.472 496h192c30.5918 -181.504 187.52 -320 377.472 -320c190.208 0 347.008 138.496 377.472 320z" />
- <glyph glyph-name="uniF503" unicode=""
-d="M2048 2048v-1920l-960 960z" />
- <glyph glyph-name="uniF101" unicode=""
-d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM1024 768c141.312 0 256 114.688 256 256s-114.688 256 -256 256s-256 -114.688 -256 -256s114.688 -256 256 -256z" />
- <glyph glyph-name="uniF204" unicode=""
-d="M1182.21 1271.81h328.704l-14.4639 -302.72h-314.24v-841.088h-320.128v841.088h-222.08v302.72h222.08v258.561c0 203.008 131.456 389.632 434.176 389.632c122.496 0 212.992 -11.6484 212.992 -11.6484l-7.04004 -282.624s-92.5439 0.640625 -193.536 0.640625
-c-108.928 0 -126.464 -50.3037 -126.464 -133.504c0 -12.416 0 -15.3604 0 -13.9521v-207.104z" />
- <glyph glyph-name="uniF444" unicode=""
-d="M1600 640c-70.7842 0 -128 -57.2158 -128 -128s57.2158 -128 128 -128h64v-128h-1024c-141.312 0 -256 114.688 -256 256v1024c0 141.312 114.688 256 256 256h1024v-1152h-64zM640 384h817.92c-30.7197 34.0479 -49.9199 78.5918 -49.9199 128
-s19.2002 93.9521 49.9199 128h-817.92c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128z" />
- <glyph glyph-name="uniF416" unicode=""
-d="M1088 1792c176.768 0 320 -143.232 320 -320v-640c0 -247.424 -200.576 -448 -448 -448s-448 200.576 -448 448v320h128v-320c0 -176.768 143.232 -320 320 -320c176.64 0 320 143.232 320 320v640c0 105.984 -86.0156 192 -192 192c-106.112 0 -192 -86.0156 -192 -192
-v-512c0 -35.3281 28.6719 -64 64 -64s64 28.6719 64 64v451.968h128v-451.968c0 -105.984 -86.0156 -192 -192 -192c-106.112 0 -192 86.0156 -192 192v512c0 176.768 143.232 320 320 320z" />
- <glyph glyph-name="uniF459" unicode=""
-d="M1920 1664v-1280l-768 480v-480l-1024 640l1024 640v-480z" />
- <glyph glyph-name="uniF441" unicode=""
-d="M1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-512v256h256l-384 384l-384 -384h256v-256h-512c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.40039c-4.09668 20.7363 -6.40039 42.1123 -6.40039 64c0 176.768 143.232 320 320 320
-c89.3438 0 169.984 -36.7363 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
- <glyph glyph-name="uniF506" unicode=""
-d="M768 1920l489.344 -489.472l-640 -640l-268.928 269.056c-49.792 49.792 -49.792 131.2 0 180.992l292.864 292.735l-1.28027 2.68848s128 128 128 384zM1738.24 565.76c33.1514 -32.7676 53.7598 -78.208 53.7598 -128.64c0 -99.9678 -81.1523 -181.12 -181.12 -181.12
-c-50.4316 0 -95.7441 20.6084 -128.64 53.7598l-330.24 330.24v128l-64 64c-35.2002 35.2002 -104.704 23.2959 -154.496 -26.4961l-75.0078 -75.0078c-49.792 -49.792 -131.2 -49.792 -180.992 0l-14.8477 14.8477l640 640l14.8477 -14.8477
-c49.792 -49.792 49.792 -131.2 0 -180.992l-75.0078 -75.0078c-49.792 -49.792 -61.6963 -119.296 -26.4961 -154.496l64 -64h128zM1610.88 373.12c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64s-64 -28.6719 -64 -64s28.6719 -64 64 -64z" />
- <glyph glyph-name="uniF105" unicode=""
-d="M1408 1408c0 -167.04 -107.264 -307.584 -256 -360.448v-535.552l-256 -128v663.552c-148.864 52.8643 -256 193.408 -256 360.448c0 212.096 171.904 384 384 384c211.968 0 384 -171.904 384 -384z" />
- <glyph glyph-name="uniF473" unicode=""
-d="M384 1664h1280v-1280h-1280v1280zM768 1408c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM1536 512v576l-128 192l-448 -672l-192 288l-256 -384h1024z" />
- <glyph glyph-name="uniF452" unicode=""
-d="M512 1664l1024 -640l-1024 -640v1280z" />
- <glyph glyph-name="uniF408" unicode=""
-d="M1792 1150.72l-475.904 -329.983l182.528 -535.04l-474.624 331.903l-474.624 -331.903l182.528 535.04l-475.904 329.983l587.52 -1.02344l180.48 535.68l180.48 -535.68z" />
- <glyph glyph-name="uniF450" unicode=""
-d="M768 1024l1024 640v-1280zM256 384v1280h384v-1280h-384z" />
- <glyph glyph-name="uniF517" unicode=""
-d="M1408 1152l384 384v-1024l-384 384v-256c0 -70.7842 -57.2158 -128 -128 -128h-896c-70.6562 0 -128 57.2158 -128 128v768c0 70.6562 57.3438 128 128 128h896c70.7842 0 128 -57.3438 128 -128v-256z" />
- <glyph glyph-name="uniF106" unicode=""
-d="M256 896v640h640v-640c0 -282.752 -229.248 -512 -512 -512v256c141.312 0 256 114.688 256 256h-384zM1152 1536h640v-640c0 -282.752 -229.248 -512 -512 -512v256c141.312 0 256 114.688 256 256h-384v640z" />
- <glyph glyph-name="uniF208" unicode=""
-d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280zM663.168 384v792.96h-263.552v-792.96h263.552zM531.328 1285.25
-c91.9043 0 149.12 60.9277 149.12 136.96c-1.66406 77.6963 -57.2158 136.96 -147.328 136.96c-90.2402 0 -149.12 -59.2637 -149.12 -136.96c0 -76.0322 57.2158 -136.96 145.664 -136.96h1.66406zM1613.44 384v454.656c0 243.456 -130.049 356.863 -303.488 356.863
-c-139.776 0 -202.496 -76.9277 -237.44 -130.943v112.384h-263.552c3.45605 -74.3682 0 -792.96 0 -792.96h263.552v442.88c0 23.6797 1.79199 47.3604 8.57617 64.1279c19.0723 47.3604 62.4639 96.3838 135.296 96.3838c95.4883 0 133.504 -72.7031 133.504 -179.199
-v-424.192h263.553z" />
- <glyph glyph-name="uniF304" unicode=""
-d="M1024 1152c-141.312 0 -256 114.688 -256 256s114.688 256 256 256s256 -114.688 256 -256s-114.688 -256 -256 -256zM1152 1024c211.968 0 384 -171.904 384 -384v-256h-1024v256c0 212.096 172.032 384 384 384h256z" />
- <glyph glyph-name="uniF225" unicode=""
-d="M655.104 1857.54l368.896 -307.968l-531.456 -328.192l-364.544 291.84zM128 929.536l364.544 291.84l531.456 -328.064l-368.896 -308.096zM1024 893.312l531.456 328.064l364.544 -291.84l-527.232 -344.32zM1920 1513.22l-364.544 -291.84l-531.456 328.192
-l368.768 307.968zM1025.02 826.88l369.92 -306.944l158.464 103.297v-115.713l-528.384 -317.056l-528.257 317.056v115.713l158.336 -103.297z" />
- <glyph glyph-name="uniF103" unicode=""
-d="M1152 1408h896v-896h-896v896zM128 1024v384h896v-384h-896zM640 512v384h384v-384h-384zM128 512v384h384v-384h-384z" />
- <glyph glyph-name="uniF431" unicode=""
-d="M1408 1280l128 -128l-576 -576l-576 576l128 128l448 -448z" />
- <glyph glyph-name="uniF200" unicode=""
-d="M1024 2048c565.504 0 1024 -458.496 1024 -1024c0 -452.224 -293.12 -835.712 -699.776 -971.392c-51.9678 -9.98438 -70.3994 21.7598 -70.3994 49.2793c0 33.4082 1.2793 144 1.2793 280.704c0 95.7441 -32.7676 158.208 -69.5039 189.696
-c228.097 25.3438 467.456 112 467.456 505.344c0 111.744 -39.5518 203.136 -105.088 274.688c10.4961 25.8555 45.6963 130.048 -10.2402 270.976c0 0 -85.8877 27.5205 -281.344 -104.96c-81.792 22.7842 -169.344 34.0479 -256.384 34.4316
-c-87.04 -0.383789 -174.592 -11.6475 -256.384 -34.4316c-195.584 132.48 -281.601 104.96 -281.601 104.96c-55.6797 -140.928 -20.4795 -244.992 -9.85547 -270.976c-65.5361 -71.5527 -105.472 -162.944 -105.472 -274.688c0 -392.32 239.104 -480.384 466.432 -506.112
-c-29.3125 -25.7275 -55.6797 -70.6553 -65.0244 -136.96c-58.2393 -26.2393 -206.72 -71.2959 -297.983 85.248c0 0 -54.1445 98.1768 -156.929 105.473c0 0 -100.096 1.2793 -7.04004 -62.208c0 0 67.0723 -31.4883 113.664 -150.017c0 0 60.0322 -198.912 344.96 -137.216
-c0.512695 -85.248 1.4082 -149.76 1.4082 -173.952c0 -27.2637 -18.6875 -58.752 -69.8877 -49.5361c-406.912 135.425 -700.288 519.168 -700.288 971.648c0 565.504 458.496 1024 1024 1024z" />
- <glyph glyph-name="uniF421" unicode=""
-d="M384 896v256h1152v-256h-1152z" />
- <glyph glyph-name="uniF454" unicode=""
-d="M640 896v128h-512v256h512v128l384 -256zM1536 2048c141.312 0 256 -114.688 256 -256v-1536c0 -141.312 -114.688 -256 -256 -256h-1024c-141.312 0 -256 114.688 -256 256v640h256v-384h1024v1280h-1024v-384h-256v384c0 141.312 114.688 256 256 256h1024zM1024 128
-c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128z" />
- <glyph glyph-name="uniF213" unicode=""
-d="M1536 1664c211.968 0 384 -171.904 384 -384v-512c0 -212.096 -172.032 -384 -384 -384h-1024c-212.096 0 -384 171.904 -384 384v512c0 212.096 171.904 384 384 384h1024zM768 640l640 384l-640 384v-768z" />
- <glyph glyph-name="uniF401" unicode=""
-d="M1297.15 878.848l494.848 -494.848l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM832 768
-c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448s200.576 -448 448 -448zM512 1152v128h640v-128h-640z" />
- <glyph glyph-name="uniF436" unicode=""
-d="M512 1408v128h128v-128h-128zM768 1408v128h128v-128h-128zM1024 1408v128h128v-128h-128zM1280 1536h128v-128h-128v128zM512 1152v128h128v-128h-128zM768 1152v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 1152v128h128v-128h-128zM512 896v128h128v-128
-h-128zM768 896v128h128v-128h-128zM1024 896v128h128v-128h-128zM1280 896v128h128v-128h-128zM512 640v128h128v-128h-128zM768 640v128h128v-128h-128zM1024 640v128h128v-128h-128zM1280 640v128h128v-128h-128z" />
- <glyph glyph-name="uniF434" unicode=""
-d="M1152 0l896 896v-896h-896z" />
- <glyph glyph-name="uniF303" unicode=""
-d="M960 1792c388.736 0 704 -315.136 704 -704c0 -388.736 -315.264 -704 -704 -704c-388.864 0 -704 315.264 -704 704c0 388.864 315.136 704 704 704zM960 512c317.952 0 576 257.92 576 576s-258.048 576 -576 576c-318.08 0 -576 -257.92 -576 -576
-s257.92 -576 576 -576zM1024 1536v-421.504l297.984 -297.984l-90.4961 -90.4961l-335.488 335.488v474.496h128z" />
- <glyph glyph-name="uniF464" unicode=""
-d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
-M1920 640v128h-640v-128h640z" />
- <glyph glyph-name="uniF109" unicode=""
-d="M256 1280h384l384 384v-1280l-384 384h-384v512zM1295.49 1295.62c69.5039 -69.5039 112.512 -165.504 112.512 -271.616s-43.0078 -202.112 -112.512 -271.488l-90.4961 90.4961c46.3359 46.208 75.0078 110.208 75.0078 180.992
-c0 70.6562 -28.6719 134.656 -75.0078 181.12zM1476.61 1476.61c115.712 -115.841 187.392 -275.841 187.392 -452.608c0 -176.896 -71.6797 -336.896 -187.392 -452.608l-90.4961 90.4961c92.6719 92.6719 149.888 220.672 149.888 362.112
-c0 141.312 -57.2158 269.44 -149.888 361.984z" />
- <glyph glyph-name="uniF428" unicode=""
-d="M1024 1280c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256s-256 114.688 -256 256s114.688 256 256 256z" />
- </font>
-</defs></svg>
+++ /dev/null
-/**
-
- Genericons
-
-*/
-
-
-/* IE8 and below use EOT and allow cross-site embedding.
- IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
- So unfortunately, IE9 will throw a console error, but it'll still work.
- When the font is base64 encoded, cross-site embedding works in Firefox */
-
-@font-face {
- font-family: 'Genericons';
- src: url('Genericons.eot');
-}
-
-@font-face {
- font-family: 'Genericons';
- src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAADgYAA0AAAAAWDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAA3/AAAABoAAAAcbOWpBk9TLzIAAAGUAAAARQAAAGBVb3cYY21hcAAAAngAAACUAAABqq7WqvhjdnQgAAADDAAAAAQAAAAEAEQFEWdhc3AAADf0AAAACAAAAAj//wADZ2x5ZgAABEAAADAqAABJ0A3bTddoZWFkAAABMAAAACkAAAA2B8ZTM2hoZWEAAAFcAAAAGAAAACQQuQgFaG10eAAAAdwAAACZAAABNGKqU2Vsb2NhAAADEAAAAS4AAAEuB9f1Nm1heHAAAAF0AAAAIAAAACAA6AEZbmFtZQAANGwAAAFRAAAChXCWuFJwb3N0AAA1wAAAAjEAAAXmlxz2knjaY2BkYGAA4rplZ/Tj+W2+MnBzMIDAhRBmaWSag4EDQjGBKADj7gZyAAAAeNpjYGRg4GAAgh1gEsRmZEAFLAAWNADXAAEAAACWAOgAEAAAAAAAAgAAAAEAAQAAAEAALgAAAAB42mNg4WBg/MLAysDAasw6k4GBUQ5CM19nSGMSYmBgYmDjZIADAQSTISDNNYXhwEeGr+IcIO4ODogwI5ISBQZGAOtvCU0AAAB42kVPuxXCQAyTL+GRmmVoKdgA6FNRMoObdAyRnj3o6NkGLOl4+N75I381AUeUTPoNASSyoWVUBMYUYkmt/KOQVdG79IceFtwj8QpN4JxI+vL4LrYUTlL294GNerLNcGfiRMu6gfhOGMbSzTOz30lv9SbvMoe+TRfHFld08b4wQ/Mhk6ocD8rtKzrHrV/49A34cy/9BURAKJ4AAAB42t2NPw8BQRTEZ+/E2Xi7NlHIJsI1hGgodVqdVqfVqZRqH8QXvL25eq0/USh8AL/kzWReJhkAOV43hMKDW0rqmVu4Jh/BpY+tdNDBh2ndoabnnGtuueeR52YQI1AhILhQ1iDoWHLJDXc88NQgxl5ujS2sMjNZyUImMhYvfTFSdC/v3R+oNj4llSXJvgv4e+6zoCcQAEQFEQAAACwALAAsAFoAhADMAPIBAAEcAUYBlAHOAggCsgNMA6QD4AQSBMIFXAWoBgQGdgcIByoHageOB8gIJgkeCn4LOgvIDH4Myg2YDeoOLA5oDtIO9A8QDy4PeA+aD+AQNhCgEN4RFBFSEZwR9hJgEoISpBLuEwwTKBNEE3ITihPOFAYUWBSYFMgU3BT4FT4VTBViFaAVzhY6FmYWlhaoFsIW2hbuFwQXEhcgFzYXlBfEGAIYNhh4GLIY2hj8GSoZhBnAGfAaBhoUGioaQBpOGn4awBr4GyobgBuWG6wb3hwCHCwccByqHOgdFh02HWodmh3MHgQeHh5GHowfpB/OH9wf6B/2IAQgWCCOIOYhdiGuIfAiciKOIrQi6CL2IyojRCN2I5QjviQIJJAkxCToAAB42oV8CWBU1dX/PW+dyT57Mkkms2RmAkkmyazZCEPYE3ZCWALKJkhYI7IorT4XFERwQdEiAtaK1l0roMUln3WtSktBPltrP7CLyx9b21o/hczlf+59MyGA+jF579333n3vbuf+zu+cex5EICMIERbK04hIVBJ6BkhN87OqRL4IP6PIf2x+VhQwSZ4R2WWZXX5WVaCv+Vlg1yMmj8nvMXlGCG5aDvfSy+Vppx8bIb1HCFEEIhCFyBp/bzbJJxbiIAQ8No9s88TkmMcGuPkxbcKjQCTSRwQtpYkESErDFDmLj8pa+t9Zwg8UNyIA5lHxh++1YFluyVwgSO5yocBMwvFowKtYxRr4Kcw7fJjuoZfQPYcPw1vHduw4tkMl567MYzn6Du9gNwgWr4GmaoqGr3WQYjIY6yqz5lk8JNwiREOCN0+wukC0yTESdoHNmif4vCGIxmVNIN9iY/FAHzqwb/3o0ev36YezZ4nw8ye3d0amrRs2fXtnJzamTxM1DcgZrT8TO4jfzk3upb2d26cPWzct0rn9ye2sPgIxDOw/7DuTB7BKbGM/Cd/Vp/UREXsFMAWajHuBAJ5Tvmcb9g+wawprm0CIUcC+1s7gWQp/eI8/h32ZixmtimqSTSGIReNuu6zd1nOW9Nx2ElpOytqG1ytSn2rCvRWvb9hz8iQfA3xKYWPAxhXrY80Dnykcj8G5pAdwTDef2tK9Q8gkKNaajfOWU5uB7OgekCQCqyevSxGJsnG120xYo1g8ZmKDiicOG9bNFHVg/+MddwDTLZCwsVv2MMsWFA9B1qHuzmTP7p5kZ3dvZ/ch+vWhus4GfkElhzZSbd7uwD2NHaBN7OmZSLWOxnsCu+eBtvEEHqi28dChjaAl10wvwjyU5wHMw3qO9KqsbgXEh+0N87pVggk8CQ9rtH7BhyPk87J6xSOK1r1jR7dGk3S/Blv2nKT8HE+TPKFgk9klmoRe7eQeQTt3uqMbMEVEyIybjKW6mASw8sDFxikYj0WDmCzAZIsQiwaCLDcfe03Kjzc1xWe1t0PBjAULZnTVtPonjpbx9hnchIL4rbtujc1q7+7G+zM/p32fz+yq6blx1OWHRmMR2M6oASWPrOMzyyWYbVZBkVQlgELBimlRsOAWIRAMQZ6gBoKKGhLzIQ9wcjgUm9UlOxQ1TwhBMCQFB+N1u8MlOVxKwmq32qxKMFAewNqaWwRxDdgh68RLN7YteYHSe30+CLpiMxeMH1tbskQxGvMtUl64eUHiqptvvioxf2goK6sg32CUlpTUjpkwf2YsmmsPjR46yikYS73xUimnyGhyisZSpzcXFIc7MWp+M/h899DUC0vabnzphIGwPf16y8P0rTOvhFV3ofSrKcPnOhVLeXjC/E1T916RXzHm0joQZXOd3wvg9deZFEGomNSQKMlevWfK5vkTwn6zEurKypMLYtVSrq+4UFCznWZQCl31Hil3kGtwXpapfGJdVqFbibx8Bhoe3sIbh53IgIoQ3qcGYiKliC1hkiSTCPGHE4KoENXuj5sT5bILzIgrZkecJALBHGDd6xIccckhAMtUnhAsXsVnt7RIiUAVuCWCsEcQ9wgDPonsP+R56k90U/cH4phd7xbSU/RYXmPX6fuvXPZjePyTgiT9G+2Rl4w+8L/N9tKg8iiMu9p5pvFV+s+aV+GrW7Y+4dbci36t7B2/Zcmga+hBehXsgg1g+dnP6Bd0I12I2xc/+xlYtElQBTe20SNv9u5dBh29oVDxvfTXwubkw/Q369+D+PharTMMHzRc2u0qjXTkeJRiKIV/T6OHjtvHhMAJ8YJ9dJ/Q6G5pLb/mTu2Cl2OBvFDWXYB4XIV4/BFpwBNFtSPgSpLP7bdHwjjlUbwwgYchKF8MrxJ2yYES2iJEwnZHPJEHalzV2pcL1bO0p39L6TZ6mJ6tqpr24B1D173k87vraq99ZMKM9hnhW+CWj7MaF2xqn7Al8uNl1o6GFUrtqgnFtiXH3jt0/+phD8mBUXXitpVqbtE7N8qVYvinlyzofPSd7EGVbZsWNA5JFCWTS7y5en0J6g9VI8F+dPAhSls8Q1BHRByJgA8VSCnCIirN8wCC/g3ycujfKlv3yeOXXHLnjCpKU1XshoqIcIYgdL4JUm9OcwL+lRW/dM2IU7Qv1bCjW8Y7HNuxXPkTLNfN8EFkioGVEW2RsCfKQPTyckVpN4zNp2/Q3j/9yVE95pJr2hLdTqc6Z2FF1GmUvqFH+g6KY6EGhOjc6WPipYoo0r+Z/NVeUTASRJ9M2yyIzB6ykKzg2GA3s0HxeXFGF5jjgJILCoRRdrPBbgFLPNEixqIMCAwIHZGwI1Du80qKGo6E40MhbldURQWLiDgSd9jPXfPjUKti3ByLim2wDMZ9uW3Y6n2vfXr1Afrcl9u2fUn/ePo9eu0oMXDL9ZLwzb9W/Rl8kwSpIM+iOgqt4JDNcp6kChMawbiCfnbfLfTs4THFRf5lPq/NkmetqgX/09d0WPOt1o0TA0t9PrxoqxR88pCvD/5B1fDtzx24+tPX9q0etu1LGMdLT+WdohsWSqX399WEZEV4ODXMI+3t2w05Sk5d3ahIYWhmzCv4De7skvxCW3ZDJyxc1fXgClkQocwrykLfPYIJZqiC1w1ZmYtqReXNO1MN3bD6w8NM1lHXk2t5/+YjykfIUhxJnOhe1cRknGEqWLAbAy3gcIkOuwKsh1CIgngB0VUBNuRIrJhocbFDnA4JQW9IxX5PcNCOJDxehZ1GPCibQrN5rOXgPde86/S4nWWeH79ty6u/enJzz/Qh2TYNclRIPTftpqLGD7Qp4yyjfPFSj1XsRQJ2ls9KprZk2RLtaoNgTqDAnW821LT/YubUvTenHrj2r5N0yRQaYSr89VqxpcHTXA5TpN/uXvLUPFFIdt8+aW9vKubxCPZFk6ZdLkBhbm1hRWkwKBcASRfRh8+X2Mcuumx2fWlWaUGJtdBmjI5uuvX5Vc/Xbps/dRibG1w3IrAqLyE/MpM6nR0FmeplooaqCCkIXoqyaQcqEgSPOeixtSh4T7AJc+gBaHtImHzZ4qmJjiqo6pQL6MHJnZWjB+dm04OSBGOzbW5PTaS1fMrmxQ1AxP+5ef7YtnnV4+tqx4fO7BTMS9b5I+7ieOq/xevnbDWV+IqLLdmJpU+s5GOppcfSgnOyeQAapKc940oWpAwh8CGpsdrxAq+moMY89gKbirVOcByzmXSEYCCAlMBBv71hxGSY1Dp8yuRhUtPDm8KT670F9BsAMBiyvA3ekcMykKEPwmkiFvV9Im6c2Ng8fkJT48S+DfDmUweKKoOFqzx09f4DcKjS5hxUemkHnYGd+RgqqsmooyaxGrskfWoHggLO0mAgYQkJvGcZDmN/svlqZlKG9casSMjUPPYXZNlaZKlu7e+f3DY3Wj31qh0HFi54yju2wDvnbrX0p1KefeuiqTMCzXmOqxeueWH+yBve+vGcx25eMTY41ayqolVQffZpaxPl45bd84s/G0hi/qa9++ds+PiVXcub5yTpR/UbtscfuVp42uhZEr310NIpke3/1bDg9ueh7sDlz1zXFpq86qZ7J9093+YszJmYVWgy+u56cdX43fdtXT89rOuUjB5ekOE2BUKegM0MxhMWFzDNwhol6o2yO+wIYZCIB4JpzYKiw5gt0v4Ep1xMtjBfGWAnOQLkQl6T5hx3bWsvGVOydfJVv7l9ctMVu95bvfbI7msmDupebC6RBZMgy3kjRmu9PZc92F0/acclsQ5/Tnada/Tw+KxYgcHYY3HI++mpXQNZDP2cfs3eP3j9AnDG2pceAvHurifuWplMXPKj2+9uu+XoYEOexZDMstpME6+a9+zNk5uX3DZt+zd3x7piNbvWDW6dPuLq9srJFgv1T52/eSI4YO3hfrIikL3CXHWuvBcnVz7n4AXIswvK00fZCjO++oo+8lXqynRC3sv2X6XP8KjrbsK5shdPJBFtBR9qkiAKC9LWBP4sZocZoQ1TeMmsbABrQQ4aZnem7l+2wjt5tvWqjo3XPT3zSF3U2jy2vmeVoWBTcuSNKjHQh2iKDqGDoAxuuwbKOpZdufpeg5X+lj4/kf7z6adn31sKT7A2ZGy5fMSGi+afUVAImjB7+vgeuNWpIAOn/FzAfR9n0gTgA6IpFTiXvbqFg+iKgMtA2YSKCsWGkeCYyRfjjUpIw+HndLqpoLp53KabV8+Zs2zDpZcMb42+0d3eHqo2qRptop/Q6K6qKmf5DPq3uN1eVtbQeN0GYU3Kl0zOmrklowsy+OEg1WTIxfUnbqXA7o4XYI34bHRz/oN1syO4x00ol5WoPkrBam+CcHwghIhl9NWTzJxDM+Hv5s2n6OenNpvp39tjMom1t8e09O58FKHkpP5U30mRjGpEYw3tuKaRKfaItD/zTDufWmcBVFDOkm3kTrKD/ITcTx4gD5FHmGWJTbDVKuzPqtSh/aLUKaqV7RQbAxTsTiUfQPEGobYGAsHaQCygd28gGA3yGRiI4cUodkGsNh6L10VZn8fCCX7Uf0OhNgHxsANq7XW19ojd0f+zsa2W/Vkd1jo7mOSEERx+2ZYAk1/1J4KqEYKyP6aqOOr8n4B/QnqPh1SrqcKUagURUJxFdlWA8/4J0J8Z1bzwMmYXXgYB+t+RfhHgq8D1SWpd6swn4Eq98RDcTT/+RBj92WefQaUgf0I/Fhofkv4lS7RaUAWQ2DOsUIEVmX4Dvh9odXYOHGWvT9dU5PfxAPgQPijBUUkWQAYBT9nGHuMvYPuj2dm0Ot1CUX8jK4NlwydgIn3vlZ0wgz6y85W9f1yRehmir9w3YdeuXZiasfOVB/644nxZtaCee5l8wmQVWWEB2otubua1IClH01FA/eCwSwmcMlw/IKYisA4FhqmYA21CC2eDCiP1iKy10TrGd8rZJf5onIFwCBT9gnAOmJHmBLji4dmYWYBvYzfZOVNKIhquQY7XyJ3wlD2RPhUgXJ7QqRJ7JWK4hGUGA+ZEHK8nFElBuDfbJYkcYCyUkUN6FyOhnI8e3U2PL1++0Gra96P14N4wtn3lu3dNL0+GsEeNIgz72WuLHwTXPLf/cvrh7eLgwZ1brlzbMWvuU9e0Z3d3LKJfLb9ySEuWYefyFf/T1OJoD23cFOu02CIFVbHSqlmBQNRgMBcVVIaLndFqc7FDVirLKmpCY3LRJjTa7CMDgVFWm2w2Fnsr7JVdHq9fFDo3tkam1eTYzJMWra0vHxYxFRvNjg2PdEy/fRrdcAo2LWqavuPt1eNvmOeMj1m9ih58+GH62ei23OkzoPpZk/k++tnba6/7EEI6B9abyShwmg3fY1izcin9/d13nR07Jq/BNmP7u6tGbVoTxrZmCdC+rOnWDZHqa+5OZQ2/qX71YF+Jt/2ap+YKS19pGW9talmy9Efrf+XyTJnT9XF7pNoaHDJ33rTiyjI1O8/hGD1ocIfH4bEIQo7TXNzm97eYkN7WVwpQNrbU5RGg0ufrCFo9TotkLCpzz6wdtjRkyhl5ycpYtKPaYM+rGVKe2NA88apYfs7yB/tu/ubdm25cc+S+pVb38q2T76FPrt+wqtT5P3t2wfKf3Pc7lyTk3PIB/dPuffR3H17fL78G1FQkm3SRK8mtun+SkekYkmlQfZwGodgwz18ZuGR2hjIsMslG6ybBU0osLdcopR6IhlCKOOnkHAJ5khhPcwrGQ60utMviiDIZtqtR+z13FroSbmehu7nK77AUOiyWaZ7yeKk7N7z4jnfWLHx47ZSgoaA0mPBGNtzaNsSSV5yFU1xQwNBomnXP3Nj4sfeDAew5ZeXDWiIWn2XY2urC8mGV3j8f+tmBl5oc4REL6l0tcUu0oCw8tLO2aoakZZi8QKZZSpJDLomEZ7a0Bkrt9praSkt+a4k7UT1kZHD4dT2dYf/QznkxeygSCddY3ZV2VSqyhKqcan52npovIXlJLrlhVMfDyetOz3NFwoMToXJRNucb8wfXTq65du9WcVFTT/TK1bMbLD5HcsWgWZdOG1Hhx7I3Im7E1evIIuxxF07qPDmExqcpz4AzmadcQjyB6tYlYj/HQ4ov6A3kYTZwiWWghiSc/C0i2kLybrVo7MgZI5qceWWVy1auW3X59KTZjGrEYLK6/dHS6IqOkWaLZ8Tw+gKoV6zJoTPGTxlalyWUt0zpmj11mMUiFUSi7aOmjh5TUlwkmpxFRuNJ1dE4qDR7zPCRjzz89E/v3TDbqQ4ScwaHp825YdvB+TM3T01Y5NxcVaH/T1DtDrfL5yrNNgtFrpxcKPRW5pVXi8+m/ibI2ZJsqR6+dOS467vaqrz5BoRYJb+wItJeXT138rjGqpzst43uJSseeuCN2ROuaHILeSVFWYTzr1uxb65EmRxErsPesavc0RxkIiahmmdMVERbmhk5KI7AvICBgT/Mw2xte5qo9N9HosV0rXWATrSmOUz/fVuG3sTVYREYf8P+hVctnzjuig+fR/ptGl7Xtf7uSVvXtY2a//JD21dPraKLmry+IU0dU5Z0utzlbktBNNE1v3Kwp8RRVBP1eYuc9fVTp63atmRZfUMi1jVj4+yWeq+npfXyCdWhQqfDVlJWFff64tHp6w78ZMUqsXXxFQv33zC+MW/Isl0v/GF1x7QrNk66e31XXXtO1dTV2x96ef4c+uuOy2cMaa4IFjsdFqPRnI/vCHnL3e6WkM1eXl4dCtcitXIGB41tm7toRGswUGI1mzyu8NDBVXabxxOrLSxCm659/LiaoaEQtweQ5RGF8dQoYyg4P3XrBvdKJbIuzrlCQiWYuFbiHc88/0hU0IpWNHuwyM629liSsSCaHHbl6FmDtd66FfOSoCKieWaOKjAYYG+sXSLFdeUGT1DfY+7u9oraCkG75IFvNsumak9Jx84p0/b6A+26ifIebFUj6mruLQySWjKUjEG7bDPWMo7V0octikQHxwqwlmmr117OzDOFnfnj3DxR7ajjWJJ7Xqx2CayOOHNFKcSrMJd51GLVfWuAGpvzyIydh/ksCGgOuQXtItYVaPUE/aLdwc5dIL2VP9iV3/nCoc581+D8+tvuoP9oDYWGDQuFWmHE7NbW2a2Cp7JhUHXZ1NSWx8D36KP0o8cepx89+ij4Uh9X1EwrrRrUKFfjQAyt3lcfyrvydfolPU6/fH1NQWll0dqpdVNLDv51tmw226ChcEpd25IlbTUT60R6evyfniqZFo7PjouGfFdlfmdnfqUrvx6UUCsW39qq70OhIWW1gxqCQ1KLu/cvXXagu/vA8QPdwn01JeOGlDcIHaGWUHUy9XSiqzhcd9kLGydO3Pj8ZWjPRob5pq6tDswzwtv27Bx5zKC6JXctqR4faqbX5MytCMVns/nJUFNFqSE+ksDxYA4uZsaLfDlIGIIKRF+K4N3msKmyJ2MzBmOOhH5Tmmz32701ALPvnzNSmx0HtWZEjfzmli1vSfcjLVJn754zZ/dsWHI/XpaOzLb7bSEvLZv1k5mxrh+POHLYU1PjgU82vfTKpqXV1x7p2jVr5s6u39WGjrHrRK8jW5tBuc4n5Rn7gS+Q6f4HtkSGfJetkzkg4UIjIeFQkOln1sbQUPhDoL3bT/9A/+Dvbg/AEtnUMKLBJKt8yeKIvnx2hK1RpPaxDPRD8PMHdkilPl+pRHSf4cvIDVv7168chBhFkzEnYTNCzCHcBj2pL+h2WC5YKKYFCyxP/VPIp9tTX0APvR2u2J36MvXlbrWVvksPQnnqBfDR5+m7EIUx9CP6sLiX/hHGQvTMt/S9xavpq9CyejFvu0DIWWUktt1FRvK2q6KAqpiZRCrkgW6xMWue8Uec32ztKGFGxsiMJZ1VMkuLe2094RaQ35jRaI3OlGXFWlTjOm2QVboub7A721qWX9ZcIZz0yk5LaoWtVP6301pa9pG1WBRcouSy0H8W+3zFMDTbXqCS+fMppS1Wq63CZhYMtKEgV5TVygrZ5qiqKqErf2Evc5v7DIqMclKY58wz7Mq1+rzFwWJPjoXjFFt7YmttA63ZAQtN5HsXltIrSRzrBJRavl7H1pHQmHUg1xEjQi/z7TGLF7OnNE2T0BxGZoQcISNLWLLC2FIO97IZIbPIKuFUSBFKxHe6GaApmEwRtobXzs5JZv2Ky2EZ8ad9xhnrgLmM9ZVVxCY8kywmNB5NYh24QH5x1aoX6Rn6MT3z0sqVL8Fda96/r6vrvvfX7KJf79wJWX+EwV30GZWsfEnPxLKj3YIPvnRmZdfO458f39m1k35N38LsEqGz6H93wST4gy4fWCfC13lNeO5lOGq3iqxXPawzpW6+UqwxL8DJPZLG14fp5yf3MM605yTrk3PtyibFpEr3PSJnjNhwszBnni5W3B5PjxcbKh8rLCKj0jmNmyZgZ7fH+rgFLeI+1etE5h9I4t6paGfYFNK0M5iNZUixvbA/4KSE3YdezHl+XVxkMGnEutSi5a+KjEclLHqJniaoDUfQICqBuh+qqoRlKaFIibrsSV4GYdahw81drd9ZY+lXIBhUrFFxTqgInsEqCW4H2qeHvqvyhOT013VgTEAxykYlaUIdN5zhacQmprdM2pNOR3Az/VBPZ549FyrAasyP39MASvQ87B7faPqY2Qvku5oCMT0ggc+PaTBNvVq9GtvjRoQDB6DB0CJAAtSAN5+vf6qQsIeHIuzCn4SyWamT5U2NQW+OtV745jmhbL+/O7C/0GwufC51Yn8A036hnufy15TmGUORKdKL+1MnnvP79xe1thbuF8owecDf3T83Oc4XkBLsOxVQS7MoiHK3ZEZ2R9BqQQRDDYXYh4aG6d4X0vMH6iFr58q+lesPf3V4PdsBNvgfKzN3cOrseuFeeCd9c/16kvG3p8viLb2gOJIuKg+sdkvMY5NN8I+LykyN6n+nQdDEldR0Ubn023O1MvA+FgfEe5SQCu6L6zfTfrAeotZvZwn/R3UUcm6FI/V/1IvrNwKVBqK8T3KxTqWIbtUstoJBW9AIcayKaATe8UZgnuU4mhpx7kQVOO9C/JThDJUX0q+Q93x1GVXg9GWQA4Mhxw9r6Nbxr3/w2jh6K1wx/vVly16fmCLMbXeSvjqPY6uMT1J50erVi+E0nF68enVfJVwJqydMnTKB3kq34hFe3aM/cFKIcXQ+r84sxsXHZx0Bb5CtJyms7kgrE8xiTUDQ4oBggjUEbYkM3vs5c8QGJXS+KZEiDzynnBQA5vKW3P3zXdsv6Vj2ejus+X3oujPkOo028mbd/b9vp7bwasB73bc9sow3raVn6Mk9yxBy4DlP0Z6Twgm6l7Vp4nbvlAlw5QfwMX8DvMEauDf1Lm/4191LeBNf7Zm7nIMxCAy09DgU7H/mxsP6GQGVUS8kNdpLezVI8h0k5QvONZYnvXbL1wXOf4eB9PWKSa2vt69XE5N8JybVC841lofJqJbWKxbEsxiLHrJVGmJ+fcVNZT3IsAqRSo70O3Mj534y0QFH07GnPQYINEwhOM+mAV/TwUfPofDMCEX7EXTxrzfFTRABj5mN8wYoRd6wgxjZfLXgH8jFoBJafpD6qf8gLRfGPfecdC09kPoMxtHnBAe0geBIfcawRecLGnZtFp/tCLxB5gRHra9pfUQTccIoDDApc7ineqGXJs/xY8YXjNyfYgT8M3kYi0jhT8TfaUzz8KRetmNVJRLvv16lF58zkDzGdIwCm90OHIoaQfWjPGIf9fZpNClqqSfmClNTe7W5ybkajMf0XAVL79OgF1vO7vXN5fdy2a00f8K3syE2ZkKoVOQ5jPYgDCVT/ElWFegdiDc5OLc5g+ZxMJ6oUO4zhVGNOQFPsiBQBT4zM45QzQLR11DazpLDdPdvj8A2mAwlb6w4S2Y/9AX9hO5/ctXeVfgnZ0JRfgvzD4tkxRv0L/QpesWRJ6Edir54aHafxvNx3U5krMdZ9RXsDSeP/3GhPuE2KU7RFmQW/VOzGDwW9d3KvOiVU7891bq42eHwCd9UrrpiVSX9Xz7vfh+lf4sIs0ZpcxK+5LTueun9UWPHjjp9hM8qiLE1ECwvs25iQ2yI6LyGoQLaLglub3IkQ1BD9PUwaLA7WOODakgQOI1SvCwajv66nf7q1ekPbW0EtAoCsS3jWfATbmi+tsOQV6//dCa7Dr6pC77ijZVQlB4/FupoArQm/PEhJ4UytjDz+LGFM9kFKA+X0lree3osG48Rq8xEiOWBl3F6nFZ2Nw8V83n7A8L4XOM0mQeGcQTXWKpn4qRVOG80dmRhYSntaobtVzNsYDFggjaxZ9WkNNl6jTazM4FsZPMC7lCYbOSRQj32EMFTZVgfi5rRhChgxRfYxXKuOWZOokvokkkzd8K+G1988UZ8s0qYNllzFG/APZOOrtkFWSnni2B4kQWqMTyby/BMPsGmEJIJHyQcMucl9IR2Qj4xN0Vgr9aLY4UyaiD9XIoU4WCx8WJHA/mG6BtwRyPTbSmuCgdwBgsZhO8I4qzOY35uhwkHkTWBeUAcHlMZChiP3jCh6MOf/yxon9aM8P/+4ZtPPTZ/vbyp/rJRf05plvfHTFr45Ap2TSnF809DqzaOfIb+o4qetm9+A8Rbd4GdTrj8jUdG4/OW90f98vI1h7eVgoI3aYrZJCK2VdJ4a9i01FhMY7qeDH9YJ7D2cUn0p3OcQfOkD5/rIzyQkCHNVCFpYH2mcjuzjM1yzg/SB3BI6fVLc3q+CPX0P7BdoxZYIz2UTqzqG46CwYbhn7t7enb3yA/QMsq8pHtSJ/Vjyzx2F8WHHuphWc7jJirnswxfeJjewJkp87g8NJXwCO3n5iMicfqqyIPzBk5Gwl7FdUr63RmmnNCZMknjjvmCoz8dWaszZV39yFzxeLgSQrMRybPPxPII+7jyGPgH6cBRFqOaUUM0qZsDfJ/EyrH7OAj8CdAfpPphn06MJU6bmUbS33qGW5QswJcROkbEicps0RJuz+rqMBpvgrQfi/uYuH9ywOKlqh7a2Lq2KvTiFXtOFkqE22U7yjwbD0WqL9twck9LK5+bmgqqnI41tlsZ/w6yiREMRIeylUERablyoL39s7Yj7bSBnoA3oa3ts/ZjbTP2niV75V3tR/EWjKEN4Ga3juFZW2rHXiAMkIHpLpnRKPVc/4t6RWS9Qtyn+Dv57/KTXNcIWHjMAxKBL6hlOkxn4b/05/IT1EItnTBdg+ncD4kT7HeKpj+Dcx7JLZJaiUynP2cRvjB9OrXIT3TSn+OznfAFt+WTCqsHY3RMQQJCRKo3haymV2a6WEBqk+T5GJYkWT6sixGzcS+BkMSfxhQ2JlO9/bERIlaPRbqiBIs8VLmPyyHgDMWq6fdQttkkzdxL8wRZ4+HexCiyymuMlDEJOEMEPaib8/gCdiJrysX2n48EUbJrUOckuCVIMvYe2xIRm2/geWSAPfh950I/mUplUn3ahYn+4PJMdPn3pHjXCNwPwn0ZrM4XrcpnkIXhmKw7ZPhe940wRwnznvXxaxILztHSs13EW2kc4e9n+BW44P0RpnBtvtiAcsQYM4ThXFEae5GWKZCzMuYFzJSJFh4zjM8VvJ+ZuGd1H0LGD85wpljHYqbP5fQRPFZBYQQwBIKIz/AG8UMfDvJNn91xltzx2U0KBw7uCdePqXfupf/5RSn9N+SW/gKyGU0k+rxX0lYcw+c0ADC0GggCLuhHAQmrx8KaAeWGtxYbpwdTK8qhjVUdo0t1UBCwajp2AXPbMD2CB7d74yFHpSuNEeewp7wfe/R6fF/p6ShNkqmDPqznl8zhSIfO7yhT4N9CMF5l5B48E1va8qhcXyMQI0bgpGWR+8z+ZO6I1B9mCQE6S2AjRHHecY8cKvB9/MZ5Pqx8piZKeXAK7nwx/l0AMKjFPGcZy2bDcpWaYrORvZvF1+nzNj3mJj7iTEM0IatNSzOrWyCa4BaLwk2LZEZ0+4gYDof7DjN/FBMlTZfnM1ha4s4EszQFRMs96lx1LqniKyuqX1EtapARxaAlEJSDzH5MBBNyPCEmHIjKCYdod/gdqh3Hmgu3PazObaS/qWm2b3l7qLPl7S22plr6m8ZPDYZPG6Gutsm25e1h1mFv32pvqoU6dplu4vArnLrV3lxzLqf+gtzsJL6huUbP+qn+4lvfwheXcewmF/gYrGjPn/dVCXAnvwpxv5Ux4AQoF35fIoU3n9qyaYNwaEwf4anUyDEXfWySOrzl1OYxqZEbNrGjcGjDRfyh+JxeKc/YFQiobPaz6S7r3CGlHxgLQhgmTGgklB79qj6532E6mM3uc7Ki8yiTzhLZ1Yyql4kO1Yxb93MunpN9laN/mdP/vUcG5/VwKBFvnmbFkwzeD1h/yORFMmRh4ql/Y6OXmOIKov/bFDLg2xQsLf1tigg8eN7wvZhLBmCu7gRPY10adLFzDAiAp/UZi/tvMqDLqypyPGLvV9C6YpjLMdV4XjGe9G9AcUIaXIX+IoFXG6d+pmj+lQ/2v6hliseHsN2s9f3VuFDuLBfKnZRZpIux+N4IMrcL5U5YrKP9Xtqr7b1I4MK8mL52Bi00rcfOK8/x3V9PMc560RdUqYG89YKCzhw+z448r4zId5ehr1zjrHLw5WoGtOxXCpEYj+j6nvLhFX9Hx13P/Wz2TQsripyFRdERxc53TeaRU76vTkJD4+RVyWGXPDe6oKDEV1LsHVxdNazBW2q1VUfT3xnoNq8u1eynotwwRwXH3BPUjcPmhhMX5GUZjSxvCkdeIsxhz/Iy5kPdzJ+R8YMwpmMmdnwigoZBxIJb0Oe3oGUXKWZJhVGNFHt5J3TQ/3e8Ukt93sl9kVrnUDyTeV24H5NnTKf5mo6Kc+db5Sq2ksEs0BbBXgaJFnChtsbKrx/bFLzxhZfHPvDA2Jef31jRPBZF9rKRv3rzvpbBI++9d+TglvveenUk9zMsghPqTsWNM1j/0oz5v0RQLaKDObSDwtLj9AjUHD8iHTl+5MhxqDnT/Q2Qb+SGbcihG7ZBA7y5jb5J39wGb9KyFom0MJuM26dpP1ARW/0xCjFUtGjFXRQQHTsXwK47iRREFZGHgqvnvO4xpt91F63MYYR583CHVPZcDu7T73f6XlyP0h+uh+2Hy0/9XyVr5DvKLPuBMi2o/oPqD5XaB6/Nojv2d/1QySg+r3WxTAxF0zIqox7Dck1GgQUtmIKowpg/zSRwrycDYJGgHtrR9uLCsxyP5STzjtJeLsLsYz16bEfbOKrp5+l4CR3X83iM+MC3yhe8i3zH8+d8DyLrk4wu8vLgKNFnCvMAC44eEhfyUSvb21eOGr2sJdLg8zVEWpaN5leA95SMM49ZpGwT+1MDMI7zo2zmpYE0iPMSWby2J8iX6oF7RhhwSxqbWA31q1JklT9SxMy8FFePUvqThPatiZ6e8lmXhrWB3In7Gi4cUhbg6MbOkT0x/tmiwg3hPr7ffArspzazVVLkHdJ5Y6jpkbWapn/fwHSxPB3bUECcPP7Yw1FSUW08BMXnYa44BqGVUKQnfaiTFn+1cuW8Scvn/eVXdDKQ6xfOrKu7fM32y+a+q2ijRv5k8Y15atFNK+9/Rnh+yOjW0lLaQo+Nn3QbSfvRiZxZH/aJEdWTiFh8CY88Q/tSq6DJCnZA85IbVFxzpn3eGucW2QyDWD9nAkvAFGSBpZxdwP60PkbB7T3LsVLS6UrfO0KyNzUX3ExAjP1x44w3GEkOj9+24Qii7reYPBb24QSTtkEAumdY9RsBTXpNN25A+5aPme5uAd3FrH2rcSKM53KaGFMsPeN4YSMMGmdRGjczmLNNO19Pmsl/na/DHEFFHcrDR4OJGiEfaoShqmMolEGgBvKl4FBwJIJDhUBQdeBfvsgy4SnqugTCM8+YyBfK8BomyiAfEmoZqIl8Q7ASTxwJfKHkUGtkhYWfOmrkoQIS56ECPi2pmFXENzryUeouVJF5opglm1wCeQ2SbUq+r6iwPloRBJBlR64l1x8oHu4szHXIeaUOZ6RQzK0xFNoq8setlqweyWZoHt+sFOSE7O6RrqXz338qUOv21biUkuza9vJEbrDYa/F4jKXZ1vb4YDkvO1TgLMvzObPcTkNhKFinlDbmDwpWocFoAIOcJYPT9aMPNklZ2cPdWWqewZBvzW0OCvmWEXVeo8FjqKktExwl4Ypyk+CRBl+kuP8jKRZk2H0Tfv90VqTIYLGJpXF3QjX78qxOH2Sp/qzmuKwKdl+2scIp2p1Ge/b6dsEkZwnGLF9ps8dmNRlM4L8ZcgwGRTWLDrnINjjfXOINOEzmrITVYs8xFagWi5xvslgLnc3O2opKt6vSaTRPrC1oNWWZchzloQVT76Bnny3PuWVoa31JQaxFzjaquebiItXutch1xoJsydI4bERZl+wwORWuQ/eKbnWulPFBXsTj+/m875c33PDLG0Rx4EE6cQM/DvhLf1PI/C69DNVR5g3kG03sFfv9NXhiYHOFxEwg9iLq9yXZM1KSr2XhdeQa/KqB9CW5HyeZXucSOH9hl/V3DvQBVJBaUq9/C65HLiEn8+jfhKe//jEhY4sPgfSl8vSEl9LEDpGmkX/pfZY0jmK2cGPg6pu6d/B0n74WKbSnA0ZGrfE+yPRGtyb5vGtHMuQLdbY6qH30ju4HvWtG4QU7z7s/Q5iVftvi/P9XIK1LMos7mW/kgejapI8wA15EBU75FZGBBLOccKMkkwLOw/Q0x7cExwCN5OrrIUYRbWIItkh8xdTnDUIsGFDyQWGxXA7d3VgG51w0BD7DAv/t94MfeJSf+Os4tiNODySdXf5x/m5/vqDl+zGV70xqT8cCgZhf1agDaWeuvzsA5aJsGz1l42kaG9feHYc2LenMx8z6U92Y6nImU//Bh/wxQgZ+pzmCjCMdZDZZyNeM0jGBLZBgQYEeU/8VFmPLhnfABf6J4LnRZl4fPGZAvT/y54Kj2j/U7bH0sI9qPIsaL51kqznpJAuiSeli0Jc2084/zNHHnQvCg0iqPkqfj1zrBV977MG0nODpg3tOQkZsUJLoRyf3pNXK6fYBxnB7RnYE7JOTalLp5etpRF+XjxgFEdmugy2PZuas/Kivp1XMFuiqszqTpMf+OppHBuBPX4iSV8dahL4TApceNAenr97GXGLsXPhpegVPgBU4p+7EOeXhay0OHh2QcIHD5ItFYgM62Rax+UwtkOlmmd61mD5IF9IHF9816vXVmpbuO01b/Tr9sd5Nh2c+9ut3Hp3ZtsgC/9EePNcLD2o023KZmEo3WkjLBCETUB50j1cl+57aXAqsrUMgGmRLfOVBpf+COREI+nRvWDQRMPFa4k2X4G4RWFwcOytQ7TY//wSVO8vyBJUvEryX6501PxANXD+Lfr3zJ/Q/M2/AkwUzPXnvsbu9pffj6WWPfwHSF49fhsldJSltZ2rIrH9t6nrijqaKLb/kiwrD2hbTs1v5+5LHH1t3y+Z1jx/Tz7YCLB7bilkmzT0Mgn7tenwVvvJ6/YyePdzVqf1887zlka7krFsmZHxd2oC1bMGTRgtZ0116bN4zniJxxsDGkDIEgH4OwLiNPWLyVgHJQivB6lDtxCG/df99R+gV9Cn6lzdWCKT7pUUQPiRGIpSseANKYDJsO/LF8Zeeof+YwuvwBspCI/9/Nkp53BnnipxEWxMRRWDu1YAQjLjAHZcm7enpmRidGXmh1/rVM2fJM19Zex3vQ/ExUeuZKJCJPZGZUUomFRykXw6iX0LBICg4uPngwXRMs4gtHbimJpP0mtq5b9QdGQ8Od3yaBqbVdJ8M2HMCldkz6vRd1yH9XMZO4P2dnfluTv+xcAGGt8yXzoi1nmL9zb/ZI7xuRraKBqJHFv345xFRifHIBY9E1tKtULUW7ejoOqiiW9ceFZ5Ivf9+6njq+Pup94Un5E/oT35H93z4Icz7nYhmCP1R6ka4ha4VfgQ3Zv5PgUwZmXgITzGgCT/gJUePork/4MH0YtzA+uUPfFrklbzwHUczVbz4ZbSC1Q8Wp2P3uK1mR4ZfyfxPRpQutprNcdrDo82Z3KmBIMIyuwvhhN3BfNYKH9Oz3OzqZoPBE7PGDJp+wx591beP6GeUcWMOZFwtA0n/hyxN18zv0q9TnoYLvz8MoCE/47uiNvkn5QEP/2KAfy4QcTvsCd0cKfcNuByWHHZLmC0k6zf457L9dzLf9w/85EhcYfeYzB/T3//0ydqyImHwjo1gfNN2RemgQRvp/qeferZ+UKnRt/Wen0Kgp0RzBApr7qRXH/77oeLyunJDYM+bv4S564ou/IiJl3JmsbuwsCj75gpj1OExlK3L+2JQaa1j0rS6/CbXoGz/+OEFaBkGChPO6Z0JQ6W3PJxVOXFM3oD+EHnEaBGTaB//Txb4grvoy7ANWwIldJdQsqvvUmUIraYPfP4XSpSFp8/ApZ/B4/LjtBqOsg2OnXmJDmckQ3orNVyceWbH0aMca9L+ovQa8kCLkqlg3ag5L/qSmzNs9vErfP//ATHKtuMAAHjajZA9TgMxEIWfyY9EhBBFDuAKhSKON0m10EUKUgRt+vx4ky3wRruOktByFlpKuAT0nICOO/DWsUBICFhrPd+8Gc+MDeAYDxDYfxe4DSzQwEvgA9TxFriCU3EeuIqG2Aau4UTcB65Tf2amqB7S2/pTJQs08RT4AEd4DVzBFd4DV9EU08A1SHEXuE79EQPkMJjAcZ9DYood9xEy+pa0QcrYkjSkZsmlzbFgXKILBU3bYobjWiFGhysJuclnrkJBT1E11M+AQW4mzszldCdHmbFyk7qlHGbWDbN8YWRXadlaOreKO52EalKqqkiUNY6nL/14hsVTzHyzgqKxJk9nmSVf+/ukWOOGjpmna9rfrhDz/6nqPtJDGxHz2szXpD6LfZs1ll/d6fTakW53ddT/x6hjHywYzvyTa99BeVtOhrHJizSzUutIaa3l3zU/ABw5cLgAAAB42l3SZ5MVVRSF4fuOBEmCiZyDiInb5+zTPYOkgWEIEpUgQUkShpyVoCA5Jy3/LlBz3/ED/WVVdVU/1XvVanW1Bp83rdbRd0Hr/ee/wbdddPEBwxjOCEbyIaMYzRjGMo6PGM8EPuYTPuUzPmcik5jMFKYyjenMYCazmM0c5jKP+SzgCxbyJYv4iq/5hm/5jsW0qUhkgkJNQzc9LOF7lrKM5axgJb2sYjV9rKGftaxjPRv4gY1sYjNb2Mo2fuQntrODneziZ3azh73s4xd+ZT8HOMghDvMbRzjKMY4zwAlOcorTnOEs5zjPBS5yictc4Xf+4CrXuM4N/uQvbnKLv7nNHe5yj/s84CGPeMwTnvKM57zgJa94zT/8O/LymYH+qt02KzOZ2QyzmLXZmN1mz2AmvaSX9JJe0kt6SS/pJb005FV6lV6lV+lVepVepVfpVXqVXtJLekkv6SW9pJc6Xvau7F3Zu7J3Ze/K3pXbQ981Zuc/Qid0Qid0Qid0Qid04n+nc0/YT9hP2E/YT9hP2E/YT9hP2E/YT9hP2E/YT9hP2E/YT9hPJL2kl/SyXtbLelkv62W9rJf1sl7WC73QC73QC73QC73QC73QK3pFr+gVvaJX9Ipe0St6Ra/Wq/VqvVqv1qv1ar1ar9ar9Rq9Rq/Ra/QavUav6XjFnRV3VtxZcWfFnRV3VtpD3zVmt9lj9pqrzNVmn7nG7O+kuyzusrjL4i6LuyzusrjLUjVvAQpVcTgAAAAAAAAB//8AAnjaY2BgYGQAgjO2i86D6AshzNIwGgBAmQUAAAA=) format('woff'),
- url('Genericons.ttf') format('truetype'),
- url('Genericons.svg#genericonsregular') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
-@media screen and (-webkit-min-device-pixel-ratio:0) {
- @font-face {
- font-family: "Genericons";
- src: url("./Genericons.svg#Genericons") format("svg");
- }
-}
-
-
-/**
- * All Genericons
- */
-
-.genericon {
- font-size: 16px;
- vertical-align: top;
- text-align: center;
- -moz-transition: color .1s ease-in 0;
- -webkit-transition: color .1s ease-in 0;
- display: inline-block;
- font-family: "Genericons";
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- line-height: 1;
- text-decoration: inherit;
- text-transform: none;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- speak: none;
-}
-
-
-/**
- * Individual icons
- */
-
-.genericon-404:before { content: "\f423"; }
-.genericon-activity:before { content: "\f508"; }
-.genericon-anchor:before { content: "\f509"; }
-.genericon-aside:before { content: "\f101"; }
-.genericon-attachment:before { content: "\f416"; }
-.genericon-audio:before { content: "\f109"; }
-.genericon-bold:before { content: "\f471"; }
-.genericon-book:before { content: "\f444"; }
-.genericon-bug:before { content: "\f50a"; }
-.genericon-cart:before { content: "\f447"; }
-.genericon-category:before { content: "\f301"; }
-.genericon-chat:before { content: "\f108"; }
-.genericon-checkmark:before { content: "\f418"; }
-.genericon-close:before { content: "\f405"; }
-.genericon-close-alt:before { content: "\f406"; }
-.genericon-cloud:before { content: "\f426"; }
-.genericon-cloud-download:before { content: "\f440"; }
-.genericon-cloud-upload:before { content: "\f441"; }
-.genericon-code:before { content: "\f462"; }
-.genericon-codepen:before { content: "\f216"; }
-.genericon-cog:before { content: "\f445"; }
-.genericon-collapse:before { content: "\f432"; }
-.genericon-comment:before { content: "\f300"; }
-.genericon-day:before { content: "\f305"; }
-.genericon-digg:before { content: "\f221"; }
-.genericon-document:before { content: "\f443"; }
-.genericon-dot:before { content: "\f428"; }
-.genericon-downarrow:before { content: "\f502"; }
-.genericon-download:before { content: "\f50b"; }
-.genericon-draggable:before { content: "\f436"; }
-.genericon-dribbble:before { content: "\f201"; }
-.genericon-dropbox:before { content: "\f225"; }
-.genericon-dropdown:before { content: "\f433"; }
-.genericon-dropdown-left:before { content: "\f434"; }
-.genericon-edit:before { content: "\f411"; }
-.genericon-ellipsis:before { content: "\f476"; }
-.genericon-expand:before { content: "\f431"; }
-.genericon-external:before { content: "\f442"; }
-.genericon-facebook:before { content: "\f203"; }
-.genericon-facebook-alt:before { content: "\f204"; }
-.genericon-fastforward:before { content: "\f458"; }
-.genericon-feed:before { content: "\f413"; }
-.genericon-flag:before { content: "\f468"; }
-.genericon-flickr:before { content: "\f211"; }
-.genericon-foursquare:before { content: "\f226"; }
-.genericon-fullscreen:before { content: "\f474"; }
-.genericon-gallery:before { content: "\f103"; }
-.genericon-github:before { content: "\f200"; }
-.genericon-handset:before { content: "\f50c"; }
-.genericon-heart:before { content: "\f461"; }
-.genericon-help:before { content: "\f457"; }
-.genericon-hide:before { content: "\f404"; }
-.genericon-hierarchy:before { content: "\f505"; }
-.genericon-home:before { content: "\f409"; }
-.genericon-image:before { content: "\f102"; }
-.genericon-info:before { content: "\f455"; }
-.genericon-instagram:before { content: "\f215"; }
-.genericon-italic:before { content: "\f472"; }
-.genericon-key:before { content: "\f427"; }
-.genericon-leftarrow:before { content: "\f503"; }
-.genericon-link:before { content: "\f107"; }
-.genericon-linkedin:before { content: "\f207"; }
-.genericon-linkedin-alt:before { content: "\f208"; }
-.genericon-location:before { content: "\f417"; }
-.genericon-lock:before { content: "\f470"; }
-.genericon-mail:before { content: "\f410"; }
-.genericon-maximize:before { content: "\f422"; }
-.genericon-menu:before { content: "\f419"; }
-.genericon-microphone:before { content: "\f50d"; }
-.genericon-minimize:before { content: "\f421"; }
-.genericon-minus:before { content: "\f50e"; }
-.genericon-month:before { content: "\f307"; }
-.genericon-move:before { content: "\f50f"; }
-.genericon-next:before { content: "\f429"; }
-.genericon-notice:before { content: "\f456"; }
-.genericon-paintbrush:before { content: "\f506"; }
-.genericon-path:before { content: "\f219"; }
-.genericon-pause:before { content: "\f448"; }
-.genericon-phone:before { content: "\f437"; }
-.genericon-picture:before { content: "\f473"; }
-.genericon-pinned:before { content: "\f308"; }
-.genericon-pinterest:before { content: "\f209"; }
-.genericon-pinterest-alt:before { content: "\f210"; }
-.genericon-play:before { content: "\f452"; }
-.genericon-plugin:before { content: "\f439"; }
-.genericon-plus:before { content: "\f510"; }
-.genericon-pocket:before { content: "\f224"; }
-.genericon-polldaddy:before { content: "\f217"; }
-.genericon-portfolio:before { content: "\f460"; }
-.genericon-previous:before { content: "\f430"; }
-.genericon-print:before { content: "\f469"; }
-.genericon-quote:before { content: "\f106"; }
-.genericon-rating-empty:before { content: "\f511"; }
-.genericon-rating-full:before { content: "\f512"; }
-.genericon-rating-half:before { content: "\f513"; }
-.genericon-reddit:before { content: "\f222"; }
-.genericon-refresh:before { content: "\f420"; }
-.genericon-reply:before { content: "\f412"; }
-.genericon-reply-alt:before { content: "\f466"; }
-.genericon-reply-single:before { content: "\f467"; }
-.genericon-rewind:before { content: "\f459"; }
-.genericon-rightarrow:before { content: "\f501"; }
-.genericon-search:before { content: "\f400"; }
-.genericon-send-to-phone:before { content: "\f438"; }
-.genericon-send-to-tablet:before { content: "\f454"; }
-.genericon-share:before { content: "\f415"; }
-.genericon-show:before { content: "\f403"; }
-.genericon-shuffle:before { content: "\f514"; }
-.genericon-sitemap:before { content: "\f507"; }
-.genericon-skip-ahead:before { content: "\f451"; }
-.genericon-skip-back:before { content: "\f450"; }
-.genericon-skype:before { content: "\f220"; }
-.genericon-spam:before { content: "\f424"; }
-.genericon-spotify:before { content: "\f515"; }
-.genericon-standard:before { content: "\f100"; }
-.genericon-star:before { content: "\f408"; }
-.genericon-status:before { content: "\f105"; }
-.genericon-stop:before { content: "\f449"; }
-.genericon-stumbleupon:before { content: "\f223"; }
-.genericon-subscribe:before { content: "\f463"; }
-.genericon-subscribed:before { content: "\f465"; }
-.genericon-summary:before { content: "\f425"; }
-.genericon-tablet:before { content: "\f453"; }
-.genericon-tag:before { content: "\f302"; }
-.genericon-time:before { content: "\f303"; }
-.genericon-top:before { content: "\f435"; }
-.genericon-trash:before { content: "\f407"; }
-.genericon-tumblr:before { content: "\f214"; }
-.genericon-twitch:before { content: "\f516"; }
-.genericon-twitter:before { content: "\f202"; }
-.genericon-unapprove:before { content: "\f446"; }
-.genericon-unsubscribe:before { content: "\f464"; }
-.genericon-unzoom:before { content: "\f401"; }
-.genericon-uparrow:before { content: "\f500"; }
-.genericon-user:before { content: "\f304"; }
-.genericon-video:before { content: "\f104"; }
-.genericon-videocamera:before { content: "\f517"; }
-.genericon-vimeo:before { content: "\f212"; }
-.genericon-warning:before { content: "\f414"; }
-.genericon-website:before { content: "\f475"; }
-.genericon-week:before { content: "\f306"; }
-.genericon-wordpress:before { content: "\f205"; }
-.genericon-xpost:before { content: "\f504"; }
-.genericon-youtube:before { content: "\f213"; }
-.genericon-zoom:before { content: "\f402"; }
+++ /dev/null
-body {
- background-image: none;
- min-width: 0;
-}
-
-#header {
- padding: 0;
-}
-
-#site_nav_global_primary {
- top: 0;
- -webkit-border-top-right-radius: 0px;
- -moz-border-radius-topright: 0px;
- border-top-right-radius: 0px;
- line-height: 16px;
-}
-
-#site_nav_global_primary li {
- float: left;
- margin-right: 8px;
-}
-
-#site_nav_local_views {
- line-height: 2em;
-}
-
-#site_nav_local_views h3 {
- color: #333;
- background: none;
- text-transform: none;
- letter-spacing: 0;
- padding-bottom: 0;
-}
-
-#site_nav_local_views li li {
- margin: 0 6px 6px 0;
-}
-
-#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li {
- margin: 0 6px 6px 0;
-}
-
-#site_nav_local_views a {
- color: #fff;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);;
- background: #364a84;
- background: -moz-linear-gradient(top, #7b8dbb , #364a84);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#364a84));
- font-size: 0.9em;
- width: auto;
-}
-
-#site_nav_local_views a:hover {
- background: #7b8dbb;
- background: -moz-linear-gradient(top, #364a84 , #7b8dbb);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#364a84), color-stop(100%,#7b8dbb));
-}
-
-.input_forms {
- top: -10px;
- padding-right: 0;
-}
-
-#input_form_nav li a {
- padding: 0px 4px 1px 4px;
-}
-
-.form_notice .count {
- top: 44px;
- left: 276px;
-}
-
-#form_notice-direct.form_notice .count {
- top: 74px;
- left: 276px;
-}
-
-#event-startdate, #event-starttime, #event-enddate, #event-endtime {
- width: 120px;
- margin-right: 12px;
-}
-
-.input_form .form_settings .submit {
- font-size: 1em;
-}
-
-.form_notice input.submit {
- font-size: 1em;
-}
-
-.question div.question-description {
- max-width: 100% !important;
-}
-
-ul.qna-dummy {
- width: 80%;
-}
-
-.qna-dummy-placeholder input {
- width: 92%;
-}
-
-.question #qna-answer, .qna-full-question #qna-answer {
- width: 220px;
-}
-
-.threaded-replies #answer-form fieldset {
- width: 220px;
-}
-
-.threaded-replies #qna-answer-submit {
- float: left;
- clear: left;
- position: relative;
- top: 0;
- bottom: 0px;
- left: 0;
- margin-top: 10px;
-}
-
-a.company_logo {
- display: none !important;
-}
+++ /dev/null
-/** theme: neo
- *
- * @package StatusNet
- * @author Osama Khalid <osamak@gnu.org>
- * @copyright Osama Khalid
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://status.net/
- */
-
-body {
- direction: rtl;
-}
-
-span.rtl{
- direction: rtl !important;
-}
-
-#content .notice .h-entry {
- direction: ltr;
-}
-
-.form_notice textarea{
- direction: ltr;
-}
-
-#site_nav_global_primary ul{
- float: left;
-}
-
-.notice div.e-content {
- float: right;
- clear: right;
-}
-
-#content .notice .threaded-replies .notice div.e-content{
- clear: right;
- float: right;
-}
-
-#content h1{
- font-weight: bold;
- letter-spacing: 0;
-}
-
-.threaded-replies {
- border-right: 3px solid #ECECF2;
- border-left: 0;
- margin-right: 59px;
- margin-left: 0;
-}
-
-address{
- float: right;
-}
-
-#site_nav_global_primary {
- left: 0;
- right: auto;
-}
-
-.input_form .form_settings .submit{
- float: left;
-}
-
-.input_form .form_settings fieldset fieldset{
- float: right;
-}
-
-.input_form fieldset fieldset label{
- right: 6px;
- text-align: right;
-}
-
-#input_form_event .form_settings .form_data li{
- float: right;
-}
-
-.notice .author {
- direction: rtl;
- float: right;
- margin-left: 8px;
- margin-right: 0;
-}
-
-.section .notice .author {
- margin-left: 0;
-}
-
-.notice p.e-content {
- float: left;
-}
-
-.threaded-replies .form_notice #notice_action-submit {
- right: 10px;
-}
-
-.form_notice input.submit{
- float: right;
-}
-
-#export_data li a{
- padding-right: 30px;
- padding-left: 0;
-/* background-position: right center; */
-}
-
-#content .notice .author .u-photo{
- right: 0;
- left: auto;
-}
-
-.notice-options{
- float: left;
-}
-
-.notice div.e-content {
- margin-right: 59px;
- margin-left: 0;
-}
-
-#core .h-card .u-photo {
- margin-left: 11px;
- margin-right: 0;
-}
-
-.threaded-replies .notice-reply-comments {
- margin: 2px 10px 4px 0;
-}
-
-#shownotice .notice div.e-content {
- margin-right: 0;
-}
-
-#content thead th {
- text-align: right;
-}
-
-.profile_list th.current a {
- background-position: left top;
- padding-left: 25px;
-}
-
-.form_settings .form_data textarea, .form_settings .form_data select, .form_settings .form_data input {
- float: right;
- margin-right: 1.795%;
-}
-
-.form_settings .form_data label {
- float: right;
-}
-
-.form_settings label {
- text-align: left;
-}
-
-#form_search input.submit {
- margin-right: 5px;
-}
-
-#site_nav_local_views H3{
- font-weight: bold;
- letter-spacing: 0;
-}
-
-#aside_primary h2{
- font-weight: bold;
- letter-spacing: 0;
-}
-
-.form_settings label[for="notice_to"] {
- margin-left: 10px;
- margin-right: 0;
-}
-
-select {
- padding-left: 10px;
-}
-
-#input_form_nav li a {
- float: right;
-}
-
-#content table.extended-profile td {
- padding-left: 0 !important;
- padding-right: 8px !important;
-}
-
-.experience-item, .education-item {
- float: right;
-}
-
-#site_nav_global_primary a {
- float: right;
-}
-
-.form_settings .form_data p.form_guide {
- margin-right: 27%;
-}
-
-.form_settings label.checkbox {
- text-align: right;
-}
-
-.form_settings label.checkbox, .form_settings label.radio {
- left: 0;
- right: -25px;
-}
-
-.form_settings input.checkbox, .form_settings input.radio {
- margin-right: 25%;
- margin-left: 20px;
- right: -14px;
- left: 0;
-}
-
-.form_settings input {
- margin-left: 20px;
-}
-
-.form_settings .form_data li {
- float: right;
-}
-
-#header-search {
- float: left;
-}
-
-#header-search input[type="submit"] {
- left: 0;
- right: auto;
-}
-
-#avatarfile {
- width: 100%;
-}
-
-.form_settings .checkbox-wrapper label.checkbox {
- right: -3px;
- left: auto;
-}
-
-.checkbox-wrapper.unchecked label.checkbox, .checkbox-wrapper.checked label.checkbox {
- padding-right: 20px;
- padding-left: 0;
- background-position: right center;
-}
-
-.input_form .form_settings .form_data p.form_guide {
- margin-right: 5px;
- margin-left: 27%;
-}
-
-.experience-item, .education-item {
- float: right !important;
-}
-
-.profile_block .entity_actions {
- float: left;
-}
-
-.profile .entity_profile .p-name, .profile .entity_profile .label {
- margin-right: 11px;
- margin-left: 0;
-}
-
-#core .h-card .u-photo {
- float: right;
-}
-
-.profile_list .label {
- margin-right: 59px !important;
-}
-
-.profile .entity_profile .note, .profile .entity_profile .url, .profile .entity_profile .entity_tags, .profile .entity_profile .form_subscription_edit {
- margin-right: 59px;
- margin-left: 0;
-}
-
-.profile_list .entity_actions ul {
- left: 20px;
- right: auto;
-}
-
-.entity_actions input.submit {
- text-align: right;
-}
-
-#entity_statistics dt, #entity_statistics dd {
- margin-left: 11px;
- margin-right: 0;
-}
-
-#showstream .notice .h-entry, #showstream .notice div.e-content {
- margin-right: 0;
-}
-
-.limited-scope .e-content .timestamp:before {
- right: 0;
- left: auto;
-}
-
-.limited-scope .e-content .timestamp {
- padding-left: 0;
- padding-right: 20px;
-}
-
-.section ul.entities {
- float: right;
-}
-
-.section .entities li {
- float: right;
-}
-
+++ /dev/null
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata></metadata>
-<defs>
-<font id="fontawesomeregular" horiz-adv-x="1536" >
-<font-face units-per-em="1792" ascent="1536" descent="-256" />
-<missing-glyph horiz-adv-x="448" />
-<glyph unicode=" " horiz-adv-x="448" />
-<glyph unicode="	" horiz-adv-x="448" />
-<glyph unicode=" " horiz-adv-x="448" />
-<glyph unicode="¨" horiz-adv-x="1792" />
-<glyph unicode="©" horiz-adv-x="1792" />
-<glyph unicode="®" horiz-adv-x="1792" />
-<glyph unicode="´" horiz-adv-x="1792" />
-<glyph unicode="Æ" horiz-adv-x="1792" />
-<glyph unicode="Ø" horiz-adv-x="1792" />
-<glyph unicode=" " horiz-adv-x="768" />
-<glyph unicode=" " horiz-adv-x="1537" />
-<glyph unicode=" " horiz-adv-x="768" />
-<glyph unicode=" " horiz-adv-x="1537" />
-<glyph unicode=" " horiz-adv-x="512" />
-<glyph unicode=" " horiz-adv-x="384" />
-<glyph unicode=" " horiz-adv-x="256" />
-<glyph unicode=" " horiz-adv-x="256" />
-<glyph unicode=" " horiz-adv-x="192" />
-<glyph unicode=" " horiz-adv-x="307" />
-<glyph unicode=" " horiz-adv-x="85" />
-<glyph unicode=" " horiz-adv-x="307" />
-<glyph unicode=" " horiz-adv-x="384" />
-<glyph unicode="™" horiz-adv-x="1792" />
-<glyph unicode="∞" horiz-adv-x="1792" />
-<glyph unicode="≠" horiz-adv-x="1792" />
-<glyph unicode="◼" horiz-adv-x="500" d="M0 0z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
-<glyph unicode="" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
-<glyph unicode="" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
-<glyph unicode="" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
-<glyph unicode="" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
-<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
-<glyph unicode="" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
-<glyph unicode="" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " />
-<glyph unicode="" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
-<glyph unicode="" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
-<glyph unicode="" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
-<glyph unicode="" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
-<glyph unicode="" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
-<glyph unicode="" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
-<glyph unicode="" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
-<glyph unicode="" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
-<glyph unicode="" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
-<glyph unicode="" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
-<glyph unicode="" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
-<glyph unicode="" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
-<glyph unicode="" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
-<glyph unicode="" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
-<glyph unicode="" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
-<glyph unicode="" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
-<glyph unicode="" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
-<glyph unicode="" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
-<glyph unicode="" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
-<glyph unicode="" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
-<glyph unicode="" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
-<glyph unicode="" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
-<glyph unicode="" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
-<glyph unicode="" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
-<glyph unicode="" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
-<glyph unicode="" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
-<glyph unicode="" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
-<glyph unicode="" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
-<glyph unicode="" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
-<glyph unicode="" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
-<glyph unicode="" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
-<glyph unicode="" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
-<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
-<glyph unicode="" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
-<glyph unicode="" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
-<glyph unicode="" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
-<glyph unicode="" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
-<glyph unicode="" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
-<glyph unicode="" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
-<glyph unicode="" horiz-adv-x="1664" d="M640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5 l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5 t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
-<glyph unicode="" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
-<glyph unicode="" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M1536 160q0 -119 -84.5 -203.5t-203.5 -84.5h-192v608h203l30 224h-233v143q0 54 28 83t96 29l132 1v207q-96 9 -180 9q-136 0 -218 -80.5t-82 -225.5v-166h-224v-224h224v-608h-544q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960 q119 0 203.5 -84.5t84.5 -203.5v-960z" />
-<glyph unicode="" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
-<glyph unicode="" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
-<glyph unicode="" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
-<glyph unicode="" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
-<glyph unicode="" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
-<glyph unicode="" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
-<glyph unicode="" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
-<glyph unicode="" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
-<glyph unicode="" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
-<glyph unicode="" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
-<glyph unicode="" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
-<glyph unicode="" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
-<glyph unicode="" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
-<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
-<glyph unicode="" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
-<glyph unicode="" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
-<glyph unicode="" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
-<glyph unicode="" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
-<glyph unicode="" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
-<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
-<glyph unicode="" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
-<glyph unicode="" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
-<glyph unicode="" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
-<glyph unicode="" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
-<glyph unicode="" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
-<glyph unicode="" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
-<glyph unicode="" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
-<glyph unicode="" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
-<glyph unicode="" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
-<glyph unicode="" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
-<glyph unicode="" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
-<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
-<glyph unicode="" d="M829 318q0 -76 -58.5 -112.5t-139.5 -36.5q-41 0 -80.5 9.5t-75.5 28.5t-58 53t-22 78q0 46 25 80t65.5 51.5t82 25t84.5 7.5q20 0 31 -2q2 -1 23 -16.5t26 -19t23 -18t24.5 -22t19 -22.5t17 -26t9 -26.5t4.5 -31.5zM755 863q0 -60 -33 -99.5t-92 -39.5q-53 0 -93 42.5 t-57.5 96.5t-17.5 106q0 61 32 104t92 43q53 0 93.5 -45t58 -101t17.5 -107zM861 1120l88 64h-265q-85 0 -161 -32t-127.5 -98t-51.5 -153q0 -93 64.5 -154.5t158.5 -61.5q22 0 43 3q-13 -29 -13 -54q0 -44 40 -94q-175 -12 -257 -63q-47 -29 -75.5 -73t-28.5 -95 q0 -43 18.5 -77.5t48.5 -56.5t69 -37t77.5 -21t76.5 -6q60 0 120.5 15.5t113.5 46t86 82.5t33 117q0 49 -20 89.5t-49 66.5t-58 47.5t-49 44t-20 44.5t15.5 42.5t37.5 39.5t44 42t37.5 59.5t15.5 82.5q0 60 -22.5 99.5t-72.5 90.5h83zM1152 672h128v64h-128v128h-64v-128 h-128v-64h128v-160h64v160zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M735 740q0 -36 32 -70.5t77.5 -68t90.5 -73.5t77 -104t32 -142q0 -90 -48 -173q-72 -122 -211 -179.5t-298 -57.5q-132 0 -246.5 41.5t-171.5 137.5q-37 60 -37 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 42 -47.5 74t-15.5 73q0 36 21 85q-46 -4 -68 -4 q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q77 66 182.5 98t217.5 32h418l-138 -88h-131q74 -63 112 -133t38 -160q0 -72 -24.5 -129.5t-59 -93t-69.5 -65t-59.5 -61.5t-24.5 -66zM589 836q38 0 78 16.5t66 43.5q53 57 53 159q0 58 -17 125t-48.5 129.5 t-84.5 103.5t-117 41q-42 0 -82.5 -19.5t-65.5 -52.5q-47 -59 -47 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26zM591 -37q58 0 111.5 13t99 39t73 73t27.5 109q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -48 2 q-53 0 -105 -7t-107.5 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -70 35 -123.5t91.5 -83t119 -44t127.5 -14.5zM1401 839h213v-108h-213v-219h-105v219h-212v108h212v217h105v-217z" />
-<glyph unicode="" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
-<glyph unicode="" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
-<glyph unicode="" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
-<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
-<glyph unicode="" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
-<glyph unicode="" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
-<glyph unicode="" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
-<glyph unicode="" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
-<glyph unicode="" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
-<glyph unicode="" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
-<glyph unicode="" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
-<glyph unicode="" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
-<glyph unicode="" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
-<glyph unicode="" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
-<glyph unicode="" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
-<glyph unicode="" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
-<glyph unicode="" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
-<glyph unicode="" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
-<glyph unicode="" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
-<glyph unicode="" horiz-adv-x="1568" d="M496 192q0 -60 -42.5 -102t-101.5 -42q-60 0 -102 42t-42 102t42 102t102 42q59 0 101.5 -42t42.5 -102zM928 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -66 -47 -113t-113 -47t-113 47t-47 113 t47 113t113 47t113 -47t47 -113zM1360 192q0 -46 -33 -79t-79 -33t-79 33t-33 79t33 79t79 33t79 -33t33 -79zM528 1088q0 -73 -51.5 -124.5t-124.5 -51.5t-124.5 51.5t-51.5 124.5t51.5 124.5t124.5 51.5t124.5 -51.5t51.5 -124.5zM992 1280q0 -80 -56 -136t-136 -56 t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1536 640q0 -40 -28 -68t-68 -28t-68 28t-28 68t28 68t68 28t68 -28t28 -68zM1328 1088q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5z" />
-<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
-<glyph unicode="" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
-<glyph unicode="" horiz-adv-x="1792" />
-<glyph unicode="" horiz-adv-x="1792" />
-<glyph unicode="" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
-<glyph unicode="" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
-<glyph unicode="" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
-<glyph unicode="" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
-<glyph unicode="" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
-<glyph unicode="" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
-<glyph unicode="" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
-<glyph unicode="" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
-<glyph unicode="" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
-<glyph unicode="" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
-<glyph unicode="" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
-<glyph unicode="" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
-<glyph unicode="" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
-<glyph unicode="" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
-<glyph unicode="" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
-<glyph unicode="" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
-<glyph unicode="" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
-<glyph unicode="" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
-<glyph unicode="" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
-<glyph unicode="" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
-<glyph unicode="" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
-<glyph unicode="" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
-<glyph unicode="" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
-<glyph unicode="" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
-<glyph unicode="" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
-<glyph unicode="" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
-<glyph unicode="" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
-<glyph unicode="" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
-<glyph unicode="" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
-<glyph unicode="" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
-<glyph unicode="" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
-<glyph unicode="" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
-<glyph unicode="" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
-<glyph unicode="" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
-<glyph unicode="" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
-<glyph unicode="" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
-<glyph unicode="" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
-<glyph unicode="" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
-<glyph unicode="" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
-<glyph unicode="" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
-<glyph unicode="" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
-<glyph unicode="" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" />
-<glyph unicode="" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
-<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
-<glyph unicode="" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
-<glyph unicode="" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" />
-<glyph unicode="" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
-<glyph unicode="" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
-<glyph unicode="" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
-<glyph unicode="" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
-<glyph unicode="" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
-<glyph unicode="" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
-<glyph unicode="" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
-<glyph unicode="" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
-<glyph unicode="" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
-<glyph unicode="" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
-<glyph unicode="" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
-<glyph unicode="" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
-<glyph unicode="" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
-<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
-<glyph unicode="" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
-<glyph unicode="" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
-<glyph unicode="" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
-<glyph unicode="" horiz-adv-x="1280" d="M981 197q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -49 2q-53 0 -104.5 -7t-107 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -56 23.5 -102t61 -75.5t87 -50t100 -29t101.5 -8.5q58 0 111.5 13t99 39t73 73t27.5 109zM864 1055 q0 59 -17 125.5t-48 129t-84 103.5t-117 41q-42 0 -82.5 -19.5t-66.5 -52.5q-46 -59 -46 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26q37 0 77.5 16.5t65.5 43.5q53 56 53 159zM752 1536h417l-137 -88h-132q75 -63 113 -133t38 -160q0 -72 -24.5 -129.5 t-59.5 -93t-69.5 -65t-59 -61.5t-24.5 -66q0 -36 32 -70.5t77 -68t90.5 -73.5t77.5 -104t32 -142q0 -91 -49 -173q-71 -122 -209.5 -179.5t-298.5 -57.5q-132 0 -246.5 41.5t-172.5 137.5q-36 59 -36 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 41 -47.5 73.5 t-15.5 73.5q0 40 21 85q-46 -4 -68 -4q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q76 66 182 98t218 32z" />
-<glyph unicode="" horiz-adv-x="1984" d="M831 572q0 -56 -40.5 -96t-96.5 -40q-57 0 -98 40t-41 96q0 57 41.5 98t97.5 41t96.5 -41t40.5 -98zM1292 711q56 0 96.5 -41t40.5 -98q0 -56 -40.5 -96t-96.5 -40q-57 0 -98 40t-41 96q0 57 41.5 98t97.5 41zM1984 722q0 -62 -31 -114t-83 -82q5 -33 5 -61 q0 -121 -68.5 -230.5t-197.5 -193.5q-125 -82 -285.5 -125.5t-335.5 -43.5q-176 0 -336.5 43.5t-284.5 125.5q-129 84 -197.5 193t-68.5 231q0 29 5 66q-48 31 -77 81.5t-29 109.5q0 94 66 160t160 66q83 0 148 -55q248 158 592 164l134 423q4 14 17.5 21.5t28.5 4.5 l347 -82q22 50 68.5 81t102.5 31q77 0 131.5 -54.5t54.5 -131.5t-54.5 -132t-131.5 -55q-76 0 -130.5 54t-55.5 131l-315 74l-116 -366q327 -14 560 -166q64 58 151 58q94 0 160 -66t66 -160zM1664 1459q-45 0 -77 -32t-32 -77t32 -77t77 -32t77 32t32 77t-32 77t-77 32z M77 722q0 -67 51 -111q49 131 180 235q-36 25 -82 25q-62 0 -105.5 -43.5t-43.5 -105.5zM1567 105q112 73 171.5 166t59.5 194t-59.5 193.5t-171.5 165.5q-116 75 -265.5 115.5t-313.5 40.5t-313.5 -40.5t-265.5 -115.5q-112 -73 -171.5 -165.5t-59.5 -193.5t59.5 -194 t171.5 -166q116 -75 265.5 -115.5t313.5 -40.5t313.5 40.5t265.5 115.5zM1850 605q57 46 57 117q0 62 -43.5 105.5t-105.5 43.5q-49 0 -86 -28q131 -105 178 -238zM1258 237q11 11 27 11t27 -11t11 -27.5t-11 -27.5q-99 -99 -319 -99h-2q-220 0 -319 99q-11 11 -11 27.5 t11 27.5t27 11t27 -11q77 -77 265 -77h2q188 0 265 77z" />
-<glyph unicode="" d="M950 393q7 7 17.5 7t17.5 -7t7 -18t-7 -18q-65 -64 -208 -64h-1h-1q-143 0 -207 64q-8 7 -8 18t8 18q7 7 17.5 7t17.5 -7q49 -51 172 -51h1h1q122 0 173 51zM671 613q0 -37 -26 -64t-63 -27t-63 27t-26 64t26 63t63 26t63 -26t26 -63zM1214 1049q-29 0 -50 21t-21 50 q0 30 21 51t50 21q30 0 51 -21t21 -51q0 -29 -21 -50t-51 -21zM1216 1408q132 0 226 -94t94 -227v-894q0 -133 -94 -227t-226 -94h-896q-132 0 -226 94t-94 227v894q0 133 94 227t226 94h896zM1321 596q35 14 57 45.5t22 70.5q0 51 -36 87.5t-87 36.5q-60 0 -98 -48 q-151 107 -375 115l83 265l206 -49q1 -50 36.5 -85t84.5 -35q50 0 86 35.5t36 85.5t-36 86t-86 36q-36 0 -66 -20.5t-45 -53.5l-227 54q-9 2 -17.5 -2.5t-11.5 -14.5l-95 -302q-224 -4 -381 -113q-36 43 -93 43q-51 0 -87 -36.5t-36 -87.5q0 -37 19.5 -67.5t52.5 -45.5 q-7 -25 -7 -54q0 -98 74 -181.5t201.5 -132t278.5 -48.5q150 0 277.5 48.5t201.5 132t74 181.5q0 27 -6 54zM971 702q37 0 63 -26t26 -63t-26 -64t-63 -27t-63 27t-26 64t26 63t63 26z" />
-<glyph unicode="" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
-<glyph unicode="" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" />
-<glyph unicode="" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
-<glyph unicode="" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
-<glyph unicode="" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" />
-<glyph unicode="" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" />
-<glyph unicode="" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
-<glyph unicode="" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" />
-<glyph unicode="" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " />
-<glyph unicode="" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" />
-<glyph unicode="" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
-<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
-<glyph unicode="" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " />
-<glyph unicode="" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
-<glyph unicode="" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
-<glyph unicode="" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
-<glyph unicode="" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M1397 1408q58 0 98.5 -40.5t40.5 -98.5v-1258q0 -58 -40.5 -98.5t-98.5 -40.5h-1258q-58 0 -98.5 40.5t-40.5 98.5v1258q0 58 40.5 98.5t98.5 40.5h1258zM1465 11v1258q0 28 -20 48t-48 20h-1258q-28 0 -48 -20t-20 -48v-1258q0 -28 20 -48t48 -20h1258q28 0 48 20t20 48 zM694 749l188 -387l533 145v-496q0 -7 -5.5 -12.5t-12.5 -5.5h-1258q-7 0 -12.5 5.5t-5.5 12.5v141l711 195l-212 439q4 1 12 2.5t12 1.5q170 32 303.5 21.5t221 -46t143.5 -94.5q27 -28 -25 -42q-64 -16 -256 -62l-97 198q-111 7 -240 -16zM1397 1287q7 0 12.5 -5.5 t5.5 -12.5v-428q-85 30 -188 52q-294 64 -645 12l-18 -3l-65 134h-233l85 -190q-132 -51 -230 -137v560q0 7 5.5 12.5t12.5 5.5h1258zM286 387q-14 -3 -26 4.5t-14 21.5q-24 203 166 305l129 -270z" />
-<glyph unicode="" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
-<glyph unicode="" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" />
-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" />
-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
-<glyph unicode="" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
-<glyph unicode="" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
-<glyph unicode="" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
-<glyph unicode="" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
-<glyph unicode="" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348q0 222 101 414.5t276.5 317t390.5 155.5v-260q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 q0 230 -145.5 406t-366.5 221v260q215 -31 390.5 -155.5t276.5 -317t101 -414.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
-<glyph unicode="" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
-<glyph unicode="" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
-<glyph unicode="" d="M825 547l343 588h-150q-21 -39 -63.5 -118.5t-68 -128.5t-59.5 -118.5t-60 -128.5h-3q-21 48 -44.5 97t-52 105.5t-46.5 92t-54 104.5t-49 95h-150l323 -589v-435h134v436zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
-<glyph unicode="" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" />
-<glyph unicode="" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
-<glyph unicode="" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" />
-<glyph unicode="" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
-<glyph unicode="" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
-<glyph unicode="" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
-<glyph unicode="" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
-<glyph unicode="" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
-<glyph unicode="" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
-<glyph unicode="" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" />
-<glyph unicode="" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
-<glyph unicode="" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
-<glyph unicode="" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
-<glyph unicode="" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
-<glyph unicode="" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
-<glyph unicode="" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1112 1090q0 159 -237 159h-70q-32 0 -59.5 -21.5t-34.5 -52.5l-63 -276q-2 -5 -2 -16q0 -24 17 -39.5t41 -15.5h53q69 0 128.5 13t112.5 41t83.5 81.5t30.5 126.5zM1716 938q0 -265 -220 -428q-219 -161 -612 -161h-61q-32 0 -59 -21.5t-34 -52.5l-73 -316 q-8 -36 -40.5 -61.5t-69.5 -25.5h-213q-31 0 -53 20t-22 51q0 10 13 65h151q34 0 64 23.5t38 56.5l73 316q8 33 37.5 57t63.5 24h61q390 0 607 160t217 421q0 129 -51 207q183 -92 183 -335zM1533 1123q0 -264 -221 -428q-218 -161 -612 -161h-60q-32 0 -59.5 -22t-34.5 -53 l-73 -315q-8 -36 -40 -61.5t-69 -25.5h-214q-31 0 -52.5 19.5t-21.5 51.5q0 8 2 20l300 1301q8 36 40.5 61.5t69.5 25.5h444q68 0 125 -4t120.5 -15t113.5 -30t96.5 -50.5t77.5 -74t49.5 -103.5t18.5 -136z" />
-<glyph unicode="" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" />
-<glyph unicode="" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
-<glyph unicode="" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
-<glyph unicode="" horiz-adv-x="2304" d="M322 689h-15q-19 0 -19 18q0 28 19 85q5 15 15 19.5t28 4.5q77 0 77 -49q0 -41 -30.5 -59.5t-74.5 -18.5zM664 528q-47 0 -47 29q0 62 123 62l3 -3q-5 -88 -79 -88zM1438 687h-15q-19 0 -19 19q0 28 19 85q5 15 14.5 19t28.5 4q77 0 77 -49q0 -41 -30.5 -59.5 t-74.5 -18.5zM1780 527q-47 0 -47 30q0 62 123 62l3 -3q-5 -89 -79 -89zM373 894h-128q-8 0 -14.5 -4t-8.5 -7.5t-7 -12.5q-3 -7 -45 -190t-42 -192q0 -7 5.5 -12.5t13.5 -5.5h62q25 0 32.5 34.5l15 69t32.5 34.5q47 0 87.5 7.5t80.5 24.5t63.5 52.5t23.5 84.5 q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM719 798q-38 0 -74 -6q-2 0 -8.5 -1t-9 -1.5l-7.5 -1.5t-7.5 -2t-6.5 -3t-6.5 -4t-5 -5t-4.5 -7t-4 -9q-9 -29 -9 -39t9 -10q5 0 21.5 5t19.5 6q30 8 58 8q74 0 74 -36q0 -11 -10 -14q-8 -2 -18 -3t-21.5 -1.5t-17.5 -1.5 q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5q0 -38 26 -59.5t64 -21.5q24 0 45.5 6.5t33 13t38.5 23.5q-3 -7 -3 -15t5.5 -13.5t12.5 -5.5h56q1 1 7 3.5t7.5 3.5t5 3.5t5 5.5t2.5 8l45 194q4 13 4 30q0 81 -145 81zM1247 793h-74q-22 0 -39 -23q-5 -7 -29.5 -51 t-46.5 -81.5t-26 -38.5l-5 4q0 77 -27 166q-1 5 -3.5 8.5t-6 6.5t-6.5 5t-8.5 3t-8.5 1.5t-9.5 1t-9 0.5h-10h-8.5q-38 0 -38 -21l1 -5q5 -53 25 -151t25 -143q2 -16 2 -24q0 -19 -30.5 -61.5t-30.5 -58.5q0 -13 40 -13q61 0 76 25l245 415q10 20 10 26q0 9 -8 9zM1489 892 h-129q-18 0 -29 -23q-6 -13 -46.5 -191.5t-40.5 -190.5q0 -20 43 -20h7.5h9h9t9.5 1t8.5 2t8.5 3t6.5 4.5t5.5 6t3 8.5l21 91q2 10 10.5 17t19.5 7q47 0 87.5 7t80.5 24.5t63.5 52.5t23.5 84q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM1835 798q-26 0 -74 -6 q-38 -6 -48 -16q-7 -8 -11 -19q-8 -24 -8 -39q0 -10 8 -10q1 0 41 12q30 8 58 8q74 0 74 -36q0 -12 -10 -14q-4 -1 -57 -7q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5t26 -58.5t64 -21.5q24 0 45 6t34 13t38 24q-3 -15 -3 -16q0 -5 2 -8.5t6.5 -5.5t8 -3.5 t10.5 -2t9.5 -0.5h9.5h8q42 0 48 25l45 194q3 15 3 31q0 81 -145 81zM2157 889h-55q-25 0 -33 -40q-10 -44 -36.5 -167t-42.5 -190v-5q0 -16 16 -18h1h57q10 0 18.5 6.5t10.5 16.5l83 374h-1l1 5q0 7 -5.5 12.5t-13.5 5.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048 q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" />
-<glyph unicode="" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
-<glyph unicode="" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
-<glyph unicode="" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
-<glyph unicode="" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
-<glyph unicode="" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" />
-<glyph unicode="" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
-<glyph unicode="" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
-<glyph unicode="" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
-<glyph unicode="" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
-<glyph unicode="" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
-<glyph unicode="" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
-<glyph unicode="" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
-<glyph unicode="" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
-<glyph unicode="" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
-<glyph unicode="" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
-<glyph unicode="" horiz-adv-x="1792" />
-<glyph unicode="" horiz-adv-x="1792" />
-<glyph unicode="" horiz-adv-x="1792" />
-</font>
-</defs></svg>
\ No newline at end of file
+++ /dev/null
-%PDF-1.5\r%âãÏÓ\r
-1 0 obj\r<</Metadata 2 0 R/OCProperties<</D<</ON[5 0 R 34 0 R]/Order 35 0 R/RBGroups[]>>/OCGs[5 0 R 34 0 R]>>/Pages 3 0 R/Type/Catalog>>\rendobj\r2 0 obj\r<</Length 8373/Subtype/XML/Type/Metadata>>stream\r
-<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
-<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27 ">
- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <rdf:Description rdf:about=""
- xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
- xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
- xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#">
- <xmpMM:DocumentID>xmp.did:F97F11740720681183D199358445B435</xmpMM:DocumentID>
- <xmpMM:InstanceID>uuid:3b1a2e5a-6570-d748-9262-d414abc407b1</xmpMM:InstanceID>
- <xmpMM:OriginalDocumentID>xmp.did:FA7F11740720681183D180399A3120B4</xmpMM:OriginalDocumentID>
- <xmpMM:RenditionClass>proof:pdf</xmpMM:RenditionClass>
- <xmpMM:DerivedFrom rdf:parseType="Resource">
- <stRef:instanceID>uuid:6eda8949-3d62-5c40-90b7-a6e00662e8d5</stRef:instanceID>
- <stRef:documentID>xmp.did:FB7F11740720681183D180399A3120B4</stRef:documentID>
- <stRef:originalDocumentID>xmp.did:FA7F11740720681183D180399A3120B4</stRef:originalDocumentID>
- <stRef:renditionClass>proof:pdf</stRef:renditionClass>
- </xmpMM:DerivedFrom>
- <xmpMM:History>
- <rdf:Seq>
- <rdf:li rdf:parseType="Resource">
- <stEvt:action>saved</stEvt:action>
- <stEvt:instanceID>xmp.iid:FA7F11740720681183D180399A3120B4</stEvt:instanceID>
- <stEvt:when>2014-10-05T21:14:38+02:00</stEvt:when>
- <stEvt:softwareAgent>Adobe Illustrator CS6 (Macintosh)</stEvt:softwareAgent>
- <stEvt:changed>/</stEvt:changed>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <stEvt:action>saved</stEvt:action>
- <stEvt:instanceID>xmp.iid:F97F11740720681183D199358445B435</stEvt:instanceID>
- <stEvt:when>2014-11-24T13:19:45+01:00</stEvt:when>
- <stEvt:softwareAgent>Adobe Illustrator CS6 (Macintosh)</stEvt:softwareAgent>
- <stEvt:changed>/</stEvt:changed>
- </rdf:li>
- </rdf:Seq>
- </xmpMM:History>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:dc="http://purl.org/dc/elements/1.1/">
- <dc:format>application/pdf</dc:format>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:xmp="http://ns.adobe.com/xap/1.0/"
- xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/">
- <xmp:CreatorTool>Adobe Illustrator CS6 (Macintosh)</xmp:CreatorTool>
- <xmp:CreateDate>2014-11-24T13:19:45+01:00</xmp:CreateDate>
- <xmp:MetadataDate>2014-11-24T13:20:59+01:00</xmp:MetadataDate>
- <xmp:ModifyDate>2014-11-24T13:20:59+01:00</xmp:ModifyDate>
- <xmp:Thumbnails>
- <rdf:Alt>
- <rdf:li rdf:parseType="Resource">
- <xmpGImg:width>20</xmpGImg:width>
- <xmpGImg:height>256</xmpGImg:height>
- <xmpGImg:format>JPEG</xmpGImg:format>
- <xmpGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAAUAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYqshXjGBxK7k0
Jr1JOKr8VdiqhbX9lcvKlvPHM8JCyqjBipIDCtPEHIxnGXI8mEckZWAbpXyTN2KpXpHljQtIubi5
060S3luqeqy+CjoPAV3+eUYtNDGSYircbDpMeIkwFEppl7kuxVjOg6d58i1ua71zVbW40143WKwt
ouASRnBVgxUPQKKfEzdT9E5GPQM5GPQMmyDB2KqNncPcQCR4XgbkymKQUYcWIrttQ0qMVVsVdirs
VdirsVdirsVdiqG0/UrDUbYXVjOlxblmQSoajkjFWH0EYSCOaonArsVWQwwwxiOGNYo1rREAVRU1
Ow9ziq/FXYqp29usEQjVmYAk8nYs25r1OU4MIxR4QSfebLOczI2qZcwdirsVdirsVdirsVdirsVd
irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdi
rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVQWkSavJZ8tViihuizfu4GLKE/Z3P
f/PbphlXRUbgV2KoWy1K2vGkEPI+maMSCBUMykV+aHIQyCXJrx5RPkism2OxV//Z</xmpGImg:image>
- </rdf:li>
- </rdf:Alt>
- </xmp:Thumbnails>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/"
- xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
- xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/">
- <xmpTPg:NPages>1</xmpTPg:NPages>
- <xmpTPg:HasVisibleTransparency>True</xmpTPg:HasVisibleTransparency>
- <xmpTPg:HasVisibleOverprint>False</xmpTPg:HasVisibleOverprint>
- <xmpTPg:MaxPageSize rdf:parseType="Resource">
- <stDim:w>300.000000</stDim:w>
- <stDim:h>5572.000000</stDim:h>
- <stDim:unit>Pixels</stDim:unit>
- </xmpTPg:MaxPageSize>
- <xmpTPg: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>
- </xmpTPg:PlateNames>
- <xmpTPg:SwatchGroups>
- <rdf:Seq>
- <rdf:li rdf:parseType="Resource">
- <xmpG:groupName>Default Swatch Group</xmpG:groupName>
- <xmpG:groupType>0</xmpG:groupType>
- </rdf:li>
- </rdf:Seq>
- </xmpTPg:SwatchGroups>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/">
- <illustrator:Type>Document</illustrator:Type>
- </rdf:Description>
- </rdf:RDF>
-</x:xmpmeta>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-<?xpacket end="w"?>\rendstream\rendobj\r3 0 obj\r<</Count 1/Kids[7 0 R]/Type/Pages>>\rendobj\r7 0 obj\r<</ArtBox[0.0 2241.62 248.667 5562.74]/BleedBox[0.0 0.0 300.0 5572.0]/Contents 36 0 R/Group 37 0 R/LastModified(D:20141124132058+01'00')/MediaBox[0.0 0.0 300.0 5572.0]/Parent 3 0 R/PieceInfo<</Illustrator 38 0 R>>/Resources<</ExtGState<</GS0 39 0 R/GS1 40 0 R/GS2 41 0 R>>/Properties<</MC0 34 0 R>>/XObject<</Fm0 42 0 R/Fm1 43 0 R/Fm2 44 0 R/Fm3 45 0 R>>>>/Thumb 46 0 R/TrimBox[0.0 0.0 300.0 5572.0]/Type/Page>>\rendobj\r36 0 obj\r<</Filter/FlateDecode/Length 15802>>stream\r
-H\89ÔWË®d·\rÜ÷W\9c\1fè3"%ê±Í\18ö*\b\12/ò\ 1\8dÄ^ÌM`gáßOUQýº \9cu0À\9d.IGâ³H~ùÓ×ãË\1f¿\96ã\ fß}=.ålæ\aÿvü\8d¨Ç¯?]¾üðc9~ú×å\97Ã\8e\82\7fv\98\9d%¢\1f7;×´ãöqáÎÇåª~\íì%\8eo\97k\ 5nÇu\9d-q;W\8bãê|da\81Øq>Nw\ 3¶vÎÚ^\ e\98ãD}Þ\80\8dÕÚó\85uÎ9ñøý*+g± øóåï\97?_ ó9¸\ fM>i0ìhQ\165X\9fU\18\9fT\88\14`ÜUè\9fT°\82ßU¨\9fUðç\rRÁßU\18\ f\15ì³
-¿@²\88áG-å¸êׯ\7f»üõøÇ\7f÷×SËqƲzx+\10 û\8b\92ãì&\95fPÀzz\9axù\1dR¼~ÎR\81çÙVâ±(¯ÕÓ
-\16\1c\96©<\80\rKØh ;Ý^·±\90\16Ë\ 5\18Ô\16¡\9f\1eþ\84vÖîÇ\8d\ 6wØåjë4\98\810\85\19ë\ eÚÙëÚG¥Æèé©Ñfb=SJ}AA\19\12áK\19'±=Mý°\9dw8\vZ{\9d\85f\19/\11\92Ö£ñF¾JëÑx/PÆãÅ×´\9e\8c\97Æ õà\95\87ud=A\ 5\v\8cgÏÝ4Ý\86´T\1cÛn\eÐjÈ@:\rÖ\97Í\86öæ±m¶\ 1m6t\90\90z\87|=Ú\10â\8d4Øýw<Öo\974\16ÑÃT\8cQÆÞðø\8fìÂS¾\16\ 4m~ÎÕã5»ÎÖ\98\8e0S\9f\90÷l÷\9fP@\8a\10Â`qflôÅ@\1ec&PrÔ¾ÏMà\ 1C+O±Ó{â4$c¤ÖsfÈ.ð\107\83\87ÇY|\12\8ev\87\83W·êyºÃÜÄ\8d>¤\91)5ì£mj}\i\81\17\9eá¿w3thD×ú\98gïV\88É\f\11Ó|\13çLd/9¤\99¢\ 66¬N\16\9a´åVÏûÌ\95j\198Õû^¨/\v\8c\96ù8\81K\1c×\96Ç\ 2îp\840\8c-\88¤r\ 6¯'ÄjõÓ¦L|_hç¨J¾(\84È\8d:Å_ðÄ\1dÞÀce&l²9¬[ý±/3Ò³¹@¦@´V^\ 4'ù\83XÈ$`PKâ\f©³\16ó\eVjsí\85)Þ¡T8]JßÐÒ\1ec¦\9fjÝ6´Hf\96¾X\88ð¼qòFؽ®L·\98=\1dÓäÛ\92$\ 2\ 1A1\1fº²tÑQ^Ùö\9bHâ²6Æ÷\1d\9f-2U\86\aRd\19E\16M\9bÐf\9eXF{\18õ~\0²0\0î\v׶]RÏÊ\ fÛÓe\83>à\ 2\8d\ e\97ZÛû]\ 2\99½À\8c\90<î[\9f|.ÎÒÇ^hüà®n¢±Ú\ 3ÞvPÞ\8fÓeoöúö¿\98¢²v\ 5)-\16ø\vÇ\1e9ÒŧåT:$\18gó¦7¨3\90©Ü\f\98ü%µñ4r\8d°÷O\99Ï\c\8a!\8b7Æ\7fÔ\eâ·\17Ô@w\8c\7fb°/Â\90\8cN\10\874n\89ê1ϲæý$\95,\8a+\84d\87p\80\99 ~Vë
-3\16þßá\f¸µ\a2T\9c\ 1G´\17Ò iMmÂ5\²¼ôH2*I\13\88\17ØLìTï¼\113Ëìî_
-C\ 6¡Ù[\16,U{(\195\ 3\ e\95o/\88ýH»\82&TÊ\90\94m\97{õKC\9d\9bBÈ[\9e\98ù"ª\0\99Ámó\1d\\87ÒÅ\90¦ç2 6¯´\91\89Û{Ý\alwLj©pCU\vUÕKé\8dì±\96(:\17\1e~n{!^\17\909}Þ\17è\15\84æã\vÜ \8b2@"Í@®
-!\86¿w6\ f\89L)O\8e\9avw\0ïbg\95è\ 6Go·]=ÙC»þd\a5NùiÍZXP/ó7\9e\eLR"&/\ 2\1dò\11I\8f¢¢ò\80©V\9eÖ\ 2ʵí\96ÚÚØ\v\8d\1fX{El\9eîð\96\86¼\9f\1eé\1c\98\87\84c\ f\7fûþBþn; \16\8aiÂ%éZÛÑDÙ\89Ãî\ 1û4ÁÓ<ß\1eÍ®f\ eãÌñåû\8fr|÷Ï×ußë\96ë¿C.hzÑ\84\84G\907æ3\93\9c\ 1Ú\95>ü\89y\85]Ö86\80H,S\8f-ÒÉM'á|¸>Ô8uò\80+\8dj6 !÷\+\8a½TwR©«Ï\9d:Qò·Ú¼W\ 6øË\ f\97$ùß\8eÿ\17ñ\8b\9eÿùò£\À±\ 1þ%\v\7fr\ 1\94¨p7Ƭ\89[\9a¿Ó\19r\81\8c©tI²ß\0D\ 3\10lW¯LýÅU\9fleN«Ê6\9b¡l\ 1ý\12Å\1e\a\14éÈ\8cd<\1fÚ\8d\1c#( ÑÒYpr¾Ö\³\98Uí¢á\97ðl\94c¨\91_Xú`§\T)V°\13\876\ 2 kV\98\95Ý6M\r»\r\15\186\7fè\ 1Á1h8XtX²\ 6ÁÒô\ 2fbuA¥\86ýp\ 2R\1a³Í\0\16\92\ 2\ag\90\0\0õ\19+Ú\12\ 3\12\föçF\99\0VU\ 3fûBc·n³\1ej±x\90³)@D×\85\1dù\ 2Øq1
-MÕÞ\0\93BDÈÆ\1d[Ò¥åA&±£uQ\1d\\8c$\95\ 3ÄÓ\94\9b\¬Á::ØÊ[¨ÿ\9dêë_ÌH\19\aú\9bP³ÿA\14DÁ¹c,þ\1cKs\a\1c\88&JêCx¸¬Ã\8d\14¶/îÌE\93\150Þ8M¤<ÕºA\80E#\19H\b²qÐy¾wc%¶%Òf\1c\7f¨Ãä \0Õ \ 2\97ÑC°\84F\12å\10
-\r\1cø!Å]~æ']\87dY|\92Ü\1c³åÙ\10d\f\10àu Ñ\13A9\12o\8b<ª¨à \82ß¾^\ e\1a'G º\ f\1ac Øô"\99ÏrBB\1a/\974½Ó\1dÄCO6I¼\8b\8aÜòf\ 2µ.ÆÉ\91õ]&\19È\81õÐ\88Ý\95?\f\84A\90zq¬³ü\96¥\9eF\by\7få;½ÉýlÃQ}\8aÉ|pàÌÝ\8c\876¥\f;r :Ôh¼\97íµÌÁ\12Æ@êBjÀÞäÅÙ\9c\87x\13®ÿ ^¡\9b\eÚ\1ccðTíÂ0\8cë*£±\87S±ëÝS
-¥\80$æMJÅ\91ÎhuäYæ\1f]\8c\10÷¤/i3\89lû´Ô<Ë\81\89\95wè&\99§eÖME¤\85¢Wò\e\1a\b\8e .íØÏ\11¥½9\89\ 1yÊ\80]Ï\9bD\ ffztÑCof@BÂ>K\rÉ\ì=\80Ã\12#¶\89Øé\ 2Áɾ\ 3\14eTÑ\ 3¬¸-"6 A&\ 1E¶)J/B,\13y6\bÙ\ 5\ 1T¤'Ç*\17²\8c$NS7Î\7fkdäB Y\94G\ 5ÿq6äYÓ\9c\94gIzjRymQ\90£ñxWL\95m!À@\efu\dZ~\16
-'Ð,\1d\86 \bi4t-¾ê\92mè9\82öúÛ\8f¹Ï4²\fÞÖyq%\94\17È\9d][«f\ 1\ e)hýÃDfP\8a\99 Qé\9a\9bºVº
-5\87{\95a\80Èé:IG/Õ\93\eç\aÃ\87\88\e$\12\v1_®[¥\87²8\a\11\10£\18Ë\>\9e*\8bM<\rÀ\a\0p\13@\9b:¨¸ç\1eDÇÅ\88Z~UH\91TÂa\ 5°Q Îô@ND\80`U\80:D«4\bB\13¯@\1eE&`k¼1h\ 3Ì\ 6\8d\97\18Äz\93\91#ãP\8c\ÙuW6\ 2JhUøÐ ¹vIoÙß\97ÂAÊ¥/·\aâ\fا\ e³\9e\ 1i\82éR\98ã\8eF[véjLªÚá¦6\80M³©[f\93_44Ü45ÍÉo\83s\a)\92íÈP_\8bJÇò\8e*\99#/0Ë º\94\96»ä\81SÓ\b\92\82éªq&\8f²sÛ½\ 5\13È\b¢ª\1f^\9d·Ú
-\1de硪\8a\ 2tE\9d&ÓÃ\8f\9aG¨2Ò¤\92Z\0ÙQ¸ú&\92\85~\ fþ¦Å ¹ë\188³
-ò¾®ÚÈ)T\13\ríÏ*´\ f\1a\83\fíÕä^! \89o\ 1\9c\12\85B\ 6SÝ`Ës\ 6¢ä\1a\9aä íÐ\98²(lMMjr6>[lº¤Ôà701)\18ñeÙ\7fÉT\8bÃ\88\8b\94\b\ \8d½£ûÖ¤",³x×\86\14A\1aQ\91 äÝF
-È\92Ç\160xp±/\e:f¨\0pÿ\yÌ\95 \9aî\9a²ª©;P\87ÈßÕóÝ@Tá\0gDÖuÞQ§f4&\an\bÅNS\8a´\1cYCö\81y\9a¤]Ì\82Öû6´1\93\8a\1cb\83Ç\98\8e\12\90\89\94\8ecùeÛ\88}úº³Ûé`S\ 4\ 5I°ï\12ye\89!iIݬMC>%\0Ie"ßC+v\83\89ͥ氹N:îÀÅÿ¦º\r$É\8d º¯Sä\ 5²Áÿç\ 4\ 2\ 6ÐBÒ\11\ 4H\80 -f6sý±g\16YÓB£\váI\ 6\83tº\9b?¯-\9f®\rY»Ë\9b§Àé-\9a½æ«\ 1XOî\ e\96?.ÄBçüzý\fr\9f\1f¹ºêÄä\10ËCòäq\98\80Û\93\97¦)Sæ,\b(HðYo*éÀýÃÀ¶hÃû\ 5¤£>\ 3ûà\18\80£æ\922¤eý´\ 2Ãe*WV]LnqïéHÖÚ®vo\18Ðeªmw\18½\99\99\1c \9aTW\180).À°æÆ\83ô\ræ¥ï\1a.ùg¥o©ÅmÀ)´\b0¤0¡ë\13+"Y\1f\0\90\7f*Ö\98Ù\7fõÄ;]G\9dZb~#.u5\80_\82u´næ\9d\e\1eu§q\9aQ\81(\8d=Laãz.u©Î\90íq\92j®¢ò\18!f1Æ\15¤)\8d ª
-\89HÅï
-\82\8ce.TQ\ 5:JýôAæ'¿î\fwGa\941\9f\ 4õ«s\ 2\96ò£\95º!ïî%H\aYS O§\1aG°\17p¨\ 5\vp\85\8e³u\8d¸1fµmÜhlfxÃ&\93]<wÔN\85\85ãì\b×ÛÃnÆ\13YØ×·w(Y\1d\86À\98.Ôl\13+`5t\9e°\1dz»>[XËEq^\9f¤l\1cÛ®á\ 1ÿ¶W/¡\189T\81ѵ÷´\89Õ'ëQI\88Z\a\96å&\83\8e\11ãîÀ÷òTD¾z*\82G\88¦ÁÒiyq¸M\85Þ³ìòG§rR\16\ 5\ 3øÖÞÙÂòÜîæ\88¹µæÂ<u8T8_'\12\1fH%
-t\96³}\85´\9a²Æ²\8b\b\ 3Yä ¾5!2zìë\13/Üfç^\1dPëöîuÊy¶{z\ fðN\8eÖjÿܾ¬\9eÀèVÀÞ\13ÿÓ1(k\ 5²Ëô\9b;-ܶH{]³2õ\95=¤má\9aØïÓ\ 3î\9dKÛÅ}\12\10¬\vÞ#]Ó4\1dõ4Tæüöd\97V\17cÝT>Z±Åª;½_±\fóÍ\19øí>wm\ f\1aÛ \99ù¹^¨\84/*Æ9åöÌ.Nì
-îáUf³\ fääêQúÎ>\92j8êÕu7ÝË\14\13µì\9dö¯(\ 4:°dn¿¼¸âv¤×[PÜu\9fk)Y°BÜ[*!\8b\ 5\81X\17,lÒ¾Xú±\8aGÁ\1c{¡#yØ\99Îw.\{$\f2ö\85yçõ\ efgdÜgb©(}Ó\8dkç-|MÐ\92ÞÔ\91å\9a%s)>\8fKB'G)`p'ç\1f¦ÿ¾rü±\ 1þ£\88\92qt+Ò°Í\97ék\84R{<[¬\98ð2\86®\89\1c¯vÙ@½ë¼\8f\8f*\95ºÊå]µëÚ`ué 60\8d\1f\9aH#90\95#\9d³§Úo\8ckò&×ÿù5\8a\vªL\15å\81Z@\ f[\1e\90Aúʨ\å\80$\19\9bª\15\18ë\18ú/\13ý²²õfÅ¡ú)qSÐôëîC)°¼áN^\v\96s\16nÖܪçFקPò\ 5.I\8f\8cÇ7\ 3Ïê\83\8e rá-J\14Áµy^Ï¥\f~t\8c\13ÀÍ\ 6u\90\8cÆpãÔ\89Åë!kÓ¹TÊJ\18U·-Ý%9Êä¡kÕ:ƼÈ\12ù×\9dÀ\9eV\ eh{\8fE\89\92+\ f;5×ÀØ+ >Él}o3Dpwk\16F\ e¸O&öº}ÞÆXs%\87\\10v¿UÇ3\11\8eoé 5ÑÆ\91üµÀ\8a´ä~\1a¶j\80\95ÈKZ\16é\9av\ri¥é0¾ÐEê\f\82\88.IQ ¢Üɺº¦Ö¬^\82\ fZ\18×¹\13\18¡yiÁg,\e;Cã\9c§$ºkù±\/×öÌÝbUO=iè¢Ú\10ü2*h\1fBÝÙ\ÃW7ëV×\r\1a-\1a\15\89xs½o°¥rqÛ¢\ 2\ 2É\8eH
-¥n\ 2»º
-PVÀp
-\9c*4IVZ-Ôû\1aÒ\aº
-\83{t\e¹\1aËÌ\ f\95È'´,Ó<\8ftOohFñzz\87åë\87 aU\85l³6ÑÞ1ª»¸æ<^4\9a©âV\1få:ûú\8dC\1a@Ua\11\1eB¸\8a<\ 1T·ó\1c´\10Ü\0\98ç|\87\14\1d¢Íù\8cɽ\12\8fo\82\96|Û^ L\88È\99i\aøOç\82\17\96IØ\9e\1f}z\7f5^¨½[\ e\9aï\b\9d\89+µ/OìV\Ú\98\85\1cx³2B¦>ÔØÖÝt§ÉHj¨û6J\8c\9c¸½¥^]ùÜu½\89kÎáV¯\88\17º\13\ 1'ù^¨©ñÙÜ^"\9fjô¬Í/-w\8d\ 4¨_3.é¯\9b¦ßDÕöË4KȪ\8eßÉÈL+1'y3s\ 1Ó!Y>q¾u©Å\90÷n\8e\15Þò1nÖ£\9c¾sR8Àm`\91\92\92zÝV¤\14\9e¿Ù±²î\r²ú0¤W1»¿i\1d{¦.Ý\e7Ö¼\10Eõ\89xn\98Ð\ 4`\9f\86¢\9c\95\10KCÑ\1d\8c%\19Þ\92fc¦¥A\98Õ¥uBÏmÃûºü¼©Ôøì<Õî\r=l·{\85\b\ 1nØ\v=$>#}°À~fw7t4\87Ï0Å\90Î\91z\86M1Àî\16î7pWóËöúT×Å\ 2t\14\f\1fÅÓ\9bV²?ó\8ft\8f\1fü\81a<c»kØ\×£§Ögú(þÁ\99
-ksí¢/Τí\1c\1cC»{\9eíó5\15®æQ`T\16\17ÄI¹/Ys<s+\19¨\1fFÖ²\9fdö\9c´Jî0ÛyüHÙ~¯ä\13~\9c6#²ô\85\e\93Î%Ó}\ f+î6C.Ì\15\vÄÇ\9aÏäÆMÂæÇwHL¼WbòiþÞ0\85\ 3\90Þ°9Û/z\80ë§Ãã°#tìXº¶Á\88ÈXÖ@;~\7f\14\11faÍå\0=\89¬å~Ðv¾HµùÓº\91s\97º÷6¢\11¢Ó÷9\1d¡7;\ 2×QO\97Omá4OíDZ1\9a·àI
-ÌêHGi4W\0Õ¼\85;|]·g\v¹Ø\11\19\9e9Z \84:\11_C[ÊáY¿Ï f<^\98©wûqé#oOX{\ fZç¹\90n\1e!«wb§DÌÎyB¥ÙÜç\13v\8d\8bKS\91·[\840±±]!î\13ÓÚà£5^M[¼-
-\1aÓoiÒmÏôBèp¬\ 4\1eê%\130wz\97Èñül}eÜÜ@\11>ÖÐE\84©Å;\91ÔñL_fN~pú®¸½\19\7fÞ5\10o\95ôì\9dtÔ°k\99h1;Áµ"\83\13³ígòmÖåãdÕ\8dDÁ)\9b\98=\92¹7Ê𯯿I\84Ñèüÿíß_¿¾ê«è_}\rj½N?k!?©´ÿûbH\7fuuÃ\8aM!(~\1c~t1(;:\ä{%\86\8e¡ç\8bįÉÜ1\9eª@ \1e\15\17H=ks\8cðÚly^)<\8dâAû¢ß\16soÞóÜk¿\16Ë[,ý¼q\87Çûð_3\90¶\ 2öÉ¥\ 4¤hÆ ¥\1aØù¹y\8a\ 2¯\9a>Ã\8aÅ5»\19°\8b5\8aâÚ:k\97J=u¶k¨\83\9e`05ÊE\9dHë.h\87¢Þ=\ 4ú\ 1F6n3Hþè®l7µºdè`8TÑ\9f,çJ\85~²!ãLqMϽ×Ï´ph-\0oK=ÖM¾\ 2Mf L¬Ç\18T\rÊp&n\ 1+\1c\852v\8e[\96_#Ý«},ã\ 2¤Ê\91ï\ 2\8fó\1a\8b \ 1¾%/\88\96q\19\81\84\99â\7f{à8×9½zß\ 4ÐͧÚ}n5Vã"Î
-Ï\ræ\9dQCm¡\8e¹¿Mj¥½~·£s\e\ 5v?OdÚ\9c«}.Í\80±\1dùI\8b?ó@Ö¥<)\ f\ 6¥ï§<x\aZôîöJL\ 3jòlHª\ f\93<æt[\91\97ÌL\ 4\909ËA\809qÕ®\99hf: \86:ºãzfb\13¤pm^Ä\97\ 26'\auMVÉ`SÚ¹Ð\96îÂ\89FÄ\9f\9e\8b fUË,Îf\ 4nLÁûô9ÕÈ\88Õ\19é\19áKJ\7f:\1a÷"úÄñëÝ˳Լ\9fÅë§cùá\8d\97ãßM\9cëú\99\95\8aëms+\80`@ÌT\b{\ 3\12^Ëþ¥'s\9c»þºåÕÇJÄn'ÜnÒë9eñ"§âÅ\914\9c\8e\94$^\14\94ôöúÝcfR*ëú)6XóÚ\8bÚðëï\7fQ4üþ\1a¯¿Êø\8fþÿòú9z$¹g:zôíC\8a|«¨þþ÷ë\1fZ°~+\15ÕéÿU\18É\10'N\1d\9e21~Vái=<ö9Â\ eÈGXЯóô<ÓWz.
-¶¦G\16z±é\10õw§\85Zí¹Gáß%$¡¾a\ 5ÆÝ\ 6\ 5%Àì\81êó°¬ \81¤F2ÓT¨
-X,+t"ièÐ\ e%¹\0ªÕh\87æྫྷþZ\8e\ f\9eµ¥e\9dCT<«»\02¾T>Òû):\ 5oî\91\9aû \15»æ:{tbáìHÓ¥{\15ýL\13\8d¥ç\860´å\95\164\18\ 5´T\14Ã\14µ¬>\95Èj`N¡ñ\8dL\ 2¨\97©Ó,jÏÔ\948x¨ÓÉ®c2\1d:ëu%\90ÑÜ\r\9et$Ëj,ð\ 2\11ä\14}üè#ÞÉ2Á$>¬7ñá\1ft\97Ir\1d9\12\ 5÷u
-]\802ÌÃ\9dª·}þ\ e÷À'«ÍT\e)\83\89\8f\ 4bxCú\18\12\1aÿ\8etCgY<\8c\e÷v\84÷óX51)Ác9. H\1a¨\1c\80j1\11\9cÿìî\7f\13\ 4!\17ç°\95Aô\18µïV¬\1f\85\83ºÇ\96)Ìè\88%\7f\90Ý\9b\97ïUѽÈ\9fzï\ 4,Ç\1cµTº¡ZéGôÛJ\ f\14¹CÉ?£U\ 2ï\90c\92]M©\81²TåT}F\ 5MÓ/Uë\vZ±q=\9eà\8et;\81÷;\rT¨¨Mÿ«\88å ô:\ 4\8f&.ÌÌ\98úÑY\12}Fþ·\9f\8dl\1f[*\\8c\ 5éÌUÿ\154þ/±S³12±»Òò?\89\1d²Ù¨°ó\99ìÐ\9cQÌK\91Þ\1dËaÁ"\91a2xì\81\19Ñ´eIBÃ\8bo>-un½'lZ\9d´¡\84ÉÁ-1C=\1a\fÝ°b8\87m\152=\9ar=¸\bKHp\1d|@)\9ec\96b¾6\9f\r\9csÑ\1eþä\8a\15\87U»ð|/£»äÆhªM\9bÜA\93ãUÂIÆ=§\83\14.Ó\16\8fi\89\8e?ÑLü\8d.;\81~ë\15ðF¥\97\0\0\1d^\v·ô\82WÚbÖøu*\895`
-ÉUtÙqÎò\1cç·£\17\97ê¼\98AFQóÍF½LAÓç\9bÚiÅA\ 3[
-¼4\13\13Ú!\18³}\ 2Ö\ 1Y/ü\eÎZãgi9àÅ\96K¡Ãx¶ÿRÂ_!=Ú"°#\ f\1a-!V\1c\816êÙ¼B*\85[½\82Z{xËÓR\e5/'É \ 3\8e¥\ 2\ 1HåjO²×mx\12"®Ï\ 6§,\7f?²ßGàîIn\88 \91\85s\92(¬\0Üï\86\8bt\9dª:N$~\842\1aëö¾¹®\8f\1cÕé\E\87\93\9f¥´ê<§Z\8du\9blÝë\80m?åÍ·¹:%9\9cC³\81"_½ÏP"JL|ßé\ 4 \vab<5Äo\9aE\19þ¦\8e\94ðµø\8eNojTÀÿL U$\9bOL\9fþ¾µ\90-ÛSôF\80ØgÇÓ\13±Wþn\83\97\9dû\ 6Wv&/
-\ 6\90\w\r\1a*è&[!©Çç\80·å¤eóAâ\ 1µmæ\99*St« ÛÙùó\97ÈÓ\8cl\99Zè{ª \bZRÏ[H6\0\v7\1föF±6ã<0]î1¨D\1d+KÅØÑ\12ÛÓÅ"[\1c¡{äÕãà\ 4êÒSÕ\19 J\1d\8cs¹\8c.ör\99Å\80\84è\1a¨z¤¬\88ü\ 5°ÄW!l\9f\v G¥\86f×k*\e\8fÀ\ 2óõÀtvÏ\ 2Î\93Ǫ\90\85du\1eÈ\9f\84 \1dÉÖæ]\13\18\89¾)\15*Ã\88·B\vô®ûéÉÿW\ 5¶ó\1dõiÞ\86ÂêéêydÅ´\ 1\ 2\87wGßÕ\ 3h À©E\9c¹\ eI\18§\1dîqu£7\86>Ö5\11ç
-\0ÑK\93f\e\92èÝ\19Ä2Z\89CÜôeý·
-ðÆ¿<»\ 1
-}Xó¦\98\8beÃTE\18%\8d /2Æ\0G\80&'¸¹\90\f\11\ eÞ\ 1]qXúpHTq\91Ü1¹\9f¹\89\1d\ 3rõ-«¹ýÕ\17äôð\ 1\ 6á·û)Z\ 3ô*\9c«À\1d祥h\98îÊ\ 6M¬\9a\14q¦Ö\992Y\bï-\e¯\80\96åÌã\ 6²s\wsÄfS\9cvϵÓA\8c\9d&®¦£lO<Á\a\80áM\rUW\82Õù³qDNGÍ\83ÖéèùOé\1f\9fÞsí\1f¯Ú;\ 1ÌçT¾\11¦ÒHK\ 3Ò~%&òù®Ý{¾±ªý\8aH;ìÌcç\96IÙgÏí\98\90neÚ\83\95²©\15\ e6Xo%_µ±\9c)ÊÖ®0²i¿é\J\16ñ\93\86Lß\0` >8!¯Å¥yþÐS2l_¢j\81x\96Ò¢/þ>ä\89®éÚÑÝ\8czej\114Ó,-g^\90;(\97\12-\13ýÛ\98g\fE·ÀçùÔ®\9a\ f,*¢¤Z¼_T\fÒ"þ¾?>fÀ\8e\9b{b\94öC\8b]\11\18ͬFÓL¾2\95+hì-\ e\80/\9cýVÁ\86gþL\91åkö\19\1d\0L\8b³|\ 6Ñã^KVöº)JH\87øW`Ç2HÞPWL¿x\ 6÷Q¹\1csþAÒìùµRÁlÕÑ\ 3åÉûÚ\13\88I\1a°\10\9bÄLïß*\82ûtà\9d\8a$Ö#D\12üb§\9aj\9dÃ\9dÇ!4\12b\a¢\9dKD\97,\ 2ç\15\14ÇÄ_϶»|TR¨©\19\19Öª\bI\8d>òG}%·ø\9dUsÄ·ùYbâ\9dU\9f'\14ì\812L#\ 5À\95i\9f¶D;F\9b\ 4\12T\85æ|\10y¿Cñ\8e^G\f\82v*ÒÓ\1e\ 2\r9e\1c1hI6´\12Pe¯í\ 4¿øNà]\84àW\1chú<yîRúR9D¸/ë\98óº\1en¯è´\bÆa0k\91>\96h_MlÝê+pg\11,e\7fï\1e\11Å\vþ)\0`´Ä\11¤\ 6}{\12¶nî¹õ\vè\1f¬(?Ûq¿\b¨u\10\98\14\17\87¼è\e\1dc}\1a\ 1\83\18ÏS|^ ½ó\83Ä@¯\97®Z\ e²QØo´o¦ájmêÕ6󺺴¸\ 5\93²?u.ûWf6\ 2\ 4ÕÀþÕ*Q\ f-\9aë\90æÃ]áÙ\9euNQ¢\8c¯êqÂTò5EÉEå\94\14Û}úå×ü\b\ 4ì¬n\81\17c¦Ø¥½ÎÜßÍ?ß\80A}±ê2r½ó\91¡"Ùê\8béߢ\86>cr\ 2;\8aÞªu1`ø7Ò\14Ï\97¯ìÅ_`÷©)\14)
-QÕ²tú\12»\15?K $#D\11\82vp|\1c\ 2fâVz¯¡û+ ph¯Øê4ó¸Lóò\17¬Ý=\85RÛä¹iðÎ@§2axº*È\ e!õøÅJ_OV.*\8a\15\9b\ 2\92\0î¶m±&Ì,+e\8f©Ç9j$<¦Ð¿m¾fûoºò2êêy\1dÍHQ`¯)áûN\ 50õ¯ª
-»°X+\1c\91½\86\ezÞ\91\98£ób>\9aÆ)©uÏ«\88\93ö[öb À \wKNA£4°z'\8a\12Áº\99\8cFØ\9dÛ&PEp\93)#Á\11¬÷i¦æ«Ë!q\9b\18ª¯.\99"\ eÙpߤä\e\97#\94ýïð\9d²à¶ü°\15-*tÂ\86÷ù\1cj\12lî\15ÁH\8fTâ~_P~z©é\8e-\12\8d¬8Þzµ'\e¶\ 2çe {HJ\9a"bG³"~ú³h{¦jj\8a\95\93âç$â\9cåîk¯ô\875\17\95î\7f¨©b\93ÿI'5´6R¿\&\ 1-ø£\93ºÕìWqSÇÓGÕ~ã6Î}\f\80½@nSÔc&¢EN\17å^ó\ 1ø¯-ϤUn¥Ë窯äöúÑ"lú\9cæ\8dJWg¬ÒºðHÎ\8dÕw\90\11\94\85\99\1e(éñ\16q\15º\1dÍT\86\9a\7f \ 18{\88¡\9d3ßÏ}ÎcÙ2qÄ\8eÞ¸\95+´\95~,Í\ 5\12\1aÝ ØÆ\15¶µ\8aç\95ò\0\8dÃ\1c¡\1e2é\1c\11(T3\97¤Ãâ×¢.m ¼-«?c\88ÄdK¹ûÃèSSE»\14¨f)äCFSª\ eé&rpòm4U\90@Kj\82½`îysözRÄ\©y·Ü½\16\87Õ.A¸\ 4Mq\ 1ñ^KÍp/©X,(³Ó\16M¸®!]ì\ f\v\15ë/&\ e(mM4(bx4B\84åÚ.¾CCÒO\95àJ»\97áh!\8d\17\1dÕ\82\92"hлÕlx\86oú\8cèzà\83K0Å\83ð¼ª\87pY\80n&\ f\ 4nH\ e\93×£%Xy2\95\92|lÙs¤IO«ér¢k9ÂÕp\ 4\96¨wãÚ¥\v-hºr£\88®ü\9d»Ü¬å°Rì\13é $]@\81\88ÐYU\9c\98º"\8a[ü-L\80\85MD\ 4î¡Ù&P$\8b@®Uð\9cRré\ 6¸¯ ÚãÊT9WÛ\aÂ,´8\8a\86\85\15 Z»ÀT[\124uþª\bÄÄåÒ\15»{\7fL\1cÔ\8bÑ\ 3|¦¬ZÁ\80Ú\19V\9a\v,}Ã:\9bì \86h¼\99°âÔRõSåK\ 6\8d\9fC{ \9c\ 5\96\9b×/¶\9eè0g\16Èpug\v³p\fß\8cÇ\87¨\8e¯t©MXàØ\80CO\83Y³\17c]²\90Æ÷\84®õ®tÚn\89¯É\89ó\8eO\886K\80\96YF"ð\87u°G¼[Þy×L\10\134²ýÀ\95t\8cÃ\93`\1c¹áy\97\99\7f\ 4éh»Qõ²Q0ä÷\ fDC{¹[bHq\808\ 2C\87±\84\94fá}W»¢ßù\vï±UÒP\9e\89ÖNÎf¨VÂFk×\17oY«Îó1':pe}
-\ 5G´·\9f"¡\8f7xõWJå¼á×V¿ÇÌÄ¥ÿc\88\8bCõó¬b[×`-½®#\17aª¹è\9fx®\87\1fÍêºÂ²®ü&\9a\0y\v\141\98/øï__K\9f\ 4øÇU\17µ¦\81/Ï\89þ}Y¥i \832`æ) ¥@ÿ\1a\ eX4·*â\7fl\979Ú\1e7\ e\84ó9\85/ ?\ÀíD\93(òý\83©·ª5RàÀÖ\87¿»I\10\ 4jQ\98Îï\j\99´ËZ\8e'\vùVÇ/
-k\e®f| ²¡@\1a\84Ù?ø\98Z\10\13£\7f\99\86
-JLs!ÿ'°Ê{ymt\8cÑ\88 \ 1põMТ\15\8bÏýG§)\8cÂáÞÁ}wü»ç\v¬\1e\90Ñ \7f:´Þüõª\95éX\ e0\bÓ\1cèï@t\85¿ I\98Æ\15uûJ\ 5\1e%B\18þ\9eçG\90@æD\ 1?WÏ[µ-\14¶W\18\8cî\r\965Ïôµ°gðÌþiÅOß\1aJ\86í]¸\ 4²\81ÿ\9bµ\8b}\96\16\80÷϶fÝ\ 1\ 3O÷p~ͦïâÝĺ4õ\ e7\bÜ\88f\a\82ú×ÙÓ\8a<Ásf\82±ãÑy\16ÿ\94\0ر¥éÝÕ\eñ\13[Mk\r\88\93Ún\ 4æK5}ÙX#\10²Â%}ÙÎõ\10Ë°\fò\13`\98üjG \17µhRöè^äÃßÛÔ4>\ 1¯*(Z'X0-\9d\ 3\94í8\9aý\e÷~Íps\ 4\v\9e\97\99y\17¹O´¿ë¨\95w?¹û\1cU\84É\8e\b¯÷¡Ã\eþ\16]@\ 1º\9f\9e?~\ 3\ 5i\86/\16vüü3Þn¢\9av\ 1ëe\9d\9b`|]ÿr´Ðkß©©\9btEÑO\17\ 4&\!ý\\ f£Ä]D(Yv£ ¿Ô×ÇÇ=\84Ø3FÆÀg\¿çÃùw½Ùu#c% B½hPÏÍM\ 2#pCï3u¹!wüî\8fÈÁ\fiÿ½\92r~\8eN\86ûf\9dÝ?\88øÞ]A\ f\ 4\1dQjØÊQYîÑ7ãF>Ä0eó\19\8d3îçÙÖ\ae!É\97\8e[9þÜ¿ÚÏÄ1\93Âê!õñR\1csÓtZ£à\85Ù>ô)+ÇÝVp\ 4!Ñ]Ñw<\9eý|ðø\19;\1fÉ\13ýFZ\ fH\19ûË\91FàÂýìÚ5º\ e\ 2iû\ 3XÜ\0¾\vÔk,\12Í2áá\0co\1aJ¶b\ fG\e¶è¢RÄêÛ¼*d7\9a\10ê\90\15%¹]Á\8aXØö õk\ e¶a´\9cÈÇm\82\88\8f\ 4/¶fÚ\84ü¸Z\11Ê¡Úò\1aÛ¼ÇíýÉ£ÿâî0½\12\ ez\vhøC9 öày\90\ e\ 5Ô<â`\9b!!ÂaZ×-«\81\19×7LêsXÓ\1f¿õ¬È\19÷îÚ\81MÜ\16íZf~ iwò_\90Æ\9dP5/é°j×£¶\1cÆCM\9fDõp\15ô§\8b(\ 1\f7?ßö;\18[\95`À¤O÷&iº¼R¡Y\9fo`{\80:â\86\15\ 1\89ÞmnPÌ\9a\ 1\8cX°\10Ubóe\93ÁÓMt\8f¿gô\89ÌLRæ·,É!\8e
-\99\89ôåñÖ\92ÙÖxò\ 6ÝB{¨\7fy&<¿Æ,\ 5\8b¤\8dì² ï\92öÐeË$`60S\1dW°\17*¾Ý\173\bËk½Â`â*ôÞÈ¢\87åìÄTÕ\8b5\85à\96Ð\10c»LB¡\95î:cX`°W\9e\88câô\14q¹©K\14\ 4Î\8a\81\1aQ´\fSó\84îðÍ~\96|¸´¿M\8d \9a^zf\80¾rõ7Ö¡úúÍ÷\bmíº\f1\90L¶\A\9cúD8hßmý¾à\86¾¦\ 1\15µ\84Õ0¬Ìq\9c¼×[éß}?4wëFr?7ó\89Úß\1fN÷@Sk/\16ð?5\87ÿ¦Ç\vÅ¥9Ð\¡èê÷X\81ñ±"\95r&³è\9cÐ{Æa\ 6îc2µÈó3&97\ 5¬\19\9b*znZf\b'F(½\bL.ÓRѳs\ 2¾\9dé\996g +ªzh"ó³âê\9e\8a·\83ñÃ\93±]6àÚÕÛ\86\bgÅ3\9b*øC`ã\14ÚóKm;\89qPν÷\b\ 2~\87à¿q\1c=°;¼)×WLÀr\1aV×ÇÉ\9díp\ 2[ºîéÀ\9d\vé.3\14U\ 1\f\90×#BÑ;¹iúÌ\11âÈ@e\8ewïçB¡\15sÌp\a\ 1Æ_\ 3\9ct¥Im\8ePtÏe®´ïþ$Ñ\1a~©Çà!\19\15\88O~÷\8aþúׯÿþùï\9f\ 3CéØJ\1fI{\7f·\8e\9bÆÞ3çX\1clx4A\8dáÛ¦B£\f|\e0\98Óä\ 4bé\90.\99GN(ô°.WÅ=Ú\12PÙ\8dr\93moî\ 1Êxt\9d \-¯iäÛo\e¨\8f¡Í×\f\98\ 5÷Ö \90\ eþiBç\8eRó\92\81H¥\ 3(*6\9e\1dc*=¬h\1do^Ã\bY¾¥N~Â\8c\1e~î(¨±\ 3Mós\9dãX!(>\9a^EÛ\ fñV<\12B!s\8cH$ÞYfiRX\0hBEð·£&ì\ 2Oãþó(ök\rÞéÝ\99Ãè4X¿\91CUPúäP\85\96\8e1\84*NÞÝ>¤%½\96Õèi\8få|ÁR\18æúPWôNõ¬\ e\9d¹écJ\1a+B\87³\ 5\f*ËÚ\1d\rÏÅ\88ÜRÊäú¤\8cL\ 5Ï$Ô\ 5rÚµ9S\r¤Æ%¡R»\97d\0 ò\9cPÇ´*sx½Èö3%ªàäx&²Q'/\ 2\96¼¸x\ 6D*à$eM®¤,5 U¤g\1e&\98þj»\ föàɼ+,Ú/»¡\188\8b+tÜ©\82>êêéåcøíLÓ3Y\1c1QqK+\10\13ª\9d¾ómL \0¢\ 4(Ý×9ýdÞ¼H\15%¢Ä\8b
-\8e\ 5\b3¤àv\8f\95±\94°A\9aظ\1eåÈx\\7fe:}û\13\ 4ë\96\99ôý\9a£\ú\93~ìú½l|u\9dÐ"\ 2¡4\94\18Z\9cë2K\8c\1e²ê\r¾\1d*Ä
-\906Ô\12·1ó{{\12Û\89¹Zi,\93.âaX\8f\ 1Hç«ò\víNv\11(Ïx\99æ¨0m½¼Ûâ\8d\18;-Ûàªé¶EY\18¹g÷AV7ðb©¶¥@yO e\8eÿë[\b®@Û\83r>á7\8a\80ð\19X,Møø*\88\16Qܺ;\96zjë§\7f\18Ñðô[ßlµó\12\1fyAÍu\8b\9dA¤\ fð(\87j\8en,ÉÙ|;\10%)Ç\vxt\83x»\8e*2Æ`#Ô²®`v\84'¬kA\15Í\13÷ìÃëEI+úÃ\1aQ\13\8b\1fl\86\=©\ 5ãÌè\9aý\91\ 4ÚMA³ÿéY0wÔLk#£g:âáî\91Q\92C\8a¾üÛ{ÉòD¬TNðD&\8aîÉéLñÃW1>\92Õ¥³§\8a¨ÜàNm2%¢(¸dÆ k¦Ú\13v£Kÿ\9aÂÆ8Á«ö-ÜÙ\8d\95äÕÊfl£Õ+\8cª¿)½ù@h÷,\85Ò:·r\12\8dÐ<_×âmç¶×h¶Azsy«f\15KP¨O\9a\80\17\a3Ô.\95\9aH\\8fQËvëX \1e\12Á^°\17\93§¬çö,qÜ¢+Vº@9£f\9dçöÍ\17ÊÅÄ?uÐBzÅ°êòJõ\8f\ 2Z.\94b¸é\aìÜyên\eæÝ\ 2\8aòÌ3[Ûz\9d\81\12l\96¼\98`\13wª++ÕxZ¾ø\\84Í\ f¯JµzTÔ²ÖXq.?p \14«\9eýçô°ÐH
-è<mÒ§\93ß6iÄ7GS\97\12åà\8f/!&·ÖI²gú&·\88UѦw¸ÊKÄ?D\96\ 5Ä7@\ 5\\12åÚ[O\14ÝônÞëoK÷¨\8894:ùËñ*bꥸwÙ\9eê\8e©|\8fÝ\9c\Êóí^\83\9cÂ%hW\996\8fP\830ÿD¢#9t±ó»XmÃå\1f\1e¡ëh«C\vl&FBÑ\e£\1c\89\94\eÝ1\11^³;\98\96\9as¤©ÆC·\ 3µ\15Ä-óå\84'\91Y6*jü7-¦¶\1fUáÇ@k\ 5H¯ðn\16\pÃ\14×i/d\16ø½8Õô9R\16@\\8dS.˹¨ûãßäsm\9c|Ü\ 30!´\ fcôPMø¯Çø\1f\0P\93c; \98+T< ¥gÂ\1cæR\11¾\97È®qºdH´æ\81¼Ã\11¥\9dÏn 5åe\vF¿\88»«Î-\98ÑR\ f\9aÑa©9éí\9c}ã÷¶í\!9\a\11\19\14àº\89\8e©^\a\85\7fúq\ 32,(H8\117¦6î\9c\13q"¥¬~\10êXX\8aR\973\ee\1e]úD»\80ÅeótC\vJIL²^\9eRÛû7Xm\81§p\1cK˧\9e_'\16d\98
-\17,Æ\8ee\a¥\f8ý`\94þZú@\15îQ5K¦EETêe5º0\86\83\83!Â5Ùø \1d\e{¸à·\11\89ê\83\81#\a®¤¨Ú3¥E\ 6*\1d¬!\9aÙì\1d·|OC(\9fU¶
-NA\18\135¿}½\8b\1e´©ÐÅé\94Tü\1aÏT\ fÎJ\1dØ\7fw»\81kѳ\87í¥\9eé·xT³w>0W¸G\99ý7Ï6úm
-w6ÐÇ{ÍC¬%°d\81Ð\8d\ 1ÂÈØÀ ¸\99\9fá±[T\87I\9bj<]è\¨Eqñ\80LFk=Õä¯åyøù\1f½Ú<]Wµ^Ü1s#ö¡\r\ 6\9b\1dã4\87FVêb6R(Þ\89,þG{\95äØrÜÀ}\9f¢/ÐRÎÃÞ°Ö\86\8fðaK\v5\fÉ÷\a\14\ 3kzmÉ^ÈøøÝMVfU&É`\ 4q\88ydj ¤¸\15w\ eõb<Ã\ 1{\8d0\15OjI\9d\bøâi\11¦©ÐSÛv\ eF\12\93CðgbÊ!BqÚ\9d¥ 7J\12_È,\8c&âúÆ»ð\1cÈpIÊhÕdµ«*l\16m\ÛAÐd\ 3\13¸'\95Ôî!l\92JòT 5\r8¤\12£.\91ë¶\92¯\9a\1a\\9bøÅ©\10ë^9Ë\16\0\92Æ0ZÕ\16ÛÀTï\12í\90\7f\88_·©´4²°dZ\11 ±\8c%-\e! 9e³\9bg\8bok\17õ\ 1\19s¹í{òìýl\84\1aG·h'Qr¶\\83z·f[ \94\144Øù'Æ\f5S\12I\vÖ«¸FR=àÔ\14\0$D\114\95<e\8f\89\9fØ\äÙV\14ÖYÅÁ\1cj;\ f]É×5\1f¨NâoÎ\91|Úi,cºÊØ%\82ZÈÁh{M¬»i\99ÝØô$ \88\12sÞ\96b \8f¢\84p]\9cf\16 \9a!#k%\9a2eH\93l@¿&\1a¨Ö\81rôò6ô}1\vû>\89\1d¡¤\96EYH\13RʳÝ\17\8bð\96-Â\8bU\aµ\12û4ª\8dz±©ºRÒ\10\90Åã9\8bI?Ü®9¼á8[Ã\e\9a3ã¶\82\0\ 1tä\ 1\vINxç\96\ 4ò4(¹Ê\1eÈ^\81ÍRa\9cõ\928\822\v\ 5\93ðïÛÛ?ßþÆw½\1fÿ\7fýñí\97÷¬\87ÙÝ\16Ñj\9cä¾}¾Ñûù&Ñæ×0¬èJ«\9d\16\92½²Þü\91 aJN=\b+V{\99\7fbéÔX\11KâUa¥s\95?Ë¥ýÝ\7fû§/R\fû¬y\r\87d[ìD\0\ 59Ú\16BHC\ 2Õ\8bâ\17OÚU¢^õ\11Ëü\82c1kDó×\a\99oª\10\8a\82°]°»Qrí©L§í!¶7Ýu r~Æ$\9a©þS°\ 6ó~\1ac\8cc!ªÀÞ\ fOo\87\85íÀO,õ«95&«Â\rÈ¡qk\1eõ\99|@\9fö\11\1c'ý\17dóGüÿáíû\1fþ\9eß\7fü÷Û÷\7fý,ï\7fù×ë³\12Ϫ\9feÖųLª\1a
-ʤ\80ø&%íU+\9cýÐ5\84¾bÍÜ\ 5\95\92Õ#ö`7!\1c\96¢)Lõy«\18ð\9céØm¼NC\1d\94!X\81â\1c\8c
-\8bÞCo\18¬\87>òaB\0l\eÔ\95\1cÕø·àÙDE4\v\ 2ØÜÈ\0YT\82ÌÎÈW4\,d\1d Q62eë\95ÇêÛ/!DqÖB j
-%²¹\8eÚ\8a÷\92¦¯Òä87éµ(|\a\bo¨#Ëvª\9a\8a6S\19¿{<S\95¾Í\9a\8fÊhBAwϬa RP\9bs\1eÏXz\99b\9c_ß 2jûÑY¤0wÓDÀè¡Ø8Ú\80\89\89R¶#Ü\ 5\1d¥\1a'\90\86[ãËR´°l\8cËüéw/ÂÂøÓ.Rþà"ûÿr\91³À\99\90ÿPàå(ðñ\87\ 5>n\ 5>ÿ ÀÇ£À×\9fPàõQàûYàù\7fðù{\15¾]á3*¼ý×
-_\9dR«E@©\9f¯\80"\8eK©I\888ù}jÐÍ\10\998\9a\95\ 4+B¸lqiGõ°6¦vl\13er\ feÛ\11ÅL\ 6\9d\8c[Ô@Y$S¼\8dj`ÅÑ\1cu\1dõ¡ôM Î\9fEf+\964þ¦\12\1d²9ËòµU\e\10¯¼õ\8a!íÆ'\8d\87ä\93¡\\8eÞE2ÇUFPPÊ\84@&C£z\99
-¨Àâ
-!qv\93U\95.\9d\1a\87X H\ f.\83»RXÆ\9fÌ\83WÑÂþ]%Í)Ö\11\ eüPi\8cï4FPú[k4 \ 4ÈX ¡RD\81ÄðÞªa\80¢\16Y\19%r\8a\9a\9f÷\8cÍ[Ê\86Ì[ÎækÒæ3kó\99¶ù\9a·uÏÛzæm=ó\16\9eGÞÂá¼-ÙWÞøü\99·¢\ f>ò6\9f\89\9bÏÌád\ 3)©õÌÝ\a\866}BÙûàØ'
-\88üÑ\91wd°ÊLè^ÉÍÀ\86³x=ì\ 6ù(\1a\13\95I~eöí\ê;\84;SXp\9d\8fÑÕ)\99P\~@Î\17/%É\8d\988±´v¥ÜbR©/'O·»D4â\86ã6öë\ 5õúë?pí\9aÙQøÁeÁ\ 5\870ÀiU\ 2¸&Í\e<01\fùò\1d\e\98Ba\81\b\87mÉ2\98Iw*\92Êp /é\evh\vnFÁuéVDüH\1avXSs\9a\9dÞÔ4e1\0U\1fâ#îY¸s·£±=Ï\8cÜ\8dcÏ,¬ShûܼFý\97¥I\93bÚu1··h¬déàÞJ-\1d\1c\1aPëC¥!GV°[Îç&¹PèuÝ×\fß\83\8eæû\8c\12\1fª\0îR¤SÑ\12V¹\ 3UÔÉ2§×q:´ ð\9cár\8fÁEZ\8dzâqÓò¹ñÚÚ\1c¹\84ê\17¦»\ 6%Ú:%À½õ¡4]\94\bÓ\1aÎj\9a\86\1c^»âp;5a®3½\19\13Q/;p\e7Ú*\91ðüìøïz¹T\f3\19\98CÜ\88ò"¤>\16
-q:\98¬I&\vIQ\1f\0z°x8à\12\ 2\8fªÕ\16\9eª\85`\18.äi9\90 QÖ\v\1c#é\93è\89ãîhק\ f\17#\15\9b4\87\r\vLÙÁ2îlô´ÆÑ\ 2õR³\97Tæ³ ¿IÇ_zÿ\a\aÌíèbFí\93\84\vüë½\r»55!U¢¦F¡Pä¨Q\99\8dEì5\89µD\87ÔC\ 1öºm _N|³\1f{ªZ$Ò©ù\ 5.|s\87kÉÓ1q(®òà²øöt¤&ã\9e ˪ \97]Tý\15MyÊ[^@\13ý¦hö¢liï¤\14\97mG\90
-{ßf\v˽jâ%\eê®V<6uê&¸\1eÏ\11À\ e\10A¤\94zË\e\8e\90Îô\93ÝØ¥g¤ µ|L\8c_Êã¨\98 \1d$òóH$5Ö#\91\94Y¯\89ÜÏDR\ f<ò¸å¸å±ÊñÈ£×<ó¸ïy$´¾æq½äqØuËc?<W\1e×k\1eç×DÎg&\89µ¢~\1f¹d'\9by\9eÙ¬\82\9fët¶à\84y%ôpÜRzQRÍnÓÅÆ´ò$/y\9dêK·ÄRh<2ÛÕï\99%ð×+ð×+ð×Wà¯\að³4Å\13ùëB¾º\90\94Á\8d9\87r\16¼)\ e\1f'kâ\15ùâÌ\19u\16\8ciý\13|\99ß/9$¶ì×ss%\9c»]LIg½x²\0|#_, )ïfØ¢\85>)RóÌ\8d!%qï\ 4ù\95\1fó+?>èQ3Û¾¸ñ\9d|UΧ@Ô.'+²¶ÛÅ\89\94¶{\96\83\11\19\8aÙæÁ\87=Ì\93\rå°f#\17\16iä\93 )±b´4\ fR\1f+\8e\a\v>H\90qx¡Àü @÷þ'\ 5æ/\14\98¿R`~P g\8a\e\ 5ê}_(ð\85\ 1\11Ô<Þ\1f\95§\83\ 2çB\ eÎ\ eH}ÚeáS-Åéè\841\ 5½8\ 2\8e%\ 1 (\95}¼gí\11.\vo¸\1a\ 53ÐßYÈ\e\ 2\93Á\0j¥
-7\94?/\116Þ\82®Öô\92c\ 5êS6\1a \eËnÊ
-¥\12aÊ\1dè#£ê³\8bi\87\9d\19Dè¸Êv\ 6»°fq\97\9d{ì¨\9a#\0`66Ú,o\ 4`²ïÈnÑç\8eoØ\83\ 6\92½ ©\8d\14ªÁ\1d\ 3\ 4\14GÚ±\9c\81F\83È%Þ_bba/\9fnYR5^\8f0\84:\1a\90Å\88\1c\ 2\95\8f5*Þ\84ZÖK5\85C\9a\17\1d&Þ\82¶gtR\1d©uÁQôÞ¤\9eð%ÕþtÒ¸\91Q¦\92>ôH#\ 2.¹8\8dÉs\86=zÍàMÐÜÝ#\99ú\82'híu_UE*\ 3«,ñ.\1c\95Ú\rí\9e庩»·ÌæÞ° ¸e\8f\88\13áeg\80]\99òíIö°¹£[Ù\9d+8øø\9b\85\ 3\15m\12wçðsd¦1\0\9d©Ú*¯Á\8câj\89EÃËó´qÕoo?\1d\0\99Âö\v>\1eð¨l\ 6\ ft0\ 4ù\8e\r:Æ\1d\19¸ª>K\L´\16Ñ\93P1Â:0ÑϧF\ 4!]N< óµÝÐ\80ã\97\15X(\1a0O(T\1eû\8e\ 45ß\v\b\1aW/\1cTë¶\v\ 6,t\ 41ê\9e-ð\ 5\ 6w\14Ð\9fo0Èîw\ f\1cä/8ÈO\1c\8cðÜq\90\1f8èÒد8È\ f\1c¨\ 6ï883ê/³\1añ\92\8e\ 3|F1N9¤ÙX\8b\8dæà\80\19¥\18æU\89çs\17"\ e0Ó<ë0øè*C\9cg§|V!Î 8¹\ 6ÑÎÖ:!Ú`׬®\1a\0õó\v\9e¶OpJ¬\96\v\9bä¡ÐE\82æâéÔc\8cLÝ\86Az\86\ 2ë×\ 6#z~Â{>í¨Ó\8d\9e\9cD;yZ]Løiwi\83x\85<\b\bkXo¨\9a2G\8d\1d¡øHQÞÑ\ 4öýÝ`\ 2`w~³\ fë\rØJ hb\8a\9e¡v;åoG\8dwwÛ£Wl ³ºöis=\80Òn\v\90\e2\11»S÷äªq\ 1¯[Ë'\ 2b³O\90¨EhódìyÃ#hWó¡\1eë±\83:\99\9eY¼c$öZª\9bé\1dd\95Á\9dç\ eiã\82Ã)Ùð(Æô\0ºô Ûű\82\88\17ëP\8cÉ\1e[¬Ô\89yÚ[ \aϵî\1dÂ\f\98q«é±$Ì\94\93ÀU¾tWx¤c\8f\8cr\87òGÈVÉý^²*\80\93\12w@\1dç¬"éÁ0âk\b\86\94Ì\95\95w\ f\9b;\10'
-Øs\ 5Ô
-i\12oØÓ¤5{ØjÅ\8c\85\1a\f<kÖ\88Nk>_ÃÍìù\8dìrGº\7bp>«ø7p]j¾\19»nèÀ\8b°³I¼ÿÀ\0ºù\90&:E\1d\8a\92Èþ\0tã\9bá}´K\18wJ\1eö`\96ØsÖ\11¼Ý\1eßóÇÛ×Î`åÍ\ 1õ\ 4¯\93rÕÄÌø×ý©Í\9b\86L\97ÑöùÒäô\8cÑ×xÄâ\95(I})\14\ºÉ®a*UÈ\83cÌ\eð\ e©\9d\19x\94¾\93ÝCÔZçY\ fÒ \8f¨\9e2ñûhÂpEç&\1e ù-9\a^Ê\9eØ\96\87ß°pãÁ[ }\98\ f\82\e»\f*ëïà\93"£\1e7èDþN=-8\99Î½× 6\rõUF )©´Mf\f\ 3Ì<Ïÿ\ e&ÅIçç\b)¤ÿ\8deã£g\1e\9bJª]NqÜ.´ýfÒ(\993\90,?ø\18\16V\0\89¢n7\8e\14û¶adÃ0_("è׺Aì\12yÇ\90ÍÇxÆ\ 5!\ e4j\86\b2.µ¨\98\ 4\83OÞÈ\ 4~èd\8b\9fÉd\ 3Är\16xp÷Zç¦î\87\r@:È}\88û\ 3¸\9b7Þü¤(\14-õ¸é\88µ\841úÇMÚðÎï\80Æ(ñÂìCÙ\e2îða\8cõüaì\8dXqÃÞ\885õ8\a1µ27b\11.\ ec\11.6ce\8f\17cõÌ\10cCãÃØP°x3f7cê\14oÆþ@ì&\8cûwøªØÞ¾ý1+\1eò«c©8þ\18\15¡u¼\14\11·\8epÒ\84.57ûyS\8a¹\8dÝk\95M2©ýÖ\15c#W\19Î\8a;2K\9f>H¥\87#?Óö\98kð ï\19q&XAªEw\9b\1eºÍ\84;Û\ 2\1ekå^ø\8c\141¼\9a;d¦\87×±¼\95WFs·¯>£Hû\1f9£ÿï1\9d¾\13wð;è\8bY]
-WËî{OÍq%\8fpÓpê¹f\fïV
-÷\90ã©2Å7\15óUó¹.\1f\1c+TT\ 2¯Mê\1eìËt»ia±ez%ÃJ\v±*Ó\e_\1dD\8a;D
-¬\93\91\9f\8fènr4!lâdk\19c¾RsËÝ3P®.̳ø\1eV:\ 1ÇÏÚ\19\v'\1e]\19\82W\94\f\1eÉ\9c_©\94w\88RR\8cÂK\85hå\1a'×]#jóU\11\95Ý\ 4\95h\80\80+ÞÐK`\19Æ\16\8c§·!5yÀ\ 3TÆ\rÄWÏð#ujÚ\97"9ï3¶%±î¨þ½Ç\ 4\ fn¦à\86\9d\97GÂ\a\9cßÊ\16-ËM\1eÍH\9e\17è\99#\92ÛòÐ\91ã\efÎ×\fj\85ß¡Ì\82½ÔnÐ\9fúªýÑ\87?uè\14õÒ&7Q:\1a®-\1e\9b\10\8f¬\84\12+\82áÕ\b4äìá\83pÃdáñ J\ e@göã|z\8a%\87îT2\CP;Ö\r\83\1c\v\8cïª\ 5¦
-0O\9f9õ\9bÕ.¬\97\1ab©4_:\a\9d3\95\9f¯F,Õ(ôïÖÒ\16\r\99î`â\fÍ C+FR2Öh F:\7fóÈ\13o\9eãÈ\851WçK- åêã$\16\99\ 6^\86\85VÀþmù½¤À\93G±P
-£\81·¥\13ôo?¾\10 `ßÆ\96\bº.Mê\b\ 4ea«\ 3Í}\846PIçs\94\81SGZºÀ\7f\95gT\9b\13\1a\9cÒÜ¢\0\81V\94\ fE(\0nÕ}\85´Ó©\8f\1aÐÖ²\96eÃ
-\13¦G\84\16øh)AÚÿJ\a0\90.\r¥\1a\8cæÜ\1a ón[\0\94\f>üßøÓ\9c\ fül\ 4/ö¥ð\17ünÞ\aþÄá;:Ï\8bý\1af¾ö\0ëÛ\97}û°o7ûENüaß>ìÛ\87}{³\7fÏ\böíÃ>ó\83{²ØïþÔþ}Ù¿Ñg=¾É¿ÁWôº¹§ÿÏ4b±\8e\8c\97Û\1eä\7f\fwÓ \1e\ 5Ä*\rÞ\11EÖº³£òÚ8oÑ\7f\98ÆS\90^HÖÓ\97\am¬¹ï\b\93R\17\94ª ôòÈÃéw\9d¶\96ñl©\8cI\7fþÊ\88{L}1Æ\1a\19Î\98Ó5\ 3¿ÝÇ\99z\9d±b¬À\8aÃ\1dix ë6Ü\91\18[ÝSYN ¿\8f\v\9cÀKÏöK>ÙF\84]$D,\9b@\f}\85\12\}y\a\14Ò\15Q\8e\15kD@î>\1fXY\87\18Ë\9bñB\12m\1fr ð;Ïÿ\99ÍC\8c¹'Éó!\97\9bk\ fò¬qEY$\17å9]Q\19 xâ\16\8au\1e¾Iú[Å\96¡ÿ³û\95!D1§õ\13ãy¥û·²ë`1e\14A\89\96\87\8a\80Ã1ýïc\7f±§Å\15\96Kæ¡øøá\17âË$\ 3\fÿ%Oç6Ó§y¬Ø\9bNɧ³ó\14R÷½ã;Ä~£\ 4\1f¿RH5Æ©{\vð\90\eìö 0\18{\8drû\9f&ëoÜ#\9e¿nÈ\1e ø?ý IÀúz\84%\99p¥.¥\19M\ 6\150\8a²¶=æwc©ñ\9a0}ÄÄ\8b³¡Zk\9cUb\ 5¯Ú=\17Ðzþ*U\9e¢.\86¥X \0ª¹&\9ex\a^Ee\a\82è;¸#1Ý£H)C\1f°\16j\r\10\971.кw¡\81Ù\10ò\v²±\ 4 \10[ÿ\120è\8d\85W£ã¥²á\92¡\8dEVóè\1a\\95\8b*6\92\8aÕ\82\8a\15õfê\85\94\8f\ fP,ç\8b'¦¿\83\93Í5\8c\9a\1aûÂÁéMÓ\v¦â\17Þ,\1d\94üö7J/\92|ú\ 5\92»Û\9b#»9òæòÅ\91ýÁ\91Ý\1c¹\19¼8²7Gæ\9e·9ª2É\e#{c\94uå`\14\1dïÆÈ\1fùÆÈn\8c8þ`d/\8cx0F\8eÒáÈ>\1cÙ\8b#îµ½@²\ fHö\ 6ÉMõ\ 5\92}@zs\84?n\8càP\1eý^Ì`2Ê\1e®Ç\17Æú\1d\ 5\9e2¬!i>?ÿûÏ\99P\92\0úýë¿¿þýëï\7fýó\a?ÿ\17`\0O ¢¹\rendstream\rendobj\r37 0 obj\r<</CS/DeviceRGB/I false/K false/S/Transparency>>\rendobj\r46 0 obj\r<</BitsPerComponent 8/ColorSpace 47 0 R/Filter[/ASCII85Decode/FlateDecode]/Height 105/Length 57/Width 5>>stream\r
-8;Xp,*<rl:7+cW%5[,0s>fWlT+WCpST#%IPk^`/RFo\WF5_&k8KIsMB~>\rendstream\rendobj\r47 0 obj\r[/Indexed/DeviceRGB 255 48 0 R]\rendobj\r48 0 obj\r<</Filter[/ASCII85Decode/FlateDecode]/Length 428>>stream\r
-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\~>\rendstream\rendobj\r42 0 obj\r<</BBox[8.96826 5452.74 19.373 5429.63]/Group 49 0 R/Length 107/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 39 0 R>>>>/Subtype/Form>>stream\r
-0 0 0 RG
-2.545 w 10 M 0 j 0 J []0 d
-/GS0 gs
-q 1 0 0 1 10 5430.3711 cm
-0 0 m
-7.804 10.814 l
-0 21.629 l
-S
-Q
-\rendstream\rendobj\r43 0 obj\r<</BBox[8.96826 5402.74 19.3735 5379.63]/Group 50 0 R/Length 107/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 39 0 R>>>>/Subtype/Form>>stream\r
-0 0 0 RG
-2.545 w 10 M 0 j 0 J []0 d
-/GS0 gs
-q 1 0 0 1 10 5380.3711 cm
-0 0 m
-7.805 10.814 l
-0 21.629 l
-S
-Q
-\rendstream\rendobj\r44 0 obj\r<</BBox[8.96826 5562.74 19.373 5539.63]/Group 51 0 R/Length 107/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 39 0 R>>>>/Subtype/Form>>stream\r
-1 1 1 RG
-2.545 w 10 M 0 j 0 J []0 d
-/GS0 gs
-q 1 0 0 1 10 5540.3711 cm
-0 0 m
-7.804 10.814 l
-0 21.629 l
-S
-Q
-\rendstream\rendobj\r45 0 obj\r<</BBox[8.96826 5512.74 19.3735 5489.63]/Group 52 0 R/Length 107/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 39 0 R>>>>/Subtype/Form>>stream\r
-1 1 1 RG
-2.545 w 10 M 0 j 0 J []0 d
-/GS0 gs
-q 1 0 0 1 10 5490.3711 cm
-0 0 m
-7.805 10.814 l
-0 21.629 l
-S
-Q
-\rendstream\rendobj\r52 0 obj\r<</I false/K false/S/Transparency/Type/Group>>\rendobj\r39 0 obj\r<</AIS false/BM/Normal/CA 1.0/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 1.0/op false>>\rendobj\r51 0 obj\r<</I false/K false/S/Transparency/Type/Group>>\rendobj\r50 0 obj\r<</I false/K false/S/Transparency/Type/Group>>\rendobj\r49 0 obj\r<</I false/K false/S/Transparency/Type/Group>>\rendobj\r34 0 obj\r<</Intent 53 0 R/Name(Layer 1)/Type/OCG/Usage 54 0 R>>\rendobj\r53 0 obj\r[/View/Design]\rendobj\r54 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r40 0 obj\r<</AIS false/BM/Normal/CA 0.800003/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 0.800003/op false>>\rendobj\r41 0 obj\r<</AIS false/BM/Normal/CA 0.5/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 0.5/op false>>\rendobj\r38 0 obj\r<</LastModified(D:20141124132058+01'00')/Private 55 0 R>>\rendobj\r55 0 obj\r<</AIMetaData 56 0 R/AIPrivateData1 57 0 R/AIPrivateData2 58 0 R/AIPrivateData3 59 0 R/AIPrivateData4 60 0 R/ContainerVersion 11/CreatorVersion 16/NumBlock 4/RoundtripStreamType 1/RoundtripVersion 16>>\rendobj\r56 0 obj\r<</Length 950>>stream\r
-%!PS-Adobe-3.0 \r%%Creator: Adobe Illustrator(R) 16.0\r%%AI8_CreatorVersion: 16.0.3\r%%For: (H) ()\r%%Title: (icons-hires-quitter.ai)\r%%CreationDate: 2014-11-24 13:20\r%%Canvassize: 16383\r%%BoundingBox: 330 -265 579 3057\r%%HiResBoundingBox: 330 -264.3799 578.667 3056.7446\r%%DocumentProcessColors: Cyan Magenta Yellow Black\r%AI5_FileFormat 12.0\r%AI12_BuildNumber: 690\r%AI3_ColorUsage: Color\r%AI7_ImageSettings: 0\r%%RGBProcessColor: 0 0 0 ([Registration])\r%AI3_Cropmarks: 330 -2506 630 3066\r%AI3_TemplateBox: 479.5 280.5 479.5 280.5\r%AI3_TileBox: 174 -116 786 676\r%AI3_DocumentPreview: None\r%AI5_ArtSize: 14400 14400\r%AI5_RulerUnits: 6\r%AI9_ColorModel: 1\r%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0\r%AI5_TargetResolution: 800\r%AI5_NumLayers: 1\r%AI9_OpenToView: 146 1922 1.5 1229 654 18 0 0 6 133 0 0 0 1 1 0 1 1 0 1\r%AI5_OpenViewLayers: 7\r%%PageOrigin:0 0\r%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9\r%AI9_Flatten: 1\r%AI12_CMSettings: 00.MS\r%%EndComments\r\rendstream\rendobj\r57 0 obj\r<</Length 1932>>stream\r
-%%BoundingBox: 330 -265 579 3057\r%%HiResBoundingBox: 330 -264.3799 578.667 3056.7446\r%AI7_Thumbnail: 12 128 8\r%%BeginData: 1784 Hex Bytes\r%0000330000660000990000CC0033000033330033660033990033CC0033FF\r%0066000066330066660066990066CC0066FF009900009933009966009999\r%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66\r%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333\r%3333663333993333CC3333FF3366003366333366663366993366CC3366FF\r%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99\r%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033\r%6600666600996600CC6600FF6633006633336633666633996633CC6633FF\r%6666006666336666666666996666CC6666FF669900669933669966669999\r%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33\r%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF\r%9933009933339933669933999933CC9933FF996600996633996666996699\r%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33\r%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF\r%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399\r%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933\r%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF\r%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC\r%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699\r%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33\r%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100\r%000011111111220000002200000022222222440000004400000044444444\r%550000005500000055555555770000007700000077777777880000008800\r%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB\r%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF\r%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF\r%524C45FD54FFA8FD2FFF8383A8FD09FF5E3389FD0BFFAEFD2DFF7D7752FD\r%09FFA8A2CBFD2DFFA8FD0BFFA8FD8FFF7DA8FD0AFFA9AFFD2EFFCECFFD0A\r%FFC9FDFCFFFDFCFFFDFCFFFDCBFFA8FD0BFF7EA8FD2FFFAEFD0AFF8389A8\r%FD08FFFF\r%%EndData\r\rendstream\rendobj\r58 0 obj\r<</Length 65536>>stream\r
-%AI12_CompressedDatax\9cì}÷~ò8Óè¹\ 1î\81\12B\a\9bÞB¯ \ 4\bé\10\8a)¡\98Øðìî÷ǹö#ÉݸQ\9eo÷}Ïîþ6\vXÖH£é\9a\91ì\96VÇ\97\9f\90#Â\17òcf\93Ý^¤\88á\8e¤\92fô«¹¾Zíé\1d\ 5\7fr¶]f<êÇ@£|=>`\eö\b\8a^\90\9b$zä\ f\81\87\15ø¶³æ2;]à[w±[\11àûbLnhß|A\11´ïg¿Øí\bÊ?\¸8\88 \8bÒp\a\1a\ 61<ìÃq_0lÆCÉ \84V\1cn~\rizñ?\ 4\84\12\8aC \ 5r¿\99,6³\ 2ùgÒ\1c
-af_0\1a1Gb s\b\8bÄ@\83Ú¢MÐJÂþP,\91\0Mãþh4\ 6\9bGý±p8
-Þ)\91ãý\9aØìZ\149&hºH®H\8aN\9a\8b\7f\r7æûá\f<\19\9a_\89Õ\8aüÃ\X\rÇK\13@DdPY¬\b0çõpgÆ\83\10=ù:\1e\1c\14ö\8bÕäa¿\1e\11\0\eÑ\ 4ú94@]>Ñ /Ð-ü\f\7f\8e\rêkðK\87ØíÀX\ 1@8évµ \1e\ 6ø\11ýë|o\13³\ 5Z\11\80²O\17Û-En×CjIs³\8c`Qs\14|
-aÑ(Ó¤K¬·+\80a\84\8ap,á\8f\98\83q\fü\15}f[\82ù Vx,l\ 6K\115Çâ ·\18Û\91\80$â×\82ø#i~ 7\ 4\83\89<µë0«\14\ ec\18ó\97yÒÞ¯\bêi³Ø\81\11¢~\12\f*îÉ ±\ 2íù÷+«!Â\0ú\17\17þ2\rºCjFìÀÂ\92«ý\ eQ]\9c\83\0PÝ\18þEÀõÂ\19\0Í-±é\92=4F<\1c5ã\89`Ð\8c\83¹âÁ`Â\1c\8d\0\ 2\8b#\0àQ(Ä\83Ä\85¿LÏ°\1fØ\v×=¤®\16X¯&µ\98-6Ivp±A\95ZL\845\8c\ 5Íqæ\ f\1a¿?.ú/ÁýÇ\f\14Ì\19°Ã\86\1d8 \9dâ½\88\160ÿ}\a@,o&Er\r\11OCò\aD°\ 1ô±"gÌ3þ3z\ 2^ßo\99Ñ£ï\ 3°F-j±\81}\9a\1eÐ\93ø µÚ\83GU\8aÜoë\9b)ir2\1cß#Æ\80Á2NÌÍÑ7ø\ 2\18\19ѧ¹K\rÇ \ 3ð\9do\ 3XxëÒì\ eL\8e"ÌÌCð&úÊý_ÿí\121\ 5\9c%¼ÎüZÞü"VäVÔ-ÿËp31?\ f©~×Õp3¤Ìèw¾çÆâ\17x2\ 4\98\12ú\16~3Ð) \90-@\ ez\ 55\91\ 1Ðh zd\0Ðp7\aB\88ØLh¾oæ«tàÌoúýuÆ\90\ 6)s\81ÚÓss\97$W|·ÒG|ïìÏèWØþ\9f\ 1£\85^Ø47\f\82\ e!±\rä\90\80èùÇA\ 1Õ!\80\87ÿäÞ\8bÃÕj1£\86Ûùb¬\ 4@á9\ f\89yv\faýµ\1e\91«\ 5½\16èIôKkHí\16ã\15Ñù\8bÞ\11kÃ\8bk.O\16@È©°±f\9bÎ\1fÃÝxÞX\8c¨!µ 4¹\ f.Àt±\99\0Úï\0«\88\10\10D®·Ðz1wæÃ-\81¦±\9bWPË\ eßad\0D¿X¸û|ÚRÿè\17\12Ì\13¨Ùw\7f\bÚ\14¸Û\90\7flÐ\17s\12 lC\82%\v<\f×\84Ùk
-ä\91øâ\9e\ 6¸I\0\13 r7h_\9c\ 3Ajf\1a0¿º\90Þ\r°M¼&Ü\1cè-èÅh\85:<졳\ 3\96×\11=\14\86ôb,¼ÎÒÇ\8e"\97\84¹9\9dÒ\ 4Pp¸úûÎ\ 3;Ø?Ü\82E\ e0K \8d?vòNI§\8c*)O§H\83\ 6\90\19\f\1a\ 5\11\9cU\93b\e\83\ 1\96\16chË\f©¿ÌI\80I\12Ø7c\92\9a\0ýë5\81a\15\0\v\98Ù¾\99®ë\ez1\ 1$\ 1Þe~fñ\r&Ñ6a"C\ 67¿äM\9c\19\85\99_þ\ 2_nÁ\87osÐü\87\19ÇÌ÷æ÷OÌ<\ 1?¿´M°ÙË\ 4\8c\87\98\9aSf\13\a\13u\ e\819\9bû\1d\ 3\18\82\ 5$bv\96\1640*ÿb¾Â6)3\9a\8e9e\ 2\b\ 2|§°\0Er3\ 1\94ndí4z\81H<\82\b\fáø\89&Ê¿\88Ms2A¸\85 \ 4Ì6M\98?\16\ fG\81\97ÁbÔ\8fáx\f~õÇ\82\91p\ 2bo¨\8cm\\ 1Û°¡\ 4Û<8\15<j \ 3)ù\va#\80:\13æmp:Â<\84÷U'b
-\94ÿ$ÆÈ\82G\ fлJ\92\ 5\98ê\89à¿âå_ñò¯xùW¼ü\1eñ\12úW¼ü6ñ\82\1f)^\fÓ¶\8e$á@üÿ*H¢\11,\8e\87\80ä\88$°P0
->\ 4£x\ 2\83\1f°p<\b\85\89?ÌI\970\1e\89Æá£H$\98\bãÿJ\99ß!eÂÿl)sþ\18d\8bÉÊ\aÃï\1f)X~\97ä0 \16~7\99\ 6/L¦\97\96o\17'\95ÿu y*èɶÿ\1aJù/\9aÓQB:ò¯\90þWHÿ+¤ÿ\11Bú\9fmÆþ×ÐÛ\7fÑ\9c\8c\8búP\bÿgKúÿoäô\7f¨\8fý»,H\8d9²é\10\14¹\85\e\82\13ò\ fí°\ flÈ´C{\85Jñ\1eI_|\84G;\9e\135\aê\9b\1d\9f\86\81ÂCæò\9f[\98uQ\80©\1a0}\ 4å\83¹Ì¢ðÏv¸ \\fvÛÄ\10üð\8b vjAÐ\b\16\ 43óGc\89h<\84>`Á`\10fË`x4Ìaþ\1céN\8fWh88Æ\ fh2¤\96\92\11ÎIê\7fØ90?\90Ûá\18þ\10\ 6º\aç\7f\1döÜÌ\10bÆ4\85ZÅÙï£Õf"AÅ\9e&Z\9dF\81}íoV-@¡þ\81\91hüwÊaE\ e\12öÛµ\19Hh§Ê@â®\fò\ fG\ 5@îA\16(îé\1d¹\96ÐGùÏ\1d5\1cï\9e6[\98pD â\ 1æN\84#¸.5ÜvÁ\93.¹"¨áfL¸ÄR\v>=èÛy¿Øìis\ 1è \90(.\ 6\91G\99H\a?ß\ fÿ\84À\ f`¶ \0\92fÆâçÇz¿ø\93ù%,\1f=b$\96E`VÛpÃN4(\9dè|1^n\b\9af¸\95{Ô¢\88ñ\82\132ü8ÚÄ\9aüE´HÐ=Æ[ÿªæ\7fUóÅUó\7f¯¡\9cøW>ÿ+\9fÿ\95ÏÿÊç\7fåó?M>¿\83_\87ûÕîS$¡;\8bõvÅKhäN\99%Ù:Ðij\e÷±T\92{\94&\88³>\16\93:/\8c\1ae\90\967\13!\7fT7 µ5\\11»\1d\81ÆÞ\1a\19\1e¼0\ 6Íúå\7fL\a\ 53±©Uà\87ÁA;& ¶\ 1º\13¯ÀÁ,Q\83S²mq\8cyĤ/Ãnþ\ fû3èHö£JçìX¹*\9dÒp74Ù\a\ 1î; \føMDâà;/¹\ 1u\12\93\ 61Ýõ\86«=¢Pô\90Ñ\ 3\14¹ÍSÄ\90±\ 3\98g\81<E\rÿRì3\8e\85\83æH\18\8b2}#¹\ f~\ 6z\0\96\ 21µ3R\0¬Æ»g]qû\0¦\9c\8fÈ!51ÃxÝÓf1&'\ 4§\1f!Ñ3Íx\rØÊ·\99_¢|\r\94\0»M¬ºd\9b\81\8bÆÑ"é\ 5\1c0z\1ad^\f±%S\86ßÃù!0²¯Nscf©C\18f\8aýËÏ
-á\8eÅãË}ã\ 1LN\11\93à\95?׫\rxì\eîÀìGû\1dA\1fâÿ7wq\81þEÆóÅjB\11,\ 5\ 4Y
-à\9eÂ?»¿¶,â\9c×\ezðkHÑ)\91y$núK Vô;Òn#Z\v®¡÷?\1e;ÀP'\f fE\8e\97Ð\ÕÇ\f×òB\84yê¼F\vTº\89\e\98\e \8e\ eÁ²\9aþüÄ/´ügb\ 2×Ä\84¡ù/\86Àz1Bøº«ú\9fÄèÉ_\86Y\1d6ý\9b)\1aNo\8cܾ¿W\92ý>:LÒCh\82B£\ 3°\98Qrüí|Ñ\81Y²ÿ\98¡ü7p)=ýã\1f¬\8dÿf6 W\8bñ\7fº,\ e\85\82¸\1f\ f\86ùx\8fÚdçÄb67Â^|Ë¿W
-\aÃ̹\ f:Óúc1ÙÍ\8dÌ\8amø÷N\8a÷?Ô¦3"w@í@Ï\8eó¼ôgvøÎß;Iáì\ e\9dµûËÈì.çy\9dÌa\98ÞDþ4$:ÿ\11ª\1fɼ\ e¹§Æ\ 4:tå"âï?Ú1Ã\14\9e\8a1¶Cg\99p\a}ÔKFÖúð\9d¿Ù¤m=T\83aæð\e\ 3æÀ\94?)ÇÈdÅÿãÝt] ½£\86\ez;\ 4Ý\8d\rÉ/iû¿\97\f0½ÉMQ¤ÝXøAhû7Ó¶\82þ1@×kx\1a\ 4:ÏÈÈ\ 4Åÿáë\ 6·8©ÕpllåÄÿá\13Û\90÷G\99´ý?@ßê\vÞÿ5×Vª\94þîÑ\90ÛÝb½ø\1f´ÛóO\19\13ð\96ÿî!¬\89Ýp2Ü\rÏ\1dGâÌqØ&ìF\94\11®\135\96pu¾\8eãfî\99y¹!ÇKr¿3Ï\98ãw4\9a.h\12\9e\81g\1eÁ]X6¯BÒ8aÞ\ e·\ 4e¦\17ëý
-Ñ\90TÜÀ\16bÍ\v`.&fx4¡t\99`»!·{5\16¤F$\18\ eÆUÛ\98\83`d\1cªä\ 23\14åÜ\85íp2\91\8d|=¤\972C\83Þ\92r¼\rW\vVDE1Î<\9dl\17~æ7.á\ 3\fE\90qùº9¿ß\91æö\90\ 6Â\9d\9f§î<f\14Á\91\8cn[^ÙG#\91PD½%.Â\8enSÑ\0tÛò\ 3@§Kò-¹=SæüÉ\8ex\91EÄÕ¢\b\9a ~\11æ.ñç\ e\1d\b5\1c-V\8b\1dk\959ßï\89Éb¿6\v§\16~\1eîf¢\9eø=Zt|\9f\99=\16\10P#\ 2±3\8b¶<#¼ï\b'tOÐs~\85\10Õ\8a ±Þ&&y£¹ßm\ 1Çh¿\83\v¨8\1c]c¸\99íá©\80-r+â:v'V8Ê\ e\9e\8a8¨¬H\92â\8e+@´\16\89Ç8zSl\\15\96O\88AÉ[ÂØD\ 5Ø\eùÍlÅ\85w¢A\cØ\Ôo\1cO\ 4Íñp8(ß¡\96¿×Ù\rù\r_vHqÕ©Â\93"Á\92\96\16ô\8eKÿ\ 2, Þ¾\r\83bå?w¼\94\13S«bã6!p¿z«\ 2Ï*\1aÀ!FÄ°9ñµÌ×[C
-\90\e \ eúy¾\18Ï[\14 ý±;\82%ëP0\ 6\83hê\v(ÀçÙEÒ+Lõ\ 2dMóÔ\16ÑFQs;\1cóL\85)\8d³¼\1e\11\93cÆ\89ú\15\11\84ò@[¥
-\1c+ \ 11[«\13%êUF\95êsCá5ÙÔxá\82\99§¼\f\0
-nµØ\10æ\1d\902\1cK«uZ$V+A\\89{\8c\8az\1cnv\v3P CV'8\99\13|E\8a\19ࡲ_8ÎgK;ÀÓC9¨4T\1a%µÑz(`\84\83\18\a¸*ráÌ\8aä\9e£× z¯5x>)¹©\89\82κ4ËsV$\9e\88ã\1aR¤ ÑC\1a\ruy\15\9e\89+\13\9e( §\80\82¯¢4\1c\98a¥'§ÆC^\fª\80ëò¦ÚAhDâ´t\88Um¸\ 3\vß A§PñÐât\15å¶uèÿÕKâ\96âÇ]¸ÿ\ 5¡\1ePO§òl.®\16[s\974sÙ1*£Ôùî\À\93jÅ\ 6?Ó;s\80mg?\9a\92+xÖ¢${H<\8c'\9a\907>à"Ôáf¼Ú\ 3×öå¾¥<\1drû\17Jé\85FéFe6²wP\1e\1f#kÌ\80.þT\ 4,ntÏ\94$i¶y^l&ä\1fÂÞÚA\v\89X\13ìWت´ß®\16ch0üjæ¥\ 21\1fþZð±\vÙ\8c\82aI\a\1d\18\15\16½\8cò{7Ð\88\80\84hþÀ°\10\v7qä{lâUÔØk´Y\10\87G\ f1|â{\11)ç\ez\8d\ 5\15?\12TP¶¼ê\88P^6\19öÁ\ 2\ 3Ö9\12\8fª/1£\8c\9dôVô¤·"\8aÄ¡óRX\89\ 3ô^Â\94ÉWç-\96è\83Á£Þ\8a³oaG½\85Ë\1dX#/\1dÐ\93:EÈZ¢&ls!ü¢ £jÝû\ 6ß\ 2\8aÝb§£Ä0Òv\1d`& So»û\vÚ\ 2´Ò줯 i~?ÜBM&ø6Z@¸7ºâè½jëné\19n\ 1\8b\r\rÍ©VIx¶\1a'{WÊjH6 FÙpç¿KÝu\r4\ 1\83m\aä÷Ê\0^Qr¶x·Å@÷¬\89µã\0¤\14[«¨¾h,\16\vâ\91C(\82Ò4\8bÂJ(\15tu\9e>е
-K&ïÙ\f\1d»\83È\95ò\v\f\1cXR¤4WQCé´ùfbïY\9d)Ê\7fnIj\aÍ 17\88ÌBä\H\93³EO»äV!q[ÑA\81§ß\13¨è\ 1i\7f\11&0³/Â\ 5\vÔmÍ6\ 1Ãc¿\bd7÷\86\9b\ 5=\a³\12¹ÈjÐÑ\vZÐÕ\8diõ·Ô<\9114*Ç$ÌIûÓL\113@\80,âc\ 2åIÞ PDÄ÷\v]p`\1e\rW\82\13\1f\ f\87\82æx\b\8féâ\86G0\14Q2ÿZq\9c[.\86Dþ"¨-µà\99\T¢.qJ\81qJ\13»
-`>º\r¥\1aïï¢ F,¡\1fÔà\11
-\88F´l±\18\ e& ;1ð¾Òº\e\1e\80\80%é\bTÉV¨\e¨o&Ä\9f\1dbLrÌn8\94ÃÏ\9añ¯Ä\13OD\8c.ß\85|q\r\ fB\98ùÁ(\8cN¾² h\ el4flÅXÙq¸d)ø&_â$\93Õò
-(A²6\0«pÞ\1a\97\8a \12í\14\859\83æ|]+´)\8dVÀð3\fSäa\98\82\ fØ\8bÙ\bõ\87\9cÇ"Ëçm1\9f\1f4m²Á\89\8e88\81©µêòÑ\16±À@M\98Øi\80¹
-\ 5h\0\91¤ÀeM\9b2®ÖÇ\12n.·:ÆÑ\ 4\eëà\89éÑ\18¢\98¶\8a\98ÂÅ{%\eR\10XæÅ\ 6IZX\1d£0Fi\97ÊheÚ\18Ã+Û\9f\f±:\94+ 8 ìÙ\ 6¾É\91\7f\v´;5ÜÌd\80\ e\9aAXÃÕJ»\15½\lG`ØK)OË\9bQLQ.\1c\1e¥ÝrL®V¼®s\1eî\1eÈÛs\e\1cGÌ\88{El· Í\r¸´·ä\bÞVa\16\827:\88V\9bÈh±[\ f¡²\93ì3ð*NÜ|;[/ý#hÕ\90Ó©\9fÉEäÝ:\95æè
-,ys¥\99K;ßÓ\ 40Ï\90\ 5Å3¨¨¼R\ 3Ùpa\b\84\bI@é\0\1e½[ù'L\8f\báÜ\82ë¬%|\8dm/ì\8b\1ayg;Y\83Ç«\8dáAm'\86;g*\18ø7\94\96z»¥Øf\1aK\0Ú°ÐÙeÅ\83\8a\v\vÚ\89rlc ÕVs©\a¦Ü\bÅ\aý+ Ã\r5Ü\91[ÝÑ1-)\ 1¸Æ\18\99¶bòt\ 2J\ 3"qb\1eýe.Q@WSÚK\0{Ù\88ÕÀ! ±\fgê\8dtQÆtE\8avî4:\935;XrÔ
-í\9ek\8b» A/f\e\85ÝwEá5bÓMu¥\1cÚ\18Ò\86ÌHC\9a\11S\86Åd9\ eg½¢ü\90\eµ[\8c\99S!ঽ\ 6v`K^ã\8eVèÄ\bDqAÅÖÔÄ\ f\txmáaàCÞp
-,\ 3îÐ+û ¢ÒjË\16¿jÑ\ 2\82:ók\12\1fÛæ×\81\97#oEÃ=\r®/Ýv¿´çH\8f·«ñ_ê¤Â´\19oh-"\ 6mvÀÿ\14%\8f¨Ìï\17L\86Ûêã\81m§1v¤®\88\rÜ?Ñ\92º°\15Í\1d- K¹¨9#¥\ 5Æ0ò\ e ù\1d<M\85\1d\89èL\90\83¦@ÀC{O*\8b4´±N\9b1Enu\9a@Cn\ 1l\15\9df\94èL\0= 0T4\1aR´Æ:Jí =í"i¼#åÉ\13êmE:Æ\80\11$\fÃ@cAÑé·\15\rC\89\8b¦\9b\9d\7f²Ò\16yL\9b-5%7Zò\ e6£÷#\8e\1fCJkD\83\89þ"V\1a«H\ 3»\13Zª\9aM6Äl(\1cl Òh,OZPm\aÔÍF»¯\15>F1`vjÊ¢\r´£çCà \10\1aX\82\8d\88\1d\8c&qgñ\88\ eE\905\94¶\8a)Éù?·~IÜ+\84)\ 1\ 5(¹!\8fÒ\92\94ZÎ\14L~¥v¬\16\14r\1c\94èKhÇ$\18h·\-4D\ 6h\0³ \86\12¯Y¥!¹\1dkH\15Ô\80ÖXqÔ`²×\f\0hH^ðº¶\99\ 1¼=Z_G VÓýf¬A%L\e6ôÀQ\8a\8eb@ï\f7\e.åPÙÓFô\1c\83ñZd.9\9fü\1d¿ù\99\18\99\8b$ð\80'æ\ fgç¹Ùúp\99\7f\ 5u\³5°æD&\9f
-(.ò:^ÿµT76ACè\85\1d\84éT:#wsB\9cBÉ;Òy®¹È\95\16GI"Â>Akñ'±j\11Ô\94à\13&ÄI\7fL`©J\r'оC×Þ2Y\80Zy\7fÌK\r\18\81\81\17|Â\97PÒâAâ\9f\ 4\12\13j9\16\14ó\96\ 1X'$\19ò[&Ã_Ä=p \17Û\15\91\97\ 60¸ãäJ\156v\ 6Í\16\98\eNJ
-\92\11NnÉ\91¹É<\12EØb1iÈOÜJ!\17ô \19gÃy\10\81Â\82\8b\93ä;Åz=\1e)\11\90jáÃp¶yýîI?ß8RÃ\17ïmèºé+ä¨êz\9e\9cm,·\15\8b×é(.\86~ú*úT+GmÉÜS5s\1fÎ&\e\1f\8eû\1cµ\1fÇ*åà}Ü\8e\87Ã6\f£Kߥ\99\17»Ê¥ú~w.íÝÒ9ú.\180Ùs©\86\85â\1aÝî
-³Úc#\97\ e\13\9dââ&3.ùý\8eÙ\ 1¨Æä\15À\8b\95*ödìº+}\7f\16Âo>o~M6h\80ùÝÜ\93\89Úö\95Røê¹ð½r<\9bì¥)v;Rìì*\96\98Æz\8fï\1fùnÑßS\a*n\97üÌ¥\97\95Ï\\92ö¯=%¯}_qV'S\93\1d!«ò5hîKÓÏçXa\95[½$§\85ù®8\8f½á\12t|]\97Æxã'\97Î:\9e\99~À\90éb\7fÖ'Á§ë\9fR}R·\14|ñï«|ÇgÛ0cx\19Nö&{âÛé\19\97Ç\91Ggq\1e\1e¤Òy{èÚSxð~yrEÇS¥HìÝ\99Þm\9e\1a\8f\87Køiá)O\es\ 62\8e\ 5\861jqõ\95\ôo'\85\95=ëðQ\9e\8f}¾Ñ¹þ\81ãwåR·ó\90É\1eMõ>sùÍرöÜܧ\ 2±õÇÍ"\16\vÐÓP\9e\1a×qÏ2\89ó=\8eK·t\ f -æ bÏ!l\92\\14\ 3C°¾øý\8dÓç%
-«XkÍÌàµaÏ\15ëiÛsÙ\9b\88Ð`]êïQ[&V$û\9etoò\9e\f\8el\9f¨ÛÌÆ\ e&\94\89ºmpIÞ£ÏÑÇ\rÄS¦°tE},iö&\r\fÿ´Ý\97\ 2ÃôuÅây£ \94(|ÐG½ &&;6²ÖÃè³'SI³\9fÒÏå;¦yÑ[þb:\v¾\ 6ë\80t_0O&Sö\ 6KÙÙ\rÛÏóM:5ù~è£\95ä\a\fúk\16",\14ШpË\ fàS\18\0î¼iÃFD\18ý\16±\14J\ 3\84ê\12AgÃÑ·è÷8ß-}{JÓÀÝOy8t\\15¢£§ÇDËþò\94o\16\vÒ´³øÉý|&g&{!üÚ\1d0È|\8bNÞÊ\ 3ÜÓ+\84_òÍJéûyP\|G\ 3©éÚ>«\14§n\1c 0ó\15\8bµ'¤\0/ÞùYßå\9b\r÷]¥ä\9aÜ1¸á\10ÍÐ>XýÝÖÿèÉö\86?Ì\842Ñø0\97êî¬ùîín\7f85\19fExà\16â\85²p]u\0ç4\8b;\93½ü6±Ï\82_él «|äB\88\ 4Ò_éJ P\87Ûë)\90\89¾|¤\98\15/,·\10\fådçô\1ea ÌE\8c§ÛF5?¸Å\11Ť=ÛÔWÅ9½óç±t÷-èºê§\99\81HÑ\11Ý·\13DÅy½u\15çÑö²ìiø+\ 2¥\ 2\ 6x%¡\84é\94'\90Bs\80©Ö×`j6Wq6/Ó±Ôø©\9d\8f½\ 5\9fåkЪz\92¾Õ²Ï;J(-IbIÜ\15Mö|÷~â\ 1\12&\93(\15\1a¯K¥Ñ¢\96¢vÕ×Ø\140M9\88\ 5«áûCÊÙµ*®Ö*U)EÞ\82\9eLõËg²\vó\ 2³\1aO+åR$V\88ú\9a=$püxçE@K\81¯»ð½\9b¬\v«M\8fÌwç/W \8b;\ fßÁ¶ì%\1f\82\95k_ì=ß\9eÎ\1dàµÏëBÔÓ\983ÒÒU\9a:jQ0ZrÎHÁrï¥Æ\89p\0àî³\eªäf7/PÀ\7f\95FáùsþÉ>¦¥í®óíîû*þ½ò¥\91D\13\14\ 1\80"<'o±taéÜ.*é*î\14Éö·¶{(Æ Ð%"a\8dc£}Ùyóó,h\1aÙS@ÉÎ]l\ 6\86Gt\ e\9eÇ¿<©:=\ 5\12{l\8b\14ðýê=ßùº-²O\13ù¯\ºVô\83&_= \ 5\1a×\ 5üm?ÈwöÝ°ð\145\ 6r\fü°ÎQãä5³Zbþ\f¼¦³Íâ&Ö\9eÎ\9cø¨ÿ\94\ f][®Ê\90¦\8bxµØÈÁO\19ì¶\8aß`Ä(\99ŽÎb\96ÿ-#¼a²\v-ѯðk\ 1\8aÂ"z\11}\8dv\1aÁGøô\86y\9b\ 3P\84¿\15\98Îòi_%\16ñ\95ÚÁÁÛ¶\f\9b¤Qcøµd²óÃ+ÀF\ fB?\f\14\bOÚE\8e\1f|\86\7f#\85\9aÀÑ´Ð\90øéæÑ@Lv4MfÂpP±Ví¾\v\7fK¡Î\ 4(¨\v9\8a¸!Ë\81¢¯|\7f\1d\16
-ÿ6z'\ 5\9f£id\ 5T¢æhx\f\167³Ô#\8f\82\ eÂ'\ f%-[:°úÒ\85RXÚ\13\16B¶\f,\14æ\1d\88,¡o4\r\84'):nЬ\84¯¨3\1erUa\f9Źdô\97\84\192úÄ÷È\0\95~eÈ\ 2H~5ÂP%\vظÁÏJ \15Ed¡\a\80\92\ f\91uÃÌ\15q\ e\87\8e\eaΰqS ©2Nå\11xÃ`L6M\84\93¤´\8b¬t4E\1e2CÓ2 ¨±Àu\80\92\85Õ\92¬jF ZÔ\1cb"¯À*)~\84-^x0D\8a\1e°¼\8fº=\1eÕÚô\82P\8e°\88zfiLI\0¢©ñ¬y\1c\192KÂó\10#-Ñ\18ÛÑ8îj¢O\fúá4Ðàá\9f7©éçÎw{w\9bJÎAt\81¥?\r\8a\15F"¿\ 1ºrÖ¨|Ý¿&+\16·\1fh18¯8§í}WÀr)-s϶§YqÑ\1fäÊãåÏ5£ÊDæDd×RwgÄf\87ç\19¹3À\17\93:4h ¥\99Ï\95eL¿VÝõ!è8\89·\85Ùr=\873Q\9cïÛo¥»»\9f\82xB\85\ 1\91ooJÍ\§O\8d\80\ 5»Êq)\14\ fò\1d\92\ fØj\90ö}UHùÓ\80Õõ\ e\9cÐÞ¶<öv\ 3\85¨7è\13ù\8dxa4+\11îrM° ¥t»O\b\88a°\8fxSäº\89\8d\bà\9aBß6±ª\90SÆ<;èà%\f^ó\91\81ûöG\1e\8e\vXJÀZ\8f¼\9dã\9c\18pM ¥t¦sbÀ5a>\9eB}pj\8cË,ñ}ûKÁC\89¯üT\8d]\83'û\92µ\8f^n\vÈ\8c\15ð$tõßåY G\9aó§j\1f¥»BÔ\ 1\0¸F\85ÇÜ»»ðhÿÜ!s\18\8a\8a\98\ 2\9eľ\b"ûLôÎ_ª\7fÇ\86\ 2Ú\80g\ 1\11Ç¢?¿©Åz«F7ß|º\ 3ä\ e¸\93!Na jN\ 5\83ÏL4êæ\19 ZXEgïÈú7Ù\ 5ûÿp D³T]Ú À^\8fi\18Ô\18\83OÞ]uk\1d%\12\9eTøAÚmCÅII;\18 SÍwV9\ fx{ö\83\8fÛÙf0÷dI°\9ej×M\0d-Ã:N\7fðmi+Î?,I0àÁ\80[ýO?\98®\1fð~ayï\ 1\8eHk\1aæ\19$ \1d\83~a\19¼±\b\ fxbÇ\92\93õ
-\83Ët+ñ\91£\85Jºüáç{\89Uú\9fn[¥¼Ù\ 3®\fÚ\13ë8CYÞ«À{<6nÜ\16\1e[9 -^×\ fì@÷¯öüãC§\a}mîÁów\88Å1y\8dÅ\96ûQ\vklý«*Ý$(\19d\96+e°/\rÙdçI²\92£¨ùS8yÿ\9cE\0RX6õ\ 5½»"6M\14뢾\9bÛB\10Þ\170ÜûD[$kðÞÏ'Rw>þA7üã_ä\91/Vöæ(ëmâvyÃ@\=\ 3ÿÆ;Ù\0íÔ®T\ 6.Ë\1cÎ4\94K\8fú\9bÜó£ç:9÷t\16@ù%¾\11\9d\8b¤óA\0£æ+ÝRî/\86Æ\ e)ÆRÎ0-yþ\95tf\8c{\83Ñü5Ò\800\ e£Ç¿!!è¨Í½¢\81@î\ 5® 9-.èE\14F\15|ïmì¶üS\94õhÀË\17uûh\ 1\9a\9bãÞ\100_îV¨I\12\8f[\80Í_q½¶vù»W|Â,ãÍÝä4Y'¼\1cñ9ÀOÏb¥bÍÆ(#\1fiÉø\99@\0\13={¾\89$\89¯k\82ÅS\15(¬üm\1ctÚÙ ³Ãdg ><Å?Ë\83¾ý\1d\f~fÉý\14úN^cÍyº\ 3R7ze\a\98HÔ¡Î\99\95G\81·\85Ô\86A\12û\1dùnÌ\80¥\14{¾ßv¤º\9bi\19K\87ÊD¹ß\1c\r\80m\92\82\ 2gê*\8f=ØG>ìL<\ 2ñ÷\1cgl\ 1\16|È\96Kg\9f®Kõõâ½\10é½øó\8fîÖ,ßîz\80gQµW?c\85%>¡Ä¦
-£Pn\ 2¥ú{Ã\r\8d\8d6j\ 2¤sº£4øx÷úªS\19Ø®_KS\80¯Â*~å-Ý:]NdÜð¼\8f,\89\99} h"aMM¯:s\ 5 a DÛtÙã\8eNÅê\r®ÕvPèçzW»\1d\ f¹\ 1\96xf\89î\1a\956 äH×ï\93<rX°ú{5ÍvÁëW\14¡½ÿ\9eN\93\vÇã=0é¼ùJéµæV\9a\9a¤]Äc²§>É÷\ fF=wìa\9cjÊ\9a¤\88¾k\89âhÉ\87YjQö\92o8\90\8c\11<ß\89T>«ë\9dÛ\ 1Û}s\12æ\80\8al4Ð%÷sÆ\90ÉF_ªÅ\87b/+£\rv÷\82²¼\ 3³ù§\r\169÷#²\ eÙ®0?@ïóÖdG\e
-kà\aüy\17\8dÞT~jéÒª\11\11\8c`v\11û6KiÚù"\8b\vëU\ 4\10v¸\99ßdê¤\12\rÁu\81D×$ÇÛÄý4\80ç\9bÉò].UØ\8a-ovdig\8eò%öP&çò±ÏÉCi\9aø
-\94ß\88ݵ\f\9f\89oÊÑ\ 5z¿ÿ\9a'çM7À\98\94Xxs }ý\10\ 6\ f\ 6\95\8b¨$s\13\r)\11Hb\99/wó±D\e\99\8d\83Òô\91\ 6\1a\99\11\15ìhk¶J1ÿ9«\14s³víê\ 6¯ç\13\81e^¹IÞý\9dëuëÃJº´\13\8d\ 6Hb\9b5\97|&f¹ø\96\1a ¸ä!\14àйÑZ\ 1*jÍ\8dÎ\941󤽤««ûµ'\13«Ö\80~ùyK½ò\v\15\ 2\82²LÃ0ý# \8eïë\oÚÝ\8búÎDo÷%\7f{âË%\1f¾\97"ã\1cüéF\95M\91ÝzáÙõ'\ f½×Â\1ah? ú\1d«À\9cè\7fq¨&ÂbtÔ\9aûROÓ%ï¨RN»®ìO\80\16_\7f
-ëf&rH/\8fV ¾\96oÐRJáN çÂv`ªu\ 3¥i\97\ 2Î\1e6]\8b8°N\7f~Uí\15Ë]\8e²õw¥)Iù\15\b6\ 1´æÌ\ 5÷v^*Åi6$°\ fë¿@ã \ 6\ 3±\8c\89U¹zù^`ÁÈr^ªfì\ 401\12Q&\ 6;î½Ñ|·©\8a³>y\86Îå\a\94\11/%"Ý\87®ÂÞ#8\80Ü.OÈítÅ#Tê\19XEÕï|\13/\84\80\9b\9d]æÒ\99MÌ\8b\9c\19\ 4>M\ 2",b´÷-\9ay
-\97ó\11ßÝ#\14\14ø!\14Ô\b\r´_ v\15u\92µÒØ\94Ç\91\r\80ìó»\14\90åÈÇ:÷\15°\ 6¯<\99\9f:\95¡\0ÌßÅÕºp\ 2ë \9b%ï=! I»×\16C\9c*!{f]Ô\b\9f\ f¾c;ÀÄÝM\1e\vf+\8f\80¨¾°òø\95\8a\94rµí\ f×ØKB\83.Ê\10Rõ5·B\e\87¬uá¹¹}»\15a\ah\9dÏÂ*\96»B®\ 4»\91\19\85\9b\v1÷\1eÊ\8bvÒ7MSüLÅ!\88û\9a\v+¬VÛ/\99\ 3/Ð\98Hm\8fÊ#,í\10[ðl\8fQæA~5$à®\84\rnÖ`ù6ÙØ\95¼Í\9f g)-÷ü¨Åú\ 5A¹.\8fÑOàÉX¨J9Þ®É\8d\8d\9fZ»\81\1cåÔt}}\rÜöï¨`\v)X\0÷@b\97ýh±\ 1\14\r\9b"õ\ö4\1d\1e\80À¾O«]æ\1e°áÝ\15\80\ñ+A6ÙyØϹôªâ\12ÛàòÎ:ê|\aYø§øPN|!\85âÉÐo A8\ 2i §tã|t½B\ få!°°%Ó¬AË5ª\fV\81(\90\91ÑU.ö2+çãUz\a·¾}\15ç¯WÄ\9fÖt\8aH^¯Á\9cÛ.1äÌÏ\1aY\91P&gÇ\84TZîóñÑv&R Hà¾=\ ekÀÖ#±ÔtOPrÑKºK\ 1Ñ\eüÆ0"\1a\93=ú\83':ÀÞîT*¹\19 òξ;ѧß(rz\11\1e \1fp\ fÈç9\bì\91ô}¾ãÍ\81u\99¹7b(\888Ëã½u\90\8fûüVh\10Feä\ 5ÔÑ\86(\84\97\93I´÷ôÙ\8bDzÅZqþ>±B\ fË\9aK?\86ú¥»»´\95ß,\96¿\ 6ì±Êðº\9cK}>\ 1³3öèÁ\82Þ\9f1\90òoK s§Û|{\15y\96\bááK\8ev½XKw·!@ö¶ÂVI r»ö·Xw°ß\98ì eñ¦4\8bDiïþc\11Íü¸ËÀ\vrÿTÒ\951K\8d¼|âE\13'\93X9F³NEëÚs\93\8bYK(w\0\fä³\18ëLÈ4°Æ·W}\9f\10ÜLN&ãn28t·
-+\1fÞ¾¼½lÀºì
-B4\8fiòÐ\1fí+_\9fû9̶p ßÈ·ñvÃh!Ä\8b\8dÁ\8bª\98Õ\98\ 6|Ï`á\9f\9cùÍhFó²MÒc?¸F:P\94c!é¶\a\8c×þ\1e ðÕ\ eÄÚã^xÊÐØs¾û\14ë
-¸K,sß\r0óõ³$d ±üõ\fTÔ\16£óXúa+\8a\89"d\15\1cénɽ\b\8cÓÞ×»B>îÃþ®\17`.\88Wy\83H\róÜâ°\16^\19\18S\85q¾yW\83Û¥³W\88\87 dH\8fV \1c\88÷Ôð\99ü\ 6Þk üm¯\94\13ä¢Ü\7f\99?\ 1\81ã{Uhþ\15}j¾\7f³\12¦QùPí»âÚ¥Èò8ê\8a\14î]®ElS\7fô@O\\1e\8d~\ 4zÿ¾â\0ä|õVö½Æg\85ðsÈ'ZýEß;ËwK´;ús7ÌÞ\0ßØ \9c«4.\85Ç÷â¾\ 1ü2J.oJ\9f\8bW\9b\88Ðø~\90[\ ftÎZ\8bÐcq\9e\9bøJõUñY¦ò±àã\87â¼+ÄÁº´Þ¼¤hþ\928x\94\97\f\vè\7fFÊ£n9"HF ä7h8Ô&(`ÍEHÞ\12(¦\ 2}ä\106\91Æ\\92åá×·7¿ÉZZ\95/çg\102ÃGéÖ2Å\84áq}\ fú©z³Ö\8e&_\9eF`.D\855\11\ 1©±Òâ\16\9b\81Õ\af\9e\v\0ø\10Çê£IÛ§¡Ô¢Hbà)ß{\12\80ë<^ÀC]º<ÎÔ@WO×Û«ÄSùý*1{\ 6>2\18Y\rÆåýý|w>ÞÁ1þß\f\9fÜ(M\8d+¡CF\rÔ\b*§\15Ã,ÀV©2¸'7äxN\91k¢Dþ±a®\959H\1dT~?\bßg\ e8\ 4\8f\89Í\8e=\13\ e¦öµÈÕ\82«\0QL~6~\1c\80
-t4zîLÈújµGe\ 6$\ 5\ f\86\lfÅá\969\1erAðµ\86¢VæÓë\ e\15óǹ\ 1ñ\17ûéc®³\en&ü\ 1\ZkÔ¥\16kx[\9fFj:\8f\90á\8c¨\8bË2t\86ÚÕ¬\8a\904-\88\8aé´\86Ð&f¢Áj\1ew4a\9eÒ*ã\90\f¢-\94D8»s°øæ!E\98wsÂÌÖ8\9aiîð\94?æÄÆL3'ä\f7fñâC*5\ fiø³\90¾Ê\1d^ëGç\9dìPçÒÎþ"÷æ- L3¹1\13\f\99!ÐLw3x+óB\ 2Èk\ 6ÀøW7`üæ\1d »\18\13æ\ 5ªä\1e\9aWÿà\99ºÃ-s\ 4\18<\1f\94Þ\8fçpxõM Uè Ý0Ð6\0E{0:r*\80_Ðæýf ¯.õk\934G~ ë1µØj\97
-p¸¯\0ö|&FðÌMýeex`±Yê7åëÊõ\87\80N\92)\88Ë\83T9\v^\99¼%&\9aàÃ\b\al5²¡Ô{\1d\89Ç&µ\aU\84\9d0\aA΢³nò#\92+\86Q, âQ\85\8a>+@R\ 3vù\83¤\96<ë\1a\11\90ù1E\8e\86»Æð/\82\92\9dk¤\15DÇ\87Þ-¸c@´gY¥\86\7f©OR[ \0ü\88 >î\87Â\91yÇaG,(\8eYWxÝ3ª¼¬OÀú.¦\v\82Ò\1c·±Sp\94\vv\94\11&×¾Ñ#\10&,Ññ\95/<¯3ó\81G\97 \84~ÅÓ\90¥/\1a:\199¬\89\ 3Hq\97â\fcú\97Å\1d,p¢Ñ©Ã\82Å¢E£J\ 6\93\80ví\85\96ñ¿Fa\87\1c¿ÆÎ\91Ö¡±ËpVAçÌ\a#\87Ôj\v+SÑYlÇ,\8c\f¹Â\9a¨UÎÊÍ«gâ\\99¡?9 u\81ÙÀ\1es-ÌË 8ÑÛ\ fFÏ©àÞeoçþëA³ºMÐ\eè4\f\88\96îÁMK²\17´Î:Ö\12^2\92\141\91ÖK\10ÌpGtçûõh3\¬\f\18ŬDë\1eÜä£eD\0#\10!¡+ªA\ fFôæ\ 3Z\13¢¢%M×K8[\f\1d-f\8c\87\95\b\©\WlcËÎ\9eU\19\93ö!ØÚSG¼'\9d;ðYÁ\13F\85\14y7JVZvPÌ5'ÿ¨-&|\17\aάpÓ½ôâu8\10æBvXüÆ=3¡\ 1\8a\7fQ,\ eód"_1O¶7
-`\ 1ϽÏ\93\9dïBðS0\9c~L\86ø\a\8fü'ô \15Êvw\85Ò4Q]Ölí\9b!Ü£ÊðO\83\9e\9bvtnq\85j7\16_ÀÑ6Ù-\9eÌ2mq=¼%,Þù\ 2<ú\9aú-\9e}²cñÞ¿\94,>ì>\88\ 5n^\9d\b|ÄRt=\86é }\ f\ 6WZ\86³Í¯L¨\10\ fÅ£oÑõ\eJÐ@\81\ fá)V\e\10E\93\9d¢27£¼wûp\9b»KÐ\99x-ýì¯\90oá^\99úxÃJo\95×nå&\7f3ÆÝùØ\86\85\12º:njp\e\ 4M\8e¢Â\16o¯_·ø⾸Å3öwà¬âð·²Å;\98D,®Åreqí
-\v85\97xjao\e~*\80\81|äÑ42\89ÚÕ·0!\93\1dM\89¶|:JAGÆZ\925ò\aèx5\98µÕúàku\85M®_KÜ4\1a4E¥è\1eõ±\8aßa\81p\87Aª\80'ð¦ý%\94{t:\ 1\94É5\8e0Ñ\14Ö\8dú,ºsþP#¾÷dª\96ka!\10Ð0ÙîlÔ\80ö©ÏÁ¼#\ 3ÊÍ%^½ù\8aü¸·\98"Ð~ô¥\ 6´f[\8d\ 2oÊ@Ó\96wÚÖ{m\ 1(\8as}¼qd\92Å÷[% \9eÔ8\9cV\ 1\1aµÙzo\ f\11\19P\b\ 5\81\r¿¾a\95B´©\bÔZù\8e_mB©\96\12P¬2\1d×T\81^\aïeÄ\95
-s\r¿N°j\95zU\9eiåç)Xì\8eà\9a\86É\835u¬\93,Ð\96Ã\81\80"(ìª\86¨^`\8e\80\ 2\92\1c\95¥«úN}\96z-\bÔuHJáÏðÎÿäS\ 6ºÝ\9aì2°\ 2Ðè\ 3\96²©\ 1\1dSý8þ¢\fô¡ì¶ýD÷÷\ 2P\93]\0KÛ¶\85\8a\1aÐZ6¸Áß\94\81\86]¯\9eÔêéA\11¨µ2\8c\98ì2°âU½{,¨\0\8dÚì\91x$«\ 2ôu\80UÈnW\0\8a
-vy°Õ«\9bë\ 61\7fR\ 4Z}\8c÷Tgzí³øÙ5-\7f,+\12¦±ºLvÚ\91óÒ\10¬û`®µÁ\9aãÔØV\ e´Q\7fød\81¾ú\9c²\99Æ"~ÿ\9b\0\14Ð\98x®o\ 5¬±~\8c)\ 3[÷ñÆë8®\b´¹"jª@Mö;ÿÏÖ«<×ð»\aë4~öÊ@ïBýF¥\92µ(\ 2íÖ\17u\ 1(X\17)ØÎ}´û¥\ 6´\84õ°~B\19hÃgëN\ 6î\94\12P azý\eZu®='1ت\ 1½Ç\9e}Ù\82
-вç9\17§\8a\b¨É.\9fë\9b·ÛW\ 5úmí6
-*@?¢ØçðË£\ 4\14Ð\98õái±LÚ\1f¼\8a\bî÷_\ 6ª@I"ë\9c©\ 1½Ç¾Ê\8d\12\ 2
-iLΫO¸õe÷XW\ 2JQ\ f>\e\vt\14rÉ\98Æ\93p\97C\fСuW\15\80Bë"mIRûP\11\83`½\a@\9b7Î\9f~ù%\a\80ÞPrM\93$_½,ÐeÂ-\ 3j\9f¾[§\b¨É\1e,¼âu©\80hcå\87÷*\ 4ê;\14\85\ f>NÓ\14wrô\96Ëß~\ 6hÖYö
-@\81L\ eÐ\91¹câa¥Rè*Y¼\93\8aBÂs\13\7fx\87@\ 3\87@£vëÍk\ 6\80ÞZd@-ÁBs\8e\80ÂuI>úesý&oÊK\ 6hö©Ñ\90ªr\80ãï9\89Ô\eVûj\15ÅO\83»µ%\98Ü\8cdOy\8d\1cÜ_[B\93õVùí°\v0M&B¨=¥\01Ü/T\9e"ë¢\9cn\96\99ç\ajùí\ 6käBAôôPÀ¿e±F;\eV{\9aÇ\1a\93»(zj²+</b÷\96ç¸ÚÛe¬9®·Õ\9e\ e°Nq¹\93=\15l\98w/ÖéÙ,*o¿û±nîÞ©ö4\82=Y~üÊOÓ\16\fðËÞ\12c\9f\1fJª\1aÖ{²Ü0O¥\8c\ 6\9fÞb½\99/«ö´\81=_%ò\1cÆ\ e\9f?`ÏÑrQíí\16öf\8b}ª=ýÆ>_Þܲ§\ 2Æ>bØç÷Ô«òöG\ 2ë?¥BjOsØ :H¨<\1dP`.~÷]DåùÐ\89'¾\82÷*OG6¼pݯ¨=íàw\8fÖ[U\8c\8dIüa\19\¨¼=qá¯ßw×ÊO#ýM7\95Þ½©a,H·,\ e×-²©\9cÀ\93qÖ$<Mç-þZ.Ã<\95K¾àneI\87o¿\95\9f\86]\1f0\8d+8{T{þéI§ÖmÑÓ¢ÏÝf=> Ñ2[ç¤ë)\90ô\ 3#½27[»È5+\7f\10\ 5VZÊ\9c3$\ 5)*\8bÛs\81\9d£Xéfc¯È¹,½\95Ó~ð\eV)\16üãb±\10¸ó\80×:[öµ/û
-\8e&ÄÀ\13A¶\85\1cÈ\1a¿]3îÎÓvõ.ÈÍÀ}|ã\0>äË\1e¹;@¸NÓ¼Ïj\v,nF.À\81Ö2pv\92-\89°¦¬AÇMËÇ9;Í{\89Þ\87`9 \91¹Û\9e¶\90Ê@ï/ê@\95I@\ 6\14h1\1e,Vé\16\1eU\80\ 2ø¹¸\1fª\ 1ýÒ\0Zõ%$z\7fr}m\13\80RtÒCó@C\12 ñZøeÞHq@«+ zN1ÐpçÊd\17ÀRû/ܯ
-\14Q\9b
-PàM\ 2ÏáC\19høõ\1dyIb°\12\ 4¯\83ª@\91ï
-\14z\ e\13\ 1(\98\8b\ 4,¡\ e4þðø¢\ e\14Ú#ªè5Ù¡E2P\9bëãÁªÚ\92^\16<úÄÒyR»\1d\940lË\94¡\1eÃ\1f\rcí\-¦\1d\94\16ÈæoD¥\11" ëVöÀOw¼\17Yê\1f¶\vÈþc\84\v\87Y\81ãs¸÷ ÷ò\7fÞÙuam
-6B´\15óÓ\97g\ 3»h\8bBq\99Ö5 \87\amùNN,\98 øÛ\88Ý\8eþÀå|\96úb,\80&?\9e\12ô\1c+¨\11\aï6Ë\ 6\9bªO-ðõÚÎþ\19¾\94\ 4#_\16£\ 3\8dßKxù\93®2q\18v¢!gÊvö\8f÷\9ed°ÃØü\9c8\16f\0(°(A \18ï\85À\9c(Ù\ 1%\83ÿ\ 1\92ÌbuíAñMT\86ä-{\99?,>qQ`Pð^\19¤ï\r \1dýaç\87|rÅùµ,Âü\90®<\98!ÿ§-v\81\14Ö\ fØØ÷zë7ØC/\89\1d<ã\11ÉB\9f\fQñ\8b|êúÁX\1f3Ã\94çHd©\13CÊ+ë\8a\8f\90h\91»2±W_·Ú\94%Ð\15CÉê\94\85Mqë«\ 1Ìkã\1dê}\80y=25Ì9)L ïìºè#K*züä\81èyõn%\0øÙ\83îMöcV£\f§Q\15uÁ\ fY"z\×\88*Õ¸òÕ»S\1d\ f;\10 ÛÑ\1f\16w(èª\80»òGOÆ\95bÁÌ\95\8cã£0µ,~×005\93]69ÉÔ|6í©1\7f\88\96ÿ:³u¥·Ê8®¶Ö&»\9a:\12fuÍÌJ\99Øûe\8c \97ÏÚ\132)®\96\8cv\90\8eàÇ\10R¦óêݵÌV\17Ó\18X¨Rà\12\88\19¨kixPÇî)ÀÒ\ eOÉ\8c\7f£ØÙ\88VíLµ+\91F\96ò\1d¾=à»QðÇÀ\9c\95¸Nbó\83ñT`\bª®±\96\83½\ 3Øz÷^^&)nË\81ÆÃJðs_@\9bL!&\ 2¯² ð\ f;x&\88}H\e`~R\19(éÊ[p¢!!ÏB42\8fêÈ°iÑÿ®2Éæ£\92\15&¬.\831é\92\84\7f\ e\96d\19§´u\9c¶è\11k10«\17ZM1)Ú\8cR\8bQXݪLª"®\94*&Ãë;©âÃ+GÍ\80õ$X\17¸ÒÆ*DV¢\87¬\9b\91S{HÐ\13\a\83
-\16Þ\12·Ê\83â95\93N:$\9b\86®\14\16Ï\80ò\0ø\^i\1a\166\1d\9b_¼\82:&Ý\11ë\aåØpðt\99Î0â\9bè)u\85ÖåèΤ
-E\7f\"iyÐÙÔñór1\8céØuÇLr\9at¾]\fc2\89v,ÆØÈ\16\17\87Ùe~d\8ek°ðÒW\15BrëX°\8d\19i)\1dí¬&UôZ\ 6²\82®ÁÝ\99\9a¦\1c\13\eØ\8a¶\ 2\98ÐÒz!®¬Á=\94»c\1ce\97ÊJÎj&{è*u×8\v;ún\9fI\1f;\ 3¿á0\82ú\TÅÂ\11Ë4PôZ\84\81\98\8c\fEO
-è\ e\ 4î¾½\f\82gãD\95íÑ@LöCß0ù£¬¢v\19ZCÛ)y\86hK\93õ\92P\90\e\11\10\9fÞ\ 5\a%\84³Áx¾ë@
-\fËÆ\ 1H\82\1a\12\eæ\93ÞX\8e\11\1fj\fò]\97\99\1dR\8fOwP\92!ílF\ 5\804ëæ\80åê\97\11\0Hò\7f×\8d\v\0íùí<\ e¥ù¡ã@\8eDº\9e¥ §Ù0ÉK~)Õf\9d¥\1dî.|W.0?z\1e\14lKc±N\15\9f\1cx<Õ\8f\1fUb0Ù\8fC\96&\8b+!\võ\ 2ãÉ\87È:\92Å%È\922¸\9fÕb\12\16_ßJY\ÅIÓ\8d.\85®\92V«\91\b\89f,a}«áç\1d\86dE9\8a\87\84\863\81\ 2½@\80~H\16jä$î83L²¾\re{Ý{Õ©\99\8c\ 48BW\89\1fì\9cð\ 6Ãû·\0J\8f<{Br\9d*\8aÁjGé$Ët»\97JtÃq\1f±~\81\88\89\1c\17\ 3Q\89×ÜÊâ5ê\94lS\8e4HMél²µ\93\99Ò¡ì\93Ý"C>\97£¨iL\1f®Áöî¨\98\19/a¤D\95}µ\83\80rKXM\rÞ!5ÈêJà¦\ 1Kx{'U\83§ñKöéÆu\ e\9d#JÞÞÉÕ\9fÁh´\98Î\93\8f\16©Þ\13MÈdצt)í\84O\14\0"\1a»;Ðw'\b\0\80\16\99¢\83Cb3\87UT\9d\8a-\v±#Ut:z\bBá¬Y\ 5Uç\0\90m\ eÑV,øT\ 4¿9×ús\16q\9djTá¥sâþ\84xVÕÖZ´\97dDßiÄ«`g|¼U\93_\fÄ[AgÚÌgH&C¦ÁÏ\8dÅÃUs9e½(ïñé÷ã>j4\8a{â¨\1fÏEf%²aÎêÇg`4&\ 3\9a\ fuæ?C\89n¥Ù¶_.סKùÒ={\87A\900 3\99ßu²º\81ã\92lú\18ÛãSEåä:hd\1fÊ$1@µ$\1ap]".\99D\ 3¿%\r\98q6¸3¢cI¼<\9d-Ñàº\0³ò(\v^K¢\81®\14$\1a\93\11qì\ e\12èì(\89¦l)Á¸tèlÞ\87\eñî\vðþaö\83*\8déöcD\86h÷\82ò\93SFÄ\87þh\ 2ªN=ôÄIÏ\rGE\a\91-\85\ 5óhm ±[\87ðO@°Q$±\vFÁq¬\ 2}\1e·<©\vüfd!\8cä\\15Á£ºêÞ³AËì¥'\bYNW\9e¼\91\v:Ó\17²&£b¶g4ûAIÌð¼_}Ýj{Ó\ 6Li´jÒ¤&U £Û\8fªi¯Ú\8bTWòý\9c\9b\ 2ÁôÂ;Ô\9a;ïºý\18M<2)*0yg§Åª\ 5](\8aô:\80âzäÚphm\18ðit¼jäñ½<_¾ÿPÏZàqÃÚ\10t¦iß+éB\95\18,ììDû^¼¦¸5r -6´Þ_D\8b\81~Î×>¨\ 2âþì\f"4\1aõ@\9d8\17N¿\1f\U\ejëB\ 5 \83[}ÇkC\r]\98tÂ\k¹6L:\8fô"T\92\0\8b` ï;Îß×I\9e\12Ò0T\85PÒ©î\8e"T\9a\14\18Rm÷\r8\v'Zº\87q~ÔÙÑÜ:.ÄÛ\9aQ\ 5-Y+ÅXT{%MFêp-{F¬L¥ÝS\91Ç÷¢\19ºVO§S\e\92\88"$qK}öRrÒ\82\85\97W\9fL-É2'\8cÄ\93U\9d´W-µ$Î\\83×\15\1eæ®Éç_x\99Ë\ 3ÑG1\97$\ e3-úu|#£ S°«\88ƺ\1cµ{\ 3;Ó!bã\11\92`áÕz}\8c\89!ÏA\14Qò+\8a³\19íL\85ÙG´Rò\0EL\13º\89\91hHêaa9s±ë"\8b\ 1\89Ùb\ e\8f\8b©\f\14É\99]\ 3T-\97iΫ«ÞpP²MöåJâ*ׯt32ª 3Ù/SCçѬ \13U\f\9dUC'N¢:¬ \13\9f\12pN\r\9dv\ 5\9dP-x^\r\9d\b¨B\ 5\9d(sø¬\1a:í
-:qµà95tÚ\15t\1aÕ\82GÕÐiWÐ\89«\ 5Ï©¡Ó® \93V\v\9e^C§]AÇh±ókè´+è %_¢\86N»\82\8e\99Ëq5tÒ\84d\8d²7>.Àí¾éÙuê\15X?\ 6\86d Ò\v\ 6¥\97¸}Oj\eçL\16AI\1eÉ?9\19ö½$µ~\83gDz[\8e£rÉÕ÷øÞKÒ\10Ó xâêÊäU6\87\99f\12\97K«\bO3\1fOi\8fO£3½<,\95ùÉkF\fTÎ\19\9e\9f<ru\ 6Ò\aÚe¢Ì\90\fU>êE®4\86´\95ÚÉÇ\16Í\1d!kúeXýtfô\10\f¾¹ÓN\ 5a<\v\ 3É åsöæÄ\96\12\9aÜÙñ*0µ\ f\9blj\8aY7ºÅnǦ\82(øû°Øíè\88ñá\84J~c^\92^±\9bñT\10Ui \10£\90\fr\92\e\ 2)Ùh\85\96\91\14¬Ì(HÊL\b\14*Ö©|4&³FÁ½^\84Äp\91éÐ:°ê/\84b\89©B\1d\9fV ãQ\813\18\83\fjDz%a\12\95À\994p\b-]¯4LR\85h)K³;Î(MS×l¢ª4Cu`ñ\9d\9e9qD\1d_\7f\7fTÅ\89F\1d\9fÄòR¬ãs\8b\83Vê¥i\84j\11\8cÜ\94ÖÉ\81¯jåÀ7Û|dYgýØ:>½\1cxãu|\8a\19ââ\9a÷#êød\11L=b@\19\11ê\9dé\14Ø\18\1d\17ò\91{ê{æGOR÷\94\80c:Sß½8\ 1c:å7Ça,tNgÒÀ/s¼¤$Ñ U?éTÏ\18²ekò\98ïaÅ\90ÀìÆêå4¤\85J\ap]ô\9c=Äݸ®t\9eÕ\94\9c=\85<X\ 3ÎÞ.«Sÿ!ØÎB\aÒ\8a¡]öúø.$\1ddhLáh\14©÷ʯ´\1aNô
-åTVHdÁÖ\ evF4Ü0ÕZ;Ev\95ò¾.:\fÇ\17ÔbãzUr\aêMÅr\81\13
-Ë&t\90;*u¯´Rù\9d%J^\15ûIÏvJ(\17ÕXIíH\15J\ 6ªó¨°\85Kdõé\14ÈéH\1dõ\8a(y\ 6ÑÉöØw]\95ã\ 5V7\19âx\80'Ãìª\94\87$ÐØwý¸ð\8eFå\98t\17\a\90\80ܯ4H\ 2ú\95q\92!ñ'\82*\ eê¨\88\8cÆ\90`FÄeèI+"Ã\9fÙelPÇEdd^\924þ{³\93Gd`IÒ9\11\19\81ÆÖ·gGdBWIç\95\92\1f'\960\ 6Ý\86Ûã#2ªþþúöì\88\f\98ZØ©\9eÝa¼\fÍ`DFë<%T\86vnD\ 6\16¡\85d\15©'Ddn\rDdLÆêóÔ#2\86\8as8\e\ 6bç¨ò\1cÍ,\89\80ÌXæj¬têP\r\19Ëwª \12ÇÔ$&\1fu\16QÕ78ȹ
-e\9fb\ 6JG\r\9c\ev'dΪåô\1a\9a\9aË(}Âø\982\85Þ\19L]Ð+\1f\83©\v\ 6ª\ 5uëêô\85¬É@]\9d\91úQMÆE\95\8f\1aa7# ""ì¨\85@¥\94¬Æ¿²T= #\1dò}Tð\9b:1\882»ô7\1fN®\87\93úb\EÜ¥ëáÎ=\7fÌX=\9c\1e\8d]¦\1e\8e9IO^\11w|?ÚõpÆ3TÏ©\87\13ÙÉ¢\8a¸K×Ãé\9e\bz\91z8\8dl(ÎÔ¼@=\9cø&#\ 56¼P=\1c\93\ 3/¯\88»t=\9cJ\15ç\85ëá´}1µm\9dj\8f¼@e=Tp:¹ä\86s"AW¸1ÛÒ@N$è,x\ 1Þ\aøî\18رR4\ 3D\99\90O\970'P/\a\99ÁÇïð¢~¤Î³îh\94â0¨\9f³kìQ/,\13\8at¥h\93æ¨\8cgÕ3\80\95rà\re<\ 3C<ã\96³aù£¨\8d@&¯Ï\0\e¾\9eu(,\17·\9c:ôNM1\9e\9aìø\91s\8e¾\1cSMMvü\18.'U·Æ\8bJ©\rG\13Zï2§\ 1£~ôÎ\961ར~\8edCE-Ö»\b\eöTu¡úiZªiÖ½\83#\81õNCóh\9eÖ\bæw\90U\ 4\7f;Ú¡V©H\1dZÛª\a\18\eEàó%+R\9f/Y\91ú|\99\8aÔ\8f\9f\vT¤âVßE*RA?\17©H\85ý\9c_\91
-{¹DE*¬^Ó?\ 6Z\96קZ¿\ 5\18DãÐTCIFÒ\es\80\808dÃ\ 1uv\\8b\910¢b¸³3z\94JáÄZÌHF\8ft\92FÝvý³ /Q
-'p%[\f÷[JáNö+\8f*\85S?\83è\92¥pLF\84NyäÙ¥pè\fÕ¾¶.1è\9f\8dhUÁ\84,X\9100Vø$M\90Ð?\11\9e¿+Ma}åG\v\9f| \1a\83±\1fÅ\r £\ 3Èp\;Eûî\ 4\eæU~È°þæ\82j5:,b3°\85£u:/\14å\ 1¤òÔê^õ\8b\9beC\92\9dô-¥\bQ\16´v\ eª`°\17ÐÉ\1e
-ðÄ×¢;ÛW1\8bwþÝ\81\97¢7Lvx\81øÀâ¾Ká\16o©ý\f/\10ïÀ\vÄ»\16w7\1f\85\9fZ°eÑâ»\eD°ÀË2Æ*£\er)\1e2\17q\92^\17ÇÔb\89üJI±[+\80\89±,©;£\1dW¤øòTi±\9bstÕ^ªUØ\85]\1fZÅn}\9f*Pt©¶
-Ш\r\95E©WØõµ\8aÝ,\11u ðRm\1ehèð>>õº³´åSã\12µÇ\[\ 4Tv]\1c¼jZµÂ.2wç\9eÝ[µ\12°Wb·\19&\ 3*½\8fﳦ^ag_\ 6z#5 C\r U,©y\1fßìÖ¦
-Ôòa\8b>©¡×«UagÔ¯e«
-ÙÕ\87À£O\%Þ~b¨]ÓFHszÕZZ\9b7\16\ 3=RûÁR|\107\9c³`\88òñ1\8euÁÛ^§L¡jÅ\8eõSn\ f,ØÖõZ\9e(/\8f¨\9eTÚÃÜcµU\r<)GMÔï±Ê)\1eÕ¬\9as¥^Ú£{GËáæ\97R¬ï¼\9bä¤CÚË2í/u\93\9cÒÒ\19\8cµ\1cÖsª!\85Hï{IÿÆ\11I^\9fÆUfò+äô£pG\"§:?ý{ßô.\e12?¥³ÔN.A5rÏ\88Q¤ëÜÄ`\9c_°i#üa\bOâ\98§ú\ 5t¼Çw±j:%÷âÈ8\8c\81j:%?@1
-wV5\9dR-\9dþù0ÇVÓ)Å\ 4MöKWÓ)ÕÒA~¹l5\9d\12å\98.^M§\1aµ¾h5\9dR"É1'\84\18«¦ÓËQ¼L5\9dÒ>\8dòÞë9ÕtÒ5ejéÔwFN¦SÞ{½t5\9dzÍÈ%«é\f\9esuf5\9d(ñ\9e¯¥SÜ\15=«\9aNI\19\99$AÂKTÓ)\rI´[}¡j:¥Z:\85\esά¦SZ?þLÈ\8bUÓ)uÅîð^°\9aN©\96N¡fäÌjºS1v\5\9d\ eÆ.TM§TKw$Æ\fTÓ)ÕÒ©ÔX\9dQM§dyÊk«Ï¯¦S\128Ò{\13.QM§´[\82üÊ\8bVÓI;¸Öó^O¬¦SZgÕ\9d\91\93«éÄ+Ämhè\97\13«é\94ýJUt\9cXM'B\ 6oJªWr\9dZM§4!Ñ\19DjF)\1cÔ\99\ e ÚßOÒ\aÅ;Î\92®\89¡U Æ\8dá»\8e\1c@Éi\8d§\16>éJ\v©uq\89ûêt¬\8b\vÝW\97Q¸Nɺ0\86'Ý\9bmED\8a"\8aê÷Âé\16Ã\e#\ 1xæ°ÞM´ncK7WW¶\8a\99öZ·Ëé]A«8¤\83ì\ e8(#ìlhH\9c\87iPÂhà)j\¨zD¡«Ä2 õ\88nå\1eÑaö\91<\b¦r[\96ô¢»\13kÖ\84x±Z>\8cA\93Üà5w&#\11㳯¹C±\v½\8bî\f\16Ò]àôì³®¹\13Wqª^tg¼LIå\9a»##\8a'^s§\18Q\94_twdÒá5w\a'\81+]twB²\aÐ\v¢»ØO=çêî\82u\16Û»Ë\9cÖ\r×%ùxv-Ï\9dv.\ 6\9f ©[H§\94{xd®5\ó³¯È¹SÍý\95gªè^P§\9eÄa´*\rÝM§\93Þf,\89\fâ&f\88\92UoØ\92l\80¸\9c\87\8e2¬Ä\93(:±/vÔ~\ f\fÍ\e.ìÒÈN\a\ 3\rkGÄ\8fÈ\86B6ÿe²¡PíÿÙ4\ 6ðm$\11Ê@åã\ 5¶BP/\12\83Uaõ\rös\8cÊSÍì\82ý\9cÄ\81\a½\0\17V¿RØÀ¥é¨3õ³\ 5\rÜÀ./¬ý&\9c\a\85µß\84î^\92ñ¯oÂÐ\95¿
-öÝaF7èÌmH\98\89t\97**;\e\84Êãî{ÕÚZ\ 2ÖÚa\ 6u\8f9ôVû\96L#¡¿âAæÈi\95)O\97¼Áðér7\18>É
-\19Näý\1ey\94ý®^ùè9Ç\9c\10zÑÌê<¦\9fóO `ú9í¶j\89ÿ\ 2ûÑH\19:.W\150\88B!Ã\19;¼Àö:dCð\9bB!à \11ø\13n¸S¬¯ì\9dÍ\86¢®.woµÞ\rwƬñso¸\13U>*Þqwdå\8dÊ\rw'Ý\94wt=\91ÊMy粡ì\86;Íóù\rÔ\87\18»áΤÞ\99¼°ö¤\eî\8c\9ej^ýø9»°\v\9eÒ\8c[uN´0^X\8b[\15ýFñÙ\83Æ\vkqëq·¤«V>\12\ 6j/t+\1f¹êösιBý\18\8afiç\¡~Î+¬E½ ]y~aí³æ¹p9¨+\8f©o?H®1t]\9eØ\86\91\971\1d&×Àú'm\ 5¦\18×R¾÷M\83\r\8f,bzA;MªZL¹\8cI«Hm¤\1e¼cÏë3ê¸\83Îæ\ 6Ò\ 5ån»2W\82Î\96\ 6¸Ò@\11Ó\vòÝ/ãW\ e(m\a^îWªè¤¤Ó¯\91˨k\18Ê¢
-`P\9aeLÇ\1a\86#f¿U\ 6\ 5üz\89³Û`}ÚDt@ºü¦¼ck\\8b~õ<;A\14ÈÎ\81ר\b;çhª\ 3\8c]ìºÇ\11-lÀjÖV\e°a\8aþ\98\ 1ið¦¼\97\81ñ[@Õö\92Ð\8dt\17»î\11\fIëì\ eÃ5®\ 2÷f"÷\eExì
-4h\8a
-î®Lv¶Hï6ñ
-«ûºðOÎâ\19ûoaY_\11ÕöùC\8dÄ\15¿t×2\8c±\9f$¥i\14\8dÛ)\ 1(¤dé=lÖ`2¡\\ f\97¶^«ÖÃQû/¿z\11\1e\80\92\ eÎäwÎy\84{Ø\14n×ã«ÄÞ´*ÿ¾q©ÿ"«ý\9b>tT\81^ã·\83±\1aÐ\89ji\9aÉNÇ\1f
-\1dÑ\¥¥i´mN¨ÕÃÅk\99\9f«5?SY=\9cKT\84Çß\95&BðMP\15(VI`\ f*@£¶«ö:ØW\ 2j²Ã¹j\14\1cZ+tX\1dhÕûÕS\ 5ê \9c±¹\10¹\92\97áùµ\806\1cª@)ú)cQ\ 2j²3µ\7f¹O_W²ªD\82\ 3\8f>±\vá*¾MÖFÚõ÷ë\8dX¨´\8cÚ~úå\97¦n\8f\919Kw¬\9a\84%2\1fy\99Ñ)dD8×\aQ\95Ê\9eRWQ¼¢3\906Éxâ
-ûAï¥\8b\BP\82¾VEºc¥\972¤q\ 1\9dÄæUºÅÌè \8c&b\1ent\89%?X·\8aöy<F-Ý\92,\9c«p3\8báHÒ{I÷\12\14!\13R\eOǤVéT¥¹UÝ«ãªÒÔ24eçô\1a¢§#³´Ts{àütsÒ\8dVÝ\ 1»[\93_\8cWÝéd³\99\8e\18\94ú\817GòKJãVzf4\87¹±R×Zá0Ltó×%\\89²öq´\ 6c°¯ÞÝ9Á- ÆÊ\1f=íT\18£ûÖå\8bìò¼úlçÇÇÊ\978·\11Ö\0rÜ{ú¹ÖèF=\83\ 1M&:ªZ\ 5¨s`§±\1a@Ãõbz^KY3KËP|L\9a4\82\1fîí\8c\82?Ús6*a\86\95ËùÈ£\90ÕÈB\18¨\83\1fZïEÂê ëæÈî\0²4\8eÂç\ 24Le½±¨Ê2¾\95_+#\ f0ªØ#Ì)4ºÕmÀrS\11ú\86
-É\84\9dÄIUÛr;¢\90,¾\97é\8fsj¬F:ç\1c\bá2$-Õ«ÛÔÏ90`\8d\8b-¥\83\80ç±¥\80¢õ\93m'*Õï\e.åÔ½óæ`ýÔr{\96qJ·PÇ01P\ 6îJ3Þ\99j½*\7f¿Ø1\9d\1dMñ\1a\18Óå9\ 6c\97:s\ 4t¦ºsy
-Æ4
-Ò\ eÊ\85%;¼'V\ 1\1aµ\ e¥w¥\1d[\ 5(åJõ\1a@\85S5\8e¨\ 2\94\8eA½\ 6Pv?ò\91U\80Fk\0Yɯê\ 2©uqÜ\8dz
-ûbGT\ 1ª\88º\83\1a@Í;Ru«\0õU\8bJ®ÂQU\80*ø<¨\ 1Ôª±REÇÑ7ê)ûÈF«\0\8dÖ\0ªúÈÍ'åY\9dt)ß\897²\1dy)\9fjEêE/åÓ\89*\èR>\93q¡qÆ¥|29ö\9b.åc¢£§Þ\80gôR>.
-÷{/å\834\ 6\aõ{/å;þþÊS.åS\8c*ÀA\11\8a\97j"Û\99\19\8dÞÙPâ[ýÄ·\98]âl(å[ý\8e®äR¹×ï\84³¡N¸×Ouj\178\eJ¸×ï\9c<%ã÷úiWÝ]àl(t¯ßùgC\19¹×ÏP}åÙ÷ú ØQ
-e(PòI÷úe4oõ3Ù\r\98ì<vÔïõ;®\92ëÔ{ýä\14!½ÕO\9e©rê½~ÚSÓ¼¿ò\88{ý´oõ;û\ 6\10ö^?í \99.t¯\9f^\86êeîõÓ¾\bËd?"çLã^?mîå¬qyùѱ÷úi+:\99=vò½~\92\14¥\83[ýÎ8\81Jr¯\9fvê\94éB÷úéWs\â^?í[ý\8e»\8fOý^¿ãîã;õ^?i/ò[ýTNj=ú^?õt2\ 6ÊeîõÓÞPaäØù÷úi\96§ ¼ñKU\89©ßê'¯{=õ^?í}\1a¨÷/q¯\9fvµjEê\91÷ú©U\81\89v\13ά{\0\9dé\b\ f\93ñº\aBë^?ã¼\7fν~<¡)Þêwâ}|G\9eâ¡z\1fßùu\ f¢[ýΪæxRu½e[Ä\86²m\rÜë§\9dØÊ×ïólxÚ½~Úçy\b÷ò\9cw¯\1f_r¥X\18-®\182^~tx¯\9f¾\1c»Ä½~Ú·ú]æ>>½$\r£÷ñ\9d|\98\8eà½^à^?®\17e_ú¸Ó\e\ eïõÓ½\8aO]Â\9cp¯\9fV±ÅÇ\ fãW\9e\7f¯\9f"yñ·ú\9d[\95fÌÌ\11íW\9eu¯\9f¶\99#ª¬?ë^?\ 1ÛJU¸§ÜÇw|\15®Ê}|çF³d·ú\9dw\1f\9fÑ*\\8d\9c+\85{ýN-\86gk\12Ͼ×OÂ\86\a·ú!(\17¸×\8f+fS¾Õ\8f\91cçßë§\9dè\84,Ø\vÜë§í¶³\18»XÍ\93ò~Æã\96R\8cÉïõ;Ù¯<ê^?5\19ÈÜêw¡ìÁ¢ö~²ÓæO¾×OûV?\93Ý\80i(\94³\9dX\10«¨\91O¸×OûV?\1d{ÌxA¬æ~¢\88âY÷ú\9d`Ã\9cp¯\9fêJ¢\r\1cÃÕµ:÷ú\19É·<ÿ^?må\0££rõ@ì\ em4ð\9bºr`õÂAÆ\a\1fØem\18lú\94\fÈC»à7\r\ 1¯\9dx/-[DÕ\1c"zÚÊbX`qZE\81í%»«\9e\8d\18\ 5¨L\80/\81\1aZ7E\16\9f +i\ 6Ñ\80(RT¦½È\ 5véÛ<\1e\7fî\ 4\1d\19k 5\81õT5O·5¤,ö\ fϵ\ 5\ 6\82,\8e~mnñß|ç=©ÌOÂ\93Nµ_=ÝÅ\92ÄÊåï\0Vþö%±ÊÝc\1eHþ
-¹h`ÕÇ\84\ fkÔ\1f\ 6Xc=\9daÍ\151Ç:÷¡\ 4Ö/zØ\13=\9fb=l·Âzý\9b=öìë9±7ï\93\vû\1cY\9bX¿ÿ2Å\ 6íÐ\ eû
-½8°¯{ç#EQå\0E\7f\90)j\8foz&;µ\1fÄ\9d´#v\rM\82ö\ eÖv:|\8bIY{HLs½Ï·\99Å}m\7fi]ÅS«\82½Õ©Þ^Ï\97v«5\11xpÚVc{=\9c¸n\8e¾_Ji7W\bhÙ{·á\87/´$¨ôÌd·ä+Ý®\1d»"&à×\16©(CØuAõ¥4\rËI\e\16_á5,º\ 2\92½G0Y\90!\v¡
-`¬ú\98\f\ 3tì\7f°¯tßEQ\ f>\8f0×\83\99\86]/\9etÈ\91Ã*\85»\ 2V\99\8eo±jóaMÛúÑ\11¬\µ°ð2?eÏMüá\1d\vT\ 6\16¦&ñ\11+÷b\ 3tÍ\1f\16h\12^\99±%e\1fÉ\95}_ε\10o\15MMÐ>¼Þg*m¯-®ôCØâ\v8z°â¶d¹*Å\ 3\16¯+\97\83¿ÝZ<\8fÖ\aXvû\0\1fd-¾|hbñÞ¿Ô,î\1f\e\98éð'ÎÒ4s}fÐ\ 3åæ\15î.â)\93½¸\18\ 6p8¯A.Õ°Phq*åà}\1c|êlqïl\96\ 1\9fz?ÈÇ\ 2K«\1f½\1dºJ¬w\18æô\aÐW(\14\9dì§oÂ\rÞ¨¹\18xSÇ\8f\añKÍÃþ\90túàW\1fûµ\11f»\0R`W\1e/\7f\12X RÇòk²Açï\9e\9f?\81\14Ø%Øafb.á\ 1\9a\ 1÷à\ 6@\11=\1a^\15o¸GE\9fð Xx{Êr\ fê\ 1á\ 1°½fyîA\13ç\1fôÁ\82ÙWX zãF¿\ 1(ðW1ìjÑ+4\17C®Öý\0ß^7Pe\1f\1eÐ\8fÍ\15ü¤¿÷àA\e\87\12Û\83ײí\10@Æ£ÛSòÚ÷\15g^ÇG3\8f\1faìÑ\8bP\84\8f¯bIv\ 5\81\98e\ 4ÒØw\83Ã&\ 1t¿!>ÎÖá\82=âì\e\8fO¨[X}\9a¶AÈ\1eXy\8c\14æUÐå\vÃ\15èú\0\14\1elÐ\95Í¥ \94T(Ûݵ\v+ÿÌ\9do\8d§\8dÒ]ÝÒ\11¼\r\8c»°±(Õæ²´\87BÐU«¤Q\7fp¿ò2=>6nø\11\16"»Ö\15Qý|\8bÏò\9dýÕÂd/¿MZ\18\9c\17î)÷^jp5¾\80qÞϱ«ñÚ\ fq\84Ý\r\8b&^ÊÆÆ\1cí?3T\19,=\16áÆÿs\80ñ\16Á'ÐóèÓ\85Öå\19g\rñÈ3âZ\12~
-ñ\9fÂL\17åÔ:
-¾¾±=\ eÆ\15¸$o\ 1îÝ7\8cÿ\84\8bFó\15ì\83¹pãy\v\89\1f\95\96W,\83,¿#Ü\Þ¢\8c\98Á\Wq,¸êØËÞ\84«\9fKa½+±\96â\vu\99 1Þ+ó\99uNx5úé\17\80\86®]M\88ÔOðçõ\19\96â~âü§ ¸Ýý,\f\7f\vËFcBãy¬|õ^\8b%OÜU©\94ï{qVöíÖ\11\8c\18%£\90Bý¡«tú«2p½¿\89u<´ÿ\ 4É\98¹Ù
-ÖJ!Xxõ\94ù(\1c§ãÅj9\es$¯É`¸ü\øé\ 1\ 5í.y\12\91p\1a©ê\\80ÞfÁ\83ûÛÒ~Øj\82\a7ÙJâª=)~ÞÚP\1d|CPäp\84\ e>»#r»f\1c\1f 7]\8c4\1dZo]\88Ѹ&@d\ 2ÂöC\1cCd}Ðði\80'Í\ fð5\ 6¤s\ 4w¢Í!ðçf\v¾ÆÜh÷Í\ 6\8fÊê\84YÉ\98tþp\921çC\85èPn¾\ 1yУ\18ÁL´biÆ\84\ 2bô]Ñõ\9cös\1f\87«\ f\1fá^Ç\1c\92û\9dK$\86¼\89\9d\aþæá\87\f¤ªµ¾E\ 2\15\8eÐ \84ÙhYXY7\15ÜÛ\8f\11\1cÍÞ\ 1R\89õjůe~\ 2y¿·-pò0é\82\8bs\ f\fÂF\f`'\8e3¸«>9¡\8a\9a5ÁÛ\ f¬Ð«ÎÂ\11øÕÏ|]å\ 2¥Û4\89\81^\9a\18\92¥\82Ä\86º²ú\14\84¿ºyCN0@\8bb{\13\bs\91ö\ 5
-,¥¤}yÝ\eµ¸\1eÞ\12P»æày\17c\7fÁâ\rV\90ºÍAµ\9c\84\97Wס\1enC=|\r\9fv
-Î\88ô0°C¼\16¯åË\ 1µ}Od\15 o\8ahÝx°ÀÍ+sÍ/°`Ë\1f\95\1fÞ.@Â.W\1e~\95\97¹ÍOà+×s´_óÝÔ·³T\7f\8fÞ\ 2Ùç´æÒÙ\8a\9f·7\7fP·Èò\fÌí¤Wê/\³þ¾\f¬\12Ðâ¢rM\ 1x/?9²F½V\ 6Þ\9a-ß\9c¥\eùn)|U\9a>ÒmÄf´åÓQÂ&öM\89¢nÞlÈê\v\96Æͬ<\a^qÂ
-\90\1fKÓë-\19*\96F`âã\81ötY_\8c\9bð\86\ 2=vÂrÛ\923~\1cÌI\rì©\f÷\eÈ|>\91ÌÂèÒ¦Ðlå>+¥HäK\80\fô¾\1eª\11ä\8fÄ©\90\83ã\81\eJþ\8fù äo\7fQÅéÍft\14ÒCyÊR2\80ò\8bÒXæià.Ë|n^ZVï<HZ²GkT\ 6\1edV"^\f\15â¡xÔ\96l´sÉ2±(,\9dÎÇrµÀs?ù@¾T_/èJi\85\17X^\f\97\16\82\7fâ\ f×òk´Î\87¹£ÇàÛ(¶Mv1¾³ÉGè\1dX=\99ýµEiê'N\1c¬¾ñ©\9fLh\80÷\8f\99ºâij©ÌµØÙ\19þød£\11²¡\ e\ 4©\\8cº\1d¶´Åû³m@1Ú\80.Î\1dx࣠ðì0~\8eË]ðZ|q_ßâZ¬\80hÝ<~Àw1æ\f¢,sÊ\90ØL8\8fÙe\14\8fNnQbösÄL\8fÈõînê\95Á®k)\7fE\9bs\93Ý0³\9f!ÛLv\ 3\13>[¶¡8\8cÞ\84U§\v \ 5Ö4¾Gþ·Å=£\15¹\1cÅù/µÈ¬0ë]\95d¼\86¤åybÝ\0¯¡³¡Î\13ë\ 6tø\114Ækñã!3\1eßÅ\8d\16CZì\1c£E Ѭua\0ÕÇLWNh@Â\84k\ 5Çe\16YC\8b)rÖ\994&·Ö\80¥tº\Ù"ÏI\bâÊö:ÑkÅ\82\1f\ 3ú\ 5¸n¯\ fyï\16ËåÇ\8f\ f\95RÖ\13¹Í{ɤ£ôVÙ}ækѯ\87Ü´»M\95©ÏQ3²\1aõ¯\90\9f\97\vP»«Â×C°SIØ"\19ÁãKíg\19oÁ\1f¦zAGÖ]\152!aø'Üqr\a\80\ 5® ÇûQà\85s\10¿\80'\1eµÑeÏâm\9eïö\9e©\14\91 \96`ö\96yì§Ön\94\87C\87¿ü6±Î\11ÞE+`'?á~%°\10\82À\9dÅë\92Y\e\85|u\ 5,\89\9f\ f¸\ 6ÀX.ö?\94ì(>¢(2'è\aö\94³\13\80>\aK~\7fú\19ÈóO<\97º]¶\8dÚ0\b¨Ô\888Öz2ÙÏ4\1c\rÉs\93ݨî>Âz:À6{+Ó\89ø6:ç3µØQ\96\92¢\1a=\13¼\18å\80÷/b?hC\ 6ër´\9fp¼|½¨'\ e\ 3^-\91k\ 6cX\bï§{IÇ\10;Ò/ò\ 1¼_:\ 6 è\89×2Éâû-Çh7m9Òa\18\b\9dÄ+\138\92`á,\96ülÝ'\80ê\88æ\0\94Z4]\0\8aÂö\80~H§}»4Ð Õ\ 6P<\9dF.°ËÞåk\91'?P7½\ eø\8aU\92×d)Y²M¢ØoÑ/'
-\0ú\ 1påïpW\8dê\97s!o\8bÅÂÒ±ù(ùc\ eÚd?Jµþïê\97#5\e£÷u&¬=] a¶WÚÁ\186\9e|Ñ`\fÜ"Þøâ+A³q4v\86ROÝ]\95>JÕêÍ\12È\95Ð\8fÒÄÑ.\8fòJ\9fiB\89\99\vFá\8e`¯\13I\9c\18:=\ff\b²É~\14{\9dÈ\\vÇÅ MQ\8e\9dAc\ 6¦+¦1\ 3ìuâ\9c\ 1\94cØëÄ\89\8biÌ\0{\19e.¸-÷*dÔ\1dÞ&\8f^ô\96ÚA\18Ò{°xÞ\9c9\8bg\15®X¼\83É-üê\80Ù\1d\9fLÖ\82çÑ\9a\82Á½¦Åõ5\8dÃ\r\952l\17bN\16çC\7f&»,øwVèOͪ\ 3zÿÂÑv%\83\ eæ]\6Na8BrÜæ\8a\8cö\95\84ìï÷\91¡\15mºx\9cBiâ¬\1cû]N\fëC\99ì'\86"Ï\8cÁ\9e\1cö?´§O\88\8f\9dBñ\1cd\93ý7/¼Ä{Õv%~c\fVÕ\7f\93ÅÇ\0K9k§ÅÇ6[ªÒÍ\86_\90KRIX÷1£¾\8a\12\97£\fU%>w8\8b\vË»Ë(\8b3ê\r%Û¥\17Ñg6»ãe¸\93Tq\1ae4ÜAì\8aóØ'aP¶ý°4\ 6?¯\9fß»×\1d\98¡\90dKá\8eVôÙ¶û#ß}úî\eô\92ЧÊÀ\ 2>¥¼L\84H\14\ 4=\92Úò\95Árå\ 64\96_\r¿\rð\18ú\ 4úñThËÍ'\97\948üñ\e°¢Qµàï\xn'ñ÷.<Zv\93ý7/<Zv\94;ú;\17\1e-»¡]\9es\16\1e-;äýߺðGìñ\9d±ðhÙÑ !¿sáÑb£Hïï\xC\16¬ö³¦ý.ëÑÌ\9f\12d2ª=æ0&\9d\81KBJøV¼´Ë\84\9bOä\83îL#"÷!\84ê'\87G\9aÅÏdÕßtÊ\13Î0\1eK2¬\91&Mß=\v\9a4Xì\8eÂÂ0Ño¶\9fèþ\1eu\0¹òæË.ïb?jý\88¬Ðë·àh\ 6è7ËÍë\9a÷O\9f$÷\0¡5\7f\15\ 5\83\81ÿr\1d!+ò.Bõw¡\8b\ eÓ\ 5[5\ 1p\82\92ßÜùØ\ 6Ò\8b#èZ\17b0ÝÜ\89Wû3\fÒ\81\8býmøãF¿A\8c-\1e\98\9b\17á3÷&\a\ e\12DÛþ+\89{ø[_ܹg÷\10\91\ 5sU\12L\ 4G\ f\ÎìûJÄ\140]\17Èd\86uSë6\7f;Ч\88§S«§\a8P«ìÚ ¸\9cNa]^,d ÌT\rP\85×w\9e+çÎÑUû\ 3U¥\85«`<¸T*ùI\ ec{\8b\90§o Óï×\1c_¹^à\ 3\9b0\1a1ñ\8d\82$\87\82\\88\8d\900H°§-_\1c\12Â\ 1\ 1 p<K\ 1 Ì\ 5\8a\f
-Jt\87GÁ\87\18\ 5û÷&\8f\82\17\14»\10!Ák\0 ¡Ü£ÓÉ¢`\98mJP\90¤ù\1a\86\ f\ 1\ 5ð\1e+´$úHÈâ·4Ë>\ 5×\1d\8f\82Ú§ßúý¤M\a¬\97\ 4\85\ fÆ\12q¬¹d\91\10Üãb$\8c\9b÷jtà`ä+\83ÅàìQFH\1c\8diw\81\92ÇÕº0Ð\ 1ã%¹Îé\829UB\93\1fÀ\´8\82½\17÷\8c1 \82ä¹ò´.P\r¤>[C £Ö\ 5\90:þsÆ\10ºJ,\ 3\9c´<\8d¨\8e¢Jd\8f\1dÈ'1]\1aãny\a"ª\ 4\1d@\8c\1dÛ\85\98*O\930N1]\8a»0º\1aN1Ur\1d0\18ûT\e\85¼\vAPª¯F6¹Üp\1d¸\99I\88"\8aN1]\9eBTNUªäâÉú]\bt©\81J\15\ 6go1\13è\12«\95:#þ"¿\8d\14\94K >¬Ò-ð£\95^\82\aÛ\19£1\8dY¹\8e\97|r\1as©Ñ\98Q:w 4&\10\b¤1ã\1cï\12+ã#\bDDc.1\8d\9d4\r\81Ædtn\98Æ\j4fd\f\f\8d¹\fÈ>\8b£ôñÈv\11¤ûÒ1¸µ%\1f¯\9150á\16èòÄ1H5ò)«á\16S¥
-E@\8d¬±\1an%º4 ¸\84\ eÎ×Èn6ÐÎ\7fýÜ%o\85¯¡«dñ\8e;ï\82ø& µZóJ\8bhçp\ få\rn\9f¼Á-\93\9aÅÛty\91¯\rkÐ'LÉ\ eã\0Þ¼\86UËDù*\9bßZ&
-¿z¸hÏo+\13\15UqþÆ2Qô\e¤äßZ&
-\7fó²\18û}e¢\b¨Éþ\9bËDQ\7f&ûo.\13EE¢È\7fù\9de¢ð\13.T\vþ¦2Q4\1a4\97ßY&ÊW\vþÖ2QT$
-hì¸2Ñ`#&\ f\971e\997¯\8c\98\ 1\8a \8fÌy7\87E¸'Î6\82E+\99È+¬ \f;\ 1\14'ä§Á\8eÃXÍ\ 1o)ù\81\92ÊÃJ*ÀC\82¤\ 2ó#ýHa\ 6\1d9Ë'\1c\12:\ 6ÙËJ~@Téz`ñ²ó3\a\8e-¼I\ fªg\ 52¤|«tú^(Û{¸ãê9Ù?ðÁ\13[+*\13kùØ\ 6Êd Ó¸!ß±Å\93Þ'\1cÎå. TbJ$Z\ 3Ã"£;ÈWw"¢Â«\85\9f(_\87éæççB\1aù#Ï®\ 6\90cèW !\aVFz!\99\ 5L¨o¦\1a´æ«@©ó î[\10aü\ 1\83ÿ7c\8aÅð 9\1e\8e\ 5Í\81ö~EPMj1[lÌ^SÊ\14È×qüi3!+\14At\89?w%r¼_\13\9b\9d9i\ eä;Åz=\1e)\11crB\98\91\b\8c| ´àc\87ÊÆ\12Å'\95H\82\8c\8c\88(M\13ÕeÍÖ¾\19\96¦ØkF\9eÆàØv\7f`¶B\8d)\0µÃÜ\84w¦ÎÓY£½ðë+\13\81aª\93eç½0ò\v\85Èݶ\12A\15öeÏ}ãY&ÝPè%ñÕÞ \8d;¢\9d\vг4JG,½\95²óT\16\8fû\v®õu§øY_\95Êï_\9e!¢\80óV\1a µé²\13r\7fV\808\87Sza\93-î\9f_,NßÐ
-3*ná\9f\14¬^mY|\81kYÅU\ 2ÎT0\9c\1dl\8cz\97\8b£\b\92 àÄJ\ 3(»õ\aâ\ fÀ\1a¯\11F½\14^\ 6\88\8e|\9cìä*¤YF\85ìÇ~rÂ;¥Wð\1cXd2¸Y\93\0·z\91ÉÃ\9b\fE?¤ú\9a\9f\7fQTn-®CÎ\84\9d"»aât&¹\aI·\88ÁÊýd\9a{\90ó\8a\8f\97\b:²\8d\f÷¨â\17=\10)\12Àe"»AZ\ 6\8d8F\f¹\9aóH\8e\97\10Á®V\ 4ä\8f.Q\ 4¿5\ 2¬\10«61h.{\98ë\1c\0Ó1\ 6\1c>êÛ\87\9cºzô0ê\7f´Å¡Ä{ô\89\\9f+f/\19üêgm\84h1\b¿bè\16"|\k¢¯l·ã·w\9cµñ^+\9eÀ}g \81v\19¹\13tE\93\13\ eh×ÏA9Nå\1cT®ó
-§\ePê\ f&ë\9dÜ#&ÞC
-Øè´ç)EE3Oá\87|ìsâd\r\8a·\ eL9gTêë{\90_\8d/^\17Ý\ 5]ûÉ\927\ f¼b»¡v\ 3©òÙÏ\9a\fou¦ê\1dÖV±¬PZ=\ 5Ñ' 4Jû÷>\93\v\r\aì§à\fÖÂ?GX\eá-\a{|ó£@vp°j`L?\83}\9bíûËõ2çÏ\90\b\8a\8d\83Ôä[t¼D\98g\90\91h._Ï\96âÑ6Þ5ÿ\87±ÈD)ç\85\90}_çÏ\aø\f i\84®\83OÌù\ 6¡ëÔ{\84ýT\1a.øv!¶]o\9d\97\8f¦Yì~VJ+ë\18ðK»ûá(\8f|¹g(ûÒÀt\9es¼±ÛF\19ͨ\7f6\ fs\98\14ô`\84\93§\ 4\ 1.I\v\8aÚ\8bûÒ[\85x)Ù&ûrñ³Ú~I~6I':J¢àZQ\`\17\15Ê\98¿\9bzkl2ÕUïå#_\8bZF¾!¿µê`½¬|ÜÁ$êº8éÕ"Ùi¼,=\9cÈìÓ\8coµ°¶®yß\8aæÜ!?\13ÃE\87\f\82¯a&À\ 3l \1cü\9a\ 4~ÄÕw\869\8cÇ+HFðN\ fcä&<\89\ f
-\12?:B\14¯öýo\8c\18U>B½\86)¬>|p\a7\88 ñ\84{±Í\17\7f0\84\9bµN\8aö-;d W\99£$\1c7í\1fäjñ\86\89_|\16Ŷ\88±§?H\9c.îú;Ö0¹q£\19B)èAëË8A`\1aPì=ø\18\89VÝ&¡Ñþ \18G\ 4 \9a \8dü-¡ïPöÉ\ 2|°VÎmìP1±\98£Sºæm©\93\9eC{\84l¨@q\8fÐZÌ[ù=ÂÞÁ6c\90v\89÷)½\8b²¬\ 3Oñ*[ö0å&Ì~¨3ñ\1a\92í\87Z\99l\95ÛP%ݲÝPÚZ©\88\ eZÀ\bk$ ëàå¥\95¯
-\eªÿ\8f½{í²ã6\ f|\7f^\9fµø\1dz\92(±l©U@\ 1(À\99dbÓ±ã\8c\1cgì(Qâc+RKq\9c\98ò\8c-\9fLÞÌW?\aÏ\ 5µw_H\91Í&ÑÝûÿóRB\82»ö\ 5\85B\ 1\ f.õ«o\º²z3Aδ\15\81¿ü\7fþô}¹ìCoD~ï=9C¶\13ª¦I\81<·´\9fÿî\93U\9b\ 6£\85ûÉW\87|\1f\13Û_c¼aÿA>üéû\97ýY<\fÂ=yG\ 6¾~þ\9c\91Èo}ùz#\91ÿøÞ\97{\8e½ê0\9cfÂM1úçÆÊ,x\7f%Zö£LøÙo×ÏF&èà°g»Oÿéó_\8c,8\7fÿR\16l¿½\92\ 5£$\1fgÂ7ÿè(\13þÛÓÿõ\9bã\91H}Úá«\8eH\1f?Ôå\10:½Ý Ñ\aÏ\1d\8cõi§\871éç\94\83w¿q\94\8b:\88|CQzî\e\1c?pã\96oaOHyá\eصÿâ·øÖK\\11/º\1eÞ}ïh;\96[þ\8c÷_â\r\9e¼ó·8\7fÝ\9fñÁQmyË\9f±<·P}ë%§9¼\e^ö-\9eó\ 6ï\1d\15©'ïÜêê~ï\9b¯T=Èv\92×Þâuk\98÷Þ»ò\ 6zG~¥³ñÞûÏù\ e\97JÄñw\bç\97·*ÿç÷Î_âl¼hÊÆ{\1fÜT°5Ç^úg,·¼¸öÇ\13ýó{áerâ\ 5×Æ{q¼AùÃÃÅõ»?øÁ\7f\7fz%Ç>øæá\95\7fôåú§\7fë¯üþ³xùu/S@\ e¿JsìÊ\97úà½[fÌþ\ 6W\vÈ¡\8c½l1ýàe
-È\95ïp5Çn,"¯ò3\96\9b²Rsì¥\7fÆmk\9dC\19û ¾æ\15ÿÁú2wä¿J\7fö£§ß²·øí\9fçõÒ[Äתuô\8e\1c_b\92Ö\8b¿Ãój\1dÿ\ e~\7fyQNÄó×,\11ñ\83ã\rÒnUqÅ\97©u^|G\8eáò_/W\0q=ìöØ{¯\7fÑûbùÏÞ»²¿ò÷ÿî¿}û\9f\9e¼ó\97¿í½ÒÞ\9bþ\9b¿zúé/ÿúßt\9aä!¸m=>\8dV\1fB\14\7fþ\83\7fø\86u>\ e]Ê£\0Û\8f¿øÒ»£\1fÿûûñ\93¿úü½'6:`½î\9fÿî_u¿C\vàôná\1fXÔ\7fñgmüá\9fè#\ 2´Ãm;7î\1dn\1f\1dоmþ\8b÷í¯?ÿÝ\17ïù\ 6i\87\98\8bìÎø˽£|üE¯ô \8fþáé;\9fíÿðÞñ?|\14ö(Ü\7f??Þä5¼÷Ë?û\97£}\1a\ fÿðþ\1fýp\ f\18ýÍ»¾\ 5ã\87\7f°\87\10{\87úh\9cà\17çûPØß\\1a\1e\94Îõâ\9dk\8bbüÍbaÅ¿*\1f®2,ÿÞ¡_½÷µ?ñ\88Åß~_3F\86ï¿ø®\9e?\99ó\å\14×^®~ü[9/\7fûã\ f$¬ñ\9en6ßÿúQÐc,\1aòÁßþlÝ\83\92ß:\1aÖüü\8fÏ\9f-\1füã\87\87Pê?\8fOÑÐü?½ÿ½\ f>ý¯\7füí_~ù'\1fõßò_ÿ2ýÛ\95^¢ì#ÿ?\96£\87µ\8c'¶ì3\98ÛØ&üÚ;Þô~öà ¯yÇK3ìßýëú?ZýÁ÷ÿâO¾ø»ïýðó?û/\1e÷øÇ\8fÃ>by\1cë{÷×\9füá!nùiÚ\7fú§Çcå\9fýXËå{>Ëø³\8f>ðøîg\1f/á³\ f\7fønÿÓÏ\82\87¢>ûEüóöÃØÏÕg\9f®ãO\9f'ë\89\8fSûï?Ñw|_·¬ï\7fýxÄãþýgËøÓ/\ e\91\96Ï\8e£éÿþùzô\ f¿ø/ë'\1e\92üÑÿzgÿ-ÿþ¬\1c-kýâ\17ïþËÓ\7f-ßÿñw\7f]ÿ°\1e\rvè \81L]¿2¤æ\ 3nã UË\a_}|\bá_è\82\ 3),_ýb ?\b\7f!#\83\9f\86ñ§Ï\ fÑß\v¿°¿ú·tíÛä¯þþûß|÷Ïÿtûû÷ÿàGßÿç\1f½Ó,\ eúÇ\9fün[þú\aßÊZ'ÿ¼x\14îãÅ\16v>74xËÀà\9ec/\17\1a¼e`ð¦\a;¼ 4xËÀ`?/¯\12\1a¼e`PÏËË\87\ 6G`ðwÿçÏ\9füé\93wdÈò\93¿üòóãáÊ'ï¼ÓS~úÅW¿ÿ\9fò\82üÉw¿ø対üðÓÿüâ·OÂ\99ýoéÿ\93ÿ»µ³\10ëY̹ÿ%Kê\87\9f=ù\86¾ö,¼{öao0|òÁw~ûÕ÷~uñÕ¯~ó姿ýϳoKÒÇ?úð£\1f~ïìÛgöÚOúkÿôì\eýÛ,\9fôW÷\7fzWÆH? g\1f|÷7¿ùµüËO¿ÿ\ fg\7fù¿ÿço~ûÕ\99½ýßÿêw¿úì×_\9cýÝoÎ\9eþô§_ÿúã×õ_þÉ\93åì;ý¿\8fÿãÉïûÿûñ\93å¼ä¥\86õl9ÏmYcé\7f\88%´Eþ°¤\1aSë\7fH!l%ë\1fr©òO9Ç\96ÂÙÇ\9f>±,\89ý¿\8fÿ³ÿå¯û\1fþ'ýÇYXÎ~tö³\9f/g\9fË\aþäÉ\9aóy\9cÅ\10òy.ñìÙ\935åóÖzV\86¸\9coeYÏ>|²®å<\84%\1d^'iõ|YB\96\17\96ó¼eKì\9f\eÖt¾nEþ\9aÂù"/ïiý]kh\9a8> ékòrÞÒZ/¿Æ\8eÙß'¯ý\90vù£®}÷\ f\9füË\93\8f\9e´³o¼{öñ?ô\8c½é×õÔ\e~_O½á\17Jê\r¿Q\92/ýJyÏ\e~çñG%\7fÝM¿µ'_þµòºë¿÷¦ß#©_öká\eßùò7_ö\v eýé\8b|éÔ\7fL/8a\8bµjyèÿ\9douY\9b\16\8cQJ\16+%û{\87V×K%aÓ´z(ì/<*
-¡µÔ¿oÚFQX\96x¹(\14I[姧½(l\92h\7fßóçøE\92;Godysåî}})\f¿×ÿ½þõ´®[?´¿Ãû¡\7feÝ\82çN\Jè\89!\9e÷ÏÎú\83\96óÚÿÅ\12{ZÝ\13WMlýOÍ\12ËùR×\91\16ý×\97¶¦\9eÖOû²Y~§^,\16ýlMì\9fm'aÝÚ\95WÞ\9c\98ÏKÊù(q\95\82Ö4¥ÿ\82ÚÂq\8aü¡¿ÅÅ\13M«e\93Äx\1er\1e\a\86`ß¹\85r)e;/[ÿ¹~¤'ÊoÌíÒëú9»ô÷\9eMa\rgOûqëy\95\93ï\89KÔ×åÚëöËIKJÇIOµ¬Ùß\97j\ 5òÚ ³ÊáÆ\9bÀ7Þ_ÏC?ím}÷ì\83\9f~õÛ_}ù˳o|÷»ß¹è·¡\9füæ«Oåµ\97ªë~Å|þ¤x=sW\95ö\9aËyZúÅ©çEÏ\94\14²~áµU\7fm?Yý
-÷+ ô+IÓBZË!MÎáRû'7+\8d[Ï¡ÍÓ¶ÍÊÓÚË\93\1eÝ/)Ï\9a5µ^òê6\12\83¾2÷SÚ/Ì˯¼9±\9e÷+0\1f%®¹¿ã\92<©\86\9a.%çÛÒ¤¬HZXõDõª ¯ãÈ-Ù·\ e-¤ã¤Ðó®\17ôq¨'ö\ f\8dëå×ý}\97ËI=³ú'Hq)K/Ñe\1d\89½ÌÈëR\88áJRËå8I\ eõ·\92\1aI\7fúµ³öÂ\92&U³¸MI;ÜÛ\8eïr¿÷ÿ¤\14öÿûÚåPno7Twv7»VáIò\rUÞH¾RéIòµjÏn\8b×*>yí\rU\9fݪ¯Õs/H¾e\ 5(\87Þ¶
-ôcoQ Ê\91·®\ 6er\\11Þx2%ù_ú\7fwS\1dJÉÓbúÎ'åÐô¢\b=ú"ô\9c.Õ+\17\9f£æëzT§Ýa}vÓ\9dUÊÆ\r÷Vk{_½»î©\97ï¯ò\1e×ï°\92zÃ=V\92o¸ËÊ[ßpK}Aòmïµrìï¶~ðíî·Òùõ\1dW\ e¾|Ͻñ\8c~m¥öJwÞ\9b+5ÊÑi\94£çÖl¯X\86n¨Ù>:î'ï@ü~ïDl5Iáð®ùù2êµ-f©è´\9fÐoi%¶^Übéeié÷ÇgÚª\ fµßK\ e\89r÷lI²ª×\97ýÔÉI:$õ\1cª)jwM\12å^\11{AÉrÎ5AÞ¿wª×\98ãHѤ~\ 3(ý´<µãzæõD¹«·ª½Ú~çi[Ï]OLÍ»º½¤÷´Øzy^7ï2È\87Ùë\92\1e\9bC¯ì«\1f»Ê¿\8eÄM\12sì÷F\8b\ ee¹tÖ\91X¢vBJ/\8a[\1d9\10\8a\87\ 5úÕ2²E\8aì\877e 4Ù¿ùû'\8bÇC,´¨yÝ¿ù¶ôâ\1fWùµ½T?Ó&\7fÿFòIý\9dbµ~¶´?üËK\1c'íiöÝ{±ÞÖê\1d¨ß\1c=±¬öÝ%¦Ñ/Áþ\95âøJöåkñÄ£/¿j®\1f½²\9fý²ê\87\8fD ·\1cÎþ\92zö\1f%\8d³ÿTÃ2g²$\96ó*\95\8d½nñ³½Iet\9cÔ\vc*a\1cê\ 5 \9fÌ\96·ã×õ\9cëm\8bx)IÚbqóCõ"´,\94²³¦Ø\93¶K)á<mñ8Izúeü=ïeëò\19úðÉ÷ûEö=/v\9a©±W\81Å®\93\9e}U\7fn/\8b[\f\16©J½\ 6Iúƽxo\1eÓÒï\9dì§D¹ ,\9aÒZ\eiö\rÖvô\9bcÛ®$\8e\fóģ˨¤Câ¸Ú\8a´ËÚñ\ 5)gNßm?s¹7~\9e>9Jì'½\7fÓUóp+E\8bQ\1aåàP^<é©\97,i\95j¢\97¬âqµÃ+%±ß\97²\1f½´ZüB+KÖ\17ö,\ fVVû\95]¶Í®È´ydW¢\86z\ 2ä*.!ìåß~KØË¿\Æ~¥ôD¹Ï\8cD»¤z»\Ê«õ·í\86¤¹í\17_Y¬üYb(Õ?½7¸«\9fÕìQÈç\9ft)ôü\87:Bq\97\vÊÍi½\8eøèÍÅ\90¾÷
-·\80¢-]Ï\84M®\8cgzªz&\96Xj\1dçOs®_\1eý\fmÙsk[ËH«^ùö<\8a\92×±J\b6y\89èïä\89Òøî\89[¿\8aK\vã\95\16¢Ýro/lí(qÝjÏt£û\85Ù¯åz)I.ö~êûíG\12KÐ\vØßÙ\92¤Å\12{\87¬\9fè\87j]¸öBµ\ 4\8dÅh¢\9e#É\86d±¨Úoä½²ðĬi[¿.Öà\95æÖ[\v\9e\rW2ñ¹·\ 1Í\88\90¬ÔhF<ó\8cÐâ)\89\87\8cè¯^\8f\12×m;Ê\b\19\ e8Nñ|\90\1fÓ\13\8bôÆb¯dú\99YýuúûV¹áõ\12|\94ÔkÇuYê8Ô\13×ó\94c¸ôºÜ¯\8dzùÐ~ ¦5ú¡[³ÜÚ,\v×Mrc½\94Òë!\19E8$õ#ëxIÞsØn6{ÕÑ+\82¨×´¼ª\14«;ê^H¥«kñLK¬ö;W\vSö7\8aIï\a\92VýÞÙÏm?¹\97³üúÉÙï\0úOúÆý"\1eçíèõÛ^ª%1µ+\89úq^\ 5\8cOËr7Õâª\89yõ\8bgmZ)õ»F\90¶\85U\89½\8d²ÚeÖ+·QSõ\93®7\8b~UÔ¼í¿uÝF¢ýÖRF¦H¢Õ^\96¶ÚYÝú÷ð|^\9b\95ã¼çs¯üô\96 \89u]\82\7fxMi³\ev«M¿ÑÖ¿qÚ²]\ez\ 3\1a§S¢)Rï¯\9bý )ð!§ñJ\e³¨\12WÐDyÏÒô\aU)jÚì\92¯dÃuuõÌÔ$}¿vTF7«\86\8eÒ¼|\8fÄÃÅoÍ=I<ª$\92T\12íRU²yÒ~©\8dðï!±\97\98\92$\ 4Ó\v}´\1f<ÎõñõíIOo*Q\1fÞ\9cøâ\9bÅ\9b\f\ 3\7fï(xò\127\13\v\92]ëQXïó\96}
-\8bÝݦWáG^íWXLëZÏÂ\82\81Wû\16Ö¹½Ò»\90Ä\eú\17#ùJ\ fÃÞâZ\1fCú\90×{\1962{\9fqcÆ\8e0Å7\7fï1\86K7\1aÿ=W{\1cÖQ½Öçð¨ç\95^ÇH½Òï°@Àµ\9e\87ü¢\eú\1eã']é}øOºÚÿ°²rË\1e\88\8d\9eß²\ fâ\aß®\17b\aß®\1f¢Áâ\91\92\8fÊâÕ¾È;\9f|_#\ 1ßÛ\vëå\1e\89géÕ>\89\85\7f¯õJ$ù\86~\89Ũ¯öL$õ\86¾É¥äCïÄ\93¯öOöä³Wî¡\8c\ fºU\1fe\94À+½\94Q^¯ôS$ùzOÅ.׫}\15\vA]ëØ%\7f¿2®\9b+=\16I¾¡Ï2\92¯ôZì\ 2¾Öo±xÖµ\9e\8b}\93k}\17\8b\12^ë½ÜT¬\9e\9fªuÏG/\8a\93¾þàÏr(ì\ f±&»Û
-îâu*¸ýà{]ÁÝñ@Ð\rc@/×\8c¹©Wl\15õ~ñ\9e|©glïqolQû«½c+o×úÇ=ù¦\1e²$ߺ\8f,\aߺ\97ì\a_í'÷ä\ezÊòâ\eúÊ7fî×6enê5\8fì¹Òo¶ì¹]ÏY\8e½ußÙ\ f¾]ïÙ\ e¾]ÿYòÿ¸\a=rþì¸\ f-\99xC/Z\92oèGïÉ\97zÒ\92zC_ÚêÅk½é\eOÛ\95VÌM½êËÇmGWÃM=ëñá\97ûÖÖ\16¿Ö»¶ËïZÿÚG\92®ö°¨^ëc\8f\¸ÒË\96äëýì=õrOÛÎƵ¾¶Ý®¯õ¶í\8b\ëoËy¾¡Ç=Nÿ\95>·_.W{ÝRxnèwKòõ\9e·\96´+}oyßë½ïË©{ÿ{$_é\81{òíúàã=oÕ\v¿±\f~øüä¯oô¼þà°7z®^ÃÏîÓ5üܪ÷Nkä\8bש\91÷\83ïm\8dü\ 6\ 6\87ã\8b\ 6\87\97³\9fȨ@\96\8b®·\86·Vêª\7fè\r\92ØÿÐ\96Ð;j>\91û;OâyN½?ó\1f2>{ÖßZª\92`ó\95{çaé\97hï3æóP³ÏWî\7fï¯ÿõ\93\9f>ùH"Mçõ°t ô·¹a¤â\95¾Ï¥YæúåòþíêvõÛm=±^þv2«ûðíò×|»W\18H×\1fr¹Ùríë\96(\13´ú×í\85['äo©õk9é\80K/Æ¥\17\91£Díüõ\12z)©\17öÔ\eW\87¤§6\80-_$öf\97dA9;J\92ù$kLÇIÒ\ f*6ÕYãRQ>Õ\ 6ªÚ*\13¢äï2\vß\aÍ{\15ѯ\8d\9e\16ú\rµ\861I·WÖòÝdQ\81½pÿY\9a\94/§\8dïûá\93Ï\9eSæC¿ë.½\ 4¼T\91\7f~Üò¦Ü}ç\93×È_»%ß2\87ýà£<î)7ä²½îZ>[òÕ\9c>þ\91\87¼¾é§Kê\9dä÷sê\13\19à:\8f!K\8dد§\9e˽M¤Eþ¼É\9c9¹\86{{-\84j\rù Å¿Wºk¯t{·6Ê<\19+ÿ½Ó\7f¹%®2ßP£Pk³\94Òk\ 6O\89ú"\89dØð¿¬!\91¹\90\96¸I¿G¦^Ö¥y\92Mv\94\90É2\ em½1sa3û\97Í\ f\rI"Ëý\8cô®Sö$iÊHÜi\95 ¥\96ÔkA\9f°²ä¥Zb¿\97Z\bZ\83Q\9aÔÛ\92£3¼yRÝz\87Íæ+äeõoWkµ>x¿3ùG´Þѵ¤þ2O\92\93y¡\87j§Ó\12·j\81\83Úo\80\9e$ë_´û^ìg¥óþI:Â/¡²e-\96è]õþÍ×e³¤,%N\ 2\16#3\93|aûIzq\9eÖ$ü.óTíǧñu{»O\97\13iR)öuKÏê=Qâl\92´f;\ f½j.\1aô\97æ^õ¤µm:«@;\86½\ÛëV9«=©\85àßc\vrÉÉ«\96\92-)-6«¾×þz\964±7b%\7fû\rAæâZRHòEz\85\90\16\7f·Þ\8a° ,÷\büû¦ _N¦\8e\956òHâ2ýêî)þë7¹â\9fêô\1c\r«zb¿\8diR]GJö#ëáÈÍ>S:ðm³_ª\81ÒU[vvî¥Á\93íÇëu®I©Ø\0\92ä\88LpÖÄ~J«\1eÚϲþ¬r^\83|ªöÓWý\80M¦Î\ 5Ϥ\92¶f\891ËÄ9\89\bI¿G\93\82\ 4:å×' AiRÿ}\9bg\92v ìu\12³Ð$\89%Ú»Åj\87®\8b\9dÕMbHÑ\7fk/zþ~y)ö\85{\85诫U#RÅJPOêubÿ&^\96F9¯#LÕ\7f\98\8cªhRYª\17\88d?_ã¯Vôó^Júù\rz¦^C×fI©$»\1aÊ\9a7KªkÖ\85K=1.Vã´\91ëUZ±×'V\upk]=i+aÛ/8©å{§Fî\0\9b\1d\1aå$ö\9b\83·Z\93Ì\84\94"'I\1a¦½Ð/\CÌv¨\87øz\17$\86äï&q3-M1%ûÔÒÂ(\87RáZbK\9bÜÔävRüÐEjÞ}ôÊ^Õû\95zhOl©Úë\82M\9c\fýÊ_ü\8bèE¢I2\87Z\93zo¤ú¡Z°,q]Ê\95OM\8bÔ\86\12\89\94\92¦IÚI»ÐÒÔzãÍóDo¤=iÛìu\92arEÈo]\97Õ\92z)Y½ Ê\8d§§%)tv ÖÀ\92Òo\82z\9cÕ\ 5ý\16*\r·8òHjlM\fQê=¹cK0W\93b\8evh\8d\8b'V+eÉ\ 5Ki)\8e\fjúíû\ 5º¤¤Í\8aؤÆ(Ëf_ú©N?ªr}\94 Aè(µC±8iOêe,\ 6\9f|ZäÆ IM*¢\v\1dÏ\ fI_&¡XY. \91é¬E¦¿¬Ê\95µ\96dY×\93zÝ/¿MW\17õ3%\r\ fI¬Z\ f\96l\13\82-IF8%É\v`ð\91\87§:7@\ 6),MòO"\9c½Û¹y\92¬û\94¾e¯\8eýU½¶Ôk'\96PýC{öô¼-½o¾äfIAn_\92¤mqÍ\ f\1d\81\92\91t9-z\15õD\1dæÝú=P¢(=+¥Hô+BzQ=«õ\84Öó*s\8e\9fê\f\83"woK\94©¹\9aä'¾'i\8d¯\1d0ýUKµ\9b\8bÌ\18\92KW¿É"uH¯\11%©\9f¡fI6ÎÔ\93Ú\92ýÐвÍ\94ñ±#=ÑýB°\0CJöº^5Êy\93\8eoX°É}©gþ\85ÎìÑ<ÔÄ\98¥\1eÜ\8aöÏ5¥79\92÷4ãx\7f¿\z¢Æ\84,±X\9c£fË\91ͦrkRÕ\93Õ\93¶Ø²ÏÎé\9dµlEµµ`Á\94Ã×ÍKÏ\91Þlê?¾yRë\9duùÐ\1at\88Î2¤H!¯½Ìú×íUjê\95«\ 6\91ô~'Iý®¯_·'ö^]´sªÃ%\92$M\rMé\95aÒ\94¶èE$s»\17Ë] (K\8fÜ\8f\94\88´$¥æ\9fÐ;ÚE\ fí½³hI½å\1eÇ\87ʸº&êؼ~¹\16=)JÄ[¿nj\9e²d-½r¤DÓ¼ ù\815xÊ\9aíûÇ8^\13¶E\8bQÏ\ f-d\96m9\17Í"½;ØIÐÂ[{û\\9b\83\9aßÕ\9a\83ýu)F?\7f\9b,hÒwËÕ\93jhþ©[ò¤~¿\1c¹kg¹÷\11zK^s(¤Ö\8eÊ©$qõWE¿U\19{ÙÆ\19Mú³ú%߬\ 6ì¥GÖ\1cÉ¡¥-Í\92\8aÜ\ 6Çg&O´vdõ*ÙêE)3úKKòz·DÿºQú`\9b%æ \99ÔK`Ù,IZ\88Ò\92ì%°7³\8a%ÕÞ|ö\12Øϳ¿®ß\e\92~\84\96\ 1KÚôkø}¹\1f×ëÆq^jõã´ (? 7\ 6\92'yJLã¶Ñ\16»\aWiã&ÿ²ýöeY¤ÑS»I,ò3ûÕ»Õê÷\88b½\8a\9eXòÈ\8e\14e\rAÝö\9b\?²\7fXO\92sf%7I@ÌÊB¯\83ª\95\19ù&r\v®½tnÁ\93j\94»wmç#ËJ³oÛ$Ü\9cüUy\95\ 2Þd\9d\84]ï½eÓkxIYVûÈÕ\9a\1fOõÈe±Ú®W\85QâcU"tiµ[²\ e\82JRÍÁ\9b)µYµ[µ\9dÔ,±È\rC¿\9aÝ\88zRïÅeMJ2 ¤Ië(\80½Ñ\9b\93'\86UóR®&»\95ö\93-Ãë\9a½Í\9b\1a)ÛDñ\9e\96S\1e\r!m/ô¤q§^¤å¸zînÞ\f*Õ¢\1dUúvÅÓd$XRz\8b¤yRHö\v\96\9a-%\87j\ 5·I;ß[Z«¬"Ô¤þ\93aØ\el\9b\9d©ºz\ 3R\ 3©\96½½Yâ\rÈÞ2\97ÓÐ\7fLlÞ\92mY\1a\90½\87Û\9b~Þl\12ó\92s\1a-\8a`\89\8bÔ\80=I{\12Ö¼\95b!I5Y«½'õÆ\8e~ê*C\1fÞ0Þä\96 1\aï\ 4T\e\93\96¤\94\17O\92m\ eä3\93E`éÝ¿ó\99$I\13Ü\9aìr\194\19cö\ 6{Ï2\15ä½\82u°d\´Ø\17Ó¯IºòH~¹\85W$ié-(Ï¡-\97Ñ\89Ñ0L[,´¯Iý~Þ4s{EÝ,I«|+\80½zoþ~\8b\84\90åôÅZRH\8b]i£ùß\93\16ËÜ*]!ëêÉ$¬µèåm\81\1aMÒH±Ô§9úw\93ºÂî\11ý®?\8eL\92¹rKó\bA\91±]»\e\16 <Ú\87J\ 5h\87n¡ø\97[\92Ý\85z\7fe¼Y^\8foiú\99[\f~ä"Ë\13-Qg¼É-¸\95\91#ÙkÝ\=Û\8a5ª$iÙü\17è\b¬$YÅ ï%ÃÒ\92t\94\91ò\ 3ìPí\18zîêeÕ/ÖäGZ\7f¾Êz¯=7\9auóäe²\92Ì>A\87¢åÍÖàýW\8daè\87ÆñC³\9fÑÅÛ¶Úó\95åoz\8b\90Æ\95õÀ7\rõët:\8fyD¹\80/´}\93Ã\88 åu\8dÖ\82\8av\ 5\ 5¹%Tm\8ei'S\93ú§ÛÄålsM\93Î\8d¤luõ#-` I«\9d\ 2iÙ\96äGjíb\87ê}I\92ÂZ-)D{³\9c\93\7fæ"½^k=Úm?k\ 5Ù´µ«\13?z\8at{%©È\85)5`\96\9bJÝ\9bØýèl\895ʯ\92¦xÖ*Eî4ÒÐ)LÒkÑw\93\1fðT'ð÷^\9f§YÝY6oÍHRÚ\82\1cÙïÿ\9bÆYªTFKö\1eÁ¶jüA^'Ó9´\93`A+»\97Ù¡½ñ\1fì{l\16³\92I\8e\8bt+%M
-[ÉÞÒÈV¿gë\97XÉíIÁ2H\ 6.¥'iiAniE\9aT#E{Q2\1af¡.½\15çæ;2h\80Àrc\95åÉ\12\]í\977ûÖ2ïG« ~V\16iÝX\a¯×^Áªké\98H\ 3ª'\ 5\ f\15HQؤ\8b'\17\9c\ 5c\82\Ñ«¯\83Ù¢\ 52\82\r¾JRoɬ\9e$GhRñ¢°ù÷íߤß×\83}9]È.]Á\1cGvë\b\9dt\ 4Ç\ fÕe\86öC\17?\9f=»\83Tê2z\9c´Ö\95S,EX~À8\9fM\9b-\17ú;ûéñü°"\7føéR®\1a¯ê}Ô6¾\98\969Ë"\ fbÉ=P\86\11õGÕ\96-×$p¡Ó¤Bð\94,u\81åPö\9b\8b¬¼\94Î@ÎÖ_³7ÓÖ¤ä·ÄûìÂH\16$\93Ì\rûÕR¥Ã$\1f±hÕ©_Nªë\9cF<¬J¯Äêë\9e\98bh\9e»I\ 3\11«u:íÛÉ\10·$åRÆY^¼×¾J\fÖ/åØ´w¿ÊÏ\19õGÝüÐÐF\8a-\85\90©du\19\97¼Dª%IK\85~¨\ 6\96åÀh\9f¹ÈXïÀ=±ß¿VK\Úb\ 3\15mü*k\aÈÐÅ\92GqN\1e\82\94þíæ¯ÓªM\93bóK´\96ÕÞ,U¿¸{×J/Q YÔ\91\98ôâ\88Ö
-:T\149\8c\10ª\íe\1dñ\10\9d\9fiWZÌ\1e\1fj[ò2Ù²\aI\96âµBé7 \8fûô\96¿\16Ô,gtÕ Ü\16í\8cê\90³Í\81\e×m¿\ 3J÷Òbï\9b×\16«|XÓØ{Ôì\96\1d\9b´ù»¶qíUY%m·Ñ\9e\98d\84²'F\19\Èú:¿ëW\9d¬dc\0¶q\94$e©q.t\80.Úå-·<\1d4^û\95X´\18ɽxËv¨u.²ö<ìbë\89!.þ»üSë^QÊÞT\9a\10\93ÞHä\87®V\8azbÖ¨\97$j[M\92j\8c\9eT\8bO \rvÃÑ>K\19\vúb´<\97\ eXÒ\97õvx±\94Mú\92\92¤})Kj~\ïÝå\91TüU¹úûë(\81¤l!\8f\14kQÉô\mçKb[\9a\8d\88\ 4k\ 4Õ<Æ&\16ÛТ'I=b«\ f%ÑÏrñ¾¾\9cÐbgTÆwt²¯´
-íw\16û\93\1dª\r\M\%@,eÆÇ0¤O»hD1\8c`\7f\95&A.>\98Ò\82\9d\96b¡$\89Ù\86ºúëZ\93øXOJ9\8f\9b\8eTLO5,¼\95æ\15¯u\ eeLd\e·ê$\1dt\8bO×qu´¶\ flèà\9f%Zh¿7ßÒ\95\14k¬kJ\19Ql\vÖØ\85µ6\r\1e·ZFó Ù\ fè7!ÿÈXüÈÕ2Õ¾Z¶\18v^öv\85ö\ 6ä½Â6î%É*£~Eæ°\7fÙE¯H\9f$âM\ri\bÈ,
-\r\98éÍj\8d\1e®÷&\9aÔ<Iâ\962ôãG9ßé8Ïä\16,³¯,侶Ɒy-Pü´´q\8dÊv'ÕÞ~\93÷°²«cl^ÛmvmôöçjIº\8c_\93ìÖ$}\85lqªU§@¯~3©Í\ fi\1d·¦Í\96\9d\84¬woé"ûÖQZ¢½Z×·Ó2\99Æ\ fµà\98ì>S\9bßúbÞÇ\10k\19·¡U£R\92\94\16Ï\91¤mnݸ&x\93$Õý§zu!ï'\19-µQñ¾\8a\vò©24º\8e$ýU\17:^ª\93ª,±é g¶Ø\8b}\84Ü,5É{oroJV©ÈÈíRÇë\92\rÉ\86µ\8c×Éå$k\r¶4^dc!«\aßY¥=t\99ʳÞ\86²\16Ùõ\81á§Oþå9£×\8bÆÌóöR£×º~Oº\16>XÖ\9bÁ¥·o\9ei\I\a\0,Q;\17UÆW¢\8f\8ciÐP\92RÌ>l¥\ 3MOõÐ\98ì7ɵ!Ñ*-xÇ\9aÔïÒ³\97h\96µ\14¥y\1dG'G·\1a´\8e·\ 5]×0ºõº;\90$\8dAÆ*;-V?°\7fÆ\18\18Óy\bu\19\97\86|\8b¢\11¿k?ô\8e²Qú]5G\ f\8eH'ô\99§\15\ f¡¤*ÕROjqóÑ¥Þ¥¨6mO\86æ5©\97ð:\96ÎÉ´BO\fãue»\96TÃH²~â\95×IøE\93ÖýÝÆdÁm\ 4\86j²\81pé<nÍ\87¹,\86Ò»\8e6Ì©\81,¹áK×ÑÆ[%,¦ñ«§\1a|·\90\86\ 6Ðdj\94Î2ÔÒ¢cUKµH¾ÆÑôÝ4ðkÑ÷¥\8e¡?iZéDê¥xt+.6]ûröÞÙyËÒã\ fö%u\fä\99%ê\8dMã\836n\90m\ 1\8b%å`½ÙÔ¶\91\14üÄe\e*±Ñ¸E»ÚÙ\82O\9a¤q\0ëU7\ fÈê¸\8f\1dª£è\9ahU\88L\r\GìR&ZIJ/\18#jÛìzÛ\92í"å¡\\9dâ)5M\18¯KÍ\92²\97©d\ 5È\ fõáÉ4ÊhÞ\a0$¾å¿ôr&]ÜUö÷
-®l#d.íñg\9aØ+äâ\89=³u\80*z\0¾×I6\88\95\8b\8d\ 3HäÊó!Ú\9cEKÔ\11 h±K;R[ë\92TÆ\9bW\8b\85÷´ºD\1f«´KK:\16a\8c^jÜj[½W¬1ÿ´íãkÛ\18'²øÖ\16½1&II¦\fË/*~)È\ 6DÖâ\96ùÉÁê\82^%\16\1d×\92ѽº\ fRèà\97t\e£\8fÂéÜ'\e\ fÜǵô\ e¤\11\92\9cüûú8ßµ¼½³\8bf±\18ª\86ì\9bí\8c#ßS¶T³Ð~Ö14¹uW\7f]¯q-)µÕÇ\975jb¿ÆÚÂv.}`TÛTvB¤v\90¤\12ö_è1¼â!\v;MAnRE&xE?4H®KÒ\1a|Ô¡ú\87Ê\91y\fbè \84$ÙÌMý U'Ó^ý¥w\95\85E\1a\ay|¼\84¯\9ei¢N¸\18\19æcÐm|%i\0K\1c)\8c\1fÓohöc²\8dKY¶\ 6\1d\82\96ÁëųËæÎHt)#S¥¶¶\18Töº¶øÈS9TlÅ:Ó\96\94FRµöz\91å½i\\ fÉ\83UÑ\86\8b\8e\8e\f±ú\87æ\ 5ÿPk\rh¢\ 4Ø%¦¥\11cKÒe6%y#оڲyì«-\9b¿NÇýôÝ\16Ï#\8d?ß\90»wvÞ¢_ÉÚ\8e\91_øÌ\12}ZUÕEu\92b\83=Öl\91\1aY\92Zò#Ç8Q\896ðhc%e±`VYµqÝ\9aÍ·\96¤e\19\83,#JZ¤m\18}\9eΪÝ\b]2W¼a¤Ci׿î]e\84¬/\ö\11g\99La[6ùЦô\v\8aÅÉ´\89\16\ fó\14$èÖÆÌ\85PÇDÝÅFÈe\82\83\96Â,q*m+\ 4iNJm^\16/p!X\fúÂvYÙ§r4\99\8c'9Ó_\96=)h)ì·\1491>m#\8d\1clË\98˱Ù\81Úm³\84¨\11ßh\9b7ZÒêY\1fÏýË\ 6\1fÑÖ\15\8fM¿¬ô\93¥ö\93$\9bH\14dM®_¨A\87\934-k8IÖË\16\1d'\95¤²Z\92Mí\90\ 3\8b\r\96I\94¶Ø\8c\12\19{Ð\10¤ÄKõ¢ïyV\97Í¢|º±¦Þ,Æö-9ûà\9b\8eùÛvs\12`ØÆ\89ÒIi×Ïç]Ýã%F·Z¯5Z+õ\99%ZèQ\12\9bM\ e²©\ e\92Òt\16\9bL\rj61ÓVÖX\MÇ]m,#o6C©.Ù\8fì\8dú¨Ó\9dêj##ÑF\9b\9eÚ¤¨ÚüP\8f«5\99íå\87z\8cDB«Ñ\ fÕ1¹§¶Å\98E^uìnDý´Í \1f±\14ÿ \97\7fé\1d]mß|Þ\8a\9aWz\17ÝüHK¿L>Öß³È\f\84~½É\14å^Mê¬äÃ\7f²'\8f4$}\90=Ø\18¹íɳUk \a[\b%I6wER¶\91â·\7fY×aã,rdYÆÀµ^®òº\92<ÉÆ¿¤ \1aìö\1f¬\8b\7f¡íc\e§ÕDëØdÝ\95ÂR¢Ï)\8amtat:\90µ¬Ç|\93`Á ml¯«ÏÓ9XÚt/Ñ\7f\94.#³\ f-[©#±Z£|ÌD\90ú"Û»mK\ e#É\ 6£¤\91_Vï:iËQú?\1a\12³±ý\96¬K\14uò±MòKɧ2iõc\13\ 3tªØ¶Ù\98õÍBñ5AëÈ\90àÁcI\â\98Ò\98ô\87\951Giñé+:1ªù\re+6[|¬%òI\0\8bC
-9\8cÑý¼ùÒ¤Ö|ª@\baß\19©\8d>ì²\8d5GÛxÝ\92Æ¡eõNÜ\12ÒØ\19©ç\9cßî4dg¿«ú\ 4\82V$æ"Iû\S\19\9cö#C\1d\892\ 3Ï\92ò!)z\92\8d¬H\92\85\97$Göù¬©D\9f\17f\17x³{\8b\9e\ 4\ fÁy\98÷©O2ó4Ý\ eÓÎUñÏÔ\9e\88\9eÓZýFÜdª\87\95¤VG\93 Æä=Ã\14ý{\84Qò·\90¼A`£\84Z¸\9aÏÑÍ\9b\ fÕz,³5\9f¯¡c°k\1aÍ\864
-¾®æ·\1fºø\ 5RÒâ\87Öê\87\96\10Ç)ØÖý\9aIG\89Åû\9eÉÃ\bºòB¯Ý¼x\ 4"6\vwo2À?f\93hdG\934\16¦eP§-\¯Xîè\86\13ξó¥\8eʶe]Gv¯Zo\95ÃY®ÒT\f>¤»\8cÓW|ô¶\96êEF\87û.\9e\IÔ6\9e¼YôÌíYêãõú Õ\90´\8d\ fkÌÅÎßê\83Ázöó§Af\19E¶¨¾\9c?\19¬²\ f-9\8dëJc\9e\92TWÏñU÷µ\96\9fê¹!é\v\1dÎ\ eË\88\97èÔu\1dÎNyÌûñ\14\9b¾Ïú±#KÈ\1e>²\81Ó²íý"ÙFCêv\19B\8fÍ_5V[\15_\vê\89\12pÓ¤\11\ 1\93\ 5\15\9a\92Ö4\92\92Íä\95õAa|@±\19´6þ¢/Ó\86\92ÌLݧ\9b[=YªÅX¼^Ð̨>\1dNË·\84\11,i\eE^
-µõÿú§ûû¥XÏÑ\9abGíç&}h¿h\17\1fïê\89!'\8f"®q³\8fÐ\90´&¥´YîZÈJgï7\eq\95Ü]6o\8f/añ³PWÿT\vêË©ZGhT#þvè²\7f\15»ªäÄÇq¨nã{C±¿Ë«Ê\16%¾ôª¦ïô£þºÿáßú\vþã,\9dýÈ6J¬û*\1aé\a<»)ñÃ'?½Ã/ýc{T\8f´Ôe\9e_¿\15ËnæQ\96ÿnþÄ\9e¦{\9bë£{z®e[¸xù\89N\1aìY«Õ\ 1«Ír\7f¦\89\8e%E>Iz³9\v²\1e%jüGf7>ÅǦmni\1föð \84Ö¯iL\rZü\ 6\11Êâs~Æ\f6iDä±\ 4Fg\rØÝk\1dË\9at¤EnÝ5yÛ9Ê\92[k\1c\8cÀüzn·*I\19X\9b\10"IÁ~P´kÉn¶ÙF\18¥Ù\9d\8a\1dÚ;ÛÞÚ\8d\16ÜîU\99·¯ÇT©\9e\98bñ\ 3{\8fdÓ×åÔ|î\87\ 5æ{R)ÕG¶ô²¹ÐC}&Fó\95\15\1a\a¶I\11cz\89\86Ô\83ODЩî6\1a KQ-1h÷[Æ$Ö%\8f±\17\1dH\bc~ Ì\9cX¬^\90©WÅF\ 4\9bM\94\94$¯èeDMÞDg0\971x¶\865ï3j\17\1f¬Åg¢e[û¤\ 3©>ÓÙï\11:jjQ\98ªS\ füP]×£ÓÇl(Dæuê(P\rÖ½±\81ÈÅ"\90úÃÆ\ 4§ºúÀJ*>Ñe\91Q)IJeõ)
-±Ø\98ÕÖl"´\r
-Vo-ùô\ f\9d=Q|®ýºù¸\9bNÈ·6ÉêkÚ4ð\18µØëv\vv"ô\9e¦×\8b\8dâ6\8bÉb>¥GfF\16\ fÉú\1c'\99@\99k=»áR»Ózì\95{AÙFÚíÚLöÐ mE\8e%\87%¯6"ÓÛµc\9c.è\9cÂÃ\9cÖÅæçZQ±%.6!En\8cÕgõY¹Ðþ¤\94\ 5\99åm\93\ 4ú ÷é\99º®Ð¦/hØXN|²ÁW_<'I6eX\936[(V%¸½ù\94\11£V\9dð`\ 3ÔÙæUéÌζ\8cy\bÑ®Å*C\ 1c\9a\80ÞÀµ ë\9aZ\1d)\97æOõ~\99Í \91Âp¡¥lTî\8bmÏ$\19çstZôùT²<$\8c\9an\91»ð\85-#Ù§<ÚÊ\1am[6\9f\8e\99\16\1f\87¹rn¼Â"^½\18[\19\15½´\9e\9eéÅÝOÊjßY\83¡\9a\9dyLãÕ^\89dû\98
-©;\18YEV¬\8a°×%\9d\90Z\8egÊÚ ¬/#Ô¤(-©\v\9b½Þ\16ÿÔ\9a7\9bGÞÆ\ 4`ëHHÕR\97±Äpkc Ä\1a\17oúÛÝDgçäÑ\9eÔ)>²zb\eÓÙ«]Û2_i+>¾WdØB\vX\¼+«\ f]\91¤Þ\94ö$mOÚ\87.\1e\9c\96y¹Õ~i¨ãÐ\144ßdaEô~qô\89±Ågï\1c͵\97FòX:¨»¶HÒXgà³\83íZ\1a«|d¾\88\96êjÃ`:úes³åFàÑjYï°cÆüæ/Ó5
-z\15¶æI:MDß\7fÉ>Χë\9eíCm=¬.HÐn\94\9cÓ-\8e5
-Á~èøQýÊh\16û\96¼\\83\7fBô\ 5CÛâã\13\8b\86Me\8eÔ6Öæi\1fÀª\9bæ\ 3\9a\12\8e_|!Íb£\81v~íV[lÚ\91þÝ\ e\18ÿzùo6(RüÍõWìÿÚoÉ>\14aó\9beµø¾¶E\16TØ\aô">¾¦>MBvÏYÇ\90¥®/Ð+Ç\97\1c$\9bîë÷J\1fàI\1ex\93YÕûâ\90dke\82]/vh³Å\98RAÅ1\ 4j;\9eÈ=u\1dË`lVh=,Ù\94\89¶û\9c\86\10ÆÚ\e}\18\90Þg\97m¼N§\8bÈ}¶-û\aøØx³Ç\ 4ÙWÑ¥½\92TÆ:K\e\1a\93©\ fa\1dÙ$]\9e\vmÈ\14[n(\89¶Ôfñ V\96\9dÅîîu\e«jÚr\98.\1eÆH[IÖ\ 4ÒÉ/6P²\8d\9bS\19ãK5î¹d\8d1=tñCki^Ðö<·ö\89-Y²%3\92ëÕbHY\9f´¢í©Z}Ô4H0B\17;µ1ä¤\13fí¬¶8\ 6{\16»\11É\ 2ÄÅ\8b\92M\ e\94ÒµV\7fÿ\9a}\ 5Àjñuû\b[\89¦Û\18\8eq_ÙXÏ®\81}T9®cÉV\88û0ò¦ç!íë\85\8a/K\91\15\vc¥ìa©ÃZö!i\99!ª¯ZöÕ2h ·ÒP|°J'\16Z%©C»\96h\v¶²o{aÃkÁ«×u\8cÞ\16ß©@\9a\ 1%û¡Ò(Óµi1\8c\1f%\9dB©èöÒ°ùì\18ùBë8£Á\e\b#\8e'5´´ËuêxÝ\agýj«Ö)9:\ar\17\19#è¾\86PºÚþ3G R[\8bÍ¿«-7\91\96w\8aãìéÄ\ e\9d}U¼\14%y\7f?Ô×\8e%\9b\93¨\v¯â¨I×m±\85W)\17_Å¥+Âìëê®NZó÷;\9bß\1d\83ÕO½\9aØ\8aÝYüä-6'Ân@:<éQ+_ö\92\97V\8f\82\10R-¯\9bß\aÇ´oÍÝæ\81 \\9b}æ\98¡¤k\8eu¥M\1c+\8a4B}ñÄ~Áâó¤tö¯þô%ø\8e\ 4Ù\13¼mì·\84§\9aAý\1cû\9d|\93\15\9a«ö\87Vo\18éòF\1d©hþV1ZPZ»j\16_\94©\ 3¾Âjõ±\92ͳLÇQÖ:b\17Ö\90\93\ eb\1c\89¶Ã\86ìúQÇj*]ÐË\9d|_\84\9e$±\9c§¶y\8e÷!4Òc\87Fÿ¾Õ\9b±M¦^îs½äÙF\17ºìjMcs\ 3ÝRB\92lÝ\9f%ISAvÂ\bu¼Ê\1aÊM\a£Çp¨®)j>\v8\1e\86eec\r_j#+Jlr\80tÜ[\1c\89Yæ\10J\vt_r\96e\1dÕªë\8d¶2\92ì\9c¶Ã\1cÂê\rêæU\8býz\99`¥I9{ YƧÊ:Ó\11\9d\´+'§7Ù\1a¢Í&\86J\vÏ×@m{5¦\ 1\83Í_\16Âb_Î×\0Èþ\14ÚÊ\90àÊ\92¼@ô\8c\ eãÔ,!\8e\ 6µ\94U\9du\98¼\11k\e`Ô¶\1f\9a\87c×\9a/Ø\90&{¶&\906ñ,\16âÕ|Øü£Új\ai¶Ä仫h5ªÕ\7fó½D¢Õl²d û\8e#Ò\´Û¡îáj\81¢PýÞç\eÚäÃ\9cÄ+\8dð»ì\10Ø\13\ f\82¬åßÆPF¶0Vð±n\8b3J\ 3FF\94}\98S&õW\e\17^ò\bPæå0¢\¢Çøm\9a\9d\8e<oi¼\9b/é\19-¤ÅrÜ\86\94Ë\12¼Þ²\8a¼è\8dÞ"ëÍ¢ÆÁ¶\·Öµ|ü\85M>ðý*VßìTw\91\f>§mi\1a«^ϽZ\94 b\1ew]÷!;\8dPEÛza\19- ß\18!ù\1c[»GZÕU\8eÚ\92>Ç°è6A¾&ß®\8frXD/ý\92ñ¡ú\8d¢®7\97ùÇúu£ýöj;Ië÷¨É\87À{Mdqô}¿\87e_\ 4&\97Ló;§u\8fÊa®BÙ\1f\84$;T.Ù¿\9cÎ\86Ói4Éïó²\19\8bN{)c!y Û\98X\13|ß\fY\85PlNNÉ\8b/¬· ¶,\1f\1cKí\83tl-êïû_ÈR{\vñ\1f¦aJ\85\9c,\1e¾®ÁWÌÇh>\89®û\8ab\89ã\a\8b/ëséôÝ\ e!goÍU+\82>d`ÛSô¯²¿®xë¨ù\16\1eE·¾\r\96Ô{Æu\ fß\8f-\ f\96z@¼\8e\1d%ªì²©aøX\8fÎÕSÛ\13#ú\\90E§é\97Ã\9cÖf«\165To\9b\7fÈg®þ\99Í·³ÑCõÖ³-ûÊæê¨mñéɺĿYßCfÏùtØê\93Ð7\19ëÈ>g¯µÅ¦ªéºHËò5\8fCÇ6*2§¸ÙëFkYnx>Ë-×Q,5êx¡\87ê\Æhs36;Ò/J\99³¦ñ#¹r\97q\12\92Å\15·`S\83ôH]\97aÛ\7f\8c\9f \v°%I[\ 2vR\9bE37\9d÷â\13
-µÛ \91µÅ»kÕV®kü$\7f7\1dî¶àËZ£ÿ~kclÞ \8b6mk±\ 5\9cºÅ{´ÝaÆ@½þ\1a«\1dÆèdJal6S|ÑhZËXÐ\7f\183ÏëèRí£\8eÅ\a¾\93Û´áÏñ*ý}6f¾ø,?}f«ì\1a²\8c¿k+\g.û>\b«µ¼-\9c®M¯x4c·ì\ 1
-IZl\98¾µâS`µKfáô´\8cC\83\ 4\1c$ÉÚ\ 4\1a\8c°\11~\99y5&=ë%fañ\\16\9f1àKw\ f\13Áu²¼¦ø\9e4ÒÚôý\1e$\9eVÆp¾îY¯G¦Åï\1e\9a\1f\1a(\8fc\84ql9"±øeìm´.¾^x\84]\16\9f $;{úÌÁ`\ 1\18\8fÿ{§;جNI²H¹Nå\90ÌÑ¡\83¥ø\98n)i<q)Ä\91\98B\b\972¸ß«íd\8d\8a<HIi^\8er\ e>["ú\98±ö³ý,DÛ\7f&Ù\ e)R²ª¯=^íÙ'Vf\8aN³\97vN\1aeF7Ó\92 ½iD]ô©¾\16\9eÖus\96(Ab\9dV\9cÇ\94K\9dÁ áéetÖ£Oý\8eÞÞ´ Kµ\0¸-/Ò#mVL°zÃ\92\9aÝ+6ß;Ñï§zèb[ZXÇhKV\99éI³îÓæ³ \ eÕJ>TzºÂ3ZÏ\g\106\1f«±©^\81ZÐP'\92f«ÛË2â\º`Wï'¡\8d9ľ\15\9cÜ\ 3b\19]õàã\9f!\8cjÀ¦Oì\v¯-NÑö;E\18\89Áæ\8cêÊ.?\v\12hÕÛNÊû¾\1eÞX\91Á\92ä\97³Î«Ñ¡ð´úO÷yÃÅvγß)ßÜoái|¹ \11P] \1dò^Ï\84èïæ{\9fÈ..>æßö@\90í Uö)º«\87Uä\1eîû$ù\1aF»ûëà¶Õ>Õ礶\11hÒÍIt\82k[ÆiOvB¥\92V/»±ú\1eV-xG×\ 2\86²«Õ2z¹Ñ¶â\90\96\95oø\13}s¿±µ¼U=m±\99©º½\8eU<Õ\82[òº²\8dÚH7\b(Ñv\9c°\v¾Ù\91Íoò\8cÐzùÒ(\vcn\80\96IMòiI\8buz5iß\8f÷¬6o ê¼äx\98\89"I9ùx~ÔPnÿÔZöþ_J£\11i\81\ 4Û\ 6¯Vo÷eïÅnr7\93LÒ"àãôa4\ 5khÞuÖ\9dÄt9½Oä\18Ï\1d\97\ 6îæ[ThÀÉ~ª.\eÔD\9bfXìÙÃÖ\rß'Üú\84ÂÍ\1e4b\rm\9dÕ`\89\9b~]\99ì9f\a¬)[\8e\8fﯵ¤\9d\97TÇ\ e#>Ù#\1eÿ(ݸA6,Ïc×ÁÕ\eËa¬!\96·\93¡EI²¢«9¤ñi\99Xl«hu¢\81ͳ\93\19©ËèKë
-\ 2Ýa}\es\ f¶Zm.nÿ>ÞÏÕ\9b\9eÚ\93ÏÊè\ 1ÙØ\84$-c\8e\93\86|ÊØëΦ×xÅ°\8cõô:½#Ú÷Õ\1aB\v\8dV 7t»î¨g'S#u\13¾2\96Í'Ù\ 6ì\99=\88n\e\83Ä:7A·ô«¾äÒ&\99É\Ð6\16"êR«§¾\ 2<\8eÕ\84Ú\8a\90É«qñeíº\7f\9bÌ\19µ}©t¡§\ 4].lO<\1fý\f\1e\83Ì«m\16¥I:X³}=þ\10lW¬\v]Óo}\f\1d\81,Õ·\ 3Èc¸Ífå˦\ 1Õ\ 2\1cÑÚ0\17¶}\81m"á\ 3úyì\85% ºê@§ \87ä߬ùf\v2íÛV\1aëf"ÙwV\bcã\10\vrê¼ïè»@\8cHKÞö@\88o. Iú@&ûñ2Ü¢ÏÖ¶5áº%\8eÏ\19÷ë\\13µ;*Ic\92Ö¾GÅf«\95-)ÛÂT\99[\9e£Ï@ÐÅ\84ú4\83´øëtÑ\88/±õ¡p\e\91\94ùÛÛ\98\1d kj´Sn_w\ 4Fõ\1aÝ\82\ fÀëtW»\96µ\9dg£íÛX\12àKk«ï\97#Õ\9d®}²¤8z¾)U\1fWÕ(¹Uwu\8cݯVÛ\1döÅØVÛ\ f@ª¶Ø¼Hëø\85Ö\8aëâ?!W_g±ï\82¡3òí\ 66\16c{\ 3ÒúÇÙßLË\9bÜ\95mâ«íx1\1a\16¾ñKmc¸#\8cMtd³"\1d\7fÚ\ e».-\87É"«/"ÒKF§AHû.Ôq}\84`M9ÝôØ®¢C\93o4x5HTµµ8¦\96.^,·´\a\0åj³®¤\8c)o㪴 ò2\15'\8f²¥»\19kOG\a¶ô7\8c=\a³\8dTY\95¡«w·l½/ËrÛ¾&Û`\93/µ¶\16¦OÕ:\8b\87=\¤ihk\8d%>\83,å°ÒºX\99º8\9eõ&\89ËjóìÆ'\14Û4V\9bBÑWÿk£á©Ø Ù\87öu+\1e-\ eú\ 6\ 3:©T£*ul0P\9bu¯¤`nÑ\97ÏûM2úÞ®:i¥øN,Úò°\19*y\e\17\8dng`ëâC(~WX¼äÛ\80¤<¢+\8d%ê«Ì\90±\eÊj³¤dÞJÌöº~/ðÌ´p¾<\87ÞfNÉ¡¥\8dk¼\97V?TGPuë\98¶øE\93²ä\92l,ê\eZxX÷©-¶°M«$Ä©Ñ8©§|W
-)Á¶`b]\97±2|mû\ e0ÁKR\®m\0³\ 4O²1
-½\8e¼\1d/O\98XÓ6>@7ROÒ\11ó\v)\ 5OÒgEXý\93ÓØÆe\8d{\89«Z¿§±á\9a^÷«Ý-Æü\12\8fµ\è\96*Õw\12ª¶<Éöl\19õY¶/¼\8e\15×Õ·>»8ìÛj»éhÅ\1dm+DÏ^é\10ê\96*Å\8f,¾Ð5Ë\14«%\1d%ê6+yì\93 ë\ 2õƸ\8d\93Z}\9b&½§\8e3£kûòØ\bÕÎU±»qÜ«Õ1¼#7wߤ¤úÂ\ 3Ùìvkyd\92D\b®7\ 1î2tüÍßÛ>å¾\1e.ÚÆlÏ,±l>De=ª$á\9cñ2\1dn\90\94ÔÆ\8b$Jr¡[)ëÒjKlº?H\1c;Þê:\89Ívê°A\14í\97gß\1f$îa¥0\1ex\16÷QMOú{}]ÞW\14X\809Ilcó×é6\81\92T÷Í\8f5~p¡\eV\94´wýu©\84<6-ï[.ËíG¶ÍHy¬;Xױϳ\ eÆ[\8faÓ¤ó>³`±É\8bò¢}Îô("ºC´·.³n/¤\e«ûô_ë\ 4É\8eÙi\8c´h{ö©m\19¾\8eÁ,í\ eé\96á±\8e\1d\ 4µr\94-ÔÃè\8fèB½§ºex´Û 4\99e\93qMªcpÈFÕd?ï\91¢!';Ò7}Ù÷#L\9bÍO\8cºÇ üÍn×Ö\99M\87ÝùÆ¿\8e¿ý£ýkò èö¯mlù\9d\9bî4"[Áµ1<%\ 3Uö\9e¹Õýëk!òMÕâ¾Ñ¸n½\9eÇÈÞ\98Q*\89[ñ\9e\98\ eèiR\es\9c}³ôÍf4ùÈ\96ݱeßî\1cÆ\90¨\8cAÉ&èa\1d\99«ÑeIê]7ÿT\1d\9e¾ÐÍÒë2Æñ\16í^§f\ 3\8bÖ»YÆ\ 6õm\f\80j&>Õz ®c\0tÝt?îel\ 5%£g\12µ\92*Ä«{éÙ5\v\aH»?\8c¹g=\83íu6áÉf^\15ë\1dø\1et2e«\94±\vx««\8fRÙö\ 1Y7¶\1cûùÙbÉ8æwê&û6»!\8f\9dÝZ²®¨Ôä\16"\97¤ 7\17IÊkô#uîÁ\85ÝR|\1co\1d]\97¼O"_-\16i\1d\86ì\8d|)±~[ðþ\9ew7õ\1e\90ªÏ
-NËjõ½ßQt=Ý:¶J÷\9df¤Ï`\95{ð±\0Û¼dµ*Ú6©Ð¤f\ 1´,}¢â\r\7fm6ë\16è\9eåÁ7Ï\94ÝóÓ\98\89¬¿ï©.í\8bã\ 3\16_Øç\eKI?¥n\964vZ\91EZ¾\15}=\1fÓXµa¦EË'¿yÿM\92|K£\16Æãt%Q\e\15\96¨áÚ4f!¯ºiþø[¶\rl\ f\7f\97¼;üíòk·xéµc\7fû:¶\83Ñ\99W\9a´\8eòdú¶]\89¶\9b±&jØEê ä9¥»Æê\83M\93÷\ 4\9bÝÞä\97Ø\80\80N
-\ f\9e ¾ëÙþà\10ý½ccI½Ñx&\8c)æ²jI\13ò\98Ü«»»j\925\ 1tWÕ6\8e[Ç\91\16Ü\94ëÜg\14Ë4\0¹µKRZ}Z°\ e\ 5Ù¡ã1'Ú\11Õ¯_\8b\17é\1c½¦jy\1d¯\8aë^q¶\96/}\80Tï\9e ÛÉÉ\93+}+ÕÕ¦\97_è}áp \8e9i\92íP)WVðÇ+X\bW',û>óú\fÚæ_¤ùÃ*â\12ÇËlß/i¨\8f'pèbJ»ÿm¾\1f¬=§uµGÞyE \83|ö\9cÐàU\8d®Å³¯Û\96±1«\ e]jýîÃá¶p$iËyl\87:\1e\83¢ûÔ\8d9©iI~\17\18ûÃê\8e$z\83YÇ\1cÒì{~É\ 2¤Å+FÝÛGólÌ>\88q³/»¬ã©\17:ëÓoÖ\1a¨×Z[w{OÙ·ìÐi&1Ù\ 6biÉû\9c\12«-dK<ß%É\97\18è#ZJÚï¹Õ\1e"Qâæ\ 3ð1[ÐA\1fw\96¼E \13¯ôi\16\1e\10i¾Òq<\97ÝZ\12Õ\82cil\8ao\ 3ú¾=\98t<,ØO«\8fEiÃ$zÉ\8dçcG\1fÛ¼ð¨í¶øæ\15Ék\ f\8b\9dÚcÞt׶ä˪ôa\8d\92²äèC/ºæà\86vå\9dOz\90\95ÑÁç{¬¶ë\87nU¸z\99Y7ÝoÐWbÅÃò\17yÔ\847&ò>åá¨j÷\9dbm5v\18[ùê\94\aýÌ:ö\ föí\1cõ\99*eìÉ«kJÒ\18*³Ív\93ÝþC\1dQÝ%\8f#C\eO\94i¡Ù#5tÊ\9a\7fèRýÈÅ\93´%è\1f\1a\17¿®t\90Ô\1e÷2¶\v¶\81\96«ytgÛtI÷áÎV\81k+¨y¼_«´göì\8f0Ö?[«bÙ[þÑö£Ò\85ð>Û$\9e\8f§¬-ûÄÇhsþì¡!Ù§nGÛöa±\19á\96ä»7d}X¨\8f ®¶\ 3i8Ïc\9cÇ\1aÄÒ\13ô\ 1T?\1dÖýÔ\9dÅtxz\rºüþ0\99³Ú³\15´«í£yÍ\82bÖ.\1a\83ÑÍV?hR]=©7-íÐ\1cǤ\86±]RÞ\1f\19\10\96Ct5ú®\14¾\81£¾\9b^\ 2úL\93fA¼\<\80kÛ:\ 4{,\9a\8e\1ah\92mÒT\16ß\1c[·\83\90¹\84\16\ 5ÑØ\92>ÖD+\16{\9dö¬\82l>UlÖ\8fÞ\845©\17úÍC\87¶e¬&Út\8aÍc[\9a\14}me\uJª<\9a¤\841Vçó+åI$¹ùË\16O±ù+\9bß\94ôÇ\1f\96ÊÚ\1eg\92GÚu->¡Û\1fò²ùøRÒÉ\ f²{\85ï}/C\14-ú¡¾>w±yvèæ\8f¢Ó½áíCí\19ܺSð\96ýLg+«²¶¥ù¼ {ì³´\93\97ͧø\8c\95ÙÒÂ\1eÃ\83Å
-~ܧg'ß<G
-a\1e\1dríKy$cõá5ÝNN[õ!\8eµ\r¶\91\89t\96×±Rb±\1e\8c\14ß:v\ 2\88¶%²\8c¯\8dç\18é\18\95nR»ï³\90\9b-ÅË2èT½SS\80,@3\96ûúnÇQ·½´{\8bÏõ˾ÚÆ:Õ\16P\8a\16\94²)\ 1«µÖKÙ\17\18G\9b×-MøXü¾\14\9b\aYÒ2:èº8C:M>\ 3c±Õ\82V94_È \15\80÷·j\1c¯³Ílõ±\80e,E®{W-\94±\8e\× éMó-X$ìzUv§ËÈuÚ@ô\86\8c\ 4l÷\8b8vAÔísme|ðIºúl\f]î_Æ\ri,}+>_Ä\1e^\16lo\ 6\9d_\emF£¯«\1cÝÌd+\1a/t\12\85mö¢[½kQÓ§Ö\ 4ïóiLE§\9aÔÑjÔÝ\e\9fê¬\ f\ f\K¯²ú\9aIßí\\9feWmÂHIã\1e\1dmócY\80é1u\99\84ÓlËùýþ¦b\9d\8f\92ÇÎ÷K¶ºC\12}Vm²þ\94NfñáÓ±lC\92|[\a\99Ø\91}±\84ÍgÐ4\9bhÒl\89¥&é \81½\7f\e?4Ù¨\8e|·\18FO .vh\1aÏ\13\\82\1fé\e\95ê^øûÄ\98ñX5éÓ®\96\95Åv\86mz\81úúÖÜF\7fw³reÊK«£{³5\9bÌ2&s&ßR`K¶\11\91eR²ÕG²æÍö¡\97ÌÔ%©²â-\8cÆ\93n#´¶\a\90\15à\ 5iõ]\0\ f+¹d\v»:Úà:¯SYü\89o\87ÇQÈ\86uuÌ9×e.º\82yõò¬³à®\97ú©\8b/W\7fNwÔq\1cÙ¿A\9e\8a)s-\92\ fVê3\V_ü¡gB#E²ñëâ+\8d}Æê\85n\10k\r\11oeÚ¦¿\9b·\15ýÙ\8eÖ\83Y|^tÿ4ïr\8cË|³}\105(\9b·± \84\8e2Èû'¯Æ\93?2G6¢ö5PÁ:\ 4úìÌ4\9aH6\ 3l=ÌÒ\89Ö#µ\boNcù\82.UÒþPÝï\14µz/x\9fO¦§ÕzöÖ\81ÖÚ²j{ºî;J\84C\a}<p&Ø\ 4#\8f\8bì\8fFʾã½m\0\8d\95\10lW5ê\14Á\90l%ºÏ<Ð:H\12Ëæs8\16[G\11\92u\ 2u®´mÚ\16VÛ²Ù\86l|Í\924\91t¢£>ãµ\8c=¿\9a\8d,/ͶÚZlÃo»\85ëbP½û'ݦ'ûL\93¸¯\1dÓ\eJ\1eám}Ð\87\r\fØ\92]Ë\91µúëö'
-\8e\ 6?ÄÊ\87\85íF¼å±<Ä65\91'ÚÆ\91\97>¡5ìkÓ¢Í׳L:<Û0úpsõé\96ÁfúKî¶ñÅ\82ß\a$?òè§Ú\13R¥Ù\eÆíÔ6<̺?¤ßèýI=Ú¼\1f·X\r\99Ê\9d³l~\7fµ\0¬üÌ0\16ÁhHÛïÃaL\e\f:\89]\92¢\87âm\vrM\19Û\ 2IGÔºL\87\87\ 3\85½ËT÷\19\1cÍc|\9a-ú\93\9ao\94\96ÚXvä£Ã\16¾\e\9b\84øÖÑþ0!û¶cKï2öÆ\ìá!\12\15X\9aÏ[Zr¶}Ð\ fã\17û\13Ne°b<ø²Ø³0³-9\89\97BÙ£&/ç¾\8eÇ"Ù^Wèü2IÙÆ\ 4"{\1ebªÞÒ²\89G¶\8c,\1dN§ÏMÕØL\18³\91¢ÅñêþØÖl\ 3Ùvh\18ácÝ&ÑRÖ0*¶V®\ 4zöÐeñ'\90im§\8f¤\94±\15\8fÃ\8c\15Wi\1d\ f0ÐgÅîOÙ\1d\ f3Zmw/Ýo{\1d\93DZ\röDáæ7bßùêBkñ1\97)Ø\9c\ f{æÀ\98s±\ 6ß\16?ú\88½Æ®¬\ 2\1c«¤\16\e½×Í×}ê\98l\9f·Z}=æ#-Ö¼ð\98h\1e¯ÓÇ\15èèÄþ¸\8c¦÷k\1dDI>è\97\ f»´\1f?)E\9fÛ\9a\8e¶\99·åZ)ú>8¶¿C\18ñ\1a\8bdêc\93¶±íyô5ûºß\86n«nCÑÉ\ 6i.ô¡Ë¾A\9d>$.Ø°ÚØ\ 5bµ-\fõ\86ÐF\92ÆÝüë\16Ûï>Ù\1c\18m+\17\eSõa|&ó>W%ÆQ\8d¥<\9ehÑìÙØúh\90mä\89Íä\92¾oM>l\9d7\7f~Jôç:/Vj£[·q&l\eU\99ÒÓ\82\9fèU\9fªãO;ö\96¼\r¼\97u< Ȧ«Ë\0ý¾\7f\88?Ùf\19íï¸g]±.ª¦ÙFW2Ug¼¿Ý«eÒÁº\8dÇ\91X\eLúÑÞì\rþ´5{FÎ\981Ôt±Èâ\v\1c´\ 5\92mZ~YÆ\13\91u\ f5{J©vZãá9&ºï¾'Tï©ÊcÔƶø¶l8\1f\1eþ»øVÙY\97ÿY^û*ºâOX³\9d>6_íâMH\99½¡\19&\v[Ê>eÄ.¡²7´e\99ý\1a]©Kû}>Gµ^\8c\8fúÈä\ 2\19\91zj»îå1m@C©¶\99×\98TdsõdªMXö\v×nrÒ\8a\8ciä\90\8e\rê\9eÄcÿ\16\9b\ 4»-û\9e\²é¸ïüp\88\18\ 6\9bÿ©\13\9dc\18;ÕdKñi\1fÍWù[ûÖ£tq<Ê3Ùh¹}¦ÎÛÔý\ 5\8b\7fæ\18.Ûü)`öum¹Àè\8aHAÞl\19\80\9eƸOðxª]\0ÛkÛ\9eÀã]\ 5]\0f\97OðIúu\9fi¢µÒ\85mT\93Ç\8c\14«ì«NèökÔ\86«eUù>\9f,.þ´¿àËZuªÍæ;rØ\ 2ÞÃ\84\1cYT\1fÆ3:\96el6ã«G%M\aQdó [zYuÉ\9c=úÑ\9ef©s\85²ÕÿRãla\eU ? ÍgLÈ@O¶õwyL\9c\e\ehJZ\19\8f\96ðM\ fdXp\94,\r»ì\vÔí9\rþhLYx\9fG\96Û«ìY\8dVÖ\92\9doû´1ß\9faÙÇ$l;UK\89㺫ú`Åeï¤/¶¤Ì\8e<L"LþØ\0Û\9eÁn#ÅÖþ\8f\9dõüùÈväx\92[ð%T[³ý\9buÖfHÅ{³û\16Fc?\9d}\13£èK?ª=uÖ*¹Å×\91\8c}\9f$Ú\94Ææùz»ÖD}¤\8a®Ë\18³8\9b\a
-ô9KÖ1\8aËxZn[ÇèWØ|+Ê\1aFW¶ßåW+ïË>Ä·Äî\82Á\ 3\14¾¾'ù\83=u$Ê\1eø»JÄb\ 4é}\97\ fY\98a\13Ðdµ©ÎxÔ\89{Õ'QÛ½\¦Æmãù\88%\8e\99vÅ\9f¦á\17¯.,Y7ÿ u\ 4@Ê66\91\1dÓ\eä\1cøî[ÉG$ª\84\96¼yV,\84##\19Ñç\8d\8c\85m\9bN9\18\8bÿBµJÇ\86÷5Tª³ze\9d£m6 áÙm\e³ñ\9bm^\1d|ÈH^g\ 3Ð\1axMÕ\ e\1d\11U\19\94´M\1ft2ßf½ n63ÐöP\91Í\7f£uÐuÛN\8fvz}+\9d°ÍW\80ésstÒb,þ\ 3\9aíÊ^ü9\96ú\9b\92=~Q\12}\1aÿ6vä\91½\19lÕ\81\f\1fÖÕ\97T\8dµ\90º?¹E]t7k\8b²ÚÆ\18«MZÖ${Ôî¾\95KÏ5mö_èúa[g,?K\8b®Î\9e¶ý\91óÑêôª}¶P¬ur¡KÑ7ÛO?È>GþÈN{\0\88¼N\1f`¯«Ó\9b\9d\ 2Y\81\1döG\87Ú)\rɶ\ 5ÔõÎK\1e§JZ\ 3¶-AóȼôÆ.tµ¾mR\18¤~\8b¶¨\7fõ]¥¥\e´ØVL¶í\9an¶¼\8dm\92of_}B\96ì;1\1eY¬\13ß4\87<ØYì\89H\17¶?\8dïåPü ·Í\1fסof¡i¹Å±U\84ö5íwF\7fÎ\81<:Â\9föÙû\93¾Þ׿nÝ×ÙFÛ\1cþBw\99({\1c7\16_Õ¿ø
-\86Ñö\93X\\1dÓª6¿µèã*\ f+Ѥ0È\90p\1ck\ 2üÁ¬Û¾mcÝoù2´»\8c\r\ 1,\1e26\15°î\97\ 4\15ôÐ6"SÍZ7\12ÝòKW\1aAzdÙ\1f^S\ eß×7§\92\7f\f\16\v\92Ò\95ƺv{nq\eOsli<ÿù°GÞj\9dô§zRm\1fK¯\8fVi5Ëý\7fÄPõ\11\86rº\8a\ fI˶&þXZ\8bUØ:\12\e\ f\90²j\8fá\92ZPw²ÔE+cg\ 2ß4A\82\87\96àeK®\840\86Æí\89^£ÿc/\v«mÙ1ö\óMN/ìiËê§YãÒëxÚ\97\96\90¸6{\pÉã\99Ê:ÁÜ®Üñ¼\81äÍ\80¶\87á³M\ 1\90[å\12Æj2\1fµÓ ¯cå\98\ e\82ës\86ý0}\98¨´z|\841[y±KèxS\93àM\960\16¾é>Çò@ò¼oLâ\83Qº)_\18#>v;O2\81e\e\97Ðf\87&Ûù]ªÎ\94Çæ0i\ f\82YU!\1f±\16_Ä[\83\1f\9a÷\85ÎþìSÙ\e'Ø7ÙlÛ\b\8dD\97ÅW\8d¯Ñ\97\99Z\ 3H¯îà\9b\1e\96}Miñ'øIµë»5\97±UdÙ·¹ö\9c-Ð߯àñ\0\19ùÓ~\9f³!ݱiQ\1d\ fEÖ@¬\8dµ\a¢m'ùÃ\1e\82:9¦ZÃe´¢u¡¨5x´ke]%\9d\14&\8f#÷5#\8b\rÛêFqy¬/Ø[¾il\17¸ÏÅÖ'Ü\ 5o\97Úüa\99Ín=îlK\91¬,ôÿ¢%Úö«ºc\99õHd\82[ô÷J¾ÿ]ó¢\90ü\ 1;Y\1fk¾Dßdb\eóæ\93/ºÕ\99`Ö:®¶%Ú¦K;\82·{uã\10\19~ñ-\e}b¢-\12\1eÏ\94\1cOÉ\90Ñ"oEÛÓ9·eìÔ"Á\0ÝNR\86Q\1a\92$\7f\9c¼4\17ìÉ×ú¬åf\1dL_¼Výù£:\rÝvæÐ\ 5#\16=\93ÅB¾vÅç{ê\8c;\7f^îØÖH§\mc\8fÀ`ÃÔ2ýÆ\9e\18¡;yY\88Û\86ü³\14\13Ýw]\9e¾hûkêó\8cë\bðÔX<.±Èclt\9e\8aO\1cß<\1c*A\94Õ\83\bÁ\e\94IÖ\92c\16ºÜTô±h¶û\85nX©I×\86\ 1îhTâ£'íì\eï\9e}ü\ fO~/S´\83n\93/\9brõf¬LÌ\892#Vj³M\82ÿ\1a*\95m-z¥¹ÿ'Ã\14:çA®¬$£827á\99=ÓP·»HÒR×\ ezò§ÆyRµ¡\v]\8ay8TòS\1eX(±Á$\e\eh¯C\93$ß\93m£\11üP¹ù'\8d5ØRÅ$±U©ÚSö}¢äA\84U\ 2Ø\92b«Æeª\8aÄ\98zRÝg¬é\1a0)NÉ\ 6\8b5\16T|\a\89\94u
-º\ 5'ô¼\1eRª¯ã\1aÇY¬ÚúÅI\9föàÏàµ>vÒ)¦:v}82í\8f²\97I ºº Éâ\11yҽǤt_¶¤\ f\81)«Ç¾7Ï#Ýãÿ\86Óð¢bÒK[of¼üÄ\19\9bö)\1fXty D\88\9b~ÑÜ|\89pòa\9f£¤µú\16î©ì\ f\1aÔY\ 2òKt/´ã¤f³Û\ f\am¾ý\a`e«ñ\9e\98\ eóâ7ÝÒé(iLN=>4\8f\81\bû\84|v\9c\92, ~ù÷ÝQƽ`ÞÒ+¼ËGOdãÍ\8f?\7fRüb\rg\1fÿG¿b\17ù\7f²ÿæ¢[9\7fü\9fOÞùÎ\ fó'ßÿÕ¯¿ø¶ýñ»_üòW_þäÓß}õÅo\9fôCûk~ðä\83ï}ñÿþêâ\8b\9füà»g\1fÿÍ\93\9f\9dI,Ïwö\94Æ\85N\85îù\17uVmÏ¿\9f\9f\ 5i\vJ@¼\7f࿾Ô\11ú\85ÆQû\1fú\1d \7f\85~YÈ7Ný\7fýeOÞyG¿ä÷>ýêÓo÷÷Xros=ùø\87ÿ÷ÿ\a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\80»ö\7f½\9eÙ_\1f\0\0\0\0\0à\ 6¯\19ñ 6\ 2\0\0\0\0¸\ 5z\8ex\vÞZÐãeÌÎ\f\0\0\0\0À\9bBG\12S¼¡\82÷&ÌÎ*\0\0\0\0À-Ñ\97Ä\\13Kàë\9b\9dy\0\0\0\0\80¯1»ãø\³3\ 6oÏì²öFÌÎT\0\0\0\0\80\98Ý;¼¥ÙÙ\86»7»L½%³³\19\0\0\0\0NÑì¾à\9d\99\9d\91x]³KÐ4³3\1e\0\0\0\0\1e¿Ù=¿7hvÖâ\95Í.2÷Âì\93\0\0\0\0\0\8fÐì®Þ[5;³ñ5f\17\90{jöi\ 1\0\0\0\80\aovÇn²ÙÙ\8f«f\97\88\a`ö)\ 2\0\0\0\80\aivgî\1e\99}* f\97\82\aföé\ 2\0\0\0\80\87avïí^\9b}rNÔìÓþ\80Í>u\0\0\0\0p\7fÍî±=\18³OÔ \99}ª\1f\89Ù§\11\0\0\0\0î\97Ù½´\aiöI{üf\9fáGeöÉ\ 4\0\0\0\80{avçìÁ\9b}\ 2\1f§ÙgõÑ\9a}b\ 1\0\0\0`¦Ù}²Gböi|lf\9fÏGnöé\ 5\0\0\0\80 fwÅ\1e¡Ù§ô1\98}\ eOÈìS\r\0\0\0\0oÉìî×#7ûô>`³OÝÉ\99}Â\ 1\0\0\0à\8d\9bÝñ: ³OòÃ3û\8c\9d´Ù'\1f\0\0\0\0Þ\88Ù\9d\933û\84?\18³O\14(«\0\0\0\0\1e\9bÙݬ\135û´ßw³Ï\ f.\99]\1c\0\0\0\0à\ eÌîZ\81ÞåÍf\9f\16Ü`v¡\0\0\0\0\80×2»S\ 57» Ü;³O\b\9ekvÑ\0\0\0\0\80[\9aÝ\9dÂ%³\8bÃ=2ûTàkÌ. \0\0\0\0ðÊfw¤p\83Ù\85b¾Ùg\0¯`va\ 1\0\0\0\80\972»ó\84¯1»\80L3;ãñÊf\17\19\0\0\0\0ø\1a³»Mx)³\8bÉ\ 4³³\1c·4»à\0\0\0\0ÀsÍî0á\15Ì.,oÕìÌÆk\99]|\0\0\0\0à\ 6³»Jxe³\8bÌ[2;\9bq\af\17"\0\0\0\0¸dv' ·4»à¼q³3\18wcv9\ 2\0\0\0\80\83Ù=$¼\96ÙÅçÍ\9a\9d»¸3³\8b\12\0\0\0\0\88Ù}#Ü\81Ù\85èM\99\9d¯¸c³\v\14\0\0\0\0ÐÓ|\ff\17¢7bv¦â\8d\98]¬\0\0\0\0\9c´Ù]"Ü\99ÙEé\8eÍÎN¼A³\v\17\0\0\0\80\135»3\84;6»@Ý\99Ù\19\897kvù\ 2\0\0\0p\8af÷\84ðFÌ.Vwcv.â\8d\9b]Ä\0\0\0\0\9c\96Ù} ¼A³\v×ë\9a\9d\7fxKf\174\0\0\0\0§bvï\aoÜì"v{³s\ eoÏì²\ 6\0\0\0àTÌîýà\8d\9b]Äniv¶ám\9b]â\0\0\0\0<~³û=xKf\17´Û\98\9dg\98`v¡\ 3\0\0\0ð\98Íîñà\9a]Ü^ÍìÜÂ\1c³Ë\1d\0\0\0\80Gkvw\a\13Ì.t/kv>a¦Ù¥\ f\0\0\0À#4»£\83if\17½¯7;\870ßì2\b\0\0\0à±\99ÝËÁL³Kß\8bÌÎ\eÜ\v³\8b!\0\0\0\80Gev\17\a\93Í.\80Ï5;cp\8fÌ.\8c\0\0\0\0\1e\89Ù\9d\eÜ\v³\8báÍfç
-î\97Ùå\11\0\0\0À\837»[\83{dva¼jv~àÞ\99]$\ 1\0\0\0<l³û4¸wf\17É\83Ù9\81{jvÁ\ 4\0\0\0ðPÍîÍà\9e\9a]0Åì<Àý5»l\ 2\0\0\0x\90fwep¯Q8q\9fÍ-\9f\0\0\0\0\1e\9cÙ\9d\18<\f\14NÜOSJ&\0\0\0\80\ajv\ f\ 6\ f %\13÷ÓÛ,\99\0\0\0\0\1e¨Ù\1d\17<H\14NÜCo§X\ 2\0\0\0x¸f÷Zð\80Q8q\ f½éb \0\0\0àá\9aÝ_Ác@áĽò\86
-$\0\0\0\80\amvO\ 5\8f\r\85\13÷Ç\1d\96Fàár\0\0\0xCÞPC\v0\94LLw\87\15&ðb³\vû4³3\1e\0\0à¥Ìn4\ 1ÀÛ0»®Å#1» ?\1e³Ï$\0\08E³[@\0ðVÍ®tñ\90Ì.8\98]\16Þ6r\ 6x@Þ\ÕÇ\95>\vgç±zCW(\0Üs³k_ÜS³\v&Þ\bÊÏ\8dÞZ¶\0\8fÃìKöëÍΡ\87\84Ótj&\9eq\0¸Wf×Ç\98ov\19\ 4î¯ÙW'0Çì+ïîÍÎÑ\99fçý«\99\9d[\8fÍìó \0÷Ôìê\19\13Ì.tÀ\837û"\ 6îÆì+i²ÙÙ\7f÷fçè\e1;S\1f\92Ùç
-\0\1e\8cÙ\156Þ\86Ù¥\f8!³/wàªÙ×Ä\ 33ût½¬Ùù4Ó켿Gf\9f
-\0xÀfWáx#f\17+\07\98]1àñ\98]\96OÈìS-fçÁý5û̼m³ó\e\0\1e\8fÙ5:îÌì¢\ 4àtÍ®ÿniv¶á¡¢LÞOoî¼Ì2;G\ 1àÑ\9a]ÁãuÍ.A\0p{T\83\0Þ\84;©[¦\98\9ds\0p*f×÷xe³\8b\f\0\0À\831»áö"³ó\ 6\0NÔìê\1f/kvI\ 1\0\0xØf·æhÎ\ 1À½0ûn\80¯1»\80\0\0\0<N4ä\0àd½\85[\0^ÕìB\ 1\0\0prh¿\ 1À\89¸\93n;îÊìâ\0\0\0\0\0Àc6»ß\ f1»\14\0\0\0\0\0p*fÇ\0NÚì\93\ f\0\0\0\0Ài\99\1d 8E³Ï9\0\0\0\0\0'jvHà´Ì>Û\0\0\0\0\0\9c´Ù\81\81S1û<\ 3\0\0\0\0\01;BðÈÍ>½\0\0\0\0\0à`v\9càÑ\9a}b\ 1\0\0\0\0ÀU³£\ 5\8fÐìS
-\0\0\0\0\0n6;fð¨Ì>\99\0\0\0\0\0àkÌ\ e\1e<\12³O#\0\0\0\0\0øz³ã\a\ fÞì\13\b\0\0\0\0\0^Öì(Â\ 36ûÔ\ 1\0\0\0\0\80W3;\96ðPÍ>o\0\0\0\0\0à6fG\14\1e\98Ù§\v\0\0\0\0\0ÜÞì¸ÂC2û\\ 1\0\0\0\0\80×2;´ð0Ì>K\0\0\0\0\0à\ eÌ\ e0<\0³O\11\0\0\0\0\0¸\e³c\f÷Úì\93\ 3\0\0\0\0\0îÒìHÃý5ûÌ\0\0\0\0\0\80»7;ÞpïÌ>!\0\0\0\0\0àM\99\1du¸_f\9f\r\0\0\0\0\0ð\ 6Í\ e<Ü#³O\ 5\0\0\0\0\0x³fÇ\1eî\85Ù'\ 1\0\0\0\0\0¼\r³#\10óÍ>\ 3\0\0\0\0\0à-\99\1d\84\98lvö\ 3\0\0\0\0\80·jv(b\9aÙ\19\ f\0\0\0\0\0Þ¶ÙÑ\889fç:\0\0\0\0\0\98`v@âm\9b\9dß\0\0\0\0\0`\9aÙa\89·jvf\ 3\0\0\0\0\80\99fG&Þ\9eÙ9\r\0\0\0\0\0&\9b\1d\9cxKfg3\0\0\0\0\0\98ov|âm\98\9dÇ\0\0\0\0\0à^\98\1d¢xãfg0\0\0\0\0\0¸Gf\a*Þ ÙY\v\0\0\0\0\0î\97Ù±\8a7hvÖ\ 2\0\0\0\0\80ûev¬âM\99\9d¯\0\0\0\0\0àÞ\99\1d®x#fg*\0\0\0\0\0¸\8ffG,îÞì\1c\ 5\0\0\0\0\0÷Ôì Å\1d\9b\9d\9d\0\0\0\0\0àþ\9a\1d·¸c³³\13\0\0\0\0\0Ü_³ã\16wiv^\ 2\0\0\0\0\80{mvèâÎÌÎH\0\0\0\0\0pßÍ\8e^Ü\8dÙ¹\b\0\0\0\0\0\1e\80Ù\ 1\8c»1;\17\ 1\0\0\0\0ÀÃ0;\86ñºfç\1f\0\0\0\0\0x0f\871^ËìÌ\ 3\0\0\0\0\0\ fÉìHÆíÍÎ9\0\0\0\0\0ðÀÌ\ efÜÞì\9c\ 3\0\0\0\0\0\ fÌì`Æ-ÍÎ6\0\0\0\0\0ððÌ\8egÜÆì<\ 3\0\0\0\0\0\ fÒì\90ÆmÌÎ3\0\0\0\0\0ð Í\ ei¼²Ù\19\ 6\0\0\0\0\0\1eªÙQ\8dW3;·\0\0\0\0\0À\ 36;°ñjfç\16\0\0\0\0\0xÀf\a6^Áì¬\ 2\0\0\0\0\0\ fÛìØÆ+\98\9dU\0\0\0\0\0àa\9b\1dÛxY³ó \0\0\0\0\0<x³Ã\e/ev&\ 1\0\0\0\0\80Ç`v\84ã¥ÌÎ$\0\0\0\0\0ð\18Ì\8ep|½Ù9\ 4\0\0\0\0\0\1e\8fÙq\8e¯1;{\0\0\0\0\0Àã1;Îñ"³ó\ 6\0\0\0\0\0<*³C\1d/2;o\0\0\0\0\0À£2;Ôñ\³3\ 6\0\0\0\0\0<6³£\1dÏ5;c\0\0\0\0\0Àc3;Úq³Ù¹\ 2\0\0\0\0\0\1e¡Ù\ 1\8f\9bÍÎ\15\0\0\0\0\0ð\bÍ\ exÜ`v\96\0\0\0\0\0\80ÇivÌã\ 6³³\ 4\0\0\0\0\0<N³c\1eWÍÎ\ f\0\0\0\0\0ðhÍ\ e{\5;?\0\0\0\0\0À£5;ìqÕìü\0\0\0\0\0\0\8fÖì°Ç%³3\ 3\0\0\0\0\0<f³#\1f\97ÌÎ\f\0\0\0\0\0ð\98Í\8e|\1cÌÎ \0\0\0\0\0ðÈÍ\ e~\1cÌÎ \0\0\0\0\0ðÈÍ\ e~\1cÌÎ \0\0\0\0\0ðÈÍ\ e~¸ÙÙ\0\0\0\0\0\0\1e¿Ùñ\ f7;\e\0\0\0\0\0Àã7;þáfg\ 3\0\0\0\0\0xüfÇ?Äì<\0\0\0\0\0\0'av\bDÌÎ\ 3\0\0\0\0\0p\12f\87@Äì<\0\0\0\0\0\0'av\b\84\18\b\0\0\0\0\0xKfGA\b\83\0\0\0\0\0\80·dv\14\840\b\0\0\0\0\0xK\88\81\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\b \0\0\0\0\0àD\10\ 3\ 1\0\0\0\0\0'\820\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 41\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\bb \0\0\0\0\0àD\10\ 6\ 1\0\0\0\0\0'\820\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 41\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\b \0\0\0\0\0àD\10\ 6\ 1\0\0\0\0\0'\82\18\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 4a\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\f\ 4\0\0\0\0\0\9c\b \0\0\0\0\0àD\10\ 6\ 1\0\0\0\0\0'\820\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 4a\10\0\0\0\0\0p"\88\81\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\b \0\0\0\0\0àD\10\ 6\ 1\0\0\0\0\0'\820\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 4a\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\f\ 4\0\0\0\0\0\9c\b \0\0\0\0\0àD\10\ 6\ 1\0\0\0\0\0'\820\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 4a\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\b \0\0\0\0\0àD\10\ 6\ 1\0\0\0\0\0'\82\18\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 4a\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\b \0\0\0\0\0àD\10\ 6\ 1\0\0\0\0\0'\820\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 4a\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\bb \0\0\0\0\0àD\10\ 6\ 1\0\0\0\0\0'\820\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 4a\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\b \0\0\0\0\0àD\10\ 6\ 1\0\0\0\0\0'\820\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 4a\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\b \0\0\0\0\0àD\10\ 3\ 1\0\0\0\0\0'\820\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 4a\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\b \0\0\0\0\0àD\10\ 6\ 1\0\0\0\0\0'\820\b\0\0\0\0\08\11\84A\0\0\0\0\0À\89 \f\ 2\0\0\0\0\0N\ 4a\10\0\0\0\0\0p"\b\83\0\0\0\0\0\80\13A\18\ 4\0\0\0\0\0\9c\bb \0þ\7föÞüÁ\96£ºóìÆ\ 6\ 4\12B\ 2- ]\ 2IHBB»Ð\82$´<í\eZ\ 1 #±¯Æ\18\ 6¼t{ܦÇÛ\8c\9b\99±Ý=cÏÌ¿:\95\99±\9csâDdæ{+nÕý|~\82§z¯rýäÉo\9c\88\ 4\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\ 4b\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à\10Ø]\ 6B\f\ 2\0\0\0\0\0\0\0{\ 51\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 2\19\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À!°»\f\84\18\ 4\0\0\0\0\0\0\0ö
-b\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\ 4b\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\f\ 4\0\0\0\0\0\0\0\ e\ 4b\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à\10Ø]\ 6B\f\ 2\0\0\0\0\0\0\0{\ 51\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À!°Ó\f\84\18\ 4\0\0\0\0\0\0\0ö\ab\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\ 4b\10\0\0\0\0\0\0\08\ 4v\9d\81\10\83\0\0\0\0\0\0\0À\9e@\f\ 2\0\0\0\0\0\0\0\a\ 2\19\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\87À®3\10b\10\0\0\0\0\0\0\0Ø\13\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\81\13È@\88A\0\0\0\0\0\0\0`\1f \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\ 4b\10\0\0\0\0\0\0\08\ 4N&\ 3!\ 6\ 1\0\0\0\0\0\0\80î\10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\ 2'\96\81\10\83\0\0\0\0\0\0\0@_\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80Cà$3\10b\10\0\0\0\0\0\0\0è\b1\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p\b\9cp\ 6B\f\ 2\0\0\0\0\0\0\0½ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\81\93Ï@\88A\0\0\0\0\0\0\0 \vÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À!Ð%\ 3!\ 6\ 1\0\0\0\0\0\0\80\93\87\18\ 4\0\0\0\0\0\0\0\ e\81^\19\b1\b\0\0\0\0\0\0\0\9c0\1dc\10\92\10\0\0\0\0\0\0\08I\88A\0\0\0\0\0\0\0à\10è\9b\81\10\83\0\0\0\0\0\0\0À\89Ñ;\ 5!\ 6\ 1\0\0\0\0\0\0\80\93 w\ 42Ðû\18\0\0\0\0\0\0\0ÀAÐ;\ 2\19è}\f\0\0\0\0\0\0\0àìÓ;ÿ\bô>\f\0\0\0\0\0\0\0pöé\9d\7f\ 4z\1f\ 6\0\0\0\0\0\0\08ãô\ e?2½\8f\ 4\0\0\0\0\0\0\0\9cqz\87\1f\99ÞG\ 2\0\0\0\0\0\0\0Î2½\93\ fEï\83\ 1\0\0\0\0\0\0\0g\99ÞÉ\87¢÷Á\0\0\0\0\0\0\0\803KïØá÷!\ 1\0\0\0\0\0\0\803HïÀç÷Q\ 1\0\0\0\0\0\0\803HïÀç÷Q\ 1\0\0\0\0\0\0\80³Fï´£Jï\ 3\ 3\0\0\0\0\0\0\0g\8aÞQG\8bÞÇ\ 6\0\0\0\0\0\0\0Î\14½£\8e\16½\8f\r\0\0\0\0\0\0\0\9c\1dzç\1c3ô><\0\0\0\0\0\0\0pFè\1drÌÓû\b\ 1\0\0\0\0\0\0À\19¡wȱ\88Þ\a \0\0\0\0\0\0\0N=½ã\8d¥ô>N\0\0\0\0\0\0\0pºé\9dm¬ ÷¡\ 2\0\0\0\0\0\0\80ÓMïlc\ 5½\ f\15\0\0\0\0\0\0\0\9cbz\a\eëè}´\0\0\0\0\0\0\0à´Ò;ÕXMï\ 3\ 6\0\0\0\0\0\0\0§\92Þ\91Æ\86ô>l\0\0\0\0\0\0\0pÊè\1dflNï#\a\0\0\0\0\0\0\0§\8cÞaÆæô>r\0\0\0\0\0\0\0p\9aè\9dd\1c\8bÞ\a\ f\0\0\0\0\0\0\0N\r½c\8cãÒûø\ 1\0\0\0\0\0\0Àé w\86±\1dz\1fE\0\0\0\0\0\0\0Øwz§\17[£÷\81\ 4\0\0\0\0\0\0\80ý¥wn±ez\1fN\0\0\0\0\0\0\0ØSz\87\16Û§÷\11\ 5\0\0\0\0\0\0\80}¤wb±+z\1fW\0\0\0\0\0\0\0Ø/zg\15;¤÷¡\ 5\0\0\0\0\0\0\80}¡wJ±sz\1f`\0\0\0\0\0\0\0Ø\vzG\14'Aïc\f\0\0\0\0\0\0\0\9dé\1dN\9c(½\ f6\0\0\0\0\0\0\0t£w,qÒô>Þ\0\0\0\0\0\0\0Ð\81Þ\81D\1fz\1fu\0\0\0\0\0\0\08iz§\11Ýè}à\ 1\0\0\0\0\0\0àäè\9dCô§÷\19\0\0\0\0\0\0\0\80\93 w\ 2±\17ô> \0\0\0\0\0\0\0°[zg\ f{DïS\ 1\0\0\0\0\0\0\0»¢wê°\8fô>'\0\0\0\0\0\0\0°ez\87\rûKï3\ 3\0\0\0\0\0\0\0[£wÌ°ïô>?\0\0\0\0\0\0\0p\z§\v§\89Þç
-\0\0\0\0\0\0\06¤w¨púè}Æ\0\0\0\0\0\0\0`\1d½³\84SLïS\a\0\0\0\0\0\0\0\8bè\1d!\9c\11z\9fF\0\0\0\0\0\0\0¨Ò;68kô>\9f\0\0\0\0\0\0\0`é\9d\16\9cez\9f[\0\0\0\0\0\0\0 ú8!z\9fg\0\0\0\08D(b\ 1\0þ\ 3ÑG\ fz\9fs\0\0\0\08ûPÖ\ 2\0L\9c\80\ fa\96ÞW\ 1\0\0\0\0\9c5zW¸\94¸\0°\17ôv!øô¾.\0\0\0\02\149§\94-\9e¸ÓûØ\0ÀÙ§·ç`5½/\19\089ð\ 6\0ì\15Û\92\12îê \9f¾mÑû°\ 1À飷·`ûô¾¦\0`\87ô\16L ÷a\0\80½ ·\8a\1cz\1f\92ÓGï3¶ez\1fNØ\ 4N:\1c\9f\b\ 4N;½/C\0Ø&½\8dr\96é}n\ 1N\19½oÙÕô>`ûHïsr¢ô>Ø\aAï\93¼ ½\8f\19Xz_\11pFè}!\ 3Àvèí\92C§÷ù\aèLï[p'ô>¨}è}Ô÷\85Þçá\94Ñûtu£÷\81?\vô>\87p ô¾ð\ 1à¸ô¶\b´è}u\0ì\8aÞ÷V\az\1fò\9dÐû \9e\1az\9f¨Îô>ü§\92Þ'?½Ï\0À\f½o\11\0Ø\9cÞþ\80\ré}áô¡÷Q_G_ô>\eûKï3³\8eÞGë¬Ñû|n\93ÞÇò°è}¶\8fKïã\a°\1dzßI\0° ½Í\ 1;¤÷Å5Oï#´_ô>\e[¦÷á<#p\12\ f\99¾gߥ÷!\81Õp\91\0\9c\0'\7f£\ 1Àqèí\fØ;¸xö\9fÝ a\ 3z\1f\f\bpî\ e\19na\0\80î\1cGÅ\0pbôV\ 5\0\9c(È\ 1\0\0\0`Gìî\r\0¶EoO\0\0\0\0\0\0\9c\1dz¿á\ 1@\8bÞ\86\0\0\0\0\0\08Sô~É\ 3\80*½õ\0\0\0\0\0\0p\ 6éýª\a\0\ e½Å\0\0\0\0\0\0pféýÂ\a\0\8aÞJ\0\0\0\0\0\08Ëô~ç\ 3\80Lo\1f\0\0\0\0\0\0\9c}z¿ù\ 1À@o\13\0\0\0\0\0\0\1c
-½ßÿ\0\ e\9dÞ\ e\0\0\0\0\0\08 z¿\ 2\ 2\1c4½\ 5\0\0\0\0\0\0ppô~\11\ 48Pzßú\0\0\0\0\0\0\aJï×A\80\83£÷M\ f\0\0\0\0\0p¸ô~#\ 48,zßñ\0\0\0\0\0\0\87Nï÷B\80C¡÷½\ e\0\0\0\0\0\0\ 3½ß\ e\ 1Î>½ïr\0\0\0\0\0\0\bô~A\ 48ãô¾Å\ 1\0\0\0\0\0@Ñû5\11à,Óûþ\ 6\0\0\0\0\0\0Kï7E\80³Iï;\e\0\0\0\0\0\0|z¿/\ 2\9c5zßÓ\0\0\0\0\0\0Т÷[#ÀÙ¡÷Ý\f\0\0\0\0\0\03ô~q\ 48#ô¾\95\ 1\0\0\0\0\0`\11½_\1f\ 1N=½ob\0\0\0\0\0\0XAï\97H\80SLïÛ\17\0\0\0\0\0\0VÓûU\12àTÒûÆ\ 5\0\0\0\0\0\80\réýB pÊè}Ë\ 2\0\0\0\0\0À±èýZ pjè}³\ 2\0\0\0\0\0À\16èýr p
-è}\9b\ 2\0\0\0\0\0ÀÖèý\8a °×ô¾A\ 1\0\0\0\0\0`Ëô~Ñ\ 4ØGzß\97\0\0\0\0\0\0°+z¿q\ 2ì\17½ïH\0\0\0\0\0\0Ø9½_=\ 1ö\82Þ7"\0\0\0\0\0\0\9c\10½_@\ 1:Óû\16\ 4\0\0\0\0\0\80\13¥÷k(@\1fzßy\0\0\0\0\0\0Ð\87Þï£\0'Mï{\ e\0\0\0\0\0\0:ÓûÅ\14à\84è}«\ 1\0\0\0\0\0À^Ðûõ\14`·ô¾Ã\0\0\0\0\0\0`¿èý\9e
-°+zß[\0\0\0\0\0\0°§ô~a\ 5Ø&½ï'\0\0\0\0\0\0Øwz¿¹\ 2l\87Þw\12\0\0\0\0\0\0\9c\1az¿Â\ 2lNï»\a\0\0\0\0\0\0N\1f½ße\ 16¡÷}\ 3\0\0\0\0\0\0§\98Þ/µ\0Ké}¯\0\0\0\0\0\0À\19¡÷\v.@\8bÞ÷\a\0\0\0\0\0\0\9c5z¿é\ 2øô¾3\0\0\0\0\0\0àÌÒû\95\17 Óûn\0\0\0\0\0\0\80\83 ÷ë/\1c:½ï\0\0\0\0\0\0\08,z¿\aÃ\81ÒûÂ\a\0\0\0\0\0\80Ã¥÷;1\1c\10½/v\0\0\0\0\0\0\80\81ÞïÇpÆé}\81\ 3\0\0\0\0\0\0Xz¿+Ã\19¤÷E\r\0\0\0\0\0\00CïWg8\vô¾\8a\ 1\0\0\0\0\0\0VÐû5\1aN%½/[\0\0\0\0\0\0\80ÍéýV\r§\86Þ\97*\0\0\0\0\0\0ÀÖèý\92\r{Jï\v\13\0\0\0\0\0\0`\87ô~í\86}¡÷\95\b\0\0\0\0\0\0pBô~\ 5\87nô¾ô\0\0\0\0\0\0\0ºÑû¥\1cN\88Þ\17\1a\0\0\0\0\0\0À\1eÑû5\1dvBïË
-\0\0\0\0\0\0`ßéýî\ eÇ¥÷\15\ 4\0\0\0\0\0\0púèý6\ f+è}±\0\0\0\0\0\0\0\9c\1dz¿å\83Oïë\ 2\0\0\0\0\0\0à,Óû½\1f\88>\0\0\0\0\0\0\0úÐ;\128\bz\9fd\0\0\0\0\0\0\0°ôN\vÎ\14½O&\0\0\0\0\0\0\0¬£w\96p\9aè}®\0\0\0\0\0\0\0`Ëô\ e\eö\85Þç\ 1\0\0\0\0\0\0\0úÐ;\93Ø-½\8f.\0\0\0\0\0\0\0\9c\ 2z\a\18+è}¨\0\0\0\0\0\0\0àìCÄ\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ûÆ\7f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\80³Á\7fôè½Q\0\0\10p-\8d³\ 1àTs¦ìµ@Ó(\e\0N\ fgPa+=}Úw\17\0Î8gÓa\e\9bú\14î+\0\9cuΨÅ\8e)êÓ´«\0pÖ9³\1aÛ\92©÷\7fG\ 1àìsf5¶\85\1d;\1d;
-\0g\9f³«±íÙ\9eï'\0\9c}ήǶ¼g{»\9f\0pö9Ã\1eÛÉ®íßn\ 2À\ 1p\86=¶xS?Tr\8av\13\0Î>\9bHx\ 5{¿o\8e¥×;»ë^\ 2À\ 1p<\13/bo÷mVÓk\94Ým/\ 1à\0X¨Ûc\15\9dÝD¶Ù.m,ì>; \0\aÀq4½RÙûµs\e\99z~_O~'\ 1à\10Ø\86§\17\e{\7fvî\18¦\9eÛÓ\93ÞI\08\0¶jê%¾Þ\8b\9d«nû\1fx¬ßÓ\93ÜI\08\0¶.ê%Âî½w+4=¯ìÞû\b\0\87À\8eL=çë®;·\89§\9bÆF×\0°[V\9bzeÑÙ7&Xºk+L]ÛYl\r\0;d\95ª7+:ëºî²s«öê\ fWí+º\ 6\80Ý°ÂÔǪ:ûÄ\ 4KvÍ5´Ï\92]ÅÖ\0°\ 3\96ªz\85¨ëÂ>q[/Ø·\85\9an)\e[\ 3À®Y¦ê\rL]ñõÉÚzvßÖ\8bº"ìÙ½ÜÙ>\ 2À!°DÕ\9e\84OEJ0»ssûôaÉÜÞR\\ 3À®pËÜ\19So\90\12Ì\97\9d;1Ù*U7,ýá\86³Wéz\aû\b\0\87ÀjU/\10uEØ\1d\8aë\99\9d«íWÃÓ¾±k»\89\ 1`;̺zcS{¾>i[/VuKÔ\1fÉ´\84½X×[ÞG\08\ 4V©ÚxxaHÐ1%hîܬ©?RgÖ×Ø\1a\0¶É\8c««¦^\19\12tJ Öªz\99¨\1da¯Ôõ\16w\11\0\ e\82Ū^)jOØ\1dR\82%®vvK;ù£\9a\9a°ËýÄÖ\0°%\96ººjêÙ\88`>$Ø¡ë;×PuÕÒ5g/Ò5¶\ 6\80c°VÕ³\9e\9e\vu\97ézç{Wì\9aÝ©RÎç\9dw^ÝØvG±5\0l\93E®öT=#êFFà\86\ 4»1Y}ç*ª.M}^\8dª¯ínbk\086\rW/Mtg\12\82\9e\99îâ²ZïÖ¬§Kc»º.÷\12Y\ 3ÀF¬qõÚD·\99é\9e\8cç\í©º4õÇ<j¾öu\8d\ 1à8Ô]=\9bèZQ;é\80\16v\87Lw\99«=U7=]\1a»®kl\r\0Çg¹«ë\83oë#ÝzH°e[WvÎÝ5¹[VÔ\1f÷°Â.uw³²\8fÛ9\91\0p¶\99uu{ðm}¤;\17\12lµî¬ì\9dWV\97ªnyº0v[×Ø\1a\0\8eGÍÕ~Y]5õªH×:w\93\12,vµØ1×Ôç{Ô}-öÓ\7f&ak\0XÃ\9c«\e£o[\8btw\98é6]ý\87ÖÕ\85ª=O_pÁ\ 5\9e±}]7¢\10d\r\0ËYåj'Ò\15¦®\aºÆ×\8dâzÛ¶^àjOÕ\8e©/ð©ùÚÕuk\1f·yR\ 1à̱ÌÕ²¬vGßæ\ 3]g\ 4î\ 4ú%6sµØ'+êOd¬°\8d®\17Øz[o\ f\0pöi»º,«\9b£o\95<·>\ 2·k[Ï»º¦êÂÔ\9f¨áûZéz\99·}j\ 1à\f±\91«ËL·2úV\8eÀ¹\89î\92Hw#\975÷ÎquÚ¯¼KJÔ\17Z\94°µ®Ó\8e\9aâ\1a[\ 3Àzþ£¯3'\ 2qU]\88ÚKs³°gu½m[·öN»Z\95Õi§\84©³ ?9a\8d\9dvYé\1a[\ 3À\16ØØÕ\8b\87ß¼\ 1¸Y[o+\bYçjµ_q\97\84¨?é#\84-uý1«ë\8a\915\0ÌRqõ\87
-WWUÝ\18~\13\ 3pÒ×Çh\97X+³Í\mU-E}\91A ÛÓµkkJk\0XÅ\86®ÞþøÛnl½ÈÕ2®6ªÖ¦N\82¾8¢\95-}mt½ÂÖ»:Õ\0p\8aYåj]VWÆßì\0\9cãë\85ão[°õ*W\8b\1d3ªÎ¢¾Ø'\v»Ôµx,Ž$\b\ 1\80ulæꪪ\8bF\89Êð[9þæ&ºU[/ÕYe÷JW\8b=\vû\95U\9dL=yùS%BØÁ×Y×aG«¶¦´\ 6\80yÚ®®dº*)°\ 3pÎ\10\áëóMB°ÀÖVÖ\8b|fÿNù$\8aû¦#\90¼WÓî$Q\a7\7fZ#\8d\1d|=íî\ 5I×9
-ÁÖ\0°\9a\9aÌÚ®n©Z(Z\8c¼ùÝ\12²æ¬vK\1cÇÖó®þÃÂÕª¬NªN¢\8e~¾$£\94\1d|-uݲu5\bÙý¹\a\80ÓÃñ]½¤W"I;ûzQ·ÄÌ ã¼Ð6tµ«ê$ê,éK\a\8c³\83¯µ®Õc)ï%¥5\0,ccW×U½¦YÂ\19~[ië¶Ñ\96»ú#\9e«\8dª\93¨/õIÂÖº6ÅuÛÖÈ\1a\0J
-ó}èC\15\9dÕ\aàT³D«[Âøú\13*Ïý¸cë%\r|M§Uwo\89«cY-U\9dD}\99G\12¶Öõ¸¯® B\ 2ÎI=¼\83\0P§¼/\16¹z¦¯íb¯]BúÚêzÆÖs-!µ\eÚù)gïÚ®\1e÷Iª:\89úò\92$lë\\ÏØúì˺éäÍè½K\0'@KfË\\9d\9b%\92ª¨s\9b\84ì\94\90È*
-ÙÜÖKXìê\1c\81\8c»$U\9dDý\19K\12¶Öu(®\97\ 5!½¯\91-°ñÙÚ\88Þ{\v°}¼+ÝuµmBnõ \vS\7fÚRv¶5ZÛ>êÄÖǶuåId\\9dãê\VKU'Q\7fV\93\84u\1d\8aë\1c\85\8cûYÄÖg¯´Þð$m\95ÝîÓ¶ÿõ3Í\89\9f«Í·ã\96xø\87k#W_¨\9b\90ýÖ6¯±-·JØ<wÞÖ\eéºöÖPwu.«¥ª\93¨¯\90$ak]\87â:D!\8eg\82\90ÞWÊ\ 6lrnN\8c\9dnÿÎ\ fíic\7f\ fã^mÌ\ 6[¹ÂÕç\97\9dm\17)S_â\90}íÍ\e±¶nOeÜÀÖË\ýq\11W˲zTõdêìé+3JØ£¯G]\87â:E!a?MlmÇ\18÷æbYÉú\93rVé}&ú²¿Çp¿¶fó-]çj;·¯ìBöºÚ\1a}È»¶uÃÕ\93¬]W\87²Z«:{úªH6¶Òu(®S\14¢m}\96J뵧ã@è}ZN\96=>\84{µ1ÇÝÔ\ fvuEÕJÔ²¥lC\16\8dmNg\9bÛÀ'l½J×îÞÙÁEÏÕ¡¬\ eª\9eL\9d5}u$\e;ú:\84!*
-\89¶.\82\90Fi}\12\97ÇñXy½\1f&½OÒ.Ùë\ 3¸OÛ²\9d\8d-Tm\16oZäê¨êJ\1fröu9kÄíC\9eµõr]\1fÃÕ\93ª/SªN\9e¾&\90\8dmt-\8akßÖóc\8c;»2¶ÁÊ«\1cöü|.äT\1c¼ýÙ\92mnôßZW{3F\82\9dË\1eä4kDêº\98\92½ÂÖËtí¿58M{UW'UO¦N\9e¾6\90\95\1d}\1dÂ\90\\[[·\83\90\1d^\15[cíå]»äÖp\9cßyÖèvòú³/ûv¬S°Éöª\9bÁuµ;\11û\13EY-T\9d\1c\9d\e\90g&\8dljëÙÛ×Ù=\95ð\18W_ \\9dUý\99IÕ\93©\93§¯\vde\8f¾NºnÛÚ\rBN\89¬×_Ø\e\v\1a{/f{'\v\96r\82÷\91¾ô[®>ÏuõÅ\95)#í9#Τ\91\15¶þ\83¥÷ì\87föÎiÚK®¶euRu\10õ(éë\ 3IÙ\9e®\v[\17A\88,Ë\1d:ÞÕ°\ 3\8eq\81í\96U\e\ 6°5v~\eÕdVuõÇÊ\ 5\8e\8a)#\97 QÛ\19#Þ\9c\91mÙz\ 1\9e«E#HÃÕJÕAÔ£¤o\b$eG_\ fºVŵ°µ\1f\84\9c\96ÒzÓ\8bëÄYy/l¶/Ûü%g\9d\13:WÇܸÍÿ\89]ÜDvë"\7f°ÖÕj&vVµötì>\16SF\8a)~\17éI#©ê\8c\r|\8e×ëºÜ;wpѺZ\96Õ\93ª\83¨GI\7f.\90\94\1d}-tmm]\ 4!y\aý!Æ]iw\ 36¼´ö\84\1doùÚ;ð0Øß\83¸\93ÙÒ-ÔÞÊ?Xâêʪ\19óÓû\92²\8d®ý ÙçÛvkÏÖëtíìÝ\ 2W\87\b¤Puòôç\ 3IÙ£¯£®Sq-mmcëÓSZoxe?IÇûWö\80µ7ä\19d\7f\8fàIlΦ÷Ï¢\rµª^îjQVçù}Å\ 4?!ì4#ûÒrÎÈ\12[\v]/¾½'\91Û\b\92Æ\16³«CY\1dU=ÖÔÉÓ7\ 6\92²G_\ fºNŵ±µ\8a[¥õÜ©?i6½´jgâx,<ñ}Y{w\9e öø\0îÙæl¶¥â&0ª^áj3\15;j:Nî\133²Åú\195[\17S\19Å\FëÙûVýlµÉ¥âê\10\81\8ceõ¤ê±¦N\9e¾)\12\95=úúú¬ë±¸\9el=îj\11[;¥uqiôöô¬©×\9c\82Ý°ø\86ëÀ.ïêýa¯\8fß~mÍÆ\9bZºlÎÕ\9fP®¾DL\1a\89ª6S±¯RÓûô|ìK\8bùØKlý\87\vnXç\aê\r\89Óà¢ïê1\ 2 euPuòôÍ\91hìÑ×I×cq-m-ck1Ƹç9Ȧ\17×\96\85¼\98ãÝ\8d;c§÷x/6:\12\9b\9c¨\93ܾ]mÌq¶Õ\ã\7fh]ýÑÅ®\96Ëf\bQëÙØW)]·lí-\13¢míëº\89\1fðÈ\15AT\7fõäê\1c\81\wÝ\14\80\fªN\9eþB$\1a{ôõç&]\8fŵgk\13\84ÈÒZ\Ãâ,\9e:S¯9!KX\7f¶3Ǹ'wôKvs«o\85\ 5[¹»ã¸Ý#wÌMÛê¶\1cok\8bmK÷Å\87×¹úR1kDLÆÎ\9e¾¦X>ã
-1¿O5!/±õ\877¼\83½'\91uõ\85\9e«c\ 4"U\9d<}K$\1a{ôõ¨ëë\87âÚÚ:ÇÖ«JëýTõÊ«\7f\95\9dwëï]²Ì\11[`\87vØ\12»;\82ÇݳmmÎ1ÏÁì\ 6{Û\93o\81¬ê¥®\9e]7C¬\9eQ,\9eQLð«Ù:¯Á'u½ð\96õvÏuõ']WDz:«:júÖD4öèëQ×GÅõdë«\93§AÆ\18\84¬(÷PÕ+n\81:úÔ¨{\812¶È1¥°eNî\0®Ý»\1dlÎ&z^°ÑþV\88KþÃ\9b¸úrgá\8c`j½t\86Z;ã\8a\96+\1f#puݺYÍ\ fé½ó\\1d\9aö\1cWßp\83Puôôm\99`ìÑ×Gº\8eÅõ\14\\8f¶\1eæ2\8a d|$\99\86\90¸'ÅU°gª^xm5õúáUì\8f¹×ýû\8b\frfØÁáÞ¯m«ýãÛ\15µÿ»Ý»'©Z}o±áê°pÆ\15þ\1aG×Jc/Zêh\81WÞ½rÿ\96¸úRéê)\ 2\19Ëê¨êàé/
-\82°G_\1féúÆ\e\85C\12\92ck·´Þ³\1cdÅ56samèç-ù{ÃÛråŵé]~6ØÊÑÜÙÑÛdÛ68\97[\11õ²MTª^éj]V'Q_'ðW:ª,uÔ²õG6¸_íî}´êê\8b£«/\9f\}µpõQY\1dU\1dD}» \b{ôu*®C\142Úz\98Ë\98\83\90zi-®\87\8e²ÞÜÔõc¿\0s~·nî\13 )\86ãYg¿\98q`Õ\83\9b\1eÀnãq7§òû¶/êb{ä½"U\9d¿·8ãê+Ô\82tBÔr\99£ë®\15\v\1d]%¢\90Ŷ\ eºvîçê¡.\à¹Z4\82¸®¾á\86PVGU\aQß!\99\8c=úz(®³cm=ÅÖ²´þDµ´¶§~?T=wyµ\ f¾½Ê6¢¿¹\17þûm\8b\1d\8bM¬Ue7\9bxüÃ|Ü\9dßö\96Ø\94\r<]o4\9687QRµ·&jÅÕWN󱥪¯7X]7\97\11Ùú£«nZW\12\1fu]\1aA¦y\8bS\ 6r]rõQY\1dU=\89úK\8aIØC}\1d\8bë\e§(d²õ0\971\ 5!¢}O\97Öñ²(Îú\1e¸º}}Õ/«c\vúxêÞèÖ\\7fq-¿Ç·ÊRw-\12Ù\16Øü\80®;|\eìܪM[z6[\87y\91¥Ý-\9eÙÈxùOJ\8ceõrW\8bÅC³©oH(_§eé¼ué|[;º^§lµ\7fÎ\9cLÓ\bb]}ctõ¤êÉÔw*&a\ fåu*®o¼1ÔÖC\a_\88C\10¢Û÷ö*\aY¤êúÅå\1fwÅG7äøæ>\ 1ÖIgë\9c¬\9b\13kD¸öøídë6ß\9eâ_o\89x\8eùM5\9bcï¢XU¯ru,«£ª£¦?÷9)lek½\8a¨i·öl}^ë®u\8f´k ßÕ¦\11$\8d-\8eqõ\14\81\1c\95Õ\93ª'Sߥ\19\85=\94×C\18\92¢\90`ë±%Ä\ 6!"µÞ\9b\1cdµ©k\17Ö\96\ 4½\99¼×\1a¢Í&O\88ÎÎ>!*\8en¹pÃ÷µ-Üì\12Ø\85°ç¶µqäâ\1dpÞy¢¬^áêTVÛåCó"¢R×W\9b5\9f\8bÉ1ÒÖ¥®çʬ\12¹\7f\1f«»:4\82\fó\16µ«§²zRõ$ê»\aî9bü\1fw'_OÅõ\10\85L¶¾þú4È\98¦Æ\fA\88i\bùH+\aééêe¦®Ü\8e\9edÏÛ\90\rÍ='\86Ê\96¯f\89söÜÚ³\eYµsS\85\e\1e¾ã\1d¶eÛ¶ùÙ,~á\16EÝÚHs\e}L¨Ú[»ÉwµRõçü\15DÓ\92Ïv\85~g*caë\8f¹÷ì\82ËÀjÂuu1¸(\=D SY\1dU\1d4}Ͻ#÷\ 4e\ fº\1eÃ\90!¹\16¶\9eZBb\10\12Jë\ 59ÈI\87ÖëT=#êå\82þXÉñä½H\ e+Yñ[\16;ûX¬2×¼Ê\8eÉÆ\8e\9e;z\eìøüÖmk{\8a_½\89§[¢Ö\9bRÞNIÕÞ§qg\-Týy\83\ð¹°µ\1ddÔ¶.t=SdU\10û÷qßÕ\97HW_\13ú@²«\8fÊê¨êèéûF¢±\93®\87âz\b®Cn\1d\a\19ãÔ\98\90ZË!Æ\8fæ\1cD\9cõ\93\95õ\1aU;×\96wQ9\92vÔ¼\98\rĽÖÜ\9b\Yîï)åu|%Öèdèå\95ô1\8fÞ¢Ý^²\85\vϸóSµÍñ\8eórOûS]Z\9a\16·ÔÇ\94ªW¹:.Ë\9fM}c¢Ðµþ\9cJÙ\12"l\1d\8bë\8f{÷ë²ûÈ\9aB<\88.,Vo\1a\a\17\87¦=åê!\ 29*«£ª\83§ï\ f\ 4c']K[\7f~²u\ eB\861ÆÜk½79È\9cª\9b¦v®ªYC\7f|!«Ý½ì¢XÉâ_3ëì}ê
-_\8f¯ç\8a\v×\1fæõÆ^º©\enYm\83ä/Zø¬\*êú\86\167ÔÇ=UçÏ-Ö]}}tµ\14uXêùÆäë°<\7f±>\7fÅÖ²¸þøÜ]:\83ØÁ\19W\8f\8d Ã\\98ÁÕ_\18\=D GeuTu\10õ\ 3\81 ì ëÁÖw\b[ÇAÆ<Æè\96Ö\1f\91¥õ\89Ëz±ª\8bË«¼®j\92n:ùüóÓyÞÄÞµ\93¾Ö\16\9b]Zå/\9aWö±ØH´-\97\1d\8fYIo~ð6ÙñÆÖ-:åÅ\8fø\e$\7fåqLíoju\eõít~PõJWkUß$Q\8bóÇâú\9a´àó\8c/\10·ñÒ÷b\85ñ\85\1965«7M\83\8bÉÕ7KWGUO¢þrb2vÐõQq\1dl}K´µ\fBTi=\ e1Vs\90\13\93õLY]^cöâ*.ªº¤Ïß\94c\8b{3ê\95½û\8bNRÙËõµ\vC{¡Â1\1f}\v\8d]Ûéæ&n´e\95\rò·c\93\8aÚy;¤\1eç\15\1e\8b÷\92QuþÜbËÕ\93ªÅ7TÄÊü7éo©\98\8f©´l\9dt}~û\16\9dEì`ájÛ\brÝuÊÕC\}ç\91«£ª'Q?\98\98\84\1dt=\14×CpýÅÐÁwc
-Bri\9d»÷\96å 'íjWÕö\ 2«\88Ú\95´5ï\ 5ËYªî\15F°Ùuåý\9e\86²\97i{\83¿â[lÙ_s¼»\8a\19I¯:vçU\ eÝÂ#àìRÓÒ\v®\19o\83j\87|{¢®l¤¹£.Ȫ\16®þôbW믨È/©ÄO©äO_\15íÖÒÖ¢¸¾À¿G\17ÝFÖ\19*\8a\17®Ö\83\8b±g/ºú®ÑÕQÕ\83¢\1fJLÂ\ eº\1e\8aëlëÔ\12"Jë8\8dÑÉA*²Þ¥WªZ__¾¨]I\97\1aþD\9b¥ò^Zq¯Ã+ä=\1a7º6Øq\85¨Xi®Û9ðQË\ 2G7ÎÐv\8c]ÙÀM\1eËî\ 69\ec\1f\913\96V\ fQg[ý\r-îª|\17IUëÏÂ\bW«ÏÈfUûßQ¹I\15×ùËWºÝÚ±µöuå\8dx\16±\87¡¬ö]}upõ\18X+W\1f\95ÕQÕG\86~X0
-;躰u´nå ''릫۪Ö\97\96¹¤\I{N¾°d±¾\17e%uµ®¼tV<!ªÊÞ~gáI+º\10tY°®?Êþ±«\1fµ%{çnÝÇ\96m[EÙ\ra\17:®Ó\12µ·¥Þ\95(o(£jýY\98ÂÕ¡¬\16ªþ\82Féºjkû\11ÝB×Õ\97âú\8dª~"í ép¹4¯\b\12]ý9ãê»ï\1eËê¨ê#A?"\18}=êz°õ½£ï¨Ø:\96ÖN\ eòá\93\ fרºnjuU\15\96\9eQó2æ̽ø\8ahÒ¸¼ZTnt)0×q\1fõÔ2Ã\8cKWØyñ¯¬£%U¸äØV\1d¹ÄØKvÌݶê\89/ÿ¼Ü¢bcÄñÞ\92¨\9b\9a>_ßVÁÔRÕú³0ùÛ\84âã\84ÁÕõ\8f^\ 5]˯ʺíÖÚÖ\9fÌwêl\90Ù@î¡\1d5½Ô¬Þ\94\1aA\84«\87\b䨬>Ru4õW\ 4£¯G]\1f\15×ÉÖÓì\98/\14²¾ìÒ\859ÈÎe½¨¬®«Z^Zò\92²\96\96Òýä&̨{¶à^\8f\17ÀøÈ¿5«ìív\16.\95×v\r}\9eCUÒ\8b\ f¸wèÜ\83¶|ïÚEêܦµ6¨Ø\96\ fÏ\eÛ\7f\8aÚm-·Ô»(Õ}\95U\1dÓjý©\81"®\16ªÖ¦v?RèÚ:\ e2\86QF£ë\v«wærÒ\1eêQÓìj=¸\98ú@¢«\8fÊꩪ\1eMý¨`ôõ¨ë¡¸\1e\82ë`ëZiíå ¥¬w=¸ZÕ\15S\97¢6\96\96â½h=MwÏ$%¾U\979¹\16Çø¿Ì»ÏkÊöÌíþDû¯,3XUÑË~c\vUJWU8s_º\8al\96س\94\eX\91ôü\95b·ÈlM>Æí\bj\85¨[\9a6\ 5Pº£.Î \88\13\81x®\ eª6_(L\9f(\8cß(4\9f\0·íÖ£§â:êú\93î\8d¹ì.\95?\14wð"Ý\8c(]}põPXO®\1eâêXV\ fª>\12ôc\82Ñ×Gº\8e¶¾×Øz6\a\99\vOÚÕsª\16WW¾®äñ6\96\96ê½x--w·£\92\15Oöê\85µ,\96qîtOÙ[m,\c¯í)úc\ eK$={×\96~t\ eÚ\9a½k\14©\95³oÿ¸¶Efc\96\v»||êm-¶Ô;~êÞ\8a·Ô§r\ 2b"\10ÇÕ©¬\16¦\ e_'\f¾.míN\8e¹,Ù:êú¢â¾lH{æ\9e3ñ\8euuÑ\bb\\1dU}$èÇ\ 5£¯\8ft}T\\ fQH\1ae¼ãözi\1ds\10?´>\81\11ÆÅeµ¯jmêÂÓÆÒ½\9fZKÃÝ\8d¬d\83kd6Qw\ 2\19ó»\16*ÛQ·÷\9fÛ\7fc\8d¶\17{w\r\1fW4\vA{\88í\1f\97\82¬\vÛÝãÊ\9eÙ\8d[ðt^¶Ev;>2clï=Ç\15u±¥ÎåùI-ê\98UÇ\ 4$~\19·îj£jó9Ù¬ë\10\85Ôl\9d\83k©ë\8b*wä*Ò\1eê$>»º\1c\\94®~ðÈÕQÕG\82þª`ÒõT\G[·Kk\99\83ØÐúdF\18\97\96ÕâZË\97X¾ºâuUxZ[Z¸÷Ók©«»\9a\95\1cÿ2YCú«\v\94½\95¾BO_\8bY*ßÅx\96^ñ\ 4l<ëÊC¶bïj\9e^²i¥´Õ\16é\8dñ\84=\1fH©íÕ\9bZliymÊ»+\15Õ)\ 1É_[T®\ eC\8b7Ý\14U-L\1d?%[|þ;ÚúúÒÖ*
-\89º¾Ø»\1f7A¼3¤ç\90uõ\r5W?4ºzRõ\91 \9fÈ\ 4]\1f\15×!
-Q¶\16¥u-\a9ù\11Æù\bÄWuºÀ
-S\8b\8bIjº4ô%k©ª{\91·7¼JV\90þ¢¹Õ±7k9µlhí©9r¾¢U\a¶\9f\7f¥!ç\84íï±·kfë<G7·È?\95r{âo_"ìâ5@mm{KË\8bSÜ^©¨N HþÚbpµ\89@\92«\93¨íÇ¿ã׿o®ÛZF!Q×\9fò\93Ë%wOyû]lTm]}}éê{²«\8fÊêIÕG\86~23úzÔõ\10\85ÈÚºUZ\8f9H§ÐzUY]Qµ5u>ÒRÓ\85¡/]OMÝ\v¼='o÷úY\16¥\17¿ÎÜì\95"{\89´Ï/p\7f¬^#7XòÛ\16s\81 Táü\ 3ÐQ¤Òc±ûË÷Îõ´«èúµRÝ$µ1Ö×\85³Ý¼¦&êÚ\96\16W§¸¿RQ\9dT=\17\81dU\aG§\ f\7f']\e[ß`m-£\90K/\11¾nß\8c\8b\10»øi5h*\}]áê¡°\9e\ýðÃcY=©úÈÐOeF_\8fº\ e¶\1eG\19\8bÒÚÉAlóÞ ÉzMYUÝ2u:ÌRÓÖÐ\97\19./±?2^\r\9eºý¤¤*ÓÖe¡Ù(R7·»W\99m¥«Ð1÷\ 6\8aÞø\97_PPÔÒ¾\ 6ëO¹\8b\9a\ f:o¯Û;¨·Tm\ýáQ\7fÈW6InÉyE\85Ý\1c9PÛ,¶U\1dÆ\9a¤ÓÕ)n°TT\vUW]=\96ÕRÕ·K\94®C\14Ò°u,®\93®?mï\8bÍÈ»hú[¬«u\bb]\1dUýt$éz°õ£\93S\10\12Jë4Ĩr\90"´>\19YW]Êê\9c\80xªöL-\1e\86ò*\92\86VVþL\83\86¿\9bÚþtÍ¥í«B³Q¤®\15ä\18»Ý\ f^J°d^ÛsÌ\9aw1"Ö-,]\17tå¬\T=jvÏ\17î\9eÚH¹qÍ\87´»QÅ6ù¾nÍZö¨\88\8d\15\9bª\8fby¥ê@1ÝaBÕùø\9e«SY\9dM}Ç\1dÓ7¿\85®\8d?çÚ:\16×\97¥û±r\e®&ï¢êoQ®.\ 2káêÇ\1e\eÊêhês\91Ñס¸Ö¶V¥u\99\83ÔBë\1dËz\93²Z¨:\^ÆÔRÔæ"ºÌµógg©Ú»¥íK**\9d¹(\14\9bEê\8e²½\97iGÚs.ôþÂ*kÏTÇ\9fØ\94"ñ¨V\81m.®\1d5½ûõ\1dvv®æéÅ[Öܦ¼95a·\ 6\ eÄF»¢ÖG±¼Tu¤\98î±RÕ\15WkUß¡Pº\ eQHÕÖ±¸\8eº¾Ô½\a7#ïbJw®P®.\a\17\83«\87¡ÅXV\ fª\1e$ýÌÄäëQ×£C\12ò\80,Ã\10c5´\9em\a9iW·T\1d./mj)j£éRÏW,Æ\97wCÛ\97VTÚ¾$\14\e&ꥲ\9d\97éÍZ
-5-i7\993ô\85ë±\89Gµ
-l¡õ(\8e\9a<`\vvØì[ÅÓ\v·¬µMy\83J_ûÊ.ò\1acj#j}\14Ë\8bU\87\8a\97gSOª\8eß0¯ÄÕÉÕYÕ_\1aQº^`ëX\\7f&Þ\8aÞ\1d¸1i\17/ϳ1\97¸úáèê¨êÁÒÏNL¾\1eu=D!\8f\8d=!1\b\19Kk9Ä\98eýéOÉNë4¸ëv\90\99\bÄ\94Õ®ªÃÕ¥L-E-\1fõÉÑÉ¿W*®*Ñ?p¥§î\86¶/«¸´uA(ÊÈ|&UW¿HÜéÎËô±z
-\vÕ·\8bí\ 5eôfÛðI\85)¦«U`\1dGqÔ
-a/x'\91{Vñô¢-kmSÚ$qØ?n\8dÝ\188Èç¥*j}\14ËËU_\9a\9fQ¦Îª®E ZÕ_\92D]/±u,®\83®/wï¿\95\85Oy'*UÏ»ú¡ÉÕS\ 4\12T=hú¹\81É×ÆÖ!\bI¥u-\a\99\vw.ëvY\1dó6«êpu]¤û \93¨åõóYmè¬ä«gðõ½@Ûv\80²uqÌ{yI¦.\7f\8f¸ÕË\97i¯û¡®AËbk7$V8ºý+«\\941Å´Uá\92;Ô>æ>åÈqÖØzïl\95*7nÉ\96]bOdÞ¦t2ÒÖ(_{ʶ\81\8d.©=Q\7fÚßÔâBÍ/WÄ¢zRµ^\10ÕD \93ªEM}ç\80ðuÔu\b®][Çâ:èú3öæ«ÞdUìO\8b'Ñ\15yñ@éj/\ 4\89®>*«\aUGQ?ÿüóÁ×A×1 \19l\9dKë¼\9c\93\17Z\9fì\bãZW\87²Ú¨ú\93BÕ\9f\96M\9e\97éç|´´öó5\ 5×\8e\94\7f~M)ïym\9bÁI§»Ä³²#æÅ\99ºø=âV/J³²ËoN\84\95¿P\93ö\f\15E{¿o\96\8b3¦\986~Yv\8bÖ^Lò¾/Ù_¹w¶J\15Û¶dË.uOdñ\fÉO\8fó±«#\aÉÔic=Qû\9bZ\¬âµ5ÜgYÕv1\90ÉÕ· WgQG¢®çm\1d\8bë ëÏÖK&ï^s)~8î¢l\1aÏ®ö\ 3ëÂÕ£§\13£¯\93Ç\ e>QZÇ!F;/Æ\rw-릫W¨Z\14Õ\97\88\1eÏËóÁ½ÂJZyùÚñ\1dAþ±k¹\8d¶\9d|»V\ e·°*^\95¨\vgç[Ý\1a;·@l¤GOÜÕZ{¶\90®ªw)\9fʸ\96^~§^f\ eYM\8eµw\8brÿªòS\9b¶`£Ì\89,\9e!iCl\10U\19þ¼ RR§m\9dÛÔòzÍo®ÙÔê\væ¦cϨ:8ú®\ 1G×!
-)l\9d\8bë ë+jï¹z«Û\14?\e÷ðJ=¿gÖÕO<1F IÕ/$F]\8fÅu°µ,\87\86\908Ĩ\9b÷B§õ\89¶\83ø®n\95ÕÓK\9c§ê\18\7f\*\ 6\ 1ÒS0]:AÒZÏ×[n\18)þøúÂÝ®¶[éö2\8c\84Mjn\82u/Q\17ή\19;7¦l F\81gí\vçpêè\86}\17\91Çâ\K/¿O\85\1d\9d\87\ÞçöΪÝsD-¶mɦ]îm\95ܦ´EºÀ\9e\1d:P¦N\e»tSËKV\¡WÇ¢Ú¨ÚF FÕwI¢®Û¶ÎÅuÐõ\95ꮳ\asñ}h\7fV<\88¦]»n\91«¿\9a\=¨úHÑ/&F_\1féz°õSÉÖci=4\84Ä!Fg^\8c\1daܵ¬\97¹Ú+«µª/ÖKç\9a\ eÏ+Å\85s\8d\90´ôò\rÓ÷\95«ä\9fºÁ\88»eí«\1c\8dÎÑôò\92L]þ¶t©:ú1\ 3i\9bRJ»\99©4$]·¯¦ö_í°\97²´\7f\9bºORaG¿\98]¸æ\84ܽRÔ³Ûæm\94yYr|]_s¿\96ª«ðC\95Ô\v6µ¼nÅ\85zM2µø\80¹ê\ 2 eµPupôÝ\ 3\8e®C\14"l-¢\90¬ë«ÊÂ¥<í\e\90ö0§ð7\84þ꺫\1f\1f]}î\(«GU¿\14\18u\1d\8aë#[\ f\1d|\8fçÒZ\f1\8e9Hc\84±Ù\ e²}Y/pµH@JUÇøãò4Z\9bÇ7Â\ 3þÚ,iåçÏknL\98ÿðyãn¥m×Úµ\81I\ fÓ\84¢ÍìäçÕD]ü²tµ\96ÆÖ\ 3iJ\855MVÍéJÛ\15\99\13uTí|\89Ký¿^êYúr©\97êSQþ\aaÇBØy\9f\8b\9d½Èî`9\94(í·dÛ\1a[\157+l\94z\84¨@ÄWö'\8c¨\8bIdÍM5e´ºxååzm,ª\95ªe\17\88(«\93ªï\96\b]·m-u}µ\eKVNý\1aÄ\vCîmQ®\96²\ eó\16\85«'U\ f\96~y øzÔu°µ(Å\10cÊAV\8d0nUÖ\rW\17\11H*«c\ 2R¨º4µ\18Ý\88Ï÷ÉÒRÑÑË7ÍP\bÜѶ\e\91\sõz\9cÑÎv°n\ 2õììt½Zÿ\98\16?B_\93\rs¶¥hHº"_Mý¿^6géÆ\93Q<I\85\1c°ó>«\9dí£Ü=k¿¼qUïéç»Þª¸Y\95\ 2[ä3Í¡\83ü|1¦ö7uA/\95¼f¯K¦\16\1fZ\14iõm¹¬\8eª\9e\14}Ï\88£ë\10\85\94¶\8eÉõµúòw\v¤òÜ/E¿0\84ñÒ\e³«ýÀ:¸ú¨¬\ eª\1eMýÊËAØÑÖÏD[\8f¥µ\18b\f9ÈÔ¼gF\18OJÖK]mÊê\98\80XU_f\17øºJ$fâ\9aù\vtð°øðý\17\1cÄ\7f¾Y«»´¶É¶ËAÉ9êf.\13t?P\17¿P)û
-;H~\99r¶R¡¯Éº8Ki\17Ѷ\93F\17\92®ÈWSÿ¯fü¨°\8bç\16'I2n¬\vûÓ\8d]µ\9enô\91êm«m\95~î¦ÍÊ\ 5¶õµúLJ5U×\91z6ucS¯,7µ¸\80ó%\9bL->\b£ÓêIÕ©¨¾G!tݲu,®¯S×¾~¯\9f|çí´QD¥÷\854\:ìÒrW\ f¢ND]\8f¶\1e\ 6\19§Òzh\b C\8c¢\1fd
-ë#\8c»\93õ\12WÛ\bD% FÕ\97Ç\15ÎåB\ 4×*OGKgEG!\9bï¾Ý\12?(T|\fNØ»im\em\9b\8e\12\8b\94\9dáÎV²n\ 2õôÛ\94²Å^\8cY\19\15ú\9a¬\8bóR+íJÀm,]É/\8c{-µÿj\86\8f
-»øï-Î\8dZªQ\981\vû\92æ\9eÊ=ôD\9d6Om[k³Ôs7nV.°/q:Djs\9f>Y\17u\1e wz^+ÛZ^ÈâÂÍ÷\9d\aO¦Õ²¨\9e\14}ï\88£ë\10\85h[k]_gß0\ef¶ÕÑLieÞ\17R\ 4?çê§\aW?ÿ|Põ\91¢_\8d\8cº\9elýÜsÏÊÒ:\f1æ~\10/´î"붫§\b$\97Õ\17ê\8fÁ\9bïq*S\8b¸L~í>\7fî-\7fïí¶&ú£pÑÜMk[\85.£jf\9b\9f\17Èß\9a\9c\1d¯½,좱©4aM\93\15o^VD*^ºí¥Ñ~~¡Ý»\143zTXºöîâܦ3f,\9a×\eûxiMÔqóä¶U\9få×èí2Ñ\96ôu\f°å huô3¿\ 3è𣲩WU\8e£Sd\88Ë7\99Z©º(«\93©ïU\b]×l\1d¿£;é:W*¾t\9b5R»²\12û¨\9b\10oiºú)ëêÁÒ¯\r\ 4_\1féz´õ\14[\8f¥u\18bÌ9H\bÛí ;k´ö
-몫s\ 4"\13\10j»¾ùu¹[È|éÞ|>(/t~»\8fY
-=©ÛZ»LH>/m{C\v[+»ã\9dõh]\ 5êé·\19cÛ{=\8e\93+çÒ¤µ¶MG\8cÌÊ8ÚÍ/\94{\97b\ 6\8f
-K\17·§\93 ©²¬nF\7fÝ\89Ê>6D\9d¶®¶m\85:ÄvédËúº6\bjbu5ö\997¶òLQ²s\ f¤¹\9cÓå+?²ØTuPô}#\8e®C\14\92m\9d\8bëI×7\88\ 3ç=öª¯¯.îÛ®\88àÃ`éuW\8f!HruPõh꯽\16\84-l\1dJk1Ä\98r\90\10Z\97í 'л·ÌÕN\ 4\92\12\90RÕ\85©å¨\86üÈ\9b]9W,òõ%\8b]\ 1L\89~ÛmÆÚ7\17ÖvzJ\9aTÌ|³¦\11¨§_)\94\1d.]ë zsÓR\8cµM8R¬\84RäÑn\80ñÙõÍUv𨰴¹=˧¥º?¯u\ eÖ\15Î<fw7õ>6D\1d·®¹mÚ\ebÃT°%}\1d\ 3\91V¤nEÃ\8f¼©W]åv½V¶ÖÖ\1aù"¶ªÖ \884õ}\1a¡ëÒÖ²¸ÎºÖÃý\9aÊ\eì\1aâþ\89vñÛ\84«\9dÀ:¸:\96ÕG\9eN\b[¿\10m=\94Öa\881å ShmF\18U;È\ ee]\ f¬Ý¡E\19\81䲺®êò#÷úS\14ÉÐ_\12K\11DLK¾\99úú%±\16ØíÙÚn©\9d\a$¥»]t¡\\19ò,bô2QO¿U(»nìF{SÍ\86ægµ´M8R®\83b\ 3i%iç\97-£\18<²\96Ö÷§\eûëÁ\ 6ÿ}ä
-=äxye7Õ>ÖE\1d·Nm\}î\97\e¦*lãkµô~9â«Su\11©ç\8dnêuÖtí·Á|1Ëïv5T\1d\f}ÿ\84£ë\10\85¨\16>£k3Ö/ñ\1e+NÂX¹>\8a·\85Ô-þÅܳç»ú¹ÉÕYÕ¯\8f\ 4_\1fézÈsi\1d\86\18§\1c$6ï¥\11Æf;È®e]¸ZÔÕ*®\ e\11\88(«\8dª[ß\f*Wö\92f¾{\ 1JàjI°Ûow¤\9dG$o^\8e¯æ[\ 5ó\81zü\9d7¥KX¼!\9a²±Ñàä¨ð*ç§\1dg\97\91v9j¨jihoø¾Ü\ 6ëg¿\96\16÷hqc\96/>Ù\8d¾°¯\2Dk\9eDUQÇÍ\13\e§Þ°J}Üp\83:\89¦Àþ¬\19pÔ\99º3¼\9bºT\8a𣶩ö\89R}'T5\87H\1e\95ª¿$T\9d\8aêû\rB×ÚÖ)
-\89\1fû\92åI~ô\165±ÿXqh½øÞt\93\9aØ3\94Õ\rW?k\=\8aú\8d7¢°\83S\10"\86\18Çy1chF\18e;Èî{÷f]mâê"\ 2É_\82\17ëÊÚ/q:ã\19j¦\94\18~6Ã\1a\1e¢\97(\88;Y[\92þE%P¯\9b¤¤hE)̬>"*Ãu7O\8f¿îfSt¨\12[¶8Õtè\r§\9b\1f/ó\94"Ñv\86\re1\1dÝ\18¹\9fáZ¿\96\16·gåEÆÉüÝ·\91«\8a!ÇÊn\8a}l\89:n]cã´:\8asx\8d]¿è3ªÀöG|U^S ?¼M5\8f\94ú\9b¡.=n1¦öU-Lý@Àѵ\e\85Ü"k\13=ÆïÖϵ÷Y\aÿ\ 58½+\84\ 6Ä¡¬®ºú\19áê ê7\12ÑÖ¯¼2\ 5!Si\1d\86\18Ç\1cd\fë#\8cC;Ène]\r¬Ëº:¸:E ©¬\1e\13\10êëâ÷í\8bE½L?§\1aÎЯ^UD\86\16ÄZö\1di'}æÊ·\89¬\95=/ßÑF¸;üÎ ì\9bËTOf³ÅÂT\vE©½í\94ÙîúU:\94\16\9a.~«7<ÔB¥\92ÆÒN½WP&þùHå\ 2;\a"öÑTîå\15BÔ\9eýâæÍlÜMî\96\15\ 5ö\95fÀQôT\86\ e.Ë%µZ\9b¡²©ê\99R íô롨=nkª:Ý\81\ fX\84®kQHÌB²¯½²¸\14tå\85vþM8î[ì\15\1fËj×Õ!°\1eÇ\16SY=HúÍ\91I×\93ÇØz(ã\10ã\98\83\8c¡uc\84ñ\ 4z÷\9a\83\8b¾«e\ 4\92\13\10£ê8¡H\98:\89ÚÍÇä\83üËM\8a\87ý}j¨Zγ\92ñ\88j%ùâm\ 5_4xjÎ\83\9dwÖ\91yúíq=I[y¨\12;÷9µ\1aÀ[(m\17ÊöÇ-u,\9d5m\fí\r\ e50©¤U\8by'7o3æ&\15\15\9aM\8fT b\16\vröòÊBÔfòuîú/\9c¡_Åê[æøºè[©\r\1d\\9eKjßÔÕgJÕs^|\97.ô\1cA\96ª\16w¢¹ç¬®Cq-\17vº5½GÚ±ýº¢+oµ\v^\84Õ\9bÂí±¬\1eú@\92«õà¢põ¨êQÔo½\15}}¤ë\18\84¨\1cd\9c\173\86Öã\bc\ËÉëÝÛ¡¬7rõ\14\81\98²Úªúóaî§0u\12µ¼6â\951]\14\ f\8e<Ôdú\19q\11©W4Ù_$¤ý%SöÖ\90\ 5²£f¹
-Y3NW5~Vv\10ödì\eKcWFÎ\1d\17Ú\1f\96Ö\16éÈ\95ZÚÎ@åUFÓNqì\ fÚW\87\8cìkº±´¼/\9d·\1ay\83Þ|³\8c@Ë:ö\9a«í¼\99Ê^^\95Emíg<ÝØ:gËä[RÜ°2ÀÎã ÎØ\81ÊÔËðÃy¦Üd\8eeUtÅ»bªB\92©ª³©ý"iºÓTq-\97
-I%\89îÆò\8a\7f»áso»µýK/
-wIJZ¸Ú4\82¼ðBpõTV\8f¢\ eLº\1ejë\10\84\1cÙ:ç !´\1eG\18ýv\90Ý˺\19\82\18W\7f<»Z6\81IJZ~¬aZQ%ô¨+S\ fWÆxaL×E¸(²¡\1f\1ey¤Éô3YÜéJ²¹Z.´ïÒEï\fN7Jr±\9a\80[MÓu\8d\9f\95m¾\rET̸l¸Ðs¦\90¶U¶7l©\82é¬é"ÁPÃA\8b(F\80
-K;aS9J[Iû\9d@D÷Óx»yµ\15µéû\ f\rmµs¶ÌnZÜ2Ï×"V¯\84ê\9fÍ%u2µûPÑ\96®\89®öÚ\98\v\92<^äUN\ f\88ÊÉÖFZ×z\9c1ëZwb9å¿Þòú\vnå\14¤¿\12ö+´´\8ceõ½GûáºúùÑÕ¯dW\ f\96~{ è:Ú:æ çR\ e\12:ãZNE;Hj´>\19Y¯vµ.«KUǾÇ\10%IQO×Ät=DE\8f"þÊÈ£M¦\9fÉâNÕ¶\94¶*´ïÑEoÑ\b¨+f×ÍIǺ÷Ô\rÓM\8d_¬§ Gcäèy»UIùPþ?¥mOÙΨ¥Êó¦m\821?[³\9dGz\96.õQ\fÒ¦ÛÒXÑøú:÷ÁäìgÜÉ\9aý¾ ;ÿ³3ÊÑc¹i·ØM˾¾Ö\e\aõbu\95©O[,\9e*î¦~¡":Çuz/ò\e£2uVµoják©ëb\9c1ëÚva\15o\0eÁï\\fåuáïY
-tî\8eeµãêip1»zTõÛ\99Q×c\10\12m\1d[ShÚAÔê ²ÑzG²>\86«c\ 4\92Êêø¹J¡ê©íQ\9az\12õx=$MGE\8f"~läñ&ÓÏdq[i\17\85ö}ªè7\ 4z5s©e=êâ\84é¦Æ/æ\11Üád"Í\ 1\19G\85\91ô_\84µ=eWÇ,µ¦ý\ 4ãÆ\ 5cõî«®\ e\16\85¤\9dÌÉ\e\9e½M¾W;Ul*°¯uöÐ>\8c®k\8búV\9dèº\9b'Åa¶âëkÌDÕ2WÏa\8d\1dûtfý\8agJ1ç·¡:\13ì¥ò¤\16Gza¤,\87Dq-Ç\19ïЧÍ\8d.\1cI\97GÛ\9d\ 6ç&\98âá\93\f3\94ÕÖÕ!°\1eæÂ\8c®\9eÊêÁÑïLLº\ e¶~Õä Ch=vZ«v\10Ù»'\eûȺêj\11\81ä²zhÖSªN]\8f!H
-¢\ e\9eN\9a\8e\8a\1eEüÕ\91'\9aL?\93Å-¤m\9dm2íÔBRÁ+\99K-ëzÃféE0c\adî,3\91hì\9cðÕÆd<\94·\93³\8d²\85µ\8bÑÃTMgK\17Åñrt u«ciuCÎ\8dÍÊ\83T\vDl/M±£YÔb*\15uÜ>gÀBddÍm»Ñ[&47®8Áº\bkdR£r\1a³©·\16\9e\9biO*\12>Ñ\86uï½&\92ü²ºªeäø\90£kç²Î\13\1d\9cÖ«Û
-KëMl\8fÙk\83Ë¿s\97(\ 6\87²Z\8d-¦ÁÅÒÕïd&[\ fAH(c\ e\12Bë(ëÛLï^ÑhÝ\9eo~²®V] ±¬\1e\12\90¡Y/¨ZÌû4¦\ e¢\16\9a\8e\8a\1eEüäÈSM¦\9fÉâ\16Ò6Î~H«3v\90ÔñJæÂÊ\ fkt\94^üêZ!Rd"Õ\94ÏU¡þYaí¤lSe_';MÔpe*§\9dÁÀêZ\88 ÿ?Ë{ó\8bÊ\82ò\9e¼ËAÜ\9dwÜQæFå\94æò©$Q/\r¢¤.Eë4oûî¬lÛm5___ÎS5ɺÈjÌاz¨¨âßxÎY\97¡6\ 4\13÷(½Gª¢Z\9búa\8bôµÒõÝJ×v\92\83\97\9d[K{\87ûî»,\15\91ËW\84ûbYí»ú%ãêÁÑ_\9f\98t=ØZ\94Ö¡\1fD\8d0\8aÞ½¢ÑzÉ|óݸz\92µqµ\8a«\87\b$\96Õ×Å\ f\vçªz\9cö\19\12ÿûBI\1dE=zzÒtTô(â§GÎI\9eyfø>¼dü\99,n!m]g?Rªs\ e§d.¬ü\15\8dJÒs\9c.\8aüñê®\ 4}r\18=¿6V£¾ª-Ee\1e\95m\82\91Ú å礧\9d\98y~\9cÞ-\9eüR:ß\94Nö¤\1ajî¼3\1f¡"62¾6\ f¥¢yÆ\88Ú¬z\90D-Ê´»\9aÍ>QÙöaò\ 5\7f¥P\13Ó\94\ 3\a×\18QÛ\95tÜâß«E½§\9f3\18\93\92¾û\8aq~yÉÛ1ý\87\1d]ßkt\9d|í¦Ì·W/\aïz(.\f=îä<wî\8feµø2\8cnÚ{íµÑÕAÕ£§¿ñ\8do\ 4]\1fÙz\bBÆÒ:å !´Î²¾µÚh½d¾ùöe-\ 3kÙ³§ãê!\ 2Ieõ\90\80¤Å¿Ç/ ¥öô`ê,êàéIÓQÑQÌÃw\87\13Ïeò\1fN?\95¼-¤\9dëìäÏG´µmbaù²b¶V\ e¹zB%é9NWE~6víå±ñêXqa±Vlr¶4¶j31èÔ#zÚ\19\f¬\ e\¥öïJs[ê»Ëí¦ñ\16NöcþäëÏ7\9eIy??ÿù²N½-õ|EO§-ôú}ü>\9f\1ciù¾\16+Åwæì¸\81mR)7õvÏsõGKm\æÞÒÔ_V¦®vaI]«ú#ëZÍmð²sç©]¿ ÊF«\ 2\19åL\ 5á\18WkW¿Pº:\98zdÒµ*ã¼\98(ëûc;HêÝ\9b\99¸EY/\fA<W\8b\b$\97ÕùûgQÕ±;=\99:\8a:xzÒtptvóó\89\174éϳ¼£µ\83´\93²¿\1aõù¨¶¶\8a+
-/·Ý\1c\a8¿ªQIz\8eÓs03ýÎ`ìT\90Üc2\119ÝrÁ\94\1d#Ë\\98Kc·»Lt8-4\9d,Í»\10ýr®oJqG\96ý4\95N\1a\15\1a\99ÌÁy\8b(\9eF²\93:\86\1f·¦%÷ëÓií¢såô+û4¹Í],4\ f\85V¦<ɤæs2¦.7õ\8eò¹W)F[b\13Ó\14ïwLí¾@ªæ+§¸Î'KLFóÃóåWDÑdå\ e9Å¿#ÞÝ¿\92¾\8e«\9aö\86\ 6kåêAÓß<"èz°õTZO9È\14Z§\11FÑ»çÎ\8a±²þðöVrZ\11XW\=D c\13ÈTV\8faõ·&U\ f]4)B\9a\ e`\10uðô¤éàèlçøiø\97JÄWã'wGk\aiKe?¡¼ùX\99V\94Q\86\92sáæ8Àù¤B'é9NWÁÌxµ\97ÂvÞ gæìè\91¤ø\87ÙÚBÙ7Ë"Ûi2\91\9avWµÅÐ
-ä[yùâ\1dïÇ\aJòÝy¯v\80\19\95½eIߣØQ=F§Jê;M\ fÛ½Ê\18fËD{Ñ=÷\98.\9fÒײװ\9dÔ\94AÍ\17ì\12\r\95onµ\8aÑ\8aÙ\84¨SPí4ЦûÂÆ{Z×÷i]çÙ`\95«â®â±Ø¾$ì ÐöV{\92bÖ1\ 2\99uuTuÖõ\18\84¼1ÙzÌAÆкh\aɽ{sóÍ·$ë%!HÝÕc\=F c\13ÈTV\87Ï4\84%
-ǵ¿S\82\14L=\89:xzÒtptÒóôñJñm4ÉËñÓ\96ÁÜFÚRÙOIm~µ\f+¼,CÊÙº9\rp>-1Iz\8eÓU0\13\8c]\11¶J\9c¤îEáí¨l·È6\1d&¹ÑCÔÓRÓ¦86¡he°§\98FtOyGêñ[ÓB#\exl\e\8dþ¨¶jès\1fHbOÓnÞ*õ÷¥ê\12Fe[¦Ù¶r\91\8cº¯å,Õ2ª1A\8dJÔͦ\96_q¹OkË{\17°È\87\90gêÚL\87ì릮ïn\\1e\rendstream\rendobj\r59 0 obj\r<</Length 65536>>stream\r
-w\15\9eV¶õ.
-3ÖTñx~7\88ª\8e\1f\e°\93a\86þê#W\aU\8f\9a~÷Ýw\83®s\10\92s\101¨z÷<YWfÅlWÖµÂZ»úÂèê8´\18"\90± $\94Õyåï¨ê8.\eL=\89:xzÒô\8bù\83ð£\8f§/¢½V#}0m2w°v\90¶Qv\8a³\9f,³
-?Ìpälµü\8cDÄëϦ?<ç\ 43¡Æö\84\v\93\86\bË\ 1¤ðÇÉÚBÙÒØ©mÄôâ}A×ÓFÓæ\ 6[\8ezå.\v¹Æ¢\ 2ùæ| ì\ f»³îkïytSñ<Ê\89Â\1dÉÔwWZ\8d\850Ô G½+óÎb}gÓlèf5vxW\96ÿ~õo\8bÑ¢\1e-b\ 4\85ð[îýP%µ76#\84]èZ\1e\b1i¸$]\1cÅs±}UØq&¯)à¡`ê,\9b'\97¸úÝ@²õXZ¿þzjÞ\eG\18\9dÞ=g
-ãîd]\16Ö~`í»z\1cZ\8c\11ÈØ\ 4\92\13\90\90U\8bYD\8fJS\ f\82\v\9e~1~\fþ\15ñ1´é³\r¯KÞPÿ/}×áµhmål©l\19g\9b¨Âò\94-\9c\9b\9d!O\19¯§(ݤéQÙ¡Æv\84í\ìæ\82o«1k[(Û\18Û]
-ç\16íé\99\85k+ïÛE\1cª^·ï/oG=\8e[¬"Pv\88Ý'\1aÄ\92\10M\93ºó\85 Ùê¨\e?²þ´¨\1f(û\8c\9dæµúì\90Tþk_\9bt]¥5*§Ñ\9d\1f_\8ck4´\97ZòW=k¤ \ f\94\8a\13¦ö\86i*ãæ\9e®å|áÊ3\\88Z\16÷\ fÖ.\8b²)Ö#ü%1(6F -W\aU¿wDÐõdë\90ZÇÐÚi\a\91³bNZÖn\b\92\ 6\17\e®\9eº@B\13È-QÕwIU\7få+é\95ä©©¤\1e\f\17<\9d4\1d\1cýzZ_öÍ\8c\h%¯føFôv\90vv¶Qö³¹Ö\15AEɹ\199{c\9e/Zä@¨ f&a?á
-;ßö÷\15\ 6¬ÉP¹2IûÎ;eû\94\8cE\8aÉd¹·Dµ\19,xÙ\9eyÛÖ%\)\86x+zc\aeÓ£ãë/\19_ß*\9fF¦\1f=îêmf<ñ.½H\8d\8e\ 4ê\r\11º\19ôËEñðõí^Zã~£HÔÿEøqg{Ý3gR¸_}\16\95¨\19PÌ%um\ e±òµÖµzÏ0«ÍÛ\15\eDA]9âþ¨Rn\10p:\ 4âß{4«úÉP\18ê\ 5A\94«£ª³®\8fl\1dJë\18Z\87\11F+ë\9bó\14Æ\13XÉiE\bRwu\88«\83ªcYmT\1d\ fݹsSIý\82ú
-ühé(éäæ4_ÿ\1d\85\98ÅÿÖ[y\11Ú×Ó\17Ô^-\95\9d\86 ELáa\9b\ 5\8d\9c½AÏ\97KÄ8¨ f\1aÂÎ÷}ZÕd\81\výî\89»ï2\1dÊ\95ùd¹Åäv;zuw\91à¶\a~\96Toº|KoÚå\8bvnÜyX¿|\94õ«»\16E°¶z"Ýv[\11~\84énq\95\9a\14yÚíTÙ\90\86z\9eÈ\ e\9fô<\99\9d£ªÞ\0ü\9c¦x¦$Çéi\86s±\81A½5¨\92Z\89Z\86\84Æ×\9e®c¹QÖ\eêeK\8bÚ\7f^ØöØâ\14(wçKjÚø¯æÒðÙÔ³\17]ý¦rõèéo}+è:\97Ö"´Öí ºÑÚÈzg+9 Aâ\1có8¶8µì\89¸Z\94Õwß\93\97¼úJþ¨ðÓ¡¦~A~«2}ª!H:Û9Ì*úF\81\98nôNZ|E8ÛU¶(ueN¡ò\8c¢rÖr\8e2\16C\9d¯zÈaP]åkag_\7fE\ô)¬-rÇ\86\17³·ï-\eÞ¢±ýupnw
-ê¢\84«\8dú8%\Í\b\8f8Fp×\7f\916\98t0\1e\18Ûðè6¨W{ÒeÂ\93\vÕ{+ËÔHg\94ãÐY\19\8f\14¶r|m\16\ eÕã\aâ\ 5@ÆQEõ\9f\9f)ª\16uf\ 4x¡M54(Rê|VôH\8e2v<
-^\18"J\rýú'«\8c\aôp ^\1a¨~eÈÞ\80rð3z:L²\13ykËÕ\93©G\84Ã\10c\fU;Hn´\16S\18w.ë\85!H\b¬/\fë\81\ 4W\7f&¹:ÇÕª¬V«~ÇïéDS\8b¯\9fÅ\ 5eßÎ\13?¿!ÚiÞuP\8d6aÖ\91p¶P¶\ e³sF\91ÛµU\ f÷\8b®\9d\8d\98Å8ç×|Ä ¨~dÔ\85ý¨\9c!ß|\85\9aR\14å÷\9a.*9ôè4\ 1æ\80:+¬ºP\84\14Ĭ
-\1a2x¼\18ÔÕ+¾$!<bFcmÜ \16\ fò&7\7fÑys¸;.!q_*©\93¨\953Lw\90VFY^~9n¡x 伦¨ÿm ¥«\7fgKå\fCeèJVàÆ\ 5FïuQ×Väñ'\10\98WÃòåP\ f]ä½Há\85ó¤(.\ry\16l[Wü\8bOän³ð\1eÿ¢çêXV\7f+\13m=õZÇÐ:´\83\94²¾©"ë]¬ä4_XO!HnÚó]]Uu^ðêéü6\12L-\16þ~;Nú\8c\8eÎ9Ò·*¤\88é]ÙÌþ\8eVv*²_\95\85®îÕv3\r]7\e1Ë1Ï\1ay\10TWù-a?¦æ;¶<èê2j;¿\8bÞë5\ 4:½\80wÊ\84úÞº\18f\16\18/\91!\82¹\ f½^u§?ýqëkU½æòº1½9=\92Ä\9bÃ=¥©¥4¬2\1c_Õ§<y¾®¬FçTÿ·û\81º\8eiZ)M\91\14,8Cú\ 4©}.N\8c:7¾®Ekcùb\98ê\rGÔ\8b¯\8ezKWü{©ßl\1c\1cs\\9dÊêÁ&\7f4\12Är¤\94©´Î¡µn\aé"ëfaB\10\11X\ fsÌcÏÞ\9c«ÍÚ\84ú+\95bÉ«IÓßL\ 1Ò·ò\ 1üv\8dtx\83µ'g\ve\9b"û5\95PÄNíJª¡ôlÄ\\ ez:È/º\85-\18\7fy[Øùò\8f·\98S\bù$q?hG¼îÕ1vnã\96\8d\80:ùx \17\9bº\9dkf\89qÿ½T\15Òù&ôÚÕÅR/aBÓã¦;ý¡¢¼¾[½:\14ï\ eé\99t§\1a¥Kþ{0N¡Pk\8a=ÞVFQdVÞ\0îõÞ\0n/¦§~±Qüo\12ÓÔ\ 2^\añOT\9f¤º\85JúÚÕµ\2Í\19ÃxðA\93}¤\83®®\ fg:\83YÃM\9a[6Ü>\15§DO H.\10=WgÓ\ 4\9f¤ÒúH!!´Ní ¶ÑZÍ7ßñ\82Ö3\85u\11XÇÁÅ\96«ëª~!®M8}÷LN ú¦yÈ\r2~\7fä\83Ìw\8e\10ÿ÷\83ñ¿\am\8b¼))Ûä"¯\8b|"\9a»È5¾æéY\9bùíÊ°§A~xB\94ù\85°³¯c[ßãù^«Þ\n\1d\15¥\8dRl§õU4½ÞWxá\91\ø´Bfg\92\91\89\ f\9eÐ7a±P\97X£+Ý\97Oæc"\82}¯¼\16é|ëÕAù¯0õ£a±\9aÇËÍÍ\9b¬}aµõ\95¥\8f\942\8d\92qTø÷b\9aê¢ïÍl·x\9e\1aQ\17\8d¬íýVºndx\ f>èd\1fIÔF¶ú\ 2)'\9d9\e\97NT\9c\14\1dZÎFïÔ\\9dj 면\ e9H\90õó±w¯!ëËw» µ[XWB\90<¸\18æ\98{®\16eµ³âw\9cé9}\9dA\ fÇN\a-J:ºù;ßùnä{\91ô'ß\89ö6ÎÎÍ\92*\17\11~±I;ac\rU9k3\7f=aG=§4F\8f\81¾#¶ \7f79\v[\17رKDN\8f÷ðoË(íG\8a\ 4U~ÿÀt¿Þ\93=-^µóÝôh®5Ý\1c±5ÁH¿IgãÉÖÈg\ry:Ñt?>)^:êåµ\9aâ¬æ8ç\19=âÝA>\91Ò2½\8fM-\ 4J\19¶Ù^ébf\82ª;"ºè\99R{¤Ô\17~\ f\87[\1d|ç9ê¾õ¬\7fï\91k\\1a]+_\veËñæ\87e\r Mý¤^Íè\9e\15}\åtaÕ|;ýØ\1d\9cr××\1dW«·÷dk\91\83Lí ²wÏÌ7Ï+9¹\vZoIÖÕÂÚ\8e.ªÀzlÚó\\1d#\10[V\97\v~O%µz¸M\96\ e\8eÎvþ~à\a\92ø\87ÑÝAÚ\93³c\95\8cý\8elô\8bÞ\16\98`CUÎZÍq\r\ 1;ì)ú4å\10¨\fÓ\83±\85°ËDD,iÒ² \10¦º7M\84\9a\85í÷oçAúûUô!×\19W\91\80\b\ 2Ús\8bÔ\v´¼\ 1Ï\89ÛO·àè\1e\1d1\95(ùÚLÖ/çêÇ÷\ 6gbs\11òXSGeÈÒÎ\99ªªd!^\ 1\9eH¯\0é\99bß\ 1\8a\87\8a3-5m©ÜÐ\87j1\8d|j\16±\80\95¶÷ìWo?ömÂN=PÆ6\ f)o\11yÕ5(\86Zò»A4µ\14uí\1a)WÝ,ÌþêsBÕ!y¸zòôûQ×¹´Î#\8c©w/4Z[YÛ\95\9c\1a_\1f8¾¬«\85µ\rAbÓ^áê\18W\87\b¤Tµ\99:4\1e®éh\8d\9e\9e4\1d\1c\9dõüÃÀ\8f\14á\ f\93¹\93³£²\8d±¿!\8aÜÜ¡-0Á\86Ô³qsì\9e×£\9d*ô²# q\13â²æYØ^\84}NÞ\ e&\94kX±\b\12¿"\8cQ´TÙ!ú\aòà\95\98\ 1\96î¤\i\9aJk\ 1ö&zVµH\9aõ\14_ÈS@\97L$ú²(¯\9dy\9fæåAt¾éGRE\19Ò\19qÃÍ+\800ö\93i\eÓFê¼_oem\ eö½÷êñÄP\89zÑ® \95ý4·p¶F>ú\vQ×S\bó\88\12\8b\11ç\81\16oDü\91YSg×\16ën\96\93\84í{Y>QÏ?¯T\9dÊDßÕSäú~²uÌA¦\11Æл7|,FÌ\8aI\8b\83\9c\88¬[\85µ\18]\94!È4¸Xº:\f-N\11H,«\95ª§\15dó\83m<VÃ\91\1aëé¨é é¤ç\1f\a~b\b\7f\1cÅ=9;*{4¶ª±ß\95m~±?[ñõª\9fµ\9b\93\94ÕXçû\ 2w\0TLcÍÂv
-ìçôìx/\96s\8d¨ÞNe\85§\85í\8cÒ«>ª\87Õ\17!â»é|\9dYÔ7ê\ae\89$\fm\9bqìJ\8ar\1aQÑ\96n'êÇ·\86Ú\84O\9bòhSÇ\92Z\1aÃTv\95Å\ 4\9ce\1e\85¯kë 4¦¦Þ'\9f(&Ow¢Ýâ\92°Ö^\1cVeS\17ÏX÷\8dBDü¸-¯\9d\86ÁÜ}ò¨Ê\9c\9e\9c:7ʵ7+ó\83ý\85\92ÍT\89\17^H³£S\8f°uµUõû©Î\139H\92uîÝÓóͧÅA\96ËzÃ\ 5]Y;\85µ\ eAòà¢uõ\14WO\11H,«µª\87ø#\98z*©§\82:x:[:ùù§\81\9fY¦?\8eâ\9e¤\1d\95]\1aû[¹Æ\8dÚ.òæ\8a\9fµ\9bÓI\95\ 3\9d!]\ f4Æ?Óä¨ð)\8a©ÀÖC\8eÎìø\82\ 5w\90~%\7fDö\89ä\91ú\9c'>ô\90*©\1f\8f+ئ%l\85¾\9c7ÓJ\85c¦\81\8a{¯6÷SMü\f\93\88*³\88l§\9c\8cy\8a\99\18÷Wb\1emêjiç×ÿy9u-l1&ª\ 3lõv³r;õç\94¼\94ÂÉ*¼÷³2H«\88Z?keî\10\7fQ½¼vÛ\ 5Óø¸©Åq×®u\97G.\1eì\ eñï
-Uç\812ñRÿGb\8cì\ 3ië\9c\83\88Þ½ý\90µ_X§ÑE\11\82¨ÀZ¹z\1aZÌ\11H*«\85ª\87#5\1c¨ÑÔ±¢Î\9e\9e4\1d%=Jùç#\7f\0ýyôvröXe\ac\7fG\1a;7ùÉ\ÙFΪ|\96v.´ü]É÷\14\95ñOÙ\16\14\96õ
-\1fQ6="/(\ f´-(~(ÞFOëÖ\92TâÙ¡\9frÈGèë\898©ài%/ýVj+\1c\17U\1eIEÛfI3é3N!\92ñÐhB§7¤\95òÈùr\ fVM\1d\9fIº´³¯\0Eyçg62´\91Ï\95bÎ\88×\86üeÕ¡\97Ç\rü!¸Ú\83[¦\159\1ayÂAæ(ùß5\9a.£b'ÿ\91}L\8d.ÁÇÔð@>ðÏ\8au\92ã¥â´Ö¾b\1eìr¾\84~W\8b+\ e½\96&t\88¡2\11À\8aÊ+Ùz,Ch]ÈúAGÖå\82ÖÛ\95u»°V£\8bµ\10DäÕihq\8c@Ʋ:' AÕcQ=¥\1fGG(\8bzôô¤é édè_LüIÁôçÑÛ£³³±Ç\1aû{ÒØï§`B¤ÊEè,Ëgegkåï+ÜÑÏ4ü©\9f\1aßJM÷ªÀ\ es-ËÉñâ-Ï\11¡y\15\8cÎ\90Â\96\89H9Ù&¾ Ê~\ba/·ÚÉ7\84§1ÿÎÑ\8a.'\82ê\19\9fi\ 2\91L\87jåuÓ\82é\15âA\99óÔL\9dE]<a*µ]<OÕ\83_[M hC.æ\8aØ\16\15'O¯5Óè\15ËL\98m)BêæK\94
-\7fÎ\95º®ô\9dæö\93ÇË¢:_e/\88%8í´áÚr\ ezª[ºÔ^É\8b\ e½\9e¿\8cûõ\14Áʦ\86áF\8fº\8e¥õ7e;Hl´6\8b\83ô\90u°Î£\8b"\ 4Q\81µrõ0´\98"\90±¬6ª\1e\8bjaêIÔÁÓ\93¦\83¥³¡\7f9ò§\ 5Ó\9f\amOÊÎÆÖ%¶è\16\91\99²¦\10´´saå\1f*¼ÁÏ\1ffuç,]<¸Ã\ 2\ 4ïÄïÞ¿.¦Íäo*\14ïy\15!¾ ¤!\9d¡ç\95xï§)E|<\9b:ÉKÜBºØñqæ\82ZEÛYúº\952:»ðõL\1aò\90ïÀ/×\14ø¸y*U?\81¡w£Ø×xô¥°e\81-\ 3\91Æë\8dû\92S\eø,\ 3õêk\96\11¶\96¶\19\aÉÏ\0õo«ò@ü\9a2¬\97\13\e+m\82\8f\8bw\84§üËLÔÄò\81®×q\10\13%\8aï\92ä\8bíµ°<\þ\88¹qu¼åE\809Þ¡\93¬\8fnÏ,ëÐh\9dç\9b\8b5Rk²ÞâçÍ\17\15Öqt1\84 1°\8e\83\8bcÏ^võ\10WÇ\bd*«¥ª\87¤zÌ©\8fL8\96Ô\93¨Çzzòô¤éèèQÊ¿\9aøµ!üqжPv0¶,±¿\9f+Üï¨Y5Eî,êgeg+å\1f\e\8a\91Ï\90£ÇÑÏ\ç\ f\97C\1eÄP\81H\10¶XèÕ\14\f¥\ 4\eIï3Úm&RÔ5Ïc\8f©:3Íý\12«Ø¾d«âZ±ãÜ3\85¢+3õË\19ú/7æ{êHÞ_O¥\1aô8¦\96ïà/æãlwž\8f\8b#/Bvù°ÔOËEÍ\12j\ 4Î\eø¬¼j\15Õ¯^\13Ø\19®V\8däÆÔ6ÊR¿¥\8cêK_\97]\82_Õ/ ©¨~¾\.ùÕr\8e\9aYʾ6Ã-]o_K+\ f U\97®VãM±\9c\8a¡uêÝKS\18Óâ i\8dÔÝ˺\96\82ÔF\17M×Þ4¸\18\}gruì\ 2\19"\90©¬Öª\1erꩦ\8e¦\1eD=zzÒt°t6ôÿ4ñ\eÍô\87QÛQÙ£±Ç\1a;\95ØÉØ9\96Hâ\96ѳ(¡\85\9fµ\9b³\93\7fj\91Ã\9eyìó'ÁÚ?LÉL¬°s\81mZDÔÜøFÕà¾\12¾ôR%:P\93#\1f3õ\8e\8a\10³©+÷\8f·vU\91gH¼I¡fÆ~±Bùìô|/à±½±¹7IðQ\95ô\14/\10Þç\8a^1÷¿\14\83:îå'/Îy\a¿1þö\88xvÚ\ 2Ô\f|\96\ 3\a®LÅ\f£Ö\1aîç\1cSû¿¡\1aÔËÏçÕú\ 4Ó f\91\7f\84#ï/l_[~ÇÎn+/¹×ãZ\9eiM\vÑ\ 6¢U-J9QZû²~Ø,»ç|}`\87²vR\10QXO£\8be\b2\ e.\86¹0ÒÕC\ý̳Ï\8diu(«\85ª\87¢:\9a:\8az¬§'OO\9a\8e\8e\1eµüÛÈ\9f Â\1f\ 5mOÎÎÆÖÂζ\8c\81²\1c\ eÔÁs6´´sÙ\93òóY\92¼íàg\12¶\17\88¼%\963i:°¸F_mg\afn¤¹\89äk©\99ú5\8d§«»ÇÜ?¶ìqp¦\85\8aYûÎêäÙׯ\ 4_«\1d*W¿R«£Ô«Õ\1c+´ÞÁ_Î\96.\8fxþ\13¡lù¤´\ 5¶8ø*Òu2ÝG\1f{Ì\8e&.ïiSÊö|í)û\ÕÔ\95Ü-ÿ\92zy¾vªE-ß\13ÒGýD\97]ZÛ>¬\9aüÆ\9búª\91\8fö7Û\17`¸æÞ\9aªêJY-+¶ÉÖFÖofY\9fÛ/YO)\88)¬e\b"\ 3ëapq\98c>öWKW\9f{æÙ!\ 2QeuPõPT\1f)1\9a:\15Ô£§'MGKg?ÿyâ/&âÿ\8dÚNÊ\1e\8c\9d\84ýÇjÜ1õdÿð\a\ 6\99qdEK;G\ 1Ëv\94_4\11=+©_%%3£°Ãu¡\ 3\11¹\0UY;4l\185R\ f\ f\9eV\95\8fîß\92¥\8e6µ\p\Ý;o\9aûÆÜ?¶~6\86\9eYNÅ_L%íO±öU¥½·lì-ú\ü´Ô\7f\8b°§C®\83ë\b;\17ØÎ(\}6aqJ²¨\93B½\81ÏÂ¥5_\17<S3µ\19!6¿Ä\f«º_§.¯³\8aª_\8a\17Û«9¼\88\v'{\ fö·¸ËÊ;^vo\vU+W\eU§V\80é®|Oöîå)\8cŲ{ÕïzmSÖ\8b\86\17óè⧤¬óàbtõ}ÙÕS\=D cYT}TÈFSÿ,\98z\10õXOO\9e\16\96ÎzþKÁ\7f\12ÿ;\88;8;\18Û
-ûçªÀýñ\8fJdÈ\91\1c-õ\9c\1c¬úQ~YEv¬ü±\1aü\9c\84\9d
-ìü\1c\17=Øqj¼{\15\16vTñA+=8\97n&ÑÂ\95{vÏ\19S\8b{'~\18¢vãTf\85ú\93CÓÚ*ºÏ]ÌVR+&
-]\87Ý©.U(\16³\12±BÙØ[Êâ\ 5#jó*Jµâ\11ù5iì\97mÛ¡\1aîÕ\95§(>Ñ\9eòD\9düY\8e]h\99J\97*_W'.é\9cÚy\1e¨á\13Ù\ 6ct\1dwÒé\12\14íáqÇLUL\1d®7óhÿzñl/½-«\ 3±ôò7\8b²Z·\11\ 4[Ç[r( \84¬_LóÍ÷EÖbx±]X§ÁÅií¦äê¯\ 6W\87\91Å©¬6ª>²b¬©'Q\8f\ 5uòt°trô\7f\1aùÏ\ eã\7f\bÎ\9e\94í [v\8a¤(Ù B\8e¬hiçhaÛ\92ò+\aÓ°¢ÛU&a\87\ 2;\ 4"Ê×j5\13_\80\15K\8aüÀYÛO\97?f\84ÉÞ<å§!ämóu\8fæ\ 2\84VÐßôHÒVK_¥Ýq\17¾\92Ó\7f\8a~17X°ãZÚÔrXËK|ô£S:»\10¶\93\88\88âÓ±YîÐxÚ\15uÑ\8fcF:å8ó\8b¥®ë\1f³{V\15Õ©¦^>\9a\9dwPí¡×"ø´¹ÚÌ+Ü×Re\90Më=ÝíUW«\1fÞ\89¦\16ËzʲZO\92H¶\1ee=\96Ö¹Ñz\1fe]+¬óè¢\f¬£«ï\1fzöB]ýltuL«\8f\-T=\14ÕG:üE2õ êÑÓYÓIÒ£\94ÿjâ\7fÖ\84?\rÒ\1e\95=\1a[ ûOµ,\7f®ç?æ\10úç\8e£¥\9e³\8amWJ\1a\0M\ 3\9eº_E¶«\84df\14v
-D²¯\83°Åj&U\ 5\96\9a\94\ 1BÍ×¢\0R¡å3æ\8dtZNRô§ÆÐÏLÇ7\9emS¬\7fõ^F.}\15\85ý¶¿\8cÊ\vÕue\8b\86±j³\98UEs\Ë\7f\95Q/=ÖØ\85°Ïü¾\fÑA\97Ç\12\8baOû]\f§9Ev§èéU\15Q\97Eµ\14µ\1aÛÖ¿ÅèZ\94×Fز.PmÕfF¸,\r²iÝç{ÅÛÅm\12M-Uý¾Qõ÷\93®m\ eR\91õ}¥¬í\17s·(ë\ 5Ã\8bÕÂ:\aÖSÓ\9eqõ\14W¿þÆ\9bº¬\9eT=\14Õ±¦¶¢\16\9aN\92\1eÅü×\81ÿ\92\b\7f\10µ=)»*ì_\8aHâ\8fÍ@ \f:\92£³¡K#ÿf RÞ¿²c\9f©À\96¾\16Â~O\88kF~²ÔxG\18.ϳ\91¾\16÷\94x\r~¶¼sÌL\82\\9d\14ëYéé nÉ\èÙ\9b\94\94þ1åë·Ì¤ü°+E§\8b·ªl\ e\18T¯Ø9c
-o\bUkº\12ï\18g/\10¶9üÕ\91>ëi=IDö§y\9d)¶\99pv6ìs®ª\9dç\82?ÉT/\91P}\1aÙÊÀQµ¸ä\9cïF9øÚN¤\eå]µ\b³Y4.¶\18|/M\87P¡u!ë¯ì\87¬\9b\85µ\9df>\ 6Öc#ȸ\1eÈÐ_-\ýµ×ßxëíwƲºPõ\91\14\85©\aQ§zZh:Iz\94óß$~÷»ß¥ÿ\1d½\1d\8d\9d\84#\91lì?ù\13g0ðO*\8eVnþäÏÚÄ\1fËÚþµ(ô\93°C b|\9d\173y¯\14`ë¢-KÒ²¾~Þ¹k\9fó^GÅôÜ<6ó®V\99\vú^\v3STL\17UË\15Ja\97k^y}!©×â \9d\ 2Ç\1cø\89ÒÔEWb2µè!Ð\96n\ 6ôzØàõ\86°\9fo\87\12E\1e\91½éµ§\b²K]]?×ÐuªvºDëí/ÎÛ\83×x¢T]\94Õ¹:P\9f\8ez·¸\8cÜw2[Ýä{&üUOÕr"r.Ch\1ddýµ<ßÜ\93uùyó\vÓ\17sw/ëfa\9d¦\99\ f!Hh\ 4Ñ®\1e\87\16C\ 42\96ÕZÕGb<2¢4µðtÐt²tôó\11ÿÕ2þitv0¶\12v\1etüu\ e$<\92¤S\15-\ 4\1d\15üç\ 5\7faPÿQ\88;5\18NQzÅ×IØr1\13G\81óEé;ź#áÆÊÆÈ\b-äøã\rýu\88ô\15\9fê\87ÖþHã¨Yþ½÷5âßøV~³\10{"_\14Lr}N\rÜÉ\1e\ 49ªõ´5µÓ\96(EíJÚÏG\95²M\89m\84ý¢*u\95>ÅÙPÖ\94\9e.ÚSêM)/»Åµû ö\7f©4uë¹PMC\8c°ÓkC:°ªV¢v¯&#îâíN¾ÎESË\ 4DÍ|Ó¶\1eJkÙh\1dæ\9b+Yß}r²®§ ªoÏ+¬c'È\10\82¤ÁÅa\8eù\93O\ 5W\8fC\8b!\ 2 euȪ'U\1fIq4µ\16µð´´ô$æÿeâo\13Óÿ\8fÒ\9e\8c-\84\1dF\1d\95°\7fmÆÿì\ 4IÙ3ø[éçdã¿\\8aҷ׬2
-Ûóu\/ðý÷\1d\az˳ª²ôÝöº~/ÉûWÞ¢©s*Þ5y\1d\ 5õy\88o\97ßZûà\ 3Ç»î\~ç¯ê\7f" û=o\81Â\\»ë\7f?i\86íÔ \963¦\15»z\8bÆDméöÀé;FÚÒØVØQ ²»N!\1a\9bEq\9btYiß\14Â6\16u\8aë\85Ï\aû\80°=æÒ×~\1aR6
-Æw\87çì9Ð\8bâ\996;ñ\85Äz\89Ð|µK\9a¯¨Zé3+ë'ħb\84¬¯=qY{)\88WX\8b\10$\ f.\8e®\1eú@\94«\87\b$\96ÕIÕGZ\14¦\8e\ 5õäéPM'KgEÿ]I²¶0ö ì\90a\8b\b;tb«\ 1@=B(;»\85¡c¿`ÆëKÑ\r*\ 1Ý^\98\93\99ª¯\83°¿\97Ö2Q\1a´(O\86+÷[º\a°\8cC\920\ 49¶5Eµ\9eC`çæê\99 \89üzF¿\99:*ÿr\16v¹<a.®U[HÒu1¨\95\93Ò\S\17ó/^K£Z\85¨+ùµ\ e\18¡lSbçL$Y´¾\0ÖK/\19]6\9bSä\f}«ë\9c)\9br¾x±*\ 2\90WÊgDYÉ×Z_òú¾^Ê#^åjeuñ©¿?2Ï{y_¸ÖV$Ñ¿ï\ 4 zÂE¼û\86\1cd\9c\16#¦0Uß\9eWXç\10$\ f.~õ\89ÉÕ/½2¶\81¼óõo¾û^\8a@¬ª\8f\9c\98M\1dE=\9d,=yùï'þ!3ýAtöhìQØ~\81\9dâ\88<øg\ 3é¨éJÓà_¡Ú]ø[!léë\9fþ¤¶\96\89\94àw|¢·¿-VõsW\89Ê·qFtBØ¢ZÏ Ð]©\ 6=± @N<¨üÕ4Ù×ìF~ê\14ã\8ce\8bK¥³â\19\e\93ªù\17o\88.råé\9a¤ëÚÖ5¶olÓi'OÄËEUk{STsJ½\19EG/bR£§jñzeUíUóª\92oÄò~\1c\9fUm]í¨:k¶\£¸|+ó_E³é}UËe×ri\1dBë<\85q/d]OAÂð¢*¬Ãèb
-AD`ýÔÓ\93«_\9dêê1®\1e"\90PV\8fÃ\8a\7f:æ\1fCQ\9dM\1d\vêÉÓ±\9a\8e\9a\16\8aþÇ\92(íÉØAØ)\11\11 ¶\98:cÉ\81t´tµgð¯g¨õ\16ææ¿Ƚ*\8e¯ór\81åZ&UÙ\19Õ\95«°\8aôZ\11\95Ôðjª0ER\9d\97ü}?~ B§|² \91C4-¾ï\93ö#Î÷-ö¢\8cB^Ê\8b]ÇQ-\1d\93:Í.&þÈM½Åü\vÛQÐÆk£´5¶ªHg\16}yM\95ÓÚѶ\17EéÚ\1aÔ,¶;[VëäÅ+襰kº\16è6\1f×\ 3$\8d²:©:zº|èë·²Tnû\ 1Ü\aª¯:]ÃréÌTZË\1c¤\94õc'.ë5Ã\8b^a=N\87ù\92\b¬\9fxòéa\8eyáê!\ 2 eµVu6µ\14uðtÔt\96ôÿ\1aøß\12Óÿ\17Ê\ eÂ.|ý\9f£(ã\0`êÚ\90\ 3\85\7f)4Ýê\19\\82±wn\aÿË<ôYóõO\9c¥L\1c´'³ì\94¯sy-\97\88\92®È\15\94·:{ø\94Oú\92\8fº¾õz°j\12\7f}{Í\f\7fõ\17rë\94Ø\89X\ûQ\88\1eÖÒ9iñæ-»?Düñ¦\9a\80Q\9b`é7N\9aÞJ¥ìZ*R..¢GñD1\9b5çD\99F\14]À//\9fw\ý\8axxW×Q\92¥|]×ÂØâ\17\9a!\12såùÑ[²tí\85εß/
-òJQ\1d¯â\Z\8bÐ:Ëúy!ëðÅÜ}\90uux±(¬s`ýô¹ÁÕ/\vW\87¸z\8c@~\91\ 2\90AÕGV̦\1eEí{:Y:øù\9f\fIÚ\93±\83°\v_gS¦\81?\81´´Ó3\98\9b\ 6\7f×àoJ¤¸e7x\16vðµi\10É\8bO \136\89¾K²+Öô\vº~C\14xJ\ e¯ç\e&æ\1fù[>ß\15\9fòù¡·>¬\9cÃ?»±f¦¿Ø\ 5Õ<e\97M\11o\b¢+D·#:}p²\9aK\86ÐEµ(©\vM»mã5¬´}e\17\v¾H^\97u¬\9e4í\90}\9d«w¿\ 5ŵµ\18Õ\94®Î\ 1HÙq^¶\95»º~Áy2¤*^\ f\19x\11\88¨ªUrá¾\99\15ï\97ÊÛ:\88+M/Ä\1f\88U \84¬ßÈËî\19Y\7fñHÖ7\9d´¬k)H½°\ e£\8bc\b\12\ 3ë\17^|ùÕ×\8c«\87\b$\95ÕRÕÑÔcE\9ds\8fàéTM\vIÿ·Àï\aÂÿNÎ\1e\8d]óu\16v\1e÷\93ã\86VÓ¦g°l\1a¬à+¼Ñ\fîûZ|§ÌYÊÄõd*\fÄ\92#éSrrÉì7¬(^\8fõå[FÕ±¨\16ßò)?\8d)'ð;êno¹Ù~¹\ 3å*²ñ\ 5Au·4_¼Ík·\19SôM½ØÒ\95é\19ÊÚZÙ¶%»\86\8a;ê\1d)¦\ 5%ÚÚi?©UÖe;\90\9aÆ)\edÊøEùº¢k¯ÛåEûÐ\94\11\88]\15OÄoÞë\99z\8fs\87Nlx¨ã\8f²nøAZc-·\83ä\95\9c<Yß2#ëÑÖÇ\93õâ\14¤QX\8f£\8bc\b\92\ 2ë\97_yíõ7\92«¿û½ïÿðG?\1e#\10£ê#-\16¦\9eD-ëé¨i¡èßÿþ\7fÏü>Y{2vòõß\15¾þë\1cF\14ü\95§é¢gPµ\ræÖÁ\12Oߦ\17ü¯r«JÎC¢¯ãò®\8d\95L²-¥&\7f\94Æ'eg¿\ e\12Þ\12·\99ªáÞ\8aªþ¦RõXT\8b\8fù¨¥\b\15ÖÜ+HÊþ¡ú~æ\a\1f\88(¤\16\¿T¯äôÄ\129¦\18Þ#\84©õ|·\86\93\17¡mªìʲCÚ\88ºm°: )ªv¯´nÇ Nam\í\860N\87b»\9a\7f^ÿ¢\17uï\91ùÞ\96\l:«ºH\98Ý\0nfÔäûnM-«\8bS)kwxÑ)¬ÇÑÅ\10\82<ólh\ 4yëmëê\V\17ª\1e\hE]xZ8úÿÐdi\8fÆV¾\9et=ú:\v;\8dúEòÀ¡Õ´ô³Ó5(\9b\aK¬¼£²Ë^pék)lo%\13O\92ÂêYØù]Né:ù:×vñ^|;\8d*jU\7fß~ÍG,t\95\90\vxKq/$\19;Ý/b\ 5Ùo§(ÄÚºÚ:î\15rÕ¢ú\1dgÉ\93\15^vúzKm\eg×\97\1dÒut=<ÏÂ\ eºvJëÍ
-kãê²íÜëv©ëZãô\89ÚÙW¦ýH\8c\95\14\82\95/pRÚÕa\9eÂÔöýî\87yõ\87\9a¬\9fê/k7\ 5q\86\17ca}ËTX\8f£\8bC\b2Í\86\19\ 6\17ßxóí¡¿ztõ4´8F AÕ\7f\91TL]\17uòôèæÿ³$:[ú:ä×Ú×\7f\93\aþls\87§é¢gpêJù{\87Y\8d'gçVð¿\16¾6ã\8dê#eÅB&\85*³'\7fúSݯíêú\9d·Õûx¬ãÞ)T->¼öã\1f«Ï®\89õb\8bå»ÅæV\9e,?K\8b\83ë§ÍOòЪì Ê\9f\9aVÃ\8ceã¸*å²\1c^R\15£-ª\85©Wzº:Þ5·LGÊv?·\9f»\11\9bç\7fç\9dtB½\ f6¼ìOb´o\1e~Jd»dÒC¤ì'¯eåJغ¥¿2´ø®l@JUõ\ fb\b§\962ÖÉ[él\ f1j\92þfúG~¤î\9cñÆ\11\8b\83HY?ÒIÖ\14Ä\ e/:\85õ\97\1fL!È\10X\7fíõ7ß~gpõ·\87¼:¹:\95ÕcV=\15ÕÆÔYÔ®§G1ÿsâ_þå_Òÿ\ eÊ\1e\85=\ 6"Ñ×¢=ä¿ÆüØéÜ\903%+=\83EÛà?h<\85K\8b\17sw´¯m\7fH\12¶·\8e\89\87]1{¼ê<]'_\87»-Ý\84ò\154TÕß\8b\1f\89ø±úî\9aü\88±³x·ðö<Òëâå@¯nåÛúuýqáª\1at½\98ULm<Ý°®÷ß¼\89\18v)\0³ÊK»ÑDøÙyLèZý\9d´\14L^ýû5\95\82ÔçÄÔ
-kgAi\9b\9aK_WtíÌûy©ø5oè^ÑÉÕ²¬\16ªN\96._ËôøÎüð¶/}ñZ\1aG\18÷_ÖõáE\9dX\1f\15ÖÃèbè\ 4\19\ 3ë7ßzç\eß\14®\1e\86\16Ç\b$& cU\1d\8bêÁ\88MQkOÿKà_'Âÿ\vÂ\96¾6qÈߦº¶ìÚø\9d)§Ë\9eÁÜ5(iÊ»\90xT¶ñµ\89C\92¯óÒSÒ\85\95O\1eÈ\8f\1cèõü²®s\13\Z,[\95sß\90ia\f@Ä÷|Òg"ÄrW
-ãí\15\ f\99èlùj`?ÎàÛÚÎò)'\ 2ªù>r¡ä¤êhÆuå²oêÊÊ\0µ\15,Ü\15
-\97E,É×_Oëv½%d\9d\1fb²°.\]\84úÍáWYõ\97y¹\88ËÅüIyN\9c\13b3\90wS·hîA
-\ 3&ÑÔN\1a¨¤í\8coÛ\1e$ëi¡ë\'¤Ðz\ fd]\8d¬M
-R\f/z\85õÐ 2\86 !°\1eæ\98gW\8fqu(«\87\ e\90 êTSO2l\88:i:8ú_ÿ{"K{\14öèëßg_\8bî\90¿M#\7fª[#\ f!ê^\94Ü3(úº\15\rs;\ e\97s-íTËÒ×IØÅ:&\15~)\92\93<\1d2ë:wÁ%_ë\17îoª\17Ð\98U\97\1fôù¥Z\94P-Ûý+±-Þ#Æ¥|1ð?Íаµh|(§\ 3¾Ò,ª¿!WßT\ 6^+êÚ²-zN\9d¶\97=\ 3ü*=èº\\16W~¶²Ú÷ìÈÚV¼ox=\8d_/;ÉË\bFÏ«wOÉkÞØ¢tu.«\85ª\93§u(hFnd8¢Ä-\82\ fS¡Ç¿õ#ùJº¯²\96\1f_Ô)H\9e½\18>æå\14ÖÃt\98¡\13d\fA¾þ\8dapq\98\v3\8c-N®þMrõ\98U\8b¢Ú\88ºH>\94¨\83¡ÿG&+Ûø:ë:w\87¨¥\9fìÚP\7f÷w"\8f\11ݶ±Û´x{æv%\1e\95\9d\84Ýôuþ¤¤\90aåã\aæ\v\a£¯¥®ó\84,ýi\ 3õÎT\1d¾\12ñìê_ä/ú\88¥cËO.\98\ fåTV8´ùI\14öÏå´ óa\86\8aµ\1c4yÊÏ×
-Uç\9cZ\8aºjǶO]KWÖ¶rknI¥<\17?/t]~¥A\87ùÆÕîj{FÖJ£êK-Å\0gÖµ×9(?R\90çÒë鲦\ fä=Ù0*\-M=7¼m[\92t\97èO
-O\v]çÒZ\8e0N\8b\83L\vZ\87Ï\9bO²¾÷Äe½*\ 5\19?æå\17Öc'È\18\82L\83\8bÂÕS\\9d\12\90XU\87\9az\12bMÔÿ¬D\1d\14ý\7fe\92³\95¯\8bôú\1fÒ\84tÙª!:=þ^\89:Yú¿edownð.´]S¸\9c\eÿwj¦¥ãë$ìßü¦Ð¢GþÀ\81hÖ\ eº\8e\97^Öõ{æ\ 5üÝü\ 5\8d÷e\ 22dÕ?ûY,ªó·×Ôr*î·\16Äãeþ\8d \85óR×ÕØ]µ\8ck9daëÉ\99&ÿ\90Eu\16õ\ä¼\Õîê\82ïWܽ\8a$ì÷âIÌ¥µù\ 2\9aqu¡jÑ\85.×TzÅ\14Ö~³\8c\10¶\18ß,£ëò\ 1ú\8aïêw´«C]ý}Ù2úS9Àm¿UmÒ4Ù\8eTö\89fA\171\8a|¥seýÜ\8c¬?ÛSÖåðâ¸Ü\9eSX\8fS\17Ç\ eë!°\1e\1aA\94«cYý»ß\8dª\8eEuaj\95Q\17¢\ e\86þ¿\13YÙÂ×\8e®ÿ1¯ R"\92\ f§\15E÷v§?ù½#íyoë\99ñb%\13\7f!\13ù\ 5\83\8c^Ø$«ò×¢÷oª®\7f2~;,+/\7f\88F&§ïÅùbï\8bn½\1fý(~'ó\17¿Ð\1f_\13ëÇê/-Hi\97!\89\870¶\fqÄ¢V\vl\1dçÏ«Å6ä2Hªÿ#\8c¥*S\97Eí\ 2]\9b¿T,Ca\97Ýr\96 ¬,¦(þ\81Òña벿®¾Ð`{\1a³«Ë\95:ÌäNoÜ/¼\84Èn\19ÛAî´£¨\ 5\r^ÖOPñªSÎ\85\11ïvßUeõOÓ\b·þ0ª7°]F#%¶=ÉØz\f?\10\8b\83\84¯\ f\1cGÖÁÖÛ\94u\8c¬ã\8c\18Ýd=\f/NËíÉÂúɱ°\1e§.\8e\1dÖS`ýã\9f\fýÕ\93«S\ 42& ¡ª\1e¼8/ê\7fU¢\8e\92þ· ¡ìèë\96®ý¦\8d\7f(*jÓÚ-{»í\84\9cß{\95v52\11Âþ{ÓYè,d¢W1\99û,\8døº\81ÔµÊB\92®¥\81&ã¤\ 1x\99\80\bU˯¯\95_a0\e¢ß\bÜEi\85ÅS\82ã}£RÙú=ÇÖbõ"ÉkÒÔEþ\91Þ'Þ«e\ fëd-U5m×બ\9aXŨýÛq\1d\9þP~i"»Zªº>\15ÿÅbY%ó979
-«:\11Ý~\14÷ùY¾ë\88¥\9b¾Y¬o ]\1dUíw#©aí2\19i5\90êæѽ\94u3²\96ë\828Ã\8bÃ:Ö·ß1N^\94\85õ8º8\85 ßùî0¸8¹ú׿ùí\14W\87´:¨z2õ?\8dRT]ÔEHEýo\89\7fÿ÷ô?\93¯\eºNë=\15\88é\92Î\b§éî6Ò.Êl\97b%\93\7fL\8dàj¢å_Ë\85LÒ:&åçiþ<\7f\vAÈò·ªU;èz¨Q§Þ
-¥k)£I6©W*ö\80ü4|)ó\97úók\7f\96\7f»ZiEHÛ¾\ e4¢\9bèìÉ×\7f¢×GÉC¤&¶¶\93ç\8bÅNä\92uªÿ#\8f¦fSË¡AW×MYgWgS+MצÓ\95k)ú(k¿/WûÖ_gx«(¬õº)͵¥KY\97\9fÞ´]\84V×v 1>>+o;ñ Z4\82¨i³¢Ã\7fRuöt\15©(²\95´½Y\vÑÖb°dÿeÝ\8c¬¯\f)HXÇzX\15D\17Öãt\98)\ 4ùþ\ fÆF\90¡¿:ÔÕ¹¬>*e\8fä8\15ÕͶ\ fiê,ê\7f/ɾ\1eËëA×ÿ<õò ]G_'e§¡?Ý4h«|ÕÝm\9cm\93\91ÂÚæÿ\eaÿ\83ê,\14¾\16\v\99,þ$\8dZ*{ª®§\85üÆ\1a5\95¨é£aÙKqe³ïäù\8a©¬\16ß_ûú¢ñ_æ\8f1ÈÍ\10e¶\rj\14eÜ\9e?O\99\12wý\98ñl-í \84m\96<Ѫ\16!}2u»w£\19Z§¿¯T-=]\9fOçÑ\U.êú\8fÌ·\19Ü\89\9dò\13ÉÅ\92\84ÞG[ª\v\96¦\96\19±÷Ò×r\90S/\16öª%-\e\96ÞvÜÁEëê ê`ê èb`Ä7¶?lø\17µ®si=Éz°µX#u\ fd½4²N³\17Ãðâ°ÜÞ8y1\17ÖÓèâ\18\82L\81õ8\17ftu\8c@ƲZ¨º6\9ahRêhêÉÍÿ\8fFû:U×¹¸Nº\16KªÊîé\9c}\84\8aZmRnï¶ÎÖ¹Èïg\11Æ.}-ºCþ\8b\¢O\7fy¦B\94¥èÔ\ eº.\8aëïæ;^\f\88}\90\86ß\9d²zúª\8fú\0\9bùX\8eÞ
-Ue;+\88\97Ò\16ãæë\94ÊÖbâ¹ú\94n^¯S¯]÷\86Pµ\8eªß[ö5É%#\8c²°VªÎ\9e®Ï§«cõ\1d\85ý\81\êÛ]±|þsöY×ÑÖ©´N²¶®öº¾SGJ¥¸\16\1f\86\14KÀ\9aÎ\1c\15X\7f;7#}ߺú\17¶w4õEigÛ.£Ù9ZI×Siý£\14\e\ e¥u^#µ-ë\e:Ⱥ\88¬½\14$\f/\ e«\82\8c\93\17ca=\8d.\8e!È\8f\7f2\ e.\8eýÕ¹®þÛ\98\80HUû%õ\7fÿ\1f²¨N¦\ e\82þ\7f\13ÙØR×&\v\99æ¡ÿ\93\1cé\13\1dÔb4QoQ\9a\83ó/iþM\96¶ãk#mÿ\8f¥°ug¡öuZyê¯Êµ§ÊïÑü§´\8e_XÈoZ\17jÈB¢öDãòwÔÐÕ\a\1f\88N)[VÿêW±ª\9ejj±@¡Ý
-×Ø&to\8c\8dzÝ,f|ÔÎÄ̵\9cX\97J¯0*æ¿Dë\bSÛö\r£k-ëbª\8a\92õûñ\99§VâT\8b&ûKÄÖfÚ)mGa\97\9f\97h/õý\9cü0\83óY\86ÑÖSií|,Y~µÅ|Öþ[\9e®m\17\9f\93N}tµ\fAÞ7\vÒè Y\93ªu÷ª\18\11ñ\8d]\9d\9fetý³"{\es\10+ësû$ëjd-S\900¼8
-\92
-ë±Åzì\ 4\19B\90ipѺz(«£ª'/ÖDLýoÉÔÑÒÿß\11ÒØS}\1dÂ\10Y\K]ÿÿì½ù·_åuæ¹R«kNWgõo]]\95ªêT§Sq\12;\ 1cc\83Í\ff\1e%\ 6IL\92@BBh\16\9aAL\1a\0\9b\19\fÆ\8eã¡\12ÛI*\89\1dÛø¯ë{Þw\ fϳ÷~Ï÷{%!D~\7f1FÒåê{Ïù\9cç<{ïgÇf\8dï|gHj\1cÂÁSó\9a\81=>1&0æ\98\9c\84Ý¿/R\8aÉð\18.Cîê\84k\14×z\11Â~ÇMðÚ.M\95¬>\84{},H¶ü\1e"±Éq/ª¢Þ\9f8î=\@kÅu\113ú@mU\a=\uÕ\ 1¬#ª\81×Jk|?\89ñö\11ÏÛgO\81q#v\15ô\9dã*V§Eã¶\96Òw½¯HëfZ\8f7Ûû»Dà5Mç\80¸\86í_\FH¬ÞP\19ÖÎj\93Õû¤\7f´êô\aG\r\80½$²wrÏè\12°¾â\82Ázõ\96µ÷\82t\17¤\95\17§¸½,¬\9b Ò\fë6cÞk\8bÊêÉ\ 1QTW}\1f ©Ý¨\ e¤þk>Àëïu\'/ä- $\1dÊô³\87Gø\8eª\81É÷\92\1f\92\91ýv<Hì7R¬+ñ:$O-^%\96bW'/d\12×»wc[\88/P§Pv\9b?ÐÞêÝ»EV\1f\f+Ø|1Cõ-\ 4`Çúcâ¶ñÚ;\ fÅm\87Á\9eq°\ai)\82)\ fú\ 1\10Õ\19Õ¹Ñ\8eq\1d\84õÃé\ 4X\9b°öìeÌ\89K3\193'\90[\81\8dÁ±)çÛ¶2à~Ê[y=å\8dx:®a5¥\9aÖº\863îmÁ%ãü$ó\86ï$®\8bý
-¹;§2AìZ\84Fÿ½Úêïë\8b:H ö>"vÑîç¸~æ\19*\94h\85ñó\ 2k³¬K\17DÊ\8bIX·N\90]»÷öF\10cõéÎê\15@"ª\vP\7f÷Ã\ fKQ\8d þ¡\1eçµ\9a!ä\85X¡ñ-3\8d\19ÔcR\ f¦%?XÀë\85Ç\81ý\86×>Ù\ e9I9&\83Åaø\v´×@pâºY!;\9f±^8]àL¡ìÖ'e\16\bÈê#G:ª\9fÇýóy\89\99Iì`\8aÄå<\81Ø\84ëNk\1fÃ\1c\15\19)\93ªH\86Öø!EµZÕ\91ÔUÛ3ÃzÀêHk\10Ö\18éi .çæB¸E\1aäPb\v¯\89Ö Ö\93°¾÷ÞÀjCõ\8d°ùÝpm´&\1f$îL6çÈ[Ê\81×Q\CÏu®%¨CE¬\1e\99 Û«ùÙ\ 30\965òÔ\9e-M\91\12Ù!í\0|\10\84õC#X_zAa½¼e\1d]\90¯^ÞË\8b.¬\1fTa½m{3Azqñ¹çOtV7»ºÉjCu\81E\9cz!§ÚIýÃx\94×Q\wZ¿ë\11O¹Y\83Hí\ f\8f<.Y\8d·/\85ëwø\0±\91×Xm<mù|\1acRfOá¯\18°\1d×\93\17ÒÄ5[!\1e\17M\99ì[!^¯[ û`]¦ \1a\17Ð÷o\83ö\97%`s·H\806÷\1cB\97ø~¥õNpÛÑ\bÉ´\86\8d\84\98ÝÿÐ\18Õ\99ÔÔÊì°\ 6VÇ´%P\9b\8f§¤ü\9eiáùC0\8b1ì \8b3ÓÎk\8e¶²\19!sA\9a Ò\8a\8bÀjCõ\r|:®\9dÖê\83L°¾O`\8dÂ\9a]þ8NùðÃ\ f'+¤,%\94¬¦N\106A\ 2«;ª\ 1Ô©\18BU\10J×)\83\ e\8a¬\83Ï\19¬+˺tA ooÍÚÞ
-2 ëÖ ¢\86õó'^\10V·Êb\97Õ5\17?\8c¤.PÝñü7~\8c×$®S\9dÑðÈ\aºôè;Jcí4Úî¸Æ\86¾\85 Î\8d\7f¥¼öEí\1ec\92¢§ò"\9a\17a\f²gd7qÝ\10¡µ\8aë\10Ͼu+\94s\80Õ\a5\82üx\lÜ¿\13zd$\85M½,E³!4ú\19®qÿ\ 2ÛÖÚ&®-!>½çi\9d\0j'uFu\9e\1\ fßh\r¬\8e¤&\wZ?®}ê\9bá=\85ò\87v\10¢\17t&ÀÌ´ó\1a\97\98\98{/\96õ$¬Å\ 4\ 1V\vªUR_ïGpí´6\1fD`\96u`uÑ5Ó?%\15×\14\ 2H\v'cÝ÷AvY8\96ÆM\90V[Ü\ 3#´\86jÅtî;*\80m©\a£Q\9a0\8c\85\8dÖ\ 2ëic®Âúê\8b\ 3Öµeí\8d{à\82\\19]\10\15ÖSu±\9b ¸Øüjµ«WøøöÛ]UW\ü¨"µ¡:\91\1ax¸\ e´v+äíÔa÷Ö@T'\89ï\83í\86ëJ\#°\99Îïâ\81ßɼ~\9dx}\1aSLf\8e!\e¦ E\OÎukâ3ãZĵW´[a\9b½u\82]}H×E<\87\9b\8dó>Ê°¸Ì\eY\9e#`3³\9d×6Ñô\1e\19!Hk\8d{-6¬[W4\80x\8b\1d\82\9a§N6ÒP÷#\15ª¡ïØ}\10
-Ë\7fÊB-0\80¨Êµ¨{\14¨ù7\86|3¬'\17¤ ëÉ\ 4 ¬6QÝ\18}];Æk¥µJk1\ 5Öi%b¬È\96Ãï3\95\ 4ªüR\88:\vk3AÜ°fV\1f\1a\8cÑb\83ÿÐ\12\19\8dѨ´\1eÀzíÅ\ 2ëUYÖ}"¦pA\82°>ðl3¬O¼ðb«-*«EV#\17Cà\87\r(\96¨\16>ÿÈ\8eá\9a¬\90\92Ö¹eãí\ 1ª\ 3¨\91×\88ë\fëê¼[\1c\ 3ö[oQ+8O£\8f\97\86¥\ 5b¶¾¬áZÄu õN\88H²Þ0éV\90\8eÖ\9dÄjÚmìKè_\19?.°ï04\1e\16Èθ\ 6Z£mý\14å\9bx'Ä\ 6_\97\92\17®¬\8f¨\ 6QM3\86O\0i¤\9bX\9d\97\ 3<\8c_ÚÆ\8aʬ8\8cµ\80\\8bâ¼\ e\8då\88¡nÞ7XO\96õä\82taÝ\rkcµ¢ÚA§ã\1ahÝ¥µV\18Ã\9aûGØ>Ja%.®×çJBÙ¤\93\17^°°6\13dW\8a¦\11Tó o0Ö\ eg^S¸A1CãÒºÕ´{£õç\ 1Ö³\96µNĤòb\14Ö\87\8ftú÷\81ôÒb\97ÕÂÅQâ\aM¿\14¨þQ8\84ëZ[+®ß\ e¤®P]ͶK\f\89ázà\84Ì¢:4j[ç_²C(Éd¼ü1n¡Ñ\90\91\15RNâºÑz2®±ÌØÅõvo\f³\1a\98\19\84»ú\80±úxØ\98©kèë\9de±ë06\8aG`#®\vZ\97ý{\81Ö´Ú\90â<#Oqn%dv\94\ 3Ý\10P¸>\9d\10W\18V\9b\8c\ 2\88\88Ðûø0·ÉH\r©\15\11Ö"¬'\13$²º\91ºñùZ8\1d×@k\91Ö\93iÝ`½Va\8d»Æ\83Ó¿1>ز\152Z \1cX=\14ÖjXï\83Ä\ 3\89<ÀÌ\83ÊYc^Ç0È\88ëÝ\10s`Q\95+\1fs\80õí\9f\ 1¬\175\83Ì[ÖS.HpAf\84õK/¿"={Âê.«\ 3\16#§uü\85¼j"õ\8fÛa\\9b\13\12\1a®\85ÖÙUV\9a\ 6V'R3®W!3©\89Ø\91×8Üè\11Ø\8b\ eDd¿ÒÍ\90I\OVH õ.+xÇHvoh\ 5V\1f\11V\8b¬ö5ô§ªg\ 5í\98\84&ñç\87À&\\1f\86µ\vû÷Ï\18!\9b`$D\93¹y\97º\bSDu\8cí@\\e¬KV\87ÿ\0{áE`~\91jQ\ fK\a\84\10@Bh¬E-oì±Vê\82\88°\9eL\10au³@\14Õ\8dÐ×è1\\eEZ«iÍ°6a\9d\8b²\ 1×\ f\87JÂ\ 3\ 5¯\1f V/!¬÷p:\rÄÓ\1cK§.\85\90À>0óaSI{\bë\e>#XÏÕ\17g,ë\96\v\12]\10\16ÖÏ\1el\9d Í\ 4\ 1V7\v\ 4PMXô´\ f\1cT$YM¤\ 6^\ 3\83\11B´~'\92z\84êø\r}L¸ÎÒz\ 1¬\9dÑïÃ0¤ñ:ËëoS\ 4ö\82sæL\8c\84rZ\1f M!;Ý\ 5Å@ö\1dVËi-{Ï\1a«Í\ 2qTÓ\ ea\a¶w\1c¦\99\9eçGÀ¶;Ìi½HZ#\1fY {=ü\15Q\9dâ\95\8cÖ\9bd<\10\92\92\ 6\8f\83P¹\8c°~*o®Ü\13f¥gr\b\ 5")\85Ð+\9b6\ 1¬{yQL\10`u\97Õ\8dÔ\1dÒW·£¼î¸VZOÒºù \ 4kw\94;Ñ<¤\80ë`\85 ®\8dØ^\0&VÓ<L\16Ö\10ú\98P\9dS\17ìzb}M¼¦ÕF{ý£.Lk ´¾(a\ró\8bC˺5îÕ.\88ôX«°V\13\ 4Y²\9a¨\88Xü>\92º\92Õ?\8eGq\rF\bµ[¿?$*Ìä «ËÄ(È÷ËÒz9V\ fF!gxýúpaXµ\83Fp-VÈd\\aZ\8b\15bM\ 6ÞWö\8cß\19\91Õº\89þdßïsÚ\83eYÙã~É\11®\13¯\89Ö\87bn`MkËy5å»!\80:Vÿh¾°\bÂ\ 3i\9dØ3ã´¸#\ eMÂ\18A\14\12\88`\0¯\9aÀÃ\97õ}U
-¡ÏÖi"\\87µ 멸\b¬vT_ÍGq´\9e\8c\90&\9b\ fÒ²A\14Ö\ 2S1z\8a\ e\9a\8dáñ¶aðM\a\9b*«er\ 3a-&ÈAÈ\12;ê¤\ eïk\89×Ü Rì4Ú»×\ 3Ä\9e±$\9dÏ\ f¬{}Q²¬³eýå\0kvA\X« ¬vT×zºBõ\ f3ª\7f²r\0×sÒz@k\ 5é\18Õ\98\15%-Ü,Ã\17N ÈêÁèzÜ÷\8bÃè3\vÃx\a\ráz\85\96cZ+®mòbÇ\ e\88_\18²Z÷\e\9f>\ 3\vßi»ä\ 2\\17¼¦\9bë\bî\9fÜ?î\bñ%
-&~c³\ 64A\17¨\ eQxDëMôµ\1f\9e«a"\1f\rÒ\10zÖ«Qi\9e¿;\94Òduò~_\84\88\9b©\16ß¹N`ÝY}'°Zeu'õUx\14×@ëÉ\b\11\1fDaý\90ÂÚMy¨ÌrQ\16\1fp\9cíDÀÆ^\1dfõ¬°Æ\88^Í}DP?W_RG\93\1d\92\rl\11×{bÆÁÅ
-ëa3H°¬ÿ+[Öì\82xy1
-ëÉ\ 4qV«¬®\98È Æ\19\98$«\7f¢Çµõ\ 2i\9dhýî\8c¬NßU\15Å\9a`]´X\ 3¬\95Ð4¹ÎßZâõxóLØAã\ 1ÙJë\17¥Ì\b´VãZ\9b\f|\8ençN\171Èê©´¨\16\88 \9aÒeÁW\ fËÛÑ\v\19âÚ´Pm\84TÒÚit\98\19\ 5§üWKí\88\99¥\1e\92\943í\%R{`Ak\9b\95Þ\92»\19¨4Nß\rf:`ô>Í\aÁæm\15Ö
-kfµ¡z\ 2ô7í\18®\9dÖÍ\bé%FíÝ\ 3e\8d\15T*Í*®g¬\90ÔU\99\ 3\0Ò y\16ÖÌjQÕý\1a\8aqbÎëZ^WSé9ìÑ{÷.vX§f\10\v\ 6\11Ëú2\84µ¹ ¬\ f\98°\16\13Dj\8b\13«\1dÕ\ 39\9dP\9ddõOð¬FZ;®ß\ 5YÝY=\83j\ f\8aâÜlbu=\10c°fT\97£ëïÐôÎâõ3\8eó×-`¤\89ëÉ
-i´îÚúp õ®°Bc§¥\9aíñŮ«;«}Ãñ«\98.kÀ\ e«Û£¸\9eÅ5Kk¥u!\89Ö¼ò\86Am³Ñ\80ê:µÔpí°~üñÔ\e8D\8eÒ\1a_ä«n\ 6X`y\90×¢\85°\14\1cæ,æ\83ôý<ÂÚY}\9b²ºÉê Õ
-êoÈ\11^w\\eŵ6ÓZ`\r\11Kè#Õ¸\ eVÈz\7f!¡§\fõ2Â:¦ô\12¨Ã\85µ\80×\ 1×DëÏ%¬±\19DWå\ e-ksAº°Þ»_\85u«.\9a ¬.\13O\99ÔЯ\a¬þI8ciýa\92ÖtÞ\e³\1a¿/\82µ
-ö\ 4ëÁø"Ã:\ 6C!¯Y^C>ß\12Kh¾\ryP\vi½\ef.lVc\8eÕ¯È.¶3¶§räÂ,¤uÄõrÒ\1a\8c\10¥µÛ\15)p\9aIm¨æÔR
-\8e\86üQ\8e\1f\1d\8e´§Þ³\ e\1c\865t3è¨tè\13\1eoü9H³÷°¢\8d7o'X\ 3«¯\15V+¨¯lG\81=áÚhÒÚ|\90>n\1ea\1d<\7fì¢Ù\bO9\13×C\ 3)³z\19a\1dXÝ1\9dÓ\1f£
-\18ÊëP\1f\0\1f\84a½þb\84õ \19Äë\8b\85e\9dzA\9a\v\ 2ÂÚM\10eµ¢ºä4Æéý°buDµÓ\1a¥5ù \ 3Z\13«\1dÖ\ 1Õ\86k\93Öa\81Ø\80Õ\91Ö\ 4kJ\86J¼¶\86ðrÿÌp\9f\ 1\88ëÉ
-\11Z÷\ e¾CDëÝ0Ø,-À\82\14`õq`µÊj!õÀ\83)hí¹\81\ 3m=\92ÖèZ\83\11ÂaFqAÙ£\9aá9\9fZª£@\8eë\11¬iÄ#ÕÉxªCÔa\f\ 5O#\1de\9b0\ 6Ê\86&F\8eâ\ 2X/bµ¢Ú8m§áÚi}Ã\r]Zßv\9bú \ 4k+\9fnBÓ\7f¹Ê¬tÑ\84Ò,±:í],\84µ\99 ÂjFuV\ 3³¸Îãè*\97\80õ-cXÿ\97\v\fëª\19\ 4ë\8bµe-½ P^<tX\84u¯.\ 2«»¬Æ\1c½\9cyJyMCVÿô§YZ\ 3¬³\ fò^fµ\8f¼'VÓ#¤\82õû±\83;§£FX\13ªËh(b?e`§H\13^\0\89¸6Z·*£Ï2>kæ\ 2mÏØ\150[4`¬~\ 1X\8dÛß¿\r~zÀµ5|\9fwi\9di¸\ e\v%ó2\80á*\80
-Ö\ 5«S¿pÇ5ÎKOÈi°~r\v§\82óHGì\12Î3Béc\906\1e§È
-F²°\16V¯ÀÚYÝQ=áù
-<\86k£5Hk\85õý\bk\9a¦×ç^.Ín\ªéQÚàs\8fú\93Õ[É>Ø*w¤HUÏI½Äë²\97\8f\86\e\83´no0½6`\81Ö\9f%¬WÕ\f\ 2ó\8b\7fòß \18¤ÃZ\1a÷´\17ÄË\8bS\8fu\17ÖÍ\ 4y»÷\81\18«©\8bzLê±\aòÓv
-i\9dLk÷AÞ«X\8dÂÚ=\90 ÷UZÇÝa0\eYM²\87¡\9b÷3ª9\1a\8a\v¡oÇ\91ËÁ±ô>¢õ+@ë£NëýZúV^{\v0²ú\98±úåÆê3¶\8fÞV6Ìm\0>'i=ÝH\a²´Æ\84WÞNö\18\9d°c\8bò¥\9dÔÛ\0×[,ã{\93õpW\91Ù:9ísx\1eñ9\11mB\ eÀZsVÀt=\ 4\9dgDZó\f\90Ý>\bÅu§µIëíÒ»ç.H\16ÖÊê&«\eªWøüu8\9d×@k\97Ö\ 6ëÞ\ e²n½¿5ø4}l¥1\\17´\96\9eÊ0NTÌ\13Q#ÍÓå\87\17X\r¤ö\98Þ"Z}\1e×iç\ 5ÚM\9f'X§ùÅ?ý\82\ 4\83\14\8d{ê\82ìî.Èñç¦V\90V]4\13D=\90 \87Lê\94z\8a¨.XýÓ\9fÖ°\9eWÖ%¬ka\1dÝ\19eu\10ÖcV§à\91ÙäÕa\94_á®\84£Àv\\13O\9c°\96\10§õ^\8b \80i\r`uk\ 49q¢d5D\81c}ó5X 0+\17Áº\90ÖÞ¹\16iÍË$åltQí¨Æ\1c\14ÚÄ\ 2Ò:äD\ 1«s$\11n:\11iÝLë¶\1e^Ä!m\1cÖ\ 2\99ï±Ô"k*·
-®\95Ö\1e\9bÈ\92¯\97¾:¬KVwYÝIý5;Âë\15\wZ_{m\97ÖÉ´6X«O\81ï(Äkê{Ä.\9d\ 5\93ú\1c«òä°¼èÂZüj@õ X]q]\99!\87\13÷\910(a½æ¢\80uÕ¹\97\9aA¦ùŲ¾\88\8d{î\82LåE\10ÖÂê\15a²\9az¨çQý7?Ê&ÈO\99Ö\15¬\vÏú½³\15Ö\ 1Ö(¬cE°Î^\9d\r_\1dÉë\ 5ùPÀrŵ\89ëNëÖo\8díÖn\ 6S\ e»ô\0+«½iï¥\97\80Õ¸\ 2\9eê\9bßæíd#i\1d`\1d;c\8f\92¢LÒÚ\13\ 3\9dÖ\96¼dÄ\96\80!\17Õ\80êbý!¦úsð\88\bkcuÈúì¸vZ+Ò\ 2¬u"t?¿Ç\ f\16Y*\Ú\87á´6im\14Á¤å\a\1fpa-¬¾AYm¨\9e\18}¹\1cá5Òº\92Ö\ 3X\87"mÂ5\89k\eYÚÀ \ e¬\1e ëø¤;\ 2û\8a\94Õ¶\88ÃWqÄ\98Þ\91wí]\92(©6°Ù`½ò)ß{ÏÅ\bëع\87Í X_$ËZ&bzyqrA¤ÇZ\84µ\18Ö+@\14Y½\90Ô\96\84ú£±°\16X³\v\92»A*Ï\9aa]\v뿶-\8fÙ\ 5AV×Ʋà:Òº
-Ê®\92²í» Mÿ^y-¸\16ZO=!}ò\1cbB\94Öû<0h¯õ\0#«¸8õ\81\9c9#²\1a\16VZy³ÚMv\8aa½HXW>H%\ 3\15×°û\17ãOÉÿpR§¥Y°1KaMÂ\1a7¨\87\bý\a,G´Kk©0nÕúbO0Ü·¿ð\õE>ö2<×w³åålæ¦nÅí\80\ fUÂÚY=¡ZAýÕv\84×\13®\89Ö\8baí\8b\15°\9f&·>¢¸v\Ç¡¥Èêå\85µ|t\86jÜÊ\91qÍ/,E\82ú Gòó\ 4kèÜãf\90X_\ 4Ë\1a{AZyQ\84µ\99 Îê\99pêp~T°z(¬Ï²æV\10\12Ö¾àq ¬ß}\17V<æ\96\r¢õ\0Ö\1f1¯CóuÑn\98\8eñ\1aÄusBr\91Ñh¸¶ð·ýVÄ9ÂÅÅÈêÐ\8eb¥Í$\a°\8e¬.§\18£´Þ½kgAë'½\11\81\8e\rn°¨.¶ÕÚ\ 6\96\14ꯩþÆê¸NP\96¾>\0qGê\83\b¬[}Ñc±`\93¥¯²ÌÕ1ǵѺÇpíÞ>ÈVjSh\11C\93°\1e³Z9§óÚiMÒº\84uotÙìKpú\87Zö>B¸\8a¯nx\98AíQ\0\8f\83\eÎÂ:YH,¬+TóÒ¢\80ë\81¸&i½ÛV*}¾`m\9d{ÿ¾ÃÚ\9aA°¾\b]ÖͲ6\17äØä\82¸°\16V\7f\b¬^\ 6Ô)¸i\fëÔ\f²@XW³\8b\85°\8e°\ eû\1dÃ:Þ´2\8cií°\ e Þ\ 3^{âÓð\0°\81Ö\93o=õ[«mý¼\16\19\ f\e\ 6)\88}?³Ú\rë©\11¤÷\81tVÓ*4Ãu¹ö×òµç\13\9dHX\93i\rá{»w\15´\ 6\Ç\ 3ó/\99Ô´\95Ö¥uØÀ¢»\r\8dÕ¸§[pí´nÒº\95\18\ 1ÖD\86Â\9a\95á ¨\8d!_\9e\7fÞ\17\1f\1fÖe?{÷î1Xó\1cô\ 3Ø
-¢¬¾FXm¨þ
-\9cÎk£õUWei\8d°~$Â\9a;jhõ:\8bkÆu\180ͬ\ e\9b\17\83\vBº}z\8eêÁ\92»\19/$Ó\9ag°¬w¯»M\17!¬¹ÍZ:÷r3H¨/Z\97µ4î\81\v2\95\17UX«aÝY\1d\8a\87\9a\9b·\80Õ Öµ°þÁ\12Â:Á\1a]\10h(\1c\bkbõ\9bysºâZiýnÊ Ë\r\ 6¸^\9aØj\9d¯|+Jëd[\ 3\11×:\ 5-\8d¬ÇÌ°Öâ"²Úû\ 6á}"Jë\0ëÄêç
-V\aXGi\9dhí¸&`{ôi\10Õy·¸ÐÚ\97\eâBÞ\rºÛÐY}/\1e¤õC®@ Ö}ï°\88\8f°A¿\15Þßm\8ffÜõð\96ìΩòu_\16ÖÆê Õ\13¡/³#¼\ 6ZW>H\80µºÊðü«qMuFõ#\9b\a\97"«)S%¹ YX3ª\8b\15s³â:Hk}\89;kX\7f:C1\8bÚ¬¡sO7\ fH\98ul\ 6i#1>k\9e\\10\12Ö\93 ²BÂ.« Ôp2©3«\85ÖÐf½za=\ak§õ\ f¢°þ\10a\8d¬NSà\1d×Dk\86u¹\87\ 6Ýk\aöÌa\\eÁ¶\86Ù\18¥õ³\10Ãn\81\15zC\88amÅE`5¡Ú»\ 6Çû5\84µ,\1a\8b\8b\b\8a`k\e
-)\97\10\94´v\Ó\9evLÿ¨I\8dëÃónC\815.\r\17VO\84¾ÇNõӺÕ\183¬û2K_äp4¾Ä\17oð¢®ã\1eÍ\bkßäÚ\\90&¬\87¬\9e\18ýe9Âk£õ7\ 2Í´\8e°\ 6aíK+Êfuj\81/&La'<n®\9c\15Öâ\82°°\ 6Tã\9eÒ\88k\16×#Zc(o\84õº\8b\1fÖeç\1e6\83´úb\v\ 6qË\9a\\906¼8 k5A\1a«\ 3ªm\83Àèü8Ãz\ 5×?\ 1V/#¬\93Ùk´\1eÙ ©\15$\98 n=@H\9e\1cÁµÐ\9a\8c\90áÖ°\8a×\15²ã/(¯åûYùn¢m}BmëNë\83\1eì«i\9d> V\1aÖÆj\1fø±\95\96,\11Ö,¬K\ 3$\8e\83\0¬\vim´ÞF\82\8e\8fu+$Rï\80ã´&X§=´Îê{è\0\1f\14ªeX\8bemÂÚY]ÈBe\8c\89ëc¶<"ÁZë\8b\ fÊ&×iïö$¬#«\ 5Õ\13¥/mGx´¾â\8a,մΰ\ 6VçþÇQ\\ f\aL)\ e\0Y\1d\855» ,¬û\aè¤\8eë£çÅu õ\18Ö\e/\1aX/ÙfÍ\9d{\83úbë²6ËZ]\90>¼(Âz2¬\8dÕ\8ca\9dA\\9aÕ?\19°º\14Ö¡wù\9d,Ë\ 2#\8f/&\13\84Y\9dÂð2ßëQÞ¸\8dÆ\ 2½+\;¯ç\8eò\9aií¶õËn[\1fó\860ĵ\8dA\e«Í\ 4\99\fk`5 \1a&ây|\92`Íò&´\80\0ªóz/»\85\86´6\§\13í\ f µm\r×Hï\ 2Ö\8fÀjCcõ
-\9fïö\83´îsÙ@k\84µl\89\87m\96Ï\aU\98!ó\ 2/=Ö\12c\80õ#Zø\9a\\90$¬\8dÕ\1dÕ\97Â\11\\vÉ\b\11\1fD*\8cú\fÒ6\17\\ 5\7@¢¸Æ\ 1ÓÇ\12¨CÆ\96×Ù\1eV/b\93\92}\80'`ys^ß\1cq=¢5]i´\9cès\ fkèÜ\ 3Xk}Ñ»¬m"F]\90îX\8baý\83\1füµ¡úÇÅ\99cu\rë%GÍ\ 1Õ\86ë÷\88\9eã\99\98h\82DV[\90\12\1cÃ5Ó:Áú{~J^\17ÈN£ê\1f\18®\95Ö¥\11Òmk§µ\1f\9d;j\e\17Ù\ 4\ 1Vë\18½áº\9a\9e\8cÂ\1a'\80ë]ç\9eet\18Mk\93Ö\91ÖÛ\1d\11\flOþ@R#¨ ×*·øþ\15qADX;«\e¤ï\9a\8eàÚi-®µIk\82µFÎ\1eÅu\96å\9ax\v\96UZ\1fó\9dÇMZ\e¬1gyMwA&a]²º\93ú\12;\8ak£5IënZK;H\82µ\bkj¬©pM9×aÀÔÇL\vVc
-xrAja-\1f\9e-n\86Ýͬ\15æi}¢\17\e¬\7f/Ázv&fܹ§õE\v\ 6qËz\9a\88Ñò¢ ëÉ\ 4QV3~ÇÀþñ<¬õOÔ&\b²:7*¿»\94\ fòýªºÈ¬\86@#Ï\ fM´6i=\80µóúÃÈë¹£¸vZ«mÝ\8d\90WÜ\bAZ;¯-]è¨\17\17Í\ 4é\865±:uwÓ4N!¬aú·$u\b1b\1f\ 4ÓL\8cÖ\80kMc²óTIj\ f\83Õ´Ábix\83õ£¶\80¥ï¡uVß\ 5\ah}¿¹»æ\83\ 4XÃ\b?¬\89\ f{â\153FkX\1d\81°Þj°6˺\97\17\9b°Î¬\16Rÿ\95\1cŵÐ\1a¤5\9aÖÒ\ e"\7f«Ç\1e\a\17\ 4¼¥\80ë,®aÀ4Ä\ 1PÊ\96Ô-i½\ e¬ó
-.\b k'5|\8a$®\93q\9dÆe\vXS!÷b\86u1\13Suîõf\90i~Që\8bËZ\\90\17Ì\ 51a-&H\81ê\fìêÌ º4AÜ°~7±\1aó\95*\1fäû\88êl\82 ã }kqý\96â:Ð\9a\94|±\947ðºDvü\15ǵÒZmk1B^R#Äi\rËI<²â\98¯\86é]{\93a\r¬\ 6Tcsw\82uÅêTQ\8c¨\8eó
-)\81ßií¸ö\1dí~¶\rH½Ó\8fÓz\0k\10ÖÊê ÑwöC´^»6Ãzk\84uØgùÒK\80ê¸!^híÒÚMk\8150¤[ÖwÜ~\e9Ö+°vV\ 3©\1d×\9dÖ\97_ÎÒÚ;\17ÀÚº \8b\8eõ\84ëùD\0dµí\84=¹Ô\vBÂúåôÀc\³\15\12&Dëb6%f]\84°^4À\88mÖ±sOç\17¾è\96õ˯\98\vbÂz2A\8cÕR'\84®\8ey^/duÕ 2X\96\v´vi]\ 4¤úÞ\81`X\ 3«1ÈÈ\8eáÚ9g5Ƽ\97w\ 1®g\8fáÚi¶5\1a!/0}ÞV\82ð\81Õd\82tÃÚXÍ\ f<\1a\9c\94T\923$¬\91Õs Ö<ç\14À\ fù\95»uÉ\r¬\90ÜV\9dí\99Ô\90\ 6ë¸Vií°î;Ã\1f¶\9dá}·¡²úN8HkM\13m´\96
-c\82µ½µô\85\96/\vdNù9yÒ\1a\1e_\84lÍ\a)`\r\96uwAHX#«W\0ý\97~\1a®\e¿ò\95¯\ 6Xßä\15ÆÞ»·Þ\87}4mú)x\14R\ fäÀºæùR\1a4Õ1Sdµ\vk
-Ü;½4õËIxGÁ>ÿè\84\94Òz\0ë\87\rÖw^\94°ö\ 1Fn³æÎ=m\ 6¡ú¢5î\9d>Ó\\90©o\ fM\90Îj\ 5uHd\1aóz\80ê\82Õ\ 1¬\10¶ô6áÚh]Jë¸"F;A2«\1dÕºñûÕW=N\94i\9dþsrl!/¹×K\ 2[p´\16#äÛÁ\béw\7f§µâÚ6K1«É\ 4I¬\1eÎM¾n\96ud5\ 66%L;ª\vXÛp<ÒZWHâØ8p\1a
-\8a\ ej\88\84Ý¥¸6i\1d`½Áv\867aÝY=!ú\8e~\88ÖQZK;H\86µ\96nûöaCõiÚ\ fï\1fÝ ÏK\9c¤uo\aQX·f\10µ¬[/ÈT^캳úr`õ
-¢¿¤§áZiýU¤u3[\85±µ\83ô¿\15Lf>\ 1Æ2w¬#®ã\8c\f,AçD\0\8f\ 4`Vcy±\9a\88\91¾ÇÈj\7f?A\\17¾5\87e\91´VX«iÃG\17;¬u\801¶YCç^K\ 6¹ûÞ5:¿8Õ\17ݲ\9e\1a÷Ä\ 51aÝM\90\ 2Õ\8by]\93:³úû\ 5«ßɬ\ 6Z\17Ò:m_D\13D\81ø\16¼ý¿\ 6¤6^¿öÚk#Z\9b\ fâ¨þxÀkdö¨×Ïqm´¶\8e\90Ón\84\18\8fÚ\16)[-å/\99¶o\0L\10`5\8d¹\87!÷ä\828«¹G¯\ 4uL°ä´a\\9aึ÷p;¸\ 4XI\8dÁÝ\8eë
-Ö\8fÓ\1aÚûÅ\ 4\11VßáÇi}\1f\ eû5\1fDz÷\1cÖ\9a\10®\9f®²\1aPMûá_¶õô²8¢ù \ 1Ö¾ø@Oî¼³¹ Sy\11\84µ°ºÉê/á!Z\93´¶
-c\84õF\83µ\bë²g}\84ë\14\b\0\99\0O\ 2«q!<º \a\v\17ä%|=Á\17\94\11q\96\7f6?ýó\ 4k\1e`ÌmÖ\97\b¬±\19Dç\17¥¾Ø¢¬_\99rAÌ\ 5A\13¤\91·áù¿ËYÌë\81»ý#fõ\ f2«]V\17ᥥ´æ\r\8c\1f/`5¯IÑc¸&Z\aX\7f\98a\8d¼.Ú°Ëc¸þÀ-\1aë\b\81fën[[ìÄ\11F5ö\95ùè¢\99 ÒÐâ¨æ¡I\84µîWGVÓäKEé¸\86P+ \ 3ZÛÂߧ\8b³£ õn<\8aëg %[aý\98fúÛ\1eÚIX\e«o\9f\8eàºÑ\9a¤µ\98Ö\fë\ 3Ö\vb\16\93±Ú.\963\8ak¥5ì;N°~¢ÃºÕ\17¥q¯» ¬§þêÎê&«¿è\ah\8dÒºù S\85ÑÚAú_Êam.HîZ\9fõÍ\97\12§C|\8b³\1a\96\fï\v\96urA^É^\12á:Ò:ÛÖà\83|¾`mÓæ>À\18fbb\9bµ\84Yk3H\9b_dË\1a]\101A\8cÕÿ\9dNÄ5\ 1»FµÊêE¬\8e¨Î\ 1KIZw\;>¹¸È¬¦u±§à\16$ZGi\r°þ\98Ï@^óInÉw¡\ 1\1c\8d\10h¶FZ#)\8föØÎçÜR-M\10hP§@\12ÿ(È\ 5aV;ª#¢\99Ô¸yÉ·ä)\19׸¡\1dO\94Ô\9eÛ)Þ\9dÖ&\11Ö\8fÚ\ 2\96\aîw\13¤³úv;Jë(¡ÑZ`Í.H\17Öm§e¿Nàeìôij¤\91\0.¯0fXw\84ÜÝ&bº\v\82ÂZYý¥Îê¿X9Lë µÂXÁzÓ&_\90Øa\9f5òºÂu
-\ 4àT\80-Þ\rh¬N.\b[Öä\82dV\aZ\17¶5KkZÑÌ[\1eÎ/¬;«Ï\e¬\87\ 3\8cu\9bµtîI3\bÌ/>§\96µ¹ .¬'ò:ªÿöoÿv\8e×Åùq\92Õ³¬¶2\18\86\98\ 6ZG#ä{\89\9d±\11\84YmË\aá\9c>}º¢uôA*X\13¯\99Ù³ÕÈ@ëXc\8c´>ê¨ö\ eVaue\82@sz\1ap'X7Ü\88íjÿAúO\ 6<ãQ\1f\1d·ä\ 5Zï\ 6×9\10\e\eôPRcx÷\9eÝö5t¥\ 1Áú\11Û\96u\7f\17ÖÝ\ 4!V+UZ»\ f\12a\r\96µyL\ 2kCµyhHk\b È°\8e\bi\96µº n\82\b«\85Ôr\90Öì\83h\85Q{÷"¬Å\ 5qVSÓzƵæ\ 1Ä@\0Êo ¬\ 6aí;bܲ.]\90\bkï\19ÛÖAZ+¬÷\12¬\9f\\ 5¬ÿëÅ\ 1k\9c\89Á6kéÜ\83f\906¿è]Öݲ~ïý\ f@X\v«\ 5Ôv\96Åõ\8f3«\7f8Ïêr3@\8aÃ\8bE?Æ&MÃDVã\9eX=\1d×gÎ@®F2B>¬\9f\r%®gO¦õô-\ 6i-F\88Ã\13ì\88cÈjÈÚ\13\13\ 4YMéQò |S;\ 5É\ 5\81±i×1#DGTûJÓDë=®\8c\ 1Øvv\8e@ÝÓ`\1d× ·m#Xk}±·\82\88 ÒY}\9b\1c¡µHk2m*¦\80µ6Ú «\81\88iýÒKè\83T°öeSfY_»\ 2\11\10Ö\97\"¬n\90þó\95ôFim\9dÖÒ\ e\12a½\99a\1dg\8c\9e\19ãZó\0b|\8b'c\aVG\17\ 4»¬£\v\82¬FÁ4c\84\14Ò\9a*\8cÿsÀºÍÄp\9bµwîi3\88Õ\17§.ëɲ\16\17¤\vë\1fýÈXý·ñ,\83ë\91¬^ÄjN\9bvq\8dSàUÑÏ`è\86ugõ\9b®%Ï@i\b¦©\\¿n^BCÞr°^\8cëho»\13\92j\8c§N)?É\96°s\9cXÍ£\8bàà «EZ\97°Î¬Æ\89\17¦roF\89ÿJºÀ3 ×°¡\1dή\ 4ê½t\14×¾\7f&ÁZê\8bÝ\ 5i&\b³Zh-ÒÚ|\10ïÝ3XïeX³°FT¿ú*Å˾ü2û :o^Â\1a,ëæ\82 °\16Vÿ¹\1d§5Kk¬0J£u\82µ\86w<\1dz×\9d×\8ck\ f\ 4¨\ 3\ Á%³\9a7å¦úb\14ÖP¥\r´~iLkðA\1cÖ».JX/=m\ e\ 3\8c\7fui\835µY÷Î=\186o#1jY«\v¢Â\1adõßÉY\16×3¬Æ>\90ÅiÓ&®\99ÖeóóGÞ´\8d\860±\1ag]\15×"®\81ÖIZÏÂz\8cëâ÷À\ 3E¾Ë¢Æè´&\\1f\97\r¤Îêh\82øçÔÆ\88@Z¿\1d\9e\ºûñ¥Àj\9cwYâ\1c\ 4X\ 3 ×´ \9dN\ 1j\8d\83Ýë_Á}\90m²\85\16`ÝÆ\17Å\ 5éÂ\9aX´\9e¤5ø Þ»7\ fëÀjëÑwZ»\ f\12aý\14Àº×\17[\97µYÖQX\aV;\9b´\ 6\1fD+\8cÒ»\17aý\ 4Ãz4fTáº\ epñ\ld5Âz\7f\9d¸\17`M¬v\WFȼ\ fr^`ý\7f]pXÏ\r0æ6ëÞ¹7%\83´f\10±¬Oµ.krA\9a°6Yýwt\96Á5£z!«YÁ×Oå¬iËì@Z\ 3®?ú\b\al*V\9b¨\86\05½\8c\9cÖݶ^$¨9Äõ\béôm\82\11âí{@ëçiì[ãð_°ê\97\99 dX¿'ÉW\9ebXÀ:\89xW0\87 Ä8?Y£:Ò\9ap\r\v\7f\ 3¤G\9c\ e¸Þm[Ó·o¯`-\96uwA\8cÕ·¶£´nËeÑ\aAX?\8d°¶ú"¸ Âj\99x\15Z\a\1fÄ*\8c\ 5¬×\19¬Á²F\17¤\vëÎê?\93c´\9e¤õ¥JëfZC;H\ 5붵ý)Âj\7f\93A^\a\S @Jp±d\80í%«Ñ\ 5©`\8dÂú4\9eÕKkh\aY\1d¬/ùL`½ \1a¤\82µ·YCç\9e×\17_}M,ëî\82ôêâO\1a¬\1dÕ?ûÙÏ
-\§N¾\82Õ\7fS³:\86âÕiÓo¤<<·\ 1×Ñ\rάÆ\15Vº§\ 2\9fúDëI£ÎJkè\16\ÍqZ\7f\17^\0XZ\9f\8aU?ãuß\ax\ 2Y]\9a \8eê*åïÛ¾¦×ºº%æ3ÎLÎ\9cô{\98Ö\86kÛ÷»;\1c_\ 1\f\9cöäî}Î{÷A\1a¬·fX¯í\9bh\9b\vB¬VZOÒúnÞ\81¥\8dÖ\fk¨/¢°\ 6T+®]Z\8fa=E\83ô\99\18\84µ[ÖIX\ 3«\8dÖ\93´\ 6\1f\ 4ÛAF°\86¼é\1diÔ¨\94×\90\a\10\13\¶B6@`upAòHÌ\8b\v`}zyiͦõç\ 2Ö\v¦ÍË=1\16\90j°öd\90\17\1a¬Å²6\17ÄL\10aõÏü\8cp]Â\1aeµç\81L¬\9e[\f0\935\1dÆÀyö\84ºâ`\96ûuN\98³ \82\17_D\÷\9b\12Û\95£´\ 6XSo÷ªqÍF\bKk1B<$\bW\0èþQdu4A\ 2«EZgX\9f
-m\82l\fBz\14eþÍ\1c§õ\ 1ÆmXÐ\8e«ÚkP3®}\ fo_e]ÁzM_\eÞ\855²Zh>HìÝ\eÁÚzØ\1dÖ\14'C°Ö\r?Ú»7\80uo\ 6AË: kaõ\17V\8eÑz\92Öä\83h;È\ 2X÷\r\89ª«Ù}*åõ(ÀÅ3±·kwIbu´¬\1dÖP_,X]IëоG>\bÃz÷E\ 5ëß;{Xû´y\98\89é1N=\19Äë\8bݲî.Hs¬W\84õÄê\80ê\80ë\81¸^\15«\ 3ª\8b¬é\99<<Àõ\87\8bY\8d\97\83\1eÅu u'ßPZ\7f\7f5´æßÙi\9dÞ\ 1<+5Ó\1aÎ dµ/\1c\18³ºHd\8d}'ÀjC5\90׶\1e,\826þ\19Ç\13»8ÌiøÏ\81:'\1f¤÷îeXßÇ°\9e(}ËÊ\11Z«\ fÒ+\8c3°>D°î\8fCdµ¥\809\ 5ÖMZÏÀz-ÀZº¬Á\ 5éÂ\1aX\8d´î>\b·\83ôÞ½!¬'Ë\1a\845zOÀëä^{\1e\0S\1ac\\ 2«\1dÖ\a ÖE3H\ 5ëe¥õÿ\1c°\8eÑ iÚ<ÌÄô6kèÜ\93ú"¹ MX\v«\e \7f.g\16×\11Ö\81ÕU\eH±\17`AÖ4v[û\82D\98äƲ\9dÇnx\f\86íðÖ%¨/é \9aÐZtj\94Ö5¬\17Ò:\8eÃË\90e)É\bÁÁBB5²:\98 Þ\8dÞÖÔDXãÖÇS<Úî¬\86®é|æ\81ýlÂ5\10;,iß7ä4òÚi°Þ6\80u«/¶ò"°Zi->\88V\18½ÑZb÷
-X¿XÀZ.Ê\0kØK?\84õ\83\ 1Ö×p}Ñ\84µ³Zi>Hl\aé\8dÖCXw\17\ 4Y]\r\86²¼®\12\0\ f\eÂ\ 1\84Õ,¬Óâ\81¢¾\18Y=\90Öµ\ fÒ+\8cËÁ:¥î-\ 5ë\89Õ\17\1aÖ}Ú\9c\a\18{\9auo³æν3nY\9b\v"&HgõÏñ8®\87´^²eo¸\17\0¢¦ë¬é¾/\v3Hy\8c\9b&\ 3_sVSüÀ Û\85úR\r?\97Öy\fgIX\7f?\9c\8aÖ±}/ÐÚ¾Wü~éÛ}ýÛqîÒ6\8aeXסQr3\1cÂÕ4Ñ\96(\88= õ³ÈÛ@ì\84éýùËÂw\0ÒÚLë\1aÖ÷Ü#\965²ºÑÚa}\ f\85?\13¬÷\fa-\ 3®Æj¥õ\19ûIy;ÈBXßj°îõEµ¬]X\7fá\v@kóA¤Âèí KÀÚ§\fa4tÌk\ 2ö|\8e\v²\1aa}xõ°\8eÒ:ø ¥iýy\80õ|è^\8e\ 6©\ 6\18\rÖsÏç\17»eÝ]\90Þ
-b¬î\8cþÅ/~±\18×\bëåX\9dP½lÖôûº\88e\18\90äÎ\ 2Ví\16ã\ fl\85%¤õjP\1d\ 2LhxçM2B\9cÖ°pü\85üh©\fë´ü1Ã\1a3£ \8e\15P\1d\11;"ë\b×(Í#õ3ÿ\v{üÙHë\9d\9a4¿\14¬o¹Åi]T\18\a°ÆÎ=\1dåOÂ\9a¥õÉ\93\8baÍ\ 4AX»eÝ`M¬\9ehí°\16i=\ 3ë°Zr\9bF-í\14TÇÉÐÝÙ\ e©\13\b\90ËNgu\14Ö\v;÷\16º\94Ö\9f\7fXÿ~\ eÝë°N\e\18i\80qó\93[%sÏ\9aA^_\81µZÖ"¬W`\r¬þ\85\9d\80ë@ë\bëU°ÚQÍQÓ¯\11ßfZãÞ,I\8a\86 è\8aÕ´¼»2\16\94\7f(Ë ÷Å°.X\rÉ\80¥´^½i\ 3£\8bÎj^û\18²³»\vrò¤¿¾\13«¡ùn \85çqM\95ÉÚL©|\95âK\0Ï Ö·æ
-ãÙÀ\1aܹ\bko\aY\ 6ÖÞ¹\87\96uwA¾À°\9ehÍ\15Æ¥am.Hgu,îV¼Ö8\80\9aÓ\10åB¬>GX\9f^Î\aAÓzIXß|\11Â\9aB÷tÚ\1ca-\ 3\8c\1dÖ}&fj³öν©\19¤ÃÚ]\90\15a=±\9aQí¼&q\1di\1dFÌ\17°ÚW¸\84µ\0£¬i¤õ\a\8cê
-LÀjÞ[¥Ý\15\83V¸yi-0^¥°þ>å¸\86YK¨þA9ôE:u9\14¦xÞ#V\97\8b\ eÄ\ 5±.\ 6g5d祪 \ 2\9b@;Sl\1c3»6¿¡\1dÐh½\ f¶£î¸\90°~\19`ýZ\82õk«\87õÝ\11Ö_\eÁúOÿô¬amÖ¶"q§\82\15æCK^3°Ó\819H`u\13Ö\fëceæÞ<¬\93\ f²\bÖû\97\83õÊ'}Õ7¯üúE\ 1ë\1cºWä8Á´ùz\80uo³Öf\10°¬UX\v«\e ÿ^N\81k¢5Ãz¦¶¨m \1e\87_eM\e®\8b=.N%ÝF[®Ëz5°\9a[á\f×å\90\89HëÙð¨Õ²:§n¿\9f=v¥õ+Øg¨\9d\86Üh\98\rk]Ö[ÁºwsÓR\1a]¥®¥\e\e\17Ç~;\ 2¶áz\8eÖ5µé\10¤ó¬\rÐz\ f'Í_8X\9frXSáÛa}*Ãzÿ¹ÂúOÿ´Óú,`\rÍ \1e8ÝY\1d\1e¾\1c\955
-p)Ò\v1«EX\87f\90³\87u õê\94õ\86\11¬/ë°þÂ\85\87uLHB÷,ÇI§Íq\80QÛ¬c3È
-¬£°FT3®#]Z/\8eDͬö\ 5.öS\9cÛ\f ´®_ø«æ
-\18«~\8e&\ 2¥wùEÏ\eU#$IëÕÑ:0ú\a Öü\92á/\ 3¼ËÖ\ax¼Ë\90X\1d\fkØ«\1e`\rs\92¶\9cWÒâ\80Õû,\87©l\8b&\/Cëù\93\82G\18×´poçÿ\ fëE°&Ë\1aó;èq;â5M8V\9c\86Æ\12`utAæ`}6¦5¶\83\8c`ý\ 4Ãúî\12Ö\7f±\ 2ë?¹ð°^>Çéª\bë>\133µYS3H¯/º\vâ¬î\90þ\87\7fø\aäõ\88Ö\ 1ÖË°ÚPM¤6^çÍ\0Fë÷¨ëAgõÞ\8eÕ:guØ\84\ 2a\e'0l£\19! \a®õj`ý\ 3Þ\13\19¤5Õ\181Ç\84Gãm~'±ú-fuaãë\13Ì]\10È\1f"VïÅP\8fj.|\9fÞ¢\86ë\9a¾i$}ð»êD?¢õ\1e\1cW\13\1duÑÚ #X'Ïú¼Ú ë\19Öê\82 «©\0\81ÀN\1dØåÁ¨\0fõ\f¬Ý¸[¦ÂXú ËÂú±Ï1¬9\1a$\f0R\9buk\ 61˺÷íý-²ú\1fì\94¸\ 6Z\ 3¬iƼ`µFUPÔ4eM\e®3\11×\83I½\90µa\11Ñu\8c\9dѺ\e!óÒz9\'Xû\ 6öJZ\9bwC©S\88kË\9d"VSìÔû\1f`Õ5ÀZ,kí\ 5yÑL\10l_Å,ê*p©¢õ\fªçN\Xæa\7f\82k\94Ö\ 2k\93Ö\83>ë\99n\90ÿ\19
-\8cÜ\rr[\80u¨/b~\87£:u¾'\a{æø\85\80×Á³\8ba½\;ÈÈ´^\1eÖÓfâû\16Áú¿\14°þß.8¬§Ð½?N°Æh\10\e`ìmÖ\92\fâõE\15Ö+°\9eXͨ6\×´Vi\r°^ÌjDµþØ|YÛé´\19 Ð:æ\15¥â¢ÞM\1eç_\aDÇ\8d\86,#\97Áufõ\ fæ¥5\8c\83k\9ekÈ\b\84\88À×0"ðí\92ÕiÛ£YÖÔo6Ý\ 3\90é®K^Êût\8fÝød\85\94¬\9eÍÃ&F\17\9b\ e\ eÍì²\16\1f$O0ÂPLÕg}÷¢>ë\ 2Ö§f[÷N-ÕºG}ÖçÔº\17\86bæ`Ý-k\183Ä\ eLo÷¡8\80\9c¸\958]>³Û\ 5PÁºHÝ;\8f°ö\97'\ 1Ö\12F{[\84õ_^T°\1eå8I4\88N\9b÷\ 1Æ\1e\90êÍ Ý²\ 6\17äg\ 2ë\8eè\7fl'ãÚ\9d\10\90Ö\rÖy7î,«OÇ\0'\15L3´®R\9byr\91Ym¨¦5YNëv\83ö\95\86\95´\86\951Ká:Ãz\91´~ÓV$êG2úD\9cÕÁ°î\94þ0ÁºÕ\17ݲ6aÝ\97r\1ftVïö\ 5/ñ\1d8¾\0ïgX¯\ 2Ó ÑøSqZ\ fÖ£\9ai=È\ 6\19M0Þ3\9e`L°æ Ær(æôê\87bn;§¡\18\9a`Ôl\10Yë¥ÙT\ 6kpA Ô@§pDrâÖÈ\ eCV7a\9d`].\1f(Y½Ø\ 6©
-\8c\8b`½òI_{ÍUß\b°þ\7f>eX\9fSBêõ\bëÇ\ 1ÖÞ¹7Õ\17Ͳ\96ò"°ú\1fá\18®+Z\e¬]X£a\1d:ÕÈ¡-d$GM\aZ\a\óî*3¬9(ï4ì\17W\@\8bÒú,=\96õS\91ÖNë3á]#?¼\ 6¬NcBï\18¬mÕ#EÅÙ\r\10W'b})·\ 1\ 4Z\ fÝ\8dÑ9Z\1cÃõ!
-\82à\8cµ²Â8¥î9¬-\eäVÈ\ 6¹w\98\r2\9e`<\1fãæU6ÈY\8f\9bc\90Ó\9d
-ëu\ 3XÛ\98a\1cì\9f\ 5vÆvYiö\97«\ 5°^\14å´¸Àè°®R÷Ä\17{x\0ëË\vXÿ\87\v\ 1ë¥\12R!tOs\9c4\1aÄ\ 6\18\8f ¬¾èåEeµPú\7fü\8f\ 2×Fë
-Ö&¬\97`5¯÷\89\ e-HI¢5®ð~\87YíÞl`5ï«ÊëÂ¥ÆØÚ÷<*\95\16\9d\17\v\16ë\1cë\91´\ 6XÓä=ÓÚ\1ebäâ\9fYÈê\ fi¨3$ûÕÂ\1aX½KÖ\89Wý\0\86k,.\1dPX\aT¯\86Ð%®Ã\12§Ý\8b`í¦5\84î\85 §aê^\84µ\ 49\9d´\9do1Èé\8cYÖKÁúþ³\rrúb\frò\88Ô[\19Ö°±½Á\1aw$R\83|\1a.e`\8fB\12S\13'²º¹ \ 4ë\81i]e¤ÎìöòÖ½#\ 4kZëµ%ÁúÎ\8b\rÖK\85î]M°nÓæ}\80±Ïļ"\9b\aV`=YÖà\82¨°î Öc¸\9e£µÁ:\18Ö\81ÕZK\13U\1d¶\ 2@ïé1ß\ 1Tû<d\99,wÜÒ\8a¬A¬#\ 5h-FÈPZ\7fWcþfqý½\ 2פ¬GÒ\1az\19_\83¢ëéPo%V¿\15XMa)\ 4ë7JX\1fé\86µ³º£º\1a\89Ø\192!øn=\88¬^\8aÎÇÒ\ 1\Gií°~j\9cäD±{Èê\1c\91úh\ 5ës\88H}~QDê}÷Ø
-Æ\ 5\11©\14h\1dWÅh\9eµ®õZùK\89³cû\14¼¾¸òÓòÑ\15\9aî\1f\ 1{.#ÑÎ>du\rë²Â8Z?0
-I}\9ea\9d6Ŭ\ 2Ö\97ÎÁú\ f>\15X/\9f\90*¡{\98ãÔ¢A6#¬S3È\ 4k\16Ö\84ê\88k¥u\ 1ë¿!X\ fXýÚx+@\7f{z9µ?`NHǵ\9e·\9dÕÐaͬV\b »ê´n¶µÔ\18EZ\175ÆÕáza÷^\94ÖÔy\1eº\19¹ñ|\ 1«)1¶×\17¿\r°faí£'\8aêq,D¢u\82õ\f§3 +^+Ù\aÁ\81ó2#õnß\14C¬¾Ý\960\96\9bbv$Xkï\9eú \81Ö°×ë\15j\ 6IË\a6Ï.\1f\90v\90Kg\96\ f\88°¾$n\8aé;\18ï\0XÛ\0£Õ\17Í\ 5q°r\ eK\ 46\86\f, 5\8dF\1d4\17D`Í\15ƸØ+mö:¹\6H\86u¯b´W\8d\8f÷Oz\82uû¤o¹è`ý\a\ 1Ö\9e\90zÉ\ 4ë\90ãÔ¢Al\80\11:÷ÞyWë\8b ¬\91ÕÿÔ\8eã\1ai\rÒ\1aa\9dM\90Ñ°ÞÉ´\15 Îë\8dhý6¢\1aYM&È\89\13ÆêÃ\1e®\7fP/1ßñ)V¥¶ïµ¡s\8cJý\80W\1e¬\1a×öO\ 6ë°\8e1Ñ\9a':½\89l\9eÕ\1f\8d`=\10Ö}|W&O\1cÕEàÚ\1c#«\17\11úx8\88k\92ÖáÞT\1f$m\1fÐ~\10ß?À;\18ïYf\aãg¸Öë\8bÕZ¯Á\ eƾݼÁZlx\18`\8c\96uì\8b¯³\0bÝqîìGV\ fa=\90Ö\86ký\7fc\17¤j³¶Ëµ?½åzX\81õ#ôX\\81õÊSñê\ 1¬ÿãù\86õï\ 6Ö1Î\9aC÷(\1aD\ 6\18\11ÖÚ\fâ.È\8a°6Vÿ\93\1fÄu£u\94Ö\15¬\vV\7f\aY\1dÞ\7f$³\b\17\ 3\94´n¸^\ 1vÿ\9f·\ftl\82xb³\87ëû,Ç!ØÈ,\82jVZ\87\95\aËàúûÅIÒ\9a³½\95Ö
-\ 6\e¾\7f5g¥$V§]\fÐ\f2\82µO
-ª\8b\88L\8f2&Z'X3ª\17\10ºäõQÌX+÷£Îù ãíæ\ 6륷\9b¯~aî³\8b¶\9b\7f«0EZ\7f±Z\98[n7×\99\98;ïVXo\88°v\17\84ª\vÐ\16_\85·\14Í"5©\99Õ\ 4ëc5¬\89Ö§ \1asrà\82ÌO\9bï¡"Ʀ1¬¯¸¨a\1d\12R-t¯E\83Ø´y\9f\89Ñν^_l\96µ¸ ]X3ª\15×Fk2B\12¬MX» R\84\97\96\ 1s1c.Ó\1apÝHM¬ö`9\r+:f?mÌ«8è\91\ 6MPuZ\93´\ eë\18#®ÓY
-×\ 3i\1dh\1d£\8a\14BÚÆ\80ßXXHÉ°N¬Þ\a¬~Ú·òAú|Çu¢µ\ fE\1cDa\9dH]¡Ù\13Z\ 2®\8fÚ½9Ê\9a\1fì\8aéÒ\1aiÝX\9d\84µ\93m\ 1¬\9dÖgàçpæ\f\bk\1c\ 5¥íæ\ 3XÃ^¯$\89ָܼl\ 61Xçió
-Ö\83l\80EÈ\1e\1d\9e\89Â\ 2\10V\18\83\ fâ°\863+¬ëúbº\1e:¬×\e¬o'X\7f¥ÃúÏ:¬ÿï\ 1¬ÿ×\v ë:Î\1as\9cZ4\b\f0ÆÎ=µ¬\9b\vÒYÝ\0ýÏr\ 2Ý\bq\1fÄa]\bë\90Ü|ÆÄI\115mIÓ~Ëp\a_Çõ[Fj/νJ«P\9cÕ\8aj\f\7f\v´öö=\92Öïä\ 553¼NÍØ\v`=¦u\99ïý\9dÀêr+e\84µÕ\17ka\8d¬\1el\vQq\1diíS\11\87\98Õ5¨\9f\e\1cÄ5Iëå`mûÍ\85ÖvîÈÂÚG³·\8c`Í>Èé3\80ë3gÎX\13¼¹ ËÀÚ+\8cfZ\93´î´\86ÓX\1d\85µÕ\17çgbÜ\ 5\81÷\9fa\8cKEìYf\1f\88¬\8e°^(Ka½\94e=\97\90
-¥ÜoÝtÃu\bë/®Àú¿] X×»\a\16ÆY_Ç°ÆisêÜëõEwAþÞaýÏp\10×l\84¸iÝ`-.\b
-ëwß\8dQ ÆjGµåLÃs¹¤µãÚPmmohX?\8fÁr\aÃåx\80hmF\88NÆäu\8caAÍÙâúã9iM\11ßÀë×}\15\ 3¤¤¼\17ú
-\81Ö
-ëÞ\fÂ.H`õ\1eau\93Õiq*o¶\ 6Zó¼±Â\1aQ½\98Ò\91×$\93Gi\ 3ç\bkóA2;«»°\8e\9d{\bë=\ 4ë(\ 5×gÄ\92:}\1a\85µ\ab\1dî\9fæn\84õc¸\19\10Më\82Ö_BZ\7fQXÍÂ\1aë\8bÞ¹7\865 ëbÒ´$öâ rpÀ\ 3¬+Ó\1ai}²@u`õ¬\vRÚby\ 5£Âú\9b%¬ÿ\90aý¿\7fÊ°æÝ\ 3Ã\84Ô\9cãdÓæØfý>Âz\9a^üEdõ¿ü\vàºÓÚ\8d\10óA\14ÖbY£°¶:×\e\15«íY\9a\96þ8¤uÃõ
-µÞ\14T;«ym\15±\9a\ 4\ 3Ñú\18\ e\1aS\9eS\95½ñáà$^\97^ÈdzÒ:î9³ãKÎ\16²z\ eÖ\95°¶\ 5â\13«'@oÕ£¸\1eÒ\9a`Â\9aQ\1d±L?è\88ëcvw\1e\8e\15Æ\99Hë.\95Öw\18ª;«EXsçÞæ'kXkó\1eÑú´\95yO\13«Ù\ 5\89°Þ¤°\16+ÕLkòA\84Ö]\û\11VOÂ:YÖS}±\9c\89Ñ̽\ 6kÿ\11\1dx6\r\9a\96Ä^\ 5²ÁW)aý<¾\1e\9b\11B¸Öq¯%\845§Ycç^ÊqÒÁ~\81õ4(zé_ ¬ÿø3\82õ¿³Ý\ 3Ã\84T\ eÝ{Ä`í\ 3\8c½Íz\ 5ÖZ_´òbgµ\90º\1fÂ5Hë\9fui-¦µÂº¹ "¬Ñ\ 41WÙ\v4ðÓ\81Û9¬q9E³\8c\80kEµ·nSfÃqbµ\97NöïçU\9fÚ\11\12\86Îß \95Y\90j7âuì\17ɸþ\98`-P-h]-{\7f\83Fî3«ûWåå\ 6Ô\fb.H0A\84ÕMVo\rGqM´&iÍ7ìQDõ\bÒ\15¯\11ÖfRæ»3ú»Ö@k=Âê ¬µÍz\85lOwXïUX\9b\ f¢Òú¤µ/X'å©SÚÃd¡\15¬\9fì°\96ºW3oSÓ\9a¥õDk\15×\86jc5» ²Û\1c:÷|&\ 6;÷víâçé³\ 3TÏ\13{\ 4íg\99Õ\bëì\83\90´6\\9f¬Y½ \17\ 4ë\8bÞf]ÀúF\87õ\97Ï\1aÖ¿wn°^*κ'¤¦Ð½\96ã\ 4ÓæÖfýÝ\ fɲva\r¨6\wZ\8b\11bÒÚLk¨/\ 6aýÖ[\104}\1aX\1dQ-76qI´n¸Öó\1db5\9b G\8f\1eѧò\ 1.rwÍÑi}\14\87×N\86\9d1ai\16\84%Íóºîã3X'i\8d´N¸þÎbV÷ÿ\9eÐÚamõÅ\81\v\82¬îªz\8b\1fÁõ\98Ö\ 3X\aT\8f@M¸\ eÒz\90\ 5\11`mÒÚh}§£ZY½"A\ 3¬73¬÷í\7f¶_\aòÐvi\1dC-N\ 1«}é°}\9c{\18ÖÖþÛ_Ï{§uï\aQX;'\ëùKa5 k\9b_Ôúb9\13\ 3°fa]D\ 2,\8bìò\1c\9c\835Hk¥µá\1aÎ+Àê\85kb\9e\95°\18µ¬·{
-£ÌÄXr¸mõbXÿÑ\85\85õR ©+°\ e ©\9eã$Óæع×ë\8bnY\e«;¤\7f¹r\1c×.ÿA¥µù
-ëî\82DaÝË\¯%VÛ\8f\ 6-Îç=Â<Ó\9apý\1d5\rô1à]{\9dÕ\1a\80á\8bP QX63»\11ÂCçf\84ÐÊ\83ï\8eNàuÀõÇ°\v\8c¤uEëö÷Âó\ 6Y \89ÕÖ\87\82°öúb\9c\889B&\88±\9aQ¼nâÚi\9da-¹kzÃ\1e#T\a4÷\1ar\85ë\19XÇ
-c!\9dÖv&V7\13d\12Ö\bkñw·;¬É\a\91\85\14qRÚ4á+¶\81þ\84GÍfXo\ 4\88ôNkõA*Z\ 3®\eª+V_KõEl³\86\99\98\1d5¬\8bô\96
-ÙK\13û`\84uôAPZ\ fhýÊ+É\ 4)\85upAøjØ\18¢Aâ
-Æ Ö\7fn°þO\1dÖ+¬Î°þ·\9f\ 5¬1!\95r\9c,\1a\ 4Ú¬[3\88¤8©\v\ 2¬þ¥\1eÀµ\19! kX\aam¹\1dÎjx\8aB]ê9Ú»éÛ¬´ÙøÛ\881Ù¸ë\92\9d
-?Æê0\9b%âÚhMí{g ÆÈ´¶\r5\v\88]ãº\82µ\e!Në7ýAd\ f¦7aËû\98Õ\ eko\ 61ËZ\\90(¬wì0V¯ÐùI<\1d×@ë$½\86\85uFõ\89p"\97\81uöADZ\eïrT7V7\13$º \9b%t/ÂZK\8cDkpZ}àNv0«°Öis\81õS\ 2k\89Y\9eLkkÞCií´\16\÷ÓP¬&XßàõÅ{î\eÏÄx}\91\84õL\18âj\89\8d\ 5K/.ûR\8f _~%ãÚQ½¤°v\17¤j³.\12R\ 5Ö}\ 5#º ëÏ\fÖe\9cµ\85îy\8eS\9f6\7f\9ea-õEwA\fÖ¿Ä#´f#$Ã\9a\\90¦ï¤ÊåËJ\90Õ\ 1ÕÊëE´V^·\7f´´UL\84\7f.²\9arj¬ù¬ÑÚ\8c\90о\aF\88o<ø`pJ^׸V¬¢´fZ¿ù\ 6\9f7\vV\17i\80Ðf\92ê\8bÁ\ 59\80«G\8dÕ\9dÑO¬\1cÇu¦uöAàM\18X=\ 4uÀu\90Ö\8bÚA\fÖ]Z\aZÛ¹\eL\90\fë§2¬]Z¿\10ÚÎV®?òX_²Ë÷x2\95ÄLõmSÝ´îÍ{AZ+\ 5×z\1aª\e«EXk/È\r6¿8Õ\17Ó\ 6Fk³N°fV[*À\18Ù£\ 6?bu\865KëDkãµþßYV\93°V\17\84ÊÍýZx$ÌõßTïË5X\8b\vòÙÁz\18g\1dr\9cl\80qj\ 6\99`ýáG½¾è.\88²º3úW+§¢µÂúçCX7\17\84\8cS\f/å\r.!Db\8eÖÚÈ&§÷¸i"<\8c\99÷â"°ÚÃ\1f÷ì\ 1Ø\90]\99k\8co\96\vjFĦ\12ä\10×\ 4ëHkÅu8\1a\8a²\80Õ2\e)Í ^_D\17$\bë)vÃYý\ 4\9e\8eëHk\93Ö\bëÃ\19Öó¨F\/\ 3ëhZ\83´\ 6Z+¯ïn¨\16\13d\12Ö\ 1Ö[\13¬\ f\89\1dF´¦â\18¼µ\8b\85÷\1c¥¬´Ïs\aº÷ÿvÓZ|\90\e
-Z\v®/!T\v«Ù\ 5QËzª/®¹¿Xêµ\18Ö9\ eq9`;³ý_ ¬\8f8¬\vií¸\86órfõ¨\15$¹ V_Ä6k\8c\ 6Á}¹\ 4k³¬Ï/¬Ï9ÎÚC÷Z\8e\93G\83@\9buo\ 6é\96µº ¦«\7f%Çp-FH\94Ö\fktAHXc ^½Áå¨\17*\8cÖ\10¬ãùÂ\88jg5wíµ\9e\ 2ù)ï\8d1½ö\1e\ fFHHß\83\ 5â\9e¡ýþà\ 4^Ïàú{\ 5¬\ 3#®ßrV¿\87Cæ\89Õß\võÅÖ\84C\8d{É\ 5AV7DonÇpÍ´\8eÒ:Á:²z\8cê\fë`\83 ¬Ñ´v\1fD¤µÑºáZ\ e²º k\80õ\96\bk\94Ö¸ò5@Æ\fVYÂ\f\97Y\80õfx?ï¦õä\83°´vZO¸n¼¾DQ\8d¬&\17d²¬µ¾øຢÍ\1a`\rcK\87F¨.\88=\al:n\84ÏJë\1a×\8eêØ B&H\16Ö\Àðf\10\1c`ôÝ\ 3\ 6kYÁxÑÀº\8c³\96н\96ã$ÓæÞfÝ\92A¤\19D]\10\13Ö¿\82ã´\ eÒz\0ëæ\82tyGÂ:oÛ:\9aÖ\ 2ÄEÉDë°Ä\14w\98¾\12\fkìÿ¢¥U\12¥ï´F#\ 4\96ç\1a\15׺ó`DlÜ1\1eqý=bõ÷>\1aÓúí·òÑï\81X\r\vl>\1eÀ:XÖÏÁ\b\aäÙ9«7ã\89´fi\1d}\90\12Ös¬>Q
-ë\99\98µé\ 6\ 5\1fD¥5Ò\1aν÷\8aa\9d\85u\80u÷ALZ?Ïå±Î\99\97\r./:«MXë\aú\fºW¾Ä´\9eúA¢´î´î¸n¼î§¡ZYMºwYk}ñ\81\87Î\1f¬\ 3°\97ãõ\bÖ\ 3Z¿\1cIí\19n/Ô&H\12ÖéÁýxèÜk31\9eã¤qÖ#X÷}¹ç\eÖs ©\7f8\88³\ e¡{\16\rò"ÁZ\9aAÀ\ 5!Vÿë¿\ 2®\85Ö.Í´6XOõEµ¬\8d\18´±õåÀj¼P\8eè\vÕqÔ8Uh¥Íøå\15¦´aP\7fÈi\13¬Ñú \ f\e[DÈk¯\97;\ fÞ\e\1c\ 6v\89ë`.\13¬\8dÖ\ 5®ß~{\ 1«Q°×õÅfY\97.È$¬\95Õ\9dÑ\9bV\8eáÚh]Hë\ 1¬\97eu\rëÙ1\b÷A\Z\ 3ï\r¨\16VOÂz\fëî\83\88´&Z¿ø\12\90\86T`\1f³ëÂÚcVâ\ 6\137'\1fD¤uAë\15\7^ëi¨\ 6Vc/H¨/¦=1É\ 6AXϲzõ¼ö\1e\13SYFk\83uø\10\81Ô$«3«1Ô'ìO¦À\oº\81\99\98\94ã\94\97\9b\7fJ°>»8ë\9e\90\8a¡{4mþF\83µvî¹eÂZPÝ\ eÐÚ\8c\10\93Ö5¬»eíE®×_£\99\95\13ÈjrÍÜþÒ»æ¥\94\83\86 Ã1\ e\1eó\9a\81Õ´_p\97\8bÃ\ 3\a\82\11\ 2\e¾\88ÖaEÍ,²I^\7fTñZçWHZ\ 3ãyg\86Õ Ù©¾h\96uoÜ\ 3\17\ 4Y½\9dX½ OAk\97ÖÁ\aa×ò\9c\84õ\10ÖnZ»´FZO¸ö3¡ZYÝ°VÂ\1a|\10M\8añLfE\8d\9e\17\15ÕÎj)\8càÃÏw\ 3\8ai=ù Ó\\8c5\84L°vZ\v®\ 5Ø\97 ª\95Õ$¬Å²¶ú¢í\89Y-¬Õs\\92×\8b`='#®\91Ôú\89âÄ\ 5\8f²¦\8d\9cÖ\19ô$Ô\171ÝðF\9e6\9fß\97{®°þ½Å°\9e\89³Î ©\12ºÇÑ \9af-Í Ý²þû\ 6kgõ¿ú\11Z\83´\ 6\1f¤U\18\11ÖÍ²î½ °WJ\9a}_
-¬ÆëB~ðj\85dZCle\15Z\89\86õÁ\83ö\1e-\9bPvâ¦*¦õ\11\btr#äõ2EûÝÁA^/Â5\8c\86gZ'\¿ó\ e4\10¦¦=\82õ\87\90tØ>z\9c5\ fMÖÞ\11W²º 5IkÃ\ 1,sPX\9fµ°.»µ¸\1d\ 4J\8cÝ\bqZßç¤n²º³Ú\84u\86µû ]Z+;®_°\90uý\87\17^PY&\88nGK°nkØ»iÝ|\90(\85Ö\8ak\ 1v#õ
-ª\91ÕÁ\ 5ñú¢\ 6tgXïÁ\ 2#ê_Bõ\0ÙËâ\1anÚ,\85Ö/À\13/\92\9aP]éjfuµëþ±G¥\19$¶YË´ù¢^\ 5¬ÿͧ\ 6ë¥\12R%tÏ£ARç\9eZÖÿ\b°þW:Fk\94Ö\15¬\7f`°\16Ë\1aW\95\9c|ÅL\10`5µyº¸VZ¿è´Ö$4\ eB\v\ 1Ãǽê£\15ä]»h¿ ÓúY\8cÈ\84\8e\90n[\7fÇ\9b\9cií\ 1\9d@ìä\86|\14xí9\1el\84(\9dØð\1fx\ fRJja=¶¬qO\\10t¬·n\ 5Voô\13iMÒz\91\ f²\90ÖÃ.ë\ 5°\16A¥Ò\1aiÝpg\r°z\92 â\82¤Ì#¿\ 6Ô\b±8¢\13\9e±n9¾'llã\18L]ɨ%\85V4Ñ7\99ÖÍ\a\99J\8c·eZ_Ñh½\82k\ 1¶\90zBµ²\9a\85µXÖ÷a@wì³Þ\15`M)¶\15¬\13°\97Äu%KZû\v
-l\85òOU.\af5\98 àXçP¯\rëÃF\9eë\8b\ 1Æ\8b\1fÖ!tϦͽÍZ:÷d$F\\10\11Ö\8dÑ¿^9\8ek¡5Ik0\12¬Å²FßôÕ(¬\99ÕôÃWZ?G´\ eIh\9c\83f¬\869\ 5\v×ï[«p³àN\90\87Ñ\bAÛ\9ac´ßB©;\846ñ:%a;ªûb\97ï&Z¿[~Ù÷\ 6¬\1eº ïT\8d{Óc¬\12ÖÂê\8dt\98ÖQZ'\1fd5°.{¬]X\87\ e\00*a\88Q¤µÑzÂ5\9cµÈêIX\v×\82
-í¦µÎGá2AË\80Ô£ßùsðZxÈ\845¥âoV;uÝ\83ê\83Üy\87ôZO°\ 6Zw\7^Ë\99þ/±\1aa}Ç\9dZ_\94ν\ 1¬÷r\8aí¡E°\ e¼Î´^µ´VZ\17~\92®\86z\ 1duÅêBX[õâ ü\8c×bç\1eÎÄÌ$¤\9e\7fX× ©\7f\90\12Rÿ\98\13R=Î\1aC÷:¬a&Æ:÷ܲFaýk9@k\97Ö³°VË\9a¢\84N±°vV\87\v@i}¼¢5D¡¥\184\88\ 4 ¬\ e»`\9f\81\97ùýû³\11¢¶5Åh¿ù\16\ 1»ô\95\81×C\\7fTÁ\9ahýnBuÅê\19a\rm8ظWº Ý\ 41V?.Gp-´&i½3\88·Ê\a\99¥õóIVç8kÔSô\12 >È$\89Ö\8cëµÈj\15Ö\9dk<í·\a¥õa/oËß \7fßØ\a\f\1dG!Ãd\93©¾\aû\12ö \95Ö\82ëÆk;_\9bPm¬\ eÂZë\8bҹǰ\16ogw
-F\1cl^[\ 2׫\92Ö\89Ö'ðå\84I]¡\9a=\90Ìj,/ªÕÔ[nl\8bü\rÖf\9dr\9cr\9cu\80u\ eÝ;\17Xÿþ*â¬Cè\1eO\9b÷Õ\ 3½sO\9bAZã\9e³ú×p\ 6ÒZ+\8ccX\87íÚißÖát\11\18\83ï\ 5 5\87ëô)`c5\865ø"\94]i\17ì\8e\1d¨\ fÙ\b\ 1ÛÚi9Úo¾58Lì\11®S\98©û \rÖNëÂ\ f\7fß\93Z\17\bë\85.H\10ÖÝ\ 4i¬~\1cN¤5Hë]Ð\1e6+\vZ?Ϩ®X\9dæ Ô©l7©\95\18Õ\bi´\16\û¹\1fXºs\rÁ&\97\0Ñúh|äÐw\9c\86wT\15pWYï/\94\0\93ûTZ'Z;®ñL¨\16VO&H\80µì¾©Ú\11C\9eu½zm\86ÖGW\aë¥imî¿\9fø²\12d5y ðÐ\86à\ 1ÿ\88q{\9avîa\9bu\1dº§[½>mXÿ\1fËÆYKèÞV\86µ¥YC3\886î)¬\ 5Ó¿q\\83´6\1fd\ 4ëï:¬½\17\84\96\8e7ǯZ¸E\12'ÓZÂ\1a0Zçek1AÃ\1aXÍ\v\ 6\9fÆÉihÝ\82ÍNJë:\99u\88m,\a¾\ep\1dyí¬\ e´Î¸\ eä§ÑÅ ¬?ÌYÖó.\88\9a \89Õ\1d×Nk\96ÖXÄ\9aë\a©´)\90\9aP\rwi\16Tðdés1&\81ÖÆëû\eª\81ÕR^\ 4Xo§\84:ûkä\8eq<\v#L¸\ 5XLë.ï2X\e¯\12Z¯àúëJìö\8fW\0«³°¾×;÷\18ÖbÄ\9b\ f2\92ÖKiëUÒúH¤uÀõ\v\89Ô\86ê(«kVGÇÚ\\10\ f¢\r\9d{a\80q\ 1¬Ïc\9cuLH]\18g\1dB÷Z\8eS\8f\ 6ñ6ë\16ã\ 4õÅæ\82 °þÍt\80Ö(½ÓzêÝ\8b°Æú¢7Y{²d½\1cQ\85\0ÑúÄ\89:\G¦\80!Xçøqî|ÕE(q\17lǵÐz\1fGù\98m\8d[\ f(ë¯\18\a\ f6 Ëë\80ë\ fm\ f9Á\1ahý^BuTé\fk«ZÎ\8f/\82\v\12\84µ³ú1;@ëRZ/Ùj\r¼N¤vT\aVS»\96Ãz\9b}·MZ\13\r×r\1e@Vwa=aq\rÁfÒz\90sÂçØ1zO¯6\98\14kØ\ 5ÖwV´n¸\9exÝ\81ÝA½Bê+¿\ 1¬.`\9d³©äï\94\ 3\ fVÝ{«\97Ö\15«Ç´f#é\85|N\fQ\r\v®%0³zÁb\17Äë\8bÖ¹çmÖ\18\r\92\12R?-X/\ eÝ\8bqÖ\18º×r\9c\8e/\825
-ëßè\89ÒZ|\105{£µÀúû
-ë4D\aù¥Úö¤¬Æhó9ZSZ\83&ë¼äÛÒù
-\93ʶ´j{Ø,\b´Î¶µhë"ìï\8dÑ\ 1`Û\10\vâ:ð\1aY\r°~\7fÜ¿\1dÚKBç¶GCå%1ì\82TÂ:³ºã\1ai\9d¤õ¸Õ:F9%/ÁHM¨®\9cJ]f£\1c\14ÓºKëf\844Z\v®ñ<\b¬îÂZë\8b¶U%¶NT«\14úßHÿqð\ 2\80Å/×}´\85½¤µãºñº\9f+\eª\9dÕ"¬\11ÖU\90`ÿ;ñ{O\11\ frd\96×3ʺ\86u\8a\b¡k\0\9eÕ\ 3R\83\ 3\82²ZWñ\ 1«å\ 3\ e\81^ë×ÙH\8cÅ8åνi&f\bëó¿(æl\13R%t\ fr\9c`\80qêÜóf\90\7f\14X\v«\7f\83'Jk7Ç°.\96\0æí\88Äj\bà\ 5Zs\\83æwéà*çê\1cñ⢶úØ.XÚ,È´>\10\16ñYg·ÇGAÚ_qB@\9e\ f=FÔ\12¯5©ï\83\ 5´~¿\10Ö)\15dvï\80MÄ$\17D¤ª±úÑv2»´Þ¾\9c´.BR ÔHê\84jݦÂZ7$lÃg\8bIk õ\83Djbu\17ÖÚ\f\12À6³¦ì¨Ð\87`Vé\7f7T·"K´\1f\ 4`\8d´\9eÄuÃuãµ\9eo\bª\8dÕ\85\vRÀú)\8655\86Ùp\1ad\ÌêÃ\vX\9dÇÎ)Ð+Xa¾\e;V\ 1\1cÕ°áz\7f\ f7¶GöÓ!*W?_[K¬1Nع\a\ 3\8c\12º÷ioõ:û\84T Ýk9N6m®31Þ\f¢\8d{¿\1cÁú×QZ\9bi=\845\8cÄ\80eieºÊ6î²\1dÒ:¤ë¼<Ê@{6±:ì\82Ý\86\12qÏ\9eh[Û\8ekL$ḿ´v\8bç-&o´»\0QͰθ~?²º\805°:?%_æ\89\98ZXwV?jÇh\1d¤õÓ\ 1r\85\7fp\9cüÞÈiZh~Ì\18q\18X\9d¬J\83õVÿ~»´\16Z+®á<¤¬vaÍ \1dlÙ3¨;Ý\8e Å\ e\17\8f\94Ø©Pí\8aDi´¾n¢uÇõÄk?+ÿ\7f\92ÕÂê&¬\17ÂÚ*\8cPÿM\9b½\ eg\\ 3°éß.+¬çÄõ°\8b\13.\89è\80ÄO×X\8d^Ø\13V\14X÷Ð\83lYWÍ ÚfmÑ \9fa\9cõ\92¡{\1e\râ31\ 6kwA\90Õ¿]9QZgXÿÝ\f¬a$ÆCñp=bg5¬ºO´\86\ 1à0¸j¹:Ï\ 3«»+»×X¨\ e«\ 5·[í|\8f\85\1a'Z\9fìc8)@
-VÙ&jã²\0Æõh×Ì\a³°~?Ã:Òú#b5 ë3§8\17d$¬#«3MZWÝ{d\84D\Ç\12\1diê\12ÕÈj{änÓ\ 1\1eù\86'iM´v`·\7f^ç¬nº[Öé/¢24V1my8L\89\1c\8c0Ù\r×Z\88\9bbX'Z\ 3®ñLª\1aXÝ\85õ,¬Í´\ eÒ:îa´¿Ò\823\16Ö\8b¢y¿ÛÐ\ fCR\93»\ 4Ïët\11l\ f\ fÃ\rë×á6\1e±¬{3\88¦Y#¬Í\ 59Ï°>Ï¡{-Ç©O\9bS\9bµ4\83ü<ÂZQm¸\ eÒZMë%`\89{°rë\18\bk`õ~º_\88Ö\9c®ó\92g\vÄ\b´\8aÕ\9dÔ°[Ðbäd\8a\8d"èao*\ f¹[&I\81mg7îá\82\14j\90×\1fT¨6V\aZ\8fó¡ÂêE0A¢ý¤åE\rÜ3VouWAYýH;Nën\84°´\1etï\1dN[s+N«ÿ˾\82RðÙ ©Ü²&X7\1f\ 4hí¸Ö³\8eX-.\bÀ\9aþ"\80¶\ 5;f\95W\a"LÀª!XGi\8d´6\O¼Vd·\7fê¨vV«°\1eÀ\9a|\90gâ^ã\1a×s¼><dõ2kc
-\\13°cy\99P\r²\9aYM½ö\9b¬\80û D\86s}1vîÑ\0ã§\17º·\1c¬\17\84îµh\90çjX{}ñ\97¿4aý[?\95´6ÓZz÷f`ý*ÀÚ\ 6W¬D\83¬®i]¦ë@¬\8e%5h¶ð^7\11·\17ë\ 5·BÖ\ 5Ì\1c×[®ã\90;B;\1c\ 5ö\1c®9úú\ 3?5¬S\98_\18\88ôFÀïª Âö\13ì\88IMÖ¤S\e«\1f±\ 3´®¥u\11\94Z-9/Ú)Ì\ 2\8e¤F
-ò}J°v\1fdú~\9dÖá¬gV«em\13>OÛ;BG\9b-ç\94\1dÞÕ\v\7f\a\14|\8fIøy/¸4\17:¬Å\bqZwqÝqmÄn¤^A5°z\12Öî\82$X\8biíý jî$ZÇm\8cK¢ú\10ÿõk^SÇ áºxÇÊÕåúÝ*±\9a\9f\85Ölc\e䥾è1N½soé\ 1Æó\99\90úûË\86î}\vC÷¶tX÷h\10\1c`üþ\ f \19¤uY»°þ-ÃZ¥5û Ra\\ 4ë3\0k·¬áæ\\8eÖ\94®ã\89å:¼\8e\rÖ6öV¬\17\14\3½%Ävñ\85¹I\er\7fup\10Ø´æ6n\9bù \9f÷ß/aýþ\0Öy¾\ 6Y]\bëQyÑe*³ZiFÈ\8c´Þï\8bs\95ÖG\8fe^\1f+@m¤VT\83¤Òd[é½ÜnÁÛOøóÅh\9dq½ÞY°Þ\ 4°~
-"_M\\v®÷{kR<ýWö\aTG§Fam>\b\e!Bë\9b&Z+®¯Qb\v©WP\8d¬\9e\84µ» \fk0ùu\ 1\9f?\fUZÉ8"õ\92¨æ\a\81}ÁôÐ\1e\96,F6\98\87\eãÇ\e+\ 2\ fÀz\a³¬©\19¤n³þÌ\13R/\99`=\bÝk9N6m®31½s¯Í/J\97u ë$+Xÿ\98û¬ë6ë\bkeõ¾~\90Ö\87"±ÅÞ\13`$©ÁÓ*\ 3«\15Õź*¦õ\81bs*®¹¶ÁÉ3\83cÄV^\97¸\86\82a\89ê\19eMí\7fqjý\ 35¬q9\8f\bëQyQFL6\16¬vZÏJë½¹ë\rqÍçh\ 2u"5KV\17Ö°Ñæ ôA\90Öál\b¬\ e°¶\*\13×{d\99ò>¨ ð\91_اßaø\16-jÅGâ%ǵÁº\e!Hkǵ\0[ε\rÕÆju¬Í²FXÃ\10=\95\14ÔÜÉo\v
-áógyTÏàºzjsÉâH0@âã\9a¯\03A¸¼H.\88ZÖ¾8îܻР©\90ãT&¤®¡Ð=\8f\ 6\89mÖÚ\fÒ,kbõ'\9f|´ΦµNŬ\16ÖÞ¨ê¬\9e¥µ\85ëLÄÖªòsÏYÎ\88¥¢b\9c\ 4l¬ò\ 5(\9eM´\1d£2\91ÖÏa(IØs}zt\94دù(\rn&¯¶\83EPÇúb!½û\ fÇ \89ÕYX\1fOIÖ\9e8JÜ\93\93h=+A[c×[ÆôÑ#\11ÔFê\88j\8fKÔ\8e\1eûan\96þ\15¢uÄuCõÃú×\b°Þ
-k%\9fÑ\88sYÏÙ\81½\ f¨\r\8c\16NÛROK {:¸ê\ 6k[ì;Ik¢µX!\13®\ 5Ø~:ª\8dÕ*¬Õ²vX»i½%\9a;{*s\87ôõ\90Ø\87\86¨ÎO°\ 5¸.\1fÛ¹¶\£ºbu\12Ö}\7f|sA\12¬CçÞì´ù\ 5\83õ tÏr\9cvN°æió\ 6ëÐ\fòK\82õ'ý\94°þ'¨0ê\b£æY/e\83 ¬÷Á!Z\1f\1e\87ëØðS\11V ¬\1e.¬\1aÓÚ¶ñÑ,\ e\fã8·ù\0°\83¼ÆÞ\90w\ 3\86Ǥ\1eik\1e®ñà>aµ\97uO%a\rÓ\8b>»\9dY\r´~\\r\84º!$ÄÜû{uháµÆ°Ã\ 1ÔDjA5±:Ãú \83µ\7fß\eò\ 1Vû#ç\89°û\86qÝxÝ\89ÝÏ>"ô^ã´n\1fÚ\19¿Cê\ 4\87íck§e6+T1Zß2ÑZqÝx}\9d\83zBµ³º\vëæ\82DX?\82Sô[1\191Xñû\ fD^S µàtQV̤®y}8ð\9a\88\1d\v\16ä\7f\0ª10Ó>]ÌÈ]\8fº¹ nY[}Q\9aAp©W9Àxî°\9e\ fÝ\eÃ\1aB÷8ÇiÚm\9efb\10Öê\82\0«\81Öê\83\ 4Xÿ\9dÁú\875¬_\9d\87õ¾}CZ\9b¶\ e AÖPo¡:\1eÞ\ 4\ 1Èe°¾n¬ò\9aÌ\88Ö¼\8d¯XÑü
-cüÔ)è\1e1y͸\1e¬s,0]5\84p«6L@6T;«¿\8d[\aTXÇéE\98\ 6\8c¬&Z×Ò\9a\87/\86cÍÙ\ f\1d\81Zí\85½$Z\ 3«!w\8ai\1dqý°±\1a\84µe\b\1a\1d×;eã\9b!{pdëò.Ûh!q\ 6ò\1d>I°¶Å¾kÕ\bI´^Áµóú:%õ
-ª\9dÕ"¬'\17D\9aA\ 4ÖfZo\8ecKÁ\8a\1fðzÔô²\1aR\1f\88_öP¼\f\ 6Ïm u(-×/V[\95ÕYXO;.'\17$XÖÖ\fÂ\9d{KO\9b\9f\aXçн?\9e\vݳ\1c§\14\rbmÖ?GX«°þ$Ãú×¥im½{\11Öi\82q)X\97´®²u´\9dÞ³*q\r\14æêoÂ\ýÎkdO¬2\1e>\82Ó8º÷3&\82\ 3ÔîÀ>c³\8fÁ\rY¼Îqi\\7f\17QM¬æÏüùe\845\13ÏiýX¨Í\99´¦Õ¹Å\óáLé\9aÓ\fj!µ©Ö\1d6\82ªÂ\1a`ý¸µ\eö\a\f\91\1aXÍ°Æ\95í\8eëgtåÛ.\87vqô7ì4R[\9c\ 1Ú4\e)Ƶ\97\18µ#Äi\r¸n¼ös\ 3³º\vk\87µ(kóALZÛOç\19²âÍÓÉJ¸böÁ\19RïO'ó\1aÕúLÃÉ!"õ\bÕP°x\12\rk\884ì{x\82\v2Ó\f²ì´ù§\10º÷G\8bC÷b4È[ï¼'°¶6k©/\9a°þä\93\82ÖlZC\85±Ãúo\1cÖÑ´N{\19ÖöÖ\99i\8d³qT¦PY\8dQ\95\1eÎ¥\ 6'F5[Ró\13\18\13A´îÆ54x× êt\1cÚ'¥\7f\ 4ä5ã\1a÷9®\12×V\97\8cã4\82êÆj·\9eôùxl¡°\8e^\82³n \83\11âÃ\17µ\15J\18xv\ 6ÔJê]ÀBC¡\9bZ\9bh\90ç\91øZ\90XÝþ
-\9bÜ\ 1\13Z;®;°\9f¡M\9dùø/·ß½\ 3P\9d\\9aÇpCB\97Öb[\13;®\e¯éܨ¬Va-\965À\1a£_7c~\8bÆJÖ\95S\ 2vÙ¡8ò©3¨\ 3°\83¼ÎM\82|Aè\7f%\91º²À¶ «q\92ÿîV^l½ æ\82x}±l\ 6\916ëEÓæç\bë³\ eÝÃh\10ß\13ãmÖ\_\5¬¡wÏ7ÅT°>1\845\98\84V\119H-aPZV÷Ë£*-»é\99g õÇïk\89)\82ðÏN\9f§pmÈ>\9d<?\1cºP\8a\9cÇp\fÙÊëÓ§!eõÛÜz\8d«
-æÏ\98×ÐHò^fµ~ä}-e)¬\9fx\ 2F\ 1\93ï\ei]$\84\14ã\7fãy\12\ 4\0sÚA\8d¤N²Õ\855Ç\ 4Ú(OBõ#\8f&X»´îNÈ6Ia\14`\v²}ÿÛÎ\80g=ý7·?¸ÝgdÁ¤yÜ£¦d¯o\93ÖDkÇuàõ\8dí8«kX«\ fò\98\rÒo\89\95SµÝ[\ 1®\ 5´áß\97 ¦×`\ 6vQÅ,\9fÛ\a\13©G¨Æ¦ÍMÜ\13é;Óné½ â\82\88eíõÅØ\f°þ·ç\15Ö1!U§Í Ö£Ð=Ëqâis\9a\89ÁúbsA>ù$Ð\9a|\104Cï^ßn>\82õ\v0ÁÈ°¦\9aÎ~\15×\a]\sK\18\8c=YRe`5ô\rtPkB\11õ\ 60÷âF>hC±p\83"íñ\ 5 ùK\1a7uò¤E\8b\ 47äML¾^%±«6\92÷\10Õâ\81лÌñ¼Ô\£Ë\f*E\8dNi]IkízCZs;¯Ýª\ 1\0pã§Ö
-1\19\94\8c,[IXSN \ f^\86C¬6X7i\râz\9båæ\ 2³ç\8f®±h\7fp\e}{Pþ|Ô\17$<(\r!Ý\baZ\ 3®ñÜĬî.ÈT_ÔÖ=ñADZGZ{[¢\16N¡`ÊöEÙQ>PÔû\ 6\87\80Mô\9f}në\17O¤\9e©\ 5<Æsü÷\98°¾ñzuAܲ¦úâyîÜûÔB÷ \1a$ÍÄxçÞ\ 4k\12Ö¿û\1dJë\1aÖ?çÞ½z*\ 6R÷<vº\865Óºì ó¶\9fCÝÆ\ 4x\*\82Óy\14{áüéeFØò$Û®\ f\r+\9bÅq\90wbg^\93¼^´\81·Âx\96Ø\10\7fýÎ\f«ó\9e\\12Ö:µÍÍÊ\ 57\87Yí0}¡·jÖitëû=Ïz:\80\1a\1c\86í\11\86¶Ü÷qH4\99aõc¶÷Ƥ5àú)ËÍÝNÔ\1e\1fÿý\8f>¥ß\1d{4\ 1Öf\84\ 4Z;®ã\11V\aXk\9fµø ¾Vaó\12\8d. Ø¡\9b<\1aÔ\bê\11§#±SÁq`°ØW7R#ªw0ªC) ¿®ÀÆ´[¤¼Ø\\10²¬S}ñb\83u\15º§Ñ ³°þ\15Áúwí\90´Î\15Fn\aɽ{u\85Ñ\8a\822D½QѸÎAh8ô\14\ 3à9õB\ 6>ò¸\87Í\1f\v½)\ 4\16\878¯Ë©Y8ÆlH¾ìÓê\10\8bý\1däõÂ\r¼ ÚÉËnÿÖQ-} \81Õ\9e
-\12\84õ\90Õ@ký°6¹/ú\94û¢Ö!æ\ fØ,Õð¶/|\8fÝ\²\13\8fA±è1\[PXk\19â±!\1f\1dÁ\9ap½Õ\83s)ñ¼<ü»4Éq«}sÄj\8d.Y¯>\b\18!\9dÖ\8cëo\ 5R\aV7\17¤ÃZÛAÖÁ^\ 5\7f\98ª½Ã¸öÆDêIL®s\85iàôÞÑ\19\ 3Û°\1d¯\bxjç^H.U<iÊë1\8e\¹WZA¬¼è.\b[ÖP_<_\9d{ç/!\15C÷\9eBXã´¹ÎÄÄf\10du§õ¬i]·\83,_aÌ\97A!®+ïëàA\97Õ{0¦2Ì{\ 4CS ´1¦Ñï\ 4q\9d\16\87\14\93Xt\14Ù'¬ãOymÍ!<\89þ&n\ 3\e®à-u¶o\93y§\91z\ 5Õ"«\89Õ/*«Ëêâ¦M¦ÿ\8a!@ 5½\88\ 4ZÓhó¾ú¶Ç[~`{¨%\f.\ 3[\f-ÝåÉ\1aÖòÞT úQ,Sl´¶MÇõ\16\vb\ý±\18Ç-á{Û\b°Þ`[}ï\17i\1diݽ\90\86k>Êê
-Öâ\83¬§üW_n\1c:]¨11\13\9b\9cçp\96àt"v¤ÿÀWÑ/Z\92:T*(Å|\ 3&®ØÞøV^t\17¤wY«eMõÅÏ\ 6ÖÿaAB*\84îi\8eS\8f\ 6ñióÐfÝ,ëß\96°þvZ\8fÛA¬ÂøáêMëâÇî/Ö\95ù¥=?ûm±*\95\169\9aíálÆZjæ\93\18Ý\8e\8b\9e ¼IQôÇ\8e\86\ 3,×IË\17^ ìQ^ûRÇbíî\1c¶\1dØò/Þ~»«êIV˾K2\9d\84Õ+O´4hnU0 Còx\r\9f\ 1t#\ 4§µ·\ 5ZïN³ÚÅ\1d_Èé\88iàôv´\18\14Õ\89Õ¸1\ 1p\1d\83^\rÖ\9bl\8aõ\89'\rØ[¶\9eÅ\81`°\1e9\83ß\1ag\ 2\82\ f"FH¤u\81ë\9b#«;¬Ý´~\90öK2\13®\8d×\0ì=\81±HZúW~[Îõ\9fWÀN\8fnº"\12©\11ÕÛ¨\ 1\bbq\99Õ"¬¿u\93\94\17µ\17Ä\\90ʲ¦Î=m³þì\12R=to£ÂÚs\9cÊ\ 1FëÜSXÿîwIZ«iý/gUaô\17sòAJXs'?×+Üø: ¨\8e»\8f}ê£9;b\ 3çf\ 6+dgÞô\14\ 6=ÊcÐ>~\9c2]5\18\eåµëkßè¸`mz©µßî vT\8b]\8d\9b\1e4moÆ\ 4y¸
-®K´ö\1aã\16°EqübOºñéfgN\aÓc\aÙÁà2\18\18\85\87m\165Â\9aK\12\\9d\88´\ 6\?áÉ^óçÉ\ 5§\7fµÍÚЯV:ÀÚ}\90IZ\13»\15Òp\1dNgõ\0Ö\ fôM8Ý\by\143\¼\8f\1c:\13¹\93\9cf\7f
-3#\8béj.ÈÎ\88ØÅ£\e¿2ôÿ\fÚ\7f°¿\86\9a!)vöV\14Öm"\86\\90\9e\8f:Ó\fr\96\9d{«\vÝ[\94\90j¡{OwX\87h\10\e`\946kk\ 6aa]ú ã\81sN\a\99óA\ e\93\ fR¿TÙ³\99ê\15úRÕ~ø²Oä\19\98\84\81¥ª\8f$Õس3\1f¶kÜĵîzÂ\9dU\aHÕÇîa>G \1fü¹ç`\1dY\94׸ձ^»\ 4¸\85ÓFjEõÊ\aM/1CÃ\9a\1ef9d4>ÖHº=5è\10Û\ 3?¼x£g9=Kió\19\8c\96\80êÀêea-¸Þ´\19\80mÈFî®òH\8cÁ&\95ÕÎj\87µø 5+\ßb¬fX\9b\ f"FÈ\ 6
-ì¦NroMÜ\91\81½kDZ>3\8cN'~\9d%\9eÜÔRÏMëi^õQ\982j\ f>Û¾\83Âúk_e\17¤[Ö\16f]Ô\17?\1dXÏ\87îABj\11ºg9NyÚ\Û¬½\19d!¬ÿ%Ã:\9aÖµ\ fò¢ù AZãÅ\11q\8d\1dAX\9f -õر§->¾Iijé5\96^q½q#v\85\94Ë\9eÆumîS\83\8eðã\9eÂÍY«¼Ö1á\9d]\9d\1eNû\957\94Ô\13ªEVcK{mX?\11\9ffëÒg¤\ fµ\87Ù\b±"ã CÌoW¾ÇËf\ ft<"¤Íip\88*\11û8êÒ°~ìñ\84k\ 5¶3{ó¹\1cù\9a\ô´w:\81õ\ 3 Ö\8dÖÝ
-i¸vd÷\7f¾µ\86µJëHk\10×8øc½äaô'\fkÎ8\1cÀãrV\88f>\97\82ÿn\ 65µiªSÍÓª\8f)«×ùø~Opºµ·\82\98°þêeÓD\fº Ôe½°\19ä³KH\9d¢A\ 4Ö1Ç \a\18s}ñw¿\8b´\1e´\83P\85q<\163\8a´\ e°®Þ§²ùµ_ÿ\fïéðX®\8dq¡ª¯è{ȶó=¬¥ôM\98\b\f©eØ\926nGõz7N\\1e;\ 6¸\ eòÚ÷:\86=¼3\8bÓ\8bÓ~µ\91\1aQ}rZ#ìm7CÃzc¹\18\8b\1fiDë\8d\91ÖÞrÀÑ\1a»ù\ eÏrº0¦3£Ý~\0\98:ª\91Õ\8b`͸\ 6b\e´7\85³qÁ\19ü~4Ñ\1f\ 1\7fI`=¤5áÚ\8e³Z`ÍÒÚlkxM$u\8dÍ\89<ü\93\91=3a_A\1a§\85jf\ fà\ f_\8eûéCC½\92\9a{k6l\80yP4A¦\1eëIXCyÑ\\90?
-.È¢úâ§\12º÷\7f\ e\13RoÂ\84Ô\10ºw:ÁÚgb:¬£eM¦uÙ\ e\12Lëùx\90JZóëQå\7feçkoØûD\95E\e\1f\93;åA^}¼\866U\13×\ 1×\6\v=M¡\8aò,Nñ\ 4^[Ú*ñ\9a\17ñ\ e·¦\97§ý\8e\ 6êFê\86j\91ÕjW\e«W\84õN\9f\162ÃzÈjÝa\b´Î®h\19\85dw,ß×Èi¦tDtáI\90~\ 5T/buÆ5\0\e\98\8bÿêñU\9døÇ\1esT\83°\1eÀ\1aiÝp}kf5À:Hë\82Ö\ 1ש\9b<\8ckÒ\9cfFnÔÎ;\17\9f
-Ú\15ôã%\11f\8b\80Ôe\e¤\ 4 2õXOÂÚÊ\8bÁ\ 5\19Ô\17g\9bA>³\84T\rÝ;¹\bÖ¹¾8\ 3k\8e´æNë¹\12ãHZÇçðÈüÚ»7¬\91 \8dJ\ejl¢fåF±£¼¦>Ul\vÙÎ}\ e4K0>JíjÍM\94×\98Íç;\1d\87[ÓëÓ~O#õ$ª\1dÕl\81Ì\19Öíy\96ß=ìõ\83ìý\92Ö\88k\9fÏÆ[û\99g*NSí\10 ]\9aÁä3\ 42γºÂu\82¶ÿËÇü,ñ\ 5é\vÓ\9fÓéw\13Ö\0k¦õ\1d\8dÖ*®\11×Æê\ eë(\95Ö#\{p»÷\93{\13yBö(\16%Ðø\99¹3RÛùË\15\97\84\81:\92\9aPy³´.¾\99 ¬¥¼è.\88wYçúâL3È\ 5\815%¤nRXCè\9eî6\8fÓæP_üÝ\0ÖU;Há\83@?È \1f¤\94Öå\9bSm|)©}A\1fïèx\18ÍÂé6±Ó\81͸Æ\9eë§R\16N,\9d\8c¾Å}>Ë\ 3¼®í\90S¼ ØÃ\eÙͧÿ\9e׺¦^!µ Ze5Z ³¬v\9aðQ·h\86ÖVÂB?4\1c/"V\98\ e\80\1eXÁ¬~#XçQ\9dñ\9aÔqâs9»^ÏÜÀ\7f\80ÿ´\86\0\9a°ÖËÐaF\88ÒZpÍ\aa\8dÒº¤õ#\1a@\1e&\80¬=\91\89½\9d&ìKèV\80\1eÌà×Ô.¿ÖÜÔS\18Q\ 5÷ߺj4\e\YÝ«\8bAXO¹ Ý\ 5áƽ¹úâyi³\1eÂú\ fG°æ\84Ô\1d\1dÖ\92ãô:æ8ñ\0ã\0Ö¿\8b°®"=Ëi\b\9c\93ÖCX;\10ÑøÚ5X"á²ZÛ[\e©×ÀY\v\17úzOÃÁå×É\8d]`éíöa\83}\1aBg¼NòúeÏæ;\8dk\1dóþÝÑé¿£ý!%5 :Y »fX½.\eE\ f(®×eÙF\1d\aØ VæjÄñ\16j\9a~2{\1c³Æñ\f_\1feT>\92þ}ÖÃ5¢}tªXg\0ñ«\16\16åÿAûgÿóëQX3¬Á\b\99£õmµ´6ZW¸v^W#\9b[\9f*\91\r?¾Á#7þXñ\8c°]\7f\9dâ¢0P\87ä\97Ü\0¹ÖW¤\19«[u±µ\82\88°\9eÊ\8bS.Há\82\9c÷f\90ÕÅYÿ¿\838ë"!\15B÷¾w\16°\ e½{hZÇ\ 5\ 4Pb\Þµ¦"DU«ÀòÄ3\8cê «\rÕòê gM¿Ò½û)Åá\ 4?Ö¥ÂÈ»3£Î\81m¼>â\81«\ 5¯Oá^Çj\ 5o>úËÓ\9f8\8d¤n¨¶ô\95CØ_]°\1aʯ\8cjrö\89ÖA\SÔh\11ª\91\86[°aú DtQëMâ
-³c=¼\84êN\80M³\9cÕÉä&Òû\97YçÂú\ 1Q\r\13¬ki]àú¶$\8dÖ$®\11×Âë\0ì0µùTdöö\9a¼C>\ fÏ@y\ fó¯¶úE±Ù§\8ahi\e¶?®\81MñÆên\82L \93°ÖòbË\ 5Ye}~`ýû\15¬-t/ÆYKBêã)!\15C÷b4Èò°NKsÉ\a\19\8d\9c\8f\eB\0ÖsòÕ\9c/%5-S2Y\ry\fíî\98n\ f?ÎkÁµ¦¸Sz\99Í\80\ 5oox\ 4Ú»ã\ 2\95Ú\ eñí\8e´Øq´\88÷U$ô\19ÅôÊ'º\ 2ê\15R'TwY\8dv5\rÃ<
-F\91¢\9am}*Äæͳ\9bë\86\83\1c¥QÌ R·t òP\0\8f)½\84m1þíH×Îam4O\15Wèj´)OÇö\ 6\96ãþµ\1e"a\97c-\a°FZ\9b¶¾O%\aâ:ì2C`§ÁÍÈlÿ\ 1\ e(\9c~Àå\19B|tY\94 &RS§º¦\823«» 2õX\9b°nåÅÐ\v¢\96õ\ 5\86õ\92qÖ3 ©\96ã\ 4Óæeç^\rk¨0º\ f\ 2%Ʊk]öZãF§ª\16\8d\15\8ag,ê%ì½CYm#c]Èà¹\17^$\1fôd`À5¿ä/\11Å\ 6cb\0ìý\90 \15»ùºÀ~Ùö\82-ÜÇ\8b§ÿÖ\93
-êNên\80¨\ 3"²ÚíêÀjh\95aRs\19ö!£À¨á`k\9d\86äýx<+^\rµ,g=\ feñjOò:\1cÒ\9dÈàݳ5\ 4\86¾\81;¨mSßë\1cÕ(¬ga=\96Ö\91Ö5®\89×\0l\98Þ\fÈFfûOp\0âmK\9c\ 5\7fttYP\9bú£\98XCÍ4÷Ùº\9dÛeIü\8d\9dÕ½º8õX»°\96\\90Ú²\86úâ§\ 3ë\7fg\8bbV\17g½Ëa]\84î-\ 5ëÔhM°\96æ=÷AJi=\1ac$i\9dQ\1d+\14;b|"l½ÓqÔ\aqºwzåÄc¼6\¯g\c\rÍ.á\99ËÖ4Å\ e\ f:Û\rcë\a9!\9bö\85ùZ°E\vyõôßÔþHãô
-¨'R#ª\ fù¦w·@¶h \88gw\ 2ª×\86\1a,v͸\15bâ:ö\87må8$èÇ«çÄ\ 1Ðg\89Ü%X¬ÿ\9c\16ÉÔ\ 2ø!ÀszzÑ[\87²\9bÄ6c:~M\12ÖrQ.!\89Ö^eTÁ\81¸&^\ 3°+d\ fòQü\aX\93ø©%Îì\1f£ËÂ=ê\bj"5ö=Þë;âom[,Í°îÕÅ.¬[ß\9e\94\17\97³¬Wß\f²ÚÝ\ 3ÿ\91`}é
-¬W\15gÝB÷,\1aä_V¬[\851ú ^b\1cÍ\9c\ f\12B\10Ö%£Dñ4/½³ôDKyyèA\ eb\98n\8av[ti\82ÎßÚ\94`ö\18\ f\82mI\1c\9a¹F\81ØÌk´C\8eAz\bn,à\9d¼'Ëc¿Ü~ûK
-êNj|[\11\a\84-\10c5õÊ\84f\19çµÓz]\18f\84Å+n\85z R\1c=Ü\8c¯¸¼0 "(\15ñð\8c©¼ä .\ 5¨i¥t\a²}
-kBa\1a\9ee÷s-\96,\127Q\1e\84/\fÂz\bë\11I\ß]á\1a«\f\0ì\80ìJf#³1Ôª¸ÈS\9eUqfþÌ\16´§©@49\80\1a;Ô-²°ï\1c¾\1dY-\86u¯.öV\90Þ·\17sAJËzØ\frÁw\ fÌÆYcè^\9c6_\ eÖjZ\9b\ f\12¥56\84Ôë½@ZkóônDu]H¦\95w´\9ft\9dï'½\ fÊ8í\96¸CÄÉ\9dÂë{)\15§ãú\116f\91EíJÞR\1f½L\95ØÀë½\12\91\1dyí\eÃpÃãÌZ^;/ ¥\85Ó'Ú®÷ã\11Õ$«½´è \v\84ê\8c¥ûÛ\0Å5µ\87éýnmÒ±czsu?B\eò|=oØ\86q\16x\ eÿàyàÛEÿ\bî\e\1dþ\84Üß\ah\93\97b:}í@X/PÖ\19×w\11®ï\93ö¦Èëõö¡\19²\ 3³\83Ì®r"\88\aW\7fu3äß^_\174 \1f@ý\90ùGk\10Õ\93¬î~µ\1aÖßl¬îÕEq¬Ka\8d]Ö\8b,ë\v¹{`©8ë\98ãTÃz\90h-°V\1fd(gÚ÷|3¹\8f\8fÓ,*cºÞx·1ö\80¸¹e\ 5÷v;ôC¯\93\83\103\7f×\ fWr9½áWyGö6\8b9\9aá5\fã\15\8f3\8byåw´ßÞÖÓ8¨G»\83·Q&*Y ÜØ\880Zc¸.\9cëÐÍë\99Hq\9c¥ÒMÐ\82\f\8eÁè\fѽº\ 3_¦p(ð\81u\1f\94£ï\89Ç+Ôò91²É×\ 6Ãû~þúYX/\80uÑ\15â¼Ör¹ðÚ\81\1d\90\1d\98]Èlû9Ò\85^ðö¬\ e\\17\9bJNC¬z"5 Zdu¯-Þ@\86õWz*\889Ö\94\v\12\\90s¶¬Ïßî\ 1\86õ3\11Öï\9e\e¬¡\1d¤\99ÖÍ\a\81\12£KëÑÆ\98\17C®µJë\10n\9bò3·%RÇìDÜvw·\rôÊ;&J\94\80k+5n ·}¼\94ç\ ftGán%Ø\ 2Ní!¸3,¬\ 6ãµ\8eBf8'\94ÒÏO\v\ f\8e\ 3© Õ¾7§\1c\17R#pm¥#׬\89z\8d½\10îæM\1fÐ&¼\1d\1f\8f·ã\ 6V¶i\1e\875jÅí¥Ø\1d~?\e\14Qó\ 2¦\e\96ï\1e\1fÃ6~Rd\8dàq_eMÍêJX\17cça>&Ëë\0ì\a\1fBdWÌ®¬\91Mp1g9\92\9fÉË\9eÑu¡/Z\ f£¢ö\ e%hv´¤ÂÛEV7\vÄX-\86õ¥2¼X\vkwAÆ\96õêaýo\96\87uÞ=pÝÌî\81\97\8bÝ\ 3?¯<ëzÜ\Ö\ fP\85Ñ}\90(e\8cq¶ÆHÒZÓ> Þ¶\\e²¥B5\99Õ\8aj\fÊ!\99â¼î¸\ e©\93\ f\87ö§\8dz=\17\rÁökªÃ\9f\84ð\8c\11¯E`k\ 4öqß\ræËy\8b£K\1f\9f\13L\1f?ÖA\r¤\ 6Tã:Êîê\83¬¦ö\ 4nnôntÆõzÃuüt\8aY\96|;\92lz(4[\14§ì½(Á=w\92\8f\x\13Ð3t·\968¤ÆÁ§ÿÊ]Êlý°ÜÑ.*\92à~Ãó`FX§D§[Òìyâµ\vìµ÷\ 3±¡\ 2Z0»°FüG¹\8c@Yîð\85\11Ë\16\ fgA\8d#DÞ\96®¨\16YÝíjcµv\82èðâ\9f̸ Ù²>\8búâ*a½xQÌÃå¢\98\16\ròá÷0ÎZa]f\83|2\82µT\18Ý\aAiM\ec¸Æèë\ 1]Z#¬±=¯\9eu¢èÄ\8cê{\ 5Õ·C\0\86OÞÚ#Ýo7\{\92Yè,\ e1\9b£v`ô\ 17\87°£\1e»j\9bÀ\9d׶5Ì\90\1d\17=\ 2\99íÈ\161Zñ\8e+ÒêU\f¶¾n\ 3·B\89 \8eÍè\85u\8dÃ\17öÁ\84Q\16mÇ{$ø\90p7Æb^ìF\89\9d\17\95Ú.á\9d~\95]ä\ 5Æ\ 4W8ngûL9y' \e\89\rUH<k"ªka=Bu
-á\vú\9a\81\1d¼\99U3ÛÕI1UºÚ\13\87\9c\1e\9båôC\ f\862
-\93ÚQm\16\b°º¥íõê¢öX#«£\v\92,ëó\ eëÑî\81!¬\8bE1%¬ÓV¯å`-¦µû *«\1ac\15\11\82%1\84µ\f½ÄH\89´\96\94\92\13\1fȨ¾U\97&ÙÖ¤´/é®» Öx?Ìï\86êÌ¢ã=R\9b8Kt{ä5\ 3Û×\86\1d\9bÝõ¨¿z\f×»ëÒ` µÇ{?\95â½½°HóB¥9k·>á\1ag/à6/¦V\92ïa7£õ\9f¬\999Èíà\bc\19olwçb\1f9È\80ÏJè\92qÆ\16\1a\94=TÛº-r\1fÿ\ 5ìÿÝ\17PÏ\ 5ùïEV\17\9b\b\84ס7¤zl¸Ò/ÛV²\9f\r\17y\90&Ã7Éŧ\107x]À<>pºì\9a¹ËP}«¢Ú,\10`µ¶X\8f\84uvAÎ¥¾xö\8bb2¬m«×\96¥¶z\19¬³\ f¢¬®a-¦µø Ò\10\12k\8c4ÇH\9b·EZ?ûì\ 1\%`¬ÞÎA/\81Ô\8eêu\ 3TßRì\8e\ e\8b£\9b\er7º!<c°l\e\ 2X\81!ñ\88x\1dö\1aäÝíqÁ#\1e\í~8,¢ÌéÞ\19Õ\e"ªk\8bÖ'\87\^?0èåÍO2o«\8bo·\99\94CUÏ5¼à\bWÖv}B©/\vj\ 3u\99ÒQ\9a\11·2-\83+Âß<\14nï»·@uüo\96¤&bÇr£ ýÚN_\13\1fyÌìõ\99Ù¸k¸z©Ì§xZçGwN¸Â\ 1ÏPæMÏPß\ 5?¡Zdu³@\98Õ±ºø\9f©¼¸\84\vr.°þ_\96Ýê5^Á8\ 3ë´/·4IX\17°6\1fD¥uYc\1cí\8cé\93Ñ2Ã!¯ð>L\8e+~¶\18©Áÿ@T¯eT·\1fíÍÂé\eá\b±§«_äµ»!\1a\15ld\8a\ 3j\83N3¼à\1få\85àI_ãb\ 3Û\a\9c\16¸û~ǸÔ](m[(½ë\11b\bkTk\ 5Ö\vìÂé»ü8°Ù\ry\0;Cè9\96[\9f7Ô\9cö{1\bz|J`ã\ 5ëDµG2´Ç§¬ó\91E\rQ¥\80Ì\ 10oF\85\e»3î\86ïÜ \r\8f$û«\ 2ª1!\95H\9dw\9dó
-\19Óùw\ 4\89\rßE|æ\ 5h\ f\98m?ÏøÞ\18è»Ìá\vÃï\9fì\88\11§ÃË\8e|Bív\16T\9b\ 5\92X=\10Öµ\vröõÅU/\8aY\ eÖ¼\82Q`].7WX#?Y\ 6Öâ\83¨´æ\1a#4[\87u\8c"màNýV\ fþØö\14ç\91o"Q\r) \ 5ªû\8f¶qú\ 6:Blá5º!1ÑLµÛì;6Î\1doØP\84Ô\11¯}³A\ 3¶\85ªÂî°¸È]é\f\e(i_\8e¹G\10\18»\0ÕÁ§õz\1a\0\eí\90h^ã\8b´A\e\9ff|7æ\97Û{â3"=.\16èÄÐ{Q\11\1a0í¶K\ 65\96¡o\81Mã7¥\13\8d4ݹ\95\89m̶sÏ\1cªÃ3â[£SIl"ö\9dôã\eA;3;øÙö6\19ç\90VqR·»\17\14\1ez(¶·§w\1d\1c\18ºí6S^\1dÕ"«\9b\ 5²\f«¼8ã\82¬Ö²>KXÿI\rëÁ¾\\82u\br"X\7f¬6Xÿ
-am¦u%GF\bÕ\18Å\a9 \1dg¦\ e\9f¶\1dÇÙþ\80\9d]\vPÝ9}ýʹNÎôÏ\9dØ\9d×è\86\10¯×Þ?j\9f\ fÈ\14Þ\9f^ðÚW\eX\föþEÛÃh©\99/ËñdïgôCÛ\1aâRJTS\95«jzp^«¼¾\9f\1ea¹²7º\eó»Wò¼\96çÕ;zf0q\92\9d=ß2ÇÝ\18\83f\f£\ 1Zfò\16ÆOxx/3'\8d$¶Ë[|K ×\87\85¨\16.çGÅMË\10\e\99\8dЮ>CûèèúÕ\1fê\ 6~\12/\7fÊ\ eJÐ8YN\8f8m\ fÑ[àv\16TO²ºY s¬NÂ:» çjY¯b«\97`\9c]n¾[`í\ 5Æ\ f*XK\85Ñhý\89 Z\85u\80uá\83 ´NÍÖŦs\ f^Ö\94|-\8faöGµ\8e\8dÒÈ ÕúÂ$¤\16N_ëÇ\88=Ýy,¯\81×÷\91\fY|\14ë^\86ÓñõÇ\99×}\15Í\ eZ\vn«hòÊ08°'goÈõö\8f\8cGð¹±\9aóR ÄuGAÌÀë5±\91·zéx¨¸\e+\ fRþ«·×§îºHE¼Ô<ÂgØ\8aÁ ¾]\14õÍj\99)¢¯/\ e¿\98\15À¾#\90\92\8f¿Ã\8cP=\ 4õ\f²yl¦\826>?\fÚ3Ì\8e\19U\88îá)ÌÁ|YTM\93¡kòÎ;Ù\95ºÅÜÌ\eÅ\0é¨V\v\84X=\16ÖR^\Ö\ 5ù\8ca}4ÂÚ"R\7f\81°\ 6iý °\1a]\90\ 2ÖIZs³õxy.n\9fÒ\9c|{\99§é\97àT\13\7f ßå¶þ\18¶§pãô5t\fØÆks¯\8d×÷à%\8dd\98k^°\8b>îäu^o\81\81\99¼\19\1c×á \9ayE\r\84zC)v[\fK\89£å\94\97\ 2 ®aYO^èÍ\8d/\1c¡\9a\97;.îõ\88\16î\7f\18f\82ÖnlõZO?\e:£>\f\ 6õmF\ 3ã´¿\87]K'¾\99©\95V\ 2Û8ÉçNzP\95¨îH¾qt²%\83*\eFÓÙ°ò·\162Û~ªÁÿ+a<Û\8b\83ÖTQ9\80\1fKî\8e¹Å\1f¢z;wT\8b¬n\16\88³:\9b ¬Sy±pA>\ 3Xërs¶A\fÖ\9cºçk½ \1d$к\82u4\93´^`\84\10¬%'ß`ýôÓÊ\1eD5-\8exh\8cj·¶\ 4ÔW\87\ 3Àn¼¦j#¦/`\9d+Õ\8bRÿÂ\1aP\9f\ 6ì\8a×£m³Õ¾\85=\18ðÍ9±\96?Xd¥<N2\16\18\eH]6©EP\ 6^Ç\19ëì>${\98û-¸õ\81;๥xТ\16\7f,\83çgÑ\85q×]ÁûPI\r \16H_S\1e\85v'ö\8dýY\1f\81\8dÒVHéÿH¤N¨FPßP\9dHíÄì[nÍÔ¾=R»fvð³ë^É\85§*\1epÙ ¼æàË\16q\1aßv\8cÔ\8ejµ@\94ÕÑ\ 4¡V\90QyqdY\9f_Xÿûó\0kÝÁø÷\13¬»i]Iëߢ\vÒê\8b\fë$GFHn¶~\1e\97\ 5Z Å\8eÄjDuÜ\eq¯Å»Üæm\98ò¾Ô@}ÕÊù¦\9déÿ\ 1°Wî:°CnµáFµ\ 1*÷\11,Èà
-R÷\84o\9fö|¨ÁÂÙ¼q¶\f\89åìÁ\98\94">5\92\9a·0à\80Áx\99TÑÉ\eÊ\8d©Ô7p\87\aU¼Ôû>®¡\r\88M}\17éY:Û\82AÞ\a¾`ÓkX{¦_\15\ e>éõQ\7fCe\89 \85¬\90´ÿwû\12¤V4×>\fa»\10ÚØ\96]¼¬\84Jä \8c\e«\ 1\8bJ6ãªÁÚ\92Ò\83\ eÆ[#§ûST~6\8ej\91Õ\93\ 5R±ÚL\10\14ÖZ^<\1f.È\ 5\805\ 69ÁÂ\¨0\16Òú·YX;¬+i½Ø\b\19Àz\8f¥\ fm7V3ªã6¶û \89ë6©*ö\8eyûÑ6N\7f\ 3\8e\10»Ýw\82kâõX1ªßf«\ 3\17~Øhª¼~´Ø\10\8eK±v\fwÒ\84ÕHåô}\9e\142QmEE$u\18ÃȲ¶
-\ e
-óznA \9c\9dõ\86\19MüºO¯ø7GüEWÄ\1f£éMÇÛ/¼ë$Y¡7\9bùA \8eOw½d\ 6\8fúëÝ\11q`£\83lÔ6\9b\89HM\9f\87\93Úð|\1d\9c\1aÜ\15µkn\17Ð\9eavQÈå÷©Qù&yQù\15'ÖYYNëçÁo;BjGµX É\ 3 &\88\vëÚ\ 5¹`°nûr\17xÖ:n~¼\865\8c0ª\ fÒhý[@5 ë\ eë\7f\ e°vZÿ4\1a!\1f¦¥1s°¶é;[¬8\ 2\10¡\1aª\8a½^,?Úv³]ɧß~í¶Ë¼¾\19_hyȸ,ÇÁop¨ñ.\1aäµçe\87=\86q\81)\9e°ô@c\82·x£L\1a\14²ù\17\8aÂ!\v n(\8e\9d¼w\10°ï¾gä\r\15·cé8X?eý\9e\7fCh\86\9f!¶\17ñÆ/>XÒ3ñ\86\92\1aý²«éá~e:ú¬¿J.\1d{7KÀ\86G\9eCÛ\8c¦[\87¤\ 6P_·ðDl׶6s;½;\8dL&v\98ê²À°N\0.T|Á\99k2ç\ fã\ 6´¥LxM¤\ 6TO²\9aX\1d;AHX/pA>;X¯`íyÖ\1f}ü\83¿^\815Î\9b»´î´þ¢ZY\9d`]ø $ëdk\93Ö Ö\98\96ïKp¬H\ 4rTß\ e¨\86Ö\9eNêé&»â\8aéçÛÏôÏW\0°#¯oJ\ 2Éï¶pÏU>oÜkº\16"G6p`6l8Ø\ 2©í³+:<&øIÀô&[1Ê\96~¬)Â\80ÁÐ\8aà.\ 3¸©ã-\1d\ 532ëØ[\ÇB\15¯\0\127]ÜT\bV4Ôý½gÐxá\15=Ç\ 2Kj{ ³·°\8eé+äÐeÓ¯\1c~Ö_c\ 2Û\1c\91oá'\b\97\919N`Õ'M\r\9f˵\vO\ 2wÙiXyÛ±,ÀÍ7£ñ\9eùê@®éÐ\83\93
-¬`ÂÁC\v\9fYÞÆå?\9co\0ª»[=Éjè\ 3QÃ\1aM\90JX/rA>#X?9\ak\9a\8a\ 1\1fDiýÛß\8e\84u\ 5k\92ÖÅÔ¹Ì1²\ f°Ö\ff\1dÀ\93\10æØÕ@ËØ\fÕÔÚc?Ú~Ã}Í\8fÜ{z×1¯Ñ\83Ä*{8\v\ 3êÙF\ 3;-3ÄpULn¯Bß=ªRãÌ6â*è¸ º$õÎΪKÌïê\1aØw\16\92\96\b9n½¢×ZE\11\17ï\8c@×_\9f\ 4ké {\r\ fOYλ\15\1f\1a"©Í.\93\vF8ýõpÉÀ\95óu#¶<ëåâAG\84\88\r×\90]/7ûs2ðI@\1d?\9bñÉà\1eù$X\92\ÌljÒ®\8d¦±÷\94.\8a\92Ò\85ëAc\11hK}\13HM¨^\91Õ¿\1aY\1dL\90Þc\1d\84õ9º \9f\ 6¬=Ï\9a\17æ¾ÿÝ\8f>îá Ú»'>HEëß\14Â\1a`\9d|\106BR\8d±Kk÷A\18Ö\16Âü$\840DZ\8e\84j°ª¯\91.Ìoèm÷µé§\8bGî;\ 56ò:¼ÓÚ+ä\12ç\16\82\e\ 1{\8d,8à\bÖÇ\8cØ\9b`ËAZs\80IÂ\9e9 i\93\8fÚzÑõ)RÏ|j\88W(f?\92q\\0\9b\eÓ²\97\7f'Þ\8fÌÆÜlq\8dUñr£\ eVð\86\16\83¿ð°\13EN\95¿ \15ß\f9¡rÁ¤+æ«vÆ×\8e\<xõ\10±íêðkå[þ $óÃA}Íð\13\1a}f\bî\ 2Ý\bî¹\1fq~oI\95ôÙj{~¯¹3\14V«ºjÆ´Öyáuç
-Fõ\97/½¤Ëê\92ÕÙ\ 4)\84õÙ» ç¥À¨\13\8c\18\91\8a;\18O¿úú\eoµp\90\8f}*&ú \8dÖ¿AT\ 3«kX\8b\ f\ 2í{©Æؤ5ú fZ\aXÛ*îÍ\9bÒ\12\98\8cjÊáj\89\ 1îlÉm÷Õxú]×n:â5h$¸¬]p&\1d\1a\14)ê?LÌ.2ýlG\96¥BKªäR\89Àõ&$Ý®QIj\rÂ\ 1\95[»Æév.ïf\14µåýx\vÚ\r72§½Õâ\9bt ë\82\88]Hì`¾\96\87üaø\8b\9bù\81\85\rc\81]0_I'^;W\80À¦\92£\13Û\8cc>7\19¨yÄöÚð \vý(á\83\8a\8d*\8cÙdÊï\0ÅOyðh&$\97ï4w¦\aæ°¦:À´Öyá}GHm¨î²z²«Ý¯vÃ:\9a ca}aaÍãæaù\80m7\7f¡Á\1a\93\9c¤ÑÚ|\10¢õ
-¯å\7f\95ÕQX+¬g¥õ÷\93´N¦u\825³\1a2PǨ¦~ù+ñ¾k7Úezô¶Ó\9bÎî9ª\1a]\17Õ\88\9d\99²\98_ý·pHÔÝÁ\10Á5Y£hè"mÒst8ØNs8,²}`~°m\\ féÍÜÌn¿:\10ï`6\8eÐx}z©å\ e\1dîÕ\89=\17\ 4죪ª\b·\81ó`l`óã\1a0?®\88\17\8c\-_\96\83W\8f^<ò°73\r\9fö×ÓE\91\ e\J\ 3P\17\ f³ú³\8a\8fº\11¼£ÉtýÜ\8f9\ fDÆÇs8Tl\ fÕ\9dùzê\f¦µÎ«ï;òÃ!T\8b]\9dY\r&\88V\175\16\ 4\85õYZÖç\aÖ\9eg-k½¶
-¬\8f¬Àú%\87µ7Z\8bi\8d>\88Ñ\1aX]\vë\fëàZÿ5»Ö±\1fd\ eÖÆj]Ø5BµÅp\89ÿá\ fá¯Êm÷e<rÓÕ÷\\aö5|]Ç3®\8bݨ\120\8cÙ !\12SXCØè b\12C&\a±vkgA\r³\1f\94\96R¾8ß@\7f\99lá\ fÉxóÍÑ¡ör¾¿ÓöV\8b+âñ¦\8bA\97\ö\18Ø\15\ e5\85Pû¡"õ\95î\84^N×Ë¥éèÕ£\17\8f<ìÑ\101G\ 4\9eö\85×$\8fx»\98\bÔ\88i'snNñ\ e\95\ 1¿\13¼\ 1Ûø\93Æ\ f5ü¤Ë\12{jF¼=àÙ\8b©áç°ZLkÍékLê\8eê¿\14TO\16ÈÔ³§¬þÏÊj3A´º\88ÂúÜ\\90s\99`\1cºm7ß¹gß\81\ eëWNuXSïÞdZ«\ fb´þu@5\vë\fk*1JCH¹ê\9cMk\82õ\88Õ-\ 4Õ\17v\8dPíþ\87¾.}¥¾ïê{\8e\80-\17öâ\82<Û\84è²\ 2°Ù\101`\87]ÔuÔY\fÈÁ´¤\10\96tß\9c÷A¸*ê{u\85¯p`CÕ¬\ 2#;Ô×X\ 5\ f[-´Ï\ 2jwÖw\11z.
-\89íp1_8\94ï\ 2\1eèû¹új¬@\93h»L.\97KäüU;úÿüêi\17\8f<ìÑ\10ñ\87}xòá¡\87þ\0Ô\ 1ÑéÁV=æJ\82\17&\93_Ü£\1f5> í\11X¾Áp£Kº"°\90\9dÞ&\96Àt»>.\aR+ª\9bªnnµÚÕÀêÉ°F\13D\84õÄêßÏÂú\82Àº\8aHÕ\85¹÷N°~d\82õ6\81õ±\ 6ë)vO\e½ÂØ|\10§uÇõ¯\9dÔ\rÕIXÏÂzÐ\10\ 2ý Â\b°.\84uguÛØ¥qMÚ¬W Úü\8fËë\eÏO¿ç.ã{\ e\80-\97vò\ 1\17\94yüò¿\ 1\ 6mx)\rÆúYöSÈ°+ãqf\83Ëp¯Æ\1c¨\89\ eñ¯\83Ð\8eÄFë¾(¯FÙD öjþ\95p\a\86²¯Õï ]\a\9f\9eÑ \ 2\8faÆ\17¾1|?צ60|²÷ëE\11ý\97á\18¶ÛÕÓ.\1eyØãËÙ7Ét\87D\91üf\ 6ÏKÄÕ7\ 1Ó±\85pþ\8c NàÆÊ@~\13`»=> Ëî\96Ás2yó³\94\1eaúò¯~\15\7f<"ª;ª\9b[-\16\88Ô\16\81Õ±º¸¬°þta]l7_\81õC\13¬\9f\98`½{ß\81\83G4#µ÷îy\85Q:QZ\e®\11ÕÀj\17Ö\bë\bdi\r>H\ 5ëæ\82\94¬îk`&\a¤e\80dT\93ÿ\ 15\88Îépãé=w©ßs\11ØW¢$IÕ\9co\16\87®ÿk«ÁÈ*×om\95cçù9EæBJàH\83ݳ \86{$MSûÓ©Ô]ìÀ¦b\19UË \94x\15öÄ\85;\90ªxØv\11z. K®DKá\f\83Ýp}ù\r\ 5R_f×\8b^-_ª\8e\?íêA\81\8d\86\88¿\10ÐÛ\99\9bfö.\16\1cjætñú±ì\19 <\8cö\98Ñtõ¢\1f·ý¨\8b§4Ã9]\10X\1d¹n\84iú;GL\833%?\9e\88j±«\89ÕhXSuq\19a}\ 1a}Ã
-¬ï¸ûÞ5\13¬\1f\9b`ý´ÁÚF\18½\1d¤û \7fOÒ:àÚQ=±: ë\1aÖ¹ÄØ|\105½\1dD»A&ËZ\84ubõd\81\88\ 3¢Ó\8a Õî\7f¸±5¸ó\14Ù~Ï]F5ǯû¥]WÁ\82\87\b²\ 5\8dV\ 2v\19ìgQ"ãh¤0Û\eã7ªpf+&~+\18ÇÞ\rU?qìÉT¼*Ì9°á\8e¼\96J\89ßÀ&ÊË«\92/\1cÃ6÷\\14\9eHü¶ð\e#·Á\ 1á^\f\14\14éíº\89¶v±|±\9d¿ÀÓþ\8d\>íâA\81\8d\86\88\7f·à9\18¶Ývº\9a9\1d¼|\84´¿z¤Æ¦Ø[\98ÞS\18à\80mdvüy\87ÂE~\1a\ 2\94ó#\92=ùÐ\90xu\85iú\v#¦±\82\10Hm¨v»º×\16;«»a\8d&H!¬¡¼¸:\17ä¼Áú&\85õú Ö[&Xï= á Ñ\9a*\8cæ\83ô\86\10 uãõ¿\ 6T\v«YX\e¬Å\a\99+1B\85\11a=Õ\17'\17D\845³º»ÕÝ\ 1i\19 \15ªÝÿÀ;\ fn=?$\92.%`;&àr)ß\90kcWÓhdQrô(V\8eª\9c\1dä\9dÍ\91Ë\89\9f\85q\1c²R\92ËÉï |\a§9¹xK^Ë\9c¦öXï´\80\8ao*ßYù75ìD`ϸ\f`5\0"®Ê\1fô
-&$ø\92RúÏó\11f+°Q`£!âßm°ÓøÀC3i˯#¥\rȹ\9b°:C\8c\87Ù\1eºd\93ÌÆúºý¨Ë'5wHåÏ?¾BDJ³1f\7fO»Lü\ 5¹\93º\8bjGµÙÕ\81ÕÍ°N&\88 ësrA\96\81u½\83ñO3¬ïºwÍý\13¬7N°\96@km´þ\8e$Z«iÝ|\10\90Ö\13\15×\80j\95ÕÊj\16Ö\0ëá̹ø Þ\ e"6È
-¬¥¾\88Â\1aYÝ,\10u@dZ\11QM3¨_Ö;\ fo½¿H*éKtÏ¡\87íïâù\9drôJ\8aűo@÷mé\88ÜÆëV}Fl\10 §\ 3¼Ã\84\858,xcnm\8e¯\9céÑS¾%Ç·y\7f\99¿\ e\9bbH7E\8búkÔ\99c\8cÎ\95\84nMÅúo ì\99ï+\94Oñ;J\1f\97]Æ\92º_,\13\97ÿ¬\9f/È\91ÿ+ÄV`£ÀFCäë\ 1\84\85\97Fí\1e\ 5§\91Ò\ 2áêUdöT\bϵ\ 1óý\10ÙðÙúÏ{Ñ©>þ¡ÏSRÚ»&íY\ eF¦\91\9aQ\8d\16Hfµ\98 caý\99ÀúË_¹üëW6X߬°~ø1\8bÝ\9bæͽwÏ\aε\1f¤Kë\89Ö\8aë_\11©MV#«AX\e¬g|\105[;\88ÃúÈáCR_\9c\\90IX\8b â¬V·º; \ 5ªÝÿð\12Ä\97P"ý\99\1dÔH_\84·ÚK\10\13_\19¾[\16/¤¨\XZÍ\ 1\9bSíî\9a\99\11[<¹[Ì
-V~\84\8b\99²b\15^\11ØØäú#\9e¤\9bþ?öÞÅÿ\96¤(ðô\ 5ê2\17Q\81¶i\90\1f`C¿øqêÔ\e\14l/20\hEzh\ 1i\9aÛ\r4öm°iP\94\87\bºâ\8cãø\9aÕ\19ÑÝõý\19×utÿÀÍxdfDfdU\9dó;¿ûh2æÃØ7~U§òùÈ\88Ȭ·\15@\9dL?#\94 #x¶{ê*\ 4l¸\19¢\9f¡X$\8bÔo¦Õõ\83<T\90ÐoÒâ©-\80-\rlé\10Q¾´$+#2Z½7§\9c\½\82ô^K\9eY\18W'Z2zÇA+\99\9d\9aÙ²qcg?lH6\18´\8f'\89\9a*cZQZ\19Ób\9cÄõ± uDµ7«ißbÆjí\ 4)\19Ö\azA\8e\82õk_÷z\86õ\ eaý\93o\aX¿çÚû\7fî\17\1eýÐ\87ÃIN°\85\91s÷¾%7\9c\v?\bçZ3ÿíÿÓ\12P\9d²Z\18Ö\17\835¹¬½aÍN\90ÈjöV³\a\ 4v+jTGÿ\87X-\ 5\eé>%ÂFz0\ 3¶·±\85a²m\19ê§À¨,Á2°õçE\16¾/\92\9ft\91\9d\87lg6¿#3*\8bÇ^¨eD\ 1Ùr9¯¦¤6\9cÞ\1a]ÔYF\9c_Í\96"xçÁ9\95º§r`Û\ 5S%ZÛYѤ\8bë\ah¬ \9bß\98\v#[\0[\1aØFaE[
-lÇh\87xqjsZP:\83³µ$).S2\8eçÁ\81PØB·'}^\92´í\85\87'qÅ«ª\16(\1d\13r¼\1fóÁ@j6ª=ªÑ¬ö.\10Ì\ 3AVÿ¨gµw\82\9cÒ°>\14Ö?öª{^\1da}îaýÓ\fk\7fF*oa\84ܽ¯\ 6XG§5å\83 iÍ´Îqýo9ª%«\85aÜ :y/ÍÝ#\9f5\9d\rBñÅÏ>{ã\97?ó´7¬É "X\1dÌjpVÓ\97è%ªã¾&\11\82`N¿É°\91\8cUí¹°ì\9aÔ*\11R¶^dxlòù\\91×
-Øú¼zýQ\ fk?\98ü\12Örb³Íi½ÂNbUÚ¯\99`F\1a\86ùz^\eNs\84¢\ 6uä´\8c"èð]\1aNX\0ö\9c\16ì'\93\ 2åá+\9d¯\9b\ 4¬\1e\14 \ 6.ßKò\13,üO&¶\06\eØ\81×{á¿\19\92÷_*Ò¯¦9-\86YBè·\1c.9¿ã\90\95ÌNÍlÙ¼¢»í×¢ÑôÊß\96/\1cV)\1d\aÊ\83\ fª7é\eɨö¨\8ef5º@rV\97\fk;¼x\12Xÿ` Ö÷:X?\14aý3?K_\1fð\87\83ð®\18úd.¦\83Äm1\98\ f\82¦ut\84 ÿõß´ük@u0«\91Õ\96a]\82õ\9fý\1f\ 5XS|\11]ÖO\7fúSÞ°F'\88bµ7«éKô)ª\e>ØåÍbµD\9c.\9aH\9eØ\ 1Ø2Q$5MÖEÄǤ³µ\0lë°\vcçA²ÕÀÞg`b:5sí\949Ó©i!; Bf«ya7\15A-\83\b\85\0\9eá\9dJ\80\9d\1a\82vÎ\8eâ\84\8eo\1aI`\ f\bP\aH¿AI\80¶\ 66\eØì\10ib:h§\1a3\ f~øÕL|uv\9aÓ\12Ò¹Û¨\98^\18V(F\96x@w6`3d§/ëÔ\91\93JÒòÙª¡ô:*QZaZ¿I\83QM¨f³\9a] \98³g³ú\84\86õE`ý\80\845|*\86\8eÝ£-\8c\90h\8dé xH*:}¦µ4\89Ö\11×ÿj\91Z\9bÕhWkÃ\9a³Aòt\10ü\ 4At\83P\9eõo~í«\98f\8d.kô\82p*ÈÇ~é£ä°Ö¬\ e\1e\10Ø\ 2óÖ·jTû\1d¨ÉÜóF\92\92\84ØÊ'\12\91Í\92eÛ&L\82½2¯\f\v[\1d\81\9cì\19K·\1fØÛ\f²]\ 6\ 1ÓÊ\9cÖ\87ÈeNÐR@ª\97óV%ƼÕ\94ty+c\89\11Ôj1+c\bJ<³Ã»3\ 3vfµZEËÝ\v¢PER{\ e0¦_\9f\8aG¶\ 6vÊkUXá\1f\1ed.]\1aûX43-ÇQ\9aàT\16\83áqÀ\96\90\9d-
-Tóf`Öíî×\f£\ 1i\83Òi\rã\92+\8e\14\rê\9fx\ 3\19Õ\1eÕlV³\vd\v«o\ 2¬_¢`}7Àú\f`}\9f\86uÜoι{\90\ e\12#\8c>ÓZ\9aÖÞmíiͼ\8e\12I\1dÍê\80êÔ°\16>k˲\96°öÉ ì\ 5ùô§>I\86µwXg¬f\ f\88\85ê\90+\7f\7ff$E3I¬kã¢ö>íÅ\16Ì^\90Ü\8ay\8b\85\16\ 3ØâLÍüÄ\9f|\e\9eÈaÕ ÄI²\\86iël"#B\95zs\8c(T4\f\8b+yñB°A\9dÅ\10¬\0\9eXìè¤\v3cgPE3,W³P9©ß\14¼ ?\110ýº\\ 4±=°\99×\ fh\av,¬lM^ºH÷S×i\82í\r;Ó\8f´\80ß<»i]\12v«ñºÂìRß[\ 3!®\18\86\12¤\93WQ\ 2é\94Òjy,H\8dFµGµ0«\89Õ?\92±Z8A\fÃú\14°þÞ5XÓ\81Ö\ 4ky8\boa¤Ü=H\aI"\8c\94¼G!FÊÞûGv[#\13^ÿ¯Ä¨6ÌjaX³\17D\9c\ e\92ø¬yS\f\9dºÇñEð\82Ü\0/\b\1aÖä\ 4¡àbÎjö\80ø/f*TgsÏCZÛGÑDº73±Åj\Û%+\16M\98\ 5zº
-\v{V\aü%ûñÌdV3\9bY\1eyüöÔé¡1\9df6\97cT
-ÜÂÎ\96\96a!*©\96ñY,Q\82Z\86\10\8cø\1dõÄ\9b\f÷TÎÀ¤lf\99d¡B©B\12\98Aj\1e'\bæ3K\ 4±=°5¯\1fzs\16¬\96oÀDT\fÄ`\98¢´Çnê;*¬QÄJEy\99ÂÐV\11Ý·XÈV)QI\ 3KGN¶^\90o¢v#¥\1f´(-\86\8a\ 65\91:¢:d\81\90Y\9d°::¬\85\13äB\86õñ°\86\ 3Ïó-\8c!w/F\18Ái\1d\92÷à\98TÊÞ#G\bÚÖ\ 1×ÿò¿¤üKbT§fµbuô\82\98Ù \12Ö\1c_\14^\90'¯StÑ;¬=«¥·\9a\9cÕÙ÷"T®|ìÚÔL2\17µÊ\8d}¿\1eܶds \1aåçÙ¦äÔ%RÜß¡\12Zóü¨Bêª
-£©\8d\82b͹\12¢RÔ6\99-\ 3\91ù´\14Ë[\ 3Ôq-«\SI\0ï^\8fì<KîÍ\16\ 3µÕª\8a¤]\v\8dr\9c[9`\8a\ 3H\82×"\rXøß\82Ø8|\98×oÒ¼\8e\ 3 f\8egÑêd\89StÛ>¤\86\9b$ñ}\9b%£w\1c¯Êï'\91½¥ûÓq\90¬\15Ì×\90Ié\14Òò\85î\aÊ\e2RkT/³zÉ r*X\7f_\ ek 5Â\1a?\15\93~}À'Zsî\1eG\18aùßÃø{ÿ\99ü Á´þë¿ù;ï¶fZ3¯ÿEp\9amjaT'¨\ 6VKÃÚ{A\12Xû³A0s\8fã\8bä\ 5!Ãú:\18Öä\ 4Áà"±:3«1¯:CµÊê\89VÒërû([ÔÞ+-»8¼·Û1q\16<´¸ÉM\1dñWN\17Ö[\93×\12Wµ1\9d`Z0zѯ#©\9d2[\9b\86*@©¼\90I,ñA\95f¡=SoHÄòOeÀ>\7fKn\ 5Zfk»P*\93Ô\12\ 3\1eÒ¯\11" \1d\80\9dñúþ<»(\8dU'.¨f\97öÎ\82±)ð\9c&8m\90\84Ür¸\16¢ëûRÿÛ\92¼\86²úéꥵ\93õÒ\94V \96¤ÎPm°Z9AÒèbnX\9f\18ÖdZ¿2\1eh\9d\1e»w\95ÓA\1e\r\11FØpN{\18\85\1fÄ\9bÖ\94ký÷Ѷf\ÿ¿ÿ\12E\82Z\92:AunXûø¢\87uøú\80O\ 6\ 1\97µ÷\82xÃ\9a¢\8bì°ÎXí= þ;ôás\11jW\93´\92¼\99\14Ä\Ôþ\842íÄà.É\9b²ËÂ$xÐØ4\91\9c«\99ír3r£ò¤(#Ó!u\18'&n:OLWN\12\812\99\9d\99\86ɼ\14Ë[íú¸O\86zËá;\93.\8a)\96Ñã\9e\9a¬M¡TüöÈHÍ\ 3%RúÕJ\ 4´\ 3°±ÌX^Éë$»H4g&y\01±6%È"¡s\a\92\15E\ fãY»\99Tx \84j\1eL\91m\r\0;\95U&³n}\a¥\95Ë Þè¯W \ e¤\ e¨Vfµ`õ\15\93Õ'0¬\17`ýb\825\1c\ eòRùõ\ 1u8\88ÎÝ\83t\10\11a\84=\8c\9ciíóAØ´Æ\84\10t\84 Ù¸f^\vùç\ 2©5ª=«C.HpYÛÉ à²ö^\10\b/>ÅÑEr\82\94XM\1e\90ý>Eµ 5\83Z¯e\93E$¶âD\18ã\96\81b:[Ã¥~\12$>Ì\bìõ3£¬t(½GÜÈ\87J(\8e\eT\84^\89@ h\eÞ\119qµm(\9fe\81Zpº\10½KW;IÒÅB\8a¥\99c©\rºÔÎפNì5¦ô=\89DfK`K^¿1+«@v\ºxñjù\ e-{nãÈÓ8þ\89M\92á[/"\95\99<#Æ\b(Iù\rTÊð0ü\1dzÙ\15\9d\98gú]Jý£P\1dÌjî\ eN\90\95èâI`ýý\1eÖéINÆ®\18N\a\11\11FØÃ\18\ eÞû\9dß\95¦5$\84DZ\83+Ä[×ÿì\91ýÏÿ¬@\9d\93Z¡Ú±:3¬¥Ëú\ fR\97uð\82DÃ\1a£\8b\14\,°\1a= \90W\1dPö\9f\8aÉ\97¬fÕ¢6ñB
-dËѽYâ,¸/Û5!²ºÚ\85\f4\9d$µ¸\83ÂئkQÚð{\16¤\10~J2tMÓð\<íA\11K\94 N,¤tÁ\93¯vdÒE\ 6Áä\95¢K÷\96¼Té\ 6¸\9cÔ\11ÔÄæWe\12\99M#¨ÀëXÖ$»Hr;\8bY/x\ 54£%\82SOÒ²$àÖ̶=#É\10(¬\ fD\1cD×ï¡\ 4Ò¶)½\béÔêz\8d µ\81j4«-VëL\90\8b\1aÖ\11Ößa]8v\ fö\9bÛ»bÞ)"\8c°\871:½\1fD\99Ö\81Ö\98\13\82Æõ?\11\96ÿ9å´\ 2µ$µFµcubX{X\87o0¦^\106¬\9fü\ 4G\171Ãú\91÷¿OÄ\16\ 3ª\81Õè\ 1\81¼j\81êdAë1ýjC\ 4²%±_\97%\8cز<\ f$±\1f°²\ 4bx,É\91JóÐòH»\8câè8»iK§óÄ\8cK\19nwÅl\91\9eX¶\fýÓJ N-¤|½\93\85ðdÒ\85\rÁ¤tJ´E'\8a\95\91Z/¬=¦ïÎ$";\0[ñú\rYYïÏ^\82\99<øà6\96¥)¨\ 5OÒ\8aäñ\81{3dkÏH>\ 6\8a\92¸ÙdÍÒeBfJ\97 -ìé8\9b=©ÑWíQ-Íj\93Õ\e\9c Ûaý]\e`½´+F§\83`\84\11ö0\ 6§5øA¾\16B\8cdZÿùÿ`G\bÓ\9aq\r¼þ§ÿGË?\19 \16¤ö¨\8e¬¶Ïܳ¼ \1c^\8c\865;AÞÿ¾k\81Õ\99Y\r\1e\10ÿ\19ú\88ê\90)\1f׳ér6YÓ¾F\12ÛG\1f³Ñ½>?Ä4¸WÏÙ\a\924\81\9d:\83ÄÊh0¢ìëaveK\9b!öb\*Áv\ eí,\85Ñ°\výÓLP§+ÙÍË\1d\13Ø)O
-\19\96\ fZźW»Ê\12RGLÿX&\11Ù<\82¼\81í\1dØyYer\91\91^äÿ ^£ ¦5¤ãxË\Hf²¡
-©§ÉPo( [\94:yÑ,\ e\82üå\93ûr\16\9cÒ\16¤3Nû·éÝlT+TG³:æ\81\94Y}sa\12\8d\b#ìaD§5fZûä½Ä´ö\8e\10 5»B\10×ÿó\9f2ù\9fEPç¨Ö© Ú\vò{è\ 5ù-ö\82pxQ\18ÖÁ ò¾kï}Ï»ÿ}Îêè\ 1yà\81\ 4Õ!ýò5\81ÓùzV-i5±ÕzüP\89Ó@\12;\ 2[\9aØ2\v-Æm\8a\11ö-Aöe¿`ÑÛ^
-=Ý\9f fÅ,ô\8f3A\9dx\1cíå\8eX﨤\8b\14\82zÙ.\11¨\òº\15D±rRkP\13\9aïÊ$"\9bG\90Áë×ë¾×\rz¿Ê.
-:£\97
-&g$tBã4\84n\88\99\r\950Ûðf§£`AÒ\9aI\ 3á\8dIµ\fH'uùñ\1fO0\1dg³ u@ubV\9b¬^s\82\1cÀê5X/&Zc:\888w\8fö0¢Ó\1a3¥\1fÄ\9bÖpöÞ\9fsF\88§5âÚó:\17Åi ê\80jÉjv\82\14Nq\12áEiX\93\13ä\83à\ 4¹öÞÿP`uð\80PXQ¢:[ÐæëYµ¤\15ÈV)µ¯=+Kq&\84Yð\867ä\eݤ\89-\93\1aô\8e\94T²\0N9\81 ¼\94ÖQ)#ì\94ÆT\rK[ÏÙdfúç½±\bjáp,¬vJ1¼\fØoÔ8Éò+W\8be\93Ú\83\9aÐüÊL"²y\ 4i^k\87H\ 2¿\85Ü¢7åý´bsê\ 1\98ÇÏK\92\f×\12²Sf\9b¯\1a³¹SD\17C\87\ 6¤\93Ú¼æ5)¦ãl\ e¤ÎP\1dÍꬾi°\8e¹{Y\84\11ö0\92Ó\1a2£\1f\ 4B\8cÑ´ö\8e\10 5ø#®ÿ\91±¬\18-8A\8d¤V¨\8e¬ææåðb4¬¯\vÃ\1a\9c ÀêwÙ¬\ e\1e\10\8fjaT'\vÚ|=«\96´\8cì4=K\8fî\r3CÌ\ 3Aìl ÿ\80:\86D:\82\vÁ\e\11¾Y\fÞlðwÚ\11©\14Ý\ 6´å¶
--\89ñto\11ÔÂß(\16;êÕiÄð
-ÀÎp¢J¨1h\17Ë"µ\a5¡ù\15\99Ddó\b
-\ 6¶æu,êznQ\92â±\89gz\14\1aþ¤²\18\83U\e\18\ 2Ù÷Zã ikû½c\86DÅ»g\ 1Ò¾ ¯V\199b°ü\98Ajá\ 1ñfu\81Õ§r\82l\87uÌÝ{uüü@\16a$§5dZSòÞ¯(Óú?±i\8d\19!Hk\882\ 6\ÿ\ 3\11Ù\80tÀ´â4\91\1aP-Ìj`uHÛÛfX?þ1\1f]\ 4'\b&\82ÄØb@5°Ú{@$ªC¢¼´\93¬\ 5\ÒæÈ\ eÐÖäÞ8\13$²K&¶@ö¦\0Nê\1c\94ÆíF¯à\92¿=Á¶ij\e¶¡\9a\9aá\81ePçÁ»äÝéûb\1dØÂ\ 2´\19¨\8cº´X\ 5Rß\15!ð
-\ 2\81\12\81l\1eA\v\ 6¶èz¹\82I\9cOéZ§\0´\14ÑrÐ\99þ¤²\94\ 6«ifëwM±¡õ['Ý\9dZòw\98\90öżGQZF\11îR¤&£Zz@¤\vÄfõI\fë°Îs÷²\b£wZãGs½\1f$5áXë?%·5Ð\9a\!\8cë¿'\1eÿ£\94\7fø\87\ 4Ó\8aÓ\bj 5¢Ú³ú/\82Ã:~\7fQy¬3Ã\9a¢\8bä\ 4ÁàbÎjòV£\aäÞ{5ª_M\89òÒN²\16´¯\Fv\80öQ3!Ì\820k-§«_Uf\ ea3lóPê~0íZÃ)hí·/zÛ\93<\18\830ÙÌ\94ï\ 5ÿ¼\14Ô~öek\9dìåY\fâeÀV&`\ 6A\r\fU¬×f\ 1Åt]\1d(ý£J$³y\bE\ 3Ûäµ`\9fÈ,JX\96÷\95 Ú¢Õ©¨vO\827#@\93\8cìd°¦È~½5\12\8c\96~£ía³F\9f\ 1iÛ\90\ e\95Ð/õ»îJ:)\18ÕÒ\ 3¢Ìjfõ÷\9f\9cÕë[\18Õ®\18\95»gD\18ßG\1fͥ佧é0'eZÿ\97ÿ*iÍÆ5ãúï\10Æÿ\90Èß'\94ö\9c&P3©\ 5ª#«\17RA¢a\8d\e͵\13\ 4Yý\8e\94Õäö\1f¡\7f½@õ=\94(/í$kE\9b{!5²õøÞ.b\1aDÂd\vc¦^\Pæ\1eáÜ5\1cÝ\82Ê®-¬¡\v®Î²$Ô.xH2\91SÓ?Ѳ¨5§=¡ó·g\1eÄË\80}V `\ e\fsûÛ\ 2©\ 3¨=\9f\7fD\88b6\8f¡h`\a^+`\eé \96¼¾\884Óê\94\80θl\ 6h\84\9fI\8cìd°¦;ÅÒ\82ÿD"ùn\9cB\85\16 \9dÔ(«\84~«Ç¹,H;êÄ\ 3\12] ¶]m9AN\ 5ksW\fçî\89\bcâ\aùùè\aáÃ\9c~5\98Ö\14c\ 4·5\ 6\19ÿâÛl\#®\1d¯ÿ\16Yü÷\89ü]JiÏi\ 45\90\9aP\9d°::A8Ç:\1c\v\12SAàT\10HÛ\vN\10Ü\róΫ&«É[\rfu\82êW\85Dù»$¦í\ 5ôB\ 6ÛÎ\18Þë3"\99 a\16\14Llã,\92²WØ:\11bÙ%h§@å\ eO¥M¨\9dzH¬¬s=7ý\13_[\ 2µ¶\8e\92\97h1\88g\ 3{\v\ 6E[¤\86þ=&©#§=¡\7f8\88f6\ f¢h`\a^뢾ÖjÒDÂêf\8dÒ\ 6 ³\81hÆg\94\9f©<X3ÏH^ðõ\17N\9e°b\ e\96\9c\1d²\16ú.æ² 5ûªS³Ú`uî°>Þ°^\81u1w¯\10a¼ö~¿ãÜï\8b\ 1?\b\9aÖ¿õÍßùß¿\15iílko\\13®\99×Ll)\7f\9bB\9a1M \ e¤ö¨&\7fµ`ur8ªÏ±þ\f\eÖ\18]D'HpXÿô;Þn°\9a¼Õoð\1f6\16ÇoÝV´\1eÓæ\82öå\ 6²ï²\86÷ú\84HfB\98\ 5¦MèÑWð»&`^ô\bæ\2\r\99²Ó=þ5¡vê Iæj:9Ã3ý\83rP'Ö\91~\89\16\83x °_óãÙªÝä "\86(׫\93\90FFê\94ÒZ\ 4±\95\81\9d:°eFKö"\94\12×6\86å¹ì\e°\86¢\15\9eIÆuy°JÏH9\8fµü¶QõYòà,:;d-\92·º\98Ë\82Ôì«ÎÌjá\ 2\89¬.;A\8e\85õæDë$Â\98ùA>\88~\10gZ\7fÊ\87\18Ñ´FG\bºÿë\1f!\83q\r¸&^ÿ5\92øo\13ù\9b¿I!Í\98\ 6N#© Õ\92ÕÿM²\1a\9c ÖæEgXSÚ\1e;AÈa\8d\89 &«\85YOJü1½¢M\1c\8fE/d°íÌá½>\1f\92\99ð*\e1~à\aò-:^S\8f mÑn\89/\ 4¢rn\17lm[äc\7f<\ 2Ñ\ 2õ+Ó7¨è\9d\97ç}±\fì\84&º\94 1ôûC\874Ò¤\ 2Ïé\97\99"\88\rì»ò\f\91Üà Ê\9b.zÊ\96g\91iÆX4Â3Ù¸N\ 3\ 4w'ÈVÌ.'²\1aε|õfº;63:{«\8bu\8f u\8ejaV[¬¾¸\13d\1dÖI:H\1aa$§u²ã<ì\8b!Ó\1a\13BhgÌïþ^Bk\81kÇëÿ\9bHü7Zþú¯\13F{L\13¨\ 3© Õ\94³Ç¬Æs¬½\13D\9e
-\82ÇíÑ~\98\8f|\98\9c Âaýö\9f\82\9c=futW\v³Z\9f\94x\97\8e?hÇ£\92\ 4\14Éz<\19ß«Ó!\99 wß\9dMÜli,ÕÜÉ°É\1d¨\19m\9a1©\9bÓö³Kngn\92|Z&³3>öÕ:\96(A\17±Ê-\9c¾@W\80\9dÚE9å¿cs¼Z\97+\96J\93Zpú\87\f\11ÄöÅV¼¾Ë(ê«U\93Ê\12K\9díñ°¡¶4\18³èLægR\83Õ´/4³\8dµ\97-ye
-¹\1dÅú\18µHßêbÝ\93\90:Aõ\16Vß\14X'\11FÞè\ eÞ\8b~\10ú\ 2\ 1\87\18?\8f !è\bAZÿ¾ 5\18×\80kÏëÿ\8bYü×\16 #£=¦\81ÓHj\81jʯf»ú\ f\88ÕÚ \ 2Çí\89´=í\ 4\ 1\87õÛ\7fê'5«Ù]-Ìj}¨\98~ËKÚ\84Ù\99?;\19ß«Ó!\99\b\ 5£Ðòf.¹\ 4\8bKû\14\95Åì§{ì\f\81(9·Ë>\12{zÆç.\81:µ\8d\16^ %`\e\18Ô ,ñ/)×]F¢n°Õ<§_\9a\88$v\18AÑ!ÂeMû]\93¯$I§)Û3\85Úâh|yIÖƪh`ÍlkñUjkm#Øþ\9b\83\18\1dßë*\8að²\94ÔK¨¾\14V\7f×zî^\92\ e\ 2\11F¿\87\913Ó|\10ú\ 2\8171×ú׿üÕ¯}ý\eè¶FZ£ß\1a\8dë\88ë¿\ 2ü\ 6\1agx\8e\88\ e\98FN\13¨\1d©\ 3ª\9dY-| ß\12ßÉ-;A\1e N\10\f.ÎÓ(YÍîêhV'¨Þ¸¤M\98\9dÇÓñ½y6Èy\90ÌÜ0ô\ 5\0·ø\1a^\97»6Ó\85f9
-\95ºÜsɹ\9dOÓl¢f³SòÐ\ 4u>çJ/Ð"°Cc¾ªXÌ\94\19÷Xå\8a¥JMj\13Ó\19²Ã\bÒ¼\16\ 6¶@_º\801ÄÆÚÝ\ 5H/\ eÇ\15\97_y¬\96óXUÙ\17Þ4\89\8dPp߬ú:t-Â{ü\87ådþ¡\94Ô\19ª/\9bÕ\ 6¬WÒA¤ÓÚ\7fÚ+1?äC\8cδ\ e1Fp[\vZ³q\8d¸f^\ 3°ÿêÿ\\90¿
-ò\97\7fé9\r &R\13ªÙ¬NYýõðMsr\82|Z9A8k/\ 4\17aߢb5¹«£Y\9d|*"\9b\7fÆ\9a6cvê\1aÉÇ÷Êd°£\96)±ãÐ\17ü[ö6\94MÙÜ Ëv\ 6Þ½\90\1f $öá#Q\13Õ\98\9e\8a\87&¨\8d9g¿@cW¤ÀN0X*gÖ"i¹b©2\93\9a\90|¥ °\13^\v\ 3û.Ñ°é\ 2&\93¬Û\14×\96\fOc<.ºü\16ÆjyïAVx\93Í\89\8dPôv,0Ú¬Ex\93«¹üREj\85ê`V'.\90%V_\18Ö[ÒA¢Ó\9a2Ù\ fò\ eu>\b\9bÖ\1ccüâ¯ýúo|åkà¶þ\9dßý\16ù\91Ö\12×\8e×ßF\ 2ÿUAþRÈ·¿í9\r \16¤FT;³Z²\9a\82\8bè°\96§í}":Apë"9¬ß\ 1\ eë\9cÕè®\8efuòU\1fsI[\90\82\99m\8cï\95É\90y]_®\89]²
-×\96\97eCVÌ\93\8cÐ\82Ãwm\91\1cÛ\85YZ&\8dæ´\rjcÎ\95;Ã\ 4vÄ`J\93WåEZ(\97Ajm«y\bh\91Ä\96¼6\fìWÞ\95\16u!\194ë8͵Eª\95]JE±Çªefç¯ñe\11˵l\0¦\90^F´X{\85w¹\1f(/5H]@u\99Õ\175¬\8b°.E\18\85Ó:$ïå~\1069ÆH\19!Lk°1\83\8f\8ckÄ5ò\9a\81í\99\9dÈ·\85ü\ 5\vsÚ\81Ú\91Ú£\9aÍjÍjý\95\úðbp\82àÖÅè°¦D\10Ì\ 3\11¬\ 6wµ4«ýG}x\ 2ªù·°¦-2;å¶\96\85õ»\98
-\vÄ6\1d\83e¯¦¹È,Oôå\b\94)9¶ïÞ<KåÃã#mP'\98^ê\f\eØ\11\83w¥å\fEUªB¹|±äHI\bP\94\bì\92CD¿[¬F½Û(¤a}¦\+\10Úv)\15%§vÙÌÞ\90ÉjVdÁ#½X\19QL±âÊFÌ\15\83Ô\11ÕK¬>\95\13d;¬LkLÞ\ 3?\88\15büØÇ}\8c\11\1c!ì¶FZCN\b»B\b×Ìk\0öÿ`\ e\7fûÛ\16\9d\ 3¢=¦\11Ô\91ÔhUC\16\b Zø@\1c«1¸(>9@Ûa¼\13D:¬)¸\98²úuÀjaV\aT[óÏ^Ô.1;ÁvA
-\17«\89P ¶6\vK+Ìt\8d¹d\8aIB\v
-¿b\9bäØÎmíåù)\9e\1cf¤\ 1êµ×gè\8d\ 2°#\ 6³´xSîZ(W(\952©\99È/)\88\ 4væ\10É\80\9d\80o=\19t\rlE@\9b^%[
-CÕ6³×3YÍz\881\98y;\fF\17*"V]axèuÏK6£z\91Õ\17\83õæ\b#;µ\1f$7}\8cÑg\84|é7"¿E´f\ÿ)âúÏ\0»ÿ\9d\91M"Ȭ Í\90FL\ 3¨\1d©É¨\ 6T\83\a\84ÌjÌÙ\v¬\96\1fÉ}\8a·Ã<ö!\91µ\17\82\8bÌêsÉjpW³Y\9d}+Ó°\94\16%g¶¢ö¡¢'B\89Ø©]xÐ\ 2s\85Ð\92Â/ß$\ 6µïÚ8Iõãã3K .¿=Uo\94\80\1d1\98§Å[òÊR¹T©\8cEµ \80\97\94Ø\99CD\19Ø¢×ÍV5J¹D¶\15¬ep+Jq¨&ÌÎßã+M]ÊRɽ\1d\ 6£\8bµ\10oñ0FþÝ¿[ µ@µaV\9f\90Õ\ 5Xóé \85\b#9£\1f\ 4÷Å$¦µ\8f1\82#\84ÜÖ\9eÖß\ 4Zÿ^\82k°¯\81Ø\88ì?ÿï¶üy\90?û3\8fi\ 65\92\9ajô\80°\v\84b\8b_¡D\10õÝÅ4k\8f\1cÖ>\11\ 4÷ÂHV\83»:1«\ 5ªÕü[\Ô.\eÚÇH2\11,b[\väe\ 3ö\10ûEóùG·\88\85ísT??>³\bê+Ù\9cË{c\ 3°´xC^Q,\97*U
-êÿmA$°\17\fl£¨ÅÂZo×"¥×輶f)\rÕ$-*\7f\91¯4µ^Å\19CÐ0¤\vUÑžb\f\19ÝO«¨NÍêS°:\85õB\841IÞ\93~\10\f1*Ó\9ac\8cè\b!·5Óú7\1d\7f\9bhíqýG\7fü'\8e×\flB¶§vJç\88h¢4rÚ\81\9aIíQ\8d\1e\10fõo~ÍÛÕ>¸øiñÅ\ 1\9fµ\17\1dÖ\14\Ä}\8b6«Ñ¬NQ\9d®i\8dem\81ÙW\16Fxy\16ä\17«y`ÏÝ\9c\84«kËÄz± 8ü#\eÄÄöÖ9ª\v \9eY\ 6õ\92?Xô\86\ 5lÑ\94?\9a\17Ô\10Õ&º\ªT©¥\16\19 %%¶âµ6°eI³ä\8bR1M¶å`ÛÈæÃ\86j)-Êz\93¯VÂvH\e\86ôBMÔ\82K\f\8ftÙó\83\89ÿC¢z\e«\8f\84õ1Nké\aá}1\10b\14¦5Ç\18}F\b\a\19\89Ö_w´öÆuÀµ³¯=±\99Ù\ 5ùo^þ\941Í ö¤fT\a³ú71\ fD³:qX¿\8f\1cÖ¼\e\86\12Ap\8f¹`5\84\16Ù\ 5\12Íj\89jÑ¿%ç£Eí\82\7f$\95å\15¼\98 6±\17-Ã\85\95å\16ë%ãó\ f¯\89\8díÍST\97@>s ÔëÝa\ 2[`ÐÌ\8bÏåG\17Ê\15J\95\81:£´\85ìE\ 3[\96ôG¬VµË©úo\81l\eGdQ\fh/»F64u²\8a[dt©*i9õ[<wOý õ*ªOÍê°Îü b_\8cOµ\ e¦5Å\18Ñ\11ÂnkÜv\ e´þ\8a£59®\ 3®\81×\ 1Ø\88lOm-\7f\1aåO<¥\91Ó\ eÔHjgT#ªÑ\ 3\12XýåÀj\11\\8c\ eëG¤Ã\1a\83\8b\9eÕ\ f\18¬\16fµ\89ê¬sm\17䢩}\84èy\90\11[[\86köÊ\16ãE\ 1:\81ñË\96¤ÄíÃg¨z¸\98\90q\ eæ\9c.w\88ì\86´)Ë0±d©\¡X6¨\7f \97\94Ø\ 6¯³ÅÀ\ f[Z*§êÀe²Y#omÑR6Hl3{S*«9
-\ faôJ%Ô4Í×=?PBõe³zc\841MÞ\v~\10\1fb\94¦5Å\18CFȧ?ó\fÑú\8b¿ö¥_ÿòWÈq\8dÆ5;C\98×\7f\bÜE\0ÿÉ\92üñ\1f\aH#¦\1d§\11Ô\8eÔä«v¨\16fõ\97\7f\83ó@\9c]í?\91\9b\9cµ÷ná°¦à"%X'¬&\17H4«%ªE\17/y\1fMjo\18ï\egC\89Ø\a\99\86eÛ¥\bè\9cÉ?dÈ\12¹\8f\99¡êábB\8aù·ôê4º#\ 5vfb'0±e©\±Tæü/IÎë2°E³n*§ê@\vm\87ãy}¤&æÅ¡©¬ö0´ý6¥\8ad\85ËÖ\b\88dïÓï_Gu\91Õ'\85µí´Nü ¼/&\84\18£iM1F\9f\11âiý+LëßøÊWѸ\ e¸FóÚñÚ\ 1\e\88ý\87Dá?úã\þ(Ê\1f2¥\91Ó\ eÔdS\83QíQ\1dXý¥_ËYÍ\1f\1c\90\19ÖxÔ\9e\ f.RÒ^Îjt\81, :ïÜ\92\vÒ2µmpç\17\15./\12{iÏä!¦K\19Ð\16\9bWŤö!3T=\ÌGÕnÖ\8c3;$\avfb¿,]\19زX®X(\ 3Ôß\9fÊ"°ÓwKÚ®\eË©;ÐfÛA£róPÍó¢ìWù¶:\94\18½X\91¼ É\1c\15\83%í¦\17[¨ÎÍêÓ±z=ÂhúAü¾\18ô¦\18£Ï\bùø'\9e|êSO\93mýù/@¾õo|\19¶\9eÿÖ7\b׿ûß\ 3^{`ÿ\ 1\ 2\18¡]\12º\ 2!\8d\98F\8b:\90\9a\1d ¬\86=æ\90³÷ì3\82Õ\1c\ü9#¸\18\93ö,VG³Z¢Ztò\82ë±Lm\ 3ÛÇÎ\85\9cØ\8b+Í#-\97\fÐ/=P
-Ô>l\86ªgËÉ\98L»íÝ!\eÓhÉdu°Â\8c¬\¢XÉüÏ(m#;ãu¾\180søKbö`\11m\85¡\97\8eå\95¡\9d#ÛÌeÝ\9cÌZ\1c\86eFoª\82\1a ùûôÅ˨¾\14V\97a\9dûA~Xæ\83àù \14bÔ¦5Æ\189#\ 4ÜÖ\9fxò\93\81ÖÏ\7f\91\1c×d\#®Ñ¼F^;`ÿ>À÷¿\10\87\99ÛQþ
-^\ 6\94fN;P\13©\9dQ\1dP\1d\ °o1gµ\f.²Ã\1aw.Ƥ=Åê\1f\8b¬6>¿ö\92¤\7fWÖ³Eh\1f%ùL¸bÍÞÃ\80hAh9+àÊVÙ\86í-\13T?Ù\ 2µ9áì\ eÑÍiµäbY\8d¦ÉË%\ve\81úÅJ,b«Â\96Þ-/M³æ
-]øC%\vt m§\19©©yqÅ\fBn\93â0\D´YÂì=.\aKÖM/ZGõ)Y½\12a,ùADªubZc\8c\913B\1eûðG\15\7fåó\18füu\85kà5\ 3\e\88ý\9f\11ÁDmC~ß\v\
-\98\ 6N#¨\99ÔßüÆo T³\v\ 4öÂüòÓ «? \8foÒÁENÚ³X-Ìê\80jÙÍ%L¯P{\85Ü[.·\89\9d\83f+\11¹½\8eçt\9d)e\85Ûé\1c\(HZ\ 45\1fÓ6;¤;T[&å^\85IÞ4F¹T\99
-\94.0[\97Võz\99{FYu/n\83ôÖQiJ\99ÙæàHÊ\97× ½ \9cvw|5ô\01Þ§/JQ}ù¬^wZÛ~\10\1fb\f¦5çZC\8c\913B\1eýÐ/~ø£\1fÃ\94\10¤õ³\9fCÇ5\19×\84ëßúÆ7=¯\11Ø@l\866\89D³\17º\ 6)í0íAM¤vFµFõóä®~æ39«\1f ß\eH\83\8b>iO±Z¸«Ù¬\8e¨Îúwe=»\bíÃÅ\98\bé\1c8ÒhYµ\9f\97à¼,ejo\80a¶»LOFkÆöHÒ\9a\85\86\È°TÍc\95K\95j\13¨KÀVE-\96t©¬Å^\\86ÛéFªÍìô\8d¾üùH\at¡xÆ{Ü^øä¤Þ\84ê\13ÃzK>\b\9e\ fB!FmZGG\b¹1ÈH´\86\f¾g?û+ÏEã\1aq\8dæõ7\7f\e\81MÄFf£ü§T~/È·¾Å\94v\98v\9cFP3©\ 3ª\89Õ`VCh\11ò«SV[;\17Ó¤½\8cÕÒ¬\96¨^Æô*µË䶯µ®_Gö2i\8e\9a\15ÆÔX\93El/\97Ð*G2#³f;¤?\92¦Ì\8b\9cµF¹yÌr%ez±1ÿ\95¬\ 2»Ôå\a\15u\rÒ\a\ eÌÕ¡ºÎìMå_\v|nAt©Äé\10±:Ê µDõÉY½\11Ö\99\1f\84B\8cÁ´Æã\9c¢#\84ÜÖ\81Ö\10et´~æYr\85|\91p\rÎ\10ä5Ø×\bl 6 \9b©mÉï²À\95\80iÇi\ 65\91úk_ý\8a@õç1»\1aÝÕ°\17&gµ\b.\8aD\90"«S³Ú\8f\0£\83\17¬£Uj\1f,æD0æÀ\16,n\99\13G\ 5\9b6p{Ãü4w\89&³±0ãVz$mͼÜåÂ\16ZÇ.×Âô_#¶ÉëÕ\92úâ\1aÚEH_\fЫ#µÄìCÓYW\ 6á\ 1µ°¦¨\1a1¢S¾ÏBõ岺\ 4ë\82\1fD¤ZÓ.ÆhZc\8c\91\1c!ä¶\ 6Z?&hýô/\93+$à\1a|×\81×ß b\ 3² ÚEÁ+\0Ò\88iÇi\ 65ÚÔ\8eÔà\0 ¨ö.\90O> {a\16XÍ»ÌuÒ^\81ÕW¢Y\1dû~\ 1Ó[°]"wáZó\86Ed\1fb·l\98\12«l^\91\15l\8bR.\97%\9d\92F»\1dÐ\1fYS\9aåÝB\8dB¹²2\81z+°í\92\96ʺÜ\93Ûà¶42W\87v\89ÙÖ+}} Z\83q#¢ËeNG\89ì\r\9bÔ+¨¾0«79s?H0ï\r¦58B(#\84ÜÖ@ëG\ 3átë§Ñ\15\12qÍæ5ð\1a\81\rÄ\ 6d\7fó·\83üN\90ß\16òÍo2¥\1d¦\1d§\11ÔDjgT\83¯Z¢\9a] ×\9fÀ}\8b\16«ý.ó\90\b²Êê\7fÇfu\18\ 3[±° ÚG\88=\ f
-s Ä\9aµ\19mM\89ÒÌ(É\ 6lo\83¡\95\9a\97OÀ£:#kÈ\15\98\94Z¨T.\eÔßg\8b ìÓ\94tÍÛqA@¯\ eÔ%f\1fUþ\8c^(\9f94\92÷f\81Ô
-Õ\97Ãê£ý hZ\87\k\8a1¢#\84ÜÖ@ë\ f\ 4Z\7fü\13ì¸~FâÚ\99×Èk\ 6¶#6 \9b íÁ-ä\eAðª¯\13¦\1d§=¨\91Ô`T\13ª)aïiv\81|üc¸o1²:MÚkÒ¤½\ 5V¿Ä³Zt~¹wM\ 3i3º\ f¸a\rÙÇdt_\fÎ\v²\89Û+åɧ¤Ùl\emÖ%\13Û(ïB#\95Ëe\94©\80i\9bØE`/\95Ô\17ÖìËuH\1f<2×Gv\11Ù\85â/\8a1¸\ e@ôRɳÁ"{å{o6ª\97a\9dúARÓ\9aréð=r\84¼í§Þ\81nk õ#LkÈàûø\13×Ñ\15\ 2¸þìç\18×d^\83?\ 4\81í\88\rÈ\ 6f\7fÝs[Ë×½ü&SÚaÚq\1aAíIí\8cj\8fjï&\17È/}\ 4÷-\1a¬N\93ö\ 4«ï\96¬\ eîjeV«\1e_ÄÂFj\1f.\e\90mÍ\81\8dd.M\88Ò¬X\96\8dÜ\8e%\+\8f1\1d\97¦Ûvb\97ʼ\11\ey¹\8cB\83:'öö\92.\14uCW^\bÐ[\ 6jjho\1f\1aÛGã1\95°\87\88î\8d\ 5R[¨>\r«MX\17ü ©iM¹Ö\89#\ 4hýN õ5¤5D\19\1d?öqp\\7f\92=×\1e×μfû\9a\80\rÄFf3¶sù\1aËW\89Ò\ eÓdQCH\11Ý\1f`T\83\ 3Ä{@Ð[\8d.\90\8f|ø1ü\94¹÷\81¤\9f\e\10I{\9eÕ¯ÊX}E²:\f\86ÃÀpiÜÞ\82ì\15Ú¬O\88\83ȼ,æï\1fR$kN.ι\82\7f¡\fì\82\83iE\16ËU\ 4õ÷fr\b°\8f+©Õ£\87\13úࡽÈì\v\16¿P\87\95Z,MЬ\e¾w Õ\97Èê5?\88Ø\17#w1
-Ó\9ac\8cÞ\11\ 2nk õ{\90Ö\94\13òá\8fü\12¹BÈsípMÎ\90Èk\al"62ÛcÛ\12úó\97\89ÒÌi\ 25\92Ú\19Õè«ö¨öf5¸«?ô(î1OY=f Ö¯óçWç¬fw5\8f\121\b\16{w\89\11\17\95È>:«{\ 1·¦Ý²"Öï\¤Hæl\\9el\v=b7ä¶â\16Û&/Ö\1a¦Ëȶ\8aºÐ¸\atéf¼\9dj¤®\18Ú\87\8b5Ü\8eÂóÂÀI{ç{6 úd¬Þì\a)\98Ö\90¾\17\1c!\91ÖïBZcN\bìeü\bºB ÎȾ\10ô]{^;`#±\ 1ÙÀlƶ)ôg\804PÚaÚq\9a@íI\rFµ@5\9bÕà®þà\ap\8f9Å\16\ 5«}Ò^\96`\8dû\165«_¬ö\83C÷ü2\17.\95Ú[\91½\f\9c5Óy\ 3\8d7Kñ!\e\vV\98\93+³m½;\ eiƵ6²\8aµ\9dÓ\ 5b[E=ª¤v\8f\9e\94Ы#u%ørxñ/Z\87â\18É{%%õ%£zÉ\ f\92\86\18SÓ\1a¶1BúÞ\9bî'G\88w[C\90\11i\8d9!\1fø ;®½q\8d¸Fo\bòú¹Ï?ï\80í\89\8dÌ&j\17\ 4ÿ\ e\90fL;N\13¨\81ÔÞ¨\96¨f³\1aÜÕ?ÿ\b}qÑfu\96`m²:¸@Â\98XíåCH±e\fm\9e ÇÏ\81µÉ°4'\16Åþ\9d\8b\94©0\e/Ø\ f\8beÞÔRf¹\96'ÿ\ 5\81½\1aÊ[îÓãøvôØÞ84\ e\11sÄWa}¬XÝ\91\91ÚFõ)Y-`]ô\83\94MkLßó\8e\90¦Õ´Æ\9c\90G~\1eÂ\8cà
-aã\9apíÍkp_\ 3°=±\91Ù\8cm[èï@i´ã´\a5\91\1a\8cj\85j6«Á]ýþk´ÇüêÃ\9aÕç\17fõ\86ÞÝ\80\8b£du\1e\94ÆöA\^\98\ eÇÉÂS6\ 2¦4'7͵R\9f\14ÛqKó,\96kc\916\ 3»ØáÛKZêÒ\v\91í\80\81\9a\8fÕ\83Ë_\18]K58 \12¥~ØJê\93¢ú»¶í\8b)\98Ö\98¾Ç\8e\10t[c\90\91i\8d9!×ÞÏaÆÇØs͸\ 6óÚñ\1aÝ×\flGl\87l\846aÛ\16ü3@\9a1í8M ö¤\ 6£Z£\9aÍjpW¿÷=t\1e\bäW3«K\9baà[\ 36«\19\1ebP\1c:\v\8f\1fð\v²:\ f\ e\9bÄ\8bsá\80y±4-\8f,ØB\ 16N¶åþX)öÖ¦*\95kÓäÿ\1e±Ð-\17v\81\ fìÔ\vÃí¸\81º<:\ e\90Åñ·½\80Ë\83Åê¦\ 2ªOÍê5?\88eZË\18£w\84<t\1ehý\93@kÌ yÏ{9Ìè\8ckô\{\\83yíyÍÀvÄ\ 6d\ 3³\19Û¦Ð\9f\9f#J;L#§\ 1Ô\9eÔ`T'¨f³\1aÜÕï~\97gõ[7°úå\19«µY\9d\8c\82\8dhXâÄé§Byh\1fÎåÓù.\97\9e±\1d0K\93ñ¢=q@\81\ f(׶¹¿Fì¥\92\1eTP£¸\vMZ\90c\a÷á#ã°Ò\1fP\85£Åì\9e\12©O\8eê\15?È\9ai\1d\1d!\ f¾\19\82\8cm/iý®ws\98ñ\ 3\18güÅ\80k4¯=¯\11ØHl@60\9b±m ý\15 í(\r\98FN\ 3¨ÑûáH\rFu\8aj6«Á]ý³Wáì¦\9fz\eæW\93\ f¤´q\91Yý²eV\1fØݧ\96í\13á\88Y¼>\17..')ÔQ3oCk\1eVÞüâårmàôqÀÞÒ²\v]r\1a°4íbÑWj°p˦\1a\1cS\89B¿\14I}\19¬.Â:ÉÞ\13¦uæ\b\811\ f<äi=¡'ä\1d\ fÿÌÕ\9få0ã#\14g\8c¸Fó\1ay\8dþk\alGlB6B\9b¹m\býñY¢4a\1a8M FR\83QíQ\1d< lV\83»úg~\1a?â\ 5û\16×Yý#\ 5V\87\11s±\ 1|J9h\1e\1c3\85\ f\9f\10\aLË\95b\95\v·u\12ná_¡%\97
-¼¹y6\94çpb\1fÜÀ˲ÔwÇ\ f̵B\9f¨ð+å?¾
-\vý±@êË@õwøA2Ó:\8b1z·5Ð\1aSBØo\r´¦0ã5\8a3
-\\83yíx\8dþ\10\06\12\9b\91\rÌflçB\7f\ 3H\ 3¥\1d¦\1d§#¨É¦v¤f«\9aÍj@õ5ÌØC\17\b\84\16áì&̯N¿â\157.\1eÂêíÝ{¡a¾E.g\1al\99\v\87É%\94Çl\8f#\10h·ã\ 5Úé\882\1dPØ\v7íB/]l,.Ëi\86ÆBá/V\85Õ\9eX"õe±zÉ´fX'¦uFkp[c\90QÐú'ß\ e;ÏÑqMqF\81k4¯=¯\19ØHld6@\9b¹\9d ý ."J\13§ Ô\92Ôä\0a\ fÈ#\88jÊØ\v¡EÜc\1eX-\ f\ 4 \9baVY\9d\ f\87\vλ\93É)¦Á\89é\\96\ 3Ke\96ë¨é¶Ú\19\a\95×¼ö R©Ù~PY\ fmÙµ.¹Ðà;LÖ\8ar\94\1c[\98£e\19Ô\97\86ê5?\88mZçnkØv\8e |è·\9e\1c\7fê\1dä¸öÆuÄ5\9a×Èkô_#°\1d± Ù\9f&j3¸\95°\9e!Í\98v\9c&P?ññÇ\91ÔÞÿñè£Þ\ 3\82I ï¢\8c=\ e-Â9{áKæ\17bõá=½u\ 6®üæ\9a\bGÏ\87m¿{0_\ el¶\83ûà\84\rTzî´?¤¨Ç\96t±)\8brá\86=qá\8fBô!\95Xï¬ËFõwmñ\83hÓ\9a\1c!\89ÛZÒºs´\9eßFaÆ`\\v\\83yíx\8dþ\100°\99Ø\80l`6@\eåÓZ¼\1a.\ 1J\13¦\89ÓdR#©Á¨FÿG@µ÷V³\v\84Ó@øÃ0Ú\arÏ&VGz\¨ÛO(\97=\ fNml]^\91.«)/©\ëS¿LìS5íÆ>»pË.´îÑåßXöÓÔaSg]&ª\ f5MGÈ\e|\ 2\1fzBpw\f&\85¼\ 33®ß\95à\1aÌkÏk\ 26\11Û!\e\98MÔ~Ê£\9b%è\80Ñ\0iGi\87iä´\a5ÙÔÞ¨\16¨\8ef5»«ù\9c½4gOm\86Á3Q7²úÂ\83ø4rÊ\89pà48Z\ e\9b\9c\8bE»)\ryD{\15\1e²iî\1f\ 5ìÕ¦]é\93KiÓíå>©\9c¦¼[»érQ]\80ujZû\kÓ\11¢hý\16¤5&\85\90+$Ã5\98×Èkô_#°\91Ø\80l`6RÛË\93\9eÍ^ð\82'<¦\91Ó\ 4jAj4ª\15ªÁ¬~;\99Õ!\r$Ý·øêí¬ÖC~µ{O3`6ËÍ\9b §\97#ñ²Ø\1e\87\12ð\84xp\91\96äæõ÷Ú\b;\99\9c¾è§-ÿAýsÙ¤Ö´\16-ø}ßg\99ÖÂ\11R¦õ\ eiM\8eë·#®\81Ö\11×`^#¯Ñ\7fí\80\8dÄ&d#´ Û¶à\9f\1fGJ\aN\13¨1¤H¤F£:Eµr\81¼E\9d³g°ú\87WY]\1a\18ÇN¹\93Ë%M\84£fÃ)Ê\ 5!x±\82_´T\87\96õ\92Ûòrå\14\85¿E\88ör3P½Á´\ eÛ\18µ#$§õ}LkJ
-I\8dk\8fkâ5úC\0Ø\91Ø\80l`6cÛ\10ú#\æ(M\98&N\93IíI\8dFµ\89ê¡×¡ÅEV¿Tí1·Y}Ñ^>Ù\0+Ëí4\rNU ÕR\9d¸#nY±\ e.ê\89ÛqU\8eoÓS\14ÿBEßV\89MrsH½\ 4ëÔ´\16\8e\10r[ç´¦Ý1Ñq\1d\8ckÀ5;C\ 4¯\ 3°\1d±\1d²\81Ù\0í\8f2¸Sá?}\84(í0Í\9cö þÀÏÿ\1c\92\1a\8dê\80ê\84ÕÁ\ 5¢ÏDµ\ f\ 49\84Õ\17îñcäRfÂ\89¦À)\8bt@ù.µ5/Ðh'ëó\8b\96ôB]|\89%^«ÇÑe>Y\1dl¹i¤^¤µ6Ù\11Ânk\ e2æ´ÆsB\1av\85h\\93ïZð\9a\81\8dÄ\ 6d\ 3³\ 1Ú\1ffp+a=0ú\17áZÄ´ã´\a5\90úýHj4ªmTï\ fb5;AJ¬¾Ä\ 1p°\9cl$ßJ¹0^n×\96<E¹nJAoBño^±/©\ 2Jn*©\97`\9dÇ\18¥Û\9a\83\8c\ 6Ѹ\8e´\ e¸¦P£çõû\1fù9\ 46\12\9b\90\rÌ&j{r\añÊÇð\92ÿè1\8d\9c&P£I\8d¤F£ÚDõ*«Ã\9b6°úò\ 6ár+¦Âm!·k3\9e¶\\97XÐ\17PÉoJù¿ûæ\93ZÓ\9a«)Lë\17IÓ:q[/ÓZ\1a×\8ckï\rA^\13°#±\ 1ÙÀl\80¶\97\ f}(°\99\ 5.\0H;J\13¦\91ÓÁ¤FR£Q\8d¾ê\80jÓ¬NöÂ\84Mæ\87²úòGÅÁré3aÓ¬¸ÕÏ¿Å\8dxYå:}IoM©O^ô\9bYú[\ 1j\rë\92i]r[S\90±Dë\f×è\rñ¼\16ÀvÄvÈ\ 6f\ 3´ Û^\1e\95ÿø þ\19®#L\aN{P#©Á¨Æ°"£Zx@´Ym³úe\87±ú¦\r\8f#äÄ3á¢u=uqnJÛß\8crMËË+éÍlÉË*ýM/êÍÅsqTpõ\rGÈ\ f\9anëÔ¶Î\8dkå\faó\1ay-\80í\88ÍÈ\ 6f3¶-¡¿þ\1cQÚa\1a9-A\8d¤\ 6£\1aü\1f\1aÕÒ¬ö.\10qv\13ù«_X¬\8erûM\83ãçæ-jõË)Ö!\93ó\94%½e͸Inß\82ß\ 4\1co\1f\10Ô\16\v¦µp[ç´VÆuð\85\10®!ÔÈæ5ò:\0\e\89\rÈ\ 6f\ 3´\99Û¹Ðßà*Gi´ã´\ 45\92Ú\eÕ\11ÕÁ\ 3\92º@Â\99¨!¶ø\82dµ\96Ûm\ 2Üyt9I\99\8e\9b \17*êíÒ~w¢\\1a}\ f\14Q¤ï)Ðú\a2·µ µÏ ñ®\90h\K\³7Äó:\0Û\11\9b\90\rÌ&j\13·\13¡?¼\ f/z¯Ç´ã´\ 45\92\1a<ÕΨ\ e¾jFµ6«Ez5\9f\ar\ 4«oÕÀy¡ËIé²eØßd¹à$r\13åX¨^\9a\88²%´~QNë+%Z'®\10ö\85D\\93yíy\1d\80í\88ÍÈ\ 6f\ 3´Q®%âõp\rSÚa\1a9\1dA\8d¤&£\1a2@"ªÉ\ 3Bfµp\81ø4\90ãrö\ eîàË\1fZU\84\1c:öo\9fBÝ.\85ýN\95\vuÒ%\8b(fÉ´NÝÖ\8aÖ´;FºBȸ\16¸\ 6ß5\99×Ìë\0lGlF60\9b¨ý\1e\8fn/Aùn\86´£tàt\ 4µ µ3ªC¶\1e¢:\9aÕÑ\ 5\12Söì\ f.\1eÎêcÛ½Ê)å"3àv*Ö\9d1hî\90b.ÈI:æf\89(÷"\83ÛZÐú\15\9eÖÑ\15BÆ5úB\ 2®É¼\8e¼\ eÀvÄfd#´ Û$ï~w`³\97w1¤\1d¥\ 3§#¨\99ÔdTKT£\a$\98ÕÁ\ 5"Ó@\8a¬~ñVVßâ\9e«\ 2r\9b¶åÉ:üò\8bzIµ¸EENäT\1dp\vEVGÀºà\b )!\81Ö!\85/\1a×
-×à»&ó\9ay-\80í\88ÍÈFh3¶\v\82\17\0¤\1d¥\ 3§#¨\ 3©Éÿ!Q\r\1e\90`V{\17\88NÙ»\18«o§>ü\8e\94Û¶\1dOT°\9bPÒ\9bSø\9bRîË+þ\16Y½\ 5Óz\99ÖÞ\15\12\8ckð\85\b\£yͼ\16ÀvÄfd#´\19Û\ 5Á\v\0Ò\8eÒ\81Ó\12Ô\81ÔΨ氢@µ4«¥»ú⬾Õ=\18å¦Í\83ÛHn×F<y¹.¤7½Ü\97VöÛh*^\92ÈÊn¦5zBhç¹\ f3Jã:â\1a|×è\ra^+`;b3²\11Ú\8cí\82à\ 5\0iGéÀi\ 65û©\ 3©9\ 3\84PÍùz¬&\17HL\ 3)³úEw\12«\83ÜN³àôe¹x\99.·Ü\97[®S\96ôÖ\95ùt¥¿u%¿\15"k.a\1c!!ÈhÓ\9a]!Þ¸\ e¸æP#\9a×Àkò_\a`;b3²\11Ú\8cí\82à\ 5\0iGéÀi´¨É¤\16¤>\7fóC\12Õ\9c¯\17Íjå®\86\94½ãY}«{oEn· p\yne\9bߦźPIo\93\ 2gr\87\16ûf\8al\bô.Ò\1aw\9e+W\b\e× ®Ñ\e¢xí\81í\88ÍÈFh3¶\v\82\17\0¤\1d¥\99Óèú\88 ö¤&ÿ\a\86\15 Õ\9c¯\17Ìêè\ 2ñ¡Å\17(«s¹\9d\8a\7fç±åv,\93-·i\ 3V¹¨¬ÐúÅ1È\98ÒÚ;®Ù\15Bi!\1a×Þ\e\ 2¼\16ÀöÄfd#´\19Û\ 5Á\v\0Ò@i²§\1d§\19Ô ©Ñ¨F_5¡úÌ£Z\98ÕÚ\ 5\92æWobõî¸\17\9cÔæReQJ°6ÝÖ)¥+ÄûB\ 4®ß\b¸FóZð\1a\81MÄfd#´\19Û\ 5Á\v\0Ò@i´ã4ZÔ\11ÔDjö\7f ¯\9aPí= Þ¬\ e.\90à®®¬®R¥Êm/+¦µ¤un[\vWH\8ekLäcó\1ayÍÀF\v\9b\89\rÈ\ 6f{l\97d`H{L\93A\8d NIÍþ\ fôU{T£\a$F\16½\v$¸«+««T©r»Ëw\1fCkå
-ñÆ5»®=®1\91\8fxíÌë\a\82\81í\80MÄfd#³\89ÚQ<\9a\83à5LiÂ4q\1aAIÍþ\ fôUKT\efµñmÜÊê*UªÜ\9ebÀz\8dÖ\99+\ 4\8dk\8dkLä#^\83y\8dÀ\ 6^\93\85\1d\89\rÈfj³tA\84\12!\r\94\ 6L\aN{PkR³ÿ# úU\84jöV[îêÊê*UªÜþ²æ¶Îh-\!\9c\15\82Æ5áú\1eÂ5&ò\11¯Á¼&\7f\b\19Ø\8aØ\80l¦v\13Ñ\1d%ü\ 1!\r\94\ 6L\aN{PkR³ÿ#Aµ6«¥»º²ºJ\95*w\80\14\1d!\ 5Z\aÇub\'Ö5\99×ä½öþ\10\0¶"6 \9b©\1dÉ\9d\88ÿã9S\1a0\1d8íAI-Q}wDµå\ 2©¬®R¥Ê\9d"\8b\8e\10Aë$)$\18×ì¹\96¸\16Þ\104¯Ù\7fí\80\88\rÈfj\ap\eÂ\7f\7f\88)\r\98\ e\9cö .\91ÚDut\81PhQ\9c³WY]¥J\95ÛV\ e£µt\Ë´\10\v×\81×ÞÀVÄ\ 6d\13´\ 3·#½å¿\1f¢K\1e`J\ 3¦\ 3§ Ô\81Ô+¨\96fµt\81TVW©Råö\17Ë\11\92ÓÚp\\vãÚÀµâu\0v$6 \9b MÔ\96è~Pà90\9a(\r\98fN\vPkR\e¨¶ÍjÃ\ 5RY]¥J\95ÛU\96ÝÖ\163ã:Ãu0¯\99×\ 1Ø\82ØÄl\82¶çv&þ¯x)PÚc\9a8M \8e¤f£Z¡:x@\f³z\85ÕßSY]¥J\95ÛG\8a¦µEëܸf_\88À5\9b×\92×\11Ø@l\8fl\866Q;\88G³\17º\ 6)í1\r\9c\96 ÎHm¢Ú2«+««T©r§HÙ\11\92ÑÚ6®S\£y\1dy\8dþ\10\ 66\10; \e\99ÍÔ\ eà\96âÿr/]ø\ 6\81iàt\0uô~8R£QQí= ¬¶ÜÕ\95ÕUªT¹åHZ{ã:õ7¯\15¯\ 1Ø@l\85l\86¶Ç¶)|\ 5]î1Í\9c&P\e¤\96¾j\81jiVK\17Heu\95*Uî\ 4ÙBëÌ\15â\8dkïº\8e¸öæµà5\ 3;\10\e\91\8dÌöÔ\8eà\ e\12þðzºÐS:p:\80:\90ú.&u Õ\99Y\1d] \95ÕUªT¹Ýå»\ f¡5\e×Þsk\f5zó:ð:\ 2\e\89\8dÈ\16Ì\ eØ6Å_\12(\8d\98\ 6Nç &÷\87÷\7fX¨^1«+««T©r;Ë\12µ+$5®-\{ó\9ay\80\8dÄ&d\13³ Ú\8aÜg\8aÏ\11ÒDiÄ4p\9aA\1dIý\8aW\ 4Oµ7ªË¨>\84Õ\15ÖUªT¹Md\e¥q]µ0¯\99×l`3° ÙÄl\866S»(¯\11\90FJß\83¿swbR\83MíÝ\1fETK\ fÈF\17Heu\95*Un\1f9\90ÖÑ\17RÂuäu\ 2lF61\9b¡-À%þù\9eHiÄ4pZ\80\9a½\1fÂýQBõÁfueu\95*Un#±i½j\\e¸Ny-\81\8dÄ&d3³=µïIà´þÒ»\ 3¦\81Ó\12ÔìýPFµBuê\ 1©¬®R¥Ê\1d)ß}\b\13_\88ÂuÆë\0ì@lB¶\87vĶ-þª»ù®»<§%¨Ùû¡\8dêM¨®¬®R¥Ê\1d%[h½\ 1×\9e×/\v¼\ eÀ\8eÄ&d\ah\vng\12/á{\ 2¦\91Ó\1eÔlR{R³Qm :z@l³º²ºJ\95*·¹\94h\9d\e×Êu\9d!\9e×?\14y\1d\80-\88MÈ\ eÐNÈ\9dò9B\9a1\1d9íA\9d\92\9a\8dêÔW½jVWVW©Rå¶\97M´N\8cë\ 4×\9e×Þ\1d¢\80-\88í\99í¡m°[ÿ\85!ý
-¾;p:\80:%µ0ªWQ]t\81TVW©Råv\94\14U)WqíyíÝ!\1aØ\82Ø\81Ù\1eÚkòrIiÁé\bê\94ÔK¨ÞhVWVW©Råö\94"\rãº\80ké\ eI\80-\88\1d\98\1d©½(áj¾;r:\82Ú$õ:ª+««T©rçÉ*\17p\9d\9a×6°\89Ø\81Ù\82ÚK\12®æ»\ 5§#¨\15©\83Q}4ª+««T©rûJF¬\82q]Æuൠl&v`¶ ö\92\84«ýí\82Ó\11Ô\9aÔK¨®¬®R¥Ê\1d.ë´.áÚâu
-l&vdv\84ö²¼LSZq:\82ºLê\8aê*Uª¼Àd\81Ö\v¸\16æuäu\ 6l&vdv\84ö\9aü\90¦´â´\0uJêm¨®¬®R¥Ê\1d(\e\8cë"®3^K`3±#³#´×å¥\9aÒ\8aÓÒ¤&R¯£º²ºJ\95*wºl1®-\ç¼VÀfbGfGho\91p\17cZqz\8dÔ\a¡º²ºJ\95*w\86äøZŵ2¯\15¯\19Ø\9eØ\ 1Ù\ 2Ú\ 5t'\7f\8f7&\9cV V¤Þ\80êjVW©RåÎ\95EZ/ãZó:\ 1v ¶d¶Ám\93Ð\11Ò\19§·\90z#ª+««T©r'É6ãÚãz\91×\1eØ\81Ø\92Ù\19¶\rQWÇ\1fI8Í NH\9d£zÙ\ 3RY]¥J\95;K\f\8emÁµçu Ø\12Ù ´\97EÞ\16\7f,\ 1µ'uѨ®fu\95*U^h²Lk\81ë5^Gb\vdkh\eð¶þ,o\ f\9c.\81:\90Ú6ª«Y]¥J\95\17\8a¬àÚ0¯3^\eÀÖÈ.P»ÌhAéÈé\0ê@ê5£º¢ºJ\95*/\1c1\80VÂuÎk\ 3Ø
-Ù\19´×DÝ\e9½\0ê\83P]Y]¥J\95;W\ eÁµÁë\blIl\8dì%r[\17Ê\1f\8a?\7f\b©+ª«T©ò\82\13\8bk\1a×6¯M`kdÛÐ.\8a¾Õä´\0µ$õ\ 6TWVW©RåN\97\ 3q-x-\80\88\9d û@Q¿$@½\8dÔ\15ÕUªTyÁÊ\ 6\\17y-\81\89}(´Ó\9b_dsZ\81:%uEu\95*U^Èb".ŵæµ\ 2¶"vÎì\ 3Eÿ\98\ 2õ\11¤®¬®R¥Ê\vH
-\9c;\80×)±\ f\87vv¿æ´\ 6uFê\8aê*Uª|GÈF\'¼^'ö\ 2¼\17.M~5\ 1õfRWTW©Rå\ 5'%Þå¼^\ 3ö
-³\17%ÿ©ôa9©+ª«T©ò\1d%\aà:ãµEìíØ.Ü\9b?Ä(I±Ô·º9«T©R岤\b>\8b×\ 6°\8bÈ>T¬\9f¶\8aP.ðnÊ*UªT¹L)ÓÏäµ ì\v@»ôsæ³\17Êz«\9b±J\95*U.]\16\18h\ 3»HìØ^¼ß~ä\12©+ª«T©ò\9d!K ,ðz\rÙGIéI\8bå»Õ\8dW¥J\95*7O\16q¸\0ì\13!{á÷\97I]Q]¥J\95ï4Yáõ\12°\8f\87öÊ\8f®\14éV7Y\95*UªÜ\12Yãõ\1a°7\91{ëo¬\16æV·V\95*UªÜ2Y%ä\ 1Ä>^6\14âV7T\95*UªÜbÙÂëK#ö¶\87ßê&ªR¥J\95ÛB¶!ó´ÈÞüÌ[Ý8UªT©r;Éfx^\10Ú\a=§\92ºJ\95*U29\8c£\87aû\88\9f¾ÕÍQ¥J\95*·¯\1c\ 3l\8bÝ\17ü\9dJê*UªTY\91\8bröÂr«\e J\95*Uî\18©\9c®R¥J\95;D*¨«T©Rå\8e\91Êé*UªT¹c¤bºJ\95*Uî\1c©\94®R¥J\95;H*£«T©Rå\ e\93
-è*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©r¨Ü{ïÏ>ûä;\9fxþ\89+\8f½ûʽ\ f¿§\7fÜýû\ 3O|þù§\9e»òþ+_àÿ÷À\17®4gï¼²;{äÊî|¿\9fÇîlwÞL»yÜã\7fô}\7f¶sÿ5\ eÓ°\1f\8dÿxì wsã®q×\9f=ö¥+Ý~8ïvÃx¶ßïÇó¾;»áTÝy;ö¤éú¡9ëö»ó\9dû¿¨i\9ai\7fÖ5Óy7÷¨\1aÎç¹Ù\9f]½Ò5ãyÛøË\86fp\97\rç\83{2©Úýä~«éÏ÷íÔ
-Õõ+Ýn<ß\8d{©ìvýù<¶øk{÷ks'UÍ|>ïÝïÂQé*Ðôî©;ø\r¬\93{ØØ\8e\13ªÆyß\93ªé\3¹òî\86ó~ßÎ tUÞíZ|D;5P\90¦=ßµ\8dV5çCÛù§z%´Í<áuS7ì\9dj7\9d\8fÍ@O\1d\ 6x¨û\8fiÜ\ füÐq\1c[RvÝ@OØívx\9dk¯®\1d\94Ê\15wµ§\87zes¾\9bgªj׸\96v-â\1e:º\ e\84\ 6îÇ~\14*w«ëÁ~ïþS\·w\r×í ö;W\85)QuçÝÄ·Fåä®s\9dï\ 6\88+)\96c>\1f¦¹Ç\87ÎóLͱ\9fv\13\ e\87æ|ßL\13)\a\1a6î¯\1d\8e$÷_\93k\ 5©iΧiÞÃ#\85r\7fÞ\ fý\8c×õSÛ\93j\9e&¸Õ5Ân\9cD_ÁCÝ`é\sÉ[;Wcêæýy\væJÛîÛ}Ô@5÷çSß\8a\8b\-ûiÄ_r½2¸ÚIÕì:{\87C!*÷\8d\9b/;h Öõl\87ÃÞ\95¬éà×ÜÏ7MO*ì\80«Ø´»Ý< åµ|F^»ò.7gßy\ 5æÜ8ã\84pýÕìF\98«Açþcè±\89Gj\1e,öØ·3UwèF¡\826vOl¨UÂu\8dÃÄÜÓT®\93ªXã¨tµ\9a[¨±kãÝÜ\8f²Æ±\91½ê:"bÞµº.TËýì4*\rWôªk\82\b!?6oH]{Þ\8c\1d\14x>oöØÿ;×âã,'DP©êÇëÜ\90\9cv\1dýZ76£R¹^\ 6BÑèôJÇ\127\17i(Îû\89TÃ0õ¨ê ipRïz\9e\12\13L×\86\950xE\15Ü\8f\r0÷³\8aBõ\1fxôʽ\8f¿åáç\9e\7fçÓ×\9f\7fú³Ï>ñÜ\97ÎÞêTãÙ[Þóìóg÷ýÂ\7fü÷\8fÿ§\9føÜS\1füÒç\9eºÿì!¸ú±÷]{ô=ï<{ëÙ}\9f{âùO»\ 1Ù>Þì\1f¿ÿìmg÷=ü\9ef÷¸û\rendstream\rendobj\r60 0 obj\r<</Length 16185>>stream\r
-5÷wºømî\7fønqHr\8d>5\f¨\9d«Õ\r©t\r\8cÃý\9aTº9°ÛÏnNvÝùÔîùåÑ\ 2òºv:\9f\9bÝ T®\rÛÁý§\7fWðun\9aº\81\a*×\12ãÞõHÛº®\19é÷ÛaÂ\97L\vs}7Ñ\9bg\847 Ì\99\11Fÿ\98)§a\1eè\a»\ 1\86ó~räâ\1fÜ»9)5{\a÷\16{)è|\ 3¸\1fs¥s/\88®¤ÄaçjAÊy\1cxøÎS\aõ\18àµÉOqïj7²ZW¸¾i\84ʵJ\a/õV*¥ªqó©\99¤
-^\83Ã\8cÍ\12\95¢|yW\ 2L.>\8eú\95qÔ\r\8e\};ê1ä\94m\87/y÷"\19\/\9d\81jç\ 6\ e½I&x\83\b\95\9bAnÚ Õ£RôïÐÀk¨))Ý´ß5\8eR t\8dÓv3½)\1a7\8fϺ~>ß\ f;~«»\97µ{r?Â;r\16*×%=°snÔuÎ\82\99öüö\98\ 6è\12¡êÜØmf(tT\8aòu³\9bÓs[RºÛûÞ¡Z+\9di×\80)Ò\ 3y\ 6f
-"ØÙg0´[¡\82BÏþÍ\18®sMÐM¤\9a`и¡å\9aªE>»¶\1fÇ\ 6M¢a\ fæd2öóÞ<Í0\1a×\86Ñäfi»ã\97þÐï\90ùBéÌÌ\11\f¨iç\182Îô\1alf7#»Ñ½Áæ\86_\Í\80¦×èúrG½äj<\ 3\10ÆÖý.\82ÛMV7D\ 6¥â\17\92kQ¡l©$ðkMKª\ eìÍ=>Ô½áz¡\82[]?vÓ^^çÊ;´hRÁ{¿\ 5DLÎZ\99v<õ§®ÇI=µîõÚ\ e4Xv®®Ð\e\93\eáÃÀÊy\a\83Ù=¢\1dZ6\9f÷\93\e®P\14g\8atBEµ\18Û^*»ÁµD?Oâ\11Rå\fÞa\8f·F¥ku7¤°\9dvý4°}\ 4¬\1aÁ\14\1fyî9òâÔ\1d'×èøöucÛuÍ@ÝÕNÞîî`\ 2 \95ëéÝ\88ïh¡t$\85õ\84«hßîGæE\ 36ëè\1eÞ÷\93PAE;ÿz\89×Å⺩@Íæ¦SCæ\9ckS7)p\ 6¸Gì:6w\9b¡Ã6\1fÝË|î\18¤ØÔø\88=¾]Ü\1c\9bú\81\8aÒ\8fM+TT\89nè&y]\1cÁî\11îu?\9f\19#ýêI¦Ø¼2ÅÜ\82Ò=ÌÍùAN¨\eRéÆ£{\9díÏz·è\98wC\18e°H\9báM=\8eB\ 55\86µ!qÏ_7¹\17 \rF7Ìw°4
-\1aÿL¸1è\1cùÁ\9cÂ\9fêÛF6^|dld(\9aã¢lyY+þ5£¢WÙ¶îÝ\12h?\13ûE\eDåÞѳ\81§Oîçɼô\ 3K\14(\ eÀ¹ñ¯\8dx\1d\18³ýÀ]<ïµ*¶BTºé77\1d4³\9b\87ûA\12D4|$\8d+ÜÜQ3³RTÁÿ\98QÕSÙ\97s³Á¾ì\81ªíÀf\80û\1f´´\83¯[\fMÔYnÎ\83yÙÃ2`\1c:\9e±0¢zG\1a\1eZ¾YûÆhþ¾ñ\r\16.sÿá¬2n}XßI\8dãè¾\9dp \ 5¥+&.Ùá·Ð\v"Z\15|\18Á\8eäÖ\87²\r`ZÈëÂhq\9cï\9d\19z\ 65õ\1dâ8¿kaq\ 3M24¸¢\80Å6\10ÿ\1a¶\89++Û<îU0cõçyd«yßõ\r\15\ 5 \15UP\v0¹\11\9cá:XoLdo¶è(\92*Ù\0Q¹Ã%=4Éίc&h8hñ6Ì@\=cå\9bI^\ 5ÅïÑõ\ 3F\ 3\182yÏ\9f\84qóÚª\ 6\18çLúfÂfjÝRß\8f8ê¢\12\\ 4®W Ù;ZÓ\95\94|û5ë7Á,\ 2õ®ï´í+\94Ñìëq\11\92\18°B\19\8d-ã7¯\9djήÙòÐz\9d[^\81Q«ªÔ\81±3³í>¸\97ÿYß\85ñ Î\9c]·WªÖÍ\8a\11\f1¡tC½\ epº\v¥\eÓ`\9dõ]hö0\8e»HÇ8ÞÝbj×ìGy]\vvøÌ\rîL77üÚ\ 6½ ô\80qè±(°\9c\1c'¶»p\ 1è\8a\ 2K¸®QóÖ=Âý_Éà¾\9dÁa%U®(\9d{ÁÍ\83DCßÁ\84óî\92ÞML¥Ú\9d\ 3\ Q\82ÎY§mKm\ 2ìÙ7JçJ¼ßõB×·n¦\ e{våtàT\91*~uA3\ 5¥÷PÂ\8f9²xë\ 4æ[®ï;9ß¡RÞ{\18®rÕtæÓH?\85\85pÅGg\ 5\ e\87\1eW@ sC·%]»\e\aêÒÁ[R\ e\97S¢ÂÑuÕ\1arÞ\ f\ 6¿ºo÷ìâC7è\rlw·à\1f\89[#\18\1dPêiß´ò-à*7µòõ\ 1â¬6gõ©ËBÿÃ\8fuà Tl ]\97ãÄ1±ÛíàÖ\81Z\96Üj\0u(Ú®ëf¡ºª*ÁÊkVÍN6Í×ÖZøjî{=ÅñßÃýìÐîÊ×;3¹Åú\9aJ\ 1,õK'Y-Îk¦l¡\95Ä\ f}ªs\13üñyéG(8²£à\bþ\9f'¯\fg÷Ý\7föØ\87\8a\ f\90ÿ>{Ëû?ûü\a\9eºþÙç\9e|êIªÈò\9fï{þ¹'\9eýü3O<ÿÔGïkÜìj[g¥=ôæ\1e\Ãm¿\e?zÿýgoù\85ç\9f{úÙO\9dѵ\9füìs7¸ÄÔr\ f?ïþü\89/<ÿÔçáQêOQ¡\9ba\98\8bÍp\1fxÕAÎvÙ\7f\84?\85\92îÏ\Qï\87Û¨¼s/\8aûð\93\9fýÄS\8f|â3O]\7fþ}O8ݯ©\86NÚv6þ«Ø¡ïÿì\93Omjü\ 3®u\8dñk7\9eyÖ]ýæ'B\8brã=üÜsOÐÓÅU×?ýô3O>÷Ô³tÍ\9eDzÿ+ü\7fÏ\87á|ßµ'¾ôÔsg\8dh\1dyá\17\9fxæ\vþʧ\9fýåÏ_wsáÏ<ñ\89§\9e)Üðì\137\9e
-=\9dÞq{Õü\19¨ù!õþÔs\9fýÂçn¸¿\1eTwq× êÔ,Öi½20ù>øé§?ÿ³Ï<uã©g\9fßR\93ì\96\rô8\0.onÀ\11æ\96\1eýCoÞ£ó¢k§K \vvwóx Õ\9bð\12ËÚ\9e½\99ðÂ%\1e\9bí|9ß\17Q\ e\1düدºÿó\ 5÷¿]üOøß\ 3¤{\ 4þÿccìð\ 3"Ê~ïãF\9c\1d\94GFÚÝGÇÚݽÇGÛáæ£ãípóÑ\11wzòq1wzð\91Qwzð\91qwèã£#ïpó\91±w\18 ÇFßáÞ£ãïpó\91\11x¨î\911x\9aJGFá©\99³8¼1gAù.\9cÛïÄ\8aæñx©=4"\ f÷\1e\1d\93§\ e?2*O89*.O\rbÅæ\95öÀè¼j\8aCãó4~\8f\8cÐS\a\1e\15£§¦8M\9c~a\85\ 2¯.\1c~V\9c^©c¤^©\ f\8dÕ»\9b\8f\8eÖýF¼\1eÆ\86\11±'õQ1{¸5\8fÚÃã\8d¸½RÇÈ=©\8f\8cÝC\13\1f\1d½W7«rZ\11|\1ah\17\8eá/\8e13\82Oê#cøts\16Å\aµ\11ÇWê\18É\aõѱ|wóñÑ|º9\8bçC\17\19\11}¥\8e1}>0ª\ f%86®\ fífDöÍ~>Õ\0\e\97\a\98\15Û×êâûîÞããûpóÑ\11~¸ùè\18?TÙ\88ò\83úè8?ÕæÈH?\8c\89#cýðÜ££ýPãcãýðà£#þTá,æ\ f¿ytÔ\9f*sdÜÿ4Óo^\9c~¸È5#ÿJ}hì\1fê}dô\1fn=6þ\ fe>:\ 3@Úôf\1e\80V\1f\98 àªu|.\0Ü|l6\0Ü{t>ÀélÙ¹Ù`ËZ9\ 1 5²\ 2\9cúø¼\0¸ùÈÌ\0\18\ 4Gç\ 6Às\8fÎ\ e æÉò\ 3¨}\8eÌ\10\80Ú\1c\9d#\07\1f\95%ÀÍpL\9eÀI\988/¯«\88\89V¦\80V\87´\0P\eÙ\ 2Z\1dR\ 3ÌßöÆ\96\995 ÔÒ¸43\a\94Z\1asföÀ gøòJ\82ZÕÊ õ\919\ 4p³\91E Õ\aæ\11¸\9b\8fÏ$\80\9b\8d\\ 2P\1f\9dM\0µ96\9f\0îÍ3
-@\9bç\14PÙ\8fË*\80{\8fÌ+\80Â\1c\97Y@\95;2·À\1c\8eÚ·gæ\18Po\1c\97e\0tt\9e\81\1aC\87f\1aèÊ\84\\ 3³\8e'ÅÂòú\8f_üIÆ\81×Äô\ 2Ð\18Y\aJ`\97d\1e\9cæűlLoÌ<Xü\r\95x\0ÿÄxÕ½\8fÇ\88Õ\96ô\ 3ãß·*Áà\96f\17\1cÔ\80ÅHùÚ\1f¿S2\ 6.½ª5EàT)\ 2+\0¸¹I\0·,\ 3@t\9f{þÙÃ_xþ³g´\97þé_\17C\86k\81?òøÃï\99\1f\7fä\13\9f\7fê¹/>õäãï}êK\8fÓE\9fW9r÷=üìg\9f=kÛ\ 6\91\829\ 4_¸²£ÿó\ 5ÌNÄùLò\ 6ÿ_Ør\1fR\11þ\83û\8fÏ8Õ¯:Ò\9d½ïì#¿´;{\12~å\ 3WÚÑYt£3ò\9a©\ 1\7fe\a«\8fv\ 4¿\88[ªE¥[X9\8bw×\93jè\9c9'Uni\ f^\93ëW¤Ò\99\13{gj·cOñ-§\820\9a3\16Û\ 1ÜQÎÄEUß \81\rÊ\1d\18\97¨tK¹½»\ eBêóL¿\86±%r\vV°ë¤Ò\99\86íл§î(\9e'ë\90Õõú\95Ob\13´îU\7fæ\8a\ 1¾mgWB\134\14É\8cJ(\1fºÀQÕΣRõ£³ g*LTvçä
-\ 3*ð{`aÚ¡k\85
-ZÏY]\10'\97×õ\18\ 3u\1aè\94¾\97\1agt\8c\13Þ\17T³[Ü:K\ f\7fi§*eÔSW\7fj\8dê\ae¬\16¨\92êO{£úÓ>«>¨\92ê\a\95¬¾¸\8ek6íÓêÃ3\93ê»r¦Õ\8fåÏë Õw+\13rÛ¸A\ 1îCgFßÀ\9d\94SïF[TB\80\aý·N5;Óx\1a¥
-jÚá>\1c¡\9b!{\84¢;s×Â\8fÁ2\ e\ 2¡ñ\99¬\81¸\93\9b.½¸¨\83\95¡³ÐÅ/ Ux ÐíÎ\9b~vEu?å\9a¼Q¥Ïjéû\9efÄØ\19³?(ã¬\ 6U2ûÇÎ\98ýc\97Íþ±Ëf?¨²Ù\ fÊdöï%³\1fTÙì\87Ò%³_Ô!««îÿ±3ú?(cÇ\8e]Öÿ8Ñ\93þ\87©\98ô¿«|Òÿ^#ú?\\14:6þ\92Påý?öYÿ\8bÒgµÄÊÏ\r¤ût<xÜ\15Pù¨lÜ\12º\81ð×ìú©\9b&9¢f×Dm«\ 6\94[\82¹¥é®U\97Í®¯§\91\7f¬Gÿç\8e\96\818\93úaÄôô¨\ 4WÖ\88k.¸y×ù \16\94--C£RV\ 3Bª®\1aFÍ Â|\9cMÛº\17ä4À\1a\eÿsÜá\ 6¨Á5ê0fÿ\84\v¯Å{®¹ßÁã1æ\81\1c(aÊBÛ\ 1·:¡\13\ 5\ 1¯Å\84*HÂÂùéTÍnßàÖ[Àæ\88wò2ù\1av\ 5º\82\9c\12=JÃ\19<aç¦\a©FðÆB³cx-ªh\87b³Ç·®Wö»öÜ-ºQ\ 5a\16XýGÕ~:w+|Ü\18"\94n\1aÍ\1dîH\8aJ×k{\88òBp\ 3\9diØÝMãf\14¨0HïT\1d¸¬é÷ ô½o\84ò\9aRÂZ\vÝàà\9b\99qø\f\94\15\ 5ªn\1aX\85ï\86«8,Ðc\83·N;\1cf#¹uð\11øb\81\ 1\8aþ\9f¨¢½\8eè&\12×M#9\93ð\11ÐoJÅs\1d6\8b\ 6å¾u\1d¿§\8eD\1f\16¾\9d\\8fN\18¥q\13^ªhp£_,*¯)¥Cß~J\94nhìz\b\1f»Úö³|Yä\ 3\8fæ²\7f2X
-ø\90\eâ÷\82ò\9aR\1aO\ 6ë yr`Rx²\0W\18òñ*?äá§\92!\ fªlÈ\8f\831äÇ!\eò J\86|PÉ!\1f\94qÔ:ò§C\1ej\9f\ry h6ä\ 1ùÉ\90\a\8e&C~ì\8c!\1f\94×\942\eòc\97\ryPeC\1enM\86<<"\19òA%\87|¼.\fexD2äÃëM\ eù±Ï\86|\18PÆÀ»
-ãq
-\0r¯jXGáY
-=<o\10ÊkRÙº\1eq?ϧ\ ex~YÊxû'ñ\avýÀ\0t\97\ eü(VFê`\8eC7\15tþækÖ/^Su\1aG£NA)ë4\ eFñmåhÖ \ 6sV'1¬BùMÝ`ÔI(Ý\83à©\83z¡ÜÀ\83\eæy\92/\19È\80i\10\7fîý4÷\r$78\93e7w¤êvt\b fÊ\8c3\11ÌM\1a<Í §À£x\aBöË\80töT\83rìwÚ(\ 6K±\97è\eÜ\94pÃ\8c\8dbHE\95*7¾ç\1d\1e\9f\11\95\90²:`Ú\987°\83m2\82Q4i£\18
-æ\ 6ù^]×ÓÔD\15fô¸\95\a\ f£É\8døaÏçN`\10\11ßJ\83\83\vÖ|\ 4£g¦\ 17cÆ=Ô¼\19å{ \vÒ¢©!^UÃ@Ékâ:\87IÈmÃÇv\ 3$\8a\ 6\8d¬»×¹ÆÆ\f£nèÏia\1d{3ëôëj,\ 4\82\8a±\10é\eÆ\ 2\80;\19\v ÊÆ\ 2P?\1d\vñå\10ÆBx\83\84± Þ3~,\84\8bB\1f£\81¬Ç\ 2\18ÈÙX\0´é±\10\rä0\16\84\81\1cÇ\82¸Î\8f\ 5P©±0vÆX\0\gc\ 1&j2\16"\9bÃX\90\f\ fc!^ç{\19\1e«Ç\82ª»×\réX\10½\99uz²0\86!ÒÓùgî\959ïpÙî\95\90ý×L#\9b,{øÁ¨\89ËÔ¨s\13Ò\11]åÝoMCÓò\0ßCáÄ2\95U°Âq+H\18câ:X"âR>üXÐ\88\95qPA\1e\ 5$²À/A~\95(}^ËdU8\18\95\ fÊX-\1cáªòb\8d\16u]VyìQ]ù \92\95\8f×ùzÅ\1f\v\9a>«<Ì\8d¤ò±ôy-±ò-d\13O=Yº\98~î*ïíQla7Ó!-z ´=§\82}?\90:)T3y\11®_\11Ê\16#«®\ eî×Æv\8cãhÆ\ 4ï\9exçU|lÛÐêëÜ:rð«\9dÖM0Lq\9eÛf\10\ f\80sÛ\9cõJ^!ðW5xîU;\9e\ f\90`\89/\94ý\ e2úÝ\13ºn\96/¢\16l¼I½\87Ú=%f\8a\8bv\14\9aGM\ 3sX¨¼\eêú\15©\1c!\15\10*°\87¬Ñ\91T\98q \8fÜ{/\17Æñ¯cYÛ\11\9d°û\9eøØu\r\8c11±¤&,s\85\12ÖG\13\96ÍQjhg9\87\Sa\1a¡\9ak-ä=í\1ayÝ\1eòë\ 6¿zÛã.\99Áu\15½Õúx\88\1dÔob·\81\eP¸X\8f£¦\ 1'Mï:\v\1e16Ê;ÕB\ 2ì\908\13 |íJ ®sMÒ\92\ fn:oÁý T°CbD¯\8eTBJ\a\14¹\85T]r\93íéýd\fs\1cý¡\1e@V¬\87\1cý\80ý¤\1eñå\10ê!_"¡\1eâ:_>xDR\ fX\80dõ\18û¬\1ec\9fÕ\ 3¬t®\87(p\9fMױϦ+`"\9b®ø*×Ó\95A!§kPÉé*®óÓ\15TÉt\r\ f\90Ó\15½ëÉt\1d\87lº\ 63ÀOWa*\84é\1a/òÓ\104Ét\rNs9]Á¹\9eLWPéé
-\v\9elºBë&ÓÕsYj\8cé\8ak;=]#õÃt\95o\870]ãuaºâr@OW´FÒé\1a\869®\ 6v\90Ø7µz)Õìiàª%RTB¶ \e\8a\89rG\89Ë ÂlT\9c´\ 38va\9bX¿\1f:¡\82SN\aØT1ªëFØzÁN¼\ 1¼ÿ°Y\8a\16 0\8d§Á\1frÊ\v\87X:xIíö\ 5\9d»ÁY\84\8dÖAÆ5x\ e÷\9c4Nþ ®ih\v`ß\8eÊ«\85[ËÈ7'Ö\92\r¥\10\11³Ú\19Gq3ú&\85¼&pOC]q_\ 5Þ»Ç\r¬\10\e\e&©¢cª§©S×Å\ e\82í°#î\r\r*×(»}ãÏ\9aN:R÷¯\V\86^\93ËŨì\8dþ\85\ 1\9cô/\f¤¤\7f\83Jö¯¸Î÷/ü\9aî_Ä[Ò¿²t¾ßL]\97÷/À7é_t~èþ\15.\9cØ¿r]íû\17Y\9eö/ü`Ò¿poÒ¿A%û7^\17;¨Ëú\17\1a%ë_µ\9aoÁÑÖîôü\ 5å4²¿prË\apgÏ\8e\8c{´B\1cà°{]u`¯\1d\9bÇSç~¥\9daµàç\11ª Ôð+\9dйÿÁ®1~B\aÉ\90BåH³ëû\11\v\1d\94qδ3ä&îÇ\92\12Â|è\14\91:\87,ðC
-\15\ 4õZ\b8ÍîGú}/Tׯ@Õ\9aÆ\e\83|]CÙÕøkhc\83j·£8¥Cæ¼\ 3×\9bP\8aâM=#ÇÒy¯¾Ò¹æÞ9È·S\a\e\ eÙ ?»\975hpßn첫V?b÷N\r\ 4Âæ³\18p¾¡\94\1d-\1eÛqæF\bk^\11þõªë\18ç\1dG\1aÐþºa¦íÔd\89´®é16Gù\87\ 4ø©Ç\80\9d\e\9e\13_\86þ?Ð`6°¼3¨Üï·½\ f×yÝ\ 4S±Å\aàVcTí\û`qgïhuÿÃ;'Þ¡GÞ×\1e*:í½¯Ù½ÛúÎM\b©\8a\91ɨlq\ 3Ú\1e#\98ì@uFž\83\ 1\10c\84^\ 5åí|\ 43\G\97L\10½\9aù_îYÎ*Ç0öÀ˵f\aãlhé$\0Zö7Ðã\18YêØ\11ìÚiÆöÄ-ZãYtÊ\82ªuf\1f³ \1d\ 6¥\9aa\94õô@¯ôý\ 3OuvLGôF/;<uDËÉQÄ-='|(çø¢í\88m\v?\86{Iq4Í\14ú\8f*7êpÇ´ÔÍ\ eçÐ\17îÇð\98\a²þæ¡Ã\ 6Å\ 3!¢
-\ 6]K\aGÈë\9\1a\f\1cCÛ\80!\8a\81ã¹çõj×c\eÅøò\0Ûï!Ò?5x¤\ 5jfpĸÇÁ.z|&l³ÇÍ Ðÿ¸ã\9eLI\ 6
-Ì\12~jTÂ>ª®W\99\13b\82Á&\86±?3&"\ 6ÔÃcp\81I\ eâø\98 \94\8f\89\19
-á7\81HÉcd\86\85Pfó=ø;E¾CcÌ÷x]\98ï¸\82Òó\1dTé|G\9d\9eïâÎ jòù\8e«6=ßA¥ç;\985Ù|Ç\0£\9eï°ôLæ»ÌC\8aÊ]6ߧ]6ß\83JÎ÷x\1d]"ç;<KÎwx\11$ó\1d]¾z¾C¡³ù\1eâ\8eq\1e£m§ç;4h6ßCÿÄù\ eÖ¸\9eï`\15fó\1dÖ¼É|\87Ñ\94Ìw\1cuÉ|\aïF2ßÑ9£ç{PÉù.®óó\1dTÉ|\aU:ßA§ç;h\92ù>µÆ|\17s\ eæ§\7f×
-ó7¾k\85)\15l&@Cf3A41±\99àÞÄf
-*a3\ 5]´\85à \89Í\ 4PÉl&a\87F»ÇVö¹Í\ 4èJl&\ 4\9c¶\99\82JÚLâ:o3Á¯%6\13,\863\9bI\16ÏÛB¦nÈm&\¼k\9b Ú]ÛL¡Ë æH\8eRØ\r±ï÷h\19\rþ2¯¼¦\94|\9cÉ5\7fgúïp\93ÿm_ô\exæ-/^d\887(ÝL\18à\ ÿ[é¿ãMüÛÁ\94\94¿2&\82²Ó¿\95ý»\11¿ýÀ£WB®\8eLq
-¹:Ñ-\15ruÀ
-KruÀÜÈruÐÞLsu\94Òçê\ 4¥H\ eè³\\1dé\15\89Ê.ËB\12ENk\ 6oaûl¿yÃQ\êH.Ú1â\16¦3ì´\87ÝõnÕ\bëÔ¦wK0<\9e\b¶*ã±_ü?ë$.\83O7P\9d\81Ì \9d\ 1Ew«EO\83±\ 6\8bÝÍ\ 6µ-¶ç¯\0¸×xW\18o\94üÅ\ 3÷\1ao(ã=f¼ïèÁÆ\9b1{\7f\1aïYzröFÖ¯lýBÇç©\17~n\11X\96\ 3ôLnc\18\96\88e±À\880l\9bÜ\ 2Ê\f%ªcnQYvWn\9eÁ½¦\1d\97\1a{\86M\b÷æÖ£acZ¶(´Vnµ\1a¶e\ 3ÓüɬåܦÎmï«ÜÔ\99y`NU½M/K>¾¡\95!GÙHd6\12\9eáÞ<5ÚH ¶\12©ÓÓ\94l#qÛJ|&\88d)Òy\1euR_¿1ÚHþ¿\91¨C¢°±\99ÀHÄWm\11®4\12û\r\04\88³\ 2Æ\86\ 2cã\ 1õ`ºEÁÚÈ\90Õù´\87p\15Ï°ÔçpåN´\eZí\1dn×´:ºæRÿ\9déæsÍb9\ 4\r·aê]Ä&µ\1cX0Ã2g\97W§^±Üs\96ú×h&ç\9e8xºá´SjïàóêÌ\15h8\f\rÇ"Ül¸ \97\1c\95ìϼªï\95Å4ݤ':\84km\8c\19±\8eprh\1e\15ÉC':Àr\95oMC1tê]\1a´\91Z\1fÞ!\11\a2¢EFT\89\8e\87ÌâOf\94*\89fù³%³È\17\9dî\99\ 5W\94Ú\ab\12u\fÙä\81\1d+\0\ 4%0BEF@)\8d;Qé\8d\10\95ÙÅ';\82kuxå \v7\125\87J\8dô\87,K\82Îû3Ò)\8c¤\v#9\ 3n6Ò8ò\\8f,!\84\8e(LóF\8cä\924\aÅ\1f½\97¤«ÐY\80yb\8b\95þb¤ÉPEÒ\84\1a#íÆJÏ¡sGÓD\1e#Ý'Ï\97 ö72+\8cü\v#O\ 3n62:\8c¼\ f#?\ 4n62Iò|\93</å*×9Éa¡¹\91g»\1891Vî\fÕ&Ͳ1rqò)p²#¸Ö¦\1f®kóü¼\eZëóø\8cd?+]\ eFt\9eXgdße)zpg\9eÉ\97§ûYi\81p:a\9e@h¤\19fµÕ'på»ønhmÜîgl
-4¶ÕA¥ò\rxÖ6½|7\1fÜklûK·\ 6\1aû\aé¸Èt\9f¡±\191íiÏÞÚhÂæ¹ÒØèy^5\1d\8b\97å_\e9ÚF.7\fê,éÛÊ\f72Èá^#×<ÍG7\92ÖùhÇ$¹ÝÈ\80O\13åýy\86INý5n\99,û>OÑ7\92º¡\1eYö·\91!\9eç\91Ã\9dy¾y\9e\94n%¯s\e¤iîF2|6\10NvôÖ6\16æ{OnhuÜhBGdfûO\94:îU1\7fÛÛYÆæ\94\eZìJc\87\8aÔ*ãÎÚörʳ·65«±\ fÐ\1fô\98í\184ö\15fû\ fñT¡|¯â5\8e»\1a³½\8fæ\1eI8±ÐØM\99ï¹Ì÷fâ\Í÷qb\ fX;>óm¡ù\1e>¸5Ýëgl\b46\ eRó\18\9b\féLÆdCâ5.{ºuÑØàhm\84\841\96o\9946VZ\e0áÉÆVÍlC§¹ñ\93*\99m\1156\92f\eN¯Ú\8329\84+ß\99|\83{%ÙÃlîtÎ7DýÆÎic\7fµ±[Y\8d¤¸¯ÙØý\9cí\92¾ª+\137O\9bu<í!\Û,\804âå51\92E'Ff\ 1/¥\96Ý\98F¾Nt\ e×Zu¶~\ 4låg^p§q]ì{<õ@®+õ@®z ×\1d\7f ×ãí-þ*\97\89\81,Òï?¾5ö`Ĺ5Ñ8ÃÇ\10à?vû=\84ög·&ï<¡\17\83ü!éP\ 5ùcv¢\91Âhd:Ê ¿H\894\12'\8d\ 4K\19ä\8fWZ \9by^§\fò\8b\ 4P#M4Ï&\95A~\91vj$§\1aI¬2ȯÒ]³¤X#yV\ 6ùE\9aÎÃÕYº\1cä\17Y¼y\9a¯\95\ e,\83üñJ#½ØJC\96A~\91°\9c§5gÙÏ:È\1fÓ¤dê<çZ\ 6ùUrv\9aÁm$zË \7f¼×H\1c·\12Ìe\90?^i$¬[ù´2È/2oóüÜ<\8fW\aùEz¯9U\vA~\7fÀÚ\rÌ\82üË\87ºÉÀv¼Ò8$Î:LN\ 6ùã±sÆátÖán2È/®ÌÏ\8aKê\9b\aùÃ\10¾\91¨³ ÿòy[ª-º,È\1fÏï²Îù\92A~q"\98qn\98q¾\98\fòÇ\93Ȭóʲ:\9f8Èß\1c\16ä\17)\87JÝ\9bA~\91K\9a&\9c\9ay©2È/®4ò\ÓtX\1dä\17\99³2È\9f©Ó4Î<Õ3M\bUA~\915)£ù%uo\ 6ùEîª\91ájdÂÊ@½¸r)³¶·\82üª\98f^ï©\82ü+cÌØð¦\83üjk\¾\7fNï²SA~ÕãÖÎ=©íÍ ¿Ø\fhl\194¶\16Ê ¿¸Òܪ\98liÔA~]Lk\87\9dR÷f\90_ìÛËw÷Y»\0e\90_\iì*L7\1fê ¿\1e^y\17\9f.È¿6¼òmÎ7\12u\1aä\8f\9b¦³½Õ:È/6a\e[µ\8d-Ý2È/6\7fç;ijmä2È\1f/3¶¤§;×u\90?lr×Aþ¸\1dÞÚ4ol®\97Aþx¥±YßÚÔ/\83üqû¿qH@~\98\80\ eò\8bc\a\8cà \8cC\fd\90_\1cw`\1c\8a`\1c\9e \83üâÊü0\86|7»\ eò\87\9dï:È\1f÷È\e;é\1d÷2È/NdÉwðçSàtAþ\95é\97\ 4ùýdÓAþp^\8dq¨\8du,\8c\fòÇ+\8dSf²£hD\90_\9cX\93\1fkc\1d\7f#\83üñJã8\9d¬¶¥ ¿j\rëLWãäWãìT\19ä\8fWZg±æG¶Ê ¿8Û5=ÿÕ8$V\ 6ùãuÆ\89³imO\1cäßfÂæ\87`é \7f80K\aùÃÁZÆá[Æ!]"È\1f/´\8eü2\8e\ 6\93A~q\88XzÐ\98q\1a\99\fòÇë\8c£ÍÒ\13Ðt\90?\1c\96¦\83üâXµüì5ã´.\11ä\8f\17\1aG\7få\a\84\89 ¿8H,?mÌ:\95L\ 6ùÅ\95Æ)gÙ@8]\90\7f\13\vóÃ\18u\90_\9c¼(£ù%õ`\ 6ù\95Z\aùµ\95m\9dÃ(Âù\ 5mg\ 6ù3ãîDAþ-Íj\9c|ª\83üâ\8cTã$ÕìÄU\1dä\ f§³ê ¿8Ç5;íÕ<\15V\ 6ùÅ\95ù)³ùi´:È/¶(ÊЬ8ã6?\b7?.W\ 6ù½Ö8{×8£W\aùÅy¾2È\9f¨óÃZ\8d#]£_e\90?\1e\12k\1c%k\1d9+\83üâÊì\b[ó¨[\19ä\17\87â\1aGçfGì^µ\ae)È\1f¶4ê \7fØühn\91Ì÷\eÊ ¿¸ÐؾhlsT#©Ï\82übÛd¶½R\aùÅ®K³\8e'\ eòo²\0Ò-³^3\9aÑü\92ºK\83ü§^ÐΫ\16õÖ ÿÊϼð\82ü¥
-× \7f\rò× ÿwJ\90ÿB\14¸Ì ?½ñ\8f\88î§\aI@\bÂ8JB«Ãá\11áþ\#ný$³ª\800y\ÁÃ\9f\8bÕH?õå~Z~·\ 4Ë\1a¿iÂÿ ï\96\88K3\85¿\9cJå?<6OX\ 6øÒ\98+Ãîì\ 3é§Æ\1e¾²w¦\8f3z\7fõ\8a[<\9fµ;ܺÔÀÛ¾\ 5ç\1c|N·Ýu=}Ýù\1a_ä\167Ï\ù\85+\8f¯\9dO1\8f¢q?ÃÍá\eã\vöSÕ«\14\8bÐû2ìç)-Ãè\94sR\86\9d,C¿R\ 6úØÚÚ\87ÖZ·\b\1f§\9eÓ$\9cá\ eI \90WÐÀ§_£\12²\1aú\9e¢xnñ½ë \8cÙ\9c÷cÇ¡ ð&Ã\91;®qf\1f \9f{Ì\9cØ ×\17fZ\80jh;6>Ýp£3\8cܲ\11¾\16Kö7Xþ\98ß\0a\ 4\f\7f:[\9b¢¬îï\8dPÑ÷»ZN¹\b×M>t\ 6ª¹iðÔ(ÿÔ\16\ 2óxZ\ f|\1e|ðºvÂÆ\1ew~}ÜAèfïu|sOß·¥Ë¨bÎ*hº\19U\9cÚ\ 2ëÈaÄÒ\8d\10Ëi¼»b\9eð2ü>-6\893\83g,Ü<ûÐÏ4ìè\0£ÙýîÄv¶\9bù\ 3Õ_÷\97Ñ\85x(ð4ù¬ú}ëÖ3\r~ìÇ\90v|¢EG)3ÝÔá\8a\ e³ªÝ\rÎp\9f\_\87-ǨºNß| \1cópÝèÊ\fß\9e§ý\8en\19\86~\93\89\8fÇp\86\11ØI×ñhùf7ñCÑß@.\17*Ú\f\99\11ÝèV{´c\11J;c\f\e\94Mئ7Îôí ð\9cµ\99.©ê5Õ\ 2Ð0Y\v`ª\90j\ 1Xr&-\10T²\ 5âuØ\ 2\1d\a(\92\16\0\95j\81\91\1fªZ\0\8a\96´\0\966i\ 1\8ca\8c³l\0J*\8a'G\85\81\ 1Í¢æ¶O\99\17s{ææKæ6\9e|"æ¶?7CÌí\89÷®%s\e²ÇÕÜ\9eý~Ä8·iÛ[6·\83JÎmq\9d\9fÛ¨Òs\eTrn\8f^'çvÇ{MäÜî9\97?\99Û\90´\9fÌmÜ\b"çöÞï7Rs\e\9aDÌí\8e7\87¸¹=\85¹=ó@Næ¶è\9a¬\vå7Á0£\9c¾ \86ëNú\b\18¸jq0è\7fò7Áü=á\9b`cK!aÜ\9b\81_\¿\81\9f¼àíjmC~\7f\1cØ»ÝD\9bVú¾\eq\9apßx\15L\93Ö\1f\12\14.ó\18\aU\87!\9c©w\13\8c7À K\84>ÝÓ7þT\ 6ô¹¢7\88v±À\96Ìiæ\93\97è\f\10(n;ù\ f:¡\91\82ØÁü\bð\844ÍÀ\eæ±»ÀG1sÎ=D¾é\83\1f ìÆ6(ñ\f(þÖ7êö3\84}Á§Öt^Õ4\1d:¡üàgÕuübÍìÏ\1càË8\15\92TàÔ\86\16â\8d'\90\8c×\røe©\16|.þ²n\bßÄ\19\eÿ\bH^\ 3ä´û©ñe\9bÈ\7fݵ½¿
-\12¯\88\1c}ÓðYC{gmÀï9åÜR-\\a·{<\83ØÝî\9b¥=wFIO\\ev|2 \ epèk¿Ç\95UÔ×=MX§k!¸;A,¼%Í0¸ÖAÇoÛ°ÊÙ4\83o¦\8eöÊ@8\ 1úÚ\99¥\13\91½\81¡\ e\8d\ e\£Np\15tØuú\ 4×ÎSÂMMx\84k\93¶ár\8c-*F>\ qÐ\18±kfp\86â\1ev§D·(\8e/ø>z\ 3gµ`ócGÓYS;ðC5=>söÇ\17ì`î÷T-Þ0¹so\ 3\ac\9a\ e=>À«àVȸ [Ãu\9094²fj{Ô´ÓĪ\86\8eßsK\8a¾íù\ 1}ÓCT\ 2Bt\ 37å¾Å\90É\f\7f\e<n[úöÊìÞ\at¾@C´\87[y[>ì\97\87\8cLcâÓ\au ÉÇ»q3\1e\80\ 38áÁ8d<\b*Á\ 3qYÇã\15T\8e\a\1dñ\80þh0°#ÚMßVÐ\0c·\9a\ 6XXI\ 32L\81\ 6Ó\9eiгy\95Ð\0³U$\r¼{WÒ\80²\9e\14\rZÎñ\154ðÖ ¢\81¾\fh0²\8bZÓ\05\92\ 6Þ\93\9dÑ\0\95\91\ 6cã˦h\80*I\83\9d/\89¤\ 1Ù¹\ 6\r0å0Ð ç\fÆ\ 4\ 6A%`\80º\b\ 3Ö$0\0\95\82\ 1¦Çv
-\ 6\r«\12\18àU\12\ 6-/\a\ 4\fvüÔ\0\83=g5g0\0¥\80\81Ï\11M`\0\vc\ 5\ 3Lii\11\ 6\82\ 5\90]\9d° ¨<\vèÎ\94\ 5¨Ñ,\0\15g\9a\13\f:~B\ 2\ 3¨g\ 2\ 3ZW \18\90]©`@³\ 6a@\1f´Jf=Â\0\12æ ¡\14÷\ 3·\90ßí`à\16-Ý@\9b{gLÇî`Íâº\10¶½í(=
-r\ 1ømîUð©Y7½&ÜH\19¯\83\12ôüc®\eJhØM¼ y\80\80\19Üêæ#\9dã\aÙ,0çAÕÒ\894\90ÔÞ@î\82Sí'\7f\84Ó\ 4\1d@·úã\8e`\8f\81ûeP1Ia{ì\ e\9f
-WyÃ\ 5\17\85WéVÞ\9f\ e\1dE\87ö÷\10â\19øÔ\82\ 1¬Ékô\15Ý°_v@Â8\15\9a1¤êa\»Æmú\9d¿µÃ\f{Ì\ 4\99;>Ñ¥\87¼\80\ e7CìXÕMøݦ޿#À\16\1aFêÜ>\9cÚ6CÍ)\14Îûû\1dÖÝ[±§è8\1e`\ 5ÇlMôÝ\13w'A\12\16e\8e\8a=\ 6Ûg¾\ e&\1dð\ 5ö]ÐþS¯º\8e\1f\95\82\91*/\e½\11\ 5ª\19\15nýÔ\90\82\93o±\v!Ñ\97\94\ 3¦6¡²\9dù×Zò4\81ÒÛ\fn\84µ;ú$ñ4²\8dÞb\10\10\12æ¦J\88ecÙf?vÀè\1f!=ÏHÈuAË\ 5νq\ 6)\9b<èñ¡\ f\8fíùÌ\ 6G2°ÿ \91ø¬\1d°5ºnÏmÉ\16ÃL\1fó\ 6]Ûà\80p6Ã0@\12*\6¢\99\ 6G2B¤\r;pƽõÎ\88\18÷Ô\v\9d?\85ĽäÝ\9c\82I¼w\ 3\1790\ fú\9ejà~«\15*ª)\8f®p\1dÄ\9fé\80\188Ê\11r¹ #x9\ 2VD?\ f<\rG$\1d\94\ 4}\810§Ýú\83\ f\95\1c\87\96¾É<òù\8c\ 3\7f¶¼Ã\84\8b\81\8f»h\87\81.ëé\90@HõÃ\14+\98µ¼\9cÜC\98\9c¿\15ÍËNpß\81\ 5\ 5¿Ï\ 3u\807l£T°'\85*\8aJ\7f4\19Úyøk\ 3\9f \84/OÔ4~\a{·ociy\8e\8fxÍ\9eNyt¼\98\1a*i\82·H½=çM(ê¡O`H©7\8e\8azhµ\8c õ(^¨¨G©\13\19õÆÁ Þ8(êa´x\90Ô#\ fÆ\90P¯á|\ 1A=Ú\87\ 2ÔÛ\ fL=2³\fêQ\92» ^Ïi\\19õP9\8c\ 2z¨ У½8C\ 2=\9f\15\16¡7Ì\9cô* 7ò\ e0\ 5½ÁçÌjèÁëK@¯á="\19õÀ\11#¨7\ 6÷\99¢^Pyêuê2O=Tyê¡\v³O¨7x¥¤\9eÏYͨ\87\9eÒH=¶Ð\ 4õZ\8e2+ê\8dìí\14Ôó*A½\8e\8d*E=\8aZ+ê5¬\12ÔkÉ4ʨ\aÆQB=Ü£\16©·\1fÈZJ©\aÖLB=4\844õ\82ÊS\ f'N\9bQ\ f÷¶i꡹ÔÏ\8d§\1eå·¶\19õÀ
-L¨\87+\80\11Ý<\ 4\92\9e\13\05ö0\17(b\8f»Ta¯ñi\8d\ 1{Mp#\ 6ì±ÊÀ\1e\ ei\85=Lü\vØÛùü=\89½\9esò\ 2÷(Q\13¸×ög\ 6áèCr\83?ÿ\ 2Î\83\83HÓ\rT6ýÈ\a
-î\86\81R¸½y2Ò\865Ì[nGF©\e\16È °7ø\1c¨Ù§zCo¡W\ eLÀ\168
-\87 Ñ\8bÆ«è;aý0uê:gÏóo\8d\13,$\1d×½\ 18\ 5îÁ\11(3®é¡\9bÇ\81\12åù¼\1fL\\9fé{hÄ\1aq¸
-*Éj\81ÿjø»i|z\90{\983Ý(Ó\9d\8f\18Û\13D¯Ò\9dCÇ\a^\rÀµk¨ìG\7fRßà¦\ 3*{\7f,4ÔpƬí\ 1Òò÷Þþ\9bh\97Á®¥\13b\9cª#xÁJ%\18\8f®ÕFÌ]&ç\1e\9c\ 5\bÉâ\1dÎöÞ\1fµÒ4ô½¶6\9c\83çFÀ8Q\1e49!ö\8e¦`Í\83fǧ\13÷\90\8cK\1få\84ÅïÈÇg\ 3\7f`mÄ\aïµädÁdy>Î\90Uü\rÁÑ\1f²Í×õÞn\ 6ÕÐÑÖ\89©÷ªiO\9f¢Åý\14½?ÕeèFnLLOF\7f©[àáë\aN\96bów\aî.ÊÉg»\16ÎÎ\9b\81ðm0¦\eÜ
-Ñr_\ f{>¸z\a[N¡ÄsÏGàV\ 6Ø&Á¦4\18\93\13±\16Z¤\v&!\0\88"L\ 3»\9fö\9cSîUn ¹ç>\98\82\8fgh;jË\9e
-¶ãÍ\88°Ù¢\9fÛI¨¨-çiß©ëzß\1c°\8b\a\89\ f5'·â\ e\92
-'\84\1e¬\15èø¢\1dÀcöû/ØöÅ×\15hø<Dt"Ñ\a|÷Á\82u6øÐÁÒ:\92ÀõAã¬\ 5TÅ#[zÿÐÁ»-ÝH\1aqq\1d\1f\11F PM\ 4\11º5*1\7f\92~gÓn7ϬÒ\9c
-øBw\1e\86Y 07¸0¸¬ï³Â`\92¡.\f&/¦\85Á¼±0\1d\ 37)\fÂPS\rl\92%Ð\ 4[.\81&`8\83&Ø\86 4Ñ\82ÔÐ\f*\ fͱS×\114ÑÎÔÐ\84g*hRnh\ 6Mxk\bhN¼C3\83&Ö´\81FjÃκ\94\99he¦ÌD³P2³i½ù\980\13mÅyß
-f\92ù\18\98Ù{UÊL´)\153qkUdfç3WSfÆA\82Ì$SNAsàp\9f\82æÀÇ\11(h¢¥¨¡\19T\12\9aâº°É WÐìÙÒPÐì|\96¬\84æÄG\1e(h\ elº$ÐĽH\1a\9aàKRÐä¬x\ 1MN²O \89¶¨\84æÞ[\94\ 1\9a»\81ÜW\ 2\9a¤RÐ\1cÙ\196Pg¹BÓ*¡UÐÜOBå¡ÙtêºÞ7G« \89ÛùZ\ 3\9a`Æ
-h²\9f1\81&9Û\12h\82 / 9pÀV@Sq
-ñå\96Ù´ª\85áÒ\91ñÕ@©ð\15\ 4fÐ\ ex\ 3gWw7\97à¿@ŧÍzÕuü\1a$ÇuÂu\10\ e\18Ø^êº\8e5|àß\0ó\88¸\ak³\99->·æ\85©°ü\1a8ú\87\87YÀCé\83\v ¡)\r*z{9\1dz\1déc\93=9søBÐñ9\18A\aÛLçÁ\9f\18Ø·3©8øÙ\ edïBZÚõ\8eæÝ\f!¹\ ecÊd\ 59È\rÐ9YSR\ 3Ãüõ\87pÎ\90:}\ 3\95\13\9fÚ¼sëÚ\11\7f\8f\8d¹=¸´© >©\ 1þã*ýT\13t\rÁ\vüPá\10gò÷Ã\19\91û\1d\9f\0è^Âô Q\8e¤y\15uVÓø°&]G&Mø\9e ¬àö\8d\ f\88Á¨\1a)È°\aÚuìZ\99\86~Äë8"\bÆ\12ÄN\9c¦e³È\15÷ô\9dç=\84å÷l+M¸\ f\vT\9d?Êx\1e\ 1\ e¨êü\a=Fr¼\vå\0\ 1É\81®\eü¹Á\1d \13U\b%°©\1c\93z¾µëÐÍ\bÞ²¦¡ÒQî\ f:®à\ eh¥\89\8e0Þ\r\14\7fáñE\99)\18:\9b¨Õa-\1dÂn°y\1eZ\9d\17\ f`\1d!õáüÎnÏß4Á\177\r¦ÆÇúܬ¦1×Eó®\87÷v>jh0\8d\1e:\ 3\8fõ\eb¬ã1\ 4ÉX÷º8Öñ@\9d\16'µ\1fëø¶\95c\1dá4¨±N!¶t¬Ã;ßq\14_^ÍèÏ\11\19\156ö^¥±\11T\12\eñ:\8f\r°\18\12l@q3làñ?-N%\8f\r¬»Â\86o\8d«VS^ãé:ÐïuÆtÅ=÷aº¶ü:\94Ó\95\f>=]Q\97NWÜ¡\1d¦+\1d¯Ð«é\8aÖL\9fLצ\95×\85éJ'\13©é\8a'°¤Ó\15à/¦kËi>qºb:\18ì\ 6äOgã,ñ\89dbº6¾\89âtmY¥¦kËÁNÌ\1f éê}KÉt\85·¹\9a®#ÇÀÄt\1dý¹Czº¢_&\9d®\14Ý\12Ó5\84¼ôtÅ÷r\9c®\r\9fN\84¿'¦+\94DL×\96]Zaº&£\86>s \13ld\10ã±<7ðÛz|´4\9aÓû\ eOóØõ\94æ²Ã\8d\8c\90/ëÏa¥\9dm×ñ\83l\94Ð\85:8ÕÈiz>Y\15¶\7fÃI!#»V½\ 6î\9bÈ\8b+®\9a¹¢\98i\ 3\eÌá\88\92\9eÒO\9c!\82~¬ëø}º\8e\93í`"C\92Ò\1c²C\0ü»\96T\8dÏ\8ek\11òt\fÊìÏ«ßãUp\ 6ÎÌ\91\93\1e\8b1»ö¦0\fÀ©£Q³Ûù\10\ 3´<8nQÕíù,j8À\884þ°r\fFó\9d¬ìáX(}ÝH\8e¸\ e÷ÃqD\v§Óuüêà0ùo¦à\ 1+®ÁD¼\9b`¸Á\86=\8e\ 6²
-níý1ü ÄÉ\0û5(Ð\83\1fK\0o\v.\8e[~\0ï)í\80ÿ½_vRÊÀnòßw\81\ 4-\:9U×ð\81Ýø·ëø=lÿ¥.×\7f\1dì¡\83òî|Pg\ fØqæL\b\a\rþ\90\188Ýf¢\98\8bWÒG\1c9âæ\950´fúÄ\13\14\13|Ú0J\9bÆ\7f\8ek\ 2Çûu\1aâ3¿ºæ}OÇt± \bÞ\e÷¦93æ\ 1N\8f\11R\b;\9e\95¸§ö\ 6*\e:·\f£¤\90\17\a®Dt\ 4».\83 \1c£Ä;e)\1f\8b¾Ù:ø@7Äqv|b\13åÁ\80
-Ã\9dx6\1cùPqHcÿSæ\1d.»\9cr\98fʼã\8dd-\82g d<Ì=q&½[\0\85|?\8aó·à5Ç\97/¥ÙaÎD\8bÛä!_²\ 5'ò\1e½\9f^é ëÞXø\82hgZ7´¸·mög\9c\rô\85IHºìù\ 4\89]ïz\14îdMG\ 1¢\16^1\14>\81\80\0d{Â\8d\93ß\eï\9e>îð@\86¼±ä8è }!ß/ú\12@E_À\8d¡\12ºn\1c}N
-\ 4! U\vTtþ\1a¼\17!\9dñ:v í2\87\13ãðì½ 3\16\90ùT\bèø\8939ðô\ fºmG\99\1c\r\99'-\1dô\ 2\19\aMÇÿ\ 2\97+\ f<ÿïf\87GþÁîÏ\81Ñ\8dÆ\8a1ºÂ \9b|f\18<ûF|6\fìølp£ÅgO87ñ \9dðoñì\91\13µ\92g£-8L-×\10ÛÁQS\fl\UÎÙÀ\9e\93\81\8d£xV\ 3{f\95\18Ø=«ÔÀÆðÃ\9c\rl÷â\90\ 3\e5ÆÀ\ 6¥\1aØèZß%\ 3»\15º8®\81\1dɸ¦DV=®!cL\8fk@G2®1\8f@\8ek\9f\96 Ƶw\86'ã:¨ä¸\8e×á¸\9eù\8b`<®ù\ 3~jLó·\91Ä æ¤F1¨åÀÒ&@8\99O\9a\0xÜA0\ 1:: 5\ 1h\ 6j\13\0uÊ\ 4\0M4\ 1ú!j¼ Ðtò*o\ 2`r\9d6\ 1\80\16Ê\ 4 lóÌ\ 4@c\12v(\93 @qOm\ 3Lþ8\9bh\ 3L\1cGLl\0ôܤ6\0\1eV§m\0:\vÓ¿Û\a.\86²\ 1\ 6v¼
-\e`àó\ 2µ\r\80'ÿ\b\e\80·º+\eÀG\9f;\88¦\93\rÐ\8cBåm\0ï?\146@\17ÎR
-6\80?\eMÙ\0=\aÜ\12\e\07`D\eÀ\1fä\93Ú\0\0La\ 3´ÞD\86Wu´\ 18±KÛ\0A)m\80 $\e ÷¶o°\ 1(ö×å6\0v¡¶\ 1Ð\19©m\800\11®ã'}\a6NáÕ\8bi\90<?Èué\95×\94\92hyMÝméÂÍð ·Êâí\10àæDc£Ç´bïû\1c&Ø.?ùó¨\90b{8v\0Lzz\8b\86m2=¢~òã\11\1a\ eT1 r\82÷@\8f\9f2õ\aP Û\93nåc8ÁuÔ¸!\ fª\90\91\87\a¡Àþüøöjvx\ 6\e\1cï0ÒZ \971\18Öïq\94\86\ 4?8\9d
-öüÏ>8ÝÁá\ 4 áUV;R\ 2Çuü\16±? u¦·\rî\9f'Ǻ+0à\f4²ö8Yðè\ 1:G\ 5¦\19ø.zxwÐ!
-\10\15Æ\876;ÚÙ@´jg\18,Ðä>»\ 4\16¥îmÒÃ\17Û81\ 5\fq¸ÓAµ\1f\85\ 6n\9c\84\99\82Wág/¦ÉO2(ž9\8f©\e#Þç,i®%D°!{\18T\13wûD®\17P\8d\f5׳M¸uØõ\8c\18lï¾Á\17\8e÷\96\ 3¨\8d\91u]\r8
-F&\ 3\ e\94qÀµ\9c¹\94\f8±w#\ e8\\ 4é\ 1\aþ°dÀá*+\1dpð>Ö\ 3\8e|_jÀÑ\1a@\f¸Áû¾Ò\ 1GJ<¸¤ñ¹û;5âèÖdÄù¤µdÄA\89õ\88£ê\8b\11×ò¾¯dÄaú\95\1eqøvOG\1cŵ[\1ep\83O\92T\ 3Îkü\80óK;?àüv\94tÀÑ÷»â\80óù\91bÀM¼\0\12\ 3\8evÅ%\ 3näÈf2à(ÍQ\r¸0²®Ó\17Ì×¾è\9d~¿ûð\8fv7g\8f}\0NãÈ]ø7¼Zûú\8d\80\80\158 \83-\8d\10C\16\88È\9dìp¯á\8d7|ö\86o\1fn6¢\0y¨ \r(\å2g±\aVË(\ 5)óh\86\11ó°b#q\13´îJ#W\0{ÁH*È\13\ f\8cü\ 4¸ÕÈd0ò\1d²¼\b:ýÐÈ¡ u\92oAj#3ÃÈß0ò<èØÈ4#$Ï\1a1rKè\94½< ÅÈTÉ2ZèÞ4õ%Ï\8f±òh¨W²\8c\e#/'ËßñM\9båú°Z¥\ 5\ 5\91?dd\19¥ÙHt³\91·\94e7\19YPtþh\92-edT\19\99WtØd\9a£eer\19\19_t\80¥\91\efd\90e\19\1ct³\91ëad\84d\99#t³\91cbd¢d\19+t³\91ÛbdÀd\992þ R\9dR\93çÝXù94÷²L\1e#ßÇÈ\v¢¹\97f\10YyFY6\12Í\9f,k)Km²2 \8a\bÌRãéüN#\87ÞÈ´72òáæ<wßÈð·v\ 2ÐÁ\93é\96\ 1c_A¶ÿ\0'¹µW\81\8eßLö5xu²ÿ!ß"aì¤ £\fÓ=\17ÖÎ\8c|\ 3\aµw¶ÓÃØ\ fbì\e\81\9b\8d\1d&ù>\14k¿
-Õ7ÛÙbì\7fÉöÉø¦ÍöÔ°Zï¿ñjs§N¶\9f'Û÷C7\e;\84²}DÆ~#\1a>ÙÎ$cÿ\92±Ï nÎwDåÛ¦¬í\atLk¾O!ÙÈ\90mv ûò]\11ÆÖ\89l\8b\ 5ÝklÆ0¶l¤;;èÞ|\a\88±M$ÝM\ 2·æÛN\8cÍ)Ö&\16:g7Ûî\92o\8a±6ÏÀø7¶Ù\18\9bqò=;\fºts\8f½\ 5(Ù)TB'\1eNÉgÐæ\eÜé°¿|+¼±aÞØW\ fç"\1a\eðó]úÆf~:ø5Ýöo\1d\ e`ì%\86\9bó]ÇÆÞdk\ f3Ý\9cîv6öD\e[§é\fÒt\8bµ±\ fÛدM'\95f;»óýßÿ\7feg³ÚÖ\15\85Ñ'ð;h¢a PZ:m!\81\82¡\1dt\1e\f\15n¡¶\8bí¶¯__\9d³ïùö÷-ùg\98\9b{¬XRD\9cµ×Úä\89Ï\97)\8dr÷ÎÉOß\1e9<vpÝÁ\89ß\8e\82=\ f\8e=¸øãýáÒ~\8aýàÿo/R\96\ 2¨'\10Ý\81\11\15\86FÁÌ-÷\9eÁõ|(/\1f@\1f!;
-ç\87ÊæÂõüÎ=Î\90\ 1\aè<Ìʪ\15!¨\eáy\89Qh\8d\12Å\88\9fB³\ 2Ê\16PÀ\18\1f,³\1c\1eÙ\9c»yÕ
-;{Á¹\97x Ö\ 3U\9fùÚ[ÿ\a*AT\13\1aϼg\87 M\14a\9fñbf\ 3\88¾í\8a\83\9d\ 3¢¯~èvªx·_\11ê\98T2\10Óù\14 ¨ÀU\a\ 5Zs;\91S¯dcÄж\ 5CIÛ\80É\11»{9\f\90/A ðÂq4ÈbàǤ\94c¯\11\10Íy¹ÁϺ
-\944X*0×±A)è,0\`½ãÕt(\fÜ8èò8\99\1cúÐ@µ¼áúß_(\rÝÍËÐ$Âr\91\ 6\8eö'Ü[HcKZÏ&\8d«ÐW\82
-\13Ô\9aÆ\1a¿è:Aý *QÛaìIEu*ãTc\15_T¬ u\ 5A¥±¥+ÒK\10h\82\90Óxr=ù\84]¨ÈG½úñ\94ÓFwój\8c%Áð\12\f9\1d¿â8\14\fMÁpÕv\18Æ°`X+gº¶³0üõê\88Ø\8e\91ëpÌ\9cõÁ4\1c`\eë¾bÔ\r\ 6âblnlß\82ñº\18Â\83a½-²\99c}0û\97\13\82£Ïé\93\844mè3\89cç\98Ï.Â\80#\f\80\8dµ\854*fód0v6þÄ> \ 6cl9îvþhÊѸëz·õ!:\1cµË\89¼K?c!\ 4Ü.'Ô\ 1ôC\88èå0ä@N\ 1¦¶£ °\92r\ 1\vÛþÈÉÌ\92«\ 1~Û"å ê\12ç!ö\eÁùä\83\ 6\11\116n\ f\fX\12àe@Î*ä\e\10\1dÅõ$§\88W\ 3Ã\8e³\0l\ 1ë\ 6þ\1d©w\aÅI\93 \r^ü¿Ó4;\ 6ÄK\a\ 4L\112J6Ê\ 5î \18*a²\f\9cfÎËàf`Ƹ<\ 3¶ÄøràU¸|\ 1\8eÆø>Âæ\0ç#Ü\90Â\82æ\91\ÏçÛ\8d\93\v^\8aû+ó0\98.àø73\ f\83a\93\1eNø:ãp\8a=`ÿ\84%Do¼|\eþ#oGó;\1aS^"\bØ"d\95\14S\ eÿ$,\95\94Y\8a)\9bõ\ 2n\f84Ê\94ŶI%ÇÅ\9dÅ\94ML\11¦¼$\1feÊKu\ 1!\86Ä\99·\99ò®R.¦Ü\9dËô2AßT¦,¢'è ¡\8d.¦l\8ai1妣.¦lâ*è Á*S^w¦T\vêm1å\90tAå\råW ²¸Á)\10\93h¬PY\94d\10\97CpîPYdh\81Ê»7-Pù`~5HØ.k+SnZwÈß \89/¦,29\bç ¦+S^w\92è\ eB¼2å¦Î\83`\1f"~1åPöAì\8f\0\802å\96
-\80 @\b½Å\94Cý\ 5A8DâbÊÝ8N-\99ôåbÊ&:\83\ e\rÚôdÊ&X\93\86\1d²v1e\93ºÃü&Aüu¦üía\85\87\16S¶B\11t\8c wTL¹\97\91 \9fD\9d¥bÊ=È\ 4Õ¦¨;-¦l%¨bÊ\1aÕ\99ò^\97Ê\0\15tª\8a)÷¢\15u¯ \8f¥PYJZÐÛ\82.×\84Ê^ðÊÎ\17õÀ\14*K9,óbQ!ëLY\8aeÅ\94[Ýl1eè E--ªjÅ\94£¿\16\956¨¹\15S¶î\eÔá "§LyÝ\99Q:*;\15S\8e\ 6\94g¢¢%%T¹E§ L\15\ 5«I\95³u\ 5E,\ fg Un\81-¨pEK±òêzAý\8b*a\8a\95¥'\96Õ1ª\93)V\96;¡v\96Q4ÅÊROãÆ\9a¥Ø>\84\95÷RrÇÊ«©\fååÈ3\17T¶\8as¦\9e¡\bPyÝI\85ihÒ\16TîõZhÜR\vW¡òªæB[\97\1a¼B\95%Ö\vE_(ÿ*U\96;#$L½á\82ÊQ&ö~1u\8e\v*·\1e24\93¡\PÙ*ÌÐj\86¦sAå\1e\7fÎ@4t¤'XìÁiªRG½z1e+]+SÞ«Ø\8b)÷~6T¶³ÆÝ\99ò^î^L¹'¾3\ 3\ eµðbʽ+Nõq\8f\94w¦¼÷Ì\17S¶ò9ôÑ¡£\8eL¹¶\8et¤¼¯,Q¤,«M`ý ¬I)¤Ü\17ªÀÚ\15ZÏ"HYn\84e/±+¥!åµU\ 5¾é\ f\ 2å]\91Ý\81²*´©Ø\86\88[@Ù\85]szSü-¦l\86pzÄä\e\17Sîf2øËä9\vS\16!:¥ip«\95)\8b\85\9d®v:Ý\1d*\8bÿ]PYUñ\ e\95\9bS\1eæ9\18ê\ 5\95Íe\aã\1dÌø\82Ê]¡'Í>|é¢ÊnV\1f\9az-ïºKTyßMÕ©rÛb\85»®t%֢ʶ=K©r-ÚêTY6rÁÞ.ØïUTÙ6\81Á¾0Ø+VT96\90Å\9e²\gVTÙö\9eÁv4XÁ¥TYî\84\95^°úK©òZ\12\86\9bÄbáØ;¨²ú«\9d*\8bè
-:,h³E\95M°\ 5\r\17tÝ¢Ê&ö\82þ\9b\96p\81aÓ\89_\95\8e\91*7\8b¹«Î¨D\17U6y\1a\14ë4±\15+7e;Än\10À\15+/U\1c|ò´Î\15+¯ûÈ`wÏ}beóáA\9a\a§X±r·\8fMQ\ 6\93¹°rw\9eÁ\8cN\83ºce\11«\v+7/\eíí\94¼ßÆÊ"3+V^r*(¬¤º\16V\ e)6ÔÙ\10l\aVv\117m]pz\v+w÷\17\ 4a\10\89\95+/å8Åd\14\98\95+«él:4jÓ\93+\9b_\r\12vÈÚ\1d+ïbwÃÊb\80£&\1e:¹bå&\9e\83\9e\1e\1a{aå.¼§\15O\8aóÛXy/\90u¬¼ZeP4£òÙÄÊÞH\83\92Z\14×\1aV®6ÛÂÊVpóÈ\eT½
-+GÿË#aÐ\12S¬,Õ1h\93Eìcå½w¶°r/£]è§yg°r\16Ù Ûæ}·ÂÊY\82Ë^\tå
-+{\80\ e*uQ³{\1fVþf\98Ê\18\98Ø>ç!1Ñ/WP¢\7f\r¾*_âÝû\8a\99\84_\_,\8b\17ç/j\17±-_\94\vµ¾X\160¾ïÉÓ\9f*ë¡î>þP_ôß\84µ,ùû\1fö\87µK×?]\1d\7füù»¯\9fï\7f?¯{ÿôéêxüõæöôÛãÍ\9f\7f\9d\1e¯n\9fnþ=\1dnîï\1f\9eo\9eO\7f¿üÎáöñôôüðx:<ýñðßvååHÝ~<~þåËÕÿ\98²*h\rendstream\rendobj\r5 0 obj\r<</Intent 25 0 R/Name(Layer 1)/Type/OCG/Usage 26 0 R>>\rendobj\r25 0 obj\r[/View/Design]\rendobj\r26 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r35 0 obj\r[34 0 R]\rendobj\r61 0 obj\r<</CreationDate(D:20141124131945+01'00')/Creator(Adobe Illustrator CS6 \(Macintosh\))/ModDate(D:20141124132059+01'00')>>\rendobj\rxref\r0 62\r0000000004 65535 f\r
-0000000016 00000 n\r
-0000000159 00000 n\r
-0000008608 00000 n\r
-0000000000 00000 f\r
-0000178424 00000 n\r
-0000000000 00000 f\r
-0000008659 00000 n\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000178494 00000 n\r
-0000178525 00000 n\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000027313 00000 n\r
-0000178610 00000 n\r
-0000009086 00000 n\r
-0000024959 00000 n\r
-0000027736 00000 n\r
-0000027011 00000 n\r
-0000027500 00000 n\r
-0000027623 00000 n\r
-0000025782 00000 n\r
-0000026073 00000 n\r
-0000026365 00000 n\r
-0000026656 00000 n\r
-0000025024 00000 n\r
-0000025221 00000 n\r
-0000025269 00000 n\r
-0000027250 00000 n\r
-0000027187 00000 n\r
-0000027124 00000 n\r
-0000026948 00000 n\r
-0000027384 00000 n\r
-0000027415 00000 n\r
-0000027810 00000 n\r
-0000028028 00000 n\r
-0000029028 00000 n\r
-0000031011 00000 n\r
-0000096599 00000 n\r
-0000162187 00000 n\r
-0000178635 00000 n\r
-trailer\r<</Size 62/Root 1 0 R/Info 61 0 R/ID[<49A89F9E3DA7430B9D8D1584360C4452><7970F7FF5F9F4A58A0C80CAFAB65DEC7>]>>\rstartxref\r178772\r%%EOF\r
\ No newline at end of file
+++ /dev/null
-%PDF-1.5\r%âãÏÓ\r
-1 0 obj\r<</Metadata 2 0 R/OCProperties<</D<</ON[5 0 R 21 0 R 36 0 R 51 0 R 74 0 R 93 0 R 133 0 R 150 0 R 174 0 R]/Order 175 0 R/RBGroups[]>>/OCGs[5 0 R 21 0 R 36 0 R 51 0 R 74 0 R 93 0 R 133 0 R 150 0 R 174 0 R]>>/Pages 3 0 R/Type/Catalog>>\rendobj\r2 0 obj\r<</Length 8372/Subtype/XML/Type/Metadata>>stream\r
-<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
-<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27 ">
- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <rdf:Description rdf:about=""
- xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
- xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
- xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#">
- <xmpMM:DocumentID>xmp.did:FB7F11740720681183D180399A3120B4</xmpMM:DocumentID>
- <xmpMM:InstanceID>uuid:6eda8949-3d62-5c40-90b7-a6e00662e8d5</xmpMM:InstanceID>
- <xmpMM:OriginalDocumentID>xmp.did:FA7F11740720681183D180399A3120B4</xmpMM:OriginalDocumentID>
- <xmpMM:RenditionClass>proof:pdf</xmpMM:RenditionClass>
- <xmpMM:DerivedFrom rdf:parseType="Resource">
- <stRef:instanceID>xmp.iid:FA7F11740720681183D180399A3120B4</stRef:instanceID>
- <stRef:documentID>xmp.did:FA7F11740720681183D180399A3120B4</stRef:documentID>
- <stRef:originalDocumentID>xmp.did:FA7F11740720681183D180399A3120B4</stRef:originalDocumentID>
- <stRef:renditionClass>proof:pdf</stRef:renditionClass>
- </xmpMM:DerivedFrom>
- <xmpMM:History>
- <rdf:Seq>
- <rdf:li rdf:parseType="Resource">
- <stEvt:action>saved</stEvt:action>
- <stEvt:instanceID>xmp.iid:FA7F11740720681183D180399A3120B4</stEvt:instanceID>
- <stEvt:when>2014-10-05T21:14:38+02:00</stEvt:when>
- <stEvt:softwareAgent>Adobe Illustrator CS6 (Macintosh)</stEvt:softwareAgent>
- <stEvt:changed>/</stEvt:changed>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <stEvt:action>saved</stEvt:action>
- <stEvt:instanceID>xmp.iid:FB7F11740720681183D180399A3120B4</stEvt:instanceID>
- <stEvt:when>2014-10-05T21:24:48+02:00</stEvt:when>
- <stEvt:softwareAgent>Adobe Illustrator CS6 (Macintosh)</stEvt:softwareAgent>
- <stEvt:changed>/</stEvt:changed>
- </rdf:li>
- </rdf:Seq>
- </xmpMM:History>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:dc="http://purl.org/dc/elements/1.1/">
- <dc:format>application/pdf</dc:format>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:xmp="http://ns.adobe.com/xap/1.0/"
- xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/">
- <xmp:CreatorTool>Adobe Illustrator CS6 (Macintosh)</xmp:CreatorTool>
- <xmp:CreateDate>2014-10-05T21:24:48+02:00</xmp:CreateDate>
- <xmp:MetadataDate>2014-11-20T21:53:19+01:00</xmp:MetadataDate>
- <xmp:ModifyDate>2014-11-20T21:53:19+01:00</xmp:ModifyDate>
- <xmp:Thumbnails>
- <rdf:Alt>
- <rdf:li rdf:parseType="Resource">
- <xmpGImg:width>20</xmpGImg:width>
- <xmpGImg:height>256</xmpGImg:height>
- <xmpGImg:format>JPEG</xmpGImg:format>
- <xmpGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAAUAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYqshXjGBxK7k0
Jr1JOKr8VdiqhbX9lcvKlvPHM8JCyqjBipIDCtPEHIxnGXI8mEckZWAbpXyTN2KpXpHljQtIubi5
060S3luqeqy+CjoPAV3+eUYtNDGSYircbDpMeIkwFEppl7kuxVjOg6d58i1ua71zVbW40143WKwt
ouASRnBVgxUPQKKfEzdT9E5GPQM5GPQMmyDB2KqNncPcQCR4XgbkymKQUYcWIrttQ0qMVVsVdirs
VdirsVdirsVdiqG0/UrDUbYXVjOlxblmQSoajkjFWH0EYSCOaonArsVWQwwwxiOGNYo1rREAVRU1
Ow9ziq/FXYqp29usEQjVmYAk8nYs25r1OU4MIxR4QSfebLOczI2qZcwdirsVdirsVdirsVdirsVd
irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdi
rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVQWkSavJZ8tViihuizfu4GLKE/Z3P
f/PbphlXRUbgV2KoWy1K2vGkEPI+maMSCBUMykV+aHIQyCXJrx5RPkism2OxV//Z</xmpGImg:image>
- </rdf:li>
- </rdf:Alt>
- </xmp:Thumbnails>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/"
- xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
- xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/">
- <xmpTPg:NPages>1</xmpTPg:NPages>
- <xmpTPg:HasVisibleTransparency>True</xmpTPg:HasVisibleTransparency>
- <xmpTPg:HasVisibleOverprint>False</xmpTPg:HasVisibleOverprint>
- <xmpTPg:MaxPageSize rdf:parseType="Resource">
- <stDim:w>300.000000</stDim:w>
- <stDim:h>5572.000000</stDim:h>
- <stDim:unit>Pixels</stDim:unit>
- </xmpTPg:MaxPageSize>
- <xmpTPg: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>
- </xmpTPg:PlateNames>
- <xmpTPg:SwatchGroups>
- <rdf:Seq>
- <rdf:li rdf:parseType="Resource">
- <xmpG:groupName>Default Swatch Group</xmpG:groupName>
- <xmpG:groupType>0</xmpG:groupType>
- </rdf:li>
- </rdf:Seq>
- </xmpTPg:SwatchGroups>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/">
- <illustrator:Type>Document</illustrator:Type>
- </rdf:Description>
- </rdf:RDF>
-</x:xmpmeta>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-<?xpacket end="w"?>\rendstream\rendobj\r3 0 obj\r<</Count 1/Kids[7 0 R]/Type/Pages>>\rendobj\r7 0 obj\r<</ArtBox[0.0 2241.62 234.667 5562.74]/BleedBox[0.0 0.0 300.0 5572.0]/Contents 176 0 R/Group 177 0 R/LastModified(D:20141120215318+01'00')/MediaBox[0.0 0.0 300.0 5572.0]/Parent 3 0 R/PieceInfo<</Illustrator 178 0 R>>/Resources<</ExtGState<</GS0 179 0 R/GS1 180 0 R/GS2 181 0 R>>/Properties<</MC0 174 0 R>>/XObject<</Fm0 182 0 R/Fm1 183 0 R/Fm2 184 0 R/Fm3 185 0 R>>>>/Thumb 186 0 R/TrimBox[0.0 0.0 300.0 5572.0]/Type/Page>>\rendobj\r176 0 obj\r<</Filter/FlateDecode/Length 14302>>stream\r
-H\89ÔWË®d·\rÜ÷W\9c\1fè3"%ê±Í\18ö*\b\12/ò\ 1\8dÄ^ÌM`gáßOUQýº \9cu0À\9d.IGâ³H~ùÓ×ãË\1f¿\96ã\ fß}=.ålæ\aÿvü\8d¨Ç¯?]¾üðc9~ú×å\97Ã\8e\82\7fv\98\9d%¢\1f7;×´ãöqáÎÇåª~\íì%\8eo\97k\ 5nÇu\9d-q;W\8bãê|da\81Øq>Nw\ 3¶vÎÚ^\ e\98ãD}Þ\80\8dÕÚó\85uÎ9ñøý*+g± øóåï\97?_ ó9¸\ fM>i0ìhQ\165X\9fU\18\9fT\88\14`ÜUè\9fT°\82ßU¨\9fUðç\rRÁßU\18\ f\15ì³
-¿@²\88áG-å¸êׯ\7f»üõøÇ\7f÷×SËqƲzx+\10 û\8b\92ãì&\95fPÀzz\9axù\1dR¼~ÎR\81çÙVâ±(¯ÕÓ
-\16\1c\96©<\80\rKØh ;Ý^·±\90\16Ë\ 5\18Ô\16¡\9f\1eþ\84vÖîÇ\8d\ 6wØåjë4\98\810\85\19ë\ eÚÙëÚG¥Æèé©Ñfb=SJ}AA\19\12áK\19'±=Mý°\9dw8\vZ{\9d\85f\19/\11\92Ö£ñF¾JëÑx/PÆãÅ×´\9e\8c\97Æ õà\95\87ud=A\ 5\v\8cgÏÝ4Ý\86´T\1cÛn\eÐjÈ@:\rÖ\97Í\86öæ±m¶\ 1m6t\90\90z\87|=Ú\10â\8d4Øýw<Öo\974\16ÑÃT\8cQÆÞðø\8fìÂS¾\16\ 4m~ÎÕã5»ÎÖ\98\8e0S\9f\90÷l÷\9fP@\8a\10Â`qflôÅ@\1ec&PrÔ¾ÏMà\ 1C+O±Ó{â4$c¤ÖsfÈ.ð\107\83\87ÇY|\12\8ev\87\83W·êyºÃÜÄ\8d>¤\91)5ì£mj}\i\81\17\9eá¿w3thD×ú\98gïV\88É\f\11Ó|\13çLd/9¤\99¢\ 66¬N\16\9a´åVÏûÌ\95j\198Õû^¨/\v\8c\96ù8\81K\1c×\96Ç\ 2îp\840\8c-\88¤r\ 6¯'ÄjõÓ¦L|_hç¨J¾(\84È\8d:Å_ðÄ\1dÞÀce&l²9¬[ý±/3Ò³¹@¦@´V^\ 4'ù\83XÈ$`PKâ\f©³\16ó\eVjsí\85)Þ¡T8]JßÐÒ\1ec¦\9fjÝ6´Hf\96¾X\88ð¼qòFؽ®L·\98=\1dÓäÛ\92$\ 2\ 1A1\1fº²tÑQ^Ùö\9bHâ²6Æ÷\1d\9f-2U\86\aRd\19E\16M\9bÐf\9eXF{\18õ~\0²0\0î\v׶]RÏÊ\ fÛÓe\83>à\ 2\8d\ e\97ZÛû]\ 2\99½À\8c\90<î[\9f|.ÎÒÇ^hüà®n¢±Ú\ 3ÞvPÞ\8fÓeoöúö¿\98¢²v\ 5)-\16ø\vÇ\1e9ÒŧåT:$\18gó¦7¨3\90©Ü\f\98ü%µñ4r\8d°÷O\99Ï\c\8a!\8b7Æ\7fÔ\eâ·\17Ô@w\8c\7fb°/Â\90\8cN\10\874n\89ê1ϲæý$\95,\8a+\84d\87p\80\99 ~Vë
-3\16þßá\f¸µ\a2T\9c\ 1G´\17Ò iMmÂ5\²¼ôH2*I\13\88\17ØLìTï¼\113Ëìî_
-C\ 6¡Ù[\16,U{(\195\ 3\ e\95o/\88ýH»\82&TÊ\90\94m\97{õKC\9d\9bBÈ[\9e\98ù"ª\0\99Ámó\1d\\87ÒÅ\90¦ç2 6¯´\91\89Û{Ý\alwLj©pCU\vUÕKé\8dì±\96(:\17\1e~n{!^\17\909}Þ\17è\15\84æã\vÜ \8b2@"Í@®
-!\86¿w6\ f\89L)O\8e\9avw\0ïbg\95è\ 6Go·]=ÙC»þd\a5NùiÍZXP/ó7\9e\eLR"&/\ 2\1dò\11I\8f¢¢ò\80©V\9eÖ\ 2ʵí\96ÚÚØ\v\8d\1fX{El\9eîð\96\86¼\9f\1eé\1c\98\87\84c\ f\7fûþBþn; \16\8aiÂ%éZÛÑDÙ\89Ãî\ 1û4ÁÓ<ß\1eÍ®f\ eãÌñåû\8fr|÷Ï×ußë\96ë¿C.hzÑ\84\84G\907æ3\93\9c\ 1Ú\95>ü\89y\85]Ö86\80H,S\8f-ÒÉM'á|¸>Ô8uò\80+\8dj6 !÷\+\8a½TwR©«Ï\9d:Qò·Ú¼W\ 6øË\ f\97$ùß\8eÿ\17ñ\8b\9eÿùò£\À±\ 1þ%\v\7fr\ 1\94¨p7Ƭ\89[\9a¿Ó\19r\81\8c©tI²ß\0D\ 3\10lW¯LýÅU\9fleN«Ê6\9b¡l\ 1ý\12Å\1e\a\14éÈ\8cd<\1fÚ\8d\1c#( ÑÒYpr¾Ö\³\98Uí¢á\97ðl\94c¨\91_Xú`§\T)V°\13\876\ 2 kV\98\95Ý6M\r»\r\15\186\7fè\ 1Á1h8XtX²\ 6ÁÒô\ 2fbuA¥\86ýp\ 2R\1a³Í\0\16\92\ 2\ag\90\0\0õ\19+Ú\12\ 3\12\föçF\99\0VU\ 3fûBc·n³\1ej±x\90³)@D×\85\1dù\ 2Øq1
-MÕÞ\0\93BDÈÆ\1d[Ò¥åA&±£uQ\1d\\8c$\95\ 3ÄÓ\94\9b\¬Á::ØÊ[¨ÿ\9dêë_ÌH\19\aú\9bP³ÿA\14DÁ¹c,þ\1cKs\a\1c\88&JêCx¸¬Ã\8d\14¶/îÌE\93\150Þ8M¤<ÕºA\80E#\19H\b²qÐy¾wc%¶%Òf\1c\7f¨Ãä \0Õ \ 2\97ÑC°\84F\12å\10
-\r\1cø!Å]~æ']\87dY|\92Ü\1c³åÙ\10d\f\10àu Ñ\13A9\12o\8b<ª¨à \82ß¾^\ e\1a'G º\ f\1ac Øô"\99ÏrBB\1a/\974½Ó\1dÄCO6I¼\8b\8aÜòf\ 2µ.ÆÉ\91õ]&\19È\81õÐ\88Ý\95?\f\84A\90zq¬³ü\96¥\9eF\by\7få;½ÉýlÃQ}\8aÉ|pàÌÝ\8c\876¥\f;r :Ôh¼\97íµÌÁ\12Æ@êBjÀÞäÅÙ\9c\87x\13®ÿ ^¡\9b\eÚ\1ccðTíÂ0\8cë*£±\87S±ëÝS
-¥\80$æMJÅ\91ÎhuäYæ\1f]\8c\10÷¤/i3\89lû´Ô<Ë\81\89\95wè&\99§eÖME¤\85¢Wò\e\1a\b\8e .íØÏ\11¥½9\89\ 1yÊ\80]Ï\9bD\ ffztÑCof@BÂ>K\rÉ\ì=\80Ã\12#¶\89Øé\ 2Áɾ\ 3\14eTÑ\ 3¬¸-"6 A&\ 1E¶)J/B,\13y6\bÙ\ 5\ 1T¤'Ç*\17²\8c$NS7Î\7fkdäB Y\94G\ 5ÿq6äYÓ\9c\94gIzjRymQ\90£ñxWL\95m!À@\efu\dZ~\16
-'Ð,\1d\86 \bi4t-¾ê\92mè9\82öúÛ\8f¹Ï4²\fÞÖyq%\94\17È\9d][«f\ 1\ e)hýÃDfP\8a\99 Qé\9a\9bºVº
-5\87{\95a\80Èé:IG/Õ\93\eç\aÃ\87\88\e$\12\v1_®[¥\87²8\a\11\10£\18Ë\>\9e*\8bM<\rÀ\a\0p\13@\9b:¨¸ç\1eDÇÅ\88Z~UH\91TÂa\ 5°Q Îô@ND\80`U\80:D«4\bB\13¯@\1eE&`k¼1h\ 3Ì\ 6\8d\97\18Äz\93\91#ãP\8c\ÙuW6\ 2JhUøÐ ¹vIoÙß\97ÂAÊ¥/·\aâ\fا\ e³\9e\ 1i\82éR\98ã\8eF[véjLªÚá¦6\80M³©[f\93_44Ü45ÍÉo\83s\a)\92íÈP_\8bJÇò\8e*\99#/0Ë º\94\96»ä\81SÓ\b\92\82éªq&\8f²sÛ½\ 5\13È\b¢ª\1f^\9d·Ú
-\1de硪\8a\ 2tE\9d&ÓÃ\8f\9aG¨2Ò¤\92Z\0ÙQ¸ú&\92\85~\ fþ¦Å ¹ë\188³
-ò¾®ÚÈ)T\13\ríÏ*´\ f\1a\83\fíÕä^! \89o\ 1\9c\12\85B\ 6SÝ`Ës\ 6¢ä\1a\9aä íÐ\98²(lMMjr6>[lº¤Ôà701)\18ñeÙ\7fÉT\8bÃ\88\8b\94\b\ \8d½£ûÖ¤",³x×\86\14A\1aQ\91 äÝF
-È\92Ç\160xp±/\e:f¨\0pÿ\yÌ\95 \9aî\9a²ª©;P\87ÈßÕóÝ@Tá\0gDÖuÞQ§f4&\an\bÅNS\8a´\1cYCö\81y\9a¤]Ì\82Öû6´1\93\8a\1cb\83Ç\98\8e\12\90\89\94\8ecùeÛ\88}úº³Ûé`S\ 4\ 5I°ï\12ye\89!iIݬMC>%\0Ie"ßC+v\83\89ͥ氹N:îÀÅÿ¦º\r$É\8d º¯Sä\ 5²Áÿç\ 4\ 2\ 6ÐBÒ\11\ 4H\80 -f6sý±g\16YÓB£\váI\ 6\83tº\9b?¯-\9f®\rY»Ë\9b§Àé-\9a½æ«\ 1XOî\ e\96?.ÄBçüzý\fr\9f\1f¹ºêÄä\10ËCòäq\98\80Û\93\97¦)Sæ,\b(HðYo*éÀýÃÀ¶hÃû\ 5¤£>\ 3ûà\18\80£æ\922¤eý´\ 2Ãe*WV]LnqïéHÖÚ®vo\18Ðeªmw\18½\99\99\1c \9aTW\180).À°æÆ\83ô\ræ¥ï\1a.ùg¥o©ÅmÀ)´\b0¤0¡ë\13+"Y\1f\0\90\7f*Ö\98Ù\7fõÄ;]G\9dZb~#.u5\80_\82u´næ\9d\e\1eu§q\9aQ\81(\8d=Laãz.u©Î\90íq\92j®¢ò\18!f1Æ\15¤)\8d ª
-\89HÅï
-\82\8ce.TQ\ 5:JýôAæ'¿î\fwGa\941\9f\ 4õ«s\ 2\96ò£\95º!ïî%H\aYS O§\1aG°\17p¨\ 5\vp\85\8e³u\8d¸1fµmÜhlfxÃ&\93]<wÔN\85\85ãì\b×ÛÃnÆ\13YØ×·w(Y\1d\86À\98.Ôl\13+`5t\9e°\1dz»>[XËEq^\9f¤l\1cÛ®á\ 1ÿ¶W/¡\189T\81ѵ÷´\89Õ'ëQI\88Z\a\96å&\83\8e\11ãîÀ÷òTD¾z*\82G\88¦ÁÒiyq¸M\85Þ³ìòG§rR\16\ 5\ 3øÖÞÙÂòÜîæ\88¹µæÂ<u8T8_'\12\1fH%
-t\96³}\85´\9a²Æ²\8b\b\ 3Yä ¾5!2zìë\13/Üfç^\1dPëöîuÊy¶{z\ fðN\8eÖjÿܾ¬\9eÀèVÀÞ\13ÿÓ1(k\ 5²Ëô\9b;-ܶH{]³2õ\95=¤má\9aØïÓ\ 3î\9dKÛÅ}\12\10¬\vÞ#]Ó4\1dõ4Tæüöd\97V\17cÝT>Z±Åª;½_±\fóÍ\19øí>wm\ f\1aÛ \99ù¹^¨\84/*Æ9åöÌ.Nì
-îáUf³\ fääêQúÎ>\92j8êÕu7ÝË\14\13µì\9dö¯(\ 4:°dn¿¼¸âv¤×[PÜu\9fk)Y°BÜ[*!\8b\ 5\81X\17,lÒ¾Xú±\8aGÁ\1c{¡#yØ\99Îw.\{$\f2ö\85yçõ\ efgdÜgb©(}Ó\8dkç-|MÐ\92ÞÔ\91å\9a%s)>\8fKB'G)`p'ç\1f¦ÿ¾rü±\ 1þ£\88\92qt+Ò°Í\97ék\84R{<[¬\98ð2\86®\89\1c¯vÙ@½ë¼\8f\8f*\95ºÊå]µëÚ`ué 60\8d\1f\9aH#90\95#\9d³§Úo\8ckò&×ÿù5\8a\vªL\15å\81Z@\ f[\1e\90Aúʨ\å\80$\19\9bª\15\18ë\18ú/\13ý²²õfÅ¡ú)qSÐôëîC)°¼áN^\v\96s\16nÖܪçFקPò\ 5.I\8f\8cÇ7\ 3Ïê\83\8e rá-J\14Áµy^Ï¥\f~t\8c\13ÀÍ\ 6u\90\8cÆpãÔ\89Åë!kÓ¹TÊJ\18U·-Ý%9Êä¡kÕ:ƼÈ\12ù×\9dÀ\9eV\ eh{\8fE\89\92+\ f;5×ÀØ+ >Él}o3Dpwk\16F\ e¸O&öº}ÞÆXs%\87\\10v¿UÇ3\11\8eoé 5ÑÆ\91üµÀ\8a´ä~\1a¶j\80\95ÈKZ\16é\9av\ri¥é0¾ÐEê\f\82\88.IQ ¢Üɺº¦Ö¬^\82\ fZ\18×¹\13\18¡yiÁg,\e;Cã\9c§$ºkù±\/×öÌÝbUO=iè¢Ú\10ü2*h\1fBÝÙ\ÃW7ëV×\r\1a-\1a\15\89xs½o°¥rqÛ¢\ 2\ 2É\8eH
-¥n\ 2»º
-PVÀp
-\9c*4IVZ-Ôû\1aÒ\aº
-\83{t\e¹\1aËÌ\ f\95È'´,Ó<\8ftOohFñzz\87åë\87 aU\85l³6ÑÞ1ª»¸æ<^4\9a©âV\1få:ûú\8dC\1a@Ua\11\1eB¸\8a<\ 1T·ó\1c´\10Ü\0\98ç|\87\14\1d¢Íù\8cɽ\12\8fo\82\96|Û^ L\88È\99i\aøOç\82\17\96IØ\9e\1f}z\7f5^¨½[\ e\9aï\b\9d\89+µ/OìV\Ú\98\85\1cx³2B¦>ÔØÖÝt§ÉHj¨û6J\8c\9c¸½¥^]ùÜu½\89kÎáV¯\88\17º\13\ 1'ù^¨©ñÙÜ^"\9fjô¬Í/-w\8d\ 4¨_3.é¯\9b¦ßDÕöË4KȪ\8eßÉÈL+1'y3s\ 1Ó!Y>q¾u©Å\90÷n\8e\15Þò1nÖ£\9c¾sR8Àm`\91\92\92zÝV¤\14\9e¿Ù±²î\r²ú0¤W1»¿i\1d{¦.Ý\e7Ö¼\10Eõ\89xn\98Ð\ 4`\9f\86¢\9c\95\10KCÑ\1d\8c%\19Þ\92fc¦¥A\98Õ¥uBÏmÃûºü¼©Ôøì<Õî\r=l·{\85\b\ 1nØ\v=$>#}°À~fw7t4\87Ï0Å\90Î\91z\86M1Àî\16î7pWóËöúT×Å\ 2t\14\f\1fÅÓ\9bV²?ó\8ft\8f\1fü\81a<c»kØ\×£§Ögú(þÁ\99
-ksí¢/Τí\1c\1cC»{\9eíó5\15®æQ`T\16\17ÄI¹/Ys<s+\19¨\1fFÖ²\9fdö\9c´Jî0ÛyüHÙ~¯ä\13~\9c6#²ô\85\e\93Î%Ó}\ f+î6C.Ì\15\vÄÇ\9aÏäÆMÂæÇwHL¼WbòiþÞ0\85\ 3\90Þ°9Û/z\80ë§Ãã°#tìXº¶Á\88ÈXÖ@;~\7f\14\11faÍå\0=\89¬å~Ðv¾HµùÓº\91s\97º÷6¢\11¢Ó÷9\1d¡7;\ 2×QO\97Omá4OíDZ1\9a·àI
-ÌêHGi4W\0Õ¼\85;|]·g\v¹Ø\11\19\9e9Z \84:\11_C[ÊáY¿Ï f<^\98©wûqé#oOX{\ fZç¹\90n\1e!«wb§DÌÎyB¥ÙÜç\13v\8d\8bKS\91·[\840±±]!î\13ÓÚà£5^M[¼-
-\1aÓoiÒmÏôBèp¬\ 4\1eê%\130wz\97Èñül}eÜÜ@\11>ÖÐE\84©Å;\91ÔñL_fN~pú®¸½\19\7fÞ5\10o\95ôì\9dtÔ°k\99h1;Áµ"\83\13³ígòmÖåãdÕ\8dDÁ)\9b\98=\92¹7Ê𯯿I\84Ñèüÿíß_¿¾ê«è_}\rj½N?k!?©´ÿûbH\7fuuÃ\8aM!(~\1c~t1(;:\ä{%\86\8e¡ç\8bįÉÜ1\9eª@ \1e\15\17H=ks\8cðÚly^)<\8dâAû¢ß\16soÞóÜk¿\16Ë[,ý¼q\87Çûð_3\90¶\ 2öÉ¥\ 4¤hÆ ¥\1aØù¹y\8a\ 2¯\9a>Ã\8aÅ5»\19°\8b5\8aâÚ:k\97J=u¶k¨\83\9e`05ÊE\9dHë.h\87¢Þ=\ 4ú\ 1F6n3Hþè®l7µºdè`8TÑ\9f,çJ\85~²!ãLqMϽ×Ï´ph-\0oK=ÖM¾\ 2Mf L¬Ç\18T\rÊp&n\ 1+\1c\852v\8e[\96_#Ý«},ã\ 2¤Ê\91ï\ 2\8fó\1a\8b \ 1¾%/\88\96q\19\81\84\99â\7f{à8×9½zß\ 4ÐͧÚ}n5Vã"Î
-Ï\ræ\9dQCm¡\8e¹¿Mj¥½~·£s\e\ 5v?OdÚ\9c«}.Í\80±\1dùI\8b?ó@Ö¥<)\ f\ 6¥ï§<x\aZôîöJL\ 3jòlHª\ f\93<æt[\91\97ÌL\ 4\909ËA\809qÕ®\99hf: \86:ºãzfb\13¤pm^Ä\97\ 26'\auMVÉ`SÚ¹Ð\96îÂ\89FÄ\9f\9e\8b fUË,Îf\ 4nLÁûô9ÕÈ\88Õ\19é\19áKJ\7f:\1a÷"úÄñëÝ˳Լ\9fÅë§cùá\8d\97ãßM\9cëú\99\95\8aëms+\80`@ÌT\b{\ 3\12^Ëþ¥'s\9c»þºåÕÇJÄn'ÜnÒë9eñ"§âÅ\914\9c\8e\94$^\14\94ôöúÝcfR*ëú)6XóÚ\8bÚðëï\7fQ4üþ\1a¯¿Êø\8fþÿòú9z$¹g:zôíC\8a|«¨þþ÷ë\1fZ°~+\15ÕéÿU\18É\10'N\1d\9e21~Vái=<ö9Â\ eÈGXЯóô<ÓWz.
-¶¦G\16z±é\10õw§\85Zí¹Gáß%$¡¾a\ 5ÆÝ\ 6\ 5%Àì\81êó°¬ \81¤F2ÓT¨
-X,+t"ièÐ\ e%¹\0ªÕh\87æྫྷþZ\8e\ f\9eµ¥e\9dCT<«»\02¾T>Òû):\ 5oî\91\9aû \15»æ:{tbáìHÓ¥{\15ýL\13\8d¥ç\860´å\95\164\18\ 5´T\14Ã\14µ¬>\95Èj`N¡ñ\8dL\ 2¨\97©Ó,jÏÔ\948x¨ÓÉ®c2\1d:ëu%\90ÑÜ\r\9et$Ëj,ð\ 2\11ä\14}üè#ÞÉ2Á$>¬7ñá\1ft\97Ir\1d9\12\ 5÷u
-]\802ÌÃ\9dª·}þ\ e÷À'«ÍT\e)\83\89\8f\ 4bxCú\18\12\1aÿ\8etCgY<\8c\e÷v\84÷óX51)Ác9. H\1a¨\1c\80j1\11\9cÿìî\7f\13\ 4!\17ç°\95Aô\18µïV¬\1f\85\83ºÇ\96)Ìè\88%\7f\90Ý\9b\97ïUѽÈ\9fzï\ 4,Ç\1cµTº¡ZéGôÛJ\ f\14¹CÉ?£U\ 2ï\90c\92]M©\81²TåT}F\ 5MÓ/Uë\vZ±q=\9eà\8et;\81÷;\rT¨¨Mÿ«\88å ô:\ 4\8f&.ÌÌ\98úÑY\12}Fþ·\9f\8dl\1f[*\\8c\ 5éÌUÿ\154þ/±S³12±»Òò?\89\1d²Ù¨°ó\99ìÐ\9cQÌK\91Þ\1dËaÁ"\91a2xì\81\19Ñ´eIBÃ\8bo>-un½'lZ\9d´¡\84ÉÁ-1C=\1a\fÝ°b8\87m\152=\9ar=¸\bKHp\1d|@)\9ec\96b¾6\9f\r\9csÑ\1eþä\8a\15\87U»ð|/£»äÆhªM\9bÜA\93ãUÂIÆ=§\83\14.Ó\16\8fi\89\8e?ÑLü\8d.;\81~ë\15ðF¥\97\0\0\1d^\v·ô\82WÚbÖøu*\895`
-ÉUtÙqÎò\1cç·£\17\97ê¼\98AFQóÍF½LAÓç\9bÚiÅA\ 3[
-¼4\13\13Ú!\18³}\ 2Ö\ 1Y/ü\eÎZãgi9àÅ\96K¡Ãx¶ÿRÂ_!=Ú"°#\ f\1a-!V\1c\816êÙ¼B*\85[½\82Z{xËÓR\e5/'É \ 3\8e¥\ 2\ 1HåjO²×mx\12"®Ï\ 6§,\7f?²ßGàîIn\88 \91\85s\92(¬\0Üï\86\8bt\9dª:N$~\842\1aëö¾¹®\8f\1cÕé\E\87\93\9f¥´ê<§Z\8du\9blÝë\80m?åÍ·¹:%9\9cC³\81"_½ÏP"JL|ßé\ 4 \vab<5Äo\9aE\19þ¦\8e\94ðµø\8eNojTÀÿL U$\9bOL\9fþ¾µ\90-ÛSôF\80ØgÇÓ\13±Wþn\83\97\9dû\ 6Wv&/
-\ 6\90\w\r\1a*è&[!©Çç\80·å¤eóAâ\ 1µmæ\99*St« ÛÙùó\97ÈÓ\8cl\99Zè{ª \bZRÏ[H6\0\v7\1föF±6ã<0]î1¨D\1d+KÅØÑ\12ÛÓÅ"[\1c¡{äÕãà\ 4êÒSÕ\19 J\1d\8cs¹\8c.ör\99Å\80\84è\1a¨z¤¬\88ü\ 5°ÄW!l\9f\v G¥\86f×k*\e\8fÀ\ 2óõÀtvÏ\ 2Î\93Ǫ\90\85du\1eÈ\9f\84 \1dÉÖæ]\13\18\89¾)\15*Ã\88·B\vô®ûéÉÿW\ 5¶ó\1dõiÞ\86ÂêéêydÅ´\ 1\ 2\87wGßÕ\ 3h À©E\9c¹\ eI\18§\1dîqu£7\86>Ö5\11ç
-\0ÑK\93f\e\92èÝ\19Ä2Z\89CÜôeý·
-ðÆ¿<»\ 1
-}Xó¦\98\8beÃTE\18%\8d /2Æ\0G\80&'¸¹\90\f\11\ eÞ\ 1]qXúpHTq\91Ü1¹\9f¹\89\1d\ 3rõ-«¹ýÕ\17äôð\ 1\ 6á·û)Z\ 3ô*\9c«À\1d祥h\98îÊ\ 6M¬\9a\14q¦Ö\992Y\bï-\e¯\80\96åÌã\ 6²s\wsÄfS\9cvϵÓA\8c\9d&®¦£lO<Á\a\80áM\rUW\82Õù³qDNGÍ\83ÖéèùOé\1f\9fÞsí\1f¯Ú;\ 1ÌçT¾\11¦ÒHK\ 3Ò~%&òù®Ý{¾±ªý\8aH;ìÌcç\96IÙgÏí\98\90neÚ\83\95²©\15\ e6Xo%_µ±\9c)ÊÖ®0²i¿é\J\16ñ\93\86Lß\0` >8!¯Å¥yþÐS2l_¢j\81x\96Ò¢/þ>ä\89®éÚÑÝ\8czej\114Ó,-g^\90;(\97\12-\13ýÛ\98g\fE·ÀçùÔ®\9a\ f,*¢¤Z¼_T\fÒ"þ¾?>fÀ\8e\9b{b\94öC\8b]\11\18ͬFÓL¾2\95+hì-\ e\80/\9cýVÁ\86gþL\91åkö\19\1d\0L\8b³|\ 6Ñã^KVöº)JH\87øW`Ç2HÞPWL¿x\ 6÷Q¹\1csþAÒìùµRÁlÕÑ\ 3åÉûÚ\13\88I\1a°\10\9bÄLïß*\82ûtà\9d\8a$Ö#D\12üb§\9aj\9dÃ\9dÇ!4\12b\a¢\9dKD\97,\ 2ç\15\14ÇÄ_϶»|TR¨©\19\19Öª\bI\8d>òG}%·ø\9dUsÄ·ùYbâ\9dU\9f'\14ì\812L#\ 5À\95i\9f¶D;F\9b\ 4\12T\85æ|\10y¿Cñ\8e^G\f\82v*ÒÓ\1e\ 2\r9e\1c1hI6´\12Pe¯í\ 4¿øNà]\84àW\1chú<yîRúR9D¸/ë\98óº\1en¯è´\bÆa0k\91>\96h_MlÝê+pg\11,e\7fï\1e\11Å\vþ)\0`´Ä\11¤\ 6}{\12¶nî¹õ\vè\1f¬(?Ûq¿\b¨u\10\98\14\17\87¼è\e\1dc}\1a\ 1\83\18ÏS|^ ½ó\83Ä@¯\97®Z\ e²QØo´o¦ájmêÕ6󺺴¸\ 5\93²?u.ûWf6\ 2\ 4ÕÀþÕ*Q\ f-\9aë\90æÃ]áÙ\9euNQ¢\8c¯êqÂTò5EÉEå\94\14Û}úå×ü\b\ 4ì¬n\81\17c¦Ø¥½ÎÜßÍ?ß\80A}±ê2r½ó\91¡"Ùê\8béߢ\86>cr\ 2;\8aÞªu1`ø7Ò\14Ï\97¯ìÅ_`÷©)\14)
-QÕ²tú\12»\15?K $#D\11\82vp|\1c\ 2fâVz¯¡û+ ph¯Øê4ó¸Lóò\17¬Ý=\85RÛä¹iðÎ@§2axº*È\ e!õøÅJ_OV.*\8a\15\9b\ 2\92\0î¶m±&Ì,+e\8f©Ç9j$<¦Ð¿m¾fûoºò2êêy\1dÍHQ`¯)áûN\ 50õ¯ª
-»°X+\1c\91½\86\ezÞ\91\98£ób>\9aÆ)©uÏ«\88\93ö[öb À \wKNA£4°z'\8a\12Áº\99\8cFØ\9dÛ&PEp\93)#Á\11¬÷i¦æ«Ë!q\9b\18ª¯.\99"\ eÙpߤä\e\97#\94ýïð\9d²à¶ü°\15-*tÂ\86÷ù\1cj\12lî\15ÁH\8fTâ~_P~z©é\8e-\12\8d¬8Þzµ'\e¶\ 2çe {HJ\9a"bG³"~ú³h{¦jj\8a\95\93âç$â\9cåîk¯ô\875\17\95î\7f¨©b\93ÿI'5´6R¿\&\ 1-ø£\93ºÕìWqSÇÓGÕ~ã6Î}\f\80½@nSÔc&¢EN\17å^ó\ 1ø¯-ϤUn¥Ë窯äöúÑ"lú\9cæ\8dJWg¬ÒºðHÎ\8dÕw\90\11\94\85\99\1e(éñ\16q\15º\1dÍT\86\9a\7f \ 18{\88¡\9d3ßÏ}ÎcÙ2qÄ\8eÞ¸\95+´\95~,Í\ 5\12\1aÝ ØÆ\15¶µ\8aç\95ò\0\8dÃ\1c¡\1e2é\1c\11(T3\97¤Ãâ×¢.m ¼-«?c\88ÄdK¹ûÃèSSE»\14¨f)äCFSª\ eé&rpòm4U\90@Kj\82½`îysözRÄ\©y·Ü½\16\87Õ.A¸\ 4Mq\ 1ñ^KÍp/©X,(³Ó\16M¸®!]ì\ f\v\15ë/&\ e(mM4(bx4B\84åÚ.¾CCÒO\95àJ»\97áh!\8d\17\1dÕ\82\92"hлÕlx\86oú\8cèzà\83K0Å\83ð¼ª\87pY\80n&\ f\ 4nH\ e\93×£%Xy2\95\92|lÙs¤IO«ér¢k9ÂÕp\ 4\96¨wãÚ¥\v-hºr£\88®ü\9d»Ü¬å°Rì\13é $]@\81\88ÐYU\9c\98º"\8a[ü-L\80\85MD\ 4î¡Ù&P$\8b@®Uð\9cRré\ 6¸¯ ÚãÊT9WÛ\aÂ,´8\8a\86\85\15 Z»ÀT[\124uþª\bÄÄåÒ\15»{\7fL\1cÔ\8bÑ\ 3|¦¬ZÁ\80Ú\19V\9a\v,}Ã:\9bì \86h¼\99°âÔRõSåK\ 6\8d\9fC{ \9c\ 5\96\9b×/¶\9eè0g\16Èpug\v³p\fß\8cÇ\87¨\8e¯t©MXàØ\80CO\83Y³\17c]²\90Æ÷\84®õ®tÚn\89¯É\89ó\8eO\886K\80\96YF"ð\87u°G¼[Þy×L\10\134²ýÀ\95t\8cÃ\93`\1c¹áy\97\99\7f\ 4éh»Qõ²Q0ä÷\ fDC{¹[bHq\808\ 2C\87±\84\94fá}W»¢ßù\vï±UÒP\9e\89ÖNÎf¨VÂFk×\17oY«Îó1':pe}
-\ 5G´·\9f"¡\8f7xõWJå¼á×V¿ÇÌÄ¥ÿc\88\8bCõó¬b[×`-½®#\17aª¹è\9fx®\87\1fÍêºÂ²®ü&\9a\0y\v\141\98/øï__K\9f\ 4øÇU\17µ¦\81/Ï\89þ}Y¥i \832`æ) ¥@ÿ\1a\ eX4·*â\7fl\979Ú\1e7\ e\84ó9\85/ ?\ÀíD\93(òý\83©·ª5RàÀÖ\87¿»I\10\ 4jQ\98Îï\j\99´ËZ\8e'\vùVÇ/
-k\e®f| ²¡@\1a\84Ù?ø\98Z\10\13£\7f\99\86
-JLs!ÿ'°Ê{ymt\8cÑ\88 \ 1põMТ\15\8bÏýG§)\8cÂáÞÁ}wü»ç\v¬\1e\90Ñ \7f:´Þüõª\95éX\ e0\bÓ\1cèï@t\85¿ I\98Æ\15uûJ\ 5\1e%B\18þ\9eçG\90@æD\ 1?WÏ[µ-\14¶W\18\8cî\r\965Ïôµ°gðÌþiÅOß\1aJ\86í]¸\ 4²\81ÿ\9bµ\8b}\96\16\80÷϶fÝ\ 1\ 3O÷p~ͦïâÝĺ4õ\ e7\bÜ\88f\a\82ú×ÙÓ\8a<Ásf\82±ãÑy\16ÿ\94\0ر¥éÝÕ\eñ\13[Mk\r\88\93Ún\ 4æK5}ÙX#\10²Â%}ÙÎõ\10Ë°\fò\13`\98üjG \17µhRöè^äÃßÛÔ4>\ 1¯*(Z'X0-\9d\ 3\94í8\9aý\e÷~Íps\ 4\v\9e\97\99y\17¹O´¿ë¨\95w?¹û\1cU\84É\8e\b¯÷¡Ã\eþ\16]@\ 1º\9f\9e?~\ 3\ 5i\86/\16vüü3Þn¢\9av\ 1ëe\9d\9b`|]ÿr´Ðkß©©\9btEÑO\17\ 4&\!ý\\ f£Ä]D(Yv£ ¿Ô×ÇÇ=\84Ø3FÆÀg\¿çÃùw½Ùu#c% B½hPÏÍM\ 2#pCï3u¹!wüî\8fÈÁ\fiÿ½\92r~\8eN\86ûf\9dÝ?\88øÞ]A\ f\ 4\1dQjØÊQYîÑ7ãF>Ä0eó\19\8d3îçÙÖ\ae!É\97\8e[9þÜ¿ÚÏÄ1\93Âê!õñR\1csÓtZ£à\85Ù>ô)+ÇÝVp\ 4!Ñ]Ñw<\9eý|ðø\19;\1fÉ\13ýFZ\ fH\19ûË\91FàÂýìÚ5º\ e\ 2iû\ 3XÜ\0¾\vÔk,\12Í2áá\0co\1aJ¶b\ fG\e¶è¢RÄêÛ¼*d7\9a\10ê\90\15%¹]Á\8aXØö õk\ e¶a´\9cÈÇm\82\88\8f\ 4/¶fÚ\84ü¸Z\11Ê¡Úò\1aÛ¼ÇíýÉ£ÿâî0½\12\ ez\vhøC9 öày\90\ e\ 5Ô<â`\9b!!ÂaZ×-«\81\19×7LêsXÓ\1f¿õ¬È\19÷îÚ\81MÜ\16íZf~ iwò_\90Æ\9dP5/é°j×£¶\1cÆCM\9fDõp\15ô§\8b(\ 1\f7?ßö;\18[\95`À¤O÷&iº¼R¡Y\9fo`{\80:â\86\15\ 1\89ÞmnPÌ\9a\ 1\8cX°\10Ubóe\93ÁÓMt\8f¿gô\89ÌLRæ·,É!\8e
-\99\89ôåñÖ\92ÙÖxò\ 6ÝB{¨\7fy&<¿Æ,\ 5\8b¤\8dì² ï\92öÐeË$`60S\1dW°\17*¾Ý\173\bËk½Â`â*ôÞÈ¢\87åìÄTÕ\8b5\85à\96Ð\10c»LB¡\95î:cX`°W\9e\88câô\14q¹©K\14\ 4Î\8a\81\1aQ´\fSó\84îðÍ~\96|¸´¿M\8d \9a^zf\80¾rõ7Ö¡úúÍ÷\bmíº\f1\90L¶\A\9cúD8hßmý¾à\86¾¦\ 1\15µ\84Õ0¬Ìq\9c¼×[éß}?4wëFr?7ó\89Úß\1fN÷@Sk/\16ð?5\87ÿ¦Ç\vÅ¥9Ð\¡èê÷X\81ñ±"\95r&³è\9cÐ{Æa\ 6îc2µÈó3&97\ 5¬\19\9b*znZf\b'F(½\bL.ÓRѳs\ 2¾\9dé\996g +ªzh"ó³âê\9e\8a·\83ñÃ\93±]6àÚÕÛ\86\bgÅ3\9b*øC`ã\14ÚóKm;\89qPν÷\b\ 2~\87à¿q\1c=°;¼)×WLÀr\1aV×ÇÉ\9díp\ 2[ºîéÀ\9d\vé.3\14U\ 1\f\90×#BÑ;¹iúÌ\11âÈ@e\8ewïçB¡\15sÌp\a\ 1Æ_\ 3\9ct¥Im\8ePtÏe®´ïþ$Ñ\1a~©Çà!\19\15\88O~÷\8aþúׯÿþùï\9f\ 3CéØJ\1fI{\7f·\8e\9bÆÞ3çX\1clx4A\8dáÛ¦B£\f|\e0\98Óä\ 4bé\90.\99GN(ô°.WÅ=Ú\12PÙ\8dr\93moî\ 1Êxt\9d \-¯iäÛo\e¨\8f¡Í×\f\98\ 5÷Ö \90\ eþiBç\8eRó\92\81H¥\ 3(*6\9e\1dc*=¬h\1do^Ã\bY¾¥N~Â\8c\1e~î(¨±\ 3Mós\9dãX!(>\9a^EÛ\ fñV<\12B!s\8cH$ÞYfiRX\0hBEð·£&ì\ 2Oãþó(ök\rÞéÝ\99Ãè4X¿\91CUPúäP\85\96\8e1\84*NÞÝ>¤%½\96Õèi\8få|ÁR\18æúPWôNõ¬\ e\9d¹écJ\1a+B\87³\ 5\f*ËÚ\1d\rÏÅ\88ÜRÊäú¤\8cL\ 5Ï$Ô\ 5rÚµ9S\r¤Æ%¡R»\97d\0 ò\9cPÇ´*sx½Èö3%ªàäx&²Q'/\ 2\96¼¸x\ 6D*à$eM®¤,5 U¤g\1e&\98þj»\ föàɼ+,Ú/»¡\188\8b+tÜ©\82>êêéåcøíLÓ3Y\1c1QqK+\10\13ª\9d¾ómL \0¢\ 4(Ý×9ýdÞ¼H\15%¢Ä\8b
-\8e\ 5\b3¤àv\8f\95±\94°A\9aظ\1eåÈx\\7fe:}û\13\ 4ë\96\99ôý\9a£\ú\93~ìú½l|u\9dÐ"\ 2¡4\94\18Z\9cë2K\8c\1e²ê\r¾\1d*Ä
-\906Ô\12·1ó{{\12Û\89¹Zi,\93.âaX\8f\ 1Hç«ò\víNv\11(Ïx\99æ¨0m½¼Ûâ\8d\18;-Ûàªé¶EY\18¹g÷AV7ðb©¶¥@yO e\8eÿë[\b®@Û\83r>á7\8a\80ð\19X,Møø*\88\16Qܺ;\96zjë§\7f\18Ñðô[ßlµó\12\1fyAÍu\8b\9dA¤\ fð(\87j\8en,ÉÙ|;\10%)Ç\vxt\83x»\8e*2Æ`#Ô²®`v\84'¬kA\15Í\13÷ìÃëEI+úÃ\1aQ\13\8b\1fl\86\=©\ 5ãÌè\9aý\91\ 4ÚMA³ÿéY0wÔLk#£g:âáî\91Q\92C\8a¾üÛ{ÉòD¬TNðD&\8aîÉéLñÃW1>\92Õ¥³§\8a¨ÜàNm2%¢(¸dÆ k¦Ú\13v£Kÿ\9aÂÆ8Á«ö-ÜÙ\8d\95äÕÊfl£Õ+\8cª¿)½ù@h÷,\85Ò:·r\12\8dÐ<_×âmç¶×h¶Azsy«f\15KP¨O\9a\80\17\a3Ô.\95\9aH\\8fQËvëX \1e\12Á^°\17\93§¬çö,qÜ¢+Vº@9£f\9dçöÍ\17ÊÅÄ?uÐBzÅ°êòJõ\8f\ 2Z.\94b¸é\aìÜyên\eæÝ\ 2\8aòÌ3[Ûz\9d\81\12l\96¼\98`\13wª++ÕxZ¾ø\\84Í\ f¯JµzTÔ²ÖXq.?p \14«\9eýçô°ÐH
-è<mÒ§\93ß6iÄ7GS\97\12åà\8f/!&·ÖI²gú&·\88UѦw¸ÊKÄ?D\96\ 5Ä7@\ 5\\12åÚ[O\14ÝônÞëoK÷¨\8894:ùËñ*bꥸwÙ\9eê\8e©|\8fÝ\9c\Êóí^\83\9cÂ%hW\996\8fP\830ÿD¢#9t±ó»XmÃå\1f\1e¡ëh«C\vl&FBÑ\e£\1c\89\94\eÝ1\11^³;\98\96\9as¤©ÆC·\ 3µ\15Ä-óå\84'\91Y6*jü7-¦¶\1fUáÇ@k\ 5H¯ðn\16\pÃ\14×i/d\16ø½8Õô9R\16@\\8dS.˹¨ûãßäsm\9c|Ü\ 30!´\ fcôPMø¯Çø\1f\0P\93c; \98+T< ¥gÂ\1cæR\11¾\97È®qºdH´æ\81¼Ã\11¥\9dÏn 5åe\vF¿\88»«Î-\98ÑR\ f\9aÑa©9éí\9c}ã÷¶í\!9\a\11\19\14àº\89\8e©^\a\85\7fúq\ 32,(H8\117¦6î\9c\13q"¥¬~\10êXX\8aR\973\ee\1e]úD»\80ÅeótC\vJIL²^\9eRÛû7Xm\81§p\1cK˧\9e_'\16d\98
-\17,Æ\8ee\a¥\f8ý`\94þZú@\15îQ5K¦EETêe5º0\86\83\83!Â5Ùø \1d\e{¸à·\11\89ê\83\81#\a®¤¨Ú3¥E\ 6*\1d¬!\9aÙì\1d·|OC(\9fU¶
-NA\18\135¿}½\8b\1e´©ÐÅé\94Tü\1aÏT\ fÎJ\1dØ\7fw»\81kѳ\87í¥\9eé·xT³w>0W¸G\99ý7Ï6úm
-w6ÐÇ{ÍC¬%°d\81Ð\8d\ 1ÂÈØÀ ¸\99\9fá±[T\87I\9bj<]è\¨Eqñ\80LFk=Õä¯åyøù\1f½Ú<]Wµ^Ü1s#ö¡\r\ 6\9b\1dã4\87FVêb6R(Þ\89,þG}µ$ÙqãÀ}\9f¢/ \ 5ÿ,\1ecÎÐá\19/¤ÅÌý\17\93\99à\a,ÉÞ;\1c\96\ 4<\92E"\81D\ 2\97è\v©GE\8aWqg\13\17ã7\°æ\19¦d\93Z\10\13¡¾x[\84©+ôÔ¶\95\83\91ÄdSù\13\98´D(n;¢\14ô@Jâ\v\91\89QÔ¸¾ø\16Þ\ 3\b§ D³&«\91\95a=iã3,\b\9al`¢îÙJrµ!¬³\95Ä®\14*\1apØJ¬ê\ 2{Ý\10øʩƵ\81_ì
-±Þ\15£l\15@Ð\18F+\9bE\1aèâ.µ\1dö\1fÖ¯ÑTx4²0eJR\13b\1aKZ\16\96\80æ\94A6\8f&¾M»\88\adôÇhß&ÏZ7\11j\1c\1dj;\81\92³Ä<[ïÐl\8b*e\vjdþ\8e1CdÊFRf×ËxFP>àÖ\14\0l\88jÐTò\94=ÖøY\9b\ fûlI
-kÏêÁ\1cj+/\9dÙ¯s\U\1dÔ¿9Gò×Jã±\9aÎ2F\9aAMìÁ ½¢®;hYw#éI\12°J¬ç\r)\ 6öQ¤\10\9e\8bÛô$AÓdD\ 4)S\86\14É\ 6ð5«\81j\1dU\ e./MßWg!ï³±#\94Ô²H\viBJyÒ}2\11^¢\89ðdª\83Z\89<\8dl£^,Ê®\104\ 4Dõñ\18ÕI¿\19]sxÃu\86\867\903ãöÌ\ 6\88B\a\ eXÈæ\843\87$\90M\83\92«ä@r\ 56K\85qÖ\vê\11\94YH\98\80ÿ¾>þýñ/\9eõ¹þÿß\7f>þû\19õc4¶E´
-'¹¯\9f\1fôþü\90h³c\18V°ÒS¶\ 5°\9f¨\93¿E\960%§~\98Ö\mËìO,í\1a+æ\92yÔ´Â^e\9fåÒúiÿ¶?í!ÉÊ>j^Ã%I\8b\95\15@A\ eÚB\biH Ú¢ù\17oZ\95¢¶êÛ\f\a¬ÅÌ\11Í_ßØùº\12!)\bÃ\12v\14J®Ñ\85t\186ÄÖ¢·6dÎ\ fL¢\91ê?Ì®AÜ·ÑZ[\v\91\ 5æýfÓÛ²°\1dõ3\97ÚÑ\9c\1a\83©Â\81\92\ 3qk\1eµ;Ù\ 5í¶Wp\fôH|o¸)æ:r´d6Ræ×Æ\9cÌ\81âG\16rúÁ\8dp¨ý;J\7f£Êd%õ
-4\97ÌN\13³ª)Rï\80?\19\93ok\1dk\13\864\ 6
-3/\ 3ç\8d¹°)e%Ù9S$]s%íuí\9c(aS£d¦èØ©\1aÕn\82\86\87\9am~ÛÚ\97\9a6\80WªÚHA¹Å\ 15\0Ùi( I\ 3ff\ex\8azÔ4ØR5\18®a(iìâtû÷·Ïù\1fxûH]¬)2Cà¥\87²ãäLã6\b\aÊhåý»kÂ\ 4\87Ë\8aä&̤(º¦v˳íïý639Öµ¸6Lk\1d6M¤^·é0üMÄ-ÍSù'¥ù uªÿ\94Pc\19\18)°í&ªñîb\1dÔ"Ã
-í7F³àn\ f Í\fÞûÙ?A¢<Ï\8aÑcM5püüú0\8b"\87,\b\19\16Ú¶¢ÄªY\81\88TwÕø\90î0p<FÜ\fLbSE'üÃ~Mõo\7f\85ºxÔî!\ 22j\rª
-Í\15?Cj6ªÔ)U\1a^\f]\1còqü \83!\ 4qA+fy¢\ 4\ 5<\98$
-\85?\a\1amA:5J½m¡ÁD\ 5f9:ª\17(ë¸ÂV¹í,=\8f\rË3ß\84\ fRdäßz8\9d@\8bzOÁÛ?\8fI]ú çS\8f©1&Úgíwj¼n»\vR«QwòÒ\18\19ê°ñÈ\1cû
-µJÜýÎ\833c¸=\0Ä\94ýÓ\86ENÊú\15~\13\97\91<Ë\99¯\0\ f(S\ eªÛó\83ª² éO.ÎT\9d\159\a\e\82\18âêØ\0&Ú\f8\1d\10ò\b\16\8fd02²áie²û±A ÌG·\ 2\9a3b,T\81\ 4\16À#I(»\fÆ\a·«Ï,¡Â \8e·mnǶ«4¹vL\ fÈ\1d"\14g¦8Ì\ e\ f\83\ 6\91?\8c³{yæ,\e\9aybÕø5ôI¼\ f\v\96É9¥f\8b¥9\8c40\0PìÃ&É-\8a=6®\ 4ð\15ëéÉ\92\19à\1a\10\97ý»«\8e°rVd\94è\9e½\ 5\ 2\a\ 3\ 2\ eim^+çG\8b\91øºwÒ \ 5;?ÑÞQ\81DZ«\86'í\98\1e\8b/¾QÕ~YؼL\11gÃF\ 5j(\81\a\8bé\19
-\12N\18B\10\98\ fûæ´\91\14\1ay\8f§j\9cà \81e\9cKP\8fFx\12ç\94e#+ÀàzéZ\81o*\°\e4Aá\14[Í.ª\1a\84\9c\8c&OE3\ 2\82¹Ï\15\9c?Ð#\8a\10-Q õõñçÎV\966Ò÷§sÜé\9bê\9d¾Ë>é»<+}S½Ó\97ö\9d¾ò¸ôÝ;¶ýNßTïô¥íÓ\97}ðN_z\ú¦z¥o*¯ôE?¾Ò7\95;}\97}Òwyò¤þ\95¾<ú¤/yË¥/M\9f¾¼Ö\9d¾©ÞéËwøôelîô]ñ]é\9bê\9d¾©¾Ó7Õ;}\89¹O_%Å\95¾©ÝéK*õé»ì\93¾{ÅL_Ú>}ißéK\8fO_Ú>}S_é;é\9b|od½èûx\16}Û pè\9bÇÓ÷Ìÿ¯Õ\91Y3»E«#³%Ü\1d\19\80ù\8eÌ-§#OëtäéXý\96Çù\8eLª¸;òÒ §ÛþÆ\93ß\1d9ç«#«m\9d\8e<ÍÓ\91×ï³#s·ïÈ9¿:ò¹Â궿ñäwGæc}Gfä|G^Ñ&#õ&QçDÒCm}©¤íA\8a·r9 ßó'ÌÜ&=0]\1f\94ejÇ\86<´\81ç¬@¼ò¤¤\86d{\9e¥7\1e\G;\96gßb \bBú\a§\ eä®÷ KP\8c£H\12Zy\835`×ê\94\ e¾\ 3ú|¼ÐÁ\87³]\r\1a_\8fí3B8\83àã-\93`\83ªð±QmÛH)¤îS\8fgÇ\98¤âMPu\8a\17\f§\10V\8c\97çD\9d\8dò\82\81\9dÔÁ@\91áaXö\81a¯\980ð\0\ f\ 3[ï\rùÅ
-ño<é\r\ 3E\80\87A"ÁÁ°\92yÃp²{Á ©ÖÃÀ3<\fÜâaXö\81ayv\8cÓ\ 5\ 3\1f»`\18Øbé\80²n\94¨1\80¡fc{ð¸\18È\93qÏ\80p\80zk;\8e/ìih\1eɯÁä\96ûl¨·\ 3ÏèU\9b¶\8b\97À\12tã]\13\88&j\1cá\1dÖG¢´À¾\1ci\14\9dc´ï6Í \e£Þ·\89Þ\95H+Û1ðt\f ØÞóê\1a\95\ e\0³&¤.zä[rË~\rR¢MÆ`Ç\88\11\rC¯\9dÇrÓ@ÿ\9e\13\b$*\87@<¯å<\9b\85\9eC*\9cÃR\1fY\1f/
-þtð\1cäËÚdkÐÎj2\a¦Yï\0ùÕ:\832]Yhò\94\1cf\83ÅF})i\8eÃ\ 4ÔrYÑ·\eGh\ 4<
-!LÃBÛ@ÙÇ\ 1Äbd~9\17\9aÎÓ\85ji\93^\90eÊ\8djÉb\ e~\88Òãx\ 6ÀUG'\ 1eBV-Ýâ¼Ù\9f\1f\exêßxe%\15°\ 3>ç\vxªß\vø\9c_ÀKízà\97Ã\ 1\7fÖLàé¸\80_Ç:àÙ\94^ÀkÈóÀ«Myà\97Ã\ 1\7fÖLPé¸\80ç#_À³M_ÀÓq\ 1ÏFû\ 2\9e±óÀ3´\17ð$É\17ð\1c\83.àI5\17ðËq\80_\9e\ 5¼(ï\0Ï#íf\8b\8bH«]|¿QO/.\12Iz.Z\ eÇEgÍä\19ͦ·ã\17.b«ñ\¤Æà¹h¥$ö\90Ûû\12¥\0\ 4Y\8aÕ\832f¹"b\1c5?\80\17\18Aç°hã\9cí\82\9cÁkyÈÓ\\r\9d\ f\9d¢\8aU:ê¬\89\10\)\9fC¶}¾s\\90\90\9d@S#ûÛ¾_ä\1eiEq=r¹ö\ 3X\ 3×#WJ¹Gæt?r'ÐþPúå\91{ÍzÁ:dÛù\97G²J®GîÛ¾_\84M\1c/Ú
-\ 4\8a\18\8fÄ|1Æs\\11ãC\8aÙH\7fàV±@\9d\871»@H:\ak´\89h#O\91Á\98C\9e:\e\ 3\86'\9eÛ\9aãw~:Å«\a@¼\96ÚÝ\1a\84u¬¾ÆéÔ9\10\98\11µi¹\80ÿ\83·ð\94¦ sµäÂw\8f«mã2eø%\15ããÜ\83Rå{\8a\9d\ 1a-ýÌW÷¼øº7=\11¯®\93Ñ\a.®7Æ9\85fÞ\85\9fÎÎa÷\r!»5\9cOLb\83\1cÁºÇá\1e¹]\90o\95\91á0t¡ôBÒ\81+¼op\97k\83Kb¿À\15Óßà*Ëopéràn\ e_à:\9e_àî5\v8&ì\ 5.\93ú\ 5.óþ\ 2wsÜ\ 2×ñà\ 4÷,\99àÒáÁ%-¾À\15'ßà²\ 6/pU\94\1eÜåpàî5\v8~ë\ 2×?r»^à\1e\94^Hb\13Ù®ö3Î|C£\0nq\80Îóçÿþp+ö¼\17\91ºQ5×ÑàA\e\10ïM[{º÷,uþק\9eñe\9f\9aË_\9cÚ\b}5\11ö §°\aw\8aÏ8®\1fÞ\85\ 3@¦\97«\89ö@8u8Ý\18á\7fÆÅ!Ø\9cT¹{Iü.ª\9f4Dý<\89*ZzCtw©\\9c\9e²®Òâ÷U\|\19\ f\rÑ\15WÄáÁ\97\1f\8eé;¶sMg\89«ø\81î\1d\90`Yy·]\90\9a}T½y»ªª-vdÎ\9c0Àé²[¿&[}»%?Û:Wü\8e\9eÅPVS°IÕ@\a\95\9c\1cC\13 Ã[LÃBì\ 4{fMÕq\15¥wùôt\86x>Î\131Ò\f\r\1186²ú\8e\ 3Y]\86"¾]\ 3¢* \94\14\\82ü\921ü\90A½èãç\81z3Ê\84z\91Ò\84\9aæ\vj\92Û\r5Óù\82z×Þ\82ÚÕ^ß ÿ\82:ç\17Ô\18lßPS{½ &»y¨IT\17Ô«\1c\1dÔËõûn¨szAMÇ\vjéZ\ fõf® µ#· õ^±`ä±\17Ô|Ï\vjªÇ\vjêò\vêåø:e¿\?¼ë\17r ¾\9e\1cN:Ü\19óõ\11\90P1}&\9cÑ\88R\v¤'xÿ/csP¡\94ÆU¨`¨`\0\84\86`ï[@zoàZ\ 4è®\.\90\140Ý\81ÃÐ@\ 1Øî\aF\1e°r\0j\ 6¶¯\81)\ eXJ[\80B
-Â\ 3Ù\ e\8af ~`\82\82ñt\81aeh\ 6å\82\8aW ËLõL\81ú \1c \97Á\9d\ 2(\17ÔñRÐ\85\98l\0\86É@\87\ 6r\15\ 2]\93\ eÄî\úîÁ\86
-éÅ\ún¹F
-.ùèrFP9c\88\9c«¯³\ 2\90\ 2\b0\0\97B\È\rendstream\rendobj\r177 0 obj\r<</CS/DeviceRGB/I false/K false/S/Transparency>>\rendobj\r186 0 obj\r<</BitsPerComponent 8/ColorSpace 187 0 R/Filter[/ASCII85Decode/FlateDecode]/Height 105/Length 57/Width 5>>stream\r
-8;Xp,*<rl:7+cW%5[,0s>fWlT+WCpST#%IPk^`/RFo\WF5_&k8KIsMB~>\rendstream\rendobj\r187 0 obj\r[/Indexed/DeviceRGB 255 188 0 R]\rendobj\r188 0 obj\r<</Filter[/ASCII85Decode/FlateDecode]/Length 428>>stream\r
-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\~>\rendstream\rendobj\r182 0 obj\r<</BBox[8.96826 5452.74 19.373 5429.63]/Group 189 0 R/Length 107/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 179 0 R>>>>/Subtype/Form>>stream\r
-0 0 0 RG
-2.545 w 10 M 0 j 0 J []0 d
-/GS0 gs
-q 1 0 0 1 10 5430.3711 cm
-0 0 m
-7.804 10.814 l
-0 21.629 l
-S
-Q
-\rendstream\rendobj\r183 0 obj\r<</BBox[8.96826 5402.74 19.3735 5379.63]/Group 190 0 R/Length 107/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 179 0 R>>>>/Subtype/Form>>stream\r
-0 0 0 RG
-2.545 w 10 M 0 j 0 J []0 d
-/GS0 gs
-q 1 0 0 1 10 5380.3711 cm
-0 0 m
-7.805 10.814 l
-0 21.629 l
-S
-Q
-\rendstream\rendobj\r184 0 obj\r<</BBox[8.96826 5562.74 19.373 5539.63]/Group 191 0 R/Length 107/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 179 0 R>>>>/Subtype/Form>>stream\r
-1 1 1 RG
-2.545 w 10 M 0 j 0 J []0 d
-/GS0 gs
-q 1 0 0 1 10 5540.3711 cm
-0 0 m
-7.804 10.814 l
-0 21.629 l
-S
-Q
-\rendstream\rendobj\r185 0 obj\r<</BBox[8.96826 5512.74 19.3735 5489.63]/Group 192 0 R/Length 107/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 179 0 R>>>>/Subtype/Form>>stream\r
-1 1 1 RG
-2.545 w 10 M 0 j 0 J []0 d
-/GS0 gs
-q 1 0 0 1 10 5490.3711 cm
-0 0 m
-7.805 10.814 l
-0 21.629 l
-S
-Q
-\rendstream\rendobj\r192 0 obj\r<</I false/K false/S/Transparency/Type/Group>>\rendobj\r179 0 obj\r<</AIS false/BM/Normal/CA 1.0/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 1.0/op false>>\rendobj\r191 0 obj\r<</I false/K false/S/Transparency/Type/Group>>\rendobj\r190 0 obj\r<</I false/K false/S/Transparency/Type/Group>>\rendobj\r189 0 obj\r<</I false/K false/S/Transparency/Type/Group>>\rendobj\r174 0 obj\r<</Intent 193 0 R/Name(Layer 1)/Type/OCG/Usage 194 0 R>>\rendobj\r193 0 obj\r[/View/Design]\rendobj\r194 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r180 0 obj\r<</AIS false/BM/Normal/CA 0.800003/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 0.800003/op false>>\rendobj\r181 0 obj\r<</AIS false/BM/Normal/CA 0.5/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 0.5/op false>>\rendobj\r178 0 obj\r<</LastModified(D:20141120215318+01'00')/Private 195 0 R>>\rendobj\r195 0 obj\r<</AIMetaData 196 0 R/AIPrivateData1 197 0 R/AIPrivateData2 198 0 R/AIPrivateData3 199 0 R/AIPrivateData4 200 0 R/ContainerVersion 11/CreatorVersion 16/NumBlock 4/RoundtripStreamType 1/RoundtripVersion 16>>\rendobj\r196 0 obj\r<</Length 942>>stream\r
-%!PS-Adobe-3.0 \r%%Creator: Adobe Illustrator(R) 16.0\r%%AI8_CreatorVersion: 16.0.3\r%%For: (H) ()\r%%Title: (icons-hires.ai)\r%%CreationDate: 2014-11-20 21:53\r%%Canvassize: 16383\r%%BoundingBox: 330 -265 568 3057\r%%HiResBoundingBox: 330 -264.3799 567.2373 3056.7446\r%%DocumentProcessColors: Cyan Magenta Yellow Black\r%AI5_FileFormat 12.0\r%AI12_BuildNumber: 690\r%AI3_ColorUsage: Color\r%AI7_ImageSettings: 0\r%%RGBProcessColor: 0 0 0 ([Registration])\r%AI3_Cropmarks: 330 -2506 630 3066\r%AI3_TemplateBox: 479.5 280.5 479.5 280.5\r%AI3_TileBox: 174 -116 786 676\r%AI3_DocumentPreview: None\r%AI5_ArtSize: 14400 14400\r%AI5_RulerUnits: 6\r%AI9_ColorModel: 1\r%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0\r%AI5_TargetResolution: 800\r%AI5_NumLayers: 1\r%AI9_OpenToView: 74 3104 1.5 1229 654 18 0 0 6 133 0 0 0 1 1 0 1 1 0 1\r%AI5_OpenViewLayers: 7\r%%PageOrigin:0 0\r%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9\r%AI9_Flatten: 1\r%AI12_CMSettings: 00.MS\r%%EndComments\r\rendstream\rendobj\r197 0 obj\r<</Length 1933>>stream\r
-%%BoundingBox: 330 -265 568 3057\r%%HiResBoundingBox: 330 -264.3799 567.2373 3056.7446\r%AI7_Thumbnail: 12 128 8\r%%BeginData: 1784 Hex Bytes\r%0000330000660000990000CC0033000033330033660033990033CC0033FF\r%0066000066330066660066990066CC0066FF009900009933009966009999\r%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66\r%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333\r%3333663333993333CC3333FF3366003366333366663366993366CC3366FF\r%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99\r%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033\r%6600666600996600CC6600FF6633006633336633666633996633CC6633FF\r%6666006666336666666666996666CC6666FF669900669933669966669999\r%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33\r%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF\r%9933009933339933669933999933CC9933FF996600996633996666996699\r%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33\r%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF\r%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399\r%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933\r%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF\r%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC\r%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699\r%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33\r%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100\r%000011111111220000002200000022222222440000004400000044444444\r%550000005500000055555555770000007700000077777777880000008800\r%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB\r%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF\r%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF\r%524C45FD54FFA8FD2FFF8383A8FD09FF5E3389FD0BFFAEFD2DFF7D7752FD\r%09FFA8A2CBFD2DFFA8FD0BFFA8FD8FFF7DA8FD0AFFA9AFFD2EFFCECFFD0A\r%FFC9FDFCFFFDFCFFFDFCFFFDCBFFA8FD0BFF7EA8FD2FFFAEFD0AFF8389A8\r%FD08FFFF\r%%EndData\r\rendstream\rendobj\r198 0 obj\r<</Length 65536>>stream\r
-%AI12_CompressedDatax\9cì}÷~ò¸\12è}\ 1Þ\ 1B\b\1dlÓKè5!\81ÐÒ!\14SB\8d\r»û\9d?î³_IîÆ\8dò\9dÝsîÙým\16°<#\8dFÓ4#Ù,\8d\967;Þ\fIoÀ\87\99M6[\9e"\a»\r\157£_ÍÕårOï(ø\93£é4ãa\1f\ 6\1ae«Ñ>Û°KRô|³\8e£G¾\0xX\82o;*N³Ã ¾µç»% ¾ÏG\9b5í\9dÍ)\92ö\ræN\ e\13xµ0Ø\81\ 6\ 4\86\a½8î%03\81ÇC\10P~°þc@Óó\7f\91\10z
-\7fËmöëñ|=Ímþ\8a\9b\ 3\ 1Ìì%Â!s(\1c5\a°P\ 44¨Ì\9b$Ô*è\vDb1Ð4â#\ 2\91\0l\1föE\82Á0x©°\19íWäz× 6#\92¦ó\9bå\86¢ãæü¯ÁÚü0\98\82'\ 3ó+¹\nþ4ç\96\83ÑÂ\ 4(\10ê\97æK\12\fv5Ø\99q\ 2Ò%[Å\89~n?_\8e\1f÷«! È\10\8e¡\9f\ 3}\ 4²C\ 3X\0,ü\f\7f\8eô«+ðK\8bÜí@g\ 1BHÛf9'î\ 6ø\11ýëxo\92Ó9\9a
-@³O'\v\96ÚlW\ 3jAsÃ\faas\18|
-`á0Ó¤M®¶K@bD\8b`$æ\v\99\89(\ 6þ\8a>³-ÁxP+<\124\83¹\b\9b#Q\0-Â\ 2\12\88Dþ1'ÿ\8c\9b\1f7k\92¡D\96Úµ\98i
-\ 61\8cùË<iî\97$ÕYÏw \87\bN\8c!ÅÃfL.A{þýÒr\80(\80þÅ\85¿L\83ö\80\9a\92;0³\9bå~\87Ø-Êa\0¤®\r~\91p¾p\ 6A}K®Û\9b.ê#\18I\0Ç\82f\1c\f\15'\88\989\1c\ 2_¢\b~Ø\8c\a\ 2<F\øË\0\86` \10\ e:ä®\ 6\98®:5\9fÎ×q¶o\91~\99\9a\8f\85)\8c\10æ(ó\auß\17\15ý\17ãþcú \86¼Û\91k¶ß\80uò\ f"VÀ|\ f-\80±¸\1eç7+Hw\1a²?à\815`\8fåfÊ<ã?£'àõý\96é=úÞ\aSÔ æk\bÓô\88\9eDû\8då\1e<*S\9bý¶º\9elL\ ef¥wÉ\11XÎ`\16Çæúð\e|\ 1\v\18±§¹M\rF\0\0øη\ 1KxëÔ\ 4\a\ 6G\91fæ!x\13}åþ¯ÿv\81\9c\80\85%¼ÎüZ\ÿA.7[\11Xþ\97Ázl~\1eP[}Ð\8då`= Ìèw\1ermþ\ax2\0\94\12`\v¿\19\0
-8d\v\88\83^AMd\b4\1a\88\1e\19@4ØÍ\80\f"×c\9a\87Í|\95v\9cùM\1f^k\ 4y\902ç¨==3·7\9b%\ fVú\88\87Îþ\8c~\85íÿ\198\1aè\85u}Í\10è\10\13Û@\8e H\9e\7f\1c\16ÐZ\1d\ 3xøO\86\9e\1f,\97ó)5ØÎæ#%\ 4
-ÏyL̳c\18ë×j¸YÎé\95ÀO¢_\1a\ 3j7\1f-ÉÖ/zG®\fO®¹8\9e\ 3!§²\8c5Û´þ\1cìF³Ú|H\r¨9©¹úà\ 4Læë1àýÖ~¾#\ 5\ 2mV[h½\98[³Á\96DÃØÍJ¨e\8b\a\18ê\ 3Ñ/\16î^¯¶Ô?ú\85\18ó\ 4*öݯ%I\9bü÷ëÍ\9fkôÅ\1c\a$[oÀ\94ù\1f\a+Òì1ù³H|qOýÜ \80\85\ 4W7h\9f\9f\ 1Ajf\1a0¿:\91Þõ³M<&ÜìïÎéùp\89\0\1eBhí\80áu\ 4\84Ü\80\9e\8f\84×YþØQ\9b\ 5i®O&4 \14\1c®þ¾ãÀþõ\r¶`\92ýÌTBÛ\8f\1d¼C\ 2\94Q%ÅÉ\ 4iP?2\7fA#\ 2áYÖ)¶1è`a>\82¦Ì\80úe\8e\ 3Jn\80y3ÚPc \7f\ 1Ìú~GÏÇ`þýà\ 50-fGaN\ 3;î\17óÕ \ 10 X¢\83\914M\98È\9aÁÍ/Y\13gJaæ\97_àË\1døðm&Ì\7f\9aqÌü`~ÿÄÌcðóKÓ\ 4\9b½\8cA§È\899a6\99\1d"à\10\19 S\ e¬Iîwf¬Õ5ÓG\8f)aFÃ1'L\80@`Ý)L@~³\1e\ 3N72w\1aP \11\8f`\ 2-\1a£ \11¨W7a¾H4\18\ 6î\ 4K5\1f\86ã\11øÕ\17!BÁ\18¤Ð@\99¢¸\ 2EaC Eyt\12zvh²ø\a¹®\8fÇ*tÔ \ 6Rò\97¢\ 6\ 2&\90Ãà(\85á ï«\ eÄä/þE\8e\90\ 1\8f\1e w\95$\v0ÕcÄÿÄËÿÄËÿÄËÿÄËï\11/\81ÿ\89\97ß'^¸\95{\84t1ÌöÚ\82\ 4ÿÿB\90\84CX\14\ f\0É\11\8aa\ 1"\f>\10a<\86Á\ fX0J@aâ\vrÒ%\88\87ÂQø(\14"bAü\7fRæß(e\82ÿl)s~\1fd\93ÉÊ\aÃï\1f)X~\97Ô0 \16~7\9b\12\17fÓKË·\8b³Êï\93\90§2Å\89²í¿\86Sþ\8bÆt\94\90\ eýOHÿOHÿOHÿ{\85ô\7f¤\19û_ÃoÿEc2.ê\ 3DL$é[óÕvÉKzÄ\90fIxë\ 4þbv\90uz\11ÀÿÙúæÿ\emñO÷ôÿÍv¬Æ\18Ù¤\fj³\85Û\92ãÍ\9fÚÁ'Ø\90i\87v,\95¢N\12X|\9cI\93:|hgO\93\8dV-·ÜSp$Q³¿
-\16\9dc¸\\8fÙ\ 1£ï#\9a\1aÁïA Kpðn\93\1c,a+æ-þ\87Ív0b_c~\98m¨\7f¡\16\18ÿÓx@-\9cÊ*,\12Â\b@
-_8\12\vG\ 3è\ 3F\10\ 4LòÁðp\90\9bÁst\15=ZR\92\1eþAR;I¬k;\983\83
-³cgÓeP\18Ï\ük\v³cr0¥\ 6¦ù |½\7f\80\82\ 3ÚÞ\18E~\93:\88E\7f§\1cV\A®¿ö\ 2\12Ú©. 1¨#×\ f\90{\90\85ò{z·YIdD\93\mþ \e\e Åhf\rp<× ÈÑ\9cc\1c0s!îA\9b\1alÛ³ùh±&iôN\90åA\98µ6`\97¤/(i\ eÀ3?óP\1eæ\7fI:\ 2\9b5IÐK\9a\94¬VøûÃà/\ e\82ä÷,Ê¢\82?\ 3pë=mÎ\ 1½§\15\83\96`;$\8a\ f\vÉ{ÝÞ,Ij°\1eICÍÅ¿vÔ`´ë¬·Pý\93ªÆãÿTóÿTó\7f\øüo1×ßÁ¯\83ýr÷y¬½Þ4®\92Uv¯\95\ 6\88«\98÷(Oª¸\1e\vYRº©V\8dÁ\92ÜíHÔ÷ÆÐpoåÙßhÔ/ÿ2\1dd\857F¦F\8eï\ 6\87í\98T¯\1a\0'\9e\81\83Q¢\ 6§ä\94á\18ó\88IÒ\83`þ\ fû3\0$ûQ\ 58ÛW.\15½0Ø\rL¶¾\9fû\ e\18\ 3~\13±8üþòP{Ü\8cIÅ\87 ³ã¯Õr\r\1e{\a; \19\86û\1d\89Ô\18h\9a¥¨Á¿\aÄ\ 5à\8bZ\8dfóå\98"×L\e\82ÕÇÜSøg÷kK2O\1d7kºÿÇ\80¢\13"M)núÇ`¹çÚÂßi\95vk°L\99flOhÉ·ÿPê\fç¨\8e\ 47@\1c@Ä\16¹{DdЧ\90¸µçï\1d#°\85Õº,\1eßr3Z@ÛF\7fl\Ë\vMÿ\99£Ç5Goh^ç\ 3 <\8d0¾îLþ'-ôø\1f\86\97:lú7s1\1cÞ\b\19ï\7f¯$û}|\18§\aÐ\ 2\82:\ f\88\ e£ìøÛ×E\v¦"ýcºòß°JéÉ\9fÿ`mü7/\ 3z9\1fý§Ëb"\0kPÃ1.¼ 6Ö?çãÝÌÈ\f³\rÿ^\11\1c\b\10¸\ f'\82!½aÍÈùtfDhð-ÿî\81azCúËÐ:ü»\a"TAë\fç\97\91áüú»\87Ã\aàÔ\861Üì\80=P#';¦f×Ȩ\ eßù\aè~$ôZ\9b=5"QiûEäß\7f¶gÖx,\13A¦úÞ\80®\9cð¥úFx@ÜúïeqLá©x\;T\17ÏU\8dW\vFFwøÎ\7f¼\9f®+ vÔ`Mo\a\0ÜÈ\90l\93¶ÿÛy@{pëÍ\ 3,KEç*\18\19\9c´ý?|ppG\85Z\ eFÆB\ fâÖ\7f³Cj-¡\7f\f\b§ÕQ³·úÏ\99» Ú\8206sBÛ\7f\80¾ÕW.ÿ6ßV*ÿîÞl¶»ùjþ/´ÛðOé\13p\97ÿî.¬ÈÝ`<Ø\rÎíGìÌ~XÇìF\88\91\15'jÌ®fÆ)È-Ir\f\rà®\0\99³CàyCY\8a\1c0é\12\87æ\81LüD± a\ e\ 5±0\ 3\e%\16À\818б@b\ 3\9bCÀnÒ?°\197`LYj7Ü\f¨±\19\ 6á;ëù\b\8c\83\e\9b\10?ç3\ 1\1aÙ&óK\98?\ fIÀÝ$\97íM\93Á\8búÑØÐsØaô\94\10Ü=x|\92á÷p\99\11R¥¹>³\9bh\8f\87óϵ@´cé(#^ Ì\8di;\18\8fe"w5 \172´ôv³\93µ\1a,ç¬Ô\fc\1c\85ÇÛ¹\8fù\8dËÔ\18m\96\14Ï\15Ùª9»ßmÌÍ\ 1\räñü_rY\9fâ¸\99ã\1cób½\19-6û\9dyÊ\1c\81¡ÑtNoà1Tæ!Ü#f30$\8dcæí`KRfz¾Ú/\91\84\91*!ØBl\97\ 1\9có±\99æ»\88\8bÚ\r8¦\19 \8a2D\ 4\89¨j\e3\ 1zƱ»nÓ)ErkV·-¯Ô¡P ¤Þ\12\17u@·©¨\ 3ºmù\ e CÔø\96ܦ)sÌZKLGÑü5(\92&©?Hs\9bük\87Î=\19\fçËù\8eeZ\\80\a\1aóû°è *sm°\9eîá R\8dÍ\96ã\ eÇû\ 39\9eïWfá0¯ÏÃ\85\ 4\8d=.\vp\bêÓÎ,Zý!^zA
-<\90ô\8cg`ÄI"lì"Ç$oÔ÷»-àbíw¢ax®\17\1e#äÒLt\82\13<\f¬ß\84Q«î`=§g`4¨\9dTÊ\1d¼ \88ÃêzLþU\9aS4û
-Â\17\r\ 6\8d!\85\87[\919\14Â\10¡\8dÄB\0F\0\8fèÁ\80R\1f\81È\93Ëeñ¯\1d¯\1c\f÷\82\87pÐ £co\91£Íz,B\e\89\1d3øöf+\1ey\ 476e\8c¾;\9c1Ã=à\a.í\80(\8bt\916\ 6\14àYÀbtk?\ 4,\Ú¬wt\13rÛ=ùëpõaæ Ïó[n\1dnþ ©-Åeè\81\1e\ 6\ 3Æ&W \91|v#\82ø\90à¤Ðrðþ\81N}3\ f\aK.õM½\9b£å|\v\ 4\ fܨú\v\b\9e)X<´\92}\ 1¨$5/DÏØås`|¨\92\1c¥7!¡ÔÚ\rv:o\95\96\9b\r¥õ\9a7ÄÍ\99\ 6-I¨¡þ \11°£V:? j\9dæÈÚ*=ÃÔÝ\rµ3·7æ|«¥l%È¿ãáH$BàÂ\8cB8\95öC\r¥CB5½\1e\9bEî£`(*7e\8e\0\84Ù¦r-«
-ج> Ô¾C\93,Ø,-zYd\82(\81\16Ü\r%2(ááÞ\80\b\rÓO\ 6\be\9fÁÄÍÁÎü<_\8f7\7fÒ\8a\ 3\13·{`2Ê%\8bDÞ\ 6軿d\ 3\16=\9eKT¬\14J~³ýu@5YoªëÑr?&Í/\ f\rE\18Â\f\094Ù,Q\161\13n\81¿\8a]:\16 ´±HõÊéGHø£5ø\ 3B\81\89ËÂø6k¨ÔÛÀ¯1³&7\81\1dõ\16kp\13Çá\8a²¤\88\1dõV@\89íõ^ÂXËì¨\97\82ì¨\82G½\15:éðIoE¤^ªÞK´Y0*\13\ 6\9a«0TT\8a\ en\85¨wñ\ 3Ã\b©\ 46ô\9a29tQ©\10_÷½ "\7f¨½&¦£\9c{uQá'v1 \9f7ÕÞ)-\90Â~\vÚCwOx#GÎÀÜo(\19`Ô\80å
-©\8c\ f\1eª\1a^¤·¶\83\11P\15x\1a-0¢\ 6K¥I\97½\82RtÅû:\ 6\10tIx\88$\a\1e×Ò2¬ÐåNëU×\7fü\eå\r<n\87\13ùË\ 3?öð\8dvá\19nõWDûâZCFbûa°m\v©\a\ 6Z×6#\91ûIR\86HÅÕv÷\v\1a\95´ln%eÏÄÞ\9dè¹\ÛA{\12Ø?\¼DE\89KbÂ-rY\19ì\0ü*Ü\r¨\16hq\90E¹%\1cò\12r©¸¸A\eæ\17A¬R2ÊÍ»¶hK
-×3"[\0§¢\ 1ÌøN\ 6,`x°¶\10\ 4Ð0\93\9b\\b \14\8dEq\8d\869\1eg\80\88\84#Z64\ f\93\10¼oyCv}\8aù\15\ f©5\86\1c\94\a6\rÛP\1d*B_\a¼§d#IÜ\91Í~·\9c¯I3\8d*PX\16s0GÕ\8b\8c\1cà\9a\95öË%Ç\92l\8d\1cxz\18Ñ
-\8b \ fÖ»¹y°\9c\ fh.¨ 5´\96b0M©·;ò/]\1a \f\ 51 \82ªtE>G ¬Ôìzº\94ûo\12¯´Q()\18 Z\9c\80`\97\85`\14Ç©\12°ÅÕ\90\84'\95Ã}uÞÑU\1f\1a\82©<½\12°°«À+¦\85 \8e\1eË
-Ü\8d+õóy6\1fÍ\ eú\19Õ\9c\ 3±\1féôå\14\83{\8aME«U\9bHbäAõ¶ð\14{Àç\859½\13<xÃ!\1dèÍq¡nvÁ\87 <¨!DDü Î\95°¡\8c)\83¡hD\r.\9a?)£i \aö\88<F\8cûE5N2å!/\81\128£6 w\9cÖá\92$T\82\97¢¨%aÎVµ"\95RQ\ 2\83íP\86d¡\fácâba\86à!%\98g\83*MqPå i\9d\15!-±ÀÃÔZµyA#\ e\ 1¡&L(ÔÏ\9cø\ füMiìGÒ´.\8bHéS 7\17\e-ãd\82\8duèÄ@4F(¦.¥¤Í\94IÅ´1F+\16\9e\8cX¸x\ 3d½\11Â{æù\1a\ 5ÒàN\93\92¯}ȹ\ 2\89ý¦¹ÿ{3ôm\81aG\rÖSY§\ e\9aA¼\83åR»\15½\98o\87`\88\v©Ð\937£\98ò]Ø=J»åh³\ò\ 1#Çáf\80¼=·ÁqÄ\88¸WÄF(ÚÜ\80\84¾Û\fá¡ìfÁ¼Ó!4¡\80m´òÁä\13!ð«Ü\86\vã\8eV¿4è'j¸ÙÍôè7\9cïV\ 3Ø^²[Á\vHqóítµð\r¡\8d¹\99L|L®#ï\8bª4G÷ËÈ\9b+\rO
-|O\93À\9eBö,/\17De\9d\1as\fù\81Dô\97ìï\1eà£wKß\98\81\88æ\99\ fbi\83\87¯±í\85ýp#ïlÇ+ðx¹6Ü©íØ0p¦t\85\7fCiª·[\8am¦1\ 5 \r\8b\9d\9dV\9cP\9cXÐN\944\1e\89©¶\9aI]MåF(jè[\ 2\8dn¨án³Õí\1dÓ\92\12\90kô\91i+fO\aà4 µÇæá/s\81\ 2¦\ 1¥=\ 5\10ÊZ¬}\ e\11\8dd4So¤K2\ 6ÔFd£h\0\935;\94\15°\15Ú\17×\96\12c\92\9eO×
-ûê\8a2sȦ\19ë
-Wd,kcf\840Í\88)ÃR^2\1d\87£^R>¸\1aµ[\8c\98C\1d`f\84\ 6u`K^í\ e\97èÔ\bÄq\84bkjì\ 3^-¼\13ì0H"o8\ 1\ 6 w \f0çUZmÙl\12-^@X§>MæcÛ°Åx¢Gy+\1aF\1e8XºíþÐ\1e#=Ú.G¿ÔY\85i3ZÓZL\fÚì\80Ë)J\vQ\19ß\1f0¿s«O\a¶\9dFß\91º"×0°£%ua+\9a;Ò@\97sQsFJ\v\vÃÈ;\80åwð\14\17¶'¢\13V\ e\9a\ 2\ 1\ fMR©,ÒÐÆ:mFÔf«Ó\ 4Ú\8fs`"é4£Dg\11è!\85\e\85Ã\ 1%ß\1cV·'ô´\8b¤ñN4$½¶"\1dcÀ\b\12ºa ± èôÛ\8aº¡´\8a&ë\9do¼Ô\16yL\9b-5Ù¬µä\1dlFï\87Üz\f(Í\11\r\ 6ú\a¹Ô\98E\1aØ\9dÐ@Öl²&§\ 3!SP¥ÑH\1eÇQm\aÔÍZ\eÖ\12\1f¡\0\16\17\90S\9e\7fÚGÏ\ 6À/!5¨\ 4\e\91;\18\9cãN6\12e\19Ê\1aJ[E\94äü_[\9f$\81"\80)!\ 5(¹!\8f\92\9b\94ZN\15L~¥v¬\16\14¢\8aJü%´cb¥Ú-\97s\r\91\ 1\1aÀÈè@⬫4ÜlG\1aR\ 55 5f\1c5\18ï5ã\ e\1a\92\17¼®mf\0'\93Ö×\11¨Õd¿\1eip Ó\86\8dxp\9c¢£\18Ð;\83õ\9aËëTvðQ+=Ç\0x\94\82ìpt|-\9fù\99\1c\9aó\eàx\8fÍ\1f\8eÖs½ñá4ÿAè¸fÐ1\15\99|RG:Ë5\14¹Òâ\88JHØôiÌÿ"\97\r\92\9a\90\ã3 %I\7fL$ªL\rÆÐ2C×A2Y\80Zy\7fÌK5\18Þ\81\17ßÁ\97P\96£ü%)&&\8es,*æ-}\<½\ e°³Í\9f\95ùØX(Èñ.ºúÃ|ºÛM\84Â
-Ì\ 4\87Ó(\94\98\9b\á±\92\r¥æÚ»\1cJ\1aHÀ¡\94\10£Ú\1cL˯ÂæÏ5sVÂý\9cK\90Á\15Å-÷\96\90\8d\87\92ñ\8c\8c\1d"24t\ 2¶îÐ$Z"m©\8d«
-\9d\r\8d¶\ fÊÐ4Ç\ eÉ\vÖs{¶_\r×\839·\1d«7\fÑ>\8a@0\95Þim\7fi\r¨Á\ 4\`^¿°Gª#þ8â±G\ýz4\1aá^,\90ônθ¼Ú\91$\85\17\1a\9bå\9c#ºAtL\121<ºNìÍ©Xò\1caÚÔ|\ 5©òLjÛ\7f\925§Èá\1aãb÷´P\86\ 2-\e\9cÊ{º»¨\8a&-×Kfÿ¥DmV@Øý¹¡\169\9dØ¡
-?>í\a¢}HekÎpþ¶²!¥BØ\83\975^}ج7£\19\18,yìÄ ¤ÌÑ\93òy9\8e¾5Þ- j\8e\12vUè$ÊøÈ\ e7\9c\81.Rtr
-\eÈ©?Þþ\92\89;\98B\8bv\82\84Õª«~\14\85\97öLKu\84Á\896\96ä|\9a¤¨\8e\81!1\9f̹\0öqSß<Bp¨--\82PòY\94 &g\9a ¡\95¡<O\9a\1a\83Ù\0É\8e¨Íp°cna?\85>mÎ ×\1e¤lýËGyÔÌÂÄ£õ\8e\95ººªG2\\91Ý\ 6\8bm\0¢ü`Ë\94ÜÌI-\aó¨Ü}U\81¤Ò\7f±`Rö\µd¡Á%\16D*\98Ý3Ò·©à¡¼[\9d\86ÂÌæøX\93Ö,ð»³úM\992ɹÖ6(/ÞÀ\\0o\v¦a°ÌÔ\9e\81Ù6\ 3Ãμ\9b\91fvÇÆLsyu\7fÎȵ\99fr"\akñ5~f8#æ\ 1\r\7ffÏ\94.\94ø";\1fÊìÞ!àR`¿6{ó\16ð\80\19Èm\92á+\84\9a\ 17\85g[Ï%\88<f\80\8c\7fu\rÆjÞm \88\11i\9e£Íé\81y9ø\ 5kÿÀ4 dO¨\13èýh\ 6»W]\17Ð~\83\0\86Á¶\ 6Ëv\ fz·\99\bèç´y¿^À\ 3`}\86íº\115ßê\84Ì%\13eXH2R*Ki\ 4«¹ÆÀ.\85\96\9bV\bSÒ\a±\r¤ßº\15\95å¥\ 6\10RUÍÀ¬ÜÎÔ^\ 4\88¼\1dðNù\Ký\9e
-¶G\ 2¸\85\12£Ãó¼;Éz¬¹9çf[ùj5\1a*\90p¢áÃ`º~óîN>ßÚ\13\83\17Ï]à¦îÍe¨òj\16\9f®-w%\8bÇaÏÏ\a>ú:Ü©\14ÃÖx¦SN=\ 4ÓñÚ\87ý!CíG\91R\91x\88Úð`Ð\8aatá»0õ`×\99DÏçÊ$=[:Cß\13~\93-\93¨Y(®ÑÝ.7<Õ2É ÙÊÏoS£\82Ïg\9f\1e ª\8d_\ 1¾H¡d\8bGÞÊ»Â÷g.øæõdW\9b\1a\9d¶v3w*lÝ\97
-ÁëçÜ÷Òþl²\15&ØÝP\11Øu$6\89t\9fÞ?²í¼¯«\8eTÜ.þ\99I.J\9f\998í[¹\v\1eÛ¾ä(\8f'&\e"Vé\vÈëÂäó9\92[f\96/ñIn¶ËÏ"o¸\84\1c_7\85\11^ûÉ$Óög\ 6\ eè2\9dïM{\eðéæ§P\1dW-9oôû:ÛòZ×L\1f^\ 6ã½É\16ûv¸GÅQèÉ\91\9f\ 5û\89dÖ\16¸qç\1e=_îLÞÞ)åɽ+Õ½³Î\12£Ñ`\ 1?ÍÝÅImÆ`Æ1ÿ Bͯ¿âóÞÝ8·´¥í^Êý±ÏÖZ7?°ÿÎLân\160ÙÂ\89îg&»\1eÙWîÛ\87\84?²ú¸\9dG"~z\12ÈR£*î^Äq\1eâ¨pGw\ 1Ù"v2ò\1cÀÆñyÞ?\0ó\8b?Ü:¼\1e2·\8c4VÌ\b^k¶L¾\9a´>\17=±\10\ræ¥ú\1e¶¦"ùMÏ\9dì\8eßãÄÐú\89À¦Ö60 TØe\85Sò\1e~\ e?!\9dR¹\853ìeY³;®aø§õ¡à\1f$oJ\16÷\e\ 5±\84á\83\1e\82\82\9a\98lØðª\1aD\9fÝ©R\92ý\94|.Þ3Íó\9eâ\17\ 3\8cx%ª\80u_0w*Uô\10\85ôô\96\85ó|\9bL\8c¿\1f{h&ù\ e\ 3xõ\\88Å\ 2\1aåîø\ e|
-\1dÀ\1d·MØ\88\f¢ßB\96\¡\8fH\rDf:\18~\v\7f\8f²í·»0ñßÿ\14\a\ 3ûu.<ì<Å\1a¶\97N¶\9eÏ5
-\93Öü'óó\19\9f\9al¹àk»Ï\10ó-<~+öqw7\17|ÉÖK\85ïç~~þ\1dö'&+Û´\94\9f¸p@ÀÔW$Ò\1co\ 4|ÑÖÏê>[¯¹îK\ 5çø\9e¡\rGh\86÷Áìﶾ'wº;øa\ 6\94
-G\a\99D{w\95mßíö\87C\93QVD\an"^(\v\aª\ 5VN=¿3Ù\8aocÛ\94øJ¦\vXé#\13@,\90üJ\96
-\80;\\1ewn\13ëÉçJJYñÄr\13ÁpNzFï\11\95ÀXÄtº«\95³ý;\1cqLÒ½M|\95\1c\93{_\16K¶ß\bçu/ÉtDJ\8eð¾\19#K\8e\9b3?\v7\17EwÍW\128\15,\80×\r\940â\18rh\ 6,ªÕ\r\18\9aÕ\99\9fÎ\8at$1ê4³\917âY>\a\8dʲ+\81}U.z=Ã\98Ò\94Ä\16ä}Þd˶\1fÆn aR±B®öºPê-j)jW~\8dLÀ¢)\12\18Q\ e>\1crήQr6\96\89R!ôF¸Så/¯É&\8c\v\8cj4)\15\v¡H.ìw\91Àñá\95®\a!-ø¿¶®Ü÷n¼Ê-×ÝM¶={¹\ 6 îÝ<\80mѳy$J7ÞÈ{¶9\99ÙÁk\9f7¹°»6c¤¥³0±W ·\9b\19#\ 5\8bÝ\97
-'Â\ 1\82ûÏv \94\99Þ¾@\ 1ÿU\18\ 6gÏÙ\8emDKÛÝd\9bí÷eô{éM"\89&(\ 2\80Ex¾¹Ã\92¹\85c;/%˸C$Ûß\9a®\81\98&@\97\88\845\8e\r÷EÇíϳ idO\ 1';v\91)è\1eÙ:x\1eýr'ªô\ 4Hì\915\94Ã÷Ë÷lëë.Ï>\8de¿2ÉJÞ\a\9a|u\81\14¨Ýäð·}?ÛÚ·\83ÂSÔ\18È1ðÃ*C\8dâ7Ìl\89קÿ5\99®ç×\91ædêÀ\87½N6pc¹.B\9eÎãå|-\ 3?¥°»2~\8b\91Ãx\1a÷8òiþ·\94ð\86É&´D¿Â¯9(
-óèEô5ܪ\11Oðé-ó6\87 \ f\7fË1À²Io)\12ò\16\9aDÿm[\84M\92¨1üZ0Ùøîå`£G\ 1\ e\83\ 5â\93\82Èð\9dOño$P\13Ø\9b\ 6ê\12?Ü,ê\88É\86\86É\f\18v*Ò¨<´áo \ 4LÀ\82@ÈIÄuY\8e\14}åáµX,üÛè\9d\ 4|\8e\86\91\16H\89\9a£î1T\O\13O< Z\88\9e<\96¤lêÀìK'JajO\98\bÙ4°X\98w ±\ 4Øh\18\88NRrÜ¢Q _\110\1esY¡\ f\19ű¤ô§\84é2úÄCd\90J¿2l\ 1$¿\1ac¨²\ 5l\ãG%°\8a"±Ð\ 3ÀÉ\87ĺeÆ\8aV\ eG\8e[aÌ°q]\89¨²\95Ê\13ð\96¡\98l\98\88&q)\88´´7y\1e3ÃÓ2¤¨±°ê\0'\v³%\99Õ\94Àµ¨9¤DVa©$ø\1e6xáÁ0)zÀ®}\ 4öxRkó\v"9¢"\82Ìò\98\92\0DCã\97æqlÈL ¿\86\18i\89úØ\fGqg\1d}bÈ\ f\87\81:\ fÿ¼IM?W¶Ý½_\972v²\r,ý !V\18±ì\1aèÊiôõð\1a/Y\> Åย\9c¶÷^\ 3Ë¥°È<[;Óü¼×Ï\14G\8b\9f\eF\95\89Ì\89Ю¡îÎ\88Í\ e÷3rg\80/&uhPG\vS¯3Í\98~\8dªóCÐq\12o\v³fºvG,?Û7ß
-÷÷?9ñ\80r}2Û\\17ê\99V\8f\1a\ 2\vv\99YáR,nä;Ä\1f±e?éý*mäOýWÎwà\84v·Å\91§íÏ\85=\84Wä7â¹á´@º\8a\15Á¶\82\96ÒÝ>&\10\86µÂ>¢u\91ë&6"\80k
-}Ûز´\990æÙ\ 1\80\97 xÍ»ñ?4?²°_ÀR\ 2Özèí\1cçÄ\80k\ 2-¥3\9d\13\ 3® kõñ\1cê\85Cc\f\89ïÛ[\b\1eJté£*ì\1ctl\vÖ>z¹Ë!3V \93\0ê¿Ë³@\8e4çOU>
-÷¹°\1d p\ esO\99wWîÉö¹Cæ0\14\15\11\ 5:\89}\11Äö©ð½¯Pý\8e\f\ 4²\ 1Ï\ 2\12\8e%\7fv]\89t\97µv¶Þ¹\aì\ eV'Ã\9cBGÔ\9c
-\86\9e©pØÅ/\80rn\19\9e¾#ëßd\13ìÿÃ\8e\92õBya#ÁòzJ Æ\b|òìÊÛ«a,æN\ 4\1f¥`k*NJÒÎH\98r¶µÌ¸ÁÛÓ\1f|ÔL×\89LÇ\12c=Õ¶\8b\ 4ÄZ\ 4u\9c~âmaÍÏ>,qÐá~\9f\9býO\1f\18®\ f¬ýÜâÁ\r\1c\91Æ$È/\908t\fz¹\ 5qk\11\1eðÌ\8eÅÇ«%\ 6§éNâ#\87s¥dñÃÇC\89\94z\9f.k©¸Þ\83UIØb«(ÃY\9ekÿ{42ªÝå\9e\1a\19 -^W\8flG÷¯¶ìÓc«\v}mîÁów\80¥ñæ\ 6\8b,öÃ\ 6VÛú\96eºNR2Ììª\94á¾4f\93\8dgÉR\86¢f\9d`üá9\8d\10$°tâ\vzwyl\12ËWE°ëÛ\%\17Üç0ÜÓ¡-\929xïec\89{/ÿ \1düñͳÈ\17+z2ÔÕ]¥ärz\82@\=\ 3ÿÆ3^\ 3íÔ,\95úNË\f\8e4\90I\ e{ëÌó\93û&>s·æ@ùž\11\9f\8b¤óA\0£â-ÜQ®/\86Ç\ e9ÆRL1-ùõ+\ 1flõ\12áì\rÒ\800\ e£·~\ 3BÐQ{õ\8a:\ 2W/p\ 57\93ü\9c\9e\87aTÁûÞÄî\8a?y\19D\ 3^¾\bì\93\ 5hnnõ\ 6\80ùr¿DMâxÔ\ 2lþ\92óµ±ËÞ¿âcf\1aoï\1fÇ\85ñ*æá\98Ïq\ 5üô4VÈW¬\8c2òn,)\1f\13\b`¢gÏ·¡8ùuC²tª4ü¹¥¯\89\ 3 52;L6\ 6ãc'úYì÷lï óSKæ'×sð\1akÆó\1d\90ºák\e D¬
-uδ8ô¿Í¥6\f\92ØïÈwgõum
-,¥Èóö%ÕÝLËH2P$\8b½ú°\ fl\93\ 4\148\13gqäÆ>²AGì \88¿ç(c\v°è\ 3ÖL2ݹ)TWó÷\¨ûâË>¹\1aÓl³í\ 6\9eEÙVþ\8cä\16ø\98\12\9b*\8cB¹õ\17ªï5\1746\9a¨ \90ÎÉ\96Rç£í\9bëV©o½y-L\0½rË赧pçp:\90qï}dILm\vÀ\13±«Ääº5S@\1a\ 4J´I\17Ý®ðD¬Þà\mû¹^¦{½Ûñ\98k`\8a§\96ð®Vj\ 2N\ eµ}^É#»\ 5«¾\97\93,\b^¿¢\bíÃ÷d\12\9fÛ\9f\1e\80IçÉ\96
-¯\15\97ÒÐ$íBn\93-ñ¹yÿÐjÔuE\1eG\89º¬I\82ì9\17(\8e\16\7f\9c&æEÏæ\r\a\921\84g[¡ÒgyµsÙa»oNÂ\1cp\91\95\ 6ºäaÆ\182éðK9ÿ\98ï¦e¼Áî^P\96w`6ÿ4Á$g~DÖ!\v
-ó\ 1ò>oM6´\ 1¢0\a>°>ïÃáÛÒO%YXÖB\82\11ÌNbÏj)LZ_\9büüê:\ 4\18;XÏ®SÕ\8d\12\ fÁy\81LWß\8c¶±\87\89\1fÏÖãÅûL"·\15[ÞlÏ\92\8e\få\8dí¡LÎd#\9fãÇÂ$öå/¾\91»\e\19=cß\94½\rô~ï5»\99Õ]\80bRfáÍ%ôõCè<èTº*â\92Ôm8 Ä ±E¶ØÎFbMd6ö\v\93'\1ahdFT°½XKùìç´\94ÏL\9b\95ë[¼\9a\8dù\17Yå&Y×w¦Û®\ eJÉÂNÔ\e \89W\99ø39ÍD·T\1fÅ%\ f±\0\87Î\85æ
-pQcft¤\8c\99'\85\92,/\1fVîT¤\\ 1úåç-ñÊOT\0\bÊ"\rÃôO\80;¾o2ÝI{/\82\9d
-ßí\v¾æØ\9b\89?~/DÆ9øÓ\ e_\95Öyvë\85_®?Yè½æV@ûIÈo_úgdï\8b#5\19\14\93£Rß\17*=\9a.x\86¥bÒymë\0^|ýÉê©Ð!¿<]\ 1õµx\83\96R\ 2w\09\17´\ 1Sí/LÚ\14pö°ÉJ´\ 2«ôçWÙV²Üg(koW\98l(\9f\ 2ÃÆ\80Ö\9c:áÞÎK)?I\a\84åÃú/Ð8\88À@,cb\95®_¾ç\18\11ZÌ
-å\94\8d\ 4&F,ÌÄ`GÝ7\9a\a\9b(9ªãgè\~@\19ñR \93=è*ìÝ\82\ 3Èíò\ 4\\ eg4D%\9e\81UTþÎÖñ\\0¸ÙéE&\99ÚZÅk\913\83À§±_DE\8cö¼\85S\9d`1\eòÞ?AA\81\1fbA\8dPG{%¢¨\93®Jµuq\14Z\ 3Ì^\9fS\81Xöl¤õP\ 2sðÚÈn²\13\872\16@ùû¨\1a\b\a°\9e°iüÁ\1d\0\9a´}c1´R%lÏÌ\8b\1aãóÁwl\a\16q{\9dÅ\88té 0Õ\17V\1c½R¡B¦²ýá\1a{6Ð \v3\8cT~Í,ÑÆ!k]¸oïÞîDÔ\ 1Zç3·\8cd®\91+Ánd\86áæBĵ\87ò¢\19÷N\92\14?Rq\bâ¡âÄrËåöKæÀ\v<&RÛÃâ\10KÚÅ\16<\v1Ì<È.\a$Ü\95°ÂÍ\1a,ÛÜÔv\ 5OýgÌYJ\8b=ßk±~AXn\8a£«ð'ðd,T©\18mVäÆÆO¥YC\8erb²º¹\ 1nûwX°\85\14,\80\a ±\8b>4Ù\0\8b\86M\91x.ºëv7 `Ï«Õ.õ\0\96áý5À\ò)a6ÙxÜÏ\99ä²ä\14Ûàr`-õu\a\97ðOþ±\18ûB
-Å\9d¢ßb\82p\ 4Ò\12\ eéÖñä|\85\1eÊ£\7fn\8d'Y\83\96kTê/ýa #ÃËLäeZÌFËô\ en}{K\8e;o7\8fwVt\82\8c߬À\98\9bN1æÔÏ
-Y\91P&§G¤TZî³Ñáv*R Hà¾=\r*ÀÖÛ`\89É\9e¤ä¢wã*øEoð\eÃ\88iL¶ð\ f\1ek\ 1{»U*e¦\80É[ûöX\9f\7fÃÈéEt\80~À\ 3`\9fg\ 2Ø#É\87lË\93\ 1ó2uÅX\10s\16Gû«~6êõ]A\830,c/ \8eÖd.¸\18\8fÃÝÎg7\1aIç+ùÙûø
-zXW\99äS W¸¿O^ñ\9bÅò×\80=V\1aÜ\143\89Ï\ e0;#On\8cðü\8c\80\94\7f[\0\9d;Ùf\9bËгD\b\ f^2´óåªp\7f\17\0loÍm\95\ 4*·kßx\8b´ûûµÉ\ 6Zæo\vÓPø*éÙ\7fÌé\1fW\11xA®\9fR²4b¹\91\97O¼hâd\12+ÇhÖ©hܸo3\91«\ 2Ê\1d\0\1dùÌGZãM\12XãÛë\9eW\bnÆÇãQ;N\f\\8dÜÒ\8b·Ë/o/k0/»\9c\10Íc\9a<ö\86ûÒ×ç~\ 6³-ìÈ7ò®=í \9a\bñdcðFcf6&~ï3\98ø\8e#»\1eNi^¶I ö\88\15Ò\81¢\1c\v Ø.0^{{@ÀW\e\10kO{á)ÃcÏÙv'Ò\16h\17[d¾k`ä«gIÈ\12Rùë\19¨¨-Fg±äãV\14\13EÄÊÙ\93í\82kî\1f%=¯÷¹lÔS\85ðnæ`,hò\ 6\91\1aå¹Éa-¼"0¦r£lý¾\ 2·K§¯\90\ e\84¤KOW@9\90ï\89Áóæ\ex¯þâ·T\8cmæÅÞˬ\ 3\ 4\8e÷U¡ùW¸S\7fÿf%Lô¡
-»äÜ%6ÅQØ\19Ê=8\9dóȺúä\86\9e¸<\1aý\ 4ôþCÉ\ eØùúè}\8dNsÁç\80W4ûó\9eg\9am\17hWøç~\90¾\ 5¾±\ 38WI\\8a\8f\87âº\ 5ëe\18_Ü\16>ç¯V\11£ñp\90[\ ftÎJ\rDà)?Ë\8c½\85ê2ÿ,Sù\18ñôa-9îsQ0/\8d7ÏF4~I\1c<ÌK\869ô?CÅa»\18\12$£\ 4ó\e4\1c*c\14°æ"$o1\14S\81>r\0\eKc.ñâàëÛ\93]§-\8dÒ\97ã\93\80\8bá£pg\99`B÷8Øý^¢Z¯4Ãñ\97Î\10\8c\85,±&"`5VZÜaS0ûÀÌs\ 2\ 4\1fâX}8ný4\94Z\14\8aõÝÅ\aw\f¬:·\a¬¡6]\1c¥*\0Tçf{\1dë\14߯cÓgà#\83\9eU`\Þ×˶g£\1dìãÿMñEp\ 4<GÆ\GY\89´¹\80n\ 3a3íT
-ºÖÜi\b\91\88ôø%1 ¡¾È!ä{2\19v°f|Ã4\93\1fB%\86 xªRkð\aù°_îæÛ%\99\95\1f\8esPN&\u/½y\1d¦\ 127²ÃZ6î\99 ¥\a\8a\7fQLús§B_\11wº;ôc~÷\83×\9d\9eí\ 2ð\13\11L>Å\ 3ü\83'þ\13z\90\b¤Û»\1c0aÊ\8b\8aµy;\80¾G\8a\7fJ¸o\9bá\99Å\19¨ÜZ¼~{Ód³¸S\8b¤Åùø\16³xfsðèk⳸÷ñ\96ÅóðR°x±\a\ 2óß¾:\10ú\90%ï|
-Ò\ 4\r4g¨°\b¦ë_©@.\1a\88\82u²zC\817ÄÐÂS¬Ò'ó&\eE¥n\87YÏöñ.s\1f£SÑJòÙWÚ¼\ 5»Eêã\r+¼\95^Û¥Ûìí\b\a&Î\9aÅ\12¸>nhмE\83£¨ ÅÓíU-Þ¨7jq\8f|-8ª(ühñôÇ!\8bs¾XZ\9c»Ü\1c\ eÍ)\1eZÐÓ\84\9fr #\1fY4\8cT¬rý-\f\b8\ 4pH´åÓ^ ì©«\82¬\91ÏOGËDÚZé\81¯å%6¾y-pèÑ\14\95 »ÔÇ2z\8fù\83-\86¨\ 2\9dÀ\9b¶\97@æÉá\0XÆ78¢D]\987ê3ïÊø\ 2µèÞ\9d*[n\84\89@H\83\9bfk\86´G}ög-\19Rn,ÑòíWèǵÅ\14\91öÂo\r5¤\15ërè\7fSF\9a´¼ÓÖîk\ 3`Q\1cëÓ=\15Ï¿ß)!u'FÁ¤
-Ò°ÕÚ}{\fÉ\90B,\bmðõ\r+åÂuE¤W¥ïèõ:\90h(!ÅJ\93QE\15é\r\11|-¢U©0Öàë\18+\97©Wå\91\96~:D¾=\84s\1aÜ\1cÌ)ðÎX¤\r»\1d!EXØY\rP]ÿ\f!\ 5,9,Jgõ\9dú,t\e\10©ó\90\95\82\9fÁ\9d¯ãUFºÜ\99l2´\ 2Òð#\96°ª!\1dQ½(þ¢\8cô±è²þ\84÷\ f\ 2R\93M@K[·¹\92\1aÒJ\9aXãoÊH\83ÎWwbÙyTDzU\1a\84L6\19Zñ¬Þ?åT\90\86¶P4\94VAúÚÇJ\9bv[@\8a\12±y´åëÛ\9b\1a9ë("-?E»ª#½ñZ|ì\9c\16?\16%É¢¹\ 2N'mÏxh\88Öu0ÖJ\7fÅÔÈV\8e´V}üd\91¾z\1d²\91FB>ß\9b\80\14ð\98x¬o9¬¶z\8a(#^í£µ×QT\11i}IVT\91\9al÷¾\9fGy¬Áw7Öªýì\95\91Þ\azµR)mQDڮΫ\ 2R0/R´\87pûK\ri\ 1ëb½\982Ò\9a×Ú\1e÷] %¤@Ât{·´êX»\ e²¿UCú\80={Ó9\15¤E÷s&Jå\11R\93M>Ö7O»§\8aôûª]Ë© ý\bc\9f\83/·\12RÀcW\8f\9dù"n{ô(\12¸×{é«"Ý\90iÇT\ré\ 3öU¬\15\10RÈcòµÚÁ¯^vOU%¤\14õèµ²H\87\ 1§lѸc®b\80A:¸Ú\95\ 5¤ÐºHZâÔ>\90Ç ZÏ\ 1Òúã§W|É\0¤·\94\ÓÄ7¯\1e\16é"æ\92!µMÞ¯&\b©ÉFä^ñªT@4±âã{\19"õ\1e\8aÂG/§iò;9y\8bÅo\1f\834í(z\ 4¤@&ûéÐÌ>v³R)p\1dÏßKE!é¾\8d>¾C¤þC¤aÛÕík¥\ 2\90ÞYdH-D®>CHá¼Ä\9f|²±~on\8b\v\ 6iºS«IU9 ñ÷l\83Ô\eVùjäÅO\89ÝÊBÄ×CÙS^#\13û\eK`¼Ú*¿\1dt\82E\93
-\91jO)À\f\ fs\95§Èº(&ëEæù\81Z~»Åj\99\0\81\9e\1e
-ø·4Vk¦\83jO³Xm|\1fFOM6\85çyìÁò\1cU{»\88ÕGÕ¦ÚÓ>ÖÊ/v²§\82\róîÁZ]«Eåíw\1fÖÎ<8Ô\9e\86°\8eåǧü4iÁÀzÙ["ìóCIUÁº\1dË-óTºÐàÓ;¬;õ¦Õ\9eÖ°çëX\96£ØáóGì9\Ì«½ÝÀÞ¬\91Oµ§ßØçË\9bKöT ØG\ 4ûü\9exTÞþ\88a½N" ö4\83õÃý\98ÊÓ>pmq\9fë>¤ò|àÀc_Ä\83ÊÓ¡\15ÏÝôJjO[øýÓÕ\9d*ÅF\eüqAÌUÞ\1e;ñ×ïû\e姡޺\9dHîÞÔ(FÐ\r\8bÝy\87l*\aðd\1c\15É\9a¦³\16_%\93b\9eÊ%\1f±[Z\92Á»oå§Aç\a\fÏ\13Ó'µç\9fîdbÕ\14=Í{]MÖã\ 3\12-µu\8cÛîÜ\86~d¤Wêvk\13¹fÅ\ f2ÇJK\99s\86¤ E¥q[Æ¿³çKítä\159\97\85·bÒ\a~ÃJù\9co\94Ïçü÷nðZk˾öe[ÂÞ\ 4\18|"ÌÖ\80\1dYãw+ÆÝél\97ï\82Üô?D×vàC¾ì\91»\ 3\84ë$Éû¬Vÿüvè\ 4+ðª\b\9c\9dxC"¬©+Â~ÛðrÎNýA¢÷!Z\ eihæ²%-\ee¤Á×\17u¤W¥±_\86\14h1\1e-Vjç\9eT\90\ 2ø>\7f\18¨!ýÒ@ZöÆ$z\7f|sc\15\90RtÜMóH\ 3\12¤ÑJðeVKpHËK y¯\1cb¤ÁÖµÉ& ¥ö_¸O\15)â6\15¤À\9b\ 4\9eÃ\872Òàë;ò\92Äh%\ 4^\11ªH\91ï \8a\14z\ ec\ 1)\18\8b\ 4-©\8e4úøô¢\8e\14Ú#ªä5Ù EÒW\eëÓÁ¬Zã\1e\16=úÄòy\»\1d\940lË\84!\88Á\8f\9a±vÎ\ 6Ó\ eJ\vdó×ÂÒ\b\91dé\96öÀO·¿çYî\1f4sÈþc\84\vGYaÅgpO\a÷ð\7fÞÙyam
-6B´\15¯§/÷\1a\82h\8aBq©ÆÍ\ 6v\ fÚò\8cX0Aôw!\9b\rý\81Óù,õÅX\ 4u¾?\ 5è9\96P#\ eß]\9a\r6\95;\rðõÆÆþ\19¼\14\ 4#_\16£\ 3\8dß\vxñ\93.3q\18vÀ¢.§\8a6ö\8fçaÃP\87±ù9q,\8c\0p`^B@1Ýsþ\19Y°\ 1N\ 6ÿ\ 3,\99ƪÚ\9dâ\9b¨tÉSô0\7fXzâ¢À à½2Dß\e :úÃ\8e\ fùä\8aãkX\84ñ!]y0BþOSì\ 2)Ì\1f°±\1fô毿\87^\12ÛyÆ#\92\85>\19¦â'ùÔù\83±>f\84 ÷\91ÄRg\86\84G\ 6\8a\8f\90h±»2³\97_·Ú\9c%ð\15ÃÉê\9c\85Mð«W\ 3\94צ;Ôû\80òzljxå$0%º³ó¢O,©èñm\ eDÏ«g+AÀ\8f\1e\807Ù\8e\99\8d"\1cFY\ 4\82ï²Dô8o\10WªÊWÏNµ?lG\80lG\7fXÚ¡ «\ 2í\8a\1f]Ùª\14\vnåUÉ8>
-CKã÷5\ 3C3Ùd\83\93\fÍkÕ\1e\1aó\87lønR[gr«Lãrce²©©#aT7̨\94\99½WÄHzñ¬= \93âlÉx\aé\b¾\ f\ 1e>/ßßÈlu1\8f\81\89*ø/A\98¾º\96\86\ 5X»\8e\9få\1d\9e\93\19ÿF\11Ø\90V\ 5¦
-J¤\91¥ë\ eß\1e¬»!ñc`ÌJ«Nbó\83þ\94`\bªª1\97ý½\1dØz\ f\1e^&)nË\81Æ\83\12ñ¹Ï¡M¦\0\13\81W\99Pø\87í<\13Ä>ä\r0>©\f\94\80òä\1c¨Kȳ\10õÌÚ3l\92÷½«\f²þ¤d\85 ³ËPL:%Á\9f\83)YD)m\1d§-zÄZ\f\8cê\85VSL\8a6£Ôb\14f·,\93ªhUJ\15\93áù\1d\97ñÁµ½bÀz\12¬\v\ic\15\12+fÑ#ÖíСÝ%è\89\83N\11¹·Ø\9dr§xkNͤ\93vɪ¡+\85É3 <\0=\17×\9a\86\85UÇæ\17Ï \8eIwÄüA96èw.\ 3\f#¿É®\12(4/G\ 3\93*\14ý~\89¤å\ 1°\89ýçåb\14Ó±ë\8e\19ä$îx»\18Åd\12íX\8a±\91-.\ e³KýÈ\1cW"÷ÒS\15BrëX°\8d\19i)íí´"UôZ\ 6²\82®ÀÝ\99\8a¦\1c\13\eØ\8a¶\ 2\18ÐâêB«²\ 2÷Pî\8fq\94\9d*39\98l\81ëÄ}í,êè»}&}êô}\86Ã\bêcQ\15\vGLS_Ñk\11:b2Ò\15=) Û\11¸ûöÒ'Φ\89ê²G\1d1Ù\ e}Ãø\8f²\8aÚ¥h\rm§ä\19¢-MÖKBAnÄ@|z\17ì\94\10Î\ 6ýù®\ 2)0(\1aG jHl\98Ozm9F|¨-\90ïªÌì\90z|º\9d\92tig5*\0¤Y7\aK®z\19\ 1\80$ÿwÕ¸\0Ð\1eßÎmW\1a\1f*ó:\92èz\96\82\9cg\83\e^òK¹6í(ìpWî»t\81ñÑ3B°-\8dÅ:U|ràñ\94?~T\99Ád;\8eX\9aK\\89X\b
-\8c'\1f\12ëÈ%.!\96t\81ûX-&Yâ«;é\12WqÒt£K\81ëøÕ\95\91\b\89f,au§áç\1d\86dE9\8a\87\8c\863\81\ 2½@\80~H\16jä8n?3L²º\v¤»í\aÕ¡\99\8c\ 48\ 2×±\1fì\9cð\ 6³öï\0\96îæì\ 1Éuª(\ 6«\1d¥\93LÓÝ^*Ñ\rÇ}Äú\ 5\12&t\\fD%^s'\8bרs²U9Ò 5¥ÓñÆNfJ\aÒ\1d\9bEF|.GQÓ\98>\9c\83íýQ13^ÂH\99*ÝÁµ\83\80rKXM\rÞ#5ÈêJà¦\ 1Kx{/U\83§\97tçÖy\ e\9f#NÞÞËÕ\9fÁh´\98ÏãO\16©Þ\13\rÈdÓæt)ï\ 4O\14\0"\1e»?Ðw'\b\0@\16\99¢\83]b3\87UT\9d\8a-\v©#Ut:z\bbá¬Y\ 5Ug\a\98vÑV,ø\94\a¿9Vúc\16:Õ¨ÂKëÄý ñ¨Ê\8d\95h/É\88¾Ó\88WA`|¼Us½\18\88·\ 2`Ú\8bÏ\90L\86\8b\ 6?7\16\ fgÍé\90AQÞãÓ\87ã:ª7\8a{â\b\8eû"£\12Ù0gÁñ\1aè\8dÉ\80æCÀ|g(Ñ4ÛöËé<t)_Úgï0\b\12\ 6\0\93ù]'«\eØ/ɦ\8f±=>UR\8eo\b#ûP&\89\ 1ª%Ñ\80ë\12rÊ$\1aø-nÀ\8c³Â\9d\11\1dKâ¥s¶D\83ó\ 2ÌÊ£,x-\89\ 6@)H4&#âØ\1d$\0ì(\89¦l)Á¸tàìµ\ f7â]\17Xû\87Ù\ fª<¦\vÇ\88\fÑ\86\82ò\93\13FÄ\87~oüªN=ôÄ7î[\8e\8b\ e"[
-\13æÖÚ\12b·\ eá\1f¿`£Hb\17\8c\82ã\96
-ôy\ò¤.ð\9b\91\890\92s\95\a\8fªª{Ï\ 6-³\97® d9]yòF.\0¦/dMFÅl×hö\83\92\98á×~ùu«íM\e0¥Ñ¬I\93\9aT%\8c.\1cUÓ^\15\8aTWòpÎM\81` ð\ eµæλ.\1c£\89G&E\ 5&\avZ¬ZÐ\85¢H¯\1d(Þ²[®\r\aW5\ 3>\8d\8eW\8d<¾\97çKØ÷\1fêY\v¼5nX\e\ 2`\9aö½\92.T\89ÁB`'Ú÷â9ůB\97Ðb\83«\87\8bh1\0ç|í\83* \1eÎÎ B½Q\ fÔ\89sáôáàªÚP[\17*H\18üÊ{¼6ÔÐ\85q\a̵\96køãH/B% 0\ f:ò¾ãü}\9dä)!\rCU\bÅ\1dêî("¥IaAªí¾\ 1gáDK÷0Î\8f\80\1d½ºUû\85Ö¶fTAKÖJ)\16Ö\9eI\93Ñ°*\9cË®\11+Si÷Täñ½h\86®ÕÓéÔº$â\bIÜR\7fy)9iDîåÕ+SK²Ì #ñdU'íUK-\893×à5\14\87¹kòñç^fò@ôQ\8bK\12\87\99ä}:¾\91Ñ\84)\b*¤1/GíÞ@`:Ll<BBä^¯n\8e11ä9\88"N~Eq6£ÀT\16û\90VJ¾\15°\88yB71\12uI=,,_\ì¼Èb@âe1\83ÇÅ\94ú\8aìÌÎ\ 1ª\96KÕgåewÐ/XÇûb)v\9dé\95Ú©F\11UÐ\99l\97©¡skVÐ\89*\86Ϊ¡\13'Q\1dVÐ\89O 8§\86N»\82N¨\16<¯\86N\84T¡\82N\949|V\r\9dv\ 5\9d¸Zð\9c\1a:í
-:\8djÁ£jè´+èÄÕ\82çÔÐiWÐI«\ 5O¯¡Ó® c´Øù5tÚ\15t\90\93/QC§]AÇ\8cå¸\1a:iB²FÙ\e\1f\17àvßôì:õ
-¬\1f\ 3]2\10é\ 5\9dÒKÜ~Øh\eçL\16AA\1eÉ?9\19ö½ µ~\893"½\rûQ¹äê{|ï\ 5i\88é\ 4:queò*\9bÃL3\89Ë¥U\84§\99\8f§´Ç§\ 1L/\ fKe|ò\9a\11\ 3\95s\86Ç'\8f\\9dAô¾v\99(Ó%C\95\8fz\91+\8d.m¥vò±EsGÈ\9a^\11V?\9d\19=\ 4\9d¯ï´SA\18ÏÂ@2Hñ\9c½9±¥\84\ 6wv¼
-\fíÃ*\e\9abÖ\8dn±Û±©
-þ>,v;:b|8 \82Ï\98\97¤Wìf<\15DUZ\ 2Â($\83\9cä\86@N6Z¡e$\ 5+5$62\13\ 2\85\8au*\1f\8dɬ!±×\8b\90\18.2\1d\õ¯ô'B±ÄT¡\8eO«\84ñ¨À\19\8cA\12\1a\91^I\98D%p&\r\1cBK×#\r\93\94!Y\8aÒì\8e3JÓÔ5\9b¨*ÍP\1dXt§gN\1cQÇ×Û\1fUq¢QÇ'±¼\14ëø\â \95zi\1a©Z\ 4#7¥uràËZ9ðõ&\1fYÖ\99?¶\8eO/\aÞx\1d\9fb\86¸¸æý\88:>Y\ 4S\8f\19PF\84:0\9d\ 2\e£ýB>rW}ÏüèAê\9e\12p\f0õÝ\8b\13(¦S~s\1cÅ\ 2ç\0\93\ 6~\99ã%%\89N¨úI§zÆ\90-[\91Ç|\ f+\86\84Ån¬^NCZ¨\0\80ó¢çì¡Õ\8dëJçiEÉÙSÈ\835àìíÒ:õ\1f\82í,\0\90V\fíÒ7Ç\83\90\0HÑ\98ÂÑ(Rï\95\9fi5\9aè\15Ê©Ì\90È\82\1cì\8ch¸aªµv\8aËUºöuÉa8¾ \16\e׫\92;Po*\96\v\1cPP6 \83ÜQ©{¥\95Êï(PòªØOzºS"¹¨ÆJjGªp2P\9dG\85-\9c"«O§@NGê¨WDÉ3\88N¶Ç¾«ª+^Xê&C+\1eÐÉðrUÊC\12xì»z\xG£rLº\8b\ 3X@îW\1ad\ 1ýÊ8I\97ø\13A\15;uTDF£K0#â2ü¤\15\91áÏì2Ö©ã"22/I\1aÿ½ÝÉ#2°$é\9c\88\8cÀc«»³#2\81ë¸ãZÉ\8f\13K\18\83nÃÝñ\11\19U\7f\7fuwvD\ 6\f-èPÏî0^\86f0"£u\9e\12*C;7"\ 3\8bÐ\ 2²\8aÔ\13"2w\ 6"2&cõyê\11\19CÅ9\9c\r\ 3©sTy\8ef\96\84_f,s5V:u¨\86\8cå{Õ\ 4\89cj\12ãO:\93¨ê\e\1cä\\ 5Ò\9d\88\81ÒQ\ 3ç\86Ý\v\99³j9½\86\86æ4Ê\9f0>¦Ì¡÷\ 6S\17ôÊÇ`ê\82\81jAݺ:}!k2PWg¤~Tsá¢ÊG\8d°\9b\91\ 4\11\11uÔB RNV[¿²T= #íò}Tð\9b:3\882»ô7\1fN®\87\93úb\EÜ¥ëáÎ=\7fÌX=\9c\1e\8f]¦\1e\8e9IO^\11w<\1cíz8ã\19ªçÔÃ\89ìdQEÜ¥ëátO\ 4½H=\9cF6\14gj^ \1eN|\93\91Â2¼P=\1c\93\ 3/¯\88»t=\9cJ\15ç\85ëá´}1µm\9drws\81Êz¨àtrÉ\rçD\ 2P¸1ÛÒ@N$\0F\`í\ 3z·\fìX)\9a\ 1¢LÈÎ%Ì \ 4å 3øø\1d^\ 4Gê<ëöF)\ e\83à\9c]c\8f °\8bP¤+E\9b4Ge<«\9e\ 1¬\94\ 3o(ã\19\18â)\97|\19\16?òÚ\ 4dòú\f,Ã׳\ e\85åâ\96\13»Þ©)ÆS\93í?ò\95£/ÇTS\93í?\86ËIÕñ¼RjÃÑ\8cÖ½ÌiÀ\b\8eÞÙ2\ 6¼W\ 4çÈe¨¨Åº\17Y\86]U]¨~\9a\96j\9au÷àH`½ÓÐÜ\9a§5\82ñ\1dd\15Áß\8ev¨U*R\aWMÕ\ 3\8c\8d\12ðù\92\15©Ï\97¬H}¾LEêÇÏ\ 5*Rñ+ïE*R\ 1\9c\8bT¤B8çW¤B(\97¨H\85ÕkúÇ@ËòúTë·À\ 2Ñ84ÕP\92\91ôÆ\1c \ e\97a\9f:;®ÅH\18Q1ÜÙ\19=J¥pb-f$£G:H£n»þYÐ\97(\85\13V%[\f÷[JáNö+\8f*\85S?\83è\92¥pLF\84NyäÙ¥pè\fÕ\9e¶.1è\9f\riUÁ\84,X\9100Vø$M\90Ð?\11\9e¿+Ma~åG\v\9f| \1aC±\1fÅ\r £\ 3È°_;Eûî\ 4\eæU~È°þæ\82j5:,b3°\85£u:/\14å~¤òÔê^õ\8b\9be]\92\9dô-å\bQ\16´v\ eª`°çÐÉ\1e
-øÄ×¢;\9a×\11\8bgöÝ\82\97¢×L6x\81xßâºOà\16O¡ù\f/\10oÁ\vÄÛ\16W;\e\86\9f\1a°eÞâ½ï\870ÿË"Â*£ÛÍBÜe.â$½.\8e©Å\12ù\95\92b·\86\1f\13SYRwFÛ¯7âËS¥Ån\8eáus¡Va\17t~h\15»õ¼ªHÑ¥Ú*HÃVT\16¥^a×Ó*v³\84Ô\91ÂKµy¤\81ÃûøÔëÎ\92\96O\8dKÔ\9e2M\11RÙuqðªiÕ
-»ÐÌ\95yvmÕJÀ^µ\8aݦ\98\f©ô>¾Ï\8az\85\9dmáï\ eÕ\90\ e4\90\96±¸æ}|Ó;«*RË\875ÜQ#¯G«ÂîªT½\91Í*\®^\84\1e}â*ñöcCíêVR\9aÓ«Öòª~k1\0\91Ú÷\17â\83¸á\98\ 5C\94\8f\8fqK\17¼íqÈ\14ªVìX?åöÀ\82mܬä\89òò\88êI¥=Ì=V[ÕÀ\93rÔDý\1e«\8câQͪ9Wê¥=ºw´\1cn~)ÅúλINÚ¥½,ÓþR7É)M\9dÁ(\Ã~uN5¤\10é}/èß8"ÉëÓ¸ÊL~\85\9c~\14î\88KäTǧ\7fï\9bÞe#FƧt\96ÚÉ%¨Fî\191Jt\9d\9b\18\8c¯\17lR\v~\18¢\938æ©~\ 1\1dïñ]¬\9aNɽ82\ ec \9aNÉ\ fP\8cÂ\9dUM§TK§\7f>̱ÕtJ1A\93íÒÕtJµtp½\¶\9aN\89sL\17¯¦S\8dZ_´\9aN)\91ä\98\13B\8cUÓéå(^¦\9aNi\9fFyïõ\9cj:é\9c2µtê;#§VÓ)ï½^º\9aN½fä\92Õt\ 6Ϲ:³\9aN\94xÏ×Ò)î\8a\9eUM§¤\8cL\92 á%ªé\94º$Ú¾P5\9dR-\9dÂ\8d9gVÓ)Í\1f\7f&äŪé\94@±;¼\17¬¦Sª¥S¨\199³\9aîT\8a\1dWM§C±\vUÓ)ÕÒ\1dI1\ 3ÕtJµt*5VgTÓ)Y\9eòÚêó«é\94\ 4\8eôÞ\84KTÓ)í\96 ¿ò¢ÕtR\07zÞë\89ÕtJó¬º3rr5\9dx\86¸\15\rýrb5\9d²_©J\8e\13«éDÄàMIõJ®S«é\94\ 6$:\83HÍ(\85\9d:Ó\ 1Dûûqú xÇQÐ51´
-ĸ>|W\91\ 3(9ñÔÂ']i!µ..q_\9d\8euq¡ûêR
-·Õ)Y\17Æè¤{³\88IQDQý^8Ýbxc,\0Ï\1cÖ»\89ÖelêfêÊV1Ó^ëv9½+h\15»t\90Ý\ 1;ed9\eê\12ça\1a\940\1at
-\e\970ª\1eQà:¶ðK=¢;¹Gt\98}$\ f\82©Ü\96%½èîÄ\9a5!^¬\96\ fcÐ$7xÍ\9dÉHÄøìkîPìBï¢;\83\85t\178=û¬kîÄU\9cª\17Ý\19/SR¹æîÈ\88â\89×Ü)F\14å\17Ý\1dY«txÍÝÁIàJ\17Ý\9d\90ì\ 1ô\82è.öSϹº¿`\9dÅöþ2§uÃy\89?\9d]Ës¯\9d\8bÁgBê\16Ò)å\1e\1e\99k\rçüì+rîUs\7få\99*º\17Ô©'q\18JCwÓ餷\19K"\83´\89\18âdÕ\e¶$\e NÇ¡£\f+ñ$\8aNì\8b\1dµß\ 3Có\86\v»4²ÓAG\83Ú\11ñ#²¡\90Í\7f\99l(Tû\7f6\8f\ 1z\eI\842Pùx\81\10\ 4Eb°*̾A8Ǩ<ÕÌ.\bç¤\15x\0\ 5¸°ú\95Â\ 6.MGÀÔÏ\164p\ 3»¼°ö\9bt\1c\14Ö~\93º{IÆ\v¿¾ICWþ*Øw\87\19Ý\0\98Ë\900\13é.UR¶Ö\88\94ÇÝ÷ªµµ\ 4¬µÃ\fê.sèö-\99FB\7fù\83Ì\91Ó*S:\97¼Á°s¹\e\f;²B\86\13×~ws\94ý®^ùè>Ç\9c\10 hfu\1e\ 3çüS\ 2\188§ÝV-ñ_ \1c\8d\94¡ãrUÁ\ 2Q(d8c\87\17Ø^\87Ë\10ü¦PÈpB\ 4þ\84\eî\14ë+»g/C\11¨ËÝ[wÃ\9d1küÜ\eîD\95\8f\8awÜ\1dYy£rÃÝI7å\1d]O¤rSÞ¹ËPvÃ\9dæùü\ 6êC\8cÝpgR\a&/¬=é\86;£§\9a\97?~Î.ì\82§4ãW:'Z\18/¬Å¯\14ýFñÙ\83Æ\vkñ«ãnIW|$\rÔ^èV>rÕíç\9cs\85à\18\8afiç\!8ç\15Ö"(HW\9e_Xû¬y.\\ 6êÊcêÛ\ f\92k\f]\97'¶aäeL\87É5°~«£À\14ãZÊ÷¾i,Ã#\8b\98^ÐN\93ª\16S.cÒ*R\eª\aïØóú\8c:î\0ØÌ@º ÜmW^\95\0ØÂÀª4PÄô\82|÷Ëø\95}JÛ\81\97û\95*:)îðiä2ê\1a\86²¨\ 2è\94f\19Ó±\86á\90Ùo\95a\ 1¿^âì6X\9f6\16\1d\90.¿)ïØ\1a×¼O=ÏN\10\ 5²sà5*ÂÎ9\9aê\80b\17»îqH\v\e°\9aµÕ\ 6l\98¼/b@k\1a¼)ï¥oü\16Pµ½$t#ÝÅ®{\ 4]Ò:»Ãp\8d«°zS¡\87µ">v\ 6j4E\11»k\93\8d-Ò»\8b½Âê¾6ü\93±¸G¾;XÖ\97Gµ}¾@-vÍOÝ\8d\8cbì'Ii\1aEã6J@
-9Yz\ fÛ\15\11\8f)×Ã%¯nTëá¨ý\97O½\b\ f`I\12Sù\9dsná\1e6\85Ûõø*±7Ê¿o\ê¿Èjÿ&\8f-U¤7ø]\7f¤\86t¬Z\9af²ÑÑÇ\K4Vii\1am\9d\91jõpÑJêçzÅ\8fTV\ fç\14\15áñw¥\89\b|K¨"ÅJ1ìQ\ 5iØzÝ\\11=%¤&\e\1c«FÁáU\89\ eª#-{¾ºªHí¤#2\13"Wò2<\9f\16Ò\9a]\15)EwR\16%¤&\eSû\97ùô¶%³JÆ8ôè\13;\11ÎüÛxe¤]o¿Z\8b%\8cJË°õ§W|©ëB\fÍX¾cÕ$,\91ùÈÊ\8cN!#±:\88ª\94ö\94º\8aâ\15\9d\81´IÆ\13WØ\ fz/\ä\12\82\ 2ôµJÒ\1d+½\94!\8d\vè$6¯Ò-fF;e4\11óp£K,ùÁ¼\95´Ïã1jé\16dá\\85\9bY\fG\92Þ\vº\97 \b\99\90Út:&µJ§*Í¥ê^\1dW\95¦\96¡);§×\10?\1d\99¥¥\9aÛ\ 3ǧ\9b\93n´ê\ eØÝ\9aëÅxÕ\9dN6\9bé\88N©\1fxsäzIhÜJÏôæ07VêZ+\1c\86\89nþº\84+QÔ>\8eÖ`\föÕ³;'¸%¡Xñ£«\9d
-ctߺx\91]\9eW¯õüøXñ\12ç6Â\1a@nõ\9e~®5ºQÏ`@\93\89\8eªV\ 1ê\1cØi¬\ 6Ðp½\98\9e×RÔÌÒ2\14\1f\93&\8dà\87{;CâG{ÌF%Ì t9\1fy\18¸22\11\ 6êà\aW\ f"au\90usäaW\80X\1aGás\ 1\1a¦²ÞXTe\11Ýʯ\95\91\a\18Uì\11æ\14\1aÝê6`¹©\b}C\85dÂN⸬m¹\1dQH\16ÝËôÇ95VC\9ds\ e\84p\19\92\96êÕmêç\1c\18°ÆÅ\96ÒAÀóØR@Ñüɶ\13\95ê÷\r\97rêÞys0\7fj¹=\8b(¥[¨c\98\19(\ 3w¥\19\a¦Z¯Êß/v\f°£9^\83bºµ<ÇPìRg\8e\0`ª;\97§PL£ í \X²Ã{b\15 QëPzWÚ±U\80ÒU©^\ 3¨pªÆ\11U\80Ò>¨×\0ÊîG>²
-Ðh\r +ùU] 5\10Çݨ§°/vD\15 \8a¨;¨\ 1Ô¼#U·
-P_µ¨ä*\1cU\ 5¨BÏ\83\1a@\1a+Ur\1c}£\9e²\8fl´
-Ðh\r ª\8f\ï(\8fê¤KùN¼\91íÈKùT+R/z)\9fNTáB\97ò\99\8c\v\8d3.å\93ɱßt)\1f\13\1d=õ\ 6<£\97òqQ¸ß{)\1fä1Ø©ß{)ßñ÷W\9er)\9fbT\ 1v\8aT¼T\13ÙÎLoôÎ\86\12ßê'¾Åì\12gC)ßêwt%\97ʽ~'\9c\ru½~ªC»ÀÙP½~çä)\19¿×O»êî\ 2gC¡{ýÎ?\eÊȽ~\86ê+Ͼ×O \8eR(C\81\93Oº×/¥y«\9fÉfÀdç©£~¯ßq\95\§Þë'ç\bé~òL\95SïõÓ\1e\9aæý\95GÜë§}«ßÙ7\80°÷úi\ fÈt¡{ýô2T/s¯\9föEX&Û\119g\1a÷úi¯^Î\1a\97\97\1f\1d{¯\9f¶¢\93Ùc'ßë'IQ:¸Õï\8c\13¨$÷úi§N\99.t¯\9f~5Ç%îõÓ¾Õï¸ûøÔïõ;î>¾Sïõ\93B\91ßê§rRëÑ÷ú©§\931X.s¯\9fö\86
-#Çο×O³<\ 5å\8d_ªJLýV?yÝë©÷úiïÓ@½\7f\89{ý´\13®U+R\8f¼×O
-L´\9bpfÝ\ 3\0¦#<LÆë\1eH{ý\8c¯ýsîõã\19MñV¿\13ïã;ò\14\ fÕûøί{\10ÝêwV5GGÕõ\96m\11\eʶ5p¯\9fvb+_¿Ï/ÃÓîõÓ>ÏC¸\97ç¼{ýø\92+ÅÂhqÅ\90ñò£Ã{ýôåØ%îõÓ¾Õï2÷ñé%i\18½\8fïäÃt\ 4ïõ\ 2÷úqP\94}éãNo8¼×O÷*>u s½~ZÅ\16\1f?\8c_yþ½~\8aìÅßêwnU\9a13G´_yÖ½~Úf\8e¨²þ¬{ý\ 4j+Uá\9er\1fßñU¸*÷ñ\9d\eÍ\92ÝêwÞ}|F«p5r®\14îõ;µ\18\9eI<û^?É2<¸Õ\ fa¹À½~\1\9bò~\8c\1c;ÿ^?íD'dÁ^à^?m·\9d¥ØÅj\9e\94oõ3\1e·\94RL~¯ßÉ~åQ÷ú©É@æV¿\ve\ fæµoõ\93\9d6\7fò½~Ú·ú\99l\ 6LC¡\9cíÄ\82XE\8d|½~Ú·úéØcÆ\vb5oõ\13E\14Ϻ×ï\ 4\eæ\84{ýTg\12mà\18®®Õ¹×ÏH¾åù÷úi+\a\18\1d\95«\arwh£\81ßÔ\95\ 3«\17\ e2>øÀ.kÃ`\93NÜ/\ fí\82ß4\ 4¼vâ½´l\11Us\88øi+\8ba\81Éiä\85e/Ù]u¯Å$@e\ 2| Ôàj\9dgé @I3\88úd\9e¢RÍyÆ¿KÞeñès\8b°§®
-¨ ¬§ª¸Û\8d\ 1e±}¸o,0\10d±÷*3\8bïö;ëN¤~bîd¢ùênÏ\17\e¬XüöcÅoo\1c+Ý?e\81ä/mæ5¬ü\14óbµêc\1f«&S¬¾$gXë!\10ÃÚÕy\17ëг ÖÅvK¬Û»ÝcÏÞ®\ 3{ót\9cØçðª\8eõz/\13¬ß\fì°¯À\8b\1dûzp<Q\14UôSôÇ&Aíñu×d£öý¨\83¶Gn IÐÜÁÚN»w>®Ô+\8f±I¦ûù6µ¸nl/\8dëhb\99³5Zå»\9bÙÂvu\15ó?:¬Ë\91\1a\8cÝÔ\87ß/\85¤\8b+\ 4´ì=Ûàã\17\9a\12Tzf²Y²¥vÛ\86]\93cðkc£(CØyAõ¥4\rËIk\16oî5(º\ 2\92½G0\9e\93\11\v\91
-P¬ü\14\ f\ 2rì\7f°¯dÏIQ\8f^·0Ö\83\91\ 6\9d/îdÀ\9eÁJ¹û\1cV\9a\8cî°rýqE[{á!¬\µ°øR?E÷môñ\1dó\97ú\16¦&ñ +v#}tÍ\1fæ¯\93\1e\99±%]>\92+û¾\1c+!Þ*\1a\9a }x½ÏTÚÞX\9cÉÇ Åë·waÅmÁr]\88ú-\1eg&\ 3\7f»³¸\9f®\1eaÙí#|\90¶x³\81±ÅóðR±¸~¬`¤\83\9f(ËÓÌõ\99\84\eÊÍkÜ\95Ç\13&[~>ðãp\ýL¢f¡Ðä\94\8aÄC\14|jmqÏt\9a\ 2\9fº?ÈÇü\8b+\1fz;p\1d[í0Ìáó£¯P(:ØOߤ\v¼Qq2ø&ö\1f7Z/\157ûCÜá\85_½ì×Z\90\ 5\ 1¤À®8ZüÄ0\7f¨\8aeW\9b\1a\9d½\7f~þ\ 4R`\17c»\99\8a8\85\ah\ 4Ü\83[\80Eôhp\9d¿å\1eå½Â\ 3"÷ÖIs\ fª~á\ 1°½¦YîA\1dç\1fôÀ\84Ù\96\98¿|ëB¿\ 1,ðW1îrÞ#4\17c.W}\80Þ\1e\17Pe\1fn\0Çê$>éï=xÐÄ¡Ävã\95t3\0\88ñär\17<¶}ÉQ©VñáÔíC\14{ò \12á£ëH\9c\9dA f\19\814òÞâ°\89\1fÝo\88\8fÒU8aO8ûÆS\a\81\85Õ§I+Äì\86\95ÇHa^\13No\10Î@Û\v°ðh g:\93\80X\12\81t{×Ì-}SW¶1\9aÔ
-÷UKKð60îÂƼT\9bËÒ\1er\84³RJ"xp¿ò2\10\9fj·|\ fs¡]ã\9a,\7f¾E§ÙÖþzn²\15ßÆ\r\f\8e\vw\17»/\158\e_À8ïeØÙxí\ 58Æn\aE\ 3/¤##\8e÷\9f\19®$
-Oy¸ñÿìg¼Eð @\1e~:Ѽ<ã¬!\1ezF«v\ 3?\ 5øOA\ 6D1±
-\83¯o,Äþ¨\ 4§äÍϽû\86ñ\9fpQo¾\88\1e\18\v×\9f·\80øQaqÍ.\90Åw\88\eË[\98\113\98ó:\8a\11Ë\96è\899{\99\ 4Ö½\16k)¾P\97\19\10ã½2\9fYç\84W£\9f>\ 1iàÆY\87Dý\ 4\7f^\9fa)î'Î\7f"Äí\1e¦Aø[PÖ\e\13êÏSé«û\9a/¸£ÎR©øÐ\8d²²o·
-aä0\1e\86\1cê\v\'\93_¥¾óýM¬ã¡ý'HÆÔíV°VrDîÕ]ä£p\9c\8e\17«åtÄ\1e¿Ù\10Áâsî§\v\14´«à\8e\85\82I¤ª3~z\9b\ 6\ f\1eî
-ûA£\ e\1eܦK±ëæ8ÿygEuð5A\91Ã\1eÚùì\8eÐÝ\8aq|\80Üt2ÒtpuçD\v\8dk\ 2D&`l\1f¤1$Ö\a\r\9fúyÖü\0_#@:\87p\aÚ\1c\ 2\7fn·àkÄ\85v߬ð¨¬V\90\95\8cqÇ\ f'\193^T\88\ eåæ\e\90\a]\8a\11Ìd#\92dL( Fß\15]ÏI/óq8ûð\11î±Ï »ß;EbÈ\13Û¹áon¾Ë@ª^U·H Â\1e:\800\e.rË«u ÷ô"$dz÷\80U"ÝJþk\91\1dõßÝæ8y\18wÂÉy\0\ 6a-\ 2¨\13Å\19Ú\95;\ e¨¢¦uðö#+ôÊÓ`\b~õ1_+×\19\7fá.¹Á\0\94:\86d© ±¡®,w\bø«\8b7ä\ 4\ 34/¶7\810\17kß\9d#Îaîï\ 4£S\16bAf\1cÐ\959\1fF\0\8ey}Ìz¶X&;zz,\15ÒîÐ]Ö³É8Kítä5[ \7f=æ¾\1e\9eó±btä)R½x/ñV[§ÊËîËG¶\12zÇ ßÍ\90v\95Ø¥V;\9c\107{\v3{\16A©ïF-Q\7f\ 2¹h \1a¶nóùܾþ(ø"v:Aƨ\ 5\10\80\96Yä§Ò¬\15\a\ 3»\ f\b«\19²\\80\r\13Ý3wpÛ6\9fù\83\88¢\80V\ fi¼ÖÌÄ\8bä<·p8\9e\8a\95Æ\1cÏüdýÙBu5§K\85%\9ec\95`aÎY\91ô£É\ 6\8d¨+wj\7fc\91yeF1'î¯\v\1f\85rùv\91m\17\ 2?JÃE\92_yÀ\10¢_ð}\ 5\16@\ 1[îD\aÿ5<½Á\874)·â¿\80h\r[é¢{þ6˶»Ï\94Év\14©!f\ 2È'¼z\14f4/\b÷3Qðù\92Ï¥þî\13Ï$î\16M£DgH\9eN¤nTIþ»xÌ5¥E\99\9cÜ®(gvÚ\9932Øó0\1eÖPìyEÚ\ 2£\vë\½\91ù,\15B¡¯l;ñí(TßÃw\0³ã*\93L\97|üZüAn\1d»*S\9d¾«xæLëQÛdS¡÷Îî\vV²+¼øÑ
-ÊÝ\99£\a\ e±\1c1t~àÇ1\1a\8c*\1c1tÝ\81\7fÄ$î6Ò{|N¯\92 Õ\12£\1d\f(ãÙ3\12£\99I{\9b(R\9fÃzh9ì]#-\9dñS»ëÜ×#Ñ*Ŭ¡\14 \18¯±\13ûiÊ\93ó\ 5©.aO»Êç,v\19Ç\ 3 £»ØÏ`¾ëk Z\7f>L¶x _ègÛùÞÇ\11\8b\1d\9eQs\92\84Ñ\18ðÙ²\rÅaô\ 6lh¸0\18±öF\97Øض.\0\83.þ$\8cY8\85æ\ 2\93,\e3\10fÛk66~Îj3ºÖL¶³Åº\ 1\1d\ e<\8b£µøñ:\1cñØå\8d\96£µØIF\8b\8cÐâÜQã¤>b¸\88ÑØx²ÀhçL²ê\98¥ZLqe\9dÇcÈZ\ 3\9c¬i¯\19\95+Ð÷{\15§£ÈkyÐ\8b\9eB\93\80a°G\8bûÍ\91±¸\97Á\92ÅÓ\1fßÁ¯v\18BüdBc\84Å\eõÖ-ömçÚâùÙÖa0\r|"J-\183K\89\ 2gN\8aòX<\96/;ô,^\16]Q \ fm\80\90\8d[7æ¿}µ1+¾øQúá\ 3y(:\91ÉÏK7T¦k\7fùÉl*Ôk©ï©X³õi²\ 6È\12¼.L\9eè&rQi˧½\0÷+Ñ\1cܾY\91\85\10ÈR\96\82tÔ\861\17\a_ÅEfýãÿ\ 2è\9b¯\821a²i\9b\13þ\99mã9\réSar³µBy>\84ºòkÔ7jÃ\0¤kJjD\18±\9e¸ì\8e3\fG\ 3òÜd3ª»\8fÕÜÈzÊ ÷Y\9cNo£Ô¾ \16;ÆR\12ÔèÅÐ__#-v\ 1ûA\e3Ê\85;ÒO8^¾þ6O\9cØÝ\bòÕdc7\ 3Τ¼6ÝåúåFì\e\ 2ô\97\89\ 1èyâ\16Wo¹å\17\9aã\80èhwfðã×Ú}Ú\85\ 1Å\9c\8fo1¨<Ð\99¦9¨(\1e\99¯.»5 5H\r*\9e\1aT#÷ð\81\ fª\9b\16üZ\82;6q\8b§ÛÃ~\8f~9N\0\88\vNà^À]\95\89[\ 3úålÌ]\12¬ýîým\15¬À¶¥ø\15®Ï´U«H±þ\9bõ\8b\ 1Í\86ö÷õ\ 6lt¸PÂ4\94\821\92\9b¾\7fC0\ 6\bõîu\ 1euªG\ 6\8eDO\8cú®LâcÖ/ø\9a_T~r»\1e¢\81\ 3\1e30Óg\9aP@#\1f¯_\8fgq´*/\15\ 6SÅ\f±\1c±¼N\\\87\15Ü¿#ê§$ÇNç1µá*ó\98êò:qÌ&ÛQËëÄÅ¥ÂcjËë\84ÅÅä[\12¹\97\99<< Ù\87\9bFâ\9f\8d\87X¶\12\ egÀ\9fd.÷õh}D_cÅè\9e(\87öx«ø\9ckÕ2þ]ú>[ u|\85·R·\ 5¾b¥øͦ\10\a«Ò:\ ecBðïb¡?±U\a÷^/\emW2nØÈÕ\ 5ã\14§DH\fl®¨Çùy>\90\9ftô\9b}ä\8bÅ)\94\ 6n²iÇ\ 2/ãÄÀy9)\14y\14zí\18ì©a\7f¹=}Z|ìX\8e\879WJ¶üe·\13\15¼WmWâwÆ`\ fÝ'åøØ"æ:1>f§àÝ\r/\8cK\ 2\9c\93\88¶¯¢ä©À:q½u\9e-õ\17KW)»\1c|\eP2è\13\80â.Qû¯Z\84µ`¡Ãæ;Égµ;òsË»Ó\80lc)ÆL2üäuRù8\9bhò2Ø\9d èq;¹ËÏ"\9f¤a/éÇÍæL\86Vßt¿\18\87©\12q6\bz\ 4·\99l\f¿¥\9b®\8fl»óÝ3´ºÑ§Rß\ 2>ÅKL\98\ 4îç±)µ\87â\1dÎËo\9dx4í²\9dÄËO<\e!ùÍ\13\8f¦\1d¬ýß;ñhÚM¶ß<ñhÚM¿{âOÜã;râÑ´³kÿ÷M<\9av6Ö÷û&\1eM;\900\97\99xhÚ\ 3:¬JiÍL]\92Rb3G1É\bØR1\96\95\\92×\82?BF\16"¾ÂùÉ\aÉ¢\8fB>¸åºØ\vñ\861\17ß\15ç\92{E\9aôf\14½\17u\93\8d\8eZv\ e\9a\aÑ8\0\11t\95\91ßÅùA\eÉ\b\90\8b\93ô>\b6\1aá\88½\ 6\84Ñs9ð¶Ü5ïJ\8dn\ e@äü"\10xé¥\8c\v¹\8e`à¾\15\w\ eÄ/þyª\ 3S\1f\e\eÿÜ\13O!>@¿\99\98ÜCî×WÊ?¯¯Ý|nå} Ý}¼\97,)&\11þC\94ï\9eL¬\9a\1c[8_à\ 3+\97xßy\94æö\94öl|\eÝþÃ_!ãÊ<»\ 6Ü\9aÆ}¨£è\81Ó\91~_\8aØ\ 2\9d\8b\81æ%\10©/ØËw\88=.^\95îĨþ\0\93ì¯dw\10AVr
-\14{±lüE¦\ 4\81ʽ¾óëjæ\18^7?ðÁU°ÌôFÌ|ø\96\8f\\ 5\9d=1\11\88é\13O\8471\11@oÄ|\8eN:gH\90 \88H`KZ¾8\12\ 4ýh^X"Àþ,\ 4"0ÅgjD`\90¦ã\8b5G\ 2\97MJ\ 2/O\ 2ÀÉ\fZáB&CD@\a\v"Þß[\ 4\12X\82ôû\8d\12\1f\80±ð\9cÀÆÎã\8d\1dËØ9ç=O\84ʧïê»Ã\11ÁçUå\ 3öÄ'\86\8aqÜÍß\97$c%M\10èÎz \b\ 3\0$þ\vI/\9cÇ\83\10\ 1\98Ø\7f\Jë\ 1Ì\8bÁ\15\81ê\ 2Nì\ 3_c\15wxÎ\eFÞçU]ÖÀ¯42\8cZÐwN\1fà=¼¨Tì\f¦\9aô2\986\0Xý¤\ 5\ 2fF;\f¬nÕµ\8d{°µ\93\8b]\9c
-"¶s\9d'apOÞæV\ 4ap6pOÍÍ°\14¢\98*\bñ0\ e@tp¯Þt\ e\92\8f\b\0»ö\ 3ïK<*\ 6Ñ\8b\9cÅT¸gzë\17\0°ñ±#Aló\98.)Å+Ãd\93\83ð^WqÆô½*Wr\1c\88°ÕõN\ 5~Díʹ\1f'Û\ eÞ#È·³\ 5\1f\v_âvµ+\97\ 1\1eÓ\1aU¹ã0"uÄ<v\0¢çó\9cÅçåiÐËñØi+\1e/oã\86\19\84å19\bXipÖ0*Þ\92Hê\88xÌø0*á\1a~T\1fL¶\83^¤\9b\84Îj£R~\9c\aQ î|\9d¤\bÀ°g\93K\1dN#\e¥Äpêv\1fß\a±FÆ\87[ü<¦\1a]G¼J\1c!ÓÈZ³1òÞú\8c
-.\99Øb52>
-çýg ®Qº\9a\16\7fÔ3b] +þ²¬\87\16Â\1dÈ¢\94U!G½\96Q°\90v÷_
-ûA¹\96ÿ¼\8bYY_;\94á*$_0+ê\9cÌçÆÝ\8b\88\9d\89öô¸2\9f\875_ôØ\17
-î\80Û·ôAwÕÃUν²\15Jþ\9d\ 3
-Åþ\8e\9c
-ùìÜ'Ü\81Ü:`µFÖ\10K(ââJ `½QèÖ\83¾\82Q½Ã\8a©¼\8f{±äçªà*\98¸tÉ>ã«Yå5M\ 3ô\0Í\vð¦E\8fjn¾
-ðÞ+~ .mò\8b\1flóSþ\81¨\84\ f\8amX\ 1ûè\12×WB ;ä\9a?zÄ\ f¦Á1ÿÀ\87\*(\840¦6
-H\13Èö\8f8s\b\8c¨Î\89«\8a\85\14käÝÐ\95ò \12\82¯U/çWî]ì$7j>Ô\84°ß¾\0W·ÑÄ`ý\16\ eþ\8cá×\17\ 6l Ý^ûØ2Ñk\9f\93\9dº×ª\87©Js\8bë^_ë>Qd\9dì9'ùY¸TÏ-£Ö¨è\94(ÆG´¿ç\19`òSǸ\83Â\0¼¦_¼/v \88\1dL\14\1céÜÆóÙÎMâËdËÏ"÷Ûl;»~\86á\96\18\91{wõ\90{L8G/sn6Ú\ 1\81±ÅulÃ\9aPð;`\1dóa\93a{xÙ\1a*\ 4ô 3Uº¨T\ e\12½åb>åÞ\ 2\15\14º'>÷É*úÄ\14Sû\87Ó\10lâe×Ý¢ã\ 3\0Ê8\98µ¨\1d=\0°³\ eæ\13_e\fg\7f1 øþ\fÅ\15Î\8bi\90/\13\rñc\19\ 6Ò\9d\12<?\ 4\85ËÞ¼\ 5ÿ y\13\9f®í\9dR²\18ü\16\1d\8fÀ\1c\9eP~yâO6fþÜH\ em&jIq\8döîÝ\8fê9A¿³.æSñãÎÍ|\12UGï¦\ 1ô\eWÅÉî\8b±ý ¿*ËÂÄF·3ÉôK\90\13M\9f!°\ e\9e\98RóÀÍÜv\83ê"\99\9aèâ\a\99s\8bÂe*¥\9ah^.U¬©Zª\89äØ¥\8a5UK5M¶\v\16kª\96j¢ó\94.U¬©Xª¹ù¿)S$\82\13æh0B\98ýÍý\92¤êÔ|:_\9b=¦\84É\9fâxg=Þ\94(\92l\93\7fí
-\9bÑ~E®wæ¸Ù\9fmå«Õh¨@\8e6c\124G\ 5.\11Qt\84\91\ 5¬ô\10\9fZ"Ù1cªÊ\v\93XyQ±6o\a\85 ö\9a\12 \1d\14\11±oÛ?0˯\ 2/?\1fùlp+í\9dÙ6sTh\ füúÊ\ 4P\98JeÙÙ/L\14\13-;\97µ@R¹}ÑýP{\96\15Ä#u\1dûj\97oM¶âs\8elfüô4\89ò'
-o\85ô,\91Æ£¾\9csuÓÊ\7fV\97\85âû\97{\80\ 4ÿá¹+µ\98ÚpÙ\ 1¹>K\80\89à\90^`ºbÑâyx~±8¼\83+\98Çx\aÿ$àf`Ãâõßô,Îù2eñ®\9f>àècp¤6\99¸ÀÈ]&\8a\96\9dp&\82\84U\a׫\ fFÔÚo_C\8cªÉ½ô\91\8a÷rF\ 3·\0ÙåYáWsÅÁH\7f\92^ S&\ì)\12ø\15¼Y«âáÒ\9d&y\1f´6*>þEÑj\163z*è\10\1d51v8âÜ\83¸Kt\9eD±\17Or\ f2\1eñQ\13\84=]Kq\8fJ>Ñ\ 3ÑÙ\ 3©\9aè@\vÙ:CëC\8c¹\9cqK\8e\9a\10á.\97\84³,zèBEð[ÍÏJ8°Ø xr3W;\80õÈì[@S~À-ø'7sb\ 40¬¡¹ùä\15¥\9f_\ 3\93Ñ\ 1\15Ã\93\8f=V"\9c\87Ñ\9f'\fÝH\ 4Nô\95\ 5;z{Ç9\ 3¡äö?´\16\10i\9b\91 \843\1cçÍ\9a¶O\92Piø\94\82\ 3ÁÈ\9fQÐö+Á\83É;'CÄÄÛ8~+\9dtw\12T8Õ >f#\9fc\a{\ 6Å[Ë\ 2V%S\8cÿú.èÝ/!ÄN8÷ã\ 5\7f¢\84G|ÔDå\16rå³\8f=eâÊ\bU¢0ª³K¡°ì\10¬\9a"
-û÷\1e³\vSt\ eúì'b
-Eís\88=Vâ-\ 3!¾ùà\1d\9e\e¢¿¬1v#Ñß7YØ_Î\97\19\7f\9e\ 4!>O"1þ\16\1d5\11\14\19\bÂX¾\9e-ù£\8f\ 5¹áÿ0\87x\88Ò\ 3s\ 1۾ʫ\9fOÿÿcïN»$¹ÍCÏÏë9§¿C\896-®Å\0\ 2@ ¤\91,ª(R²¨åR¢Ü¶DÑd\91¶i©I\9bËøúÍýê3x\16Df-½UW7ª*ÿ?\1dÚÝè\8c\\10\b\ 4ð` ý\19óßÅ\ f\93ßÓ\7føÇì\7fzç\93%öÑì¯ûÃ\83·Ï\7f\9bß\9cüþ£wßùëK§ízùà÷\7fúþÏ>}ó'Ú¬û\7fÚ=ïßûµñí\7f\16k
-=~\9f\1ekAJ£à²\r\ 1ö\ 6ñ~þãòòÉwïüó»\9fß\7fço>ûîg'\1f½÷Áý\1f|ô\9b¯^Ñm%~úê_¿þíOÞú¶üü§?\9b\8e\7f¿¿\r@ùÞ§¯oCw[?ëû¾1OkïYsûÕ^{ýö+ÿ\19÷ÿòz¯2ÿü\8dmÇóÅK¿ý»m;\9eoú>\11Ƕ§\9dn8Øþ\9a^µ\86ËÏþô\13ùë\ f^o7éÿø±mÌóÆ®flÇüa²zSvå\93\8aäX\e}\12Ýùg«F/ßN½uÀ.\9e}ù\87_¾"\9fòí\8fÿKB¡ÿ²µ;¬â\96Àä\7fúWnõªµT¾ÿ£\ fþKwç\99ò§¿\94âõËã³Ý®É\e\17göéé\8f³»ý{?zM\7f¡Ô\82¯ëùµ6bû\19RíýúM«ÑÞûÏ\1fHkê×om ϽCôÞ\a{ïÝ\1aÌßû®u\92~òÚ\93m0¶_¯\دóì9ÿàìHåOö§¢|ïïòWï\9e\e«üÞK'o¿´\8dTþá\92ÁÎW÷\a;ßøâgçÞàõ\93¿ýû\9f½¾·$èâXeþùK/ýøïß{è`ç7/½ûîÞTÜéó\97ò[çÞàþýß¾ýÞ\16ÌûÑ\17¯\9c¹²Z3Aδ\15\81\9fýé\87oÊe\1fZ\8bõ\9d74\8c¨Û½i\9a\14ÈcKûè\9b\8fgm\1aô.ÍÇßîòÝ7MÙ\1fºÓQ´ôêG{£h\8f\1aHüþö\83<*sÉ\18\9a\85r?zÈ(Úë_>Õ(Úù1´\1fÿÓ\e_>cø³u\17_÷,xç\9bßmYð§ý,øî\8f¿Ñ,ÐmÌôûìeÂë{\99ðǯçO{&hÌÊ3áÕ\93\7fþìÏ=\v\8eß<\93\ 5Ë×ç² \97äýLxío÷2áïOþë«ý\81D}òá³\fâµ:ë/o=f4õQåà×\1f6 ì\93©\1f;\9aúê+{¹øÔñû\ f߸â[Lú´\94G¾\81\87r\1fù\16¯?Á\15ñ¨ëáÕ7ö&ì_ñg¼ù\ 4o`Áï\87¾Åñ³þ\8c·öjË+þ\8cé¡\85êÜ\ehpâÒ·\bOú\16\ fy\837ö\8aÔ½\97¯tu¿ñÚSU\ f}põÌ[<k\róÆ\eçÞ@ïÈOu6Þxó!ßáL\89Øÿ\ eáü$Ä7\8e\9fàlÌ?ù_¯¼âoñÉßÿæì\e¼uYÁÖ\1c{â\9f1]ñâÚMªz#<IN<âÚx#ö7(\7f³»¸¾yé½_\9e\9c˱·^Û½òo¿\9c\7fø[\7få»\ fâÙ×=I\ 1Ùý*ͱs_ê7®\981Û\e\9c/ »2ö¤Åô') ç¾Ãù\1c»´\88<ÍÏ\98.ËJͱ'þ\19Wuveìø\8cWü[ó\93Ü\91\7f\9e~ô«\93×í-¾þq\9eϼE|¦ZGïÈñ\8dÇçÄ£¿ÃÃj\1dÿ\ e}8ú\119\11\8f\9f±DÄ·ö\97Ð]©â\8aORë<ú\8e\1cÃÙ¿\9e\0â¼Ûù±õ^\7fò\8d\ e\0\9eÛkùÝßÿý\ fþùÞË?ûºõJ[oú×??ùäßþá?¤Ó\9fwã\1fÖã{íí?½½\17¢øñ{ÿø\8au>v]ʽ\0Ûo>ÿÒ»£÷ÿòfüøç\9f½a\8b\ fÞ´^÷Gßü»\86Ó-\80Óº\85/é¨Ï÷}LDþ$\8f\vÐ\ e·\r\rl\1dn\e´¾mþÉ\9bö×\8f¾ùÜÆ6ï½¼\8b¹Hð\7f7²¸ÿEÏõ ÷þáäåmpñ\97û\83\8bo|\18¶(Ü/\8fÏ\fH¾ño?ú×½a\80Ý?¼ù·¿Ø\ 2F¿~Õ#üï¿´\85\10\7f½?nÚºfÛ¸é¯ß<\13ém\9dëÉ;×\16ÅøõdaÅ\9f\97÷gy\14Ó\e»~õn,Ù#\16¿}W3æµÝ¨\8e\f¥È¨úûµ\95«ß|Ã\9e¿yËÆ4eãùö×\ f\83\rbÚxÚoÿ8oAÉ×÷vµ\ 1»\7fz\7f\17Jý\97þ)\17FÄÚoyØ\98Ø´÷à\96\v#bkß2ü\89ÆØì!B\8fyÇ3\93Ü_ý\87ú¿ÖúÞ»?ùþç¿\7fç\17\9fýè{}Äó~Ø6¹Ý\8fõ½ú×\8fÿf\17·ü$í\8d_î\rÝ}ú\e\e®ôaäO?|Ëã»\9fÞ\9f§ïÿâÕö§?\ 6\ fE}úçøãõ\17±\9d«O?\99û\9f>KÖ\13ï§ö/\1f¼ic\9a²}}ûëý\1e\8fûË\1f§þ§?\87½Ñ˽hú_>\9b÷þáÏß\9b?ö\90ä¯þëåí·üåA¹Â\90ñîÿ\9c\1f2þöþ.\84\7fª\ 3_RX¾ýó\14Þ\v?y¥ýé\93ÐÿôÙ.ú{ê\17ö·ÿ\91.|\9büí\1fÞ}íÕ\1fÿpùÃ\9b/ýêÝ\7fùÕË6\9ÿÝÇß,Ó?¼÷zÖ:ù£âQ8\eçüÕ\97\ f\r\r^10¸åØ\93\85\ 6¯\18\18¼ì!\ f\8f\b\r^10ØÎËÓ\84\ 6¯\18\18Ôóòä¡Á\1e\18üæÿüøÞ\ fï½,C\96\1fÿìËÏö\87+ï½ürKùÝçß~÷\9fò\82üñO?ÿ·/¾|ÿ\93ÿùüë{áÈþ7µÿÉÿ]Ö£\10ëQ̹ý%Kêû\9fÞ{E_{\14^=z¿5\18>~ëí¯¿}ç\8bÓo¿øêËO¾þ\9f£\1fHÒý_½ÿá/Þ9úÁ\91½öãöÚ\1f\1e½Ò¾Íôq{uû§We\8côãpôÖO¿úê¯ò/¿{÷\1f\8f~ö¿ÿ󫯿=²·ÿÃ\17ß|ñé_??úýWG'¿ûÝã_¿ÿºöË?¾7\1d½Ýþ»ÿß÷¾kÿï7÷¦ã\92§\1aæ£é8¯Ó\1cKûC,a\9dä\ fSª1í\ f)\84¥dýC.Uþ)縦ptÿ\93{\96%±ýwÿ\7fÚ_þ¡ýá?ZÒ\7f\1f\85éèWG\7füh:úL>ð\83{sÎǵ®å(\86\90\8fs\89G\ fîÍ)\1f¯kËÊ\10§ã¥LóÑû÷æ¹\1c\870¥Ýë$\1eOSÈòÂr\9c\97l\89ísÃ\9c\8eç¥È_S8\9eäå-½k\r«&ö\ fHú\9a<\1d¯i®g_cÇlï\93çvÈzö£.|÷÷ïýë½\ fïG¯¼ztÿ\1f[Æ^öëZê%¿¯¥^ò\v%õ\92ß(Ég~¥¼ç%¿sÿ£\92¿î²ßÚ\92ÏþZyÝÅß{Ùï\91Ô/ÛµðÊÛ_~õe»\0Ö¬?}\92/\9dÚ\8fi\ 5',±V-\ fí¿ã¥Nóª\ 5£\97\92ÉJÉöÞaó\99\92°hZ½P\14¶\17î\15\85°®©}ß´ô¢0MñlQ(\926ËOO[QX$Ñþ¾åÏþ\8b$wöÞÈòæÜ\87]øúR\18¾Óÿ=ûõ4ÏK;´½Ã\9b¡}i^\82çN\9cJh\89!\1e·ÏÎú\83¦ãÚþÅ\12[ZÝ\12gM\Û\9fVK,ÇS\9d{Zô__Ö9µ´vÚ§Åò;µb1égkbûl; ó²\9e{åå\89ù¸¤\9c÷\12g)h«¦´_P×°\9f"\7fhoqzOÓjY$1\1e\87\9cû\81!Øw^C9\93²\1c\97¥ý\?Ò\13å7æõÌëÚ9;ó÷\96Ma\ eG'í¸ù¸ÊÉ÷Ä)êërmuûÙ¤)¥ý¤\13-kö÷©Z\81¼p¬r¸ô&ðÊ\9bóqh§}\9d_=zëwß~ýÅ\97ÿvôÊO\7fúöi»\r}ðÕ·\9fÈkÏT×í\8aùì^ñzæº*í9\97ã4µ\8bSÏ\8b\9e))díÂ[gýµídµ+ܯ\80Ю$M\vi.»49\87Sm\9f¼Zi\Z\ e-\9e¶,V\9eæV\9eôèvIyÖÌim%¯.=1è+s;¥íÂ<ûÊË\13ëq»\ 2ó^â\9cÛ;NÉ\93j¨éLÒ|¼L«\94\15I\v³\9e¨V\15ä¹\1f¹$ûÖa\ri?)´¼k\ 5½\1fê\89íCã|öus{ßélRˬö R\ÊÔJt\99{b+3òº\14b8\97´æ²\9f$\87ú[I\8d¤?ýÂY{dI\93ªY\¥¤íîmûw¹ïü?)\85íÿ>s9\94ÛÛ%Õ\9dÝÍ.Tx\92|I\95×\93ÏUz\92|¡Ú³Ûâ\85\8aO^{IÕg·ê\võÜ#\92¯X\ 1Ê¡W\ 2ýØ+T\82rä\95«Ak\99ìW\84\97\9eLIþ×ößõT\87Rò´\98¾üqÙ5½(Bw¾\b=¤KõÔÅg¯ù:ïÕi×X\9f]vg\95²qɽÕÚÞçï®[êÙû«¼ÇÅ;¬¤^r\8f\95äKî²òÖ\97ÜR\1f\91|Õ{\1c{å»\1f|µûôp®|Ç\95\83ÏÞs/=£\8fÔ\9eêÎ{y¥F9:\8crôÐ\9aí)ËÐ%5Û\87û½õä\1d\88ï¶NÄR\93\14\ eï\9a\1fO½^[b\96\8aNû í\96VâÚ\8a[,,Míþø@[õ¡¶{É.Qî\9ek\92¬jõe;ur\92vI-\87j\8aÚ]\93D¹WÄVP²\9csM\90÷o\9dê9æØS4©Ý\0J;-'v\˼\96(wõµj¯¶ÝyÖ¥å®'¦Õ»º¤·´¸¶ò</Þe\90\ f³×%=6\87VÙW?v\96\7fí\89\8b$æØî\8d\16\1dÊréÌ=±Dí\84\94V\14\97Ús \14\ f\v´«¥g\8b\14Ù÷/Ë@i²¿öݽÉã!\16ZÔ¼nß|\99Zñ\8f³üÚVª\1fh\93¿}#ù¤öN±Z?[Ú\1fþå%\8e\93¶4ûîX/sõ\ eÔÒn\8e\9eXfûî\12Óh\97`ûJ±\7f%ûòµxâÞ\97\9f5×÷^ÙÎ~\99õÃ{¢\84[vg\7fJ-û÷\92úÙ?Ñ°ÌÚ2Y\12Ëq\95ÊÆ^7ùÙ^¤2ÚOj\851\95Ð\ fõ\ 2ÐNæ\9a\97ý×µ\9ckm\8bx&IÚbqñCõ"´,\94²3§Ø\92\963)á8-q?Izú¥ÿ=oeëì\19zÿÞ»í"{Ç\8b\9dfjlU`±ë¤e_Õ\9fÛÊâ\12\83EªR«A\92¾q+Þ\8bÇ´ô{'û)Q.\b\8b¦¬ëÚÓì\eÌëÞo\8eër.±g\98'î]F%í\12ûÕV¤]¶î_\90ræôݶ3\97[ãçäÞ^b;éí\9bÎ\9a\87K)Z\8cR/\a»òâI'^²¤Uª\89^²\8aÇÕv¯\94Äv_Ê~ô´Öâ\17Z\99²¾°ey°²Ú®ì²,vE¦Å#»\125Ô\13 Wq a+ÿö[ÂVþå2ö+¥%Ê}¦'Ú%ÕÚåR^¿m7$Ím¿øÊdåÏ\12C©þéÁ]ý¬f\8fB.-ÿ¤K¡ç?Ô\1e\8a;[P.OkuÄ\87Ï/\86ôÎSÜ\ 2\8a¶t=\13\16¹2\1eè©j\994[b©µ\9f?͹vy´3´dÏe.=zåÛò(J^Ç*!Øä%¢µ¾\93'Jã»%.í*.k说\10í\92[{aY÷\12祶L×:º]\98íZ®g\92äbo§¾Ý~$±\ 4½\80ý\9d-IZ,±uÈÚÙ\8a~¨Ö\85s+TSÐX\8c&ê9\92lH\16\8bªíFÞ*\vOÌ\9a¶´ëb\ e^i.µàÙp.\13\1fz\eÐ\8c\bÉJ\8dfÄ\ 3Ï\b-\9e\92¸Ë\88öêy/q^\96½\8c\90á\80ý\14Ï\aù1-±Ho,¶J¦\9d\99Ù_§¿o\96\e^+Á{Iv\9c§©öC=q>N9\863¯ËíÚ¨g\ fm\97`\9a£\1fº¬\96[\8beá¼HnÌgRZ=$£\b»¤vdí/É[\ eÛÍf«:ZE\10õ\9a\96W\95buGÝ
-©tu-\9ei\89Õ~çlaÊöF1éý@Òªß;Û¹m'÷l\96_<9Û\1d@ÿI߸]Äý¼í½~ÙJµ$¦õ\¢~\9cW\ 1ýÓ²ÜMµ¸jb\9eýâ\99W\94Ú]#HÛªÄÖF\99í2k\95[¯©ÚI×\9bE»*j^¶ß:/=Ñ~k)=S$Ñj/K\9bí¬.í{x>Ï«\95ã¼ås«üô\96 \89u\9e\82\7fxMi±\eöZWýFKûÆiÉvmè\r¨\9fN\89¦H½?/ö\83¤À\87\9cú+mÌ¢J\A\13å=˪?¨JQÓf\97|%\e®«³g¦&éû{et±jh/ÍËwOÜ]üÖÜ\93ĽJ"I%±\9e©J\16OÚ.µ\1eþÝ%¶\12S\92\84`Z¡\8fö\83û¹Þ¿¾=éä²\12õþå\89\8f¾Y<Ï0ð;{Á\93'¸\99X\90ìB\8fÂz\9fWìSXìî*½
-?ò|¿ÂbZ\17z\16\16\f<ß·°Îí¹Þ\85$^Ò¿èÉçz\18ö\16\17ú\18Ò\87¼ØË°\91Ù\vý\8cK3¶\87)^ûÎc\fgn4þ{Î÷8¬£z¡ÏáQÏs½\8e\9ez®ßa\81\80\v=\ fùE\97ô=úO:×ûð\9ft¾ÿaeå\8a=\10\e=¿b\1fÄ\ f¾Z/Ä\ e¾Z?D\83Å=%ï\95Åó}\91\97?~W#\ 1ïl\85õl\8fijô|\9fÄ¿\17z%\92|I¿ÄbÔç{&\92zIßäLò®wâÉçû'[òÑS÷Pú\a]©\8fÒKà¹^J/¯çú)\92|±§b\97ëù¾\8a\85 .ôVì\92¿Ð_é×͹\1e\8b$_ÒgéÉçz-v\ 1_è·X<ëBÏžÉ\85¾\8bE /ô^.+V\ fOÕºçÃGÅI\9f}ðgÚ\15öÛX\93]o\ 5wú,\15Üvð\8d®à®y è\921 'kÆ\Ö+¶\8aáB¿xK>Ó3¶÷¸Ð7¶¨ýùÞ±\95·\výã\96|Y\ fY\92¯ÜG\96\83¯ÜKö\83Ï÷\93[ò%=eyñ%}åK3÷±M\99ËzÍ={Îõ\9b-{®Ös\96c¯Üwö\83¯Ö{¶\83¯Ö\7f\96üßïA÷\9c?ÚïCK&^Ò\8b\96äKúÑ[ò\99\9e´¤^Ò\97¶zñBoúÒÓv®\15sY¯úìqËÞÕpYϺ\7føÙ¾µµÅ/ô®íò»Ð¿ö\91¤ó=l+ª\17úØ=\17Îõ²%ùb?{K=ÛÓ¶³q¡¯m·ë\v½mû"\17úÛr\9e/éq÷Ó\7f®Ïí\97Ëù^·\14\9eKúÝ\92|±ç%í\ß[Þ÷bïûlêÖÿîÉçzà\9e|µ>x\7fÏ+õÂ/-\83ï?<ùñ\8d\9eg\1f\1cöFÏùkøÁMº\86\1fZõ^k\8d|ú,5òvð\8d\91\9fÃàp|Ôàðtô\81\8c
-d¹èZkxYK\9dõ\ fA\12Û\1fÖ)´\8e\9aOä~û^<Ωõgþ[Æg\8fÚ[KU\12l¾rë<Lí\12m}Æ|\1cjöùÊíïíõ\7f½÷»{\1fJ¤é¸î\96\ e\84ö6\97\8cT<Õ÷93Ë\¿\Þ¾]]Î\7f»¥%Ö³ßNfuï¾]~Ì·{\8a\81tý!g\9b-\17¾n\892A«}ÝV¸uBþ\92Öv-'\1dpiŸ´"²\97¨\9d¿VBÏ$µÂ\9eZãj\97tb\ 3ØòEbkvI\16\94£½$\99O2Ç´\9f$ý bS\9d5.\15åSm j\9deB\94ü]fáû y«"ÚµÑÒB»¡ÖÐ'é¶ÊZ¾\9b,*°\17n?K\93òÙ´þ}ß¿÷éCÊ|hwÝ©\95\80'*ò\ f\8f[^\96»/\7fü\fùk·ä+æ°\1f¼\97Ç-å\92\¶×]ÈgK>\9fÓû?r\97×\97ýtI½\96ü~H}"\ 3\Ç1d©\11ÛõÔr¹µ\89´È\1f¯2gN®áÖ^\v¡ZC>hño\95îÜ*ÝÖ\8d2OÆÊ\7fkë´_n\89³Ì7Ô(Ô¼ZJi5\83§D}\91D2lø_Ö\90È\HK\¤ß#S/ë´z\92Mv\94\90ÉÔ\ f][cæÔföO\8b\1f\1a\92D\96Û\19i]§ìIÒ\94\91¸Ó,\13J-©Õ\82>aeÊSµÄv/µ\10´\ 6£4©µ%{gxñ¤º´\ e\9bÍWÈÓìß®Öj}ðvgò\8fX[G×\92ÚË<INæ©\1eª\9dNK\ª\ 5\ ej»\ 1z\92¬\7fÑî{±\9f\95\8eÛ'é\b¿\84ʦ¹X¢wÕÛ7\9f§Å\92²\948 XôÌLò\85í·&éÅyÚ*áw\99§j?>õ¯ÛÚ}º\9cH\93J±¯[ZVo\89\12g\93¤9ÛyhUsÑ ¿4÷ª'Í뢳
-´cØʵ½n\96³Ú\92Ö\10ü{,A.9yÕT²%¥ÉfÕ·Ú_Ï\92&¶F¬äo»!È\\K
-I¾H«\10ÒäïÖZ\116\81em=\ 2ÿ¾)è\97\93©ceíy$q\99vu·\14ÿõ\8b\ñ':=Gê\9eØnc\9aTç\9e\92ýȺ;r±Ï\94\ eüºØ/Õ@é¬-;;÷ÒàÉöãõ:פTl\0IrD&8kb;¥U\ fmgY\7fV9®A>Uûé³~À"Sç\82gRIËj\891ËÄ9\89\bI¿G\93\82\ 4:å×' AiRû}\8bg\92v ìu\12³Ð$\89%Ú»Åj\87Î\93\9dÕEbHÑ\7fk+zþ~y*ö\85[\85诫U#RÅJPKjubû&^\96z9¯=LÕ~\98\8cªhR\99ª\17\88d?_ã¯VôóVJÚù\rz¦VC×Õ\92RIv5\949/\96Tç¬\v\97Zb\9c¬ÆY{\ eÏViÅV\9fXqÕÁyö¤¥\84e»à¤\96o\9d\1a¹\ 3,vh\94\93Øn\ eÞjM2\13R\8a\9c$i\98öT¿p\r1Û¡\1eâk]\90\18\92¿\9bÄÍ´4Å\94ìSË\1az9\94
-×\12×´ÈMMn'Å\ f\9d¤æÝF¯ìU_©\87¶Ä5U{]°\89\93¡]ù\93\7f\11½H4IæPkRë\8dT?T\v\96%ÎS9÷©i\92ÚP"\91RÒ4I;i§Z\9aÖÖxó<Ñ\eiKZ\16{\9dd\98\\11ò[çi¶¤VJf/\88rãiiI
-\9d\1d¨5°¤´\9b \1eguA»\85JÃ-ö<\92\1a[\13C\94zOîØ\12ÌÕ¤\98£\1dZãäI³ÕJYrÁRÖ\14{\ 6úíÛ\ 5:¥¤Í\8a¸J\8dQ¦Å¾ô\89N?ªr}\94 Aè(µC±8iKje,\ 6\9f|ZäÆ I«TD§:\9e\1f\92¾LB±²\@"ÓY\8bL{Y\95+k.ɲ®%µº_~\9b®.jgJ\1a\1e\92Xµ\1e,Ù&\ 4[\92\8cpJ\92\17Àà#\ f':7@\ 6),MòO"\9cÛ¹x\92¬û\94¾e«\8eýU¶Ôk%\96PýC[ö´¼-o>åÕ\92\82ܾ$IÛâ\9a\1f:\ 2%#érZô*j\89:Ì»´{ DQZVJ\91hW\84ô¢ZVë ÇUæ\1c\9fè\f\83"woK\94©¹\9aä'¾%i\8d¯\1d0ýUSµ\9b\8bÌ\18\92KW¿É$uH«\11%©\9d¡Õ\92l\9c©%SöCÃ\9am¦\8c\8f\1dé\89n\17\82\ 5\18R²×µªQÎ\9bt|Ãl\85MîK-óOuf\8fæ¡&Æ,õàR´\7f®)É\91¼§\19ûûûåÒ\125&d\89Åâ\1c5[\8e,6\95[\93ª\9e¬\96´Ä5ûì\9cÖYËVT×5X0e÷uóÔr¤5\9bÚ\8f_=im\9duùÐ\1at\88Î2¤H!¯Ìú×mUjj\95«\ 6\91ô~'Ií®¯_·%¶^]´sªÃ%\92$M\rMi\95aÒ\94uÒ\8bHævO\96»\12P\96\1e¹\1f)\11iIJ«\7fBëh\17=´õ΢%µ\96{ì\1f*ãê\9a¨cóúåÖèIQ"ÞúuÓê)SÖÒ+GJ4Í\v\92\1fX\83§ÌÙ¾\7f\8cý5a\99´\18µüÐBfÙ\96sÑ,Ò»\83\9d\ 4-¼µµÏµ9¨ù]9Ø^\97bôó·È\82&}·\=©\86Õ?uI\9eÔî\97=wí,·>BkÉk\ e\85´®{åT\92æ8û«¢ßÖª\8c½,ý\8c&ýYí\92_\ 6l¥GÖ\1cÉ¡e\9dVK*r\eì\9f\99<ÑÚ\91Õ«d«\17¥Ìè/-ÉëÝ\12ýëFé\83-\96\98\83dR+\81e±$i!JK²\95ÀÖÌ*\96T[óÙK`;ÏþºvoHú\11Z\ 6,iѯá÷åv\«\eûy©Õ\8fÓ& ü\80Ö\18H\9eä)1õÛÆ:Ù=¸J\e7ù\97m·/Ë"\8d\9eÚMb\92\9fÙ®Þ¥V¿G\14ëU´Ä\92{v¤(k\bê²ÝäÚ\91íÃZ\92\9c3+¹I\ 2bV\16Z\1dTÌÈ7\91[pm¥s \9eT£Ü½ëzܳ¬¬ömW 7'\7fU\9e¥\80¯²N®÷Ö²i5¼¤L³}älÍ\8f\13=r\9a¬¶kUa\94øX\95\b]\9aí\96¬\83 \92TsðfJ]ÚÚNZ-±È\rC¿\9aÝ\88ZRëÅeMJ2 ¤Is/\80Ñ\9b\93'\86YóR®&»\95¶\93-Ãë\9a½«75R¶\89â--§Ü\eBÚ^hIýN=IËqöÜ]¼\19TªE;ªôí\8a§ÉH°¤´\16ÉêI!Ù/\98j¶\94\1cª\15ÜUÚùÞÒ\9ae\15¡&µ\9fl\rÃÖ`[ìLÕÙ\e\90\1aHµìmÍ\12o@¶\96¹\9c\86öcâê-Ù5K\ 3²õp[ÓÏ\9bUb^rN£E\11,q\92\1a°%iOÂ\9a·R,$©&kµ·¤ÖØÑO\9deèÃ\eÆ\8bÜ\12$æà\9d\80jcÒ\92\94òäI²Í\81|f²\b¬5½Ûw>\92$i\82[\93].\83UÆ\98½ÁÞ²Lk\ 5y¯`\1d,\19\17-öÅ´ðk\92®<\92_ná\15I\9aZ\vÊshÉ¥wb4\f³N\16Úפv?_5s[E½Z\92VùV\0[õ¾úûM\12B\96Ó\17\97jI!Mv¥õæ\7fK\9a,s«t\85¬«'\93°æ¢\97·\ 5j4I#ÅR\9fæèßMê
-»G´»~?2IæÊ-Í#\ 4EÆvínX$ðh\1f*\15 \1dº\84â_nJv\17jý\95þfyÞ¿¥ég.1ø\91\93,O´D\9dñ&·àµô\1cÉ^ëæêÙV¬Q%IÓâ¿@G`%É*\ 6}/\19\96\96¤½\8c\94\1f`\87jÇÐsW/«v±&?ÒúóUÖ{m¹±Z7O^&+Éì\13t(ZÞl\ eÞ\7fÕ\18\86~hì?4û\19\9d¼m«=_Yþ¦·\bi\Y\ f|ÑP¿N§ó\98G\94\vøTÛ79ô\bR\9eçh-¨hWP\90[BÕæ\98v25©}ºM\ÎÖ:×4éÜHÊRg?Ò\ 2\ 6\924Û)\90\96mI~¤Ö.v¨Þ\97$)ÌÕ\92B´7Ë9ùgNÒëµÖ£Ýö³V\90«¶vuâGK\91n¯$\15¹0¥\ 6ÌrS©[\13»\1d\9d-±FùUÒ\14ÏZ¥È\9dFº\15:\85Iz-únò\ 3Nt\ 2\7fëõy\9aÕ\9deñÖ\8c$¥%È\91íþ¿h\9c¥Je4eï\11,³Æ\1fäu2\9dC; \16´²{\99\1dÚ\1aÿÁ¾Çb1+\99ä8I·RÒ¤°\95ì-\8dlõ{¶~\89\95Ü\96\14,\83dàRz\92\96\16ä\96V¤IÕS´\17%£a\16êÒ[q^}G\ 6\r\10Xn̲<Y\82«³ýòÕ¾µÌûÑ*¨\9d\95IZ7ÖÁkµW°êZ:&Ò\80jIÁC\ 5R\14\16éâÉ\ 5gÁ\98 Wôìë`\96h\81\8c`\83¯\92ÔZ2³'É\11\9aT¼(,þ}Û7i÷õ`_N\17²KW0Ç\9eÝ:B'\1dÁþCu\99¡ýÐÉÏgËî \95º\8c\1e'uå\14K\11\96\1fÐÏçªÍ\96Sý\9díôx~X\91ßýt©Vg\8dWµ>êÚ¿\98\969Ë"\ fbÉ=P\86\11õGÕ5[®IàB§I\85à)Yê\ 2Ë¡ì7\17Yy)\9d\81\9c¿fo¦IÉo\89÷Ù\85\91,H&\99\e¶«¥J\87I>bÒªS¿\9cT×9õxX\95^\89Õ×-1Å°zî&\rDÌÖé´o'CÜ\92\94Kégyò^û,1X¿\94㪽ûY~N¯?êâ\87\86µ§ØR\b\99JV§~ÉK¤Z\92´Tè\87j`Y\ e\8cö\99\93Ü\8aõ\ eÜ\12Ûýk¶Äi\9dl bí¿ÊÚ\ 12t1å^\9c\93\87 ¥\7f»øë´jÓ¤¸ú%ZËlo\96ª_Ük¥\97¨\84,jOLzqDk\ 5í*\8a\1cz\bU®ö2÷x\88ÎÏ´+-f\8f\ fKò2¹f\ f\92LÅk\85Òn\12\1e÷i-\7f-¨YÎè¬A¹%Ú\19Õ!g\9b\ 3ׯÛv\a\94î¥ÅÞ\17¯-fù°UcïQ³[vlÒæï¼ök¯Ê*i»\8d¶Ä$#\94-1ÊàBÖ×ù]¿êd%\e\ 3°\8d£$)K\8dsª\ 3tÑ.o¹åé ñܮĢÅHîÅK¶Cs\91µça\17[K\fqòßå\9fZ·\8aRö¦Ò\84\98ôF"?t¶RÔ\12³F½$QÛj\92Tcô¤Z|\ 2m°\e\8eöYJ_Ð\17£å¹tÀ\92¾¬µÃ\8b¥,Ò\97\94$íKYÒêǵÞ]îIÅ_\95«¿¿\8e\12HÊ\12rO±\16\95LÏÕv¾$®Ój#"Á\1aA5÷±\89É6´hIR\8fØêCIô³\¼¯/'´Ø\19\95ñ\1d\9dì+Bû\9dÅþd\87j\ 3W\13g \10K\99ñ1\féÓN\1aQ\f=Ø_¥I\90\8b\ f¦¬ÁNK±P\92ÄlC\9dýuë*ñ±\96\94rî7\1d©\98N4,¼\94Õ+^ë\1cÊ\98ÈÒoÕI:è\16\9f®ýêX×m`C\aÿ,ÑBûù\96Î¥Xc]SJ\8fb[°Æ.¬yÕàñZKo\1e$û\ 1í&ä\1f\19\8b\1f9[¦ÚWË\16ÃÎÓÖ®ÐÞ\80¼WXú½$YeÔ®È\1c¶/;é\15é\93D¼©!\r\ 1\99E¡\ 13½YÍÑÃõÞD\93\9a'IÜR\86~¼õ(ç;íç\99Ü\82eö\95\85Üçµxk,,^\v\14?-k¿Fe»\93jo¿È{XÙÕ16¯í\16»6Zûs¶$]ƯIvk\92¾B¶8Õ¬S g¿\99ÔÕ\ fiî·¦Å\96\9d\84¬woé"ûÖQZ¢½Z×·Ó2\99ú\ fµà\98ì>SW¿õż\8d!ÖÒoC³F¥$)M\9e#IÛܺqMð&IªÛOõêBÞO2Zj£â}\15¹ìäSehtîIú«Nu¼T'UYâª\83\9eÙb/ö\11r³Ô$ï½É½)Y¥"#·Sí¯K6$\eæÒ_'\97\93¬5XR\7f\91\8d\85Ì\1e|·f\95öÐe*Ï2{\eÊZd\17\a\86OîýëCF¯'\8d\99çå\89F¯uý\9et-|°¬5\83Kkß<и\92\ e\0X¢v.ª\8c¯D\1f\19Ó ¡$¥\98}ØJ\a\9aNôÐ\98ì7ɵ!Ñ*-xÇV©ß¥g/Ñ,k)Jó:öN\8en5h\1do\vºÎ¡wëuw Iê\83\8cUvZ¬~`û\8c>0¦ó\10êÔ/\rù\16E#~\17~è5e£ô»j\8e\1e\1c\91Nè\ 3O+\1eBIUª¥\96´ÆÅG\97Z\97¢Ú´=\19\9aפVÂk_:'Ó
-=1ô×\95åBR\r=Éú\89ç^'á\17M\9a·wë\93\ 5\97\1e\18ªÉ\ 6Â¥ó¸¬>Ìe1\94Öu´aN\rdÉ\r_º\8e6Þ*a1\8d_\9dhðÝB\1a\1a@\93©Q:ËPK\8b\8eUMÕ"ù\1aGÓwÓÀ¯EߧÚ\87þ¤i¥\13©§âÑ8Ùtí³Ù{mç-K\8f?Ø\97Ô1\90\a\96¨76\8d\ fÚ¸A¶\ 5,\96\94\83õfÓºô¤à'.ÛP\89\8dÆMÚÕÎ\16|Ò$\8d\ 3X¯zõ\80¬\8eûØ¡:\8a®\89V\85ÈÔÀ¹Ç.e¢\95¤´\82Ñ£¶«]oK²]¤<\94«S<¥¦ ýuiµ¤ìe*Y\ 1òC}x2õ2\9a·\ 1\f\89où/=\9bI§×\95ý\82+K\ f\99K{ü\81&¶
-¹xbËl\1d \8a\1e\80ou\92\rbåbã\0\12¹ò|\886gÑ\12u\ 4(ZìÒ\8eÔÖº$\95þæÕbá-NÑÇ*íÒ\92\8eEè£\97\1a·Zfï\15kÌ?-ÛøÚÒÇ\89,¾µDo\8cIR\92)Ãò\8b\8a_
-²\ 1\91µ¸e~r°º U\89Eǵdt¯n\83\14:ø%ÝÆè£p:÷ÉÆ\ 3·q-½\ 3i\84$'ÿ¾>Îw!o¯í¢\99,\86ª!ûÕvÆ\91ï)[ªYh?ë\18\9aܺ«¿®Õ¸\96\94ÖÙÇ\975jb¿ÆÚÂv.}`TÛTvB¤v\90¤\12¶_è1¼â!\v;MAnRE&xE?4H®KÒ\1c|Ô¡ú\87Ê\91¹\ fbè \84$ÙÌMý U'Ó\9eÿ¥×\95\85E\1a\a¹\7f¼\84¯\1eh¢N¸è\19æcÐkÿJÒ\0\968Rè?¦ÝÐìÇd\e\97²l\r:\ 4-\83×\93g\97Í\9d\91èR\9a{¦Jmm1¨ìumñ\91§²«Ø\8au¦-)õ¤jíõ"Ë{S¿\1e\92\a«¢\r\17í\1d\19bõ\ fÍË\1aüC5 \89\12`\97\98\96F\8c-I\97Ù\94ä\8d@ûjÓⱯuZüu:î§ï6y\1eiüù\92ܽ¶ó\16ýJÖv\8cüÂ\a\96èÓªª.ª\93\14\eì±f\8bÔÈ\92´&?²\8f\13\95h\ 3\8f6VR&\vf\95Y\e×ëjó%i\9aú K\8f\92\16i\eF\9f§3k7B\97Ì\15o\18éPÚů{]\19!ë\v§mÄY&SØ\96M>´)ý\82bq2m¢ÅÝ<\ 5 º}æB¨}¢îd#ä2ÁAKa\968\95¶\15\824'¥6/\93\17¸\10,\ 6}j»¬lS9V\99\8c'9Ó^\96=)h)l·\1491>m#õ\1c\§>\97c±\ 3µÛf Q#¾Ñ6o´¤Ù³>\1eû\97\r>¢+\1eWý²ÒO\96ÚO\92l"Q\905¹~¡\ 6\1dNÒ´¬á$Y/[t\9cT\92ÊlI6µC\ e,6X&QÚb3JdìAC\90\12/Õ\8b¾åY\9d\16\8bòéÆ\9az³èÛ·äì\83o:æoÛÍI\80aé'J'¥]<\9f×u\8f\97\18Ýl½ÖhÔ\a\96h¡GI\mr\90Mu\90\94Ug±ÉÔ Õ&fÚÊ\1a\8b«é¸«\8deäÅf(Õ)û\91Q\1fuºS\9dmd$ÚhÓ\89M\8aª«\1fêqµUf{ù¡\1e#\91ÐjôCuLîĶ\18³È«\8eÝõ¨\9f¶\19ô#¦â?áì/½¦«íµ\87¨yªwÑÍ\8f´ôËäcý=\93Ì@h×\9bLQnÕ¤ÎJÞý'{òHCÒ\aÙ\83\8d\91Û\9e<Kµ\ 6r°\85P\92dsW$eé)~û\97u\1d6Î"G\96©\ f\ëå*¯+É\93lüK\9a ÁnÿÁºø§Ú>¶qZM´\8eMÖ]),%ú\9c¢¸ö.\8cN\a²\96u\9fo\12,8¡\8díyö¹u:\aK\9bî%ú\8fÒedö¡e)µ'Vk\94÷\99\bR_d{·eÊ¡'Ù`\944òËì]'m9JÿGCb6¶¿&ë\12E\9d|l\93üRò©LZýØÄ\0\9d*¶,6fk}³P|MÐÜ3$xðX\12§Ø§4&ýa¥ÏQ\9a|ú\8aN\8cZý\86²\14\9b-Þ×\12ù$\80ÉÖ!\85\1cúè~^|iÒºúT\81\10¶3ÒÚû°ÓÒ×\1c-ýuSê\87\96Ù;qSH}g¤\96s~»Ó\90\9dý®ê\13\bÖ"1\17IÚæ\9aÊà´\1f\19jO\94\19x\96\94wIÑ\93ldE\92,¼$9²ÍgM%ú¼0»ÀW»·èIð\10\9c\87yO|\92\99§év\98v®\8a\7f¦öDô\9cÖê7âU¦zXIZko\12Ô\98¼g\98¢\7f\8fÐKþ\12\927\bl\94P\v×êstóâCµ\1eË\W\9f¯¡c°sêÍ\86Ô\v¾®æ·\1f:ù\ 5RÒä\87Öê\87\96\10û)Xæí\9aI{\89Åû\9eÉÃ\bºòB¯Ý<y\ 4"®\16î^d\80¿Ï&ÑÈ\8e&i,LË N[¸X±\Ó\r'\1c½ý¥\8eÊ®Ó<÷ì\9eµÞ*»³\¥©\18|Hwꧯøèm-Õ\8b\8c\ e÷\9dÞ;\97¨m<y³è\99Û²ÔÇ\87kõ\13ª!i\e\1fÖ\98\8b\9d¿Ù\a\83õ\86mçO\83Ì2\8alQ}9\7f2Xe\1fZrê×\95Æ<%©Î\9eã³îk-?Õs[CÒ§:\9c\1d¦\1e/Ñ©ë:\9c\9dr\9f÷ã)6[}\9bõcG\96\90=|d\ 3§eÙúE²\8d\86Ôí2\84\1eW\7fU_mU|-¨'JÀM\93z\ 4L\16ThJ\9aSOJ6\93WÖ\a\85þ\ 1ÅfÐÚø\8b¾L\eJ23u\9bnnõd©\16cñzA3£út8-ß\12F°¤¥\17y)ÔÖÿk\9fîï\97\96b=Gk\8aíµ\9fWéCûE;ùxWK\f9y\14q\8e\8b}\84\86¤5)¥År×BV:{\7fµ\11WÉÝiñöø\14&?\vuöOµ ¾\9cª¹\87F5âo\87NÛW±«JN|ì\87ê6¾\97\14û뼪lQâ\13¯jz»\1dõ\ fí\ fÿÑ^ðßGéèW¶QbÝVÑH?àÁe\89ïßûÝ5~éßØ£z¤¥.óüÚXv3\8f²üwñ'ö¬º·¹>º§åZ¶\85\8bg\9fè¤Á\9e¹Z\1d0Û,÷\a\9a¸Ö¾¤È'I/6gAÖ£D\8dÿÈì¦Ù§øØ´Í%mÃ\1e\1e\94Ðú5õ©A\93ß B\99|ÎO\9fÁ&\8d\88Ü\97Àè¬\ 1»{Í}Y\93\8e´È»&o;GYrk\8d\83\1e\98\9f\8fíV%)½\15k\13B$)Ø\ f\8av-ÙÍ6Û\b£4»S±C[gÛ[»Ñ\82Û*óöu\9f*Õ\12S,~`ë\91,úº\9cV\9fûa\81ù\96TJõ\91-½lNõP\9f\89±úÊ
-\8d\ 3Û¤\88>½DCêÁ'"èTw\e\r\90¥¨\96\18´û-c\12ó\94ûØ\8b\ e$\84>?PfNLV/ÈÔ«b#\82«M\94\94$¯èeDMÞDg0\97>x6\879o3j'\1f¬Åg¢e[û¤\ 3©>ÓÙï\11:jjQ\98ªS\ füP]×£ÓÇl(Dæuê(P\rÖ½±\81ÈÉ"\90úÃú\ 4§:ûÀJ*>Ñe\92Q)IJeö)
-±Ø\98Õ²ÚDh\e\14¬ÞZòé\1f:{¢ø\ûyñq7\9d\90om\92Ù×´ià1j±×í\16ìDè=M¯\17\eÅ\9bm\16\93ÅZ}J\8fÌ\8c,\1e\92õ9N2\812×ztÉ¥võØS÷\82²\8d´Ûµ\99ì¡AÚ\8aìK\ eK\9emD¦µkû8]Ð9\85»9\93Íϵ¢bK\lB\8aÜ\18«Ïê³r¡ýI)\v2ËÛ& ´\13îÓ3u]¡M_а±\9cød\83¯¾xN\92lÊ°&-¶P¬Jp{ñ)#ZGÍ:áÁ\ 6¨³Í«Ò\99\9dëÔç!D»\16«\f\ 5ôi\ 2z\ 3×\82¬kju¤\\9a?Õûe6\83F
-é\96²^¹O¶=\93d\9cÏÑY£Ï§\92å!¡×t\93Ü\85Om\19É6åÑVÖhÛrõé\98iòq\98sçæz\8bÊS,âÕ\8bq-½¢\97ÖÓ\ 3½¸ÛI\99í;k0T³3÷i¼Ú+\91lïS!u\a#«È\8aU\11öº¤\13RËþLY\e\84õe\84\9a\14¥%uj³××É?µæÅæ\91¯}\ 2°u$¤j©S_b¸¬} Ä\1c'oúÛÝDgçäÞ\9eÔ)>²zbéÓÙ«]Û2_i)>¾WdØB\vX\9c¼+«\ f]\91¤Ö\94ö$mOÚ\87N\1e\9c\96y¹Õ~i¨ýÐ\144ßdaEô~qô\89±Ågïì͵\97Fr_:¨»¶HR_gà³\83íZê«|d¾\88\96êjÃ`:úes³åFàÑjYï°Ì}Æüâ/Ó5
-z\15®«'é4\11}ÿ)û8\9f®{¶\ fµõ°º A»QrN\97Ø×(\ 4û¡ýGµ+cµØ·äå\1cü\13¢/\18Z&\1f\9f\984l*s¤\96¾6Oû\0Vݬ> )áøÉ\17ÒL6\1ahç×nµÅ¦\1déßí\80þ¯gÿf\83"Åß\\7fÅö¯í\96ìC\116¿YV\8bok[dA\85}@+âýkêÓ$d÷\9c¹\ fYêú\ 2½r|ÉA²é¾~¯ô\ 1\9eä\817\99U½-\ eI¶V&Øõb\87®¶\18S*¨Ø\87@mÇ\13¹§Î}\19\8cÍ
-»%\9b2Ñv\9bÓ\10B_{£\ f\ 3Òûì´ô×ét\11¹Ï®Óö\ 1>6¾Úc\82ì«èÒ^I*}\9d¥\r\8dÉÔ\870÷l\92.Ï©6d\8a-7\94D[j3ù\ 4+ËÎbw÷ºôU5ë´\9b.\1eúH[IÖ\ 4ÒÉ/6P²ô\9bSéãK5n¹d\8d1=tòCkY½ myní\13[²dKf$׫Å\90²>iEÛSµú¨i\90`\84.vZû\90\93N\98µ³ºÆ>Ø3Ù\8dH\16 N^\94lr \94®¹úû×ì+\0f\8b¯ÛGØJ4ÝÆ°\8fûÊÆzv\rl£ÊqîK¶BÜ\86\91\17=\ fi[/T|Y\8a¬Xè+ewK\1dæ²\rIË\fQ}Õ´n\95A\ 3½\95\86â\83U:±Ð*I\1dÚµD[°\95}Û\v\e^\v^½Î}ô¶øN\ 5Ò\f(Ù\ f\95F\99®M\8b¡ÿ(é\14JE·\95\86ÅgÇÈ\17\9aû\19\rÞ@èq<©¡¥]®SÇë68ëW[µNÉÞ9\90»H\1fA÷5\84ÒÕö\9fÙ\ 3\91ÚZ\ý»Úr\13iy§ØÏ\9eNìÐÙWÅKQ\92÷÷C}íX²9\89ºð*ö\9at^&[x\95rñU\º"̾®îê¤5\7f»³ùÝ1XýÔª\89¥Ø\9dÅOÞds"ì\ 6¤Ã\93\1eµòe/yZë^\10Bªåyñû`\9fö¹»z (×Õ>³ÏPÒ5ǺÒ&ö\15E\1a¡>½g¿`òyR:ûW\7fú\14|G\82ì Þ6ö[Â\89fP;Ç~'_d\85æ¬ý¡Ù\eFº¼QG*V\7f«\18-(]5\8b/ÊÔ\ 1_a5ûXÉâY¦ã(sí±\vkÈI\a1öDÛaCvý¨}5\95.èÖåN¾/BK\92XÎ\89m\9eã}\b\8dôØ¡Ñ¿oõfì*S/·¹^òl£S]v5§¾¹\81n)!I¶îÏ\92¤© ;a\84Ú_e\råU\a£ûp¨®)Z}\16pÜ\rËÊÆ\1a¾ÔFV\94Øä\0鸯±'f\99C(-ÐmÉY\96uT³®7ZJO²sºîæ\10VoP¯^µØ¯\97 V\9a\94³\97\90©\7fª¬3íÑÉI»rrz\93!Zlb¨´ð|\rÔ²Uc\1a0Xüe!Löå|\r\80ìO¡\f ®LÉ\vDËèÐOÍ\14boPKYÕY\87É\e±¶\ 1F]·C³õpìZó\ 5\eÒdÏÖ\ 4Ò&\9eÅB¼µ\9aw\9b\7fT[í Í\96\98|w\15Fµú_}/\91h5\9b,\19Ⱦã\884\17ív¨{¸Z (T¿÷ù\866y7'ñ\#ü:;\ 4öÄ\83 kù\97>\94\91-\8c\15|¬Ûâ\8cÒ\80\91\11e\1fæ\94IýÕÆ\85§Ü\ 3\94yÚ\8d(\97è1~\9bf§#ÏKêïæKzz\vi²\1c·!å2\ 5¯·¬"/z£·ÈújQã`[®[ëZ>þÔ&\1fø~\15³ovª»H\ 6\9fÓ6\1a«\9e\8f½Z\94 b\1ew\9d·!;\8dPEÛzaê- ß\18!ù\1c[»GZÕUöÚ\92>Ç°è6A¾&ß®\8f²[D/ý\92þ¡ú\8d¢®7\97ùÇúu£ýöj;Ië÷¨É\87À[Mdqôm¿\87i[\ 4&\97ÌêwNë\1e\95Ý\\85²=\bIv¨\9c²\7f9\9d\r§Óh\92ßçe3\16\9döRúBò\12\96>±&ø¾\19²
-¡Ø\9c\9c\92'_XoAmY>Ø\97Ú\aéØZÔß÷¿\90¥ö\16âßMÃ\94
-9Y<|\9e\83¯\98\8fÑZ}\12]÷\15Å\12Ç\ f\16_ÖçÒé»íBÎÞ\9a«V\ 4}ÈÀ¶§h_e{]ñÖÑê[x\14Ýú6XRë\19×-|ß·<\98\96ê\ 1ñÚw\94¨²Ë¦\86ácÝ;W'¶'Fô¹ \93NÓ/»9«ZÔP½mþ!\9f9ûg®¾\9d\8d\1eª·\9eeÚV6WoE-\93OOÖ%þ«õ=dö\9cO\87> }\91±\8eìsöÖu²©jº.Ò²|Îýо\8d\8aÌ)^íu½µ,7<\9få\96k/\96\1au<ÕCu.c´¹\19\8b\1dé\17¥ÌYÓø\91\¹S? Éâ\8aK°©Az¤®Ë°í?úOÐ\ 5Ø\92¤-\ 1;©«E3\17\9d÷â\13
-µÛ \91µÉ»kÕV®kü$\7f7\1dî¶àË\£ÿ~kc,Þ \8b6mk²\ 5\9cºÅ{´Ýaú@½þ\1a«\1dúèdJ¡o6S|Ñh\9aK_п\e3ÏsïRm£\8eÅ\a¾\93Û´áÏþ*ý}6f>ù,?}f«ì\1a2õ¿k+\g.û>\b³µ¼-\9c®M¯¸7c·l\ 1
-I\9al\98~]\8bO\81Õ.\99\85ÓÓÔ\ f\r\12p\90$k\13h0ÂFøeæU\9fô¬\97\98\85Ås\99|Æ\80/ÝÝM\ 4×Éò\9aâ{ÒHkÓ÷{\90xZéÃùºg½\1e\99&¿{h~h <ö\11ƾå\88Ä⧾·Ñ<ùzá\1ev\99|&\90ììé3\a\83\ 5`<þï\9dî`³:%É"å:\95C2G\87\ e¦âcº¥¤þÄ¥\10{b
-!\9cÉàv¯¶\93Õ+ò %eõr\94sðÙ\12ÑÇ\8cµ\9fíg!Úþ3ÉvH\91\92U}íñlÏ>±2St\9a½´sR/3º\99\96LèM=ê¢Oõµð´®\9b³D \12ë´âܧ\ê\f\ 6\rOO½³\1e}êwôö¦\ 5Yª\ 5Àmy\91\1ei³b\82Õ\e\96´Ú½bñ½\13ý~ª\87N¶¥\85u\8c\96d\95\99\9e4ë>->\vbWä]¥§+<£õÌu\ 6áêc56µÕ+P\v\1aêDÒlu{\99z\9cK\17ìêý$¬}\ e±o\ 5'÷\80XzW=øøg\b½\1a°é\13ÛÂk\8bS¬Û\9d"ôÄ`sFue\97\9f\ 5 ´êm'åm_\ fo¬È`IòËYçÕèPx\9aý§û¼áb;çÙï\94oî·ðÔ¿\\90\b¨.Ð\ ey«gBôwó½Od\17\17\1fó_·@\90í U¶)º³\87Uä\1eîû$ù\1aF»ûëà¶Õ>Õ礮=Ф\9b\93è\ 4×uê§=Ù \95¶J\9a½ìÆê{XÁ;º\160\94]¦ÞË\8d¶\15\87´¬|Ã\9fè\9bûõåêY'\9b\99ªÛëXÅS-¸%¯+K¯\8dt\83\80\12mÇ »àW;rõÛ°,#´^¾4ÊB\9f\e eR\93|ZÒd\9d^MÚöck=«Å[\82:/9îf¢HRN>\9e\1f5\94Û>µ\96ÿ\97RoDZ Á¶Á«ÕÛ}Ù{±\8bÜÍ$\93´\bø8}èMÁ\1aVï:ëNbº\9cÞ'rôç\8eK\ 3wñ-*4àd?U\97\rj¢M3,öìaë\86o\13n}Báb\ f\1a±\86¶Îj°ÄE¿®Löì³\ 3æ\94-Çû÷×ZÒÎKª}\87\11\9fì\11÷\7f\94nÜ \e\96ç¾ëàì\8dåÐ×\10ËÛÉТ$YÑÕ\1cÒø´L,¶U´:ÑÀæÙÉ\8cÔ©÷¥u\ 5\81î°¾ô¹\aK6\17·}\1fïçêÖM'öä³Ò{@66!IS\9fã¤!\9fÒ÷º³é5^1L}=½Nï\88ö}µ\86ÐB£\15È%Ý®kêÙÉÔHÝ\84¯ôeóI¶\ 1{`\ f¢[ú ±ÎMÐ-ýª/¹´If2\17tí\v\11u©Õ\89¯\0\8f}5¡¶"dòj\9c|Y»îß&sFm_*]è)A\97SÛ\13ÏG?\83Ç ól\9bEi\92\ eVël_\8f?\ 4Û\15ëT×ô[\1fCG Kõí\0r\1fn³Yù²i@µ\0G´6Ì©m_`\9bHø\80~î{aI\82®:ÐiÂ!ù7[}³\ 5\99öm+\8du3\91ì;+\84¾q\88\ 59uÞwô] z¤%/[ Ä7\17\90$} \93ýx\19nÑgkÛ\9apÝ\12Çç\8cûu®\89Ú\1d\95¤>IkÛ£b±ÕÊ\96\94maªÌ-ÏÑg èbB}\9aA\9aüuºhÄ\97ØúP¸\8dHÊüí¥Ï\ eÐ55Ú)·¯Û\ 3£z\8d.Á\aàuº«]ËÚγÑö¥/ ð¥µÕ÷Ë\91êN×>YRì=ß\94ª\8f«j\94ܪ»ÚÇîg«ívûb,³í\a U[\½Hëø\85Ö\8aóä?!W_g±í\82¡3òí\ 6Ö\17c{\ 3ÒúÇÙßLË\9bÜ\95mâ«íxÑ\e\16¾ñK]ûpGè\9bèÈfE:þ´ìv]\9av\93Ef_D¤\97\8cN\83\90ö]¨ýú\bÁ\9arºé±]E»&_oðj\90¨jk±O-\9d¼X.i\v\0ÊÕf]I\19S^úUi\13äe*NîeKw3Ö\9e\8e\ eléoè{\ ef\e©²*CWï.Ùz_\96å¶}M¶Á&_jm-\84E\9fªu\14w{¸HÓÐÖ\1aK|Z\aYÊn¥u±2uº?ëM\12§ÙæÙõO(¶i¬6\85¢¯þ×FÃ\89Ø Ù\87öu+\1e-\ ekõ\r\ 6tR©FUjß` ®Ö½\92\82¹D_>ï7Éè{»ê¤\95â;±hËÃf¨ä¥_4º\9d\81\8b\ f¡ø]aò\92o\ 3\92ò\88®Ô\97¨Ï2CÆn(³Í\92\92y+1ÛëÚ½À3ÓÂùò\1cz\9b9%\87\96µ_ã´ú¡:\82ª[Ǭ\93_4)K.ÉÆ¢¾¡\85\87uOl±\85mZ%!N\8dÆI=å»RH ¶\ 5\13ó<õ\95áóºí\0\13¼$ÅéÂ\ 60Sð$\e£ÐëÈÛñò\84\899-ý\ 3t#õ$\1d1¿\90Rð$}V\84Õ?9õm\æ¸\95¸ªõ{ê\e®éu?ÛÝ¢Ï/ñXË©n©R}'¡jË\93lÏ\96^\9feûÂs_q]}ë³Óݾ¶\9b\8eVÜѶBôì\95\ e¡n©RüÈâ\v]³L±\9aÒ^¢n³\92û> º.Po\8cK?©Õ·iÒ{j?3º¶/÷\8dPí\\15»\eÇZíÃ;rs÷MJª/<\90Ín\975÷L\92\bÁÅ&Àu\86\8e_ûÎö)÷õpÑ6f{`\89eñ!*ëQ% çô\97ép\83¤¤µ¿H¢$§º\95².¶ÄU÷\a\89}Ç[]'±ØN\1d6\88¢ýòìû\83Ä-¬\14ú\ 3Ïâ6ªéI\7fÐ×åmE\81\ 5\98\93Ä6\16\7f\9dn\13(IuÛüXã\a§ºaEI[×_\97JÈcÓò¶å²Ü~dÛ\8c\94ûº\83yîû<ë`¼õ\18\16ÝJ:o3\v&\9b¼(/ÚæL÷"¢;D{ë2ëöBº±ºOÿµN\90ì\98\9dúH\8b¶gOlËð¹\ ffiwH·\f\8fµï ¨\95£l¡\1ez\7fD\17ê\9dè\96áÑn\83Òd\96MÆ5©öÁ!\eU\93ý¼{\8a\86\9cìHßôeÛ\8f0-6?1ê\1e\83ò7»][g6ívçëÿÚÿöOö¯É' Û¿®}Ëï¼êN#²\15ÜÚ\87§d ÊÞ3¯uûúZ\88|Sµ¸m4®[¯ç>²×g\94JâR¼'¦\ 3z\9a´ö9ξYúb3\9a|dËîزow\ e}HTÆ d\13ô0÷ÌÕè²$µ®\9b\7fª\ eO\9fêféuêãx\93v¯Ój\ 3\8bÖ»\99ú\ 6õk\1f\0ÕL<Ñz Î}\0t^t?î©o\ 5%£g\12µ\92*Ä«{éÙ\16\ e\90v\7fèsÏZ\ 6ÛëlÂ\93ͼ*Ö;ð=èdÊV)}\17ðµÎ>JeÛ\adÝزïçg\8b%c\9fß©\9bìÛì\86Üwv[\93uE¥&·\10¹$\ 5¹¹HR\9e£\1f©s\ fNí\96âãxsïºäm\12ùl±Hë0doäK\89õÛ\82÷÷¼»©÷\80T}Vp\9af«ïý\8e¢ëéæ¾Uºï4#}\ 6«Ü\83\8f\ 5Øæ%³UѶI\85&\16@ËÒ'*Þð×f³n\81îY\1e|óLÙ=?õ\99ÈúûNti_ì\1f0ùÂ>ßXJú)u±¤¾Ó\8a,Òòèëq\9fƪ\r3-Z>ùÍûo\92ä[\1a¡?NW\12µQa\89\1a®M}\16ò¬\9bæ÷¿eÛÀv÷wÉ»Ýßξv\89g^Û÷·¯};\18\9dy¥Isß*O¦oÛ\95h»\19k¢\86]¤\ eJ\9eSºk¬>Ø4yOpµÛ\9bü\12\e\10ÐIáÁ3Áw=Û\1e\1c¢¿·o,©7\1aÏ\84>Å\V-iBî\93{uwWM²&\80öãæ~¤\ 57å:÷\19Å2\r@ní\92\94f\9f\16¬CAvh\7fÌ\89vDõë×âE:G¯©Ö<÷WÅy«8×5\9fù\0©Þ=A·\93\93'WúVª³M/?ÕûÂî@\1dsÒ$Û¡R®¬à\8fW°\10®NXö}æõ\19´«\7f\91Õ\1fV\11§Ø_fû~IC½?\81C\17SÚýoñý`í9³=òÎ+\ 2\1dä³ç\84\ 6¯jt-\9e}Ýuê\e³êÐ¥Öï>\1cn\vG\92¶\9cûv¨ý1(ºO]\9f\93\9a¦äw\81¾?¬îH¢7\98¹Ï!;ç\97,@\9a¼bÔ½}4Ïúì\83\18\17û²ÓÜ\9fz¡³>ýf\81zµu·÷\94}Ë\ e\9df\12\93m \96¦¼Í)±ÚB¶Äó]\92|\89\81>¢¥¤í\9e[í!\12%.>\0\1f³\ 5\1dôqgÉ[\ 4:ñJ\9ffá\ 1\91ÕW:öç²[K¢Zp,õMñm@ß·\a³\95\8e»\ 5ûiö±(m\98D/¹ñ¸ïèc\9b\17îµÝ&ß¼"yía±S{Ì\9bîÚ\96|Y\95>¬QR¦\1c}èE×\1c\Ò®¼öI\ f²2:ø|\8fÙvýÐ
-g/3ó¢û\rúJ¬¸[þ"\8f\9aðÆDÞ¦<ìUí¾S¬Æ\ e}+_\9dò \9fYûþÁ¾\9d£>S¥ô=yuMIêCe¶Ùn²Û\7f¨=ª;å~dXû\13eÖ°Ú#5tÊ\9a\7fèTýÈÉ\93´%è\1f\1a'¿®t\90Ô\1e÷Ò·\v¶\81\96óytmÛtI÷áÚV\81k+hõx¿Vi\ fìÙ\1f¡¯\7f¶VÅ´µü£íG¥\vá}¶I<îOY\9b¶\89\8fÑæüÙCC²OÝ\8e¶íÃd3Â-ÉwoÈú°P\1fA\9dm\aÒp\9cû8\8f5\88¥'è\ 3¨~:¬û©;\8béðô\1ctùýn2gµg+hWÛGóV\v\8aY»¨\ fF¯¶úA\93êìIii\87æØ'5ôí\92òöÈ\800í¢«Ñw¥ð\r\1cõÝô\12Ðg\9a¬\16ÄËÅ\ 3¸¶C°Ç¢é¨\81&Ù&Meòͱu;\b\99KhQ\10\8d-écM´b±×iÏ*ÈæSÅfýèMX\93Z¡_<th[Æj¢M§X<¶¥IÑ×VÆY§¤Ê£IJècu>¿R\9eD\92W\7fÙä)6\7feñ\9b\92þøÝRYÛãLòH»®Å'tûC^\16\1f_J:ùAv¯ð½ïe\88b\8d~¨¯Ï\9dl^«\1dºø£ètoxûP{\ 6·î\14¼d?ÓÙʪ¬mY}Þ\84=öYÚÉÓâS|úÊlia÷áÁb\ 5?nÓ³\93o\9e#\850÷\ e¹ö¥<\921ûð\9an'§ú\10ûÚ\ 6ÛÈD:Ës_)1Y\ fF\8aoí;\ 1DÛ\12YÆ×ús\8ct\8cJ7©ÝöYÈ«-ÅË2èT½SS\80,@Ó\97ûúnÇQ·½´{\8bÏõ˾ÚÆ:Õ\16P\8a\16\94²)\ 1³µÖKÙ\16\18G\9b×-MøXü¾\14W\ f²¤©wÐuq\86t\9a|\ 6Æd«\ 5rX}!\83T\0Þߪ±¿Î6³ÕÇ\ 2\96¾\14¹n]µPú:r]\83¦7\r϶`\91°\8bUÙµ.#×i\ 3Ñ\e2\12´²Ý/bß\ 5Q·Ïµ\95ñÁ'éê³1t¹\7fé7¤¾ôø|\11{xY°½\19t~m´\19\8d¾®²w3\93h<ÕI\14¶Ù\8bnõ®EM\9fZ\13¼Ï§1\15\9djR{«Qwo<ÑY\1f\1e¸\96^eõ5\93¾Û¹>Ë®Ú\84\91\92ú=:ÚæDz\0Ócê2 gµ-ç·û\9b¶\8au>Jî;ßOÙê\ eIôYµÉúS:\99Å\87Oû²\rIòm\1ddbGöÅ\126\9fAÓl¢ÉjK,5I\a\rìý×þC\93\8dêÈw\8b¡÷\ 4êd\87¦þ<Á)ø\91¾Q©î\85¿M\8cé\8fU\93>ílYYlgØU/P_ß\9a×Þß]l«\\99ò²ÖÞ½YV\9bÌÒ's&ßR`I¶\11\91eR²ÕG²æÍö¡\97ÌÔ%©²â-ôÆ\93n#´Ì¶\a\90\15à\ 5iö]\0w+¹d\v»ÚÛà:¯SYü\89o»ÇQÈ\86uµÏ9×e.º\82yöò¬³à.\96ú¡\8b/g\7fNwÔq\1cÙ¿A\9e\8a)s-\92\ fVê3\f_ü¡gB#E²ñëä+\8d}Æê©n\10k\r\11oeÚ¦¿\8b·\15ýÙ\8eÖ\83\99|^tû4ïrôË|±}\105(\9b\97¾ \84\8e2Èû'¯Æ\93?2G6¢ö5PÁ:\ 4úìÌÔ\9bH6\ 3lÞÍÒ\89Ö#µ\boN}ù\82.UÒþPÝî\14µz/x\9bO¦§ÕzöÖ\81ÖÚ²j{ºn;J\84]\a½?p&Ø\ 4#\8f\8bl\8fFʾã½m\0\8d\95\10lW9ê\14Á\90l%ºÏ<Ð:H\12Ëâs8&[G\11\92u\ 2u®´mÚ\16fÛ²Ù\86l|Í\924\91t¢£>ãµô=¿V\eY\9eVÛjk²\r¿í\16®\8bAõî\9ft\9b\9eì3Mâ¶vLo(¹\87·õA\1f60`Kv-Gæê¯Û\9e(Ø\e´þ\10+\1f\16¶\eñ\92ûò\10ÛÔD\9eh\e{^ú\84Ö°M\8b6_Ï2i÷lÃèÃÍÕ§[\ 6\9bé/¹»ö/\16ü> ù\91{?Õ\9e\90*ÍÞÐo§¶áaÖý!ýFïOêÑæ}¿ÅjÈTî\9ceñû«\ 5`åg\86¾\bFCÚ~\1f\ e}Ú`ÐIì\92\14=\14o[\90kJß\16H:¢ÖeÚ=\1c(l]¦ºÍàX=Ƨ٢?iõ\8dÒÒÚ\97\1dùè°\85ïú&!¾u´?LȾmßÒ»ô½1'{x\88D\ 5¦Õç-M9Û>è»ñ\8bí §2XÑ\1f|YìY\98Ù\96\9cÄ3¡ì^\93\97c_Çc\91l¯+t~\99¤,}\ 2\91=\ f1UoiÙÄ#[F\96v§Óç¦jl&ôÙHÑâxu{lk¶\81l;4ôð±n\93h)sè\15ÛZÎ\ 5z¶Ðeñ'\90im§\8f¤\94±\15\8fÃô\15Wiî\ f0ÐgÅnOÙí\ f3\9amw/Ýo{î\93DÖ\1aì\89«ß\88}ç«SÅû\¦`s>ì\99\ 3}ÎÅ\1c|[üè#ö\1a»²
-°¯\92\9alô^7_÷©c²}Þlõu\9f\8f4YóÂc¢¹¿N\1fW £\13Ûã2V½_ë JòA¿¼Û¥}ÿI)úÜÖ´·Í¼-×JÑ÷Á±ý\1dB\8f×X$S\1f\9b´ômÏ£¯Ù×ý6t[u\e\8aN6Hsª\ f]ö\rêô!qÁ\86Õú.\10³ma¨7\84µ'iÜÍ¿n±ýî\93Í\81Ѷr±1U\1fÆ×j2osUbìÕXÊý\89\16«=\e[\1f\r²ô<±\99\Ò÷É\87óâÏO\89þ\çÉJutëÒÏ\84m£*SzÖà'zY«OÕñ§\1d{KÞ\ 6ÞËÜ\1f\10dÓÕe\80~Û?Ä\9fl3õöwܲ®X\17UÓl£+\99ªÓßßîÕ2é`^úãH¬\r&ýhoö\ 6\7fÚ\9a=#§Ï\18Zu±Èä\v\1c´\ 5\92mZ~\99ú\13\91u\ f5{J©vZãî9&ºï¾'Tï©ÊcÔú¶ø¶l8ï\1eþ;ùVÙY\97ÿY^û*ºâOX³\9d>\16_íâMH\99½¡\19&\v[Ê6eÄ.¡²5´e\99ý\1c]©Kû}>Gµ^\8c\8fúÈä\ 2\19\91:±]÷r\9f6 ¡TÛÌ«O*²¹z2Õ&LÛ\85k79iEÆÔsHÇ\ 6uOâ¾\7f\8bM\82]¦mO.ÙtÜw~ØE\f\83ÍÿÔ\89Î1ô\9dj²¥ø´\8fÕWù[ûÖ£t±?Ê3Ùh¹}¦ÎÛÔý\ 5\8b\7ff\1f.[ü)`öum¹@ï\8aHA^l\19\80\9eƸMð8Ñ.\80íµmOàñ®\82.\0³Ë'ø$ýºÍ4ÑZéÔ6ªÉ}F\8aUöU'tû5jÃÕ²ª|\9bO\16'\7fÚ_ðe:Õfñ\1d9l\ 1ïnB\8e,ª\ fý\19\1dÓÔ7\9bñÕ£\92¦\83(²ù\84-½¬ºdÎ\1eýhO³Ô¹BÙê\7f©q\96°ô*Ð\1f\90æ3&d 'Ûú»Ü'Îõ\r4%ôGKø¦\a2,ØK\96\86]¶\ 5êö\9c\ 6\7f4¦,¼Ï=ËíUö¬F+kÉÖί۴1ß\9faÚÆ$l;UK\89ýº«ú`Åië¤O¶¤Ì\8eÜM"LþØ\0Û\9eÁn#ÅÖþ÷\9dõüùÈvd\7f\92[ð%TËjû7ë¬Í\90\8a÷f·-\8cú~:Û&FÑ\97~T{ê¬Ur\93¯#éû>I´)õÍóõv\89úH\15]\97Ñgq®\1e(Ðç,YÇ(Nýi¹ëÜG¿Ââ[QÖл²í.?[y\9f¶!¾)îv\15\f\1e ðõ=É\1fì©#QöÀßY"\16=Hï»|ÈÂ\f\9b\80&«MuÆ£NÜ«>\89Úîå25néÏG,±Ï´+þ4\r¿xuaɼøO¨=\0R\96¾\89l\9fÞ çÀwßJ>"Q%´äͳb!\1c\19É\88>o¤/l[tÊA_ü\17ªU:6¼¯¡R\9dÕ+ë\1cm³\ 1 Ï.K\9f\8d¿ÚæÕÁ\87\8cäu6\0\81×TíÐ\1eQ\95AIÛôA'ó-Ö\vZêb3\ 3m\ f\15Ùü7Z\a]·íôh§×·Ò [|\ 5\98>7G'-Æâ?`µ]Ù\8b?ÇR\7fS²Ç/J¢Oã_ú\8e<²7\83:\90áÃ:û\92ª¾\16R÷'·¨\8bîfmQVÛ\18c¶IË\9ad\8fÚݶri¹¦ÍþS]?lë\8cågiÑÕÙÓ¶?rÞ[\9d^µÏ\16\8aµNNu)úbûé\aÙçÈ\1fÙi\ f\0\91×é\ 3ìuuúj§@V`\87íÑ¡vJC²m\ 1u½ó\94û©\92Ö\80mK°zd^zc§ºZß6)\fR¿E[Ô?û®ÒÒ\r\9al+&ÛvM7[^úÖ6É7³¯>!Kö\9dè\8f,Ö\89o\9aC\1eì,öD¤SÛ\9fÆ÷r(þ\84ÛÕ\1fסof¡i¹Å¾U\84ö5íwF\7fÎ\81<:Â\9föÙú\93¾Þ׿nÝÖÙFÛ\1cþTw\99([\1c7\16_Õ?ù
-\86Þö\93X\íÓª\16¿µèã*w+Ѥ0È\90pìk\ 2üÁ¬Ë¶mcÝnù2´;õ\r\ 1,\1eÒ7\15°î\97\ 4\15ôеG¦VkÝHtË/]i\ 4é\91e{xMÙ}_ß\9cJþ1X,HJWêëÚí¹Åk\7f\9aã\9aúó\9fw{äÍÖI?Ñ\93jûXz}4K«Yîÿ=\86ª\8f0\94ÓU|HZ¶5ñÇÒZ¬ÂÖ\91Øx\80\94U{\f\97Ô\82º\93¥.Zé;\13ø¦ \12<´\ 4/[r%\84>4nOôêý\1f{Y\98mË\8e¾ç\9aorzjOk\9df?Í\1a\97\9eûÓ¾´\84ÄyµÇ\ 5\97Ü\9f©¬\13ÌíÊíÏ\eHÞ\fX·0|¶)\0r«\9cB_Mæ£v:ᵯ\1cÓAp}ΰ\1f¦\ f\13\95V\8f\8f0f+/v íoj\12¼É\12úÂ7ÝçX\1eH\9e·\8dI|0J7å\v}ÄÇnçI&°,ý\12ZìÐd;¿KÕ\99rß\1c&mA0«*ä#æâ\8bxkðCó¶ÐÙ\9f}*{ã\ 4û&\8bm\e¡\91è2ùªñ9ú2Sk\0éÕ\1d|Óò)-þ\ 4?©v}·æÒ·\8a,Û6×¾\95³\ 5úÛ\15Ü\1f #\7fÚîs6¤Û7-ªý¡Èº\15\88µ±¶@´í$¿ÛCP'ÇTk¸ôV´.\14µ\ 6\8fv¬«¤\93Âäqä¾fd²a[Ý(.÷õ\ 5[Ë7õí\ 2·¹Øú\84»àíR\9b?,³ÙÇ\9dm)\92\95\85ö_´DÛ~Uw,³\1e\89Lp\8bþ^É÷¿[½($\7fÀNÖÇ\9aOÑ7\99Xú¼ùä\8bnu&\98µ\8e«m\89¶èÒ\8eàí^Ý8D\86_|ËF\9f\98h\8b\84û3%ûS2d´È[ÑötÎeê;µH0@·\93\94aT«\86$É\1f'/Í\ 5{òµ>kyµ\ e¦/^«þüQ\9d\86n;sè\82\11\8b\9eÉb!_»âó=uÆ\9d?/·ok¤S®\96¾G`°aj\99~cO\8cÐ\9d¼,ÄmCþY\8a\89î».O_´ý5õyƵ\axj,\1e\97\98ä16:OÅ'\8e/\1e\ e\95 ÊìA\84à\rÊ$kÉæ>\v]n*úX4ÛýB7¬Ô¤\vÃ\0×4*ñá½õè\95W\8fîÿã½ïd\8avÐmòeS®Ö\8c\95\899QfÄJm¶Hð_C¥²E«4·ÿd\98Bç<È\95\95d\14Gæ&<°g\1aêv\17IZêÚAOþÔ8Oª6t¡K1w\87J~Ê\ 3\v%6\98dc\ 3íuh\92ä{²m4\82\1f*7ÿ¤±\ 6[ª\98$¶*U{ʾO\94<\88°J\0[RlÕ¸LU\91\18SKªÛ\8c5]\ 3&Å)Ù`±Æ\82\8aï \91²NA·à\84\9e×]Jõu\ý8\8bU[¿8éÓ\1eü\19¼ÖÇN:ÅTÇ®wG¦íQö2 DW\17$Y<"Oº÷\98\94îË\96ô!0eöØ÷ây¤{ü_r\1a\1eULZikÍ\8c'\9f8cÓ>å\ 3\8b.\ f\94\bñª_4¯¾D8ù°Ï^Ò\}\v÷T¶\a\rê,\ 1ù%º\17Ú~Òj³Ûw\a-¾ý\a`e«ñ\96\98vóâ\17ÝÒi/©ONÝ?4÷\81\bû\84|´\9f\92, ~ö÷]SÆ=bÞÒS¼Ë\87÷dãÍû\9fÝ+~±\86£ûÿÝ®ØIþ\9fì¿9éVÎ÷ÿçÞËoÿ"\7füî\17\7fýü\aöÇ\9f~þo_|ùÁ'ß|ûù×÷Ú¡í5ïÝ{ë\9dÏÿß/N?ÿà½\9f\1eÝÿõ½?\1eI,Ïwö\94Æ\85N\85nù\17uVmË¿\8f\8e\82´\ 5% Þ>ðß\9fè\býBý¨í\ fí\ eоB»,ä\e§ö¿ö²{/¿¬_ò\9dO¾ýä\aí=¦ÜÚ\÷îÿâÿþÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0pÝþ¯g3úë\ 3\0\0\0\0\0\â\19#\1eÄF\0\0\0\0\0W@Ï\11/À\v\vz<\89Ñ\99\ 1\0\0\0\0x^èHb\88çTð\9e\87ÑY\ 5\0\0\0\0¸"ú\92\18k` |v£3\ f\0\0\0\0ð\18£;\8e\ f5:cðâ\8c.kÏÅèL\ 5\0\0\0\0\88ѽÃ+\1a\9dm¸~£ËÔ\v2:\9b\ 1\0\0\0à\10\8dî\v^\9bÑ\19\89g5º\ 4\r3:ã\ 1\0\0\0àî\eÝó{\8eFg-\9eÚè"s#\8c> \0\0\0\0p\a\8dîê½P£3\e\8f1º\80ÜP£O\v\0\0\0\0Üz£;v\83\8dÎ~\9c7ºDÜ\ 2£O\11\0\0\0\0ÜJ£;s7ÈèS\ 11º\14Ü2£O\17\0\0\0\0Ü\ e£{o7Úè\93s F\9fö[lô©\ 3\0\0\0\80\9bkt\8fíÖ\18}¢\ eÈèS}G\8c>\8d\0\0\0\0p³\8cî¥ÝJ£OÚÝ7ú\fß)£O&\0\0\0\0Ü\b£;g·Þè\13x7\8d>«wÖè\13\v\0\0\0\0#\8dî\93Ý\11£Oã]3ú|Þq£O/\0\0\0\0\f0º+v\a\8d>¥wÁèsx@F\9fj\0\0\0\0xAFw¿î¸Ñ§÷\16\e}ê\ eÎè\13\ e\0\0\0\0ÏÝè\8e×A\18}\92o\9fÑgì \8d>ù\0\0\0\0ð\\8cîl\1d\9cÑ'üÖ\18}¢@Y\ 5\0\0\0p×\8cîf\1d¨Ñ§ý¦\e}~pÆèâ\0\0\0\0\0×`t×
-ô./7ú´à\12£\v\ 5\0\0\0\0<\93Ñ\9d*¸Ñ\ 5áÆ\19}BðP£\8b\ 6\0\0\0\0\Ñèî\14Î\18]\1cn\90ѧ\ 2\8f1º\80\0\0\0\0ÀS\eÝ\91Â%F\17\8añF\9f\ 1<\85Ñ\85\ 5\0\0\0\0\9eÈèÎ\13\1ect\ 1\19ftÆã©\8d.2\0\0\0\0ð\18£»Mx"£\8bÉ\0£³\1cW4ºà\0\0\0\0ÀC\8dî0á)\8c.,/ÔèÌÆ3\19]|\0\0\0\0à\12£»Jxj£\8bÌ\v2:\9bq\rF\17"\0\0\0\08ct' W4ºà<w£3\18×ct9\ 2\0\0\0\80\9dÑ=$<\93ÑÅçù\1a\9d»¸6£\8b\12\0\0\0\0\88Ñ}#\\83Ñ\85èy\19\9d¯¸f£\v\14\0\0\0\0ÐÓ¼\vF\17¢çbt¦â¹\18]¬\0\0\0\0\1c´Ñ]"\\9bÑEé\9a\8dÎN<G£\v\17\0\0\0\80\ 35º3\84k6º@]\9bÑ\19\89çktù\ 2\0\0\0p\88F÷\84ð\\8c.V×ct.â¹\e]Ä\0\0\0\0\1c\96Ñ} <G£\v׳\1a\9d\7fxAF\174\0\0\0\0\87btï\aÏÝè"vu£s\ e/Îè²\ 6\0\0\0àP\8cîýà¹\e]Ä®ht¶áE\e]â\0\0\0\0Ü}£û=xAF\17´«\18\9dg\18`t¡\ 3\0\0\0p\97\8dîñà\85\1a]Ü\9eÎèÜÂ\18£Ë\1d\0\0\0\80;ktw\a\ 3\8c.tOjt>a¤Ñ¥\ f\0\0\0À\1d4º£\83aF\17½Ç\e\9dC\18ot\19\ 4\0\0\0p×\8cîå`¤Ñ¥ïQFç\rn\84ÑÅ\10\0\0\0À\9d2º\8b\83ÁF\17À\87\1a\9d1¸AF\17F\0\0\0\0wÄèÎ\rn\84ÑÅðr£s\ 57Ëèò\b\0\0\0àÖ\eÝÁ\r2º0\9e7:?pã\8c.\92\0\0\0\0n·Ñ}\1aÜ8£\8bäÎè\9cÀ\r5º`\ 2\0\0\0¸F÷fpC\8d.\98bt\1eàæ\1a]6\ 1\0\0\0ÜJ£»2¸Ñ(\9c¸ÉÆ\96O\0\0\0\0·ÎèN\fn\a
-'n¦!%\13\0\0\0À-5º\a\83Û\84\92\89\9béE\96L\0\0\0\0·Ôè\8e\vn%
-'n \17S,\ 1\0\0\0Ü^£{-¸Å(\9c¸\81\9ew±\ 4\0\0\0p{\8dî¯à. pâFyN\ 5\12\0\0\0À6º§\82»\86Â\89\9bã\1aK#ðÂp9\0\0\0<'Ï©¡\ 5\18J&\86»Æ
-\13x´Ñ\85}\98Ñ\19\ f\0\0ðDF7\9a\0àE\18]×â\8e\18]\90ï\8eÑg\12\0\0\1c¢Ñ- \0x¡FWº¸MF\97Vì\8c.\v/\1a9\ 3Ü"ϯêãJ\1f\85³sW=§+\14\0n¸Ñµ/n¨Ñ\ 5\13Ï\ 5åçR/,[\80»aô%ûx£sè6á4\1d\9a\81g\1c\0n\94Ñõ1Æ\e]\ 6\81\9bkôÕ \8c1úÊ»~£st¤ÑyÿtFçÖ]3ú|\ 2À\r5ºzÆ\0£\v\1dpë\8d¾\88\81ë1úJ\1altö_¿Ñ9ú\\8cÎÔÛdô¹\ 2\80[ct\85\8d\17at)\ 3\ eÈèË\1d8oô5qË\8c>]Ojt>\8d4:ïo\90ѧ\ 2\0n±ÑU8\9e\8bÑÅ
-À%FW\f¸;F\97å\ 32úT\8bÑyps\8d>3/Úèü\ 6\80»ct\8d\8ek3º(\ 18\£ë¿+\1a\9dm¸(\937Óó;/£\8cÎQ\0¸³FWðxV£K\10\0\\1dÕ \80çáZê\96!Fç\1c\0\1c\8aÑõ=\9eÚè"\ 3\0\0pk\8cn¸=Êè¼\ 1\80\ 35ºúÇ\93\1a]R\0\0\0n·Ñ9\9as\0p#\8c¾\eà1F\17\10\0\0\80»\89\86\1c\0\1c¬\17p\vÀÓ\1a](\0\0\0\ e\ eí7\08\10×ÒmÇu\19]\1c\0\0\0\0\0¸ËF÷û!F\97\ 2\0\0\0\0\0\ eÅè\18ÀA\e}ò\ 1\0\0\0\08,£#\ 1\87hô9\a\0\0\0\0à@\8d\ e \1c\96Ñg\e\0\0\0\0\80\836:0p(F\9fg\0\0\0\0\0 FG\bî¸Ñ§\17\0\0\0\0\0ì\8c\8e\13ÜY£O,\0\0\0\0\08ot´à\ e\1a}J\ 1\0\0\0\0ÀåFÇ\fî\94Ñ'\13\0\0\0\0\0<ÆèàÁ\1d1ú4\ 2\0\0\0\0\80Ç\e\1d?¸õF\9f@\0\0\0\0\0ð¤FG\11n±Ñ§\ e\0\0\0\0\0<\9dѱ\84Ûjôy\ 3\0\0\0\0\0W1:¢pË\8c>]\0\0\0\0\0àêFÇ\15n\93Ñç
-\0\0\0\0\0<\93Ñ¡\85ÛaôY\ 2\0\0\0\0\0×`t\80á\16\18}\8a\0\0\0\0\0Àõ\18\1dc¸ÑF\9f\1c\0\0\0\0\0p\9dFG\1an®Ñg\ 6\0\0\0\0\0\¿Ññ\86\egô \ 1\0\0\0\0\0ÏËè¨ÃÍ2úl\0\0\0\0\0\80çhtàá\ 6\19}*\0\0\0\0\0Àó5:öp#\8c> \0\0\0\0\0àE\18\1d\81\18oô\19\0\0\0\0\0\0/Èè Ä`£³\1f\0\0\0\0\0¼P£C\11Ã\8cÎx\0\0\0\0\0ð¢\8d\8eF\8c1:×\ 1\0\0\0\0À\0£\ 3\12/Úèü\ 6\0\0\0\0\0Ã\8c\ eK¼P£3\e\0\0\0\0\0\8c4:2ñâ\8cÎi\0\0\0\0\00ØèàÄ\v2:\9b\ 1\0\0\0\0Àx£ã\13/Âè<\ 6\0\0\0\0\07Âè\10Ås7:\83\ 1\0\0\0\0À\r2:Pñ\1c\8dÎZ\0\0\0\0\0p³\8c\8eU<G£³\16\0\0\0\0\0Ü,£c\15ÏËè|\ 5\0\0\0\0\07ÎèpÅs1:S\ 1\0\0\0\0ÀM4:bqýFç(\0\0\0\0\0¸¡F\a-®Ùèì\ 4\0\0\0\0\07×è¸Å5\e\9d\9d\0\0\0\0\0àæ\1a\1d·¸N£ó\12\0\0\0\0\0Üh£C\17×ftF\ 2\0\0\0\0\80\9bntôâz\8cÎE\0\0\0\0\0p\v\8c\ e`\\8fѹ\b\0\0\0\0\0n\87Ñ1\8cg5:ÿ\0\0\0\0\0À1:\8cñLFg\1e\0\0\0\0\0¸MFG2®ntÎ\ 1\0\0\0\0\80[ft0ãêFç\1c\0\0\0\0\0¸eF\a3®ht¶\ 1\0\0\0\0\80Ûgt<ã*Fç\19\0\0\0\0\0¸\95F\874®bt\9e\ 1\0\0\0\0\80[itHã©\8dÎ0\0\0\0\0\0p[\8d\8ej<\9dѹ\ 5\0\0\0\0\0n±Ñ\81\8d§3:·\0\0\0\0\0À-6:°ñ\14Fg\15\0\0\0\0\0¸ÝFÇ6\9eÂè¬\ 2\0\0\0\0\0·ÛèØÆ\93\1a\9dO\0\0\0\0\0àÖ\e\1dÞx"£3 \0\0\0\0\0Ü\ 5£#\1cOdt&\ 1\0\0\0\0\80»`t\84ãñFç\10\0\0\0\0\0¸;FÇ9\1ectö\0\0\0\0\0\80»ct\9cãQFç\r\0\0\0\0\0¸SF\87:\1eetÞ\0\0\0\0\0\80;et¨ã¡Fg\f\0\0\0\0\0¸kFG;\1ejtÆ\0\0\0\0\0\80»ft´ãr£s\ 5\0\0\0\0\0ÜA£\ 3\1e\97\e\9d+\0\0\0\0\0à\ e\1a\1dð¸Äè,\ 1\0\0\0\0\0wÓè\98Ç%Fg \0\0\0\0\0¸\9bFÇ<Î\e\9d\1f\0\0\0\0\0àÎ\1a\1dö8ot~\0\0\0\0\0\80;ktØã¼Ñù\ 1\0\0\0\0\0î¬Ña\8f3Fg\ 6\0\0\0\0\0¸ËFG>Î\18\9d\19\0\0\0\0\0à.\e\1dùØ\19\9d\13\0\0\0\0\0à\8e\e\1düØ\19\9d\13\0\0\0\0\0à\8e\e\1düØ\19\9d\13\0\0\0\0\0à\8e\e\1düp£³\ 1\0\0\0\0\0Ü}£ã\1fnt6\0\0\0\0\0\80»otüÃ\8dÎ\ 6\0\0\0\0\0p÷\8d\8e\7f\88Ñy\0\0\0\0\0\0\ eÂè\10\88\18\9d\a\0\0\0\0\0à \8c\ e\81\88Ñy\0\0\0\0\0\0\ eÂè\10\b1\10\0\0\0\0\0ð\82\8c\8e\82\10\ 6\ 1\0\0\0\0\0/Èè(\ba\10\0\0\0\0\0ð\82\10\ 3\ 1\0\0\0\0\0\a\820\b\0\0\0\0\08\10\84A\0\0\0\0\0À\81 \ 6\ 2\0\0\0\0\0\ e\ 4a\10\0\0\0\0\0p \b\83\0\0\0\0\0\80\ 3A\18\ 4\0\0\0\0\0\1c\bb \0\0\0\0\0à@\10\ 6\ 1\0\0\0\0\0\a\820\b\0\0\0\0\08\10Ä@\0\0\0\0\0À\81 \f\ 2\0\0\0\0\0\ e\ 4a\10\0\0\0\0\0p \b\83\0\0\0\0\0\80\ 3A\18\ 4\0\0\0\0\0\1c\bb \0\0\0\0\0à@\10\ 6\ 1\0\0\0\0\0\a\820\b\0\0\0\0\08\10\84A\0\0\0\0\0À\81 \f\ 2\0\0\0\0\0\ e\ 41\10\0\0\0\0\0p \b\83\0\0\0\0\0\80\ 3A\18\ 4\0\0\0\0\0\1c\b \0\0\0\0\0à@\10\ 6\ 1\0\0\0\0\0\a\82\18\b\0\0\0\0\08\10\84A\0\0\0\0\0À\81 \f\ 2\0\0\0\0\0\ e\ 4a\10\0\0\0\0\0p \b\83\0\0\0\0\0\80\ 3A\18\ 4\0\0\0\0\0\1c\b \0\0\0\0\0à@\10\ 3\ 1\0\0\0\0\0\a\820\b\0\0\0\0\08\10\84A\0\0\0\0\0À\81 \f\ 2\0\0\0\0\0\ e\ 4a\10\0\0\0\0\0p \b\83\0\0\0\0\0\80\ 3A\18\ 4\0\0\0\0\0\1c\b \0\0\0\0\0à@\10\ 6\ 1\0\0\0\0\0\a\82\18\b\0\0\0\0\08\10\84A\0\0\0\0\0À\81 \f\ 2\0\0\0\0\0\ e\ 4a\10\0\0\0\0\0p \b\83\0\0\0\0\0\80\ 3A\18\ 4\0\0\0\0\0\1c\b \0\0\0\0\0à@\10\ 6\ 1\0\0\0\0\0\a\820\b\0\0\0\0\08\10\84A\0\0\0\0\0À\81 \f\ 2\0\0\0\0\0\ e\ 41\10\0\0\0\0\0p \b\83\0\0\0\0\0\80\ 3A\18\ 4\0\0\0\0\0\1c\b \0\0\0\0\0à@\10\ 6\ 1\0\0\0\0\0\a\820\b\0\0\0\0\08\10\84A\0\0\0\0\0À\81 \f\ 2\0\0\0\0\0\ e\ 4a\10\0\0\0\0\0p \b\83\0\0\0\0\0\80\ 3A\18\ 4\0\0\0\0\0\1c\b \0\0\0\0\0à@\10\ 6\ 1\0\0\0\0\0\a\820\b\0\0\0\0\08\10Ä@\0\0\0\0\0À\81 \f\ 2\0\0\0\0\0\ e\ 4a\10\0\0\0\0\0p \b\83\0\0\0\0\0\80\ 3A\18\ 4\0\0\0\0\0\1c\b \0\0\0\0\0à@\10\ 6\ 1\0\0\0\0\0\a\820\b\0\0\0\0\08\10\84A\0\0\0\0\0À\81 \f\ 2\0\0\0\0\0\ e\ 4a\10\0\0\0\0\0p \b\83\0\0\0\0\0\80\ 3A\18\ 4\0\0\0\0\0\1c\b \0\0\0\0\0à@\10\ 6\ 1\0\0\0\0\0\a\820\b\0\0\0\0\08\10\84A\0\0\0\0\0À\81 \ 6\ 2\0ÀÿÏÞ\9b?ØrTw\9eÝØ\80\90\84\90Ð\ 6Ú%\90\84$$´"´\víû\82¶\a\920bß\8c16\ 3^º=\1eÓãm¦\9bé¶=Kû\8f\9dÊÌXÎ9q"2óÖ½\15·ê~>?ÁS½W¹~òä7ND\ 2\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bd \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À!°»\f\84\18\ 4\0\0\0\0\0\0\0ö
-b\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\ 4b\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\ 42\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\ 4b\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80C`w\19\b1\b\0\0\0\0\0\0\0ì\15Ä \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 2\19\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À!°»\f\84\18\ 4\0\0\0\0\0\0\0ö
-b\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\ 4b\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80C`§\19\b1\b\0\0\0\0\0\0\0ì\ fÄ \0\0\0\0\0\0\0p \10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p\bì:\ 3!\ 6\ 1\0\0\0\0\0\0\80=\81\18\ 4\0\0\0\0\0\0\0\ e\ 42\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\81]g Ä \0\0\0\0\0\0\0°'\10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\ 2'\90\81\10\83\0\0\0\0\0\0\0À>@\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\bÄ \0\0\0\0\0\0\0p\b\9cL\ 6B\f\ 2\0\0\0\0\0\0\0Ý!\ 6\ 1\0\0\0\0\0\0\80\ 3\81\18\ 4\0\0\0\0\0\0\0\ e\ 4b\10\0\0\0\0\0\0\08\ 4N,\ 3!\ 6\ 1\0\0\0\0\0\0\80¾\10\83\0\0\0\0\0\0\0À\81@\f\ 2\0\0\0\0\0\0\0\87ÀIf Ä \0\0\0\0\0\0\0Ð\11b\10\0\0\0\0\0\0\08\10\88A\0\0\0\0\0\0\0à\108á\f\84\18\ 4\0\0\0\0\0\0\0zA\f\ 2\0\0\0\0\0\0\0\a\ 21\b\0\0\0\0\0\0\0\1c\ 2'\9f\81\10\83\0\0\0\0\0\0\0@\17\88A\0\0\0\0\0\0\0à@ \ 6\ 1\0\0\0\0\0\0\80C K\ 6B\f\ 2\0\0\0\0\0\0\0'\ f1\b\0\0\0\0\0\0\0\1c\ 2½2\10b\10\0\0\0\0\0\0\08a:Æ $!\0\0\0\0\0\0\0p\92\10\83\0\0\0\0\0\0\0À!Ð7\ 3!\ 6\ 1\0\0\0\0\0\0\80\13£w
-B\f\ 2\0\0\0\0\0\0\0'Aï\bd ÷1\0\0\0\0\0\0\0\80\83 w\ 42Ðû\18\0\0\0\0\0\0\0ÀÙ§wþ\11è}\18\0\0\0\0\0\0\0àìÓ;ÿ\bô>\f\0\0\0\0\0\0\0pÆé\1d~dz\1f \0\0\0\0\0\0\08ãô\ e?2½\8f\ 4\0\0\0\0\0\0\0\9cez'\1f\8aÞ\a\ 3\0\0\0\0\0\0\0Î2½\93\ fEï\83\ 1\0\0\0\0\0\0\0g\96Þ±\87CïC\ 2\0\0\0\0\0\0\0g\90Þ\81\87Oï£\ 2\0\0\0\0\0\0\0g\90Þ\81\87Oï£\ 2\0\0\0\0\0\0\0g\8dÞiG\95Þ\a\ 6\0\0\0\0\0\0\0Î\14½£\8e\16½\8f\r\0\0\0\0\0\0\0\9c)zG\1d-z\1f\e\0\0\0\0\0\0\08;ôÎ9fè}x\0\0\0\0\0\0\0à\8cÐ;ä\98§÷\11\ 2\0\0\0\0\0\0\803Bï\90c\11½\ f\12\0\0\0\0\0\0\0\9czzÇ\eKé}\9c\0\0\0\0\0\0\0àtÓ;ÛXAïC\ 5\0\0\0\0\0\0\0§\9bÞÙÆ
-z\1f*\0\0\0\0\0\0\08Åô\ e6ÖÑûh\ 1\0\0\0\0\0\0Ài¥wª±\9aÞ\a\f\0\0\0\0\0\0\0N%½#\8d\ré}Ø\0\0\0\0\0\0\0à\94Ñ;ÌØ\9cÞG\ e\0\0\0\0\0\0\0N\19½Ã\8cÍé}ä\0\0\0\0\0\0\0à4Ñ;É8\16½\ f\1e\0\0\0\0\0\0\0\9c\1azÇ\18Ç¥÷ñ\ 3\0\0\0\0\0\0\80ÓAï\fc;ô>\8a\0\0\0\0\0\0\0°ïôN/¶Fï\ 3 \0\0\0\0\0\0\0ûKïÜbËô>\9c\0\0\0\0\0\0\0°§ô\ e-¶Oï#
-\0\0\0\0\0\0\0ûHïÄbWô>®\0\0\0\0\0\0\0°_ôÎ*vHïC\v\0\0\0\0\0\0\0ûBï\94bçô>À\0\0\0\0\0\0\0°\17ô\8e(N\82ÞÇ\18\0\0\0\0\0\0\0:Ó;\9c8Qz\1fl\0\0\0\0\0\0\0èFïXâ¤é}¼\ 1\0\0\0\0\0\0 \ 3½\ 3\89>ô>ê\0\0\0\0\0\0\0pÒôN#ºÑûÀ\ 3\0\0\0\0\0\0ÀÉÑ;\87èOï3\0\0\0\0\0\0\0\0'Aï\ 4b/è}\12\0\0\0\0\0\0\0`·ôÎ\1eö\88Þ§\ 2\0\0\0\0\0\0\0vEïÔa\1fé}N\0\0\0\0\0\0\0`Ëô\ e\eö\97Þg\ 6\0\0\0\0\0\0\0¶Fï\98aßé}~\0\0\0\0\0\0\0à¸ôN\17N\13½Ï\15\0\0\0\0\0\0\0lHïPáôÑû\8c\ 1\0\0\0\0\0\0À:zg §\98Þ§\ e\0\0\0\0\0\0\0\16Ñ;B8#ô>\8d\0\0\0\0\0\0\0P¥wlpÖè}>\ 1\0\0\0\0\0\0ÀÒ;-8Ëô>·\0\0\0\0\0\0\0@ôqBô>Ï\0\0\0\0p\88PÄ\ 2\0ü\a¢\8f\1eô>ç\0\0\0\0pö¡¬\ 5\0\988\ 1\1fÂ,½¯\ 2\0\0\0\08kô®p)q\ 1`/èíBðé}]\0\0\0\0d(rN)[<q[§÷±\ 1\80³OoÏÁjz_2\0prà\r\0Ø+¶%%ÜÕ\85\13>}Û¢÷a\ 3\80ÓGooÁöé}M\ 1À\ eé-\98@ïÃ\0\0{Ao\159ô>$§\8fÞglËô>\9c° \9ct8>[\11\b\9cvz_\86\0°Mz\eå,ÓûÜ\ 2\9c2zß²«é}Àö\91ÞçäDé}°\ f\82Þ'y\13z\1f3°ô¾"à\8cÐûB\ 6\80íÐÛ%\87Nïó\ fÐ\99Þ·àNè}PûÐû¨ï\v½ÏÃ)£÷éêFï\ 3\7f\16è}\ eá@é}á\ 3Àqém\11hÑûê\0Ø\15½ï\ eô>ä;¡÷A=5ô>Q\9dé}øO%½OZ\7fz\9f\ 1\80\19zß"\0°9½ý\ 1\eÒûÂéC\8eÞGk¿è}6ö\97Þgf\1d½\8fÖY£÷ùÜ&½\8fåaÑûl\1f\97ÞÇ\ f`;ô¾\93\0`\13z\9b\ 3vHï\8bk\9eÞGh¿è}6¶LïÃyFà$\1e2}ϾKïC\ 2«á"\ 18\ 1NþF\ 3\80ãÐÛ\19°wpñì?»\13Â\ 6ô>\18\10àÜ\1d2ÜÂ\0\0Ý9\8e\8a\ 1àÄè
-\08Q\90\ 3\0\0\0À\8eØÝ[\e\0l\8bÞ\9e\0\0\0\0\0\08;ô~Ã\ 3\80\16½\r\ 1\0\0\0\0\0p¦èý\92\a\0Uzë\ 1\0\0\0\0\0à\fÒûU\ f\0\1cz\8b\ 1\0\0\0\0\0àÌÒû\85\ f\0\14½\95\0\0\0\0\0\0p\96éýÎ\a\0\99Þ>\0\0\0\0\0\08ûô~ó\ 3\80\81Þ&\0\0\0\0\0\08\14z¿ÿ\ 1\1c:½\1d\0\0\0\0\0\0p@ô~\ 5\ 48hz\v\0\0\0\0\0\0ààèý"\bp ô¾õ\ 1\0\0\0\0\0\ e\94Þ¯\83\0\aGï\9b\1e\0\0\0\0\0àpéýF\bpXô¾ã\ 1\0\0\0\0\0\ e\9dÞï\85\0\87Bï{\1d\0\0\0\0\0\0\ 6z¿\1d\ 2\9c}zßå\0\0\0\0\0\0\10èý\82\bpÆé}\8b\ 3\0\0\0\0\0\80¢÷k"ÀY¦÷ý\r\0\0\0\0\0\0\96Þo\8a\0g\93Þw6\0\0\0\0\0\0øô~_\ 48kô¾§\ 1\0\0\0\0\0 Eï·F\80³Cï»\19\0\0\0\0\0\0fèýâ\bpFè}+\ 3\0\0\0\0\0À"z¿>\ 2\9czzßÄ\0\0\0\0\0\0°\82Þ/\91\0§\98Þ·/\0\0\0\0\0\0¬¦÷«$À©¤÷\8d\v\0\0\0\0\0\0\eÒû\85\12à\94Ñû\96\ 5\0\0\0\0\0\80cÑûµ\12àÔÐûf\ 5\0\0\0\0\0\80-Ðûå\12à\14Ðû6\ 5\0\0\0\0\0\80Ñû\15\13`¯é}\83\ 2\0\0\0\0\0À\96éý¢ °\8fô¾/\ 1\0\0\0\0\0`Wô~ã\ 4Ø/zß\91\0\0\0\0\0\0°sz¿z\ 2ì\ 5½oD\0\0\0\0\0\08!z¿\80\ 2t¦÷-\b\0\0\0\0\0\0'Jï×P\80>ô¾ó\0\0\0\0\0\0 \ f½ßG\ 1N\9aÞ÷\1c\0\0\0\0\0\0t¦÷\8b)À ÑûV\ 3\0\0\0\0\0\80½ ÷ë)Àné}\87\ 1\0\0\0\0\0À~Ñû=\15`Wô¾·\0\0\0\0\0\0`OéýÂ
-°MzßO\0\0\0\0\0\0°ïô~s\ 5Ø\ e½ï$\0\0\0\0\0\085ô~\85\ 5Ø\9cÞw\ f\0\0\0\0\0\0\9c>z¿Ë\ 2lBïû\ 6\0\0\0\0\0\0N1½_j\ 1\96Òû^\ 1\0\0\0\0\0\803Bï\17\\80\16½ï\ f\0\0\0\0\0\08kô~Ó\ 5ðé}g\0\0\0\0\0\0À\99¥÷+/@¦÷Ý\0\0\0\0\0\0\0\aAï×_8tzß\ 1\0\0\0\0\0\0pXô~\ f\86\ 3¥÷\85\ f\0\0\0\0\0\0\87Kïwb8 z_ì\0\0\0\0\0\0\0\ 3½ß\8fá\8cÓû\ 2\a\0\0\0\0\0\0°ô~W\863Hï\8b\1a\0\0\0\0\0\0`\86Þ¯Îp\16è}\15\ 3\0\0\0\0\0\0¬ ÷k4\9cJz_¶\0\0\0\0\0\0\0\9bÓû\1aN\r½/U\0\0\0\0\0\0\80Ñû%\eö\94Þ\17&\0\0\0\0\0\0À\ eéýÚ\rûBï+\11\0\0\0\0\0\0à\84èý
-\ eÝè}é\ 1\0\0\0\0\0\0t£÷K9\9c\10½/4\0\0\0\0\0\0\80=¢÷k:ì\84Þ\97\15\0\0\0\0\0\0À¾ÓûÝ\1d\8eKï+\b\0\0\0\0\0\0àôÑûm\1eVÐûb\ 1\0\0\0\0\0\08;ô~Ë\a\9fÞ×\ 5\0\0\0\0\0\0ÀY¦÷{?\10}\0\0\0\0\0\0\0ô¡w$p\10ô>É\0\0\0\0\0\0\0`é\9d\16\9c)z\9fL\0\0\0\0\0\0\0XGï,á4Ñû\\ 1\0\0\0\0\0\0À\96é\1d6ì\v½Ï\ 3\0\0\0\0\0\0\0ô¡w&±[z\1f]\0\0\0\0\0\0\08\ 5ô\ e0VÐûP\ 1\0\0\0\0\0\0ÀÙ\87\88\ 3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ö\8dÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0g\83ÿèÑ{£\0\0 àZ\1ag\ 3À©æLÙk\81¦Q6\0\9c\1eÎ ÂVzú´ï.\0\9cqΦÃ66õ)ÜW\08ë\9cQ\8b\1dSÔ§iW\ 1à¬sf5¶%Sïÿ\8e\ 2ÀÙçÌjl\v;v:v\14\0Î>gWc[Û³=ßO\08û\9c]\8fmyÏöv?\ 1àìs\86=¶\93]Û¿Ý\ 4\80\ 3à\f{lñ¦~¬ä\14í&\0\9c}6\91ð
-ö~ß\1cK¯wv×½\ 4\80\ 3àx&^ÄÞîÛ¬¦×(»Û^\ 2À\ 1°P·Ç*:»\89l³]ÚXØ}v\12\0\ e\80ãhz¥²÷kç62õü¾\9eüN\ 2À!°\rO/6öþìÜ1L=·§'½\93\0p\0lÕÔK|½\17;WÝö?ðX¿§'¹\93\0p\0l]ÔK\84Ý{ïVhz^Ù½÷\11\0\ e\81\1d\99zÎ×]wn\13O7\8d\8d®\ 1`·¬6õÊ¢³oL°t×V\98º¶³Ø\1a\0vÈ*UoVtÖuÝeçVíÕ\1f®ÚWt\r\0»a\85©\8fUuö\89 \96ì\9akh\9f%»\8a\ 1`\a,Uõ
-Q×\85}â¶^°o\v5ÝR6¶\ 6\80]³LÕ\e\98ºâë\93µõì¾\17uEس{¹³}\ 4\80C`\89ª= \9f\8a\94`vçæöéã\92¹½¥¸\ 6\80]á\96¹3¦Þ %\98/;wb²UªnXúã\rg¯Òõ\ eö\11\0\ e\81Õª^ ê\8a°;\14×3;WÛ¯\86§}c×v\13[\ 3Àv\98uõƦö|}Ò¶^¬ê\96¨?\91i {±®·¼\8f\0p\b¬RµñðÂ\90 cJÐܹYS\7f¢Î¬¯±5\0l\93\19WWM½2$è\94\12¬Uõ2Q;Â^©ë-î"\0\1c\ 4\8bU½RÔ\9e°;¤\ 4K\íì\96vò'55a\97û\89\ 1`K,uuÕÔ³\11Á|H°C[×w®¡êª¥kÎ^¤kl\r\0Ç`ªg==\17ê.ÓõÎ÷®Ø5»S¥\9cÏ;Z±í\8ebk\0Ø&\8b\í©zFÔ\8d\8cÀ\r vc²úÎUT]\9aú¼\1aU_ÛÝÄÖ\0pl\1a®^\9aèÎ$\ 4=3ÝÅeµÞYO\97Ævu]î%²\ 6\80\8dXãêµ\89n3Ó=\19[ϹÚSuiêOyÔ|íë\1a[\ 3Àq¨»z6ѵ¢vÒ\ 1-ì\ e\99î2W{ªnzº4v]×Ø\1a\0\8eÏrW×\aßÖGºõ\90`˶®ì\9c»kr·¬¨Ï÷°Â.uw³²\8fÛ9\91\0p¶\99uu{ðm}¤;\17\12lµî¬ì\9dWV\97ªnyº0v[×Ø\1a\0\8eGÍÕ~Y]5õªH×:w\93\12,vµØ1×Ô\17xÔ}-öÓ\7f&ak\0XÃ\9c«\e£o[\8btw\98é6]ý\87ÖÕ\85ª=O_xá\85\9e±}]7¢\10d\r\0ËYåj'Ò\15¦®\aºÆ×\8dâzÛ¶^àjOÕ\8e©/ô©ùÚÕuk\1f·yR\ 1à̱ÌÕ²¬vGßæ\ 3]g\ 4î\ 4ú%6sµØ'+êOg¬°\8d®\17Øz[o\ f\0pöi»º,«\9b£o\95<·>\ 2·k[Ï»º¦êÂÔ\9f®áûZéz\99·}j\ 1à\f±\91«ËL·2úV\8eÀ¹\89î\92Hw#\975÷ÎquÚ¯¼KJÔ\17Y\94°µ®Ó\8e\9aâ\1a[\ 3Àzþ£¯3'\ 2qU]\88ÚKs³°gu½m[·öN»Z\95Õi§\84©³ ?3a\8d\9dvYé\1a[\ 3À\16ØØÕ\8b\87ß¼\ 1¸Y[o+\bYçjµ_q\97\84¨?ã#\84-uý)«ë\8a\915\0ÌRqõÇ
-WWUÝ\18~\13\ 3pÒ×Çh\97X+³Í\mU-E}±A ÛÓµkkJk\0XÅ\86®ÞþøÛnl½ÈÕ2®6ªÖ¦N\82¾$¢\95-}mt½ÂÖ»:Õ\0p\8aYåj]VWÆßì\0\9cãë\85ão[°õ*W\8b\1d3ªÎ¢¾Ä'\v»Ôµx,Ž$\b\ 1\80ulæꪪ\8bF\89Êð[9þæ&ºU[/ÕYe÷JW\8b=\vû\95U\9dL=yù³%BØÁ×Y×aG«¶¦´\ 6\80yÚ®®dº*)°\ 3pÎ\10\áë\vLB°ÀÖVÖ\8b|fÿNù$\8aû¦#\90¼WÓî$Q\a7_ª\91Æ\ e¾\9ev÷¤ë\1c\85`k\0XMMfmW·T-\14-FÞün YsV»%\8ecëyWÿaájUV'U'QG?_\96QÊ\ e¾\96ºnÙº\1a\84ìþÜ\ 3Àéáø®^Ò+\91¤\9d}½¨[bf\90q^h\eºÚUu\12u\96ôå\ 3ÆÙÁ×Z×ê±\94÷\92Ò\1a\0\96±±«ëª^Ó,á\f¿´uÛhË]ý ÏÕFÕIÔ\97û$ak]\9bâºmkd\r\0%\85ù>ö±\8aÎê\ 3pªY¢Õ-a|ýi\95ç\9eïØzI\ 3_ÓiÕÝ[âêXVKU'Q_á\91\84u=î«kk\82\90\80sR\ fï \0Ô)ï\8bE®\9eék»Äk\97\90¾¶º\9e±õ\KHí\86v~ÊÙ»¶«Ç}\92ªN¢¾²$ [ë:\17×3¶>û²n:y3zï\12À Ð\92Ù2Wçf\89¤j+êÜ&!;%d+²\8aB6·õ\12\16»:G ã.IU'Q\7fÎ\92\84u\1d\8akkëeAHïkd\vl|¶6¢÷Þ\ 2l\1fïJw]m\9b\90[=ÈÂÔ\97ZÊζFkÛ'\9dØúض®<\89\8c«s\\9dËj©ê$êÏk\92°µ®Cq\9d£\90q?\8bØúì\95Ö\e\9e¤²Û}Úö¿~¦9ñsµù¶uÜ\12\ fÿpmäê\8bt\13²ßÚæ5¶åV \9bçÎÛz#]×Þ\1aê®ÎeµTu\12õU\92$lëP\\87(ıõL\10ÒûJÙ\80MÎÍ\89±Óíßù¡=mìïaÜ«\8dÙ`+W¸ú\82²³íbeêË\1c²¯½y#ÖÖí©\8c\eØz\99«Ï\17qµ,«GUO¦Î\9e¾:£\84=úzÔu(®S\14\12öÓÄÖv\8cqo.\96\95¬?)g\95Þg¢/û{\f÷kk6ßÒu®¶sûÊ.d¯«Ñ\87¼k[7\=ÉÚuu(«µª³§¯\89dc+]\87â:E!ÚÖg©´^{:\ e\84Þ§ådÙãC¸W\esÜMýØjWWTD-[ÚÊ6dÑØæt¶¹\r|ÂÖ«tíî\9d\1d\ô\\1dÊê êÉÔYÓ×F²±£¯C\18¢¢\90hë"\bi\94Ö'qy\1c\8f\95×ûaÒû$í\92½>\80û´-ÛÙØBÕfñ¦E®\8eª®ô!g_\97³FÜ>äY[/×õ1\=©ú
-¥êäéë\ 2ÙØF×¢¸öm=?Ƹ³+c\e¬¼ÊaÏÏçBNÅÁÛ\9f-ÙæÖJÿuµ7c$عìAN³F¤®\8b)Ù+l½L×þ[\83Ó´WuuRõdêäéë\ 3YÙÑ×!\fÉŵµu;\bÙáU±5Ö^ÞµKn\rÇù\9dg\8dn'¯?û²oÇ:\ 5\9bl¯º\19\W»\13±?]\94ÕBÕÉѹ\ 1yfÒȦ¶\9e½}\9dÝS \8fqõ\85ÊÕYÕ\9f\9bT=\99:yú\86@Vöèë¤ë¶Ý ä\94Èzý\85½± ±÷b¶w²`)'x\1féK¿åêó\W_R\992Ò\9e3âL\1aYaë?XzÏ~lfï\9c¦½äj[V'U\aQ\8f\92¾1\90\94í麰u\11\84ÈҺܡã]\r;à\18\17ØnYµa\0[cç·QMfUW\7fª\à¨\982r\85\10µ\9d1âÍ\19Ù\96\17à¹Z4\824\T\1dD=Jú¦@Rvôõ kU\\v[ûAÈi)7½¸N\9c\95÷Âfû²Í_rÖ9¡suÌ\8dÛü\9fØÅMd·.ò\ak]fbgUkOÇîc1e¤\98âw±\9e4\92ªÎØÀçØz½®Ë½s\a\17«eY=©:\88z\94ô\17\ 2IÙÑ×B×ÖÖE\10\92wÐ\1fbÜ\95v7`ÃKkOØñ\96¯½\ 3\ f\83ý=\88;Ù\9a-ÝBíü\83%®®¬\9a1?½/)ÛèÚ\9f\90}\81m·öl½N×ÎÞ-pu\88@
-U'O\7f1\90\94=ú:ê:\15×ÒÖ6¶>=¥õ\86WÖú\93t¼\7fe\ fX{C\9eAö÷\b\9eÄælzÿ,ÚP«êå®\16eu\9eßWLð\13ÂN3²//ç\8c,±µÐõâÛÚ{\12¹\8d il1»:\94ÕQÕcM\9d<}s ){ôõ ëT\\e[«ØºUZÏ\9dú\93fÓK«v&\8eÇÂ\13ß\97µwç\99`\8f\ fà\9emÎf[*n\ 2£ê\15®6S±£¦ãä>1#[¬\9fQ³u1\95QÌeÔº\9e½oÕÏV\9b\*®\ e\11ÈXVOª\1ekêäé["QÙ£¯o̺\1e\8bëÉÖã®\16±µSZ\17\97FoOÏ\9azÍ)Ø\r\8bo¸\ eìò®Þ\1föúøí×Öl¼©¥Ëæ\ýiåêËĤ\91¨j3\15û\1a5½OÏǾ¼\98\8f½ÄÖ\7f¸à\86u~ Þ\908\r.ú®\1e#\90PV\aU'Oß\1a\89Æ\1e}\9dt=\16×ÒÖ2¶\16c\8c{\9e\83lzqmYÈ\8b9Þݸ3vz\8f÷b£#±É\89:ÉíÛÕÆ\1cg[Í5þ\87ÖÕ\9f\ìj¹l\86\10µ\9e\8d}\8dÒuËÖÞ2!ÚÖ¾®\9bø\ 1\8f\\11DõWO®Î\11È\r7L\ 1È êäé/E¢±G_\7faÒõX\{¶6A\88,Å5,Îâ©3õ\9a\13²\84õg;s\8c{rG¿d7·úVX°\95»;\8eÛ=rÇÜ´nËñ¶¶Ø¶t_||\9d«/\17³FÄdììéë\8aå3®\12óûT\13ò\12[\7f|Ã;Ø{\12YW_ä¹:F RÕÉÓ·E¢±G_\8fº¾q(®sl½ª´ÞOU¯¼úWÙy·þÞ%Ë\1c±\ 5vh\87-±»#xÜ=ÛÖæ\1có\1cÌn°·=ù\16Ȫ^êêÙu3Äê\19Åâ\19Å\ 4¿\9aó\1a|R×\voYo÷\W\7fÆuu,«³ª£¦oODc\8f¾\1eu}T\O¶¾6Ùz\1ad\8cAÈ\8aÒz\ fU½â\16ت£O\8dº\17(c\8b\1cS
-[æä\ eàÚ½ÛÁæl¢ç\ 5\eío\85¸ä?¾\89«¯t\16Î\b¦ÖKg¨µ3®jÙºò1\ 2W×\9bÕü\90Þ;ÏÕ¡iÏqõM7 UGOß\91 Æ\1e}}¤ëX\OÁõhëa.£\bBÆG\92i\b\89{R\\ 5{¦ê\85×VS¯\1f_Åþ\98{Ý¿¿È g\86\1d\1cîýÚ¶Ú?¾]Qû¿Û½{\92ªÕ÷\16\e®\ e\vg\å¯qt½4ö¢¥\8e\16ØzåÝ+÷o\89«/\97®\9e"\90±¬\8eª\ e\9eþ² \b{ôõ\91®o¾YØ:$!9¶vKë=ËAV\c3\17Ö\86~Þ\92¿7¼-W^\\9bÞåg\83\1cÍ\9d\1d½M¶m\83s¹\15Q/ÛD¥ê\95®Öeu\12õ\r\ 2\7f¥£ÊRG-[\7fb\83ûÕîÞ'«®¾$ºúÊÉÕ×
-W\1f\95ÕQÕAÔw
-\82°G_§â:D!£\87¹\8c9\b©\97Öâzè(ëÍM]?ö\v0çwëæ>\ 1\9ab8\9euö\8b\19\aV=¸é\ 1Üê6\1ews*¿oû¢.¶GÞ+RÕù{\8b3®¾J-H'D-\979ºáz±ÐÑ5"
-Ylë kç~®\1eêÂ\ 5\9e«E#\88ëê\9bn
-euTu\10õ]\92ÉØ£¯\87â:Û:ÖÖSl-KëOWKk{ê÷CÕs\97WûàÛ«l#ú\9b{á¿ß¶Ø±ØÄZUv³\89Ç?ÌÇÝùmoÙ\8aMÙÀÓõFc\89s\13%U{k¢V\}õ4\1f[ªúF\83Õus\19Ñ\9a?¹ê¦u%ñI×Õª\11d\9a·8e 7$W\1f\95ÕQÕ\93¨¿¢\98\84=Ô×±¸¾y\8aB&[\ fs\19S\10"Ú÷ti\1d/\8bâ¬ï\81«Û×Wý²:¶ \8f§î\8dnÍõ\17×ò{|«,u×"\91m\81Í\ fèºÃ·ÁÎÚ´¥g³u\98\17YÚÝâ\99\8d\8c\97ÿ¤ÄXV/wµX<4\9bú¦\84òuZ\96Î[\97ηµ£ëuÊVûçÌÉ4\8d ÖÕ7GWOª\9eL}·b\12öP^§âúæ\9bCm=tð\85Ø:\ 4!º}o¯r\90Eª®_\þqW|rC\8eoî\13`\9dt¶Îɺ9±F\84k\8fßN¶nóí)þõ\96\88ç\98ßT³9ö.\8aUõ*WDz:ª:jú\v_\90ÂV¶Ö«\88\9avkÏÖçµîZ÷H»\96ð]m\1aAÒØâ\18WO\11ÈQY=©z2õ=\9aQØCy=\84!)
- ¶\1e[Bl\10"Rë½ÉAV\9bºvamIÐ\9bÉ{!Úlò\84èìì\13¢âè\96\v7<|[ÛÂÍ.\81]\b{n[\eG.Þ\ 1ç\9d'Êê\15®Neµ]>4/"*u}Yó¹\98\1c#m]êz®Ì*\91û÷©º«C#È0oQ»z*«'UO¢¾wà¾#ÆÿqoòõT\\ fQÈdë\eoL\83\8cijÌ\10\84\98\86\90O´r\90\9e®^fêÊíèIö¼\rÙÐÜsb¨lùj\968gÏ=»\91U;7U¸áá;Þa[¶m\9b\9fÍâ\17nQÔ\8d4·Ñ§\84ª½µ\9b|W+U\7fÁ_A4-ùlWèw¦2\16¶þ\94{Ï.¸\f¬&\W\17\83\8bÂÕC\ 42\95ÕQÕAÓ÷Ý?r_Pö ë1\f\19\92kaë©%$\ 6!¡´^\90\83\9cth½NÕ3¢^.èO\95\1cOÞ\8bä°\92\15¿e±³\8fÅ*sÍ«ì\98lìè¹£·Á\8eÏoݶ¶§øÕ\9bxº%j½)åí\94Tí}\1awÆÕBÕ_4È\ 5\9f\v[ÛAFmëB×3EV\ 5±\7fçû®¾LºúºÐ\a\92]}TVGUGO?0\12\8d\9dt=\14×Cp\1drë8È\18§Æ\84ÔZ\ e1~2ç â¬\9f¬¬×¨Ú¹¶¼\8bÊ\91´£æÅl îµæÞäÊr\7fO)¯ã+±F'C/¯¤\8fyô\16íö\92-\xÆ\9d\9fªm\8ew\9c\97{Ú\9fêÒÒ´¸¥>¥T½ÊÕqYþlê\9b\13\85®õçTÊ\96\10aëX\\9fïݯËî#k
-ñ º¨X½i\1c\\1c\9aö\94«\87\b䨬\8eª\ e\9eþj \18;éZÚú\8b\93s\102\8c1æ^ë½ÉAæTÝ4µsUÍ\1aúü\85¬v÷²\8bb%\8b\7fͬ³÷©+|=¾\9e+.\\7f\98×\e{é¦n¸eµ\r\92¿há³r©¨ë\eZÜPç{ªÎ\9f[¬»úÆèj)ê°ÔóÍÉ×ayþb}þ\8aeq}þÜ]:\83ØÁ\19W\8f\8d Ã\\98ÁÕ_\1a\=D GeuTu\10õ\83\81 ì ëÁÖw [ÇAÆ<Æè\96Ö\9f\90¥õ\89Ëz±ª\8bË«¼®j\92n:ù\82\vÒyÞÄÞµ\93¾Ö\16\9b]Zå/\9aWö±ØH´-\97\1d\8fYIo~ð6ÙñÆÖ-:åÅ\8fø\e$\7fåqLíoju\eõítAPõJWkUß"Q\8bóÇâúº´àó\8c/\14·ñÒ÷b\85ñ\85\1965«7M\83\8bÉÕ·JWGUO¢þZb2vÐõQq\1dl}[´µ\fBTi=\ e1Vs\90\13\93õLY]^cöâ*.ªº¤/Ø\94c\8b{3ê\95½û\8bNRÙËõµ\vC{¡Â1\1f}\v\8d]Ûéæ&n´e\95\rò·c\93\8aÚy;¤\1eç\15\1e\8b÷\92QuþÜbËÕ\93ªÅ7TÄÊü·èo©\98\8f©´l\9dt}Aû\16\9dEì`ájÛ\brÃ\rÊÕC\}÷\91«£ª'Q?\94\98\84\1dt=\14×CpýåÐÁws
-Bri\9d»÷\96å 'íjWÕö\ 2«\88Ú\95´5ï\85ËYªî\15F°Ùuåý\9e\86²\97i{\83¿â[lÙ_s¼»\8a\19I¯:vçU\ eÝÂ#àìRÓÒ\v®\19o\83j\87|{¢®l¤¹£.̪\16®¾t±«õWTä\97Tâ§Tò§¯\8avkikQ\_èߣ\8bn#ë\f\15Å\vWëÁÅس\17]}Ïèê¨êAÑ\ f'&a\a]\ fÅu¶uj \11¥u\9cÆèä \15YïÒÖ+U¯/_Ô®¤K\r\7fºÍRy/¸×á\15ò\1e\8d\e]\eì¸BT¬4×Öí\1cø¤e\81£\egh;Æ®là&\8few\83\9c\8d±\8fÈ\19K«\87¨³þ\86\16wU¾\8b¤ªõga\84«Õgd³ªýï¨Ü¢\8aëüå+ÝníØZûºòF<\8bØÃPVû®¾6¸z\f¬\95«\8fÊê¨ê#C?"\18\85\1dt]غVZ·r\90\93\93uÓÕmUëKË\R®¤='_T²Xß\8b²\92ºZW^:+\9e\10Ueo¿³ð¤\15]\bº,X×\1feÿØÕ\8fÚ\92½s·îS˶¢ì\86°\v\1d×i\89ÚÛRïJ\947\94Qµþ,LáêPV\vU\7fI£t]µµý\88n¡ëêKqýFU?\91vÐt¸\\9eW\ 4\89®þ\82qõ½÷\8eeuTõ\91 \1f\15\8c¾\1eu=ØúþÑÖwUl\1dKk'\aùøÉ\87ÖkT]7µºª
-KϨy\19sæ^|E4i\^-*7º\14\98ë¸Ozj\99aÆ¥+ì¼øWÖÑ\92Ö*\rl«\8e\bì%;æn[õÄ\97\7f^nQ±1âxoIÔMM_ o«`j©jýY\98ümBñqÂàêúG¯\82®åWeÝvkmëÏä;u6Èl ÷Ð\8e\9a^nVoJ\8d ÂÕC\ 4rTV\1f©:\9aú1ÁèëQ×GÅu²õ4;æK\85¬¯¸|a\ e²sY/*«ëª\96\97\96¼¤¬¥¥t?³ 3ê\9e-¸×ã\ 50>òoÍ*{»\9d\85Kåµ]C\9fçP\95ôâ\ 3î\1d:÷ -ß»v\91:·i\r*¶åãóÆö\9f¢v[Ë-õ.Ju_eUÇ´Z\7fj \88«\85ªµ©Ý\8f\14º¶\8e\83\8ca\94Ñèú¢ê\9d¹\9c´\87zÔ4»Z\ f.¦>\90èꣲzªªGS?.\18}=êz(®\87à:غVZ{9H)ë]\8f0®VuÅÔ¥¨\8d¥¥x/^OÓÝ3I\89oÕeN®Å1þ/óîó\9a²=s»?Ñþ+Ë\fVUô²ßØB\95ÒU\15ÎÜ\97®"\9b%ö,å\ 6V$=\7f¥Ø-2[\93\8fq;\82Z!ê\96¦M\ 1\94î¨Kr\ 2âD \9e«\83ªÍ\17
-Ó'
-ã7
-Í'Àm»õh멸\8eºþ\8c{c.»Kå\ fÅ\1d¼X7#JW_/\=\14Ö\93«\87¸:\96Õ\83ª\8f\ 4ý\84`ôõ\91®£ï7¶\9eÍAæBë\93võ\9cªÅÕ\95¯+y¼\8d¥¥z/YKËÝí¨dÅ\93½za-\8be\9c;ÝSöV\e\v×Øk{\8aþ\94Ã\12IÏÞµ¥\1f\9d\83¶fï\1aEjåìÛ?®m\91Ù\98åÂ.\1f\9fz[\8b-õ\8e\9fº·â-õÙ\9c\80\98\bÄqu*«\85©Ã× \83¯K[»\93c®H¶\8eº¾¸¸/\eÒ\9e¹çL¼c]]4\82\18WGU\1f úIÁèë#]\1f\15×C\14\92F\19ﺳ^ZÇ\1cÄ\ fO`\84qqYí«Z\9bºð´±´pïg×Òpw#+Ùà\1a\99MÔ\9d@Æü®\85ÊvÔíýçößX£íÅÞ]Ãù\8af!h\ f±ýãR\90ua»{\Ù3»q\v\9eÎ˶ÈnÇ'f\8cí½ç¸¢.¶Ô¹<?£E\1d³ê\98\80Ä/ãÖ]mTm>'\9bu\1d¢\90\9asp-u}qå\8e\EÚC\9dÄgW\97\83\8bÒÕ\ f\1d¹:ªúHÐ_\17Lº\9e\8aëhëvi-s\10\eZ\9fÌ\bãÒ²Z\kù\12ËWW¼®
-OkK\v÷^º\96ºº«YÉñ/\935¤¿º@Ù[é+ôôµ\98¥ò]\8cgé\15OÀƳ®<d+ö®æé%\9bVJ[m\91Þ\18OØó\81\94Ú^½©Å\96\96צ¼»RQ\9d\12\90üµEåê0´xË-QÕÂÔñS²Åç¿£o,m¢\90¨ëK¼ûq\13Ä;Cz\ eYWßTsõã«'U\1f ú©LÐõQq\1d¢\10ekQZ×r\90\93\1fa\9c\8f@|U§\v¬0µ¸\98¤¦KC_¶\96ªº\17y{ëd\ 5é/\9a[Ý\1a{³\96SË\86ÖÞ\9a\9a#\17(Zu`ûùW\1arNØþ\1e{»f¶Îsts\8büS)·'þö%Â.^\ 3ÔÖ¶·´¼8Åí\95\8aê\94\80ä¯-\ 6W\9b\b$¹:\89Ú~ü;~ýûÖºe\14\12uýY?¹\r÷\94·ß%FÕÖÕ7\96®¾/»ú¨¬\9eT}dè§3£¯G]\ fQ\88¬[¥õ\98\83t
-W\95Õ\15U[Sç#-5]\18úòõÔÔ½ÀÛsòv¯\9feQzñëÌÍ^)²\97Hû\82\ 2÷Çê5r\83%¿m1\17
-J\15Î?\0\1dE*=\16»¿|ï\O»\8a®_+ÕMR\ec}]8ÛÍkj¢®miqu\8aû+\15ÕIÕs\11HVuptúðwÒµ±õMÖÖ2
-¹ü2áëö͸\b±\8b\97ªASáê\e
-W\ f\85õäêG\1e\19ËêIÕG\86~&3úzÔu°õ8ÊX\94ÖN\ eb\9b÷NHÖkÊjê\96©Óa\96\9a¶\86¾Âpe\89ý\91ñjðÔí'%U\99¶.\vÍF\91º¹Ý½Êl+]\85\8e¹7PôÆ¿üÂ\82¢\96ö5X\7fÊ]Ü|Ðy{ÝÞA½¥jãê\ f\8fúC¾²IrKÎ+*ìæÈ\81Úf±ê0Ö$\9d®Nq\83¥¢Z¨ºê걬\96ª¾S¢t\1d¢\90\86cq\9dt}©½/6#ï¢éo±®Ö!\88uuTõ³\91¤ëÁÖ\8fO¶NAH(Ó\10£ÊA\8aÐúdd]uµ*«s\ 2â©Ú3µx\18Ê«H\1aZYùs\r\1aþnjûÒ\9aKÛW\85f£H]+È1v»\1f¼\94`ɼ¶ç\985ïbD¬[Xº.èÊY¹¸zÔì\9e/Ü=µ\91rã\9a\ fiw£\8amò}Ý\9aµZíQ\11\e+6U\1fÅòJÕ\81bºÃ\84ªó\87q=W§²:\9bú®»¦o~\v]\e[\7fÁµu,®¯H÷cå6\MÞEÕߢ\]\ 4ÖÂÕO<1\94ÕÑÔÏEF_\87âZÛZ\95Öe\ eR\vw,ëMÊj¡êpy\19SKQ\9b\8bè
-×Î\9f\9f¥jï\96¶/«¨tæ¢Pl\16©;Êö^¦\1diϹÐû\v«¬=S\1d\7fzS\8aÄ£Z\ 5¶¹¤vÔôî×wØÙ¹\9a§\17oYs\9bòæÔ\84Ý\1a8\10\eí\8aZ\1fÅòRÕ\91bºÇJUW\U}\97Bé:D!U[Çâ:êúr÷\1eÜ\8c¼\8b)ݹJ¹º\1c\\f®\1e\86\16cY=¨z\90ôó\13\93¯G]\8f¶\ eIÈ\83²´\ eC\8cÕÐz¶\1dä¤]ÝRu¸¼´©¥¨\8d¦K=_µ\18_Þ\rm_^Qiû\92Pl\98¨\97Êv^¦7k)Ô´¤ÝdÎÐ\17Ç&\1eÕ*°\85Ö£8jò\80-Øa³o\15O/ܲÖ6å\r*}í+»Èk\8c©\8d¨õQ,/V\1d*^\99M=©:~ü\12W'WgU\7feDéz\81cqý¹x+zwàƤ]¼2ÏÆ\âêG¢«£ª\aK¿01ùzÔõ\10\85<1ö\84Ä d,å\10c\96õ¥\9f\95\9dÖi\84q×í 3\11\88)«]U\87«K\99Z\8aZ>ê\93£\93\7f¯V\S¢\7fàjOÝ\rm_Qqië\82P\94\91ùLª®~\91¸Ó\9d\97écõ\14\16ªo\17Û\vÊèͶá3
-SLW«À:Z\8fâ¨\15Â^ðN"÷¬âéE[ÖÚ¦´Iâ°\9fo\8dÝ\188Èç¥*j}\14ËËU_\9a\9fS¦Îª®E ZÕ_\91D]/±u,®\83®¯tï¿\95\85Oy'*UÏ»úáÉÕS\ 4\12T=húÅ\81É×ÆÖ!\bI¥u-\a\99\vw.ëvY\1dó6«êpu]¬û \93¨åõóymè¬äkgðõ½@Ûv\80²uqÌ{yI¦.\7f\8f¸ÕË\97i¯û¡®AËbk7$V8ºý+«\\9c1Å´Uá\92;Ô>æ>ëÈqÖØzïl\95*7nÉ\96]fOdÞ¦t2ÒÖ(_{ʶ\81\8d.©=Q_êojq¡æ\97Ö«bQ=©Z/\88j"\90IÕ¢¦¾{@ø:ê:\ 4×®cq\1dtý9{óUo²*ö§Å\93誼x tµ\17\82DW\1f\95Õ\83ª£¨_zé¥àë ë\98\84\f¶Î¥u^ÎÉ\vOv\84q«CYmTý\19¡êKe\93ç\15ú9\1f-ý|]Áõ#å\9f_WÊ{^ÛfpÒé.ñ¬ì\88yq¦.~\8f¸Õ\8bÒ¬ìò\9b\13aå/Ô¤=CEÑÞï\9bå\92\8c)¦\8d_\96Ý¢µ\17\93¼ïKöWî\9dRŶ-Ù²ËÝ\13Y<CòÓã\ 2kìêÈA2uÚXOÔþ¦\16\17«xm\r÷YVµ]\fdrõ\1dÂÕYÔ\91¨ëy[Çâ:èúóõ\92É»×\\8a\1f\8e»(\9bƳ«ýÀºpõèéÄèëdë±\83O\94Öq\88ÑÎ\8bqCë]˺éê\15ª\16Eõe¢ÇóÊ|p¯²\92V^¾~|Gk\90\7fìzkn£m'ß®\95Ã-¬\8aW%êÂÙùV·ÆÎ-\10\eéÑ\13wµÖ\9e-¤«ê]Êg3®¥\97ß©W\98CV\93cíݢܿªüÔ¦-Ø(s"\8bgHÚ\10\eDU\86?/¬\94Ôi[ç6µ¼^ó\9bk6µú\82¹éØ3ª\ e\8e¾gÀÑu\88B
-[çâ:èúªÚ{®Þê6ÅÏÆ=¼ZÏï\99uõSO\8d\11HRõË\89Q×cq\1dl-Kë¡!$\ e1êæ½Ði}¢í ¾«[eõô\12ç©:Æ\1f\97\8bA\80ô\14L\97N\90´Öó\8d\96\9bF\8a?¾±p·«íVº½\f#a\93\9a\9b`ÝKÔ\85³kÆÎ\8d)\e¨QàYû¢9\9c:ºaßEä±8×ÒËïSaGç!\97÷¹½³j÷\1cQ\8bm[²iWz[%·)m\91.°g\87\ e\94©ÓÆ.ÝÔò\92\15Wèµ±¨6ª¶\11\88Qõ=\92¨ë¶sq\1dt}µºëìÁ\|\1fÚ\9f\15\ f¢i×nXäê¯'W\ fª>Rô+\89Ñ×Gº\1elýL²õXZ\ f\r!q\88Ñ\99\17cG\18w-ëe®öÊjêKôÒ¹¦Ãójqá\'$-½|Óô}å*ù§n2ânYû\1aG£s4½¼$S\97¿-]ª\8e~Ì@Ú¦\94Ònf*\rI×í«©ýW;ì¥,íߦî\93TØÑ/f\17®9!w¯\14õì¶y\ee^\96\1c_××ܯ¥ê*üP%õ\82M-¯[q¡^\97L->`®º@BY-T\1d\1c}ï\80£ë\10\85\b[\8b($ëú\9a²p)Oû\ 6¤=Ì)üM¡¿ºîê'GW?÷\(«GU¿\1a\18u\1d\8aë#[\ f\1d|OæÒZ\f1\8e9Hc\84±Ù\ e²}Y/pµH@JUÇøãÊ4Z\9bÇ7Â\ 3þú,iåç/jnN\98ÿðEãn¥m×Úµ\81I\ fÓ\84¢ÍìäçÕD]ü²tµ\96ÆÖ\ 3iJ\855MVÍéJÛ\15\99\13uTí|\99Ký¿^îYúJ©\97êSQþ\aaÇBØy\9f\8b\9d½Øî`9\94(í·dÛ\1a[\157+l\94z\84¨@ÄWö§\8d¨\8bIdÍM5e´ºxååz},ª\95ªe\17\88(«\93ªï\95\b]·m-u}\eKVNý\1aÄ\vCîmQ®\96²\ eó\16\85«'U\ f\96~m øzÔu°µ(Å\10cÊAV\8d0nUÖ\rW\17\11H*«c\ 2R¨º4µ\18Ý\88Ï÷ÉÒRÑÑË·ÌP\bÜѶ\e\91\wíz\9cÑÎv°n\ 2õììt½Zÿ\98\16?B_\93\rs¶¥hHº"_Mý¿^1géÆ\93Q<I\85\1c°ó>«\9dí£Ü=k¿¼qUïéç»Þª¸Y\95\ 2[ä3Í¡\83ü|1¦ö7uA/\95¼foH¦\16\1fZ\14iõ\1d¹¬\8eª\9e\14}ß\88£ë\10\85\94¶\8eÉõõúòw\v¤òÜ/E¿0\84ñÒ\9b³«ýÀ:¸ú¨¬\ eª\1eMýúkAØÑÖÏG[\8f¥µ\18b\f9ÈÔ¼gF\18OJÖK]mÊê\98\80XU_a\17øºF$fâ\9aùBvtð°øðý\97\1cÄ\7f¾U«»´¶É¶ËAÉ9êf.\13t?P\17¿P)û*;H~\85r¶R¡¯Éº8Ki\17Ѷ\93F\17\92®ÈWSÿ¯fü¨°\8bç\16'I2n¬\vûÒÆ®ZO7úHõ¶Õ¶J?wÓfå\ 2ÛúZ}&¥\9aªëH=\9bº±©W\97\9bZ\Àù\92M¦\16\1f\84Ñiõ¤êTTߧ\10ºnÙ:\16×7¨k_¿×ÖO¾óvÚ(¢ÒûB\1a.\1dvi¹«\aQ'¢®G[\ f\83\8cSi=4\84\84!FÑ\ f2\85Öõ\11ÆÝÉz\89«m\ 4¢\12\10£ê+ã
-çr!\82ë\95§£¥³¢£\90Íwßn\8b\1f\14*>\ 6'ìÝ´¶\8d¶MG\89ÅVÊÎpg+Y7\81zúmJÙâV/Ƭ\8c
-}MÖÅy¹\95v%à6\96®ä\17ƽ\96Ú\7f5ÃG\85]ü÷\16çF-Õ(Ì\98\85}YsOå\1ez¢N\9b§¶µYê¹\e7+\17Ø\979\1d"µ¹O\9f©\8b:\ fÐ;=¯\95m-/dqáæûN®°'ÓjYTO\8a¾\7fÄÑu\88B´µ®o°o\98\r3Ûêh¦´2ï\v)\82\9fsõ³\83«_z)¨úHÑoDF]O¶~ñÅ\17di\1d\86\18s?\88\17Zw\91uÛÕS\ 4\92Ëê\8bôÇàÍ÷8\95©E\&¿v\9f?÷\96¿÷vG\13ýQ¸hB\97Q5³ÍÏ\väoMÎ\8e×^\16vÑØT\9a°¦É\8a7¯("\15/ÝöÒh?¿Ðî]\8a\19=*,]{wqnÓ\193\16Íë\8d}¼¼&ê¸yrÛªÏòëôv\99hKú:\ 6Ør\10´:ú\99ß\ 1tøQÙÔk*ÇÑ)2Äå\9bLT]\94ÕÉÔ÷+\84®k¶\8eßÑ\9dt\9d+\15_ºÍ\1a©]Y\89}ÔM\88·5]ý\8cuõ`é7\a\82¯\8ft=Úz\8aÇÒ:\f1æ\1c$\84Öív\90\9d5Z{\85uÕÕ9\ 2\91 \88Vµ]ßü\86Ü-d¾to>\1f\94\17:¿ÓÇ,\85\9eÔm]&$_\94¶½©\85\95ÝñÎz´®\ 2õôÛ\8c±í½\1eÇÉ\95óViÒZÛ¦#Ffe\1cíæ\17ʽK1\83G\85¥\8bÛÓI\90TYV7£¿îDe\1f\e¢N[WÛ¶B\1db»t²e}]\e\ 45±º\1aûÌ\e[y¦(Ù¹\aÒ\Îéò\95\1fYlª:(ú\81\11G×!
-ɶÎÅõ¤ë\9bÄ\81ó\1e{Õ×W\17÷mWDða°ôöº«Ç\10$¹:¨z4õ7Þ\fÂ\16¶\ e¥µ\18bL9H\bËv\90\13èÝ[æj'\ 2I H©êÂÔrTC~äÍ®\9c+\16ùú\8aÅ®\0¦ÖD¿ã\ ecí[\vk;=%M*f¾UÓ\bÔÓ¯\14Ê\ e\97®uP½¹i)ÆÚ&\1c)VB)òh7Àøüúæ*;xTXÚÜ\9eåÓRÝ\9f×;\aë*g\1e³»\9bz\1f\e¢\8e[×Ü6í\r±a*Ø\92¾\8e\81H+R·¢ÖáGÞÔk®q»^+[kk\8d|\11[Uë\ 4D\9aú\ 1\8dÐuikY\g]ëá~Må\rv\rqÿD»ø\1dÂÕN`\1d\\1dËê#O'\84_\8e¶\1eJë0Ä\98r\90)´6#\8cª\1dd\87²®\aÖîТ\8c@rY]Wuù\91{ý)\8adè¯\88¥\b"¦%ßL}ý\8aX\vìÎlm·ÔÎ\ 3\92ÒÝ.ºP®\fy\161z\99¨§ß*\94]7v£½©fCó³ZÚ&\1c)×A±\81´\92´óË\96Q\f\1eYKëûÓ\8dýõ`\83ÿ>r\95\1er¼²²\9bj\1fë¢\8e[§6®¾a7Ê\rS\15¶ñµZz¿\1cñÕ©º\88ÔóÆV7õ\ 6kºöÛ`¾\98åw»\1aª\ e\86þê\84£ë\10\85¨\16>£k3Ö/ñ\1e+NÂX¹>\8a·\85Ô-þåܳç»úÅÉÕYÕo\8d\ 4_\1fézÈsi\1d\86\18§\1c$6ï¥\11Æf;È®e]¸ZÔÕ*®\ e\11\88(«\8dª[ß\f*Wö\92f¾w\ 1JàjI°;ït¤\9dG$o]\8e¯æÛ\ 5ó\81zü\9d·¤KX¼!\9a²±Ñàä¨ð\1aç§\1dg\97\91v9j¨jihoø¾Ü\ 6ëg¿\96\16÷hqc\96/>Ù\8d¾°¯^2Dk\9eDUQÇÍ\13\e§Þ°J}Üt\93:\89¦Àþ¼\19pÔ\99º3¼\9bºT\8a𣶩ö\89R}'T5\87H\1e\95ª¿"T\9d\8aê¯\1a\84®µS\14\12?ö%Ë\93üè-jbÿ±âÐzñ½å\165±g(«\e®~Á¸z\14õÛoGa\a[§ D\f1\8eóbÆÐZ\8d0Êv\90Ý÷îͺÚÄÕE\ 4\92¿\ 4/Ö\95µ_âtÆ3ÔL)1ül\865<D/Q\10w²¶Z%ýËJ ^7IIÑ\8aR\98Y}DT\86ën\9e\1e\7fݦèP%¶lqªéÐ\eN7?^æ)E¢í\f\eÊbZ;º1r?Ãõ~--nÏÊ\8b\8c\93ù»o#×\14C\8e\95Ý\14ûØ\12uܺÆÆiu\14çð:»~ÑçT\81í\8føª¼¦\12~x\9bj\1e)õ7C]zÜfLí«Z\98úÁ\80£k7
-¹MÖ&z\8cß\9fkï³\ eþ\vpzW\b\r\88CY]uõóÂÕAÕo'¢_\7f}
-B¦Ò:\f1\8e9È\18Z×G\18\87v\90Ýʺ\1aX\97uupu\8a@RY=& ZÕ7ÄïÛ\17\8bz\99~N5\9c¡_½ª\88\f-\88[µì;ÒNúÌ\95o\13Y+{^¾«\8dpwø\9dAÙ·\96©\9eÌf\8b\85©\16\8aR{Û)³Ýõ«t(-4]üVox¨\85J%\8d¥\9dz¯ Lüó\91Ê\ 5v\ eD죩ÜË«\84¨=ûÅÍ\9bÙ¸[Ü-+
-ì«Í\80£è[©\f\1d\\91Kjµ6CeSÕ3¥\12Úé×CQ{ÜÑTuº\ 3\1f´\b]×¢\90\98\85d_{eq)èÊ\víü\9bpÜ·Ø+>\96Õ®«C`=\8e-¦²z\90ô;#\93®'[\8f±õPZÇ!Æ1\a\19CëÆ\bã ôî5\a\17}WË\b$' FÕqB\910u\12µ\9b\8fÉ\aù×\9a\14\ fû\aÔPµ\9cg%ã\11ÕJòå;
-¾lðÔ\9c\a;ï®#óô;ãz\92¶òP%vîsj5\80·PÚ.\94í\8f[êX:kÚ\18Ú\e\1cj`RI«\16óNnÞfÌM**4\9b\1e©@Ä,\16äìåÕ\85¨ÍäëÜõ_8C¿\8aÕ·ÌñuÑ·R\e:¸2\97Ô¾©«Ï\94ªç¼ø.]è9\82,U-îDsÏY]\87âZ.ìt{z\8f´cûuEWÞj\17¼\b«7\85;cY=ô\81$WëÁEáêQÕ£¨ß}7úúH×1\bQ9È8/f\fÇ\11Ƹ\96\93×»·CYoäê)\ 21eµUõ\17ÃÜOaê$jymÄ+cº(\1e\1ay¸Éô3â"R¯h²¿HHû+¦ì!\vdGÍr\15²f\9c®jü¬ì ìÉØ7\97Æ®\8c\9c;.´?,-Ò\91«µ´\9d\81Êk\8c¦\9dâØ\1f´¯\ e\19Ù×tciy_:o5ò\ 6½õV\19\81\96uìu×Úy3\95½¼&\8bÚÚÏxº±uÎ\96É·¤¸ae\80\9dÇA\9d±\ 3\95©\97á\87óL¹Å\1c˪è\8awÅT\85$S[UgSûEÒt§©âZ.\15\92J\12Ý\8då\15ÿvÃçÞvkû\97^\14î\8aeµpµi\ 4yùåàꩬ\1eE\1d\98t=ÔÖ!\b9²uÎABh=\8e0úí »\97u3\ 41®>?»Z6\81IJZ~¬aZQ%ô¨+S\ fWÆxaL×E¸(²¡\1f\19y´Éô3YÜéJ²¹Z.´ïÑEï\fN7Jr±\9a\80[MÓu\8d\9f\95m¾\rET̸l¸Ðs¦\90¶U¶7l©\82é¬é"ÁPÃA\8b(F\80
-K;aS9J[Iû\9d@D÷Óx»y\15µéû\ f\rmµs¶ÌnZÜ2Ï×"V¯\84ê\9fÏ%u2µûPÑ\96®\89®öÚ\98\v\92<^äUN\ f\8aÊÉÖFZ×z\9c1ëZwb9å¿Þòú\vnå\14¤¿\12ö+´´\8ceõýGûáºú¥ÑÕ¯gW\ f\96~o è:Ú:æ Ï¥\1c$tZǵ\9c\8av\90Ôh}2²^íj]V\97ª\8e}\8f!J\92¢\9e®\89éz\88\8a\1eEüØÈãM¦\9fÉâNÕ¶\94¶*´ïÓEoÑ\b¨+f×ÍIǺ÷Ô\rÓM\8d_¬§ Gcäèy»UIùPþ?¥mOÙΨ¥Êó¦m\821?[³\9dGz\96.õQ\fÒ¦ÛÒXÑøú\ 6÷ÁäìgÜÉ\9aý¾¤;ÿ³3ÊÑc¹i·ÙM˾¾Þ\e\aõbu\95©O[,\9e*î¦~©":Çuz/ò\e£2uVµoják©ëb\9c1ëÚva\15o\0eÁï\\fåuáïY
-tî\8deµãêip1»zTõ{\99Q×c\10\12m\1d[ShÚAÔê ²ÑzG²>\86«c\ 4\92Êêø¹J¡ê©íQ\9az\12õx=$MGE\8f"~bäÉ&ÓÏdq[i\17\85ö\ 3ªè7\ 4z5s©e=êâ\84é¦Æ/æ\11Üåd"Í\ 1\19G\85\91ô_\84µ=eWÇ,µ¦ý\ 4ãæ\ 5cõî«®\ e\16\85¤\9dÌÉ\e\9e½C¾W;Ul*°¯wöÐ>\8cnh\8búv\9dèº\9b'Åa¶âëëÌDÕ2WÏa\8d\1dûtfý\8agJ1ç·¡:\13ì¥ò¤\16Gza¤,\87Dq-Ç\19ïÒ§Í\8d.\1cI\97GÛ\9d\ 6ç&\98âá\93\f3\94ÕÖÕ!°\1eæÂ\8c®\9eÊêÁÑç&&]\a[¿ar\90!´\1e;U;\88ìÝ\93\8dÖ}d]uµ\88@rY=4ë)U§®Ç\10$\ 5Q\aO'MGE\8f"þúÈSM¦\9fÉâ\16Ò¶Î6\99vj!©à\95Ì¥\96u½a³ô"\98±\ 32w\97\99H4vNøjc2\1eÊÛÉÙFÙÂÚÅèaª¦³¥\8bâx9º\84ºÝ±´º!çÆfåAª\ 5"¶\97¦ØÑ,j1\95Ö\8a:n\9f3`!2²æ¶Ýì-\13\9a\eW\9c`]\8452©Q9\8dÙÔÛ\vÏÍ´'\15 \9fhúÿ~\13I~M]Õ2r|ØѵsYç\89\ eNëÕ\1d\85¥õ&¶ÇìµÁåß¹G\14\83CYÆ\16Óàbéês\99ÉÖC\10\12Jë\98\83\84Ð:Êú\ eÓ»W4Z·ç\9b\9f¬«U\17H,«\87\ 4dhÖ\vª\16ó>\8d©\83¨\85¦£¢G\11?=òL\93ég²¸\85´\8d³\1fÖê\8c\1d$u¼\92¹°ò#\1a\1d¥\17¿ºV\88\14\99H5åsU¨\7fVX;)ÛTÙ7ÈN\135\\99Êig0°º\16bÂÿÏòÞü²² ¼'ïq\10wç]w\95¹Q9¥¹|*IÔK\83(©KQë:ÍÛ¾»+ÛvGÍ×7\96óTM².²\1a3ö©\1e*ªø7\9esÖe¨\rÁÄ=Jï\91ª¨Ö¦~Ä"}t}¯Òµ\9däàeçÖÒÞá¾÷\1eKEäò\15á\81XVû®~Õ¸zpô7'&]\ f¶\16¥uè\aQ#\8c¢w¯h´^2ß|7®\9edm\âê!\ 2\89eõ\rñùª\1e§}\86Äÿ\81PRGQ\8f\9e\9e4\1d\15=\8aøÙ\91ç$Ï??|\1f^2þL\16·\90¶®³\1f-Õ9\87S2\17V~L£\92ô\1c§\8b"\7f¼º+A\9f\1cFϯ\8dÕ¨¯jKQ\99Ge\9b`¤6hù\ 5éi'f\9e\1f§w\8b'¿\94Î7¥\93=©\86\9a»ïÎG¨\88\8d\8c¯ÍC©h\9e1¢6«\1e$Q\8b2í\9ef³OT¶}\98|É_)ÔÄ4åÀÁuFÔv%\1d·ø÷jQïéç\fƤ¤ï\81b\9c_^òvLÿ\11G×÷\e]'_»)ó\9dÕËÁ»\1e\8a\vC\8f;9Ï\9d¯Æ²Z|\19F7í½ùæèê êÑÓßúÖ·\82®\8fl=\ 4!ci\9dr\90\10ZgYß^m´^2ß|û²\96\81µìÙÓqõ\10\81¤²zH@Òâßã\17ÐR{z0u\16uðô¤é¨è(æá»Ã\89\173ù\ f§\9fJÞ\16ÒÎuvòç£ÚÚ6±°á\Y1[+\87\=¡\92ô\1c§«"?\e»öòØxu¬¸°X+69[\1a[µ\99\18tê\11=í\f\ 6V\a®ÒVûw¥¹-õÝåvÓx\v'û1\7fòõ\17\eϤ¼\9f_übY§Þ\91z¾¢§Ó\16zý>~\9fO\8e´|_\8bÖ\95â;svÜÀ6©\94\9bz§ç¹ú£¥6.s\7fiê¯)SW»°¤®Uý\91uæ6xÙ¹óÔ®_\10e£U\81\8cr¦\82p\8c«µ«_.]\1dL=2éZ\95Öq^L\94õWc;HêÝ\9b\99¸EY/\fA<W\8b\b$\97ÕùûgQÕ±;=\99:\8a:xzÒtptvóK\89\975éϳ¼£µ\83´\93²¿\1eõù¸¶¶\8a+
-/·Ý\1c\a8¿®QIz\8eÓs03ýÎ`ìT\90Üg2\119ÝrÁ\94\1d#Ë\\98Kc·»Lt8-4\9d,Í»\10ýr®oJqG\96ý4\95N\1a\15\1a\99ÌÁy\8b(\9eF²\93:\86\1f·§%÷ëÓií¢såô+û4¹Ã],4\ f\85V¦<ɤæ\v2¦.7õ®ò¹W)F[b\13Ó\14¿ê\98Ú}\81TÍWNq\9dO\96\98\8cæ\87ç˯\88¢ÉÊ\1dr\8a\7fG¼»?\96¾\8e«\9aö\86\ 6kåêAÓï\1f\11t=Øz*§\1cd
-Ó\b£èÝsgÅXY\7f|{+9\b¬+®\1e"\90± d*«Ç°úöÛ\93ª\87.\9a\14!M\a0\88:xzÒtpt¶sü4ü«%â«ñ\93»£µ\83´¥²\9fRÞ|¢L+Ê(Cɹps\1cà|Z¡\93ô\1c§«`f¼ÚKa;o\903svôHRüÃlm¡ì[e\91í4\99HM»«ÖÚbh\ 5ò¼|ñ\8e÷ã\83%ùî¼\rendstream\rendobj\r199 0 obj\r<</Length 65536>>stream\r
-_;À\8cÊÞ¶¤ïQì¨\1e£S%õݦ\87í~e\f³e¢½è¾ûL\97OékÙkØNjÊ æKv\89\86Ê7·ZÅhÅlBÔ)¨v\1ahÓ}aã=ë\a´®ól°ÊUqOñXl_\12ö\ 4h{«=I1ë\18\81̺:ª:ëz\fBÞ\9el=æ ch]´\83äÞ½¹ùæ[\92õ\92\10¤îê1®\1e#\90± d*«Ãg\1aÂ\12\85ãÚß)A
-¦\9eD\1d<=i:8:éyúx¥ø6\9aäµøiË`n#m©ìg¤6¿^\86\15^\96!ålÝ\9c\ 68\9f\95\98$=Çé*\98 Æ®\bÛV%NaR÷¢ðvT¶[d\9b\ e\93Üè!êi©iS\1c\9bP´2ØSL#º¯¼#õøi¡\91\r<¶\8dF\7fT[5ô¹\ f$±§i7o\97úûJu £²-Ól[¹HFÝ×r\96j\19Õ\98 F%êfS˯¸< µå½\vXäCÈ3um¦CöuS×÷6.\8f{
-O+Ûz\17\85\19kªx<¿\eDUÇ\8f\rØÉ0C\7fõ\91«\83ªGM\7fðÁ\aA×9\bÉ9\88\18aT½{\9e¬+³b¶+ëZa]}Qtu\1cZ\f\11ÈØ\ 4\12Êê¼òwTu\1c\97\r¦\9eD\1d<=iú\95üAøÑÇÓ\17ÑÞ¬\91>\986\99;X;HÛ(;ÅÙO\97Y\85\1ff8r¶Z~^"âõ\17Ò\1f>ç\ 43¡Æö\84\v\93\86\bË\ 1¤ðÇÉÚBÙÒØ©mÄôâ}I×ÓFÓæ\ 6[\8ezå.\v¹Æ¢\ 2ùæ|°ì\ f»»îkïytKñ<Ê\89Â]ÉÔ÷VZ\8d\850Ô G½+óîb}gÓlèf5vxW\96ÿ~õo\8bÑ¢\1e-b\ 4\85ð[îýP%µ76#\84]èZ\1e\b1i¸$]\1cÅs±}UØq&¯)àá`ê,\9b§\97¸ú\83@²õXZ¿õVjÞ\eG\18\9dÞ=g
-ãîd]\16Ö~`í»z\1cZ\8c\11ÈØ\ 4\92\13\90\90U\8bYD\8fKS\ f\82\v\9e~%~\fþuñ1´é³\roIÞVÿ/}×áÍhmål©l\19g\9b¨Âò\8c-\9c\9b\9d!O\19¯§(ݤéQÙ¡Æv\84í\ìæ\82o«1k[(Û\18Û]
-ç6íé\99\85k+ïÛE\1cª^·¿ZÞ\8ez\1c·XE ì\10{@4\88%!\9a&uç\v\13²ÕQ7~dýiQ?Xö\19;ÍkõÙ!©ü×¾6éºJkTN£;?¾\1c×hh/µä¯zÖH\13\1e,\15'Lí\rÓTÆÍ=]ËùÂ\95g¸\10µ,î\1fª]\16eS¬GøKbPl\8c@Z®\ eªþð\88 ëÉÖ!µ\8e¡µÓ\ e"gÅ\9c´¬Ý\10$\r.6\=u\81\84&\90Û¢ªï\91ª~ì±ôJòÌTR\ f\86\v\9eN\9a\ e\8e~+/ûNF.´\92W3|;z;H;;Û(û\85\ë\8a ¢ä¹\199{c\9e¯Xä@¨ f&a?å
-;ßö\ f\14\ 6¬ÉP¹2Iûî»eû\94\8cE\8aÉd¹·Dµ\19,xÙ\9eyÛÖ%\)\86x+zc\aeÓ£ãë¯\18_ß.\9fF¦\1f=îê\1df<ñ\1e½H\8d\8e\ 4ê\r\11º\19ôkEñðõ\9d^Zã~£HÔÿEøqw{Ý3gR¸_}\16\95¨\19PÌ%um\ e±òµÖµzÏ0«ÍÛ\15\eDA]9âþ¨Rn\10p:\ 4âß{<«úéP\18ê\ 5A\94«£ª³®\8fl\1dJë\18Z\87\11F+ë[ó\14Æ\13XÉiE\bRwu\88«\83ªcYmT\1d\ fÝsÏM%õËê+𣥣¤\93\9bÓ|ýs
-1\8bÿÝwó"´o¥/¨½Q*;\rA\8a\98ÂÃ6\v\1a9{\83\9e¯\95\88qP\13Ì4\84\9dïû´ªÉ\ 2\17úÝ\13÷Þc:\94+óÉr\8bÉ\9dvôêÞ"Ám\ fü,©Þtù\96Þ´Ë\17íܸó\88~ù(ëWw-\8a`mõDºã\8e"ü\bÓÝâ*5)ò´Û©²[!\rõ<\91\1d>éy2;GU½\ 1ø9MñLI\8eÓÓ\fçb\ 3\83zkP%µ\12µ\f \8d¯=]Çr£¬7ÔË\96\16µÿ¼°í±Å)PîÎ\97Ô´ñ_Ï¥á\v©g/ºú\1dåêÑÓßþvÐu.EhÛAt£µ\91õÎVrZ\13\82Ä9æqlqjÙ\13qµ(«ï½//yõXþ¨ð³¡¦~Y~«2}ª!H:Û9Ì*úV\81\98nt.-¾"\9cí*[\94º2§PyFQ9k9G\19\8b¡Î7<ä0¨®òµ°³¯\1f\13\17}
-k\8bܱáÅìíûË\86·hl\7f\1d\9c;\9d\82º(áj£>N W3£\8e\11Üõ_¤\r&\1d\8c\aÆ6<º\rêÕ\9et\99ðäBõþÊ25Ò\19å8tVÆ£\85\1c_\9b\85Cõø\81x\ 1\90qTQýçg\8aªE\9d\19\ 1^hS\r\r\8a\94:\9f\15=\92£\8c\1d\8f\82\17\86\88RC¿þÉ*ãA=\1c¨\97\ 6ª_\19²7 \1cü\8c\9e\ e\93ìDÞÚrõdê\11aë0Ä\18CkÕ\ e\92\eÅ\14Æ\9dËza\b\12\ 2ë\8bÂz ÁÕ\9fK®Îqµ*«Õªßñ{:ÑÔâëgqAÙ÷òÄÏo\89v\9a\ f\1cT£M\98u$\9c-\94Ãì\9cQävmÕÃý\8akg#f1Îù\r\1f1\bª\1f\19ua?.gÈ7_a«¦\14Eùý¦\8bJ\ e=:M\809 Î
-«.\14!\ 51«\82\86\f\9e,\ 6uõ\8a/I\b\8f\9aÑX\e7\88Å\83¼ÉÍ_vÞ\1cî\8dKH<\90Jê$jå\fÓ\1d¤\95Q\96\97_\8b[(\1e(9¯)ê\7f\eHéêßÙR9ÃP\19º\92\15¸q\81Ñ{]Ôµ\15yü \ 4æÕ°|9ÔC\17y/Rxá<)\8aKC\9e\ 5ÛÖ\15ÿâS¹Û,¼Ç¿â¹:\96ÕßÎD[O½Ö1´\ eí ¥¬o©Èz\17+9Í\17ÖS\b\92\9bö|WWU\9d\17¼z6¿\8d\ 4S\8b\85¿ß\8b\93>££s\8eôí
-)bú@6³\9fÓÊNEö\e²ÐÕ½Ún¦¡ëf#f9æY#\ f\82ê*¿%ì'Ô|Ç\96\a]]FmçwÑû½\86@§\17ðn\99Pß_\17ÃÌ\ 2ã%2D0÷¡×«îô§?i}ª×\^7¦7§G\92xs¸¯4µ\94\86U\86ã«ú\94'Ï×\95Õè\9cêÿN?P×1M+¥)\92\82\ 5gH\9f µÏÅ\89QçÆ×µhm,_\fS½á\88zñÕQoé\8a\7f/õ\9b\8d\83c\8e«SY=Øä\8fF\82X\8e\942\95Ö9´Öí ]dÝ,¬U\b"\ 2ëa\8eyìÙ\9bsµY\9bP\7f¥R,y5iúý\14 };\1fÀïÔH\877X{r¶P¶)²ßT EìÔ®¤\1aJÏFÌå §\83ü¢[Ø\82ñ\97·\85\9d/ÿx\8b9\85\90O\12÷CvÄë~\1dcç6nÙ\b¨\93\8f\as±©Û¹f\96\18÷ßKU!\9doB¯]],õ\12&4=iºÓ\1f.Êë{Õ«Cñî\90\9eIw«Qºä¿\87â\14
-µ¦Ø\93me\14Efå\rà~ï\ràÎbzê\97\eÅÿ&1M-àu\10ÿDõIª[¨¤¯]]Ë%Ó\9c1\8c\87\1e2ÙG:èêúp¦3\985ܤ¹eÃí3qJô\94\80ä\ 2Ñsu6MðI*\8f\14\12BëÔ\ eb\eÕ|ó\1d/h=SX\17\81u\1c\l¹º®ê\97ãÚ\84ÓwÏä\ 4¢÷ÍCn\90ñG#ßÍ|ï\bñ\7f¿;þ÷ m\917%e\9b\ä-\91ODs\17¹Æ7<=k3¿W\19ö4È\ fO\882¿\10vöulë{2ßkÕ\9bË£¢´µ±U\8aí´¾\8a¦×\a
-/<\9a\v\9fVÈìL22ñÁSú&,\16ê\12kt¥ûòé|LD°ï\95×"\9do½:(ÿ\15¦~<,Vód¹¹y\93µ/¬¶\1e[úH)Ó(\19GÕ\8a\7f/¦©.úÞÌv\8bç©\11uÑÈÚÞo¥ëF\86÷ÐCNö\91Dmd«/\90rÒ\99³qéDÅIÑ¡ålôNÍÕ©&\fº\9eJë\90\83\ 4Y¿\14{÷\1a²¾r·\vZ»\85u%\ 4É\83\8ba\8e¹çjQV;+~Ç\99\9eÓ×\19ôpìtТ¤£\9b¿÷½ïG~\10I\7fò½hoãìÜ,©r\11Ñê\17\9b´\136ÖP\95³6ó7\13vÔsJcô\18è9±\ 5ù»ÉYغÀ\8e]"rz¼\87\7f[Fi?Z$¨òû\a¦ûõ¾ìiñª\9dï¦Çséæ\88 FúM:\eO¶F¾`ÈÓ\89¦ûñiñÒQ/¯Õ\14g5Ç9Ïè\11ï\ eò\89\94\96é}bj!PÊ°ÍöJ\173\13TÝ\11ÑEÏ\94Ú#¥¾ð{8Üêà;ÏQ÷gý{\8f\ãÒèZùZ([\8e7?"k\0iê§õjnE÷¬èã*§\v«æÛéoÅîà\94»¾å¸Z½½'[\8b\1cdj\a\91½{f¾y^ÉÉ]ÐzK²®\16ÖvtQ\ 5ÖcÓ\9eçê\18\81زº\ð{*©ÕÃm²tpt¶ó\ f\ 3?\92Ä?\8cî\ eÒ\9e\9c\1d«leìs²Ñ/z[`\82\rU9k5Ç5\ 4ì°§èÓ\94C 2L\ fÆ\16Â.\13\11±¤IË\82B\98êÞ4\11j\16¶ß¿\9d\a鿪¢\ f¹Î¸\8a\ 4D\10Ð\9e[¤^ å\rø\9c¸ýt\v\8eîÑ\11S\89\92¯Ídýr®~|op&6\17!\8f5uT\86,í\9c©ªJ\16â\15à©ô
-\90\9e)ö\1d x¨8ÓRÓ\96Ê\r}¸\16Óȧf\11\vXi{Ï~õöcß&ìÔ\ 3eló\90ò\16\91W]\83b¨%¿\eDSKQ×®\91rÕÍÂÜ꯾(T\1d\92×\8a«'O\7f\14u\9dKë<Â\98z÷B£µ\95µ]É©ñõ\81ã˺ZXÛ\10$6í\15®\8equ\88@JU\9b©Cãá\9a\8eÖèéIÓÁÑYÏ?\ eüD\11þ0\99;9;*Û\18û[¢ÈÍ\1dÚ\ 2\13lH=\e7Çîy=Ú©B/;\ 2\1a7!.k\9e\85íEØÏÉÛÁ\84r\r+\16AâcÂ\18EK\95\1d¢\7f0\ f^\89\19`éNÊ\95¦©´\16`o¢\17T\8b¤YOñå<\ 5tÉD¢¯\89òÚ\99÷i^\1eDç\9b~$U\94!\9d\117ܼ\ 2\bc?\9d¶1m¤Þʯê¬ÍÁ¾ÿ~=\9e\18*Q/Ú5¡²\9fæ\16ÎÖÈG\7f!êz
-a\1eQb1â<Ðâ\8d\88?:kêìÚbÝÍr\92°}/Ë'ê¥\97\94ªS\99è»z\8a\?J¶\8e9È4Â\18z÷\86\8fÅ\88Y1iq\90\13\91u«°\16£\8b2\ 4\99\ 6\17KW\87¡Å)\ 2\89eµRõ´\82l~°\8dÇj8Rc=\1d5\1d$\9dôüÓÀÏ\fá\8f£¸'gGe\8fÆV5ö\a²Í/ög+¾Yõ³vs\92²\1aëüHà\ e\80\8ai¬YØN\81ý¢\9e\1dïÅr®\11ÕÛ©¬ð´°\9dQzÕGõ\88ú"D|7\9d¯3\8búFý ,\91\84¡m3\8e]IQN#*ÚÒíDýøÖP\9bðiS\1emêXRKc\98Ê®²\98\80³Ì£ðum=\81ÆÔÔ\aä\13ÅäéN´[\\12ÖÚ\8bêlêâ\19ë¾Q¨\95\88\9f´åµÓ0\98»O\1eW\99ÓÓSçF¹öfe~°¿P²\99*ñòËivtê\11¶®¶ªþ(Õy"\aI²Î½{z¾ù´8ÈrYo¸ µ+k§°Ö!H\1e\´®\9eâê)\ 2\89eµVõ\10\7f\ 4SO%õTP\aOgK'?ÿ<ðÇ\96é\8f£¸'iGe\97Æþv®q£¶\8b¼¹âgíætRå@gH×\ 3\8dñÏ49*|\8ab*°õ\90£3;¾`Á\1d¤_É\1f\95}"y¤>ç\89\ f?¬Jê'ã
-¶i [¡/çÍ´Rá\98i âÞ«ÍýT\13?Ã$¢Ê,"Û)'c\9eb&ÆW+1\8f6uµ´óëÿ¼\9cº\16¶\18\13Õ\ 1¶z»Y¹\9dúsJ^Jád\15ÞûY\19¤UD\9fµ2w\88¿¨^^»í\82i|ÜÖÔâ¸k׺Ë#\17\ fv\87øw\85ªó@\99x©ÿ#1Fö]ië\9c\83\88Þ½ý\90µ_X§ÑE\11\82¨ÀZ¹z\1aZÌ\11H*«\85ª\87#5\1c¨ÑÔ±¢Î\9e\9e4\1d%=Jù\17#\7fR0ýyôvröXe\ac\7fO\1a;7ùÉ\ÙFΪ|\96v.´ü}É\ f\14\95ñOÙ\16\14\96õ
-\1fQ6="/+\ f´-(~(ÞFÏêÖ\92TâÙ¡\9frÈGèë©8©àY%/ýVj+\1c\17U\1eIEÛfI3é3N!\92ñÐhB§7¤\95òÈùr\ fUM\1d\9fIº´³¯\0Eyçg62´\91Ï\95bÎ\88×\86ü5Õ¡\97Ç\rü!¸Ú\83[¦\159\1ayÊAæ(ùß5\9a.£b'ÿ\91}L\8d.Á'Ôð@>ð/\88u\92ã¥â´Ö¾n\1eìr¾\84~W\8b+\ e½\99&t\88¡2\11À\8aÊ+Ùz,Ch]Èú!GÖå\82ÖÛ\95u»°V£\8bµ\10DäÕihq\8c@Ʋ:' AÕcQ=¥\1fGG(\8bzôô¤é édè_NüiÁôçÑÛ£³³±Ç\1aû\aÒØ\1f¥`B¤ÊEè,Ëgegkå\1f*ÜÑÏ4ü©\9f\1aßNM÷ªÀ\ es-ËÉñâ-Ï\11¡y\15\8cÎ\90Â\96\89H9Ù&¾ Ê~\ba/·ÚÉ7\84§1ÿÎÑ\8a.'\82ê\19\9fi\ 2\91L\87jåuÓ\82é\15â!\99óÔL\9dE]<a*µ]<OÕ\83_[M hC.æ\8aØ\16\15'O¯5Óè\15ËL\98m)BêæK\94
-\7f\9e+u]é;Íí'O\96Eu¾Ê^\16KpÚiõå\1côT·t©½\9e\17\1dz+\7f\19÷\9b)\82\95M\rÃ\8d\1eu\1dKë÷e;Hl´6\8b\83ô\90u°Î£\8b"\ 4Q\81µrõ0´\98"\90±¬6ª\1e\8bjaêIÔÁÓ\93¦\83¥³¡\7f5òg\ 5Ó\9f\amOÊÎÆÖ%¶è\16\91\99²¦\10´´saå\1f+¼ÁÏ\1fguç,]<¸Ã\ 2\ 4çâwïß\12Ófò7\15\8a÷¼\8a\10_VÒ\90ÎÐóJ¼÷Ó\94">\99M\9dä%n!]ìø8sA¢í,}ÝJ\19\9d]øz&\ryØwà×j
-|Ò<\95ª\9fÀлQìk<úRزÀ\96\81HãõÆ}É©\r|\96\81zõ5Ë\b[KÛ\8c\83äg\80ú·Uy ~M\19ÖË\89\8d\956Á'Å;Â3þe&jbù@×ë8\88\89\12ÅwIòÅöfX\1e.\7fÄܸ:Þò"À\1cïÐIÖG·g\96uh´ÎóÍÅ\1a©5Yoñóæ\8b
-ë8º\18B\90\18XÇÁűg/»z\88«c\ 42\95ÕRÕCR=æÔG&\1cKêIÔc==yzÒttô(å?\9føµ!üqжPv0¶,±\7f\98+Üï©Y5Eî,êgeg+å\9f\1a\8a\91Ï\90£ÇÑÏ\ç\ f\97C\1eÄP\81H\10¶XèÕ\14\f¥\ 4\eIïóÚm&RÔ5Ï\13O¨:3Íý\12«Ø¾j«âZ±ãÜ3\85¢+3õË\19ú¯5æ{êHÞ_O¥\1aô8¦\96ïà¯äãlwž\8f\8b#/Bvù°ÔOËEÍ\12j\ 4Î\eø¬¼j\15Õ¯^\13Ø\19®V\8däÆÔ6ÊR¿¥\8cêK_\97]\82_×/ ©¨~©\.ù\8dr\8e\9aYʾ6Ã-]oßH+\ f U\97®VãM±\9c\8a¡uêÝKS\18Óâ i\8dÔÝ˺\96\82ÔF\17M×Þ4¸\18\}wruì\ 2\19"\90©¬Öª\1erꩦ\8e¦\1eD=zzÒt°t6ôÿ2ñ\eÍô\87QÛQÙ£±Ç\1a;\95ØÉØ9\96Hâ\96ѳ(¡\85\9fµ\9b³\93\7fn\91Ã\9eyìógÁÚ?NÉL¬°s\81mZDÔÜøFÕà¾\12¾új%:P\93#\9f0õ\8e\8a\10³©+÷\8f·vU\91gH¼I¡fÆ~±Bùìô|/à±½±¹7Iðq\95ô\14/\10Þç\8a^7÷¿\14\83:îå'/\9eó\ e~cüíQñì´\ 5¨\19ø,\a\ e\\99\8a\19F5Ü\9fsLíÿ\86jP/?\9fWë\13L\83\9aEþ\11\8e¼¿°}mù\1d;»¼äÞ\8aky¦5-D\e\88Vµ(åDiíËú\11³ì\9eóõ\81\1dÊÚIADa=\8d.\96!È8¸\18æÂHW\ fqõó/¼8¦Õ¡¬\16ª\1e\8aêhê(ê±\9e\9e<=i::zÔòo#\7f!\b\7f\14´=9;\e[\v;Û2\ 6Êr8P\aÏÙÐÒÎeOÊ/fIò¶\83\9fIØ^ ò®XΤéÀâ\1a}£\9d\1d\98¹\91æ&\92¯¥fê×4\9e®î\1esÿزÇÁ\99\16*fí;«\93g_¿\1e|v¨\ýJ\8eR¯Vs¬Ðz\a\7f-[º<âùO\84²å\93Ò\16Øâà«H×Ét\1f\7fâ ;\9a¸¼§M)Ûóµ§ì窦®änù\97ÔËkõµS-jù\9e\90>ê'ºìÒÚöaÕä·ßÑW\8d|´¿Ó¾\0Ã5÷îTUWÊjY±M¶6²~'Ëú¹ý\92õ\94\82\98ÂZ\86 2°\1e\ 6\17\879æc\7fµtõsÏ¿0D ª¬\ eª\1e\8aê#%FS§\82zôô¤éhéìç¿LüÕDü¿QÛIÙ\83±\93°ÿD\8d;¦\9eì\1fÿÈ 3\8e¬hiç(`Ù\8eòË&¢g%õ«¤df\14v¸.t "\17 *k\87\86\r£FêáÁ³ªòÑý[²ÔѦ\96\v\8e«{ç\1dsß\98ûÇÖÏÆÐ3Ë©ø\8b©¤ý)Ö¾ª´÷\96\8d½E\9f\8b\9f\96úo\11ötÈup\1daç\ 2Û\19\85«Ï&,NI\16uR¨7ðY¸´æë\82çk¦6#Äæ\97\98aU÷ëÔåuVQõ«ñb{#\87\17qádïÁþ\9e\15wYyÇËî=¡jåj£êÔ
-0Ý\95\1fÊÞ½<\85±Xv¯ú]¯mÊzÑðb\1e]ü¬\94u\1e\\8c®~ »z\8a«\87\bd,«\95ª\8f
-Ùhê?\ e¦\1eD=ÖÓ\93§\85¥³\9eÿZð\9fÄÿ\ eâ\ eÎ\ eƶÂþ\85*p\7fú\93\12\19r$GK='\a«~\94_U\91\1d+\7f¢\ 6?'a§\ 2;?ÇE\ fv\9c\1aï^\85\85\1dU|ÐJ\ f\9eK7\93háÊ=»Ï\19S\8b{'~\18¢vãTf\85ú\93CÓÚ*ºÏ]ÌVR+&
-]\87Ý©.U(\16³\12±BÙØ[Êâe#jó*Jµâ\11ù\riì×lÛ¡\1aîÕ\95§(>Ñ\9eñD\9düY\8e]h\99J\97*_W'.é\9cÚy\1e¨á\13Ù\ 6ct\1dwÒé\12\14íáqÇLUL\1d®7óhÿfñl/½-«\ 3±ôòûEYÛ\b\82ã-9\14PBÖ¯¤ùæû"k1¼Ø.¬Óàâ´vSrõ×\83«ÃÈâTV\eU\1fY1ÖÔ\93¨Ç\82:y:X:9ú?\8düg\87ñ?\ 4gOÊö\84-;ER\94l\10!GV´´s´°mIùs\aÓ°¢ÛU&a\87\ 2;\ 4"Ê×j5\13_\80\15K\8aüÀYÛO\97?f\84ÉÞ<å§!ämóM\8fæ\ 2\84VÐï{$i«¥¯Òî¸\v_Éé?E¿\98\e,Øq-mj9¬å%>úÑ)\9d]\bÛIDDñéØ,wh<ë\8aºèÇ1#\9dr\9cù\95R×õ\8fÙ½ \8aêTS/\1fÍÎ;¨öÐk\11|Ö\mæ\15î\e©2Ȧõ\9eîöª«Õ\ f碩Ų\9e²¬Ö\93$\92GY\8f¥un´ÞGY×
-ë<º(\ 3ëèê¯\ e={¡®~!º:¦ÕG®\16ª\1e\8aê#\1dþ2\99z\10õèé¬é$éQÊ\7f3ñ¿jÂ\9f\ 6i\8fÊ\1e\8d\84ýgZ\96¿Ðó\1fs\bý\vÇÑRÏYŶ+%\r\80¦\ 1Oݯ"ÛUB23
-;\ 5"Ù×AØb5\93ª\ 2KMÊ\0¡ækQ\0©ÐòyóF:-')úScèg¦ã\e϶)Ö¿ú0#\97¾\8aÂ~Ï_Fåå꺲EÃXµY̪¢9®å¿Ê¨\97\1ekìBØÖg~_\86è Ëc\89Å°§ý.\86Ó\9c"»Sôôª\8a¨Ë¢Z\8aZ\8dmëßbt-Êk#lY\17¨¶j3#\\96\ 6Ù´îó½âíâ6\89¦\96ªþȨú\87I×6\a©Èú\81RÖö\8b¹[\94õ\82áÅja\9d\ 3ë©iϸz\8a«ßzû\1d]VOª\1e\8aêXS[Q\vM'I\8fbþÛÀÿ\96\b\7f\10µ=)»*ì_\89HâOÌ@ \f:\92£³¡K#ÿf RÞ\7fnÇ>S\81-}-\84ý¡\10×\8cüd©qN\18.ϳ\91¾\16÷\94x\r~¡¼sÌL\82\\9d\14ëYéé nÉ\èÙ\9b\94\94þ1åëwͤü°+E§\8b·ªl\ e\18T¯ØsÆ\14Þ\10ªÖt%Þ1Î^ lsø«#}ÖÓz\92\88ìOó:Sl3áìlØ\17]U;Ï\ 5\7f\92©^"¡ú4²\95\81£jqÉ9ß\8drðµ\9dH7Ê\aj\11f³h\l1øA\9a\ e¡BëBÖ\8fí\87¬\9b\85µ\9df>\ 6Öc#ȸ\1eÈÐ_-\ý\8d·Þ~÷½scY]¨úH\8aÂÔ\83¨S=-4\9d$=Êùï\12¿ûÝïÒÿ\8eÞ\8eÆNÂÖ\91H6ö\9fþ©3\18ø§\15G+7ÿVò\17mâ\8femÿZ\14úIØ!\101¾Î\8b\99|X
-°uÑ\96%iY_¿äܵ/z¯£bzn\1e\9bù@«ÖÌ\ 5ý°\85\99)*¦\8bªå
-¥°Ë5¯¼¾\90Ôkñ\94N\81c\ eüTiê¢+1\99Zô\10hK7\ 3z=lðVCØ/µC\89"\8fÈÞôÚS\ 4Ù¥®®_lè:wT[U;]¢õö\17çíÁk<Qª.Êê\\1d¨OG}P\Fî;\99nò=\13þª§j9\119\97Ö!´\ e²þF\9eoîɺü¼ùEé\8b¹»\97u³°NÓÌ\87\10$4\82hW\8fC\8b!\ 2\19Ëjê#1\1e\19Q\9aZx:h:Y:úù\88ÿb\19ÿ4:;\18[ ;\ f:þ:\a\12\1eIÒ©\8a\16\82\8e
-þË\82¿2¨ÿ(Ä\9d\1a\f§(½âë$l¹\98\89£Àù¢ô\±îH¸±²12B\v9þx[\7f\1d"}ŧú¡µ?Ò8j\96\7fï#\8dø7¾\9dß,Ä\9eÈ\17\ 5\93\?§\ 6îd\ f\82\1cÕzÖ\9aÚiK\94¢v%íç£JÙ¦Ä6Â~E\95ºJ\9fâl(kJO\17í)õ¦\94×ÜâÚ}Pû¿T\9aºõ\¨¦!FØ鵡V\1dXU+Q»W\93\11wñv'_碩e\ 2¢f¾i[\ f¥µl´\ eóÍ\95¬ï=9Y×S\10Õ·ç\15Ö±\13d\bAÒàâ0Çüég\82«Ç¡Å\10\81\84²:dÕ\93ª\8f¤8\9aZ\8bZxZZz\12óÿ>ñ÷\89éÿGiOÆ\16Â\ e£\8eJØ¿6ã\7fv\82¤ì\19üôs²ñ_/EéÛkV\19\85íù:®\17øÑG\8e\ 3½åYUYúA{]¿Wåý+oÑÔ9\15ï\9a¼\8e\82ú<ÄwÊo}÷»\8ewݹüÎ_ÕÿD\12ö\87Þ\ 2\85¹¸v×ÿ~Ú\fÛ©A-gL+võ\16\8d\89ÚÒí\81ÓsFÚÒØVØQ ²»N!\1a\9bEq\9btYiß\14Â6\16u\8aë\85Ï\aû\80°=æÒ×~\1aR6
-Æw\87\17í9Ð\8bâ\996;ñ\85Äz\89Ð|µK\9a¯¨Zé3+ë§Ä§b\84¬¯?qY{)\88WX\8b\10$\ f.\8e®\1eú@\94«\87\b$\96ÕIÕGZ\14¦\8e\ 5õäéPM'KgEÿCI²¶0ö ì\90a\8b\b;tb«\ 1@=B(;»\85¡c¿`ÆëKÑ\r*\ 1Ý^\98\93\99ª¯\83°\7f\90Ö2Q\1a´(O\86+÷Ûº\a°\8cC\920\ 49¶5Eµ\9eC`çæê\99 \89üzF¿\99:*ÿr\16v¹<a.®U[HÒu1¨\95\93Ò\S\17ó/ÞL£Z\85¨+ùµ\ e\18¡lSbçL$Y´¾\0Ö«¯\1a]6\9bSä\f}«ë\9c)\9br¾x±*\ 2\90×ËgDYÉ×Z_òú¾^Ê#^åjeuñ©¿?2Ï{y_¸ÖV$Ñ\7fä\ 4 zÂE¼û\86\1cd\9c\16#¦0Uß\9eWXç\10$\ f.~ý©ÉÕ¯¾>¶\81\9cûæû\1f|\98"\10«ê#'fSGQkO'KO^þÇ\89\7fÊL\7f\10\9d=\1a{\14¶_`§8"\ fþÙ@:jºÒ4ø7k¨v\17þV\b[úúç?«e"%ø=\9fèíï\88UýÜU¢òm\9c\11\9d\10¶¨Ö3\btWªAO,(\90\13\ f*\7f5Mö5»\91\9f:Å8cÙâRé¬xÞƤjþÅÛ¢\8b\yº&麶u\8dí\eÛtÚÉ\13ñZQÕÚÞ\14Õ\9cRoFÑÑ\8b\98Ôè©Z¼^YU{Õ¼ªä\e±¼\1fÇgU[W;ªÎ\9a-×(.ßÊüWÑlz_ÕrÙµ\Z\87Ð:OaÜ\vY×S\900¼¨
-ë0º\98B\10\11X?óìäê7¦ºz\8c«\87\b$\94Õã°â\9f\8dùÇPTgSÇ\82zòt¬¦£¦\85¢ÿ¹$J{2v\10vJDD\82-¦ÎXr \1d-]í\19üÛ\19j½\85¹¹ð¯r¯\8aãë¼\`¹\96IUvFuå*¬"½VkD%5¼\91*L\91Tç%\7f?\8a\1f\88Ð)\9f,Hä\10M\8b\1fú¤ý\88ó}\8b½(£\90Wób×qTKǤN³\8b\89?rSo1ÿÂv\14´ñÚ(m\8d*Ò\99E_ÞTå´v´íEQº¶\ 65\8bíÎ\96Õ:yñ
-z)ì\9a®Å0ªÍÇõ\0I£¬Nª\8e\9e.\1fúú,\95Û~\0÷]ÕW\9d®a¹tf*e\ eRÊú\89\13\97õ\9aáE¯°\1e§Ã|E\ 4ÖO=ýì0Ǽpõ\10\81\84²Z«:\9bZ\8a:x:j:Kúÿ\bü\9f\89éÿ\ve\aa\17¾þÏQ\94q\00umÈ\81¿\16\9anõ\f.ÁØ;·\83ÿu\1eú¬ùúgÎR&\ eÚ\93YvÊ×¹¼\96KDIWä
-Ê[\9d=|Ê'}ÉG]ßz=X5\89¿¾½f\86¿ú\v¹uJìD,®ý(D\ fké\9c´xó\96Ý\1f"þxGMÀ¨M°ô\e'Mo¥Rv-\15)\17\17Ñ£x¢\98Í\9aÖs¢L#\8a.à\97\97Ö/9®~]<¼«ë(ÉR¾®kalñ\vÍ\10\89¹òüè-YºöBçÖÚ\1f\15\ 5y¥¨\8eWq.Eh\9deý\92\90uøbî>Ⱥ:¼X\14Ö9°~ö¹ÁÕ¯ W\87¸z\8c@~\99\ 2\90AÕGV̦\1eEí{:Y:øù¿\1a\92´'c\aa\17¾Î¦L\ 3\7f\ 2ii§g07\rþ®Áß\95HqËnð,ìàkÓ \92\17\9f\12&l\12}\97dW¬é\17tý¶(ð\94\1cÞÊ7LÌ?ò·|¾/>åóco}X9\87\7fvcÍL\7f±\vªyÊ.\9b"Þ\10DW\88nGtúàd5\97\f¡\8bjQR\17\9avÛÆkXiûÊ.\16|\91¼%ëX=iÚ!û:Wï~\v\8akk1ª)]\9d\ 3\90²ã¼l+wuý²ódHU¼\1e2ð"\10QU«äÂ}3+Þ/\95·u\10W\9aZ_\88?\12«@\bY¿\9d\97Ý3²þò\91¬o9iY×R\90za\1dF\17Ç\10$\ 6Ö/¿òÚ\eo\1aW\ f\11H*«¥ª£©Ç\8a:ç\1eÁÓ©\9a\16\92þo\81ß\ f\84ÿ\9d\9c=\1a»æë,ì<î'Ç\r¦MÏ`Ù4XÁWx£\19Ü÷µøN\99³\94\89ëÉT\18\88%GÒ§ää\92Ùo[Q¼\15ëËw\8dªcQ-¾åS~\1aSNàwÔÝÞr³ýr\aÊUdã\v\82êni¾x\9b×n3¦è\9bz±¥+Ó3\94µµ²mKv\r\15wÔ;RL\vJ´µÓ~R«¬Ëv 5\8dS6È\94ñ\8bòuE×^·Ë+ö¡)#\10»*\9e\88ß¼×3õ\1eç\ e\9dØðPÇ\1feÝð£´ÆZn\aÉ+9y²¾mFÖ£\8f'ëÅ)H£°\1eG\17Ç\10$\ 5Ö¯½þæ[o'W\7fÿ\a?üñO~:F FÕGZ,L=\89ZÖÓQÓBÑ¿ÿýÿ\95ù}²ödìäë\7f(|ý·9\8c(ø\eOÓEÏ j\eÌ\83%\9e¾M/øßäV\95\9c\87D_Çå]\e+\99d[JMþ$\8dOÊÎ~\1d$¼+n3Uý\eUý¾RõXT\8b\8fù¨¥\b\15ÖÜ+HÊþ±ú~æw¿+¢\90Zpýj½\92Ó\13Kä\98bx\8f\10¦ÖóÝ\1aN^\84¶¶©²+Ë\ ei#ê¶Áê\80¦¨Ú½Òº\1d\838\85µqµ\eÂ8\1d\8aíjþ%ý\8b^ѽGæ{[r±é¬ê"av\ 3¸\99Q\93\1fº5µ¬.N¥¬ÝáE§°\1eG\17C\bòü\v¡\11äÝ÷¬«sY]¨zp¡\15uáiáèÿ®ÉÒ\1e\8d|=ézôu\16v\1aõ\8bä\81C«iég§kP6\ f\96XyGe\97½àÒ×RØÞJ&\9e$\85Õ³°ó»\9cÒuòu®íâ½ø^\1aUÔªþ¡ý\9a\8fXè*!\17ð\96â^H2vº_Ä
-²ßIQ\88µuµuÜ+äªEõ9gÉ\93\15^vúzKm\eg×\97\1dÒut=<ÏÂ\ eºvJëÍ
-kãê²íÜëv©ëZãô\89ÚÙW¦ýH\8c\95\14\82\95/pRÚÕa\9eÂÔöýîÇyõ\87\9a¬\9fé/k7\ 5q\86\17ca}ÛTX\8f£\8bC\b2Í\86\19\ 6\17ß~罡¿ztõ4´8F AÕ\7f\95TL]\17uòôèæÿQ\12\9d-}\1dòkíë¿Ë\ 3\7f¶¹ÃÓtÑ38u¥ü£Ã¬Æ\93³s+øß
-_\9bñFõ\91²b!\93B\95Ù\93?ÿ¹î×vu}î=õ>\1eë¸s\85ªÅ\87×~úSõÙ5±^l±|·ØÜÊ\93å\8fÓâàúió³<´*;¨ò§¦Õ0cÙ8®J¹,\87WUÅh\8bjaê\95\9e®N«wÍ-Ó\91²ÝÏíçnÄæùß9\97N¨÷Á\86×üI\8cöÍÃO\89l\97Lz\88\94ý䵬\ [·ôW\86\16?\90\rH©ªþQ\fáÔRÆ:y+\9dí!FMÒßLÿÈOÔ\9d3Þ8bq\10)ëG;ɺ\95\82ØáE§°þÚC)\ 4\19\ 2ëo¼õÎ{ç\ 6W\7fgÈ«\93«SY=fÕSQmL\9dEízz\14ó¿$þõ_ÿ5ýï ìQØc \12}-ÚCþKÌ\8f\9dÎ\r9S²Ò3X´\rþ\93ÆS¸´x1wGûÚö\87$a{ë\98xØ\15³Ç«ÎÓuòu¸ÛÒM(_ACUý\83ø\91\88\9fªï®É\8f\18;\8bw\voÏ#½.^\ eôêV¾ßÒ\1f\17®ªA×\8bYÕÊÔÆÓ\rëzÿÍ\9b\88a\97\ 20«¼´\eM\84\9f\9dÇ\84®ÕÏ¥¥`òêßoª\14¤>'¦VX;\vJÛÔ\úº¢kgÞϫůy[÷\8aN®\96eµPu²tùZ¦Çwæ\87·}é\8b×Ò8¸ÿ²®\ f/êÄú¨°\1eF\17C'È\18X¿óî¹o½/\=\f-\8e\11HL@ƪ:\16Õ\83\11\9b¢Ö\9eþ×À¿M\84ÿ\17\84-}mâ\90¿OumÙµñ;SN\97=\83¹kPÒ\94w!ñ¨lãk\13\87$_祧¤\v+\9f<\90\1f9Ðëùe]ç&¸´X¶*ç¾%ÓÂ\18\80\88ïù¤ÏD\88å®\14ÆÛ+\1e2ÑÙòÕÀ~\9cÁ·µ\9dåSN\ 4Tó}äBÉIÕÑ\8cëÊeßÔ\95\95\ 1j+X¸+\14.\8bX\92¯¿\99ÖízWÈ:?Äda]¸º\bõ\9bï²ê/ór\11\97\8bù\93ò\9c8'Äf \1f¤nÑÜ\83\14\ 6L¢©\9d4PIÛ\19߶=HÖÓB×¹NH¡õ\1eȺ\1aY\9b\14¤\18^ô
-ë¡\13d\fAB`=Ì1Ï®\1eãêPV\ f\1d AÕ©¦\9edØ\10uÒtpô¿ýß\89,íQØ£¯\7f\9f}-ºCþ>\8dü©n\8d<\84¨{QrÏ èëV4Ìí8\ε´S-K_'a\17ë\98Tø\95HNòtȬëÜ\ 5\97|_¸ßW/ 1«.?èó+µ(¡Z¶ûÏŶx\8f\18\97òÅÀÿ4CÃÖ¢ñ¡\9c\ eøz³¨þ\96\}S\19x¨k˶è9u¶Ú^ö\fð«ô ërY\ùÙÊjß³#k[ñ¾íõ4~³ì$/#\18=¯Þ=%ozc\8bÒÕ¹¬\16ªN\9eÖ¡ \19¹\91á\88\12·\b>L\85\1eÿÖOä+é¾ÊZ~|Q§ yöbø\98\97SX\ fÓa\86N\901\ 4ùæ·\86ÁÅa.Ì0¶8¹ú7ÉÕcV-\8aj#ê"ùP¢\ e\86þ\7f2YÙÆ×Y×¹;D-ýd×\86ú\87\7f\10y\8chí¶\8dݦÅÛ3·+ñ¨ì$즯ó'%\85\f+\1f?0_8\18}-u\9d'déO\e¨wn¥êð\95\88\1fgUÿ2\7fÑG,\1d[~rÁ|(§²Â¡ÍO¢°\7f!§\ 5\99\ f3Tlå ÉS~¾Q¨:çÔRÔU;¶}êZº²¶\95[sK*å¹øy¡ëò+\r:Ì7®vWÛ3²V\1aU_j)\ 68³®½ÎAù\91\82<\97^O\975} \1fÊ\86Qájiê¹ámÛ\92¤»D\7fVxZè:\97Ör\84qZ\1cdZÐ:|Þ|\92õý'.ëU)Èø1/¿°\1e;AÆ\10d\1a\\14®\9eâê\94\80Ī:ÔÔ\93\10k¢þ\17%ê èÿ7\93\9c|]¤×ÿ\94&¤ËV\rÑéñ\8fJÔÉÒÿ-#{»s\83w¡í\9aÂåÜø\7fP3-\1d_'aÿæ7\85\16=ò\a\ eD³vÐu¼ô²®?4/à\1fä/h|$\13\90!«þã?\8eEuþö\9aZNÅýÖ\82x¼Ì¿\11¤p^êº\1a»«\96q-\87,l=9Óä\1f²¨Î¢\9e\8b\9c\97«Ú]]ð£\8a»W\91\84ýa<\89¹´6_@3®.T-ºÐå\9aJ¯\9bÂÚo\96\11Â\16ã\9bet]>@_÷]}N»:ÔÕ?\94-£?\97\ 3Üö[Õ&M\93íHe\9fh\16t\11£ÈW:WÖ/ÎÈúó=e]\ e/\8eËí9\85õ8uqì°\1e\ 2ë¡\11D¹:\96Õ¿ûݨêXT\17¦V\19u!ê`èÿ/\91\95-|íèú\9fó
-"%"ùpZQtowú\93ß;Ò\9e÷¶\9e\19/V2ñ\172\91_0Èè\85M²*\7f-zÿ¦êúgã·Ã²òò\87hdrúa\9c/ö\91èÖûÉOâw2\7fùKýñ5±~¬þÒ\82\94v\19\92x\bcË\10G,jµÀÖqþ¼ZlC.\83¤ú?ÂXª2uYÔ.еùKÅ2\14vÙ-g ÂÊb\8aâ\1f(\1d\1f¶.Ûú\9bê\v\r¶§1»º\©ÃLîôÆýÂK\88ì\96±\1däN;\8aZÐà5ý\ 4\15¯:å\\18ñn÷}UVÿ<\8dpë\ f£z\ 3Ûe4RbÛ\93\8cÇÐú»bq\90ðõ\81ãÈ:Øz\9b²\8e\91u\9c\11£\9b¬\87áÅi¹=YX?=\16ÖãÔűÃz
-¬\7fú³¡¿zru\8a@Æ\ 4$TÕ\83\17çEýoJÔQÒÿsB(;úº¥k¿iã\9f\8a\8aÚ´vËÞn;!ç÷^¥]\8dL\84°ÿÑt\16:\v\99èULæ>K#¾n u²\90¤ki É8i\0^& BÕòëkåW\18Ì\86è7\ 2wQZañ\94àxߨT¶þбµX½Hò¦4u\91\7f¤÷\89\ fkÙÃ:YKUkMÛ5¸*«&V1jÿN\\aW\8e?\94_\9aÈ®\96ª®OÅ\7f¥XVÉ|ÎM\8eªND·\1fÅ}~\96ï:bé¦÷\8bõ\r´«£ªýn$5¬]&#\ 6RÝ<º\97²nFÖr]\10gxqXÇúλÆÉ\8b²°\1eG\17§\10ä{ß\1f\ 6\17'Wÿú7¿\9dâê\90V\aUO¦þ¯£\14U\17u\11RkQÿÏÄ¿ÿ{ú\9fÉ×\r]§õ\9e
-ÄtIg\84Ótw\ei\17e¶K±\92É?§Fp5ÑòoåB&i\1d\93òó4\7f\99¿\85 dù[Õª\1dt=Ô¨So\85Òµ\94Ñ$\9bÔ+\15{@~\1e¾\94ù+ýùµ¿È¿]´"¤m_\a\1aÑMtöäë?Õë£ä!R\13[ÛÉóÅb'rÉ:Õÿ\91GS³©åÐ «ë¦¬³«³©\95¦kÓéʵ\14}\94µ?\92«}ë¯3¼[\14ÖzÝ\94æÚÒ¥¬ËOoÚ.B«k;Ð\18\1f\9f\95·\9dø\ 4-\1aAÔ´YÑá?©:{ºÖ\8aT\14ÙJÚÞ¬\85hk1X²ÿ²nFÖW\87\14$¬c=¬
-¢\vëq:Ì\14\82üðGc#ÈÐ_\1dêê\V\1f\95²Gr\9c\8aêfÛ\874u\16õ¿\97d_\8fåõ ë\7f\99zù\84®£¯\93²ÓÐ\9fn\1a´U¾êî6ζÉHamóÿ\8d°ÿIu\16
-_\8b\85L\16\7f\92F-\95=U×ÓB~c\8d\9aJÔôѰ쥸²Ù÷ò|ÅTV\8bï¯ýV}Ñø¯óÇ\18äf\882Û\ 65\8a2nÏ\9f§L\89»~Ìx¶\96v\10Â6K\9ehU\8b\90>\99ºÝ»Ñ\fÓßWª\96\9e®Ï§óh®*\17uýGæÛ\fîÄNù\89äbIBï£-Õ\ 5KSË\8cØ{ék9È©\17\v{Ã\92\96\rKo;îà¢uuPu0uPt10â\eÛ\9fV6ü\8bZ×¹´\9ed=ØZ¬\91º\a²^\1aY§Ù\8baxqXno\9c¼\98\vëitq\fA¦Àúÿgï=¿õ:\8f+Ïå^Ók\8d§Çk¾MO·§{ÜíqÛmË6©L\ 5\92b\90\98\13À\0\80 \0\89Dä@d\12L\b$%æ(\92\92\15Ú\96d»mË\96DýusÏóTØ»ª\9eó¾\17\0AÐk\9e/¢\bàòâ½çüÎ>»ªvµY\98Æjµ@\9a¬\ 6T\8fª\89Á¥VRw6\7fÈ\87ymêÚŵá\1a"U±{Ú½\ fQÔô-y{wd6û"¯.<@ìÌkè\ ey\16#úxóÌà(,¡S[p\9dÄõc~ÇCAl\93\95ß\vYÝ·úÐ\ 2¶°,\87¿\vRÙE\82x\866\94GÃvJ¢5\f\9eÓ*]Ïëä캵\80j¶ª\1fZn\9bä2\15F\14Ö\84jçôx\9en|"¾\15Ø\9b0ê»L,_¼ÎÞq´6im°\8e¬®º¾#e ®a1$DÀ\86Î\1c2¬\1fõf¤-\91Õ{cï¨õE1³c\97ÑÂ\19-Ãu\97ÖÛÍ6\9c¤µg¤ÎÃú¿~
-°N\96uå\82HyqJ\ 5iÃ\8b*¬{u±\99 ;\9ehÅÅÖ_íºú\8c: \88êZR¿ó.\8aj#µ\0ú#;NlÄuðBú\1cú÷°Ò\a\1dÔPMäïÈfpÞ²ù\e\87vÁë\0íú_#°¹³\90ymÉSOç쩼\8fæ¤åøI\90_Ï\85\9a¼\10Å\1e4.o¦ÒÕ¦MÐ)\15eõÁ\83ªª»¦\86\80Âø]\94Ä\ e¦ûLm´êf õÑ8\89éZ\ er©8a\14æ_\94:@êؾ\11pÍ°N£*\ 4ë\8dúÌ£$N
-M®#bG\93v\84m\ 5v^/1\1fõ}3.f(Ö24Zwi],KÆ-aýÃ\15®c\17_áNÝ\93Y\8d&ÈÆ\10HÃ\ 3Y\1dÕܽ
-\15\91\9aØÃù¬\80ë]É{k>H\84õ·/'X\ f-ktA¤¼ØSALX·\16ëÖ 2\99 ½¸\18Y=ÉjEuçâ\bÔDêï\e©\95Ò?X9H쮯Å\fAq\8d¸\8eÍ\1aßûÞ\90Ô8\84\83§æ5\ 3{|bL`Ì19\r»\7f\9f¥\14\93á1\\86ÜÕ ×(®õ"\84ý\8e\9bàµ]\9aZ+Y}\ 4÷úX\90lù=Db\93ã^TE½?qÜ{¸\80Ö\8aë"fô¾Úª\ ez¸êª\ 3XGT\ 3¯\95Öø~\12ãí#\9ewÌ\9e\ 2ãFì*è;Ç[U¬N\8bÆm-¥ïz_\91ÖÍ´\1eo¶÷w\89Àk\9aÎ\ 1q\rÛ¿¸\8c\90X½¡2¬\9dÕ&«\ fHÿhÕé\ f\8e\1a\0{Idïæ\9eÑ%`}Õ%\83õê-kï\ 5é.H+/Nq{YX7\13¤\19ÖmƼ×\16\95Õ\93\ 3¢¨®ú>@R»Q\1dHý\ 3>Àëïw\'/ä5 $\1dÊô³\87Gø\8eª\81É·\92\1f\92\91ýz<HìWR¬+ñ:$O-^%\96bW'/d\12×{÷b[\88/P§Pv\9b?ÐÞê½{EV\1f\ e+Ø|1Cõ-\ 4`Çúcâ¶ñÚ;\ fÅm\87Á\9eq°\ai)\82)\ fú>\10Õ\19Õ¹Ñ\8eq\1d\84õ\83é\ 4X\9b°öìeÌ\89K3\193'\90[\81\8dÁ±)çÛ¶2à~Ê\9by=å\rx:®a5¥\9aÖº\863îmÁ%ãü$ó\86ï$®\8bý
-¹;§2AìZ\84FÿýÚêïë\8b:H ö\ 1"vÑîç¸Þµ\8b
-%Zaü¬ÀÚ,ëÒ\ 5\91òb\12Ö\13dÏÞý½\11ÄX}¶³z\ 5\90\88ê\ 2Ôï¾÷^)ª\11Ô?Ôã¼V3\84¼\10+4¾f¦1\83zLêÁ´ä;\vx½ð8°_ñÚ'Û!§)Çd°8\f\7f\81ö\1a\b®U\7+d÷.ë\85Ó\ 5Î\14Ên}Rf\81\80¬>v¬£úiÜ?\9f\97\98\99Ä\ e¦H\Î\13\88M¸î´ö1ÌQ\91\912©\8adh\8d\1fRT«U\1dI]µ=3¬\a¬\8e´\ 6a\8d\91\9e\ 6êrn.\84[¤A\ e%¶ð\9ah\9d`= ë»ï\ e¬6Tß\0\9bß\r×FkòAâÎds\8e¼¥\1cx\1dÅ5ô\çZ\82:TÄê\91 ²£\9a\9f=\ 4cY#OíÉÒ\14)\91\1dÒ\ eÀ\aAX?0\82õ\95\97\14ÖË[ÖÑ\ 5ùÒ\97{yÑ\85õý*¬·ïh&H/.>õô©ÎêfW7Ym¨.°\88S/äT;©\7f\18\8fò:\8aëNë7=â)7k\10©ýá\91Ç%«ñö¥pý\ 6\1f 6ò\1a«\8dg-\9fOcLÊì)ü\15\ 3¶ãzòB\9a¸f+Äã¢)\93}+Äëu\vä\0¬Ë\14Tã\ 2úþmÐþ²\ 4lî\16 Ðæ\9eCè\12?¨´Þ\rn;\1a!\99Ö°\91\10³û\1f\18£:\93\9aZ\99\1dÖÀê\98¶\ 4jóÑ\94\94¿Õ3-<\7f\bf1\86\1ddqfÚyÍÑV6#d.H3AZq\11Xm¨¾\9eOǵÓZ}\90 Ö÷\b¬QX³Ë\1fÇ)\1f|ðÁd\85\94¥\84\92ÕÔ Â&H`uG5\80:\15C¨
-Bé:eÐA\91uð\19\83ueY\97.\bôíYÛ[A&aÝ:AÔ°~úÔ3ÂêVY첺æâ{\91Ô\ 5ª;\9eÿÊ\8fñ\9aÄuª3\1a\1eù@\97\1e}Gi¬\9dFÛ\1d×Øз\10Ô¹ñ¯\94×¾¨ÝcLRôT^Dó,\8cAö\8cì&®»\15"´Vq\1dâÙ·n\85r\ e°ú°F\90\9f\8c\8b\8dûwB\8f\8c¤°©\97¥h6\84F?Ã5î_`ÛZÛĵ%ħ÷<\13@í¤Î¨Î\93+æá\e\81Õ\91Ô\84ëNëGµO}3¼§PþÐNBô\82Î\ 4\98\99v^ã\12\13sïŲ\9e\84µ\98 ÀjAµJêëü\b®\9dÖæ\83\b¬Õ²\ e¬.ºfú§¤â\9aB\0iád¬ûÞÏ.\vÇÒ¸ Òj\8bû`\84ÖP\98Î}G\ 5°-õ`4J\13\86±°ÑZ`=mÌUX_}yÀº¶¬½q\ f\\90¯E\17D\85õT]ì&H+.6¿Zíê\15>¾þzWÕ\15\17߯Hm¨N¤\ 6^+®\ 3Ý
-y=uؽ6\10ÕIâû`»áº\12×\bl¦ó\9bxàw2¯_&^\9fÅ\14\93\99cÈ\86)H\11×\93sÝ\9aø̸\16qíU+íVØno\9d`W\1fÑu\11Oáfã¼\8f2,.óF\96§\bØÌlçµMô0GF\bÒZã^\8bM+ëÖ\15\r Þb\87 æ©\93\8d4ÔýP\85jè;v\1f\84Âò·Y¨\ 5\ 6\10U¹\16u\8f\ 25ÿÆ\90o\86õä\824a=\99 \81Õ&ª\e£¿Õ\8eñZiÒZLk\81uZ\89\18+²åðûL%\81*¿\14¢ÎÂÚL\107¬\99ÕG\ 6c´Øà?´DFc4*\a°^{¹ÀzU\96u\9f\88)\\90 ¬\ f=Ù\fëSÏ<Ûj\8bÊj\91ÕÈÅ\10øa\ 3\8a%ª\85Ï?²c¸&+¤¤unÙx}\80ê\0jä5â:ú:o\16Ç\80ýÚkÔ
-ÎÓèã¥ai\81\98/k¸\16q\1dh½\e"\92¬7Lº\15¤£u7±\9av\eû\12ú\17Æ\8f\vì;\f\8d\87\ 5²3®\81Öh[o£|\13ï\84ØàëRòÂ\95õ\11Õ ªiÆð1 5\8dt\13«ór\80\añKÛXQ\99\15\87±\16\90kQ¼\95ס±\1c1ÔÍû\ 6ëɲ\9e\\90.¬»am¬VT;¨õt\\ 3»´Ö
-cXsÿ\10ÛG)¬ÄÅõú\I(\9btòÂ\v\16Öf\82ìIÑ4\82j\1eä\rÆÚÑÌk
-7(fh\Z·\9avo´þ,ÀzÖ²Ö\89\98T^\8cÂúè±nX÷>\90^Zì²Z¸8Jü é\97\ 2Õ?
-\87p]kkÅõë\81Ô\15ª«Ùv\89!1\\ f\9c\90YT\87FmëüKv\b%\99\8c\97?Æ-4\1a2²BÊI\7ZOÆ5\96\19»¸Þá\8daV\ 33\83°uW\1f2V\9f\f\e3u\r}½³,v\1dÆFñ\blÄuAë²\7f/Ð\9aV\eR\9cgä)Î\84Ì\8er \e\ 2
-ק\13â
-Ãj\93Q\0\11\11ú\0\1fæ6\19©!µ"ÂZ\84õd\82DV7R7>_\v§ã\1ah-Òz2\e¬×*¬q×xpú7Æ\a[¶BF+\81\ 3«\87ÂZ\rë\ 3\90x \91\a\98yP9kÌë\18\ 6\19q½\17b\ e,ªråc\ e°¾õS\80õ¢f\90yËzÊ\ 5 .È\8c°~îù\17¤gOXÝeuÀbä´\8e¿\90WM¤þq;\8cksBBõÐ:»ÊJÓÀêDjÆõ*¤u&5\11;ò\1a\87\e=\ 2{Ñ\81\88ì\17º\192\89ëÉ
- ´Þc\ 5ï\18Éî\rÀêcÂj\91Õ¾\86þLõ¬ \1d\93Ð$þô\10Ø\84룰váàÁ\19#d\13\8c\84h27ïRX\17a\8a¨\8e±\1d\88k\83uÉêð\1f`/¼\bÌ/R-êaé\80\10\ 2H\b\8dµ¨å\8d=ÖJ]\10\11Ö\93 "¬n\16\88¢º\11ú\1a=\86k£µHk5\19Ö&¬sQ6àúÁPI¸¯àõ}Äê%\84õ>N§\81x\9a\13éÔ¥\10\12Ø\87f>l*i\ fa}ý§\ 4ë¹úâ\8ceÝrA¢\vÂÂúÉÃ\13¤\99 Àêf\81\0ª \8b\9eö\81\83\8a$«\89ÔÀk u0B\88ÖoDR\8fP\1d¿¡\ f\b×YZ/\80µ3úm\18\864^gyý]\8aÀ^pÎ\9d\8b\91PNëc¡)d·» \18ȾÓj9eïIcµY \8ejÚ!ìÀö\8eÃ4Óóô\bØv\879\17Ik¤õC\vd¯\87¿"ªS¼\92Ñz\93\8c\aBRÒàq\10*\97\11ÖÛòæÊ}aVz&\87P \92R\b½Òºi\13Àº\97\17Å\ 4\ 1VwYÝHÝ!}u;Êë\8ek¥õ$\9b\ fB°vGÙº\13ÍC
-¸\ eV\bâÚ\88í\ 5`b5ÍÃda\r¡\8f Õ9uÁ®'Ö×ÄkZm´ß?ê´\96@ëË\12Ö0¿8´¬[ã^í\82H\8fµ
-k5A\90Õ*«\89\8a\88Å\ f\91Ô\95¬þq<\8ak0B¨Ýúí!Qa&\aY]&FA¾_\96Ö˱z0
-9Ãë\97\87\vê\1d4\82k±B&ã:ÐZ¬\10k2ð¾²]~gDVë&úÓ}¿ÏY\ f\96ee\8fû%G¸N¼&Z\1f\89¹\815-çÕ\94ï\86\0êXý£ùÂ"\b\ f¤ubÏ\8cÓâ\8e84 c\ 4QH \82\ 1¼j\ 2\ f_Ö\ fT)\84>[§\89p\1dÖ&¬§â"°ÚQ}5\1fŵÒz2B\9a´n>HË\ 6QX\vLÅè):h6\86ÇÛ\86\rÃ6\1dlª¬\96É\r\84µ\98 \87!Kì¸\93:¼¯%^s\83H±Óhÿ~\ f\10ÛeI:\9f\1dX÷ú¢dYgËúó\ 1Öì\82¸°V\13\84Yí¨®õt\85ê\1ffTÿdå\0®ç¤õ\80Ö
-Ò1ª1+JZ¸YZ\87/\9cZA\90Õ\83Ñõ¸ï\17\87Ñg\16\86ñ\ e\1aÂõ
--Ç´V\ÛäÅÎ\9d\10¿0dµî7>{\ e\16¾ÓvÉ\ 5¸.xM7×1Ü?ypÜ\11âK\14LüÆf\rh\82.P\1d¢ð\88Ö\9bèk?8WÃDZ?\1c¤!ô¬W£Ò<\7fw$¥Éêäý\81\b\117S-¾s\9dÀº³úv`µÊêNêoâQ\\ 3'#D|\10\85õ\ 3
-k7å¡2ËEY|Àq¶\13\ 1\e{u\98Õ³Â\1a#z5÷\11AýT}I\1dOvH6°E\ï\8b\19\a\97+¬\87Í Á²þ/lY³\vâåÅ(¬'\13ÄY²ºb"\83\1ag`\92¬þ\89\1e×Ö\v¤u¢õ\9b3²:}WU\14k\82uÑb\r°VBÓä:\7fk\89×ãÍ3a\a\8d\ad+\9f\952#ÐZ\8dkm2ð9ºÝ»]Ä «§Ò¢Z \82jJ\97\ 5_=,oG/d\88kÓBµ\11RIk§µÒaf\14\9cò_-µ#f\96zHRδs\95Hí\81\ 5mVzKîf\b£Ò8}7\98é\80Ñû4\1f\ 4\9b·UX+¬\99Õ\86ê Ðß°c¸vZ7#¤\97\18µw\ f\945VP©4«¸\9e±BRWe\ e\0H\83æYX3«EU÷k(Æ\899¯ky]M¥ç°GïÝ»Üa\9d\9aA,\18D,ë/ ¬Í\ 5\ 1a}È\84µ\98 R[\9cXí¨\1eÈé\84ê$«\7f\82g5ÒÚqý&ÈêÎê\19T{P\14çf\13«ë\81\18\835£º\1c]\7f\83¦w\16¯\9fq\9c¿l\ 1#M\OVH£u×ÖG\ 3÷\84\15\1a»-Õì\0\8e-v]ÝYí\e\8e_ÄtY\ 3vXÝ\1eÅõ,®YZ+\viM´æ\957\fj\9b\8d\ 6Tש¥\86k\87õ£\8f¦ÞÀ!r\94Öø"_u3À\ 2Ëü\16-\84¥à0g1\1f¤ïç\11ÖÎê[\94ÕMVO¨VP\7f]\8eðºãÚh-®µ\99Ö\ 2k\88XB\1f©Æu°BÖû\v =å2«\97\11Ö1¥\97@\1d.¬\ 5¼\ e¸&Z\7f&a\8dÍ º*whY\9b\vÒ\85õþ\83*¬[uÑL\10fu\99xʤ\86~=`õOÂ\19Kë÷\92´¦óÖ\98Õø}\11¬U°'X\ fÆ\17\19Ö1\18
-yÍò\1aòù\96XBó]È\83ZHë½0sa³\1as¬~Av±\9d³=\95#\17f!#®\97\93Ö`\84(Ý®H\81ÓLjC5§\96Rp4ä\8früèp¤=õ\9euà0¬¡\9bAG¥C\9fðxãÏa\9a½\87\15m¼y;Á\1aX}°ZAýµv\14Ø\13®\8dÖ*Í\aéãæ\11ÖÁóÇ.\9a\8dð\943q=4\902«\97\11Ö\81Õ\1dÓ9ý1ª\80¡¼\ eõ\ 1ðA\18Öë/GX\ f\9aA¼¾XXÖ©\17¤¹ ¬Ý\ 4QV+ªKNc\9cÞ\ f+VGT;QZ\93\ f2 5±Úa\1dPm¸6i\1d\16\88\rX\1diM°¦d¨Äkk\b/÷Ï\f÷\19\80¸\9e¬\10¡uïà;B´Þ\v\83ÍÒ\ 2,H\ 1V\9f\ 4V«¬\16R\ f<\98\82Ö\9e\e8ÐÖ#i\8d®5\18!\1cf\14\17\94=¬\19\9eó©¥:
-ä¸\1eÁ\9aF<R\9d\8c§:D\1dÆPð4ÒQ¶ c lhbä(.\80õ"V+ª\8dÓv\1a®\9dÖ×_ߥõ-·¨\ fB°¶òé&4ý\97«ÌJ\17M(Í\12«ÓÞÅBX\9b "¬fTg50\8bë<\8e®Òz Xß4\86õ\7f¾Ä°®\9aA°¾X[ÖÒ\v\ 2åÅ#GEX÷ê"°ºËjÌÑË\99§\94×4dõO\7f\9a¥5À:û oeVûÈ{b5=B*X¿\1d;¸s:j\845¡º\8c\86"öS\ 6v\8a4á\ 5\90\88k£u«2ú,ã\93f.Ðö\8c½Z\ 1³E\ 3Æêg\80Õ¸ýý»à§\a\[Ã÷E\97Ö\99Ö\8aë°P2/\ 3\18®\ 2¨`]°:õ\vw\ã¼ô\84\9c\ 6ëÇ·p*8\8ftÄ.á<#\94>\ 6iãq\8a¬`$\vkaõ
-¬\9dÕ\1dÕ\13\9e¯Âc¸6Z\83´VXß\8b°¦iz}îåÒìÆ¥\9a\1e¥\r>÷¨?^½\95\1c\80rÇ\8aTõ\9cÔK¼.{ùh¸1Hëö\ 6Ók\ 3\16hýiÂzUÍ 0¿øGÿ\r\82A:¬¥qO{A¼¼8õXwaÝL\90×{\1f\88±\9aº¨Ç¤\1e{ ?m§\90ÖÉ´v\1fä\8aÕ(¬Ý\ 3 z_¥uÜ\1d\ 6³\91Õ${\18ºy;£\9a£¡¸\10úz\1c¹\1c\1cKï#Z¿\0´>î´>¨¥oåµ·\0#«O\18«\9fo¬>gûèmeÃÜ\ 6à\v\92ÖÓ\8dt(KkLxåíd\8fÐ ;¶(_ÚI½\1dp½Å2¾7Y\ fw\15\99\93Ó>\87ç\11\9f\13Ñ&ä\0¬5g\ 5L×#Ðyv\12;Ï\0Ùí\83P\wZ\9b´Þ!½{î\82da¬n²º¡z\85Ï_\85Óy\r´vim°îí ëÖû[\83OÓÇV\1aÃuAké©\fãDÅ<\115Ò<Q~x\81Õ@j\8fé-¢Õçq\9dv^ ÝôY\82u\9a_üã?\91`\90¢qO]\90½Ý\ 59ùÔÔ
-Òª\8bf\82¨\a2á\90I\9dRO\11Õ\ 5«\7fúÓ\1aÖóʺ\84u-¬£;£¬\ eÂzÌê\14<2\9b¼:\8cò+Ü\95p\14Ø\8ek¢õ©SÖ\12â´Þo\11\140\ 1¬n\8d §N\95¬\86(p¬o¾\ 4\v\14f¥õ"X\17ÒÚ;×"y\99¤\9c\8d.ª\1dÕ\98\83B\9bX@Z\87\9c(`u\8e$ÂM'"\9biÝÖÃ\8b8¤\8dÃZ ó=\96ZdMåVÁµÒÚc\13YòõÒW\87uÉê.«;©¿bGx½\82ëNëk¯íÒ:\99Ö\ 6kõ)ð\1d\85xM}\8fØ¥³`R\9fcU\1e\1f\96\17]X\8b_\r¨\1e\ 4«+®+3äh¢õ\ 1\12\ 6%¬×\\16°®:÷R3È4¿XÖ\17±qÏ]\90©¼\bÂZX½"¬UVS\ fõ<ªÿêGÙ\ 4ù)Óº\82uáY¿u¾Â:À\1a\85u¬\bÖÙ«³á«#y½ \1f
-X®¸6qÝiÝú±ÝÚÍ`Êa\97\1e`eµ7í=÷\1c°\1aWÀS}ó»¼\9dl$\ 3¬cgìqR\94IZ{b ÓÚ\92\97\8cØ\120ä¢\1aP]¬?ÄT\7f\ e\1e\11am¬\ eY\9f\1d×NkEZ\80µN\84\1eä÷øÁ"K\85Kû0\9cÖ&\8d"\98´|ÿ}.¬\85Õ×+«\rÕ\13£¿,Gx\8d´®¤õ\0Ö¡H\9bpMâÚF\9660¨\ 3«GÂ:>é\8eÁ¾"eµ-âðU\1c1¦wä]{\97$Jkª\rl6X¯|Êwßu9Â:vîa3\bÖ\17ɲ\96\89\98^^\9c\\10é±\16a-\86õ
-\10EV/$µ%¡þh,¬\ 5Öì\82än\90ʳfX×Âú\a¶å1» ÈêÚX\16\GZWAÙUR¶}·\15¤éß+¯\ 5×Bë©'¤O\9eCL\88Òú\80\a\ 6í·\1e`dµ\15\17§>\90sçDVÃÂJ+oV»ÉÎ0¬\17 ëÊ\a©¤u µâ\1avÿbü)ù\1fNê´4\v6f)¬IXã\ 6õ\10¡\7f\9få\88vi-\15ÆZ_ì \86\a\ e\16\9e«¾ÈÇ^\86§ún¶¼\9cÍÜÔ¸\1dð\81JX;«'T+¨¿Ô\8eðzÂ5Ñz1¬}±\ 2öÓäÖG\14×\8eë8´\14Y½¼°\96\8fÎP\8d[92®ù\85¥HP\1fôH~\96`\r\9d{Ü\f\12ë\8b`Yc/H+/\8a°6\13ÄY=\13N\1dÎ\8f
-V\ f\85õyXÖÜ
-BÂÚ\17<\ e\84õ\9boÂ\8aÇܲA´\1eÀú}æuh¾.Ú\rÓ1^\83¸nNH.2\1a\15×\16þvÐ\8a8Ǹ¸\18Y\1dÚQ¬´\99¤õ\0Ö\91Õå\14c\94Ö{÷ì.hý¸7"бÁ\r\16ÕŶZÛÀ\92Bý5ÕßX\1d× ÊÒ×û îH}\10\81u«/z,\16l²ôU\96¹:æ¸6Z÷\18®½{Õ\aÙJm
--bh\12ÖcV+§õt^;IZ\97°î\8d.\9b} NÿPËÞG\bWñÕ\r\ f2¨=
-àQpÃYX'\v\89\85u\85j^Z\14p=\10×$÷ÚJ¥Ï\16¬sïßwX[3\bÖ\17¡ËºYÖæ\82\9c\98\\10\17ÖÂê÷\80ÕË\80:\ 57\8da\9d\9aA\16\bëjv±\10Ö\11Öa¿cXÇ\9bV\861\1dÖ!Á{ÀkO|\1a\1e\06Ðzò§~kµ\9fÖ"ãQà \ 5±\1fdV»a=5\82ô>\90ÎjZ\85f¸.×þZ¾ö|¢\13 k2!|oï\9e\82Ö\80ëx`þ%\93\9a¶Òº´\ e\eXt·¡±\1a÷t\v®\9dÖMZ·\12#Àº\95ÈPX³2<\ 5µ1äËÓOûâ㣺ìgÿþ}\ 6k\9e\83¾\ f[A\94Õ×\b«\rÕ_\84Óym´þæ7³´FX?\14aÍ\1d5´z\9dÅ5ã:\f\98fV\87Í\8bÁ\ 5!aÝ>=Gõ`ÉÝ\8c\17\92iÍ3XÖ»×ݦË\10ÖÜf-\9d{¹\19$Ô\17ËZ\1a÷À\ 5\99Ê\8b*¬Õ°î¬\ eÅCÍÍ[Àê\ 4ëZX\7f´\84°N°F\17\ 4\1a
-\aÂ\9aXýjÞ\9c®¸VZ¿\992HÂr\83\ 1®\97&¶Zç+ß\8aÒ:ÙÖ@kĵNAK#ë 3¬µ¸\88¬ö¾Ax\9f\88Ò:À:±ú©\82Õ\ 1ÖQZ'Z;® Ø\1e}\1aDuÞ-.´öå\86¸\90w\83î6tVß\8d\aiý\80+P\82uß;l+â#lÐo\85÷wÛ£\19wý0¬%»sª|Ý\93\85µ±zBõDè/Ø\11^\ 3+\1f$ÀZ]exþÕ¸¦:£áÚ\91Í\83K\91Õ\94©\92\\90,¬\19ÕÅ\8a¹Yq\1d¤µ¾Ä\9d7¬?\99¡\98EmÖй§\9b\a$Ì:6\83´\91\18\9f5O.\b ëÉ\ 4Y!a\97Õ\ 4j8\99Ô\99ÕBkh³^½°\9e\83µÓú£(¬ßCX#«Ó\14xÇ5Ñ\9aa]î¡A÷Ú\81=s\18×Fk°a6Fiý$Ä°[`\85Þ\10bX[q\11XM¨ö®Aëñ~ a-\8bÆâ"\82"ØÚ\86BÊ%\ 4%\1d×´§\1dÓ?jRãúð¼ÛP`\8dKÃ\85Õ\13¡ï²Ópí´n5Æ\fë¾ÌÒ\179\1c\8f/ñÅ\e¼¨ë¸G3ÂÚ7¹6\17¤ ë!«'F\7f^\8eðÚhýõ@k3#¬AXûÒ\8a²Y\9dZà\8b SØ \8f\9b+g\85µ¸ ,¬\ 1Õ¸§4â\9aÅõ\88Ö\18Ê\ea½îò\87uÙ¹\87Í ¾Ø\82Aܲ&\17¤\r/NÂZM\90Æê\80jÛ 0:?ΰ^ÁõO\80ÕË\bëdö\1aG6Hj\ 5 &\88[\ f\10\92'Gp-´&#d¸5¬âu\85ìø\vÊkù~V¾\9bh[\9fRÛºÓú°\aûjZ§\ f\88\95\86µ±Ú\a~l¥%Kk\845\vëÒ\0\89ã \0ëBZ\e·\93 ãcÝ
-\89Ô;á8 Öi\ f³ú.:@ëû\85j\19ÖbY\9b°vV\17²P\19câú\84-\8fH°Öúâý²ÉuÚ»= ëÈjAõDé+Û\11^+¯º*Kk53¬\81Õ¹ÿqk\14×Ã\ 1S\8a\ 3@VGaÍ.\b\vëþ\ 1:©ãúèyq\1dh=\86õÆË\ 6ÖK¶YsçÞ ¾Øº¬Í²V\17¤\ f/\8a°\9e\fkc5cXg\10\97fõO\ 6¬.\85uè]~#Kë²ÀÈã\8bÉ\ 4aV§0¼Lë·z\947n£±@ï
-×Îë¹£¼fZ»mý¼ÛÖ'¼!\fqmcÐÆj3A&Ã\1aX\r¨\86\89x\1e\9f$X³¼ - \80ê¼ÞËn¡!\r×éDû\ 3Hm[Ã5Ò»\80õC°ÚÐX½Âç;ý û\6Ð\1aa-[âa\9båÓA\15fÈ<ÃK\8fµÄ\18`ý\90\16¾&\17$ kcuGõ\95p\ 4×Bk2BÄ\a\91
-£>\83´Í\ 5W\ 1×\r\90(®qÀô\91\ 4ê\90±eëuv\84Õ\8bؤd\1fà)XÞ\9c×7G\\8fhMW\1a-'úÌÃ\1a:÷\0ÖZ_ô.k\9b\88Q\17¤;ÖbX\7fôÑ\ f\fÕ?.Î\1c«kX/9j\ e¨6\¿Eô\1cÏÄD\13$²Ú\82\94à\18®\99Ö Öß÷Sòº@v\1aU\7fÇp´.\8d\90n[;ýèlÝqÛ¸È&\b°ZÇè\r×Õôd\14Ö8\ 1\ï:÷,££hZ\9b´\8e´Þá\88``{ò\a\92\1aAM¸Vi½Å÷¯\88\v"ÂÚYÝ }Çt\ 4×NkqMZ\13¬5rö8®³,×Ä[°¬Òú\84ï<nÒÚ`\8d9Ëkº\v2 ë\92Õ\9dÔWØQ\\eIZwÓZÚA\12¬EXScM\85kʹ\ e\ 3¦>fZ°\1aSÀ\93\vR\vkùðlq3ìnf0Okí\13½Ü`ý; Ö³31ãÎ=/Z0\88[ÖÓD\8c\96\17MXO&\88²\9añ;\ 6ö\8fça\7f¢6A\90Õ¹QùÍ¥|\90\ f«ê"³\1a\ 2\8d<?4ÑÚ¤õ\0ÖÎë÷"¯ç\8eâÚi¶u7B^p#\ 4ií¼¶t¡ã^\4\13¤\eÖÄêÔÝMÓ8\85°\86éß\92Ô!Ä\88}\10L31Z\ 3®5\8dÉζ\92Ô\1e\ 6«i\83ÅÒð\ 6ë\87m\ 1KßC묾\ 3\ eÐú^swÍ\a °\86\11~X\13\1föÄ+f\8cÖ°:\ 2a½Õ`m\96u//6a\9dY-¤þK9\8ak¡5Hk4¥\1dDþV\8f<
-.\bxK\ 1×Y\Ã\80i\88\ 3 \94-©[Òz\1dXç\15\\10\12ÖNjø\14I\'ã:\8dË\16°¦Bîå\fëb&¦êÜëÍ Óü¢Ö\17[\97µ¸ Ï\98\vbÂZL\90\ 2Õ\19ØÕ\99Aui\82¸aýfb5æ+U>È\87\88êl\82 ã }kqý\96â:Ð\9a\94|±\947ðºDvü\15ǵÒZmk1B\9eS#Äi\rËI<²â\84¯\86é]{\93a\r¬\ 6Tcsw\82uÅêTQ\8c¨\8eó
-)\81ßií¸ö\1dí~¶\ fH½Û\8fÓz\0k\10ÖÊê Ñ·÷C´^»6Ãzk\84uØgùÜs\80ê¸!^híÒÚMk\8150¤[Ö·Ýz\v9Ö+°vV\ 3©\1d×\9dÖ_þ2Kkï´^\0kë\82,:Ö\13®ç\13\ 1\90Õ¶·\12öäR/\b ëçÓ\ 3\8fqÍVH\98\10\8bÙ\94\98u\19ÂzÑ\0#¶YÇÎ=\9d_´ú¢[ÖÏ¿`.\88 ëÉ\ 41VK\9d\10º:æy½\90ÕU'È`Y.ÐÚ¥u\11\90ê{\a\82a\r¬Æ #;\86kç\9cÕ\18ó^Þ\ 5¸\9e=\86k§µÚÖh\84<ôöy[ Â\aV\93 Ò\rkc5?ðhpRRIÎ\91°FVÏ\81Zó\9cS\0?äWîÕ%7°Br{uvdRC\1a¬ãZ¥µÃºï\f\7fÐv\86÷Ý\86ÊêÛá 5M´ÑZ*\8c ÖöÖÒ\17Z>/\909ãçôikx|\16¶²5\1f¤\805XÖÝ\ 5!a\8d¬^\ 1ô_øi¸n´þâ\17¿\14`}£W\18{ïÞz\1föÑ´émð(¤\1eÈ\81uÍó¥4hªc¦Èj\17Ö\14¸w\8c{iê\97\93ð\8e\82}þÑ )¥õ\0Ö\ f\1a¬o¿,aí\ 3\8cÜfÍ\9d{Ú\fBõEkÜ;{®¹ Sß\1e\9a \9dÕ
-ê\90È4æõ\0Õ\ 5«\ 3X!léuµѺ\94ÖqE\8cv\82dV;ªuã÷\8b/z\9c(Ó:ýçäØB^r¯\97\ 4¶àZi-FÈw\83\11ÒïþNkŵm\96bV\93 \92X=\9c\9b|Ù,ëÈj\flJ\98vT\17°¶áx¤µ®\90ıqà4\14\14\1dÔ\10 »GqmÒ:Àz\83í\foº³zBômý\10£´\96v\90\fk-ÝöíÃ\86ê³´\1fÞ?ºS\9e\978IëÞ\ e¢°nÍ jY·^\90©¼Ø\85ugõ\97\81Õ+\88þs=\r×Jë/!\9biÝ*\8c\1d¤ÿ`2ó10\96¹c\1dq\1dgd` :'\ 2x$\0³\1aË\8bÕD\8cô=FVûû âºð9,\8b¤µÂZMk\1d>ºÜa\ 3\8c±Í\1a:÷Z2È\9dw¯ÑùÅ©¾è\96õÔ¸'.\88 ën\82\14¨^Ìë\9aÔ\99Õ\1f\16¬~#³\1ah]Hë´}\11M\10\ 5âkðöÿ\12\90ÚxýÒK/\8dhm>\88£ú\83\ 1¯\91Ù£^?ǵÑÚ:Bκ\11b´>n[¤lµ\94¿dÚ¾\ 10A\80Õ4æ\1e\86Ü\93\vâ¬æ\1e½\12Ô1Á\92Ó\86qi\82ãÚÞÃíà\12`%5\ 6w;®+X?Jkhï\15\13DX}\9b\1f§õ=8ì×|\10éÝsXkB¸~ºÊj@5í\87\7fÞÖÓËâ\88æ\83\ 4X·úâ}=¹óöæ\82LåE\10ÖÂê&«ÿ\1c\ fÑ\9a¤µU\18#¬7\1a¬EX\97=ë#\§@\0È\ 4x\1cX\8d\váÑ\ 59\¸ Ïáë ¾ \8ch\8d³ü³ùé\9f%Xó\0cn³¾B`\8dÍ :¿(õÅ\16eýÂ\94\vb.\b\9a \8d¼\rÏÿCÎb^\ fÜí\1f1«?ʬvY]\84\97\96Ò\9a70~°\80Õ¼&E\8fá\9ah\1d`ý^\865òºhÃ.\8fáú\1d·h¬#\ 4\9a»mm±\13Ç\18ÕØWæ£\8bf\82HC\8b£\9a\87&\11Öº_\1dYM\93/\15¥ã\1aB\80\ ehm\v\7f\9f(ÎÎ\82Ô{ñ(®wAJ¶Âú\11Íô·=´\93°6Vß:\1dÁu£5Ik1\19Ö\87¬\17Ä,&cµ],ç\14×JkØw\9c`ýX\87u«/Jã^wA@XOýÕ\9dÕMV\7fÎ\ fÐ\1a¥uóA¦
-£µ\83ô¿\94ÃÚ\\90ܵ>\87k\9b/%N\87ø\16g5,\19>\10,ëä\82¼\90½$Âu¤u¶Á\aùlÁÚ¦Í}\801ÌÄÄ6k ³Öf\906¿È\965º b\82\18«ÿ\a\9d\88k\ 2v\8dj\95Õ\8bX\1dQ\9d\ 3\96\92´î¸v|rq\91YMëbÏÀ-H´\8eÒ\1a`ý\ 1\9f\81¼æ\93Ü\92w¡\ 1\1c\8d\10h¶FZ#)\8f÷ØΧÜR-M\10hP§@\12ÿ(È\ 5aV;ª#¢\99Ô¸yÉ·ä)\19׸¡\1dO\94Ô\9eÛ)Þ\9dÖ&\11Ö\ fÛ\ 2\96ûîu\13¤³úV;Jë(¡ÑZ`Í.H\17Öm§e¿NàeììYj¤\91\0.¯0fXw\84ÜÙ&bº\v\82ÂZYýç\9dÕ\7f¶r\98ÖAZk\85±\82õ¦M¾ ±ÃZ?käu\85ë\14\bÀ©\0[¼\eÐX\9d\\10¶¬É\ 5ɬ\ e´.lk\96Ö´¢\99·<\\XwV_4X\ f\a\18ë6kéÜ\93f\10\98_|J-ksA\XOäuTÿõ_ÿõ\1c¯\8bóã$«gYme0\f1\r´\8eFÈ÷\13;c#\b³Ú\96\ fÂ9{ölEëè\83T°&^3³g«\91\81Ö±Æ\18i}ÜQí\1d¬ÂêÊ\ 4\81æô4àN°n¸\11ÛÕþ\83ô\9f\fxÆ£>:nÉ\v´Þ\v®s 66衤Æðî}{íkèJ\ 3\82õC¶-ëÞ.¬» B¬VZ«´v\1f$Â\1a,kó\98\ 4Ö\86jóÐ\90Ö\10\12\90a\1d\11Ò,kuAÜ\ 4\11V\v©å Ù\aÑ
-£öîEX\8b\v⬦¦õ\8ckÍ\ 3\88\81\0\94ß\12X\rÂÚwĸe]º \11ÖÞ[3¶\83´VXï'X?¾
-Xÿ\97Ë\ 3Ö8\13\83mÖÒ¹\aÍ m~Ñ»¬»eýÖÛï\80°\16V\v¨í,\8bë\1fgVÿp\9eÕåf\80\14\87\17\8b~\8cM\9a\86\89¬Æ=±z:®Ï\9d\83\\8dd\84¼W?\eJ\Ï\9eLëé[\fÒZ\8c\10\87'Ø\11'\90Õ\90µ'&\b²\9aÒ£äAøªv
-\92\v\ 2cÓ®cF\88\8e¨ö\95¦\89Öû\\19\ 3°íì\1e\81º§Á:®AZoßN°Öúbo\ 5\11\13¤³ú\169Bk\91ÖdZÛTL\ 1km´AV[\ 3\11Óú¹çÐ\a©`í˦̲¾v\ 5" ¬¯¸BXÝ ý§+\87i\8dÒÚ:¥\1d$Âz3Ã:Î\18í\1aãZó\0b|\8b'c\aVG\17\ 4»¬£\v\82¬FÁ4c\84\14Ò\9a*\8cÿ:`Ýfb¸ÍÚ;÷´\19Äê\8bS\97õdY\8b\vÒ\85õ\8f~d¬þëx\96ÁõHV/b5§M»¸Æ)ðªèg0tú³úU×\92ç 4\ 4ÓT.®_6/¡!o9X/Æu´·Ý I5Æ3g\94\9fdKØ9I¬æÑEpp\90Õ"KXgVãÄ\vS¹7£Ä\7f%]à\99Ö\84kØÐ\ egO\ 2õ~:\8akß?\93`-õÅî\824\13\84Y-´\16im>\88÷î\19¬÷3¬YX#ª_|\91âe\9f\7f\9e}\10\9d7/a\r\96usAPX\v«ÿÔ\8eÓ\9a¥5V\18¥Ñ:ÁZÃ;\9e\b½ëÎkƵ\a\ 2Ô\ 1.\90à\92YÍ\9brS}1
-k¨Ò\ 6Z?7¦5ø \ eë=\97%¬\97\9e6\87\ 1Æ¿¼²Á\9aÚ¬{ç\1e\f\9b·\91\18µ¬Õ\ 5Qa\r²úoä,\8bë\19Vc\1fÈâ´i\13×Lë²ùù}oÚFC\98X\8d³®\8ak\11×@ë$ga=Æuñ{à\81"ßeQctZ\13®OÊ\ 6Rgu4AüsjcD _\ fO.Ýýø\`5λ,q\ e\ 3¬\81Ö\84kZÐN§\0µÆÁî÷¯à>ÈvÙB\v°nã\8bâ\82taM¬VZOÒ\1a|\10ïÝ\9b\87u`µõè;Ý\a\89°Þ\ 6°îõÅÖem\96u\14Ö\81ÕNë&Á\aÑ
-£ôîEX?Æ°\1e\8d\19U¸®\ 3\<\17\eY\8d°>X'î\ 5X\13«\1d×\95\112ï\83\\14Xÿ_\97\1cÖs\ 3\8c¹ÍºwîMÉ \19D,ë3Ë\9a\\90&¬MVÿ\r\9depͨ^ÈjkVðõS9kÚ2;\90Ö\80ë÷ßÇ\ 1\9b\8aÕ&ª!@M/#§u·\17Ik+j\ eq=B:}\9b`\84xû\1eÐúi\1aûÖ8üg¬úe&\b\19ÖoIò\95§\18\16°N"Þ\15ÌQ\ 21ÎOÖ¨\8e´&\ÃÂß\0é\11§\ 3®÷ÚÖô\1d;*X\8beÝ]\10cõÍí(ÛrYôA\10ÖO ¬¾\b.\88°Z&^\85ÖÁ\a±
-c\ 1ëu\ 6k°¬Ñ\ 5麳ú¿Ë1ZOÒúJ¥u3¡\1d¤\82uÛÚ¾\8d°Úßd\90×\ 1×\14\b\90\12\,\19`GÉjtA*X£°>\8bgõÒ\1aÚAV\aë+>\15X/\88\ 6©`ímÖйçõÅ\17_\12˺» ½ºø\93\ 6kGõÏ~ö³\ 2ש\93¯`õ_Õ¬\8e¡xuÚô+)\ fÏmkÀut\833«q\85\95î©À§>ÑzÒ¨³Ò\1aº\ 5Ws\9cÖïÂ\v\0Kë3±êg¼îû\0O!«K\13ÄQ]¥ü}××ôZW·Ä|Æ\99É\99\93~\ fÓÚpmû~÷\86ã+\80\81Ó\9eÜ}Àyï>H\83õÖ\fëµ}\13msA\88ÕJëIZßÉ;°´Ñ\9aa\rõE\14Ö\80jŵKë1¬§h\90>\13\83°vË: k`µÑz\92Öà\83`;È\bÖ\907½3\8d\1a\95ò\1aò\0b\82ËVÈ\ 6\b¬\ e.H\1e\89yv\ 1¬Ï./Ù´þLÀzÁ´y¹'Æ\ 2R\rÖ\9e\fòL\83µXÖæ\82\98 "¬þ\99\9f\11®KX£¬ö<\90\89Õs\8b\ 1f²¦Ã\188Ï\9ePW\1cÌr¿Ì s\16Dðì³\88ë~Sb»r\94Ö\0kêí^5®Ù\bai-F\88\87\ 4á
-\0Ý?\8a¬\8e&H`µHë\fë3¡M\90\8dAH\8f¢Ì¿\99ã´>ĸ\r\vÚqU{\rjƵïáí«¬+X¯ékû°FV\vÕ\a\89½{#X[\ f»Ã\9aâd\bÖºáG{÷\ 6°îÍ hY'a-¬þ\93\95c´\9e¤5ù Ú\ e²\0Ö}C¢êjv\9fJy=
-pñLì\1dÚ]\92X\1d-k\875Ô\17\vVWÒ:´ï\91\ f°Þ{YÁúwÎ\1fÖ>m\1efbz\8cSO\ 6ñúb·¬»\vÒ\1cë\15a=±: :àz ®WÅê\80ê"kz&\ f\ fpýÞbVãå Gq\1dhÝÉ7\94Ö\1f®\86Öü;;Ó;\80g¥fZÃ9\85¬ö\85\ 3cV\17\89¬±ï\ 4Xm¨\ 6òÚÖ\83EÐÆ?ã¸ub\17\879\rÿ9Pçä\83ôÞ½\fë{\18Ö\13¥oZ9BkõAz\85q\ 6ÖG\bÖýq\88¬¶\140§µÀºIë\19X¯\ 5XK\975¸ ]X\ 3«\91ÖÝ\aáv\90Þ»7\84õdY\83°Fï x\9dÜkÏ\ 3`Jc\8cK`µÃú0Áºh\ 6©`½¬´þ×\ 1ë\18\r\92¦ÍÃLLo³\86Î=©/\92\vÒ\84µ°º\ 1úçrfq\1da\1dX]µ\81\14{\ 1\16dMc·µ/H\84In,Ûyì\86Ç`Ø\ eo]\82ú\9c\ eª E§Fi]Ãz!ã8¼\fY\96Ò\9a\8c\10\1c,$T#«\83 âÝèmMM\845n}<ãíÎjè\9aÎg\1eØO&\\ 3±Ã\92ö\ 3CN#¯\9dÖ
-ëí\ 3X·úb+/\ 2«\95Öâ\83h\85Ñ\e%v¯\80õ³\ 5¬å¢\f°\86½ôCXß\1f`}\r×\17MX;«\95Öê\83Äv\90Þh=\84uwA\90ÕÕ`(Ëë*Á\ 5ó°!\1c@XÍÂ:-\1e(ê\8b\91Õ\ 3i]û ½Â¸\1c¬SêÞR°\9eX}©aݧÍy\80±§Y÷6kîÜ;ç\96µ¹ b\82tVÿ\1c\8fãzHë%[ö\86{\ 1 jºÎ\9aîû²0\83\94Ǹi2ð%g5Å\ f\9c²]¨ÏÕðsi\9dÇp\96\84õ\87áT´\8eí{\81Öö½â÷KßîËß\8ds\97¶Q,ú\ e\8d\92\9bá\b®¦\89¶DAì\ 1\9fDÞ\ 6b'L\1fÌ_\16¾\ 3\90ÖfZ×°¾ë.±¬\91Õ\8dÖ\ eë»(ü\99`½o\bk\19p5V+ÏÙOÊÛA\16Âúf\83u¯/ªeíÂúOþ\ 4hm>\88T\18½\1dd Xû\94!\8c\86\8eyMÀ\9eÏqAV#¬\8f®\1eÖQZ\a\1f¤4?\v°\9e\ fÝËÑ Õ\0£Áºuîùüb·¬»\vÒ[A\8cÕ\9dÑ¿øÅ/\16ã\1aa½\1c«\13ª\97Í\9a~[\17±\f\ 3\92ÜYÀªÝbü\81°\84´^\rªC\80 \rï¼JF\88Ó\1a\16\8e?\93\1f-\95a\9d\96?fXcf\14ı\ 2ª#bGd\1dá\1a¥y¤~æ\7fa\8f?\19i½[\93æ\97\82õM79\8b
-ã\0Öع§£üIX³´>}z1¬\99 \bk·¬\e¬\89Õ\13\1dÖ"g`\1dVKnר¥Ý\82ê8\19º7Û!u\82K\frÙí¬\8eÂzaçÞBX\97Òú³\ fëßÍ¡{\1dÖi\ 3#\r0n~|«dîY3ÈË+°VËZ\84õ
-¬\81Õ¿°\13p\1dh\1da½
-V;ª9jú%¢õëLkÜ\9b%IÑ\10\14]±\9a\96wWÆ\82ò\ f¥u9á¾\18Ö\ 5«!\19°\94Ö«7m`tÑYÍk\1fCvvwAN\9fö×wb54ß\r´ð<®©2Y\9b)\95¯R| õ\ 5Áúæ\a<\1fX\83;\17aíí ËÀÚ;÷вî.È\9f0¬'Zs\85qiX\9b\vÒY\1d\8b»\15¯5\ e æ4D¹\10«/\10Ög\97óAд^\12Öß¹\faM¡{:m\8e°\96\ 1Æ\ eë>\133µY{çÞÔ\fÒaí.È\8a°\9eXͨv^\93¸\8e´\ e#æ\vXí+\ÂZ\80QÖ4Òú\1dFu\ 5&`5ïÒî\8aA+ܼ´\16\18¯RX\7fH9®aÖ\12ª\7fP\ e}\96N]\ e\85)\9e·\88Õå¢\ 3qA¬\8bÁY\rÙy©*\88À&ÐÎ\14\eÇÌ®Íoh\a4Z\1f\80í¨;/%¬\9f\aX¿\94`ýÒêa}g\84õWF°þã?>oXk\9bµHÜ`\85ùÐ\92×\fìt`\ e\12XÝ\845ÃúD\99¹7\ fëä\83,\82õÁå`½òI\7fó\e_ûêe\ 1ë\1cºWä8Á´ùz\80uo³Öf\10°¬UX\v«\e ÿVN\81k¢5Ãz¦¶¨m \1e\87_eM\e®\8b=.N%ÝF[®Ëz1°\9a[á\f×å\90\89HëÙð¨Õ²:§n¿\9d=v¥õ\vØg¨\9d\86Üh\98\rk]Ö[ÁºwsÓR\1a]¥®¥\e\e\17Ç~;\ 2¶áz\8eÖ5µé\10¤ó¬\rÐz\1f'Í_:X\9fqXSáÛa}&Ãúà\85Âú\8fÿ¸Óú<`\rÍ \1e8ÝY\1d\1e¾\1c\955
-p)Ò\ö0«EX\87f\90ó\87u õê\94õ\86\11¬¿Ðaý'\97\1eÖ1!µ
-ݳ\1c'\9d6Ç\ 1Fm³\8eÍ +°\8eÂ\1aQ͸\8e´vi½8\125³Ú\17¸ØOqn3\80к~á¯\9a+`¬ú)\9a\b\94Þåg=oT\8d\90$WGëÀè\8f\12¬ù%Ã_\ 6x\97\ fðx\97!±:\18Ö°W=À\1aæ$m9¯¤Å\ 1«\ fX\ eSÙ\16M¸^\86Öó'\ 5\8f0®iáÞîÿ\1fÖ\8b`M\965æwÐãvÄk\9ap¬8\r\8d%Àêè\82ÌÁú|Lkl\a\19Áú1\86õ\9d%¬ÿl\ 5Ö\7ftéa½|\8eÓ7#¬ûLÌÔfMÍ ½¾è.\88³ºCúïþîï\90×#Z\aX/ÃjC5\91Úx\9d7\ 3\18ߢ®\a\9dÕ{=Vë\9cÕa\13
-\84m\9c°\8df\84\80´\1e¸Ö«\81õG¼'2Hkª1b\8e \8fÆÛüNbõkÌêÂÆ×'\98» \90?D¬Þ\8f¡\1eÕ\ø\ 1½E\r×5}ÓHúàwÕ\89~Dë}8®&:ê²µAF°N\9eõEµAÖ3¬Õ\ 5AVS\ 1\ 2\81\9d:°Ë\83Q\ 1Ìê\19X»q·L\85±ôA\96\85õ#\9faXs4H\18`¤6ëÖ\fb\96uïÛûkdõßÙ)q\r´\ 6XÓ\8cyÁj\8dª ¨iÊ\9a6\gZ#®\a\93z!kÃ"¢ë\18;£u7Bæ¥õr¸N°ö\rì\95´6ï\86R§\10×\96;E¬¦Ø©·ßÁªk\80µXÖÚ\vò¬\99 ؾ\8aYÔUàREë\19TÏ\9d¸°ÌÃþ\ 4×(\ 5Ö&\a}Ö3Ý ÿ\1a
-\8cÜ\rrK\80u¨/b~\87£:u¾'\a{æø\85\80×Á\93\8ba½\;ÈÈ´^\1eÖÓfâ{\16Áú?\17°þß.9¬§Ð½?L°Æh\10\e`ìmÖ\92\fâõE\15Ö+°\9eXͨ6\×´Vi\r°^ÌjDµþØ|YÛÙ´\19 Ð:æ\15¥â¢ÞM\1eç_\aDÇ\8d\86,#\97ÁufõGóÒ\1aÆÁ5Ï5d\ 4BDàK\18\11øzÉê´íÑ,kê7\9bî\ 1Èt×%/å}ºÏn|²BJVÏæa\13£\8bM\aGfvY\8b\ f\92'\18a(¦ê³¾sQ\9fu\ 1ë3³{g\96jÝ£>ë\vjÝ\vC1s°î\965\8c\19b\a¦·ûP\1c@NÜJ\9c.\9fÙí\ 2¨`]¤î]DXûËÖã\0k £½%Âú/.+X\8fr\9c$\1aD§Íû\0c\ fHõf\90nY\83\vò3\81uGôß·\93qíN\bHë\ 6ë¼\ew\96ÕgãV\80Ó
-¦\19ZW©Í<¹È¬6TÓ\9a,§u»AûJÃJZÃÊ\98¥p\9da½HZ¿j+\12õ#\19}"Îê`XwJ¿\97`Ýê\8bnY\9b°îK¹\ f;«÷ú\82\97ø\ e\1c_\80\ f2¬W\81é\84hü©8\aëQÍ´\1ed\83\8c&\18ï\1aO0&Xó\ 4c9\14svõC1·\ÐP\fM0j6\88¬õÒl*\835¸ Pj S8"9qkd\87!«\9b°N°.\97\ f\94¬^l\83T\ 5ÆE°^ù¤¯½æ\9b_\ f°þ¯\9f0¬/(!õ:\84õ£\0kïÜ\9bê\8bfYKy\11Xý÷p\f×\15\rÖ.¬Ñ°\ e\9djäÐ\162\92£¦\ 3\ 3®yw\95\19Ö\9cV\94w\1aö\8b+. EiýZ\96Ö\1eËú\89Hk§õ¹ð®\91\1f^\ 3V§1¡7\fÖ¶ê\91¢âì\ 6\88«\13±¾\94Û\0\ 2\87îÆè\1c/\8eáú\b\ 5ApÆZYa\9cR÷\1cÖ\96\rr3d\83Ü=Ì\ 6\19O0^\8cqó*\eä¼ÇÍ1Èév\85õº\ 1¬mÌ0\ eöÏ\ 2;c»¬4ûËÕ\ 2X/\8arZ\`tXW©{â\8b=8\80õ\97\vXÿ\87K\ 1ë¥\12R!tOs\9c4\1aÄ\ 6\18\8f!¬¾èåEeµPú\7fþÏ\ 2×Fë
-Ö&¬\97`5¯÷\89\ e-HI¢5®ð~\83YíÞl`5ï«ÊëÂ¥ÆØÚ÷<*\95\16\9d\17\v\16ë\1cë\91´\ 6XÓä=ÓÚ\1ebäâ\9f[Èê÷h¨3$ûÕÂ\1aX½GÖ\89Wý\0\86k,.\1dRX\aT¯\86Ð%®Ã\12§½\8b`í¦5\84î\85 §aê^\84µ\ 49\9d¶\9do1Èé\9cYÖKÁúÞó\rrú\\frò\88Ô\9b\19Ö°±½Á\1aw$R\83|\1a.e`\8fB\12S\13'²º¹ \ 4ë\81i]e¤ÎìöòÖ½c\ 4kZëµ%ÁúöË\rÖK\85î]M°nÓæ}\80±Ïļ \9b\aV`=YÖà\82¨°î Öc¸\9e£µÁ:\18Ö\81ÕZK\13U\1d¶\ 2@ïÃ\991ß\0Tû<d\99,wÒÒ\8a¬A¬#\ 5h-FÈPZ¿«1\7f³¸þ~\81kRÖ#i\r½\8c/AÑõl¨·\12«_\v¬¦°\14\82õ+%¬\8fuÃÚYÝQ]\8dDì\ e\99\10|·\1eFV/Eç\13é\0®£´vXo\e'9Qì\1e²:G¤>\Áú\ 2"R\9f^\14\91zÏ]¶\82qAD*\ 5ZÇU1\9agk½VþRâìØ>\ 5¯/®ü´|t\85¦ûGÀ\9eËH´s\0Y]ú¬0\8eÖ\ f\8cBR\9ffX§M1«\80õ\95s°þ½O\ 4ÖË'¤Jè\1eæ8µh\90Í\bëÔ\f2Á\9a\855¡:âZi]Àú¯\bÖ\ 3V¿4Þ
-Ðß\9e\9eOí\ f\98\13Òqçug5tX3«\15\ 2è®:\9bm-5F\91ÖE\8dqu¸^ؽ\17¥5u\9e\87nFn<_ÀjJ\8cíõÅï\ 2¬YXûè\89¢z\1c\v\91h\9d`=Ãé\fè\8a×JköApà¼ÌH½Ó7Å\10«oµ%\8cå¦\98\9d ÖÚ»§>H 5ìõz\81\9aAÒò\81ͳË\a¤\1däÊ\99å\ 3"¬¯\88\9bbú\ eÆÛ\0Ö6ÀhõEsA\1c¬\9cÃ\12\81\8d!\ 3\vHM£Q\87Í\ 5\11Xs\851.öJ\9b½N/\97\r\92aÝ«\18íUkã£ý\93\9e`Ý>é\9b.;Xÿ^\80µ'¤^1Á:ä8µh\10\e`\84ν7ÞÔú"\bkdõ?´ã¸FZ\83´FXg\13d4¬w:m\ 5\88óz#Z¿\8e¨FV\93 rê\94±ú¨\87ë\1fÖKÌw|\8aU©í{mè\1c£Rßá\95\a«Æµý\93Á:¬cL´æ\89No"\9bgõû#X\ f\84u\1fß\95É\13Gu\11¸6GëÈêE\84>\19\ eâ\9a¤u¸7Õ\aIÛ\a´\1fÄ÷\ fð\ eÆ»\96ÙÁø)®õú\µÖk°\83±o7o°\16\e\1e\ 6\18£e\1dûâë,\80Xw\9c;\a\91ÕCX\ f¤µáZÿßØ\ 5©Ú¬íríOo¹\1eV`ý\10=\16W`½òT¼z\0ëÿx±aý;«\81u\8c³æÐ=\8a\ 6\91\ 1F\84µ6\83¸\v²"¬\8dÕÿà\aqÝh\1d¥u\ 5ë\82ÕßCV\87÷\1fÉ,ÂÅ\0%\e®W\80Ýÿç5\ 3\1d\9b \9eØìáú>Ëq\ 462\8b \9a\95ÖaåÁ2¸þ°8IZs¶·ÒZÁ`Ã÷/æ¬\94Äê´\8b\ 1\9aAF°ö)AAu\11\91éQÆDë\ 4kFõ\ 2B\97¼>\8e\19kå~Ô9\1fd¼ÝÜ`½ôvóÕ/Ì}rÑvóo\17¦µHëÏU\vsËíæ:\13sû\9d
-ë\r\11Öî\82Pu\ 1Úâ«ð\96¢Y¤&5³\9a`}¢\865Ñú\fTcN\ f\\90ùió}TÄØ4\86õU\975¬CBª\85îµh\10\9b6ï31Ú¹×ë\8bͲ\16\17¤\vkFµâÚhMFH\82µ k7A\8aðÒ2`.fÌeZ\ 3®\e©\89Õ\1e,§aE'ì§\8dy\15\87=Ò ªNk\92Öa\1dcÄu:Káz \ 3c´U\91BHÛ\18ð\e\v\v)\19Ö\89Õ\a\80ÕOøV>H\9fï¸N´ö¡\88Ã(¬\13©+4{BKÀõq»7GYó\83]1]Z#\e«\93°v²-\80µÓú\1cü\1cÎ\9d\ 3a\8d£ ´Ý|\0kØë\95¤5Ñ\1a\97\9b\97Í \ 6ë<m^Áz\90\r°\bÙ£Ã3QX\0Â
-cðA\1cÖpf\85u]_L×C\87õz\83õ\ 4ë/vXÿ÷\ eëÿg\0ëÿõRº\8e³Æ\1c§\16\r\ 2\ 3\8c±sO-ëæ\82tV7@ÿ£\9c@k7BÜ\aqX\17Â:$7\9f3qRDM[Ò´ß2ÜÁ×qý\9a\91Ú\8bs/Ò*\14gµ¢\1aÃß\ 2½}\8f¤õ\eyAÍ\f¯S3ö\ 2X\8fi]æ{\7f/°ºÜJ\19amõÅZX#«\aÛBT\GZûTÄ\11fu\rê§\ 6\aqMÒz9XÛ~s¡µ\9dÛ²°öÑì-#X³\ frö\1càúܹsÖ\ 4o.È2°ö
-£\99Ö$;á4VGamõÅù\99\18wAàýg\18ãR\11{\96Ù\87"«#¬\17JëRX/eYÏ%¤B)÷Û7^ÿ-\84õçV`ýß.\11¬ëÝ\ 3\v㬿ŰÆisêÜëõEwAþÖaý\8fp\10×l\84¸iÝ`-.\b
-ë7ß\8cQ ÆjGµåLÃs¹¤µãÚPmmohX?\8dÁr\87Ãåx\88hmF\88NÆäu\8caAÍùâú\839iM\11ßÀë\97}\15\ 3¤¤¼\15ú
-\81Ö
-ëÞ\fÂ.H`õ>au\93Õiq*o¶\ 6Zó¼±Â\1aQ½\98Ò\91×$\93Gi\ 3ç\bkóA2;«»°\8e\9d{\bë}\ 4ë(\ 5×çÄ\92:{\16\85µ\ab\1dí\9fæ^\84õ#¸\19\10Më\82Ö\7f\8e´þ\9c°\9a\855Ö\17½so\fk\12ÖŤiIìÅAäà\80\aXW¦5Òút\81êÀêY\17¤´Åò
-F\85õ7JXÿ>Ãú\7fÿ\84aÍ»\a\86 ©9ÇɦͱÍúm\84õ4½ø\8bÈê\7fú'Àu§µ\e!æ\83(¬Å²Famu®W*VÛ³4-\87}vHë\86ë\15j½*¨vVóÚ*b5 \ 6¢õ \1c4¦<§*{ã½ÁI¼.½\90\ ff¥uÜsfÇ\97\9c-dõ\1c¬+am\vÄ'VO\80ÞªGq=¤5ÁZ\855£:b\99~Ð\11×'ìî<\1a+\8c3\91Ö]Z+o3TwV\8b°æνÍ\8f×°Öæ=¢õY+ó\9e%V³\v\12a½Ia-Vª\99Öä\83\b»¸ö#¬\9e\84u²¬§úb9\13£\99{\rÖþ#:ôd\1a4-\89½
-d\83¯RÂúi|=6#\84pã^K\bkN³Æν\94ã¤\83ý\ 2ëiPôÊ¿\14Xÿá§\ 4ë\7fg»\a\86 ©\1cº÷\90ÁÚ\a\18{\9bõ
-¬µ¾håÅÎj!u?\84k\90Ö?ëÒZLk\85usADX£ b®²\17hà§\ 3·sXãr\86f\19\ 1×\8ajoݦÌ\86\93Äj/\9d\1c<È«>µ#$\f\9d¿B+³ ÕnÄëØ/\92qý\ 1ÁZ ZкZöþ
-\8dÜgV÷¯ÊË\r¨\19Ä\\90`\82\b«\9b¬Þ\1a\8eâ\9ahMÒ\9aoØã\88ê\11¤+^#¬Í¤Ìwg\86uw\81Öz\84ÕAXk\9bõ
-Ù\9eè°Þ¯°6\1fD¥õik_°NÊ3g´\87ÉZC+X?Þa-u¯fZߢ¦5Kë\89Ö*®\rÕÆjvAd·9tîùL\fvîíÙÃÏÓ'\a¨\9e'ö\bÚO2«\11ÖÙ\a!im¸>]³zA/\bÖ\17½Íº\80õ\r\ eëÏ\9f7¬\7fçÂ`½T\9cuOHM¡{-Ç ¦ÍÍúÝ÷Ȳva\r¨6\wZ\8b\11bÒÚLk¨/\ 6aýÚk\104}\16X\1dQ-76qI´n¸Öó=b5\9b Ç\8f\1fÓ§ò!.rwÍÑi}\1c\87×N\87\9d1ai\16\84%Íóºîã3X'i\8d´N¸þÞbV÷ÿ\9eÐÚamõÅ\81\v\82¬îªz\8b\1fÁõ\98Ö\ 3X\aT\8f@M¸\ eÒz\90\ 5\11`mÒÚh}»£ZY½"A\ 3¬73¬\ f\1c|²_\aòÐvi\1dC-Î\0«}é°}\9cû\18ÖÖþÛ_Ï{§uï\aQX;'\ëù\va5 k\9b_Ôúb9\13\ 3°fa]D\ 2,\8bìò\1c\9e\835Hk¥µá\1aÎ\vÀê\85kb\9e\94°\18µ¬wx
-£ÌÄXr¸mõbXÿÁ¥\85õR ©+°\ e ©\9eã$Óæع×ë\8bnY\e«;¤\7f¹r\1c×.ÿN¥µù
-ëî\82DaÝË\/%VÛ\8f\ 6-Χ=Â<Ó\9apý=5\rô1à]{\9dÕ\1a\80á\8bP QX63»\11ÂCçf\84ÐÊ\83wG'ð:àú\ 3Ø\ 5FÒº¢uû{áy\85,\90ÄjëCAX{}1NÄ\1c#\13ÄXͨV^7qí´Î°\96Ü5½aO\10ª\ 3\9a{\r¹Âõ\f¬c\85±\90ÖNk;\13«\9b 2 k\84µø»;\1cÖä\83ÈB\8a8)m\9að\ 5Û@\7fÊ£f3¬7\ 2Dz§µú \15\ 1×\rÕ\15«¯¥ú"¶YÃLÌÎ\1aÖEzK\85ì¥\89}8Â:ú (\a´~á\85d\82\94Â:¸ |5l\fÑ q\ 5ã\ 4ë?5Xÿß\1dÖ+¬Î°þ·\9f\ 6¬1!\95r\9c,\1a\ 4Ú¬[3\88¤8©\v\ 2¬þ¥\1eÀµ\19! kX\aam¹\1dÎjx\8aB]ê)Ú»éÛ¬´Ùø»\881Ù¸ë\92\9d
-?Æê0\9b%âÚhMí{ç ÆÈ´¶\r5\v\88]ãº\82µ\e!NëWýAd\ f¦WaËû\98Õ\ eko\ 61ËZ\\90(¬wî4V¯Ðùq<\1d×@ë$½\86\85uFõ©p"\97\81uöADZ\eïpT7V7\13$º \9b%t/ÂZK\8cDkpZ}àNv0«°Öis\81õ6\81µÄ,O¦µ5ï¡´vZ\v®ûi¨VV\13¬¯÷úâ]÷\8cgb¼¾HÂz&\fqµÄÆ\82¥\17\97}©G\90ÖÏ¿\90qí¨^RX»\vRµY\17 ©\ 2ë¾\82\11aÝ\84õ§\ 6ë2ÎÚB÷<Ç©O\9b?Í°\96ú¢» \ 6ë_â\11Z³\11\92aM.HÓwRåòe%Èê\80jåõ"Z+¯Û?ZÚ*&Â?\15YM95Ö|ÖhmFHhß\ 3#Ä7\1e¼38%¯k\+VQZ3_}\85Ï«\ 5«\8b4@h3IõÅà\82\1cÂÕ£ÆêÎèÇV\8eã:Ó:û ð&\f¬\1e\82:à:HëEí \ 6ë.\ 3íÜ &H\86õ¶\fk\97ÖÏ\84¶³\95ë\8f<Öçìò=\99L%1S}ÛT7{ó^\90ÖJkÁµ\9e\86êÆj\11ÖÚ\vr½Í/NõÅ´\81ÑÚ¬\13¬\99Õ\96
-0Fö¨Á\8fX\9daÍÒ:ÑÚxÿw\96Õ$¬Õ\ 5¡rs¿\16\1e
-sý7Öûr\rÖâ\82|z°\1eÆY\87\1c'\e`\9c\9aA&X¿÷~¯/º\v¢¬î\8cþç\95SÑZaýó!¬\9b\vBÆ)\86\97ò\ 6\97\10"1Gkmd\93Ó{Ü4\11\1eÆÌ{q\11Xíá\8fûö\ 1lÈ®Ì5ÆWË\ 55#bS r\88k\82u¤µâ:\1c\rEYÀj\99\8d\94f\10¯/¢\v\12\84õ\14»á¬~\fOÇu¤µIk\84õÑ\fëyT#®\97\81u4AZ\ 3\95×w6T\8b 2 ë\0ë ÖGÄ\ e#ZSq\fÞÚÅÂ{\8aRVÚç¹\13aÝû\7f»i->Èõ\ 5\ 5×W\10ª\85Õì\82¨e=Õ\17×Ü[,õZ\fë\1c\87¸\1c°\9dÙþ/\10ÖÇ\1cÖ\85´v\Ãy>³zÔ
-\92\\10«/b\9b5F\83à¾\\82µYÖ\17\17Ö\17\1cgí¡{-ÇÉ£A ͺ7\83tËZ]\10ÓÕÿ,Çp-FH\94Ö\fktAHXc ^½Áå¸\17*\8cÖ\10¬ãùÂ\88jg5wíµ\9e\ 2ù)ï\8f1½ö\1e\ fFHHß\83\ 5â\9e¡ýöà\ 4^Ïàúû\ 5¬\ 3#®_sV¿\85Cæ\89Õß\ fõÅÖ\84C\8d{É\ 5AV7DonÇpÍ´\8eÒ:Á:²z\8cê\fë`\83 ¬Ñ´v\1fD¤µÑºáZ\ e²º k\80õ\96\bk\94Ö¸ò5@Æ\fVYÂ\f\97Y\80õfx?ï¦õä\83°´vZO¸n¼¾BQ\8d¬&\17d²¬µ¾xÿº¢Í\1a`\rcKGF¨.\88=\al:n\84ÏJë\1a×\8eêØ B&H\16Ö\Àðf\10\1c`ôÝ\ 3\ 6kYÁxÙÀº\8c³\96н\96ã$ÓæÞfÝ\92A¤\19D]\10\13Öÿ\fÇi\1d¤õ\0ÖÍ\ 5éò\8e\84uÞ¶u<\ 5\88\8b\92\89Öa\89)î0}!\18ÖØÿEK«$Jßi\8dF\b,Ï5Z+®uçÁ\88ظc<âúûÄêï¿?¦õë¯å£ß\ 3±\1a\16Ø|0\80u°¬\9f\82\11\ eȳsVoÆ\13iÍÒ:ú %¬çX}ª\14Ö31kÓ\r
->\88Jk¤5\9c»ï\16Ã:\vë\0ëî\83\98´~\9aËc\9d3Ï\e\\9euV\9b°Ö\ ft\17ºW¾Ä´\9eúA¢´î´î¸n¼î§¡ZYMºwYk}ñ¾\a.\1e¬\ 3°\97ãõ\bÖ\ 3Z?\1fIí\19nÏÔ&H\12ÖéÁýhèÜk31\9eã¤qÖ#X÷}¹\17\eÖs ©¿?\88³\ e¡{\16\rò,ÁZ\9aAÀ\ 5!VÿË¿\0®\85Ö.Í´6XOõEµ¬\8d\18´±õùÀj¼P\8eé\vÕIÔ8Uh¥Íøå\15¦´aP\7fÈi\13¬Ñú0\ f\e[DÈK/\97;\ fÞ\1a\1c\ 6v\89ë`.\13¬\8dÖ\ 5®_\7f}\ 1«Q°×õÅfY\97.È$¬\95Õ\9dÑ\9bV\8eáÚh]Hë\ 1¬\97eu\rëÙ1\b÷A\Z\ 3ï\ e¨\16VOÂz\fëî\83\88´&Z?û\1c\90\86T`\1f³ëÂÚcVâ\ 6\137'\1fD¤uAë\15\7^ëi¨\ 6Vc/H¨/¦=1É\ 6AXϲzõ¼ö\1e\13SYFk\83uø\10\81Ô$«3«1Ô'ìO¦À\oº\81\99\98\94ã\94\97\9b\7fB°>¿8ë\9e\90\8a¡{4mþJ\83µvî¹eÂZPÝ\ eÐÚ\8c\10\93Ö5¬»eíE®\97_¢\99\95SÈjrÍÜþÒ»æ¹\94\83\86 Ã1\ e\1eó\9a\81Õ´_p\8f\8bÃC\87\82\11\ 2\e¾\88ÖaEÍ,²I^¿_ñZçWHZ\ 3ãyc\86Õ Ù©¾h\96uoÜ\ 3\17\ 4Y½\83X½ OAk\97ÖÁ\aa×ò\82\84õ\10ÖnZ»´FZO¸ö3¡ZYÝ°VÂ\1a|\10M\8añLfE\8d\9eg\15ÕÎj)\8càÃÏw\ 3\8ai=ù Ó\\8c5\84L°vZ\v®\ 5Ø_\10T+«IX\8bemõEÛ\13³ZX«ç¸$¯\17ÁzNZG\#©õ\13Å\89\v\1eeM\e93èq¨/bºá\r<m>¿/÷Baý;\8ba=\13g\9d\13R%t\8f£A4ÍZ\9aAºeý·\rÖÎê\7fñ#´\ 6i\r>H«0"¬\9beÝ{A`¯\944û>\17X\8d×\85üàÕ
-É´\86ØÊ*´\12\rëÃ\87í=Z6¡ìÆMULëc\10èäFÈËe\8aö\9b\83\83¼^\84k\18\rÏ´N¸~ã\rh LM{\ 4ë÷ é°}ô8k\1e\9a¬½#®duAk\92Ö\86\ 3Xæ °>oa]vkq;\b\94\18»\11â´¾ÇIÝdugµ ë\fk÷Aº´VZw\?c!ëú\ fÏ<£²ZM\10Ý\8e\96`ÝÖ°wÓºù QZ\v\15×\ 2ìFê\15T#«\83\vâõE\rèΰÞ\87\ 5FÔ¿\84ê\ 1²\97Å5Ü´YZ\v\9f\81'^$5¡ºÒÕÌêj×ý#\ fK3Hl³\96ióE[½
-Xÿ\9bO\fÖK%¤Jè\9eG\83¤Î=µ¬ÿ\1e`ý/t\8cÖ(+X\7fd°\16Ë\1aW\95\9c~ÁL\10`5µyº¸VZ?ë´Ö$4\ eB\v\ 1Ã'½ê£\15ä={h¿ ÓúI\8cÈ\84\8e\90n[\7fÏ\9b\9cií\ 1\9d@ìä\86¼\1fxí9\1el\84(\9dØð\1fx\vRJja=¶¬qO\\10t¬·n\ 5Voô\13iMÒz\91\ f²\90ÖÃ.ë\ 5°\16A¥Ò\1aiÝpg\r°z\92 â\82¤Ì#¿\ 6Ô\b±8¢S\9e±n9¾§llã\ 4L]ɨ%\85V4Ñ7\99ÖÍ\a\99J\8c·dZ_Õh½\82k\ 1¶\90zBµ²\9a\85µXÖ÷`@wì³Þ\13`M)¶\15¬\13°\97Äu%KZû\v
-l\85òOU.\af5\98 àXçP¯\rëÃF\9eë\8a\ 1ÆË\1fÖ!tϦͽÍZ:÷d$F\\10\11Ö\8dÑ¿Z9\8ek¡5Ik0\12¬Å²FßôÅ(¬\99ÕôÃWZ?E´\ eIh\9c\83f¬\869\ 5\v×ï[«p³àn\90\87Ñ\bAÛ\9ac´_C©;\846ñ:%a;ªûb\97w\13ß,¿ì[\ 3V\ f]\907ªÆ½é1V kaõF:Lë(\93\ f²\1aX\97=Ö.¬C\a\0\18\950Ä(ÒÚh=á\1aÎZdõ$¬\85kA\85vÓZç£p\99 e@êÑïü)x-<bÂ\9aRñ7«\9dºî~õAn¿Mz'X\ 3;®\e¯åLÿ\97X\8d°¾ív/JçÞ\0Öû9ÅöÈ"X\a^gZ¯ZZ+\v?IWC=\ 3²ºbu!¬zñ\18~Æk±s\ fgbf\12R/>¬ë\84ÔßK ©\7fÈ ©\1eg\8d¡{\1dÖ0\13c\9d{nY£°þ\95\1c µKëYX«eMQBgXX;«Ã\ 5 ´>YÑ\1a¢ÐR\f\1aD\82\ 4V\87]°»àeþàÁl\84¨mM1Ú¯¾FÀ.}eàõ\10×ïW°&Z¿\99P]±zFXC\e\ e6î\95.H7A\8cÕ\8fÊ\11\\vIZï\ eâòAfiýt\92Õ9Î\1aõ\14½\ 4\88\ f2Ik¢5ãz-²Z\85uç\1aOûíCi}ÔËÛò7Èß7ö\ 1CÇQÈ0Ùdªïþ¾\84=Hk¥µàºñÚÎW&T\e«\83°Öú¢tî1¬ÅÛÙ\9b\82\11\a\9b×\96Àõª¤u¢õ)|9aRW¨f\ f$³\1aË\8bj5õ\96\eÛ"\7f½µY§\1c§\1cg\1d`\9dC÷.\ 4Ö¿»\8a8ë\10ºÇÓæ}õ@ïÜÓf\90Ö¸ç¬þ\15\9c\81´Ö
-ã\18Öa»vÚ·u4]\ 4Fkëà{\ 6hÍá:}
-ØX\8da\r¾\beOÚ\ 5»s'êC6BÀ¶vZk\8eö«¯\r\ e\13{\84ë\14fê>H\83µÓºðÃßö¤Ö\ 5Âz¡\v\12\84u7A\1a«\1f\85\13i\rÒz\ f´\87ÍJë\82ÖO3ª+V§9\bu*ÛMj%F5B\1a\ 5×~î\ 5V«°î\C°É%@´>\1e\1f9ô\1d§á\1dU\ 5ÜUÖû\v%Àä\1e\95Ö\89Ö\8ek<\13ª\85Õ\93 \12`-»oªvÄ\90g]¯^\9b¡õñÕÁziZ\9bûï'¾¬\ 4YM\1e\b<´!xÀ?bÜ\9e¦\9d{Øf]\87îéV¯O\1aÖÿDzqÖ\12º·\95amiÖÐ\f¢\8d{
-kÁô¯\1d× Í\a\19Áú]\87µ÷\82ÐÒñæøU\v·HâdZKX\ 3Fë<o-&hX\ 3«yÁà\1389\r[°ÙIi]'³\ e±\8dåÀ7\ 3®#¯\9dÕ\81Ö\19×\81ü4º\18\84õ{9ËzÞ\ 5Q\13$±ºãÚiÍÒ\1a\8bXsý \956\ 5R\13ªá.Í\82
-\9e,}.Ƥ5ÐÚx}oC5°ZÊ\8b\0ë\1d\94Pg\7f\8dÜ1\8ega\84 ·\0\8biÝ¥õ\1d\ 6k£õ7\85Ö+¸þª\12»ýãUÀê,¬ïöÎ=\86µ\18ñæ\83\8c¤õRÚz\95´>\16i\1dpýL"µ¡:Êê\9aÕѱ6\17Ä\83hCç^\18`\\0ë\8b\18g\1d\13R\17ÆY\87н\96ãÔ£A¼ÍºÅ8A}±¹ (¬\7f=\1d 5Jkï´\9ez÷"¬±¾èMÖ\9e,Y/GT!@´>uª\ e×\91)`\bÖ9y\92;_u\11JÜ\ 5Ûq-´>ÀQ>f[ãÖ\ 3Êú+ÆÁ\83MÂò:àú=ÛCN°\ 6Z¿\95P\1dU:ÃÚª\96óã\8bà\82\ 4aí¬~Ä\ eк\94ÖK¶Z\ 3¯\13©\1dÕ\81ÕÔ®å°Þnßm\93ÖDkõ\9cû\90Õ]XOXk\C°\99´\1eä\9cð9q\82ÞÓ«\r&Å\1av\81õí\15\e®'^w`wP¯\90úk_\aV\17°ÎÙTòwÊ\81Ö\87«î½ÕKë\8aÕcZ³\91ôL>§\86¨\86\ 5×\12\98Y½`±\vâõEëÜó6k\8c\ 6I ©\9f\14¬\17\87îÅ8k\fÝk9N'\17Á\1a\85õ¯õDi->\88\9aÖ½ÑZ`ý¡Â:\rÑA~©¶=)«1Ú|\8eÖ\94Ö É:Ïyë¶t¾Â¤²-Ú\116\v\ 2³m-Úº\bû{et\0Ø6Ä\82¸\ e¼FV\ 3¬ß\1e÷o\87ö\92йíÑPyI\f» \95°Î¬î¸FZ'i=nµ\8eQNÉK0R\13ª+§R\97Ù(\aÅ´îÒº\19!\8dÖ\82k<÷\ 3«»°Öú¢mU\89\13Õ*\85þ7Ò\7f\1c¼\0`ñËu\1fma/ií¸n¼îçk\rÕÎj\11Ö\bë*H°ÿ\9dø½§\88\a96Ëë\19e]Ã:E\84Ð5\0Ïê\ 1©Á\ 1AY«ø\80Õò\ 1\87@¯õël$Æb\9crçÞ4\133\84õÅ_\14s¾ ©\12º\a9N0À8uîy3Èß\v¬\85Õ¿Æ\13¥µ\9bÖcX\17K\0óvDb5\ 4ð\ 29®Aó»tp\95su\8eyqQ[}l\17,m\16dZ\1f
-\8bø¬³Û㣠í¯8! Ï\87\1e#j\89×\9aÔ÷Î\ 2Z¿]\bë\94
-2»wÀ&b\92\v"RÕXýp;\99Ö]ZïXNZ\17!©\ 4j$uBµnaSa\e\12¶ã³Å¤5Ðú~"5±º\vkm\ 6 `\9bYSv\èC0«ô¿\eª[\91%Ú\ f\ 2°FZOâºáºñZÏ×\ 5ÕÆêÂ\ 5)`½\8daMk\8da6\9c\ 6\19\17³úè\ 2Vç±s
-ô
-V\98ïÆ\8eU\0G5l¸>ØÃ\8dí\91ýD\88ÊÕÏ×Ö\12k\8c\13vîÁ\0£\84î}Ò[½Î?!UB÷Z\8e\93M\9bëL\8c7\83hãÞ/G°þU\94ÖfZ\ fa\r#1`YkZ\99®²\8d»l\87´\ eé:Ï\8f2Ð\9eL¬\ e»`·£DÜ·/ÚÖ¶ã\1a\13I8î/Ýâði\8bÉ\eí.@T3¬3®ß\8e¬.`\r¬ÎOÉçy"¦\16Ö\9dÕ\ fÛ1Z\aiýD\80\á\1f\9c$¿7r\9a\16\9a\9f0F\1c\ 5V'«Ò`½Õ¿ß.\85Ö\8ak8\ f(«]Xk3H\a[ö\fêN·cH±£Å#%v*T»"QZ+¿5Ѻãzâµ\9f\95ÿ?Éjau\13Ö\vam\15F¨ÿ¦Í^G3®\ 1Øôo\97\15ÖsâzØÅ \97Dt@â§k¬F/ì1+
-¬{à~¶¬«f\10m³¶h\90O1ÎzÉÐ=\8f\ 6ñ\99\18\83µ» Èê߬\9c(3¬ÿf\ 6Ö0\12ã¡x¸\1e±³\1aVÝ'ZÃ\0p\18\µ\\9d§\81ÕÝ\95Ýo¬VT\87Õ\82;¬v¾ÏB\8d\13O÷1\9c\14 \ 5«l\13µqY\0ãz´kæ\9dYX¿\9da\1diý>±\9a\84õ¹3\9c\v2\12Ö\91Õ\99Ö&«î=2B"®c\89\8e4u\89jdµ=r·ë\0\8f|Ã\93´&Z;°Û?¯sV7aÝ-ëô\17Q\19\9aV«\98¶<\1a¦D\ eG\98ì\85k-ÄM1¬\13\ 1×x&U\r¬îÂz\16ÖfZ\ai\1d÷0Ú_iÁ\19\vëEÑÖ¼ßmè\87!©É]\82çuº\bv\84\87á\86õëp\e\8fXÖ½\19DÓ¬\11Öæ\82\dX_äн\96ãԧͩÍZ\9aA~\1ea¨6\\ai¦õ\12°ÖÄ=X¹u\ 2\845°ú Ý/DkN×yγ\ 5b\ 4ZÅêNjØ-h1r2ÅF\11ô°7\95\87Ü-\93¤À¶³\e÷pA
-5Èëw*T\e«\ 3ÇùPaõ"\98 Ñ~Òò¢\ 6î\19«·º« ¬~¨\1d§u7BXZ\ fº÷\8e¦¹\15§Õÿe_A)ød\90TnY\13¬\9b\ f\ 2´v\ëYG¬\16\17\ 4`M\7f\11@Û\82\1d³Ê«C\11&`Õ\10¬£´FZ\e®'^+²Û?uT;«UX\ f`M>È®¸×¸Æõ\1c¯\8f\ eY½ÌÚ\98\ 2×\ 4ìX^&T\83¬fVS¯ý&+àÞ\ f\91á\_\8c\9d{4ÀøÉ\85î-\aë\ 5¡{-\1aä©\1aÖ^_üå/MXÿÆO%Í´\96Þ½\19X¿\b°¶Á\15+Ñ «kZ\97é:\10«cI\r\9a-¼ßMÄ\1dÅzÁ\90u\ 13Çõ\96ë8ä\8eÐ\ eG\81=\87k\8e¾~ÇO\rë\14æ\17\ 6"½\11ð]5AØ~\82\1d1©É\9atjcõCv\80Öµ´.\82R«%çE;\85YÀ\91ÔHA¾O Öî\83L߯Ó:\9cõÌjµ¬mÂç {Gèh³å\9c²Ã»záï\80\82ï1 ?ï\ 5\97æB\87µ\18!Në.®;®\8dØ\8dÔ+¨\ 6VOÂÚ]\90\ 4k1½\1fDÍ\9dDë¸\8dqIT\1fá¿~Íkê8!\\17ïX¹º\¿[%Vó³Ð\9aml\83¼Ô\17=Æ©wî-=Àx1\13R\7fwÙнocèÞ\96\ eë\1e\r\82\ 3\8c\1f~\ 4Í ËÚ\85õo\18Ö*Ù\a\91
-ã"X\9f\ 3X»e\r7çr´¦t\1dO,×ául°¶±·b½ à\9aií-!¶\8b/ÌMÚ\90û\8b\83\83À¦5·qÛÌ;ù¼ýv ë·\a°Îó5ÈêBX\8fÊ\8b.S\99ÕJk5Bf¤õA_\9c«´>~"óúD\ 1j#µ¢\1a$\95&ÛJïå\ e\vÞ~Ì\9f/Fë\8cëõÎj\85õ&\80õ6\88|5q-¸>èIñô_9\18P\1d\9d\1a\85µù l\84\bo\9ch¸¾F\89-¤^A5²z\12Öî\820¬Á´æ×\ 5|þ0Ti%ã\88ÔK¢\9a\1f\ 4ö\ 5ÓC{X²\18Ù`\1en\8c\1fo¬\bÜ\aë\1d̲¦f\90ºÍúSOH½b\82õ t¯å8Ù´¹ÎÄôν6¿(]Ö%¬\93´®`ýcî³®Û¬#¬\95Õ\aúAZ\1f\89´Æ\16{O\80\91¤\ 6O«\f¬VT\17ëª\98Ö\87\8aÍ©¸æÚ\ 6'Ï\r\8e\11[y]â\1a
-\86%ªg\945µÿÅ©õwÔ°Æå<"¬GåE\191ÙX°Úi=+÷ç®7Ä5\9fã Ô\89Ô,Y]XÃF\9bÇÐ\aAZ\87³!°:ÀÚr©L\ï\93eÊ\a \82ÂG~á\80~\87á[´¨\15\1f\89\97\1c×\ 6ën\84 \1d×\ 2l9×6T\e«Õ±6Ë\1aa\rCôTRPs'¿-(\84\8fÎ\9eåQ=\83ëê©Í%\8bcÁ\0\89\8fk¾\ 2Ì\ 4áò"¹ jY·úâ¸sïR'¤B\8eS\99\90º\86B÷<\1a$¶Yk3H³¬\89Õ\1f\7fü1Ó:\9bÖ:\15³ZX{£ª³z\96Ö\16®3\11[«ÊO=e9#\96\8a\8aq\12°±Ê\17 x6Ñ\ e\8cÊDZ?\85¡$aÏõÙÑQb¿ä£4¸\99¼Ú\ e\16A\1dë\8b\85´öî?\1c\83$Vga}2%Y{â(qON¢õ¬´\ 6m\8d]o\19ÓÇ\8fEP\e©#ª=.Q;zì\87¹YúW\88Ö\11×\rÕ\ fê_#Àz+¬\95Ü¥\11ç²\9e³\ 3û\0P\e\18-\9c¶¥\9e\96\12öDpÕ\rÖ¶Øw\92ÖDk±B&\\v°ýtT\e«UX«eí°vÓzK4wöUæ\ eéë!±\8f\fQ\9d\9f`\vp]>¶sm¹FuÅê$¬ûþøæ\82$X\87νÙióK\ 6ëAè\9eå8í\9e`ÍÓæ\rÖ¡\19ä\97\ 4ë\8fû)aý\ fPaÔ\11Fͳ^Ê\ 6AX\1f\80C´>:\ e×±á§"¬\12X=\X5¦µmã£Y\1c\18Æqnó\ 1`\ay\8d½!o\ 6\f\8fI=ÒÖ<\ãÁ}Âj/ë\9eIÂ\1a¦\17}v;³\1ahý¨\1a\buCH\88¹÷÷êÐÂk\8daG\ 3¨\89Ô\82jbu\86õc\ 6kÿ¾7ä\ 3¬öGÎca÷\rãºñº\13»\9f\ 3DèýÆiÝ>´;~\87Ô \ eÛÇÖNËlV¨b´¾i¢µâºñú[\ eê ÕÎê.¬\9b\v\12aý\10NÑoÅdÄ`Å\1f<\14yM%Ô\82ÓEY1\93ºæõÑÀk"v,X\90ÿ\ 1¨ÆÀLût1#w=
-ëæ\82¸emõEi\ 6Á¥^å\0ã\85Ãz>to\fk\bÝã\1c§i·y\9a\89AX«\v\ 2¬\ 6Z«\ f\12`ý7\ 6ë\1fÖ°~q\1eÖ\a\ e\fimÚ:$\ 4YC½\85êxx\13\ 4 \97Áúº±Êk2#Zó6¾bEó\v\8cñ3g {Ää5ãz°Î±ÀtÕ\10ÂÚ0\ 1ÙPí¬þ.n\1dPa\1d§\17a\1a0²\9ah]Kk\1e¾\18\8e5g?t\ 4jµ\17ö\93h\r¬\86Ü)¦uÄõ\83Æj\10Ö\96!h´v\ï\96\8do\86ìÁ\91Ë{l£\85Ä\19Èwø8ÁÚ\16û®U#$Ñz\ 5×Îëo)©WPí¬\16a=¹ Ò\f"°6Ózs\1c[
-Vü\80×£¦\97Õ\90úPü²Gâe0xn\ 3©Ci¹~±Úª¬ÎÂzÚq9¹ Á²¶f\10îÜ[zÚü"À:\87îýá\è\9eå8¥h\10k³þ9ÂZ\85õÇ\19Ö¿*MkëÝ\8b°N\13\8cKÁº¤u\95£íô\9eU\89k 0W\7f\13æêw^#{b\95ñè1\9cÆѽ\9fi5\11\1c v\aö9\9b}\fnÈâu\8eKãú]D5±\9a?ó§\97\11ÖL<§õ#¡6gÒ\9aVç\16sÍG3¥kN3¨\85Ô¦ZwÚ\bª
-k\80õ£ÖnØ\1f0Dj`5Ã\1aW¶;®wéÊ·=\ eíâèoØm¤¶8\ 3´i6R\8ck/1jG\88Ó\1apÝxíçzfu\17Ö\ ekQÖæ\83\98´¶\9fÎ.²âÍÓÉJ¸böá\19R\1fL'ó\1aÕúLÃÉ\11"õ\bÕP°x\1c\rk\884ì{x\82\v2Ó\f²ì´ù'\10º÷\a\8bC÷b4Èko¼%°¶6k©/\9a°þøã\82ÖlZC\85±Ãú¯\1cÖÑ´N{\19ÖöÖ\99i\8d³qT¦PY\8dQ\95\1eÎ¥\ 6'F5[Róc\18\13A´îÆ54x× êt\1cÚ§¥\7f\ 4ä5ã\1a÷9®\12×V\97\8cã4\82êÆj·\9eôùxb¡°\8e^\82³n \83\11âÃ\17µ\15J\18xr\ 6ÔJê=ÀBC¡\9bZ\9bh\90ç¡øZ\90XÝþ
-\9bÜ\ 1\13Z;®;°wѦÎ|ü\97ÛïÞ ¨N.Í#¸!¡Kk±\89Ö\1d×\8d×tnPV«°\16Ë\1a`\8dѯ\9b1¿Ec%ëÊ)\ 1»ìP\1cùÔ\19Ô\ 1ØA^ç&A¾ ô¿\92H]Y`[\90Õ8É\7fg+/¶^\10sA¼¾X6\83H\9bõ¢ió\v\84õy\87îa4\88ï\89ñ6k®/®\1aÖлç\9bb*X\9f\1aÂ\1aLB«\88\1c¦\960(-«ûåQ\95\96Ý´k\17¤þø}-1E\10þÙé³\r×\86\1cÐÉó£¡\v¥Èy\fÇ\90¼>{\16RV¿Ë׸ª`þ\8cy\r\8d$oeVëGÞ×R\96Âú±Ç`\140ù¾\91ÖEBH1þ7\9e'A\00§\1dÔHê$[]XsL \8dò$T?ôp\82µKëî\84l\97\14F\ 1¶ Û÷¿í\ exÖÓ\7fsû\83;|F\16L\9aG=jJöú6iM´v\\a^ßÐ\8e³º\86µú \8fØ ý\96X9%\Û½\15àZ@\eþ} jz\rf`\17UÌò¹}8\91z\84jlÚÜÄ=\91¾3í¦Þ\v".\88XÖ^_\8cÍ \fë\7f{Qa\1d\13RuÚ\9c`=
-ݳ\1c'\9e6§\99\18¬/6\17äã\8f\ 3É\aAÓ:ôîõíæ#X?\ 3\13\8c\fkªé\1cTq}ØÅ5·\84ÁØ\93%U\ 6VCß@\aµ&\14Qo\0Óz?nä\836\14\v7(Ò\1e\9f\ 1\92?§qS§O[´HpC^ÅäëU\12»j#y\vQ-\1e\b½Ë\9cÌKÍ5ºÌ RÔè\94Ö\95´Ö®7¤5·óÚ\1a\0\07~j\10\93AÉȲ\95\845å\ 4úàe8Äj\83u\93Ö ®·[n.0{þè\1a\8bö\a·Ó·\aåÏ\87}AÂýÒ\10Ò\8d\10¦5à\1aÏ\8dÌêî\82LõEmÝ\13\1fD¤u¤µ·%já\14
-¦l_\94\1då\ 3E}`p\bØDÿÙç¶~ñDê\99ZÀ#<Ç\7f\97 ë\e®S\17Ä-kª/^äνO,t\ f¢AÒL\8cwîM°&aýÛߢ´®aýsîÝ«§b uÏc§kX3Ë\9e0oû9ÒÝjL\80Ç¥"8\9dG±\17Î\9f^f\84-O²íúÈ°²Y\1c\ay'væ5ÉëE\ex+\8cg\89\rñ×oÌ°:ïÉ%aSÛܬ\Ðzs\98Õ\ eÓ\17z«f\9dF·¾ßó¬§\ 3¨ÁaØ\11ahË}\1f\85D\93\19V?b{oLZ\ 3®·Ynî\ e¢öøøoí\7ft\9b~wìÑ\ 4X\9b\11\12hí¸\8eGX\1d`}Öâ\83øZ\85ÍK4º$`\87nòhP#¨G\9c\8eÄN\ 5Ç\81Áb_ÝH\8d¨Þɨ\ e¥\80þº\ 2\eÓn\92òbsAȲNõÅË\rÖUè\9eF\83ÌÂú\9f Ö¿m\87¤u®0r;HîÝ«+\8cV\14\94i%ê\8d\8aÆu\ eBá§\18\0Ï©\172ð\91Ç=lþXhíM!°8Äy]NÍÂ1fkEòy\9fV\87Xìï!¯\17nàMÐN^vû·\8ejé\ 3 ¬öT\90 ¬\87¬\ 6Zë\87µÉ}Ñmî\8bZ\87\98?`³TÃÛ¾ð=örÉN<\ 6Å¢ÇpmAae\88G\86´~x\ 4kÂõV\ fÎ¥ÄóòðïÒ$ÇöÍ\11«5ºd½ú `\84tZ3®¿\1dH\1dXÝ\\90\ ekm\aY\a{\15üaªö\ eãÚ\e\13©'1¹Î\15¦\81ÓûGg\flÃv¼"à©\9d{!¹Tñ¸)¯G8råni\ 5±ò¢» lYC}ñbuî]¼\84T\fÝÛ\86°Æis\9d\89\89Í ÈêNëYÓºn\aY¾Â\98/\83B\WÞ×áÃ.«÷aLe\98÷\b\86¦\12hcL£ß\râ:-\ e)&±è(²OYÇ\9fòÚ\9aCx\12ýUÜ\ 66\Á[êlß&óF#õ
-ªEV\13«\9fUV\97ÕÅM\9bLÿ\15C\80@kz\11 ´¦Ñæ\ 3õm\8f·üÀöPK\18\\ 6¶\18ZºËã5¬å½©@õÃX¦Øhm\9b\8eë-\16ĸúc1\8e[Â÷¶\11`½Á¶úÞ+Ò:Òº{!\r×|\94Õ\15¬Å\aYOù¯¾Ü8tºPcb&69Ïá,ÁéDìHÿ\81¯¢_´$u¨TP\8aù\ 6L\±½ñ¼è.Hï²VË\9aê\8b\9f\ e¬ÿÃ\82\84T\bÝÓ\1c§\1e\râÓæ¡ÍºYÖ¿)aý\eí´\1e·\83X\85ñ½Õ\9bÖÅ\8fÝ_¬+óK{~\ eÚbU*-r4Û\83Ù\8cµÔÌÇ1º\1d\17=Ay\93¢èO\1c\ f\aX®\93\96Ï<C[Ù£¼ö¥\8eÅÚÝ9l;°å_¼þzWÕ\93¬\96}\97d: «W\9ehiÐܪ`\12\86äñ\1a>\ 3èF\bNko\ f´Þ\9bfµ\8b;¾\90Ó\11ÓÀé\1dh1(ª\13«qc\ 2à:\ 6½\1a¬7Ù\14ëc\8f\e°·l=\8f\ 3Á`=r\ 6¿5Î\ 4\ 4\1fD\8c\90Hë\ 2×ß\89¬î°vÓú~Ú/É´N¸6^\ 3°÷\ 5Æ"ié_ùm9×\7f^\ 1;=ºé\8aH¤FTo§\ 6 \88ÅeV\8b°þö\8dR^Ô^\10sA*Ë\9a:÷´ÍúÓKHõн\8d
-kÏq*\a\18sOaýÛß&i¦õ?\9dW\85Ñ_ÌÉ\a)aÍ\9dü\¯pãë\90¢:î>öµª\ fçì\88\r\9c\9b\19¬\90ÝyÓS\18ô(\8fAûäIÊtÕ`l\94×®¯}£ã\82µé¥Ö~½\83ÚQ-v5nzд½\19\13äÁ*¸.ÑÚk\8c[À\16Åñ\8b}éƧ\9b\9d9\1dL\8f\9dd\a\83Ë``\14\1e¶YÔ\bk.Ipu"Ò\1apý\98'{Í\9fÇ\17\9cþÕ6kC¿Zé\0k÷A&iM´îVHÃu8\9dÕ\ 3Xß×7át#äaÌpñ>rèLäNr\9aý)Ì\8c,¦«¹ ;#b\17\8fnüÊÐÿ3hÿÁþ\1aj\86¤ØÙ\9bQX·\89\18rAz>êL3Èyvî.toQBª\85î=Ña\1d¢Al\80QÚ¬\19\84\85ué\83\8c\aÎ9\1ddÎ\a9J>HýReÏfªWèKUûáË>\91]0 \ 3KU\1fJª±gg>h׸\89kÝõ\84;«\ e\91ª\8fÝÃ|\8eA?øSOÁ:²(¯q«c½\84w p\v§\8dÔ\8aê\95\ f\9a^b\86\865=ÌrÈh|¬\91tÛ6è\10Û\a?¼x£g9=Kió\19\8c\96\80êÀêea-¸Þ´\19\80mÈFî®òH\8cÁ&\95ÕÎj\87µø 5+\ßd¬fX\9b\ f"FÈ\ 6
-ì¦NroMÜ\99\81½gDZ>3\8cN'~\9d%\9eÜÔRÏMëi^õa\982j\ f>Û¾\83Âú+_b\17¤[Ö\16f]Ô\17?\19XÏ\87îABj\11ºg9NyÚ\Û¬½\19d!¬ÿ)Ã:\9aÖµ\ fò¬ù AZãÅ\11q\8d\1dAX\9f -õر§->¾Iijé5\96^q½q#v\85\94Ë\9eÆumîS\83\8eð\93\9eÂÍY«¼Ö1á\9d]\9d\1eNû\95W\94Ô\13ªEVcK{mX?\16\9ffëÒg¤\ fµ\aÙ\b±"ã CÌoW¾ÇËf\ ft<"¤Íip\88*\11û8êÒ°~äÑ\84k\ 5¶3{ó\85\1cù\9a\ô´w:\81õ} Ö\8dÖÝ
-i¸vd÷\7f¾¹\86µJëHk\10×8øc½äaô'\fkÎ8\1cÀãrV\88f>\97\82ÿ^\ 65µiªSÍÓª\8f(«×ùø~Opº¹·\82\98°þÒ\17¦\89\18tA¨Ëza3ȧ\97\90:E\83\b¬c\8e\13\ e0æúâo\7f\ei=h\a¡
-ãx,f\14i\1d`]½Oeóë þ\19ÞÓá±\\eãBU_Ñ÷\80mç{PKé\9b0\11\18RË°%mÜ\8eêõn\9c¸<q\ 2p\1däµïu\f{xg\16§\17§ýj#5¢úô´FØÛn\86\86õÆr1\16?Ò\88Ö\e#½å\80£5öò\1d\9eåtaLgF»ý\00uT#«\17Á\9aq\rÄ6ho
-gã\823øýh¢?\ 4þ\92ÀzHkµ\1dgµÀ\9a¥µÙÖð\9aHê\1a\9b\13yø'#{f¾\824N\vÕÌ\1eÀ\1f¾\1c÷Ó\87\86z%5÷ÖlØ\0ó h\82L=Ö\93°\86ò¢¹ \7f\10\\90EõÅO$tïÿ\1c&¤Þ\88 ©!tïl\82µÏÄtXGË\9aLë²\1d$\98Öóñ \95´æ×£ÊÿÊÎ×þ°÷\89*\8b6>&wÊý¼úZy\rmª&®\ 3®¹l\16z\9aB\15åI\9câ ¼¶´Uâ5/â\1dnM/Oû\1d\rÔ\8dÔ\rÕ"«Õ®6V¯\bëÝ>-d\86õ\90ÕºÃ\10h\9d]Ñ2
-ÉîX¾¯\91ÓLé\88èÂ\93 ý
-¨^Äê\8ck\060\17ÿÕ£«:ñ\8f=â¨\ 6a=\805ÒºáúæÌj\80u\90Ö\ 5\ 3®S7y\18פ9Í\8cܨ\9dw/>\15´+èÇK"Ì\16\ 1©Ë6H ZA\13dê±\9e\84µ\95\17\83\v2¨/Î6\83|j ©\1aºwz\11¬s}q\ 6Ö\1ciÍ\9dÖs%Æ\91´\8eÏá\91ùµ\7f\7fX#A\e\956ZÕØDÍÊ\8dbGyM}ªØ\16²\83û\1ch\96`|\94ÚÕ\9a\9b(¯1\9bÏw:\ e·¦×§ý\9eFêIT;ªÙ\ 2\993¬Ûó,¿{Øë\aÙû%\11×>\9f\8d·ö®]\15§©v\88\84.Í`ò\19\ 2\19çY]á:AÛÿå#~\96ø\82ô\85éÏéô» k\805Óú¶Fk\15×\88kcu\87u\94ÖJë\11®=¸Ýûɽ\89<!{\14\8b\12h¼kî\8cÔvþrÅ%a \8e¤&TkÞ,\8bo&\b\bk)/º\vâ]Ö¹¾8Ó\frI`M ©\9b\14Ö\10º§»Íã´9Ô\17\7f;\80uÕ\ eRø Ð\ f2È\a)¥uùæT\e_Jj_ÐÇ;:\1eD³pºMìt`3®±çz[ÊÂ\89¥\93Ñ·xÀgy\80×µ\1dr\86·\15\14{x#»ùôßóR×Ô+¤\16T«¬F\vd\96ÕN\13>ê\16ÍÐÚJXè\87\86ãEÄ
-Ó\ 1Ð\ 3+\98Õo\ 4ë<ª3^\93:N|.g×ë\99\eø\ fð\9fÖ\10@\13Öz\19:¬Õ\bQZ\v®ù ¬QZ\97´~H\ 3ÈÃ\ 4\90µ'2±wÐ\84} Ý
-Ð\83\19ü\9aÚå×\9a\9bz
-#ªàþ[W\8df\83+«{u1\bë)\17¤» ܸ7W_¼(mÖCXÿþ\bÖ\9c\90º³ÃZr\9c^Æ\1c'\1e`\1cÀú·\11ÖU¤µg9\8dK\8csÒz\bk\a"\1a_{\ 6K$\Vk{k#õ\1a8káB_ïi8¸ü:¹±\v,½½>lp@Cè\8c×I^?ïÙ|gqcÞ¿;:ýw´?¤¤\ 6T'\vdÏ\f«×e£è>Åõº,Û¨ã\0\eÄÊ\\8d8ÞBMÓ\8fg\8fcÖ8\9eáëÃ\8cÊ\87Ò¿Ïz¸F´\8fN\15ë\f ~Õ¢ü?hÿì\7f~=
-k\865\18!s´¾¥\96ÖFë
-×Îëjdsë¶\12Ùðã\e<rã\8f\15Ï\bÛõ×).
-\ 3uH~É\r\90k}E\9a±ºU\17[+\88\b멼8å\82\14.ÈEo\ 6Y]\9cõÿ;\88³.\12R!tïûç\ 1ëл\87¦u\@\0%Æå]k*BTµ
-,OìbT\aYm¨\96WO8kú\95îÝO)\ e'ø±.\15FÞ\9d\19u\ elãõ1\ f\-x}\ 6÷:V+xóÑ_\9eþÄY$uCµ¥¯\1cÁþê\82ÕP~eT\93³O´\ eâ\9a¢F\8bP\8d4Ü\82\rÓ\8f!¢\8b\1a^m\12W\98\1dëá%Tw\ 2l\9aå¬N&7\91Þ¿Ì:\17Ö÷\89j\98`]Kë\ 2×·$im´&q\8d¸\16^\a`\87©Ím\91Ù;jò\ eù<<\ 3å=Ì¿Úê\17Åf\9f*¢¥mØþ¸\ 66Å\e«» 2µ\82LÂZË\8b-\17dµ\96õÅ\81õïV°¶Ð½\18g- ©\8f¦\84T\fÝ\8bÑ ËÃ:-Í%\1fd4r>n\b\ 1XÏÉWs¾\94Ô´LÉd5ä1´»cº=ü8¯\ 5×\9aâNée6\ 3\16¼½á\11hï\8d\vTj;Ä·;ÒbÇÑ"Þ\17\91Ðç\14Ó+\9fè
-¨WH\9dPÝe5ÚÕ4\fó0\18E\8aj¶õ©\10\9b7Ïn®\e\ er\94F1\83HÝÒ\81ÊC\ 1<¦ô\12¶Åø·#];\87µÑ<U\¡«Ñ¦<\1dÛ\eX\8eû×z\80\84µ^\8eµ´\1eÀ\1aimÚú\1e\95\1c\88ë°Ë\f\81\9d\ 67#³ý\a8 pú\ 1\97g\bñÑeQ\82\9aHM\9dê\9a
-άî&ÈÔcmº\95\17C/\88ZÖ\97\18ÖKÆYÏ$¤Z\8e\13L\9b\97\9d{5¬¡Âè>\b\94\18Ç®uÙk\8d\e\9dªZ4V(vYÔKØ{\87²ÚFƺ\90Ás7¼HÞïÉÀ\80k~É_"\8a\rÆÄ\0Ø\a!\13*vóu\81ý¼í\ 5[¸\8f\17Oÿ§\15Ô\9dÔÝ\0Q\aDdµÛÕ\81ÕÐ*äæ2ì\ 3F\81QÃÁÖ:\rÉûñxV¼\1ajYÎz\1eÊâÕ\9eäu8¤;\91Á»gk\b\f}\ 3wPÛ¦¾×9ªQXÏÂz,#k\\13¯\ 1Ø0½\19\90\8dÌö\9fà\0ÄÛ\978\vþèè² 6õ\871±\86\9aiî±u;·Ê\92ø\e:«{uqê±va-¹ µe\rõÅO\ 6ÖÿÎ\16Ŭ.Îz\8fú\bÝ[
-Ö©Ñ\9a`-Í{î\83\94Òz4ÆHÒ:£:V(vÆøDØz§ã¨÷ãtïôÊ\89Çxm¸^ϸÆ\1a\9a]Â3\97i\8a\9d\1et¶\17ÆÖ\ fsB6í\vóµ`\8b\16òêé¿©ý\91Æé\15PO¤FT\1fñMïn\81lÑ@\10Ïî\ 4T¯\r5Xì\9aq+ÄÄuì\ fÛÊqHÐ\8fWÏ\89\ 3 Ï\13¹K°Xÿ9-\92©\ 5ð\ 3\80çôô¢·\ ee7\89mÆtü\9a$¬å¢\BZ\13½Ê¨\82\ 3qM¼\ 6`WÈ\1eä£ø\ f°&ñ¶%Îì\1f£ËÂ=ê\bj"5ö=Þí;âon[,Í°îÕÅ.¬[ß\9e\94\17\97³¬Wß\f²ÚÝ\ 3ÿ\91`}å
-¬W\15gÝB÷,\1aä\9fV¬[\851ú ^b\1cÍ\9c\ f\12B\10Ö%£Dñ\ 4/½³ôDKyyà~\ eb\98n\8av[ti\82ÎßÚ\94`ö\b\ f\82mI\1c\9a¹F\81ØÌk´CN@z\bn,à\9d¼§Ëc¿Ü~ûs
-êNj|[\11\a\84-\10c5õÊ\84f\19çµÓz]\18f\84Å+n\85z R\1c=Ü\8c¯¸¼0 "(\15ñð\8c©¼ä .\ 5¨i¥t\a²}
-kBa\1a\9ee÷r-\96,\127Qî\87/\fÂz\bë\11I\ßYá\1a«\f\0ì\80ìJf#³1Ôª¸ÈS\9eUqfþÌ\16´§©@49\80\1a;Ô-²°ï\1c¾\15Y-\86u¯.öV\90Þ·\17sAJËzØ\frÉw\ fÌÆYcè^\9c6_\ eÖjZ\9b\ f\12¥56\84Ôë½@Zkóô^Du]H¦\95w´\9ft\9dï'½\aÊ8í\96¸MÄÉíÂë»)\15§ãú!6f\91EíJÞR\1f½L\95ØÀëý\12\91\1dyí\eÃpÃãÌZ^;Ï ¥\85Ó§Ú®÷\93\11Õ$«½´è \v\84ê\8c¥{Û\0Å5µ\87éýnmÒ±czsu?B\eò|=oØ\86q\1ex\ eÿàyàÛEÿ\bî\19\1dþ\84Üß\ah\93\97b:}í@X/PÖ\19×w\10®ï\91ö¦Èëõö¡\19²\ 3³\83Ì®r"\88\aW\7fu3äß^_\174 \1f@ý\80ùGk\10Õ\93¬î~µ\1aÖßh¬îÕEq¬Ka\8d]Ö\8b,ëK¹{`©8ë\98ãTÃz\90h-°V\1fd(gÚ÷|3¹\8f\8fÓ,*cºÞx·1ö\80¸¹e\ 5÷v;ôC¯\93\83\103\7f×\ fWr9½áWyGöv\8b9\9aá5\fã\15\8f3\8byåw´ßÞÖÓ8¨G»\83·S&*Y ÜØ\880Zc¸.\9cëÐÍë\99Hq\9c¥ÒMÐ\82\f\8eÁè\fѽº\ 3_¦p(ð\81u\ f\94£ï\8aÇ+Ôò91²É×\ 6Ãû^þúYX/\80uÑ\15â¼Ör¹ðÚ\81\1d\90\1d\98]Èlû9Ò\85^ðö¼\ e\\17\9bJNC¬z"5 Zdu¯-^O\86õ\17{*\889Ö\94\v\12\\90\v¶¬/Þî\ 1\86õ®\bë7/\fÖÐ\ eÒLëæ\83@\89Ñ¥õhc̳!×Z¥u\b·Mù\99Û\13©cv"n»»Ó\ 6zå\1d\13%JÀµ\95\1a7ÐÛ>^Êó\aº£p·\12l\ 1§ö\10Ü\19\16V\83ñZG!3\9cSJ駧\85\a'\81Ô\84jß\9bS\8e\v©\11¸¶Ò\91kÖD½Æ^\bwó¦\ fh\13Þ\8e\8fÆÛq\ 3+Û4\8fÃ\1aµâöRì\ e¿\9f\r\8a¨y\ 1Ó\rËw\8e\8fa\e?)²F𸯲¦fu%¬\8b±ó0\1f\93åu\0öý\ f ²+fWÖÈ&¸\98³\1cÉÏäeÏèºÐ\17\aQQ{\87\124;ZRá"«\9b\ 5b¬\16ÃúJ\19^¬\85µ» cËzõ°þ7ËÃ:ï\1eøÖÌî\81ç\8bÝ\ 3?¯<ëzÜ\Ö\ fP\85Ñ}\90(e\8cq¶ÆHÒZÓ> Þ¶\\e²¥B5\99Õ\8aj\fÊ!\99â¼î¸\ e©\93\ f\86ö§\8dz=\17\rÁökªÃ\1f\87ð\8c\11¯E`k\ 4öIß\ræËy\8b£K\1f\9f\12L\9f<ÑA\r¤\ 6Tã:Êîê\83¬¦ö\ 4nnôntÆõzÃuüt\8aY\96|;\92lz 4[\14§ì½(Á=w\92\8f\x\13Ð3t§\968¤ÆÁ§ÿÊ\1dÊlý°ÜÑ.*\92à~Ãó`FX§D§\9bÒìyâµ\vìµ÷\ 2±¡\ 2Z0»°FüG¹\8c@Yîð\85\11Ë\16\ ffA\8d#DÞ\96®¨\16YÝíjcµv\82èðâ\1f͸ Ù²>\8fúâ*a½xQÌ\83å¢\98\16\ròÞ÷1ÎZa]f\83|<\82µT\18Ý\aAiM\ec¸Æèë\ 1]Z#¬±=¯\9eu¢èÄ\8cê»\ 5Õ·B\0\86OÞÜ#Ýo5\{\92Yè,\ e1\9b£v`ô\ 17\87°£\1e»j\9bÀ\9d׶5Ì\90\1d\17=\ 2\99íÈ\161Zñ\8e+ÒêU\f¶¾n\ 3·B\89 \8eÍè\85u\8dÃ\17öÁ\84Q\16mÇ{(ø\90p7Æb^ìF\89\9d\17\95Ú.á\9d~\95]ä\ 5Æ\ 4W8neûL9y; \e\89\rUH<k"ªka=Bu
-á\vú\9a\81\1d¼\99U3ÛÕI1UºÚ\13\87\9c\1e\99åô\ 3÷\872
-\93ÚQm\16\b°º¥íõê¢öX#«£\v\92,ë\8b\ eëÑî\81!¬\8bE1%¬ÓV¯å`-¦µû *«\1ac\15\11\82%1\84µ\f½ÄH\89´\96\94\92\13ï˨¾Y\97&ÙÖ¤´/é\8e; Öx/Ìï\86êÌ¢ã=R\9b8KtGä5\ 3Û×\86\9d\98Ýõ¨¿z\ 2×»ëÒ` µÇ{oKñÞ^X¤y¡Ò\9cµ[\9fp\8d³\17p\9b\17S+É÷°\9bÑúOÖÌ\1cävp\84±\8c7¶»s±\8f\1cdÀg%tÉ8c\v\rÊ\1eªmÝ\16¹\87ÿ\ 2öÿî ¨Öç\82ü÷"«\8bM\ 4ÂëÐ\eR=6\é\97m+ÙÏ\86\8b<H\93á\9bäâS\88\e¼.`\1e\1f8]vÍÜa¨¾YQm\16\b°Z[¬GÂ:» \17R_<ÿE1\19Ö¶ÕkËR[½\fÖÙ\aQV×°\16ÓZ|\10i\b\895F\9ac¤ÍÛ"\9f|ò\10®\120Vïà \97@jGõº\ 1ªo*vG\87ÅÑÍ\r¹\13Ý\10\9e1X¶\r\ 1¬À\90xD¼\ e{\ròîö¸à\11\ f®v?\1a\16Qætï\8cê\r\11ÕµEë\93C.¯ï\eôòæ'\99·ÕÅ·ÛLÊ¡ªç\1a^p\84+k»>¡Ô\97\ 5µ\81ºLé(Í\88\9b\99\96Á\15áo\1e
-·÷Ü] :þ7KR\13±c¹Ñ\84~m§¯\89\8f<föúÌlÜ5\½TæS<ó£;'\á\80g(ó¦g¨ï\82\9fP-²ºY ÌêX]üOT^\Â\ 5¹\10Xÿ/Ënõ\1a¯`\9c\81uÚ\97[\9aÖ$¬\vX\9b\ f¢Òº¬1\8evÆôÉh\99á\90Wx\1f&Ç\15?[\8cÔà\7f ª×2ªÛ\8fö;Âé\eà\b±§«_äµ»!\1a\15ld\8a\ 3j\83N3¼à\1fæ\85àI_ãb\ 3Û\a\9c\16¸û~ǸÔ](m[(½ë\11b\bkTk\ 5Ö\vìÂé;ü8°Ù\r¹\ f;Cè9\96[\9f7Ô\9cö{1\bz|J`ã\ 5ëDµG2´Ç§¬ó\91E\rQ¥\80Ì\ 10¿\83
-7vgÜ ß¹A\e\1eIöW\ 5TcB*\91:ï:ç\152¦óo\v\12\e¾\8bøÌ\vÐ\1e0Û~\9eñ½1Ðw\99Ã\17\86ß?Ù\11#N\87\97\1dù\84Úí,¨6\v$±z ¬k\17äüë\8b«^\14³\1c¬y\ 5£Àº\n®°FZ\7f¼\f¬Å\aQiÍ5Fh¶\ eë\18EZÛÀ\9dú\1eü±}\eç\91o"Q\r) \ 5ªû\8f¶qúz:Blá5º!1ÑLµÛì;6Î\1doØP\84Ô\11¯}³A\ 3¶\85ªÂî°¸È]é\f\e(i_\8e¹G\10\18»\0ÕÁ§õz\1a\0\eí\90h^ã\8b´A\e\9ff|7æ\97Û»â3"=.\16èÄÐ{Q\11\1a0í¶K\ 65\96¡o\82Mã7¦\13\8d4ݹ\95\89m̶s×\1cªÃ3âÛ£SIl"öíôã\eA;3;øÙö6\19ç\90VqR·»\17\14\1ex ¶·§w\1d\1c\18ºå\16S^\1dÕ"«\9b\ 5²\f«¼8ã\82¬Ö²>OXÿQ\rëÁ¾\\82u\br"X\7f̬6Xÿ3ÂÚLëJZ\8f\8c\10ª1\8a\ frH:ÎL\1d>a;\8e³ý\ 1;»\16 ºsúº\95ó-9Ó?wbw^£\eB¼^{ï¨}¶> Sx\7fzÁk_m`1Ø\a\17m\ f£¥f¾,Ç\93½wé\87¶5Ä¥\94¨¦*WÕôà¼Vy}/=Âreot7æw[¯äy-Ï«wôÌ`â$;{¾e\8e»1\ 6Í\18F\ 3´Ìä-\8c\9fðð^fN\1aIl\97·ø\96@¯\ f\vQ-\Î\8f\8a\e\97!62\e¡]}\86öÑÑõ«?Ô\rü$^þ\94\1d\94 q²\9c\1eqÚ\1e¢7Áí,¨\9edu³@æX\9d\84uvA.Ô²^ÅV/[Á8»Ü|¯ÀÚ\v\8cïT°\96
-£ÑúcAµ
-ë\0ëÂ\aAi\9d\9a\8bMç\1e¼¬)ùZ\1eÃì\8fj\1d\e¥\91\13ªõ\85IH-\9c¾Ö\8f\11{ºóX^\ 3¯ï!\19²ø(Ö½\f§ãë\8f2¯û*\9a\9d´\16ÜVÑä\95ap`OÎþ\90ëí\1f\19\8fàsc5ç¥@\89ë¶\82\98\81×kb#oõÒñ@q7V\1e¤üWoOÝu\91\8ax©y\84Ï°\15\83A}«(êï¨e¦\88¾®8übV\0û¶@J>þ\ e3Bõ\10Ô3Èæ±\99
-Úøü0hÏ0;fT!º\87§0\aóeQ5M\86®ÉÛogWê&s3o\10\ 3¤£Z-\10bõXXKyqY\17äS\86õñ\bk\8bHý\ 5Â\1a¤õÇÀjtA
-X'iÍÍÖã幸}Jsòíe\9e¦_\82SMü\81|\97[úcØ\9eÂ\8dÓ×Ð1`\e¯Í½6^ß\85\974\92a®yÁ.ú¸\93×y½\ 5\ 6fòfp\\87\83hæ\155\10ê\r¥Øí1,%\8e\96S^
-\80º\86e=y¡77¾p\84j^Û#Z¸ÿa\98 Z»±Õk=ýlè\8cú0\18Ô·\18\r\8cÓþ\1ev-\9døf¦VZ lã$\9fÛéAU¢º#ù\86ÑÉ\96\fªl\18M·fÃÊßZÈlû©\ 6ÿ¯\84ñl/\ eZSEå\0~,¹;æ&\7f\88êíÜQ-²ºY Îêl\82\80°NåÅÂ\ 5ù\14`ËÍÙ\ 61Xsê\9e¯õ\82v\90@ë
-ÖÑ´NÒz\81\11B°\96\9c|\83õ\13O({\10Õ´8â\811ªÝÚ\12P_\1d\ e\0»ñ\9aª\8d\98¾\80u®T/Jý\vk@}\1a°+^\8f¶ÍVû\16öaÀ7çÄZþ`\91\95ò(µÊX`l uÙ¤\16A\19x\1dg¬³û\90ìaî·àÖ\aî\80ç\96âA\8bZü±\f\9e\9fE\17Æ\1dw\ 4ïC%5\80Z }My\14Ú\9dØ7ôg}\ 46J[!¥ÿ#\91:¡\1aA}}u"µ\13³oº9SûÖHí\9aÙÁÏ®{%\17\9eªxÀe\83ð\9a\83/[Äi|Û1R;ªÕ\ 2QVG\13\84ZAFåÅ\91e}qaýï/\ 2¬u\aãßN°î¦u%\7f\83.H«/2¬\93´\1e\19!¹Ùúi\\16h\81\16;\13«\11ÕqoÄÝ\16ïr\8b·aÊûR\ 3õ7WÎ7ìLÿ\ f\80½r×\81\1dr³\r7ª\rP¹\8f`A\ 6W\90º'|û´çC\r\16Îæ\8d³eH,g\ fƤ\14ñ©\91Ô¼\85\ 1\a\fÆˤ\8aNÞPnL¥¾\81;<¨â¥Þ÷q\rm@lê»HÏÒÙ\16\fò>ð\ 5\9b^ÃÚ3ý\9báà\93^\1fõ×W\96\bZÈ
-Iû\7f·.AjEsíÃ\10¶\v¡\8dmÙÅËJ¨D\ eʸ±\1a°¨d3®\1a¬-)=è`¼9rº?Eågã¨\16Y=Y \15«Í\ 4AaåÅ\8bá\82\\ 2Xc\90\13,Ì\85
-c!\7f\93\85µÃº\92Ö\8b\8d\90\ 1¬÷YúÐ\ ec5£:nc»\a\92¸n\91ªbï\98·\1fmãô×á\b±Û}'¸&^ß\8c\15£úm¶:pá\87\8d¦Êë\87\8b\rá¸\14kçp'MX\8dTNßçI!\13ÕVTDR\871\8c,k«à 0¯ç\16\ 4ÊÙYo\98Ñįûô\8aÿ\9d\88¿è\8aøc4½éxû\85w\9d$+ô;f~\10¨ãÓ]/\99Á£þ:wD\1cØè \eµÍf"RÓçá¤6<\7f\vN\rî\8aÚ5·\vhÏ0»(äòûÔ¨|\93¼¨ü\8a\13ë¬,§õóà·\1d!µ£Z,\90ä\81\ 4\13Ä\85uí\82\2X·}¹\v<k\1d7?YÃ\1aF\18Õ\ai´þ\r \9a\84u\87õ?\ 6X;\7f\1a\8d\90÷ÒÒ\989XÛô\9d-V\1c\ 1\88P\rUÅ^/\96\1fm»Ù¾Æ§ß~í¶Ë¼þ\ e¾Ðò\90qY\8e\83ßàPã]4ÈkÏË\ e{\fã\ 2S<aé\81Æ\ 4oñF\994(dó/\14\85C\16@ÝP\1c;yo#`ßy×È\e*nÇÒq°~Êú=ÿúÐ\f?Cl/â\8d_|°¤gâ\r%5úeWÓÃýkéè³þ\9bréØ»Y\ 26<ò\1cÚf4Ý<$5\80ú[\vOÄvmk3·Ó»ÓÈdb\87©.\v\fë\ 4àBÅ\17\9c¹&sþ0®G[Ê\84×Dj@õ$«\89Õ±\13\84\84õ\ 2\17äÓ\83õÚ
-Ö\9egýþ\a\1fý`\ 5Ö8oîÒºÓú7\8ajeu\82uá\83\90´®\93MZ'XcZ¾/Áµ²"\11ÈQ}+ \1aZ{:©§\9b쪫¦\9fo?Ó?_\ 5À\8e¼¾1 $¿ÛÂ=Wù¼q¯éZ\88\1cÙÀ\81Ù°á`\v¤¶Ï®èð\98àÇ\ 1Ó\9blÅ([ú±¦\b\ 3\ 6C+\82»\fà¦\8e·t\14´ÎȬcor\1d\vU¼\ 2HÜtqc!XÑP÷÷\9eAã\85Wô\1c\v,©í%ÌÞÂ:¦¯\92C\97M¿røY\7f\8d lsD¾\8d\9f \Fæ8\81U\9f45|.×.< Üe§aåmDz\07ß\8cÆ{æ«\ 3¹¦C\ fN*°\82 \a\ f-|fy\e\97ÿp¾\ e¨înõ$«¡\ fD\rk4A*a½È\ 5ù\94`ýø\1c¬i*\ 6|\10¥õo~3\12Ö\15¬IZ\17Sç2ÇÈ>\bÃZ3\98u\0OB\98cW\ 3-c3TSk\8fýhû\r÷\15?rïé]ǼF\ f\12«ìá,´\ e¨g\e\rì´Ì\10ÃU1¹½
-}÷¨J\8d3Û\88« ã&è\92Ô7;;«.1¿«k`ß^HZ"ä¸õ\8a^k\15E\¼3\ 2]w]\12¬¥'ì5<<e9ïf|h\88¤6»L.\18áôWÃ%\ 3WÎW\8dØò¬\97\8b\a\1d\11"6\Cv½|Ç\9f\93\81O\ 2êøÙ\8cO\ 6÷È'Á\92äbfS\93vm4\8d½§tQ\94\94.\\ f\1a\8b@[ê\e@jBõ\8a¬nýÕÈê`\82ô\1eë ¬/Ð\ 5ù$`íyÖ¼0÷íwßÿ \87\83hï\9eø \15\7f]\bk\80uòAØ\bI5Æ.Ý\aaX[\bóã\10Â\1cÇ:\12ªÁª¾Fº0¿®·ÝW¦\9f.\1e¹ï\14ØÈëðNk¯\90K\9c\9b\bn\ 4ì5²à\80#X\1f1bo\82-\aiÍ\ 1& {æ$¤M>lëEקH=ó©!^¡\98ýHÆq\ 1lnLË^þíx?2\es³Å5VÅË\8d:XÁ\eZ\fþÂÃN\149Uþ&T|3ä\84Ê\ 5\93®\98/Ù\19_;rñàÕCĶ«Ã¯\95oû\83\92Ì\ f\aõ5ÃOhô\99!¸\vt#¸ç~Äù½%UÒg«íù½æöPXêª\19ÓZç\85×\9d«\18Õ\9f¿ò\8a.«KVg\13¤\10Öçï\82\\94\ 2£N0bD*î`<ûâ˯¼ÖÂA>ð©\98è\834Zÿ\1aQ\r¬®a->\b´ï¥\1ac\93Öè\83\98i\1d`m«¸7oJK`2ª)\87«%\ 6¸³%·Ý\97âéw]»é\88× \91à²vÁ\99thP¤¨ÿ01»Èô³\1dY\96
--©\92K%\ 2×\9b\90t»F%©5\b\aTní\1a§Û¹¼\9bQÔ\96÷ãMh7ÜÀ\9cöV\8boÐ\81®\v"v!±\83ùZ\1eò\87á/næ\a\166\8c\ 5vÁ|1\9dxí\\ 5\ 2\9bJ\8eNl3\8eùÜh æ\11ÛkÃ\83,ô£\84\ f*6ª0º³êf\93)¿\ 3\14?åÁ£\99\90\¾ÓÜ\9e\1e\98Ã\9aê\0ÓZç\85÷\1d!µ¡ºËêÉ®v¿Ú\rëh\82\8c\85õ¥\855\8f\9b\87å\ 3¶Ýü\99\ 6kLr\92FkóA\88Ö+¼\96ÿUVGa°\9e\95Ö\1f&i\9dLë\ 4kf5d \8eQMýò_Ãû®Ýh_У·\9dÞtvÏQÕè[Q\8dØ\99)\8bùÕ\7f\13\87DÝ\19\f\11\\935\8a\86.Ò&=G\87\83í4\87Ã"Û\aæ\aÛÆõ\90ÞÌÍìö«\ 3ñ6fã\b\8d×¥\97ZîÐá^\9dØsAÀ.<ªª\8ap\v8\ fÆ\ 66?®\ 1óãªxÁÈÕòy9xõèÅ#\ f{3Óði\7f\1d]\14éÀ¥4\0uñ0«?«ø¨\eÁ;\9aL×Íý\98ó@d|<\87CÅöPÝ\99¯§Î`Zë¼ú¾#?\1cBµØÕ\99Õ`\82huQcAPX\9f§e}q`íyÖ²Ök«ÀúØ
-¬\9fsX{£µ\98Öè\83\18\81Õµ°Î°\ e®õ\ fص\8eý s°6Vë®\11ª-\86Kü\ f\7f\b\7fIn»Ïã\91\9b®¾ç:°¯áë:\9eq]ì\ 6\95\80aÌ\ 6\r\91\98Â\1aÂF\a\11\93\1829\88µ[;\vj\98ý ´\94òÅùzúËd\v\7fHÆï|':Ô^Î÷wÚÞjqU<Þt1è\92Ë\1e\ 3»Â¡¦\10jx×W¤þ\9a;¡_¦ëåÊtôêÑ\8bG\1eöh\88\98#\ 2OûÂk\92G¼]L\ 4jÄ´\9397§x\87Ê\80ß Þ\80müIã\87\1a~Òe\89=5#Þ\1aðìÅÔðsX-¦µæô\15&uGõ_\bª'\vdêÙSVÿ'eµ\99 Z]Da}a.È\85L0\ eaݶ\9bïÞwàP\87õ\vg:¬©wo2Õ\a1Zÿ* \9a\85u\865\95\18¥!¤\uΦ5ÁzÄê\16\82ê\v»F¨vÿC_\97¾Xßwõ=GÀ\96\v{qA\9emBtY\ 1Øl\88\18°Ã.ê:ê,\ 6ä`ZR\bKºgÎû \\15õ½ºÂW8°¡jV\81\91\1dêk¬\82\87\16Úg\ 1µ;ë»\b=\17\85Äv¸\98/\1cÊw\ 1\ fôý\}5V I´}A.\97+äüe;úÿüêi\17\8f<ìÑ\10ñ\87}xòá¡\87þ\0Ô\ 1ÑéÁV=æJ\82\17&\93_Ü£\1f5> í\11X¾Áp£Kº"°\90\9dÞ&\96Àt»>¾\f¤VT7UÝÜjµ«\81Õ\93a\8d&\88\bë\89Õ¿\9b\85õ%\81u\15\91ª\vsï\9e`ýÐ\ 4ëí\ 2ë\13\rÖSì\9e6Z{\85±ù Në\8eë_9©\eª\93°\9e\85õ !\ 4úAZ\85\11`]\bëÎ궱Kã\9a´Y¯@µù\1f_®o<?ý\9eû\ 2ßs\0l¹´\93\ f¸ Ìã\97ÿõ0hÃKi0Öϲ\9fB\86]\19\8f3\e\\86{5æ@Mt\88\7f\1d\84v$6Z÷Ey5Ê&\ 2µWó¿\ 6w`(ûZý\ eÚuðé\19\r*ð\18f|á\eÂ÷smj\ 3Ã'{¿^\14Ñ\7f\11\8ea»]=íâ\91\87=¾\9c}\83LwH\14Éofð¼D\}\ 30\1d[\bçÏ\98à\ 4n¬\fä7\ 1¶Ûã\93°ìn\19<'\937?Ké\11¦¿ü¥/á\8fGDuGus«Å\ 2\91Ú"°:V\17\97\15Ö\9f,¬\8bíæ+°~`\82õc\13¬÷\1e8tø\98f¤öÞ=¯0J§5JkÃ5¢\1aXíÂ\1aa\9dK\8c,Á\a©`Ý\\90\92Õ}\rÌä\80´\f\90\8cjò? \ 6Ñ9\1dn<½ç®ô{.\ 2ûk(IR5ç\eÅ¡ëÿÚj0²Êõ[[åØy~N\91¹\90\128Ò`÷,¨á\1eIÓÔþt*u\17;°©XFÕ2(%~\13{âÂ\1dHU<l»\b=\17Ð%W¢¥p\86Án¸®ü\86\ 2©¿`×\8b^-\7f^\1d¹~ÚÕ\83\ 2\e\r\11\7f! ·37Íì],8ÔÌéâõcÙ3@x\18í1£éêE?nûQ\17Oi\86sº °:ò\11¦éï\1c1\rÎ\94üx"ªÅ®&V£aMÕÅe\84õ%\84õõ+°¾íλ×L°~d\82õ\13\ 6k\eaôv\90î\83ü-Ië\80kGõÄê$¬kXç\12cóAÔ´öv\10í\ 6\99,k\11Ö\89Õ\93\ 5"\ e\88N+&T»ÿáÆÖàÎSdû=÷\ 5ª9~Õ/íº
-\16<D\90-h´\12°Ë`?\8b\12\19G#\85ÙÞ\18¿Q\853[1ñÛÁ8ön¨ú\89cO¦âUaÎ\81\rwäµTJü:6Q~¹*ùÂ1lsÏEá\89Äo\v¿1r\e\1c\10îÅ@A\91Þ®\9bhk\17ËçÚù3<íßÈåÓ.\1e\14Øh\88øw\v\9e\83aÛm§«\99ÓÁËGHû«Gjl\8a½\85é=\85\ 1\ eØFfÇ\9fw(\ä§!@9?"Ù\93\ f\r\89WW\98¦¿0b\1a+\b\81Ô\86j·«{m±³º\eÖh\82\14Â\1aÊ\8b«sA.\1a¬oTX¯\9f`½e\82õþC\12\ eÒ\1a©Âh>Ho\b\ 1Z7^ÿK@µ°\9a\85µÁZ|\90¹\12#T\18\11ÖS}qrADX3«»[Ý\1d\90\96\ 1R¡Úý\ f¼óàÖóC"éJ\ 2¶c\ 2Þ*\97ò\r¹6v5\8dF\16%G\8fbå¨ÊÙAÞÙ\1c¹\9cøY\18Ç!+%¹\9cü\9eÀwp\9a\93\8b·äÿ×Þ\9b¸Kv\14\a¾`\ 3¶\1f¾ì \84\84¹ \1a´^UÕ©S\8bØ,·\90\91i$\10h\90\ 1Ó´Z\8d$¬náV\8b}\a{\80\19Ûãm\9e=cì7\83×oüx\1e{þÀ\97\11¹Å\96g«º}o\8b\f\7f2RÞ³ä\16¿\13\19\11\99õë\9cÓ,=6gZ\90\88¯
-ߥð¯JØ\91Àîð2\10W\ 3AÄûtê\a[\82\ 5\12Ü\13)}§\96Àì\blj`S\87H®p§q!\1fMe[n(¥\13\90u6¡%E\8c\8b½=lÊ*3\9bÆ×ÓP\9b_j\9e!¥û_.!$¥¹c,µ3M\93¼@ö¤öFuFurW\vV£ÃZ9A\92a½\93\17d\b¬íß`|·\86õÃ\1fûøc\0ë\v\0ëp uL´þ£p¢utZ£\1f\84\98Ö@ë\88k\82êhVGVsÃ\9aÀº¸ç<øAr:Hp\838X\87ø"5¬)«Ñ\ 5\12= a·"E5Û\83º\88\9aGUï.e%ÝÃt\8eú°óZ\¯)KKR\1a\1c{\ fɾ5="¿Å\7fn5ï\11+\1c \177ð\16OX\90\9b\ 5\1fЩÍrÉ©>=æ*Y®æóbþ~\9a\14Ãì&é¢^³Ì\9cÄh\1dIð®)\19ÿ5\81ÝQ/\11>¥5R©\1fMÃMj?Y\80Ëwx¹=HøÏ@ì\blj`S\87ÈF\80Ðð¥±t\ f\83Ó\94Ò\ 1ÂÖR¤S,\84ëØ@òûQd\93¾ÍãÝ'V÷\17ý<&¥sÖdú\96\13Gf"5G5u\81hV\a'HÙ°>\11X/\96«Í}\bëß\8c°þÌùtì\1eì7Ϲ{yÃyÌ\añ¦5Ð:âúÿ0R'³\9a²\9a\18Ö Ö\1d~\90è´Æt\90\fë¯}õ+!¾\b^\100¬\83\13$³:z«½\aÄ@uö\7fä\10Ä=ÔDº# µ\91î&«Ú\19ÅIJ¸¶4\16¤Ôrá¦U\17°ù©v\ fwì\11ëß¹kì\15´ü\11Ù\981#Vb\89À\1d\9b<þHEÙMï)\80Z¨\9f\11J \11<Û=u\1f\v\ 1\en\86ìg(VÉ"õ=~u}W\98*Hèws\89Ô&À¦\ 66u\880_\9aÈÊÈ\8cfßÍ\8d&WË ½à¢3\vóê\84\8b¢w\9e´\94ÙÒ̦\9d\9b\aû~CÔdà>\1e\115eÆ4£43¦É<ÉëcBê\8cêhVû}\8b\8aÕÜ R2¬GzA&Áúmo\7fG\80õ\faýÞ÷\ 3¬\1f:÷ðG?þØ'?\95Nr\82-\8c!wïGtÃ9ñ\83\84\ë@ë\7fÿ?\\12ª%«\89a½\e¬½Ë:\1aÖÁ \92Y\1d¼ÕÁ\ 3\ 2»\159ª³ÿ\83¬\96\92\8dt;\13b#Ý¥\80\1dmlb\98\f[\86F\15X3K°\flþó"\1d¿/¢OºPç!Û\99Í\1fPFeñØ\v¶\8c( \9b.ç\99JrÃé¾ì¢V\19qq5[\8aà\1d%ç\94tOi`Û\15c5êÛY1\97\8bë;ý\A6¿KK@6\ 165°\8dÊ\92¾$ØÎÑ\ eòáäæ4¡´\82³µ$).S\14Çup U¶0ìbÌK"û\9exx\84+\9e5µ@é\9c\90\13ý\98w%R\a£:¢\1aÍêè\ 2Á<\10dõë#«£\13d\9f\86õXX¿ù-·Ü\9aa}\14aýë\ 1Öñ\8cÔ°\85\11r÷¾\95`\9d\9dÖ>\1f\ 4Më@k\8dë\7fר¦¬&\865s\83ðä=\99»ç}Öþl\10\1f_|îÊåßýÂ3Ñ°öN\10ÂêdV\83³Úÿ\12=EuÞ×DB\10\81Óï6l$cU{D,»¹´J\88\94\17\1a\1eÛÄ|®Ìk\ 6l~^=ÿQ\ fk?\18ý%¬îÄf\9bÓ|\85-bUܯ)0C\rC½\9eç\86Ó6C\91\83:s\9aF\11xøN\86\13:\80½\95\15{¯¨\90\ e_ñ|]\11°º\8b\80\1a¸|ÆË;\83\84ÿ\fÄ&À\ e\ 6vâõ\82øoVâû'\85úÕ8§É4\13\84¾w¼h~ç)K\99-ÍlÚ½d¸íÏ¢ÑõÌߦ\17\ e½\94Î\13å®»Ø\97ô]Þ¨\8e¨Îf5º@4«K\86µ\1d^Ü\v¬\7f¥\ 4ë3\ eÖwgXÿÆ\aý¯\ fÄÃA®\18ÿ\93¹\98\ e\92·Å`>\b\9aÖÙ\11\82´þ·\7fçòo ÕɬFV[\86u Ö\7fù\7f\17`íã\8bè²~æ駢a\8dN\10ÆêhVû_¢\97¨\9e\87\83]î!«%Ïé¢\89\14\89\9d\80M\13E¤iÒ/$>F\9d\ 5`[\87]\18;\ fÄV\ 3{\9f\81\89iiæÚ)s¦SÓB¶\bBªÕ<±\9b\8a ¦A\84B\0ÏðN `KCÐÎÙa\9càñM# ìN\ 2ê\ 4éÛ\98$hs`\a\ 3;8Dæ9\1dtÉ:S\a?âj&\7f:\97\9cÓ\14ÒÚmTL/L+\14#K<¡[MX\85lù±\96\8e\1c)¢çÕª¡ô9*Q\9aa\9a\7fI\93QíQ\1dÌêà\ 2Á\9c=\9bÕ{4¬w\81õ\9d\14ÖðS1þØ=¿\85\11\121\1d\ 4\ fIE§uÌ´¦¦µ§uÆõ¿Y¤æf5ÚÕÜ°\ eÙ :\1d\ 4\7f\82 »A|\9eõw¾ý-L³F\975zAB*Èg\7fç3ÞaÍY\9d< °\ 5æ¾û8ªã\ eT¡{ÑHb"\88Í|"\19ÙÜ,é¶m\92\12,\98yeXØì\bd±gLn?°·\19¨]\ 6 ÓÌ\9cæ\87È)'h) ÕR½e\891÷\99"\97·4\96\98AÍ\16³4\86À$2;};\15°\95ÕjUM»\17H¥\8a¤\8e\1c\b\98~\87\94\88l\ elÉkVYâ\1f^Ñ\:\19ûè43-Ç\91Lp*\8bÁð<aKÈV\8b\ 2Ö½
-̼ßã\9aam@Ú ´la^rå\99ÂAýÎÛ¼Q\1dQ\1dÌêà\ 2\19Âêë\0ëW2Xß\f°>\ 4XßÎa\9d÷\9b\87Ü=H\aÉ\11Æ\98iMMëè¶\8e´\ e¼Î\92I\9dÍê\84jiX\13\9fµeYSXÇd\90à\ 5yú©Ï{Ã::¬\15«\83\aÄBuÊ\95¿C\19IÙL"ëÚ¼¨½\9d{± ³;D[1÷Zh1\80MÎÔÔ'þèmx$\87\95'\10\8bd9\85iël"#B%½9F\14*\e\86Å\95<ù Ø V1\ 4+\80G\16;<éÂÌØY±ª\19\96«Y)Mêw'/è;\13¦ß®\85\10;\ 2;ðúNîÀÎ\95¥½\19\96.Ôý´\r\82-\f;3δ\84_\9dÝÔ/\82Ýl¾ö0»4öÖDÈ+\86U ÒâS$ -)Í\96Ç\84ÔhTGT\13³Ú³úu\8aÕÄ b\18Öû\80õ/öÁÚ\1fhíaM\ f\a [\18}î\1e¤\83\88\b£OÞó!F\9f½÷ÏÁm\8d´\16¼þߨ6ÌjbX\a/\b9\1dDø¬Ã¦\18\7fê^\88/\82\17ä2xAаöN\10\1f\Ô¬\ e\1e\90ø\8b\99\fÕJ÷"¤¹}\94M¤3ÊÄ&«qn\97ôX4I\v¸º\12\v{Ë\ eø\13ûñÌdV3\9b\99\1eyü~éôà\98\96\99Íå\18\15\ 37±³©eX\88J²e¼\8a%RPÓ\10\82\11¿ó#ñnÃ=¥\19(êfÖ\89V*Õ*%\81\19¤\ eó\ 4Á|h !v\ 46çõÝ÷¨`5ý\ 2
-a1\10\83a\8cÒ\11»ÒwTX£\90\95
-ó2¥©Í"º÷ZÈf)Q¢\83©#G\17è\97¨\19Hé»,J\93©ÂAíI\9dQ\9d²@¼Y-X\9d\1dÖÄ ²\93a=\1dÖp õ\91ÞÂ\98r÷r\84\11\9cÖ)y\ f\8eIõÙ{Þ\11\82¶uÂõ¿þo*ÿ*\8cjiV3Vg/\88\99\rBa\1dâ\8bÄ\vòäE\1f]\8c\ eëÈjêöÎjõ{\11,W>\ f4\93ÌE-scßÁ'·-J\a²Q~¤6%K\97Hq\7f\aKhÕùQ\85ÔU\16Fc\e\ 5É\9a³'DŨm2\9b\ 6"µZ\92å\ 1ê¼\96e®)\11À;\13\91³äî±\18ÈVV%îZ\983ǹ\95\ 3Æ8\80$x\eÒ HøoBl\9c>\81×ïæ¼Î\13 g\8e«hµXâ\14ݶw³éFI|û`QôÎó\95ùý(²\87\f¿\9c\ab`~\86LJKHÓ\ fz\9c(·)RsTw³ºË ²/X¿LÃ\1ah\8d°Æ\9f\8a\91¿>\10\13Cî^\880Â\86ó¸\87ñÇÿÙûA\92iýÓ¿û\87è¶\ e´\ e¼þWÂé`S\13£Z \1aXM\rëè\ 5\11°\8eg\83`æ^\88/z/\887¬/\82aí\9d \18\ô¬Vf5æU+T³¬\9el%½]ÛGjQ{\86Zvyz\ f·c²\16ÜݹÉ\8d\1dñWN\17æ[\93û\12W¹1-0M\18ÝéסÔ\96Ìæ¦!\vP2/¤\88%ÞÅÒ,¸gê6!\96\7fJ\ 1ûè^m\ 5ZfkÓQ+\93Ô\14\ 3\11Òo%B \9d\80x}\87Î.\92±já\82\9aÏäèt\18\9b\ 4Ï2Ái\80\brÓéZ\88®/Jão\8bø\f©öñæÉÖÑvqJ3PSR+T\e¬fN\10\19]Ô\86õ\9eaíMë7å\ 3å±{gC:Èc)Â\b\eÎý\1eFâ\a\89¦µÏµþÇl[\a\ÿ\7fÿ\9a\85\82\9a\92Z Z\eÖ1¾\18a\9d~} &\83\80Ë:zA¢aí£\8bÁaX\1d= ñwèÓÏE°]MÔJ\8afR\12sQûNfÚ\91É]\92w«Ë\92\12Üel\9a\10çjª]nFn\94N\8a22\1d¤ÃX\98¸ROLW\8e\88@\99ÌV¦¡ÐK²¼å®\8fÛi¨·\1c¾\8b\1e*;é¢\98b\99=îÒd\9d\17j\15¾\1e\8aÔa¢dJßÊ\84@;\ 1\eë\8cõ¥¼\16ÙE¤;\95è\0¢°6)È2¡µ\ 3É\8a¢§ùÌÝL,<\90B5wId[\13ÀNe¥É¬C¿A²q
-Òì\8bþ\ e\ 6êDê\84jfV\13V\1f\98¬Þ\83aÝ\ 1ëWxXÃá ¯¢¿>À\ e\aá¹{\90\ eB"\8c°\871dZÇ|\90`ZcB\b:B\90ÖÁ¸\ e¼&ò³\ 2©9ª#«S.HrYÛÉ à²\8e^\10\b/^
-ÑEï\ 4)±Ú{@\16\v\89jBê\0j¾\96\15\8bZJlÆ\894Ç-\ 3Åt¶¦K£\12\b\1ff\ 6vÿ\99QV:\14ß#näC J³ã\ 6\19¡{"P\ 4Ú\86w\84*.·\ré»,P\13N\17¢wrµ#\92.:R,Í\1cKnÐI;\9f\93ZØk\81Ò·\bÉ̦À¦¼~\97ª+Av^ºD\89Åô\eZöÜæ\99ÇqüÎA¢ðÍ\17\91ÌÌf\9e\11c\ 6\94¤ü\ 5*ex\18þ\ e¾ìÊNÌCþ-õãÃP\9dÌjîNN\90\9eèâ^`ýK\11Öò$'cWLH\a!\11FØÃ\98\ eÞû\83\1fRÓ\1a\12B2Á\15\12ë\9fEdÿìg\fÔ\9aÔ\fÕ\8eÕÊ°¦.ë?\96.ëä\ 5É\865F\17}p±Àjô\80@^uB5Û\7fJ\94O¬fÙ¢Vx! ²éì\1e,Y\vnW»&HVWÓ\91\81Æ\93¤:wP\18Ût-J\e~Ï\82\14ÂO"C×4\r\8fÈÛî"±D
-ja!É\ 5\8f^íФ\v\ 5AñIáµ»W×Jn\80ӤΠöl~\8b\92Ìl?\83
-¼Îu\15ÙE\94Û*fÝá\15à\8c¦\b\96\9e¤n\11àæ̶=#b
-\14Ö\a$\ eÂÛw·\80´mJwBZZ]o%¤6P\8dfµÅj\9e ²«a\9daýR\ eë±{°ßÜÞ\15ó\0\890Â\1eÆì´\8e~\10fZ'ZcN\b\1a×ÿâ±ü3Éi\ 6jJj\8ejÇjaXGX§ß`\94^\90`X?ùD\88.b\86õ#\ f\7f\84Ä\16\13ª\81Õè\ 1\81¼j\82j± \8d\98¾Õ\10\82lJì·«\84\11[ºõ\80\12ûN+K \87ÇD\8e\94ÌCÓ\91v\1aÅáqvÓ\96\96zbÆ¥\f·;c6IO,[\86ñm%PK\vI¯wT\b\8f&]Ø\10\14µcÂ-:R-Ej¾°\8e\98¾YIFv\ 26ãõmª®w¨\8f \92»î\1aÆ2\99\82Zð$õ\88\8e\ f\9cQÈæ\9e\11=\a\8a"Ül´er\99 Lé\12¤\89=\9dµ9\92\1a}Õ\11ÕÔ¬6Y=À 2\1cÖ/\19\0ë®]1<\1d\ 4#\8c°\8719Á\ fòí\14bô¦õ_ý÷à\b ´\ e¸\ 6^ÿËÿËå_\fP\13RGTgVÛgîY^\90\10^Ì\86up\82<ü\91s\89Õʬ\ 6\ fHü\19ú\8cê\94)\9f׳r9+Ö´o¥Ä\8eÑG5»ûõ\83¨Á\19®³w\8a4\81\19;\83ÄÊh0¢ìýavfK\9b!öb\J`[C[¥0\1ava|\9b j¹\92\1d¼Ü1\81-yRÈ°¼ËªÖ\19î*\13¤Î\98~³\92\8cì0\83¢\81\1d\1dغ®4¹ÈH/\8a\7f`\9fQ\81i\ eé<ß\94\vÉL6d!u\99\fu[\ 1Ù¤ÖâCÓ9 ôÇGûr:\9cÒ\16¤\15§ã×ôæ`T3Tg³:ç\81\94Y}}aÍ\12\8d\b#ìaD§5fZÇä=aZGG\bÐ:¸B\10×ÿë_\94ü¯"¨5ªy*\b÷\82ü\18½ ß\v^\90\10^$\86ur\82|äÜ\87\1fúÐojVg\ fÈ\9dw
-T§ôË·&Nëõ,[Òrb³õøXÉj@\89\9d\81MMl\9a\85\96ã6Å\bû\90 {·_°èm/\85\9eî\10\88é1\vãëLP\v\8f£½Ü!ë\1d\96t!!È\97í\14\81Ì%Ï{\81TK\93\9a\83Ú£ù&%\19Ùa\ 6\19¼~\a\1f{Þ¡w°ì¢Tf\8cRÁäÌ\84\164\96!tCÌl(ÁlÃ\9b-gA\87È\96Q\ 3á]¢Y\ 6¤E[~í×\ 4¦³6\13R'T\v³Údu\9f\13d\ 4«û`Ý\99h\8dé äÜ=¿\87\11\9dÖ\98iMý Ñ´\86³÷þ*d\84DZ#®#¯µ0NSP'TSV\a'Há\14'\12^¤\86µw\82|\ 2\9c ç>ü[\ 5V'\ f\88\ f+RT«\ 5^ϲ%-A6K©}ÛaY\8a\9a\90´à¶ÛôF7jbÓ¤\ 6¾#E\8a
-à\94\13\bÊKi\1e\952ÂN2¦jXÚ\g\85fÆ÷½«\bjâp,¬vJ1<\ 5ìwq\9c¨üÊÞjÙ¤\8e öh~\93\92\8cì0\838¯¹CDÀ¯#·èÝz\9czlN>\ 1uü¼$bº\96\90-\99m~jÌî\96\88.\86\ e\rH\8bÖ¼õ\12ÓY\9b\13©\15ª³Y=\94Õ×\rÖ9wOE\18a\ f£wZC¦uö\83@\881\9bÖÑ\11\ 2´\ 6¿uÆõ?\a,3F\13NsP#©\19ª3«ÃVórx1\eÖ\17\89a\rN\10`õ\836«\93\a$¢\9a\18ÕbA«×³lI\e\90-Ó³øì\1e \19D\ f\b±Õ\12þNv\f u\ 4\17\827$|Ó\19¼\19àï´#R\12Ý\ 6´é¶
-.Âx:S\ 45ñ7\92Å\ eût\1a1¼\ 2°\15NX\r9\ 6íjY¤\8e öh~£\92\8cì0\83\92\81Íy\9d«Ú\9f[$R<\ 6ñ\8cÏBÃ\9fT\16c²r\ 3\83 û\8c5\ fD_Ûß\1d3$J¾=\1d\90\8e\15½\95eä\90Éòf\83ÔÄ\ 3\12Íê\ 2«÷å\ 4\19\ eë\9c»wkþù\ 1\15aôNkÈ´öÉ{¿ÇLëÿ\14LkÌ\bAZC\941áú\9f<\91\rH'L3N{R\ 3ª\89Y\r¬Ni{Ã\fëó\9f\8dÑEp\82`"H\8e-&T\ 3«£\a\84¢:%ÊS;ÉZÐÒ%Fv\826'÷@M È.\99Ø\ 4Ù\83\ 28Ò9H\8dÛ\81^Á.\7f»À¶ij\e¶!SÍôÂ2¨uðN|;ãXô\ 3\9bX\806\ 3\99Q'«U õM\19\ 2oô `B\90\1dfP\87\81M\86\9e®`\84óI®u
-@\93\88¦\93Îô'\95¥4YM3\9b\7fk\8a\1dÍ¿:rwjÉßaB:Vó\16Fi\1aE¸\89\91Ú\eÕÔ\ 3B] 6«÷bX\ f\85µÎÝS\11Æè´Æ\1fÍ\8d~\10iZñÖ\7fáÝÖ@kï
- ¸þGÏã\7f¦òOÿ$0Í8\8d \ 6R#ª#«ÿ:9¬óï/2\8fµ2¬}tÑ;A0¸¨Yí½Õè\ 19s\86£úV\9f(Oí$kAû¦nd'hOÒ\84¤\ 5Ik-§k\U*\87°\19¶¹[º\1fL»Öp
-Zûí\8bÞv\91\ac\10Fi&ý.Ä÷IPGíSk\1dõñ,\ 6ñ\14°\99 ¨ È\81Áªõ6\15P\94ëêDé×3¡Ì\ eS(\eØ&¯ ûHf\91`\99\1e+B´N«\93Qí\16\817#@#f¶\98¬\12Ùï°f\82ÑÓï²=lÖì3 m\eÒ©\11ü£~ÓMb\90\92QM= ̬\ e¬þ¥½³º\7f\v#Û\15Ãr÷\8c\bãGü\8fæúä½güaNÌ´þ£ÿBi\1d\8cë\80ë\7f@\18ÿ\93\90\7f\14\94\8e\9cö \ e¤&¨Î¬îH\ 5É\865n4çN\10dõ\a$«½·:þ\bý;\bªoñ\89òÔN²V´Ú\vÉ\91Íç÷p!j\90 £\16Æ\81zyA©=ÂÚ5\9cÝ\82Ì®-¬¡\v®Î²\bj\17<$J¨jÆ7Z\165çt$´þzê \9e\ 2öa\81\82\1a\18æö·\ eR'PG>¿\8e\bcv\98CÙÀN¼fÀ6ÒA-yG\11i¦ÕI\ 1¸l\ 6h\88\9f\89Ìl1YåN1Yñw
-ѻq
-\rê\80´h\91j\ 4ÿªg]&¤\ e¾já\ 1É.\10Û®¶\9c û\82µ¹+&äî\91\b£ð\83|,ûAÂaN_N¦µ\8f1\82Û\1a\83\8c\7fý\93`\#®\1d¯ÿ\1eYü\8fBþAR:r\1aA\r¤ö¨\16¬ÎN\90\90c\9d\8e\ 5É© p*\b¤í%'\bî\86yà¬Éjï\ 6³Z ú-)Qþ&\8ai{AK½\90ɶ3¦w¿F\bMHZP0±\8d³HÊ^aëD\88n\97 \9d\ 2¥\1d\9e¬TP[zH¬¬s®\9bñ\8do+\81\9a[Gâ#Z\fâÙÀ\1e\82AÒ\17ÒпÅ$uæt$ôk\93pf\87I\94\rìÄk^Õ·Y]*$nú(m\0ZMD3>ÃüLåɪ<#ºâý\1f\1c\9d°b\ eº\9c\1d´\15ü«Nt\99\90:øª¥Ym°Z;¬§\eÖ=°.æî\15"\8cç\1e\8e;Îã¾\18ð\83 iý½\1füÁ\7füQ¦µ³£qíq\1dx\1d\88Måï%¤\ 3¦=¨\13©#ª½¿\9a°Z\1c\8e\1as¬¿\10\fk\8c.¢\13$9¬\7fý\ 3ï7Xí½Õ·Å\1f6&ÇoÝÌV´\11Óæ\82ö\r\ 6²o²¦w¿B\bMHZ`Ú\84\11}\ 5¿«\0s§GPsÉ4dÊN÷üWAmé \11º*\953½3¾H\83ZXGü#Z\fâ `¿õ×ÔªÝä #\ 6©×"¤¡H-)Í\85\10\9b\19ØÒ\81M3ZÔ\87\90J^Û\18\96g·oÀ\9a\8aVxFÌëòd¥\9e\91r\1ekùkÃÚÓåÁétvÐV\88¯:ÑeBêà«Vf5q\81dV\97\9d Sa=8ÑZD\18\95\1fä\13è\aq¦õS1Ä\88¦5:BÐmý_þ\14i\9d\8ckÀµçõO\91Ä\7f/äïþNB:`\1a8\8d¤ö¨¦¬þ¯\94Õà\ 4±6/:ÃÚ§í\ 5'\88wXc"\88ÉjbVó\93\12ßÌW´ÂñXôB&ÛÎ\9cÞýú 4á-6bâÄOäët¼J\8f mÑ\ e\89w\ 4¢4·\v¶¶-ôµ¿\96\81h\81úMò\vJFç\rz,º\81-hÂk)\88Á¿\1f<¤!\93
-"§_c
-!67°oÒ\19"ÚÃÀê+\17=e˳È4c.\1aá\195¯e\80àf\81lÆìr"«á\Ó«7ÓÝ1\98Ñê«NÖ=\84Ô\1aÕĬ¶X½»\13¤\1fÖ"\1dDF\18½ÓZì8Oûb¼i\8d !~gÌ\ f\7f,hMpíxý?=\89ÿ\8eËO\7f*\18\1d1íA\9dHíQísö\ 2«ñ\1cëè\ 4¡§\82àq{~?̧?å\9d Äaýþ÷AÎ^`uvW\13³\9a\9f\94x\13\8f?pÇ#\13\ 1
-±\1e\17ó»W\1d\84&Ü|³R\µ4¦Öªv2\fr\arF\9bf\8ctsÚ~vÊmå&Ñj)´3¿öV\1eK¤ æ\8bXæ\16\96\1fÐ\1e`«U;©'ýïÜ\1d·òzåZqR\13N¿Ú\10BìXmÆë\9b\8cªÞʺ\94Ö\98\96Ù\1e\ f\ej]\93QEg\94\9f\89MVÓ¾àÌ6Ö^¶èÆ\14r;\8aí1Z!¿êdÝ#H-P=\84Õ×\ 5Ö"Â\18ö0²\83÷²\1fÄÿ\ 2A\b1>\8f !è\bAZÿ!¡5\18×\80ëÈëÿ\11XüS\vÐ\99Ñ\11ÓÀi$5AµÏ¯\ evõ\1f{Vs'\b\1c·GÒö¸\13\ 4\1cÖï\7fß{9«\83»\9a\98ÕüP[¢~ÝKZÁlåÏ\16ó»W\1d\84"\14\8cBË\9bÙå\12,.í%*\8bÙO·Ø\19\ 2Y4·Ë>\12[=ó{»@-m£\8e\ fh Ø\ 6\ 69\bKü\13õºÉHÔM¶Zäô«\84Pb§\19\94\1d"¡®rÜ9ùJ"\ 6\8dÙ\9e\12j\9d³ñ\r%é\9b«¤\839³ÅW©¯¹\8d`ûoF1:\7f×Y\14á5\92Ô]¨>\16V¿¤?wO¤\83@\841îa\f\99Ö2\1fÄÿ\ 2A41×úkßøÖ·¿û}t[#Ño\8dÆuÆõß\ 2~\13\8d\15\9e3¢\13¦\91Ó\1eÔ\8eÔ Õά&>\90\1f\91ßÉ-;A\1eIN\10\f.n7kÊêà®Îfµ@õÀ%`¶Z\8fËù=X\e¨\1e\bÍMS\9f\0p\88¯áíÚµ)\17\9aå(\94t¹kÑÜÖjª\14Ui'å¡ js¥\ fh\11Ø©3ßR¬¦dÆ-V½r¤ImbZ!;Í Îkb`\13ôÉ\ 5\8c!6Ön.@ºs:ö¸üÊsµ\9cÇÊêÞñ¥\116BÁ}ÓëëàHßñ×Re~µ$µBõq³Ú\80uO:\buZÇ\9fö\12¦õ'c\88Ñ\99Ö)Æ\bnkBë`\#®\ 3¯\ 1Ø\7fûÿtÈß&ù\9b¿\89\9c\ 6P{R{T\a³Z²ú»é7ͽ\13äiæ\ 4 Y{)¸\bû\16\19«½»:\9bÕâ§"\94þ\19kZÅlé\1aÑó»G\19쨥$v\9eú\84\7fÝÞ\86²)«\r2µ3ðæ\8eü\0"
-Û\86\8f\84)ª¡\9e\8c\87&¨\r\9d³? y($°\ 5\ 6KõT="ë\95k¥Lj\8fä\83\82\b`\v^\13\ 3û&Ò±r\ 1£D\r\eãZ\97áiÌÇN\97_Ç\-ï=P\957Ù,l\84¢·£\83Ñf+Ò\97\9céò«\18©\19ª\93Y-\ ]¬Þ\19ÖCÒA²ÓÚgZ\a?È\aØù Á´\ e1Æ/}åk_ÿæ·Ámý\a?ü\91÷[#)®\1d¯\7f\82\ 4þÛ\82ü\r\91\9fü$r\1a@MH\8d¨vf5eµ\ f.¢Ã\9a\9e¶÷Dv\82àÖEï°þ\08¬5«Ñ]\9dÍjñ«>æ\92¶ \ 53Û\98ß=Ê ¼®oàÄ.Y\85}Ë˲!KôD\11\9apø¦!¢±]ÐÒ2i8§mP\e:W\1e\f\13Ø\19\83\92&oÑUê¨\97Ajn«E\bp¡Ä¦¼6\fì7Ý$«Ú\91\fª\ 6\8es\93je\97RQì¹j\99Ùú3Þ-d¹¦& \84t7¢ÉÚ+}ËãDy\95Aê\ 2ªË¬ÞÕ°.º\14a$Në\94¼§ý Á´\ e1F\9f\11\12h\r¶5fðyã\1aq\8d¼\ eÀ\8eÌ\16ò\13"\7f\1d$pÚ\81Ú\91:¢:\98Õ\9cÕüWrý\ f/&'\bn]Ì\ ek\9f\b\82y \84Õ஦fuüQ\9f \80Lÿ:Ö´EfKnséX¿\13Uè ¶é\18,{5ÍEfYÑ»#P¦hlß<XKéËó+mP\vLw\r\86\rì\8cÁ\9bd=SUYQ¡^±Zt¦\b\ 2\14%\ 3»ä\10áß\16«So6*iX\9f\92k\ 5BÛ.¥¢hj\97Íì\ 1\99¬fC:<Ò\9d\8d!Õ$+.5c\ e\fRgTw±z_N\90á°¶21y\ fü V\88ñ³\9f\8b1Fp\84\ 4·5Ò\1arB\82+Äã:ð\1a\80ýß\ 3\87\7fò\13\8bÎ Ñ\11Ó\bêLj´ª!\v\ 4PM| \8eÕ\18\$?9à·ÃD'\buXûà¢dõÛ\81ÕĬN¨¶ôÏ^Ôv1[`» \85\8b\99"\14\88ÍÍÂÒ
-S®1»L1JhBá7\ e\13\8dmmkwë'ysÒH\ 3Ô}\9fÏ4\1a\ 5`g\fª´xSnê¨Wª\153©\ 3\91_Y\10
-lå\10QÀ\16àëO\ 6í\ 3[\11ЦWÉ\96ÂTµÍìþLV³\1dd\ e*o\87ÁèBCȪ+M\ f¾îyå`Tw²z7X\ f\8e0\ 6§5÷\83hÓ:Æ\18cFÈW¿\9eiý#Oë\80ë¿@\ÿ%`÷¿\ 5d{!dæ\84\ e\90FL\ 3¨\1d©½Q\r¨\ 6\ f\887«1g/±\9aþH\1dæñO\92¬½\14\\f¬>¢¬\ 6wu0«Õoe\1a\96R§hf3j\8f\15®\b%bK»pÔ\ 2³\87Ð\94Âo\18$\ 6µo\1a¨¤üõù\9d%P\97¿\9el4JÀÎ\18Ôiñ\96¼©T/V+cQM(\10E\12[9D\98\81MFÝìU£\96]dëÁ\9a\82[Q\8aSU0[\7fÇ{ºº\94¥¢½\1d\ 6£\8b _ñ4G~õW;HMPm\98Õ{du\ 1Öát\90B\84Ñ;³\1f\ 4÷Å\bÓ:Æ\18Á\11âÝÖ\91Ö?\0ZÿXà\1aìk 6"û¯þ\9b-\7f\95ä/ÿ2b:\80\1aI\1d¬jô\80\ 4\17\88\8f-~Ó'\82°ß]\94Y{Þa\1d\13Ap/\fe5¸«\85YMPÍô¯sQÛmhO\11¡\b\16±\ 5r·\ 1;Æ~á|~ý\10±°=TGùûó;\8b >P:§Gc\0°´xCÞX¬\17«\95\ 4õÿÕ!\14Ø\1d\ 6¶QÕbe¯k\91Ò}tî[³\94¦ªH\8bÒ\1fò\9e®æ«8c
-\1a\86t¡)¼Ú\aÆ\94áãÔ\8bjiVï\83Õ\12Ö\1d\11F\91¼Gý \18bd¦u\881¢#Ä»\ 3¿ãhýû\9eÖ\11×\7fúg\7fîx\1d\80í\91\1d©-é\9c\11í)\8d\9cv \ e¤\8e¨F\ fH`õw¾\1díê\18\|\9aüâ@ÌÚË\ ek\1f\Ä}\8b6«Ñ¬\96¨\96kZcY[`öAÇ\f/k\81¾\98é\81»\9a\84½kKa½Ø\84f\1c~Ý\01±=TGy\ 5È;Ë îò\a\93Ñ°\80Mºòõº¢\86°>áõbµ\92\96Zf\0\15IlÆkn`Ó\9aªä\8bR5M¶i°\rdó¸©ZJ\8b²¾ä½\8d°\1dÒ\86!ÝÑ\12¶à"ÓC.{~Eø?(ª\87±z"¬§8©\1f$ì\8b\81\10#1C\8c1f\84\84 £§õw\1d£q\9dpíìëHìÀì\82ü×(\7f\110\1d@\1dI\1dP\9dÌêï`\1e\bgµpX\7fÄ;¬Ãn\18\9f\b\82{Ì «!´\18\ Ù¬¦¨&ã[r>ZÔ.øG¤t¯à\89&ØÄî´\f;V\96C¬\17Åç×ö\89\8díÁ*Êk@ßÙ\ 5êþá0\81M0hæÅky}G½R\14¨\15¥-dw\1aØ´¦¯³zÕ®'\e¿\ e²\r\9c\91E1 Ýí\1a\19ÐÕb\15×ÉèRSd=ùW\»§~\85\90º\17ÕûfõPX+?\bÙ\17\13S\93iíc\8cè\b nkÜv\ e´þ¦£µw\'\\ 3¯\13°\11Ù\91Ú\þ"Ë\9fGJ#§\1d¨\91ÔΨFT£\a$±ú\e\89Õ$¸\98\1dÖ\8fP\875\ 6\17#«ï4XMÌj\13Õjpm\17d§©=A¸\1e(bsË°Ï^\19b¼0@\v\18¿¦KJÜ\1e¯¡ìåD!³\ ejN\97\a\84\ e\83ìÊ2L,éªWª\96\rê_Ö"\89mðZ-\ 6^kõj©\9el\0»Éfͼ¾EKÙ ±ÍìA©¬æ,\1cÃè\9eF05Õë\9e_.¡ú¸Y=0Â(\93÷\92\1f$\86\18©iíc\8c)#äé/<ëiý¥¯|õkßø¦w\£q\1d\9c!\81×\7f\ 2ÜE\0ÿy\97üÙ\9f%H#¦\1d§\11Ô\8eÔÞWíPMÌêo|=ä\818»:þD®8kïCÄaí\83\8b>ÁZ°Ú»@²YMQM\86¸ËûhR{À|\1f¨\r%b\8f2\r˶K\11Ð\9aɯ6¤\8bÜS4\94½\9c($Ñ¿®O§1\1c\12ØÊÄ\160±¥«^¹V¦þ\97Dóº\flÒ\83êÉ\ 6ÐBÛx<÷ÏTa^\8cMeµ§¡í·)5DUN¹È\14QßÓ_êGu\91Õ{\85µí´\16~\90°/&\85\18³iíc\8c1#$Òú÷\ 2¿þÍo¡q\9dp\8dæµãµ\ 36\10ûO<\85ÿôÏ´üi\96? \94FN;P{\9b\1a\8cê\88êÄê¯~E³:üà\0Í°Æ£öbpÑ'íiV£\v¤\ 3ÕzpK.HËÔ¶Á/*\^$v×\9eÉ1¦K\19Ð\16\9b{Ťö\18\re/'úÈúÍÒ8s@4°\95\89ý\1a¹2°¥³^¹R\ 6¨\7fIJ'°å·EöëÀzò\ 1´Ù6jV\ e\9eª:/Êþ\94\ fkC\89Ñ\9d\rÑ\15\15:J&\8b\1c¦WX¨ÖfõþXÝ\1fa4ý q_\8caZû\18cÌ\bùÜ\13O^zê\19o[?ÿ\ 2ä[\7fý\e°õü{ß÷¸þá\8f~\f¼\8eÀþc\ 40B»$þ
-\844b\1a-êDêà\0!f5ì1\87\9c½+Ï\12V\87àâG\8dàbNÚ³X\9dÍj\8aj2È\1d®Ç2µ\rlOÕ\ 5MìÎ\95æDËE\ 1úU#¥@íq\1aÊÞM\95Q¨Ýðá \9diô¤X\1dô0CÕ\8bTKè¿¢´\8dlÅk½\180søKb\8e`\11m\85©'çrÏÔÖÈ6sY\a'³\16§a\99Ñ\83\9aÀ&\88þ\9e¾¢\eÕÇÂê2¬µ\1fäµ4\1f\ 4Ï\añ!FnZc\8c1d\84\80Ûú\89'?\9fh}íKÞqí\8dkÄ5\9a×Èk\aì?\ 4øþ\91çpàv\96?Î\82\97\ 1¥\ 3§\1d¨=©\9dQ\9dP\9d\ °oQ³\9a\ 6\17\83Ã\1aw.æ¤=Æê7gV\e?¿öJ1¾=ëÙ"´'\89Ö\84\ 3K{Ç\ 1Ñ\82PwVÀÁP\19\86í!
-Êßl\81ÚT8{@xwZ=ÙYW£kt½h¥,P¿\82\89ElVÙÒ·åU2k®0\84¯.Y ]hÛÏL\95æÅ\81\19\84\1c&ÅiØ\89h³\86ê;N'\8b\1a¦\97÷£z\9f¬î\890\96ü $ÕZ\98Ö\18c\f\19!\8f\7fê3\8cÖ¿÷<\86\19¿Æp\r¼\ eÀ\ 6bÿgD°§¶!\7f\18\ 5.\ 5L\ 3§\11Ô\81Ô?øþ÷\bª\83\v\ 4öÂüî3\82Õ\8fÒã\9bxp1$íY¬&fuB5\1dæ\12¦{¨ÝCî!\97ÛÄÖ \19JDK·ûñ,×\99Tz¸-u°£"²
-L\1fe\9f\8d\19\ eÖ\97¢Þ½0Ñ]cÔ\8bÕ©@é\ 2³ymÙ¨\97¹gÔ\95\8fâ0H\ f\9d\95¦\94\99mN\ eQ?Ý\ 2yA9ínz3ø\ 41¾§/\97¨>~V÷;m?H\f1&Ó:äZC\8c1d\84<öÉßþÔg>\8b)!Hë+_Dǵ7®=®¿÷ý\1fD^#°\81Ø\ 1Ú^(\9a£øk\90Ò\ eÓ\11Ô\9eÔΨ樾æÝÕÏ~A³ú\91ô{\ 32¸\18\93ö\18«\89»:\98Õ\19Õj|{Ö³\9dÐ\1e/\86"H\1d\98h´ôÚÏ]pî\962µ\aÀPí.ãÊhi\ï\88\88Þ,tdG\86%ë\1e«^¬V\83@]\ 26«j±¦]u-\8eb7Üö7SmfË/ú°úë\99ØÃèBõ\8c︽ðѤ\1e\84ê=ÃzH>\b\9e\ fâC\8cÜ´Î\8e\10ï¶Æ £§5dð]yî÷®fã\1aq\8dæõ\ f~\1f\81í\89\8dÌFùOR~\9cäG?
-\94v\98v\9cFP\aR'T{V\83Y\r¡Eȯ\96¬¶v.ʤ=ÅjjVSTwcº\97ÚerÛ×Z×÷#»\9b4\93´ÂP\8d>éÄvw\rz\b\8dTÝ6f<DWê*«Þ(w\8fY/Q§W\18úϤ\17Ø¥!\1fUÕ>H\8f\9c\98½Sµ\9fÙ\83êß\17ø\1c\82èR\8då\14±\ 6Ê 5EõÞY=\10ÖÊ\ fâC\8cÉ´Æã\9c²#Ä»\13!Êèhýì\15ï
-ù\92Ç58C\90×`_#°\81Ø\80ì@mK~\18\ 4®\ 4L;N\aP{R\7fû[ß$¨~\1e³«Ñ]\r{a4«Ip\91$\82\14Y-Íê8\ 3\8c\ 1î°\8ez©=ZLE0t`\b\16\87èĤ`Ó\0n\ fÐOs\97¨ÐÆ\82Æõ\8c\88ìM]ïre\v½c׫Cýû\88mòº·¦±ºFi'¤w\ 3tïL-1{l:kÏ$\1cÑ
-KEÙ\8c!\83ò2\vÕÇËê\12¬\v~\10\92jíw1fÓ\1ac\8cÞ\11âÝÖ@ëÇ \9fù]ï
-I¸\ 6ßuâõ÷=±\ 1Ù\1eÚEÁ+\0Ò\88iÇé\0j´©\1d©Á\ 1\92P\1d] \9f\7f\12öÂt°:ì2çI{\ 5V\1fd³:\8f}\a¦\87`»Dîµæ\r\9dÈ\1ec·\fP\89^6÷H\ f¶I-»ë"UÒè·\11㡺Ҭï\10j\14ê¥êÔ\aê¡À¶kZªk÷H\ e\83[×Ìì\9dÚ%f[\9fôþ\89hMÆ\81\88.×YÎ\12:\1a6©{P½3«\a9µ\1f$\99Ög\92i\r\8e\10\9f\11âÝÖ@ëÇ\12átëgÐ\15\92q\1dÌkà5\ 2\e\88\rÈþÁï'ù\83$¿Oä\a?\b\94v\98v\9cFP{R;£\1a|Õ\14ÕÁ\ 5rñ\ 2î[´X\1dw\99§D\90^Vÿj0«Ó\1c\18\8a\85AÐ\9e ¶\1e\14t Ä\9a>\8d¶T¢¤\19%\19\80ía0´Ró´\ 2N\1a\fÕ\91=0)õP©^6¨_f\8b ìýÔ´ÏÛ±# {'j\17³'Õ\7f(£;êgN\rñÝ,\90\9a¡úxX=Ù\ f\82¦uʵö1Ft\84x·5ÐúÑDëÏ=\11\1c×ÏR\;ó\1ay\1d\80í\88\rÈöÐ\8eà&òý$xÕw=¦\1d§#¨\91Ô`T{Tû\84½g\82\väs\9fÅ}\8b\99Õ2io.\93ö:XýÊÈj2øåÑ5\r¤Áè\1eqC\1f²§dtï\ 6ç\ e\19Äí\9eúh\954»m ÍÚeb\eõíè¤r½\8c:\150m\13»\bì®\9aÆÊ\9acÙ\ féÑ3³\7ff\17\91]¨~§\18\93k\ 4¢»j®&\v\1d\95_¼Þ¨î\86µô\83HÓÚçZûÃ÷¼#ä=ïû\0º\81Ö\8f\ 4ZC\ 6ßç.\DW\bàú¹/\ 6\{ó\1aü!\blGl@60û»\91Û\¾\eå;\81Ò\ eÓ\8eÓ\bêHjgTGTGoµw\81üΧqߢÁj\99´GX}3eurW3³\9a\8dx'\16\ 6R{¼\f@¶¥\ 3\ 3É\R\88\92VtË@nç\1aöÕÇPÇ.u\eNìR\9d\abC×˨T?¨5±\87×´£ª\ 3\86r'@\ f\99¨ÒÐ\1e>5\86ÏÆ)\8d°§\b\1f\8d\ eR[¨Þ\ f«MX\17ü Ò´ö¹ÖÂ\11\ 2´~\0h}\ ei\rQFGëÏ~\ e\1c×\9f\ f\9eë\88kg^\aûÚ\ 3\e\88\8dÌ\ eØÖòí ßò\94v\98ö\165\84\14Ñý\ 1F58@¢\a\ 4½Õè\ 2ùô§\1eÇ\9f2\8f>\10ùs\ 3$i/²ú-\8aÕ\a\94Õi2\8c\ 3ñq{\b²{hÓ¯\10£ÈÜ-æóÇTÉÒÉN\9d+ø\17ÊÀ.8\98z¤³^EPÿ¢\921À\9eVSkDÇ\13zôÔîdö\8eÕ/´¡§\15]
-ª\86á\17»P}\8c¬îó\83\90}1t\17#1C\8c1:BÀm\r´~\biísB>õéßñ®\10ï¹v¸öÎ\90Ìk\alOldvĶ%þÏßð\94\ e\9cö FR;£\1a}Õ\11ÕѬ\ 6wõ'\1fÃ=æ\92Õk\95`ýöx~µfupW\87YB&Açèv1bW\19\8aìÉYÝ\1d¸5í\96\1e±\9e³K\95LmìV¶\8e\11±;rXu\8b}£«Õ\87é2²ªvtî\88!\1d\8c·}ÍÔ\1eC{¼XÓm\12\9e;&\8e\1c\9d_\18\80ê½±z°\1f¤`ZCú^r\84dZ?\88´Æ\9c\10ØËøit\85@\9c1øBÐw\1dyí\80\8dÄ\ 6d\ 3³\ 3¶Mñ\7f\ 6H\ 3¥\1d¦\1d§=¨#©Á¨&¨\ ef5¸«?ñ(î1÷±EÂê\98´§\12¬qß"gõ+\ 3«ãäà#ßÍ\85c¥öPdw\ 3§Ït\1e@ãÁR|ÉÀ\8a\15t²GÛú\87cL7öõ\91Uá\9c.\10Ûªê¤\9aÚ#ºWB÷ÎÔ\9eàËøêïÚ\86â\1cÑ£"I}̨îò\83È\10£4a\e#¤ï½û\ eï\b\89nk\b2"1'äÑO\ 4Çu4®\11×è\rA^_}þ\9a\ 3v$62ÛS» øw\80tÀ´ã´\a5\90:\1aÕ\14ÕÁ¬\ 6wõÇ\1eñ¿¸h³Z%X\9b¬N.\904'zGy\f)\86Ì¡Á\9a0]\aú\94¡K':Å~Î.u*hã\8eãÐYçA=eÖ«[ùw\ 4vo(¯{L§ñmòÜ\1e85Æ\889ãú\9bÐ?W¬áP¤¶Q½OV\13X\17ý eÓ\1aÓ÷¢#dÞpZcNÈ#\1f\830#¸B\82qíq\1dÍkp_\ 3°#±\91Ù\ 1Û¶ø¿\ 3¥=¦\1d§#¨=©Á¨f¨\ ef5¸«\1f>ç÷\98\9f½\9f³úhgV\ f\18Ý\ 1¸\98$½zP\9aÛ£¸Ü¡\ eÓ¤ã-\ 3\ 1SÒÉAºV\1a\93b?\ eé\9eÎz\r¬Ò``\17\a|xMKCº\13ÙFLT=WG׿0»ºZ0¢\11¥q\18Jê½¢ú%ÃöÅ\14LkLß\v\8e\10t[c\901Ð\1asBÎ=\1cÂ\8c\8f\aÏuÀ5\98×\8e×è¾\ eÀvÄvÈFh{lÛ\82\7f\ 6H\aL;N{PGR\83QÍQ\1dÌjpW\7fø!\7f\1e\bäW\aV\976ÃÀo\rج\ eð \93b¬\16N\9fð\1dÒ«\aã\94¸S\17FèE\97ZN¬XG\ 5\ 6*[÷xôT{hW\95ê5Hù\7f\81,tË\95íëà\91\83º3ܦMÔîÙ1B:çßð
-vO\16k\98
-¨Þ7«ûü \96iMc\8cÑ\11r÷Q¢õ{\81Ö\98\13òÐ\87C\98Ñ\19×è¹\8e¸\ 6ó:ò:\0Û\11\e\90\rÌ\ eØ6Åÿùª§´Ã4r\1a@\1dI\rFµ@u0«Á]ý¡\a#«ï\eÀê7(Vs³ZÌ\82\81hèâÄþU¡<µÇsy\7f¾Ë®w\f\aL\972î:\12#*<¢^Ãt¿\8fØ]5\1dUQ£º\1d]Z\90©\93{üÌ\18Wû\11M\18:[Ìá)\91zï¨îñ\83ô\99ÖÙ\11r×=\10dlZJë\a?\14Â\8c\8fb\9cñ·\13®Ñ¼\8e¼F`#±\ 1ÙÀì\80mKü_\ 1Ò\8eÒ\80iä4\80\1a½\1f\8eÔ`TKT\a³\1aÜÕ\1f<\vg7½ï=\98_í} ¥\8d\8b\81Õ¯éfõÈáÞ·\fW\84 Zܯ\v»Ë^*5Ió\ 6ôæ¸úê\8b»ë5\80ÓÓ\80=¤g;\86d?`ëéÚΪ÷´ ã\96A-\98Ò\88¸\14I}\1c¬.ÂZdï\11ÓZ9B`kÌ\9dwGZoÐ\13ò\81û\7fãì\aC\98ñ\11\1fg̸Fó\1ay\8dþk\alGl\8fl\84và¶!þ\8fW<¥=¦\81Ó\1eÔHj0ª#ª\93\a$\98Õà®þ\8d_Ç\1fñ\82}\8bý¬~]\81ÕiÆì6\81÷)£ô`\8a
-\8fW\88\11jÙSrå\86*á\10þ\15z²«Â\83»g@}Æ\13{t\awK×ØM\9f\98}\95ÞSå{ê?½ \1dãÑAêã@õKzü Ê´V1Æè¶\ 6ZcJHð[\ 3}\98ñ\9c\8f3\12\\83yíx\8dþ\10\06\12; \e\98\1d°Åÿ\r \r\94v\98v\9cÎ ö6µ#u°ª\83Y\r¨>\87\19{è\ 2\81Ð"\9cÝ\84ùÕòW¼òÆÅ1¬\1e>¼;Mó!r<j0D\17ÆÉ1ÔÇì\8f \b´ûq\87~\9aP§\11\95ݹk;Fi·¹Ø-û\99\1a\1d\95ß ½#ÑEêãbu\97i\1d`-LkEkp[c\90\91Ðú½ï\87\9dçè¸öqF\82k4¯#¯\ 3°\91ØÈl\80và¶\12ÿ'¸ÈSÚsÚ\83\9a\92Ú;@\82\aä\11DµÏØK¡EÜc\9eXM\ f\ 4I\9bazY§Ã\8ez·7Ù\87\1aì\99Îe\19Y+³^\93Ôw0FÕ×¼vT\98¶\8fªëØ\9eí\e\92\9d&ß8é«Ê$\99Z\99¡³¥\eÔÇ\86ê>?\88mZk·5l;Ç\ 4>ô[o\1cß÷\ 1ï¸\8eÆuÆ5\9a×Èkô_#°\1d±=²\9föÔ\ eàf\12Ê\ 3¤\ 3¦\1d§=¨/|î<\92:ú?\1e{,z@0 äA\9f±\17B\8bpÎ^ú%ó\9dX=~¤\87j`Ï3OJ\11&ëðç\8eæËÈn\e=\ 6{ì Ò{;Ô~LU§Ö´³+\8b²sÇî¹ò\93\10=¦\11ý\83uܨ~É\10?\b7½#D¸)\97\8eÖÛ÷ø0c2® ®Á¼v¼F\7f\b\18Ø\81Ø\80l`6@\eåi.±\18.\ 1J{L{N{\93\1aI\rF5ú?\12ª£·:¸@B\1aHøa\18î\ 3¹e\10«3=v\1aö=ÊqëÁ¾\8dã«Òquå1Õ«_õËÄÞW×\ e\1c³\9d{¶£w'×\7f`Ý÷Ó\86A\83u\9c¨\1ekZ\9b\8e\90Ûb\ 2\1fzBpw\f&\85|\03®\1f\14¸\ 6ó:òÚ\ 3Û\13Û!\e\98í©})¢;H*\ 3F\ 3¤\1d¥\1d¦\91Ó\11ÔÞ¦\8eF5Au6«\83»:\9c³'söØf\18<\13u «w\9eÄû\91}*ÂH5\98,ã\94³³j×¥#'ôWá%\83t\7f\12°{»¶gL\8e¥O\87×{¯²\9fú\ e\1d¦ãEu\ 1ÖÒ´\8e¹Ö¦#\84Ñú^¤5&\85xW\88Â5\98×Èkô_#°\91Ø\80l`6R;Ê\93\91ÍQð\82\v\11ÓÈi\ fjBj4ª\19ªÁ¬~¿7«S\1a\88Ü·xëpVó)ß;¼û\990\83åúiÂþe"^:ûc,\ 1÷Ø\8b£«Ô%×o¼ûfØÞdÿUßoýG\8dÏq\93\9aÓ\9aôàË^f\99ÖÄ\11R¦õ\fií\1d×ïG\\ 33®Á¼F^£ÿÚ\ 1\e\89í\91\8dÐöض\ 5ÿ|\1e)\9d8íA\8d!EOj4ª%ª\99\vä^vÎ\9eÁê×ö²º41¦ªÜÞå\98\14a\926\9cLUv\84àn\15ßµVcëzÌ}y¼²\8fÊ\9f\10¢£\\ fT\ f0Ó6Fî\bÑ´¾=ÐÚ'\85Hã:âÚó\1aý!\0ìLl@60;`Û\10ÿG¸ÌQÚcÚsÚ\9bÔ\91ÔhT\9b¨^µ<´ØÉêW±=æ6«w\1då½M°²\9c&5ØW\85zkµç\818±j\8d®ê\9eû±W¦÷é>ª¿SÕ\875b\90\\1fRwÁZ\9aÖÄ\11âÝÖ\9aÖ~wLv\'ã\1ap\1d\9c!\84× Ø\8eØ\ eÙÀl\80ög\ 2¸¥\84?}ÚSÚa:p:\82úÑ\8f}\14I\8dFuBµ`ur\81ð3Qí\ 3AÆ°zç\11\9f"Ç¢ {R\81}ViDý\8eµ7wè´½\8dù®5Ýi\88\8f±Æ}í\98\ç½µÁ\96ëFêNZsÓ:8B\82Û:\ 4\195ñ\9c\90yp\85p\{ß5áu\06\12\e\90\rÌ\ 6h\7f*\80\9bI(\aFÿ6\\8b\98v\9c\8e \ 6R?\8c¤F£ÚFõb\14«\83\13¤Äêc\9c\0£eo3ù$eg¼\9cÖ\9eÜG½®KE¯Cõ¯_µ\8f©\ 1L®+©»`c\8cÔm\1d\82\8c\ 6ѸδN¸ö¡ÆÈë\87\1fù(\ 2\e\89í\91\rÌöÔ\8eäN\12\v\1fÇKþCÄ4rÚ\83\1aMj$5\1aÕ&ª{Ym\1dÞ4\80ÕÇ7\19ÆÊI¨Â©\90ÓÚ\8dû×1VôETóëRÿ\97^\7fRsZ\87f\12ÓúåÔ´\16nënZSã:à:zC\90×\1eØ\99Ø\80l`6@;Ê'?\99Ø\1c\ 4.\0H;J{L#§\93I\8d¤F£\1a}Õ Õ¦Y-ö¤MæcY}ü³b´\1c»&\fÒ\8a\93~ÿ wâqÕkÿ5=\99Zï½ê׳ö'\ 1j\ eë\92i]r[û c\89Ö
-×è\r\89¼&ÀvÄvÈ\ 6f\ 3´=¶£<Fÿã\13øg¸Îc:q:\82\1aI\rF5\86\15\ 3ª\89\a\84\9bÕ6«_3\8eÕ×mzL\90=k®mÝwu®Kß_\8fzõ©åñÕôzöäqÕþºWõúâ¹8+Bó\rGȯ\98nki[kã\9a9C\82y\8d¼&ÀvÄ\ eÈ\ 6f\al[âÿúQOi\87iä4\ 55\92\1a\8cjð\7fpTS³:º@ÈÙMÞ_ýâbu\96Ó§\ 6Óuó\84zýxª5F9÷YÓ\13ëÆArz+~\1dp<|Bø¾è0\89ÛZÓ\9a\19×É\17âq\r¡Æ`^#¯\13°\91Ø\80l`6@;p[\8bÿ\e\å(í1í8MA\8d¤\8eFuFuò\80H\17H:\135Å\16_\94¬ærÚ\14àÆ£Ë^ê4MAwªêié¿\eQ\8e\8d¾#\85Té\17
-´þeå¶&´\8e9!Ñ\15\92\8dk\8aëà\r\89¼NÀvÄöÈ\ 6f{j{n\vñ\7fø\b^ôá\88iÇi
-j$5xª\9dQ\9d|Õ\ 1Õܬ&éÕá<\90 ¬>©\89ób\97½ÒeÈ´¿Î²£\92V¹\8e2\15ªÇ&¤n\82Ö/×´>(ÑZ¸B\82/$ãÚ\9b×\91× Ø\8eØ\ 1ÙÀl\806Ê9!±\1c® \94v\98FNgP#©½Q\r\19 \19ÕÞ\ 3âÍjâ\ 2\89i ÓröF\ fðñO*DÆÎýÓS©ÓRÙ\9fWÙi\90\8eYH5K¦µt[3ZûÝ1Ô\15â\8dk\82kð]{ó:ð:\ 1Û\11; \e\98í©ýPDw\94Tø¡\0iGéÄé\fjBjgT§l=Du6«³\v$§ìÙ?¸8\9eÕSû½Ê>e\17\r8MÕº1&Í\rRÍ\ eÙËÀ\/!õî¤ur[\13Z¿1Ò:»B¼q\8d¾\90\84ko^g^'`;b\ad#´=¶½|èC\89ÍQ\1e\f\90v\94N\9cÎ \ e¤öF5E5z@\92Y\9d\ 4\r¤ÈêW\feõ \8f\\15\90SÚ\97{\eðã¯ê1µâ\84ª,d_\ 3p\82B\9bC`]p\84¤\94\90Dë\94Â\97\8dk\86kð]{ó:ð\9a\0Û\11; \e¡\1d°]\10¼\0 í(\9d8\9dA\9dHíý\1f\14Õà\ 1Ifut\81ð\94½ÝX}\9aÆðçRNm?î©bס¦×§ò×¥ÞÇWý\93\16Ú¼\ eÓº\9bÖÑ\15\92\8ckð\85\10\£y\1dxM\80í\88\1d\90\8dÐ\ eØ.\b^\0\90v\94N\9c¦ N¤vFu\b+\12TS³\9aº«wgõI\8f`\96ë¦\a§HNk'î½^ÇVÓë^ïc«û)RÅc\12ÚØÁ´FO\88ßy\1eÃ\8cԸθ\ 6ß5zC\ 2¯\19°\1d±\ 3²\11Ú\ 1Û\ 5Á\v\0Ò\8eÒ\89Ó\ 1ÔÁO\9dH\1d2@<ªC¾\1e1«½\v$§\81\94Yýò\e\89ÕIN\93\16ì¿.»×éxë}¼õÚgMO®Îû«ýÉÕü$\84¶\9cÂ\9a9BR\90Ѧup\85Dã:á:\84\1aѼ\ 6^{ÿu\ 2¶#v@6B;`» x\ 1@ÚQ:q\1a-joR\13R\1fÝs7EuÈ×Ëf5sWCÊÞtV\9fôèõÈiS\80iõ9É>?¥ÕÚ©¦§¤ÂJnÐj_O¡\1da\98ÖEZãÎsæ
- ƵÀ5zC\18¯#°\1d±\ 3²\11Ú\ 1Û\ 5Á\v\0Ò\8eÒ\81ÓèúÈ \8e¤öþ\ f\f+zT\87|½dVg\17H\f-¾HYå4UÿÆcËi¬\93-§´\ 3«ì*=´~E\ e2JZGÇup\85ø´\10\8eëè\r\ 1^\13`Gb\ad#´\ 3¶\v\82\17\0¤\81ÒÞ\9ev\9c\ e \16¤F£\1a}Õ\1eÕ\87\11ÕĬæ.\10\99_=\88Õ'=p/:©Ý[¥J§\94`mº%©+$úB\b®ß\ 5¸Fó\9að\1a\81í\89\1d\90\8dÐ\ eØ.\b^\0\90\ 6J{L;N£E\9dAíI\1dü\1fè«ö¨\8e\1e\90hV'\17HrWWVW©RåÔK\8fiMimkâ
-ѸÆD¾`^#¯\ 3°ÑÂ\ eÄ\ 6d\ 3³#¶K²
-\90\8e\98ö\ 65\82Z\92:ø?ÐW\1dQ\8d\1e\90\1cY\8c.\90ä®®¬®R¥Êi\97\97N¡5s\85Dã:¸®#®1\91ÏóÚ\99×w&\ 3Û\ 1Û\13; \e\99í©\9d%¢9 ^\13(í1í9\8d æ¤\ eþ\ fôUST\efµñÛ¸\95ÕUªT9\9dbÀº\8fÖÊ\15\82Æ5Ç5&òy^\83y\8dÀ\ 6^{\v;\13\e\90\1d¨\1dd\99\84\14"¤\81Ò\80éÄé\bjNêàÿH¨~\8bGuðV[îêÊê*Uª\9c~és[+Z\13WHÈ
-AãÚãú\16\8fkLäó¼\ 6óÚûC¼\81Í\88\rÈ\ eÔ\9egtgI\7f@H\ 3¥\ 1Ó\89Ó\11Ô\9cÔÁÿ!PÍÍjê®®¬®R¥Ê\r EGH\81ÖÉq-\8cka]{óÚ{¯£?\ 4\80Í\88\rÈ\ eÔÎä\16\12ÿx\14(\r\98N\9c\8e 椦¨¾9£Úr\81TVW©RåF\91NG\b¡µH
-IÆuð\S\\13o\b\9a×Á\7fí\80Í\88\rÈ\ eÔNà6$üýî@iÀtât\ 4u\89Ô&ª³\vÄ\87\16É9{\95ÕUªT9µ2\8eÖÔqMÓB,\'^G\ 3\9b\11\e\90í¡\9d¸\9déMÿûn\7fÉ\9d\81Ò\80éÄi\ fêDê\1eTS³\9aº@*««T©rúÅr\84hZ\e\8ekb\\e¸f¼NÀÎÄ\ 6d{h{jStßEð\9c\18í)\r\98\ e\9c& æ¤6Pm\9bÕ\86\v¤²ºJ\95*§UºÝÖ\16\95qp\9dÌëÀë\ 4lBlÏl\ fíÈm%ñ¯x)P:bÚsÚ\83:\93:\18Õ\fÕÉ\ 3b\98Õ=¬þ\85Êê*Uª\9c\1e)\9aÖ\16µq\1d|!\ 4×Á¼¦¼ÎÀ\ 6bGd\ah{j'\89h\8eâ¯AJGL\ 3§)¨\15©MT[fueu\95*Un\14);B\14mãZâ\1aÍëÌkô\87\ 4`\ 3±\13²\91Ù\81Ú ÜTâ_Îø\vo#\98\ 6N'Pgï\87#5\1aÕ\1cÕÑ\ 3BÌjË]]Y]¥J\95S-\13i\1d\8dk\85ëh^3^\ 3°\81Ø\fÙ\ 1Ú\11Û¦\84+üå\11Ó\81Ó\1eÔ\ 6©©¯\9a \9a\9aÕÔ\ 5RY]¥J\95\eA\86ÐZ¹B¢q\1d]×\19×Ѽ&¼\ eÀNÄFd#³#µ3¸\93¤?¼Ã_\18)\9d8\9d@\9dH}S u ÕʬÎ.\90Êê*Uª\9cvyé\18Z\aã:z®¹u\8d¡Æh^'^g`#±\11Ù\84Ù Û¦ÄK\12¥\11ÓÀi\rjïþ\88þ\ f\vÕ=fueu\95*UN³tÑ\9a»B¤qmá:\9a×\81×\fØHl\8flÏl\ fmFîCÆç\fiOiÄ4p:\80:\93ú\8doL\9eêhT\97Q=\86Õ\15ÖUªT9%2\8cÖÔ¸.á\9a\98×\81×ÁÀ\ eÀöÈöÌ\ eÐ\ eÔ.Ê[ ¤\91Ò·àsn\16&5ØÔÑýQD5õ\80\ft\81TVW©RåôÈHZg_H ×\99×\ 2Ø\ 1Ù\9eÙ\ 1Ú\ 4Ü\ò\9foÉ\94FL\ 3§ ¨\83÷\83¸?J¨\1emVWVW©Rå\14\89Më^ãÚÀµä5\ 56\12Û#;0;Rû\16\ 1oV\1a/½9a\1a8MA\1d¼\1f̨f¨\96\1e\90Êê*UªÜ\90òÒ1´\16¾\10\86kÅë\ 4ìDl\8fì\bí\8cm[âU7\87»n\8a\9c¦ \ eÞ\ fnT\ fBueu\95*Un(\19Bë\ 1¸\8e¼~Mâu\ 2v&¶Gv\826á¶\92|I¸'a\1a9\1dA\1dLêHê`T\e¨Î\1e\10Û¬®¬®R¥Ê)\97\12µqÍ\×Ü\19\12yýêÌë\ 4lBl\8fì\ 4mAnÉç\fé\80éÌé\bjIê`TK_u¯Y]Y]¥J\95S/\83h-\8ck\81ëÈëè\ eaÀ&Ä\8eÌ\8eÐ6ØÍÿ\12 ýÆpwât\ 2µ$51ª{Q]t\81TVW©Rå4\8aD\95¤u/®#¯£;\84\ 3\9b\10;1;B»OÞ@)M8\9dA-IÝ\85ê\81fueu\95*UN§\14im\18×\ 5\Sw\88\06!vbv¦v§¤«ÃÝ\99Ó\19Ô&©ûQ]Y]¥J\95\eOziÝ\81ki^ÛÀöÄNÌ&Ôî\92tu¸\9bp:\83\9a\91:\19Õ\93Q]Y]¥J\95Ó+\8aX\ 5ãº\8cëÄk\13Ø\81Ø\89Ù\84Ú]\92®\8e·\13NgPsRw¡º²ºJ\95*7¸ôÓº\84k\8b×\12Ø\81Ø\99Ù\19ÚÝò\1aNiÆé\fê2©+ª«T©ò"\93\ eZwà\9a\98×\99×
-Ø\81Ø\99Ù\19Ú}òjNiÆi\ 2jIêa¨®¬®R¥Ê\r(\ 3\8cë"®\15¯)°\ 3±3³3´ûåU\9cÒ\8cÓÔ¤ö¤îGueu\95*Unt\19b\[¸Ö¼fÀ\ eÄÎÌÎÐ\1e"é®\80iÆé>R\8fBueu\95*Un\fÑøêÅ53¯\19¯\ 3°#±\13² ´\vè\16\7fÏ7
-N3P3R\ f@u5««T©rãJ'»qÍy-\80\9d\88M\99mpÛ$t\86´âô\10R\ fDueu\95*Un$\19f\G\wò:\ 2;\11\9b2[aÛ\10vu~\88àt\0µ µFu·\a¤²ºJ\95*7\96\18\1c\e\82ëÈë\12°)²\ 5´»\85Þ\96\1f&@\1dI]4ª«Y]¥J\95\17\9btÓ\9aàº\8f×\99Ø\ 4Ù\1cÚ\ 6¼?ÓÛ\13§K N¤¶\8dêjVW©RåÅ"=¸6ÌkÅk\ 3Ø\1cÙ\ 5j\97\19M(\9d9\9d@\9dHÝgTWTW©RåÅ#\ 6ÐJ¸Ö¼6\80Í\90 Ý'ìÞÌé\ eP\8fBueu\95*Un\\19\83k\83×\19Ø\94Ø\1cÙ]ä¶.¤\ fÊ\8f\1fCê\8aê*Uª¼èÄâ\1aǵÍk\13Ø\1cÙ6´\8bÂo59M@MI=\0Õ\95ÕUªT¹Ñe$® ¯ °\19±\ 5²G
-{\12\ 1õ0RWTW©RåE+\ 3p]ä5\ 56'öXhË\9b_ns\9a\81Z\92º¢ºJ\95*/f1\11'qÍyÍ\80Í\88\99=RøÃ\18¨'\90º²ºJ\95*/")pn\ 4¯%±ÇC[ÝÏ9ÍAH]Q]¥J\95\9f\v\19\88kÁë~bwÀ»ãRñT\ 1êÁ¤®¨®R¥Ê\8bNJ¼Ó¼î\ 3v\ f³;E?J¾L\93º¢ºJ\95*?W2\ 2×\8a×\16±\87c»p¯~\89Q\93bOº;«T©R帤\b>\8b×\ 6°\8bÈ\1e+Ö£*\94+|Ò]Y¥J\95*Ç)eú\99¼6\81½\ 3´K\8f3ßÝQ×\93îÆ*UªT9vé` \rì"±\87b»ó~û\95]¤®¨®R¥ÊÏ\87t\81°Àë>dO\92Ò\9b:ëwÒ\9dW¥J\95*×O:qØ\ 1ì=!»ãùݤ®¨®R¥ÊÏ\9bôðº\vØÓ¡ÝóÐ\9e*\9dt\97U©R¥Ê\89H\1f¯û\80=\88ÜC\9fÑ[\99\93î*UªT91é%ä\bbO\97\ 1\958é\8eªR¥J\95\13\96!¼>6b\ f{ùIwQ\95*Uª\9c
-\19\86Ìý"{ð;OºsªT©Rå4É`xî\bíQ賓®R¥J\15%ã8:\ eÛ\13\1e}ÒÝQ¥J\95*§W¦\0Ûb÷\8eÏ©¤®R¥J\95\1eÙ\95³;ËIw@\95*UªÜ0R9]¥J\95*7\88TPW©R¥Ê\r#\95ÓUªT©rÃHÅt\95*UªÜ8R)]¥J\95*7\90TFW©R¥Ê\r&\15ÐUªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©R¥J\95*UªT©Re¬\9c9óÁ+O>páÚ\85\83Ç?tpæþ\87Úóî¿\1f½ðüµKW\ f\1e>x!üß\9d/\1cÌ\ f\1f8\98\1d>r0;Z,¶ëåáìh¾\99m×\vü\97¶m\ fgîßÖ«Íj±6þåñ\vîæ¹»Æ]\7føøW\ f\96\8bÕÑr¶Z\1f.\16\8bõQ»<¼ì\8a\96Gͺõ%Ëv5?\.fG3÷¿X2\9fo\16\87Ëùæh¹m±hu´ÝÎ\17\87g\ f\96óõQ3\8f\97æ+wÙêhåÞì\8b\9aÅÆ=kÞ\1e-\9aMC\8a.\1e,gë£ÙzA\v\97³öh»nði\v÷´í\92\16Í·GÛ\85{.Ü\9a\v]\ 3æ{ë\f\9e\81mr/[7ë\r\16·\8bÖ\17Í\97®\9b\}g«£vÑl¡Ð5y6kð\15Íf\ e\15\997G³fÎ\8bæG«f\19ß\1a\v¡o¶\e¼n³\-\Ñls´\9e¯ü[W+x©û\97Íz±
-/]¯×\8d/\.Wþ\r³Ù\f¯sýµlV¬ÈUu÷/\8d\85ó£Ùvë\9bº\9c»\9ev=â^ºv\ 3\b\1dÜ®Û5)r·º\11l\17î_Éu\v×qË\19´~æ\9a°\11EË£å&Ü\9a\v7î:7øn\82¸\9ab=¶G«Í¶Å\97n·[ß\1d\8bÍl\83Óa~´\98o6¾på§\8dûë\12g\92û·\8dë\ 5Z2?Úl¶\vx%)\\1cµ«v\8b×µ\9b¦õEÛÍ\ 6nu\9d0[oÈXÁKÝdYºî¢·.]\8bý0/\8e\1aè5WÛfÑ,r 4sq´i\er\91ke»Yã\93ܨ¬\ëhÑÖ\rö\f§B.\Ì\9d¾Ì \83\1a7²K\9cö®fó%<Í=~>o}\11\ eÀYìÚÙl»!\85ç´F\9e;xÐéì\ 3\a së-*\84\e¯ùl\rº\9aÊÜ¿¬Zìâµï\1e¬öºm¶¾¹«å\9a\14A\1f»7Î}¯¤ëæ\ e\13ÛÖ«\12\ e\1d-Ê-Î\85®UÛ\ 6Zìúx¶m״Ź\93cÑ\rendstream\rendobj\r200 0 obj\r<</Length 8752>>stream\r
-EDÄvÖ4ìºÔ,÷ØÍ\9a\95\84\86\9eu]\90!\14çæeZÖ\1cÍ×K¨ðöh¾Àñ\9f¹\1e_o©B¤"Öü|\9d\9b\92\9bÙÒ?m¹\9e¯Y\91\ee \94\9f\9d±Ð±Äé¢\9f\8aÛÅÆ\17V\9b\16\8b\96Ð5¨Ô³6¨Ä\ 6Ôu\1e
-aò\92&¸\87@÷UC¡ùw>vpæü½÷_½öÀ3\17¯=óÜ\95\vW¿zx\1f\14=þ\91s\8f=ôÀá}\87·\7fñµ§Ý¬kÎÏ\17çï8|Ïáí÷?4\9f\9dw·¸¿ßqx·»x}xïCW®\1dÞþñÿð\9bç?þô\85/^úÄW¿xÉÿé=î\1fü¶8$¹NßÌ\ 3 f®U\97i¡ë`\9cîçh¡Ó\81Ùbëtr¹<Ú4\8bðñh\0yËfs´\9dÏV¤Èõa³rÿ\1a¿\15á:§¦nâA\91ë\89õÂ\8dHÓ¸¡Yûç7«\r~d\1aÐõÙÆ\7fyÖð%\ 1\9dYÃì_«ÂÍj»ò\ f\®`:/6\8e\á\81\v§\93´dáàÞà(¥²Ø\ 1îa®vî\ 3±,\15â´sð\85Ûõ*Lßíf íXÁg3¼Å}«ÝÌj\åÚù\9c\14¹^YÂG½¡\85´hîôi¾¡Eð\19\m±[r!©\9f\1eJ\80ÉÀyÔN\9fGË\95#WÛ¬ù\1cr\85Í\12?òîC²r£t\bE37qü\97d\ 3_\10Rä4È©\rR=\17\92ñ]Íá34/\15:µ\9fÍ\1d¥ ÐuN³Üú/ÅÜéñá²Ý\1e-V³ðUw\1fk÷æv\rßÈ-)rCÒ\ 2;·sv\9d³`6\8bðõج`HHÑÒÍÝù\16*\9d\vIý\96[§ÓÛ¦Tèno[\87j^èL»9\98"-\90g\15\98\82\bvö\19Lí\86\14A¥·ñË\98®s]°Üø¢\rL\1a7µ\W5Èg×÷ëõ\1cM¢Õ\ 2ÌI1÷õh\8e\98Fë\1d¦ÑÆii3\v\1fýU;Cæ\93Bgf®Á\80ÚÌ\1cCÖ[ÿ\19\9co\9dF.×î\v¶\9d\87\ f×|\85¦×Ú\8dåÌ\8f\92kñ\16\80°nÜs\11ÜNYÝ\14Y±¢ðAr=J
-\e_\13xÚ¼ñEK°7\17øR÷\85kI\11ÜêÆq¹YÐë\}W\r\9aTðÝo\0\11\eglfAõ7Ë\16\95zÓ¸Ïk³ò\93eæÚ
-£±q3|µ
-\85Û\19Lf÷\8afÕ\ 4óy±qÓ\15ªâL\91%)òX7--\®\O´Û\ry\ 5-r\ 6ïj\81·æB×ënJa?ÍÚÍ*ØGÀª5\98âë {\8e¼¨ºë\8dëtüúº¹í\86få\87«ÙD»{
-D\8aÜHÏÖø\8d&\85\8e¤°\9ep\rm\9bÅ:ðb\ e6ëÚ½¼m7¤\b\1aº\8c\9f\97|]®®S\ 5ßmN\9dæÞ\9cs}ê\94\ 25À½b¶\fæî|µÄ>_»\8fùv\19@\8a]\8d¯Xà×Åéئ]ùª´ëyC\8a|#\96«å\86^\97g°{\85ûÜo\ f\8d\99~v¸\8am§«\98[Pº\979\9d_Q\85ºL\vÝ|t\9f³Åaë\16\1dÛÙ*Í2X¤máK½^\93"h1¬\r=÷âu\e÷\ 1ô\93ÑMó\19,\8dRI|'Ü\98Ê\1cùÁ\9cÂGµÍ\9cv^~eîd¨\9aã"íyÚªð4£¡g\83mݺ%ÐbëÙOú \17.\1c=çðö\8d{¼7/ãÄ"\15Ê\13p;\8f\9f\8d|\1d\18³í*\fñvÁ\8br/äB§~Ûù\12ºÙéábE B:>\93ÆUn»ôÝ\1c
-I\13âÃ\8c¦\8e²/·óÝìË\16¨Ú¬\82\19àþ\81\9evðu\8b¡\8d\1f,§ó`^¶°\fX¯\96AcaFµ\8e4ajÅnmçF÷·óØaé2÷/Î*\v½\ fë;Zâ8ºh68\91R¡«&.ÙáYè\ 5!½
->\8cdG\86Þ\87ºÀ´ ×¥Ùâ8ß:3ô\10Z\1a\aÄq~ÖÀâ\ 6ºd5Ç\15\ 5,¶\81øç°O\]\83Íã>\ 5[lþv»\ eVóbÙÎ}U\0R¹\bZ\ 1&7\823]\aë\8d\8d·7\et\14Ñ"Ú\ 1¹p\86Kzè\92Y\Çl ã Ç\9b¤\81¸zÆÆÏ7ô*¨~\8b®\1f0\1aÀ\90Ñ#?\9cqÛ\1dV5À8gÒÏ7ØM\8d[ªµ\8b5κ\\b.\ 27*ÐíK¿¦+\15\86ÛÏYÏ\ 4³\b\8agí\92Û¾¤0\9b}-.B\84\ 1K
-³±e<óÜ(\9dÝÁ\96\87Þ[ºå\15\18µ¬IK0v¶Áv_¹\8fÿa»Ló\13\9c9³å\82\155N+Ö`\88\91B7%Üç\0Õ\9d\14º9\rÖY»LÝ\9eæñ2Ó1Ïw·\98\9aÍ\17kz]\ 3vø6t¸3ÝÜôkæè\ 5õ/X¯Z¬
-,'×\9b`wá\ 2ÐU\ 5\96pË9Ó[÷
-÷¿\94Ám³\ 5\87\15-rUYº\ fÜvEÑÐ.Aᢻ¤u\8aÉ\8afG\0\17è\94Tæ¬Ó¦ñ}\ 2ìYÌY\99«ñbÖ\92²¶q\9aºZ\ 4WÎ\12\9c*´(|º \9bRaôPÂÃ\1cY¢u\ 2zë\96ë\8b%ÕwhTô\1e¦«\3\9dù´ö\8fÂJ¸ê£³\ 2§C\8b+ (sS·ñeÍl½òCº\8a\96\94ÃåF\14áì:kM¹è\a\83§.\9aEpñ¡\eô2ö»[ð¯=·Ö`t@7\8byC¿\ 2®q\9b\86~> W\9cÕæ¬>vY\1a\7fxØrµbEÁ@»Hç\89câr6\83[W¾g½[\r \ eU\9b-\97[Rt\965"\14\9e³Z6NÍwXk᧹m¹\8aã\7f7\ e÷[\87vW¿Ö\99É\r¶×,$ÀbO\1a¾ZÜî`Êö÷ÒSK§àç·\85çãC|pdæ\83#ø?O\1e¬\ eo¿ãðñO\ e{Áj[|Á½ôÆÃ{\1f~îÚ£\97.>wõÉKO\ eùóí×®^¸òü³\17®]úÌís§\86Mã̹»ïiÁ\87Ü´³õgî¸ãðÞ\8f_»úÌ\95§\ eýµ\9f\7fîêåÐ4ßk÷_s\7f~â\85k\97\9e\87W±?å\82ÛÁ«\ er8Sÿ\92þ\94*°8t5¸\ 3nóÕض¤\16÷?ùÜ\13\97\1eyâ\v\97.^ûÈ\ 5Wö\15ÖÑ¢o·Æ¿õõ÷³\17¾zéêü|iÆÀ\95\ f?÷ä%\7f[Oï\8f¸Ö½ë+\97\9f½â®¾çBêÒðÊû¯^½àëI®ºøô3Ï>yõÒ\15\7fÍ"LäøWø\7f×Ò\¾ý\1c4êpNú\91^ø¥\vϾ\10¯|æÊï>\7fÑ)Â}Ï^xâÒ³\85\e®\¸|)\rµ¼ãtµ\1c\87sL»\9fºúÜ\v_¼ìþ:ªíä®=´iÞÙ¦þÆ\80ö}âég\9eÿà³\97._ºrmHKÔ-û¥Ë=sp\99¹EJ{÷=\vts,\9bÍuÅK®Asx\8fÇK¨Çz>\9c/G\8b"ÊaØ\1eÿ²û\9f\17Ü?³ü¯ðÏ\9d¾ì\11øÿScìð\0\12e?sÞ\88³CáÄH»»ur¬ÝÝ;=Ú\ e7O\8e·ÃÍ\93#îþÍÓbîþÅ\13£îþÅ\13ãî0Æ\93#ïpóÄØ;L\90©Ñw¸wrü\1dn\9e\18\81\87æN\8cÁ{U\9a\18\85÷ݬâð\86ÎBá\83¨Û\ f`Cu<\9e\96\8e\8dÈý\93cò~À'Få=N&Åå}\87X±yV:2:Ϻbl|ÞÏß\89\11z?\80\93bô¾+FÄé§-sàÓ\85ÓÏ\8aÓ³â\1c©gÅccõîæÉÑz¸×\88×ÃÜ0"ö¾xRÌ\1enÕQ{x½\11·gÅ9rï\8b'Æî¡\8b'GïÙͬ\9eV\ 4ßO´a1ü©sÌ\8càûâ\891|\7f³\8aâC±\11ÇgÅ9\92\ fÅ\93cùîæéÑ|\7f³\8açÃ\10\19\11}V\9ccú¼xdT\1fj05®\ fýfDöÍq\1e5ÁÖ\93'\98\15ÛçÅã¢ûîÞéñ}¸yr\84\1fn\9e\1cã\87&\eQ~(\9e\1cç÷\99\18é\87911Ö\ fï\9d\1cí\87\16O\8d÷Ã\8b'Gü}\83UÌ\1f\9e99êï\e31î?Bý¶SÕ\ f\17¹fä\9f\15\8f\8dýC»'FÿáÖ©ñ\7f¨óä\f\0jÓ\9by\0¼xd&\80kÖô\\0¸yj6\0Ü;9\1f`¤-»\9dïfËZ9\ 1Pjd\ 5¸âéy\ 1póÄÌ\0\98\ 4\93s\ 3à½\93³\ 3|÷¨ü\0ß?\133\ 4 5\93s\ 4àæIY\ 2¡\e¦ä \fgâvòºÊ3ÑÊ\14àÅ)-\0\8a\8dl\ 1^\9cR\ 3ÌgGcËÌ\1a`ÅÔ¸43\aX15æÌì\81±\1a>y%á{ÕÊ ðÅ\13s\bàf#\8b\80\17\8fÌ#p7OÏ$\80\9b\8d\\ 2(\9e\9cM\0\99\9aO\0÷ê\8c\ 2(Õ9\ 5¾îÓ²
-àÞ\89y\ 5P\99i\99\ 5¾q\13s\vÌéÈ}{f\8e\81\1f\8diY\ 6ÐK\93ó\fØ\1c\1a\9biÀ\e\93r\rÌ6\8eÇÂäõ_øð\8b\8c\83X\92Ó\v ÄÈ:`Å\fv"ó`Ä\87c²1=0ó #í Æ\8bf1^\14âUgÎç\88ÕÀô\83\ 1¹\aÆ\7f¿È²\v&v Ï'\18\9bLÐ÷Ç\9f\97t\81cojÍ\ fØW~@\ f\ 1\8e5\ 3\80t\9aÓ²Ãû_¸öÜ¡ßèþÌ×È@\85{QËÏßÿÐöü#O<\7féê\97.=yþÃ\97¾zÞ_ôüõÍ)\98»?_yîÊaÓÌ\11)~Oþ,nÈ\ fü\9eãÿ¥\8dö)\ 1á·Ü¿|Á\15}Ùñíð#\87\9fþ\9dÙá\93®øñG\ f\9aµ³ãÖδ\9boæà¥\Â\9a£Y\837Ä-Ðr¡[N9;wÖú¢ÕÒ\19q´È-èÁWrñ\80\16:#bá\fìfÝú¨\96+\82à\993\11\9b\158¡\9ca\8bEí\1cÍj(\9c\81I\89\85n\ 1·p×A }»õOÃ\88\12/rËT°æh¡3\b\9bUëÞ:óQ<Ú\ 6ÕÖ\8b\a\9fÇ.hÜ\aþÐU\ 3<ÚÎ\9a\84.\98ûøe.\84ú¡ã\e\8b\9aí\9a\15µkg n}eráòhµa\95\81"ðv`e\9aÕ²!EÐ{ÎÖ\82è8½®Åȧ+\81Ai[ZâL\8dõ\ 6ïKE[·¤uö\1d>iÆ\1ae´\937\7fÓ\18ÍO\85¹YP$\9a¿Y\18Íß,Tó¡H4?\15Ñæ\93ëBË6\vÙ|x§h¾«§l~®¿n'4ßG¼³ÆM
-p\1a:ãù2î\9fÜ´n¶åB\bë ×Ö\15m\9dA¼YÓ"hé\12wß\90²-ä\8cø\98ÎvÙÀÃ`ñ\ 6áÏüÎP\ 2\ep7N]ZrÑ\12Ö\83Î.'O"Eé\85¤lv4o·®ªîQ®Ëç¬öª\95qì½F¬\97\86ö§Â¬ÕP$´\7f½4´\7f½TÚ¿^*í\87"¥ýP(´\1f\9e&´\1f\8a\94öCí\84ö\936¨¶òñ_/\8dñO\85y`×K5þ¨èbüA\15Åø»Æ\8bñ\8f%düÓEi`ó\93H\91\1eÿu«Æ\9fÔ^µ\12\e¿\9dC\92Ï2L\1ew\ 54>\17ÎÝÂy\ eA¯\e§åfCgÔÖuQÓ° åÖdnA:kØe[7Ö\9buxX\8b^Ï\99_ü¡&µ«5&¥çBp`q¥\ 57Ï\96QÁRaã\17\9f¹\906\ 3\ 2©®\19FË Áá\10\9b¦q\1fÈÍ
-VÖø¯ë\19n{Z¹N]Õ\7fÂ\85çò=çÜsðP\8cíÊ»M\92ÊBß\ 1·\96¤\8cT\ 4|\15\e\88\92\82c}\83úé\8aæ³Å\1c7Ü\ 26×xgX\1c\9fá@\a\90+D?Òê\10Þ0sêá\8bÖà\83\85nÇ Z.òû\12ç\vüêÆÂvÖ\1c¹¥6\16Ap\ 5Öü¹h±9rëzÜ\ eB
-\9d\1am\97¸\ f)\17ºQ[@l\17B\1aèBÃá\9eÏ\9dFA\11\86æ]Ñ\12\1cÕþy\10ð^ÌIá9V\b+,t~\83Gf\8bÓgås¡ h¹Y\85"ü6\9cÅi\81~\1a¼u3Ãi¶öÎ\1c|\ 5~X`\82¢×'\17ù\1d\8eè\1c"×mÖÞ\85\84¯\80qcEA×a\8bh*\4nà\17\r\ e$z®ðëäFt\83±\19§ð´ÈOnô\86åÂs¬Ð¡o±\11\85njÌZ\b\1a»Ö¶[ú±Ð\13Ïër|3X
-ø\92Ëäy©ð\1c+4Þ\fÖ\81xsbRz3\ 1W\9aòùª8åáQbÊC\91\9aòë\951å×+5å¡HLùTD§|*̳Ö\91_Nyh½\9aò@Q5å\ 1ùbÊ\ 3GÅ\94_/\8d)\9f
-ϱB5å×K5å¡HMy¸ULyx\85\98ò©\88Nù|]\9aÊð
-1åÓç\8dNùu«¦|\9aPÆÄ;\vóq\93\0ä>Õ°ÖÁ\13\14Zxß\8a\14\9e£\85\8d\e\11÷øpÖ@ä\97U\98oÿ<>`Ö®\ 2\0Ý¥«ðªP\98©\83\99\rËM¡,Þ|Îzâ9Ö¦õÚhS*¤mZ¯\8cêÛ\85k³M0\99U\9bÈ´Jõ7ËVF\9bH¡{\11¼uÅ>(\97ñ¸\86ívC?2\90÷2Gü¹ïÓ¶\9dCJ\833YfÛ¥/ZÎüÑ#\98\1f³Þz\829¥Á3\fZ\1fn$ß@ÈyY!\9d#Õ \1e\8b\197\8aÁRl)úVN%Ü4\vF1$ Ò"7¿·3<4#\17B¢ê
-\93Å¢\81\9dl\935\18E\en\14CÅÜ$_°ëZ¯\9aX\84y<nå\11¦ÑÆÍøÕ"\9c6\81¡Cü*\1c\°åk0z¶~Âm[g\9abËçkú]Â\8a4hj\90OÕjåSÖÈu\ e\93\90Ñ\86¯]® =4\95жÇ2×Ù\98W´\µG~a\9dGS\rúE6\17\12AÉ\ÈôMs\ 1À-æ\ 2\14©¹\0Ô\97s!\7f\1cÒ\H_\904\17Èw&Î\85tQ\1ac4\90ù\\0\ 3YÍ\ 5@\e\9f\vÙ@Ns\81\18Èy.\90ëâ\\80"6\17ÖKc.\0®Õ\\0E\15s!³9Í\ 5Êð4\17òuq\94áµ|.°¶Ç²\95\9c\vd4Õ \8b\851L\91Ö\9fzæ>\99Û\19.Ûc!äüÍ7ë`²,à\81¹$/Ss\99SH·Ft\9f\1c÷¬ÍjÞ\84 ¾\80Ê\91ej(\82\15\8e[AÂ\1c#×Á\12\11\97òéa©\84¬\8cS\11dO@ú
-< ²ªHíu+Ūpe4>\15æfá\fg\8d'k´\¶T\8dÇ\11å\8dOE´ñùºØ®ü°TÒªÆ\83n\88ÆçÚëVbã\eÈ!Þ´ÞÒŤs×øh\8fb\ f;M\87dè\95OÖsE°Û\a\12&IÑÖ{\11.\1e\90Â\ 6ã©®\rîiëf\9dçÑ\16Óº[Ï»X\14\ ek[5ü:·\8e\ÅÕNã\14\f\13\9b·Í|E^\0§µ9ëÕ{\85À_5ÇÓ®\9aõÑ
-Ò*ñ\83²\98A\1e¿{Ãr¹¥\1f¢\ 6l¼\rû\ e5\v\9f\8eI.\9aù\80<\96ÌA\87IQtC]< \85kH\0\84\ 6, Wtí\8b0Ï\12^¹\88^.\8cÞ_ĺ6ktÂ.ZÏÇår\ es\8c(\16-IË\R\bë£\rÖÍQjÕl©\ e¹®ÂäA¦k\rd;Íæôº\ 5dÕâêm\81{cVn¨üWÍG×Aû6Ámà&\14.Öó¬\99\83\93¦u\83\ 5¯XÏ\99wª\81´×\95p&@ÐÚÕ\80]纤ñ>¸ÍQ\ 3î\aR\ 4û"ÖèÕ¡\85\90È\ 1Un A×»É\16þûdLs\9cý©\1d@Vl\a\9dý\80}Ñ\8eüqHí \1f\91Ô\ er]¬\1f¼B´\ 3\16 ª\1dëVµcݪv\80\95\1eÚA*Ü*u]·J]\ 1\13J]ñSÎÕ5\80\82ªk*¢êJ®\8bê
-EB]Ó\v¨º¢w]¨ëz¥Ô5\99\ 1Q]\89©\90Ô5_\14Õ\10J\84º&§9UWp®\vu\85"®®°àQê
-½+Ô5r\99\96\18ê\8ak;®®\99úI]é×!©k¾.©+.\a¸º¢5"Õ5Ms\\rÌ \9doÓð¥Ô|á'.["åBÈ\11tSQ\14Î|º2\14a\ e**í
-\1c»°9¬]¬\96¤\bÎ6]ÁV\8a5»n\r\e.\82\13o\ 5Þ\7fØ"å\17 Æ\9bU<Ú4,\1críà#5[\14ÊÜ\rÎ"\9có2ȳ\ 6Ïá"¤\8a{\7fÐr>÷\eÿÚfͼZ¸¡ÌûæÈZrî\13\87<³\9a-.\ 5çëØ¥\90Í\ 4îih+î¦À{\17¸m\15bc«\r-ò\87So6Kv]\1e Ø\ 4»Æ\1d¡©ÈuÊl1\8f'L\8b\81äãK\97\95iÔèr1\17¶ÆøÂ\ 4\16ã\v\13I\8co*¢ãK®\8bã\vOãã\8bx\13ãKk\17ÇÍ,[êñ\ 5ø\8añEç\a\1f_âÂÉãK×Õq|\91år|á\81b|á^1¾©\88\8eo¾.\ fÐR\8d/t\8a\1a_¶\9aoÀÑÖ̸þBáf\1dü\85\e·|\0wöÖ\91q\81V\88\ 3\1c\ eo³m`\87]0\8f7K÷\94f\v«\85¨GX\ 4µ\86§,I\99û\aö\8a\857,!\ 5\92\149ÒÌÚv\8d\95N\85Yg\/\1e-|MÌB\bó¡S\84\969d\81\1f\92\14AP¯\81\80ÓÖ=¤]´¤èâ\ 14m>\8fÆ`¸nîsªñihcCÑlæã\94\ e\99Û\19¸ÞH!©Þ¦\rȱʢW\9f\95¹î\9e9È7\9b%l3\fNøûXC îÖÍCvÖ\1aG\1cÞÍ\1c\ 2aÛÃ\1cp¾Ì
-\97~ñج·¡\13Ò\9a\97\84\7fcÑE\8có®×~BÇëV[¿\89Ú["\8dëz\8cÍùéÜBÚû¦Å\80\9d\9b\9e\9bp\19úÿ \ 4s\80é\9d©È=¿ic¸.\96m@\15\e|\ 1n0Æ¢\99ë\1f¬î6:ZÝ?xç&ìËóÞ×\16\1aºYD_³û¶µK§\10´(G&sa\83ÛÎ\16\18Á\f\ eTgT,\960\ 1r\8c0\16A}\971\82\99®ó\97l zµ\rÿåÞå¬r\fc¯Ârm>\83y¶jüþ\7f¿ì\9fÃ\88cdi\19\1cÁ®\9f¶Ø\9f¸1k}\98\9d²PÔ8³/° YXÑ\16fYë_\18\vãøÀ[\9d\1d³ôôF/;¼u\8d\96\93£\88[znð¥!³\17mGì[x\18î ÅÙ´õ¡ÿ\äf\1dî\93¦e[\87s\18\v÷0<ÜÁ[\7fÛÕ\12;\14\8f\81ÈE0é\1a\7f\\ 4½ÎÕc\8e\81cè\e0D1p¼mÃzuÙb\1fåøò
-6ÝC¤\7f3Ç\83,°d\v\8e\18÷:Ø;\8fï\84Íõ¸\ 5\14Æ\1f÷Ù{S2\0\ 5´$¼5\17Âî©eË2'\88\82ÁÖ\85u{h("\ 6ÔÓkp\81é\1dÄù5©\90¾&g(¤g\ 2\91Äkh\86\ 5)Tú\9eü\9d$ßanè{¾.é;® ¸¾C\91Ôw,ãúNîLEsï¸jãú\ eE\ßÁ¬Qú\8e\ 1F®ï°ô\14úNó\90ráLéûf¦ô=\15Q}Ï×ùK¨¾Ã»¨¾Ã\87@è;º|¹¾C¥\95¾§¸cÖc´í¸¾C\87*}Oã\93õ\1d¬q®ï`\15*}\875¯Ðw\98MBßqÖ }\aï\86ÐwtÎp}OETßÉuQß¡Hè;\14I}\872®ïP"ô}Ó\18úNt\ eô3~k\89ù\9b¿µÄ\94J6\13 AÙL\10M\146\13Ü+l¦TDl¦T\96m!x\83°\99\0*Êf"vh¶{ìÂVÛL\80.a3!à¸Í\94\8a¨ÍD®\8b6\13<MØL°\18V6\13^´\85̲\95¶\99pñÎm&èwn3¥!\83\98£w\94Â\1e\88E»@Ëh\15/\8b\85çXa8Ää\¼Sþwº)>;Vý2\9et\e\16/4Ä\9b
-\9d&¬à4 ø,ùßù¦ðìdJÒg³\8c\89T¸äÏRÿ='Ͼó±\83\94«CS\9cR®NvK¥\\1d°ÂD®\ e\98\e*W\aíM\99«Ã
-c®N*$É\ 1ÊÕ¡^\91\¸TYH¤Ê²eð\15¶OôÛ¦lü\17\8c\7fp¯\98ß\19â\96¢[ØQ\ f»èÝ:\11V¦óÖ-ºð\18"Ø\92\8cÇ{\85\7f¬\13·\f"]Æb\85.\83o\ 6\ 6Ý\16/\rª\1aôu7\e\9c¶h®¡\ f÷\1a_\aã\e¢?5p¯ñM2¾\Æ\17οØø\16ª/¦ñeõoVß`þ\91æ\9fp|\1fûÄk\eÀ²\15`d´UaØ\1e\96\8d\ 23°f´Í£L#ßFmCY\96\966Èà^Ór\93æ\9da\ 5½Ú^4¬JËú\84ÞÒvªaÍZV¯×\1fe\1fk+Z[ÛgCW+\83ÀTU¾\1dO¥\e_æ\85)+ÙH]6R\9cá^\9d\fm¤L[©Õ~Ðe\12¶\91ªm¥:{\88¨¤h\9d9-Ú\e7@\eéþ\97EqJ\r6¶\ f\18©÷¬/Ò\95F*¿\95òï'±Ú\1c`l!0¶\1aø\11\94\9b\12¬\vªÍ\13\ eÛ*\1e\12;ø¼-í6»Ì\8b£\8bí\1c/ÎÎ8é±3\1d{®[,\17 á(\94þDìRËe\ 5\1a¦Ü[±XúÁ´¯LzÔ¼&kß\e¼ÝpÓ±âèÒ\8bÅÊùg¸\b\rW"Ül8\1d»\\93Á\83y\96ßK«i:FÇ\1c¶µÃ\1c3¢\eé\84P\1d\aÑÁ\12\1eR9\en\95Á\17\7fº\9d\fÓÐÒ\18Ðñ¥FäÇ\88\ f\19q$\7f\f¤\8a8\99q)\11¿\8agHªX\97?ÅS\85SXq\f½\88â\1c¤Ñ¡\1c+ä\ 350\82CF\bIF\9a|í\8d \949Äã\8eÚÚezé\14\85Ë¢8\ 4G\8d\84\a\95\17áÏõ3\12(\8c4\v#\1d\ 3n6\127tv\87J\ 1ñG\11ÊL\11#\9dDf\9dÄ#öD\82\8a?óO§²X /Fb\8co\88L¡1\12m¬\84\1c\7f¾¨LÝ1\12|t\86\84ï\7f#\97Âȸ023àf#\87ÃÈô02Bàf#wDg\98èL\94³¡Í"kÅë\86Îo1²`¬l\19ß\1a\99Wcdßh\15\18wÔÖ\ eê\87ëZ\9d\91w\99\97ÆÌ=#½ÏJ\90\83\19Sé\8c|;\95\94\awêÜ=\9dàg%\ 2Â)\84:eÐH,Tå'mé}{\97yiÞàgl\ 346ÒA£ô\96;kc\9eÞ¿\a÷\1a\eýäf@cÇ ?\16Rî,4¶\1fÊÖN8ckw\13VgGc§ëLj\7fü\9dʸ6²²\8dìm\98Ô*ÍÛÊ\ 57rÆá^#»\f \eiêá\bG\91Înä¼ËÔøxn¡È¢?\17zFåÛë¤|#\8d\eÚ¡ò½\8d\9cp\9d9\ ewê\fs\9d\86n¥«\87>\90\89íFú»\9a\bã\8eØÚ\99\85z·Ée^\9c·\96ø£0Õ\8e\13V\9cw§\98Ï\8ev\96±\1då2/fv¥±'\85\962ãÎÚè2ú\8c]»ÕØù\17\ ftT{\ 4\8d\9d\84jÇ!\9e\1e¤w'\9eãÅy\1f£Úíhî\8a\84\93 \8dý\93z\97¥Þ\8d\89ºªwnâ\bX{<õFP½k\ fn\95»û\8c-\80ÆVAß=ƶB\7fö¢Ø\82x.Ô]nV4¶4Z[\1fa\8eéM\92ÆVJkË%¼ÙØ\9c©¶p\9a[=}#Õ¦Pcë¨ÚbzÖ\9e\94â°-½\17ùr\18\15±kÙÜÛ¬·@ýÆ^icGµ±?\99ͤ¼\93ÙØï¬öE\9få\8dÉÛ¥Í6N8lkg\v@ƸbI\8e]ù\93!U\88\8b\15Óa\94±®1çmíÐ\9c¡?öUzþOÝ*ÿ\ 6U=xkðÁ[ç\9bÑ?äÕ÷ÇzöV={«\9e½uÝ\7f}ËÄ\80\8aôÇ\1fÙZ·`Ĺ5Ñz\v?z\0ÿ2[, ´¿ukòe$tg\90?¥\19² \7fÎG4\92\16\8dÜF\1aä'I\90Fª¤\91RI\83üùJ+ESgrÒ ?Iù4\12Cuþ(\rò\93DS#\1dÕH[¥A~\96àªÒ`\8dtY\1aä'\89µ<ó\96çå\86 ?ÉÛÕ\89½V\ 20\ròç+\8d\84b+ñ\98\ 6ùI\8a²NdVùÎ<È\9f\13£ôi\9deM\83ü,\1d[æl\e©Ý4È\9fï5RÅ\94r\1aäÏW\1a)êV\ 6-\rò\93\[\9d\91«3wy\90\9f$ô\9aªZ\bòÇ#Õ.óB\15äï>Æ\8d\ 6¶ó\95ƱpÖñq4È\9f\ f\9a3\8e£³\8es£A~r¥>\1dN´W\aùÓ\14¾,\8aU\90¿û\84-Ö\17K\15äÏ'vY'{Ñ ?9\ 3Ì8)Ì8Q\8c\ 6ùóÙcÖ eªÍS\82üó½\ 5ùI\92!+nÍ ?É\1e\95)¦f&*\rò\93+\8dÌV\99\0Ë\83ü$W\96\ 6ùU±LÜÔÉ\9d2\ 5\94\ 5ùI\9e$\8dæ\97\8a[3ÈO²U\8d\9cV#÷\95\ 6êÉ\95]¹´\15ägÕ43yG\ 5ù§Ï1c\8b\e\ fò³ÍpzÇ\1cßWÇ\82ülĽz´´5\83üdû\9f±IÐØLH\83üäJss¢ØÄÈ\83ü¼\9aÖ\9e:VÜ\9aA~²SOïç³öýÑ ?¹ÒØG(·\eò ?\9f^z\88G\ 6ùw\98^zcóeQ,\83üy\9b´ÚMÍ\83üdÛµ±9ÛØÄM\83üd»·Þ\13®6\8eÓ \7f¾ÌØ\84.÷ªó \7fÚÖÎ\83üy\ 3¼µMÞØNO\83üùJc{¾µ\8d\9f\ 6ùó\86\7fãX\0}|\0\ fò\93\83\ 6\8cã\b\8cc\vh\90\9f\1cp`\1c\83`\1c\97@\83üäJ}ü\82Þ¿Î\83üi¯;\ fòç]ñÆÞyk\8f=\rò\933Xô\9e}\ 2#\83üÓÕO\ 4ù£²ñ \7f:¡Æ8ÆÆ:\b\86\ 6ùó\95ƹ2êð\19\12ä'gÔè\83l¬\ 3oh\90?_i\1c £Z[
-ò³Þ°Nq5Îz5NK¥Aþ|¥uúª>¤\95\ 6ùÉi®òÄWãXX\1aäÏ×\19gÌÊÖN òïlÂêc¯x\90?\1d\91Å\83üé(-ã¸-ãX.\12äÏ\17Z\87|\19\87\81Ñ ?96L\1e-f\9c?F\83üù:ã03yæ\19\ fò§ãÑx\90\9f\1c¤¦O[3Îç"Aþ|¡qØ\97>\12\8c\ 4ùÉÑaú|1ë\1c2\1aä'W\1aç\9a©\8902È¿+\võñ\8b<ÈOÎZ¤ÑüRñÊ\fò³b\1eäçV¶uò" ç\17J\97f\90_\19wc\82ü;v«qÖ)\ fò\93SQ\8d³SÕ\19«<È\9fÎcåA~rr«:ßÕ<\a\96\ 6ùÉ\95ú\Y}þ,\ fò\93M\8944KNµÕGßê\ 3ri\90?\96\1a§í\1a§òò ?9Á\97\ 6ùE±>\9eÕ8ÄÕ:ì\95\ 6ùó±°Æá±Ö!³4ÈO®T\87Ö\9a\87ÛÒ ?9\ 6×8,W\1dª{Ö\9e\94¥ \7fÚÄÈ\83üi»£¹)Rï0¤A~r¡±aÑØØÈfR«\82üd£¤ÚPÉ\83üd\9f¥ÙÆ)Aþ]-\0¹I6\96¬Íh~©x)\83ü\93\16´Û],ê¡AþÒ\eö\1eä/½¨\ 6ùG\ 4ù\8b\9dX\83ü5È_\83ü/\82 ¿ÿâO\88îË£# \ 4a\1c\1eÁ\8bÓq\11é~]Bný|`U\ 1aù\80\82ùáý_ÌÍ\90?îå\1eM\7f©\ 4ë\9a\7fÅ$ü\87ÿ¥\12r©*\88\97ûZÅ\1f\18ÛnÂï\8bÍ \ e³ÃGå\8f\8bÝ\7f°p¦\8f3z¿|à\16Ï\87Í\f·.Íákß\80s\ e~6·\99-[ÿ+ÎçÂEnqóìÁÇ\ f\1e\83§\1dmr\1eÅÜ=&tGì\8c\17ì·²O)V¡\8duXl7²\ ekW¸\15u\98Ñ:´\9du8÷\e\agî\7f¨=ÿÁ+O"\83ï¹çàÌ\99\8f^xêÒ'®^xæÙKW\ f\9ezþÂ\97.\1d^¸rå¹kN«¾èþrøÔÕKÏ_{îê¥Ãç\9f~îËPân\89\97\9f9óÁG\1e<øÿ\ 1^·&\86\rendstream\rendobj\r5 0 obj\r<</Intent 14 0 R/Name(Layer 1)/Type/OCG/Usage 15 0 R>>\rendobj\r21 0 obj\r<</Intent 29 0 R/Name(Layer 1)/Type/OCG/Usage 30 0 R>>\rendobj\r36 0 obj\r<</Intent 44 0 R/Name(Layer 1)/Type/OCG/Usage 45 0 R>>\rendobj\r51 0 obj\r<</Intent 67 0 R/Name(Layer 1)/Type/OCG/Usage 68 0 R>>\rendobj\r74 0 obj\r<</Intent 85 0 R/Name(Layer 1)/Type/OCG/Usage 86 0 R>>\rendobj\r93 0 obj\r<</Intent 124 0 R/Name(Layer 1)/Type/OCG/Usage 125 0 R>>\rendobj\r133 0 obj\r<</Intent 141 0 R/Name(Layer 1)/Type/OCG/Usage 142 0 R>>\rendobj\r150 0 obj\r<</Intent 165 0 R/Name(Layer 1)/Type/OCG/Usage 166 0 R>>\rendobj\r165 0 obj\r[/View/Design]\rendobj\r166 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r141 0 obj\r[/View/Design]\rendobj\r142 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r124 0 obj\r[/View/Design]\rendobj\r125 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r85 0 obj\r[/View/Design]\rendobj\r86 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r67 0 obj\r[/View/Design]\rendobj\r68 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r44 0 obj\r[/View/Design]\rendobj\r45 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r29 0 obj\r[/View/Design]\rendobj\r30 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r14 0 obj\r[/View/Design]\rendobj\r15 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r175 0 obj\r[174 0 R]\rendobj\r201 0 obj\r<</CreationDate(D:20141005212448+02'00')/Creator(Adobe Illustrator CS6 \(Macintosh\))/ModDate(D:20141120215319+01'00')>>\rendobj\rxref\r0 202\r0000000004 65535 f\r
-0000000016 00000 n\r
-0000000264 00000 n\r
-0000008712 00000 n\r
-0000000006 00000 f\r
-0000169643 00000 n\r
-0000000008 00000 f\r
-0000008763 00000 n\r
-0000000009 00000 f\r
-0000000010 00000 f\r
-0000000011 00000 f\r
-0000000012 00000 f\r
-0000000013 00000 f\r
-0000000016 00000 f\r
-0000171036 00000 n\r
-0000171067 00000 n\r
-0000000017 00000 f\r
-0000000018 00000 f\r
-0000000019 00000 f\r
-0000000020 00000 f\r
-0000000022 00000 f\r
-0000169713 00000 n\r
-0000000023 00000 f\r
-0000000024 00000 f\r
-0000000025 00000 f\r
-0000000026 00000 f\r
-0000000027 00000 f\r
-0000000028 00000 f\r
-0000000031 00000 f\r
-0000170920 00000 n\r
-0000170951 00000 n\r
-0000000032 00000 f\r
-0000000033 00000 f\r
-0000000034 00000 f\r
-0000000035 00000 f\r
-0000000037 00000 f\r
-0000169784 00000 n\r
-0000000038 00000 f\r
-0000000039 00000 f\r
-0000000040 00000 f\r
-0000000041 00000 f\r
-0000000042 00000 f\r
-0000000043 00000 f\r
-0000000046 00000 f\r
-0000170804 00000 n\r
-0000170835 00000 n\r
-0000000047 00000 f\r
-0000000048 00000 f\r
-0000000049 00000 f\r
-0000000050 00000 f\r
-0000000052 00000 f\r
-0000169855 00000 n\r
-0000000053 00000 f\r
-0000000054 00000 f\r
-0000000055 00000 f\r
-0000000056 00000 f\r
-0000000057 00000 f\r
-0000000058 00000 f\r
-0000000059 00000 f\r
-0000000060 00000 f\r
-0000000061 00000 f\r
-0000000062 00000 f\r
-0000000063 00000 f\r
-0000000064 00000 f\r
-0000000065 00000 f\r
-0000000066 00000 f\r
-0000000069 00000 f\r
-0000170688 00000 n\r
-0000170719 00000 n\r
-0000000070 00000 f\r
-0000000071 00000 f\r
-0000000072 00000 f\r
-0000000073 00000 f\r
-0000000075 00000 f\r
-0000169926 00000 n\r
-0000000076 00000 f\r
-0000000077 00000 f\r
-0000000078 00000 f\r
-0000000079 00000 f\r
-0000000080 00000 f\r
-0000000081 00000 f\r
-0000000082 00000 f\r
-0000000083 00000 f\r
-0000000084 00000 f\r
-0000000087 00000 f\r
-0000170572 00000 n\r
-0000170603 00000 n\r
-0000000088 00000 f\r
-0000000089 00000 f\r
-0000000090 00000 f\r
-0000000091 00000 f\r
-0000000092 00000 f\r
-0000000094 00000 f\r
-0000169997 00000 n\r
-0000000095 00000 f\r
-0000000096 00000 f\r
-0000000097 00000 f\r
-0000000098 00000 f\r
-0000000099 00000 f\r
-0000000100 00000 f\r
-0000000101 00000 f\r
-0000000102 00000 f\r
-0000000103 00000 f\r
-0000000104 00000 f\r
-0000000105 00000 f\r
-0000000106 00000 f\r
-0000000107 00000 f\r
-0000000108 00000 f\r
-0000000109 00000 f\r
-0000000110 00000 f\r
-0000000111 00000 f\r
-0000000112 00000 f\r
-0000000113 00000 f\r
-0000000114 00000 f\r
-0000000115 00000 f\r
-0000000116 00000 f\r
-0000000117 00000 f\r
-0000000118 00000 f\r
-0000000119 00000 f\r
-0000000120 00000 f\r
-0000000121 00000 f\r
-0000000122 00000 f\r
-0000000123 00000 f\r
-0000000126 00000 f\r
-0000170454 00000 n\r
-0000170486 00000 n\r
-0000000127 00000 f\r
-0000000128 00000 f\r
-0000000129 00000 f\r
-0000000130 00000 f\r
-0000000131 00000 f\r
-0000000132 00000 f\r
-0000000134 00000 f\r
-0000170070 00000 n\r
-0000000135 00000 f\r
-0000000136 00000 f\r
-0000000137 00000 f\r
-0000000138 00000 f\r
-0000000139 00000 f\r
-0000000140 00000 f\r
-0000000143 00000 f\r
-0000170336 00000 n\r
-0000170368 00000 n\r
-0000000144 00000 f\r
-0000000145 00000 f\r
-0000000146 00000 f\r
-0000000147 00000 f\r
-0000000148 00000 f\r
-0000000149 00000 f\r
-0000000000 00000 f\r
-0000170144 00000 n\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000170218 00000 n\r
-0000170250 00000 n\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000025953 00000 n\r
-0000171152 00000 n\r
-0000009202 00000 n\r
-0000023576 00000 n\r
-0000026383 00000 n\r
-0000025647 00000 n\r
-0000026145 00000 n\r
-0000026269 00000 n\r
-0000024405 00000 n\r
-0000024699 00000 n\r
-0000024994 00000 n\r
-0000025288 00000 n\r
-0000023642 00000 n\r
-0000023841 00000 n\r
-0000023891 00000 n\r
-0000025889 00000 n\r
-0000025825 00000 n\r
-0000025761 00000 n\r
-0000025583 00000 n\r
-0000026027 00000 n\r
-0000026059 00000 n\r
-0000026459 00000 n\r
-0000026683 00000 n\r
-0000027676 00000 n\r
-0000029661 00000 n\r
-0000095250 00000 n\r
-0000160839 00000 n\r
-0000171179 00000 n\r
-trailer\r<</Size 202/Root 1 0 R/Info 201 0 R/ID[<FF3BE1022B7B46C883925AF82CA2CEF0><A788CCC3CA724F0481D0C596D4B06F6E>]>>\rstartxref\r171317\r%%EOF\r
\ No newline at end of file
+++ /dev/null
-%PDF-1.5\r%âãÏÓ\r
-1 0 obj\r<</Metadata 2 0 R/OCProperties<</D<</ON[5 0 R 27 0 R 49 0 R 71 0 R]/Order 72 0 R/RBGroups[]>>/OCGs[5 0 R 27 0 R 49 0 R 71 0 R]>>/Pages 3 0 R/Type/Catalog>>\rendobj\r2 0 obj\r<</Length 45847/Subtype/XML/Type/Metadata>>stream\r
-<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
-<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27 ">
- <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">Web</rdf:li>
- </rdf:Alt>
- </dc:title>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:xmp="http://ns.adobe.com/xap/1.0/"
- xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/">
- <xmp:CreatorTool>Adobe Illustrator CS6 (Macintosh)</xmp:CreatorTool>
- <xmp:CreateDate>2014-10-05T17:06:25+02:00</xmp:CreateDate>
- <xmp:ModifyDate>2014-10-14T02:25:55+02:00</xmp:ModifyDate>
- <xmp:MetadataDate>2014-10-14T02:25:55+02:00</xmp:MetadataDate>
- <xmp:Thumbnails>
- <rdf:Alt>
- <rdf:li rdf:parseType="Resource">
- <xmpGImg:width>256</xmpGImg:width>
- <xmpGImg:height>184</xmpGImg:height>
- <xmpGImg:format>JPEG</xmpGImg:format>
- <xmpGImg:image>/9j/4AAQSkZJRgABAgEBLAEsAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABABLAAAAAEA
AQEsAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAuAEAAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7
FXYq8R1T86POEN3qMFvZW4lgIEds8b+pFwk5SmQc6/DEjh6gb/FsAQVUu1rz95u1qa41Kwlvbeyh
juntktC0Sm0WaJkmkVWkUtF8KO9SPib9kHFVU/mZ500y51G6kuVnkvLWG7t4JIbgwMjKP39qHK+l
GK0JaoLU+HZsVTzyt55/MzzLPpVjapZ2Rks2v5725RmMsSXBgB4RmgqR0+DnuQUAFVVT8wPP3mJv
NVtpXla8jitLFZxq17C1tOROU4R23CVvTMgkYN6dVkqPhqCRl+LFYs3wteaGbg4scb+5iVvfea7b
ULm+8uanqWq6tPp7i+kmSOdrdjIPq0KrdGkLNMzr6Aq536cRS7JjxCjfR1mDPqZWDGqL3Pytd6je
eXdOutSiMF/NAj3MLLIjI5G6sJVjfkO9VG+YZdsOSaYEuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Kux
V2KuxV2KuxV2KuxV2KuxV2KuxV2KoWbSdNm1K31OW3R7+0SSK2uSPjRJacwD78RiqKxV2KvLvzf0
T8wtb1HTrDRLWa50DjHPeSWslraXEFzFNVZIbiaX1C/A/YEarSv7w8uItwmIPq5NuExB9XJhw8te
YtAtrrT4vLl8scQWS2s4Q9/DPEy/GvqqJFjYu55qzFjSoBB32+PW4hE1tXR2+PW4hE1tXRX/ACzs
fM1/q/l/WTZzaxYWcl3Z6jFc3aldLnSYrH/o120ksU0MRpxiUHiy0cr9rW5545AcIo7263PLHIDh
FHd73mK4rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV
dirsVdirQVQSQACxqxHc0pv9AxVvFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY
q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq
7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7
FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F
XYq7FX58Wut3ssHrS6u8VDR4yz8u/Tf2wKrTa1ItDFrMpG9eTHYcQR0O+9cVTLRYNWvYnvdQ1W50
7RxJ6S6kY5JV5LyLVRDX9mg365k49OSLOwYZ45ox4ow4gx+480XwkIttQnlioKSFiKmg5UFTtyqB
9+USA6LAyI3FKX+KdX/5bJv+Db+uRZu/xTq//LZN/wAG39cVd/inV/8Alsm/4Nv64q7/ABTq/wDy
2Tf8G39cVd/inV/+Wyb/AINv64q7/FOr/wDLZN/wbf1xV3+KdX/5bJv+Db+uKu/xTq//AC2Tf8G3
9cVd/inV/wDlsm/4Nv64qqDzNqdAWv5gT1+JjT8cVd/ifUv+W+b2+JsVWHzTq9TS8mp2+NsVa/xT
q/8Ay2Tf8G39cVd/inV/+Wyb/g2/rirv8U6v/wAtk3/Bt/XFXf4p1f8A5bJv+Db+uKu/xTq//LZN
/wAG39cVTPSNejuI7j9Ja1cWMiFDAQJJQ4+LmKKDv9mlSB1+RVRGpapYw2s01j5nluZkNIbUwzoz
jkorzNFXZi1PanhVVdpuq6bPaQyXvmaezuGFJoDFPJxYSEV5ICOJjodt6122FVUvk1+f9Ji3j1mU
2PNVN8wlACkDk3pir7dvH2xVF6jqlvb2zyWfmd72ZQOMAhuIixJFRyfYUBJ+jFXon5e6p+Vl35Xt
n8x6lx1sGQXizXV1CR+8b06BXRCPT4/Z/XirJfX/ACL/AOrpD/3ELv8A6q4Vd6/5F/8AV0h/7iF3
/wBVcVd6/wCRf/V0h/7iF3/1VxVSuZ/yT9Fvq+qQertx5ahd0pUV/wB2+GKpf5I1PS7rVvzAh0aY
y6PFo3+jDnJIoY2/73i0pZj+95b1+W2IV7x/hXyv/wBWex/6Rof+ackhB6v5C8papptxp8umW0Md
wvBpYIYY5V3rVH4HiduuEGkg0kF9+TmiyLbfUtQvLQ2kkMkMTMk0REXAFGDKJeDrEKqsigHcZf8A
m8lDfk5P5zJXNkOl+Q/KGm6db2EGlW8kNsgjje4jSaUqOnKSQMzH5nMdxiUV/hXyv/1Z7H/pGh/5
pxQ7/Cvlf/qz2P8A0jQ/804q7/Cvlf8A6s9j/wBI0P8AzTiqrbeUPKskyo2j2VDWtLaHwr/LgVTj
0X8uJNUbS49Ps2vkPF4haKQDxL0L+nw+yD3wJTH/AAJ5P/6s9n/0jw/80Yq7/Ank/wD6s9n/ANI8
P/NGKu/wJ5P/AOrPZ/8ASPD/AM0Yq7/Ank//AKs9n/0jw/8ANGKu/wACeT/+rPZ/9I8P/NGKu/wJ
5P8A+rPZ/wDSPD/zRirv8CeT/wDqz2f/AEjw/wDNGKu/wJ5P/wCrPZ/9I8P/ADRirv8AAnk//qz2
f/SPD/zRirv8CeT/APqz2f8A0jw/80Yq7/Ank/8A6s9n/wBI8P8AzRirv8CeT/8Aqz2f/SPD/wA0
Yqgrnyh5VjmZF0eyoKUrbQ+H+rhQ+e9F86a5rGtS6dBp+g24T1CJZ7GMCiVoNqliT4DMnVxhhx8X
VngxnJKggNS/MrWtN8wX+i3Gl6G89gEZpI7CMowkQOPtAEUrvUZPs3HjzxJI3DVrOLEaD1LytLF5
l8nrq+n6Fp7XknACNbS22ZVIkFJDGP7xe7fZNd8ry4hCZiVjKwCyqDy7Zm6t4pfLmnC3ZQbi49GA
FWMdSAgBrSTb/a3oLJMv8K+V/wDqz2P/AEjQ/wDNOKu/wr5X/wCrPY/9I0P/ADTirv8ACvlf/qz2
P/SND/zTirv8K+V/+rPY/wDSND/zTirv8K+V/wDqz2P/AEjQ/wDNOKoLXvL+lReX9Uh0+zt7OS6t
Z4WkhiSMnlEwFeIWtK4CrIcKuxV2KuxVBz3GpJMyxWgkiXjxfmoLVpy2PSmFVe1e4eFWuIxFKSeS
AhgACQNx4jAqriqvZkC5Qk0G+5+RwFVCLQIotbGpJe8Y/UeZrULGAzyIUJZx8bUrsOmwwJR5srPm
7iaQc2LFVmdRU9aAMMVXC1tQABPJRRQD1n71r39/o7Yq2ba1qD6zggBdpn/ZFBX4sVVozDGgUSVA
6Fm5H7ya4qu9WL+dfvGKu9WL+dfvGKu9WL+dfvGKu9WL+dfvGKu9WL+dfvGKu9WL+dfvGKu9WL+d
fvGKu9WL+dfvGKpZekG5Yg1G24+WEIfGPl27sJtev9On9BnlaRwLjiEpDykZeblVUlQd6+3U5b2k
fEiBA8nK0U4wkeJX1W1gu21PURJDFa2yQGe4gUzAeqFRPUdOSk8QNgegp9rbKuz9UdOCCLvzY66I
ynbans3/ADjiGTyvqkQlWaNL7926HkhBhj3U++ZmryxycM48iHCxRMbBetZiNrsVdirsVdirsVQO
t/8AHMuP+Mcn/EDgKUdhQ7FXYq7FUnu/qUF/EJ9UuI5ljVhaq4oy+tXkUCljyaif6o/1qqrLC+sl
uIIV1a5nY0CQzIg58lJXk3oo3Tf7XzxVO8VWT+v6LehxE1Pg514196YqggmullDPCF/aKgk9PceO
HZVoXzBvV7c1I47NQDetfHHZCNtRdegv1nj6+/PhXj1NKVp2wJVsVdirsVdirsVdirsVdirsVdir
WKvjy5/IH83Zr+4caIOEkrFJGu7OnFmqCQJq/hgS9Z8r/k9r9r+XcvljVWKm8leXUIraZeMp5q0d
H2NFEa7U618cw5RyHkPucqJxn6j97K/yc8j3nk7RL7TbiFokkuvVg5vHIzJ6arUmMkfaBzJxGfD6
nHnw3sz/ACxg7FXYq7FXYq7FUFrQJ0y5oK0ikJ/4A4ClG4UOxV2KuxVLL9df+tlrJbZrcoAvqchI
r1qSSKin0Yqpxy+ZPVUvbW/p8grANQha7sNzXb/axVN8VV7L/epPp/UcBV4Jq35s+fkOsJaazP8A
XLXUbiG2iW3sjCsEU3Dg1YDIWVKmvLwrkxKIzxjL6K3+TecN4TIfU9T8h+ZfOet+RdC1cwQ3V7cL
Ouo+sRCxaK4MKsoRQoqqEkUy3LDGJkA7dHCMslCh72Q/WvOLK6iytY34/u5GlZk5e4Hxf59crqHe
V4sncGobrzi3ESWNqtTRm9U/CCSOVBWtAK0r39sSId5USydQFXT5/NDXSJf2ttHbUIkljcsxIBoV
U9Kmm3bBIQrYpgcl7gUnGVtzsVdirsVdirsVdirsVSu+/wB6X+j9QwhCTDRbIIEWa5VVXioF1OKC
lP58KrF8v6csrTLLciViSzfW7gncID1k/wCKl/zJxVttB09yC0tyxClN7qcgqeoIL0Ne+Ko63hit
4ViR2ZVrRpHaRtzXdnLMevjiqrUeOKuxV2KuxV2KqV9/xzL/AP5hZv8AiBwFKrhQ7FXYq7FUq1Kx
06W9WSazmnnKACWMuAAGFFqGVQamuKqK2WjrCFjjvEVRsALuoBYVHxfLp4Yqm1pHDHbokPMRrUL6
hct17mT4vvxVGWX+9SfT+o4Crxu2/JXyzbebNS1K782SXKXt3c+tpP1c+iJLwyxmKUc35EcjxNF6
A+GQmCRzbISA5i3qXkjyrouk+U9O0uxle5sbT1jazcpYzxlmeQijOW+Hnx3OMAQKYyNm09Ol2R/Y
YHryDuGrUmvIGv7RyVoXJp9qkgkUPyHSsjkfcWpjarF0qyVeKq6rTjRZJBQA1oKNt0w2qIiijiQR
xiigk0qTuTU9fc4FX4q7FXYq7FXYq7FXYqld9/vS/wBH6hhCFBbu7VQvE7CnUY0lBasdduoEjsb5
9OkDhnmSOKUsoB+GknJRXxwUqD+qea+IH6dmqOVW+r2tTU7V+HsPDDSpjp0urW9mkV3cNe3C8udy
yxxlqsSPhSijiDTBSq7XNzIODg8SRXcdjXCrsKHYq7FXYqpX3/HMv/8AmFm/4gcBSq4UOxV2KuxV
DzX0cTFWjlNDSqxsw6A9gfHGlVYpllBKhgAafECK+4riq/FVey/3qT6f1HAVXyeWtClkeWSzjeR2
ZnY1JJdiz9/2q0bxGx22wJRtpaW9nbJbW6cIYxREqTSpr1JJxVVxV2KuxV2KuxV2KuxV2KrZXZEL
Kpcj9kZGZIFgWyiLLizAAhCa9RtUYQxLZJBFBWvXCqWX3+9L/R+oYQhJnh1zm/C4jKcjw5Dfj70X
rktlRtsLgQqLhlabfky9Ou1PowKqYq7FXYq7FXYq7FXYqpX3/HMv/wDmFm/4gcBSq4UOxV2KuxVK
9QbURcssV7HbREK1X4HioB5fCRWp61rTbFV9muum4R7ma3e2IoViDVOxowJ7k09qYqmOKqttUTLT
br+rFVO1l15YF+telJN6k3IR81HpeofRpUn4vTpy9/vwy4b2YQ4q9XP8UqG41em0SEj/ACm32/DI
s0YJGIBJYHuN8Vd6h8W/HFXeofFvxxV3qHxb8cVd6h8W/HFXeofFvxxV3qHxb8cVd6h8W/HFXeof
FvxxV3qHxb8cVd6h8W/HFUHcEmZid+nX5YVUsVU7lZWtpVhYpMUYRsKVDU2I5Ajr44qwqef8wrZL
dW9do5Y4Fnn4200iTEKJCscMYCryLE15AgbFa4qyDytcavcWVxLqgkWb61KsSSRiIiJTxTiABVWp
yBPjSppUqpzirsVdirsVdiqlff8AHMv/APmFm/4gcBSq4UOxV2KuxVI9Xjsf0j60umz3NzHCDFcR
B+P2/s1Q7MOvSuKqCWWjGaNl0q8Du6sGPqgAs1ObVemxWp798VTey1MXUhj+q3EBC1LTRlF7bA9z
8X6/DFUxt/75fp/ViqGkv9NvZ4orXVlS4VjSO3lgZm8VKMHrSnhhG3RjIX1pXWxmZkkN/cuqlWCg
whWoeW/BFqD0+WPF5I4fMtCyufX5HUbgldxGBbgcW/mHp+Kmhx4h3Lwm+Z+z9SODgkgCpGx6bHr4
5Fm0JFLMo3ZftAEVFd998Vb5ioWm53A2rQfT74q0JFNKb8hVaEbjxG/virhIppTfkKrQjceI398V
aEyHjQj4hVdxuPEb4q168VAeQoakGo6Dr39sVd68Q/aG3uO1ff8AyTirZniFasBTruO1ff8AyTir
hMhNAQT0pUVrv7/5JxVDXH9830fqwqgP0lb/AMsvj/dP/TGlXNqFupbZzxPGoRyKkE7EDpt1xpVv
6Tt6gcZASQBWNx16dsaVFYq7FXYq7FXYq7FVK+/45l//AMws3/EDgKVXCh2KuxV2KqdwCYiolMBJ
UCQcairAUHIEVPTFUsW8j3B1qA8fiP8AdVAOwr8VO/hiqaQzQzRLLDIssbfZkQhlNNtiNsVRFv8A
3y/T+rFXgv5Y/l/53g816ZrGq6VJp6abdSxqZCCZLaUTkvQE8aPItPpPhh8eXFLbadX8GyQEoj+j
+l6aPL83qJJLpdoOTIkhW6lUEIFVeA9Si7Ka/wAx3O/WfjS73F/Lw7lyeXZpWtmuNNtj6ZSGUrdT
D91GI0B/vDXiOYo1f11Rml3qdPDu+9uDyrcEWwk0i2KNIBdkXExrHSP94tZGqwrJ8Jr0G/i+PPvX
8tj7lyaDrTOk02mWpmlYJdH15RSKNEWMqQ9ag1JU1/1ulYCZHJmccTVrP8N6xIsPPS7VWjkdl43N
wvEE1DDjJselU3G1K9MZTJTCAjyWx+VdQTgV0q3UxsZI/wDSrn4WqCp/vdvsJVRsaHffIslSHyvf
wmEx6Xbp6DevD/pNweMw4lf92dKwx1XoaH+bFWo/Kl3F6Hp6Xbr9WLzwf6TcHhNQBafvBVf3MVV6
bHxwJaTyfOixImlW6pCsssdLi4bhOQ4QD96vJW4RchsOvjsVaTyhcqEA0q2UCN2IFxcNxlJairWV
eSsAten47Kprp/lDRjaQ/XrJIrz0ys0cc8zIK9QpL1pihG2vljQLaeK5ggKyw0ET+rKaUNehcg7n
FUVcf3zfR+rCrzDyr55/MDUNSkTXNIXSdMWGVxdzWV3FxeKRFoxkfjR1Y8ehPUdDkiY0ed38K/Wk
jlXL9LK4tR1ZkV21Cw4gsJP3Ey/6tOUu3br1yKHLqep8yp1KwIVzE1beZPi6jrMabK3zxVVs9UuT
cJ9Yv7SSByVCRxSJJUAbVaRgDVhsRiqMTXNKdA63AKlS4PFuigknp/k/q8RiqLgniniEsLc42qAw
9jQ/iMVX4q7FXYqpX3/HMv8A/mFm/wCIHAUquFDsVdirsVUJ5rEhobh4iD9qOQr2HLcHwG+KqUcG
jzMyxx28jD7SqEYj50xpUWiKihUAVR0A6DFVa3/vl+n9WKqVp5g0i8kSO1ulnZ2Kj01ZgCK7MQKL
0/ayoZIk1aaUWufLSfE09qrUDlSyh/3i8geNeVWX23GX8Eu5r8SPeFv1jyzJK8Amty/wlwDtuQVq
wNNyvjgop4hzRkmqaZbxb3MQRBTipDEADwBOAghIkDyRFtcR3MCTwuHikFVYD/Pcd8CVT4vEfd/b
irvi8R939uKu+LxH3f24q74vEfd/birvi8R939uKu+LxH3f24q1x35bV8af24q7h8vHp/biqFuP7
5vo/VhVh41G5It6nWd5Gj3hhA3WOgY+l8SGuz9ftb4CkLY9RuPTJb9MCscp/eJEpqofwjHxbjj2r
TwwlAbF/eVQ8da3StfSiO/PuDF9r4flT54qoDUb3jIOOv1PwqPQh3ptsTDsP8rqevc4hSi31G5LT
Efpkj0wV/wBHiFaOv2R6WzfF9Ir4DFWR2bl7SBz6hLRqT6yhZKlR9tQFAbxAHXFVXFXYq7FVK+/4
5l//AMws3/EDgKVXCh2KuxV2KpPqNwsWpBP0S10HQO90iA9CV47jc07VxtUXpbxSxmRbJrIoeCpI
qq3EgMfs12qfwxVG4qq2/wDfL9P6sVYT5T/LbW9H12TVL3Vo7hXlEiwQxyIgQIV4/vJJSeRIJJbt
0zHGGiClmUeopLGr/WVjR3eNWeJoyWjYow+M+I28e2ZJiWsTBXLeI6l47uBiW48+JI23oaOOwNMB
FMhIHkikuIWIT1FZ+m3cgVNOuBKpirsVdirsVdirsVdirsVdiqDuP75vo/VhVhx8tTyWlxYyadCl
q7tNFxubhiJVjKo320I8CquB716Kty6TrEUt1Ja6fDWZn5UuZQHWQl22aoXkx7fdirJLF7t7WN7y
NYrkgmSNTUDfYVqe2Kq+KuxV2KuxV2KuxVSvv+OZf/8AMLN/xA4ClVwodirsVdiqEudPaef1PrU8
ScChijbitSCA2wrUV8cVah0z0iD9auHINfjkrXdTSlKfsU+k4qjMVVbf++X6f1YqrC8tS6oJULv9
hQy1angK75GwqjBbvFDya8mlWpkMshi+yQNvhVV4jJE30YxFDnaoQxkZPrDBtiEHp1ANT4V7HAyX
pFIr8jLI4/lPCn4AHFVSp8D+GKuqfA/hirqnwP4Yq6p8D+GKuqfA/hirqnwP4Yq0w5KRQivcUxVr
j8Vfi6UpXFWkj4Lxq5FQasanYeOAClQ9x/fN9H6skrC9I86z6kk6j0LV7YsJLiVWNsQrJyPqhgAQ
j9K/a77HMeGSRlRCURBreu+tD9YvNFWBWAvOE8hcDvw5UFT25eP35CE9h1bTJ7g28N1FJOpoY1YE
1oTTbvRTiqKxV2KuxV2KuxV2KqV9/wAcy/8A+YWb/iBwFKrhQ7FXYq7FUJeIyhpnvTbQilT8AUdB
uWHjiqtbXFvPEGgmWdV+EyIwYVA7le+KquKqtv8A3y/T+rFXmfkIed/076V9pVxa6Ok1Ylu0+OPZ
iWDcmBBYDiQa70I75hxwkSBTbM5fLOnSOCdIYGgjB+ssAEQUHwq/fv49TU5sBml3tB08D0W/4X05
HaT9FOx+Cii4PVNwVPLl7EVyImbu2RxRIqtgjoPLOjSQMZLNoWnFJI/WlqBUU3DbfZ7e/icZTJ5p
jjjHcJzkGbsVdirsVdirsVacsFJUVbsMVa+Pl0HH8cVcDJxFRQ1H3Yqhbj++b6P1YVS6W0vZI5I2
ul4yIVH7pTQkEBqEkGlRsR2xVbJZXxDCO5jQFqoDArACmyn4hXFUTbRSpCgndZZwPjlVOAJPWi1a
n34qq4q7FXYq7FXYq7FVK+/45l//AMws3/EDgKVXCh2KuxV2KofUHZLKV0tvrbKKi32+Oh96/PFU
FYzX0c/oLpS2tszf3iOgA+Hdiqj2oMVTXFVW3iWWZY2+ya1p7CuKtu+hRl1e9iDRmki+pHVT4Edc
PDLuYmcR1WNc+XVbgb+LkUaQKJIyeKDkxoPBQTkTbIEFTbUfLC/a1CIL8JVy68WDNxBVqcWHLY0O
3fG0tm+8sg8f0jCWLFFUSRkswAJCgbtQHenTEWUEgc1US6AVDC+iIb7P7yOpp4DrkuGXcx8SPe4S
6CVLG9jUA0YO6KQfAhqEY8Mu5fEj3r410iSUwpcAyg04clDVqRShHtgIKRIE0if0Zb+Lfh/TBbJ3
6Mt/Fvw/pjau/Rlv4t+H9MbV36Mt/Fvw/pjau/Rlv4t+H9MbV36Mt/Fvw/pjaoO4iWKZkWtBSlfc
YUPIvIuofmnLqDzeYYr5dOlWULGYohKkkcyLHQFVoHUsfi7VwnIDYr4/oZGPIs3sL2+upI7cnU4P
VVj609vAgXjyHxHjs3Qjx298DFM10+9UEfpKc1LEEpBUVJIG0Y6VoPl88VX21ncxOrPfTTqooUdY
qNtSpKop99sVReKuxV2KuxV2KqV9/wAcy/8A+YWb/iBwFKrhQ7FXYq7FXYq7FXYqr2RAuUr7/qOA
qmnJfEYEoe6N9VPqrQgb8/VDE12pTiRiqm51T0wUa29b9qoelNyKGtcKrETUmu0ef6q0UY+GQK3q
AkENxqTSuKrwdWqayWxG1KK43qK/tH9muOyroDqIkX13gMf7XAMD07VY98VRXJfEYFdyXxGKu5L4
jFXcl8RiruS+IxVa7kU4UO+/yxVzO3IUKle/jiqW3pBuXp7fqGEISKLQrLnKfrdzMJQyyRvOXWjq
VPwnp1298NKsuPK9rMZGF7ew+o3MCK4ZFTagCAbADsMVTKxtFtLWO3WSSYRgj1ZW5O1ST8R28cVV
wQemKuxV2KuxV2KuxVSvv+OZf/8AMLN/xA4ClLW1nVfrHFNFuTBzK+oyzKeFdn4+iev8uNqtXWtY
KsW0O5BUkoAJTyWpAH918JpQ98bVo65rVP8Ajg3AY7Aj1SAeQFTWFduJJ+imNqmUN27RI0ltcJIQ
Oa/V5zQ9/wBjFC/6yP8AfFz/ANI0/wDzRhV31kf74uf+kaf/AJoxV31kf74uf+kaf/mjFV8M8TyB
ZIbkIa1P1efw/wBTAqJP6OAJK3O3hbzH9UeNpaZtNXql10J2t5z0+UeNqsM2lh2Thd1UqCfqtxT4
qAUPpUPXenTvjarmk01QxKXXwkA0tpz1p0pFv17Y2h3LTaqOF1VgSP8ARp6beJ9Pb6cbVdTT/wCW
5/5ETf8AVPG0upp/8tz/AMiJv+qeNq6mn/y3P/Iib/qnjaupp/8ALc/8iJv+qeNq6mn/AMtz/wAi
Jv8Aqnjaupp/8tz/AMiJv+qeNq6mn/y3P/Iib/qnjaupp/8ALc/8iJv+qeNqhppokkKxxXLIOh+r
z+H+pjaHknkv8rNa0G/k1G9b6y8ySRz2lvBeIjfv45IXDtGpqqoeX4ZM5pEEGqJtJA2PWqT9fLt9
FEYhpM8npqfTo15wbkDzQq3XYsFr0qB0qcgrj5dvo5GEGkTCNgxA53pCs/xMTUfHVifA7nxwoTzQ
9EtLP0bt7K6gvVBBiVbuSNdioC8lp9n2xVPfrI/3xc/9I0//ADRirvrI/wB8XP8A0jT/APNGKu+s
j/fFz/0jT/8ANGKu+sj/AHxc/wDSNP8A80Yq76yP98XP/SNP/wA0Yqtu2kbTr1UgnZ3t5VRfRlqW
KEAAce+Apf/Z</xmpGImg:image>
- </rdf:li>
- </rdf:Alt>
- </xmp:Thumbnails>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
- xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
- xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
- xmlns:stMfs="http://ns.adobe.com/xap/1.0/sType/ManifestItem#">
- <xmpMM:RenditionClass>proof:pdf</xmpMM:RenditionClass>
- <xmpMM:OriginalDocumentID>uuid:65E6390686CF11DBA6E2D887CEACB407</xmpMM:OriginalDocumentID>
- <xmpMM:DocumentID>xmp.did:F97F11740720681183D180399A3120B4</xmpMM:DocumentID>
- <xmpMM:InstanceID>uuid:9e728f2f-27fc-9c46-9597-2e62b049767a</xmpMM:InstanceID>
- <xmpMM:DerivedFrom rdf:parseType="Resource">
- <stRef:instanceID>uuid:53138140-74df-418f-a148-0d97b4a30ff8</stRef:instanceID>
- <stRef:documentID>xmp.did:66A6819719206811822A897E387FE54C</stRef:documentID>
- <stRef:originalDocumentID>uuid:65E6390686CF11DBA6E2D887CEACB407</stRef:originalDocumentID>
- <stRef:renditionClass>proof:pdf</stRef:renditionClass>
- </xmpMM:DerivedFrom>
- <xmpMM:History>
- <rdf:Seq>
- <rdf:li rdf:parseType="Resource">
- <stEvt:action>saved</stEvt:action>
- <stEvt:instanceID>xmp.iid:F97F11740720681183D180399A3120B4</stEvt:instanceID>
- <stEvt:when>2014-10-05T17:06:25+02:00</stEvt:when>
- <stEvt:softwareAgent>Adobe Illustrator CS6 (Macintosh)</stEvt:softwareAgent>
- <stEvt:changed>/</stEvt:changed>
- </rdf:li>
- </rdf:Seq>
- </xmpMM:History>
- <xmpMM:Manifest>
- <rdf:Seq>
- <rdf:li rdf:parseType="Resource">
- <stMfs:linkForm>EmbedByReference</stMfs:linkForm>
- <stMfs:reference rdf:parseType="Resource">
- <stRef:filePath>/Users/h/Desktop/Skärmavbild 2014-10-13 kl. 22.11.55.png</stRef:filePath>
- </stMfs:reference>
- </rdf:li>
- </rdf:Seq>
- </xmpMM:Manifest>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/">
- <illustrator:StartupProfile>Web</illustrator:StartupProfile>
- <illustrator:Type>Document</illustrator:Type>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/"
- xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
- xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/">
- <xmpTPg:NPages>1</xmpTPg:NPages>
- <xmpTPg:HasVisibleTransparency>True</xmpTPg:HasVisibleTransparency>
- <xmpTPg:HasVisibleOverprint>False</xmpTPg:HasVisibleOverprint>
- <xmpTPg:MaxPageSize rdf:parseType="Resource">
- <stDim:w>400.000000</stDim:w>
- <stDim:h>88.000000</stDim:h>
- <stDim:unit>Pixels</stDim:unit>
- </xmpTPg:MaxPageSize>
- <xmpTPg: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>
- </xmpTPg:PlateNames>
- <xmpTPg:SwatchGroups>
- <rdf:Seq>
- <rdf:li rdf:parseType="Resource">
- <xmpG:groupName>Default Swatch Group</xmpG:groupName>
- <xmpG:groupType>0</xmpG:groupType>
- <xmpG:Colorants>
- <rdf:Seq>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>White</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>255</xmpG:red>
- <xmpG:green>255</xmpG:green>
- <xmpG:blue>255</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>Black</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>0</xmpG:red>
- <xmpG:green>0</xmpG:green>
- <xmpG:blue>0</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>RGB Red</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>255</xmpG:red>
- <xmpG:green>0</xmpG:green>
- <xmpG:blue>0</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>RGB Yellow</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>255</xmpG:red>
- <xmpG:green>255</xmpG:green>
- <xmpG:blue>0</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>RGB Green</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>0</xmpG:red>
- <xmpG:green>255</xmpG:green>
- <xmpG:blue>0</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>RGB Cyan</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>0</xmpG:red>
- <xmpG:green>255</xmpG:green>
- <xmpG:blue>255</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>RGB Blue</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>0</xmpG:red>
- <xmpG:green>0</xmpG:green>
- <xmpG:blue>255</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>RGB Magenta</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>255</xmpG:red>
- <xmpG:green>0</xmpG:green>
- <xmpG:blue>255</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=193 G=39 B=45</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>193</xmpG:red>
- <xmpG:green>39</xmpG:green>
- <xmpG:blue>45</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=237 G=28 B=36</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>237</xmpG:red>
- <xmpG:green>28</xmpG:green>
- <xmpG:blue>36</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=241 G=90 B=36</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>241</xmpG:red>
- <xmpG:green>90</xmpG:green>
- <xmpG:blue>36</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=247 G=147 B=30</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>247</xmpG:red>
- <xmpG:green>147</xmpG:green>
- <xmpG:blue>30</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=251 G=176 B=59</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>251</xmpG:red>
- <xmpG:green>176</xmpG:green>
- <xmpG:blue>59</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=252 G=238 B=33</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>252</xmpG:red>
- <xmpG:green>238</xmpG:green>
- <xmpG:blue>33</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=217 G=224 B=33</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>217</xmpG:red>
- <xmpG:green>224</xmpG:green>
- <xmpG:blue>33</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=140 G=198 B=63</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>140</xmpG:red>
- <xmpG:green>198</xmpG:green>
- <xmpG:blue>63</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=57 G=181 B=74</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>57</xmpG:red>
- <xmpG:green>181</xmpG:green>
- <xmpG:blue>74</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=0 G=146 B=69</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>0</xmpG:red>
- <xmpG:green>146</xmpG:green>
- <xmpG:blue>69</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=0 G=104 B=55</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>0</xmpG:red>
- <xmpG:green>104</xmpG:green>
- <xmpG:blue>55</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=34 G=181 B=115</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>34</xmpG:red>
- <xmpG:green>181</xmpG:green>
- <xmpG:blue>115</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=0 G=169 B=157</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>0</xmpG:red>
- <xmpG:green>169</xmpG:green>
- <xmpG:blue>157</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=41 G=171 B=226</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>41</xmpG:red>
- <xmpG:green>171</xmpG:green>
- <xmpG:blue>226</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=0 G=113 B=188</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>0</xmpG:red>
- <xmpG:green>113</xmpG:green>
- <xmpG:blue>188</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=46 G=49 B=146</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>46</xmpG:red>
- <xmpG:green>49</xmpG:green>
- <xmpG:blue>146</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=27 G=20 B=100</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>27</xmpG:red>
- <xmpG:green>20</xmpG:green>
- <xmpG:blue>100</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=102 G=45 B=145</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>102</xmpG:red>
- <xmpG:green>45</xmpG:green>
- <xmpG:blue>145</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=147 G=39 B=143</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>147</xmpG:red>
- <xmpG:green>39</xmpG:green>
- <xmpG:blue>143</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=158 G=0 B=93</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>158</xmpG:red>
- <xmpG:green>0</xmpG:green>
- <xmpG:blue>93</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=212 G=20 B=90</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>212</xmpG:red>
- <xmpG:green>20</xmpG:green>
- <xmpG:blue>90</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=237 G=30 B=121</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>237</xmpG:red>
- <xmpG:green>30</xmpG:green>
- <xmpG:blue>121</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=199 G=178 B=153</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>199</xmpG:red>
- <xmpG:green>178</xmpG:green>
- <xmpG:blue>153</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=153 G=134 B=117</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>153</xmpG:red>
- <xmpG:green>134</xmpG:green>
- <xmpG:blue>117</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=115 G=99 B=87</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>115</xmpG:red>
- <xmpG:green>99</xmpG:green>
- <xmpG:blue>87</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=83 G=71 B=65</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>83</xmpG:red>
- <xmpG:green>71</xmpG:green>
- <xmpG:blue>65</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=198 G=156 B=109</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>198</xmpG:red>
- <xmpG:green>156</xmpG:green>
- <xmpG:blue>109</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=166 G=124 B=82</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>166</xmpG:red>
- <xmpG:green>124</xmpG:green>
- <xmpG:blue>82</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=140 G=98 B=57</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>140</xmpG:red>
- <xmpG:green>98</xmpG:green>
- <xmpG:blue>57</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=117 G=76 B=36</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>117</xmpG:red>
- <xmpG:green>76</xmpG:green>
- <xmpG:blue>36</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=96 G=56 B=19</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>96</xmpG:red>
- <xmpG:green>56</xmpG:green>
- <xmpG:blue>19</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=66 G=33 B=11</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>66</xmpG:red>
- <xmpG:green>33</xmpG:green>
- <xmpG:blue>11</xmpG:blue>
- </rdf:li>
- </rdf:Seq>
- </xmpG:Colorants>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:groupName>Grays</xmpG:groupName>
- <xmpG:groupType>1</xmpG:groupType>
- <xmpG:Colorants>
- <rdf:Seq>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=0 G=0 B=0</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>0</xmpG:red>
- <xmpG:green>0</xmpG:green>
- <xmpG:blue>0</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=26 G=26 B=26</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>26</xmpG:red>
- <xmpG:green>26</xmpG:green>
- <xmpG:blue>26</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=51 G=51 B=51</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>51</xmpG:red>
- <xmpG:green>51</xmpG:green>
- <xmpG:blue>51</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=77 G=77 B=77</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>77</xmpG:red>
- <xmpG:green>77</xmpG:green>
- <xmpG:blue>77</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=102 G=102 B=102</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>102</xmpG:red>
- <xmpG:green>102</xmpG:green>
- <xmpG:blue>102</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=128 G=128 B=128</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>128</xmpG:red>
- <xmpG:green>128</xmpG:green>
- <xmpG:blue>128</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=153 G=153 B=153</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>153</xmpG:red>
- <xmpG:green>153</xmpG:green>
- <xmpG:blue>153</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=179 G=179 B=179</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>179</xmpG:red>
- <xmpG:green>179</xmpG:green>
- <xmpG:blue>179</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=204 G=204 B=204</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>204</xmpG:red>
- <xmpG:green>204</xmpG:green>
- <xmpG:blue>204</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=230 G=230 B=230</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>230</xmpG:red>
- <xmpG:green>230</xmpG:green>
- <xmpG:blue>230</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=242 G=242 B=242</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>242</xmpG:red>
- <xmpG:green>242</xmpG:green>
- <xmpG:blue>242</xmpG:blue>
- </rdf:li>
- </rdf:Seq>
- </xmpG:Colorants>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:groupName>Web Color Group</xmpG:groupName>
- <xmpG:groupType>1</xmpG:groupType>
- <xmpG:Colorants>
- <rdf:Seq>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=63 G=169 B=245</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>63</xmpG:red>
- <xmpG:green>169</xmpG:green>
- <xmpG:blue>245</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=122 G=201 B=67</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>122</xmpG:red>
- <xmpG:green>201</xmpG:green>
- <xmpG:blue>67</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=255 G=147 B=30</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>255</xmpG:red>
- <xmpG:green>147</xmpG:green>
- <xmpG:blue>30</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=255 G=29 B=37</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>255</xmpG:red>
- <xmpG:green>29</xmpG:green>
- <xmpG:blue>37</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=255 G=123 B=172</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>255</xmpG:red>
- <xmpG:green>123</xmpG:green>
- <xmpG:blue>172</xmpG:blue>
- </rdf:li>
- <rdf:li rdf:parseType="Resource">
- <xmpG:swatchName>R=189 G=204 B=212</xmpG:swatchName>
- <xmpG:mode>RGB</xmpG:mode>
- <xmpG:type>PROCESS</xmpG:type>
- <xmpG:red>189</xmpG:red>
- <xmpG:green>204</xmpG:green>
- <xmpG:blue>212</xmpG:blue>
- </rdf:li>
- </rdf:Seq>
- </xmpG:Colorants>
- </rdf:li>
- </rdf:Seq>
- </xmpTPg:SwatchGroups>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
- <pdf:Producer>Adobe PDF library 10.01</pdf:Producer>
- </rdf:Description>
- </rdf:RDF>
-</x:xmpmeta>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-<?xpacket end="w"?>\rendstream\rendobj\r3 0 obj\r<</Count 1/Kids[7 0 R]/Type/Pages>>\rendobj\r7 0 obj\r<</ArtBox[6.76318 0.843262 252.169 81.4673]/BleedBox[0.0 0.0 400.0 88.0]/Contents 73 0 R/Group 74 0 R/LastModified(D:20141014022555+02'00')/MediaBox[0.0 0.0 400.0 88.0]/Parent 3 0 R/PieceInfo<</Illustrator 75 0 R>>/Resources<</ColorSpace<</CS0 76 0 R>>/ExtGState<</GS0 77 0 R>>/Properties<</MC0 71 0 R>>/Shading<</Sh0 78 0 R>>>>/Thumb 79 0 R/TrimBox[0.0 0.0 400.0 88.0]/Type/Page>>\rendobj\r73 0 obj\r<</Filter/FlateDecode/Length 22999>>stream\r
-H\89´WK®ä¸\11Ü×)t\81Òã'É$·Ó6¼2\8cÁ,<û\82íY¨\a\18÷ý\ 1GDRª§no\a\rô«\90D2¿\91Á\8f\7f|Ù>þþ%m?ýåËöøãÑÛîÅ6o{Nuûúèu/5on{\aîeoDø32Q\1fsó´ÏéÛëqÇ\añpÛúÜsÅ\1fÛk\1a[÷=·¾õ\8e\r/\84µ7|\b÷þ c\93>\85gç\11Ö\vw.-\v\99o\9e÷Ânð\10¬\9bÃ\8f\12¶X§{%É\b/åD2â\13\96\11\ 6£Þ_'\17Ê\8ePÜ\ 2õzüsû\1dáûøÛ/iûÏ·GÝ[+ÉÚØ\9emîÝ[ê>ï¿ß\9f`«QÒH8jÔÝSÉ6l{}}üôëöñËoiûöÛö×_·\9f\1f?ã\84´\8d±YJÛ\13\7fÿû/\9dûñ\ 5§¾¾m \96õÛÿÛ·×ï\97Q\7flyKø\97\97ãòÔ\vÂ\8c³ø"þ?\1eÏ´×fø\89\1ft\12\7fRíÛ3ï\99¿s¦ÃpÀ\9bp7|b»#ÌO¤\\0¾é\19Ê\ 4\9f"õÖ¶gG=d~ã\19\ 1\98{\9a%ö³\13½\1ex9« V\18RX¹ÎË \88\83\8c¹\ 2*ν\8a\95\r\8bð]Ò¿\17\9c\80¥ÉX¾øÊÛ \ 1\ 6\96ø>\91FúÔñjì©ÉÆeGà\83î\rì¼ð\13iÎÚh\1d3âQ=Ö2Ó8Åù®ÀéuäeÊëñïG$ÐÙ\a\95=4Ð%_\1f¨ÌQ'Ë\95á\ 4\9a¹G\9d\16!|\84tU\1cûzÜñÁ½R\99, ê\85M\9a\9a«Ñàô\89ên\83çßñqá¢VÒN¨ê¼×9u.:¹£\ eê:ö\82\87`ÙÚ\80÷\8d\9f\ e\9b[C\r£\90Ö¦\rµ\81m®C\17Ö¡\86è\18ú\0\8fÝwÃNÖöÆÚGÃÂuÃîÆ\8cÜññ\18°Ô\85-ãkd3M¢4ó6PÈ0f!¬½a¬E<Qï\vOä\ 4Æ\1aÊ\14a\13òÍ@-ÆlÞñqâ\86\ 2\998wì\r®\0yǹ`\bìÛ`jãÚ;ƹð×\84\9d\1e\827±QAà*A®ck\ 6bcnïø û³\16\ 66£<ð6ÁùFZ,D\ 5\1d\81\14\14\9f±ö\13V¨*\18«\914\8d\18~\8fÀ¹\90d\ 6J\12(!\170±á£\85^\8f;ÆZ$)]\98\81\9c\8d¨¡Ñ'c¢Âèè%\84î\86\ fâÑ£ªFc sT\E#+¬\93õØ@1+ì\17\8eµhH0~b´\1c\8f³ø\1f¬\ e\e+Ò\vT²\87Í\9f°üíèEb<F4F×Z&\85qf¥û^³¸¿±b\97Xì(o\94\1dßf¡1\ 2Ù`w6;söÆZ\v#ÑÊiè r+\1aÝ°1ÒiàP´K\97»w\8c¥I\1cÆA\9b±\ 5vDckò 9ÙjåDèª\eFW\81\ fààùµí\ 3t\84?eª#?ÑÍ\8fs
-Ù4Då\89\16í¨\8aD\82þüûú\ 2\ 6§6Ú\ 4ãqJ¹W#ùý\89SJnbÖhJ\15ÿaJ¡APU\896v\ fþ\1a\10\95T\r1RK\f\1f\aáq\Í\98S\91ÏQÅ\0\9d`"|ëS&ã\999ÿ¦Æ\18böÌ(ß\18g\ 1\91×:ãóx\0mÑb7äì\99i\80\10gW&7÷e\a\9fgTòÐæ#q\86L\fÅ\16\9bÃh\ e\98\16_gã\83\8e,º|K\14\rI\16RX\11\95P<¤Â*8\10.È\94L\84Ìq \13ìB¯G¦,\1a×\ 3Øn´½¢\1c-\10§*HNf\\ f(s|C`\1a8êYHkh\a0\ 3\(`h±\1fl\ 5ù\11cDÿ\1e\80u\ 4÷²Ë?[ã»\16& \eBip¦G,H\ 1l\81ª@Ù¬ú6²\82\ e%/#¯.Tª\10Ã\ 4\94\13;\12ÑN\11äL\8aC×\8e@¤!t\½\10\18\a\ý~Ë,\e\97vq\a²l6\94?\13O0˹+½\rõ\94©ß"ù\863\14¨©âÈmÄç\19ÖB?`Xá$\ fm\81´!J\94?\90!£ËbÊ\10\8a\12\98\9b0\8fø[1iôÄwÉ"DHkÊ\9c\8ae\vU¤Ï\18\8e\8e6µ\88U
-\ 1Ö)xz\8f\16F\8aQÿè\a\14ÒH¡³&ÏE=¡:3çÒwò© Ñ(pú KT92\b»Y\81\92{U)¢.Q\11SD PÔº"\1c\84\ 5CóIúd=¡ö»¤_\85\95\8cUUXªEÀËê.Å»¬Ô"¥ U\94^¢>Cz8ÉÏ\\ 6b\14\e£½ðY\15Tì´\a\9a:PÊ2¶\15zÅÔLZ\9b\8b*±¢=\97½¨ÓÞ#îª\v\eJ\92&\8aZð\15\18à\82W·ðAU3\15\10F^\12³r\86\\8d(À^\89.\15¤b\8bu\8eu°\88"\9a»Ì%/9\ 2\9feî\93\8e \9fê\1dzgq\910\99<ú\fa>Ä<\b:Kc½g\1cÛ\e]$¶\1e õªö\9e<
-å&\83\90\99Î?*\19\8a{î\eò\1du\90ÚY\eWͼuî4\89\0§µÔ¹(Og\9daò\9bd fªáÍ$]fjØ®\99zÇ\87p×õ±\83·\80Ø\8eP Þ=P!b\9eµö\13>.̸V\9d\84- Nت3(\bJ\86í\18ç¾±Öòr ÅÅ Ófê/\90x®qn£\92\9bòù\8e±¶)\9a\ 6\ f\91Ï Íä.¹ \8fr*
-\f´hKª\9aû\83\ 3\ fà\1dJÞ8{Yù Ò%fa`NMÍ´ ×ß\1ep=I£¿\17LQ\15 h.)·fâ\ 3\ e\84Û\ 3,\a\13RÅQ\96£\17\bé\85\81oº\10û\ 5®¥\11Ëo\ f\ eí\87nh¼\17rbP\93\16Â\89\ 1\96\13\1a\97ê\12G¨¦¾{pÈ\ewIæìám\ 6\83RQ[S,z\134µÑw\ f\ eE3QG\83\9a8ß\b]2ºù\14´\10Â*\98;\8eÐ\97)µË~Çæ\1c+Ô¾\8c\ 4\13q¡8û\8d#î\1d\91:?G 8Ú\ 1\rä\18\81\92ümc\\91»\1eDà©;P¾#¾çÌí¦vV\9a@Iì\8bdgÞÞ\ fx<å}hä\16¡®\1c7®»\ 1=³!MÌ«ÁëñÝ\83ð\1dÎJ\b÷(S\ f]¬"*Ò\r\84VVä>=\88À\17Ú\e´\1aï\vá\ 4\9f\13Ö¸Øö\98\8f÷\a±\9eìé¨\94âZШf)Ϲ\1dè\rn\80N¨:\1fw|\bg°¥³ÉØq\13>Q\10ãíÄ\80\19'@³~\86èUÔuÊ×·ÔÐ\12Ïu\88m>qØÿ\13Ïæ\r"[\8aÙ\vÒXï¿ß\9fÐÀ\ 2i@¥\86ÛiBjySü3õ³\1cÍrÕUr?èç1<ôs£î@àAST\9eSúÙj\bÑ\89\80p´K´ºI\94ÔTNÍ\8a:¤J\b=\§ôrNRÀ6B\12¥\1cpÆ\80ïcí\1c\ fB¯p8aF\95¡Ã\9awMìvêrI\8f\11\93\rV\94\10Ë\89\9fñ\1cNp\8c')*\ e@©T*mÌ&ÉH\8eS\8etxWcîr$P8\14\rÉ*ú\ 2\19iÂ\86¢ÇúT/DÁè\17"+zÌs\1eÂÑ?u\bob\92\7fI2;ileݨ4Â)·sUÓ\84\855\94Ã\90
- u\8bò¥è/¼Öâº\15*¬\98n¤\14Qæñ\96í\ 6®\88\97)IâJ\v\90AfÈFÊ"`Êaf¶Jê\f ôf!¤qËR$ò\\18k\9b.\91B¸øö\90E\váö\8aV}cX?%\8d\17\84wÒ\18UÌ£`4z\87\98\r\10\9e\94´«p\14\9b\12bcêöÂÖF\1df©å!ç\8bdtÂ\ e\9c\ 5!\9dk\\f$B9ítkX¿)§FüΡáj\ fñÌ))E@ñ\9cx{0Ê»¾\ 2\8b\884Õ\93Oj2r9{\ 3®ÕP^\14¬S
-2óÂ\898¢Î©\87Æ¥\9e)Ö¤6/ ]t!Y\12ºNi¦\86ó\10´áqOmKB[t %k\9a2¬HOs´!\ 4SBÅ¥ÂfÐ"ê&³î,5Ç\9d$çUVI¢:f\ 4¨\96Â\91"Ù®\94
-H@\ f;!o`q\15J\93z´çXÆÁzyÏ\9bk\7f»\11\9a\85+¦ÊqÔ\10ü\93²\12÷G\929
-À\99ÚÂ\ eî\97½h\ 3÷Õ\ 5Ñ3Ã¥øä¸å"eg3\ 6¢\80\96ý\v7)r¢\14÷I\89Ù¼\9a\9câ¡hc\97u¨íè>\ eØ'¯n¢\ f7[ôAÆC\9bä\90Û\16ÞÛ¼>\16\89-®á\85V$híM\93\9cMxG\8dÍã,ä³\9bôs×¥t×5ö\7f´\979\96Ü8\10Dý>E_ õ°/ç\913FéþîÄ\8f\ 4«È\19[\8eÔ\81"H ×\9fá GÐ|\18:{\18Ý0@Ò¬§hÊÍl!¢Íf\84b\1ft\15d\11^&ó\14mê@ó Æcáå\ 5:cc \ 3*\94W\14Å
-\ 5åÒ<\9eÁ\8dÓ=þ¹ðòÂ\1aFÉ\ 4\ÉY\19\8clÍ\92\9ax$û\1f\vì_:Hyo\90»ªZD£²\r˽M\9aD3uã± ý*¾yèø3fBªvõmJ\8dý0g\13\7fõkÿmáå\85B|«À\ 2\97
-\90\ e\¦H\1fâC\ eë\84IÔÇÂË\vxaÅó¹ö`[êØvß9\92ë?\16âú{ïÏ\ 65èØOº©Îý\1a°§&Ñ\12æ{,¼¼\90ºa:yþTL*èt\9b9¶ÍoÎ\97tñÿÏ\ 2û«[îYÈ\8c\8cÍï\1f\10
-ý4\a9\a\9b?\17^^è½Ç\ 2û\95m;$´\°v¾$û\1f\vñý¥ÊýÞ \ ej\96\fº\§ømeÆñï:nß\86_WF³õÆ\fÙ\8eõG¿ä±þg!\9cßb2ð\86ª¾ àà0*²j±²í@\92ç8ÿ±ðò\ 2\1fÖBÏ×BÅ\9dAÊ,\80ú\9b\99±,Â\9b0u²¦\1e\1fìÅ@\9fZ|á±\10'ÜJK!ý¤Z*¾ê4Ð\97½}aº»ä\1cá\9fDZ\90\8e,æNiD|(M!òZ"=!ö\90'=?\v¯¯pè{\81ê°\15nc\0´ßÿ)FÇ¿@GÄç\9f\88/\ e¬ô`p¥|ÈÏ.VËß\1f*ÕGÆ÷o\vqþ®D~oØî\97z]a\ 2\929\8azqשbô|.°_\1fV=¹-d#\b#X\8b\bM\ 2\94\ e_åïÿ\9cÿÿx_\8a\88\91>Ü\eSAJ´½ûß\9fG²û_\93}Ú÷\12\93 *kê\7f\15ï9¾â¢r\9dn\8f¼ù^$·ÙÜô\ f($;©\ e$=æ\15wæìØÂS\ 3.ѳ²ºò¥Fnúo\90\bd\b%$ܼe&è\81
-\ 2ðü\ 3\ f(\8a\ 4$]ß¾\89\170T\15@V2\16h«\92Fk\1cÆíè&j\8dJe\ 5¸\0gA6\e°\96«\869§³Y\191W<¹\80ý\1c!ƤÐ\82bº*\99\fRCm\ e¯D={Oàk\8d#Ö7\fÓß
-\9a\18·_õv¸038\19õ3C\1eLo\ 2ÓB5*\8b\a·©¦ô3÷4&W¹?û\88%òDVÈ&¶\ 6Ú÷d`k2ÃR{5Ù\15\17\ý\8f\ 1\94}\99ác1\94)\95§'\91º.Áiû\9a\97ìà\ 5/TKQ?\ e1S\0r\97ß Ç ï§8\86ÆP¼,\0C\94\0$ØçHõ¸xÉ\10bàB\1c¦\1acìú\81\8aÚ¥%\08\ 4\81\ 5ÊøoÞØk=JàSã)U;\ 1Èy¬Åü\95{ü&\13\8e_ç9\ 5\80®¬N\7f\84\8d\98û[\ 3¶>Ô 0ª«x(íÅ\81Ýlwé¶\bÂ\fR{g\1e®²²¬±ÎM§\9bùs8\9az\80¡vÊ× Â\84\ 5C,§\85<4 þ"»ËÈcÅ\ 4©&·\1d\e1a9Þo\89`öK#ø.+IV\18$äK27l¹ä\1f\85ÜÂb%\8d\93\8añ7Ñ\9cåôPÙÜ\13 #\18\80\85\#í\1fR\7fxì£\7fâ03÷í\ 4¿O\9aêÃ2ã\9f/Sk\bZò\90ñ\19F\86#fÚ6FycxÙN\90ÆQ¡\90|¦É¼vX?Á\ 6NÓ<b<\ 1¸)à
-ËAî·C§1\r\90{\14\89\11#Ïô7íü\10\ e\92U.Yü/»Æº\82.\84oßb#Z·-ç\ 3WE±pq\0À\1då\vÓ÷\11E¥¸\ 2\96¾Þ
-[ÕúÑ/N\93\ 3ùK³\91D\84dw~çi\bL6ßjyzr\15è\8e¦yåâï/înI1ö®MJ! UþsiÒ½MåûÜMÅSÅG)Ó¢Tíú)k¡\88\99Ej\1cz¸\8fÀ\8c5Åh¸#Då\1d\fâ\8cp\82®\11·\1c\f1ª/¸@\1dÛtÅÑ\95]pð
-S #\80î\91u\9bd@åï!¾QUøã±pÐx{bfTDi\84Áº\93
- q¥{dº+Ò$)B4\fÌáXR©jÌVý[\9d\90n\12B·¾Ë\17\92+^ÏRÅÇMi\88
-Eø>uìUì\0v\8a3\94\82§\8a\9bö·èJÁU\89\ 6Îú\90/ä¦Úu\1f\9aQ³Z,\v\8aïQÚùÐÚ*[ë\1d×Ó²ô¶jJs©-\9bÀ¦\8bÎùÔ¯/M4M}±N#½\14í¿ÉMê¯5\9b¤\e\15\98ï>µ÷\16eº¦±¡ A)L\9a¾\9b?jȯùìýè×[O#2\8a¹Pý-Ç)R\8c!sÄÞ\9böÞºÎ\98à/5\85©0\8b\10áM2£\88:üóÔÚ\v"\7f\ fu\80"÷4\95ª ¯n
-Óvþ\1c¥róÐê\ 3j\9c*\99×ÓÅö\15zG
-~¢õ7O6}M\81¸\aÑ\9b»Ý\95\f²®Ô`NàHT¼\1cÑÜc\ 6|è\17zo#+\83\98\0\eK\bà2¼¯Ì\ 6gCùÀ7¸ÐÝÕz\8fV,6Õ\10½©È·Df÷\19<z=ä\8b¨ÆÓ=r\1dÅ{\9b\93\97\88WhërÃ\8dû©½7m\8fI:0¢y\ 4J+R þÌW\87zh'OOÖP\89\8eO¨¢\14\e%\9bí\8fúýõÔîÒ\9dÙ14¾Rñ\93ÚÝ\16¿ùãÿÜ\9e·\1cM}å\12*\92FÄûß\9fG\f\ 3à¼J\16\8d2½Ú_ÅöÏEÇZý\ 3í\14Ñ\ 4R«ÆjrÓKh·\12M¸®ÔpÕíp2õÐHÜT0\95¬.À¸÷\97SäÇÝ\}A¹üS¢ÐºUüÐo÷\11n\80¹\1d¥\96S\fõ ôO~ïöÛtZ7÷FO\87\98d»î¿Õõ\14\ 6®}g^ÓÅø\ 5ÌÕ\94P\96ç\86l@ÑCZ\1aÀ%¶&k\87\r\92â$ÀBw\83ûã[Îui:\rÓ_3̨)\ e\8d¼ôÆÓÅ©^pVjÑ\14Q¼ [1\15\0(í<;é³"¶¼\ 3\9fýz2Q.³¨#x8\ 1\ e9X\83\8bÇp0\98.]â~\149ÉvÄìÝ:+ÙthÞ\8d¢N¹Õ^\8a\86\96ÝTC¯ ³\f×Ð>·±¢\9f¨¦óÂè9º+3InnÈ\eÀ\92Ë4`\1aª×\192\82\91v<\»a\a\0º\94:ûº\9eí\8e\9aV\8b\7f\85¼äXªYò¢\²Ë\8eg»\1d6\8aG\e\ 6\ fªIìk6GÉÆ\92Fj*å\15¶
-Ñýöèý\8a\83 ÐâAu¦uÉìxFd"«0\19é®ËEÉ¿\ 2-Ãß\a×\14|\r{×tÆÙõ\8d\vöE¼0Æ;èC89Z¹~R³2ñ\82±Pi'Ñp\903m3æÈ\1a\8afÙ&lï\83¾/ð\8e\¥\1f}¡Ú\ 5¡h}\84é¨ mÍÌii¯à7\19¿8ìâ\17ÈTépÄå¥#eæd
-¬¦3\1a}{ÇU(bpÂlï_û8Ïêµ²ÐØ¡Ìñº"T\8a?ôF*yq¤ÓM\8eÙÁSw \9bßÒ3Rò@Zí\8dÒÎ߲¸æØ\1a¯Riu\19[|·zâ¥rG\1263 ô\1cïæv6ÙÝ\98\1fr¤\9bhÊ\19ÍfûóÕ\154úcT#ô¥dh\85Ä¥Ò/\97¥\87|\85tÛ[~´É\fî/\86ʽÞê÷×S¿Ð³\96ÛÓÏ«¯Á@27ç,-öÞ´ö\16',\ 5\7f\ 6w\ 2\ 4Í=²Ñl\8d\ 3\94Ví}è\17\1aÌ\ 6\94\15-R-°Dï×\8b\ 6¥½\1d¼yj\7f\16|\14ÞT}\1d\ 4¤Â«hÉNÂY\0æ(QÕC\8bª\82@¯§\95.ª1\80\92\88¹Nä±É$øÐÚ\eÐ!=Ô'\0Sy_Xµ\82aås\1d±9\13\9eZ[«\8b\99n\vdðk·\87{ñ\8bø\r¤t1\7fê8²`M¸º¶\9cÄ\922X\82C9[¿Tx÷£e*Óù[\8a\14Z ßèbøB_Ð3°¥ÔRpã¾B\9dxjíÝ®\8d,C>*\8aÊ1Åê\ 4p§\8aIÃ\16۽멵w¸CÊrS\95´wã\99|@?í-Byº£jïCk¯\82b½µbmn£.\89ûÌ ÿã\92À=m#\92n±4\152ÒÝÿþ<"óöyp \13¯Þu¸¿\89KqÑÊÍ4\95\8c\e/Q\9cÌKQvÝ+&MM\86WE]Qn\84\0\9a\fô_\99þÑJ\16WO¸\94Ü0÷õìpŪË?ï}\1a2Ô \0\18ë-õ¸JWÊ\9fß\15'½\85\9c\96½\9c_£î©ZðX¦:o\93\8c \r(\19Å\1a\9e\10\82´\1cd\93Ì2?$aôýÅ\99F\8d\87\aMKݶ\19\fUtËt¿ÚF
-½\14:\90iýÅ1¢-úÑ\11×\8bß\86\8b\93\ 4\96\80ihÈÉ!ϳ\ 4¿ß\83\ f~4\91d\9f]y», \ f\85^\0¥Ðv`|¹jú×\95\ 3\94¢\91)CGì¢ÕÄIÆâ\ 5ÅèÁ%¶¡U£ú=Lu\97Ô\ 6½X\81|-¼¾Ü\87·\17\92\8a\81P\90@(\1c\1fh\1dþ|ô\1fzd\82½ä\17ê>\13\0¡3ô\9f\12߸¨\16ë1FÅ×ì\ 1\8f(w¦-\ 2\95$×Ãd\98M\1d\80}}ýó/íe\8eÝj®Äà¼Wq7`\1f\8eEr=7õþãÆ\87¢$ËÏ/ìã@.N?Y\13\80wB\934Ô¦\1aK¤"/.Ab\9auv\ 5ª[\8br¹Q¬kõ\80°o\9aáX.Ó\15$¨ÎI\87\ 2þ\rf?Ò\11é\99\1cørü»=\91#Ä|Ol\11å\91ìtZ\ 2Я2½ ÌN\80Ék\e\90Î\91jºÉu\97\7f\9dÔ7VÍ\18ÝZ2\r_³\8eo \96fb|ø«w¾\9bh\916x@w\8dòÔ&\99éÁs\97{·I|Í«ÕâJ\8aKgÎ\9aYx}$\8b.¤\83ê\10\8e\869^ejK\8båéÑ\9e³ò7Ú\89rii±c&\99KSw\97\8ca_\89_(ß\83\97T\ 1Ó\96«\r|°¿:¦i¥\ 6ªÆõòÏ)h\105ÙSjf è6 PÜÁ\7f\f|y\0\8e§V\1e^^\02âÀîf"0\86 \1a»ß\ 6¾<\0\ 2À\11,\97ºhÎ\ 55\11Q\83\7f]\93ýo\ 3_¾=%ñDA)>Sk(Èá\ 48\ 20H[«Â]\8e\9f\8füø1ðå\81\ 5Ýêæy\98\11Fµ¾}\18\8aq&WøûÏ\8f\81ü:4I¢\b_N8å\0OK\17\97Ô)VbçÒß\1f\ 3Ú\ e\0\v\r4@§¨ÑLà1Ñ%2\97Z·~v\8a§÷\81¯\1cPý\b¹áZ\98ã\92+9A\10û¹\12¹Ã\8déÇ\0û\95Òa\ 4^Ü\97Ço0\8cÄå¶[ù~ͼþ·\ 1®/\92|^ëu\99m\bl\15!õ\96x¿áù8°U0¼\8b`mdÕ÷ÿ_Kp³\14î¡ñmuÆ~Ôàæ\7f
-èùX%V@\1c¡\9f\ fD/î§t \95³q=±¨öH06È?°CM~º§4T\89U\83%®qQ\1dÉ\8dG\8c¿ïÛ¾\8cl\15½¸³\7f±^m¯ÓcÔ¢N\8dì¸#? úײéî\91]Ëø!¬\ 1\9b\80cñÁkæ\85Üx^ó±Þ̹ïÀ\9c\17ºØ¦ûp\ faW'DR\18÷\9as¯+±j÷;£xy¤Ô²ÒSDZ8\943R\90\89c\80êG\9b¶ \12Ýø$á\90C9\89êîF\1eõ\ 2LÅ]ìQE÷q¬Ü\96]8¯D\80$¹\7fêQËxöAͨ&>DEV»A¶Vcg(S»\esñßßï0\89\8eyÂd\Ö¥\13*§\81$ú*]
-ɺ\93\1aAO\13E\14âa°¨µe\1cÖHT\88H~U\9b\97\95>3 \90\14â12\9cô£\e°ú\18Y\99,\ eÑËÎ\b§Í\ eÝÀüä±B\9f* \86\ 3?#m\8dêÏ;ÁÃÄå Ðp<Æ29Ý@³{\92©äp
-Ó\85ÜæáÌäÿ\87?jIø!\0ø%\9fb\13\ e@\16î\81-À\ e¨ÄHût·ÀAñ5\1a\13ívüñÎ\ 3Óî\ eõ»í\9d]9<\8b ª¬"\85#`\82\96ªAn\1d$4©.´w[{Å©õrPI°¡þ8"e\19â%\1eª¶X\97¼Û_Ø[éøD¤¥\0å|S\9cV1é\10 uÁ\93,¾#øé\81çßmï\9dÍØZÅE±\94`²¶ØÖÃ\12\19´\87ßmï\1d'ý±s¯\9e¦.Öä\14,¥×\84ªì»÷e{o,Ëƾ|çe}»\94.\8b\ e\16ög¹õ\9bç«5ë®òhWË\8b\9d³r,¸$W!,ÓJ×½l»\9dìy¬î&RüèÊï\89ó\v|Lu¨T\801G5óüþÿs\85N_G\ eT9mÅ÷ÄÜí?\85\8e|å²\92Ýeý\ fr4¿ÏÈaò+úI¹\81¥)SöN\99\aCâ\1drï\97í\96Ôp¶´+LW\9dÚºq[ûí\ 4¡1²¾oG\90\a\«Ãøn\90ÚI²é\82=\19¿zºå¥\18\e]\90³Úó\9eâGõ_²Õ]\v\81Q½ø1kùjkÈê¦ì¼\97\84%\ eÃ\aïmÝ3\93\1dwµôáÄ°¦u»\97ÍÕ@\ e5&=È\8d¬ú\84\97ŽY;v*Ï®67RЪ\7fð\8d\99Rê\84×EbVS\a×e\96ß¾é\12jÙnxÃÌ]\9c\1a\9d\97"µº\1fý\82\ eõó\ 5\ ejSæö\ 6Sx\v>\12oØ>í¨0>ò\85\17R¤1\aÀ3Æ÷\87<l1\8fΣ\r±
-Ë\16`\1477\9cWδã[ú²ª\a(
-#®5\9f1JË \v}\ eðÌb\ fõ\95¨{\96Ól÷\fÿIM´27\87Ñê·ö®~Óùö\96Ój\16ë\b\9a:^\83\f\a4p¾\8a\0·*¯Kb\12]zájÓ\8al¡²\92\rAe\1c\a\17FMíY\fn\19\8d\ fJ\r\85D
-p6}ý$0\13ADM¤ï+£\90\89êjYVtój6\rÀªd\96\96fÀ)D&J\96\93a\9e\81¾}\_Çó=O·¦Å\1ciöqO/ue\99\ fÏG÷\93\97¹\83`ÃÁ\88ã\1a\85o\12\b\rÀ{d\96ù\9c§³AªIªå*eÀui%\92¦w/Ä!¦'cÏ{¸ýL)úìc6i\88ðMªC\9e\1cÊ\ 37êp\13\99çÎ×¼ø \a\ 2ÍsÝ\ 2C!\13v¾s:¦k¤\17Ï1\9f\9b÷.\10¼c\82\87»È\8fJ>\14¾aØ&\85E÷\1d`\81zs\8eyn \92\ 4\16×RЪÇþ:ôM\8d$K\90Ù(4\970yp\¥;Yy\14s4ÔÖrØùmé\7f=oé¢ís\8fë\8b\986{NÎ,÷tÄPÝÊhó.\85ëgÝc\95ê\e¤Çu\8f<ä\86\ 3\93¾dÉSøBwæªù\1c¬ÖóPÙ\8b\8f\ftÅÌîO\94ÃVk>öÜ¥å<\9e¬Sqϼ !6ªS\15¹\19÷ªK\99¾>á\81\13\85óg[Zâ\8c¡è\1cyüY"ú>Í\95ø0ßJ\11·Üª``¶ÇÁU\ eªå¦¥\1eªL\93Þíy'²Pe5ÆÍa2Ng@yu}xÓ\16¹Ï·\r½FtbgN\ 2G\9b\17Àï¥\a7\8f3~ªÓð11\1dËTÛ%íîÙuÞ,\ 5\16ë.]Â\19ä@x2\80\97\93\87\92¯"¿ÑïÊfì\99¸LV)àK£\86E2\97\12H\8dþä\ 5§öÔ\82Xeز\11\a\888\17\993\87ºs\ e«É\8fÝ°5T¥\9b}}æ]§S:m¬à\1cÀ\13\ 3Ðën ¹\94\96Õ\rÊXíð\8d\92Kën7Krim\9etgK\1dÕ3\ 6X¾y¯\8fµ\9dgö;é\vìr\rcï·\v(\rè:9[\vá\1a¾¬2\13\¸ gÛ\ 2Í-[Vé¨-(\898ô\1c,]+)\11RM,:õËÈú]\99\8aC5®\ e¸-)Y+x\124(Q \1d]«6iéÂéa~]«1\19M£¯\8a«\88nô\rt\1e7ÈjXùhJÉ`\8eb\ 3\96Ô×Õ\1e5\0öÚ\9c\95ÃÎjiê¶2÷L@\85ú7\ fàª\16¾\ 3\Æ\r\9b\90{ù\Î\88FÿpÁEK\11ǯªÐßRº¨\8e×eI\1fmZ\85\85[1k!\ ez\9c\81d\1a«§ë\88µJl\85\ fm\93Ku¬ò¦¤µÜ,æÜwéBZ\89¨¥²\ 4\83tÑ«CCè¨FXÇ];õÞu©_\96-\1d¥ÙB$\84\11?ßv\1c\âé\97úºù´\84.4êÃ\ f\9165Þ \82|Ôÿ\8eɶyYB3mÊÎ\9cÖün!0\9cFwmã\ 2sÞÙ2lå'\b¾¬\98wíÃîo³yY¸mî¼k«O:¹¶ù«Q/W\9eì\8cl\91¶¹ÿnw\92\1c.õ\92ì\8e+Ëã¶E|^ÎD\1fÀÏûv·lI\vëø¶\96ÔæÐ\9a\93Ë\ f»+cóæÒö]Ùhy\0ÌG\95zÓå¤%\88¬¦f?ÜjµT
-a\1cº%hüQÃQ¥î\93¥FÎ\85]\80M\9b]\14\81\fëK\1d>Ój^jîøáºâ
-ä#\9c\7f4×?1¡\ 4\83hÖ\95k\81ùL·ð,\146ÌÚ\aºQ-«\81\9añ^WÃQ\82à¼
-¥\ 3¶pVõ]õOÇÏA±ã\98?Û`-î\ 6½Ú&jÖMM\1dx\v5Mãð\85tE·J\93¦\94ÑJ\Í´1éN\18ºñN<o(R@-\17vÃÐr¹É\88Ã\rËIÒ9ðBdG\1aô\1c\95\굦z\99I¯(M\8cXýJ»I\1d#\15tû\82\9bM3\aô\92¶|î2êynóÙ5º\8bÝËÂè8ë]7\ f=bv3Ùq²+Ì\87<%®þ® `6k\94f\17n\88Ïáß\ 1 [#\85\aç\88¢Më®A\vV`\97\r9\ 4Ú\90èþIC\15ÚÔÇ+J\92fxl\Ã~\8eæ¹a\ 2\19\15}¶
-ôñ\ 4ÿW÷\84j\9e_M)õõƼ¥\1cR§\18\86þþ£TÚ\9cµL¾à\87Ú Âìî;Ú6º5Yè[²ªg ;j\ 4`t@>»ùT§¢t+\9dÔ\9d2\90Ûnt¤È\8b[\b_\1c-UâÈ\ fïL\16RYëMØgv?¤Z²ûCå À-Ñ\96\8d\ 5Pöû\fÙ\87Ô\95\1d>¯Ì´R]ÔíÔ\9dÉw \ fÞk)5\9eê§çO±tj\8f\ 4äb\82îLÁ\7f¹.³\1cKr+\86þç*r\ 3ÕÐ<,Ãk(À_n\ 3\86÷\ f\98\87Ôël\18\ 5d=\86n(¤;\92\8eÍ£\93Ü+(Â\bn\ 3;\96Ï*«ð\16¡Ó\8c¶)¸Þ|\15P1RÖû~\8d\9f{Xj2\82\85N\b½Û\94
-w\1fbFâ^O\1aî\8fÇ\14GOLÝѯ+\1dÔräAõ.Ð1Q¾T?üÔtVxÅö\1eÂÃ\9d~\0®\ 1Ýã\982\19Õbê"ªå\1e£ÞÍ«VÚÏ8ÙÔ´úúí\ f\a\89\ëÐöóyoØt\8dìº\aúIËÓ!á\vépÍ
-O\1f¦\7fÐ\ f\15|]ö¡²\9d^\85AcN1ã¬Þó`ÝdÜÉ \17n.ö)pÖ\973¥¶\1fó\9a¤åX(»p\11\9bß\97\8d7\98tWÐz\8cMظo\
- w\8d:îp-\8fJK\ 3ÃzÿJ=·ê\97;µÆ\9cV\ 5ÜFs8ÑÌ9\1cëû\12\98N\87\1cÙ+\89\9d\97Ûq®Ä¾æÜjR\818\1dñ3I"\vÄ\93¡\7f\9c¹2¥ç÷`þBx\0ÇÏöò\ewÏ7f,\ 6¯[\ 4ó«ä%h-îq4eu\89óÔÅ\93ñÃãn\87\ë?Ì4b+<o»YeæÖÞ>\ f\f_½\94\1d8³\9aÒÓ\83Þs»ìæ9)ÔòòºnÊ'jV\ f<ñ®\93I7Âå:\89·¾!!Ûã\vãk\91Ã\ 3ß\13w\ 4:ûOÊ\1c]ÔßÞ\17sèð\r\97\18q"$\1a¢Qí´\1dåS¯¥\15ÞL\1e\95t.BK,¡)»¿ºn\8f¸L\9f[¥A$M\88ÚËS\88\8eÒ¸¤Ún¦Eõôð\ 3\93Óú:h}|¹\9aG»ª\1eµ¯&ù®BÚ\bxÄ"ݵ¾ 7\8f\82G\7fWÂ>nè\7f§B\15æ©Ùö«·WS\b½\8fÖØ\88\e½qÇ\93&\84A\16\ 5HZq\8bñ¦\ 6ÊÆ\9c\83\8f®\88¢\99[µ\eE×9óýPA«?gzõª\ 6²óº\ 5mç*\r<¶7üh\9b\84Hw\ 5.ú<ju9¤½E®ª;OwåIÿ\18÷\8fD\1c±÷k*b©©î¾øk¶ð\bå,\1f\9dÌ\8b\9bÒÓ[s\9b÷\19Ú|\11¿öyðk©\9a\89\81Ä\8eá«ßðDÌå7*\ 4î #\vÎG\96\86íþ\91\16ýϯ\7f|1¡ïàïVOþþïï\7f\7fýç[PÿÔ\8a\95½jL"íÈ3\8dÎß\7f~±¢¿NçbÆH'arC\ 6¸¬þL\13\0\81\85\11ùYÌ\ 5\95µ\9dß½`µÜ½°
-\99áYk\10\bs\97üln\88Ah\1c?S\eW¼µ\95r´@¸ÆÊ ¹ÑC\87gE:#¤\15"hñØMÓ4uõ\12\rËÜ\92r¡\9eLA«nIo,x3N¦\16\eò\92&rå^Ø)êì:e\7f\7f\1d³·cqµM\b·»\1dÓ\9cãÔ\92¯\9e\ 2\89ì+"¨ê\88ì\82\1e1)ê±ê\97ɺ*b¨k\86«¹_\84\8ar\8d10l\14fI\8f#UMÅ.÷<\15÷f\88 :ðuÝf¼í»x^ë\ 4¦\89ÅÉ\vÇõdÜðb\94Yµ\1eP\9dy\0ùjÌýãNú\bÜ\18\1e·÷xì\17ÏÖ=kf9ùX\9c~\10eÐ9âöBòºZM±T¶Ùjì\b\93Æ\95wß\16\a\1c§\9b\1efÄ·|Y©C&&\89\8b\7fÿ\7fò64\84úÑ\82ý\10ø\9fä¥\97ã\82\81SúXá\ eÎÕjÐZRs\rßí\91\r\ 4Oa3Þê6\1cµ%=\8boÓ;I^rÓ¶ü\9f\19\94RêÜp\92\9a\8bT/V×\v±ø¹ÎÏ\1dê)\8c\ f\ 5P±A\92þu\a\ 5¼x\9bY tû|â¡Jo&/}-ç¦Y\v.Pb¿È\85\0WZ\85É1)'O3cmK£d\84\86× I\18¡;¨>Û\11j^\97W»\85¨{6û\84\9f/·\ 1V9k0o&Í\96ü¾í~\90lo\94©(\9c\1cËx\fõ:b\1e\9e}\ 6Î ö\19\89rwg1\93ƤM\bIÄq=W[õ¸|J¢É_\ 1\1aÅ\r*n@xZØ»\ 5ªRH\85¶|KU°Ò©¿=]^§yqé\ 6\9ap¥\87\9bé\92Z[=ZÖ\12MxBy»\93\1aÔ-@¶V\85ƱmX«p\8dTú¶\8e\0\81Gjpræeó\9b5§-Ëô\904ÔMÌ\82Ô\19Õ\1c\94 »}¾(S\18³edÇ°\91ój\17´P}¨\98\1dö¾o\ 6'J¨\8cíäôã\eBz\7f\87in\1f¶Ó\97Þ\ 3e\80¦ö\1c!²S\9fë\1a -oÓS~\7f\rÑàc6µå\1e\8dÙ}=«
-\r[å\9a\ 2\83âË\16/¡\0\96Æ\93Ànt¥ª41\18ß\ 4gÄp+)\95Iên\8cnÙ#XèbÃâR\1cáØ\v`2\146~¼ªÄ\ 4M@?1õ\90\10nJ(8\8e0èÛ:ïU6U×\1aÏ\12\85lPå\8dÄ\rúU\1eòZ7ûÊ>L\1e}\11Iè±T¦Q_\196Ã\96è©ï°i¹\8d\8a\92ÒSæ\ 1\8aoØÎ\8aO\8bz3Ó\8d\e\83\f\86M\19\14 õÜ_\9a¿?ÔSÄ î1\9a
--èúÍmÅ2¼¢Øò\92ä\ 6àô oyh|¼Õ¸\1eMz à|óû7pï\8aá¶wÕ\96Y#\rPq\84¬¹ÿUxQ}{\1ezÕñu\1a\13y~.7ð¦R5G4i\81¾\1f;°éVJ|¤\13|p;Õûj±\9dJEÊ@-\9aÓ\1cÛr\19!Z\88ÉxÏ\ 1\8aÚ¹0:a(\95V\90
-
-Dw¼n\10²Ua\906×\9e\16\1aP\vå"¾*\7f¤uBðT+×E\ 3\a\1eß\ 2\1d\17\8b~l#ø\94PwËTáÐ\ftmþëÇ:\16'h¢¨Æ\ e_\1cz\93Ó\82ù¦JS§íÔÆ2Ò]\84\96²©B®{Êõ\10¯Nô:Ìdâ÷ËP\97BëFµ»²ÅN\94²dµzUW®.W@\97«µ\86jó\9bÏvÊ\eh>¹\887¹L÷\98\85Øo¯u3T0Çï&J \ 4\9b<ïnO\0wm`LÉ{!Î)¤ª\ap:\1aá\89é\1d~õÖ¬²\11\85z¹\19ÚR¨[{v\18\90\1d8p½\18\90jKh-{aß8Ó\14¹/ë0ËW\1cÖÉ7±)=ëtfBV³« \99*ܳx³ªf,\84\v\96ÙeLߢ¾ü¯//\ fpãðBÝ \axÓ\96¼X)\1cx<Áe:UL\ e¨Í$T\9cG\ew¶µ}\93\bN½epTiu¿I\8a©Ç¶¸>\8bÐy\ fqßc_¯õO\ 2QO\1eÛ8ëVH\8aã-\84D\13Úf\1e¬\16¯\ eµ7¡Cëá\1c \89\ 6@MzjæH¦]3\12Z\87\8a\96\82v\86{짽\8dÓ3ÊÝ\ 3\8aÉq«&=4ÃFqÿ\8d¼k®Q©×©\89\0Uè®Âº\99i\15¦~Mm[ÊRÇÔøcÜ\8dïkÇv:ÞEB\fß\87®Ý\80º\15@ùw¼yGB-\80¥f¯®¤£¿
-\vb\86\8f¡Ú:t×êádж\81]9¦!Ó\evås\8b°º\16=f:r\13µ@~\17NÈ l°JnUëcDµòZ5\ 3*ÃKélwy\83sB²(Él\ f\986¼nkW4C f³\1e\8f ÷·±ìÌ\1d2x\ 1ãqÁeG¯\84\9b)(àη|\86]ë\ f¿¼ö\\8dG\18w\8axÝ^z3L¦Ã³\9d\11Ë\11k\86@÷\80`ÎS\83ã\12=ívÜ\14\9cO\bD\9bÛz]Âuíl:ÃD¤\8d´\10ÇßVå\10\91\eZ\v\83\1dßÔ\873 7)\8e\8bK0N\8e9\ 2¬ú4VÆ%?Êrð;ûôrý|Y>\8eS\1fbð\11khÀ0'[ÎE¬à;j0ø\ 1^¥1¢Ôl¡"\ 3\81e^FÇT\elö&çnìZÒ³ùx5\9d\93!Ú\ 2UAùm§D5eP\8b«<vÖkh UÎÎ#ÿ\1eVE°Z\94OÔ
-´\1f¾`uS\90A\8dÍ-V`¥\1cÔóûϯ_\10PNØÍÙ\99í\»>á \ 3Ö\92¨±ö\1cVùY}õn?\1dK/åÛF\òL^õo\82B\vn\88\1c«)Í\1d\9d\99fÂg!jꩤ\95ê\87\boGKç»Õõ>9«òEq\18ûY%r\1c\vm¤\f\18Ó\ 6.\18¤(YhöÕÍåoö\91·å4µàâNU&\84t¦ãÖÃ=\97ç\v\89.{\f[D\15`2Ét¢ñv\9c\1e\a¤¢G¬§S÷¨\81ö\9b¯r\11ÝÞìµ\14o\9cÃ\8dfvb\8a PFÇÈñ\14\94Æ\99ÞD\8e,\97:é¢Y¾\96+õf¨ô\90\84ëQ\aJ[ ç\80\8aQ÷Q;´
-H\ 3ølt]4P\ 4Æ\88Ðxcv¤\11Õ\8c§RÜ\89\ e:\ 1\82ä}`Òæ;;«pnØOõG \85Ðí>Þr\8d\1a\87\81É5 u\83\8eyT Jª]\98¢\8e@\9b\1eèG\93>³_\e>¸\1f=E\99uo\ 3Y¤ÔT¨*}QÉèÑØ/\8f\99\1fU\aX÷óêC¦\9dgÆö\7fd\97Kn$±\11D÷:\85.Ð\ 6ÿ¬:\86Ï0\80á\85eÀðÊ·w¼ÇÒLËÞÌt¨X¬d232¢î\9fk)ÛßO÷8h\ 1\8eïÃ\ e\14\r\1fct\8c³mÐÔÇ</>k\839Ø\94`}Ú@ãºßPïí¬½\8b¸-\8d\fÅÖ\8e&\ 2¥\1d@.%°[\7fx\9d¥·Ã\bÞq\e9}Ôg[\ 2¤Ú\97>G\11:Õ_\ 3½9\8e¦Z\7fö\85À\11Ô\91?KÛ5òǸ·QõKè\14ÝÜ òÃ\1f0á\1f4\ 4Û¥\8f¦§\15\1f7÷9\9bÖ\94]S\ 1sªÖQ¨\ eï\99Ê:*tA"ǵ¤á\12À\9aòR\ eR\f \18apÊÒGð,(\90GèÜib²4\a\9aªNb]P\87J¥\86;òÅ\ 5%\1c\91¾ªî)0嶸éÍ\0H¤ù@n}ëײn«\ 1Ukë²\1335s¼u?|sY¯;\8c>xmdjìê,\rýd×\8d\Ú\9fSA\9d\rÓªè\1aÇÀz\94¯#d\9dÜàñö\89°\15\88¿¤G²\90\ 6\7f\85\99SJ \91;\ f:\86w\1d\8f\11º_!ºE\13gpä²áÜ¢øy¥R9Ïf åa²X|HM\ 6Ý©\8b¼¸#\15^I¼g"ÕIVðÈ\b ·\19=¯åø[EvζE~\9by)7ñê\ e¹\99\82-\ 6T²hÐôÃp\8bÕ\97<.÷_Q«\83ù\ 4Û}¯M:½üT\11u\12<òçI³ðbò:!mS²\1cPÉW\19Fгf\85®Ó\89\89¯g\ 4¬£'^0Æ>%\ 5þ02Ýħ\8bó\rä7'ÛN×r»/åÃ=À\8c)¢û®g\1a¯¢cDk²,\14ÅHu&R±¹âFRÓ\9f\9bë/rÕB\85æ\8er\9cJX³S\84û)ì4ÁR\9e\9eªÏõçÚ¦u\92ç\87\e\a»P'k\9f\8f¢\88òt\eø\12àeæåìË;ê·@î)°\r2·\17_j¹±\0zgù®}¹\9a"=$¾\ e33\ 1O\97p\92ê\1d\98ï±ôi%\95<Ѧv{\84á\84BªsѶ̵=³0©\9a(õ\eÒ`N\84BP<y¶îzØ\ 6Ñ\ 4Þ²Í\85\11+JÇ\81~P\ 6.es*g7\94 \8au \a\96\r¸\0\93VN\9døýÜT³¨Æ\94µj2ôJ\1fç\163vvE\1e\15\992»rßÁUq\9e\815¯*\1c©.¦Û\ 3×hgø]í,_gR\12\9b0wÊXM\ 2\85ý\18»\9dþ\ 5_C3Ç\1d¿HT® oûÀê°Â«X\98©q\8a\8b\µ'4§!2/ç(\16uFç¸læ\9d\1aÌ\94ØIË\8b\8b=£{Ù9 \ 4=ýà\7f<Bæ\81ÐgòJ÷6Ó\8d\12γË\9a\9bßÜÃôÏUT"¶+ò\ 2â\ 6Ct\1f1\8a'*öc@O\94\Ýç\ f\95úëão\1f\7fýø×gUÂæT¡\ fÈ\19\vøëë\83?òï\vgE¤\7fÿßõ\94Ãh²WïpÑï\97\92EÚ¶^\86´TÊüs}\aõë\ 3¤\9c\96iÛíÏíOÞ\1dVDQú\16I"/¢·d.\ eàÏ£i)MeÎiÊJ8ü^ìÚ\95´ ÁYfCe£\10_ð\aoÒ[\0')"ò\e1]ßÖu=\ 1
-\8ce´0Ô\89\12HY?<ÊoîóüÇ \ 6\95RU\f/.Á\rwäð1\ eä´ÈIåLíÏÏ\7fÿúç{\9a\11kSÊêX\97·,_z\95B×æ\19\a/\89£É~E\9fËÁ\99E´\18\8ebó³£µ4dEÅÂ"ôö«8÷ª\9c\86ǹÉßíï©}ÈÿËìlÇem¦\14j J\ ew\ fiO\8bä\9bx$þk¢R\7f\9cû>\17\9f¨ÿïÜ5\84\9d4\r\85i\7f?8ÛX*å\\±:ê<££ZO\1dJKÚgwÉ\99Nº¹A\17ì\9bWv\7fºåî$r0çQ\83$¦Ã\a\99ýãT¯\v;Ü\9fÍÎ\98¼*É,\9cÀ\13¡Ûn4õ\9dÞû\ 2"BÀ¹\0\9c\13Ò\93bÝZ&´pþ¨A¨8º\8b\93¢\r3y\92ØHÏz¬Ñ\85\0Ï\bp(VüBS\9eG1À&¼\98Ãíc0ØänÞ|⮿1Ú5í"\ 2\8ct\0À\16Â\16,?Ù\b\19Ò¿¾?\19t±\16\8ay\bì\ e\95\84\ 3©\9dzÜiPÇ{\84ÙC\bA£ºv(Kq\ fÒ\19,Aä\ 5ã\87\12iôÉÔø5x¶:B!\96f:ì®÷¼êüÈd>\7f\91åe²F.ª#M1¤ÌéG\8e3\94\9b\ 5©l]\f¦¦8W¯¥\1f\1c«WAh¶ã,§GÉ\8c®ý\bc\869\rþþåä,$}(;\99ÿ\ 2Î\f\18\84=Vo\1c·zì\ 3ùX>+M2\1a9¯bÆXKzòß¹Ø{\8aÖ¹Åà\ eÜù+`ø\10ª\0\1dUp¯³rë4\98\93\84CÙ\ 5\9d\8bíÄ\8a\80¸ÏÒö<\9d^-\ 2ð\e5Û\ 14\9eáv\ 2`Þ\0|Æ°ø\91\81ÌL\84é:\95NF:\82WÃ\ 2Ou\98DE\83ÊêÞ)ãV\92âáP¶ÀÒ\9d¹r¼D\9eö£\94\83(;×\96ã_Pp-fÀÄRÕ(!?\81©JäyÖTF='É{uøÍ\12\86ÿ\19lvM·ñl¦c¾@ÈU\1cTª²çÆ9Hó2\83æÝÎAÈeð\9a~¥æÝ \r\876+\ 6tëï\9a¹ì\88ö\13QDÇ´#ùH\12\134ý\ 6i>+·9hÓo\8esC%\81ô~\94Z6×Söîà\99NÔN\94\07\85\0uiã\Q\9aè²\ eÆY\8a!ªôyû|Ï\80ꪦT"Qó¥/¡\96+\8cËïPäÖ³\ 5 9öã\87\ 2GNºU\98J²\81k»\ 5LÎ<·¬y\968ÑpîØ\95¾¹°dÇû1\17\b·Á³\85\bÜ
-\80\10q@\v£ß&Ü\85+7z£=òûfóq«\ 4ÿ\9c$"37\13\19\7fìÜ\17\10\97\93;Ȥ\1fÍ>M\15æ\85Ñd\87\88¯ë¼¶» ù¤\7f\83ÿ|¼Áëó÷º|ùÏ\ e2÷H#D\8b\84)\11ÍEË\ 3Õ+uùoÛ\949 \1a\1acp\87¿\ 2PÃ\11\93¦æ\92¶\ e»¢\97+Ö\ 2M\9aÝ\9bî6§ùqƬËu#»\9b\rð\ 5F§\82CÎ\ 3\8eVe¢Ô\ 6|©Èlê\9càÒQÙ\7fÁ\14\fã|UõÓÀæ:Û/\aC0ï \bÒ;£\1fÉ\9c>K\r\ 4Í£«\9a×ïÓÛwà ¼ylà¬\ 6ô\16nÆnÔw\8f{ÈÑ\12É\97ØæRÓ\80
-Ñ\84\ 2@ËÏfCý\a\98±~ú\aÄ4Èù\1fT\16FïhþW\8bIÛ\97\13#\87\f\1a$\17Õ\97ß-Ì\1f U\ 2ã¯\829b;\fÌÜ8èÂ\ 6J:¬í\96á<º\90\99v;¡¸\80b\83\90G\97V\b\8càwE[¦+\ 6\a»´&9t²ú\flacÔÝÊËä \91Aàã !Z.]J\15\82ü\ 4LÊ/w>DP,#ÃL\87(ª¡V\1e2lÈ\ 6º®\9e"ON\8e\14ÒG±´¡\ f5\98¾¸ª\b\1d \83¹6\1dê®z¦4ùf×Jæ.eñTþfa8¡\f\ 3Õ\M/\92¬]Ä>\1eÂ\r²Ð/l\15=óIqÝ\18®\92ct\aw\96Á\87¬ëEÉ7ð\94Ç\11¥\92 \1a%°²\ e\1fÚO\89t\87V?¦ c\0\ 6\11¸£uÏç_d\©\91Y\99\88®Ê\81i[\ 3,\ 3\ 5QsÕY¸&\8cØ\ e¸Bµ\97Ê.\v\97gÜ\8ezâÐjí~Ù¦§Ý\8c\10î\f!\84à\0\e¹R\96ç*\89\9dÚx"\1c\92qè\117\9aòI\1aóyò$Á:B\83FÊèVß\ 1&|+'lÝi$Þ\ç$pW.t\87I¸XU^UmY\ 3\ eÂ~ê,ìÙÅÛz¡\89\99á\82Æ{Éí\9eÏÒ=\95.óºÝ讪2ıÕTÕÁã~Â¥\80³ºs)ã\98¼\f½Ò$&&jBÚõø\8eû\99ëûñ\ 3UTQî×P{\ f³ÀÊ\ 1\x\9er\1eí\e\eU\97\ f\1e£ºÎ´/·\9eÖñÍMiq\14\14ª\rXq«S\90°\ fG¢Ô\9aK\17ß\9a9Ø8Q^|(ä4´E;CþtøwÈá¼»ùy¸/\10\1aËÂ*\987\86´l\ 1ßÃ\91B;\92\ 6öî"Gé\9bÜ[
-\ 6Irë³Â½¹üªÈ_¶,n\10ÝMÁ"´#\ 1\14\vûÛ\93\\93)\8b\8f\85˶Ù&Fd¬òM«£ì7Ö¦#CôÎ#(TÀÓ¤ãtÎÃ\vy\83\1eÊÓ\10/\17¾Ì\19$]\1eÉ\9ec\ 6vóÁ\ 6Ðyó\94\15Á·l|MÑHÁ\82Q÷\97\92\0Tîï$ð¦ÇÏYûíÚÒ®#ÔÕëKí}¥ °aZ\ 1þºLA\8b\98jó¼\98ã5Ã*ÇÐm\ 5\13Cª\99É\91Âk\17Uõ¸\9bèÐe¾[?úµOóßC?½(\e\82T¥\19âi¦\ÕÒcD¡]Õ#ì|¹\ f¹\98Ò`mè&\7fL
-év\15ã\9aj½\r=\92Ò~\8cÎA'Ý\94aÖ&§MÜ\10Rá\99qj\15\91Á´=\1aq=\ 2¬\97S×Ù¢#û\16×\8a)D\90\1c}»uq\88\95nKì4lÿ/Ýe·*ÙR\ 4áûý\14ý\ 2õÿs=w\82\82Ì#\fx!*\88 ¯o|\11«ÇQ\90ÃÙÓÙ«ºªVfdd\ 4 qï°m¦\0Á~DNT4õ\94\92A:\98'&Ñ\9aí\13Y8a7>O\ 5¶e\85=õ.\8avTým5kÝK\89\7f\8dÖë\9fÈ\8eJ+h\v1Ë@r\eÍ\0}è=Oü\81\99d\9côh3iN\95ë\81³^f"\87|C¼Ú\8f¯Ù<Qj¬Ó$U+O\15\ 1ð\95ë?i\ 5?¤ý\14\14o\ 4Ï*z\12vfÍÒæ¥[-=±\89q7JÜDýøÍViYZ\92#FÏ\8cV\82êªïCc+j»ç¶#1\ 3\8aw¡¥\8aEÀ¤µ\ fÑq¿ò´'\96là\97d¡øpöÍÚký2cVj\88uvÓ5Ñô}G&É]-k{ö\9d×÷íø?ñëö}§xD¢¸<K\8fZìºmHÉÀ\ 1\14Mu\ 5{â)\8e\19p¢\7f\88ôÝ\14±\r&íÑß\99ÁMÀ²iÿ¢\9eBü!KØb{ïc\8b²n\7f®Ø<@)\14 Ù¯ã&\a\f-Æ\86s\87 }x\86ÜF0o/\14³\8feòÜ~nH!®i0áX¿bpK+kóÆt·
-R\0û,\936é\17Z\96é|b9\91\ 1ÇÒ\1c\98éfr\ 6'¯¨\9d\14H\82Ìe\1e\83\réà©áÑq\rHVî\82\85 O\15\ËZ\ 4»ÖáÆ\90¼C¶r\8a\83nÌ\85&C±`\18\9eÏ?¾\bÛpØü¬YÒ
-¤\ 4ݲÈv\90M\86\ 5\84ÁL\9d\84q\8eV*:\1a,©\16»ë
-J8'/\v{!\9bú ØE¡R;-µ£ã\10\9f¼ò\81l<\ 3\1c0Ç\9b\aÂ\84\ 5Ï+tªÀ\1d(ïQ \18HPÊ\ 3\ 6e¶ØjÍ\8cgD¹\ f®ªU±bÌ:\\12/ëKÝø\95î\94¢n\14ÅÚò2ý<\96i\9e\8fL¹Û)\18#\91\85\9dân\7f¡\ 13¼v;Z\80B\95B2Â7¹ì\88°nÀ*Ñw[\f\ eqÌÒOPþJ§\15\93âS,\95\8a:QÑåÔ!\1a\10\ e´Á´r$±ZÛÍl\8a¹\8a¢Åå\87Eá¢>~¶l;\16Îi U\91\1e\8aÐ!\12\9aUâé³v=3F1\9d*ñ\86)XPî ê°)ÃÀA©I\ 3>\808\19« \9a³PKt¾ù]©ßì³\û\89b°ò\9f0m0@T\9e\ 69¹\11&ÅÝs¹û}ø¼ùMvA½*®ºË\9b\91ÐèM\reÔ´à£`å¥a·´{ñÓ®$\10E½CäDÓÛ¬6Òñsû)údÐ\88Þ\89T\8f\aEXL\8f9Å8$µ\9c®¤¨.§\1e} ¨\\17mÙ³\88e@\10±\ 6¸"X\82h´ÏX#j-kWâÃ\1d´öøÔ\82\ fTÊös\a\803Â)Äãv\b1\8a`b\86½\10MAÍf\92\ 2C[(¾ân\89\88\12+´\18ý\82\ 6ÊV\8e\83\95¸/{¿\8ah\18&\13EE\85è\88Æ\13\8bw²¶QÄkP)ÂfÙ5\8a-ºûô\8d®\88\92ªô$ÃiX\91ÕÇ\96l\95R:ö\15\97\12ÙwNuÈpAñÖæ\90ÖC\14f§\eå§-k¬\b\99mQá6@\88\18´Kã\1e{XÔ^eüÄø2¿yϬ^x\11a\0\bÿÜ\\ 2îz¹ÎÆ[(\8fc;\1cͦà\98\êo¢m§[Ü«ÑôôôsÕ\11qµbÍ\86ý\ 2S³;\9dÇf\12¤\ 2%¨ÜfKù\8eR\12\81Üø]<-B\ 1n\11ç*Ë´F³ÜU\9a\95¸îpBØx(\ 2-AË\9f°\97ç\87^·\aÝ\8cáÉB5ó\89àâ0ݲx\ 6ß\80\9b\7fls\97qt\ eãa¯\eNqS\88\vÝî¥2GF\1aä ÞD/'Ø4nì\ 3i\1eaJ\992ûMÔ·\a·^- \15sÍ\ f½u+>ZAíØOéc\13¾\16*\9f4®g\11Î\96\0\97èùK\8bû\86Ì\98ó9\f¸\98\94\99)þ\rɹöq\ 3\8aSx=UNh_\19.áu\82,\9cÍéfü)pU°~e»BÃJû\9d\11ü~êQÃ\99bxp'
-O¡Ï\8a1\9dÔ\85¡\ýT_S¥\9c\8aháeLðoì\9a³p 5åîÌOöu\16p¥4Ûûöl!\ e\9eNð0ÔfõXZ\89<µUÚév\81a1(iÿ{ÉA±8\12P\86Åþ\eGÕýÅdÀ5\12q 7] \8b6Í+\fgVwÓùû¦A± ×ì1=I\ 5òá\10\11Ër¼eÚ¥V²¼¬Gµ{#»\8d÷6Åg=:Â\93j>ÏÉ\13!£¡%\88ÆIòFxaûE¹K¦\91G|÷\1dÈå|.>ægP\10\95\96ñ\93W~ 8³VU¹y\9aÇs\e\80\93ý S¨=¾h\99O\83W\83ø¦\97\ f$\81Âð{*CxÝ´\8d\7f Å\93\10> \16Û`©#{Ãaù\ 2¤)¬\19a¾½\88¯o#\8f\86\ 6y'T¢¦¦\1c\95"ghAÌ¢Áëpæ.b¾ÒÚg\0¾å\98\Dm^C\8fÕ;\95lðgì¨\84!ù\9a¦\VèìU\9f³`\ 685\17µüª(¶ýa\85Üä\84&:\17ª\88P\1fÖLäÓ\92\93n;¹¸¶=OûM_üQ_\95\9cbç\8e\99ö¬û\}ÒþB@\19Ï\°~ì4\82\96ÓÑ\9a\1dkxµÒ±¬JÉ\9dR\b@i\9aåúøþºO}ªéÁ\ 3ÿ8XV©Á¶BjIj>\8d6\8a%í2¬ªQ[<w©ì\94\8cSXÆ|*_ÍjÅ|\83ê\81º¬J¨{\85¬Pz\ùÚoi\1aúÀË¥ ¼\99 A\80\91hF§R\8fæÞn\19زZíÓ\9c´\99V<k\91\96;â\9f`'¸éã\83á\95;øô9CT1H£Ë'\e]\8aÚhOìÀ=F\92bÀ¬6ZÛOÛd´YK´m^¡w¡¼?}ýñ«¼øïõ\8f\1f\7fûúû«:\90Ø(jý£³\9bõ©ÊüW/Ô_\r\17RQT68ÜLÎ ¨ÕùÛÛ\9c_=<æå1
-Yúc\91¦;íN¢\ 4d%¦¿ãM\8b\7fqyrü±f\11fDß5[£Òý\9c\1f,'¤X\97VspuÛÖÇ*\95âÏÓÇ^V5\1f"À\14ÒÓ\e{U\9d\88A\99Ïg&åèç\89À8\17n\ 5\19\ 1-iN\19õ\1dÍ\ 6Ö°yöKÅ\8e±Gws|æs¬Sã÷£f^M~âÎr=Y\85\eÐx*Ìm\ eæót0-OÊ\89(0+hÈ5ö¨\99w\f~t\ eÁÉveÚiÕË\16eæÙåvÀßÁuBnÏ\10×ö2f÷F\17\91\91\1eÉ4«×-O\0c»ÙÈ0=Ñ\86N\1d£³®\94ôz\8a÷í\9ag$\1f\eÏ[}ò°¼)1W\9cl@\9cÜj¹\88ýóú^7\a\80\f?2±\9c6\8c\15§0\80\9bÅy^\95s\19\85ÕJ\87þ\ f¥\94¶£3|ûâ\ exÓÒf\85\ 6\9cõ_zâ?\8d Z(WàE2á¢\8e\7fm\ 4\901\9aa\8f>Úæ\fó\bV×}`\8eÙ|Uýø\14¾¨ÖIg$\15ÕÊè\9eí«\e\95Í\9fu.z~y\95¡¿N3\1cÑpÍ[¡&\9a)ÑÙ*Ç\ 5b\ f<\84¨\8a.èÇ\88\1f;½2\9a£cÒà\auð\1cT)¹+½R½ËY\1cU;Ýw4¾X»\9eÏ\ 6\86¿+\ 6.Ô\ 2 ÀY\13ôj }\8e\8båo\87a±ý¹ûs\8dx¯¥\99D\10ÂËþ@I¥ilr4qZðÚ\fÑíÞ=\16"âfP\13säIF"ì\1aªe½À\11\19\19\8a\81\8ehÜ3\1f¦2\ e\10\eL\87D½Ô_àðÛoßËëÛw¿\ 5(\1cÂx}½¾\7fû\83°ð¯×xý^á\9fõÿï^ÿ\ 5\1d\\82ЫQ#®ê¿@G\7fÿòõ];\87\f\r\11eé\7fH¸^É\rØVóüÀ«\9fß\v\13\ 6Ü]tcfÈÔ\9d\18àäeïá\9c¢ ªý\84t\84yQ\1fÎdÉ4ï\bÓ.YÑF\9a)\96%në\9d>V·6Öí\ fï0Y·I\9e¶\16\91ÌzH&\vÇ£\ 4.\vi\18\ 5\f«#!\e£bU'5¼,9ÆÆ[í1#f\8e\ 2l\13ÊÇW<á\ 6Ý[\80º¹\96\14\94:ãF\ 2MÃV°&Ë+NË>²×\b]úFÀ\81À®1¥µ¨nûµ¥W\91ÜisY¸t:\8e\1cEt\95úq¬'\ e\16\95¢çkG\16©
-ú»ÍCÈ\9c\91½I*_\80f\fU\91~\|¯2²9ºAË«ÇÍç4Ý\ 13È]\16ýW\92¶\1aÊ \1dk[ß_u©\92\8f ÙÖ¸ÓM\8e{\19\99\ 13ù>n9+'\86\91\87V\8b"»½~(ÑJi\85\19í\8aô\ f¬ý³\aþ\8fLè¸\1dåD\99¤4?!
-%Ø7M\ 1Gµ<6VC\anÁ3\8e§Õ\94m >\11\91:\9eºYdI\7fh[éö\19AKNµ\1aë6ý\ 5î\ 3åêl\1d¯F¶vG\9fJØS"ÓU?*au·=t*ò©[\f\a\92¤\1c§Jý\85 a\ 5\rÍ&ÿ¦»L\92ì¸\91 º×)x\81¢\ 1\ 1\ 4\86óh«ÞöùÛ\9f\a~\91j\936ä\8f\ 22\13\88Á\87Ë@øT`Nx¶|£m³V\o\8faÚi\86\90ÓK\1c\e\92\11\96ÎmZ%]±Ão©ý;¬ü_\8a駡\9a#ê\91\8f¿¥x\14¯\ 4c]â\16Ù\8eÊ41ö\8c_#Ù-\14\94\89:¤^ù\ 3\8fy?\81ÓuÆ\8b_£\1aBûv[\8e,\81U]x\ 6ØÜ\84«ié\95ÎÙ1®l'\96][¸r<\9f*÷\8aïßC\84÷ÙEç8¿\97\13í\rn¬Á¬ßÎßç\8e*\8e{\arê\90·Þ\ 5\a\0WüF\9fhW\98a°m\83ÉDm^c\91:\ 5\89Ç\84û®Óé ^l\8cæ x{X§9º5 çø£´'åý~O/ð®·p\93Ýkã\0ÓH»>Þ¹j\9cðåN\81i\a½Ôª\1aàËÖ;)\e]Q¿Af!ÿ\8bþR´ÚþÞ7
-\18\907\1a\87ô90½\7fþ\91ÚáÓu};Ý\r\1cN\ 5Äà\ eot1\92~ z\ 2׸¸ZÇ\19Üëk~Pd\v8XBd2¨d\TU G:,«\18-"Ë\92ðËÊ¿øñ0^C¶û:Á±\11\1a¡Á é:\ 2¦o\aéϪµ\91\ fÃs\8b\91 \a\89lÙÝ\15\9b?AP\18\9c\88õ±üÔµpØÓ=°ì\8a¦½\ 6Ïé@Âûí§8\87@cyc3À~\87ØÕüYo?\97\ eGÓù\85Ç\ 5jçÊ\ 1\10£3:
-è(XÝ+}{\1f\8aÏû.\8dP\8d¹6c²¶_hÅ¢q\18^\1a\9bJG:\1d½Ñ\1eYYc:\99ª1*7ÓíbÜ£)5H³\12z^7¦Ït\1a½wü{w\ f\96\7f¯\ fê\9d¢1X\9d\126\93Ö#+ô+Å\oº<r\18C\80:jmþ\1a\9aþ4±¤Ú\0¹\91µútäú4\95\85&p|«\95x\11\ 3ïÁJ\a1ÝÂó\83þg0Þ)\ ePз\81\85wªR\97t¬ù ,Ľ@ß©&5Y\8aä\95\b\9dZärû\9bØ\8b&Z`O^¨
-ᨱ]¦ý(ª\8fYþϼ\8dâ\1dByÃ\8d%º½\8a\99ß\9e [S\0\9f HAÑÚ\1f³¢ÃöõÜÊà\1e£ôî\94\92\ 2å\v½\9fXßÏg¢Ó\15P\1dp^çé i¡>\e\8fÇ\ 4\7fº½fi H\ 3.v\9em|Ö´\97¤ù=\92\98¬\92å \ 5(Ëaò
-\98Í\9eFE\r\94\89\ 3e=Âv\867\98d\ 2\15^±\12\eñù\1e\95%*U=õ\153B>Ífõ>\ 5.ðP\ 6¯\1f$3Ú
- <µ~X]EIÍ[Óü¬DqÿPÂ{ñ¯\8a\11Ha+Ö\ 4]\86{\8b(Î;Á®X½£[r1Än\12À§\18Ó{+ïQ´\83\95 ýí6¬\9d~>f×D\81gý\1av\9cJyXr\ 5\93¾Ó\1f8û\1abîð'n\a/\f8ZÚyXgü\1cO<´kFn\99\95\85ò(ùÏ^õ\b¼tøзAô߬ªll\99]×yÚêd\86E\87¥ß\89rCYkË\r\91¥Y0Lõ'>¾Â\e¥Kì@êD
-\80\fì\15\83;¬im"ÕýÓÚaºUTµí\81\83\9ff/Ò\8af\bUkëoI¾\9aFh¹ù\10^á]i`¤èzbÀ c\0ÑO\9fpE¶õa\ 6$Å`ô)b»È¢Ò×{\16\vçfÐOòÖ-(:\167Ú@²\85\16k=ub<n8\93¥²hZÔ~\1cÄtz¦1ÙC§²56\8ckè\93\ã\ 3\8f@-\11\80²½êA\9fl颧 _ T§é¾5øáë í\8fa\19\9e».=N¢[+=yb\87Sõ\ 4\87Ó[Ú2M6Ë\93|r8¶I?®\ 1\9f\aD\ 6i\12:\13pÌ\ 2z\85QI]³üαXÀX\91p«\9c>G\81Y\8e\127Öë×G£¢\0[_O\13\1a¼MX\ 3S$\8eL\12Ú\96\81ü\ 4\85>=jß\ e\1eko£3\14á\17æ@\14Õ\87\97zÐøÏ,ªe\8e³ÐÂ8¹=\82æT!\97¼åÇ\84\9a\9b7\1eòt\fz:âé5ìî\83]\98Ù¼M\83\ 1B.>\9c¶l\817£Eèba ý2á\15\1cÕ\89É\9e\853çX³\18ç\8e²(\1cQKF\91yØ\ exß½ì³Ü\19f4 4\b\82ý&\93ÂC\9cÌ\a\ eá-\95Z\1d\ 2àyf§o¢\10Ï\0Q,ÖV|Ö\14ì\85Û\b·Yh\96¦\11 \95áH+\ 4ðG©RT¸Ø\8f¯½Ê©©©T»PÆ+ºúO\91¹HiH\1f\14ÃvðDCÍ¢'\99\93/fx\11\rU\1a¿të\ 4[5У[\aQd«:\8dñðt!¬U+gßv\95\8d´
-í\0¯°\80Q4{Azíì\ 5«G×\8cá¡\aq+ÁsxmYyQÁSNG`\vÍ\91Óa*Ü(Ý8»HséLpüfmH¹#\9aL = \LÜç\9dï1è#\8f¥Ã(Â&Ø\16ë´å\ 1\11+Ë\0\952D\ 4øË{¾ÉY¨\94\16\16:w!`Vs0tPþͧ+4\vIê4´:D)\e\ 6xðÌyÒ\8c\1eÒzI²5ydYØQ\88\1a²ò=\v\8b\12m\14\0aòÒ¨u\1cÌRGV\87³\ 4[wת0%â\8eϽîsp½q¤k:\8dÝ5}Ô\8f{\19o[Ã,\8bÖ~9\e\1aKùî0Éõ\9e\9c|\ 4\89§dkL\95¶n§Ùù}\8dÉhm.\9dzùö\8c¤\1d\1dê\13¢¹;-Ï\99,¥\86y\8eE9\80¡\1aça¼\85°»§:\85\ ea\a¡´\15w\ 3K?ý=\\r\9d³Q\87¤F¹@)¡*` Ú\83]¾zÁ|\99à\86'\ 2R]\8f5\8b\85\11\92%\8fz1\8c_ÌD\96\922-Ñä\v\8c8(Eº\8b$\0}_Ó}\87\8d£ÁÓ¥\f3Ò×2\83\87\9d¢V^\8d4|Þ\88#@ì3ÐÓì\1f\1eÑ\1e«dBz\8dë7\7f\ 3\1c¨ û\10Ƕ°\99â \91,¦\ 3\82\?J@x#B§\19s¿°g\96ÂMådÌg c+¹æ¶T\bX#¥-\933+;³´\9fºê\r²·Öó-jk©å3ï÷\83º\98)\82×¹2qK_'\10yt\8a\7f\14ZKðÚ¢Æ{Ì¿)-äB3P*\81Ó·ván'\8d³\8c\82\92J¹÷\ 6ô;\f£\99->`o_ÝEÛ82+"U\84Ïé\90Õ§<ætÀ\9dÔ^\14,Æ<¼ãø78\12\ 6:\ f\95K}Ó¢iв\e\9a^â3eÂM^R\b¯T4JëEÉ\87ÆÑo\19;ÝçºÎÍ\ 2a]\12Õ\9eæèNð¨^ê\1f\8b`ÏKkÍ2\b»Ä\91Ó_\1d\8fí\96\9fh´i=¦\9a\1c¼(,dÍ\r|\94\8e\18&\9eµl\11É\f\89SÝÆtúþ\14ÂÂò
-'"ç\94Ô\9e¾\ 1Ô\9fû³fx\ fa\8eâ\95¶Af\1e¤ºÏ~\ 3T²\16\7f\92µw°zë\b\r\v#r.þ2&Ãæͽ|[ÿ0±\8f°Í¯×{Ï0: \ 4=\8d[¯\18\14æ0¨0ëÐ\95Ô\15DII\89É öj1-{¾Ò\ eKÑ\14ü¶\16õ\ 3R7ûB\13C¢¸¸8 ¦åö\ 4\0\8c(\8aÏ4:tõÒØê\16GK%T\84\aúÒ\1fí¢\14\1fæk\9b\8b\88\0\ 54]'J5·¢Øï¸\87¸\97\9b\18\0ÙuHÁuq!Ewé\fOªè\97µé\ 1P4¢¼¤ Zï]&3e\9b|\1e7WÐ\88Á\81®GÓµßþ\92{aQC {Ô9\ 2ÔéD&©ÅVeÌ\83שsÿ$¬sô¬Vp\94î\8byM¹b¡S]Szûhn\88\ 4÷\10{qX5öQeQ§v+î>+0\vßQM²\9e\93\8cc' Üc!\8cwÇztdÍIù\ e\1c\9dý\1aÆ¡\19»¶Fr\e©\ 1»c\90p1ºå\aM÷$\9e=Xxe\96y\ 2\1cÀÆ\16æÝ\ 2Ê\ 3!ó¨\82åN\9du\15\rèA÷\9ce;\8bø\18ö__\bVkÆ\8fð¢\r B\7fì\1aëF!÷ê¿\9c"_óÆÖ\8dØ\13Moèä¼Vk(\fcð\8aå\0\ 4·\90¶6\9a\8f\9d¤\8aw Ü\870ºð¿\81zÌÒ§Jáø\1dÔgó£-L
-õ{\98!\81ÂÖÂ\w\94WH.\9fînV%(mãçJïêÃ\91ÿmÞ{\87ßØ\83ǯ»\95pøk¤V\81ùhg\16fòU\9b*\1fd@,\ 6e\14âû\9eo¨©YÝf\r\95ô\1fbròâ¿\88\81©\17k\8cöt\84ßcÆ\86UÜ°¥pl\8b5ϪÕøDÿeulï^ý¡@YÆk\848Í{Ë jêhÕÇ2@\98FêÚr\80\85\89$\9c\17(\0È\13÷W³\92\82x\8dqMãá÷\98YÛ$y\ 5]½ÌB"[M>ôßµT¥É¾J¶\ 1\93V\14´WÚ[(@\8aªÍÏÛ\88\98\ 3VË\0íÒÒ\ e¸\99\18ÊE'´~dü º\ 5oxp\983<Ê)\81ñ?¶Ë%ɲ\14\a¢óZEl Ê@\80\80õÔ´¬&½\7f³öãâEfY÷$3t/\8fËGr?ºç¾ð'Èús\99çû\e\ 6L¯åòÂW`8\97Úåïijµ\1a0nV\9dxE\9fÚõW\ 1Ã\82%~å³Ðß\93\8föù\81!ýý\19\86ÞèWá\ 4#\ag\95¿2£ó¡î*u\rPä4FP\12\7fǸ\ 6\jzWë X0)\9bG\90\f\9dÌ\86\ 13ÄÆþ¡Kv«\ 5hO3áÂf´vóa\91wãv\9a¹tºq2\1dúÄf\94Ð\K×Ö'iÿ´\914`Óî]'IeE\94bÒ±\ 1\ f\aÉ<§WçI`ê\ 6xÓ\13B\7fx@Ý\ 1\87¡ôhì"
-#v5¥å+Ê\95Úç\9c\ 5Ðá\8d:ooô\82á³?\14þý\13õð\9e¢¸e\96vA²¶\15¨\9f\vn\85*éTØûAMÔØó,iY×W¡É¬k®¥Î\91/[\87ñÃ\1a\1aV
-\f\8a\8dÿ\8aæ~%ðb\9dßß¿Çáz9£^ú\12noT\96\80øen \10\91oÆ?ó\97,\85~ä_ç®
-\\1e·«§iU¾ö\e\97\99\vl\95Õ´íhT>àè?\99à
-ýtOÛ?îäÎ)FUôxu>k\ 3íú£9«ÄWµUãVQÏÚ\15m'\9fckQU\99³øm\97C=5ºµ®HCY»\96\83^\99ѧ«¾Uå\81aUsÝ47Ò\11@\bÎ¥\9dk\8f\1az§\13§{Ö4\95gó}\9e\83ÑäZ\9fã?î2½µ\13\18Ä#ê}l$÷sª¨tÁFø.»\9b\12\ e\1a@5#zÆ\bw\8eÓ\94r´VØÄW~,0ýí<\11\8bq³Ò\1e\89Éã\8du\8f»¦A\19\0e=P\1fi¦\11\89¡\9aâF*±ÄUH£ùv¡Á6\91\97äã/\9b7Yíã±\90íòæc¹Öða\9b\8a\8e\9f´Ü5\90L=f¸«ûÄ\°bH\94&FMÀk\1d\9béóV_\8auU_d\9fü\97«þ/GlëÔàj9\96_\18\116}3Á49\8cã;\9cn¨NZ$ÒV\9f\8dKÃê\9a?\86\93\82\a9,9M×^ô¥\8aê\b(\f®{XÈäíÛ
-Æ^¥\85\9b\ 3\bU$ÿÚ£×3ܨ\8e\ e\9f¿æ+o{\12ìÂ\ 4µr0è\81Tßu/D0Ì
-\91>\18 \86©>ÝÜ\86j)'¡6\16¢h ªÕX¥»Áe#S8§\ 18\18zm=àð®¦+\b¶\91(ÐlϪ\9dÆ\0èú\1a\90ÑÐ\8d/§µÂ«â\14èãP §0t\16Q×\99\8fÈc+óýN\ 3Õg\9c ¥àOÉ\82jî<È\ f nhã]ÇÖ9D\12\ 3nOw³Çõ^ûVV*»*;2YT\\1e!;ò¨=\8dãÍ<1\ 3ÏÝÃ0¼\8dÎ\95\b£ÜѸ\89\87Òê\1a-i\9dt«<ïF)éP±£í±¿\ 6 ã¢@\15ºò\19·,Bs\1aØ\8bÉWYò§öíeÅ1\93®×¤\10þIw\122nºAÑ~¬ÕÃÚâ.\96{Ù&rë\e\87ùIgtgTÖ\97f\9aR\9bÇ|°N1¢¡\968S\12¬\9eÿ\97Õ£Ñ\ 6H¨tS(àO\8dõbþ\92S-½\95M$\a²\90Cz²\a\16×\ 6\eÍ,q\7f\8cz¹6\91â^\Q6\r«¤uN\ 1$\98Z\9dûÉpÓ(\15Ã\1dÖË¢¸Õ@¢f«õ_\14@\82\95pNÊ\92Ü\ 6%Òyó>lÑUöuÏ\91*0%P¹\a¢\86ø-¾ÜU§,%\9d¤Ç÷©µM~Ô·\83u
-}:]í6éJ\1eWi¥+\87\13\ 2ÿ{åç%¼6Å,\87T\8eë¢ôÉ°ú§\1c¢\rA[Ï|\99´ô
-iÚ\1cÆtªt\\14*'¹gî\ 2\0·5m\17æfü;\aÒIp¦y&´z¢õ¨iÕس²¦\88âCf\8fñ{¾4ÿýõ\9f¿þù]\9e\87D «ÄB\a=1áOî0\99ÔA:UD\8aÿå¦À\ fàÜ¿þЯeZz¦¢X.q0æ"Wã2l7·©rÍé\rÍÐ\81éDHe1Ò>d\1d]k\96@\9d\10=\98¾(°âò¤O·´\88fúçÎ\1déÍRÎ1T¢\82@êÜ¥\17ýZ˲cñWxÓ\8aܨ\ 4\92\1a\ 5S.ëï³Ñûm \ eR˺Üi\ 1,¨\92ZÈm^·R\8aê\82\14_NezÎÕÜ.èm\13wê\1dÒ¡zt³8Y©ê´ûÂ'{# a'ÇÌâ§G\ eJËÒO\85E}²£õZǶ°_\97®õZ\fw]\17ú;íM¡\7f <®oDghIIáÑì\r<\85j%/'\19+P`\85º¼Kê\93\83\ 4Ié\1fÙî\e¤Êo¶\93kï\10Æ\91\ 5H<³%\1f½ª\82ý®\91Å1\1d\v\ ej~\99G\16\ 1½¤\82<Ït6] \88÷\13ìëÝFzBKb¤ËQ_Ñõ\ 4\95·\1fÔ\ 4Ef§²/*Ê*èþõ\82ãÑ\ 4\17Âá\8c4°Û¤µ\1d]\9bll\1cû÷Á¿¥@\95\9a®.\92÷p¸@·n\ 6I'\93·§@c{3
-×rO¹üî`Cí8\11®Lvº\1fª\816/ZF\82ù5LÙõ7\85\16o\98\vêMçj\1cùù¬\82ØeÈ©»éα\ eÜ\rh\btXN\1c\82^µeX±X u8Ù°ù\ eãó1Z7·\ e*`e©²&F9â5(Z¯\96k¿ÇGÌBI÷\9a£Æb®ÕÃ\8er\8alöø´^AλI$\95ôjµüx\85\8f{¢£ºQ\17~³JÏVj\80W÷Óâsñ\ 4-k\93\f\89 _¯QÎ@\1fÑA\15§£Áá\9b\e5Æ\ e·.d\80©©\9fO\18¥+@\92G#%ú±»\ 5ÆiñÇÙÌW\8dåBª\1e¶\84¥YFÉ\19 }«>«ßÓ\103\9dßì&\0bÖö½=ëH_\eîä;\1dÛÀ\83\9f³ò¢çw«\14Ã=ÏöަqÉñf7V1*jÂ\ eÕGøj\15»Áâl\91\82î\91º\v\ 5T
-mÅÊWæ£:\vÖ*- \1f|Ó~F¹\1fcÝ\8e\ e\92$>Í\85v\12ç\9d\8fàJÂ;í¬§öu,-ßp«rGRØ\ 2ð\99v2édb¯äÒbêÕíÖßÊ \88}iî\17¥S¢õ¤ªê×Ç\ e¬\aÍÃuм§çä}õª ü¦¿}íJëº\8ayÐ\91p\9d\19.
-Åë´\96D\86F¶d^£\97 Àí\8e\ 6ë¸\r ô±+\8d©\8aÆàôÖùÄ[
-ªï^8AùÔ\94OZäzË\b_JV?É\83C\8b2Ü*²jV\97Â1P¢\83ºF«õ§÷(Ó\95Ù'\0Ã\81jµì\91óÝ>¡bÓ<N\1a\1eÐÃæ¥\rs¸\95_
-×®ó\ 5QÄctq4\80Ç\1dØî\16ÄoüH;Ù¨\14à\vb3zø\1e\1cÃv\14\ e¯E4Úþ^O<ºWªáèêôl@\ 5¿\86o\91,%\92¾eâÓNêòõ\80ãã\ 1|í°\92\ 3\98W8\90 \85È\8f\87×m/\16§¨¯:¦¦\84SØò83î\5Ú¬ä\a~MÙ\12\rÏm\81rØëXp7g\9aÖ ð\8cÊ3N\9bCë\8eÖgt÷lÃ~ CN³\9b8B\87°Ñ¦\14Íø\86>ùÐT*
-\eå¬l\99ª9î7ïK\1eãh²`\924UÙ\8a¬F(\9d\92Ua\83j\r:ç%Kå0·½ü\eEÀy./WÑv¿¦D«\1aïÛIØLÑKé::(Ît\1ek$\1c\93Eí¤3ë\94îoø8
-üõÊ\90¤I×1uïðòf÷\ 2\9aN9Oi\8c¶fmбA%¼\85J¢r+Íó\9bö«Û{:¥»qEø\1ej¡ì\85:Ê\13\bp©\9cd\ fÑí@*F- >ìÕuê\12\f_Ú¤þ\9e\1e\98ãTÕÂóÊNe\8a\ e@7K]hf;õ\8c\8aô¡n«*\17&\9fàþÜß^ßí0Y\ e\e®Cà2µ\ 5jM\82]¦\95Àç'Ðv\96× \87\9aäh.ÿj«ÞOú>°>\17èmnl´\94¦¡W«\9cl\1c\92ÙoÅi\18¹:]Uºb½\92~ó£mµÕ\ezNÛ\1c\ 3\95aËV\8b¹^ÕËø²\14\r¦7ó\90\99ÜÐÕ\99Æ\97ïKýÔµ\¾eJ;%ZººF.\1dÕ¨~¡\93Ñ\81\1eú\1f\bM\89z$\ 1d\94\95Pã º¤ÉÔÃ\eFCm\98OÃ;4\10\83\86ö\8fû ÃJ¡\8f±\ 1:\14¦Ôî«'J÷kú\Z\94þ\84\88ÕWÜÊ"\8ehZZh\ e\87÷\93¥Pi¬ºÇ<ö\8d¹LÎlÛÔÒü©Ð
- 9U\9a+².^\eËEE\1d\9dö\8e¾e\95pHÐ/\v¬\12îÓ\8b\b\8bK÷º}¥\98Èwñ¦\8eîÜ2%iä¡ôö\8bÞîêAÑÈß\7fü\8cot\9c:\9a³*
-\15·¦Þ£Væ_ë\ 2ábj^ç ub8\8aÐWÝü ü\947\995öLÛüT\1d\1d\1d\8eª\92Ã\91\8d裡ÿÄ\1caE8ÍȪ3\9f*\f]²>¢OëÑÙ6\14¾û_\9aËä6b\18\8a¡wW1\r\ 4\90¿í\1cä8\87Ô\10 ý\97\10>ÒÁ\1c\ 6ò¦¯/\8a\8b\81¡3& \97ñ¨ê\84Xíìv¥ôW\80\vzµ\9a6\9fü¸ðìXä1½ÂZÜYNv\v\8b\8f±Öv,\84Ôv\}]êXÇ \8e\99¶\15ü\98ïQMá\80µP=7y×¹H\ f\967\11\8eîÜ[˨Vñ\1a\107\84z\ e¬p¡þ\92\16EU\82U3Úçø?Ù\92þµC\ 1¨\95\86ÛB°\99j\r3\0xÕ¼\ 68t×\89\v\emËêÔ\12Áj²î\13J\85\b-º=.Ò"\9bÍîeò\19\8f\8f\883DµZT\v¯¯)ª"\90}XÌmØÅ\ 3<e\12
-0\97\85x\92µ"î·\1a®¡\9d\9b\12îi\93Ã\ 5tL\17P\ 3\ro\1cQQ»ßn¹I\²öwj)9=\ 4ód¦j&\b1èí:÷cì\a/?Î\0\ 1í\86\92m\1f
-©OT
-oUñq½bZNAI´>jz¸ÔÛ\exçí=Ø\12\99λâ+\16ø{¬¶(\95Y®d³\ fB\ 2\85Wx\94&ßÚÞ\8a¦sXǶX\-§uL§\17a!n\rÅ ½^±$\84\ 3S·}\80\95_Ç¥µìßt¼Ú§-xIÙÈ 3®ÞI§0\14øÜëEà¸,¸Ú\8f¦ßÏñ{|\1f_ïÏ\97þþ\ 4\18\0oÃ)%\rendstream\rendobj\r74 0 obj\r<</CS 80 0 R/I false/K false/S/Transparency>>\rendobj\r79 0 obj\r<</BitsPerComponent 8/ColorSpace 81 0 R/Filter[/ASCII85Decode/FlateDecode]/Height 11/Length 126/Width 50>>stream\r
-8;WRlJITC;#R#XL+0EG&L<efZXAb7g5m7lc?m,A=&BTW8-3Qp'kTtbH+aZ1_2sdP+
-"NKnO)K=pS&Y%ig&JDD<E'SG#kMEkR+;TD!G!l=kjT/68O`U'V*<6mH7/d~>\rendstream\rendobj\r81 0 obj\r[/Indexed/DeviceRGB 255 82 0 R]\rendobj\r82 0 obj\r<</Filter[/ASCII85Decode/FlateDecode]/Length 428>>stream\r
-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\~>\rendstream\rendobj\r78 0 obj\r<</AntiAlias false/ColorSpace 76 0 R/Coords[0.0 0.0 1.0 0.0]/Domain[0.0 1.0]/Extend[true true]/Function 83 0 R/ShadingType 2>>\rendobj\r76 0 obj\r[/ICCBased 84 0 R]\rendobj\r83 0 obj\r<</Bounds[]/Domain[0.0 1.0]/Encode[0.0 1.0]/FunctionType 3/Functions[85 0 R]>>\rendobj\r85 0 obj\r<</C0[0.607843 0.607843 0.603922]/C1[0.290196 0.290196 0.286275]/Domain[0.0 1.0]/FunctionType 2/N 2.14553>>\rendobj\r84 0 obj\r<</Filter/FlateDecode/Length 2574/N 3>>stream\r
-H\89\9c\96yTSw\16Ç\7foÉ\9e\90\95°Ãc\r[\80°\ 6\905la\91\1d\ 4Q\bI\b\ 1\12BHØ\ 5AD\ 5\14ED\84ª\952ÖmtFOE\9d.®c\ eÖ}êÒ\ 3õ0êè8´\16×\8e\9d\178G\9dNg¦Óï\1fï÷9÷wïïÝß½÷\9dó\0 '¥ªµÕ0\v\0\8dÖ ÏJ\8cÅ\16\15\14b¤ \0\ 3
- \ 2\11\02y.-;!\aà\92ÆK°ZÜ ü\8b\9e^\a\90i½"LÊÀ0ðÿ\89-×é\r\0@\198\a(\94µr\9c;q®ª7èLö\19\9cy¥\95&\86Q\13ëñ\ 4q¶4±j\9e½ç|æ9ÚÄ
-\8dV\81³)g\9dB£0ñi\9cW×\19\958#©8wÕ©\95õ8_Å٥ʨQãüÜ\14«QÊj\ 1@é&»A)/ÇÙ\ fgº>'K\82ó\ 2\0ÈtÕ;\ú\ e\e\94\r\ 6Ó¥$ÕºF½ZUnÀÜå\1e\98(4T\8c%)ë«\94\ 6\830C&¯\94é\15\98¤Z£\93i\e\ 1\98¿ó\9c8¦Úbx\91\83E¡ÁÁB\7f\1fÑ;\85ú¯\9b¿P¦ÞÎÓ\93̹\9eAü\vom?çW=
-\80x\16¯Íú·¶Ò-\0\8c¯\ 4Àòæ[\9bËû\00ñ¾\1d¾øÎ}ø¦y)7\18ta¾¾õõõ>j¥ÜÇTÐ7ú\9f\ e¿@ï¼ÏÇtÜ\9bò`qÊ2\99±Ê\80\99ê&¯®ª6ê±Z\9dL®Ä\84?\1dâ_\1døóyxg)Ë\94z¥\16\8fÈçLUáíÖ*Ô\ 6uµ\16SkÿS\13\7feØO4?׸¸c¯\ 1¯Ø\a°.ò\0ò·\v\0åÒ\0R´\rß\81Þô-\95\92\a2ð5ßáÞüÜÏ ú÷Sá>Ó£V\9a\8b\93då`r£¾n~ÏôY\ 2\ 2 \ 2&à\ 1+`\ f\9c\81;\10\ 2\7f\10\ 2ÂA4\88\aÉ \1dä\80\ 2°\14ÈA9Ð\0=¨\a- \1dt\81\1e°\1el\ 2Ã`;\18\ 3»Á~p\10\8c\83\8fÁ ðGp\1e| ®\81[`\12L\83\87`\ 6<\ 5¯ \b"A\f\88\vYA\ e\90+ä\ 5ùCb(\12\8a\87R¡,¨\0*\81T\90\162B-Ð
-¨\aê\87\86¡\1dÐnè÷ÐQè\ 4t\ eº\ 4}\ 5MA\ f ï \970\ 2Óa\1el\a»Á¾°\18\8e\81Sà\1cx ¬\82kà&¸\13^\a\ fÁ£ð>ø0|\ 2>\ f_\83'á\87ð,\ 2\10\1aÂG\1c\11!"F$H:R\88\94!z¤\15éF\ 6\91Qd?r\f9\8b\A&\91GÈ\v\94\88rQ\f\15¢áh\12\9a\8bÊÑ\1a´\15íE\87Ñ]èaô4z\ 5\9dBgÐ×\ 4\ 6Á\96àE\b#H \8b\b*B=¡\8b0HØIø\88p\86p\8d0MxJ$\12ùD\ 11\84\98D, V\10\9b\89½ÄÄ\ 3ÄãÄKÄ»ÄY\12\89dEò"E\90ÒI2\92\81ÔEÚBÚGú\8ct\994MzN¦\91\1dÈþä\ 4r!YKî \ f\92÷\90?%_&ß#¿¢°(®\940J:EAi¤ôQÆ(Ç(\17)Ó\94WT6U@\8d æP+¨íÔ!ê~ê\19êmê\13\1a\8dæD\v¥eÒÔ´å´!Úïh\9fÓ¦h/è\1cº']B/¢\eéëè\1fÒ\8fÓ¿¢?a0\18n\8chF!ÃÀXÇØÍ8Åø\9añÜ\8ckæc&5S\98µ\99\8d\98\1d6»lö\98Iaº2c\98K\99MÌAæ!æEæ#\16\85åÆ\92°d¬VÖ\bë(ë\ 6k\96Íe\8bØél\r»\97½\87}\8e}\9fCâ¸qâ9
-N'ç\ 3Î)Î].ÂuæJ¸rî
-î\18÷\fw\9aGä xR^\ 5¯\87÷[Þ\ 4oÆ\9cc\1eh\9egÞ`>bþ\89ù$\1fá»ñ¥ü*~\1fÿ ÿ:ÿ¥\85\9dE\8c\85Òb\8dÅ~\8bË\16Ï,m,£-\95\96Ý\96\a,¯Y¾´Â¬â*6X\8d[ݱF=3ë·Y\9f±~dó ·\91ÛtÛ\1c´¹i\vÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî\94Ý#{¾}´}\85ý\80ý§ö\ f\1c¸\ e\91\ ej\87\ 1\87Ï\1cþ\8a\99c1X\156\84\9dÆf\1cm\1d\93\1c\8d\8e;\1c'\1c_9 \9cr\9d:\9c\ e8Ýq¦:\8b\9dË\9c\a\9cO:ϸ8¸¤¹´¸ìu¹éJq\15»\96»nv=ëúÌMà\96ï¶ÊmÜí¾ÀR \154 ö
-n»3Ü£ÜkÜGݯz\10=Ä\1e\95\1e[=¾ô\84=\83<Ë=G</zÁ^Á^j¯^\97¼ Þ¡ÞZïQï\eBº0FX'Ü+\9còáû¤útø\8cû<öuñ-ôÝà{Ö÷µ_\90_\95ß\98ß-\11G\94,ê\10\1d\13}çïé/÷\1fñ¿\1aÀ\bH\bh\v8\12ðm W 2p[à\9f\83¸AiA«\82N\ 6ý#8$X\1f¼?øA\88KHIÈ{!7Ä<q\86¸Wüy(!46´-ôãÐ\17aÁa\86°\83a\7f\ f\17\86W\86ï ¿¿@°@¹`lÁÝ\b§\bYÄ\8e\88ÉH,²$òýÈÉ(Ç(YÔhÔ7ÑÎÑ\8aè\9dÑ÷b<b*böÅ<\8eõ\8bÕÇ~\14ûL\12&Y&9\1e\87Ä%ÆuÇMÄsâsã\87ã¿NpJP%ìM\98I\fJlN<\9eDHJIÚ\90tCj'\95KwKg\92C\92\97%\9fN¡§d§\f§|\93ê\99ªO=\96\ 6§%§mL»½Ðu¡váx:H\97¦oL¿\93!ȨÉøC&13#s$ó/Y¢¬\96¬³ÙÜìâì=ÙOsbsúrnåºç\1asOæ1ó\8aòvç=Ë\8fËïÏ\9f\ä»hÙ¢ó\ 5Ö\ 5ê\82#\85¤Â¼Â\9d\85³\8bã\17oZ<]\14TÔUt}\89`IÃ\92sK\97V-ý¤\98Y,+>TB(É/ÙSò\83,]6*\9b-\95\96¾W:#\97È7Ë\1f*¢\15\ 3\8a\aÊ\be¿ò^YDY\7fÙ}U\84j£êAyTù`ù#µD=¬þ¶"©b{ųÊôÊ\ f+\7f¬Ê¯: !kJ4Gµ\1cm¥ötµ}uCõ%\9d\97®K7Y\13V³©fF\9f¢ßY\vÕ.©=bàá?S\17\8cîÆ\95Æ©ºÈº\91ºçõyõ\87\1aØ\rÚ\86\v\8d\9e\8dk\1aï5%4ý¦\19m\967\9flqlio\99Z\16³lG+ÔZÚz²Í¹³mzyâò]íÔöÊö?uøuôw|¿"\7fűN»Îå\9dwW&®ÜÛe֥ﺱ*|ÕöÕèjõê\895\ 1k¶¬yÝèþ¢Ç¯g°ç\87^yï\17kEk\87Öþ¸®lÝD_p߶õÄõÚõ×7DmØÕÏîoê¿»1mãá\ 1l {àûMÅ\9bÎ\r\ 6\ enßLÝlÜ<9\94úO\0¤\ 1[þ\98¸\99$\99\90\99ü\9ah\9aÕ\9bB\9b¯\9c\1c\9c\89\9c÷\9dd\9dÒ\9e@\9e®\9f\1d\9f\8b\9fú i Ø¡G¡¶¢&¢\96£\ 6£v£æ¤V¤Ç¥8¥©¦\1a¦\8b¦ý§n§à¨R¨Ä©7©©ª\1cª\8f«\ 2«u«é¬\¬ÐD¸®-®¡¯\16¯\8b°\0°u°ê±`±Ö²K²Â³8³®´%´\9cµ\13µ\8a¶\ 1¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼\9b½\15½\8f¾
-¾\84¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ\80Ü\ 5Ü\8aÝ\10Ý\96Þ\1cÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäüå\84æ\ræ\96ç\1fç©è2è¼éFéÐê[êåëpëûì\86í\11í\9cî(î´ï@ïÌðXðåñrñÿò\8có\19ó§ô4ôÂõPõÞömöû÷\8aø\19ø¨ù8ùÇúWúçûwü\aü\98ý)ýºþKþÜÿmÿÿ\ 2\f\0÷\84óû\rendstream\rendobj\r71 0 obj\r<</Intent 86 0 R/Name(Layer 1)/Type/OCG/Usage 87 0 R>>\rendobj\r86 0 obj\r[/View/Design]\rendobj\r87 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r77 0 obj\r<</AIS false/BM/Normal/CA 1.0/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 1.0/op false>>\rendobj\r75 0 obj\r<</LastModified(D:20141014022555+02'00')/Private 88 0 R>>\rendobj\r88 0 obj\r<</AIMetaData 89 0 R/AIPrivateData1 90 0 R/AIPrivateData2 91 0 R/AIPrivateData3 92 0 R/AIPrivateData4 93 0 R/ContainerVersion 11/CreatorVersion 16/NumBlock 4/RoundtripStreamType 1/RoundtripVersion 16>>\rendobj\r89 0 obj\r<</Length 1049>>stream\r
-%!PS-Adobe-3.0 \r%%Creator: Adobe Illustrator(R) 16.0\r%%AI8_CreatorVersion: 16.0.3\r%%For: (H) ()\r%%Title: (quitterclassiclogo.ai)\r%%CreationDate: 2014-10-14 02:25\r%%Canvassize: 16383\r%%BoundingBox: -393 -930 888 -10\r%%HiResBoundingBox: -392.4155 -929.2207 887.6504 -10.0327\r%%DocumentProcessColors: Cyan Magenta Yellow Black\r%%DocumentFiles:/Users/h/Desktop/Skarmavbild 2014-10-13 kl. 22.11.55.png\r%AI5_FileFormat 12.0\r%AI12_BuildNumber: 690\r%AI3_ColorUsage: Color\r%AI7_ImageSettings: 0\r%%RGBProcessColor: 0 0 0 ([Registration])\r%AI3_Cropmarks: -37 -91.5 363 -3.5\r%AI3_TemplateBox: 480.5 -280.5 480.5 -280.5\r%AI3_TileBox: -233 -353.5 559 258.5\r%AI3_DocumentPreview: None\r%AI5_ArtSize: 14400 14400\r%AI5_RulerUnits: 6\r%AI9_ColorModel: 1\r%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0\r%AI5_TargetResolution: 800\r%AI5_NumLayers: 1\r%AI9_OpenToView: -285.6665 193.6675 1.5 1229 654 18 0 0 6 133 0 0 0 1 1 0 1 1 0 1\r%AI5_OpenViewLayers: 7\r%%PageOrigin:80 -580\r%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9\r%AI9_Flatten: 1\r%AI12_CMSettings: 00.MS\r%%EndComments\r\rendstream\rendobj\r90 0 obj\r<</Length 16173>>stream\r
-%%BoundingBox: -393 -930 888 -10\r%%HiResBoundingBox: -392.4155 -929.2207 887.6504 -10.0327\r%AI7_Thumbnail: 128 92 8\r%%BeginData: 16018 Hex Bytes\r%0000330000660000990000CC0033000033330033660033990033CC0033FF\r%0066000066330066660066990066CC0066FF009900009933009966009999\r%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66\r%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333\r%3333663333993333CC3333FF3366003366333366663366993366CC3366FF\r%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99\r%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033\r%6600666600996600CC6600FF6633006633336633666633996633CC6633FF\r%6666006666336666666666996666CC6666FF669900669933669966669999\r%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33\r%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF\r%9933009933339933669933999933CC9933FF996600996633996666996699\r%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33\r%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF\r%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399\r%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933\r%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF\r%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC\r%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699\r%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33\r%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100\r%000011111111220000002200000022222222440000004400000044444444\r%550000005500000055555555770000007700000077777777880000008800\r%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB\r%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF\r%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF\r%524C45FD2AFFA8A8FFA8FD0AFFA852A8FD69FFA87D7DA8A87DFD04527D7D\r%7DA8527DFFFF2E592F5959597DFD67FF7D527D527D527D527D527D525252\r%7CA8FF7D2E5A6161592E59FD67FF7D52527D52FD057D5252527D7DFFA877\r%787D59597D8484FD68FFA87DFD0BFFA8524C78C59CA27D7DFD76FFA84C77\r%9C9C9CC5717252FD76FFA82777A271BF4C52A24CA8FD76FFA8FFAEA87DA2\r%27A8FD7FFFA8FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFD62FF\r%A9FFFFFFA8FFFFFFA9FFFFFFA8FFFFFFA9FFFFFFA9FFFFFFA8FFFFFFA9FF\r%FFFFA8FFFFFFA9FFFFFFA9FFFFFFA8FFFFFFA9FFFFFFA8FFFFFFA9FFFFFF\r%A9FFFFFFA8FFFFFFA9FFFFFFA8FFFFFFA9FFFFFFA9FFFFFFA8FFFFFFA9FF\r%FFFFA8FFFFFFA9FFFFFFA9FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFF\r%A8FFFFFFA8FFFFFFFD7E52A87DF827F8272727F827F82705270527F827F8\r%27F827F827F827F827F827F827F827F827F827F827F827F827F827F827F8\r%27F827F827F827F827F827F827F827F827F827F827F827F827F827F827F8\r%27F827F827F827F8FD0527F827F82727272027F827F827F827F8A8A8A87D\r%A87DA87DA87DA87DA87DA87DA87D7D7D277D7D272752275227522727F82F\r%5A2E05272627F8272627F8272627F8272627F8272627F8272627F8272627\r%F8272627F8272627F82726FD052726272727F8272627F8272627F8272627\r%F8272627F8272627F8272627277D527D527D2727527D7C52F827527D5252\r%2727A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A826A87DF827F827F8\r%27F82721777128F8F8F827F8F8F827F8F8F827F8F8F827F8F8F827F8F8F8\r%27F8F8F827F8F8F827F8F8F827F8F8F827F826F827F8F8F827F8F8F827F8\r%F8F827F8F8F827F8F8F827F8F8F827F8F8F827F8F8F827F827F827F827F8\r%27F8F8F827F827F827F82727522752275227522752275227522752275227\r%F87D7DA87DA87DA87DA84C779C7771527DA87DA87DA87DA87DA87DA87DA8\r%7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8\r%7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8\r%7DA87DA87DA87DA87DA87DA87DA87DA87DA87D847D7D7D847D7D7D847D7D\r%7D847D7D7D847D7D7DFF7DFFFFA9FD04FFA87EA2527DA8FFAFFFFFFFA9FF\r%FFFFA9FFFFFFA9FFFFFFA9FD39FF7D7D537D527D537E7EFD04A8FFA8FFFF\r%FFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA9FFFFFFA87DFFAFFFA8FFAFFD\r%05FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFA9FD39FFA85306527676\r%F8290753A8A953A8A87DA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFF\r%A8FFFFFF7DA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA87D7DFD33FFA8FF28284CA1A026062906A8A8A9A8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8FFFFFFA8FF\r%FFFFA8FFFFFFA8FFFFFFA8FFFFFFA9FFFFFFA8FFFFFFA8FD05FFA8A8FFFF\r%A8FFA8FFFFFFA8FFFFFFA8FD27FFA85328766FA04B2F07297DFFAFFFFFFF\r%A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8A8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8AFA8FFA8FFA8FFA8FFA8FFA8FFA8A87D\r%FFFFFFA9FFA8FFA8FFA8FFFFFFA8FD25FFA8FF2828759A755228290159CF\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8FF\r%A8FFAFFFA8FFAFFFA8FFAFFFA8FFFFFF7EFD04A8FFAFFFA8FFAFFFA8FD37\r%FFA8FFA953067676762776522F53FFFFFFA8FFAFFFA8FFAFFFA8FFAFFFA8\r%FFAFFFA8FFAFFFA8FFAFFFA8FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFFA8FFA9FFA8FFFFFFA8FFA9FF\r%A8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FF\r%A9FFA8FFA9FFA8FFA9FFA8FF2800277D4B517C4B2659A8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8FFA8FFFFFFA8FFFF\r%FFA8FFFFFFA8FFFFFFA8A8A8AFA8FFFFFFA8FFFFFFA8FFFFFFA9FFAFFFA9\r%FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFF\r%FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFAF52F827212652FF27F853\r%FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA9FFA8\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A87DA8A8A87DFFA8FFA8FFA8FF\r%FD04A87EFD06A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF27F8F827F87D\r%7C76267CA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8A8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFFFFFA8FFFFFFA8FFAF\r%FFA8FFFFFFA8A9A8A8A8A9FD04A8A9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FF\r%A9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFAFFF\r%A852F8272776A1CAA17C7DFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FF\r%AFFFA8FFAFFFA8FFFFFFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A87D\r%A87DA87DA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8FFFFFFA8FFFFFFA8FFFFFF\r%A8FFFFFFA8FFA8FFA8FFFFFFA9FFFFFFA8FD3BFFFD06A87DFD07A8AFFFA8\r%FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFAFFFA8A8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8A87EFD06A8FFA8FFA8FFA8FF5377762953FF84\r%AFA8FFA8A984AFA8AF84AFA8FD23FFA8FFA8A9A8A8A8A9A8A8A8A9A8A8A8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFA8FFA8FF\r%AFFFA8FFAFFFA8FFAFFFA8FFAFFFFD04A87DA8A8FFA8FFAFFFA8FFFF7D51\r%A0282FA98584A984A9848484A9A8A97EA9FD22FFA8FFAFFFA8FFFFFFA8FF\r%FFFFA8FFFFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFF\r%A8FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FF534B755228FD05FFA8FD2BFFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8FF\r%A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFFD09A8FFFFFFA8FFFF7DF852524B\r%FFFFA8FFA8FFA8FFA8FFFFFFA8FFA8FD21FFA9FFAFFD07FFA8FD0BFFA9FF\r%A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFA8A8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF52274BA77CFD09FFA8\r%FD27FFA8FFA8FFA8FFA8FFFD077DFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8A8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFA8A8\r%A8FFA8FFA8FFAFFFA8FFA9FD39FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFA9FFA8A8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8A9FD07A8FFA8FFA8FFA8FFA8A87DA87DFD31\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FF\r%FFFFA9FD07FFA8FD05FFA2A8A8A8FD32FFA8FFFFFFA8FFFFFFA8FFFFFFA8\r%FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8A8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FD\r%37FFA8FFFD04A87EFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFFFA8FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFFFFF\r%A8FFA8FFA8FFAFFFA8FFAFFFA8FD2DFFCAFD09FFA8FFFFFFA8FFA8A9A8FF\r%AFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFF\r%A8FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFD05A8A9A8FFA8FFA8FFA8\r%FFA8FD2DFFCFFD05FFA8FFFFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8FFA8FFFFFF\r%A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA9FFFFFFA8FFFFFFA8FD37FFA9FF\r%FFFFA8FFFFFFA8FFA8FFA8FFA8FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFF\r%A8FFFFFFA8FFFFFFA8FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A87D\r%A884A87DFFA8FFA8FFA8FFA8FF84A9A8FFA8FFA8FFFFFFA8FFFFFFA8FFFF\r%FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8\r%FFFFFFA8FFFFFFA8FFA8FFA8FFA8FFA8A8FD057DA8A8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8FFAFFFA8FFAFFFA8FFAFFFA8FF\r%AFFFA8FFFD07A8FFAFFFA8FFAFFFFFA9A9FFA8FFA8FFA8FD2FFFA8FFAFFF\r%A8FFAFFFA8A8FD047DA8FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAF\r%FFA8FFA9FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8AFA8A8A8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A87DA8A8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8\r%FFA87DA8A87DA8A8FFFFFFA8FD07FFA9FFAFAFA9FFAFFFAFFD2BFFA8FFFF\r%FFA8FFFFFFA9FD07FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8\r%FFFFFFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8A8A8A9A8AFA8A984AFA8FFFFFFA8FFFFFFA8FFFFFF\r%A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFFFA8FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFFD\r%09A8FFFFFFA8FD37FFA8FFAFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFAFFFA8\r%FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFA8A8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8A87DA8A8A87DFD04A8FFA8FFA8FFA8A87EFFA8FFA8\r%FFA8AFA8FFA8AFA8FFA8A9A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA9FFA8FFFD0AA884A8A8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8FFA8FFFFFFA8FFFF\r%FFA8FFFFFFA8FFFFFFAFFFA9FD09FFA8FFFF534B2FA8AF7E8584A9FD0484\r%7EA984AF7DAF84A984A8A8A87DFD0BA8A7A87DA87DA87DA87DA87DA87DA8\r%A8FFA9FD13FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFA8A8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFD07A8FFA8FFA8FFA8FF285128\r%A8A8A884A8A8A884A9A8A87DAF84A87EA884A87EFD16A8FFA8FFA8FFA8FF\r%FFFFA8FF7D7D7EA87DA87DA87DA87DA87EA87EFFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8A8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8\r%FFAFFFA9FFFFFFA9FFAFFFA8FFAFFFFF27277CFD10A8A1A8A8A87DA8A8A8\r%7DFD11A8FD0AFFA84C2753FD05A8FFA8A8A8FFA8A8A8FFA9FFA8FFAFFFA8\r%FFAFFFA8FFAFFFA8FFAFFFA8FFA9FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFFD06A87DFFA8FFA8FFA8FF7DA8A8FFA8FFA8FFA8FFA8FFA8FFAF\r%FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFFFFFA8FFFFFFA8FFFFFFA8\r%FFA8FFA8FFA8FFA8FFA8FF7D7D7DA87DFD07A884A8A8A87DA8A8A87DFFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FF\r%FFFFA8FFFFFFA8FFA8A8A8FFFFFFA8FD09FFA8FFA8FFA8FFA8FD2BFFA8FF\r%FFFFA8A9FD09A8A9A8FFA8FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FF\r%FFFFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFAFFFA8FFAFFFA8\r%FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFFFFFA8FFAFFFA8FFA8\r%FF7EA8A8A87EA8A8A87DA8A8A87DFD08A8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFFFA8FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFFFFFA8FFAF\r%FFA8FFAFFFA8FD37FFA8FFFD0AA87EA8A8A87DA884A87DA8A8A9A8FFAFFF\r%A8FFAFFFA8FFAFFFA8FFAFFFA8FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFFD07A8FFA8FFA8FFA8FFA8FF7DA77DFFA8A884A9A8A884AFA8AFA8A8A8\r%FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8\r%FFA9FFA8FFA8FFA8FF7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8A8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8FFA8FFFFFFA8FFFFFFA8FF\r%FFFFA8FFFFFFA8A9A8A9A8FFFFFFA8FFFFFFA8FFFF7D51A7CFFFAFFFAFFF\r%A8FFFFFFAFFD27FFA9FFA9A8A8FF7DA87DFFA8FD0DFFA8FFFFFFA8FFFFFF\r%A8FFFFFFA8FFFFFFA8FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFFFFFA8FFA8FFA8FFA8FFA8FF522D7CFFA9FFA8FFA8FFA8FFA8FFA8FFFF\r%FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8\r%FFFFFFA8FFFFFFA8FFFD06A87DA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8FFAFFFA8FFAFFFA8FFAFFFA8FFAF\r%FFA8FFA87D7DA8A8FFA8FFAFFFA8FFAFFFFFA8A8FFFFFFAFFD05FFA8FD2B\r%FFA8A87DA8A8A87DA87DA8AFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8\r%FFAFFFA8FFAFFFA8FFA9FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFD04\r%A884A9A8FFA8FFA8FFA8FFA8FD05FF84FFA8AF84AFA8FFA8FFA8FFA8FFA9\r%FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFAFFFA8\r%FFA9FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FF\r%FFFFA8FFA8AFA8AFA8A9A8FFFFFFA8FD09FFAFFFA9FFFFFFA9FD1FFFAFFD\r%0BFFA8FD0BFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFF\r%A8FFFFFFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A87EA87EFD04A8FF\r%A8FFA8FFA8FFA8FFFFFF84AFA8FFA8FFA8FFA8FFA8FFA8FFFFFFA8FFFFFF\r%A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFA9FFA8FFFFFFA8FF\r%A8FFA7CFA8A87DA87DA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFFFA8FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8\r%FFFFFFA8FFFFFFA8FFAFFFA8FD37FFA8FFA97D7CA8A8A87DA8A8FFA8FFAF\r%FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFA8A8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8CFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF7C7C7DFD\r%07A87DFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8A8FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFA8FFA9FFFFFFA8FFFF\r%FFA8FFFF83A7CFA8A9FD04847DA884A984AFA8FD25FFA9FFFFFFA8FFA8A9\r%A8FFA8FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FF\r%FFFFA8FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFD05A8FFA8FFA8FFA8\r%FFA8FFA8FF7C527CFFFFFFA8FFA8A8A8FFA9FFA8FFFFFFA8FFFFFFA8FFFF\r%FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFA9FFA8FFFFFFA8\r%FFFD08A87EFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8A8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFAFFFFFFFA8\r%FFAFFFA8FFAFFFFF52277CA8FFA8A9A8FFA8FFA8FD1FFFA8FD07FFAFFFFF\r%FFA8FFA8FFA8FFA8FFA8FFFFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8\r%FFAFFFA8FFAFFFA8FFA9FFA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8A87DA8A8FFA8FFA8FFA8FFA8FF7DA8A8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFA8FFFFFFA8FFFFFFA8FFFF\r%FFA8FFFFFFA8FFFFFFA8A8A8FFA9FFFFFFA8FFFFFFA8FFFFFFA8FFA9FFA8\r%FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9\r%FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFFFFFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8A8FF\r%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFAFFFA8FFFFFFA8FFFFFFA8FF\r%FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFA8FF4C2859FD\r%05A87DA8A8A87DA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF\r%A8FFFFA8FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FF7DA87DA8A8FFA8\r%FFAFFFA8FD37FFA8FFA928277DA8A87EA8FFFFA8FFFFFFA8FFAFFFA8FFAF\r%FFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFA8A8FFA8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8A8A8A9A8FFA8FFA8FFA8FFA8FFA8A9A8AFA8A8A8FF\r%FD06A87DA9A8AFA8AFA8A9A8AFA8A9A8FD1BFFA8FF7DA8A7A87DA87DFFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%A8FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA9FFFFFFA8FFFFFF\r%A8FFFFFFAFFD33FFA9FFFFA87EAFA8A87DA87DA8A8FFFFFFA8FFFFFFA8FF\r%FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFA8A8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FD07FFA8FFA8FFA8\r%FFA8A9A8FFA8A9A8FFA8FFA8FD1BFFA8FFFFFFA8FFA8A8A8FFA8A884A87D\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%A8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FF\r%A9FD09FFA8FFFFFFA8FFA8FFFFFFA9FFA8FD23FFA8FFFFFFA8FD07FFA8FF\r%FFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFAFFFA8FFA9FFA8A8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFFFFFA8FD0BFFA8FD07FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFF\r%FFA8FFFFFFA8FFFFFFA8FFA8FFA8A9A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFA8FFFFFFA9FFFFFF\r%A9FFFFFFA9FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFA9FFA8FF\r%A9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FF\r%A8FFA9FFA8FFA9FFA8FFA9FFA8FFA9FFA8FFFFFFA877287EA7A87DA87D7D\r%7DA87DA87DA8A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFF\r%A8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFF\r%FFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFA8FF27\r%4B52A87DA87EA8A8A87DA87DA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8\r%FFA8FFA8FFA8FFFFA8A87DA8A8A87DA87D7D7DA87DA8A8FFA8FFA8FFA8FF\r%A8FFA8FFA8FFA8FFA8FD0BFFA8FD2BFFA8FFA87D7DA8A8A87DA87DA87DA1\r%7DA8A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFD20\r%A8FFA8A8A8A9FD0FA8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FF\r%A8A8A8FFA8A8A8FFA8A8A8FFFD05A8AFFD23A8FFA8A8\r%%EndData\r\rendstream\rendobj\r91 0 obj\r<</Length 65536>>stream\r
-%AI12_CompressedDatax\9cì½ë\92\1dÉq&ø\ 4ù\ eg\7fÈ\8c\1c\9b.f\23\92;6f§êTI\9c¥$\1a\9b\1aiM6Ö\ 6¢K$\86¸ô\ 2hr¹O¿þ}î\1e\11\99ç\14P\0ª)\9aÔ\15\86Â9^\91\91\99qñðËç\1e\7fó\7füêë¯\8eß¾ùíýWéj<\f\7fó77oï\9f½\7fóöç\aR\ f¿xùòûwïß\82ô\93_ÿô\10æ«Q*\1d\7fQ¾±\8aÿóþí»\17o^ÿ\9c\7fºJòÇ;\ý\93¿ûéá'?\95o¿yñþå½|ÿ\7f¾\7fñþýýÛç/\9f½{÷âùË7¿{sõìÅOý\86ÒÂéÙ{©\17Ç\90¿
-ãW!\1fÆøó8¡Â³×\7fÄEÿß=n\92
-îqýæû×ß¾xý»ë7ÿïÏ\ f_¥5\1d¾ZÓx(¥\1cäj©ðw/~}ÿn_+^å0MR5®W1\8e\8bÔ_®æi̸èjLq\91+Oo\9e\7fÿêþõû_½}óüþÝ»\9b7/ß¼}÷óÃÍ\9f\9f½>üý³ßÉ_\9e\1dþïû\97/ßüépýòÙó?t\97ܽxyÿîç?û§wÒ'?ûýÏN÷ïþðþÍw?ûú\ fÏÞ¾zöÇß¾xùm{¿tøÃË«C\8cW!\MÓÕw¯\7f7H·Nß \réÁWÏÞ\1fBDg\1f\7f\11â7×ßËÅÿðý«ßÞKßÎ+Éé\e>Û?½\93\87\92çÃg\90\97o~ñJ(_ß¿\7f/¯.O\8eîøõß^÷ï#D\96\9füë¯ï\7f÷\82ã+#ð¿~j;}óÝ«goÿð\ e\9d¶HwÉ\13\1eÒ,}\9c®&ò\9bûWß½\94\ 1cÏæ2J\85¯"ÿë¿X]y#\1d\81\98ÐÆ$\1c¦i=Ä©x\9dÖé÷\7f|qÿ§\9f\1fþáÍë{í\90ãÛ÷_ëØç<\8eú[ÿòëï_Þ¿ý§×/ÞË\83Î Ú#\7fÿæÛû\97R¿^\7f÷ò\19;\82%´ßZá7ÏÞþîþ½L\977/¿\7fÏ©\ü\ eÒã¿|öç{\8c\7fÐ\eüãw÷¯\7fóæ\7fò\19å%§«y\9e§CX\93|Xä\83¼Z\88q=ÌS>\84Â[Í\87 ïí7\ fí·Þ\ 3-¢=¿\11æà¯d\0ÿñí\8bß½xýó2\1e¾\9aʨ#û·o_|Û\ 6v\89\87¢¿ø6W¥û·ú?}lé\ 1Y}¯í5dBÝü}7AÆ«¿ÿZîzûúÛ\9b7¯0\fï°Ädf¼\96I#KUÿV?ó/rù÷ßé\eðû72b¿zûâ5Ú\1cþ\81\7f)ßüêå÷ò§¿}ûæûï~ñúßÞ\f?Q¦ò?ï\9f\vç\90Aýöð\8f¿ýßòEx\ 5'íá7o\9f=\97\ 6ä{#lâ»\9f~°9y¹·÷\aý£\ɯþÿǯ>Ýÿ\9b,·v¹Ro_ÿñþå\9bïºf+åÙëo\ fÿüìíw\1foúW/\9f½~öö@zmù\97/þ(\7fy&=ÕÚn´G4*³ä;é\1c^Â*»\e| B÷§GÜèÙûß\v\8b»\7fýí»Ú¶~Ý>¸Ò>ÞÞ×Ï1\aß\1e®ß~ÿî÷\87ß¼yó²6»ýSmÝȤ¢þ_Ç=~Å\v^ÿãkí ó;Y\85ý\9d\84\11ýÕÝEj?|\aùã_së7Ï^¾|ñ»·Ï¾ûý\8bç\97npáïõNú·O\99X\7f~õÛ7/_¼{ÕæSGùÕ³·ïE¨¹ÿúÏïÞß¿zôà\1en¿}!Lî\81eüÁ:_ÿéÙûç¿ÿå\8bß¾}ööÅý\aW\1f\ 6àß^¼þVæþ×"\84Ý·\ ezóê;HH\87¯\7fÿì»{¾Æûßß±æ×µÁé\eaý=sÿê«!\1c®_w¬ÿoß>ûö\85ì\1a"åýÓë×Ï^ [ÿ\9d\91\ eqùép\91*;V<\\7f;üëðß\86yùh)\17ʺ+G/Cû8_×rcåÖÊ]+ËÈ\12XbW\92\94¼äA~MRüqô§HY\1c¥\K¹a9I¹\95r·Ü\95\91%H\89,©ä\92\aù5±àMØRÁÏ*å(åZÊ\8d\94\93\94[)w(ë¸\ 6)qM,YÊÄ7\97û\ f¸rÅÏq½\96r³\9e¤ÜJ¹;\8eÃ\7f\97N\9eÆÏ*aW¢\97A~¥³\92øÏÌÂÎ\9bJWÖ®\1c¥\O×\ 3~I¹\91rªåÖÊÝt7\8fV\ 2K\94"Ré\9cYp\1füøt\91n\19ê\9chÃ\7fj\83_\aÝ\87:³L6Â>ºG\eU\19ÑA\aµ\eP\ e&GqÑN>ï\91Ç\94üP\19κ²ug+}\97\1e»ÒúóÆ{u8ïÖ]ÇF+©v®ßwîVc]qC]cÚ½'vq[U¾¢l%Ù#Ïu\ 1\95Ýò9\r¶ztí\84ºr\12:\9b\9d\1c®?Zn\1eQN^\ 6ùukåÎK\1cw%°èObÉ,º\1a´Óð¦ò¨\83ü\92e\1a\8fR®¥Ü°\9c¤ÜJ¹\8bwi\94\12¤\88F$?Y
-æ\ 1z|áâ>J¹N7RNé6Ý\ eyÌAJDÍ\9c9ã\17\99yà\ 1×ù&\9f¤ÜÚbÅlÒ)\82É\80A×\11\ e\1cM\8cá:_\ fÆ ïdt0.3Ç\ 1ý\7f[\94]\90\8b|¸\1c/\94ýOñ\ 2\ 6åܲñlç\ 1Ù\8ar6v\1ey]\10\9e'Eù\1f9á-y¢ðÆA~\81M\82]â\ 6ú\83\19\ 5\96\8a\15\81¥\89Y\139\87dÑbNq \9f¸¢1á\8e|¢\82Ù8H/ ß2çjäÌ\1de\1e\83]\9c¤·0Ç\8fòÐh\7f\81ÚÇÅ\91dÜÃ<r!ÝJgßÈ\8a;Ê+\95i\19¸l&\19\8f$S$Lc¾Ë·2R72fÇ\1f;ù/ÖÉ\97ºðÃ\1dºéT+u«\1fºÎ\9d\1eèÜÇt/;\18½;ì:xy \83ãY\a\9fj\a\1fÙÁèbé¶\81\1d\9cÙÁèâѺød]|´.^j\17§®\8bo÷]<Í\ 37 \8b]\9cWéä|ø\9bo®ß\8a,7^\85\89\ 6\8eù0É\7fã\88?|=üÍ7ç\7f¸~'µójÄ%^I\9fÍ\87î\82\v\7f\93k®OU*u¹ó\ 3V\880?(ªþí\9b\97ßÞ¿>ü\1aæ\86aóMnº¨h:Z ,ö\96ÿm\18ý't%u%weÞ\94Ò\95£\97A~]wå¦+·\9br×Jè\7fbWRÈ\83l\16ÉJ/½\99\84Kù©teíÊÅ\8dtØî\98Ý\86ÉM\13\edÝ2û\87é\7fRW¦\81»¦î s\9cº²Ä*\82P`vY¼Ø·Â͵t\85+m0"ö\[|üìåzó\99\85Üaì\7ft$c\1dQ¾\97ý\9f»ÿ\93HÆþ?ÊlÿË:\eä\8bJ\96:Øø¤Ã½vþÊ(ëàû\88ëÿ'~:±`ìåÿ¡N\82;ý_\16\ f\86ß'^ÜL\80ÄßÙÆ?[ÑÑǨËÿ\83M\ 1\9f\f\85¿×ÍT8ZÁ\14Àÿ\18ý&UÝnfÀÝÐä¥: "\1fgì\ 6\1f?ySt\8c§n¬K\93\9f|\1c·c¦\92Ô5e)\95¦L¢jc\198*\18\84\95Ý{B\8f±\872û ðõ®å\ 5î8Y#e¸\85·Ò\86!\9eA0Ë\ 3å±"ìü\9a\92Ø\1dÅ°h"\98
-`*~Ýæ»*|AR/\14¾®)j«ð\ 5\81:\ fTQ
-%çkSE!&G\13ÂT\f\83(|2EÃ\95\fª\18T\10\8fT\r¡\16\8aB8\98>¨\9a`1õï\86ª\9f(~\1cÄ\baò\98E!\98e\9f(²ß\1d\8f×Ç\9bãíñN¦\\90nM×Y\14\ 5ì½e\90ýh½>^__\9f®o¯ï\84\ 3aÄ£H¢ò\9e¢C̲§cß\92ëonnN7·7w\9cA:.A\f\957\9eecÂþ¶\9e\8e§ëá$µN§Óíéît\87ÙË!K·Òe²ÑÌØǸ%BW=Þ^ßJ\8bçëò ~þc4\18>¡Äa¯Ât%=ºt{Ù°ÙØ´\2\1at\e\1eÇòÎ\7fn»rêÊMW®7åØ\95ÕË ¿JW\96®Ì\9b2u%w%uEØÇ\80_VBWºý¶\7fôÛþç´)7Z\ 6þwÝ\95cWÖM)]Yº2we\1an«ÊÎ¥ÓJêJìJ¿Cod\bíòÁú¾\7fúþç¦+×ZÚXnÇp?rÛÑÚ\ eÑvXd(\86n4¶C°íømw[7ïú\96ý9Ô.Ývä¶÷¶=¶ë§m×\f»\1eÑÞ8Z¡\9díd\ 2ýi±¢\86\107bQ?\17ö¨%\ eܽ\\92Ò½Þ;ÑßLïå?×,G++K±"*À ¿Ü¼éÆ\9eÌ\92¬èÆé\e¸H\14>\96·\1c¿k\8eWáøL\1c\10\fÂÈn?±\9b\8fìÕ\85ý\98Ùo\81ýtË\8e¹fG\94\81o>ñ]ñ\82#_èÄ\178ò\91\17>aæ\13ÉsÈl¹\95μ\91íæ(ÛN\11]f\96\9d(Ë\8e\14eg\1a\a\99H·ÒË7²a\1deã*²\81Ͳ\91eÙТlm£L°[éÿ\e*Ê+µ´\99ÊX¢ò5Rá:QÍ\82~U\ 6*V\13U*ªST¥T\8d:\9a\8e:\9bz\1a«jêZÓÚ)¥¦/\rç\1aéÃê¨\88\vEÄ\869O"@$\11$\82\b\91w2\rO2FײK¯©\f"qÌiJY\ 4\90(2Ü(\vâVæË\r%Ø\95"ÒLÑ9QÈ\12\91«)`ÿm°Z^s1\11Kë×+¤@\86»1éNd?Î\87Í´\89¹Þl¬\17ñ\ 2\8a\90\13åÌÈ\8bm\9aøDé§\8aO\16\9d.6Yl\9dLºÛÏU\86ÖmE÷\9e¶_m·¶¶gâbiñ\86+ôv'aL\ø\v¥\8b£I\17'\99Ò2ë!AóbJ8*߸t³Êd½¦ts×I6.×Pª9©\90REÈD!r¦øª\82ä\råÓ;Úù(LÒ¾§Òä±\1f1\93¿¥+µI\91ç)é\9fôÝ°\9aÈ.vR\91.à\0c¢,XíEv\ 3»\80_iC\84ýp3C(\ 6«ü_LÒ¿¦nwkb|0]-WÃæRß\8bï¦Or\82FbºG2ÙÚ\9bdsÔ\0¼cfk ë\1a}äÀ·k\1dܺø\92ÌØ$Æ:¢\ fK\8b;qh'ûôâK\15T&Û\8d\9cýõ\f°±Àó\99}k;\84öÍ%Þ¸e\8d\1fc\8c:~;ÖðÅ\9cAËe\9dx¯5\97ú}«l{Y\86ª±õúùÜ\95e£×OUïóïiSâ\10·?aW6
-&\99Ѷ\9cöe83ù»UãX?õ\96\8f#\7f\97\vE=NËPuf]±ç%mJ6EüìUXäg\b\17~z#ϦÜ>Xª¹hØØ\8enª]á¡rüH)ÃÆbu¹Ì\8f,ÓC:ÄåòH\ 5e¸@ü\145é¬\f\ fþé\aTì\1e×\90mÒwUÊW;H³\8b¨\8d¤_ÏǶb/,Q)ÃÎ*ÓÛkôg4SÞN\85¬j\92/@5\10Þ\ eüØ\16\9c~rkR³-ù²kFH·G\95n\95ÉÂ\eº\ 57»\15ËJ³pµ%ç\96°´_nf'\e\87nHÝ\9a\8aϽ\9du»¼TJ÷¥v²RµC÷Õ\r¸Ç\a\17Ú5ý\ 1Ý"«Å<\ 5Ûe·t6Ķà\96®ô\1a·Sv\1aùpQUßkù{j¯ÿïöÏáâ\9fö¦\85íÆ{^ã\83Ëî\92ä÷±òC,»'oÐåeW¬Öª®Î¦ &SJǪ\88\9e6ÂD\13'T¯\84|hz¤Ê\15GJ\16¥\93,r\95.TñRÕË\15/\94Ù\94/S¿\ 6Î[(`P¿\9a\ 2ÖT°djX¨ª\98+cª\8e-¢\90Íæ\1d\13\85l¨:Ù]õ0^»fF¿×lÊYÞù»ÔÛÕ»\12gõsÍ\9d#q¤má\96ø\83\9bÎÏ\ 5m¦Ö6Wgb$\1f\19éï:Q\81;)\ 4åH-\ ez\9cº\15'â0à\9d\a»\19\85áÜQ£»¥N\7fC½î\9a\9e¿BÝn¡o\1eú\1d4¼4\90§B\b¸ã\96¦\12Ý\89J9¤ók:\véßÃk(æ\82x\0ý\81d¤\9a\90\9aFNCÇô\9b0§¬¾©{[^Þ\8bO\8app\11I\18ò`:à9G\9ewÌ6ײe©¡9#À!\a7¢\9c³IrE/ë¦,\ f24a]\ f³\ fmùúÆ?ø:Þ\898\97Êcä\9c*ï\\92g¶åa«îE\8eù°<£\fó\93¥\9b¿^Æúc\83?6ø9\r\99\15IKoùî\7f¶\96þÎ{±ÓÆL\1a\1eìCÜ\94´)[Kþ´+ó¦,ÃÆ;°lü\ 6îAëËqW®÷e¨ft/§³rþsw^\A\1d6új¸PâÅ\92.\16s\ e\9c\97é\812?Xª{hØø\8a\881ü`Y?R\8eÃÆCu¹\?²Ð\ 10l\9ca\1f*§Ç\95á\ 2ñÒ >º\f\ fþé3\7f\86\8fWydCfÐ\1d«ÅG\15c÷\82d+ê!q\8f\89a¶«Ceµbî\96Á¼/þ㼡-\e\1f\ f\17x\¼2A:~Ô\r\94\aÚ:µÌµ¸ç¨Ô²Z9Ör}\81GÉÏpÆ .±¦f)»Ì\8d:>4<À\84\1eâ>\ fq\9d\8eÓ\«kÿA^ó\ 1\1esf\b\13F2|\90§\à$\1fc!Ã\87ùÆ#XÆ\8e5\f=\97ølÖÐ÷\87\18Ã#ÙÀùÊ\7fx\1d\7f¸ü\85Öñ'ùV6Þ\15CëÜV¼\ e\11;\83he\ eÚ9RksàÎÈ°\86TÁ;\8b\81é\8f\ 4Ï\9fjð\81\81x\88\88\9fçe° \94cžßVÌ{¬hwGº¯\rá^£\b<\86À\0>CÅø¬5\ 4ääH\1f\ 6\7fD\ 3û´À\8fb \1f\85ýÜ´\98\ f\80\7f\86\rúgb,\ 4\10@\85¨×#µz°¸\13\97ë\1dñ@\8a\b\ 2&(Ñ\14 ¸ <z\ 1:h%:\bø 0Å\13QB·\9c©cÅ
-ÅÊl\9dÍ:{mlÕ8êPYic¡¡ú\84R\85\149¯l<²ñÆ\9e#\92\17v<pÃû\1aÇÛJ\=sÛ24é\95¡ãc[ÖµcV\17$\9fs~ÔÉ4\97å\96\87¸ÌNìèËð!®ñQ6ñÈ\rþs×qC\ 6w\11Ðá\10\19\17]Æ«,Ëå°¤+Y ±B\7f\1fQ\15èá}µ«IÑÅ%\ͲÖ\1fln_\8fHä0/k\ eòÇPr.¨µÆ©\902FY¢\13\ 2«§Rb\96\ fË\14r\fÓ¼J£\ 6l.ñ*\8dSîPÏOÚ,\9ft\\85«Ìh` yIh åiFۢˤuÁMò4®\8c\ 5\17¾\99q\93\88ÿC×dº\1aåþíI\9f¶Y}R\19© µ`Ð\89\bG/a]\18\v\7fµÎãRðÒòîÂzÑ\94\fð´n\9a\9aÆqí\9eðI\9a{ªÑ\8e\8btPZÑn\99\96õI\87|ßö\85Ùnoµ®ÒúúÐTßVú(z¾CÇÿãÛç¿\7fñíO\aÿÐÂ5EíƲ\19ó\82\11Ni\99\12\11ò²@Ùõø3æÄféÛ\15\a¿B30Ø\15\a»Â\96ú.pà³.Ö\ e{ì\85è¦<_¥4õ\ 1\b\9f{ý§tó×\7fø³ô1~Ë\85ÙãamSs\ 1ÿ¶\ 2[\82í`¾wõðY\17¸o\färë@\17JS]0ãu\95@4°N#Q5þTÅ\ eÆ\9cÖhÓL\vþBxÕ\91ÖýÓ\1es\11\f\19¯X
-õc][øÂ\9dáÑ'sî\1dÍ)x²À\ 1E`çO\ 3ý>\ 4êp\87\15í®Òä\88Wÿp0Ìuu\12x8Ì& f\13\12s3)Àãèµ\ e´ö(ÈZ\8fÒ¸(DÍ\15v½\9aðtãRS\95\97\1aøº\83_÷0 \bÃ\10\84'ÊÀGJ¿\90}!ù*d\1dpõ[\8b\14\9c\88S\87h+b-EZ\v\13Ôqò ÿ=V\vògxÉm\9c\f]¦ ´ÕÜÀ³¹\1e\92¹\eFÅFY ÄÑü¥KÅ\17xÌ\86\ 51>\16\18ø(T \9a \17\83vfÃòDÅp\1avóTñ\9aGCi.æ\81\9b\f\8e¹ñÀõCoV
-7\17¨¨ªR£z
-BUf4
-43DXcA\17ú\9fVê6ªÝ\9c\ 6ʸw\1cäÑ"·]É\99,\8e¸X¤ÂÑ"\85O\eu'Ô\bkÆV\ f5\ e\7fÝ«=\9bhj\rõíU\1f\ fðµ8j\8f\8b\1fªþÓB\1c\96.Ìáº\85:XüûøPü»\ 6¿\ f\9d\1eÄ\10\88]\10\ 4\14¡|A\11êU¡\8d24\10%äú\90kDM'Z\18.á*Ñ5Ã&N¦.\98R¤Ê¬yÊXb\ fö ãÅÏ¡~vj\7fìÁwõÏ=´¡ÿ´ÿKÿ½§Ó\977Ô\18¢`¸\89dk®ÿæÿg\8b,Sx\93þ¯®Bý½\0+e\1f\b\v\9c-ÞÈ\7fëân¿\8bù\1d[ôÑZ#\8f®\19¬Ã\10´\139\84âPïjØYØÅg\a¢W\14ðª¸3õ\8a.5Ê\88 ¶\81®SEÍ\9c\88£³X"\8bÏ\1e\89²S/¬®9\8dÏ^\18£]0\9b\94\19^ò½é~\987\9bÒ9¦bë\1c´x²¡\12ý\7f÷+ö\1eÆÞã¨ÿ{Ô\99¢@4Ø\90x\90¡\92çM%¿ÈézÉr\16¶¶v@\94\ e\9dR¿n0*g\95k\93릩M³Ã\85Ë\96\v\15×ú·ö|íó\¡/e\18÷ÞXíàÖáqìAƹs¬\ 6õ&Û®´Aà__@à/\ 6¾o°{\aÜ\eÔÞ°\16·d\r7\ 3¹Ä\91\92\83Ê\ eË\ 6x¡2\84J\11wdE'Þó\9alj%ÓZÈÀ\f\831\18\ 4c¤i@E\vßöV\8b[\9e-@Ù6¿ºýù\ 6¨\b\fÃ_\f=üÂvÂ~/ì1ò[\94ü\16'_\91òÃÃÑÛ\1f\bÞþ\0^~èP±\9f\85\8b\r·
-Á9\8b\8aéÊÇ\ 3c\9a9Þ\fôC\8d\a9\8f\bYª¥\7f\e\15ÒÅ\85XéÂB\86³È\10¿ùÇfe1§Æ¼\9d\9bC\17\15ÒÇ\84\8cu¢ÞÙî¥o¦í_×9{´´\ 4º9Ë\94\18lúÎ\9ak¤Nâdhc\85Ù\8e\ 6%º3Ï\80v×\8dMl\9dÚG\rÅ\1fl\86/6ËgZ.)ÕTÄQÅ\1c\11GrgÈ£[v¼ô\80B¹/y\ e÷¡_ûrÙ=\19÷\1e\87³à°\8bAbç¡b\9b\80±á<jl\17Öt9xì<\80Ìâ\9d\86\8bQdËÎ\8d<ï\9cÌ\ f\a\93¥áÁx²ð\81\95óк\91\953\\<×\9d\87«\9f~\ru+i\9bl`Í"\91À\1e5\83wÀ°"\12rQ\eQ\84°LÛ\90¨åe\86¾>1LËÆ.\92\85Ó5ÓÍ\13µG\13S\81h\8eZy\16Öº\9aeF¾VÓ\8f\1aÓ\9a\81j¾\12ù©´§ùì\16xÿE8"²¨ÂD\172\r{£ÈäÌIy\15Â2Ó°1ã\13-RYXg÷.Ó,Í\87fD}ªöøl"P\85\84¶FÙ"V6%\ewKb¹àj\18δ§\91õj\12Y§O\11ñ\85í|\92¥æûW¯îßÂX£\1fh_3\83Xg¸pS\84\8be.Ïxп[En;ißåê\86o.\ 3#ò\1d+m\12°E9x°}\13x[:"\8fÖYºH\ eJ¸C\170\ f\ 1\177\1cy]ª)\88TÀ\9d(àªV¶º Ë\10øë^C\1dÌ\93ÒTÓ`¨Ã\UÓI3jQ5-\96 E7vuÄû\16HÖ3\98[d\9bvLCE\1c\83¹M\84µÍ*v´L,×\9eöjØd\12Û$¼êR^9\16Ô \97ò-w\19ÅP<éÕ<\È<÷¡Ds7\1d×ݧ\9ac\19úp\92.ë\6\83\95\96\96è+ï²âõ?T\9c\aK©Õg¦ÓoÇeÝ\95ã®T\1cÄr]\8b%ãÚ\96Û\aÊ\ 3Þò. \1eUþ\87ÂH.\ 6Þ|°P\95\e.\ 5'}zÙæ\8fÈÕ\8ey´t\1cw¡Ï!±Ô\)nÇÔX·d\19Ll\ 1\ e¦[º¯:\98&9sq\1dk\96/]G¡æ\96\98ª9çhNjuS3ç^´\f_3åg÷R7?µ\9am²\99mt¦¬\14Ê\8f]\ e<\9d\89a¨É'|n\95j¬Ù¦a«©\vkÎÂrÉU=t\89
-\13M5\9e ÉÍ4Í_\rKÍíÖcMK\8d\16µÕäaã»\9e?n²Ùx¯Ý^Óy±\873\93ÍÍ%³M\a Ú\82\87r\a\1eZ<úzÙ`\87\9a\8bûº\83\fmàB\1dThÜÃ\85\86\1e-Ô2!n\0CûUù!Ø\10õ\92\ f"\88.þ\@\ 3¶\90øs?ò\99,ø`¸ÚYä^\ 3K~a¡Î\1eú,\ 5\9e\9fÀó\12xF\82\96\8dÀSC4ùß\84ûN|§°¾Í7Ð27¸\8cÝäé\96Z \8aÊ\9dh|RÌÖ6\95@\13xÏ\13\b4%q§ ö\9aápA1¼l¬8S
-w\1a¡é\84Ã\ 5¥p«\16n\15ÃjXê&âÛâ4T\ 5±)\89®&Æ\9aqjì\94Å»Ne¼³¹æA\18üÆÇöÓ\92º\95ZÚ&׶ë\96%3·2\98\86ÙôÌØi\9b¡×:;ݳ\95^'ãx\ e\9d6s³)\1fOôw1'Ýp\96\96®ì÷õ\v \0ÏKÍ[7ô\89X7%\7fr¡¸8Ô\fx_T>=?Å\873T0tjØ\ 5b\9fg©Ø\86co3Uô¹*Ìï7TÓ]o¶»µiÚLv\e\83\9dº\ 1«#Ð]\81G\1fߥ\8b\99Ú\1aìnkÎ@O\16¸\98çjº\90$\90AS\83ItÇ> #7ú©
-\99\96\85±ËÃØ<£î\eÕÄ\17¢e\r5%£ÇQ\8dÕ´§qTt\93ÒÄç¡T\85âk\1fP¥â<\84\9900®j¬qUÛȪk.L\8f¯j\11V3[É\1egeª\aÕ\90Á"î\18muk\11W'S^®i7<\9aíp\e}åñW\9a\95×ül)\r5\14+ÒÀ¨ºS\1f\96µ\ fÈ=ÅÊK/\84Ý3WÝ>²¾\89ÿ}tî¥ðy-\9bàù}èü¥ðùð`¸Ð\ 5\9cþpFú¬\rùC\00â\Ê\ 6oqùï\86å\98Â(ó\9d\b\1fÈ¡\86Å\98`w\bÍ\ 2Qí\r;\bÉg\ý)Ö\81³\fçáRÚó°Éz~AÛ¸fp±ë\1aÉP\13\9e±îÆ4\r\87Äî\0±\83i\19\1fƪ~Ñ\ 3a\e\fÖ\81°\ 6\83\1dj\1a»\9b^=\8aõ\91\17S\91\8efÖÐ\94 ãŤ ë\19ðc\1cì]öàÞ\eO\94\9cZ\92d\7f©Å¬\12\9bôÈþrC{¿K\ f¼T\8dîÃ\8fz´ õ\86P±\94(\83!\91ûn?Õ\8cÎÁÌ)ÛG=\9aáäTGa\83IÎîÁÿ!\92ÞíBÿÎC°\9b\17²y\aûHô\96¢ÒÂÞ\aÍA\8a\8eûA3H=Qþ¨ãÝÐòGýøÀ\7f\81\aî\8cói\1eeíÀ`¼äT
-?¬Ñ¬µ±ÀH¬\19û/|¸ÈÆ\9f®Eaí¡e#®wØо\8cý\8fãÅ\r@ÈÒôÔm\ 1\81þýU\96×\1dÁ\16\13!r7Âx\0a\80\19\89\16$\1ak'ò\94#-FwÂE4\ f©g!½\9dÆa\83çZ[üB\17½0Õ\f¤GK\ 1ß\ 2\16\1afÇð:C\87\15ìc\15.Û\80º\80\ 5Cë´ \ 5Ãë\f\9d-È@;õÌ\8akÓ\8düä\8a[\ 3»«e¨Ù\85\1cÅC³Ð@»ÐR\95=·\ e\1d«\8dÈíD7\9dEÄìEf1òÂ\rj0E4î`?ygP\9a®ç]Y*$È\v_jØizÇ®ô?7\9brz¸\f\9dµj[\1e\1dj¸\89\16\18\87}Ò \ f\94G\1d0<®ÚãË\8f\r^¨ðß\9d\83$
-7Ø®U|TCµ¦:¦Øh)\99³É.×\8au2\99%wÒâÍÐ\99£\15-:\e^\94\98B\15\15\99ì8VN³\8d\97ª B\85\10\ e\15C8wG\87\1c7ðÁóãXÚY!~\18\8b;-®\87zÆÎ\aOØ©ÇëøÑ:íp\9dþ\80\1daX\83\9d±sÛñ\96\15¬ç^Ù0\87S\87;\*+ëNap®v¬\9cço7ëiWn{~g\1c¯+C5\8e\87\8d\89<VXã¥\92w¥;\18f¨&õÇ\963wѶ\f\1f«Ð\95ò\982<®ÚÇ\8fvð2<¾ê\7f\9a\ 6·\1c¤\90\7fh²ôDųq\ fwn-Æ=NUãÉ&\95¨\83ø\ 4pÖ¹ªÙ+\9a\1f\8f¸¼ÀA\94\87´C\88ιÈþÔ¡KG:\99\9ft¸pìÐÍƹy·ã+\8d³8Xys|×Ð\9dàµg4=«ñ\13½Nõ\¯¾tÑ~C\ax\1e« \15vl)V(t+çVÙ\8bfÞ\87ìÂËC<m_ÚycOós|Ì1-\9fT\1eÛàÇ\8fà±ò\98Óz>©ü\ahðË¢v\92\19f¦Îô°¶ãPz+M´Ü~{+M³Ñ¤\vÆ\19³!\rƧæj\91i\16±s&uãÞv\13o\9a*Eü\b\14©Á\0"\1a\ f¡Q2'c=Ñ@\e½\1e\ 5΢\1cE\ 3®2ù\86²
-\ 6\A\ 6Á\82W·¹.c]\91\85QWG\8a\rUH09\0»üÔm庿\1aï×\1fU|48l¬îñ¦Ù¤ªÍ¸öâCÛ~:¥£)\r½(\9aº2mʲ+\9d\alè\93llÊõ\ 3åôÁr;ìQ\94\ f\97Óø\982<®ÚYÞÙ\aËðøªÿi\1at#×I&Õ*kdºKwáöîö$úì*{ñ$ÚH8Ý1o8¼w3óaÃnu\92)\ 1\8bÕLkU ¥
-vªUýr0QÁ@\ 5ë\14<qð©\aN±òð»yh\98:Û<,¬f\8b\97-Ý\82Â\86\8a\85\7fL¦ø}®ø\v\a\98\ræ"s÷Ø\OØR$|¨\1e±S\87\87?\9eå\19\9cÜÿ5\98ûË}_[¿\97{½\9aÇ«ù»zoWË:\18\87ÞÓµñrí}\{\ f×\ 3ÎaçÝzÈ·µK\vý°[kxÈ«uÉ£õ\b'\16\ f\82|ly\94\12\7f\9e\81úrùø\81\96V\1esöå'\95ÿ\0\rþÈA~ä ?r\90¿Þõù×ßà\8f\1cäG\ eò#\aùë]\9f\7fý\r6Ï÷Å#c\1fOüWFn\95\85^íyNY£ªÆy\fÈ$T\90%\88\80¥\11A`\17>ðã|Áyþ¤\9a\ 3\1d\19wB:Láj\14\1eÖ»Ñw\7fñúW3roÍá
-¸\9bCÊ\b´Ë\9bë.×Ø^¿H«S\9c\ fq¼Jq].\¿¯Q¯_\96\v>ÿ\9eü\85nÿxÙí\1fáöOîö¯\9bÊxº=ÝÐ#¸oG{÷8o\94sÓ\ 43\9d®Dkpç¹\19\r\9e\rKI\8b.ï\81ØË\99ÃZQRû`R\a/?¾èþ¹\12\9a\ 2`
-`)·\ 6KQÌü¥Ó\ eÏ\ 2\88\9a;¢\87\98-\86Fê\91H7]W\9c\85\17üÕ5S3¼Øib\88é@ÄÆÍéV*$\99 Ëúb\b"Ð\ 3Xo®Oô¶#ð\ 4\81&Zá\ 1¿!\8b\86´/\96¾\90g\9d1\17!²\ e"± ¹{n»Ü9¥Ë\9aã9s¾´BÇÈJÈó\88\0Ö%0.\16á¡óX@YÇ´2`sÊë\18/|¸\8c\0z²\16\19\86º\86(B\fZ+\8bÈ\ 2lm\15±\ 4\89p³\18"Õ°¨éj\89¥ \81\16/ü\99\rh\80ðS¼ËS÷Í\172À\8bì/~:ìõ£ ×G\ 3R?\ eG}<Tô£@Ñ'\ 4q>\1eü÷Qèß_mS\eVÑ°w»\15¿ýÃ\ f\ eÝK\97¦pÚLaÃx׫A¸ºL¸\ fäÁm\89Æû4n\16\1e8´\1c¸»ü·\1e\0è!\7f\1eà§ó\9f^ô@m-Qs\9b¨Å-\9d?ý\86\8e«k;äæ\ eê\1fC6\ 2ÕÁDµp2_\16\ 3\9cW:´VúÕ\99ü\r\8e-Â\ 4Cun©O}±tp*ÅroòȦmî\99>ûL¤\8bk{\ 6P\9f\83¦\vi\19\1e\8ai±l4í0 â!-O\85\98Ý\9cÛ8|ú\99¶»¹ý©y\1c¶\vàs®Ö\f\10\ 1\1a:\12VÈ\88/S½R$j\19ä>Ah¯&|ÂE_¶ÎÊÅ\85V6\990W\8f\13®\99\89\8eòøà©\1ej_\fͲ\89Uv\0X1<Ƶ!0n5¥¶&Æ<í\90dç@W\87vè\1dèæ\8dæâ-æÞ½£[w6\87î\89\9eÜ´jRË\aÎ\ 2¾\9cÙè/qAK6\19núж\ 6óv ÷æ<°ëP\ f\ 4;uy{ZJ*ÂÊrÍÐÓ2ót\8c\81Ï{l\a\89}8*Î\937:'i9¬B\1f\127\9c±\90\16\13gÜC¥g\8f³[k«s\r¶káv\1epwgw¸}\88K\rg\91wΧ*§òCnG2\re\19\8b°\v5\16\9eÔT(½\8c\1e\1eyÔ\1azTS\86&ö\ 5,\84\85ï\9eÖ Ot*×\ 3\1fb\96;GÞíD^\b.8Ñ\128Î\96B\7f\9fgõ±Ç\14?\10:4| vÈ"\87þ\13Þ·.§\8biú[â\83\ 6tß³³p\81¡ÇãP\93\1c(dý®\82Ôã.9\7f\93E\\12Ñ,\ 6ÁPÂ\1d\ 6®å\ 1Þ%ã¼È7Ï9'\93;\f\96\86ÓSpö\99\1dô\ 5-ÿfÅîû!\ 4\ eSq~Ý\9d\930·<&]®â\9b\a\18ô%\16-Ï:t\ f{ê\81u\15C×\ 5#ìNQpÌ®ú\ 36A\14\86û© \1f\85ü\Þ Æ³½\0·\9b\aK\9f|KøN²\81^\89ѹ%.'\11\85³\12qsGÕ\7f"dæHì\v@+:\9aýùó_vü¼\9eG8|É\11ÓÁ\ e\92ÿñÉ>ëÉ:1q\96ZL·/\8f*¬ \1f\12&\18>\14%DMªuþ¡¥ +"¸ug\1f<m«\14+çQ^\14ù¿¦1\15\9a\15r)903º¥I\87Ñ5Ó´¼ÿP\9b\9cãÕ*út÷ OÚ¬¥@û"\93·7\19®\84\e-OfIß5Ë'\95\8b\16ÊôsBf2ù\10\ 2¢\94¯Ð'\ 1\94Ä\13\ e.|¸$Ä?Ms_$ÞçKÒ}Þ\98ÁÉ\eGK\124\93\ 5ëÖqK\11\1f\eFÝ\vm\eÔMÐ7À\89\9b_Ýú\ 6î~½\16þP\1aõv\12M\9f¢g\7f\96\97\81ת¯qs\8c×ù ^Û´<åBY\87\9dáüxV\1e\8aùz\0ô8<ð\87Ïþ\19>^å\an°·¡\ 5\1aã°ë_[\80d¶\0I$Ä\83\94\97\18Ô\ 4ùÎ\13m©\§RÝ\91\12\9dÈsC\rfR¤o\8fó\1d-\14¡a}Wî\f\1e\88àÙâ¢e\89c\14ÂÀ°REÿ¶ìo:\v\98E£fy\8b\96Þ-]HèÖ%sëS·õéÛZ¹~ \9c\81lµ\f\ füá¡ôm\1f-Ãç_úD\rêÔhÎ\96\9b\16\98^\9d1×õ\9f\1e»\8eÏ«\1d\14àÇ\ 5´\ 4Ó3rOoÓhO\16\13\9f,Mt\9f\18Z\ f9hY¾{h{³Ü>\8d\ 1øÇ\ 6?é\ 2;ëcäáßG\1eù\9deÉ\8e"êAÐ[e¹AÄ\8b\14ï ÜA´\83`\a±Nm#\9aTº\97è\b@yH ëDº*Ô\9d\fHq´|ö\8bå¾÷C,ÒÐ¥é\1fy\9aÅ]w^¶¥Ü²©Û\9f\92íi\12\9d<p:öù¹Ò\8f98ú\13\8e\8bþ\9cã=>ý\92'nP½å7Õø\92a©í°ZÅ\f]\9aÑ ¦3øðÙ-úv\16¤fݾ|¾}oÛvãÔÎp4llG·&Hô)9=\84r\9bÚ³XR§¥¦vª[Ê´)ù¬¤\aJ¼\\86\aþ\10>·\f\9f\7fé\135¨Nóæ\rèý\ 1î\11p§U\97IÌ2ö\95\9a«¯ÏÓ\17\a\ 3ox\8a¾\96ºý1Ùù¶ùù\98\85lؤéëSõµ\14î^v\ 1û\17cþo\87\8bé\ 3ú\14\7f\9fV({?iù÷op\83Üø÷\96\8a¿¤Á\8f\ 4Ní\8a\8dèp6ÈçÊÊ\1e\atIç©\1aÑ°S\95¶Ç l\8f@8Ïqy·YB\>C=b©\98\17n>;\80c´\f6\8e\8cr÷ÆÅ\13»\ 6cû\9e±OÙþXYþJ;üDN\ f.¯ªÊ¿»Tü%\r> ;<PLã\18ÎT\90see«ÌôI«Û~T÷\eçÚ±J7\9a\13BgÊuMEx¤Â¥?Р\8dÁ*ë\19\b=ûàq Ä\aÓ\9e&\1dTDóh¦=Í-¸Vü2Ìz.ÿ\1deK\86ìG[\9e ~×8+\b2\1fä=Hz'Jx\852]\10\ 1\ e"\e6oÈ_¡\139þÝ\ 5\9fÿÜ\rnõ3\v=\1eê\97\16\83ìG5M\9bth-\85\7f;\16ið?ÿ}3\98\9ayÝ©\9e.Å»L\7fÝc\ 4MUùÂ\8e9ûù\8b4øaÕ`[Îô\8c¡ëòméÕ\96^\9d©ZNÕ{\\ f¢V4lRÔõ`LU©4SÝþ\98\85\\ fZXö`0\ 5ßßÖ\ 3\16Ü\83ø!\1fb\9fnñÚíM\9e\9ck°¸òvØ¢\82tÌ«D«R¶£\16o`4Ò-åß[*þ\92\ 6\1fÐ\1d\1e(u\aØ« çÊÊV\99¹|\ eBÝr\86³s\ ezcÙ.×Ç.\83P\9fácvçâpù`vKvï\1eßæPTWèMu\83\86êáU\9böqp\93¶\19´Õ\9c]èÿ»¡\r\eöë\}\80\8a½ûw\97\8a\7f\88\ 6?¨[\f\ füáa\ 5æb\1e´¦\11y¶³ÚÔ+TMÍêSþOûÄÿîL\18\1eHûß¼
-·Í§ðAp\9fù\ 4\ 63ø\9f\1fý«\aÿâØßb\aÔ\13ç½Ã\9bÍÂÚàÒÉ2+§Ò\10cîÞ\83\86?MæêYÊ\15Î3>,ù*\88LÖ\ 1Ͼ¨\19ukM1\12\ 4Íh\8cE\8fOÊ"?Ó\a\85¶×Þ\7f\17Ò!/WÂ\8e;OÖç¶ \10ëOz\85²\1cb¾Z6÷ÿì\16¾Èy6]r\9eM\e\fê\ 3H\96~\1fÒ$\91\ f¥üÝ&üÍCMÄT\93þîRGzòH˾ôy\12n¸ð©û>T\ 3»þÞ~
-;Y\ræÏÿnèSGk~:XÓpo»ä¦Ãõö$ç¦\16>d\ f$ö´?;â®;îíüð\88µ\v\82Ù\1e\1f\91ëñ\11qxð\ 4\89¦¬\1f;s\14ð¸\9bX²,\93#Ûùe²i:\98s\94\15D\7fu^ÆiíQ\9d\eìég]Í\95'\92@\8euµ\14\ f7X\15«z\19zú ×|Ùêº\bñ\9e~Äxÿ\88ñþ\11ãý¤\18ïy½´Ò\84ú`@\90\aÞ´Ø\9dÈd\84s\9fñë\fÝizY7Q\1f9A\1e\914Ûç[;Oèd&I?S¨\9d*Tê©B³\9d3×N\1cõsDw\fúÑLo3a>é*=@áìp\85Í\9cxèï_4üËE9f\99>\14\ fÖ"ÂöQW»£\10ºI°9\fá¡È°fºÙ\1fVÐÌ\ 2\1aصÍ/G{ÀåF[ìZÍ\8aoÓõ<M]\7f\90\80\99\14~\18\eá\ 5öøðü\7f\98EnVÁÃ<÷±\÷\ 3\vëq\8cüQÉí÷çÃ\86y^W\1eã*ò\v\11\84!Ëf\82\ f2\92I!{Îcë*Ú\1f]º]yOÖäSG²ýóï_¼¿ÿ¯\87ë\97Ï\9eÿAÖÝæë_âÜ\91øT'\8f\f&Û¸\12â'\eª"âYì\9b*âi`o»ä¯\rV.?CwªaM\1c}1ÔçÁs\r;\b¹¼ûðÅð~\ 55V|ÿðù\0\7f\8a *~.\15Øx3(^¼\8b6?^\887¿À&\9fäD\97ó¨\8bÏ<Óeð\93Rlæ´¹smçÇÞZBò±¦$÷\94Â}Rá\9aVxèæÒ^ýXròmjr\v§\18¾0\9eâ¶\1e\97i\ 1\15ÃçGT\9cÁd9\91\ 6ÃÉÖ¼\ 2×·\172\vì¦Â\93\9d\95³e\16_pZÎ`Ç
-Ï\1d\v9n§A=9ØsK\7fÒTh\93á£Y¦/O\87á\8b\ 3XvÓcøü\10\16+-ÝêÙy\84\172H¬·?\84Hr\86(ûâs\88\86\9dÄå\ 2\®~\9dsþôÁ °aÃ\9dÎ7²\ f¥\vÞ&\v¶\80¡á\v#\86\82Æ\fµ\90¡áóc\86d-a\aXu\a8ÝÑ\94\9c\an\ 3]®\90ÛÛ\vÙB~¨Ó\87>Ç@wñü¡áSLt\15±7Õ8ÒÑl\145ßÚ`¦ \8d\1dõ\8ck§Gå\Ûf\³h£áËÂ\8d4j×°©\8c7\1a>?à\88¸T(8³áQ\ 1E\15\85ùn\97Óe¹\90öåÇ©ðãTøq*ü8\15\1eÈõôI©\90öJõç\üCYµ\84ðÍ?¼yý«·/^¿\7fñúw_}ÕiÛý\1f\86\7fø\ e\7fIú\97_={ÿþþíkQÃ\8f/ÿüîÝ3QÀíÃa]¯Ö9®ð\90æyN\87\98óÕ(\ 3r\88a¾\92Ù4óI\8füý/\7f\92ÿ¾çÇ`\ fÿ/\7fæ×ÿ!\1fÿ·\10ÿ$/\7føûÿþ¯ñð^òkùÏïáM\1e^ ñìF\87_öT\7f\9e_v×_¢m®~-ÿ~v|ûþôâùû\17o^?{ûçÃÏi´øÙõ\9b7/åí\7fa=ñÍí·/Þ¿yûÍõ³ç\7f\90Þúæ7/^Þ\7fóëûçï\7fzø¯rÁÿ)ÿìUÿË÷làÄ·ùGÎ\87(£¾\9aIZ\ 4¡ÅrôÙaÅ\8föËk\19Ózø\97gl`Óa)\84«1Íá0\95«$²ºv\88¼R\94V\ eÓz5\8b\y\90µ~\85¦¦E^5äC,R[\96÷a\9a®D\ 4+\87縪LW²jÓa\8aWó\84«JºÊq.\87¼Ê\84-8¦v¾
-Iªçt%\8b,ÚeëÕ¸¤xH3͵RkáÍb¹\9a"\8cùe¼\9aV\¾\É¢\ fzÕ\92¯D¥8Ä\19\11·r¯Yî!\82ç!E}"\10\920¢C\92w\10ÉY¯\12b\10¥â c[\82L±yAðg\803|\85MJt\e\19Ã)\82\10qt¢^5J\9b1\1fò|5aýEé\97°Êðçp%¯\83§°\1aiºÊ~Q¸\12é5Ô§\8eót%<oÒüfÈ%6ÏW9\94õ\10¦«(³É.\9be\95§pÀ\1dðG<Q^Öé Í\15DÑ\8a\ 4-\83@_»°\17¿L^\b}öU¸Bà\1f\92¨\95«\11®È,\9d(|O\bò\1có,\8b\e\81¹ã¤\97I\9fÏ\18\90°Ø\8bdá$+\9eZ\ 6<Oü\9e\17<4\ 6|µ\11K\98ñxW\1c¢{@#"½\97\83Ü\12})j\81\8eW\9e®æ\92l¼R¸\92Ï2ÏféØ ï%\97\8bÚ2\1fæ,\ 37É\13ç(#º®\87Yn\85¡åe2ãB\9c\ f\8bÜB¶\15v¢pÝ\15WÍÀ\19DY\89IÔ¡\83ôÛ"¼¹N©\885 MMaL\874Êë¬2î%Ë8¯\aÌzÎ_\99\90ÂæuÄä©®æQ:Aæ_^¥ëRÄÍä&E®\9e¤\97\92Ì6Nè%ê¬ãe2À¢\ 3-\f©^fÌ@©^æ «e\9c0±÷k\f\97ý\e\97ñ\89C^®J\1e\vês\99¼ê\892³\10\7fÇÙ²\16Y\1e2¯ð
-\91=0Öï:yä¹V\19ZGVNî\9aàW¿\8dOm\90dÚ®3jX\ 32ÇfäÆ«wqB\9d£x\94VËß ¶³{%\7fã\14\8a0-YÔK\92Å.óéÕ\86\98uF%\99\8e²\ 3g\10dC]\84 +o\96Yì\ 4\1d/\99_¢ivµ²Þµµã\ 4»\9b^æÄx\15#8Fm'\e\19øînFÐËü\99j-\7fêÚÎîÝü¥ÿË?ɯ\7fzô\86ð\8bwßüý3ÙCoÞ|÷çoÞü\e7\88¿}ûæûïtG¸|ů\7föþþÛoä\16\9b\9dc=üä§\87\7fùç\v{ÈU\18eû e>\84¥hØ{*\f\84\1fÇ$¬ bE\0n§ßL\16=\ 2\7\93\®\847I§`Éd\9dº\8d\88´\ 3ð\93Ê<I%¥\83°²¹\b\97\rÂ]Y\ 3ék\11g\8f\9e\92\rLºOç§^&ëQÛ\99´ñJX\ 6/s¢¼\8d]\17±9'¡\84Ù(Âûd\87î(¼2\83\8dmêÉüÕzcÑ\a«\94µèÞÎ\v\9d(l\86Ó½¾q\ 1Ç[\ fgݲ]ð2פ?\16áFQºUøÊ«\rQÄ\ eð¬ ü0\8b´ë<+`³\91=˾ê\eÐÏÒª \v\93ð§ÚF%Ø\9djG\93\18d0\vîäÍ\8cºZëƶzÛãÔJþÀµ\99ÝkmæÿfæÉV2\ 6º\82\84Q&\ 2gJ\8e³å%\86k\16 \réd\97\ fk\96=['\\94ÍSzTX©¼á(»\18y%\16pd\12eÙ-\85\1d\8d\19ù:\85#¯\94\90\84 {\8dì/xÔ1\18¯\1c\85;c\8bã^\ 1\9e\15\84\7f\8b^rX³l¬E¶<YÏ"pËV,Û\80\88\12z\19¶\80$Ý°
-\8f\10Ö\7fàÆ\16äIV\91zD¯\10\82ð\ 3\99\8cØFÖ5Ú\8e$DQ{t+)òü\11Ò\8dlXèμL Hõ"Ý(ÜC\16\9f]&Ä\1cåÖ²íÁlɻ͢Ga\e-yÅe»\ eÙí-X\1d£4/÷\9d\90ãôÕ\86\887Æ^,o:eN-Ì\9a(¬\ eg\eú÷çÞÇ¢¼µ:²É\v'èÚp\82ÝI¯r¢\8c°¼ÿ¡6³ oóÜîå\ 4½L\9f§Uò\a®Íì^k3ÕÂáøÝS1¸\0)r\f\14@D\ 6Ð¥Z\89\93\f\95\8c°LÏ«PÈøË\ 2®!\fEÔÔT ʨ&\955Z-éÊ\19ÂMmÆ v3½Ì\89Ë\15ÔïCkGäæI¦@»\9b\11ô2{¤ZÉ\9f¹6³{³Ú\85ªV±\v¿x½\ 6\99.Ó\12É\91 Ͳû '`ÄgiEÄ ì\6V>Z@Â\18\11\8eeMÈ\92\94õ»bmè\9c\90\89¶B\88\9adÈe¢\8bð{\15±¤d\ 5Ì£¬\8dPà?\16 × ì\aHüãÜ*ÉÂ!ïNÉy¾\11Dké8¼\11E\8e\99Ñù\ 1â%9z¶ËD0*\v6\ 6a½Îâ\ 3´\87Eú'\90á°u
-µYG\rRm£D\99ÃÙ¯¬T\11\8ba\ 1áγb\ÀVa¥? õU\84ËFá\95²Ë\8a°]ºzò\8cË\943·=*1\1d\ 5:c\98ìJ§\92\87$\99\80Ð\99øüX·\93\8c\91,\ 5\91¿ùü\ 1\83dO+Ë.q
-Ë>9CÔ\91±½J\19;\8eLÆ\11\98\9b°\82)c3\fKë¡8"÷\ fë\99Z&¬V.XfÖ[°´eº-¸n\ÛæÉÑ\ f#´\17èºÀ\ f\8fÐ\f\16ô¿èÀòȲC/²®À\87\v&+\1fT¾äY\9eOô×$\1a\81<§ô¡0ÎÃ:êí÷\13t·SC\81à\1c\r¸Íb\ 2N£BP\94\97\99ÁÄ\16e\ 4dÞA\186\8e¢o\14\9f\1f¹`@Z½(o?\87®©J°;ê\85\95*ý\90D§ê\9a\12yt\96UÓÝÒ(ze}´Z¯>}mkÿ\96Þ\vaeï$Nèq\8a*¯chË\84¹ìTQ\86E\ 4Gw\8e2üë´¡\88°V¢\8fG¥ba\95éе%Ë!àOí\9eFÑ+ÓU,ÓÜ×\93}6\83m¶¶*esÏJÏV۪Ͽ\7fÏÚ\ 3²HØ7¢ÌÊÖ\91µ\ 3*\11\18ú \v,i/g<\8aH\aA´\84\84Yè\ 4çEp_µZsÑaíT\82Ýí¹M7%&\99"À\11×v¢½P½\9b\11tyû3ÕZþÔÞÎþÝ\1e\16Ø>ÇÐ\ 4-q\84Ѩ³,\81«\89ô_\rKÐ\ 4¦$3Î-K!\8bô%zÖƲ\ 4yT$¨µZ\96TW\90Yã\96%H§2¯òƲ\84¶Ö\f½Ý,K`\91¼\9b\9b\96\ 2M\17Â\1fzÓ\12\99$X\9dÛ\96B\94-GÖEµ-\81\10åqzÓR\88\19ò[qÓ\12\98j\8aòúnZ"Çà ÷¦%²K\18\92̲\84mb\9cçµZ\96¼B3,\81Oæ\8c}Ï\9eYDTØ[B5,\85(3¾¬óÆ°\ 4â\ 2S±\e\96ª\0à\86%¬,xÚ7\86%ð[vYµ,Éâ\81\95¼\1a\96°\98 Môv%Yr\13FÃÍJ²ìËLæN«\92|M\19\ fÜ\19\95À\a\90\84ÍJÒDJsv£Ò:ê@õ6%\11°\17Ù:ªI FÊ"ïï\16%Ù\11\10̼1(\ 5\15#\9aE ½7\16\91\0Ý¢$w¿\82á\7fcQ
-r_.&·(\ 5\99°"ï\94ªz \9få¼í-J\ 1\9aë²V\83\12öͱÈK¹A)\88ôÌyÜ\e\94°GQ¨u\83\92ÜWvcYAnP:[Z»]\8b±5!o\fJ\95èÖ L\88\82ùcÆ¢\10\99\ f¯·'a\9b\8a¢±×*\ 1\16K\18Û¼\r'ôv\9eF4kPmÆíE~«Þ¨T\1f§Uò·ðfö¯Õóh\11\83òƨÔ\88f\f\ 2?LëTE"j"@jÝØ\94ÀI\81\99éj\8dzÓÖ\8c\13:+O#\9a-¨µcÖ¢v·Î¦T\1f©Vòg®ÍìÞì¯Ý¤ôù\8a½,ðX 7\8e0Ï\ 5ÓT\9d*KyƾQ=\b²aË,\ 2'\ fj}\ 5\e\9a&³\1aC\93È"\9f\82\89È\ 3 «\94\8e\ e+uû)\99\81\12[\96T\10>åÎ\ 1³ýì3\8dr37á\97Q\17b\9cD×_Ã\ jz\87X®Ö\13\ 5£ú"ܺ\14s*8a]q\ 3·\b\18\11\8b\ 1i1\ fQ63á7ª\19P\b\81962ÒÀ)úvE´\f0îZ¯v\1e\96^\z\8awçÎ.°\8cjâÄ. Ò\8fÚ \1aU\98¢HýY\r¹ô\1aDðÍEíвïÏ\8d¢}\aÿ\ 3dÉV/ÂIе¤ßý~n¯^Uò\1fE\12=´V -qàêÝ\9c¢×ùSÕzí}¼³7|Ré¦Úô!ÒÊ\86\9d·\8e3h#dÕî9Cµ\14\ 1mv×\19¤Ð )g7¾3Ù\9bEØÃ\85î<\13-^v^ºÓlîc\e\99\11o¶q\9fQ\9aK¼\83úÏ°KÈî\1a\9a\ 3\r*\82ÈA¾HÔ\83\ 6MVöæØ\hàf|²êCÃ\ eÔlYîDÃF\15\90p¶ºÑD>\90Î\94u_×\12\94}\99Ü>næ&\83Ö%âßÒ<iÂÝäæ\t^\av\92lB|]\8aõ\15ª;\8dº\116ðÎ\9f\ 6e¿¸OÄ\1cj\145§\1c;\8f\1aüXYº¸ºÔ\ 2¥\8d¼q©Q\8b\86ÂQ]j\106eÿ\89\9dO-£Kl×oN5Ù¹ô\9dÜ«\16°qÊh5¿\1a\r\vSpw\1c\1dkxsu£¸g\rjø\8a$ÄÕ·\86\1e\1c³ó;w®Q\8fYñ\8eî]\13][¸\8bÈ Õ½&\S\ 4\1dÛ\81Ü¿\16é\14)¡9Øxá\ 4\8a{Ø`E\93Ç=lh,ÒBu±Á"Ie¤:Ùd+\13ÁÌì8ÕË\16#4?y êf\8bà\84\81\1e4ó³Á\18À¹¹q´ÁòC±²zÚ EféîÃù²|À×\86¿sU½ÚR\8bìÄðå»\8b\v\ 6\v¾Mõ\84UÊÆãÖÕ£GkɾÛý:¯\e8\80\88 ks»AW¥\15·ÞR6\8e·®^}òÚÖþ\rÏ|o2¾rû0m\9do0±pÖUOW\f²§.¡ùÃ\9c°ñ¾µZæWë\1aª\14»áÆÿ\86Á\9d \r·¦ \81\84ØÝÐ\b\e\a\«U\9f¼6´\7fÃÿ°ò\92p4s{%\98ýl"c÷£
-\87?\8b*\88}s4\97\16TL(4(\93"\\8f\14×*µ½\19á83ô\ 1áå\19f\15á\11ª¬Ë´-§¨j\94Ôo×êÁ±F\89\1dÌdÂ\1e<\19·
-\13X®_9\15¿R¶"ÞS®\1c\13,30\83bÛ?{Í\9dª\93 8Á\f6\8dm\eî¨A÷\19´\ 3\9b3ì¬kÀJKp%`\998E\95\90¢Zh«'L§@\9fkM5ÊØXL£Ê+P\ 4kmea\ 51äî\9eNyn#ÉGkÕüékSgoù°,ó\84N]8k8\156^]\18lu\98Ý\v{ý\98a6v¿n\109\bÖ\81c\97&a^é>[ð\ e\9dl\95\92¦njUjö©å¾Ý8e\9f\94æÛ\94\8do·Õs§mäBH=%-mn5*Ftê½¹ØÇÆÉ\86jÛC\ f8x#¤_\91]¶\1eÞ\18±\15ǹ¹xë\9eé\9e×Jظy[5wᶦ\1aÅn¹qõrk¥Æ^Û\82XL[\9aßÒ \eooW>}mjÿ\96?\80Ã\17lKØCÙê\85\95êzaµÿ¹^\88iA#J¯\17\82\89\8c¢¡T½\10\1aTÀ!
-®\17ÂÆ@sW¯\18VË\9d+\86Õ\ 4ç*\1f\fÎ\vÌ\8e½b\bmoì´G\18ÅÀ\ 3]-ôï½Vè´ª\14 \r3SÕõèØKp¹ô:!\8cVKÆ£Õzµã\'<ïʽÙhV\13ÅF'lT×äh\87¡ÅÏu=| ï{£\13ÒÊ\ 3\85¤Õ\vÎ\12k[\95Òki\1dÕ´¹Ö\96k|í\9e½fØ\9eÕ«oUÛÚ¿çeïñçؼódÐ\13X\98áÓ}µ¥\82ÑÐW\97Ý 8«â\80Å4Bb©\147|Ó\94ÙÕÃ~\ e×[k«Rì\9eÎ3\8cºÂZ \ emK¶!a^swO§¸ÕÜ\\91µ^}þÚÖþ=\7f\10ïqÄò\9c£ên#Ö'¥uÑ\17ÖeÔEO±!&\9a¬#íù"M®dÞË\ 2É\83ð\8cÕÁ\e2)èl\82í<\ 6å\96"pDvp\19¡9Á]\19áF\95\9bÓ\bç@\86\bï"¶bµ¹\10Ú\10\16\8a*\85xU\91Kåa\ 3µÈfU\ 2\18e\r:Nò²ªâ\8b\1e\13yå²ÂZ \8c\85ö\ôk\1a\8bÍehö w\98°\9bÃ\18 WV!\ 5\8eæ<Ñw\1efúµá\87vü£èn\11ù àÇN¨\a5m\8aAÝÊ\8a²\15)}\9aGP
-Î\©À\v\99ìpC\ 6}\ 5l9eDS3\96OQxç¼.j \8dî\9f\8b0\90\8f\90\ 1`ª\84²\17å©\97yU/\17Ý0\9fÅ\15ÌL´\9b\94\é\85ë;Mº\1f\17\1dNX=\83¾\14ýxç\13a§ÖE(ù0]È\15yÉ\ 6cnT7\1a`ê\8c0]HÇ,\11Ã\bÝt\9e\eAçIRØMW-¶зä\ 4»¡^çÄd ×ÖPÔ-²Ý/¶=³{¬Z>zmjÿ\8a?¤\f\18'øýé\85_\9a\fX©ð\9e\13\17\9e\83:ù\8b¯D\f\14 ÓÕ\18Í¡\81Y%Zz\84\1f$²ó\ 2ÌDð¬\8d~\1dtÆ\99¢ah²\18DM\9aH!\aÂ/\8d\89 \ 2¨"\14ë°$\Ahâ\1f\1c-\98¬Þ²:(pÕ\epZ*´aíÅ¿eG\ 5?T}I¦¥
-«\95"K§\8a\7f\8dº$\170ÍU&í\Ñ\ 5(ó^\11\87¥\97\8f\17\ 3\9bÀÒ§\ f;ûÃÊ\a½e\19í5\9dâ\1cbÙPÕX\88}\ 2ÆBy\19ÞJÛZ;\r
-<\88\ f\vÙ]_sµ1\ 1°BÇd\84OvT\8bQò{r\8e\8fTÖá\12\83\89\89 \92¬c¡\v\18Ì4©\81\90ÆL¿P9É"Ê9¬gcÔÀ ¨\89:\9d¤ImIÖAUMi°ÊÜu²\19Ô©ç£\1ex*¦\19,`JIý³fÃýQ\8d¤%®Îëh\13ô|¦ïX\v&$\10kx\19ÚÍ^m©²¿\14\9aAD\1eÉP½\vó\81©M-óý\9c¢\8bAúy\ 1ûlõd¯\9aú\96ì{êìtN\9b®\10¸}èZ\81I\bƳv7£èuõ©j½úäµý\eVÇ\9aÌWz±0ѹS½ÚRWµ]\ 2\8cB÷\17\8c\aSÄ<\9c£bÒ*E\91\fA±9]=Y¨qÚ´U)vO¿Ò¨\8bÊ®-xEaál÷t\8a^éÏÖêÕç¯míß³ö\80\fÊ:aÇ\15\95\8fÐÃW\e*vfØ'¹>ÕX\82Q\84án)D:T\82/õ\91~þVM¶8X¹[S\95â·Ô++\15Ò\ fôÞ\16 \13\10Mü\8eö]9\84?\97Wj/äí\9c½¢¿<ì¬%\ 1&\ 1àv2ÇjGÍ\10~\15\89\17rT{\ f\ 5jXC#9\80S\94éÀ\9e\ 1øS Ú\8aóÜÚê(vO½²R#äºrèÚ\82ù?Mý=\8dòÜ\9eÖ\9eÖ«Ïom\9d¿gí\81\ 47nT¼\92è+æ&«T\18× \83\83\ 5\8e\bÈ\ 3¼\80¢\1að½"ÉÍ\8dòÜ$\92i\9aç¾\1eñ\ e¥k«Rü\9e."\18Õ\8c\15-á\9a\f4ª·4\82º\ 6üɼV{%oèì%\7f\0=¾â\94±I$ÙÃ7ÈmlR3Ó\83:t\e\9bÏ<ÁCäØmX"Rq»»£·!èÓ×SáÛ\80ZO\víË\86ß\8e"\ 4\10 ãC@\07¤Ì²N\rÀ\8d®R×¥#¸Q7Mî\9b1\ 47í\1fH\vW!Ü\94o\18\8cæ\18n°Ô´î0Üx7b\93*\88\e\ 6±\bÞtÞ;ûMÈðÎø@\rl\83ã\86\16\93TyQà47i\80G+¼ºR\9e{·\83ãwõ\f¨Ý5å\14¿¥ëAF-W\80Vµ¦äNq¡(ç·t\8aË\80SN}µúJÞÒþ\1d/«åO\bê¦×+:ª³Q\15\95á\10jÌ,\99Bk\ 3ZW\8a\1a+\f\8fÝÕ3Èvk©\12ì\86za¥Êf>\8féÐ5µ\98-¸ÝréLÆõÉjµú쵩ý;V\9e\ 6³mÆv/óW4SCZTª\bPr\1dBÿ\80ÚÁÓÃÎ\17Ì\858âìËJÑ\85!\8c%Ï¡«\97`¥.]SNð;:g"\11Ö5@ºZC\98Syíoè\14\95êüÁj½úðµ³\97üA\f\14\15=\8c\85DÀt\ fp§HF{¡#ܱZ¦Döf\10w¨8-ÚÑ1îôæ\81\rT\90;Ä\9du\89±¡Ü+E¥\1c\85¹·j\8e`\87´m\ 6p§¬¡×w\8cJ\8e
-\81¸BÝ);ª:bXw0Ò*\W°;\1cåªB8\88\1d½OA²Qf\18\19üÊJ\15¡f\8c¥4°;à<tÒW°{¥¨\14d`÷VÏAìq1 A£¸ÝÁå'£\86+b\7f\1dë\1eéêIsú\ 3\883×\87u¬;|\10j-s¬;|\vi1÷3ÕR(\13Mûp¬;\9cìDOT¬;\95\8e\ 4Ã\86£ÝÑzÕ>*Ú\1d\90\ 3Ú\\fì\8e\ 1\b!\94\86vÇ^\82üµ&&\19Ü\1djø\:¸;ö*>Âù\8cÝ\19\81\1d\v\8e1\f\88\98xµ¥\8a
-\16§\ eòÎW^;Ä»\13|\8e\10¥Þj\19\90½k¨Rì\86za¥\ 6W|½)À¤b\8f±¯\14½Ò\1f¬Õ«\ f_ÛÚ¿d\95÷\1d\b\ eTW\ e\1eÑè õJ@vL~:J:ÊÔÅu4*\fWtË׶ nCUo÷4\8a^i õ®\9e\ 1Ù»¶*esÏJÏV۪Ͽ\7fÏÚ\ 3\ e
-ÇÜY²\9b°\eU8\18`!\15^.R¬,bHÏ\8eB¯\14çL\ 4«·z\8egom5\8aÝóùÐáÞ©¡Ð\8eÒÚ\1aíÍÚ=\8d¢\8b½>[W\9fßÛ:{Ï\87¥Þ/A¿oða\ e\7f¯ð°\8a\7f¯ø°
-\80ßàÃ*\ 2¾âÃ*\ 4¾âê\ fl\83\ f« ø\8a\ f«(ø
-\10«0ø\r@¬âà+B¬\ 2á+BÌ\91ð\e\80X\85ÂW\80X\ 5ÃW\80Xõ©m\0b\8ev¯ø°\8a\87¯ø°Z¥\87\87U\87\}\81
-\8a¯ð°\ e\15ßÁÃ*,¾ÂÃ\1a.Þáa\15\18ßÃÃ*0¾âÃ\1c\18_áa\15\19ߣÃ*4ÞÁa\8e\8d¯Ø0GÇo a\ e\8f¯Ø0ÇÇWh\98#ä7È0\87ÈW`\98cä+.ÌAò\eXXEÉW\X\85ÉW\XÅÉ÷¸°\8a\93¯¸°
-\94oÎk\87Êopa\8e\95¯°°
-\96¯°°\8a\96ßÀÂ*\¾ÂÂ*^¾ÂÂÎWãÞõiÐò\r,¬£\1a\98«\82Ô+ÜË¡ì\eTX\ 5¼·j\8e\89oM5J\87Óê¨\86çªmUÌ\97ßr\ 3\r«OÖU«OïM\9d½eÏô\893ß@Ã:ª!º\1c°î\98¯\8ajï\91a\15ûÞj\19:¾k§R: VG5@WkÊ0_í\86\1d2¬>UT\9f»¶³\7f¿Kºes#ÂØ&,¬=\95
-3¢ÒÕTôaV·¼\94Àû\18E\15\7f0ù¸ôõ\84M¥4÷MU\8aݲ\9a\f\94*Ë)ÒÌQÛ²\9d¾»g·÷·Gójí齩³·¬ká të]>&êt)ëÐ/Xô¯¶Ô á40Æ\88\8c3é\90\8dIu\rÙëS£¸\15Æ4©Z\ f;ã\9cú¶*ÅîùÜ\8cvFM\1a\8fÚµ5!'õÔßÓ(ze}¶Z¯>\7fmkÿ\9eS?_»\847p\Tã\98\96Õ\84ÑF\85}\8bI*\801ÇF\rl9åþi4\ 4\9eSTïò\84\1cµ\1eã禹k«Qì\9eÊÖ\9d\8a¸\ 2xâZ[BYVú\91ý\9eNÑ{ú³µzþüý{V¾\94\8b \1cØ~°`^m©\9c
-<[§ÉR\84\ 4HOz¼ÑÚ(ú\1eÀÂ\94Ø×#P:ômU\8aÝÓ7¶J-3A|Þ\16\8ch¥»£~׫ü¹¼N÷>ÖÊþ\r\9fr5\86ýj\14y,\et\8bð¢W[*`Q4\98F°§\85\98\11M3\91 6¯\1d¥®©9lê\8d\88A\ú¶*ÅîéÆ\9fJ¥:Ú\9a\82\95tíï¨\ 4_þö`^«{#mgÿ\8a??C\8cß±3UÞ\88ª±0ÅW[*ÀfIc\98\13\1d\8f2ªK´Í:S\fw\8aªj¶\95×jÅ\ 1°µ©F±[ºçר\vL
-áÐ\9a\82¡5Ný\1d\8dòÜ\14\{²Z¯>}mjÿ\96?ä\9c\84\95Dô\19Q\ 3\90{Ñ\LF˺eÁÙ#\8aÊ|\80>QT}"·µïúb"ô-"u×:\88Â(K×\88\13ìN®\9f+Q\16s¦\eÜ\9bY4&ºÝkéB²ë\ 3\19±>±5³\7f«æQ\8dª\ 4¯\88gqwb%JO\8d³ú@©.Ú«Ô\r¨Ç:AYëª\1al\ 58BQU@Û©\ 4»\9b^æDÌ\ f0¥Ú\ e\96\ e$ïz7#¸\aV\9f©Öò§övöïö\94+\8f\eìhÚÆ\8c\ 3ô^m©\10ðf\v\90\89p\ 3AO\19£
-\12c\81%Ü)κæD\vk\87·^û¦\9c`wtÆ¥ÄE±Ü]CÅÂÆÛ\rKË\99Ñ=XW\1f¾¶µ\7fɧ\90"v\1d\19'µ<SÚ\86EôÕ\86
-\13\v¼ÁPÎrX\15'Cé:Ò¨\12+AåM8ÏòÔÕ\1aÕMÖ5ä\14¿¡^X©\0Ô-êÄÒ¦h½I¥»£SôJ\7f°V¯¾Rmkÿ\92? \8c\v¾9[J\98à\0\91F\8c\86k\80»\16Øã ¡lÊ]iÉp\82êq ÇK-}5¬¯°öMU\8aÝÑ5@£Â-\ 2 Ck\v\99ICéni\ 4½°>Yæ\ f_[Ú½âÓÏK\1abFê<" ``^m©°8M*m©m\ fÙ\81æ¢Áªie\1e\13£è[ÁF0æ¾Þh\96 ÖV¥Ø=ýJ£Fe\r-¡\88&\9d»{:Å\87@\9fÕ«Ï_ÛÚ¿ç\93n®\80ù$uª%üùÕ\86X<\ fÁlÖDFýd5ë¦\99u\8c¢RFöÌ{µ\9e\88YH ÔµU)vK7Ê(Uº\8eÉÓZ[qÔ\10 vO§<·\87Õgkõìñ[S»\97ô\1e|²\0¯\87\ 3·\9eÊsX<çW\8fl\ 6\ 2\8cx$\a6Ë\8b\8eK(\r×\f\84\167ß\1eÖ\\10~Q\1a¨\19\16Á\91©-\fÓ¼`0h\ 2í Ͳ\b\847,\rÑ\8ct\8d\0ÛV@ó\8cÄ\vD8wxæ\89Ù\8es\833ÃnJ\1f£\99á\8b 4\a3Ã
-=:Ì òY&P15(ó\ 40:õÃ\ eÉ,wS̾\ 3\99gS+*\8ey\ 6z\0Ö\8c\ eƼ\0Î\95Ö\86b^VY¿)5\103\85e0¶\1eÃ\f\93®A«\fÃ\1c\14z\18\1a\86\99¨\19\18\107\18f gâhY»èÆ\83LFéÚ!Ìg\ 3¾µ@\16\98¡ \17ë\0Ì\8dhVm¤Z\J\87KFdwÚÃ\97\17x\ 6`\19râ"OW,¿%Ûi\84\ eKÜ\88\ 69ní\18*¹Ý\ 3/·gòZõ©\9d³w{ØÓò\14à\ eÑ\eqòØ\ 6¹\©\8e\^\91\92E¾;p\19\ e\a~ïpËp\19\83ß8lYX¸ì\88SC-3±\fY_çQ\87³\84
-\88\83\96§UoU±È\98úèÅ\1e±,\v|e\9c\8f\13\13òÅu0d\ 4&í Ê©§\8c\r\9f<n\81ÉcC$\ 3.\f|\92\ 3\92#´\94\1d\1c\19*v\83"G{\f\a\18#\95\92\89\89õ\ 6yRH»Ó\908=¦Ü0ÈÙ\1aé\11È\ 6\82à÷É:¶B\8f\ 1-@Çn\90Ç\98\9fK^\eð\18Ís<\1cw\8c\89Æ ×\1ew¼\14[û\ 6;F×ÐÎã¨c&¡\9d¦-èXøÌ\14\98ªÖ0Ç° ³\96C\8eËb\84\1eq\1c\18\ 5\ feÈ\11Çm>:âø|\86nY\ 1xTÆ õ\80ãF4\940\13\11uØâÅÍW=Ø\183\96ò[\ 5üü8·f\1a¡Ãþ6¢A\84[;\86"nwëÀÆõ\91\8cÖ\9eÙ\9a9{3\7fqØÞ¦iÚâ\8c\eÑ¡ÁfÛ®àa\0ø\97\1dÄX\ 4U\86\8e4\84±ì»sßJ%lðÅNtH°·SQÃv³\r¶Ø\1eÈií\89\95³÷ò\17N\8c\16î0¾¯z¢C\81±ØpFzE\v§l¹\12{P1\fe¡t\95°¥A\80ªÍ8¡\aø6¢á\80½\19\ 3
-×[uhâú<^§¾\85·±\7f-\7f_¤lbÒ¾\1eIÜ\88\ 6þE?\86\1e5\f\98ÌÔ\ 3\86)\13L\16;Xkeu¦´v*¡Ãó6¢Á~[;\86\fnwë\0Äí\99¼V}jogÿnþÒ0\ eÁùÝc\87\9dæh_Y\1a\9a\83Ñ\ 1Á0W1£f\8f\e\16Ʀ!\9cµ\96\b6ãÔ!\90+¡Çð6¢A}k;\ 6\ 6®7ë\10Ãõ\89¼\8e¿\85·±{«K\9e4xÌ#sB÷\18ÃFu` "Q\ 3å+Ç\ eʾ\\96\92·\10C8ü4bAòe&ö¶\86*¡\87ûU¢£\ 2k;\ e\1c¬wëñ\85í¡\9cÚ\1eÜ[:\7fÁ'×A>;ÉÄã\9fÀ\8e\1eùåý¿½ÿF\1eäîí\9b×Öè4\1e~öëûg\97j\9f^¼úæW÷o\9fß¿~ÿÍÿuÿg\9f\ f?ûÅë÷\17jã¿g¿}y¯oùË7ÏÛ5\ f?ÐoÞ|·{\1e¨ jÇCOÅcSþîþÅï~ïoðÐ\13ýêíý\1f_Üÿé\9b_¿ùÓ;k\#·æ\ f7þÏ/¾}ÿûG¶}óæå»\8f½$úQ:åÅý»Ö%»±¼Õ\83sn_\7fk×^<Hç\7f¼øãýO\aý\8fÚ\18£:\11\8c\9aV\95ùË
-T£ÌÝXB\1a.\9e¢£àêO;LÇïå-W\88Óæ~<\ e§Rësý²kà"qsý_â8\9d@\9bt\88<NI4\99\91g¬\8cK*ÂB¡ÐG?®8o\12±L\1aA\8c\8c\81Ù3\84\83\88Ø\f¤öF\98\ 2\b"\92D\10ph\15 |;\12\1cÆ\ 4Í ,\13\88\1am\fL\10\e/n\8c]\81\9d!\a\84îs3¨e\9eѾÂî¥'5ÕK\82.¼ w\ 3Ì}²/\8bÊDÿ\89\b`~\fÀ\ 2ë \1d&ãj§$0 D\b\91ÙF@(ô²¤äò\15¯\1aIÌ\13Td´\1d°\ 3\11U¦\84\92\96U )Ö7ÓDðI}î\10\91hÛ\ 5\93Ö½\93\92\ 3\9c ²§ò½d?^§ÄÄ +_\1eøM$}`\ 2Õ¤ßgæñ\8d\b\8e*Õã\©y\ ez]Ê«R&\ eÇ\84dÈ\84vÑP×®\9cЮ\10Ù3 Ð\1eÏj\93Es-ª\ 1æ<Û¨!sø\12\ 2\ f°\9a4è\1aï\80Ü\14T\8b(+ã¯Ò¹.n"\8c\829\89\91 jÖü¡¨\15Æ$7\98\14\86YÄD\aZ\92#ÿçÙ\ 2¡\19\1a\v\7f\1fM²\8b\8a\14\1a!4\ 3ã\154÷\ fS¶ºÿF_!\8c6Ps°þ\81\10Á AR,\18 î\99ze¦n*Ô\15¡\9flkfºZH\18«Ýs¥`\83@=7\8b@D\9a\93*Aô¶\133n
-s\ÔV=²#\ 2\8ffp \10ÒúG}²L³Ñ\82øuØ"ÆÙâ¾`åâÓ\8f´\9aÙ\9c\ 1ôqI:°©\14\rs,\19Ã2BÅW\1cjb´\17\12Ù\ 4Ï\96LO\9eE]-\11öY¡Lú\95K±Ør!eö'\ 5À.\8dVob\12\8aÊa3Î='%\16\1d±)yzþ\ 2\83\11-LÉÛ\9f\11¶\948%Ds\8c\84»á(=Ì÷¹äÙ^\10Þ#¤0aöxMù\96\10V\v\97dfÆ7XO0á\90\ 4sö0¸Q×ô
-\ 3\18ñy£\ 6\90\ 2 \¢z0#&\9eâ\11c»,E&ð]¦¨mÃÙE\18\9dÆù\89ø5ë÷ìNmx\8dg"\eó\82\9e\84Cp\95G[³\85¹ã%ÊD4â´ÚÐ1E\ 1ú\a÷\ 2³b(\12ò\\16¦ò°8\19,ü¹ëI\12Çij\9e81@`Â\ 5Xg2\8eÂ
-\96/\ 2\849´\10(v\17\88\8b"~\16i\94Í\10®\18&í`bÅ=\81\ 4\83ifòã4&Côg
-Ò\8c]\82ûX6 ÊõXüúbIãU õ\8e4s\14\ 4ÓD1àZf"Xt¯¹eHD@Û2ê\1a\ 3!ad`gY\8b&B\ 3?Ä÷Ù»c´\0|\10\93]%JÀÚ]U\80I µÝçÖùÜ*\10\ 3\81\81ÄÈÎPna\ 4\&\854,\88°^VåÔújAï¶,:+i\9bY\ 3OI\8aÀwÐ\82\83Ø\7fÀ÷GÏæ\b"\16Û\f\80 ó¼Ù\8e%\ 4n\93|\1e´\ 3BwÕ¸d6Å\ 4\82r/\93\8a\85
-bÍ£Y\8f\9bDn*\18£\96ÑS$Ê\82Ã\94fø¬Æ¨ç\1ciÝù\8dÆ\80¢¦¯\9c\81ß êóÄ&\87äPd/\882À=aÍl\vD=&\8e=Mk3î\9di\87_\f\86:\92\80\834+K_\96Â\1càKY\15÷\8bÅ\85«°èN SU\bëZ\ 3~lS\94ÿ5\96\10\96lH\ 184%\auÕ0\17)\18 lÃä\1e\18Þ"ÃR°Ý®ê2+ØÛ\97Õ\12àÏÈú¶¢7\98\9fR7âÅfL ï\9b\96Þ<qi(KÌ23\91\17\17\1d\9fÜ\ 1\abÒ!M\96\15\8eQ\95\18>\84M2Ù\e6Ì9)ÃrAa-6\13À½HÀ¦\83¶é0ÎE\13a\b\81¡3~³q5\9f\ 5-\9c\88þ\80é\85IMõ\99õx\1d¤ \17!\89/&=ª\93#(
-\ 4Æ=\86ÂÂ\7f\97Õ\15\12\8a&\8d\9eç\9a\1f~Ò\17\80}xTÇ\a÷°Å\98Ã\99H¸µïqóÇ\16)ü\r§\95¶ úÈS$\ 1På¶\1e\99r\11\99ê5D]\16\0\ fæËÙâgf»"\91\9c\81\84\11ÁJÁD$\10¸ \82òd½LX[ÁVSl'\84/c$\1a\rñ\87ºÁ\9b(©\84ç&Ãë\96êµ\90\8e\9f\vo²\147È((ò\1f\8cG\98\ e7v\15\ eö>0\85˨Ö2\8a<ðNÍ\96\f\80\1f"ÞÆ#\ 1æQç\1cr®\99È1\82\rwße\86ϼ(ø®
-IxY´%ÊD3£Y\11
-\ 3´¢Ê<\9a·TºÛC{é\Â\ 6\838aìf|Sl\ eôqÅî{Ñ\91sñ´\848á|\85\89\11Ö\13\10U\99Ç\ 2ÈÊTó\13Q\b)+&M\9f1iu\18Ø\88è\9di\f\8d$¤U\8fö(£t'.\e=o=âáFY$Ì\8d³èekV\9b Y'/Ãð¤¬\e¡¾\9a<\93ì¹à\1d#F\ 6\84UX\1aÍàÊ]¢ò\v,æ²4ÁMW!¤\9fI_+³Ã\173\94Î\10z\v÷K:.ü2>ù¼ú«DÝá@\98,~\7f\82ï\16\84±ÊÝ\8bN,$ð\9d,íO\92i\8dDþ\8cèÇb\86\887\15Í°tcÒ:»y
-\9eì\88é\15Õ#I^\96 öça
-\8cÀÖËdcC¯R)H\86ÀD"'\84\93ñh\9aT\8c \ 45\81>w\ 3ÄBö1.«æx\8aI\8f\ 3\94\8d_S\a\an\98£j-~\15¡@Ø}&ØËI\0¿%Ô}ÕË°£,£¾\9ar³ \93\9f;\81Ú`)^Àù
-|2\1dÄè!¬À597\ 3Î\7fͺ?Fú\83\16{ļ\0ð!M8ùÐ\b¼\97¬fnqµ\96È\a\19\9b\149Pñ<\ 4È»ßI\86<\9dG¦\ 6Nàà\12\ 1SÀ\96\ e\9c,7?O%\85tbsw*Õ\12\85åe\eafzãÊB(eP\ 2Ó5#v\rB\9b_¶b!e?¦\ 5\ 4$;aÇ\ 4Í\8aW\90Ý\18\84â\81\bÁ\ 4¯iÔg\85ù\14\ fK6±jº:æL\ 1G\ 6Kb7\8aü8#\93\15ýv£¶-L\85§½PÓ\85Í\8f:;vèÊ\1d£E%\83Èõ\88t\fX! \14Ï])ól³\8d\83\86\91\ 6x\98é³X)\92\10\99ñ\ 2ÍÈ\8eBBñ~Db\ 2ð5Ì](\95\18Ú\19Ê\9fÌjJ1\8d\80Hbß\+±\98
-È°\82\99\a:`v#äKå0ý®sØ\ 4¦ZÇ\14\15×à\e\81Ç£xð\98\11a\8b îÍ4§Òt\86n\87MÇgc6$\98\ e\19²¯e\12Õ\87(zá\ 2øD\8e\9aÌ\ 1³±`¯B\7f`4ÜÿN\1dY\88ÉÕ/ª\1c Ð\ 3\83Y]\162\aö\9c_\86T\10h
-²?¿#¦\ 2£¡9\81 Cè!.\8d]!¹\ 3DZ¸hÇÙ`²\999°U;¢q\a+\8fI(\93Í«hÌ\v\199lZE\86\15\98`\8e%E£\0Í.~3¬3¤£\83Ýev[tQç\8biºô\0ëÍV\aì\8f\ 4N\14\12\81:$\ 1\b\15¤,_³ÚÜ8|\b_k+&ÀU\8fÜÊÊÝñ\90ÔÁ\0¨Ó\10~\98\92\10\:7y\1e\83rüâ2ZP3\ f\8e \8a,\8f°Vð,¢d\9c8[B(l»Ê¯Á%\11cf\86(L½¼2Ù\9eæöðù(º\12ŧÂù\98t8\80¡ÎèX\\15\18\94\84ãyÖz\15\85-
-TIó\85±»¢[70Ï\ 3\93\8e\93I(#V\ 1\0é9fw\961É\b\82î\16Í\99³ÀØ\84Í»r\10'"\83,m
-Ø\88¢\1e\7fÃ!c÷àQ\11ý9µ\10OÍT³X*4\10\98\8co1f \ 2Æ`QÝʯÒÝϲn0\9d+¦,Ò]²\13±ûÍ\98Ý\8bJPÏÍäMhOQ\95
-¨\14r\ 6¸4]8\9f)IFÕÿ|ïÔE\88\8cQ\96\1f\ fê\19Bi=¥\ ef°\7fwý\86'j×:Ð\vd¿\91íA=µú\1d±a\93\a\ 3:mR;\ 14©ÂÍzõt\b;\19ºz\92\91î \ 2\1e\98?§\9a&xG ØÄ ;æ\a\9fxƧ¢Ø\18ðCÆA\87ÚÂÍ\93Ú-bòy\88\ 1äk(ìÈ\1d¬ Ø\11¥HAs²3\13biæ=Pç)hzÌ\19\1d\ 5Ê\94Fõ\17-\0C\80\92y.\ 1(£\9fr\98á\94\9cÖí\95Ì\8e¯w(Ù(«æ¶È¾,x\875{\ e\f;u`Zéî\8aº£\ 1«¼,fpç\ 6À×LE%tìáÔ92\9d\8a\1a¶Kë\162$çqÕ¨\ 16Å[\82\970Õ<_\81Á\1e`ÊI\1f\7fÉA\8fH\bcÔ\8d\8d\16B½\12ã\10¬½\89\87+`EÙæJ³1)¹DÛ\12çvË\184\89+\19;ªÑö«\ f\8bèA\ 4¦¦IA\9a\94>õJà×W\139\16Í\1c\94
-\f\83`Ä\8c\f\ 3\93\8bv$K\9cjÒÐdë\87\ 1Ä\93æ\8c\8c<z\ 2)ÒÑÓÈÅ\9a\b\9c]\9bõ\13\11zz\92\ 58~f\b¬éÉ P²\ 5\9c|*Ì\19\1aT¿ÓgÅ\0dÍ^J¾Éx\19â\ fð\1aÓªpu\9dèHß´,\r\9eÎé\ 5*\a\9fm¥E¯\14>§\ 1\804\v\93²ú¡ÞÔ¾\b-\8cêb`B\9elrK¶\1c4ã\98\14XÌÌ\16n\13\8b\96Ô;\ 4\1a W\8b^\f\98â\16lLy+Ìêýxnf1å\86A1E ¨;\88\16<\1có
-J°L/´Rú\85¹\8cJ¥á\8bõâ¤~ÜEíP\9e(\12>Ü2z^ÔÙÒq2n\8fa»+ATHa?kÄ*7\1c,\ 5^¯V®Å2\9eòìA&n\82m\8e^p\bw\f,Æ\91^vja\1eÝ\\ f\ 3g6bbÌ[0ó5\8cyÜ\87q4%Õà\91\ 1ý-?£ ß«Ek®&?q'_&£ðÞ\10ÐWß²à\1dñÜ\9a\96w
-\17ÌêÅÐ\14\8f\882^-oõ\f!\80¯\89\97\aë\19\93Z\ 38\90ÜåÜì\vk\1a\8dòþ4\7fU\13[\81ï~åf\0£ \98ìÊôµö½d\9e¡½ú:\1e\99§f\ 1m!GF#´þ\16?f\ 3\98£Â«æ:gà\ f\80¡t\9d,}EÐ\f¡«1\17,ái\8dê5aÎQ¾\19rE\8f\04\8d£\9a\870\95©í®<úpe<)\8d7Ä\929\83\83\e\ 4&+\10CÐèÔ\19{ôjz\17 °\97"¬\7f±,5$Â6\ 1g\16TA¶cg\93¦9kL+-á$\84¶\90\18vÅ,¿£¾\1cçÈj\ e9\ 6D,²4W`4ÌÀ\82e\8a\84î\8c¦\8c\9a\9f=§ÈCªÈÍÑ%
-\ 2ærÓÅ\8e\137"á_\13ÏlAøê¢ßá»b\14>\ e\ 5d ²\1fY\854µ\10\87Ð\14z\ 1ùÑÔò\ 5§UÖàýuM¬ÑLÒ\91'"NĨ@%\0»\8c+ÏÙ¢\ 2Ï\10\1aì\11Èx\ 1M\Ç\8cÉÖ\19BEÍ.:G\83\813M¶)áDµÔ9, ïâä\10\10G\1e¡\ 3¹¹¬\8a\81æW>)þ\1eS»¨d;\99\19ù\1d@ ±eIíV\10\97\98¯È7\\98y°ÉÓ\80\8c¹\a\91 §Ñ¬\8c(\12!£\ù\89\89\94sy\15L\189)10ý\90í\94H\1f\ 1³¦\12\98\92~L\9e´\ e4Ùü\99Þ\1evH6Ã\89\9fU<ãÍ`\87pw\90^\86¿FÎò¸0§\17\\ 5#ÓäS^GJx\1c¸µ& bOѾAFX&d\83bÇñ)&\ 6\11G¼p\89On!\ 1\11ø(Ð&¸F\90Ói\è©¢¯\88\10\0¼ùªvîz\11F\17¾Sn\15\93Û&ÇQ7\ePæiÕ£\7f9ÛôBHË\ 4\14\8c\1aÐ\88wY\92æÓ\97µ^\98=LX\81ù¡Ì\7f\ 6\99.*\8fÓ-\ 69z)Ù07\13\9c13ѽª\8fÑ\bÆûÍf\10\87KR\98ca½iZÕÍJ\13¤R\92ºXcöÙ53§¿:3i¥e[j4\19U«â=\99*\ 1\94zOØ-ølTË°¶³\8b\v\84¡GÍÆ-¼\8el\92fE\95è&\9dåxM*.zÞTXLÅ-\96\90\88\86+\bóÅù2|Ù<\89($͸\89\89µ\8eÌ1\97Õg«çg%Mb9¯¡\9d\9e7Ñ2\ 6*\99
-\r\9b\10#YÏ("Ó\16R\16\9f\ 2tý\aF·\18)<\b\ f2<|WçR}\95÷Á·³+º\96¸\82I ±g\0\86\b\18\a\bL\8d9\99À\86Ã\90±\1fϳF{*ÿEL\8f°5XÝ\94¹\a]\15<\84Î.ã\9e\ 4B\9aS½l\84ð\ 1b°dÅ&\85ÆUÃ\1cÍQ57e\85é
- 0À@3%õ
-r\1aá\0Y¦\r\83\v\ e.\90Äó\8dM\141û+\8d\96t\1dÒH«â¨\b\ 4L\95é\ 4Ê\ 3H\9abNS\85´\ fè\8by¤^\ 6_\17\rtÈ×>ºá\12Dðÿi¬©.²Ì\14\9aÒxtpT»\ 2¾û\ 1÷KÔm\ 1©\ 1hË[¢\1aά\12½jÈô\8eF+F\0yÛds$\1cS\93F\8fê]\9aÔâ
-\a>ö1ûª2NRÁÄ«0;\ eMº+ÃÛì;\94:ï\ 6'\ 5EØ\0\ 1Ï\1dXÔ\aJ)ðÓÓøbßµï\92*\10\12D\1dy\83TÔ»T 8ámZk\8f+-ÛÑÖ\b*(\9c\8dð\17ÀûÍE\99×êÛ\ 4\rý\fÒd\1eò\19Þ\128Í4ÏsÑÎÅ\99@cw\15Ò§Â\ 6\e\12ù1v"\ 2u\91èaÕ«\9au¹à,\ 3\18cV\9d_L)\bå\17\ 6N"g\96¢ÚF6\1f\ 5\95\7f`\90°·g·}\90\80g\84J[ô\f¿\8cm\13 \99ÅÏ\\ 11\ 1\94\e4d\1a\ 4Z\8a§h\bãÅÞ\11\84¥fú[Õá\1aÍ{¸¬êSã^\14ô\19\99\9d\1cW\8dÞõpä\8d\99>\19=Ç\80YO&\1eåL\el±µ ¡ +ùƦ`Æ\@¼¤ÞlT#Q\8a
-Ò\ 2\81\ 2$:Äa\ e¤\ 5Òè2çUp\1f17Á¢1\8b´T\81°¶«¸aÃàé[Fõ¼3ï\97~\85\1d\a6\87Ý\f\89b\85¥L\rJpG\17\9e ¤>\1fv*\a\1a*ª»Þ\0\9aÁVEÇ\10MB¦'A¬¡ò\81§Á£f\91ÆËÔ\92,Ò¼\r·f\9aÕµL±\aÙë\15'´ªÓ\a\13¼\1eÒ=Û\16\8eD\8bTÚ@\80\1e\989\19sßÎD½Pïf\ e¼ÀE\93ù*tö\8cué\8f\ 6}\19U\16\9d®tá)¶m6XSY\1dĤ\ 4]õÙ\12jz-Äý@ÿBÖ«©h\9e%êD\89¬ª;l\1e³/©\92ÀïÂÿ\91\90\r\v\9bßaëçîê.è51ÊE\91\89\95hÐBê3Zè Þ\82ã'ÊüÎÊ`aæK\8d|\1fÕy\ 3Ïé¦í¸\12àaYÚ\ 1\1fJ[\r\17H\ 5\88²40\8cº\17ènd¬Rw\8fQ½ÉqÒ\91\81\86· ëFtÜ\ 5òûÒ\95»¨\85Ï\15\13º¡Ô4\86¯D/ÐÂ\bçjðྥ9,5YΪ-QR \8e\85\\94Ñ\93À³W`\92.-\ 5ª&å)nM@\1e\ f\1eöh©?\b\1a\92\1eCæKÀiüÍÊBߧº\92\99·L+qÈxÐ\v\84qtÐê\aS0ç
-\ 3ïuëãIV\10l£)KÄ a\97äÙê.{Âè\98ÆE;\e\82\ 2\b\ 5ý*+\8dH%\1a\95'õV\8fÉï&Ó\1f\16:Xd(/º§IÄ5N\8c3aæfx(PNÖÏH°®¼U R\95É\15<ÒT\98wF\88ܪ9\16,l].ÛæT\80!y¢TD×ß+'\82Ç!1¬æÇƨ\8e¬¥\16a\18æp~ª\13\Éã1´\0?\ 2BÈ\81\84\09é²Ð<\v+\1d\84Ü\1do\vJ*{Ì\99y®LÅD,\16åóÄ\93¹\ 27\99j%Å\114y¢\1443«4\\9dxè\\8d\87Ym\9a¹·\1dfµÊ"\7f0l+l;'\ 6äq¹Çd \f\12J³ÿ-\10æÑ6qX\81ùî¦\ 3í°\10®á[¦\82\94\8cS}5\139!*¤h\130r\8ar\97Àt '\1e\8a®sÃ\9e\88-\83ß!wñ ²Åò+à,v?\11ǯ¢\f\15Í,\ 3\ 2u\13\10`¹"!\8c¬A\9fÕs³\1c$dDä!\8b´\vM\8a×d\ 6\v\88úÁ\92ðÈâ\v\ e\ e\809lÁQ«¦\1d\ 2W\89:H~NKNM\86ÛÙB\81Ý¢,\9cL"\87ºÅ\ 4îÁ\17\ 3$MŲDgÄ4\9cPðF\ 4¦\9eôIç_´µÏ
-´Ü\8dê!®W\11Uf\88H\ 6ÉL$,5y\18\17ܨöm}Ä\95°]ô%\1f\1f\9aRá¹NÈMÏàDþwU÷ p\9deâ\94\10\95\11BÉ:©b\80°IâM`_â\ 3¯ê9áF\86ècvïª\9e+`?1Kã¬\18D¦¿\84Ó/¦ff\ 3\11,\ e=HD\100\87\18,\9c®F×\É*Ï\81Pº\10þ\89V85J0\f?3o\9a\ 2AIà^\90´\8fý*:\8f0¦\ 4\ 4\ 3Ï\88=<\ 5CàX\19\0qàø\9a]\90ÂeØú\11R®¼\7f¡X\8cØ2¢v\163êa)\8eS\ 3ÛYK3wôÅì\85XÔÜË\16\13ñÀÝ\8bËDKÔ~\0ØjT\r\85>Ûdü\ 5\ 4ÚÎIpg\14N\86\8fä¸\8a\0(£\ 2»\84§)J\18\19\93\89k\18u}ñ½xÖ4Öî¤\ 2\f\1cadôðnÏ\16\9fN\7f5PjÁÏT\ 5\11B\ 6\90jtàÁ]\ 6'.Á\90Y/Ã2G\ 5Ho~\15\11\0 \16KÜÍ\bû9\997\f\ 4HÎDKº8:-\8ah\9a\92\ 2Ä\88\18\83Ô¼ÕÜ®s\ 5$puë«\15E#@9¡2à°:Äã\13Ö\ 4P\ fP\ e\80x7xVÔd-s0\182\b«\12\14é2'E\1cÍAeV½,©!\19iÊy\98\15Q}Óº¹\8c\f\8a\rW°ã¬Ë]tD.\1c\95ó\81Ñ\88\86ìX\16µ¤LÆ°nL\eàÝ&?ªm^Ô\ 29\8fºM``©N\ 3\ 5<¹\1e\vâB¸0µu|'B\ 6H`ÊF\10ÇÙLé\1cÌxF°ÈYµu|§\80_A\92 ,
-^\1eëÑO£)ç£\1d:·\14\95Ðha\eõ@'Z\ 3¦U\8d\12*4\9a;a6Ë¢\1e2\97\98ú\81ÐDâp\91u +vC¹Õ¤Ü\ 4\8c\84®3\1c·\84»\83Ý`Ê\80@s4\bnô\1d\81¨Dî\81¬\90\e\10(ô£\992ÖüH¼×\O C\8etC\82ÑPïö}\18\98\\v&\96 .u¼ºrÆ\99"&Òæ\11Ëí>\fh}°Qq\1fÁ¬\9aÖæ\96\86°§sÆ-ÞL\18;7`0\92£\ 2ÅÀ\båÉ%\96¨\1eÇÙp\19ØèGì\0sqá\ fëKGÔá{ Ñ8\ f"w \98Ô\\88é\82#<H\80\ 3~.ÕúP[\9a54E\ fÑ\82E\88Ç\8cª¯\8d\96ÚyT\1c\90\9aÀ\81w_8;T\16¦ÿ¶p2è\ 1% \13:\10\8bSy\1c\ 56(\87 ²q\88tòÿd\8aû\99ÜçÆ´\v\11V?ù
-8Ü \ 3þÓÃϾ~ÿöÅëß\1d~r}}|þüûW¿~óþ\19ênB«ìÀ\12È\bÙL\9cTî_\19U1\0atÑi±¼\aÁàË\14\fô\88\9c±!uh\1cËv\9e5\a¤Ìv\a\82NI\19-î\85^êóÓÃz\98é<´sÍ\985\9a\92\vìzÔÙ\9c¢bĬ\0\93V\rV\94hiAT]2÷Ó¬!O7v\99j\89\b\1a\ 2¿ Â\14üàÕ\95'~\ 4ÅØÑ\ 1\97¢ëYÁ\0Eè½QÅ/ÅH\8c\8bÛ\16\83\81§·\17\8eºc\82Jä\f)\fzY<*"h¤\ 6(äK®¤ièRQN\80\87§\9c\ 2ÿ#15ö\1d`r0\12\17m¹Å\94UÑÑð\1c\12:\ 3/Ød\83H{\ 2BW\ÕÕ\83£W\12-Ë\99Ù¬A\b6¦\84¾à²\9c§z\19=ÞÌÌ\97õ2â\8f¡Ë\ 3\97HÂÂïÜfõÍ\92\ 6ð\97I\8dSLF\fSÇâVf°(pVlT\15¹1ZÐ!ð®\f\ 3\19M`ÆþÆ´ý àzÄ6¹É\84²#\1e\1cD\9d×\86§\a\0\96\ 2ø¨^\10Tðm\8dJ*\96÷dPïE½z³å\ 2±ã$é¬â>vã:ë\8c\90çÑ\ 4»\18\15ÿ¥ÁÜ\8bù@G¦\13Lpiúe³ìy\af\82ÀÔ¥Z³Ò&â_RÞ2\8f\9dm\9b\ 6'ì\85£±D\88{\88ÃB-\8e!ý\ fʸ(\99»¦Å0\ 3lk<ý\80¨åÌ}\1fj\1a\9b\ 1\fv¶\1dZ¯Â\82\9f\bÄUí\8380!,À\0òp"X\94¤]\18\ 3!Xé\9b\15u¸sã]\95Ý1V\8cgÍO
-îYBýª~\ eÀ\0×¹ÕÁV
-Ï\98\88\bê³\85 \12àIÌM~\89\1ctäÝ\89Ô\ 5\90ç\ 1A\8d\93m¨È,\9f\85ç3\98Ì_\v xh°Å\97"$4èt\9a<Ò\8f¯)Ì&\19ë WÈ\9e\ 3(\1eìÒÜú@\0>\0ç(\07ÉË\8að\17äÛ\98g¿[Qd\r\92BÑ6Á¼\17\85\0c\ 5À!\97/ÚA\1aöÑ\fCô± Ç\84ÌL\9d\ 2Ï\88¹ \89\1e6\1a\1eò\ 2#vÉ:Iy³\9cìfY\11 \14>RV¾B\ 2ü\b\10\ e*¢\ 6D\f4\14\16\82\7fX\v\1dà9\12Ñ0°?PNfï|H
-À 3Ã'º\e 5ut«¿Æ¾\8b,Há\/2\9aYôð\1e4oàà\b=x%\98S;´p\12@¢¦¨Ñ"ZK\8f¥Ï\f\ 4\ 1N®\11V\ 5èeF,\93\1aé#Ý\ 2Ò8\9dó\98ø:\15á|XýÐX¢Ý\912*\18Ø
-é7ah\87èÇ\10.¨\vÚ9\ e\16¤·\rx²ª½ÁÙ6\aF¢Ñ\98F\97Ù¢r[\r\18á,/Úó\13«¬¢\fr\1c¢®\ 1älÃXU\1e\85u\r\e6\9c¨¾\98B\80\8bbtÍ\1dB\bÖÛJ\vö\8d\8d°F\9f\8f\8c\97Å;\8e)êEºTÈ\bWuh{O\80Ǧ¢®o¾\ 2ò¦'Æ\rªTËÐ!Y ¸Ê\83¦#µ \85w§Ã\12ßám\84'\9c\1c\9b¡DÚL®ë\ 4\9d\f\7f.Â&1ãà\86#4KövEy\ 1l\9e\8a&¨Ê\ 1\86X\11\80cV\f\r\842J\9b8·\ 1Þ-\1e¹\87#U`\91\86\94 \
-p\ 6\ 2Ut5\ 3µ¥~gĪ cSQ¤3\8f\9b¨\82\ fÌG3Á;«BrIÁ\88Ð\13\1dh¼\ 5\88~T!ªFа½2«O9*\8a¯è\1c!\85ï\98\8aZÀHi@9uÒ"©Ùªg\11\13\81Nñ\ 5\e\8a\1eW7\ 5ÝÉ\1d¯a4ø\9c\89Ç È\84\11ÌxP\8e\1fº*\8ez Z\ 5oó\b#Ψ ~\12\12ò¢Õ\94eâBÂzBnAå¤r\84` \86\84Î#ü\82^¨\16\1fàáÀìHiö²E½\9b\81RªÙNç¨.í ²\7ftÔ\81\ 5:ø.JNÍ3\18ôì¿Yu\f\9eÇ>«\89Jð\8dPÍ_
-z·Z8û\96Ù\ 1»#C©\14¨\ 2kiá\8bF\9d-.\15ó.¨\v]çß\99¨ý\94â<\81ô\f\1c2\87¤gS#8\15\82-\83Õ\83\1fO`B\16\8f\80!@.«\18FíÎ\83®\b\84`.u3à nS#TìLKåð~´\ 5ìÌ+ü&\98E\8aý$§L´6)¡à´7Mo\90êe´]µËL\1fòÆ\95@\aM\15\0y3búUo%F\92Þ½U-W\f\11\)@©½\8co\ 609O\1eQï8¼\ e0n\16X@\99\rÌ ]É\9c:¼\15£äV<ÏX3(ÒR\93¸®5\90\90îàD\95È#+&w>\ 5\95è-U\1cAb\8bæ\9aH4rád¹ÒÝ\f6ê\89Û\83& \80rÒ\1e±(\8c!Ø\81¡¼
-ûWb&p\9aD\0\e×[X \1cb[xv{Pܤ^TÔ&»ZÈ\0P\18X³\13Ãã"Qô4ÕE\1a'ü*3$"åÂÄXĨ\18²\11Ò0n\9aíØL¦L¨¡jÙp\14@ê«Þ\ 5À;3o¦µF#p\ eÓõZCðA\85°Aÿk´ö£&óTpg6\eÔ\b?W\rr\83¥\fV\9f¯Æ+K\1a\a&ì\93\b±\82¼«
-ó\9eªÛ×\a"&çÅ\8cj\fH´(4\8f;\atÅ\ 1ÖzN\19¸\97Û½\10\8fG4è¤\18\e\122ÏûS[©_¦3~jîbÊôÁÙ\10-W৳Nój÷â`.\9e\82"ªE'X\90\12Ó\98ñäEµ¢ª\ 11ë\\8fQG\99(\ f¼8`\7fjÝ\1euýÆØ\19Ù
- \95TrÌ\ f\ e\10B¢Ô¯ê\1e]õT\1eúÀ\0\10i\85\8a\1a<D\ 2åõ¨ç\90²\1d:JÔ:®f¶¬\122\fîÚë.B®\16q8YÄ\86qã\e\e4µ®áõ\83\ 6A\ 2C\92Ì\10J\7f6Ô\90\14\9b\96Kï9v\10\10\89@¦\8f=Ñ\87²h¤\86ñé\14õ\8d«%\10¨¸\14õ}j<wr;ìby\1dpÂA\9b!A\8d³HÍÆ0ð\1a\82\9bôÙ4\b\92\9eHÚÎùfÙ$\93ä©R`!\85n\9dÔFÉ\94\1fàÔ8\7fp\1c[\1e\10öyò\bóÙ$Àdê\18kÀ©\0häRÏ\0\fºU¦Õ\82\8cg\8bÙ\0\81à\ 5DéÂø\v\82\vî´gCQMØ\7f£¾\19å\8ad>>Æ|cU _-\14y\1d4s\1crÍ\aÍØÂ\956Yð:`\82\98x\93\85fê\9a\9e\15<\80$²4¸äY\11 SQÀ3Oû\90¹;Y\94§_EH6\88\1a{33ñÀ¤\9e0~Ån8YR\b½hÑ \8dÉ@Â\fÅ!\98ÂsÌdK½\90,Õ\87\ eY԰¬\81'¬\84}\89öT\9eMfæ×iéìíð©Àm\83'"KKæß\a\81\11M À·\ 2\82[¾@ÌZI\83}\93\89ÒÓÒnF¶\85Üwqö\10Ù¤AãÙÏ¡\8e\ 6\8a\86$
-F\10\922«dY\15x\15D0\8bCSdN0Ð\7fªÆB\ 3;$3\13ùeÜI=X\8e\ 4B³\16\ föL4¢á{»\99\1dÐ\9cÜ(HC,\82çf³ \ 2ÒÌ)\\14\88©\82KR{;\1cõ\bä\80ø§\esò°Õ\99@\7f\0\86ÜxB\91\rÆk8O\19\ f\ efÏyn\01\128¥\83\8a*~\19Í\ 2\88ÁË\16\1fÁG\81`\9eõ;ýîÉ\ 2ÞTn :\a¡W¨`9\19Ö'Z¢ ¨1Uîúr\89\8c©Q\18\86S4(\91<\9aÁ4Ù@°#!ëÝ\ 6\ 3Ø\88B8Ìû\ 3\ 2ÍAv\18\82\12\16\8d¥ëB\19ÕÌWã\16V;y;Xº«Ñ\10CÑ\8c\17þfz\1aɪÏ\1aüøìèX\15\86^gå\8c\98í*\92Í:±\11\97Ë´\1aè®Bõ¤PH\9fô_¨©N;\7f5\87^1O\1f\8epVXÒ\95\1e£îù\80ÖNL\82e³è#\8ejv-\96hjU\88\f t¿ê²ó«\b\e@@\12Åa\102\13çÚ\90í\85ï'\95ìÁ\86\150NË®&o\93©\85YÄ31gõXr;Z&ÏS5\1aÆtÒ<\ 4ÊâG}\ 3Xî\18Á\ 3Ã\1f\84ä9«w\91é\1a°y1ßÓÒRRqµ\80h9\1dhØEÛ\93\13èC\9b\9af\83¶©ÛÁ·<ZúPú\ 6\98\16>hf}ºÜ\0Äw¨ \1d\8b³¦;ãûò\18B0ÌÙ\83\87`\1a5¯\1a êj\e«cWk\8bõ\88\86\89¶£`\82\9aåÜAGáÚí÷¨\849\f«\1cÜÎÀÀ'Mè\9dª\b°\1aj³X´!Ý|àV^\8b\ 4p\144ã¸\ 5øÌ {,¦ ò\0@tñb\8e\æãÅ_\96>aÊR(ËÔJ¸\1cÎ!¢ï0\85\9dPr\7f\95\11\99?\1dó»ØÖ\rà\ 3Ïs*\93JPNP©è\12«µÖQáe\b¬aìs%\8c\r\9eU\89ųóÂ\16\8aIW<º\vyl S\94Øyb\8b)õÅrM\90\0\89©Ø¡Û$@\82+\e\894ÙQ@\ 6\Ò\83a3kiX7î¶\84FÐË\16E\9e\80\bð\eC¼°ÁóìåY\81\804 \93Cr."\a\113ByÆ\98Õ`{L\ÍsÖ¢ærXÖ\86k!\11k\ fcD\9e´ªZ¶ØlÂw*wÌwï\8bs5È<\88\86KäûáûÿÏÞ»íú²,i}O°ÞaÞX²\91ÚTfU\9e.a\19ËØ\v\8c\10Ø ËjµWo -ÖnÔݸå·÷ø\ e\91\195ÆÜ\r¸'²/¸ØÚkĬª\7f\1d3##¾ø\ 5Q\84Ëõ^8ÌÆ&Ù\aA\8a\87í´@\13ãÊ\ 5Ñ0NyË_+c&!ÄÃÛ¨D>²q®\ 6c\ 2\ 6ï.§\ 4Ä\r\11\89\99Îié÷\8aF¸éé\9c»=\8e\9aã\92` û7]\1e\1d»ñ\1eÃ\88O\97Uc8\17\1c\87\95\87U\15\87Ao\8bh\fË;\ 1ëRýà#_\10S+i ¼³
-QXX \8b3$\fVmV¬¬`\81 BÕo¬\bîG\ 5óbC\90î|\14JéøЪ¹O´,G3ÖÎ~ù\15eûoüÁõ\v\vN£ OG\19J ë\91G¶\14Rî×I:Q\ 6÷ê\19\13 Ë+\8e}¨b\9bßßÕTh)\ ff\ 6\191,\1a\15\86\97\11{;$Mn· y(\ 4\9a\16)AQ47fk)"C\ e\ 5WÏ#&L\16Ïb.\1c\16¨\10°±UÔÓ\1atÐ1$\80\9e*øbµ*\1d á\9a@n³Õ5(é*ÝÏ\81Kb\81ûªk¤ãï\92j\aÂT\85±\1f&ø \95Êk¡2\99Ë{¦&\9fºå'\14_à\93á\ 2\85ô\e³)\88K
-¦\ 3¢\9ac\1e!\ fW0
-Y.1È\8de|\94A%1\87#\0#\9fÑê¹\r=·-â\ 5¢ClHÓT¸ \a7h&Ú^E^\96â_\1e\ 3¡ÝæíGM'§âé7麲p¾(\19\8f\8f\1e\v7-Ú´\15Û\ 4\90ØɸÿØ\8a\12\82{\84²\98ª\8b\86\85\ eÀå5\19A\ 3·±\1dTyiG\84\b®\92n|»,\11\83²@B,O L\99\87KÍ\ 6\ 3ÊFh$o\8e\9f,\8bv>;C?ÿ@Gëïü\ 1 ó\7fò\81þ¿GK\7fâæþ¿#æ~îìÖU%\96ù¹ø8!Ã\ e|ní*\11\vz.B»dö%xî½\94C\fv.\1a\8fò¸FçÂ%\85ü#\91s±v\9e÷Üà\,AQ$\17Ü\¬\98°PÉØ\\bsIÕ35\17\7fãT\ 3\9a\8b¿Q½\94¡¹ÜG³;#Y8î\bBî\90\ 2x½\81¹\90\1fBÑ\e¼\ÄT\91\9d\17.·A\93\85¯óÐr!\85.Ͻa¹(~¼$¶ ²ã±ÚéÅÊÍF¢`Ñ4\132áMÊ}n\83Z3(÷ \88o\80rÁe§o\11\9cÜÇ)î\17(\97 5¡K\19¡Áª\rg(Nnó¼\999¹ÐK\8aqcL.³ÛO9\98\Ägô¹'J.Â\14(`Ý\90\vå\99Ïaä2ã^ç\e\91\8b\ 4;I\eAÈm\82On>.ÿîo:.mk\1d8.\8eRg;lÜf\81Ø\v\8d\8bV8DM\98\8c\veãÍd\9dɸX\89\89\8e\90À¸!øÜ\Ün`ôÆâvU\84½ ¸ðñïv\90¸h\8f~õ¹\89¸\98s¯òæárfnëàpY\8fUÊY\0\ f\7f\b/\1eî\bÀ\85p¸¨ý\1a«\1d\1a.\f(\94xÁpáÎ*Åi\16.:½Üå9(Üñ($\94I¸ð\8c/q\95奷\ f\ fã^\9b\83\8bt:òß\19\83\8b\ 2É!î?\83<\1f\7f/Ô¦\ 5\ 4\17\7f\97ñBàb\17V-\8b\80\8b£B~o\0.<&\94\19dþíìJ9\ 6þ\16\9f0ªG\83~\8b\13Ç'\91á·Ð_áB\83}Ë:W|+Á¾å\ 4\a\80zfßjÖS3\18S%\10º¯k³o%\133\f7@\ 3T\89\15\ 3q\87Z; 'úNAàoª\13g\ 6Qu)B\ 2}\8bû\ eæK oÑC\b©äD¾Å\15ߢ\8dR+©Ïøc\9b\0ßrBFmI\ 6ßÊ8\9f\r¨\85á\82\1a£oRÖ¥Á-\93où²\1cî-\1d\15¨0Ó>½ôúÂÞb\ 1\80Bã Þ\ 2Ç@Í\8fÕ¥ÐåCq\92\99·\v¥Ë\exËåÎ\87/\18¼Û5\8fJ¸[Øð-\ 5ívy\9a Ø-Î\ 2ÇH¬[$ÖQËnÔ-ÞûKGe²\19R8*U\ fèvÝú4\82sË\17\aß0·\98)áÞfÊ-\90£X<\ 5ä¶-Aa\ 3rÛÌæÈ\8cÛfa_0nÁ!ÀÏ\ 6â\16\18\ 2¨Ó2á¶9Î\15\80[Tíâw\ 2p\8b¿/1*7\18\ f \14º\aÞ\96*ò{nº-¼\ 5øç nKFT\99\9bmÛ\95\ 6\f²-\ 2ÜÈ'd²-ëd{\r°-TG¨\1f\ eÉöãb\87\8cµ}.U\14\ 6Ö\16̲!µ>5\ e¤Ùõù\82Ú"Vÿ\b\8fË¡\bUü]O\97©Bü=ÄHÞ¡\96 â\ 5Ð\96ù\fè\10ų}\1eal3Îööè\184[Ä\9d¡{1Ì\16NT÷\96\95\10\985%rc\ 3ZO:A²ýì\9bEüQ"_Ìγö\17Ç\16%\ f\90î\88b\v\ 4DcÁÍVµK\1a\92 ¶\ 4>°dO±p¦â\ 4KãMÇ>Uÿ¾\vb\9b\95\9f\ 1°Åï\90\ 5o2m«æ\%|-Ë Öaܲ(\97,0Ák\91\94Æ\82!±kQ?~\8fµÑµ(ÆÖ]b\91¡ú\85µ\17·\16@N¼QÆÔ6¶lM\7fQ\f\97\99µà\12c
-
-d-þvå \97úø\9bU\97 X\8b\84:Ð\rÁ«å\a\8aJ\ fÑêö\9f\89V\8b:8LF\ 1«ýX&\117\15¬Z´S¼U@¹QµÈdcê\ fR-(¸Ý]¨n\8d\13¬cÏ\9cZø1ð\e\ 3S\8b±\84¹
-Sjñïx
-\19RÛ\ 4"\bD-\12cð¾\83PÛ\1eÑa2 \166~Q\1e\8eð7\92H\81§Åðñ¼Ø´p¸\88ú4\9a\16ª;|\rA¦\ 5*\ 5È\8c\f¦E\82\91츴Ð\1fBí\18XÚÇ]
-2\95\96¢\85ëÙPZH\b\f¦ä(t³e`y!i\ 1G\84ð+\88´ôýqª\ 6Ò\ 2+Éï8ñh¡1»\9fºy´\84H¶¶q´ø\9b3Y¢ÑÖ%ÒLÀh«â}\81¢Å.w{\81hÑ\8c\10o³9´È\ eÃQ\v\fímùg¦Ð"EVÅïækÛU\ 2¿é²ýÃÇFoÉ\84 íf\11ÙtQß\fçÖ\0Ú\8bÏÿ^o\0íÇûJ\10\86ø³]Sì¦Ï"Åþ<oøì%ÞÛfϺ$r£g/e+_äYÃÓ6x\167ç9ØÙ\8bÃ\\86ÎÒåé}3g¡o¼ÕeP\15glGÿ"Î\ 2\1c\8bia\ 3g\91\87xúáÍ.¡\82^¸Y+¡\836\8b\92\97g£f«\ 5wyFEÊ\12Ï2H³Üæ®\a4\8bH³~õpf\87\ 6£\8d\99í¢\13nÊlü\9d!³a\vÆìÒZÞøX <éü\1cÂlµ«\12[Øû\ f¾ìþ;áeÃ\16tYÔòà¨\e.ë×,³e\17óÃÏFË¢0\1e.J\90e/.\81õnqâ\16\11\ 5Yö¢3ÿÔM\96½¨\v»ç\8b,\8b¯Sôc£eÿ\b?*\ 4ªÙ²\17\vaËýbË¢¶\93Z\91@˺Ç&Ë24ÜÚ\v,\vX!4éæÊ~¼,\1c\ 27V\96KèûM\95E+»«l¨ìEµõS7T\16#\ 4C \19*ËVêÓ\87\92r
-0gåØÉ\93¸\18¤x3eEÇ*\a){\19\v\17DY\ 4Yîù\ 2Ê"H\f¶yðd!\8aÁ\82Ä8Y\8c; Ke\9a,&\14,ÿ\ 2&\v\\0«\82¢"\ 6¡¢û~¡d«»4\99$Ë\82e\96á+¯\8e¿á\83f\8e,\ es·±1²È!\v\rdyfSh'Adá\86\81±\15\10YÜcÉ\9b\15Ã\86 \10A\98\8c\90\r[\10doöæ-\9b Ë\eB¤ÆÑ\84CN\84w%ø±Hüc\f\f|,þ\9d\0Ì\84\8f½\1d\ 1\vzìíòì\80Ç"£NíÑ)/#Ø\199\b£cQôNb©É±\0ÒÒ\7fKàXx\1d\18k\82\e\8b\91\rµ\rÁ\84mXøcßÄ\8d¥¿~\1f\eSÊ\89\e\e\7fgnì¶\99\eÛ09<kcc?{¬áÏ"\1elÒV¢ÆªÏÅ(\e\e[(¾1¶\9cK'H\ fÖp¾ ¸±\ 5\92%\8at\82\e\8bÍH}\vn,\9adq*}qci-¦\80K`\8bZ>2D\83\e[Xò×ê\9b\e\vµÃ2$Ö;bq5ÖÁÆÒ2Ë|ccq¸Ú\b\7f56VüOCº\94\12¡b¢ö76\96¬ð{®\8d\8dÅ\8e7£l\81\8d%\ eu\94û\8d\8d¥\95Ý\9d\ 2\e\8bÿ\98£\1fj,ÿ£?ýM\8d\15,ö¾\ f5\96\177ç:ÔXþSñ?m2UEéý\1cj,\13N|3\82\1aË'CòY¦Æ"-$P©±¸M\17[á\ 65VO¾¯75\96©°Ú\ f4\96°RÀ\16\ 2\1aK¬üb21AcqüÙØ1ÎÐX\9cÏEª\@cyL\10)^ÐØR\83[\17ÐX\8a\9bª\9b\11+]D¹Óªoh,÷dEA \16ù\v|ã\ 3\1a\vK\99¡¾ h,y«<\9c\99±\88V*ð\eÐX\86þz{3c\99\11Ó\87dh,c<Â\17\e\1a»>þ\9f\9dP24\168\85»md,¸\86µ\8cC\8cEë)\9ee\ 6ÆÂȬTðb¹Uo\a\17\8bã|bÅ.7jبX\86¥T=aZ,®\82sÊ\8b\16»\96¿\82\80Å®"BßfÅ"5 z\8a\84\8aE\94ð²\94\8a©ìIñÊ\ 1ÅâïZÛ\9b\13;±Z<\90Øi7h3b\99¹\18ë\8d\88Eåuëå\10b\19:S$°F8\1dÁùQß\84X^p½ÊAÄò±ñ\ 3Ü\9dÁn\85$3!v©ÔÐ|XDª\18÷7\1f\16\7f\ 3æ\92ð°0¡r$è°8\0}\eÃaIÔD\8c7±a\vSìWßlX\ 5É\9d`Poº¡5Þ\v\ eËá«»\17\9fz\a±x}ö\r\87å\8d°\9dá°\f§#ò\13pX\1a\18\19õr\88\ 6¬l3\1cVù\97gl8¬R$Á\82}\9cD\ 1Ã4ÃaqÊl\ e\10pX\16Õ 82à°¸\8e)%ÎfòUAUÁ\99ò°¨kÀgf8,o Ëá\12\1d\96Fx\ e¦Ã2\17\8eØsÐaa`\ 6!Óaa\f¦lW©ö\10£4è°40\v\90è°T7\8eÖ7\1d\96½=ðá\a\1e\16#\a\16H/<¬ô\8e \ e\18 ÊXçh<l©ÎXd>,\8c\8\ 4\1fVªHm54\16£GGÆÃÂF/"ð°4 ~\17xX\1a°
-Ï|X\f×ÂÞ\9a\ f+2¿x°$\96 ?7\86\9bÌ\87\85\91E°Á\87-\84\80Þ÷æÃÒ\80!6\ 3be\9ck\ 3by\1cV\15\1a\10\v\ 3Ñì\19\10Ë~\ 6Xj\ 6 VE\11(É\16 \96Í<«¤t\e\10«.YíÙ\80Xt\9eát\1d\80ØBò¢°®\e\10Kåó\1ae\13bËcX¯ ±ü\9b¯t"ÄÒøÔ\r\88\95~º* /\1aù\13Lø\f\88\95`º(é@M\ 6[ø,\95ü\11\10+1ô5_\80Xztj\8c\93\98\13d}z1\81\88\85\\9e0±\17"\16Ör\e\bKD,,\9e\9f®èäþ\9c\1cãFÄ\96Ý\8eÀ\84X\1e*R\8fZ%\81SËÌY&Äâ"å`\ 5!\9631}\83 ıa]a&ÄRÖÄ\89":[`\95¢v£\ 6ÄâF\f²ü3 \16juSo\r\88Å\8bÕúÝ\ e ¶4/\92^\80X\16Æй\v@,Ûj)-k@,ýpÁä\ f ¶D¶{\ 3bi\19Ö\8a\93\fôÕ\81ß®=FS|½\19\10+\bBi\e\10\8báõcJ\1f\ 1\88ÕÃ\9fý\ 5\88¥\11/n\0bqìu\8b\18K@,\f\9c\982 \96Yò)ú\87\98.\97qä\ 1\88\95¡?/@,~\8dÀÖ\0Äò«¸îÍ\87Åôp\8d\9eñ°L°µÑ7\1e\96yÉR6ü\15cÑTdt\13b1¬9³H\ep7¸\15æÃv\f3×ýÂÃÂv\19ä:µ S,\82ÃB\8f\v\9f1±aÙ`N±]ÆÚ\90z¸ãMð'F\86\f\86ícÇö\89\v\1c\86»\9aù\8aö¯L1\1c,,1«s\85 \9a@v:ó\8eñw¢Ân\93©°Ó3oð^ÁAź4CaGSàxoc4q aãïD\84Ý&\ 3a?Î}@#b ì¼Ô6òà`§\a\87ÀÁÎK#\Ð`ñ7ng\86Áb\1f®©\r\83\9dV\90\ 4\vv^zy3
-v¸\9dM\90`\87\ 5²\ 1\82\ 53\0QúÌ\81%\1dô¹7\ 6\96\7f\8bªÇ8\13"ÐÈ\0d\b,lxÑ\83\ 1\8b¿ñ¦\ 4\ 2\16Qj2b\13\ 1\16Qê*`\10\13mÃMI\ 2\0Ë8u-/þ+\12j8ïÀ¿â\8bC tà_Gô\ 1HôW0¡ºØ\8d
-Ôb¡óôÍ~íU2ñ\84~¥Ix\¦\8d±\va\83\ 6¿\82êÓÔ®,\14\8b\0^ݽmì+ò\99È<\8bú
-Ø\15è?\19úJq ªSÍ|EvVýê\84|\1d^\16fâ+»\94²¢TÀ×î\85Nð^q\16 ¢gÜ+Ï\ 4(-Ó^»W|\ 1{%ö\v\82¢ÄzeI\17ÞG£^Y÷\ 5Ù\8fI¯ç\18\aôº\9bN\9aó\1a=\9e¯ý)\vó
-\ 4\ 5\ 2\12 ¼\8e\0\81\eß
-µ9\86×Ìx\85\9e\8b+\95ØfqÝ\14\80W¢¬\90èJ|W\91ôVà]ñgg\95ð®Ó²\85Lw\85m æJº+dî\88¦\aÜ\15¤Z\f\9e\99í\8aÒ\81\8bW"´+\96\9dìÞà"àø;\81]·É\W \:\ 1*[\1fÎ5G¦º.ó_\ 2ê\8a5\99Z\89Z_@¤\ 1Wç ê
-£\90ó
-\QßÑæ\86ºrÁÁi=A] >b;Õp.®\10¬\18êÊ-\b}OPWLe\8cß\ 6Ô\15Þe\15'\90õ\82Xüâ\99g¤+\16Mpo\ 3éÊ\13º´\91ê|á5LcXwÍ\0\1c\87¦\8bçtE§Aý#BP\ 5\91ü¸_HW¹\run¤+\f\1cÖ\ 2éJ\ 3ñ÷ éJ·\8b'n¤+\99 ð\84\ 3éúÅýøù§ÿ\9cHWFÒP\12\90\91®42og¤«Âkul\82+£f,oLHWFG B ¤+É\ e<¸\90®ëÑË\90\89®¸^.Õ\83èº\97\85Q\98\89ø\17ù\1c\99èª\86\86r\Ht¥\ 1çüìÀ^W¸ñÉq=\93)\82èªØ\9ah±U\1a;G\83\fte\84 oc\0]\19\ eÀ\9a+\80®\ff`\9eÈ@×í"\1aèÊ×Ï\82\ 1\15ÃÓ¯EÂ*\ 1]³±º;\ 2Cá\ 1t%Ç\ 1\ 3T\ 6ºRjþ\b\e*º\ 4iºel «@\15u½\80®Ô
-R\18P\8e\b\9a\11À\0ºâ\11rÉ\93\81®¨ÌÀ\822\88®(("\15Ye¬l(ô¢¹B\9dÔõáÑ{\86gÊ\8eí%¾\82*W?³\\19øè³n\98ë\16\9d\ 6Ì\95\ 66,J5/´\91Ú&Y\1f\ fÓÌn\r\11*\87Þ\fse°®\11ièJ!¬\r\11 3Í\95Á¦R^8WDdX\10h\9a+øL\8bô\1aI1X3¡Dùf¹¢Xè9$×\81¤È(\9bä
-\ 2û¼_\1cW\98nÂP¤lgIÕ37ÆuøKÈ\14WèÓ\90\ 50Ä\15\7f\82r\1f\fWh¼0ýf\84ëp\8b\96 ¸\ e¤+kÛ\0W\84[\10ÃÈüÖáøgà[;\Å«l|kwØ-Ó[\81\19"DÃôÖîh^À[É%\1a/t+û\82@G"rkgä%°Ý¹½Lmí&ÙDé*\9aS :\13ÐV\9c÷vÍ\9bÙÊ\9eÂÈ\94\19ÙÊêê27±õ±X*\ 3[\99p_cóZÑÿ\ f±¡Àµ\ 2KÙê\e×\8a\15$¾ç µ>l\14¿6¬\15\7f\8f9^¬ÖhV\1e¨VH\9c\90\99 R+ø¢Ï\vÓ\8a\9aGD\9a\83ÒÚP1¹\11ж`\81\9c °!¬\16\80V(b\10[ Ð*\143&²írñö(#\11tÖ¦&\91i\97\8f³\9e/4+
-À©Þ6¡¢;V\17`VÔ\91PÎ\9c¸¬ÀJàg\ 2ËÚܼ5¨¬(\80Á"6CYaÃW\13PÖæY%\98¬8\8fÛ\10¸ÈÕB\ 6\8ex\9b\89¬H(\ e\ 3Zá\84\0\0p«[Êf²àR¹\166\8f\15\8b\e¼ª\81cE\89(èO\99ƺ\8aC\ 5\ eã-7ß \16+4½\ 4¹%\16+l\18[\ 3ÅÊ\ 2\9aõl\12+\ 4Ê\bÃ%\10+uÌm\ eër0;0¬ø;~&0¬\fÏ_V=\rÅÞ5;\9bÂ\8aª\1e\90\962\84\15uyÏ} ¬Ë¬¾`°.\87u3\82\15\99\ 1½\e\11W."\92\87bUà¦Z_\bV\1a§\9a\88\8b¨ARfY\eÁÊ 6¼ÔÌ`eËj\84\0\83Á\8a\19\9dñ¸`°Ò\80\b\b°\9eCõ¨VÃÐ÷áÙ\ 6\84\95\12~D%2\84\15þK¼\12ÊTÁ÷\868! ¬;5\9b!¬ô¹Ø@g\9c\127Î8AaýâªEÄêÇQX\97óK/\b+¢¯\97\19`\18ø\10|\8d\ 2\ 6.e\96\ 5;/\0+Tõ\97[[©äkE×&ãW±\eÓ(\99¾ÊBÄ[Þ3á«+\10ª\ 1UeÈ\8c\81îÌ^U}ÀSÓvhÆ\84÷{ÃWO~'ÑWé\803g\1fôU.tXÛfø*ÃxÝEc\9b¡ÊX^\1fÖÐ;J7o©ãwØ\8ebÙ/ûqÂÛìUUÅÌúmÃWia\87Õ\f_å\ e¬\871|\95\17\8d¹ÄðÕýw\86¯2®\8b\ 4wÀWU\90;Ö\86¯2\8fÅ\ 2\83\ 4_e\14\9c\9dßFH×.©;\ 3¾J§\17\8f&ÃWé6AÎ\17ðU\84áYy\14
-ÜËBÄ\f_å)Ý÷f¯²Ð\ 4q\87`¯RÀ\8fq4³Wiägmö*\r\1cTÌ^åp\86ú\81Ì^¥«\87ó\ eö*\f\15ßc°Wa à<ÃW¹\9c¼\ 52à\88\ 5m\ 3V\80A_åð0\95\19ÚôU./q×\82¾\8a\17\9bâý ¯*ÉX×\8b¾J\8a\ 4:,\ 5}UYîR6~\15Qz\8e*\19¿J\86Ç#í\8b\86C õ\10X üª\82û\1a²6~\95R\ 6T7\ 5~\95\86[¸U5+nb¿&ú*\12jºÙ¦¯\92CÇ"<ÓW±\ 5ïP¦¯BôÀ¾âA_eÚ\8dÑß\15È\99¥\98Eæ¯\ 2¢ÅLõÞ
-\ e\ 4f¼à¯"\ 5ÂW$óWa|H¬$\7f\15\ 4 z\ 5\ 1`Eª\86\ 1¢\f`%n\f\vÎ\0°Â@\9f-\0¬4@
-\9a\ 1¬äò<\8a\esÞ\13¨gãW¹\13\v^\12~µ4;j\81_Ei+\17\15\81_U;î\f_eþªÈ¥ø\8f'üÈ\eP\83\1côó\83\9e=ÃWaÔO\19¾ZH§¹×\86¯Ò\80\88I\86¯Âøà9\a|\95[ñâ\r_å\81\8b\80Â\e¾\8aD \aµ\80¯â±R\92\16ôÕmÈøÕc4\7f\15\ag,"Ȫ\85\1aãz¿ø«È\9dÒïÚ[U/_\82¿z\f\89¿º\8dÁ_-$sÁï1\7fu¿\8c\99ÀÊ,è:\0V\96\v#O\1d\0V&´ªj\9dN¿v\18±(\v\ 4+ÓYX\96\ 4\82\95I)\ 4}3\82\95/:\16¢D°²\10\19\99\1f#Xù¯X@f\ 6+\99Vp\88\83ÁÊÔ\9c\9adÆ\8a\e\ 1\1c|u\87ÁJ\fàU¤Ñ\18ú6ÔT:\18¬ü\9a\9cIN}$\1eú\af°âÏ\8e\^0Xa\18\8eþìÚ[\18\19¬\ f\b+\rn4Jr\14\r\97\8eó\9c¯¥*cj\b+3Ì\f\a\84\15¢5\16ƽ ¬xÎ\92Ó\ 5\84\95åûC½> a¥\8a\vSn\86°R4\80\ 5mPXáË)\7f\1a\14V¼yìíô¢°ÂJ\1eð¦°Ò\82g²)¬´PÖ\96)¬<\1e»\98\a\85\95º9V§\ 6\85\15\16F\12\85\95^&3¡¦°\12]5\9aý\18BC 1Ch)QX·mSX9\1f-·\1fÕ\13Ľbó¸La\85Uï\94)¬0pµ¿)¬ÜDB\8eDa¥\95\8f((¬â~\rsY\85`@¨çÛ\vÂJ%\1dÓð\ 1a\85\14\84\83Ŧ°\92RPÝ\1c{SX\19¬e\95rPXé£ÄWå;Ï«N\14V.\®c[Nÿo\ 6ë6d\ 4ë1\1a°\83\1e\15Ñè\94/ß\177û\87zò¬J"dâ\0XU[^6\7f\15\1e;WY\81_í\1aU^ôÕ® Ã\86¯vi¬7{ujº\7f¡W?lC U\ 1%§Ê{7xuF\83ÁÄ]\9d$é¦]\ 6\v\8d\ 2ºjÍç\vº:\9d\8a0t\15\1d4\ 4 q· êX|B®Bx\8d\1cª\91«\b}!\ 4\198Ój¹T\ 6®Â\ 6\87.x«\bÒ]sÓV¡Ç4\9ca«Ðh+\15$Ö*þV\1aH¬Uü\8d²ª\8cZ%®\16ýÒLZ\85\ 2\1dïË>5·\89Î U&Bà\18\vè\ 3\8d5«Á]à\ 5\18Ýâ\au0«\10á\0\98¤áô^\1aÜ\83±zw¶»N\80Uø\10ȹ\ 4_\95\8dÕ®{ãU\81²CÈùEW½AØpU\bÂ\11WÝu\110 \1aðb«Â\88Ù(Ъ·Yö\ezß\125½Èª÷¢\98\94\UdB\11Þ\8e×\ 4Ùf¶BHTÕgY b¨*Ã`ëÞLU¬Ø¹²MHUÄ'\9e\ 3TEÉ\89æ]IRºÅV\19§
-\e\ 5G¦©b\1f
-\85\rSUÈc½XªÍR§@©67\96\v\92j\8bYæ\80T¡<a\10Ý\1cUh"\10®
-\8c*¼C|\8b\99¢\8a@(s[\86¨"\7f¿\ eB\15\85\9fXèf\82*RàõÙüTü lDàS±\vÞ¼\8cO\85Ü¥º]\19K\12Ñ[±\8f\80§B\90UE\18ÝìT\\1fª1\ 2\9d\8aëçwã\b%B\88E}åö\12\15±7Á\11\19±g®ú\99\e\9bÚ]«\9f©©Ýìþ\80¦F\95p0S»\19\0\19\99ÊÎ\ 6÷³\89©»îÓÀÔÛÕÉ\19\98
-å^\15\Qú\ 24æiOàR\11\87ÅÐ\9ai©\84I\94µa©Í}\83\82\95Ú,W̨TØ\10`\bR*Ø\12ð½\ 2\94\8aß)\ 6§\86\87ýXb\1f\98T¸PðT\82\92\8a
-¨çÍH¥æ\0r\ 5#R\ 1ëÀwcB*n\0^ª\fH\85\8dí2ÌG\ 5q\11ÑóÀ£ÞÎ{d<jÐT\82\8e\8a¿\11®1\1d\15\7f"&\90ᨸ\19ð:\83\8dzwk\ f\8c\15¹]\9f\9fɨ(üaé\97*+nkn\83\8b\8a²"|y\19\8bÊ*\0ÄÍG4ÿÐ\92= ¨ÈPöñB¢VOú\81DÅß\888\ 6\11\15\7f#Í\9b\81¨õѪmóP\1f¿5¡6\ e5o\1a*\12\1c. 2»P¦\1a,TÊ\ 3f{¡P\eZK]Ï.ðÂÄ\b\7f0@¨\b\ f!V\90A¨\8bUãåpP\1f\85Ä6\ 6u¨\aÀ\8b\82Ú\14çÞ\10ÔâùÒ\fÔ)%qF JC_6\ 1uòý=\0ÔI®Ã\9b\7f
-X\ 2©èÆ\9fN\89÷\r?\9dR޼ѧ\12Ïlòé°èÅàÓê¢ \17ø´\v\8b±¹§V\8enì)\ 5¾\9f¨§\f=<\azª©c#O\91Ý,ý\8d<Eôy%â)^U6 0ð\94²\99ûÍ;½å¹\ 4î´z^\ eÚ)+{Ûó\82\9dBWÑÇF\9dbí@ú]\90N»ª-Þ¤Ó\8f{ÿ<\etÚ\18ç+Á9Õªå©/Îé\ 5h\ e»\91\9bs\8a\10¢Û(K5r±ÚUÞä\ 6\9d2\99Þd4ѽ\"Á\9bÏóÅÉý\91\1e4FÍáµi\80N¡\aÀ;\13\9cÓ '\ 5æ\14é+ê$\13å\14«p8L\ 19EÕ3¼Ò`\9c6×ÛeÄ)F¡%M¥\ 1\0\8c\9e\ 6à\14\7f\ fýó^84ç·\ 3o\8aä "ïA7%E¤?/¸isåb\ 4\8a\81I \17ÐRP?\9c¢ÚdÓYv\ 2\946,\94y\vT¹\b:\r\96â\19k
-Û\10 \94³\0þ.Ê%#\84
- $Ê\882Ô\14¡lL{Á4E1\fC[Þ\ 6É3$\972ÑtN¹öA4%Ïs\8eÍ*\ 5=\ 6³Bæ\99"¼\ 6\a#l}J\v\1a8Óø;ÓLÃ\160Óáé5(¥\90ib\r\99Q¦PY2úaÛ,\8a¬\ 6Ètÿ\9d8¦a\v\8c)Ñ«sm\8a)ÚÏCW\90!¦P\99>\ 2\9bRu\aª\19â¼\810%åL\8d¨\8e7ØT´\15\0Óa\9dKàJñrßÚg\87}\ 1\ 1\85ø,è¥\bï±Í\93á¥Ð¹uõªÚøRD×n\ 5\f\19\88àßµox)\ 3\89W{±K\11\ 2Ã\a\15èÒéæ:\81.\9dîè\9cÉ¥\f[>+À¥Lt\8avÊù\8e\89в2¶4ø=A-\9dÓÝ_\ 2Z:ý\ 1¾\98¥ Óâ¹\a²\14<Tdü\82X\8a¿«ÂÅ\eXJ[¹7¯\14ÍÞ/ÓI±èC
-Ü°L+]§;\18+¼H\81í=X¥¬ø(í\85*\ 5*¨*¹\e\95k*\90\fPéô*îÅ)\9dâ9mJé\8a\15K@JY\82åÆ)[¤K\ 6-«6\8d(Å ±,0\b¥(AiF\9bnB)\ 2\83\9c¯*ï\94\8a\14\82Oz\ e\91ð¤3r\89¦\93N'Z\82E\1aßwf\93Bø¨\10\81ؤ³èÞmäèx\8c#ËdR\0@È·\v#Ò-ë`I©!\1eëM%\ 5\ f\83Ѹ\80\92\12\90áâZ\12\bÆuêPCà;®S\89*ÊÚ¥8û\ 6\92~\18T\9f\99y¤ÝñÞÍ#íW\14Pºúv\e\12\91ôØ\84$í&µl0&\16\8b\\1ag )e+ÜÊ\8b\ 1T\99\ 4Ó\8d¾Åãb¨\17\90\14¢sU\b\9bGJ¡º£y¸©X\82DW§\9d9D\82§Ü>\14\8f=\83Ág¾Æãü÷\vEÚ¬\eØ$R$¶P\ f\e Rj\7f\98ßM R¤\11±t \ e)\17EÞ\bu¢\84!:\97\ez
-Ô\aݾx\16Ú>UJ¦M!ŪC\11³\ 4!}°Ä.õÜj\18T\1cm\ 4écA_&\90¢Á\9dÎÚ)·Èù\ 4\80ô³\93òó\ ft\80þ\v\80ôo\ 4\90²í\12Ól\18Lá\8cü\16V¦ó ¸ëJ§IO\rËRZ®*Æiá\94²IÁd\9cÎz\13¯«\1f\98V\1eôeE6ò\15WäR»¡A\0/\8f¦¦#¤&\95=\91aáW\r\b§\88î$ç\180î\ 5v\87\18a\19HDË4#\1c˳£\19à\8a\ eß\e:sK¸Æ\12@Ñç\1dê\8b«de\1f\7f\0X\9d\12¼\96Âw\1aÙ\15(¢ª\9b?3Ï£e¤[
-ÔËá)Q\82'\9b;«\96³9Î\82®µ§\95ý±V\85s
-\89IK\16eP\10Ã`»\eXîrö¤\f³¸¶\0\ 6÷«ÀÊ\14rõ¦F\85\bAÏ\0òÃ{g\17Kj\ 3°\80\81\14z©Q-E\9ax´P:°ol¤ßÁöáb\12\89 \16ϳ\96I=h\1d:ì*pFû¸(_b\aqdGÐUøæÈØ\r\ 5Cça\12GÙr\87«Là|b¥¤Î<\10\80V\17ý\90gL* \ 4Ë\7fSeÊBѽ\9b %X\18\92ö\89\ 3A\12\ 5\v\177üAvÒ\83¥ß§ý;Ã\83°²R\88Ï\9am\97.·\88â2¨\ eï\18é°¨ú`\8fnv\1e\84\1eVÔ\95.E*,ÒÙ"Ü=Í\95B§\ 1µ Å#¢Ë\83¬ÿC\16Ëãn\93Ó5c¸\83|ÐÊ.\f·\8cÆ}UGª\81ö\97\bÆòû\f\8f\8b\96\12§
-w\8fm\13#ë\ 1\8b\82=8< \0°Ô©GV\ 2\1d\80¯\95ki<oÿ\ 2Ê\b¯\9b¯\ 4û¢\83¤Îé\10íû\8eNd:°¥.Ãøª¢\\97-\86\17»&»\ f\14>\17V§1Ö\ 49\ fùÃ\97\91~´\8c¡í\18ò\85\ 1ÁèÊJ\8aÝaðÒ\8c\ 3+Ý\83\1a¥ü´ êWYXÛº-Qð\8db\15ÄÝa\954\8eHSîð¸R\1c\17ÄN\93!Êa¸\82Ú\e"ïÝ\0\87\8d\15 \84XMàS¼\ eRE\8dtkieY\a\94Öx[øÚPç\85\ 53\eó\81ý@Ø9¶¹\1c\84`«k
-È\87¢PÜN4\7fü\ 2FAZ\18Ú \ 2ö\8c\84ë\8cx!]\86¢\87\83H8º#HØ\ 4d\0\ 6\ 6]æN}l¹\0Q\1avÔvÓ\1c8>V6\81Á2&b@´"0T¸Ø)n;Í|.\ 4\ fú\9bh\ füYâî\Kl©BήwS\81lì\86êf\86y|à_ý<X¡ÄO
-Ïw÷\7fÀ\89B\ 3\X\10\8eÌÉ\
-íë
-\8b\7f\10k[R\9c\80\88XÅýÜ\18\1fã3ÆÛ\81õõ\13¹8XÙ\9bnT-qhád\a\95\18\84\v<-\1ekT©\9cbO\16 ÒÊ\8c ħÔE\fç°a\99j\vPE]Ñ\9eUä/vzaO1¬y\88è\aµ\96ݸXOKQ¢RÃVU\19<^2%êXj79ÌQÙ\851^9ØÖÓx\a+sGävãO\9d\ 1&\12âQ 7£F\v\96;æe\14.\ 2÷-+Þå.à0\ fÄå\16§\90¥9\89sI\fÌÄ\7f\17úÉðM¢\8f\1c\9b°à\90Ó\ 1$¼«dBräAM\ 1É)XÉòë!I·ë\89k1\ 1å,_\81ªjvMçÃoÔ4ËWؤæ¯\88Óí\13Xèáb,¹\10K0\97á\0.\fRÔÂ\82ô\10[¼±hhXz\10¾\87ðÿ|ÞÈÿÃÂ\ e\ 2ø\ 1¬Ýi!.\ 1o]ÝõòVÞ\17ðp¹Æ|\96Å0@W7\9f>{\84\15\86µ|\95\10ãëÕq@K\10\ 4¾(.\18¥\7fHEætµó¯áG\8a\97õÈY¡\85\8f\90\ 2«hüùò@#þ)\1d/=
-\14ß\14¶ÊíîÂÚ#©\b+\ 5\1d=HL\bÐáF ß\15"õä \bã\ 2+A\ 5°°\10\fÐ
-º`°ÐÙ½\ 5uó\9eQÄÉ\ 5sQó%\91`>\96Ôäo³Õ\93Z\9dØ"_ª¹QÇÞ\ eñS\89\16¬(Ú½\v\ 5\19\18á/6\8bgQxu¹\85\9aQ±ÇWuW*\16 ¢\8b}\8f¢>è\1fùjÞ\86#ãÜ(Ñ~Y
-?|î\1938i\8dCÇc¬\8e¨ \a\82\85e`Ü\86Jc\94Ð\8c\11ò©n`7ÈùTâàÊùÜ\9b9\9eÉ2\85\86\v¿\98\9a|~?\9c^\80P¤vü\89\ 6ϨDa\a#\107fèÃz4$AÛmJ¼XbÃV«·©^¬NÀÍ{\ 4ã\89\1dµ.Æú´,íHU\b,Â`°eøÔCá\8c«Ë\9cVÅ°\93\ 6\ 5\9cSÒ\b6-Õ\bU-L\1cN©î\11J\1fïTÞ\98\16.\98ÇtÇm\b~Õ\95Ê4¯ØS\97@|ø¥_PA#{½LµèTÏ'XÚöÿGt\89é1F\ 5\ 4t\ 4\88\1f\ 3\ 1=³î\1cÓÏ^9\bBÃ7ìQ\83\11qjÐJ\85Ã";lzÙÂ\82\ 2í l)k\97¡un\1a\92Ô\92r8rY\98^«\9a\90ÈDÒ\88a,;Z¤\12F\81t'³RGké<+;ϬR\8bö)ÓÑpY8\86_\8a±pOJ«\10ÉÞ_ÊSÂ-põYy\8cu/,\ 2Ãò奄e½rÜÖ¸x»\15Õ°0Z_ó£\91\92Y(È«Ü«Õ\16å\9f\1e¥=Ïvh\7fÇ©pÄKxíN£ÉcÝZ°ÒVT\17<v&(®$B\88²\ 2\81Zâ£F¶©â\9b\aK\85\98,$¤ô!F\10³DØ*\b,±'#Ù·ܢ¿©\7f&^$u\92\98±x}äôkÏp\ 1)F¹\\0\8a«\ 5ó\80\ 2?jãX\9dmn\ 6o,%\·B\ 5Dãóô%)\1eÁÙ\9b\92`ÒKØ#-\82\92üIX\9bñzRÑÂy C\8cp¼ñÉw¨»Í¯ù\14Ú¬ÊÂ\12y\1eJX"+£´g÷àH=\80\14u\92éR¨ÎsØ\96[\ 5ÑÚq[]&Ç +\ 3\17àô3*\ f½¤üB[ô®\87çv¶ó\1a\8bÎ\13\ 1\86Ç"i\89v\fc3Î\99t<þ\0>v.z÷\e\v^ Ü =Ë!E\8aÚçªÃ\aÉ:\12èÞ\8a\14R\86Ï\eÖvù»\vÜxÓºÃvÝ\16eBxõ©\80\85åÙà\18U/ñ`ËÝ\90Ô,\19O\88±zX¸\ 2Á\93Üã\1d°_t¹©a\9fª\13pG°e*(\82WüN\1f\17\96ýìw@\95X\10\94éÛ\9aîgrs\ 5Á: ~*@Ûî\b\v¾ÉZ\fc\12vi9ÇM\8b÷¤¨\9b{>Ñ\92\15+\14\8eØÏPå$-$\ f \1e\9228ìÉÐ\12¡#ûÛ**¬\13´\8a\ 1èéU$\1Ê\97ëpÓeàZbñAU±ðV=ÜÅb\818TýÔõ\82Êý8¤Ä2x\8dwUE~\18ø<ú_*\0\11ª\13÷\1aâ6v,#©`KÚï\ 4YÔ\vë\8e\94|\ 1IæÄ\9eѦ\8dùéØS¥\ 3pëØ\8e÷öûCw\90Á½ÛQ;XðØ4ª\8b\a¯Æ¼\8f$àÔ\eð#è¤QOÇoè(Ä೤\16PHJ\r\98¿\95\167\8c£û\10ü$æ\11½f°^nªÎhE¡T\12c\ e,.Íç\ 21vÔ*\85\95Ó\84b\14¿ÙlB0«+'¨÷K½~ø\8a\97¡'Í,\r*{U"\80å\84W\11Â\1cÜêï\12ó3«¸!"\16d\ 4tØj\ 14c¬àºÔq\f±4\8b&kÞJ}uUøCgÚ\ 6(ùV\ f\8f2\8c\8fSRlWq+?¤wð\8b\97\1f«\80Ú\r\10ª\90åá]T\93,¤\9c\10róJ°\1a#V1/\bUáO\ f\9bpvæ¢ý1ÓÞÖ\80T|V\f\17°\16\ 4±\91\8f7\85É\90zÏ\1dØ\84QÁ\bx(¸e°0ýH\vÅ\8a¨kºµ\1f\1f_ìH\rúkGrÐxüâ¿ÑÓ÷vR>ö£wS)=D0\ 1¯4îi^dâ"8\14"FÊ)\84×\b(\16ÞÊ\8aåÆÍ+2?¨Þ\9b¡2T?Èsx¬\8f\84Uz\e^\ 1B\1a·\1d=Zf\95\85o7-»Ë\17ÄS\8cÐáx<n׳®tº\10\81\84\ 5ã1/³Y$Â\9fd\8b\8b»i>Àvô*t²ø\17kÇp¹\f\1ciG\17¶á\89³;HE\ 5\fâ\86ø\ f2n*
-ËÄ\17XbFsO¨yMÅçX\1fc\14 \15DÙte\12·èôwè\97/\97X\ 4K\19\b>\1c¬î+©Õ¼ÌKJkXæãt>¬\\9dÐ\8aø6,êõ\81N+\10(ÁÀ\17\9dÃÆ*{G.\10aeL\90\87\82l\ 1\16:¥üI\bòd±þª²5\a\14±OQÆ\9a\91ôgù=#¨{\88ç\82[Í\90yÄü\18\94Bm/B\18\8aÓ!:Jh8£S7\11\890\8c\15\8c}Cf`\9c¤8\0¸Ñ)Ûmb¬Ò\ 2h\12,½>{G
- `d<\8f\9bU~»Í\80ôËz\11Z¢\11@½Üe¼\12`5\14)nü@ÔX¤x:â\13\1e\16ó!ìÜ#µ@Ê(\9b\v3º \92\12\8b]ÐݪUm\83è\8a¢¾EÝd`c\19\ 4úÝV\ 6æ\97§k\b\81:[¶LÉ\18cG\16UTzÝ\f\96Úñ\82ÅI'\vå`é»!\14 $xh\bý3=A¾-Ú¬\14sµpÒ,ƨ1\fó*qíM;²´\94\8f±ú&Ñ\ fb\aÕëVl\96±\8d\1d*äëq\99D¾®Jýt\82W.ç¦`iû[\86u0^?U!ËC)Ø=9\ 50\eöLíXãÍaÓ\a¼\15WóhCq\9csM\18cøj\90QTLBâ%V3Í\98mâ»\ e \1fs1W\13E\0ÿ¤~> ©¬\18éÐÆ®0òj\14me£;ðÑ/-ñhè\8f{Ó\16££h\9d·6\13x\ 4\87\9aCÛ1Þ\Ù\ eoV[êù¬\b+ãmªe9¹ò¨s/\13\95x\8fE¶¹\9aÊ\9fõ$ís£T\8c_\ 3\12YÌ»Ïå\11\9eÕ²\95\ 1NÎz\1a\ 1\9a*\0\19ö¬þ\80\ 5;\9eVPòcE>·Ù])ÀÓRÏvW/T\8a~«¶có\11nCà<z7î0<¤ã\$h\ 2ùËR»à©É¥¨©\r>j2¤õ,\97\97Â`\18Ã\15¨\9bÈÍ\16Úó\16\DüâNâÜ&©*|Í \ 6ø8·È~ \e\84EÕ[°\84Ú\16V}\8cS\92\98J\99öCí_¤\87\ 5½Z\8f©\19Rm®\95¨CÄëù¸®¥²"\1ew\1aA"\8eÉ\18Ý\9e'\9a.\98\85O+Ûa6cß9æ\ 1R"ËÒ\90\17êx\1a5\16ß\12\10ñPúFn\9e"\7f1\ 6çu~ñ\917\8d´\14W÷8W½l\97A\94p\81Ô¥\ 1\1c\80â\98\Eàò\9bm®y ~\90Ç\9av\9eZ\90v°J\89 \ e¬\93]V\96
-\va Ø\86\99\1cfÕ°\89\12nKAþ½#k:0\8cóZZ\8b¬Æ\92H®2è¶t,ê\94µ§µ\95°º\87T\97»ÈA\8bC\ e;~ÎÈÙ9í\b\8f°j\94Ô\14\85\0 =#\f%ÈeÔ\1eÔ¥b\80\ 3\7f±»\97\1ajÌZ\85\87å<KFT÷Ú\18\96¤À¯Ê83\ f\8c×\98Ç¢h\199lõÇ°Ô\87\96ý\9bÍÔ\a¤\f5ï<ámD·\94Ê\8eTÝ#,ÜXù\84\ 6³`V\10? \ e\vÖ$\95\8dnè/knÇ\9a øÏ5D¼\18\99D°B¬ó*\1a«\98í®\fÌrt©Lõÿj·\9dzÙ\1a8ýʸ,\9cPnf\v\83\15°p<\8b=Õô\fu:|˺Q\88\1cï\9f¡\9f|/
-ör\ 1Ãý³\97Ô\1fï2\97\v¬qº\14?bÏ8X$Öîáò!ãÎ\90Ãèª\ 6Ô¨]$Xct\90ÓB1.z¸i\v,\9cÓ¸É\18kïxU§ôYqÁiAéÎ\1e\88°+\92wý¬z°§;\ eÝ\9a±ð(7BYÒ\ 6*À0'<®N\91cã\16`
-®3ÅÚ\98·S?wôó¤®=,ô0 \99U²9¶\eOÜ\9b¥¯\94\195\15N^"¸Gf\90\7fÀ*\r\1e\8a°(Îë¦ÈÁ¢Êz\b\81ÂS\80U\9côîâ\ 3%ÂîçlÇt\16Ë\99û¥'©=\9bEr\90\9e3"E`¬\83ï\8a\86Mc- GÊØȳÙÂ0%\99\a«Ò·\ 1Ü\9a\12\10¶m4\93\15\13\egw\16\95\13X JB\1dÇ Ûz;>\7f6så\a\9e\99*ä¶\85\ 1óà\ 6\1cëã鮹\1eÝÀ)L\88
-\9b¶y\92ÃJrV\19\97\ 5\b¢Åà\9b-\9c\10§ï{[)$4Ý8\171åîÍ$p\ 2ç\87pçiݦ,\11:\9f\0°2NdÔ\ 13ß\8c\91
-ðbÎÞ¼ED\9e¹\ 4b\ 4\ 2 \10u«\89h\f->YÖ`1\91ÏÙ\98\rÊã\9d[J\15ó©\91\92\83ä%\ 3à\90ë`f(èàÂR»\80~²\8b¯6SÊ\15,\ ff\1e õºu®*\ 1¡\9e\80'¡§$CHHNÑ\8b`\ 6µ)°Æ\98ò\8cO\9b¨C_"$è\8e\89Uýà¥ÆIL90{9üÜysf\8d¯ãrÌ\ 6øë\8b)àË\9cÅ\98\9d`QH\r\96;íiâý\9e8$\14Sã\ 55rQl\99%i°¤äfw_\9açvÔ\8bí\95\19Î
-\995\e\1cW\ 1\8d¸nÖe:=\ 1«·óê\8d\16\8a\9bqZ¬Íf³\90 åðÜ\1ctR\1e\rñl\ e\16°°\88»¯C¤i±c\ f\1e>r\1f\1c\9f`¹\9d\rÑ\v\9b\ fUÎ\9du÷I¶±®C/\81R_t0J\1a=ÂÀ«d®©©¹\8a\1aª õÍ;K¦'\ 5$&+o\8bÆ\8fÇ=Töv+X,Äk\rkd(0!*ªí\ 1KØ\10(ç4òÜî\9es\e\f±"Ã\12³zìx\eã*ÈÀ²³Iü+£\88\90ès\8aá61d¡\85ÁÓ\86\1fÈ°SZJ4ìÉ\86ê6\0±\82·uYäɾ#Ë\ 1a&\95@\18¡À\81\ 5ª®EÃ<Ö\94¶oê\ 3ËÅi/êÅ$)L¨¨\195-ã(\938\16Fx\ f\ 6¶Ý-ѹ\15\96E\14
-¶y\8e\16J\9d\95kxL° \ 6\86aZÆpJh\12*\bfÞ¯\ 6Fe\1cW\9cøH\86Ë Ç¢\ 6\8cm\13\1cË\89k¤¢\11\99}êÿ°\12ä}fä\97ÞUqS\ 5Ü®Û\1d»ie¢\99õé\8c\ 5\16¹&´(ºYÌ\v`D=Üaø\87\94ÎÜz¡h`u\ 2âçÔ\98±k[³\1càiñ\93\97[\11=W4w\8bd\1cÂ\94X¾}ñ°~þé?'Ö\97!H\ 5\9b»¼äßÂJ¡@ïV\9310yuKunÇ Ù*!,±B%\ 1\89\9aSzÊÅECÌÆ\8f¦å\99^\12\10_ª;&Ó¥»í\ 5qÞ;ëd`Ñ#X)|AËAàÛ%>L\12*\1aüXqßv|ô±Ö£½â£\8fŨ-ú\ 2â\17¨\1eEý-e\94w\88a`é× sjVcar\91Ï[È%F\15{{´\90\93\ 2\ f\8b½µ¯3|ãè\9c«÷³ê\1d¦²£²²´)YÆuC¼>+\92ï\9c\95h¡G\b\ 5\8bâµ\97{\7fQÓr\8f½§üºàûP\98Ën\e·kÆh)\16\ 50\94ü«£#7\9b\8b!G¢xX\93B\17\1f&¹\ f\f\95±>\16±Ð\90cTv\8cW\16\8bë[¢Ú\96dßÊ*\Í\b]<\86\1d\ 6\86
-O9¨êÕ\ 4\16Ä\1cBX%\7f)*Ô¨G ª¨\9f¨Ó¥â\9f©\15¥Ñee\a\7f± G1bµç\89\90)gwY\b\8b0T0{\14ôÆ\ frH\87eÄ\8a\91ÊY\1d_\ 4\ 5DÔX\8e\v\v\ 6PÜ\85j4Ï\ eä]\82fÁ¨\18\ f\8a¯Øñ\r-¢)\ 1¢Ú\93§î\966\9c'QOH\82Ú\1d\84\eô\91/JQËaai@QÛ\95\1dt,âÒë\96R¾E\96çm\vÝ_ÖÉ1\aX\89Y\89ý\ 4£»\1dy¡²ì¡P$\98\85\9bR\85)¥mðÊãlûí\ eó\14BRsù8ZOÁ'µuP\ eY«\84ýØ ç)þ4¡¾mJÛIJ>\1cåÄçB\9dT,zt¬GMÌàX2\8a
-\8b&Éá\10"ç\8a\1aÎ\19¬\9c$ÙùÜë,iO\9f'ü\98HÙ²\13\84C\8c\r&
-)¸\80\8a\86ðú§;ë\8ejG*J\1e\97¦ñ"!v«þà\15KÃú\87â®ær\7fþ\aÝY¬ÔZx\1f°²àyDC6ä\16©\11\1a.U\82EÝ8o\ 1\14cG .Ft{ÃÚ@\1d9«\13\87T\80Æâp\8b±±ÖP÷í \13Ú?ºJľãêÆ\13:\10³`t\99SõË\Zq\ 1\13}è)ó×\ 4SUÉ\81Çu\96>°¢\9c\10V©ÕaY¶H\81\84Ó¡¦\ fÊÿ\1aï]7S\91ÖÖ¤O£8ýµ§zàòè[àÚ\r\vgÍÛÒOY)S-±\19®\85,ѧâg/aô\9b\906²|\ fj\JA\86
-Ð\15\bað\80bò \Á:\86uâ\10\82£E\ eµKÔ\89ß\12(ùP3e»¨\80Sã\8an\ 5ÇÖÆvU\80ðàá\82p± xD4W\826N\vú¦P
-\96£¬âSj9üÞ\15\ 1\1c\87\1 K_\ 1\1a'S¬ìâwK½\1e\9e$l\14c.·âa\1e\82§\10\0,X\9c)zT\ e\13{²â\15V.\11\19·ç/b;æ\1f8\85hG®fcXV)Äp£©\9d))ÝÐwªÏÙg\95}åCt\ 6\ 2×Ô\vË>lu72\84ÐGñZ7\93çÛí\94?|NwUÞ)\83KQ\8e£\1c\aõ\8c\12\92á\ e\88¿:É¢\8foÌèn{«7<\1f¼Ð[ê\fl\12ÒL\18%\17\1eæÒ2\88Øü\ 6¨\950 \ fÝõ
-\11s9\87\8b¸1{w6}\83
-´\ 3SÆEu_\12l)\89Ðå\86ÑJ'\9d)ò©`\10µ*\95Md\8bµR»Ð\ 1Þ£tÄÝ¿\0\ fó\91ò»©IÎgG4\82\8e?\8eZL\97\84ý\97\81À@Èæ7[§j{V8nCëbZúãº\f5t^GFÅÈác?L\r\9eaé\11kn®è \0\9aõRm×Æ\18\8f§ÍÄ\ 4\7fóRF\87w\90\91O&IÃ"g¥«¥ôÙÌqsV|iI\17ù½®ff?{?r¶T¿FÚÈ#Ô\v\97\80\98(\18¤½X®â>\8d;H{ñÚ\87\84ì<³Q\96-U. µè\9fö¼\9cÈ,V0ÑÒ\14\16w\91Mq\ 1PQ\9fáXEº<n8e\81\7fÅôÅå\1eS\eaa\99 ¥±ØQø\ f¤Ã¸n)Ö/17ºü(\87
-\87Ì9\8fGÉ%5«¦(\90¸ÜÕ\8e\96æ\87Ë\92{î9{Ù{\92\89E+\95',\8df\81
-¸ÝúÉÛõR\9c´u\91·\10zôõt\91\ 1Ù\9b\11\9bÇHÆ\91\18£H\88e¨\7f+2RìÄ\8f\a\9bÇ\19\1eµK\84¡ö³ãÓ]\ 5qëE_îh
-\vW\ 1\97;&Â\10S#\97Ô\9cI\1e\8fnE´4\86Öu
-\18C\14\ 45¬äçXc+bq9õZÝS\bA\12'"\9a\ 5ß @£h!öT%<z\1d)s"yy!ý\9e"#\87Ø\18Û\99\81Ûdhåð \15=\83nã
-íËc\rÙ0\81-\16\83*TÁÔ\88Ï\ 1\ 6NÞ\b\19²»÷mb=,c¿æ·;kâþhETÝo\92\12då\94\96T,¸½\8c\r\85\bD\80G\8eõEã¢#\84K\ 5\e\95½#ÎßJ\1c\8d\98õc+dqX\8dûá_(s\ e/§ØAßþQ%ສ¢\8e!K\1c\8b-²Q´Ãù¹\99&QØ+ .\12%\14Ò`ħ\vÞ\19\17\9fÑS\0\16ö!Å<Ê\10lì)¾:\8aè9\87ÂB\1f\1d]\ 4)ùÁ\9e\14*ÂrÍøÍi!-²\ 2¸;mY\80\8b\1etp\98\90oUýòèÊ4ñ¾2\8d9$\ 1W\7f(ÂÙ\b\18ºßÂb\9b+\1f8\13#â\17¨NÐO>ªì\85\ e]g\16Å·°01C§#¦¸'¢É(´Ç\13çf¼\19\8f\ 2ÿ<65³ËYDíØ\¤\80\81\8cYIè\f1Y\82®\81¤Xü=\8du×na\8crO,|èR\ 3¬\83ÔT}Jè\fÊ©T\82>I"\9c½\1d°Ìü&§Q\17É\82êãXînë2 º²\15!c¥KµÚ~[\99A»[$\9e\1fëL\80K§@\ e\98 |§Ë \91\8dó½
-Í'³\9c\8cy\13\11\8cO\9e=_\8aê#/í%Í1þ\8e*$~\vQâÊpríNÚóáPt\ 3\v\a¦'\8ds(ÅÀ*\9aN^||¥LM\8d
-=ÀÁÑTï\98ÿÏ~ú\8ai0£Y$\99t¹iñwEHü²È î\rÖ5\1axo×\1c2Lf\15\83Üên\96°\85ak_%Ñ\äñNÝ\1cM²\90(,\8d Ez\b¿êq\91JSo\8d{\11Ù\vÖ·V\7f\ej%\84 o¬V("äÃBÔ\9f\820è<©\ eD¡$\ fz\87h\1eÝÊá\8dh\9c[î¿4<\ 2Ü1.\82rÏw\ 3\91©>åa=ÛúÝ`\fÖ¦\97uú\19Q\19pK!*éKY§D\8bÇc\14\11>\9cT\99Ó\92\ 3øp¡\9ed°\8fÛD\8bp:µL\9cs\96£{çn`¸pÖÕQå¨äñÐ\90÷³=kY\8b%4\14 Ý\96°éaÞñÕ¡ÿ[\bù+\85¹xvÕ 'Z\98\8d¯®\8eâ\9eTiÕçà\12hå£\82\b\ f#;\1e\ 1\aË\1a\9f\1dÂ_\8b\8aÍT>HA§ÂÞ&\ eá\9f{U<rjáQ\ 6\81\ 2\16\và\98\9ayÉ8®¤µ\1f¾\18×x\88 \93ìLÉØm]*-;´wd¥&¦ò¶Üâ\10\1c\vÚ\9a<\11n=Öî\8ajèk\8aÔ\rz\17¿8÷?r\ 1ÁÊ
-.ûP§\82÷\9a\85\92lFÓT\96"þ\ 2¨wì\95\81\85\1ds\89ÐeS\86\80mJ¬4ëã¨
-\17\8aDN\9b"\88$\98kiºQ\eÅ3\ 3\17â¤\0/\91¦TËJÕ:«\14ª\87Gd_\1e\12p2Ì\ 3\19\18¶Û;{F\ f\99ø\ 5Y\9cÌ\8a 0\7f\92Ù b..DfýQ\1dÏP©\82ÒË`+ÂWæ5"\eâR å\ e 9ëѺ\ f\ 1_\ 4<)ÛS[æ(S{\j̳¯*)aÿ*5½»\95ÑR\9dZtxÖ\9e-RvÕáy°ê£ÃswS\82\9bQ;\á\b )~\92¡úÂþWØ\8aI±s¢Ó\82\13|È×æû_ö\83¡¦a\8a \9dx Ä\8a"ͧ[h\ 1Dü®\88B\1d\ 4\ 3ÑÅ`RX.©ýÝZ\95Í\1a\18\86\ 4\8bi\9c¢\ 4¥ÅJT1 p¤;ë*ä
-B§Â\9e\e\13¢=Cø\ 2+ý;\84ô\11h(î´ÂMø\92CçUN\ 5\9f4&W¸Z8~µ\815À\8fûv1«»s³ÀÕÜ\97Ên\94ÕE5\93\12\9e~»Øº»\rÝèí\84)Gã\8f¨*¾P\85ÃÀW¢\9aGtdbî:xÝ¿:ä¨\by\8d \1eZ¼EC\13J¥háÙV\97\14Ä\9eÂ\8ac=\129zEåk\vdÉ4\91\13JÏ\12\ 2\8fÞâ \8f\80°TgYQsF\91%¥$ËÄ3|K
-\90>þ\1eð=\r3\v&£xÈC)Â\7fùs\87\9e~\a\ eQÁY¦Êr(E\804\84,\1d¶Ø\93VDåÿw.\16\81uwe_.\10%4§\ 4\ 2\97\87\1aJ\ 40,¤¸á£^$Ì\ e©J9õëpék\8bâ\1e\ fæ?ûaª° \9f\90\b\aU¢\9fÇ!_Ê \18Õ~êY\92+vÊT¨\ 1ÕR:8õÄt¬$\19lðP\15ëØAÎI\8a}U\99Ça\15l\16×0ì\84\96óþ\14\87£\ 1ý\16r¸t<º\11<\ 6&ÜÎ"ð*\1fw\83à\90@i\ eÚ]\90&\81
-ÿâ\8ap\8dù¨×}2a\87]_LQèÑyãñJ\91\9b,渧Njï8\ 2Q@°\ 4\8e¯N0Ë \eÔ\96³8\97\96Ýõc¸W\10xkå±~\85\f\90ÇùRîÀ\ fé1CRÏ2Z² ñ\16ÝH\1ff\ fH\ 3¤¡|5;*äö(Ò-ß@u\12%ÌO·^\87õJÌ\8a;\99ÕÝs!vT\r%¬ªßê\ 2\94tç\11iPs\82¡¸\89v\1c&\9d@UW£f\91CF\v6Ó\130\12T.a\19 g\89\8f\90e\9b.ZâvÝé\8aÇ¥ÈüÀûH¹\a¤1\99á\82\95a\82;Ä\158Wª\9cø]Sw7\94A\88=\1fo¦:õ;º\9b k\91~\90%C\ 4>õ=ÝÝ\ 6"\10\95qU7Èxô %ÞA\0\8c£ÝcÀ\b÷DðIu\8fÃ*¢ââ\11Þ7\ 2\18JèN\1e\aÀbOö=ØU\9a\12"5Y\\89|«Ñ\19T¯ç'\87é\17\10DãueØùr àe\87ç\8a\17\9dº\¹J·3\ fl·Ä®S\97'ÿç\8eêêÎÚ\11f #\14ľ\1a\fÞÃú¸Ó\86¿\87âÌ^1'\88\93Úµ/²Gÿ¦"º(\8fE¸\0ª\80\98\10/Ñâøq\91¥\¥b\ 1\18
-\8fÆ\9eO\9a\84,\82oUWìEÞ0\1cB±\85XãµT\96M\ 2+Å'ì3·Ì"ÁêiO\\98\85Ù6ø\8e\\19çe×\1f3\18+\8b\8a,KK\95µêÏÆ%Iô )î$#ÀÜ\15Ò//*â\1aå´¡á\ 4\13>wx\1c¬&Û\1c\81GÃët\15\82¨\1aM°9EðÖâH\rÝ\92p\95\8dõQÌ ï)\96¥D·è J\98B¶E<\0
- è\9c2®;ì\93n\ f\rqÝéFÔ*Î`\÷Q©º\1a\8aÃr©\ 4½o\9d×\16o°\ 2îR ¶Rß5(j_\16\ 5?tÉAa¦\8b\12\86*3\99qåë\ 5\19\1aÏ! wÈÂ\99 w\85\10ù\11{CÓÅuôÇ*\9c\a>\82N;[_ÝJriN\84eS#\80#¡\1f\ 4k Mn%m\1f7Ã\81EÙÇç,¾ð\vÒQ r\853B\82\94
-Yt\82¦L\b)'\12ÒÐ\ 31´@ÌÐvc\a§\87ÁÊ\ 1w(êA\10E¤#Kx7\88\15+gî@¹ÕÍqõ2\ 3UËÁ5®-"¹Éaz]Q_³ü\8a/wî\84Eô X¶§\81®\93ÅêoQÏ\91'å0\17ÛÑÂa\bG\ fí\bï\0u\17^ÐâRI÷\86f@ÔÓ\19\r\ 3g&\r\11òü¤ÍØç\19¯\ 2ô\14\8aÓ\87\ 5a±³c\8f
-µè
-5í\1e(\ 1ËZ¦æu{Xä5N¥ Îv\8cç7¥UÚ\93ÿ¾\8eÄn[y±\9c× æ\1e<³Û>ݼ-ÒY5å·gtn\82\15%\b´0\19¿ªB%´\90(°^\9e±ñ®\fpwo'öÚrÓ\ eþæ(É¢=\87Y\1c°bQ\8cúÃ'bÆÕ JÅÅ\99Gૺ\¨Áh0\99KÄ\1d\17\9d©¢Ðx\8b9X\11\85\1e³7ã½,+sãÔ¥\1e=øû6\0S
-\16\18ö\87L &ÓîK±LÞK*ì`YR®J=4ÞR\f%\9c\9d5#\a0ÌÙ+\ 1\8eZþ²+{\11\84(\a\81{¾'èÞ\105\8b$9³
-©ðÕ(Ö¾,ç\ 4õ\9bÅnñ²·À=\1fç\11JÕ¡ä{.×>Ç\8eÊÏ#¹ÀR\97Ë`mn÷¸H°°î\84\1d\8bûIV¶F@\17T\15¼>¢× xDB\88Ø¥+d\8dfýR\86ÕX°;¼øZ^\ 2²6®±åCQ{?\84°B6¯SC
-\90m[\96\ 4\ad`p³\9b'Q)|®Ñ\81)vä\14\ f+åд\90û\88>K»\8c4\ e5ãÆ\96\15©çç2W\aMæ\8b+\92åúÅø±-ºÊÂ`\ e«±¹\19¾RÜXV\17ÒM\ 2/\9e\83rX4~\fSR÷v\98`°èDô\8e\18Viü»\8aýv5\17k\ 1\9eG7vpGwu`\91 E(\94
-±$ð\bî§:\1a³¦ú¶Ø\81mKh¡{E@S»½M¬ª\0úñ}ej\90\8byD\8fë)g\19JÔ\9db\94°\15÷Ã\e¦_±X\8d½\85!To5ʺÚÜú\1f\12c\98~&~ Eh\82yÞ.y!Ç\891Ú²\8e°\8a\8b)\86eI6ÁÂL,ÕG¨\0\11yðfÕç¤\9c \88òãÙ? \9ck5\\88\9bTÖíß\12\8dÆ\84Ì9\86©æi\89\ fÉãL\8bs*\9fb§#\84»\8b-\8a9§ÄkZÑ¥×u©\1a]¤ÝªÂ¾-áá2±Gå0]÷ÆF»\1aI*õk\98`\9boò¸\ 2ê\86pÆUÒo\97FUþ\80\14rî\84@\15B\8cr\Ûùô5Ø7wàb¥%\85q\9f\1c«\9f\7f Óö_\88Ø\7f#\11;\8a\a^@l\84Ä(»\ f\1e6¢×uÓ¯Ù?O\ 1\8eLþ\97Ó«\ 1Ã\ 6à]Ç6\v\eþ-A\8d\19\85\8d\92ËyË\19\ 3 ;zIm\106\16g\94ðf\ e6
-\8fD¶4\ 6»º\85ñ¦`ÃÀ\81%S°¹[Q
-cp8øØÄë©Ng+þ\ e¤{ \96\ 3\80\8d@\10£ Á¿Fû×yknØøëè4³é×\8f3\10\9b~ýXkö\82_\1f£Ù×\8f{`nô5x\83\84¾dò5(Epª6ùú¹£k\91\83+\8få\ 1/ò5\13\8bÆ\10s\98ÀJ_\ 5Ç\ 6_·\98`\13ø\1a\1aW\11\9a\1dЦ0àQ¢\8d!W*ÿ\1f \85¢Î¾E²1¨×(\80fª< ×Ô+Ôùf^³¿Z\9b\ay\8dfiõ\ eà5ÿê/Ü5Mk\1dÚ5\ eQg;°ëfiÞ\8buÝ\9eà§\18u\8dp\93Zä\19u\8dÕÞ0\92`\93_\99÷}Ê\ 1]wcá7纫âðE¹Fû\9aÛ\18r̤Ã.ÎF\cJ¾Ä\9bÞ¾\14çíf\96\ 2[\ 5.W¾\ 6ázøÃx\ 1®G`[\82o\8d²Â±<#"íA\8að\12Çc#\98Q,¦\¯áÖÁJÞlëñ\18p\92ÑÖh\ 6s\99\94ÎøÇÇ\1a\86uX\el\1d^þ\8bk\8då\81\5c\97Û\0\ 6Õz éôbZS4s\eW\8dÿÀ¡×mÆ02\9aËÝ\81_@ëÙ=¶\ 4Ï\1aà\87n×\948ëaYá\8bf½¦*Ñ6Ì\9a\ 5e\9c\7f\ 3fÍÞ\10d<e\98µ:F<ò\8e\84>¿"z\1a0kX\bByÁ¬K8Í\ef\r\v{¾\ 4Ë\9a\ 6ÉEgæ´mÉ»YÖX03Î\10,k,sXZ\93QÖ(à»M\a\16ô\14EkÜ,HÖlm¡rçD²\96\95\85á\ 6Nâ8Ö0Pî\8arÎ\84²\86u$\905Û}P#»wê\94bg\8e5(Ü$y\ 5Æzíd\89TÀ¨Ã \88'C¬1Y$\82õ²ÿ¾\ 1Ök\860-ñ«a\8c2\87èУ\19*èÕ8\19\1e'ëѪ\99ëä`W¯¨»\b\ 1ò\1a&§grõ
-Zm\80«g\8bÅ\83¹Õ¨Æåº;c«\ 1\bæê,¨Õm\85oejõ.\93ÎÐêf饡Õ\80lðÇ\83Y\rÈ\86ú6$du\8b@\\10«\9b¡¯\9bX\rC°\117t\12é\17\95Ç\9aW\1d-<\ 3WM1#en\89VÍ\DqU'B¦Ý9Ò@U#ÒÎÜIFU#ùÃw&HÕPz]ý>b|D\83\9b+ñ7§\1a©"\16¯\ 6§úq\80hcªQéØ,ÇÜ\94j$#\9e\12Òò\8fá\f\98\8aîgÏÁ\0\86\11`ô\88ÿðX¬÷0¡\9aÙÞ®Ï\8aº^\16À0LqøÔXÇé\ 51\9e\1a\89CU\ 2\99N\ro\8dxë\f§®ýT\a©\91\86§²\8d¦þâ
-FìTZmLùT\8cg05ª_¦R¡üG\90O¨æ\ f,5fx\ e\94\99JMÊIQ\94\9aD\10æ)«+ÅØ\904\92}\19I\8d%\ e\11±A¤Æ¯qu\17 iöå»Ú\9bG\8d\9c\aß\980² i)_HØXô\85}Á¨\91cQþÖ,êGîÏ&Q#õFUH\ 6Q\83tÍ\17/¨Ó8¥Ì¥\86»û\18.½!ÔÍ\0¯Í \86!ªU\99Ü\85AÕõ\89@\r\85B3è\99Ú\ 6\*ç\8aàO\1fCÂOG\99ã¦O·\b?\ 6|º5Ix^ìé\16\9d§\ 2=\r¶u7@\9a\90fxÁÝUõQ\80Ìj\ e\ 2)Í\9dÆêOY\1ac§ ò]ºû\9b:\8dSjõ0§A\8c`ùy §Ûã\14U&Nè\ fÑÀi\18\8a±\f\8cwb\10ÒܼaÓ\84\8cT\13¨y\19\8fñð\81\9a\ 6TH \84D\9aF>V£·AÓO@f\833ý\94@\96'Ìô\13²\97 L#ñu»â\95\ 3Ú\1d³lfL#ãNþl ¦\1fë·7aú\ eäx\ 6Lß!$ À4Z\8aª,Ñ|iö\18µÈ`ã¥ërï¹ KW5ÞÛliìuë(»F\fo¸æi\83¥\11ê鬡2Wú\ e)oÂJ£\10¾\ 6à\9f\85í»p2`Ñ]í\95_Lé\1e¨/Û.®0«p\fT©]|?ÜËà\10¥¹<k\a(Ý£FO8éËù¹\17MÚ5§\a&\1d\85¹\9b%}9ÉûBI\e\xHÒ\17ÝØÃ\91\86_UÞ\14i:_]Ï\99©Û\87mV%pWMã£dmFHOÆ\9dU\1d$\82ô%ÖÕ\ 1H/çQ^üè\90À\a>\9a\v\98Ã\8eÆ\9f\144äi¼Zè½ÑÑÜÊl\13Å÷Ñ\fÒ^Ä\ 1G;>·¹Ñ]\95á\a\e½\r\99\1a½\8d\ 1\8d^\ eM\ 4\v\9a±Á2\8e\81ç\18>ÓÞÊ\8eñ\ 6F\1fÃáEo[à¢ë.é\fZt¼\8a\19\16½\98l\7f¾\ 5+\1ak%*É\ 2\15}1\ 6i(ôV\98â\bRZ \15-\0ÁS\ f*úbUí=ߨè\8bäE*=Ì\8aþ#$Ù\f06,\1a¤-M±\19\16\rߣ»é\82Ô^=Ú3\ 6"1ðÓ\99\14\8de6³\13\ 1\8a^tW%4ÂGÃXÀýí\8d\89F¡Í\15LèBî\81Û\f\aª\16Uáb\8adJ4\9c"åë\82\12}\91å\1eò\85»+ðÅ\f{\86DßdZJü¦!\ 5·ªX\9a¨Â\ 2IË_\84èjÐÀ\ 6D£Ã<WSÁ\87Æ°%\ 1QÂCC B¶HСïêÔsÀ¡Áá\9622±¡k´\9a\v4tu?ßM\86\86!Zdîô\e\8e\ 5õ~p¡\91\93ï¡\1f ú¶9\8e\95©Ðð\f¥\954/\85¥ßS×Ê"?b\ûüöbBoc\94¾@\0Ájá@Bó\16Ù\13ÛÕ\ 1\ 4\98Üã\0¡o\17\1em\1e4¶à:!ó ï\88ÿ\ 5\ e\1aÂ\ 3\96A\a\r\1ago1Ê.`$Ú}\96Ã\82¾\97G\8a@Ao-["AC}Æ¡*@Ð(\8e`%L \9eA â¥f\104\97\18w2öà\ 4\ 4\81t\e2\bú\18\r\82nË\81òà@\7fñ©ÃåÆ\10ä2¥\84\81V»\9dQ\ e\a\9aª8öû\ e\104å\80\14þg\104¾T\ 6\ 36\b\1aÛ\89Í\18 h<nÎ×\19\ 4M#\95öÁsÖû]\9f\r\82.¬0mõ\r\82Æ+¶L}ö~Ý\98bq ù÷4sø:ìtg\ e7\a\1aªÇ\1aØ<Et©?ªªLØ\1ch\12\1dÄÍ0\a\9a\ 2J\11CÌ\81&°\87\85\e\99\ 3M+I5Á\81æ\ 3\1aý` )Va\9e5c ©O\89\8a\aæy!MÁ¥l\f47á\a\9a1а²9ñÆ@S\98z=kc !»\11\8a0c )b×Ôd\ft!°w¬\83\81ÆK©Z\99\8c\81¦\8aÙe\f»Q.£\ e\9b\ 2-ê\91éק\ 1à.Â\r
-4äF\179\8fA\81¦,\98\f\9aL\81\86UAÖ @SaÆ\b«)Ð\92\9c±8+Q ¹#KJ\82\ 2]6V1(а0¼ö¢@ã¢\86\ f':\ 1B®\fz\a\ 5\9a\ 2$\16<'\b4ûäÆw¤\ 5>bW\ 2\92\9b\ 2\8d¨D{Ê\8b\ 2\8dÀÙÝ\ e\ 3za\8dTÆ!Ï¢q\1eÏ2\11 \97\99Z\e\0½,0ßüg\1cæ\13üyÍx¨f?3ÜÆÐoà\9fq\11\9cq^øg\94ýD\8c\9d5ýèË~¹\v£\1aWßQLsØÏ\88\87\12
-\1fìçÉ\1eôß6ùyÞ\ 1\1cNàgôÜV\94\99 ÙiÿiC\9f±\13ßÕÌ|FÀ\8e\99ü@>3 ÈòÜ@>³]79<\19ùÌë\97öT>
-\ fmºj\96s\ f\8aZû.26}eÝ®ûòGÍ\1eÙNy\90]¸Ì\88zñ\9eadåPà\9eq\18E\83E{Æo©\86æÀ\9e\v\95\b\97
-²ÜO&¨¦A{Ö,â\ɦ=\8bí\16½EÙÀ\8c\18\85©c \19\ 2\1a\ 2\87õL{\86UU}A{¦\85ð/Ó\9ei¨VymÚ3¬@
-Ú3\7fàÙlg̯LfûÛ\8bö\8c`³j1\83öÌ\1a\ 6ÕÑÇ\8a\17EËÖ6mØ3«&Xç\12´g\94"è·\83öÌû£BÊ\84{.QؾqÏl\9bÍÐ{à\9eYÄ Ñ~Â=³\86d\83¢5ý\ fËý\ 3÷L\v!}\19÷LÑ)\95\b\81{fw ®â\82÷\8cÙI\15\8d\99÷,\19*\85Zæ=s;\95ÎÎh\fîdÎ\vøL\87\86Ë\92\0>K®êí\9eÛºÏÇÜæÍ{\86Qî\86yÏ4tK·ö/\12[û\ 2>3
-'Ñ\9d\81ÏêÐ1¥\86\11\92\a\11¦ixý\ 6>s]¤¦\92Áà#Ã÷6\v\9f\15ØÍ\1dÍ_ÄgYg\14cÞÚÎEª">à \z&>³Ñ Kà\83ø,ÿß\fh\82ïh\83\91\89ÏjëG¦\88\89Ï\8c[éÑ\99ø̵J \9a7ñ\99\8al\91S\8c|¦j[_\85\91Ï´èýOÈgZ\1fg[\15º\e*xßÄgþ$«ÿ2ñY\12ø¢"Q\87\ 6§2\9bø,qûån\9aA|¦CÈÅ}0\9fqË\9aH\15f>+\90áZÏ£\12B4ã6áÙ<áÇó[0\9f\15Üh&s\ 4ó¹ìö$F>ïÀÈF>3\98Â\8ccF>ã2å \ 5ò\99î\1f]\8b½XÅÜÊÂÔ\8c|ÆBàá\99E\a\1c¬~TéIâ3Ik|}2ñY!ßÕ\ fñ\19¯\19ù3\9bø\Z\v|Ë!>³P\8aTãpMØë\8f3m\10\9féÅ«·D">\97-\16\bâ3-LÇ\ 6ñù«ÿ¿W\ 6\18\7fùUgâ3R\80[±¤\94\ 1Ð\16*\v
-÷\ e\94?¶¶ÎÄgZÙÐÊÄgü\0\ 5_\9bø\f\v'¶\17ñ\19V\92c6ñ\99\16¥\ 5M|\96\859¯D|ÆO\92\ 3¹\89ÏÈLRü\14ÀgdóÔ\9b.ñ\9e\99\88$+9xÏË©¬ÍrÆHÇê\80\8c|\1ewddm\ 4ÓI·ÆÀçþDyNâ=Ãx9BÅù\ 5\ 6²9\82öÜ\9f#ðÞ¾}wÒe³\9e{\8cB±U7wéEzîîg½AÏ ¥]\8ex3\86\85^Ù\9ci2ç\99¬ä¹\8eq\8e`j\19ó¼\r\19ó|\8cÆ<Ï\1a]¢\8co\ 6©IýV\13åy4GÆ÷V\ 6\93oÆó6dÄó1\8að<¢é\\10\9e\ 1\8f`d4ñ\9dɹ¾\13ß\19±g\15\80\19ï\f\83f\8aDwÆn\9cÒ\83î<C¼\13pçyù\85Ïlç\11í²\ 2í\fN\8bú\0\9aì\f2 \a¤\fv&Ó÷Q\98\8d÷\8f\86¢KáÄ1\8aQ\89\89ê\f\e\81\8a\ 1u\86!\9a²Ó\13E°7°Ï\eé<®#\97cvr¸ÏÑ&:Ã@m^\ 6:\ 3·Æ"Àà9#\ 6J\8cuð\9cG|·\aç\f^Z7@\95Q¨\1eo\ 3æ\f\ 4(\v\02Ë\99FÓ¯\99\96Çn¢|\9aäüaP\0,\83\9c{øùæ8#(«>]\ 6!l\88u¦8SÄÉFn\868#çå»\19ÎÃ\vÕ\17Â\99í\9c×:\ 4ç\1eõ½\ 1pÆé°Ø&ó\9byN\18\1f\ 3ß\8c{̯?èÍ0ÐOOðæÀÒmv3K\a\9fqÐÍù0\9bܼ\9bï\ 6¸yD.)0Í{4ÈÜæaé×Æ6\ f·\12Ø4f\14\18p(ÏÐæÙ-\8bß[-.ö6±\19\8a>\8a)\12°Y\ 4ËuxÍ0p\ 2\r^ó\f%IÆ5ÃÈ\91'pÍ(p`>!hÍ\0R«\12,Á\9aQHBG>XÍX33ÿeTóþ;\93\9a\8fÑ f\0\º»è±`kFd(c\9aW \91\82Ò\8cu¥û/GcZ\8aÚëzS\9aaÕj&\82oTá´\bf²¶©\eó\97(Í0
-\ 3\1a\94fX¨\1aÙ\94fnÃ#\1cJ3fRŪ\83Ò¼\f<Ú\90f,qÔ\98;1\9a?.PÕ\1fÁhæYñþ\ 6£\99eü3\98Ê»\80\ 4>$/;\18ͬã'¿>\18Í|\90Ó\1d\957£\99O\93ÅÆf4óàP\19\8cfZ\14ÃL\8cfö~\8c+PÐû\9a®³0£ù«OôóOÿ9\19Í\f\ f2\9e\95\19Í´*ßiF³¢\86îà®É\fá@\95Ô&F3£VÔ
-\ 5£\19\ fÖ¿`F3\90\8b|C2¢\19\17î\8ad#\9aÏÚ6\10Íú¨Ý(á\84gktÿ\rD3-<ý¶c\97]\11Õ\17¢¹\ 4{e#\9aa\91~ \10ͬ\e\9dÚd\13\9aq\95\92©\ 5¡\19o\9d\10MAh\86\8bç¢åDh>¾ì\96.àí\fÉ\86°\ e%j{2¡9YMhfS^æ\0\82Ð\f\8b¤b\99ÐLÆ\ 3×óAh.äf\17\15\84ªS8\94µ\1c_2¡\19/¬e\19&4S §v²&4ãù\8a±\96 ͨK#¿+\10ͨÒ\12\11Ý\95Õl\8föí\85g\86ÎL© Ó\99áLsä\b83Þ\12¹ã ÎÌX\ f\87ë 33Ö£^Õ\1e*háR3Á\99e¤ÆÇtf\1eª\ 5\8bY\ 5¯Õ£H¦33bÉ\8e\15\81gÆãf@pã\99×\f~öá3£\8e&*P\99P\99\81u\b:3ëj\8a0Ì\eÎ\8cF/OB3C?É G \99ÑÊa*Á°C\83#êâ\ 2ÌÌ\1a½GëPæÎvÛì\84eÆêFX\14\87G¨ ñ"\94²+0ò8íg&óp;©\8dd\1e®ÔÚDf\10Á\18±9@ft\84á¸\1c<fª+.Ç=àEvÇ!_8f\80¹\18C\v\1cs¿#Þ`\1a3Q^J\ eo\163\9b\18Qâc\143\ e\938Ì=R£\19ÃÜ\rzÚåÔ\14ü9]Ëp%®Aé«\ 4afçö[\9f4cQÈÖñ;
-\ 4ó\13Ò·L`&ßlIÈÇh3È\ 1\1c}\83¿ü\f÷·Ïüeh§Tïê@6tï,d\ eúò\13\92\83\f_\86ê\87ü\90`/C©6}\92ôã\80\a~ÞÜeTÝ\8aÍ`ìr\13Ó&\98ËX\16±\824#\97aTÑ\93«È!]b\0-°É\107\89Q\92xËÍ\15\19\e·ÜÜ47íE¨ã\8bµ¼[í\ 4j¹;\88¹IËP\96pnÎ e\\0\7f,8Ë-Ú_\af\19%Ujo\94(Ë-
-AYn1i\ 5d\19çs\eø\93à\98L\18È\bÄ2& aæ2\9d\9cæ\8a³\17a\19\8e»\96ÿ\ eìàÜøR\a_\19*'*\8f\13^\19åÃ
-\968¾¹ZôÔ3\yuç\8e\13\\196Æ\82\82¼¢ët \95\ 3Íø"+/«-6Xy9#°¹Ê0Ä\8fm®2Ó\1d\97¥k\8cmEJbc\95!ó\8a\80Ò¦*Ï\11\12LU^AÑ\f¨ò\8axxb*#Ý¢7§ïÀ|q\17\83\904séC_.3\95ie\94"\98Ê\85¨Û²¾m¦2³\ 3t\9d3T\19Vev\ 2ªL\1eTñ[ M\ 4[\9cLëæwíà9\9e©Ê°(¿\14TåR¢\96<S\95µêYÏ¡*3áLO'¨Ê\82\17\98\ 6~øóð\0Õ!ÌTe&zÕ!,\1a?}ñ\1d#²÷ã°Êð#س.S\95\97j\9a7S\19\85òê!j¤ò²´êET^\1e 7P\19\ 6±éÌS^fü½pÊ,\86½û¡)¯`"\a%\99AEf\1d3L\99\0\a\92\8f÷và<²%gÐ\94S\ 2-á\94¹(PK ã\94¹\18\eýÐ\94\19êì®XÜLdÆ;©\7f\ e\9a2Oí¾\ fL\99nö½î¯;*K\180eZ\ 4§\1cQåQ]}\92hÊ,éPÍ\95iʼìA\98¹iÊÛ\92iÊØÑh\ 2Ó\94ñM2"»iÊp©\1e\15®$\9a2¬·º`\8e\10\1f:ª¹iÊô½ù\8c2M\99.\1añ\88AS\ 6\9aAµn\82)s\v>³LSæ\99Ý÷\81)\97Ëe\81\e¦Ìr\10\8e» ¦L£¾xÃ\94iéî\8bÀÚ¼«(Þ÷\82)Ó»¬ÖêßZL¸tgÃ\94aQ¥B¦)sñ{\9bÏ¡ñ\80ÅpUâ^\9d\ 4\ 6\ fʲ2N\99Ëá\1a%Û
-GÜ\1e!\ 2§¬ì.þ)ã\94\195)\ 65hµ\80å\11\87\8aà)\13\87Æa'ó\94\89¯\91ðØ<eâÐÔõÁ<e¥H\1e 7O\99\92\12þ³yÊ4ܦ'wu?kf:'\9c2r\97~\0\11](Qm\198el£;\96qÊd)FO\ 3å'\90ãTÌ|\ 5\92i9\ 4\93\81ÊdhQ{¹·kAa\f 2V\8dz\7f2P\99Af¡e\rT\86\97)\7f#\88Ê\b\1c(\f\96\89ÊÂ\19Íz\88Ê\94\0ê+\8ci\e\16j\7f3QY\82Ê~\1f¢²ÐV\87§ÌýTk\95xÊ\8c\92\aT\9bôÛV¼Ö \9e2\17\91J©l\9a²\14\94ë>4e\9e:Ó>ASFìJµ\10\99¦\f«\7fðñâ§E\r\98iÊ´\88µ\90hÊ°\1a¦!\9a27Ó\8d0M\99ÇÖè\94hÊ\Û\90\ e\124e<pÉ \8dS>\86ÌSNV\ 3\95ñ\ 3
-°\ 4(\99\81¢Ð\81\1f®Ê\1d\ eÞÞ®ÆH\1e@ådI@åc\r 2WtÊÛ\e¨¼ß×\17R\99iè\95\88Ê,{§\80 \88ÊL#V×ßmÕ$|C\82©Ì<"ß!1\95\99\vd\18!3\95%X\1fë0\95Y+ÁàQ0\95¹\r\97¼\19ª,]òè\aª|\9aP\ 5T\99qª9Û\eªLT§\1a\1a\18ªÌD\10!þ\ 1Uæç\17éýÔ³F!ñ\rU\86\817oC\95\19Øb\e\84\fUfd\88}´\82ªL\8b¦2Q\95i\90è Q\95yÿÕÔj\ 53®E{bS\95\11 P=g¦*\13iõ¸Å\9eÊ`\90\96eqxP\951Üé3ËTe\8a<(H
-¬2<G7\850V\99Q\13òG2V\19V.º7V\99\16>¥À*Ó¢\86z «ÌãQ¡\13Xe\86NTf½â:]àóÂ*Ó«ev:°Ê$±!\`\95\99HPkÄ\84U>ÖÀ*s\92c£·À*ó\9e\11Ñ\9f±Ê°ºù\8aÓ?°H5\15XenC9TÆ*ÓÊg\15Xe¡õF9\eª û\9bªL}$ëª\83ª\f\11\ f\a\96\8dUfr¦ºuÇÆ*3bͺûÀ*³fwe\2\1c\8a¡\ 6w «¼\fÎØÆÝW'8\9cÛ\90\99ÊÇh\ 2\15\9aßDSi¾\88_\1cû\1fºvà;ڷ\17Qùæ-ß6P\19Ï\978§ÍSî\1ev^8åî8ɦ)w\a\8b7LyÚ\85x±\94§\ 3\83\e\88ì\82õCR\9eñÆe\90ò\14z?í%\ eî¦(O\17\99¼(Ê3\925¦(ó\ri5 Ê\10\90(A\91\18Ê\ 1·Ý\feȸ8¢\ 5\99¸Z
-\97 Ê° êh\802\92?×<ødf\91Öý¦'×\1e 4Ã\93aXîlª1°\vMÿb'\93G\8du\8cÐÉh}A\8d×>Á\15ËßDNFù\ 2ý·\0'\a\16i\83\93ïhã\9c¹ÉÐP!B\1cÔdj\84\9fû@\93AMZ/bòÝÂ\8940ù\8e\8e»ÁKfné\9ao\ò\1d¢\91 %£,\80Ñä %ßFvdX2lt7\83\95|\87ä/XÉHG±írF%£\1efÕ\ 3JF\96Aî½ß\1f\14\9e°»JÆ$?Ë4î $3°·î\ 3Iî!åÌ\8cdän\9eu\bÉ\10¡\90é\16\80än\rÝ\8b\8fÜíÙo<2vcT<èÈ8.£s\19\8eÜF<E\aÑ[tÓ\f4ró\ 4õ"#£\85]$\15\18\19\82\88e\8cà§"¼\1eLà\8cEÆ2KÉAQ\91c\ 5g&ò0\18å\85Dƺϱt:F\\a>\8aÓÓëÅ^|33\ f\19\11\97]ÿÀ\8aÙÇ¢¾ !Ci§Ù0Á\90q±ÝÝ9\99\9e¤D¥)\9aÎP\15\15\18Ì=%\14²«Æ6\b\99\8a\ 1'x\98òìfW¼0È=Ú\7f\ 4\ 5yWÀ\a\ 4¹\a\10/3\90Ù)åÖ\1a\82KÊS¯ì9ñ\8e\ 2üL@\86f\93ó]\0\90Aåe\961øÇÍ\10\9c\8c?&l\ 5\819Ó\8f[p©\ 2~ÜB¶\9aÙÇ0²º<ÐÇ °08\17äcüVÙ(äº?\18\ 5y\82{\f\17\8dÀ\88À\1e3k½¾½ ÇÈ`0,\17Ìc\80mø\99\ 5òø\8e\9eê\99x|ïÆ|\ 6\1e£FCôLó\8eïÈ\10eÞñæ\11\ 5î\18\ 6Í{NÊÁÀÀF¦\1dß\81\91\ fØ1\80rüô\83u¼ñÞ\19u\8c²2\95\1cº*ç¶PÛ ãÚýµfÎq\r\ 1^`\8ek\88\13\82r\f\8f¢\8f7ã¸Ú»Ø\8cc\18\18Y\15â¸FãËL8þ\98㵪Ü\80ã'^*ó\8d\eǪOxãÆñ0Ñ\8dY\16Ñ%\93åê\88J\8diùk$È\1a\8aÝ®çT\16bÔ$77ÈÆ\b.\91¬\9bÉÆ\8b\89Ðòm\83\8d\1f7½Ú\ãá®E/¬qsÄ\7fS\8d\8bçä\80\1a[núb\1a«,ÃFLZÒáµo\9bh<É@ù\ 44\ 6S\84\1d\15\82g<½\88\v\9aq\ 4Êß,c« 6ÊxDg\ 2\93\8ck\94\9c½HÆÝ\\99\r2¶2qs\8c\99\ 5ø\8c1f\14%
-\13ñ){VÚ\fc¼\15ÅÅk\9ba\8c\920²\15\ 2ý\82÷Ùk\10}%\1cú´\9cÙ\0ãÛ.Sð\8bkx\0\81/f\99º\99ÍA/FÉ[WÁ%Ý$¬gøJntqw\83Ç7ºØÒî \177Æ\bÊ\ 1\17kAõÔ7¸\98¡5\92í\ 3\\8c\0j#%?ÀÅÔs^a É\13%\r±\1dc&°¨-^\90\8b¿:ß?ÒµÇà;b\11mrñãÌÚ\ 6\17\a®ls\8b[\r1mÂ\16#x ð£©Å ^¨-°¡Å-Ê>3³\18Ø\v:'\81,\ 6ÐB9O\13\8ba\18Þb¯mZ(\vÌ+F¶\95ò¨À\15#O\19]j¶,¦EMcç\10\8crÐ4\85\18\r\86#·\17¨âY"·,\eÁ°Ï}@ÅhvO-aæ\14ÃÈ148Å0\88ÛêÔ\12ø¬¨Î\94âetË\86\14£&Ká;o\85\7f`h&#\8a§\8b\167¢\98PÞ9\ ez\18\80
-N2\19P<\fqØÆî\82ËÍ'Þ\86\8c'\ eã¦\13\ fOá\e:\f\1d/\17¿\99M\f\ 1®Â86Îâ\86R"\13\9f?\13\988\8c\9bK<Bb\13Xâ\11$ÏL%\86\1eù T1f¡Ñ\82Àk&1\fÑ]ïx¥Ñx$\88Ä#\94I\ 1&\eÍiÌÌ#\ 6\7f\8aá ã\88Qe¤²rÓ\88ñát÷ßÛ<âÙìN\a\8e\98\86Ú\ f\8d\98Ñ뫽aÄ òðã3\8bx>\ 1l\16\8b\98ÝÁ[{£\88\81cT\8eÚ$bh2\83`\8c¨í4,äÅ!Þè¬À\10oòbP\88§?Ö\17\84\18eKŽ'£\8c\8eåW\eA\fCuô|\13\88W\84a\ 2@\f°Ó\15¸áÊÃÈ\aÌøá\95[ â\8b#å¹÷\ 3\1fF¾\85\19\86Ì\1e\ 6ª«ºAh\94Z\ eUm\98<<½ø|\81\87§\bk\e;¼¼´ÚÔaV\f¶û\ 5\1d&e\9a\rÑÌ\1cÆ\19±\8a5\90Ãë\96f÷\85\1c^f\88lâð\8aÂ\98\0\ eçãlÞð\8cÄlà\86§\13T\9b-\1ccÁ\v6\f½+[\1a\ 6l\18\101Òe\83!<¢å`F\rC\ 6@&e\18\91¼^\893LåùXoÌ0\92H\f;\9a2\8c¿Y+dÈð¸¢|:1\86\91\9b\8a\12j\81\11/ó©\820\8c,\17Ë\8a3`¸;Ô½\ 1Ã=ÊÌ\820¼\r\191|\8cf\fwS\8e6ç\16ëZ\ 6\872a\188|5½õ°\84ú¦à0rø{\£÷"\f\ 3!Õ|\e\99\ eú§ö\83\17Æ\82H½è\12]\18k*xe\9b.\8c\95\97
-\8d\UõXSðb\v7\8b36Z\18Ä!5\995Y\98º,¦Ì7Y¸[3µÁÂ\¢¹Ô\8d%Î\84\98:;¾\ 5,ôÊJ9XáXÐn¬0\97¼}¼©ÂX\1c³\9a=nöS£²ßLáÇÚÌ\17R\18(©8o~!\91\ fÛDáÏ\ eÏÏ?Ð\99úÿ\1fQø\v)ø?þÈ8Ò\9fÿÅ\1fÿò»\7fõW\7füñ\ 3ÿý_üùï\8d\1fn×·¿ûO\7f÷'ßÛú¿û³ßþø\9füî/~ýÝïÿê\8fÿ§ßýßÚþùöwÿáïÿê;[ãÿþäÿø·¿ÓÙÿòç¿\9e}þð ý³?ÿw\9fÎg\17:ü¡³úg\7föñ\eÿÃïþì_ÿ\9b¸\82?tFÿä/~÷\7fýÙïþú\8fÿé\9fÿõ_ÆÁQ\8býñIý\8d\aÿ_ÿìOÿêßüG\1eûç?ÿ·\7fù\1fºHÜÇ\8f\9bòg¿ûËsK>=Ë\7fðÓ\7fõ÷þáýÇÿà÷\7fê}ñwÃß\7fü\8fÿü÷ÿäã%û«\8f÷ì\8fþHæ¿ÿ»\7fýqÓÒ?üô\8fÿ\1dþeê_þþ_üû¿ü7q\9cÿú\1fÿù\8foå¿ùéúö÷>þ÷/þú§\7fÿÓ\8b\11}}û\1f?þãÿü0ýõ·çÛ?úö¿ýï×·?Å\96ÿô§?\1aèÙðñ\9d¡\bÑ\7fL¤¤± ÿåÃÒñ\a\82q\7fÈ\8c]\7fÉÇùå§ß\7f\1cû\7fþ\89¸²Ù\80úéã\ 6W\1fÓB¿\e\18×c]Ƚ¡£å\87'\b¹~ù\18\88ûâ\7fÀÿù\17\7f\82c¢
-ö\99(e£«ò1\bñ,Y\88_²\19ÆG\ 4¬\ f#Ã<Ï'#Âó\r\83ÖÛ\fjÄÇ/¼\8f\8a\82\96\8f\91ê}\ 66ê\0\10ÎÀ[}më Ôû¨Çø:\83cNg{\8e\9a®ëË=øõ§\7f\85»ÛÖb¡ÃÓ¯&px]\\88~\936{Âö±\f¾ÛM\0Ó\82×ôq_Ëõí\1fíG8 ª\86C\a\ fõ7\9a OÊf\18o\15j}\181\v|LEo£;\8bÿúÓÛ| \1añ:*\98\0íÃ\13{\9dA\18\7fýþ\89ýÛ\8f+\8e\7føX¤\7f¼=·ZG\9e3¾³ÙgÁ:¼\ 5%{ïå\93\912¢~ÎØf2½ú·|Ô å\e\84Pù\f¶ñ×ï\9f\98Îø¿¼À\7fÃ\vÜ>înÁ\17_\9f\8f'\80W´µF\ eà\87óW`hl\80\8a2Ô1\1f\18n\8d\16\1c\1cúêÊ_¼ïm\a\9d\ 1®\7f>\87\8e¢*¬\8bòÙfcº²lÞw!\1fu߯|\ 6éÞ~\f\8bX{|Þv\8a·þ>ê1¾Îà\98ÓÙ\9e£¦ëúr\ fþ\96\83\ 3^æ®>ª\9fî+N»_óýû¸@\84ë_g\9a\8cùª\92ùÜ\81tÔs¯Ò\19äû\8a\9f\80óüÞ\169Í:>\1dõ\18_gpÌélÏQÓu}¹\a?ä\9d\1d\18vÐ\rî=\82\r\f;¨Z{\8d`Ëñ«×\b\96\8cy\ 4Kæ=\82\9d£¦\11ì\9cÁk\ 4\e\97¹dïmYàùù¨Ç\98Î \9b÷Ù\9e£¦ëúÎ=øUÃ;f\91ç*\9f\87wÌ"×]>\rïP8ã\13y\rïÇø\1aÞ\8fù\fïû¨yxßgð\1eÞ1ç\rD\1d_Û\92þ¿>\1dõ\18_\8fç\98Ó£\8c£¾\1eú\97{ð«g\92óÜÒl\9d\9fñ\99÷Û\90gëd̳u2ïÙ:\1dõÌÖé\fòl\9dÞ\9c¼m¼\r¯£\1ec:\83lÞg\9bßÇ}]ß¹\a\9fß\9c·+\93\9eqreâmx¹2Çøre\8eù¸2ç¨É\959gðreÎ\9b\93·\8d·áuÔc|=\9ecN\8fò¼\8fé¡\7f¹\a¿~öA\96»Z|òAÂüò+0Ý OÔÛ\88\98\11\a÷\19²¼§¾}\10L£h\1fò>\ 3\e?ù yÛíWä£\1eãë\f\8e9\9dí9jº®/÷ào?O\9e¹7ß×ä)\9cßO>Å9ÓlLW\95Íû\ eä£î{\95Ï Ý×ä)äm·O\91\8fz\8c¯38æt¶ç¨éº¾Ü\83\1fãÛ\9dù÷uo\8f·\90Îáø\15él\931_Y2\9f»\90\8ezîW:\83|o\8f·\90·Ý~E>ê1¾Îà\98ÓÙ\9e£¦ëúr\ fþÖïìù\ e\16\vWîÏcÁ6çï{±hÅ.Á1ö\90@¿ÍHð_ãÛû¨\8f$\ 2ï3°ñ=\16¼¶\8dïûuÔc|\9dÁ1§³=GM×õå\1eüàõÈëÞ\9e/7\9dÃùÆÓÙfcº²lÞw!\1fu߯|\ 6éÞ\9e/÷µm|㯣\1eãë\f\8e9\9dí9jº®/÷à\a®GÞ÷u\7fµù÷÷÷\9dÏ4\19óU%ó¹\ 3é¨ç^¥3È÷u\7fµ¯mãû~\1dõ\18_gpÌélÏQÓu}¹\a\9eÜQÿ¸Ö\17·°\88¦ÿÉ}²Ðýíh\1dãË);æãÀ\9d£&Wï\9cÁË-üzb\ e\89\94Ï\ e¾\ e{¿W?:\ 1-\1dÒzâ\18_k\8fc>ë\94}Ô¼¢)\9f}û÷éà\14ÿ¹Âÿà÷\7fú
-¶þÇÄ`ï¿]\fÖwìS öÄ[ñ\86}߸÷ýåËÑR8öo\190äÀÙµ\80§
-æ>\93Ge¼/Ì\9e\10\80±ôR»´OF,Ë\9fv&\ f\9b±\84\1fÏ·÷Q\9b\84\0ï3°qO\1eèqÿÞvHòý>ê1¾Îà\98ÓÙ\9e£¦ëúr\ f~Üä\81\7f\7fß[\ eó\90¬äsà\84°øf\9f³ÍÆteÙ¼ïB>ê¾_ù\fÒ½íòRê§m§Tkï£\1eãë\f\8e9\9dí9jº®/÷à\87L\1e¬ßøt_yÚõýÎrB(÷û\9dÍÆ|UÉ|î@:ê¹Wé\fò}e\ 5\7fï\9f¶\9dÊ\99¾\8fz\8c¯38æt¶ç¨éº¾Ü\83\1f\17Ì\828Äãç½NH\ 2jÃcv\98¡\8e'\86ó{|2\92!\9c\82Y6_ª\1dÉGÕð]æ·|\ 6Û¸C\12\900¾·½¥\8d}\1fõ\18Ó\19dó>ÛsÔt]ß¹\a)$Ñäü¦\9bÃà\ 1\ 4\14¯\9bÃ\89³\97÷ÍIÆ|s\92y_Æ9jºàs\ 6¯\9bÃàÁ\9cëÓ¶·jÃÞG=Æ×ã9æô(㨯\87þå\1eü\80U÷~9JDy\8eÅSþû%´sð~X6¾_\97׶û\15ÈG=Æòù]-'Mµ\1fQ\9cb²ì\83åWaÿl¾eé\14óíMÛî\a\91\8fz\8cåó\eãSü\81_þ\8c\9f{\7fùÛ\9cï\10½Î\8feó'£/ø}7gÜ\9c×Q?\ 5#u\ 6_\82\91úò?\ 5#ùÔ^G=Æt\ 6Ù¼Ï6\8f'ûº¾s\ f>\7fù¯\9b\93¿Ñssö³É7'\19óÍIæ}\19é¨\9f\82\91:\83/ÁH}ù\9f\82\91ϧ\9b\93\8d¯ÇsÌéQ\9eñ$=ô/÷à\aLåðvï/÷uº§çû¾º\9fÝû¾\1eãë¾\1eó¹\ 3ç¨\9fòÕ:\83/ùê÷\89¥|õèåó\1c\80c\97Z>Í\ 1Ä··OsÀ1¾æ\80c>£õ>j\1e×÷\19¼ç\80¯'ö\83Æ\85í\1d\87×÷i\85\10æ\97׿\Öõ6Ú\19ü´B\90ëºCÍ>ª\9dÜ÷\19Øøi\85\90·Ý^\7f>ê1¾Îà\98ÓÙ\9e£¦ëúr\ f~L¨Y\9eq¾¯É\8f?¿\9f<þs¦Ù\98®*\9b÷\1dÈGÝ÷*\9fAº¯É\8fÏÛn\8f?\1fõ\18_gpÌélÏQÓu}¹\a?,Ôlïøuo\8f/\9fÎáxýél\931_Y2\9f»\90\8ezîW:\83|o\8f/\9f·Ý^\7f>ê1¾Îà\98ÓÙ\9e£¦ëúr\ f~L¨¹G(n\8eÒ?\8d\ 5Û\9c¿o\ 5ÂêüdDЬÍOc\ 1\ 3lh-ô>*BqßÞ¿OÓ{\1cHÛÅ\97ý:Þ1¾~û\98Óy\9ec¦+úrõ?8Nðº«ç\9bMçp¾ît¶Ù\98®,\9b÷]ÈGõÝÊ¿¿ïêù^Óvñ]¿\8ew\8c¯ß>æt\9eç\98é\8a¾\ý\ f\8c\10¼ïèþRóïïo:\9fi2æ«Jæs\aÒQãN¥ß?wt\7f¥i»ø\9a_Ç;Æ×o\1fs:ÏsÌtE_®þ×ÿô\18è?ÿýïÿä·ßýé·ñ\8a\7fþ'D@A¶ùxÏ\9fúí¹Xä[\ 1dþ£ûã|Q¶\91Í¿|2·\8f\95O\1f4ç\83ü\ 1ó>Èïyz?B¥ú:\eT\ruÎ\1dy&\9a+JÔm\1cÝÛ^@VËØ®Õd,¨¤ùÙ\aè×ãm\9f{~½xÿÜ/p7?þ\ 1\ 4\17hé/Ô\9dÜ}ú<PñRªÌ\13{ÊØoÈõù\93 %ÈØîËçñÌ;Î\ 3\1dt\9a\7f°ô\8fOÈFT1éêPk$c\19\97Ï`\95u\ ep¡6Lg0¯¸hö\8a×\9d`Ô_F\1f³<é>,¼Ã¾gõö\96\ 3ÝßõûÕ¦\ fGÞ7ü*õì΢ Ý\96ÖâL¯±\8dOëqM¾á`ý\8dû\?Z&ûô\9f}ý@\16é\0çú?=\81\9fõhPB~£Ì\ 3ÿPÑÆù7\9bëÇ}¶¹ëùÂ8âyéC×\ 1bï¾-ïCÆoM Ò}\12×ÇòÀ¿5÷ëØÕUÕF,bùŬ5\8fñ*6öéÛ\0ó\18{[où`ÚÕ1\19nüÞïÇ\89¡G\8c\1e/\9a\8f<·O\f,$\eÑ~Ȧ»\950~|\1a6^ºY@Vñæƶ+ÌÝ7g©\92KFÔe~÷÷ÿ\83O§=ÓWW\8a\87\13\9aû\1dÏçc\1e÷Óxü6³\ 3Ãü\e\1f\11\19Äú\a|r-F;6\82ôGÙP\ ecã\1e\1cØV\17F°õ\9a·$<êç8\0Þ{\99Áà\88£ÎØ\16Å66Îø¦Ó§\ es\8c-\reùa\8c\81\8c-+¿{ ¾660.ñ\9a@dù[\98¯ÖÃ\\96n&\99ËÝOo\15}[0¢¨\93Æù1q\85±\15¿\13ì×ðó÷\7fΣ!\1abÝñº¬Kó:Íì\1f ÃL½\190ÖÒýô0\82Ùø´xz+n\11û`Åë]\90ìö\8fõÇ£A©\1a¢Ô\81<Þ ¤\9aã\0ñ@»\9ewl\e\9fÁÂóøî%\9c÷çã$§\ eq¯~Þ\1f\96ðÉ\8cÂÔ_Âüls_ñ\ 2°ö_Æ\18\93¿\1c7\1eêDm¶Ï\84ü±ßÂ\fwVæG\83\ 2\8c¨¨ô\83ò¥ )gõc¢§ûóO\9fÍ\13\15ßq\80úØØÎQßg S\9bh\rÝõ\ 6¡\ 1«\82,6?~ë\19\9e c¼Þkðõö\ 1ü\81-ô\9bÿ9\ e0u\168@ÝÛα\7f¬¦\ 3ä3\88S;\8e\a ¤eúÔ\0q¸üb±¤.Ü\94:\9b\9fH{°Þ³ñò\13a¥Ý\17ãíiö;?çO\ 1U\82hlÍ{w\97ǯ\vÌ\0qÙ<xói\1cå;ÆÚ¸ü&£°\12E°4Wô%°qÄ\8fñ³ùî\19øÅ\ 2ÏsÆ°À®\8a¿Ùüñ\11ùÈ\1f{s\ 4Xmû\ 1xÛ\9ejcó\87\83/ïö\8b%!VLB~ ÑL\ 6U\97¯¹æë\19\9c\8f\8c\9dH4Dbn\8c\8fì\8c\8fÍ_MÝ\9eL»ìè}\18÷\bÍ\914\ 6ØZ\9f=Ä_1Ä\97¹Fl»ÇýO?\7fnÙ§+þí;f\8d¤\9f\8c\1f>ì¿\8c»\ eÏVæ=\18\13®zÇ(öh\18Ä!®\98î>näüCw]¯\1ap,1Çr^ù-Ìeøù·[Ï\13°ïõøjC÷\82=\1e®\98ίîûFs½c[¿\96à\e´8ê#/ðë\19Ä©ÝÒÐxä¿í\17\r4@xbB@Aþ/6Ï^|\98 M\85\8d5>\ er\9f¿{\ÿ º\9bÁ³>[ÿfs¸
-MUÀ6¶=¼±¶\81Ævï#·ð\87a®«íSÛÛÖ=\92Îc,5\86b\r\9aþ1\8c\88>î}Ç\19<ñ\1dLLèß½\84¸6À:®\91~î·0_gƺy×&\80x1KpU`ã\88»°îð``\ 6ÈÆæÚcÛº=O½\81°¡<Ë6Þõï\9e\97ÆÀ 6Z»ì¯Ð§øÍær\15/9è\1dÚxßþ ÇE7\8aF\ f\1eàáúŤ¹\86\1fÄR\13\19\1fÏ\b CqÉõ\9d3ÈÞ`ü\1c]ì\18h¸\16<>\9e\8dud¿í\ f\f\156ß±Ö$?ÄF»/8À\8a\11ì\ fy\83#.\99\r\93ÃØí\r>W\89ÑîÓ%\9co\80.§æÆ5\9eý\ŗ\87\19k²_l\8e\99\1f\9fö~1û\151\0\1eâ»Çõ\9c\vþm\v\17øã\9eëÅ\84ù,W'Ö\90¿\84ùzFz&>\84\8fÍæGýÛw\8f\eWH$Ü×+¬@\14xÑ\1a++\18·{½(\ e¤±ÀÉ\91ñJor\19ͯ˪-\ eðñýĶÏþ¾ê\15\8f\9f\b\84\9f¿\7fbçS vÑo²'\90Ï/8'\90ï¼õÿòoÞöuÜÿåã\aÿο§o\82\87¨QÙÎËo6צY\12æ9¿Éø<ûz4^Àx÷±â\9bôÚ|VTh<¾Íý¢ã\8dm˨û\86ì\ 3\uú§J\9fu\1f`t\8d\85\9eydlh´®\1f»åu¡gs\7fÂøø6ÓüDÐb^ý\89mK\1c\80o\8b\8d-¾Ç\ 5?;\ ep>¨^8Óà^¶\1aKÁ¹®\18\82>Öåá'ÈUñ}\1fÛÿ ü\Æ\1e¯O\9b~ÿ Å\ 1(ÔÖ'Íñ\956oXÏ\8fǾåJãß\19Õ®µ4þ\råè\1e|¼ðÓÆ\88Ã\f±\ 2u\80¡åà³\83_6FlézbP¾¼\80Ds\83½óD\84A;ãsùÅæ>ã\9-ú\0½û\9dý\98?¿\1a[«u\1f7Ö0C\1e¶\8cw¿}©ô\9ad,%®ª¶½ûÇ\r\8a'\12³Ê\10bLcd÷73ÒKÅèÅùýµW×ýÙ×õìÏ\85þ\90ïÕ¼÷0¿Âø±¼YiË8n½b©R\ 6\a ^Â\13ïå\¾X°l"\98¶bN\819½\97\97¯\f½\ fgÌ\97¾/è\96\12#+ù<Ú¿í\81\1f-7üe\91¼î³º§ï\f|Ô\12_Ë]Ö>ÀÇ"gÏÍ{Û\8fO;\1eÂð$ü äü¸åu\1fàÃo\88!\7fz\91\8cÛ\13wÑÃ-\8c£Å¶÷íW\ 6=¹|ÔuÇ\13\aÀz\8f\18ÏóxË^ã\fè\96ø\87ÚÞ²÷g\1f \16ÝC¼\92¾±\80Ì´\88¼<3\8cW¿J2Æ\ 1®k?\99\8f\vóu\81¬ùø\103.\81àçñéý¬é\12\1aÄ\ 6:nMo}¯\9a"\89é\8e»ÀP\9d·<ï\86\ 2\7f0\83\178F¼â~½À}\89sÕ\fËN\13Û'\98ñÊ\16b\7f·\876§gî\13"\ 4êS\9fx9A\r<D:,Ür\7fKkÌsÜgìoÉ÷à\ f\1eõÚw`8ðÈ\ 3<#Ì\8d\81G\18Op\9e« o¹zÌG÷Ý÷\ 1N´ÎËÑYÎJÉx_\181·íɯķP<\13úlWñ\ 1K'\86äEi)\8dµÅ](q\$\ 4Ê\ e\rz\91
-óêg\9e¹ý\89\94¾CgCÝäaDÛ\8a8µ[ë\8e øü\8aDÂÇ\9b9|Ü\8f×¹Ç÷`×q\96[L6=\aÔ'ûø\86WýÔ}Çز-.\98R\1d\1aë]¶gVô\1cØ\1f5b2%^f@¬Û\1dfÔ\vÉX÷hí`1\8cg\98h\1fK\9f}\80ð"0VöºýÈQö\14\8c /Ìm;\8dë)Ïñ:¿ï\8c>5ü\1eÇ7x\88\12ÏmTű`¼b*éHjþì\ 3\94±\1fçÒØ\b$÷\9e\v\1d£\93ñ\8aéá\1a~¥A\88\9aû=Chò\17\9bÏHêµð$³{î·ì\8e\1fû\98ØøØá@\a\88oâc¢¨±ûþÚ\1dgÂv1\91\80¹\1a#\bvßy©Õ4\82`Û\16\v\99øÒ\820äÁ"Æüki\ 1¥\ 3ô\15Û^×Ü^¢¦¢\v]3b`\9b(%Ñ\ 1\10\92||¿ÊÕüØ/øSÝïn\89\13\vð\95Ã\812v\95§Å\r\8f+C\81ZL\ë\9aq\80k\8f£\r-å}\80½&ý8¾§\r4\19n1´LÄ=~±¹ßñ&Ä }±\81U¼J\188|\80íS>ý\1aû¸áixI)c»Û\9eKô\1e°ñq¼úë\ eÇ\9c»ö\10\ f\16k\9cؽ'¯\18¡/Òõ"Ôªh\1f\8dÏ\8c;\86(é>nmqÜ%_\ 1M=<\ 4L\r\172Æä\9d] \98o-ÌØF<N¬m/\1c\9e\91Ʀ\v¬äáUËÕü$bþÇ\b\12ó?\8c5²4£kâ¸\10Ô_{\15 Ñ\ 6<³\16.k[#\1eä\rYK<±é\87ú¤þéõ\0\84s/8føÑ\90\r\96=uÙ\ 3a§×p®;\9c<\19ï+^ºgDø\18\aØë\90\98Ó¯\82nÙÛµ+q\80\93Q\9a+\86\1f´Ø\1e±ä\9dM\ 1lÖìÏý\99jP»®\8f+\8f\17©ß±\96@;\9eñl¯W#ù\87qìÑ\99\91Z\e÷êú^ó\1c Íx9¸Ö\92ñ)s\7f9û\0Ï=²W\13\axƾ_Íë\89\ 1ñd\ fg¸j¨\18\v\80àË\ eD\ 4B\80«lq ³{Ú ùL\88xk\7f±ù®W¬^\8bg\13\98¯R·Çä8¬O^\87¸¤\1c\0)sÄLòñ\8dDô»ÿ·\94\15å\11\ 4Æ\b\aypu ÷yù\11>¿\9caøX\88rC÷\89Õ9-ß\82{§,X"êÈ\83\0¡1$`\1eúÅæ²ï¢'j\1aëçèκÕ\ fRÇÝÁÁu>\87\19ûÎ\13ø\98q@F\8eüyDÌ\13Ä×\1a\ 3{ïRA¬kGzLïFÜd"Ò\99å"¿þ$óݧ\a\88Û¹.\bmf|\8bwD]\87Z\89ùIÙÃǶ¥Æ\ 1>\9e\84ÓÉ\93ËæýÝò\0\1d¢Ü\1aÓ\8a\9eÿ\ 4É5¾ï©\14\8aÍ[\9cá@\81\8cñ)/\aù H:\ 1¥\19QB\ 2ec@«Õ\81*t\9b\92#0÷ßûµ¾ö\8fcÔ\e{\80Sú\ eÛn\8fpM½)زÅ\bÍW+\ epÝ1ÀÖª\84õD?©=\929a\rͳ\ 3µv\13õT\8e£\88\11Z)\0ê£÷¶K±ûÉƪ1W_\91ÃÂ\ 1úyWïø±Ë~\e\1eÕ\8a£~\f#ñ\r÷\1a÷\ fÝ\8fb¶^ËgËFÜ#ÆÒµ\83wß\vô\ 1\1evï áÖÃ"\85º~º.\10ÝcÙÖ#\82Bó\88\19\8d²'\87Rgßsê\8ap~Û\ 2\83½öd\84u\a\95wÔ\1eâ\85x/=÷(w±Ã
-1yÁ\1cWvnøX{\91i\97Çƶ\97,Ã+\ 3\98\1f\ f\9bSK^erÎwÄs\91±ûn\81\1d[ã\0\98q"äç8>\8c'¸ß«R\1aèþ½\83\83tu\0$¼ç¾_W\8d\ 3ìÀFëÏ6>{ĺGß\a8\1eÓD?H\19\19ݶw%\b\98×=\ 6\8d6ìBÀ\Ö\9e{n\ 5|Áµ\1e×ö+V\18\8fNk>;Gö¤`XL\e\1fÆ\ 2Î\87C\8d{ãã¥ß\81}:Ì:\0>¦½À\9bw÷¶ýé;\88¡±\ 49¯\1d\fdüô\1cà¬\1f|¶·\94\9cÇEµq\87\97øhö\ 1¶sĪ\8cHÆ\1d±×=ïHÆ]{î»ÚÚFßð\ eÉÄ9±º¿ÇÈz \95Í^\15\Ï\8aôõ\18¯\b@¤ºû\8aÁóc\14\8d´x[1ö:\ 2À-ËvÔÏûU\95\82\919Î\16îYøÎÝãÌ`S´XìvÎà,öéÐÞõx¿$c\eeg4áß]q\80\92ãa}ímwx\881\ 6\1dõ¸\9d\ 3
-§8\0Çøì\9eÁØk\ 4\ fïÛ\89Ù\82Ì\7fÜnxùq\80P\ 1°gH\8dmÇ\97\e\83.\14Û\13lû\e»\80ÌÞq]\v\ eÐ[iËþ\9c\ 5¦\0,r8µ\86\12\11}¯O\0Ü\9fÈÿÃÞ»6·q$\89¢ûùFð?´Ï\86÷Ès\87P׳»í\98\13+R\96F»\94¥+Ê\8f\89Ù ^\blJ\18\81\0\ f\0Ê\96ÿøù¸§2«2«\1aÏ\ 6%\91\0\rÏØ\ 4\12õ̪ÊÊwÙTÛ¯\82©\17\80,èGÆ\b\1eQ¯HÙ`\95\12Á'¬r\1c\ f¡F³AÝVÞÓ.\80Ù½®à#-JK@\13\19Ú<(õ°¬"ñ\ e5n'\ 1\1c\19\1f\f\0"pÔ3I\13ËVìgi<Î ;I®m(â\84\92\8a\1c\9e"çdK\16,,\9boñÁ\9d\PYK@ræJL\ 4\1e\¤ày £\ f?\85²Ä\8fZϤx
-j*×\99U\ 4Ä\a½|IcJî\f_]õÓ-\fu&Y\ 4PÁ¡\fJ²²0úÐÙ\82Y\92Â3Ì\0´\89BKYÏçYxÎ\9a¶\bk+\10lÉ].\184\10È·\8eòJ\ 1\ 4ò¥¥4ù®X\9b(´P3y\12Àä.Q\90î\1e\81\ 5\9b\1f\ 4\81*KÄÒò*\80Ë\v+ß\84¤)\10\ 3g½ºÃ\97$\8fÊ"JÞ\bfº$D\98\17\bÙ¬V4þÒ²&µÊT$\16X\938Dû\82\1a:%\f\ 6·\10x\97\8cm/Â\14áz´\9a½\95\80ú\ 4\fj¯ÓöÓ×ÁQ\14\1e(a\86\8a¹\1c«\13\8d\9e&_Wå³F\87I\85Õ\86G\bC\9b9Q?+Ù÷£ðæö\93\0.\82\9b\91\rÎ1\16\94\8c4}\1d,·\16df"\ 5È\87S«BPYG(u(\eI½¶aV2q4@\a[ß\80`ç
-Öù\ 1Pj\12v$ù¢\1aV\9d
-Á{\rDnR\14!\ 2ÉÇU³>\93IbîÕY\1e\18|T\f¨ö\88¢*&\1a&ú\1cB»\86Êj&\9eÒ\16\ 44̨¢á\83=\ 3y\17\ 4õ^a
-v{\ 5oP\7f\a\9aÂ?l\17¶\95¯\r\ 3¤}¡\82\9f\96 ¦¼\80AOÈ $Û\955»¬\83[)ësd\15ÔW\bfGôàÙh½\93cØ®ìÁZi:WU¡£³j\19\\rA\9dç/ËÄ\ 5Ö\92±\19\80 \81V"\ e«\fó\8a®èX\96\10 rI@ͼ¯L\eÐ,\ 6\8bp\ 1\9aðÜE 8Ü\80ªH)\87¾ÝÔ@nØýÃ+ð°¬"oz£½/¿1,GÃ\93Ú$/\19ãó*{ÔÀ»\1f'\ 1\("çä¿\84¯\1f\137çȧ\f@\15\88Fðç§v£\fÅgj ºîçÜ*{»$~¹&1_åÞb\ eÀ\9cG`*M~¹¥&¿nt\10ñ\rh¶dCl\83÷·\81Ç¡\83ã\ 3\0ýmo 3\1aíÄ\ 4· \8a\933\83\92ÜY¥\88ó\94^¯\aÀ\82E#Ü\9eÔ\80#stêÊ ¿\a°\92¼Çe%\19\1cÏ\83Ò:\82é\ 6\ 5\e°§óÆqàÑÂ*¼\7f»\81pgKá\ e\16\13\8b\84²6\9a\9a¼P\ fO
-\1a1\85
-\00èxáÀ²\8bµJì#ªâ\11\b[2ù\ eGZùÁxR_ÐU\85O\15
-fJÃ\86\96>s\96çè\82(\ 5\8fa±¶H\93e\rÁ\ 5QKòÈ4©%\94·>¼`É29\19ð\ 1,4»Ç\ay\14Ê\16\92iµe Û1T¡c\ 3Ѽ\827\a\0á©9V+\ 4\85\97ÉÁÜKתd×ê<QÀ\våe&\a\94%9s¢\1eç\10\9d·Êp³¢Ñ?\10+t\e/9ÂÅ\92÷W¥*ÚãpÝü\8dÊ2/E
-\13\1dަ
-W\8e¿\87À\ 1V+:¦\r¿ØJ1Ïc%\97ebe¢\a\9c-ÓKÄ7\0\11\11\92/\1cÉ\91\v\8aÜT«ÀóÀ3\98DÃ\r1\aø\14&ÅZq\8c\13<ÊB\92\ 5) \96\85^D\v\11¨\9e½W'¼À)\98e*,µê\ e#lYÆ\11¸ÌÌ;ÇyD\93 Ò\ 1-\10ÝG\84JÇ0¥Ò¿à\19nâ\9cB\9aâíD|§.\12{\1a¾¿ã\e\0=\ f\91µ*Æ\9b¡Æ/ì\ 3rDÓ©¾EX\8e\1f«Ø¹Ù1Üq`Â\90
-\ 2ÉO\18-«KDÐÍ\0ÐF\8e:XÉ\0\9c\aÝ\fX¦u¸2üûwa`ªZ¼ºaÇHÚ\9cx3Ä\1dC÷\13z\18R´\84\92L°\r\89\°\99s
-u"çs\0\1aæG\84à\1d^\12UDK\ríp£H²Q±\81è\m½U¾ð\8f\10\87\11h\9b¸s\92áÊú7v\ 2P\12ó@\ý¢0\8epv5MÁÄé\96Áa¡Ñj\15\1c\84cÀ\19\94ä(>\9c!Ñ\19iiº¹\ e!\1cÑE\19®Í\92\80¶âÀ6ö2\ 5°á8\e\10Pý5$Xcl½\89Ç\97%·&룰|IÒ>ZoS<\ e\r =\13ÁH2¨]2¨C²J¥#8ÆT\84Ð)\aD÷ß\80\1cÏ\88ã«LÔ\9d\8a\81H ^!ri(\94E°\17\95õO[\86V\vr³Ç7Ñ\98â[Úx\14¦\83÷\13\ 1IPÇ\a\eiÑe\f¦\91l)³Þm#\Z\85âéæ\ 4$\9f\04\14ÛØ@A¨Á§ÔÂ]Ê\91\14Ì\83\81\85\87h\ 2jrèÞ\95\81i·àRH\9dU\1c×¢\8c¦\ 6d°[ÛD\1cA.\81\ 6F:*ä=h^\14˱"¸JÒ®Ñ!èÖhv\97°Þ\8b70q%ÅC"\8a¨\81\92#¹p\ 3z~ÍæT\16í\\81\91µtÊPïÄümô`\aÔ\90ä@6\1d\8c\vf¾¹¢X2Yø\v\ 6\ 3Ý
-"kÆDÎÝj:¨"¨\87\81õ\ fÆ#\18\837
-\ 2\8f\1fG`òD¤Y\1c\81G<£%Ç3\9434í\1a¡\ 4 Z9£1ZûPÖ¡X\1dt\1f< "\18\99&\93È>4s\12v\83½Ç\94\1cöÈ\ 1£\ 1\\bÞå\86ĵHÚ
-ZʲA\0Tl@p\94KQê\82ÊVD\\8d.(¸,F\ 3£\88Ú£\ 6\ 4I\ fÌ\ 5Â=M\rØ Í\ 2`%%·\9a\8c\80c\ 51ìé$\80UN$\13=o©]&myY\ 6 b\9a ˤ]År¤$î²ä@&˼\ 2\0\83¹ÄB\90\91á\ 6\88¯H\ 2\1eKVbZ¶rð\98¼G]\ e4 ¹\81À\9a9 5´ºÌ³.\bÜ\v`AÂR\1e\82¦\92²Ö«~<°äVEÉ«\e5±\96\1cÚ l\15£A£Ú\81âóBÜ\185 u\91\1eT\ f¤K#(±\bÈ\e_1\8b^y\9b\90N#£P\9dA\81JU\bº\0mH\8c¨\16&6PTD\13ò 6\83êE\96\ 5\1dSI@©hÓɨÒÊaMùF%y\ fÀ\15\ 5#S\b\1e4\91\17|\9c¼\99\11\80\82JF\95\101¢¶£\16\94\9a/\13ëÅR4\92¢Ô,>\87N\85gJ\1ax³\825óÖ{*\92z\8b|\96¬×W\90Ö-\ 6ÚËB±Ú.\92yé\r\8e\ eHFÄp\85ûvñ\95Ä\82Á¾\ 1°ðÒm\8dc\b@Ȩ`[\19¾\1fÉ\\8bwE\ 4`\8c\87wg©\bÀ¢"\9d\8d\13\81Kn \ 6wUA\9euÀ²$Çù<¨Ý\14[ûlbo\84¢6Rù°O\14\8bg\10f«II*+Âaniÿ;0\8a$~«\vA\1aYr.2\9c\17Áê$ª«d \13\14µ\ 5ÇXrr\ eP¿\1aI÷b8B ¨e\193\ f1äV{\9f\95xV¨Ý²¤Ð;\e\8d\1e\86=Ê\8dç\13\ fQ\81\1dI´2\824à6øÊA ?ë\9f÷\9bðÝåÁðbÙùÓ°J\ eÔý¼\8eÑWÀ\82*.A$\99\11rËA\88ÁÀ
-¶\ 5KA\85¦L,!\86#\1eÉe\b\80\96¶bpê\a£K.(´\16705à\8e\83\99\eAÅ¢ 9¡\80ÕF\13÷«Á¯\81\8c9ä\19\ 4þuAµ\¦ñu¤C.S:\94ç±\ 1ò 5ìo\ 2@Á{9\1cè¥Y$È\14cX\9aÄ\87ª\r\87\19j\ 2Ê Y11Þ\ 6Á\86R;à `ÛWn\r\95\ e\14¡dC\84áÔ\1fhS£ÈC4üQ»$×\87ì\10+\1a \17\844\13\ 1\18ûÂMiüËÎ\1eHz\r(+9;ÅâL\16VÓÕ\11|\bÑ\ e\19\14o!\a\0\95ä\ 5ãµ)rfª\r\e©Áä)\88Pa\b°/©8S\0\ 6\ fQ\ 3ÆÆËË\92}\9546\91$àÿ\1c\18ZQhª\ 3Ç\10mtïð@\12Ú\8c¿\1cC\ 3B\86±"ßÂ\rT´ºE°\87 Ý\98V!\84a\0Ð(Ú31=\ 3\94\r>ªÆß\82'\ 1L\92:\10\ fn×\18É\14%D%CnHÉ%el×p.\ 6ô vIx5\1c¤é\80E\10\99\8c\8f\11 \ 5è¢\0ÀFõ\820FÁãØ*\93ñ°\99¡dE(\8f\ 6O0Ö\e>;\84\1cÉös˺lð6\90\94V\ 3R\9dF¿\0>\ feQpÙ\92r0h£Ø/ÀRø³f\a&ôL ݨCT#x&\ 4}\98á\v\16\86Åû\v\83\e¨\ 1²?\84\17ç\ 3P\13]%\1dî¢<\ 2\1e\\94tÊÈ\8e\b~\14\1c&m\ 3\8f\vþ!LWñ\14S\ 3Qh\vN¦P\96\1cö\8cç\8c=PòÙÅÐ-r0¡X\ eã\rJ¡\ 1Aä\9e\1dr\14³.Æ«U©\ 1\9b3õ\b\f5\0ù"\v\91Y\vãÍCÙ kÀ\8dAê\ e\0\17Ä9òñWÞ\11'Üo\ 1·:\11Ã\90¥÷íj¾ß@\84¥ê\9aª\93\1d\fâè%ɧÈ\rPuRÛ\a\11È\ 3I\11\ eKS\11°Ì\89õÀÌ,Ô@eIle\ f(íý©ý© t\19KRâ\11ÍF7p·\8a4<\8f>X\ 5aK\ 6£[\ 1\1dðþ\8en+\86\19\1aãÏe\0*\ 6\ 6º\\18\9f\835\9cEÞ\9e\ 6\92;\85]`Ã\85\ 5\r\14eªÕ 0©ø#£\84\rð-\12\1c À_L\13é©râ+af\9a\14\18yP½\ 1P\92¨B<\19´J\f¬"Ñ\12ú¯(\9dRIKc8HÖú,\ 1\87Þ· VBæì\ 3f\13~\bcLO\ 2Ø(>¹Á}¶°¬|\ 4Ì\ 5\aª\18?\81ëA7\ 3è¯y{\14$ \14©o\bFfx ÆS\11jD\0F¶\92#\1a\11l\99¡Éó2\948-Q\11TÖ+RSØ\9co]Îma\ 4Ý7&°D\0ä\ 6*\96æ\1d¸Ô4°B\92\14WT\9c=Ê\80øè\91^±Y7Jþ\ eX²\8e\ fµ*Ç¡\81B >\91E\19ÊV1Í\ 3\11*\90O\99ë\17:i ¤óà®pM\r0_h\83M\ 3\80J0\9bC\97q\99³Ò+æñ*c$·õo¼\1f®ÊTa
-:»äá\8d \ 1HU+JC\r\90w\8aõ\14\87\1a b ä¯dßØÂò\b\1c\aø·\83\85M\1c¢smnHY+Ãý\fé\v*\12V5#Ü\95%/iC¡à\18\9dÏ6\ 2m\vr\ 5^\98ýB%ÚË<gÏgÍnYyX1ðff\a\ 3\ e\96D0+PÈ\b\8ee9ÇV©¨\ 1ò¿
-]ù\ 6t\92¨¥\94þ4¸²Ñ°m
-A.â\9au½ÑÍÈ\81É\1f%f·\82V9Ù\14*\91<\90¬¼(÷D\97p\1dÜ\14\8dWRy m:X\1aA^îÒÐU\8cOdù\ 6\f;í"óD¹%\f\a\19\19Ö\8e\97\8650\94Ó®\84efÚ¡Ix,a«\11\98\1cÞ°,gª\ 2\96ÿ§PV³ù\ 4U\90\87ÞÏ_\906\12Í'\1e¨\ 5ÉÊ0ÍÐYáÏvص^\16\ 1 {H Gî\81ä\83f¼\9a\9d\1a\88ºÀ\\ 6÷ñ"ѹë<§\11XVQê\82ü©!Y¨de¢
-NéÁ\9f_§z˲ä¸\ 4ã\1d\1c¨\ 1\8a04Þ(CÑ\ e%s×&\b°eÔ³\1a\1f\1fë\81²\8cô\9e)\ 2è##M2eh·dÓ\85ñ\9eí\ 1È\96¸\10\9eW\94@V\99"@\10\9bo\17¬v\84Û*\Ze\95\18\85¬*©\ 1£$ߥÞ\93¡\ 4ã\18ݦ1C\16ä\89ç<V\95Ôa´U\9eä\9bË)\14Å
-R3©@;\1c°b\r\v\9at\8fCõ\82\r\9fyé)\82\ 3Rv\89@R<\90,§\80\16\ eïɽB=\80½î Z\8d\98\rº:\a,-B\f\1a©09jjb\bS¨è\84\85ø/?/Zð\8ac\16 ]ΩII\14«\18¿j}\16\19\ f\8cé\16\91gó\r\bÎU\ 5\97±¿÷1Ù?«ÚBn>\a\8cS@g\ fß\80âvá"ô\aºÒÞYÍ\13\9f`\ 5\84`(C]\19
-\96\85²\84/à<\14%Ü\8a»Öø\90?\ 4Ò.¤`7L¶\15¤1ë\1d\ 2=\90LZ6B\98l ÿîk[Î$c¼ëÍI\0KI\ 4\89DmÈ\9b\96\93Üg\83\bP¡ö\85Èl\XËDÙpÊ\9fÊ&»H\ 6n\bJ\16\94\8f\11£N¸\ 1Ábyi¨\ 1#HæQ!oVe9.\1f\ 4x\12\84 Ç3+\880J\81fV±ØTQ\0\98õ\c\18CØ\ 4è[CiíJ\122«àa¤½bÀ\b\8eµÃ\9c+¾4\85ÕA
-SÚ´¢âx¿\82\13\85a\90°o\17R\18Rwä\ 3P\95ì*\ fhÔÔ*Å\10\18O\7f}\ 3ÀÒÑR\ 6¥1\ 4"\92pQù;\10@¥R)?\bÕ1\14\92)\1fÆð\9f\ 4p\14E\8c\bá \82\8d¦\86¬g\0$3Y\90d|»\82ýlL\8cB\16>Û\9bïÌ+\9d\11ÈW£¦\e\13À\92U.!ý\14\0\rï/Jß\91\vvx0\9e
-R\ 3ñ\84¢ñÜÏLzí¯ß7\86\ 3]-Ëê!g$\84ÏJÁÖ +c¨mT,Rv\98\q µñ9ÏB\0¯ä\f\899%\ 1Hâz\8d§\17'\ 1\\ 6¥\1aï\1a\88+V\15Ë\89"§\80g\119þ\18¦n\13\1d\80Ê\8d/\vq·40ãsbAà¹f\15$\9e7ß@Ìñk¼y"\94-I,\ e\9a\ 5\8csgÕ\ 4ú8P\ 3ð\ 6\0\8d6tVq\84"Ë\11\b\fÖYãÓTû\ 6*\8eÜ4\94\83Ò\83\85&n XK\0\88\89\11ÃÆ\17Ô\19\19û\8dOcAí\96q}UI\99\14òÄ&@Ù\9b \19\83\89$3äï\92IîGôsÁv!!\ 4«\v\ 3?\82É#L\ 4\86\94\142ÉujÉX\81`¦¸è@è\a¦¼7·\9f\86
-ÙE Æ\9bV7¤w\0íJÉÛ\8e\ e\9f+I®:& Rw¥%\vd\822pè4/s\b\90\16À\86\93Ú\87µ1\0Æ\14*\81¸Rº\0\81\84\92κgn\ 1XU2®\99Ïúà(yI6\14tìñí\82\À©\1c\95O\82\ 5@C\8a*\1d\92\84 \eq@jc\0Æ\94±\8aú/\12S\94\by±DÁIW\8c÷&ò\r\14\89Ë\83\12>ô\\94\9c\94×ø¬\82\1eH\91AÀñ\r\94ɽ\87©$O\ 28*ÕÊ*¤®\0 \v¥\94f\83D\1erÆÅô.\9cæ57\85O¼Qy\91\97¸Z\11\1a¬X\99^i:\8c®,©\8d\82û%\80¢÷\82Ì9ç\8ca\e)vDÕ5ïLÌÝ\18\13çpÎ^ï¨\88À\9c-qFÑXË¢H\85.l\17òô\14¬8ò¶W\0êè\fS\85$f Ô³©&&\ 4Ê9+\8añIB<°\90$N\8a\80i\a\8c\96-f~\10ÌÒ`àÀ\ 1XFÛEHç\ 1@&\e\11³R°ã2«l|\9e"âÀ¥\r\89ÜDêÍS\ 5ñ\bÁ¬j¬ò\9cË\96\9a1\eò°A\1e@"\ 4È\13P\ 31}%^ë\1e(\vÎáé}\84p¬yäSË8\82\b\ el\a¶ª\88Ã0>\12\18K2£&9y\10\96%I\1f%î0Ú\8a\15Î2à@B0\bñ\9a9'¾\93\1c\vl|¬f\0jæ5CR$Ì\16E#¥D\1e\0\94d°Ã¨Ñ\93\0\8e\97\82±\92\1a0L%\89>9 å8\ 1~¨ÒÜn¡4³À\ 5\95%¢gBv0\99XS\92Äo21\86\10Ý\96\8a\991ÌÜêA1[ªæm\ 1ª\1a:[hâó@ò£\ e&\87Ùú1\85\ 6\80\v>\9cEÈÖ¥<õ\f;@Ð\98è\82\90z\9b\1a\90Ì\r\96\9aËÎX¸\11¤\88å\8ad\10ÁÄ\vrÞBŦäf\ 3lßAÕ\a5@I&\92²2áÝ)o\f,\0³³¥L¶EÅ\96sJÕ\ 3²Æ\8fruáª\90]2fÕ\ 2ÄXöÕ£Ô\94\8aó\95y\ f\16\80\18\8ejÄË\8fjÇ\9b(¸ï@jµD£T\ 6\8a§ÙÝ:¼Åî\eÐì\a\ e\17TÈv\96ê\9e\82i\18\80\ 5?þÀît\98!\8fÃ[¤\16T¶b§³\9c\12\1a\9aÔ}\82Ó\80C\ 3Q\vI\87\ 5\ 6\1e÷\e§Ø+âÂ2ß--ç¸\8a\97\ 1äó«\88¼ÒÅ\ 5\89ÿ,;ÌPõ"ñtÌ\v\7f\17K\9bä7f\82\89\81\9b¼Ö\94{HZÎB\ 5[\8b)\ 3&T!ÉÒ\94\94s\94½\ 1i_T©?\85â³Yq\b'«\9d\11hH§\86^¤\ 1¨ø-\a\16\e \85iaxÃú³¡\84×\8ah¯>ó¼\80J\ 5\fvÞ\0pä\87Ê@[\0Xi\1e\96?ñ\ eXF\aACÉ\9e\0\1c-\18ä\9a^*Í\ 6zP\1då%\83\vCúU"{ÀJ±EÑ\84\8cF~W³Î\96h!\80iiIÆ¡£\16\18\10\9f¦È»PÑ\0¬ßÞ^Ç\18õla{£Â\9c\96,(Ù\11X°ë\98VÔª#ú¤\93#\ 3\15\829"\v×Ñ\ f\f²2T¤\8eÖÄí¨"A¯Ta} î\82-6Ò_ÿªà@FãUØÇ¡\81ªHDf_¶ä`&Ë\99@!s\85¤}')f½¤¬*\81ðB\1df¤"%$%*¢Ä\8f~Á\ 4¯úÒç\ 2\94âÄ«á¢Äl=ÚGÈú\1d®\8a$éWIöjÄKI\99\87¢ \80\ 1%\9c,\ e$P\ 2\17\9cO\ 6³\93GäRú³\\85×\10
-ö\1c\88 \9f0&\86³v
-\12\9e(ÌÍ\97\rÉ)UÁïß$é\7f!\92\8cÂÇ*Ë\8f4@d!%|B·þ\93\0.xvEî³\8c)Ð Q¤,%\9d\84\921í'9²û½G):\82\1f\v6\10³f\86¬¶ \18\8ea¹\9cþ\fí¤\14©\85×\7f\0V\9cX:\b¼h\r\88Ù\asÍ\rHNy\81
-¾\0ät\ f¥²ÔªâØ+¶\9b\97ÈFS@TpÛ)ñFàlåDÃ\f;i®\10\82\8f¿á8r\8cw\fô\83ãzMÈÖ¨\96¿ Á)£\88\9dUÚ\eÆýt} \0ÆüZ\18ïp\1c(X\15ÈBI\11ç\0L²f\ 6é\1e\80!¡Xés*0Á´\9c\ eP\84sª| ³\1f-\91làFâ\ 6e\9a/!ï>\82 %+Î\ 6J,2\0\15EÐ\96,n«è\91Z07¦\80oåL3¥& .9_e¡c\ 3\9aO/ê\1c=0&\ 2\b¶e¸\88JÎ_\83\8e\90¾\ 1Áê÷\82\fÙØ@\11sÖ\87}\b7\19å\81\12\ 5\13
-\ 1\8e`\9cÔ-l9\91&\955aaD\92³\13\87E\rĨÉRr\ 3\8a³Ò\14A\8eu@ÉIÇ0o\ 65\10£\0\8dæÑ&\19®¼ß\15ÜÐ%'i±ô~\18\80c¶\eÌ\8c\eÊ
-Ê\ e\18\92R`æqËùö\f\1fæðøVÉù©çÓ\99ÿíàâ@d\8f\ 3\v\e)³\86Ûòr\ 1\98E£\14XÊ\ 5À*Ê&1¤;xa43ñj#¨\ 1\12¢BÆè\1e5ÀÓKÊÆÀܤÕ\99)\84ôú(5ÒÞÃX¾Ë\0.8 Y\87\94³R°\93Náûð@4\12Æ\92Q Î)\128\90F,KY`¤\14ܪ\8d@Î\98-8x±ð1QaX\1cD«tA\rÌL\81æ¦üFÀ«\1e\83\9ahݪ\8a\14°Á$\82@VÙ\84P^\ 4²Ö\ e\13±\1fÏ5\102Ü@g93\83Ʋ¤\85\89á4ËÄQ¨"ÿ¸\10M\87@Mò3)\96\11H\9c§¥\98ûÐ\80\9cï\8c½~\8d`au\ 6\a\80\9c?ýx\90\87½='v^\12\98\9d}ËÀÏ \90u¶Þq\ 1\81ºáÆÃR[|Y%h®±3r%ªh\ 3-\15û$óiÁ>ä\ 5_\16g\v\96\ 5\97H®ÒFp!¹3\16\9bt\9c¬èMïÈÍDi¬~åO\911\9e\82m\0()\B\96\92\81\vc4æc-b.\17r0h\ 2)ÑÏ\82h\92\8b Ì\8e\99gQ¶¼dð\82¤Ç2y\17\ e\99Ì\93Å\8d\9cðËp3))èe8Uñ\81\ e¾|\8d\94\14\98Û=\09uº¢\8cî\1eL\81ý\92â¼lòh%År,J\8aA\8fÅÍäS Çâ\fó\1a\8aÓv:pLñE9¯\0ÈÑî\8a\12\1c,ÈÓà;\ 4E\ fÇDÓ\1d\81`N\b¦(¿\87b!\95©Ø\8aÔ 1E
-þæØ\0§\18H\81\9c#A\88$\ 2³9°\93ø|R3å\e=\9fD\ 1È\06äã\1a¹jöÙ\ 4\v\e§\1f.¬õAvàLÊi\19\82rÈû¸rVË\9csÆÍ%\9dóçn.\97Ôe\0\17<C\8aQ³\ 5\a\81\14Þ\937\09Ð\9f\f»P½ |A28I@W\9c\15\ 5\1dQ\16ö\9f¼~\13\ eZéýlã\vP\94E1h\1d\9aeÃC\1a+ò-\92\15¤d\1fO\0Ú¤äáâWr\16\ eë\84\9f\ e\8d\19Z%d0¡§Cs~\ 6!Ü\18u \8b)vu\19"+K\99\9bÂ5\8em2\ fJIBæû§'\92\90\1dãÜu\82Þb\väH³DÆ\19\v8 \7fx\10Å\ 3ic\eJæP$¹3øÍ\83\ 5ÝÅ'vgÊó88\8f/\8ax<\ eN\92 CjP\0\16Ì*\85\18\8bEã \ ecvmÌl½¦Ã\82Eg~ñ©àlVü8Ý\«ñ)*«£4+\92\87%Y\8eÂÜ[ü°¤¡äQH(© "ç\9a^\16\9ek\97è`îs&ù\1f,=½jr¯Oðà\92\9fÔ+Yö\fyä±e\9eJÌ\89º|Ä1«\14½\0hÒLöá\11¢\ 5\ 3£\11K\7f\ 4üå\99ó\88\ 5\9b\9fÂÕMi\ 5*Å\11\149\ e¹]X\85\15Ò\18B\ 3\9auܹ\88Y\ 1T\f\86£çF\ 5ëªlÌ 47°x×Øèm¦éM>\88á¯\ 4\9b1½ß2\96\8dÊcCYv¢\ f\17¦I¡«¢`ÿËà¥\82@öË
-\82Ù\82\11\10åVþ\98kÖ<^\12X°\1d¥´\14\ 1èF\1c]\ 2%\85gJö\1d¡\ 1Ï7Ký\19ïiê/=ËO\10C\1eº\8a\8f\9f\8a\91\8c%§o\91ôôÈ\82F\88|ÚÄÇÀÄÙXN¦m|\ eoÊç\17íöÈÕ\9f,nä\84\9fÜ\8bl'¦\9e¤\87Æb<\\8cû\80dÃ*Z®\ 5=¤\87.ò¾\rendstream\rendobj\r92 0 obj\r<</Length 65536>>stream\r
-mU\10p¦]º½*Î\8e\1dì\0\97\ 1¬\fùþQ^ p\8ad\8bª\r\94§¬|¦í\94Q\ ee£Y\98Þ/¬|n\88°\e5µ:3\ 2bTóÄ"\83!G\97\ 1\1c\1fÌÅ@1ò\12\89Ï\97¢KñÉâF\0Ó?\1eTÙ\83o²_~n|úúѳòìûáyãá{\a4\0<ûa4|9î\ f§ýáÛÃC\ f>ªßö\87é\ f\a?\Á/"÷?\9dþôôI\7fà\9a9xÈ\1f³o\ f\1eþòüä\87Ñy\r\1f\1f÷{ÓþhØ\1d\7f\õÃwÙ\83ß.\aC÷Ó¡\eÖ¸ÿæzZO¾Éþ|ððÑxÜ\9d)Ñ{×\1f\9c\8fë!ü.³\87Ï\86Óø\eügúñª\86ß\1e8®äëo²\87?\ eû=\a>uí\ eß6\8b~è\ e®}Ù_ûçÓw«\v\ f»\97XÖ\r%\94þó6Ïè]Ý\7fûnÚzJTüÖçôèÙÙ£ÁÕ»î\99h;³þ¹+¹f:PæÖ§2zóϺ7=\1a]\ fÏÝØ\8eF¿µ\9dÑ\ 5\1e\1dWt:i½`\8d:·>Õöûp\r\12\92\19ý¶ÕóøØz\1e\1fi>«\87»-drz=~s=¨\87½º-*|Õ\96Ø ~î`Vmç3®'×\83ö¤\92\8aßú\9c\86£Ói\7fÚ[sOÅyM°ôëþ nOV\1aunÿ8:!½íìÞt'õ\93qý¿¯ÝÖm\7f8gjÝú\feÛé\r¯/_ô¦Ý\ f\e¬]Z¥\r\ 5Z2~±bü\8b/Þä&«_·$'qÜ+Öà\96\17çtt=îÕOÇÝ«wý^kvdØz\81úÃ-§\84ýá\9aýÙ\98\8c¼\83Ù¬Ãv\9cËèª\1ew§£që Å
-wvx\8eG\97W£I\7fºÁÙù\12ã@Ö²í\10\1e>®/²ïö"àöÍhçD@½\17\ 1÷"àöÎãÞ\8a\80\17ã®ã\e\a?\8cú\93½\10¸\17\ 2ï\\bl
-ÜM\19°õ5·\97\ 1÷2à^\ 6\9c\9bÍ^\ 6\1cíeÀö\12\93¾w2à\ 63Ú!\19ð¨þP\ fNßuÏG¿Þ\ 3cࡼ/\ 2Ò&3¹·"\92g\vPMq_\98\82Ölèdzþ¸þÐïÂ\806\90!ÒJ·>¹7\83ë5·×g\10ýî\88CxÚ½\9eLúÝáÑÚ9n#\83ÝzÛ\9d·'&ç[-Æ\9d·§ïçwAà79+ÛNÔF\17\17\93zºþdìîé\7f\813ܽsßÚ°?¹\1e_t{õi¯;h¯alVºõm7\0¶\19\'{£Áhüí¯ïÖÊoéõúq\93\89úÒ{"ñ s\99\Õ½\17×kÎÐî©\86EÞzË9\ 4\\ fºãï\7f»\1a\rëaû¹ÍW¼ýYn:ÉãÑp2íÞ`\92±â.I*N\sÿ´EÒï±òû]\88\9ef\83©l¹\14-6Y\96Ï.G\7f\11Väå¨?\9c\9el¢`ú2ºÊú4\9cØ\93p\rï\1ew´á\95´í7ì\8dÔ%{»Ãø\1e3C»cNÙ\16\9aÐ\9aÓyßþ伿\8b\83ÓúÚ{¿fÊéDÄ6ó\9eïUû\89¨^\915Z®t"úÎ.\9a{f®ß\98\19Øö\9b³;îOß]ÖÓöK´K7è ?}Ùí¯\130÷Wh»\15Ø\96ÛwsMòÆdå\8eÖóy=~[\ 3&w\8f%Úô¨Ýã%ùrãØ;\1e}\1efQì\1d\8fvÂñèx4\1a\1c\8dëú÷Ö&\9bõ:ú\ 3Å\9f\1c\9aÖ{qË5Ã\e\9cª{ë_%:#£ÇÝóþuû]JÅwC\aºÝ\82éy\7fÐmoØÞ%\19®õ\12í\8a1¸ý\9e;o¿çÎï\92E\1e\8d¯Þ\8d\ 6£·iàö\88-÷\90ºíiÚÖÓ´{\17ûØ>\86iOÓn\81m½/\8e¼\e\84Æm7){ÓÚ>µ3'~³@ \1d8ò»ê¾{_s\ 4l°Ã¶ýô·ç1wäôÿ\11r\1d´^´ÝÌuÐÚëÿ\93s\1dlíiÛ\95\9bi\97³6¬q·IHÄfQ%w\14NòG¼\94¶ß\8båMë]¶+\17lû\19mLÄny&¯ZÛ\82\8eßu\87ÃzpZ\ fêÞ&\8a\9cù\8a·o«lm&ºé$ç+ÞÙuô¸?¹\1at{õe=\9c>ï^íÞ\9dtÙuMµ6Àî\82¬\94gô¿lî£h|l;küÔ\9eã£âÛL(·ýBn¶Û\99Kl³´¡;À\89\1fC\10ñó\16äc\eÉÞ\ 6˱åG¥}¤é.&Hi-\99ï\f\1dh=£/@\a¶åô]läÇvÑ\1f\f6q÷\1aló)¼\18\8f.ÛO\ 6\vo¯:l:jÏ\f\8eî\82\15\ô%zKx*¬½¾Ò\97¾}w\86Á¯Ý\8fçähÜ´;Þ\88&úò·¿áZÏé¼}2)_ööâZ_³qVÜý\ f8ú\96ó\9b©u\a\11EúÛ:î¤×\1dô\9e\8fÚÇ\ e$\15n}fã\1a\85úÖËw~Þ\9fö?l°r\á\ e¬UÃöóêõ®/¯×;\1e¥3KªÜ\91dÒ\1dö/7\18ò\17\8aQÙíôw\87åÞmfËä¼Þ½s\9bi?£]Q\89ìÝf\96qÿw£
-Þ`\87mûéß»Íì ÛÌ}\7f'²}.¿]s\9ci\7fÞvånÚeÇ\99ÖÜèn8Îü\11¯¥íw\9céÝ;Ç\99ö3Ú;Îì\1dgö\8e3\eÖ\1fÀqFüQ\1cg6 \94Û~!ß;Ç\99ö3Ú\15N|§\1dg6X\8e-?*÷Úq¦wï\1cgÚÏhWèÀg6\11í\8eûÏ\ 6K¹)\r¹£¥Üád\85\e8¤í\17cwó\95ìÎZ|¹qÜí\18îMÊÈGÏÎ\1ec:\9a³ÍôK÷Ì\89µ½ºpG\92%ÝË,å·\988é®Hì\rÒóìé[+úfÿÈôõä÷ômOßöôm§èÛ÷c\aسo{ò¶íä\86\8dº§n{ê¶9uÛ3o{궧n{êvߨ[j6:ÛÌ8~Ï\88\ëÉ\7f\16\vîNY ÷\87h\83CTü\91\ fQëÉï\ fÑþ\10¥1ûyfZ;\ 2úi¿ÚÀ\170©qû\8e¸ÏÎ^ö\7f«\a/\aÝ\8fg\9b\ 5)n£óô]>·µ;tp\_\8eÖ\85ðïVN\9aþð¼¾è\ f×>\89\9aú\82]ÕÝéã\rrl$5nß_y\9fÝe'²»\88ö\vµýé]ZÞd»\9eÛer\ 5Ù]ÚÎq\9fÛå\8f\97Ûå¶\89H&¾\93y&\8cûo\9e¹\7f¿s\9fÝßïÜ\ fÙ\17\8fG¹\13±eãD6ÛÂJÝÃ7%oWJ¾m\17à\r\9e\8fß\95p\81Mæô\a\r\18Øæ\15ÙrrpCkÔ¶\87À¯Cûg2FÝv¸Éèòj4qbð\8bë5\84ë3\90¹;"\rÇ4ÇÝ£\v\15lïÛ\1f\9f÷wqzZkC߯\99r:\11q\17¼vë\89¬q¢J'¢¶zEÖ\98\12Ó\89è\1d!a»q\87n(%lû\rÚ\1d÷§ï.ëi{®`WoÒ/\9f\8eò\1e\¥»cþ¸ÑÒî£\10o0\8e½ýyo\7fÞÀþ¼Y"½ýyo\7fÞÛ\9f÷öç½ýyo\7f\ e«º\93öçýÛ"{ûóÜÌîÒþ\8cì&X eþÝF¬çÞæ¼½Ú¤íV\90ímÎ{\9bóÞæüI+ò±\1e\fF¿¶]\93Aÿí»©ûý°\a\19:[¯Ïlµíµ×\9c÷/.®'õñhèxñaû\135Wo{§è\ fÿéFï\04êÜ>gÑ\9aÌ_\8f/\1cç¸ÙÜ\9a\95¶\9b$nù}\1cNÁ}»µ6\9cÖ=~\96x¯\82۫ಽ
-îK\ß÷é\85ßMØĽ\1en¯\87Ûëá>»D÷ÝÛq]\ f¿sÜeý\9d»ãúoGß}è\8f\ 6õô»q}þÝhÜ\1d®³³ï\15t·}\ 5\94U¦Ýßû\97×Ó5/C¦\e\92Êßún´çT\ fÜ\97\8d\14tI\8d;Óþ<î£À\7f\ 27Þ\1dûÎ<öbÊI¸|wï\08Êtï\15Q{]Æ\8eè2&WuÏ]áãÛ\b\89ØÞM\18\90ðýoW\8ecÚ@\1f:_ñ\ e\9c\1a6\9dåÆZßù\8a{eÎ^\99³Wæì\959{eÎ^\99³Wæì\959\9fáF\ 3Õ\8dWæ\ 4Í\ eêtöÊ\9cí\96e÷Ê\9cOQæÜÅ\15wßü\92¶H3u\1aä¤ÝUMÝ@\e°í
-\8e{\19]|?ósܦ.ê\8e¨Õ\ e§çh\9fCaËÓs´Ïj±åé9Ú¯È>=ÇV§\83Úî\etS¿À¿=ïwn\8eA\7fú²Û_§Þß_¡w!-ß\97+t\9fáj\7f\85n ùÚöÛóF"õþ\ 6Ý\86\et\9fÙê^e¶ÚxY÷Yn0\8e»\1dýÉjõèÙÙé»îùè×ý»C?þ1ò>ÝÃÄ\ 5S\96í\13\17l\17\83°ÛÁþ\9f\ 3=oý\1a-\16½õ-Ö~"kHj:\91߶ü¬l;Q\e]\Lê)\9c\8cq}¾\11¹Þ5*ð\ 2gú\87\92\11n¾¸÷XXØ\96Ź\1dëÊî¬Ë^\88Ûr!Nèüë¶ûô×þù\ 6Îq¡ôíëËUû\19½«7ñÉââ·>§(jïS,\7f\8a¨}ËS=\14¦õVlÏ\1eß\ 5w¼ÉLÚK,\1f÷ê\8f;\96\14ì^ý±\9b\82Ïn«?Êû¢þh?\91½úc\a$ä]£\ 2{õÇ^ý±Mt}¯þØ«?vJý\ 1\82õ´»\81\93Ð^¬Þi\vöŸÛ\9bv\a?\8cúí½Å}å\96\98¡\9eny^½/ç1tÛ3iáÚ\95$?ÃÑé´?íÑ\9c¦¢6\94~Ý\1fl\10\1cÞ¨sû\9e½\9dÖy\8cÞt'õ\93qý¿¯ëa¯½l7SëöuÊ}\97\87×\97/\1c\85ù°ÁÚ¥U¶ø¸í\93iïó/mOþ¥ö\14çb<ºl¿\Xø\ e¦Óú\ 1\9dé¨=/2º\83©Ü×LR÷)\91Ô\ 6\97ð>\8fÔÊéíóH}\19\8eù\16óHÝ\896iãlJ_D\93ôúzüæzà\88À\ eª\1a7`\·\âݧ\7f¹yØÝ\1d©\82o\10\9d¶Wî\94¯ï\9d\17Ú\ 63Ú!/´xc\9c\896ß«ÌG«Tæ·-`¶Þ\8cÛí\87Ö~\1e÷Ö\vmÚ\92iÛ-\ 3\ 6Ìj¯øß=Å\7f~Ï5ÿ\1d¼>Yñ\7fG¬ì.Ë\80\9b\10\8d½\14¸\97\ 2?óÑÙK\81{)ð\8f.\ 5¶¾þ÷Rà^
-ÜK\81\9f\r\ 5÷Õ\91m/\aî¦\1cØ:\ fÈn\8a\81§·\17\ 3÷bà^\fÜ\8b\81{1ðæB\93¹wbà\ 63Ú!1ðçÑèüí¸ÛþtïeÀ»\97\ 1\ fÅ}\91\ 27\99ɽ\95\ 3ïås\1e¹í}V\8aí\90p7Ê\1e°#¯öív\86\8d}\82ÑU\13ÙgØøD~éö3lÜÉ\fï\eMûlùBn[Û=p¢\86\7föüÛ7\83nïýw\99\a\8d®º½þôã·\e( 'Ó\8f\83öjðPúöã27yâ}W\ eÕF\93Ú\953õ\ 46âî\1d©ÍÖâÞÞG{åéÝ<`tÿ9\88 &l=¾\8f$o\87ß7üõÝ\ 61ñ\83ðJúa\vb\99¬ÍlµÛ×7·\96\99ü»©Ç£!¾Pß^\80\9a·½Sôçÿ´×Ý\80ékÔ¹õ©µv©\9a\\8f/º½z³¹5+í¥àO\98Ë\86¯\ eïÊŵécÊ÷7/\8cPÏb÷÷þåõ\ 6¦H.\7fëËk[ç2ª\aîËFªõ¤ÆÏ\voÝ»ÌfôEXÇ}¼aO61
-\7f¡l\ 1\8f=]8 ÜÍ\9e÷ÛJÞoÏ=ì\b÷p\83W\97w\85\83h\9f.\8f\90ðýoW£a½\81\ 42_q{E\10\1aëÆbÖ|Å=÷´ç\9e¾\1c÷´g\9e¾\18ót\1a\8eòîrO7¸¯¶ý
-Þ;[ï\8c½à6¹¥½V}ÓÕi})¾o\7fzÞßÅáiÍÓ½_S2\9d\88¸\83\89´_\915y\9cÒ\89¨\9eÈ\1a\ f\90t"úÎ.\9b{æ©»©®xëoÏî¸?}wYoð"È.Ý¢\83þôe·¿N\ 2Ý_¡w!-ß\97+´=ÁÞò+´ý\8aì¯Ðí$_Û~{ÞH¤Þß û\et7nÐÝQUï\1f\95ÜbÎè\8bSýÝY\92/7\8eÝÛ\16÷5\ 3Ò=|e¾mr\99ݳtßÿÔN÷>Ãï-¾íwG\17Í.çvºìº¦Z§ãØ\ 5ú.²<üoÑ'\86´\9d2~j¿!©ø\ eÜ\ 1Û~«=uU'ë½çvY\16\1c\8cÆÏ[\1cÀm$\1c÷\90\8dº×iQn5\14ð\8e\ eÔn§\149lÍ\bn{N\91Ã{\93TäVTV·<§\17·\1f\1a|Gô`WÓqlÌùÜß-·ýö\98ûé\ f\bv
-X¯×·\91/ü\1eØbv`y¶\9dH\88öoÎï"\ 3\9e.Yë0Ê];R»Í\81ß»{\17öÜ/\17õøI\7f¼\rZ\94mYçi÷Mû5Þ\ 5\9d§ÌZ+Ùqî?m¦ÔlÔ¹»D`×ÃÞ«Ý#*÷n³u\8a,Ïþ\18Ûíé~»Ýýv\13\7f\14âvtÇ\8e*(\ fA°÷ëqw8¹hÿÚÅöìþ\9b0<ÛÎÄÝ0°e¯7¹+½\89_°-á¹÷\9a\93æ\ 2¡7Þ£Á`\v\96f[Pr³=»w\ 3½Á8îv\f7yÂêëGÏD~öýð\9c\9f²\ 2\90\ 1ÈÙ\ f£áK×\ 4æc:ôà£úm\7f\98þpðÃ\15¶¡ýO§\1f/ß\8c\ 6\a\ f\1e\9d\9fgOº\1fFc "\ayöÈýû˯\a×î\7fyöâ ï\14yU\95NÒè\b%\85VîC\9e\8bÊ(ðÞé\b\9b\17¥v\1fl\91\9b²t\1fÊÒÊÂd¿t\ f¢·Ï/\1fÝ\97ÿp\1fþé@¿f"Ï\9eg\7fÿG\9e\9dC_¯\ e\ eó\8eÖV\96U&E§4Úd\97\a\87ÂvD\95kW¸#\8cÐÙ¡Ô\1dS©2\83ÒR\94®\8fCi ¢Ê\ e«\8e\15¥°ÙñA\84 Ù±e^d'\aPµ0\95«*aðºÂ\ fÒ\18ø :yi]ó¢è(+\15B\94DÖÃ1\98"ÀB£¦SJ+=Ä\r\15!Bk\13!P/ïT¥ÔI©ª#µÍ¡?Ù\91";tÍä%ô/Ê\8e\0¬\1e'X8\14¢ãºµnèºS kb±\93\83²£ Aß\8eë(¯r\15;\12ÚÍ+í¹wà@\95\82>¹\8cq«UÊ8+7Mm+\99N]Tî\13 \9bðãþ\96¶("
-a9\8c\92\11ÏÇ\a\f¢å8A\90®p\85\8c\15Fb5e,\ 2rív\f\0$¬Må\ 6\ 3HÃvª¼\84¾:*7\16Û©:U¥m
-R°×\94k\1a\16·,ªL\89\8e**7÷Â!ÅÚ\12\04\1e%¥\84!2È\8dº*\95öí¸ÍëQ\86 @\8bD@å\97Ám\ra`ñ\Q¥Üª9ü¸Ý)*\8b Ü
-Á60¶ð\80ÆJ\10 wàÆ\95[e"H9\\88\ 2z*`UM\96ì\ 1·ÀV(Ü\18Ú\8dG\97T
-æW幪b;q\13ÆÎ`ó"\82\93Rn\0B\14qаr·«\92\89ÁYQB\9a8ûCÀ\99\95&"èPÉxÆ\10â\ 6É0B¶;w®¦u(\10\1d\99ÛÜ7`ÝZ\ 1nD\ 5¸áéÒ\18Ýâ»ÂÆ\14\99,]]\9bé\8eÕ¥Û@Òº\13ã\10nÝ\81ÐÆdî\98çJKW\81!n\ e¹\82~ÝxÝ¡P Ä\9dGQUR\ 2¨\14\15\101·8ЬÛ3*\1d\bQ ã\83\8b\83\1f\ f\90x\9d\1fØìÁ7Ù/?\1f|}¶\88T9è\r\89\95«¹\80\\ 1ôf\ 4Ë\8fä&$\vjÞ\84h¥\18IÈÖ×gó\84ëë³\8dI××g7"^®ÚMÈ××g\v\b\98\anL°Ú,\11sÀy2öõÙ\8d\b\99«6OÊ°Í\89\99Ã×MÈÙ×g7$hnÓÜ\88¤ùí}\ 3¢æOÔMÈ\9a«¹\80°\ 1ô\ 6¤Íÿ¦Äíë³yòæ\96k\8eÀ}}v\13\12÷õÙÐñ±\ f\1e\rGì\92\16i\`û\u·Qµ\80¿\ 2«\11;ç8;lÒ¡Îí\1a[V@\ 3 â\16¶Ò
-i\80£\ 6î\\89E ª\a\84Ù:VR¨E 8ê\15\92\ eª7\ fAÌ\15È!\84\11ÌCb-\JX¤9Hì~vn'\8b/\82y\14DX2c·Vóh\88ÀØ ,à\1c*\12`\1cr¬½\b\16§\1fdz\b\96Ö\9dGK\84¥\83\99GM²\81\10/?:\88\13"§\rYùë3\13d%'}¨\97Nä¬ÇÃWN\ 6\99LÇè\ 3ð:\88MH\87Ü\11«2íÎ\87uÄS\ewXq`RË\ 2·ßÃWuwà}µ]\85F\9bÕé ïS¶:qçé¸\7fþ\9fõGß®\9c\1f\0äÓ\1cOc×®å£ÑhÐ,3\ 4\95ôÓëþ¹\97\8f¿>sbØÙAE»\80%2/K-\90®\8e®§ÓÑðlôÁ\89{©põ§k\87·Çá¨-\11\93tSJʳ·\a\8en8á\vnZ8s%~\0ù\86?9b#ýï\87þ¾\90y 7\13|)<\9b\96yÖLfø#´æ+Áý_\ 1\9dvø\16À\88áß\13ê\13?CIww¸ÏTßdآ㬱\87\93\ 3ê¶ÒE\16\8aÃp\92\91\ 3k\95»É+á*^Â\1f·ÚÆÝé\8e4[\ 3WzNÅÝ'?\90<L3|\80\82\ 5\8cÀ\8d8\97@˱\r\vW\ f6\v3\15~@ø\ 1~5²È¸ªcw2\8f·ÐÅ!6ÍÃ̽Ð\81ã\81oÔ\btá[>ö\13898z\ 3gàÇ!HìçÙÛq÷¼_»Í¦¾ÁE=¬`\81E\12ý"²£· íåð\ f°6n4¶Ì\ 2ÀuW\0§R\0-ÿå²QÐ,.è0}ÔkÙâQ«\16ó\1cZ\84e:::øÓ\8fnÇ»KÅÄm\9a é2E^øp¸ðS\8aùÆ\9a\10>\ f\ 3B\eË9·Ö~\17\1cÇí0ÿ\97öÎà ÙRq\9f\85\1dB\e$]ÚtÉ\93Iö\96-²l½È®\90ã÷\1a\98.aIÄì"«Å\ 5µ\9e]äå-\1eµjÑý\16\17y åN©¢yÙÿ\1e¼¬Ç\17uoê \9c'\90ï\89̶¦ó:³\ eE\8e±ý¢$]|\11\92~<®ÏûÓì¸;>_JÒoAi&-\9es·Òá\93?b²B±Qz\92/\b\80_l¸\0@PS(0øoî\8br\85üW\94zð\ 37\16>@£®/ |©ÿ\8b$\92~Kªøfü\9d\10[oô\1c\ 6\14>P+Éøìè²pL\81+~\89\7f\vwF\1dNeø+*(ìþ{\8c¸p\1f\0\15ñÇäΡo\aJVéØæ¾áØ.B1?èËðÍzT£è\11\1a¥\ fØ\9bÅ¿\88£C\1cLúsZ/´v|\90trÒè\12\86àÈ麟U\8e£Ê\9cÀ Ä\ eòP\8f»ÓúI¿\1e\9cϳQþ°éJª\ 2\8e\91*U
-?8Ñ\a$ \
-Gðs'¨;ñV,ø\80GÎ\1dÀv\87®@\8eåÐúkÊ/ì\85\82þ\14¸^®1k\ 5\8eÇ\r¬2Ô4È_\8e\93\a¢P¨B\9aùãî\ 4@h½Èp\87\15þv²ôÇoHÇ\14\1eÀ¥í\87\81\1dÃ_`Æ\rÿ±Ë¹\12³òÂr?À\85g²x{\14 N(*'a»{*\a1Æ,.á¤\ 3\ 3\17ÊÊ6\8eV·á6j¼\92p>\97<=ø«ýüt\9cí\8d\98¯\15C´k§\99¯\9d¦];M\93Ló\1ag\ 6\fý!¨3`¦ÀÅ\86\19Ó_±|®¶\8a\93Õ\v'[Â\96È¡{'Iºîu\98$pbé\ fR\87\99ÍW8ZX!O×Ëý"ý,¤\9fDîÇ\1eþÈÕ38\84í³ñ$\126G¨\99É\14«&³¢âì¤\8c\9f\94ñ\93
-\v\12þ¬Ø\828)õiS²Í\ 2*o;%»jJ*l7\11¶\9b\bÛLÅ¿\9fk»åév+\9ap)æg\93§»m¦üì$¤\9f\83ôSÈýÈÃ\9fϸÙòe'&_rbòe'fÑ$¼Óo.\91\ 5ô\87?\9fmsåëÎK¾ä¼äëÎËÜ\94r¿·¤ßBÒï¨\9cÿ|¦}\95\17é¢è\19x97\11*\7f´¨üÌø%\ e\1f\99[ÜMyøïçÛRÍÑ\17Mø\82SÑ\1c}±rô¨\8cÅ\9d#3\8fsÿßϵ\97\9acOv·\1füüqh\ e~¶BcôH\7f.\ f\ 2ù1ü\a\15µþÏçØ;z öõ\12ìë%Ø×óã\87½cp§\18Ü5*ü÷3î\1d½dçë%;_/Ùù\vFopô\9e\87ô8÷ÿýl{ç\8baþG\96'X
-wlx!\9cì\r\ 6\fåØpé\a\ 6Ö\19a@\95ì¸o\81Þ'\9a¹¯ôÀ0'&<Wï\1aÅËæ\92®\17ºl\ 4ý\91$®\89ìÑ\15\8e@gÌÛ\83$\11¼]
-bóSþ>pýKÐ\¬fÛg\88³(\9a,§ò[c\96·@îtAQ¥=\87Û®ÕYÆcY«¹Y¯mj-Ð*×\8bÈé?ªãU\93;&Ö\8eGWç£_\17\18\aP\97\94Ã&ÚÀF ÈF\80\8aR\ 3¶%\83\96îË9È C\ e\93QáC\ 2*Ñò«QYj
-4sëP=\94 Àñ\ 1X¨½\7fBÅ\r±.\95aàZà\8a\99Øv\84ØØ\16Áâ0W\81¸)ê®
-exL\ 4@\17\11ì¤âfhr\ 4¡ÙS«³(\ 35ÔÂ-û\0h·»Ë*ûMôú;:zÔë]_¾\1aM9ÆÕUNkf\ f\7f\18M_Õ½ÑøÜ\9ds¿É\90\1dw\7f¬*EÇ*\v\87H\ 1\9d\9bÝ×Ç\8f\9e=\r\94áõÅh|I\99\8bp\17º]z>zS\9f=zV\9d¹á\9eN?\ eê³Øu²W¡Ç_Î\81äÈ\eHÐî\14\935\14i#a½äm\a«\9d\9bÊ2Èm\b_¦èXü\81\ 1\11Í\fJ¶f\84AE\rß°û\10v\18ïÃ\92÷\93\8d\e\9a\1a\82zÒïC\1d\96»¢úÐp9{,\8e\ fʹ³C\10\9a\ 45J³´¼\95xN³¸i§¶X±#<Õ\17¸K#©å\ f ñwdW ý¢(+\7f\10ñ\ 2\0/\19p»YRÉ\16nZ"/\93Zp\13lÚÓÑú\9e
-)\9a\9d\84«a\7fÊ\96\9c²?-¹4÷¸ùyÎ>9{j/\ fæ\8ev<È|øg\88Ã\1c\ 1Iï»HT\16Âæ)Ô,\r\9b£skh_r\ 5®\01e\9d£½³4h!Y\9a¥]\91d\12d\9eúÍ^\94m,¥ëI[±\8càx\8eRz\82SåyBÚÄR\82\ 3\95l\99\aÒƵ\90´mØÓÑú\9e
-\997;ùC\92¶Õ¦ñÆñ\8dâ\eø;å\ 6\8d'ÆÉl9,\8c1U¡a.\8ee+Q´\90üï¼Å\14%::G"\9c£Ë\ 3E\87YðÑÊApÀr\83\ 5UN\96s|aµóu\v\86Hºeú\93z\vpB\f\7fr08\85?»gj\7fÒ\1f\ÎHF,\1d\10\8afv \15 \ 5\1e·\ e'À\95 %Ù µ\1dY\82k]\0\9dD\10|@\17Ü\13®¸\0\14+^ ¤\ 6~£yU"_+DS!\81\80Nj\81µE§\ 4¿íy\bU[Ê\1eêp¤ôÂ#%Ë\ e¸\15\80««ð¾N¶S¨\12]¢\\aà±\\140\1e\81ª7\ 5w\86¬\80tj\18$xG+ÓQRËÅU5Ü\ eàíUYðä¶\15\906ð¾.Á\86o:Z\16fI¯¹Û\90\951ЫêäJ¢!°è\14VTxÛ\19¡òraU[\95аD\ 55Ü9P³Õx\1d!éXk¼e2¯\1c~Ýp\9f°KS¤9KNèÃçÝÉûæY}6t¢ú´>\9fQ\v\1c\ fúWW}xê¶\ 1~Ü\9fÀ\ 1\b¥\7fù\8bûϵû\17£³Üή¿¥/¸ç_u'\18Òuæ\ 6åÈêS$øõ\87>\ 6\1c\7fÌ~ùÁ\ 1þÎË\r\97Lá\95öÿ\0w\v\ 5ê_Þ-/\ 3 _Îÿ¿Lö\8fÎPQ\ 5Ãù\1aÇò¸;í~ë\8e\91,\ e~yöÿüË'ÿó\7fþ{é?ÿ\a~_þó\7fÿ÷íü¾dàûß÷¿ÿË6ìÏÕ¿¯;_\9fö\ f\90\ 5wM\ 3Q\0:öW"[\ eÆDë\87Å44a\vªìÉõï¿\7fÌ\80ª&ÜÀ×g@~\99'8ûåÿõ|Éx:ÃX\9cô\87ï\89\96~\87\r\9eÍ4å\89\99\ 4ê¹\8e\1fh8óÿ8ËI̸ú\ 3ÑþÓ5\8eåÑ\15\12ø\17øß·\0\9ac+ He\8e±H\80 \1f\11«/\ 4¦Õ/°\899ö"\ 1FvÂ\a\ 34Y\8c\b\8bLÆ×g\8eÍ\80YmÊh8\8eðƬ\86cQoÎl@4Ì\8dÙ\r\bWº)ÃÑrÔ\vY\8e¯Ï\9eàvA\ 1\10\958Ë\18\ e\8a¾w<À£gÙ£ëé(ó\a¬ÿ{\1de\8d9!íÅ\9bI=þP\9f\9f9\86ýÌ\17Jùí\18àS\85\0\9fh_ÈÙa5·\12\ 2Àr\b\9d\12\ 6E[#|ÈE§Òàx=ûw£\boá\10£ \1aÎ}\90²ò^\ f ,\aÏI÷·Ìýþ.u\89^ØÂÿB\80cÏPçJGØ Â¤Ð:(;nmʤí\ 4\80\ 3ðM\ 5\98ì\bX·\93&L\15hª ÆÝ\a£\vß\96\1f\ 2A -Áý È[*ütbE\9e17\9e@p\bÇ\vpåå\8b`\ e:,:n\85¬\8eU.\9b0ß0l]aÒÎ\8bN\89\ 1pÉ Ý)vÇ«l\8c\1a\8eª-ÓéV\1dQ\14\85J\1aO!4ê\bãQ7`a\1dCã¼P<\84d\89i¤É
-ót¸b\9crh;\ 5Ð
-Ïá
-}zµû][ÑÀ`
-ó\93Ô\8eúj£\12Dh \aºh ÐtLY¥è:9À8Ù¼HÐê \15ø;ÄÆ\13\0!\90A\11\7f \b§È\r3\16¸û\ 4}<Ì\ 4\7f<\19®\19'\1c\1aO\ 1\84¿9L!þ`«C¬c\8a¿\14\16¶vG\94t\92Âöw\83(uóÜÀqs÷b\ 3\7f\12b§\8bd«:H\81ú¬Øz
-!\fFXDa
-Ãirã\8c \1eBJeh¨)\95¡ E*Ã\93&*\93\0\98ÊÌb\vp(\13ä\ 4\14¦ \9c#\\9f¥IÐ 8þ\9añçH\8c»\8c\9a\84\aÔ\9cª\81Sp=\96ªL\8ep\ 3\12ð\97À\18\7f\r\18L16NX\88C\88øã\91Fôñl\b\14çë[N¿\aÜÍa PçîßÊ6Q\97\82pzƵ`RL\19×\85¶\rê§\1dg\90Ë"Å\9crSÉU\828Õ±ÚqP±á\14\10Ð\16A\8cµ\14\ 4SãviîÜwD\19\8f0¢\8cgA 8Oßnú= l\ e;\80²ÒQ\ 4i\1aWF
-Â\99\95 ©Ä¹\97®IaË\14eEGªB¥\18+:n\1aéUh;¥±ÚÄvS@ÀX\ 41ÆR\10Ì\8cÛ¥©S×\11a<¾\880\9e\ 3\81â,}³é÷\80°9Üàm+|@v\82°\14\84\13\13"^Ýþx
-Ç8\96\8dëAÀùÑ\r\8cAÏ*%\8204\f¢ç\86\13@ÀX\ 41ÆR\10L\8dÛ¥¹sßɱ¤\11F\94ñ,¸\1aÏ3´\9b|\ f(\9bÃ\8e¿\15\ 2Û\8290Ê"åð*Ç2\96\81\ f@\96¨ê8¾ \8c\f\1e}Oø;\ 2%ì]¬\15\98´Øn\0Pß s\87ò\91-RÞNH\92ºBÃî¯.Â\85\83\9d\13 2v\ 4IøºX\8bfÎíF\0ö}<\8f\1dD\19±' Ê\bÄS#Î\87'\1f¸£\ 4eÄC%(#F\8bk\11+Æí\12 A\19\83"Ê\12\90\9f\1a5Ì\93§Î\13\94\85\11&(£Ip-\9e9µ\9b\0\be³Øiðn Ê\bÄS#f\87'O\1cQ\823b\9c\12\9c\11wÅÕ\ 2ûÅí\86ï Æ\b\12\11\16!~^Ô(Ï\9c:NðEÃK\10FSàj<oj8\ 1\10ÂfqÓ`ÖÒc\19@ñø\84{6\1e°Àþ$\b#.)A\18±R\\8d\98-n\98\0 Ê\18\14q\96\80üܨa\9e=u\9e\9eË0Äô`\86iÄ\83Isç\83\19\ 1|0gð\93rg\11g\921ägFÜ\fM\9d\18\9e\880f\8b"Â\98w"\10sWÔ,\ 3"Â"\88\11\96\82p^Ü0Í\9c;\8f\b£\11F|Ñ\1c\b"#ú°Õä{@Ö,^Rv,â\8a 4)bchÖÄéD\\11;\14QE\1c\13A\88£¢6é{Ä\13C\18M \ 4çCmÒ|©×\88#\1aYÄ\11\8d\9d <ÛÐfò=àh\16\1f)ÿ\15qD\10\9aOÉdßÏ\97\98\9b\88£À\0E\14\11\8bD\10b¡¨Iú\1eQÄ\10FQ\ 2ÁéP\9b4ÝÐiÄ\10\8d+b¨\8c\84\e!<×Ðdò=`h\16\e)Ã\151D\10\9a\ e1*|â\ 2/\131D\fOD\11ñD\'ðLÜfø\1eQÄ\10FQ\ 2ñZÙÐ&Í\97zMNZ\18YÄ\11\8d\9dëÐl©Íø=àh\16\1f«\ 3\81¿\94©2÷
-ïÏf±´ \19µÙ? òYå\8b-\96\\ 6@¾\9cÿo\v\8b¥[ÓO5X\ 6£
-ýÿ¿ã÷Oýñ_\9aÿ§Oû\7föÿð?\vöп|\9eÝ·üÇ\9bþóG7\v¢Ip\91ac\ 6ÚÚ´\11\8cy3Æ\r\ f½\81yÃW\9c5pÌ@70q@Í9#\87\9fëMÌ\1c\8bpç\13\8aÁ½C&«2 ;\98^Á\0â*.0\81Ì@Û\eA\Å\ 5f\10\a½¡!\ 4kÎ\99Bf í\8d!8¯Ys\b\ 2ob\10Y\84»åH_d(\99\81n`*q5\17\18K\10z\ 3s Ö\9b5\984\81íM&8©9£ Bob6Y\84¹\15X^`N\99\81n`P\81T\97ó&\15\84ÞȨ\825çÌ*3Ðö\86\15\9cØ\9ci\ 5¡71®,ÂÞrL/0º4\81Í.\90\98qÞð\82é\1aodz\81\9aóÆ\97\19h{ó\vd\b\9d3ÀÀT77Á,ÀÚr\ 4/0Í4\81\8d3àÉ<g\9e\81¸Ï\e\18h Ú\9c\89¦ lk¤\81ÙÌ\99i\0¸¹¡f\ 1¶\96#v\81\ 1§ lmÂ\ 1/\98Y#\ e&òÝÜ\8c\ 3Þ8s\86\9c&°¥)\aæ2gÌ\ 1àææ\9c\ 5¸ZÁUÌ\9by\9aÀÖ\86\1eWmÞÔ\83ÀÍ\8d=XmÖÜÓ\ 4¶5øàlfM>\bÜØè³\0[«î´9cP\ 2ÜÀ\1c\94ðÄQ\93°Ä\9b\98\84\12Ö7ªw\9aÀÖf¡È\fG-OÂ\v\8b\rLC\v°µ\ 2±ó&£\ 4¸\81Ñ(a{\e\88½\89á(an\e\88½\89ñ(ò»\rÄÞÄ\80´\0[-xÝ\ 6bobZJøÜ\ 6f77/Ev¶\81Ö\e\98\98\12\ 6·\81Ö\9b\98\99\16àª\ 5sÛ$\ 470@%\8cm\ 371B%ìk\ 3³71D%\1cm\93\14ÜÀ\18µ\0_ë¹Ù\14³\9b\9b©\12N6Eë\8dLU ¿\9a¢õFæªÈ¦XÝÜd5\8f§õìk\8aÑÍ\8dY\91uM\11º¹A+r¨)277jE\9e5Åäæ\86yü¬çWSLnnòb^5Eäæf¯È\92¦\88ÜØô\15\99Ô\14\8f\9b\9b¿æ±³\9eAMñ¸¹a,2§)"77\8eE\1e4Eäæ\ 6²È\95¦\98ÜÜH6\8f\9få\98\\96=á\8b;Ý\97«b\f7\r\88ýëè²\9eM:=ãÈÿå3O+Ý)\14>\a¤D\85y\91¥£±
-^°Áçz\f:\17\10\b^·Ñ
-²*\vµ\1c\ 4o\92ä\16Ójatµ\ fµp@¥ÐµÃ÷\89\9a@7-éÝ\84«\8etÓÈ°\94Ï_-\1dë#=ÿ\90\ 3\8b\92°5\88\85A@UÎ\ 3°V\8e±ßØvÒòì\9cÑK$÷Õày\rD\ 3%a\b\80\93\83\98\95\81GX\864ö\v@\í\10[.Õ\ 2\b°^¹ÆèuF\93pR\Qa¢é0¢Xjf\8c\9f+\9f4<=å\b\98Á£(2]t
-\ 3¹\e\f<\16Sí`2®\97Ýa=8;\1e\8c&µ\7f²ãÅ|R®M_íà\8c\\96\93d¹M\ 2*ûÌçô\82k\9c\7f°\v\7fǯø*\11\84)¡S\9eÏ\ 6\8d©=ü/T\ 3K`z«Ìçî\bi¯Ð7Ä\97\85oñ3´WùìÐIOI\8fÉ@)ïz\89ÉêJWJ ø\0\7f5ä\ 1qð\12Æ\a\7fp\1a\ 4?\8c\85\ fKìÓ§ô;Á¿ð\93ô/>ù
-þÇÃ\12çqXâàù\97¤BéñQ®J\93×úÉ\rásÌ7\92Ôa\ eÔ|ö5\ 6±¸ \16³\19ò\96·xÔªEG\0æ\9eÜ(â\16CÜødØ\r|\1f"Â#Z\ 3\9a\ e=\9eâ\1f^\92d¡\1a+\98þ7\96\89\15ýRúöÂz&ý&à \8bù©\ ff@
-c\997ñ\ 4yXD5\9bÈ°Z\P\95³K´¼Å£V-æjaÊI\9fîñs$.\91\9d\12cD\1dù\ 6®28·j \8aQú\rý%KY\89Ìÿ\86/\fÐ'÷\8brË\85Î}ͦV¦3)Jãî¢VéL\ e©Aêà\92»Z0\9e\ 5£\8e\85æ\9aZ1F 1 ¢Ò\9f\92rE´O¢b ø6üGo_vÉO½¿·~\82mnìÑÕ\8fW+\9e×Ú4\7f&g\8aQ\98Ê
-\146\987È'4E^JÅ\8f\92?\1e&%\ eUÙ)ü#W\87\1a2\93\1eò\e[þ«wÓ\86\8fèø\8c\9fâ\e]X\19\9fî\82&ñ¥,útÂÃò_\Qx{Ë}i´\11\9a>> îN\ e\92q\0Ï\e*Â\10Ó\89Òu\ f\b8T\15¶r\19>\85W´ðc|³ 2eòkN\1e\ 5ø\92\96\f\1f\ 3\92üÛO~\1ay@\11VÄzÐfIüGè\16\86Â#à\12ðl\13&çôo9\112rÆQN+\14?ùaðàN\92¥Í=\12\ 5?ïų\83¡Ð´\8fi \9fç\91¯\92\9f\82\0þÇÚ²c\96=óµ¸èÂ\87¾\96¶:ÿÔ×â¢\8b\1eûJ8\8f\14i\97)6\13\1cGÄÇÅHÖ(â\9aPMKJK\1e7ÚÌJ¤k\94\fäÓù\vx>«yÉ[[yÔ5\9eä\82\14öø\90ÇâÂÆÌ%K^ÙòQë\96\eÏsÅ#vy0söfÎ%oÝCÞ»³ç,=\81a¹\8e\93Ó\9a\1cáÃd¹\97 \|Â\vh¥]\80pá\9ff]VØÈ\85\b_ÚòQë\96\e\bÿT~N\96¸²pbü\1aÃÖ\16~\ 3Kx\98®$è\ 5ç\v\ fh\83ÿ\85g\89dÒ æ\r°ðàáïñ\93ÿù".&¾ÑÊÕDc±g\97ýâ\96³Ö©\8eC¬Í¬\847áô\ e&ª{éXÒéj\ eä6\14s@Q:¹\81\87¥/\ f|\96\14+àÍeYuT.P^+rxN\16Þ&£ÏÇ°c¬-"ä\84! |\ 5KM\ 2\ 1®]HxX\1aß\1eÆ÷ÅAù\13¶\97õzócÚn\8eá(,h\9eÊN^\19¯Õ«à\ 1Â\13Ì£i\16\0¨\8d\13\9fD¸ÑËáì8\ eg\87z|p8?\9fÃtÂ^wØDÈa\8a®Ã\14\93=ÿJ\9e\13R\f
-Ðð¸\9dé¨Bg\7fóïä\95þågn\13²\83¢7\9d¥\8fÇafá+M4N|ÑW.\1cÛA½dÚGÒ}\1c\96\7fw\8fÆ\9bNåCàò\1c\82\v\83~A\8e/TVa@R®Ñ'+@N\18"\v¯c?\99¯æ㿸\18\8eþ\92!¸\8c>ȸàeM¾'˱\ 4@m\9eÌõ\82d\13ÊÄn\ f\eß©\r\ 1ÙU\ 5w:ó5m\ e\9e\ e´\88À@*÷°\1c\ 5T\f\8açEß¹ôal\b¿t\8cV\15A\ eA«\fZR|\11½\88K\86_:Fj-àv\98ýbh(±úL˱×ãÏùh v\182Â÷Zª]Tí¾:=mPæpÛÞ\ eI\867àÜÉC\ 5Y¥Ê\90jÆ\83ÜÁÕpí9²S(\83\96·\12m\e U«\ 4\1a\87= \87\8f*hac\91*Ø}¹\11\ 2PG½\ 3\ 6¹öý\vö¡\11\18@)Dì\87\0½\ 3\1e\v\97¡Ñr#³3ê-ÓÚ<üåùÉ\8fÏ\1egßf\ fzýqoP\9f©³o2\fÒpkæÊ»\1f\eq\1an]\1c¥*\ 5\1a\89m¡\15¾¶\ 2¯9\8aRY\86¡\8dHK¤z\85\93kM\8e¦\e\9d\ 3\ 3\f\99¿$PcÕ\11\1a\8cÕð\17\9c3z\80ø²ÊA\bqes\15ð\fO²»æD¥½\8f¢5ðS\ e'É\béÃâ=\fȨãνQÉ\8dE\94¨\96«Àw!\83¿E\ 1\1a8\8b÷ÔìD\8eç¦\ 64Ç\90põ\93éº#ì\16Ô$¥\1cÕt¬(lÄÒâj\1dB®sïjí~+¬BÏ*«Áðv\b$@\982\8cÛÃ`\1fHLù&\1c\19µ
-·OAn\fþ\16u¿(|Ó»9 ã¹!®à\ eÛ\93\16ÈƬ2í.¼\ 2T\82\ 2\90\87Ú¨\8aÞËÜ-\1asZwǽw\vR\15ß\1a\9dq×\19\1cvÀ¡;â>%SéîÛ
-\rï®/\8b¼\18\9a\ 5Á¿\11\9d¨Ý\85«\85·¬\va<\99\11ZçàF\9dW²( 3váv4x8À\96\877iÝ\16«l^\ 1À«\92à\1e\82´z«\15©\95û(Ü \85\14úà\8a\ 6͸ên\14@\9f´\f'§P9\18\16B\97P©\ 2§\0'\19¹=\8a\8c\97\e)¾\1cäF*Aâ\1aø\14ÍÆ¿è[ä§N¬
-7=xU×¢\179xµI\ 48\8cøvf°3ÀM<\17ðU%¡_\v\92@ú\90XLþxó%\ 5\1f¯¹µ\ 2àæ«\85>\9c³ëå\9d%7]1Wk~ÍÐ#nóUó.µ3ë\162`nºr\v°\ 5mÁ\8dó#®\ 6.Ó×gq¡>Ë\ 2¹É8\92\aNÛ ð\a\1f[\10DD\ 6RFe8¨F\19oþò.\98\94éÓª¼\ 2ÎÜ1:\0\9bM.\83] \88Jsù1ñ#)BòÆ?Ý\1eQ1\1d\81\8e\ 5°\ 4nõ\15^OÆä2\ 19öPá{\16\ 2\12vâ\eK²Â+\ 6\9e\ 2s\1c,\ 4³\83즽ÈfÀïÉ 1*G\81ÌÍ\ 1üH\vÈ? \17\9bÑR\97¾\8a´îZÕðR¶÷\9b\87ÍU \7f\ 1ÄS¸Í\98|?Æ\84\11p7\13Dv\1co\ÁÊXÜ\9eî~+`ÙÜ°¥\14!y\vø\19i×\a\1c8|ç£2^ÊÀ\87£ñ øÛ\1c\1c\95\8dkÇgYq¨Dí\9bÛ¾\ 6¶-úÌçèû\1f°2\87¹ã\83'¨
-\88?(ïå|éîd7>\e!®w×ZÅ\8f¥\83\84ÜÑÖ¢°jµ\r\99^ÜÂbx\9b\7f³ÜA\84(-Ö\ eñS\8e$høÅí\ 1]©Âd'U §× \17\8e©·ð#V\93\8e\14 ±\91\81©\83ç\10T\85\16\b·\97\8c\ 1C¢Ò\8eEp\7f\ 5\12\15Ç\ 6
-!\15/\ 5}\a\8e!/ݦ`\bìokaI \15«\80\83\jô\16
-/w¹åÖÀ«\80~\ eä1ÿt\81®\80µ\1dm\94Ï¥ë\88\93çaÑ\13ÆUB£ \8f"0ÞQÍ×\81\ es\f\17q¨\17ø|\9dw!\83Ü\13Â1Ð!\v¯w8\82\15\12Ú\83¬'\80@|D\\91¹E;\9e_ÇÕ\9e5`du\v% \ 5k\v\ 3¦Æ·\ 2g.§Od¹\1cÿ\ el\9c\93ç\14Ø\114x\91\e¯3\90f\17\9f\85?}7ÂT\16Ùqw¼@÷v\8bj7Ññn\8e a\ ez\88\ø'ärI\9a\bð `\95\81,¼;\9b;\87¥ÊÑ¢ç\ 6ãv¯\83xI\ 4\9cÓ\ 4(\f`\ 6èÍ\ f\90\12\15h¨¾\87\13À ¸j|Þ\1c\a)ÐÏÁõå\96WVá;Ü1\8e{w\1d+¬\ 1\80\90pÍ\ f\8e ' Äú§ö\ 2H`¢ç
-D\b¯(ª\8cô*õ\10î©:¬c\87j`\82@Ô0\ 4\f
-î\90\95 \8c#\18$T\96à9âZ®\146H\0|\99\aÙR\ 6¹\11\ 1)\89Í\80²Û7㻢ï^\v觡¹÷\0\ 2-PøêÃ\9f4\85Ä:\1a\85×\8d\ 5\89Dá,aNx¹U\1eã\85¡¯\ eÝa\18\ 1\10\86éÎ\94\93\94,\7fUØiï\80¾»Þ!
-\86+û\9dÓØFÇ>\vU%\15Rðܳ\17àÿãdWp¦í¸ýj¼#\99\87à\12\95øl1Õ\9b\87pK@®l\90~©Ü%\90᢬DR3B\1cóYæ>Uc¨\86Ï)9þ'\85qEЧu|ܨ£´\1any×~\19Zs\17lQ ?"\83â`©Þ<\84Z¢|\83x!Åá3\b\8e\95k5ÙË\12Ý'ÓÃ\18\9b\9fk)ÐòÃ2\9cNäOé5\17ßA\11tÎ\ 6^\vÊÜi+,Þ<á»Æ£\ 4\82G\0\94ÔCh\0w?²\1c¾\8bð\1d\95\14\ 5¤g§\ 2\ 2Xcp\ eå\16\b\10û \b\8d"4A\83\9c\99\ 6èk\åÂ$\13\93ðHnÎU\80åv«C\rÒWê\91¾\87!Qå0äÐ6Ï\b,] r\r\0%°\vªL_©mú\1eº¦Êa`Íq÷>\87*Â5%\1d\8fe\1cßT\80Þ˱\ 3&G}gar¹\83÷âëî\9b£îøpÚ}3ï\17³\89/\fz\f\80eôÒ\7fDK<ò§
-\1dPA\89d¼\v\ 2|@\83\ fÒkü\8aöD¼=è«B³©ÿêÖÑ\17¥F\19`}Sá«;\99\81tK³\f\82U\92¯¥¿0¡Ié]]À\ 3\86G\83ß\92Áâw¸\vdòÙU\15á+Z\8e¨Müâ\87xè)7ß,fæ[\18Ö\12«¹iï8"ÂÀM\98`ô\1e(l©ü\8føà\80\99õ#Á7ÍÊu5\1d'hòYwÖMz=ºI¯ó¯ã͸\9d4vÄåÁü\8eiì§t¯ÍíDÞ£Þ \98nÞƾ6qm\e\em~3êÆÖûtÏ\bB¶Z\802ÍÈÎç\97\18ñY¬«©Õ¢%Þ ×£\9bô:¿ÄÁS¶\12Rc"\8cÂñ¦Ò`<`UÂ\vuè\aÀ\9bÀû@äÕü¦ ¥¸\pðâ#ÏTz\1e\12k\ø>Ô|\1fTër¦UøVε8\ f\895nß\9dÂá\15¯2ü\vÚ\15xÿOîê3\80¯ëߦ\8fÆu÷ìbÔ»\9eÌ\hhÌ{\85\82\9e\94ø\82\89\93\8e Þ\f\17\14½s¬ã\864F\99\96R9Éï\97G\8b/A·ý*¡\1cM\99»\v\v0\16\ 3¡Ä\14Íüå$|9\fßæ¿\84Ï\13Üe6v äµ´:ûõ \0G \1dîÙøå$|9\fßæ¿\84Ï\93[Þ\\ 2¬Ï\8e=B+tV\81\ 4\9ac\8e\9c2ÿ²Öáϳ·0?ÝÙ\ f£!ºì¸a\1c\1e\1eÄ\94\96é\ f\a?\Á/¥ÿååàÚý÷Å\9b\7f:\ 4\1eø8Àìh|=y\97=ï\ e»oëqöb|\ eÜÖÊß2ÿãqw0è»{âê]¿\17J¾vS{\98©ìjÚÉ^\8d®\87ç\ fçË~\93\1d\1e<hV\10ùÊ\1aÍÂ&»Â&\\85'\83î\94Ê»óbè\10ú®Qøø]wÜ\eu\aÙaö²\1eöú\ 3*\8eM\9cû¢\8d
-Ýéÿ\9c¸Ï÷×5\95\rË4Û<6\ 1UÐ,<yøMÖñ¨vkÓ@ôg^°¹Q»%I\87í¾BnQ¸ñü¿
-ôE \95\83{NöèÙÙÑØ\1d\89A\8d-\9cô߸³vv|êJÚ3Àè\19Nìå\b\9cÁniJK\16ÛÍ$Ý\1að\15ö
-þßÿ\eÙ\91|ÕXoÔµ\9aéÙ\89y\8d~ó/Ô¯Á~a%°['ÕaG\15þ¿E§\9fsa\16\9d*Øn³ÇÊÁ\1cñË\88{,\1efô?X\9f\87Yp\b\8d\17\96àO9°\98·3\9b%\a\19gä\ fq\98Ç\ fõ¯T8\13ͯjî+ü\ f\8e\99V\8e1Á³\ 3ç͸/\12/ò2W\95ô8È\97âàó®hå\7f¡\87¯'\a\ fÿs8úu\88_ܵúàÑàãdÒ={zúMöð\a·bîÒyøÈÝ»\1fj*òðxty\ 5[ÿI\7fà&
-\95Ü¢÷\87\99/à¡^4x\18\8aüÙqÆ\ f\7fêOúî2\83\ 6ç[8\9dv{ï7há¨;é÷ÒêãÑûº}}\89?\f^\8cCE×âªÇÇ\1fúb\ 1\ 3YkÍy°q<|\_dße\aÙ\83¤\1d¸Î¿Ë°Ûì»\83ìáËîxº`fÇ£áùu\7fÚfR+Z\81Én\80ÝU¸`¶ëÇIýý\87zøâ\1c³Ó">#\82^ÐNúf~?g\7f\17 üò?à'S¨¢£5& R\16\1c¢\8aâ\1fÙÕ&/`\8b&¢y4-Ñ|\a\b\82iVNb\ 1ñÌ\96\90a\ 2´×` C^Úä\15Úk\9cð^\ 2±(+-\1cCº\89áfc¬¬@ÐÑ \1e\9e\7f&\f=ÄÆ6>Mq\1e±þÒ\89\1c<üþ·ºw\rcÀ\1f°î\1c±\e\82Yr\9béܧ\8faf\1dýu\17ÈÞ\8b\8b\8bI=ý\ 6\17`IýPáÙ`p\8d²ÒhÜé^96û¡¿\89 k~@ß\83F£Ù\89Ceöý\ 5\bd®ôëþô&\84÷Á\8bëéÄ ?\89Uùq\7fr5è~ô_¿ù\82Ä\99ϱ\87ûi=\eúá´"*»vf>÷%ôÙ7ï]Pi|\ fÖj\ 1\7f\85\95eÅÈÿ¢¤øÞì¥{4§ÖwJ&\84ÕÉÅrÚ¿¼\1aðÅ\12¶\153FâF;é¥;IÓõÃ0Û1\f»Ý×ì^\9cØnqâ¦\bú\ 4\86×ó=\8fÇ£«ìô]÷|ôëj6
-úr\9dn\7f1\7fÔh\8b9¢\95Ø\11\96ôÆ8\1aÏNeßÿvÕu\84ó¨¾\18\8dëì§z< îu¬B¾\9eÔ/OO\8e\ 6×c\0\97¡\917\83áyàlð{o2î}ã·/è´¡\80¯ \b0ºêöB\r\ fx7\1aÿ\8e%r\ 6\9dwÇï\97\b8\9b\18Ânz\91Nz\83qc\88ð.T\ 3\19WÝþx\vnÙ¼s·wR%·\9c\bïe\9d½¬³\97uîT#õå\9d\89÷\82Ð=\98Ó&\97Nñ%/\9d\85\ 4\1fírÙñh<t\9cÑç"ø3\8d¶dßÜ92Ì]\81ßÔõdÙ6ß\v1{!æ³\v1÷\99°\94ÛÍÍîOãv\9fF`wr+\ 5ºÔåZ \83ì\ eF\ 1y¥/\ 47Íþ½+ó\9b¿¨Ò§DW]kXÎË#Kµ\11Oêîô\1d ¹ÝU\ 6¾®¦¤«ìÕÊ«ì\ fD\84ª=\11Ú\13¡\9db ¶\80\92\94\10輧$\81\92\1c\r®ëì\87zÛ=\11î\98\94¼B\7f\19aÁþ
-Y\9dʪ@í\84U\1a\13êD'øÂÈ
-͵ä13ã\r/Üê
-ô\86·fÞ\13^|:-º\vÔ\18\83Ïvä\1dY\9aJj\8f\9a2÷¾DÚ#"Ç\1c\ 4¨}/U%\85]\8a\1aq\9fPcK]\16°\1f\94Í}\0\ 5\84\14è\7fÖQ\ e3\ 5À\f)·\8a
->-E\r$\11½/\98q\13\86°c\88\ e®à¡\99Ü\a: |¾A`0 `\ 6\94}\0\81D²\8e9^\86\19È~soPSºMPÀIÑE\ 5\193\83¡¼£\83[^¡ ¿ØR\èÏ\83\88Ï® »\93óç6\8dÀ`\ 3\8aÒ\9f?\9b\aår\ eùûàhâÖ\82¤\ eVãaE×h¹\14Á_f§}Yó_\12\83÷\ 5Ì\18÷b¯\98ªÌñØ)!-\9a\18\1c9r[Ã\9f=\7fi\81\11Y@Ü\1f0\92
-\12n-Û$v\a7\894û]²v\97ä\8eü\96\88,wmyBbµOÞ
-\99ßü\8dn!Á%l\12ã57K6I±\8b\9bä\8bî\91½h½×¶GñôøÝxä\84Ò¿öß¾\e¸\7f§;%¥n\8b1\7fu`ßJ\r\8c¯\84¥¡ðR-Ì|ã7wE©Ø\99êÑð-{\88\ 4\85\r fXO&\r(\96û©;îsª7C?=î»\11"¢ç\19\16\7fU\ fº°\81^\8fæ~z\_¹Ý;y\81-=|úâÍ?_¹½ùm\96F@fë°ú0\r\96\83¼Ì\ 1+\7fn\ 4Rf\ f\7f\1cö{£óº½ÓÍ«\r\Û\96\86âçR\8b
-\8fðf\97O>\8b×\ 6Ö \8b¼J\rLÎ/âÂÊÔr£î\9d_z!qò-ÝzwÂ×àKË\98û»ÂwX '-ò0²\0E\17@H\833ûaùF\83Ta\9bo³[\11Gý\ 1\ eNt\10yû¹¼5\1aM¶SKS\86\86\7f\ e§W\80\0Mgårп\ 4\0¤¸\84\fìä\1a{1\99¶<\17\7f@ê/ï5õ\ fÇ,DM,=yÊÊÒîI|;\12/QQ½[Âï\v5+²Û-ñ>8zãÎâ\82Ü]y¾2{\17¦³ÚF'MÙÌ¢¶ß%_v\97\84ç\ 6wp\93\98[õ\1aßÝ5Våg\â?\9ar¤\19Òµ;z\91½#Ð\96\1dç}\80ã§\ 48\8a\99\0G1\13àhf\ 3\1c1éÙL\8cc1\eãh¶-ıØö\10Ç;£Ãÿáèí>gÕ\9e\ 6\7fjÎ*ØG\v3VA¦*x\1c\15ÿ\vOu\vÓ\11\1aÞvªò<ï\88¼Ò\7f\80\84U¹\14\95\96\98³¸ÌÑˬ\12enBJ\94NiE\8a·ORõ\19iÛ\8bk\18úÓÁèWHpº[ö·=\8dÛ2\1awg|fÜÅ\9fÌf¦MÝ&\97)g¸ÌV\å\1d³\8c\7fT\86ðï\ eÚ½\1eLÿ±iú£Ï`Û]4C\91-N\97\84\19Y¿\1f\9eÇ|¬k\93º¾ì\ eêé´ÆÁ¿|Ó~¸\ fþ\9e&<ÿÇ78ï_~?\98\85\1f¼ìÍ#æÁÏïúÓÚÿ¶Á\ 6vëéî\ fjrE"µ\a¯\9e\1ee¯êóÐC^Yxv\12ë\18Q\81³_àȨìßê\ 1\10\0_\1c^\14F¾,ꯨÜÓq]\ fC1Sä\85
-¹\f\8c2a 4C(}ü±K\85+¥ó\12\ 6[hSjJm\9f'\85!p#\14ÖyU\15øÀGa\vË\83\88e\9fwßÖÃi7\14\870\ 6t`«L.}vOx9Þ\86T Öb\18\ 3$\ 5Å¡\86x\ 6á}c±É¿\88JeOÿ¢ªìè/Ú¤\b¶È\97\95F
-áñ\aµÑ¡\e\986øMx\ f9ß\8etËöô/²tí(Ëí@\f\85Áq\95\85*}\80EE¾Ï\8a\aÔhÈ\81\9eþ¥Ê\9b\r\99\¸©Aí¼¨¨¡9g_\81Sã\86`DÂý×µ\94sKÊ\1aëc\17Ü^3Þ#´*5¼2ç6@\95û@N ÆpE-\19\18\12\fñè/¦¢e\r¼É\9a{$¹}\18Z
-Þî\95\82\7f`L\1eoÔ\92\ 4,)D\93
--¹¾Ü¬|K\95\84×¥}£!qk\ 1\83\9bkH ºÝ\1a%\r\19©i·Ã+\ 3\82\1c\19}àiAXr\88\ 1^;¬¿Îan\15\8cÈRC\85Cv@²;\99\95W\81w¤÷\92Åì\1e~\aH\8f.ß\92At»~ô\97B\87\86JíÖßï\15\85'½\82çÈ1âF
-ãw¸[>7êÊ{'@>\10ß\1c\ eK\ 3Ê-¡¼¬ªàÕ+eU`04ðx)ÎÉ\86©k\bÀ\0ÌK\9fò6i.\at\19C³T&¼¢ÝÁsä«\vZ8\9e¥ß¯¾\19¥y\92BpCÖ
-Äl®\8dÁº®JQ\ 6ïÊ\18Qdç\ 6dáÜ9DPC7M\9bâÚÓ~\8fÂȤ´\841\18\19Ff¸ãË\8e/\89×\aÅ\1fÄ! \ 5C*K"_\851!o0<\a\94{oû\12\89CÈ;\ eqT°\9aq)Ã\88¬kOã\fµ\1f\10Òl[Ua\r5NG\8a²@ç[A\ 1"9myåÛ\r[\1ew<Ð\ 50:\ 6\84\19G\8b\91,¸C$9òÄ\a\ 3èHë .Ç\a\9døM\9fÃ1tk\ 2C£U4ðª4>Ñ&«põ$\94\85hU\88ï¡ÃS\10ñtË\15ÚQî\98\94
-\ 5Y Æ9V·\85ò×\9bÍý\8e\83×ësÚ\vð\10ýÓ¿ÀÔ*Å7WQùñ\94Ê ï\8eÛ×\12 y.s[¡\9cì\89T\8a0?L¢\11\920VEúW)\bÄÁ#)\v«fh»' \10®\ 2NÏ)iW\88y)\88hÁ\9baþÐJ\8bÁ?Ê\11/$ǹ\15\ 2Ãë
-Ú\1f¶\82Oð\81o\9d
-wk\89Û\9f1gt\89\8eKÊí[<Öî\1aÊñ »[¨@Ç%\8c±
-ôBÃ~áµ0p\91 ¥ñhÒ\89ÒÚªÒOÈÝ\88X×ß\8fÊ\8d\bnc\8eÄQD¹Uz\eÁ\ 3âî6\82\15.\vÞ(F!E\85G\98ñ\94\1aã°Pz\bL\r6\ 1\91´°2ÒPÜ¿kµ\84¡âQµ´ûd®m\89Ý»\9b\1fÃ\\8cÛ\89^IB\81gLÁ9pAËd\9d\80\88;\f\18\8bG\84\88¦t\13Í\91\ 4X)\11\15®ý\1c§.óBà\ 3\ 2\94$\{\82\ 2ÃwÍð\15aá \v¼kJÉ»ÜQt\\fe-Ö)l®qÑ\94t\e¡Jn\1eE×k¸AÒ\9b\a/\1e&\80\8e"KD¤Í\8dð4Î\0\99Æu\12\ 6©hXu¸}®\12Í\15\83Ý\8aw5ñ\ f\8e\8e¸Í\8e»\a\8e\fR!í\96\10\97®\10\18\v¢øv\fgÔ\1dª\88Ú
-0à\11Kxu'ÄÑV\987rª\8eó2
-×pè\ eK\1e\ 6*èxåÁÇ\ eÛD¬*¤¶þPyÃ*2È\7fÎ<Ã\9b°Ï\8b\fªÍ±\8dÓ÷\1f×V\852±Æ\8bqï]ÿ|m¥P,Ô#Vöè\1dvz}yI2ߪ~}±\85M<\1d\rÎëaö
-]¦Ö´\93\96\85Æ\96ë\\93\ 6@·ê\vb\95UO\vÌT
-Eý-öàé¸û\11SB½|»\99\1cã/Y ¥|\85¹c\89Oùc¤=\13\9ac\10¥ÛQeá9wà²Ä\82\ f\81>ÃF\92°9ùÞw|¬Á{ßq82dzhÜPðô»û\1c÷ä\7f\ 3ÿ\ 6\f\84\ 1¢d\88È[\99«ÒS\$¾&w¤\ f\1d¬\8a\ 2\ f¿¢\ 1Í~ðM\16x\14\81\ 1/\98x\9aJ#UÓ\ 6H0ò"¥1\9enØ\10FÊÿ¦×5ü\17\b\eQ ÇÒøè\1d¸-\90ëR¥çOáQzd$\f\8djöChW"ÁD¡Åý\97Ú\15y¸\85Då\84\16\1c\18¾\ 5\r×c.ò*ÜB6½ÏüåcTó>\93\ 6)£»%*ëã\8c\8cÒÚ\13\ 2\7f?\144°Ù\ f¡ÝÂß\93Èa\14LÒ\1d5E)Q\14 àfÈ\89y\86رf\9eã(ùß°Ir\8dÌ\0\10q÷_\12 \1dmÇñ\94\8e\eC±Ñ1è\81߬hD³\1f\88+ÈQ\94\81½,I¾ºY&\1c\14Ö\90WÑ°Äî¿tÎ~®ßdÇ£ÁhìäïÑõ\15\9f8XpcÂ\8d¢C¨\e 6 Ç]¥Ü\9aUÌrËÈõ9¾@\a\89Ëa3\ 4\7fiº¶\vâ
-¤o\926\8eç¬ð\ 6/¢\90êv\ eÞ°e©p'#\13¸D:5f\91tZ9\ e¾\báãÖP\13\ 2^ú1xÓ%²\88oBÂ|T\1c\84\13\83r<è¹RÈWc\vÚ¿èGÑl\8d1Hܵ\ 5ßì¹co\90ìèÜ/\94ÐZ\87Ý%}4sAÁq¸ÅRY\198?Þg·ùò\88µQ¤tÚäm¡\93þd\9ajâ\9a\ e\ 2ó\86\8d4\15Æ\82¸£håM_)\9aÓ a¯7y\19Iäé«\8cÐÌ¿¸\11]O§£axhxþéṧ\e\1f¼\1c]ýxÕ¬\ 5³v3æï/»Ãzpv<\18Mj_ðE(×\9dÖOúõà\9c
->é\ f.Ý\9fW§0åÓºë.q@̸>ïO³ãî\18\1e\1f;}7ºº\ 2Ïe÷\1dpôW\874|¤ï<{Òý0\1a£Öî\ 1Nõ\9bÙ÷\ 2ý\1c\97ã*¬çc7µËz8uãëÂS\8cô=û\16¿%ê`øþËó\93\1fFçõÂ\1f¿Ë\1eüv9\18º\9f\ f»Óé¸ÿÆí\80ð®áÃGcw7ßJ\13\9f¡ý¤\94c¬\ 6çãzèË\90\8d\80~\85ÿLù\89Ç\aÿ6\9c\9c}è\8e'ß%I~Ó¢\1fº Sôe\ 1>YR\ e|ø|±0\92IãÛ\8ebçM\7fxî¦*Z Ç!ñ´\9eþ\80hX\8f¡´ô\9fïv\8eÃÑpÙ\90Óù\rF½÷õy\9b¹QÉÏ´ü\9f8{±röÖµ\ fO\9e¶ÙøkWr\97\ eú·\1fZ\1fu(zÇ»\18¦çî»éèòn)Ù\97Û\87ßNº`-\84;Ï\91\8e¶Ûñ\8b\9f\8bSHa¿5C¹\ f§trñë\16ßÆw|\f&ð\9eõ\8e¯²\90%Zý8 sÙd\7fí\9fc¸èÚ%\ e\ 5ï\96\ 6W¢ê\88²X;«wuÈÚ°vZTònçu¨*ÙÑÂ\98u\13ûÕi¼óéT²\ 2£\8b\7\9d\8fm¦óñ®§Ã®Q˦ñfä$ÚË\93úbúbÜwÂc\9bYÍ×Ù\ 2\ e\0IßéèzÜ«\8fÀ'ò³PÁ\9d\96Ïò\ 5¿¦\18\9bvÇoë©c\v@\830yö¸ÍÒÏ×¹cÎöå\ fO¥~2\1a_v\97ÑÌtÊ\17ýA½²pc²ié\9d\97Ö×R\82é¸;\9c\u]s½V´Yþ\8e·Á¿>Á\7fZl\81Kxî\1duÝm&\99\96¾Û)æëÖï\ 2Ý?Û)!bÙ-\9fÔpô|£õj\96ßòÉõ\87n\11\ 6Ý^»5KKoÁ}»\9eðÞ\9a\84Û¼\94îz4£«iÿ²ÿ;zçnË\98\9cÐ|×C¸¬§Ýóî´û©ã¨>q\1cÿz\1eÌ!mÎ\RøÏ\vÈ\87²$%\uÏÏgNý%&ëo\80&W£é\f¨;è\87C[\1059¿êw<HS\ìh0æ1=z\96=º\9e\8e²WÝ\89#\býßg©Í£gBd4îìýpÔ{?º\9efo½awEÑþd4èNëì\røô\87l:\8dÂUvÕ½ªÇÙ¤\7fy=à\145\91\fB\89\94+p}öÏ]i\1a¢HÊuÇÓ7£îø<ëER\r~µåÒ2\99t#£e\[ô-ú\91·+Ë\17¡5F\99å%E2\80µE\93\ 1¬-Ë\ 3\10V\95\8aK\92áî¸;üÐ\9d\9c¦xLÖïå¸\9eÔã\ fu\ 6¶Íìûóþ´û¦?èO?òúù-z4¨ës\10Ú~\8a§\81D\84ãñè
-Ì¢>Bm\9e¥\9dÙ÷<\80g\93Ga.Áj\1cm6\85-tVTBw\82fàåÈÝ`pD\1f¼º\1eÔãTt\8cY\8e0\99Óó\10¾íN+5\9f\89ùÔO±/~ÿöå£W\1e¢¬Ê\ e+ÑèûU=x=zåûÅq¼\1cMú0-üU\92:£È\ eÕ\ 6õÄ\fÕ¢\11#öÂ,þþ¼>ï__f¯jwÄ®C8\aS\1f\E6Òº+ãú
-\93]Më¡;l¸¼Ó,\99l\8cs\87Íô¼\9e¼cZ\80\872é& #oÔxq=½r\ 4au\1d¡y\eÎ\8fî¤;|{Ý}[g/GW QIöÙëÑUs\9b%¿½\ 2µUò+k\8e\9e\ eFoº\83WõÕõ`\12\a\127ûé\93\9f³ãAÿ*{=Ê\bÍsD
-
-}ÿÛÕh<\85bǧ§\8bI÷Ü\96¶EQH\11\8f)´ó××ÏO²£nï=\10O|N\90iUº|\8b\8a>»DütIñ83B,þã¤\ eå\1eM\92º³ÄréH²Ó©£×ÉÅ°¨ddAZ¡a\ 6Û£«\8fs#\9b335\fß\82ÈÔî4û¹?<\1fý:Y\88\82´Üs\1f|7×\7fZÆ\9dþßfæ\9aüÜ\9f¡yi+Ï\86½Áµ\93\0~yþra/q\1dN¯ß\\80¿ã\988t\80N¾\99]ì\99ÂÉá\9cÅMÕXÅÓî\ah\ 5\82#ãØGCw°&Ùé\82kru\9dìµc{²<ÜÁùFµÄìÍݦR \91¢í¤|-\15.Á\8d*é0>½Q-s£ZöFµ\8aPk3\14\963;xÅ\8eX¼¡fÐ\bJÏuû)oWÅ\ fpñ\12¯®ó_yNû©Ü°\9e\\8cûµõÔ\rë-ÙWkë\99Ùu[\8aøEgøñõ\95+\ f¼u¬qT¿sk?\1aÏ4\8c\ 5®h\92îE7\b\95\0\12ÆW\9d\9e¿9¸ÜéU·W\8f'?Õã©\eÐ u\85¿\8e\1c§0\1aN©J¾ª
-\ 6Ʀ\8aS±jè\81:;\f^Fü\9cìÓ\11<àNt\7f°p\9b/\9cÅ÷\97WÓ\8fÇõ`°p\95\9aU^?þ\19Ì\86\7fM\8cl«zÀ+áy÷ê5\8b¢²Eé\93Q/\91£¾[Xxæ·\94\15[u±7T@§õà¯Ý©«ú\f\94HÏ\1eO\12îtII\18Ú\0vjZ6-ð\1a\9c
- ×Y\
-yvê\ 4]dQ\9e\8fÎgÐñÒÃU\8drÆS'\1e\9e½N4ÔbVR\98-|êÆ´\90§<B\93Ô\ 2Éf¶\ 5ÇEL£T¶¤\10HI¯H&3eU\8a\15\ 5\8f¸O%\9dг¤ä\93Áh4æ6eäág\v\86\93\96î;a\96\15\86½|ì8³Ppy«Øý\vw
-\98G\8a\87¾"i\ 3hÎÿwÝ\ 5>*;©?Ô\83yq3Ï.X2\19]O\aýa\9dM0\19GØ\87\ f\9cÀ\97wò\84ezÿèÙ\93ëÁ\80ömÈÛà~\9dWFؤõîpÚÏÜXº\13\12bV!át¡\1edÑh§NJ^\87-4m6\90µt\ 5P\98yâ¨\vç^N\10æ¦þ²;ö\99{'/\1f?YÀª®Ú3ØöÓ¨G ]ØhöûË7õùËñ\b\8cUÿY\7f\75l³1·Å£\85¡:É3Êak7w<\arÑ8\7f~×ï½\9b\eg¹r\r¾ÿmʺ·e\a\1a't´P/³°hr®W#)í\//ûS¿þÕíóÇýÉ´;ì\85Q\94ðT@©õz\826í²&! ÏJ\96½\17á$Ù\ fËw%\14\9cÙ\94Ú óÉòõK\1a^CF0Y{\98¨-ÜDa¶k&\1a\84þa\7fòÎa+\99ïÒu\8dJ¢gÃóú·'ýñdº!v±Ó\97\83î°ö÷CÒm\ 1Ñö¥\12v]\e\80Jl\ 2ÈLº'Z\8f\82[\98\eDÛ¹\9fÖ½\11IßØmQm2ù×£«tæ\85h·d^W8¿bGÀ\13o\ e@DuT\83B8yÚí«'\8eË\9c¼\82SÁTbÙ\ 5tE\9aO\88¿¸\82P\88pW`PQ\9bÅ\8d8\9a]Ý"j\82\1a}\8eQkvøÁ52\1agoº\83xè\97\r³\a*«Þ\bÜS\7fËÆõ[wÞ'«×\9f\11\87i|ð¶HT=Ëjáá\UíÐ\10æW`$¤ùÇÆ6:¯\8cÊ\85½\7f\a\1dsÞ¡\19~u6-Q\e\95©Ì\1e=[¥&mò\15`4\ 1\86â\110\14lÛHW\fÛCíâqXªWéRÍ\15}\11ø\89Ó\94ûÉ\97\95zÍ\Gº±°\88×Ã>üÉ﨣\99\1dÕ(úbf\9f·Q,\7fÿò´=\9a ðj<UÙp\14Ï[Ö\1fâÎ\ 6\85øBã\ 44Ø\ e©¾ìZ¬6\8b-F«/Ó\ e¯¡½\19Ä®Ù\9d\11Å\ f£éýá?Go:WN®\ew\87og:\9a+\ 6}u\a\83Õ¥&ïûWoÜ°ß7OÞl±±cÕÇ\93\1a\867^]²7\1a\føD>\98·¨Ì\96'CÕ\ 63¢*©Ø\8aF*Ø-ÿ1zólx1Ê¢Ô¸\ 6ÑË&ò¦?½ì\ 2ùoØ,øZI\8b_½½|ßy\ 32âèâ¢ã]\17Y#¹¤øewü~2[|ÑÌ\9b\8d_Oj'å <Ê\a4ØŲ\9fë7\ f\7fê\9f×£\87ÏG\8e8ÖÿX\8d}X©\1a1Ó°rÍ\r`2\1dtÎ}\17¸\ 2¬¹^Ý<T\v壽»M\9d«óK÷ó`ØzPWç\e÷\ 1*\cÑÚ_]\8dC±\15kâÊ\84ÞÃ:\v¹p¥]¹Ä3¼¨\96\96z×Ô\ 1-.\84¦\82ÎÀÝÜ
-NGWkGçK\8ecç+Æè˦ûõ\81Ûz\8eF\9ego>f\8fÇ}\bQ]¹\ 4ÐÊ0½\17æ;êÍàly¡µ(óM\8d\12QbEc3Åæ\96\1cK¡çÁjúw^Oúo\87\v<\17\16R³7Á\8dx-ÙC\99vuÏ\9e<N<ÝjM\7f\eË1?ëÁ¸sÉúµe%\9cä\0éÇÁõd\ 5v $ßêo|N\14Üqraéñyg4\86ç(º\rê»°à\85»þ)E;\1a{\17\96º
-6õU{\ 1{}ÛY¹ùB\99\ fs¢Æl© ¨\12©µå>¬\9eã¤w5è}\¾U|\99Þp²j\13»2SÇ6'\8e7Kæ÷\ 1ü\0¯Öã!\94[1v¼¿ê!hrWQ](5¡$\9fkw.\16÷T:\1e\8c6uÜ\96\9fBzØ0\12x[yÙ\rí\b<0\80MZ´âz^S¦7\1e])\ 2\9c]ß1/k\8a\8d\93Ü\9cë:\ 5\ 5ù\9bîx²b\1d\9b\fƺۥQx:\9aõÌX^6¹cZpEq\18-
-Ç\8bn}Ùd\18\8bNÑÅpÚ9\1f¬&y¾ÌÕøb4\Eï Øäú\r\9dGµh\8d&n¢¬\ 4_¸\8a\13Ç\88\ 2뺲Ȱ~Û\8d^UK
-õfÕK˹ëf¸º\81è¡\9e9Lm1iså&ïºNb¨W`
-ÕSÐdÐ\13\82\89¯ÕLÁf©b\11\9dÿíªÓP\98àÐ\16\95\1aÏröèó´¨äÛ\ 52À¢rá\16\8cÊÿEû+\96ó&\8dÕ%\aý\15$Ã\15\0\ 3F·!F/)8ºê *X`²bűÀùõJ\8dÀ
-Ê몯f3\9cø7Y\7fG`©\8bëaoÅ.ñe\82.\82vÊ\9a\8b\ 1ët\87Cr\9c],zc©u\82Aï2a\97\1eüØ9íd>ï\91\13\89ϳÿzpúó\8b\97ÿõMöA®\11Í.\1d7\97°|Kº"ådïòãûå̦+\bRØ\9cvmIc£é»:õ\18`Éú\11\15Ï\1a\16YV\9b\98h7~Ùÿ\1e¼¬Ç\90S½9\83\93îdJ~u\14ÚÕð6ôZ¨§ô\14\19dc÷î\87«\1c\ e}¥\13P׸Ʊ\12zªÎy\1c6zòz\99M»òµZôµ©wãã>é(\1e\9d\1e?{V\9aÇ5l\10øñ«¯¾úþºzù\1fGg_ýí\7fý/õøá\8b¿Vß=é~=þËÑéÅó\7f=QßýðÕWã\9fó¯þMÿõÕ¿\7fûâߧUÿÉóÿú½|ñ·ëwOþíéÉÕï¿ÿþÕWßüÿ\8f¿úêOÿó\7f|õÕ\83ÿø\1f\a_\97æäû\17¿Ç\7f\/_É\7fÿ¿Ü½×\96ê°²(ú\ 5üC\e09Ø&ç\9c¡É449C\93ÓÙg\87ý|?î~Ô\95d\ 3¶±\8diz¾Ü1Çìa\1cTR©Tª¨:\963$¸P\1fáÏZÄÕ\9d¯Á\ 5^\ 6\7f\94îT4<M¡þh\16ð¹#Üè\1eôàB«E?\13\83q&\v\7fúÐϨÍí\vÁ\9fEúåÚ÷Ø\v\7f\8eÑÏ\88»lÛ\83\v\9d\12¶í\8f¸K?3p¥\ fÀ\9f5\ 5\9eÒZ"&pm\80/)+)|õi\ 3W¦Oøu"¶<Õ¬ð'ê¨#n©\98OàÂL¢§ÉØôx\80?ëð§91\b\1etðb\bþx\1cQj1:¢\9fh,\1eÐ3§cs\7f\9e\8cͺ\81ÿ:¿\9dûEbT#\94I\7fü\12±Øò!\83-j5\97"µÃ O&¢\ 6
-àZ×M\8cÔÞv|¦MãñÜÅÖC(CÈ´)p\84|cD\85-¨xÆV âê¶\97\184ÈÊ\7fÿ«Ù«\8fa§3»\9c;kæÖ7\95ÀÌQëb\134^çC\81ÿh\8aáäÕgÌä\19VßôMÖSõ\11 F¥\84x6öÑMð5¸\9d\ 5ÃÔæzàöjy}Wé\85³Sì\83'\99ʽ·.D-Ñr5ä¶u>-d*Úú®D*\93\90&\9a°ªì°?:ËüÐ3Æ\83«@B³k\1aRÑ\8es\10]y'¦ð¡µ\8c²HéÞj\11Ð\19l\975ü\89fu\88lvóKÒ\9fÌ\14\9dÎܸ\11[\ 6Ò^c¢\90'Ã\87ÐØeLä\93\9fN\9bú2þï\7f«l\ e3\ 6ÏG\17\83¡mÖ\e©\9aÂÛØr>9+pצ\13´Ä§§\90+ñ=KFÃÞÏ\9f\95573Ú]\9b6Yçõ¦àË\9cÒÅÄ\880]"¹\96j\ 6fòÇ\185{Êíxf\92Ñ*ðè:¼¶E×\ e|ärYO3[ä8Î\90Æ\95§\v\97\87²\9c\ 5\90ó»Hõ\82-\8cÑ\ 45KEÈ£Ù\18\8eiG\11·Ù¢\8cÏÌ\1d[<Z(\ 4ùSJÏå\7f\11\rÿ\17SéI3¦\ 2l\17SNÒ?\18\16ÿ²\ 3\9a=Æ0,\94=Ã~*\99¹Ò\eºJLÿÙ<`\ 6¯Ç\80h\1cÍ+x\83Y±º.ü¥Jêvnâ¿Î/óÚ\18>éçnøÈ\fi\eÓ`JM×\8b©LñOLM\19G\18î\ 2KW\13(:\0ík½D
-Ó\85ÖmL\9f¨î0CÎgÁ\8cee\1435z\rÌÜIü`\96\91Y\8fYçË\0FlJe\8c<¹¦\98MuVc¶KÝ\8994þ,æ4©z\98\8bì\1f1w¸`Ã<I{\1aóÖ±\1eæ\e\8fÁ\fa\ 1Í\97\v\v\ 6³E,Ô\ḇð\964bQ¯!\8eÅÚª>\96Ð\1cÕX²t\bci|ßÁ2Ž
-Ë\99/\11,?ÄûØgȨÇJ\1ag\ 6+\8f"K¬\9a)ر:Ѭc\8dË\8f\12kîL ì»\1fX\0(\9dfÝ\85õÊë\ e6¨9LبQ©b\93æ^\8dÍ&Á<¶\0{0¶Ò\10ilãm\1d°]Ñ\92Â\ eã¯\ 3v6Qi%\96\19^\94ª}´ ÔDU\1a¥nѬ+\8d±\10¡4\9fð\81\92(\f}J\eYØ(p¥ãÇ\9bUº?µ:¥Ï»í(\83Ú¡_\19>¶\ eÊØ¢RU&{9»2Óͬ\95ùNº¨,N
-vee]Þ*ëçFMÙ"@;\9dÈZ©ìW±¾r´\ 1\90g¾\f¥\ÖA\ 3\eÕ¾«Ü\97Ü\19\0å¬;UÊêQÒØC\v\95~9úR\99«Î´\8a´µÜ*\87ÆfT¹7Ã\93Ê?ðÍTáÊÏ·*þ\99-ªÒU"©Ê\7f\ 2ªR§lWÕ~\ 2fUK¥×ªº\9e½R5,\r\8fªé¼ºQýP¹\1f\ 5®ÚVb\vÕI\13\99«\95ÅÐL5Åæjc/µP\13¾Ü\8fÚ\81Õ7jO§\7fP\as{L\1d\8b\93ZuÚ\161«\vÆ/\87ºb:\ 5Ô_\16oJݱ6Jê¡WÕVÏ
-¹\85z58]ÔûsÊ\82c¾K@\81ã\9aæg\1e7^´\1d\9cü\1cnqç9bÄý\9f\9a \1e%fU<µ(/ðB. Ç«.K\18o)ÏM¼·^\1dðÉÏÒ\89ÿô\a%|?\eo4Ødh×hW\93²Æ¢Ùì5v\97Ò§ñ\96ȶ&¼\8cè\14¸&ålä4\85æj«©iL\ 1Íw95Ò\f\89¥]3\9f:Ú\9amüË¢¹\98õ_ZÍéˬ5OM½Ñµh}e_G\eÍíìÚL±:Ñ\96:Á\90ök©Ûk{\97EA;s¶\8cÚM>Ó×\9eWá\10à\7fÚ`\0ÓYf\9e¦Îéqzu\81\1f÷Y\97Hú\9aº\ 2à\8aºÚ¶ªÑu:ñn\92Ýçuë(áÔ\9d£9¥^\e\9d\8eõÖ\98±¤wåóA}¨w²èS\87øI_²¬&úf6ö¥\1fì°\9c~\19¬\ 1(úÃÚí0àñ\83Ñ`Ñ´U\ 6g7~0\84Òö\95!mSO\reÍnhhí¦=Ãh=ì\18VËnÛpÞõÛF½~Þ5Rî]ßèK+GÆø\80\98\19?Mñµñ«Ð<\1a\87Ê\13nü)¸-Ƴ²âRà&]_\155QȨ́ÉoÞµM\89Sri*\8eO*S«[²\99Æ\ 3[´\19¾ÌÊmme6ãA£Ùå5GÌ\91ÏÃ\979·\9eíÌ\rGÇf\1et¾
-æ\95¥²0_æß\84Å\18m\17,NÍhm /ö\0\8a%×Ð}Y\1ay¿Ú2ÌÕÓ\96uv»¶*³6¿Õ\©\8c¬î\89Êa\8d]Ò=kÑ{¶Y¿ëÙ\9e\15\10¢Ãz(õF\84N\17ñ\13¶ºjE\84\1cÃ$\91=\97TDc\1eÿ"Fe\9b\83Ø\ 2¸$\9eÑå\158I~êd ª_\90\99!Q ë;\17E\8eÈØ\8eܦK\r
-?,#\14\15Ð\1a©à.±¦r±^\8bj\1a,)
-\88ß.ê\90WimúxuksÚõ\ 3[Ì1¨ÛJ®hÖÖõ¨Ã¶\9füÜmW~\15 \ 5n·\9ecF{ÀïÒس-£ÒÞ4¨ÏöiK}²\9flê\93ø2\9c\1d\9e/\97Ò\91\8aÅpGÝZÔ;Ææ9á8\98\f.§Á\10\r9Ýä íLFUgRí;GkÝÚyð´4.CÇîtyô\93$ØÏR½\ÓÕ\bR+×ä¸3¸N\13¸·\14\8a_n\7f:½wçbQ»û;èût/sá\1f\8fª\18¦<Ô4WòD5\8d½§\9cXø=\83©\1a¬w·ßä5,[e¯7©Ä\0Ï
-¥¼ébï]Ö\ 2q\ 5îSçÖ;\9f=\96JúâqíÉW\8bwó¾ÉWVë;\ f\89/?¡S9üáØÏÒ_Z\8c3þ¡»£÷\1ffß\83\809Ô\8a\ 5\82\86\89>ð9\\8c\ 3ý\86:\17Øg\1d¶ )\95;\ 6\ 3ñQ7ø\993d\82ýï\ 2\98ýà~¹×\84ÌæØ*\14ü<vCÅ}¾\14\1a&MñÐq?ô\84Å\945\1cqÙ´áª\ eÇÂ\93Íj\1fÁzÝUÄ6l/#\89Ik\1eù\9a\7fÍ"?Úá"ªõ¯~¢\9eòe\13Íí\89c´\17M©¢ûãبÀc\96O\83-\16¡òÁXõ|ÎÆf£T#®n^&qWñó\14Ï\16-\96x÷k\11\89ï\a\85jª .\13Q·A\9f¨w°HbiØ´\92Ú¯\9fSÒg]x\92\9fÓU=9*\9eO)Ì«\ f¤\1cfw/\95Ñ\7f\ 2(©.>.¤\ eFý1Mxr±t¼t\¥\9b\8bD0½1¬ç\19S-\17ÌDôú\9fL½=\8ee~<©cV\7f¡>³Á©Ê\98Ö\16Ýì¢1\rætÅö)\17øî5r@¥ð\0~¹<çuîc+\1fèSQ\ 5\9e¯j#\86ü¢Ñþ)èI¬Q\b.£±B¾¤
-?Q\1föitÍ\17\9f\11g¢ýùåP}~nü\9dxÑRHú\8añ\1eA\15ÛÊ\8b©xH¬´%j1T\952¡Î¥Ô?÷Îe¬;»\94ÝÉ\9d²\ôèp\ 5^\9e\19\9dú\8aÎZ"*!Û\8f«Òp[C\95Íg=[µN5õjÊZ\19U{Eý¾\86);Æ\9a»\16ò×J^]±6?ÏFuø¡ªGÛ9oý»\1a.×\8f5ߪáè\ 5ÈFa\11,4f\9aÄÏ\97>Zµ+ð¯È|Vÿúvãʯã,\98h:ÓÝ\9ffѨó5ç«Â¸e\1c¨]x·>juÛ\94û\e\e.gßÞE>ô]3ywß\9b\84>ß&g'C;g\9b÷Ú\93Þ(ØÑ\aÆX'\86/¿;\9dÑ>Øź\16\8d\ 2ïú>½£n½\Íwwµµ«g\1f:U½"ö=ë-]\86zßR¯'ú\19\1déê\8f\9b\vã@oÏ\\ 6±-¹\1aôÚçñP\9d\19u\86¡pãkø\1d.U\87\97L©<òUJ¥QcÒ(\8d\8e\86Qeìþ<7\14ø¸z"Ûã].3\9c8Mó\9fIyL\1c'\9bF[?µg Ç´\14ø\8eN×1_efK\1fƳâWó2[Ͷ¹\8d²eæŪ¦?_\9dvØÂVÞú\16%릱X¯\8eÇ¥½£÷-Ëuo{¹ýÌ\ 3éóÇY\1ag~ª\1dãæg?Ï\ 4V\1eÍz²jÄ#®Õég?\û\13e÷ºu!§\ees\13Ü\84ýÕͦG%³[ΣÝ&´dg;¶\12\81\9dÉe9ï²iÛ×n1
-ú÷\14QTíKÕþ`¿3bY\ 5~p\ f\82\8eÃWf¨<b6Ëô\18¶t\eǾÁ\95:éñ\99ç\7f\837Õ\9fb©ô´=â#\8eò«¹\11\ e\1e¾z»\87ÇÙò\ 2+\1eÂ\12\17»ÿI/¯¶\92'Nz!\ 3\bÔ«Kñdÿ\9a\9c\9aY¯/È,¾;Â\fÕåv\1e\eîé<ÕåTÂÇ\ 6Ç Û¡s\16aôúöÌ\8c\16:ÆK»õòêw\1149Ê\8fÞ\126F^ÇQØmwctÂq|÷?[ú¬A¾QA×f\8dò\83UÐì\ füü \1fvØ\8fk|\81¸µè\8a±Úq¸ß?y\11\r\rÅéGon\b©Ù¼\85É<\7f\95Î6^JÅ®\_M\82Iù\9a\8e` -\83ÈÚ\ 2PÍÇð8ý8/¦\1f\8c3ÿãtÍ\9eø\9fÅtûq¢sd\86Û\ f6ÖÑ2\18\9eàmºv \0pËp· L¿3j\9cÛØ\7fv\97\8f= \86\8fÝöcJÓ'\ 2M77\87U9\97\1c@¦\ f\0ìöé\16\8cõã¼\83M\8c§\1fK\14\165üX\ fÿ\ 3\13ïÁ4 ä\1f\98e{º\8c\17°{\99m\1c¹¢ïÍÐжÃõÇ\ 5ôn7»\83_\9e>.Û\15¬\96g\91¦¥ëÌ\83¦ÇÇåþ\897\953Q\15iÇË\9dTh/Eä(a®¼¾\\99Îa"·\94w\8bÓ\87(+váùÛ5)\87Ý\8dû\fçÓ\8c¤Ïîúfí¸Ü°z+Å\8aªçávÂÎ<~ÒÓüÍ[F9\9cÏÖa\rÌøcæ\9e\ 4G{Lk\10òe±'\90\97\80 5ß°üÆ\9dßå\96·ÜdI^y\8fãEa¼rÆ\ e\ 1É\1a:\9a\ 1°\8a\91Õ»Æõ\96\8b3\18\1a[µ\87\ 3«$Ç\ eÑ;<Ok\8bËf´\1d.¯9cÏ\86ÁJ\9c¸#L¤wRù.\92tM\87nA\82½§O=q¤\\91Ç\14\8füϧܸ/\16[\ 1|q(k¯â\7fÀÞ§e\82£w|X¶\97\1d\17"\12\13À_Æ_S¹\f\r¬9A
-\97\18\17#\7f ¼Å\13op"ß=M\9b\12t\8e߶]\14þ\94\ 4Ò\a`¼ÿ³;®¢OÂ\12Eè\91Éí\92ô\vË? BÐ%+\82Ø\87\8f_\14µäM\f\ 2\1aC\1e\þ¼¼\86ß;˶K\8e\12võÞI\94Ô\19\19í®®~\96C\8b\8fa\19\87v¼îÉå±;\18¶\8f¢½ï«õéö#ȼ¤g\9a»GÈ\9chyé\11¿ã\14\99 \10õ\96³åÕQúÚÔË\96\84¸Øâ,-\8a\12QE\ 4\10Æ'\1a»¬\95!<O2ô°Èø¸\e\rÏùá\7f¦Ç_±\9e\9bÜ%=HÞúç\8fò¥\99}Ðún\ epð\ eMâ±\9b\1aõÜ]k\ f\155m£ÿ+ õ\r\9b¦¬MS4GÃÇÔfá\9do±l\123é´±åÐrR;ëé\84Så\r×SÁ\82=äÍw´\85ðñ2v%\13TÁ\8d\93v»\8a Nñ\9føÜD¨Ã¾\9eÅ\10ö\9bö§ð)GY\15xØ\97Ç\8e×\97²çè<]Î\87ýöi5¶\f\ 4Çq\8bE;\7f\0\95\9f´\0<W<\89{]ß©sü§\eµ\7f\9bM\91Í.\7f\8adªç\851èT]\92q»ú+ú³Ö~)ðø\8cÈ\8e\ 4\eS»<3W£ÜîDj1KC\1c(û=o7ì_%»aïɲ1ÆMø%©KMf
-\1c!+9\0Ó\11\9fu¿\Ð\v×ô΢\8bsláú&9è\18hâc2\7f\bûCÚ/º\1dÐåS¬7ïíÀ\95æ\0\1dyXÔìþQGªfÕ\96îCs8¹(pÏ\8fÎ8N\8c\1de]laïûü\11ܦ1F?M\ 3èÁ«'cÓ\8b!ØȪ\16¾ñx¸\82WKcb\96_Ð\90IÂ:t\1d\97ê\81wÙËN¢k<¤5\1f\8d\9dK$_Õ\1c`ÿõa_vaSàN_£\e\8elÇÚ\8d1PðY]\9bN`Éq&zÉ[\8bãxöÔ\0hsi§®/\e1ñ.cÖ!\98_²\10Ð\99MÓèÚUÚÐ#håñp,ãW}%L\1eÇ ÌK¦íT\ 5]±]ÏèoLÚ^j¤ê¢f\83[\1c\f(è4¨à\94´\9d_Îò\16â)\18]é\9df\864\e\93<AvU\85¸uè×$1ã÷\11BqÂ\a=Ô
-zE\81\13#eÆ\8e®\8dÁ¤\9f¹ò\7f%rôë1Sb@7Fµ¨\f Ý&a\f\ 6\13&*\1e\9a\a\98v¾\ 2~ßäç³\87fòÖaÐ^1ê` \80\97¢Ù[\aº÷\ e\90º@\ 5¾4µ£{\ e,\1aï#TC\7f¯Ýùíü\19Gjñ\1fc|fÍ\1d\12áV\1du\8eêe\7f:Þ\ fFj\8bñ9RR\8f\v\91\1ae\ 3³\1fqu[*ðÍä;Ñ\1c\84.7\14ÑTË!ÓÞêÞ\98{m9¦¯\13ÖÚÅgÕÄ\ 4á\134;Ô\e\83*ß\17=C°e\ 5\9eè\93ÆFÔÞÌ&ÃÇã¢n÷\16¾Bh\86Ü\8eåÑ &Ï`2Fw\9e\1e\1f\95Ü\81³ñ~Å\13=±°)\ 5î3\ 6.ºd|MF\89¬Ã\vþ¤\88%ÝNÐ9Ú\85}µ³2RË\9e/\8f¨äÍ$\vï×\89o\1e1x¯\ 6øØÁ²\8cðñt©x¦I\9df¯\8f-\9c\95ïÄ\88ð\eâÓãÑDLK\ 1ß#4:nÈȧ"ý,\89¨Ío\1e$áJÍYâ\99\1f×\90^ûô\84º«\87M.RìE\vÉØ,ë&ÈÜh\92\8cM6-Ä<\ 5æ \15];\ 3_÷¶\9dç|à;\9a®©\ 2¼>(pÐ\8bi1\9eZáS\0ªìG~~bæýÚ=ö\96ÿÞ\18\\99Ω½räñ\18}öO\1eF|\99Ón\16[\9e\96NÈ-Íí\12¥WeÒ÷Qù¦^Í\ 6¬ä\8a\1e\92WÁ\18È~g¯@ç\1dÀÇlà)\9e7¤ÎýÉ&R\1ddãÖe@\97¤\e\98iÓÎH°\9b\87\eµÌ0\99p\97\9b
-Üo$\12\9d\e:ö Óî\93Jj\9cÞ&\98ó\8b'1^\1d4W\0h\81¬\874cÖ´µyÀ\1e\ 3ÚHe½7°ß+\ fÓ\80ýií®ÊÂ`\89äZÕ\ 2g±ðëó~¸æÒ\14cùC\8däl\19\ 6M|\16Ñö8{@%\99ìë±\ 5\1a\ 6à¹Û)XR\8e\11ï)3ûðù\8a³Ó°¾6\80M4µK\98jã\0Àbù\v,ì¦Ú\18\f8mè)\13\v²,OàÐ0øJ-\9eË¥ÍI\7f¡GOáXæ\86-ýz\10Æ£ë,a\81sÕ¾¯O\97;´4ØÃ\8d)ár|oëDN·I\80?\93(\91#'\11ú*Û
-xÀU3\bî\rÃì{ä<
-¸åý\eæÍ!óaN7\8f]?ü\ 1WzO }sýú
-\0Ý£ÿèöIð^¨\ 2®~âô+ðe\b\85Ü'ØÝ\83/±ÛAP6q~\13¬Î߾Ȯ&q¦7t\97`ç@+\b
-ê
-\1a&j\11þÔG«ô=¦14*\ 4\ 5~ÍG\11ÓåG y?Â\r\84\82ZÔµC¬¯³ç¢\1f¼T\ f\81?í\b\e\95ô˽ð\15\8bþ2\v\ 54>¿µ\9f×Vz\91ÛX8\13%1µ/L\ 4o\1aÐXn\13Aa©+²@G\99×ÛÁ+\9e8è ß»ÿ¤é\ 5Q\ e\84Ìé\ 3\1aËm.¹c\913%h\ 4ôÕuTÌSöO\0E\8c0\9e\91Å7\96g\8fêN*\8f4\v¡\88"\8bÆ7ÂÄ\15\1d¬1Ã\97\ 5\91\8ah\835æ}òJÉ\ 2ä¿aàÝ\9aàö\86ý-\1an;È\ 1
-Û\ 3@ѼÜÐACáÎ*\8d;Ø"ÝG\80 ¡¥Âà\1d~\ 6\17\0\9bHé± \19DÏ_@µ<zA(o\ 6\11%\83Á1ßÜ&þþ\r½\fç±_\91!¢i´*Y\0\10l½³x½B\ 3\82à G
-Ötn·/\ 3\ 6þccö=Od\e©Ìæ9 Væö¼\r#Rkä¶É0I®\14x
-Oõ\81XâÐ9Y²É¥\8cû\93ýsÍ\10ö\11%Ì\98h4Ó×̬f\89\13,©\80¯%±ßSàH1 Å\17°\ 5\eYª\19é\ 1
-K.êÔ\ 2ÑOß\16Õ¦\¾ï|2b[©³H\ fà\ eÈ\88\14\ 4\ 5îÞe WÂl\9aÙã¹ÐÁÎ\86\12íO#\95mµ\1e©\9e3\9b\841oÕq\9f®\93a\ f¾¿*\15\15ý]ù¢\ 1dÚµC¤\18\8b\96 \fÃHW\e\ eb\80\ 6
-¥0îHYÂ\86Ë7®W"®N¶\12Ï\1e\r\ 3¡\ 6"\8et7\13É}\95\81\9cÌô¬\8e¯R§âôÈ\88~yg\14lÛ\1dËMw°Hë\ eÒ\9a\ 3\94.®º\ 3lÌåªw§¹ø¬|ªZ\97¥6 ÉÄ!FËÛ6JÙ\96V\86DU!\ 5ÎV\86î\14
-\87FkØÍH1\19ÿùêÇ\96?N«o¶Áç@¾5\90\0'Á\81ËU\99ì`çÌwù\88\11c«ëî½)@ÉLcÿ\7fÒ,\9c\86\9b= \18\9f\9bõ!\1a@Ù\16\1c\0A¨\8d-\8c\98u\19\fx\99¹ââ\89£\8b¬\0Ù[\92wE\18p\18ö\1c\94Ò\bý\0¨M\ 5\8d\ay\9aæ\19âduDL©Ð\ 4i:¿/\80Rz\r4\8b»üÏ\95þY\1dõ¬¦¹\18\18ÐÄ\98\1cô\83\9exªå\9a\ 1u<A\11TÊ^à7[Æô\1d\9e\92BÓXâ
-vP\8eÏêÆ\141\1d%ã\94~\92 W ÒTI\93.æ¡\19WϯY\89+W²×5¨\92\89íe@á\9e\8d\9b\99}¿Imm»]ã|6Z.\85ÁXZ\9bOFÁ¿´ðHù³ÚHÆõ\93ë\83;±ï4\84ku\19\95\88|n´¿ëÈ|\9b\ 3õ½\ 2ó\12[t0¯1\98ê÷¯\94Õµ\80\19´ä¢«\82\11\88ö¥Ù}Íz¡¥¥\17]Q\ 1ìþàf\b ¼\93Í\9a\0DJ~Bl\7fß\1d@ã\13\80ý×\90á.ÆÀ¾.ݽ¥l\f5\86\87+\80\9a+ì˵\94@}\`ܶ\8b\91jjò\ 3æ%p¤ÂuÌ\83æ\0Í@@w¡¦\90äfè\ 1àc¡Åé\82&ÙS\ 6L\15@é\rA\13µS¢¿'Ga_]ka\19É(ÇZé\9b]J?\91Z}Ø\ 2\0¼k"Ù Û@oÒæ\ewæ\e0\14¸g\9dÜÍÄ(\86¼½Y»®^vc2W¯\8dmQ\94^¿\ 4å\8châ#û´útõ²:\ 2Wï\1cPrR_Zû\92qÇ7e\f¶º\86Ç\16ehù¬fó¬Õ\eÍ÷\17\b\9f`^\82Îì%n©LÌ(ïà¶EÕ\9cÊä6Æ\98\ 6\ 1ñ\99÷\87Ý2nmúÂW|j§ÖÅ´7\80ø<1\9dKÅ\ 3\f\aý
-8à6OE7Å ØÅ8\82ǧ=Z¼Ø¾\ 1ª+§\84Ñà\9c±v¬;ÝARrªU\awØûuXúféÑ<ìm&ÙMÑ\1c\9bÖÝ=#\ 5\8evl¿©åL£¶Y{7ó&¡\ 3zúy\fæïÛ\17\9fî\8by$N8Uy»
-Þ£â¹ZAy\aïj¬ó5°Ñ\85Ô\89>±íÆgµøL\81'L»Â%â\bGÚ\89qiç\89K\8cer\8e¯\0Cõ(]'ëg#RË\87á2ô\98\1f;ï×\85\8ffÏ%RªX»ÞeÏ=\ 33þe\0óÂ\12oèí(`\ 5\14\937\0\ 1¥SOö}\v+\1f(\15<lÀ$Ï1\98\812½?\80su\89¸Gû¹\85L7LÌ=0Å@\1e«©\ fæ¤nçÑó\1e\91£|\86º7qÛ_a\97?ÍÑõ\86\98\ 1zY};\83Þb+ìÛ{ÈÇ¡1ïÁy\ 1oºÜå\9dAô%ô\8aw2\19\1d\1e_ù6Ç Ï·6\19\9b:W\91Z|HF×n\95\9b L\87eØ[,¯Ñ\84±8Ì\ 3\15!ÿD`Ül\83E\13/D*µðá\916T§Ø2P8\85½I|è\f9\9b©Øg¬\11ºI\87Nf\7fqù\97ãv<3®\94¢ö/êü0ñ=\15\ 66\ f¢\9cÔeCyOº\93<3B03\89\16@h9§/§\8eÌâsU×îòî-1 \ e-\r÷¦\90Ô\a\e\9bMw\90èÚ~½\1aïCêö'FÖï=Wò¦{æ®iÔÕd_¥©\82ñ\19;\89ÞÏy\8cl\90\8føL\9d\13£¨A§À½\ 5£\1d©Õ4\18\87XB\99[³yÆJÅ\90E\9efÂ×\9f\1d\11\ 2I«\92±H\17\88\88áL\13𱸩æ¸Ù\féÞzV\91D-âòTæ\1eû º\ 1\83\8c\12¢¯À\8d`\bU%½ykªÝij\80\rhI¡UØ\1fÜ\7fÁ´§-¡\11hb\1a]iÏÙ¨½¥¬§\ 3\1d»VÖH\191\8fÓ\8aÎÒ\81PV\99O ~$vìuç\fïàn\98E\19t`ýÚT@EøöÜ\9bð\92nì3©o\95Î\91\\8b\9c°\80\ 6r\9f\93ødã1±}\16 g:Àå\8b«ù\9dÿÒLx7X8X+õæ½ \19®ñs÷\13\9fy²ëøÈ°Ä=ùÁÑ\9f\8c¬·Jd\ eåÑ\v\98}èÊó~Ƭ\9dx.ç·Ò¢\1aU®\9a\93 r¦Kz#\15åuB¿t\80ó׬Î@2\12\8c:ñ½#\9e\19®ñ\aþ³.é\ 1nº\15ÈK-ñ\F\19\ 3Ü\92»\80ü¦K©\95\f\13ç>\98óí(\89\19L$Paëð\e\ f\ 5V\8em\0\96aÈÍjÖfÐéiåÒUsõ®¾«0Îõ¾1Hð%u\99Mijè|ª\92ñR¡\9aÄ÷vÀ\¾¦ó°-úm¿¯EF\f\ 2Ww\ 1\vùð"®ª*\16\ 1ÿÓa¿Ù¢\17\84\ 2_Ò¤ ±¸\ 3^JØ\1e×\98j\15±ë¢õ\84î4êBFBò\91E\9cLßh\ 6ÀÂ5·D¡TóQJ?« 6Aj³\13¨2ç"»EÑÀÖ\9c¤V*"û«Æ'Iø7ã{\ey\ 1à\Qña5ÕIá©®\eÐËêÂzù\9cOvÁì\87ÕH\14A>J(';Ã\85¸¥¸ð³¨6è4í\92\ 6½É Ä ;\ eT\89ð\1a9\e}SϸÁ¸à\9cÙ:{¤l\13D\88JúLÊ»\ 2ÿ@cìm{?\99%u¹\94\87=É\88VË\1d\15|°\8eTGû\19-RNå<ºQº\7fX\92R8½?\Wå}\7fAP¾lþ¡ËW.\96"ÕK\9dzÜP\1cÇxf³<\81m+º\ 1=\;\93\83\ 2î\11\97\0\8a^\7f\ 5`¬0É«\84§û*S¸=;ë81Ú¥ÍOÞ«i¾º\89á £\8cn\8c\1aÖ\ 6}¥1\96ô\11úl\82\99^²üö¼ÆXëîa¤pC\99õÁ$¦\r\a rg>¯;2b\9f?Gm3©¹ì§Qû%
-4\1d i³trôÊFç\ 6\1cÔ\92XG\7f~JáxfR>dz:]\12ºA3´ß(²\1en\90h\948k2Ø\15rö\ 2¤ñGá5/$Á2bìQ5\81tg\8a\94\r}°C\8e7$\9b\1dg/g"ÓNùyë\81\19\v\10PÆ5ïgotI\ ezÔ\ 6Ò\98íæLÿf\93R`\1ae±\7f¸Îi<àĪ\r6\87¦.>ÓìUÎsî\1cHö×\16+\aʲg\9a\83Ù8\19\Þ\9e±
-ýAFþ¼Øô[\e\10\bìÃ\88]«Ýyȯ\9c5âN\9dÎ0l\0\bt\99a3|Ò7\95ñ\¶{\88Oý=å}Â\90Ì?°\83-z¶\aì£cuzGE\8dܯá·\1e \¥ÓÉþ¹kN\86µÓ\1a×\19çD\v\85æ0WÅ \ 4¶æ°yá\ 6ðL©Ô·»ÖI\8cj\91¯øÜ¡Yò¸×\8dq]yÖm\97¦ù\143% 4\17
-\1c¹ c\8b¶ÿ\90\8c\94Â{oátÙqM\83Nç\81ôTâãØp\157,c\97ß\96\98&¾g\99ÄÍ<\89^©\82\15_M½ixM\85n§\10ÛB\18+}»j\83´5\19¿D\90[²\f$\ e9\9eÜF
-`ÿ¬é£+\9fßÌ\b(¼\16ç\80ÁU/µÉ=p\83æ\86L£eeÔ¡OZ\ 1\1f\9bxãs\16·d\9e×T\f\96\19ÜÕ#\95]~à\f\1eô+¶Ê\fq\1cÕúó S7
-ô}'µ¹\eg\11²ÀÞÛY\ 2\8c\ 5\ f\86l|Ô\9cVÀj\v¦Sþ~\80xämù\88`þ69\8c\9d0\0\18¸9©r\1eËé\10\10}B\80Eç\ eQÔ¥«u\94*ëÎ\90\9eüÎzib\ 5+µnJâ¤\ eèÍå\8a)\9eÅf\ 4{\ 4ôË{ÒÙ8Ì"hKHây\97\97×öíå\v<\9cà{¾\8dÏv]#2\1d Ú¯\19V\1fuCëp-u±ì{\91Ü·Þ}\9f}\18\ 2 M\8c/Ê\9e»\98¶Õ<6SÖ\97ì\9b\1a^ÞXníÔ\12;Þ¶Ímg\10\9b/\92Zèõvsº|k`ïLEv\87\93\15Fw\14ãÝeKÅöVß\19\807;l\14îãç¨Ñe ÿ\16\92Ú\14\9eLonj\11P\90¾Ô\96xÖ¨r°!¯ÏêÄxd\9aÀ(\82/*ÄÜÝ(5pâûP^ós,Ý]WØ×3_"µ\98«\ f´Î аæad\17\99&ï\9d£[±é"¾°¯[\8fº¶\99\1a\19ïλ\14Ð÷«ë°õÚ\18à\17¥ X\7fK?\180G\14M Ã%îáH\16Lãi<\1c(±\9d\fÕ\9eù×\11ô5\r+YDÉØ\12kkÁz1\1aÆ\878¡6oÑöîÀb\ 6\12è\ 4\e%\10÷ë£\14´\9câ¤\8d\93\ e\96Ý\8d>\8a(íãÄÍ\ 4\13ÉñÚ^O"t¹<÷Ò&¼\86î\11ùº{B\r\1dt\aÏkÛѯñ\8fff· R\1cKÞa¯Ëíj}:[Æ÷\1a\17×so2ÛÕG~y:³\ e¼a\17\8d\19þ\9fiá²>/÷ëi\84{$\rL-{´\ fYt÷!û\1e;é\ 3\ 4\90ñô\13ÛÉõ;\88jx\93$ûÑé|¹\85\aÎ\\9f)P@$û\8e`H¢1è\18¸\80f?²\12VcÁ\f6\99³\r^Qv\7fÙk»=(ß®Ð\ 3\9f-T;G\81R\94Z¥U\95À\10\90z+x{J\19\ 3\15ç\ 2ÓÛÒ\ 1ÌlÕ\ 2ñ\v0Î\95\1fÓ\7f~{0Ób \1e\rf\16ÌxñV1S¡\19ÇÌD\81"¬\81\96\ e\81\a\ 4§/ÛOÔ©\0:\17_\ 1"\1c\ 4mQ·Í\rö\87Í7
-\13B¾°ûS"Ý\9f\ 2¥èx\f\ 6F\11Óþ3\eÎyNAwÚÿeIî¾í\8dıóMÄ¿\93Z2\10 \8cICĵe ØÔecÌl¨\0xy§Øpé\ 1Yly\8f\1a
-¬ü\97ò§ãÑwª\ 1 ¦\faµWéaÜ{vr'Ï\rª·[i\88\89\86D\90\8b÷f\8f]âä\am»/Æ`
-Ó \81£y\89¯,Ö\93;ew\1f|?àgj\r¾nŹ@;Çn¡S\16\ 6\9arõ\1cÞLÏ"\b´§þ\ 4"\v\ fì\1d¨s\99KáÂ@ý\98îx"ñ£0Ð\12Ù±+)¯á\ eT\81ßÁ\9e´¦\82Y\ 4¨c¡\ej[ a v}Çè§æÂ#U&{v\ 5®ªï×y¡±\12Éh.,\ 2Ô©Ro\8fú\80\bÐV\8fHÎ>«w (\84÷\ 66\85ù5d¶_\13\ 4\9aJS5QôRßÁÚ\0\ 1\ 5´8Jpçô\vPrç\12ÌC°úÇYÕµlí5©\a@í»\aRÊ\13Q\ 6hI«å\ 1u86ýý\1dè\9d\92i°ýcw±\89\0\r\ f\9d®¤\9a\14\ 4Ú\v\r*b@Ó@`µé|\1dá±ú±îIµ\98V\84\81\96cúàA½É\v\ 15úÖÞà\1d(\98\17.)\19Bßá¢0P{«E$=ħ PerîRW6TQ\b¨\ 2'\92ÝnRd¬N\15¾Ú\16bb@\87DÊ4h\b\ 3M\11\11íTçj!
-\9c\8fà³Ê\14b\80¶Ì:\1e\82C\9fö\0\83ÞDg\95ä\0ýö\13y\97\99\84@\r<
-ü¤LOwÎÊÐL\ 1°®=\9f~óíï¡\bP§Êµ\9a${b@ãDÁÐõ H½ç\8e5sð\86\7f\8e\9f\15A U\9fÖ&
-47Ú\b! \90óÛÛf¢Ú×+\85ÆzRæÒÓÏö·^'\b´¡ÝÎE\81V\17åÁ\b\ 1Uà\8fcm§\88Fnï\17\ 6\9a·áõdØ\1f\10\ 6ºÏ*\85\80\ 2\9e\fÁ6ú)åY\ 4Áí"ñ\15ÊÅ\85\81\16\82\89~¯Üí
-\ 2í\16W\19\ 4\14î/\8fcýi9&I\11 \1d7Ñ=ÍÂ@?\7fö\9b¢Çmã\ 1\ 5P\10Ø~Ƽ\15Eð\11¯\1a1\11 :\91Xn²\82@Ý\9ff%\16î\9a\ 1\1f\ 3`½\aþ¢¹ô]}\ 6èȦç-\1aýw~h@@)mP\97æ\8e4O\f\fÞ\b\ 4jº\ 3\ 5P XÐìÏáÊô\ 3G>ÐÓN\13`\80\9eCFÞH±Î°§\81F[d\86Ë\bMÇS=\88\ 1(\0¬å\91+eÌh¬\0hìüÀ
-ÓJ'\r4DæÌ<FhÚÛ?é\9dƦöÆr\b(\84Â\80U\1f\8fÃÑ\16\ 2%x@\8fÇÈtw¥ß,Æ\ 3zrüx\99\9d&ä-[xèUî¦\83\9a\82\91\1f¦Ã¾\93Û©t]ÓÛyE\9f¶Êä¦!ötA¤\aøåþô\81ó\ 3Ö\e×\88|\ræ@c\8c]ûõ3uñ\9e:Ýd¿Æ<=Ü\ f«Ò¹](\9bBÏi¦XÊx;¢OÝ\94¡2\10\7fº\18ö´7\8c=>\8fP\9aï±èÓ¼q\e¢Ä\9f\8e\8a3ßý)\ fcNUQ9\1e¥E¾v§5i\7fýD?\9di\ f\1eÞ·uãò*\9cÎH¥÷\ 1cõQ¶º\15zNs¹¸qu\14}ú\85\8f¬\98øÓNÜ\e¸bLàù\0ï¹Ô¢O\7fÎ¥}ZôéªAEË÷§\ f\18Û¬\92Á\9eØ× Ke\9fCôi\96²\a\9bâ\18ÃÇÛQ5/öµ\ 6Ód:\ 6ѧ\89Ha4\15}\9a¥BJR\1cc\11\8cRë½"O\1di"\110\ÇìÕùxO\8dµò)Ä<\8dYüüU\99®\rR\86Èý¹ýd7U¸\1aX\8c\98hÛ1\86ÿ\fð5|ºgÔÑdßA³\9eèîôI_qø\18uVC\r3\86\99³\9e\16Ð0\7fjð\8f\ 5ÞKb¦x%\ 6ÿ|!ýí¦½Ñ<\82\817¬D¯\9c﨤´\81\92\99áç@ÏáÈcA\95M\v>ÌnÐÚ\80\9a\ ekEX\vî\16è±Í\v`J\r\807óß੬ËÀH\ f¸\932q¼\f,f\ e»=*\15ø\1d,ÒtD\80:UPÏi\v\ 3µ·¾E\81\82Mä\87äÉcì±"MG\14(ÜòÆb@'l ö*Ð\91Y`Ý\9fÑ*\vèD£QÝ\81"éÿ\ 6ÔÆC/\94þo#M9@õ-¤½²Ár\10\1c D\81"é_\ 4(Ð\a\81ôß»\ 3\ 5cá\8cµ+
-\14 ød\17\a
-¥\7fQ
-\1cÊÿ\vá±ú1\8b\14мV\14(\92)î@áÚç\80\852E\8d3«SÏ\15<ºb&B\1fû\9elä¼×»l¶ìµ/ò¦Suè%\9aŧï9\16\fÝ1Ü"
-ÆÜ\890Üòaé\ et\e\88\9d
-Ë@\13L^\8e\fsÑTü\15o]ª¼¦û\9fà^7©1Ê:äI´¾\1fÜëýû[\8b:ÔDÐ\93Vÿ ^\ 4=©v\1c0®a\ 2B¶ÝY\13\ 3>\98À\99?¦Â\8e\ 1\80Dà+\80\9bl ú\ 3\ 6\17ØÓ/ñ¬O\80íE\8bi\1c¿ý©°%fÆfV¼½\1c\87PRìá\ e²!Ʀ\ 4º\/\81\e\1a(Ð^\fWìÐr;Ã\8eY#(i¸\b¼YÜ@\87\89¬\ 3ÇÑ\1fH\90_\-I¨S+O\86×)v\97ú\17- Ý\82\89Ò\86\b\96\1d\8dg\ eD(\aܲ{\89æ\9e!\1dþa:O+ó\ 2ãÓb¢ãSà÷\11¢?¢3x\9d¿ªòùü©nã304&4B(¼Ö%\90%\7fþv\88>iÍB&²$\1a#\rÑ\9f¤hS
-9ä~E\96Ïü\12eÝé\8a³#Ó\94\95ê\1c^Ǽ Þ\81póÍPòÛ\98§¢ß\9e¬4Þ\15âÈâ²\1eý#ëé%¸¬Ç&Êz\14ÏH7ÑÉ\1cÙ\b¼u\99\83@\rÍz\84q×K@\19\86A°H\7fL \13ý\87Á\1d¹\15Æ]Ë\8c\89²m±U\89ìq\82Ck)_\1f\1a{\17C\83³\85\1aµÂ3T§r\1aÆ\9b Ø\91¸\917*ö.Æ\1aÕ´dÑ0³ÿÀF\13\0Jc÷Ò\80\848\f \1d Î5Y¸½-C6\9d\ fô\1aйf\d\9aL{r¨Ö¦Q\1fh;ÿ/\11C\88ïÒ\8b\9d1p¥\1c\16%#£\8epc¤ÜÆ\84\9aBxgyy\f\8fën\98\94»î¤W\1dØ+\87ÊæEr.U¤©N\9aà\9f¶\91å¤x \vÀ\19u\89\9cÐt\ 2\8c±'\14þ\ 1\13z7D?Ò\ 6\18ß\8d\v>ÒF±|ë\12«_h,ç\94`Ï\82©ÑIl\90abz®[\1f¤°Ç)¹k|\ 5ãã\94LRϤ0¹¬gå>)pÑ\8dI\86Ìx\7f\19H3í³è¶¤À_\99ß\14ÄIúuéIhíOR\>-\80¬Âî¾ñJté\1cÊ\8aî\95Å
-Ó\1f9"\1dè\92¸@w\9d:\ 5.o\ 6\81\96/)X<\93ù93¸Å%\ 5\8b\17æ/UÚÜ\9b¢)ù\8dƪ[\19ý\ 2«RVcÜ\råÕ~]=¼Lc-i%æ\95A²¥º·1Ö?þ!Ƹ\1cíÅ~í¹v\98\81ëø ¸\9e\83§_JÇ\1cÿ\vèOZH\19\14\13h\ 57h*Ú\`Oø\18KÀ\16^\95ç\90òÏVe´yP¿¦(ÓþØ\87\99LC\97Iþ\8e\e¨\89¿\8e\9d\96R#Wù¸É\96|ì\ 4O·mù©\19AX0Ló\98\82àzy>MÁ\93´\8aÇë\bCÉ\8f]yÂ\ 5du\84'[þ\ e'O\96=«#´\8el\14Ù¢æihºn¿ \93ÓNIn\90Ñ-¶\87ê\9eF\16\96A\e\e Í'^\0 bÔ\0\92 &!Ã\b²\ f\91\ 5\92\91\16;\14ø+\9dRý\92\ 1p¹%\rÝ3.½-Ëe\0\99;\ 3\90«ï\8b\8fO+\ 3å
-yHçÈ
-Ïí\19|IþnëûÉ@§Þ×_\10UüL&º§Ô\9d3pbá\ 4\15\1f\11\9d\1cÐþÂ&\97>\19\8f\95\14²ä/qQµ\aiI\0Y/.q\ e²nK\1c}aS{VVî\ 2ϱp\97¸ Öýܺ\ 4¨V)ÏB"eKÈòM²üÞH\99dy\16\92M\96+Á\8b(ÅÏM²`h¬\85ÄÌþËf\92,\8cK(È5oÜ´$~W²\17î¶ü\vó\ 6 \83\ 3\85\ 6\84"U\1efKþ\ñöT\11»\8f\ 2\97²Òm²Ð¹ÛzËî\ 3ÑòÜÖÇc\ 5"ö\1a\88\1d§,JfñM\8e¥aÏ\11¥Ã\17¾(\rè@Ü\98Èðd\19Â4Är\8e/J¿\82;Z\1eCýÁ¥û#×¾`\vÕ]Z\1eE°t±\976Â\1cO\12þÝzñ\96õÒC{Nç¹ûæwÛ_~a\8dÞçøû\9eØ\80\14¸\ 4¥\ 3Úánz¿a\0¡:îP<\99sy\88é?1Ò+x[\9d\98,\v°ÃÛè\9eíClY\96\1e\vk«\83Î*-;~\ 3\8e
-Ü\93C\f¢«\8eEÉ1Ð\1fËk6ïÇ17«B»\1d×+*Û\ 5 \1a\13³·
-Y[iÍBÌÞ
-\e{añ ëK`Ñ(ð·\9d\14hÖ¤·<\85ìv¸\8aäk½a|ât;ï®@º\95\9b6yoåÊ\93_içõ}ï¦ï\v4Æñ\10¾¶\89rý\83Z$]\98t\\893\86ÂTÿÄÃ\10CÁ§
-üù2\94±ÝÀÆ(ËË>>\11!\ 2Ær\1ad¡\92%~z\ f\9c]\8cÏÑN+ý\ 3G;ø\ e<\19\1cMÐB\12\ 3\88 \1fÞåhõ;G»j¯¯HðüÆ\9es4\85L\ f\12lì÷\1cí¶*S\8dÝ\1fp40kB\1cíåµ\ fÚy\9d£=Ø.èvÞçh°\95÷}¯¨\1d o\90)ª»yq¬
-\H\1aàlB\8d\9d\94\ 6Ív\1d
-Ë(vS\85\eo t\9e\aÛ8¼÷®\ 3öº¿Ì´\aq6$S2\8b\81u^<\v-fÚ\ 2ÿ\1a\9b\ 5\8d5°\97\98¬\ 2\17e³¿\8c~à.æ\ 6Ò¥9\9aøo\ 4\140k¼ &1\ eó¼\1dy¢½h+È\ e\ 3Úy?\ 4\ 2µ"¢Pó<ïÏÛá:Ýe\9a\97\ 5¼ ¨±¿°UÓ{!\18\9f\11J\17ÜÝ\10Ü5¿#ß³\88t¨¬\9cÞÖø\9a_rY,Û\85ènøõ\92|/m\83\85\8d½/ßw\ eB{á«»\18\9cµ×MZ\8f»\18lç\1dù\9eÕÊm/üý.\86Ú\11\90ï\85Z¹i¯"íÈÝ\r¥÷BÄa:\87·wCÎ^Øçû\89\11\14p÷OÂ\91 ÿ\11\8cÃböJNðÔ=\fCT\16è\1f%¦\84\8dJ\93\fï[³ù\8e\9agç\a\8d½»ºYý\12XÛÒ±Ö\12\18\93%î^g\12B\11Ó\88À\Zds ïi\fà³a\95°\É\b§ãuI\94"PlÏÓåÅß\98b\16óö\14³Xeé\9526&*Ú\9c\88\86ç\89G®\89èû g\94<TÊX\£ÓßEÛ\82ÆD}77k\8fÜ\80zÐ\98MíËåÿÂB\ 20æzMÄ\10\89A\843ٷȲÁÒ\8d\89,ö\96dð-M\11\8a«ý^V§dRÄÃâbvdzéÞ÷³ £°\15Ô,\989@Ùr§9fÞ\96û\98©ÑK`æ\88\aóæ\12B\19tôÉ-ïçбw±Ç\f:^ÆЯsè¤3è\10Oþ\83\1c:Q (\83N4[ðÅ\1c:é\f:v¶à;9tÒ\19t\1c©ï\8d\1c:é\f:N¶à\e9tÒ\19t\12Ù\82/åÐIgСlÁ?È¡\93~\8fÉ~;\87îaár2èn\9aÅ\9b9tÒ\19tH\1e{\9eCÇ H\96È0+i\93BÒ¶x\f¼x&\10/ØEF\97\ 4-½ñç\81Û\ 6yùRI\9e\8eüë`Ø8_ú\150\ eȵô¶ãÜÝþµ©cùøâü\80\8d_ãÉgà\90+7Wô¶Çëä$\83M\7f¦\8dgF\14®\8fOª1é8,yãC¶¾g\99s²Çdz\=®\17ùH·¾Þ%\91ÌÇ'\96+©. ¥ÌÁ±¼\944'\8b×$x¡ ÷Ø\9e×\12¨Î/\85\82Ðñc\82Á ¯\9b\8dÅ\8cÆèd°·íU-³Jzh
-\99ÉnÜHÈW\r\83\88\92Á\9c¿k1¦\93ÝÄÜ6\-éY²\9b¸~*íp`qË\84d0\bG5}¦\86$xÙ\f\9cLay\8dqC°ÈG\8fÍ\88:<Ë|\94dz\86É\97\94^´*ÅÔÞ\91M<\84ò¥\14S\94ûV\90\99uø\·\aÈ\12òeßä±GÓÙ3Ãáʽç\99IÀ·uÁ Ù_x¬R¢b\97h\16\18KRâç\81=\15»dçñ]\9eÅÀ¿\90Ç7z\96ÿ¢â\18ÄSÓÄ\93`¤EéÇ\18xm`¡\12ëTX(ES|þ\9eÆÀË\8e"\98¤¸\16LÁù\93\9bÇç>>Ë\89\91"\ 6nt:lìÏ2D\8fwÏ\87XfÊ+\8d=§xù\18ã\1aXßÄØÓ4Qù\83¼s´_a\8ckø¥¢Í\96\99\eè\94æ\ 5Ö\vdrÉ\93e\1fl¾\8fjÖm©W\84í\96Òùr¼&D\1aX)¹;²@\13\ 3ªGÂ?\ 3ÉÕ\9d\96¡ìÝ4¾'ÊÞ<-[Ù\13k\80\1f£ø\8b&\9e\1d\8d\ 2æùvª\86¼T¹_ÍP\9fx¾¿\E\1aáe\ 1SÜ\9e\e\19\14\92&i\98\95&¢Ä=\90½T\8e\9câI\9a³\f\97'\1a\90ô\91'\8a\aõJB\8eô\9e\1eBùuñ³\f\94³<#b\94ü\93yͼ# *Ñ\92Ò\93\ 4¹\a®#\9e\11u\16ÜÍ\7f!\8feä®øûz\17\95Ç~2¯\99wÄÓìø\11D¿ÆÓâ\89¥AÁS%ÄIàE\8b\f§K\9c|dÐ)ê\15ó\87D\97¸\8bùù.&\81'»Ü.IG§?O\8a\93ê\12ÿì\ e\vÏþK§$ý\85E&\8b,2oF©\ 1IX-Ã"Ãøø\9e¤ç¨½\16Í;\16\19\96¾\9f}ß"\ 3\1aÐIDw¼\90\86ö\e\8bÌC¶àû\16\19\98\86ƳÈ\88e¤>Ëϳ¿d\91\11´óge¤çÈKÎ\81)z`Á=§dyá{°T\aÁ\15\96swaY<n\\8e°l\vÕ\8d*\19Ä \9d\93¸ÏýM$\ 3\9c\17oYû7F\1d04¯îIL¯\9c4´_\ 6°³÷\17\98@&n]z!}ì!tA0[ðY^ÝËA³\8f\11ª(¯Nf¼\9ed^\1d+uT"Sø¹\114'yH\15kõ²dKÉP½ÒãY¤ð\9eÌ\8dî\9aó.\16\98ô7ùp\10Ê_ÄÔIçý~þØoòá\84¢ K\9b¿Î\87{#Ïâ\85|8©\bÕ¿Ë\87\83Vë7W \8c|8\81\13AE\93¸~\9f\ fÇ\89\86º~£ýë|8þ¹£tFÜ_çÃ==%àOòá8\1e+\19¡\96¿Ë\87ãëbbn\1d\98Éö~f=Üàþ,&\124Å\8d\89\14\93-åÄD6v²b"\9fýÓÊö®\18\10C\ 1\12ïg££vLÏf_f;ròHD[¡å1ÔÎ\1fdr=D2HÄÀ?çh0¹NÜ ö\18ï̪e#\12ñ¬=\18\1e"\9eµ\87'\13Á[\84¢Ö\9efã\9dexO>bY\15Þ]\86 1Éce\84ø\98è2líå.C i\1câû5}Q\90Ðþæ4`ÔÎkËG$\1f\19´ó'\89\90q«¼]ìi;âG\ 2\8b\9c¦%\16fýx$ðÓÓиViÞi\8dzÓ£\r\v&\9fI\1fìôT¡¾e¤\92Êß\ 6\88°Æ,v°ð¯2R\87ʾ\8c$R\99\19©CåH\8eÉàIªß\9fd¤v\ e\7f\93\91
-Ûù\8b\8cT\98/ö~F*lå/2Ra;ò\8e\81æ©ÄBq}h\81\88\1f\9aúr\90\91ÞÌÌ>w\196ß^\86¼T8a>öשp(\9e_2¢ç/Rá\ 4çåÏSá~o·äbLZw\7fA¯|#\15\8e}\ 6\11J\86û'©p\ 2V\85\7f\90
-'l\1f\93©\9fµ¤\ 4C6+`\9f\9f,\95ø´\10\8dU\95s"<W\1e\8bY\9e¨Er\ 3½`S\ eY\16E\19\ 6dØ\98øÉv/Ê0\ f\87\f¿ê\`e£·dºp¤Nç\ 5¬\hË»Cy\9eÜÌÏ«ë\88\1e\87Ãß\1c®ÖQ\81íá¾~aÕ8\93\10<f\ eP\89Ë`q\91Z7\86ý¸jrI$=êp/Y\v\96\12aëY\v8\7f²\16rµPÙðøwâ\18\8e¤\9dµl,j\19ÇbQk\ e\16!¨î¯Û\11¾æv\99±8qs±\84²Î \96Ää(µÅóÎÜeo\89M^Üd7߸X`\e\9fY@\1d\v\ 3îÇvb\19vöVS*Ùmb\15\ 5J$kQ©\f;¼¸,\fÅ\80\ e$\80¦Ì\1e\16P~.\96×xbYáøÉnöæ"\7f«LÈK\ 1Sê¤\92ÝH\v\ f(·\1e\9fo#\96açT©\ eÎKG,Ù-\95u¶\91ΰÛÕj¢@5ùéb"\ 6t*]\8f¯Ü\14\a\9aøl§DÑ«ÞÚ|}1 en\86\1d\9aU°`\99Q£+\86ν2ßó ½G[\158oÚ;yY-Úõ%ú=fëÌ;\ 5\ 4ÑÏ«\96\14L^Öü\rUÊv,#ä\96+Á\1a·ôX8>¢\92f÷7©=Ï#TùV\13ñ:V\a\19]bùÅ$:õ,8õY\9c\a½þe%9¡²#\ 2gªÈ°.IU\92{É
-×\8eË\ e\91|\92\r\89Î\84|!®ïY\119ɸ>ùôô¤\88\9cèø\84ê¾=+6"w|Ïk\rÈFú³:#¼³ÔÞ¨\1f'\7f½¤¦â\85\88DÃ]å\16 \93¶ôþ&\9bîwv\98W³é\84ô\80k-ο˦\93y>Ì\9bÙtB6Aþzy?\9bN(\97î·\99\8fâÙtB¶xáHûw²é8haÖ¬àùcoeÓ 5õä\84\90_dÓýrG~1\9bNÈOsÛ+ÿ,\9bN(\97\8eïÿM6\9dP.\9dÌØ\9e\17²é\84lí×
-ì\7f\97M'4»ÈÒû§ÙtBÂ\r;vôo²é\84réDN\9b\7f#\9bî±K\v\95¸¤ôÛl:!áT\81ÿu6\9dÐü DC½\99MÇoêiMá_eÓ\89É\96\7f\9bM'\1fcïdÓñ\9aâûÄÿ(\9bîW\18{9\9bN2Çêϲé\84s«ÿ:\9bN¨\ 1\0å\8f³é\84¼%¼\18ø?Ȧ\13b\ f\íõ/²é\9exFþ(\9bîùþò\17ÙtBȸKã\7f\95M÷,\93ëo²é\84réDëñ½¯\0\9aï
- §¾ØKG7\89Wñz,RɯÍ!3ñéðd±s\90oß\89Õ²ù}½º\87.\9d¡\97ç¯ëÕ\89K\17òðt6j_ÂÓ\1dK\9cHH\98\93ùT°\90I\ 2\9c\ 4\ 5\91¬g±Nñº$\97\15Ȩ.ÇuLýªK\10c S/\95]\96ê\92p \85(\87\91À\93DÙe\11\96 w1®F\14"³'\9eFdS{öO
-\9bK[ænÕ²¤
-ݽ]æ\8euÎ\95L\91ü7eîD«Ëådå*É,s'\96É%/\91NV\80\84t|ò½ÐÝ{s\95jíåT\99\91´RÉ*s÷Ô¢\b\11óv\99;F\86\91.t÷v\99;:÷íI¡;yΣ}î\ fι²\85ê¤ô$ÊϳÈýY\88Ò>w\17¹\7f\9dË\ 3\86\16ÐË¥OQ/\ f,P÷4öð\19}Â4:¨<KZàe%ÒÉ\89hV<Ï0\14\ fâ\90\9d_\b H\84\1d¾\10D\ 6±#júãR²¼
-[\0²JËÏ'\82\87¦\8a\8eYèl(1\7fOª´ùeb\17'\1a
-\10Õ\93xpÙÑP ©§ñc²£¡@cò"º¥\ 3\9b\11ïû\93ÌÇ÷]!°¢ ÄqàÌìËlGVmW¡VX\91]Õ¿X\81¨\95\87LvÁLáç¹ì¨1Y\89µb5 ø\89µÕícbmuûw§\ 2ÂÆþ¤\901¢1Ð[9Ì\8c½w\89¢²&\84ʧõ^¥b¨\r\8f.]\98\89÷\18A-©\89\8bÅPOO«?ÉL¹\9d|üº$ñØTþòW\15\fÁ\83\92¸\8bXöÚ¯¿T¨ZÌû\ 6\v¯½-NÐHEu¾ÐÎ\1f\9c\12@·ónµjº\95ë"\14:áðµXÕº\8cD\86\97<¼z£À2lÈHd\90e\81\7f»ÂÝ5¿R¬ÆÝ/\96¡@pÅoëV¿VáN*óñ\8dex%4¦ÂÝ\9fTÊ{\9aO$¯RÞ»ùD·Jyï/C\89
-wܼ$9ù!¿©p'Uï\15Ö¸{½Â\9dÜSÍaöÓû\89µ\9dÃ]Ì\11Ó^e'Ö\82Æ\9e\8b9
-9\82\ e]\9bîw\89µüÌGÇ»ö#\98_X\10L\87~í\9c+ÔÎ/øæÃ\19\11°\9d?Éç,\10òt±§í\88çÂò\92\98\14Ï\8e\99@åò^Éo\17Jbb{E!\830=,C¯îÉDÈ°k]ë¾ÉLc\92\93Ĥ\rôø\9a(k\17\93\93ÆÄ\1dä\13Û齩ۼ\88¦1yu²2Ô%ÕöÛªôêä¬J9ILÚÀ\96/|ÿV¯l¾\94Ä$\16A\ 4k'Jì´¯ \86M&\87÷\8dSùy\82¡Àa\89Í\16]\ 3â/r\c\16ñSÅ þòjEº\97Ê="T\8aËc¿;\9aª\85¼o\7f\94ãÚ\12=\9aêu\19ftz©Üã\93JyÖ_渲Öç-\fCFÖóó\1cWÐ%ÙYÏR9®\8c\ 5\bNDÞ%\fï*úÁ\8c·t \16_\91±¨5û\15WM³U\ 5\1e\ f\19«µÀn`t\82«T e÷%\9b\9dä\84Ò\ 6\95qzãA¦]\96í\98¹â$á}\86*l \9c|8\ 5~R5Z%¶©\8a[\87Í\ek·DòáôâIxÇËÀKry2/\r\8f0\88åþ9UjWEß\15KÂë\88\ 2\ 5cQ&÷6ѱ\12)Õw]\14¨63²ÌÅê°éï@o\99\w\ 4\97\1c\14\v(75í¤uiîu\ 4m¼,G½.Ô^\v\ 1Uà\10Áü\9as\9c4¼!?÷\8f\8dÞ\9c¿$\ 2Ô©Âí\9fñÁÝ\ 6ËÏ\88ëK\0M©\9dâ@SeÕ·\10PT÷Í\9dæ¤Vò\81V¤ê\bæ\1aâ@\13\89z\92\13Ù\ 5ÀªásÓí\8aI¼\18\ 2Vîì\8b¼g\8b\11¢ï±ó+\89\81Á\e\91Ѣѻ;'îÛ$\18sËÎ\17:oÎ\1aÆÚÃÝ<c\12vâÛF'3l\12 Õ¡GÞ N\15³ç\81\932öfÐv\80\9fØôÔB"\9e\92ô\18Z%Ú%HÉâ\9d\8aÉImz\9eØtú«Ê,È û¤2\8b\KR\:´Jtê\1e*³\0\0ÕWBФ²îx'O¾\91\95ö$B\93Æ\92B\1e=ñ\9c^¯\8eïfµ\86yw/WY\14éÒC\94\16\7f½ÈFúKQZ
-\ªSâvâ׺\ 4¸¥x\9c\16Ó\9f\87ØX\1e»Jt\82\ 6®ó:ñX3åwª\ 4h;#ãèë'6Ø^â¯\ eol\991y'\1cÊÈF\924/Ëõòô\12ï\9cD{ÏI|82îWÉnÂ.ë\97εî%~iYæ\9e¢ ³\0ß=\84Vè¬8Ñ|±gZËãYq\12
-\90°}\8c\e4"àb\1d&_ªw Îa\92\7f¦#\ f\93|\ eó[¯7\9dp'¶\8e\91Çêyù:NÏøvþç&;T\8fOÔªb?<\ 4\10¬ÜÇ×å\11\91ÚOÚ@SÜ9øZ"ÙC=\8b7ʲIg2½\94cåyé\9c\ 3V\97xù/\93\94\94íø©4Îé\12+T\9fñV³Ví\8b©\80+µ\8cTNö9W\12©\80ÏJ\1a?\99¿»ç}\92z\9e¨#\9b\18xu\8d\ 5«Ì¼Ðس*:Z~vDc¼]å=\8c=Íå\91?H®çòM\8c=§ó\12Æòö\8eHc\ féÂBÒ!\83±_f\ 1ÊÍ\ 1\94}\ e\89X\82\98¬\1c@\89èt\19Y\80rs\0\1fíɯd\ 1ÊÍ\ 1d\9fpøz\16 Ü\1c@dµþu\16 \87T$4L~\1cìkY\80rs\0!Æ~\9f\ 5xǧ4ßàæX½\9a\ 5(7\að¦#ÿ*\vP¤K\ f9\80l\7f%Ý\9fÇQ½_\94O~E¶w\8aò±Æò\ f\8bò=X\15þIQ¾g\15Ùþ¦(\1f\9d3"- ¼_\94O\81\vH\85\7f^\94ï±>ò¿(Ê'^\1fù/\8bòɪ_ùNQ>¶U\ 1vÊ)Ú)\ 6EÏR\83Å«ú½\7f6Tö/Î\86\92Y×OÖÙPo×õc\rí\ fÎ\86\12«ë÷Z\9cÒoëúIWõûÕÙP\ 2uý¤BÂ\9aøëuý\84\89Oòl¨_Ôõ{NÉ\7fQ×O:2äf¹z³®ß³L®?2èJVõSà/\19tEëúI\ f\8dg»øu]?NG\1eªúý¢\ 2\88`]?é\ 1 E¨þ¦®\9f`:¢Ô©æò\11#;SVð,è_Ôõ\93>ùëæ\13\7f³®\9fäF\17C»Ø\1fÔõ\936\v¿t\ 2\95D]?iUW0
-ú\17uý\84Ò$ïKï½z|\7f\90óþR]?éV \9dÿ/êúI;T\14²Ûy'ñ\9d\9f\91úÛº~\ 2¢&«ª\1f»:\ 3ñF]?Þ2$¸Uý8gv½\9c\9eBÜêú=Í{ý\93º~ÒUýn\94üf]?é\80kVFê[uýîù[B´È;çê×uý¤\11\88$Ø?¨ë'±ÖN+Û\1fÕã3H·"»\1eß\93rr²ëñ½U×ïÖ\8aàòy5\9bã¡®\9fDÞÃÓhÛé«uý¤%yxâÁ_Ôõ\13ÛÃ\e\8f\9eÄßåoÉ\10ç¯\9eÄgËðY]?i\7f37\8aà÷uý¸Øæk\8b¿Ç÷Z\90\86x=¾?X>·ª~ï×ã\93\93Äôìô\86ÇX\8d×Jññ3Rß«ëÇ1l?Tõ£3\86Þ¯ëwK\95\92ª+úv]?i1G\84Æ^®ë']ÕïíS\9b\98º~oÚúdÖõ\93\91÷ú\auý¤«ú½\\8fïWY¸<nùX×ï÷Éð¬ª~,(oÕõ{4%³«ú\89\9dröj]?éð.Þ.öëº~Ò\81N<\9bÒ¯ëú Ì\v«ª\9fô¹pòëúýÞnÉÅØë9O"zå\euýî\8cK¨ªß¯£\ayuý$)\82U\ 1佺~Ò\82!½¾_×O:!\96Ù\91ß®ëÇ\1d$¿ªß\83<&û$+n]?q!\88\96a\9e\9cd%³®\9f,\19æíº~ì\99|tàHd×\8a¬Oáº~Ò\9b\83d\16ç\9f%ÄÒû¾U`{ø\96\92Ñ\8auá\88\ fþ¹R\vúDEÞ^ î\8a\9bv¥\ 3ïyi\8b\1cjºÒØÝ{\13\fìÙyð´m\8a\ 1¥ãì\90\96Ý\1d1\84µ8uÞðùÉÑDó'\98ûF\9d\16\18ØV²\98±ý©&¬Í\95\8b~ æSaêB0c!t[Ì:nïí¶ã"\9b\f®»\9erÝ 3oôÚè!J¤ç\9f\11Õá\12ub\9dáÄ\ 6®\ 6aÜáö¥5\85â¡â8¬Zm\ 5îrXìcw!Ù´ä,GÌ\91OÙ\aÑʪ\1e\9aT\vίEmúé84tÓ\99ú+¢·Ç\7f\94µJnå]û\9b»iH·=ô]\aü\18Þ:?±¯Ï\90VmÓ¥\9cø¬\9dÉè/\vUÛ¾ëL½ÌÚG¹\9dÁzÚÀ,Æ^\18£æ\87\86ÑoÓ\86\89d4\17%\92³q\96H95\95ãqàÑ\1dOî¯ÌIÕs\8eN\8eQ»tË´¬\19\ 3Vó\97Å\96÷(¯io?Ö㩳\83Åæ<*:·ú\91\87pòK}ßù¾'2.ï¡B}+\ 1 ëI^\ 6$n\88\84óY!d!d\80á\9e5p^ljLt¬(£Q7ÔNKªÆw-¨Þ\1eI\re\9f_Të 6\81\99¤Ùkr(v1íí\9f0^°E9\89X$Y«á\84z:Aú~iÇ\15Ù÷¼å\ 3\86V\8a±\92æîöVÖÐ\0[\13ÂCÐ\89Ç.
-<þ\9d\9c6Q\ 1ÍX7Ui:?c\13eØzögÃÖÓÄ\97ô¨V¥ÄWØÖ\ 3hÛ\ 6SëF³\13I;±\11h§q¸6K\97ÏÔ\91Æ\95\v¦2¶za_\1e;¢QE6;HÉ\91Ü×Wß\98h4Óð
-\f¸´¶À¤]\13Ö\a\1d#Ò\9c\bëY\a£\11úg\9a\13[\1d\16íõ\8aÔ!Û1À\88k\v~º\f(ë\170\9cÌ\1eü\f\98\10\87QiÁ.Ö>\82\e1Ëõä5\99
-nÐl\9a0ÆMø%©Kg2¤I»Ø$Æ«\83\87°\ 6]zÔQع.i\88\91¾Ørh%Á\83\80\91õ`¨\8e\ 5\14øõQÌ|\7fDE¿ë¡ë\83Ì\r^\8e\rϬÎ,®\88ùÔ\ 3\96±[\91©¼rx»g¼¿¬ÀÉTÏ2¾=2³ÚIí½\ 4¼geä#Ç'\ 1³\8c6dÚ\99·\ 1t¤Ì¶P\1d\ 3ü°\146ÜzØG&\18p/i\82X2\0í{\1ae,½\90\vº!\9fs\83¯\8b\0w¥¢\15¦G\9a\0*\ f\80ë\94ê$úƦölÎàgÛf-TW6ðmÍh\fªü*øÔ\b\0X6\84µ\95¿£ep\872\0èp~\9bãÖ¡_ã\9doµõ¤?aÿáå{ÂÝ Ì\16m¯òí\8d\13{@\ f·1¡ö\14ø/[¼f\91£\16õYwÙãN%ÃÚi-\9e\99\ 40\86O·\9a$\9aS4\96\1au\9f\rJ¿î«\18*j\rí·¡\ f\ 1\94³\87¡\88QÑ\8c\88\9d!ÝQÝÊ\10û¨I\90£|F\ f®Ú$C®£\1e\ 5õÊ\f\ 5fk4´]¯&vÔ\ 43µ«
-jÑ\8cÄOð³ie¾^µ\89ëU\8f¼õf\ 4ö¸|\90éÍjbcÊ\11ÕÃlýd_ßÎQ\83Â\ 1gƲÚ8Ñê¶EÝ6·oÚÓÏb\vg²\18]»Un\96\8ex+³I\ fèþ\87ö\86Üíc`a7-·þ\8c\19b9÷\b2E\86uàjH^¯&Ôý= jWÀøÎ?ö\87Þ8Î\8d¤A\1fô¹\1afe\ 1Ìþ \80{à¬Fm\9aþÉEdSF\a\98«®\93á:MBõ\84\8d2¢{ÞËö\89sTb0\16´ñ\1aºÉ\vfZü41S£\97ÀL\85¯&¦ÿüÖaf«\16lÕ\17o nÚi̤\ fÕ0ýr\1dÄÌÛr\a3\8e-\1e¸O©oÍjh\e\ f=a\81\96\ eÊwj\941\14Ñ¡%w]âÕ=óÒð`¾rK»îÎ-o\fN\vCN\ fÐÓ\ 4\8f¥Kë\11g\80\ 6\fô\13üií\10ãÕÂè\8e0ÖE\13\ feb\13JÙ¦º\17\7fƺl\9e-´µgi\ 2{\1a\94ulj_"+\14©\ 1ôÁÏ\1coöá\83:\80â:Bý\85Ç\Ñ\12àñUÄÂ\ 1C\85=ÓQÝÓh\15]+·IÒÔsM¯<\10ðÒ «\91\8e\rV\91 \0º\8f2ä\9còêiÍ¢\80D5@Yn\12á\91LÕun8o\ e:\96\88&ÃT\f1@=\ 34\95AèÐÃøù\1f\1ahÚ\9c$!W%Y<7\1dªØÐÚ/\ex² °$ÈH\8f0Ø,p\17\87£\ f\96Îë\8eüè\15¥%¼DÏ\ 1¶ÖÊ\19J\82eÎ\89\ fù\13¼g\ 6÷Ü\17úeÍØ\9dcÉÄè\1evÖ\9dn\r\94¸§7 &ì\86\94Å\9e\8el\88 ¾\8d\1f\8f\81\9d\81-8¡*Û~sá&פ)\9d§e»Kº´Ð\82GÕñk\ 3c\rWæGMD¬&Èd3EÞQÄ°\ 2@ýH`°.\83õ\ 4\12} ñ\ 5\11í_ï5\ e×{£uYÜ\1amj¿\7f\0Ö>$bD\88\1c\89\ 4\8eÚ®\87\aex°{%hXY\1c»\1eÛáQ15¸×õO¶>\81Ø\1a\1cÐe\10\0?¯§78\16\86ð\97a\bÖ§1I\97\9d\86\1d}<Ââz¼\0\9a\ 3\9b«¸b$XêBÞ\85WTø\eª\0JØ\9b\16\9a\1c\96þ¢¿c¬\89í¬ Zf<F[í«¸\b¤Ì\91ºÒ\ 1\94lOñ\8b`3\95\ai\14ôØ( æe8û\f\12¾ÙHà\15"G\95òh$\84mFNIòÁ\15\ 5vë\1d\ 5°7+¶_\8cNJ\91FBÈ»Ú^\91`àÕ 6ßåi\1a(#6£)aP À¥\90\108_©ÿ\82Ý\91\80ÙOm\8d\1c:\byKg\84\ 2(óGõ¹\e\12Ò]\8bò§~E\82Å,J\a\8c\87\9eÆ¢\97da\91MHL\ 3\f\8dñ\9b ½\8b\1cj|\89\16\99Ó\11¯}¸×y\17î\85p\13èd7yÃ`æå¡ d\v{g\18u¯\95a3×¹`ôJ¹³A\9a<gÃë4Ͷô\92¦\18n\14lB&*¡õÅÌ\e\ 6\1a\84\ 2g\ fcèÿ¼7ak¯I7»\89}\8cxÚ\aaT22?ÔFHÔÄI\99JG\8d·Sq\fí£íÀ\ 2\95\8a\1eôÌ{É\1fÒ(pz\ eCçþöM\1a\ 3B\8bî]\1aËÛ-/5ñÐ@/L¼KcÚ\85î]\1a#¶úwX/iÊ\eMB\r(p\ e&ØM<\f£çú-*¯4f\9a\a¬ïÌ\ 6T\8fÅ\97+\92\93\9f7Q×\19ßé\ 3\89\v"Söl¤ævÁ\15\7f')°¿<\19ÆÞû\16a\93iu\18J}ï\f\ 3\bÆüµ!´2\18Ë\95p/\9cyò½>\84*ÔÓ\1dù\18´\92·&Òö³¥îg51êá²÷\0fGæ÷b47\1a\9f`âI\1fö$\8b¤8ÜR.&Æj\97ù=nI\8eÍ\ 1˳ \95Ü\87ÆÎ\18\7f\81\vÉÉRt9\ eeBì\9féb\98ý³\\8f U\ 1Ùÿ\90<\89ì5\f\87A½u\9b±±=\1e2ö\9bñË0\95\8fu³\1e\15£ì9ÂWc\14Tÿa÷ä\9a,\91Í\f@ù·&Ë«&þoM\96è\ 1ÒÄÿ¥É\12\19,\15ø?6Y2<ù\1f\9b,\8dÐ\1c\biì\9f\9a,Q{,\8dïß\98,á\98¡åêß\9a,\91\99\12ÒØ?5Y¢\a`½ü[\93%ããûÇ&Kd°¤ó,$L\96\90!qy\96\966n\19"nTÑJ\7f]R¥\1d\83ÅæÊ\88^\ 1K¡w\ 2hQZàzQ\964ôb t\96\13\831À©\10Ke\16\9aîGf\v°\ 4Âð§×\b¤\86\1fhnI\9bn\8c°\ 3¾hÀÅ\9c¶ '0´YPØ\12-)ÁÀ¤´U$\ 4-\8d2Þb·H2ÍõAN\87ì\96Pð\1dÜ\f~\ 6\9aá\0\85kt»\87b{ÐÝ:ÒorÖ»U\90ÃÑò\ 4á\18å u-Ç6ä\ 1u\ 6z\çEÈ\84\f7s(\1cx'bDV?èófæ\ 5\ eÈL33\9a÷í½V\86\8f1@§T÷4\ 1XNUî¤Û»3³«ûîô¿A\85ËE\92\1f.\ føc\ÖÓcñ¸\9c/·\1f&\85Oa\8ddH²¾\9dì\92Çé´6ý¿çøn|ÙL·ç\ fï\875R\8de2nG|:ÞM¦\1f&Ú\9dâb\19IèõÎ\10¸MÌzí\83\19\87ÑøÌ\93Z¥U\95À0>#ZAÖº@\86\11í¾v\80\96m \8cBs5\8e\99ú\936f¢\92UL\97>\99àÏ\16mG¡í\9c\82\8eVÄ\96\fªøô\18½$\8c\85üW<\97Áª<÷£gPK\ 5\14xâ+:\84§¹ß\9a\8e|çâßÉF5l=\13;´[3þMN4\ 1Ë\v.à4?\1e©³\ 6Óû?íÐ\18ß\80vx ,`ê¸Û\8a\99ôá0c¢/+?áø>á\83\10f\8eØ&\98©ÐLc\86\83ê\b\8dìn6¯ÐPFfÍÝwÙd¿\7f¥ÉÒîî\1aª\ 2¹n>\87K¦q`\18&X\7fèëÛê³¢\9fPaÖ1W?SxÎX\9aÞ`ÙÆzôÓ«\83$\98¦I\10\ 6\9bçíL\13³º÷|]Ê\19â¾µ³\19ù«r\ 2\92\12\14¸¨\9cp\7f`Sûæ\91ë\83"\8bü\19V\95
-Ü÷ò\1e\er*fb9 zlØÐ\1c\ f$&\ 3`2\1d#m\98ï\9e~.h}¡\9f/É HJ@\8aõ¿\94\13Ю®Àÿ±\9cÀJ\9aù\87r\ 2â\94
-ü\1fË HJ¸;9ÿ\91\9c\80¤\ 4Æ9ðïä\ 4$%°ÖË¿\91\13Ðn¤Àÿ\9dkóîØ\ 4Üò\9f¹6ï\8eÍ["ã?pmÞ\1d\9b\90[þ+×æ\9dµÒ|ì߸6ï\8eM\94\ 2ÂsmÒb\8c\89\11Næv\88±O\vý\13\1a|âYÿ\8e\0í\14 \9ay²8vªN¡\89\0\7f\8c¬,\9f[Xë=f\150söî{ÖyiÈôÏ\87\fªëò\81{\17«\15ä\a\fX\7f\8c¬p0bªtX9ÎDG\1aÚ\95ËWgâÑøè\8d\fU\8d7Ç\18\91é\98,Ü\ 6\16Ázß\90@^\1f:\80®.à6U±Ý¦ßT\96ç6%\12þbBÊïza5\0Ö\8b&I³Q\ 4\84ô«ø\ 2åsÓ'\ 5\8fï\ 5ÔmJ\eá\95åvÏz»\aHÀT\85ü@w¤ù\14\90\14¾ï«\89Iÿ\92ö\85IyÂt\9b\9b;°+æ\11m)p \9f(\mÏ\7fâ\96\1et\821\83±W|¢¼ÃXi\14´\8f¶\11«ÄÂ\r\ 5úØ÷¤\87Pp5©²\91\80\ e\ f\15ö\89Êò\88BþóÔ9 e1\83\fÀÂ\ 6Ê\ 46ve»\85-Æ÷ܨô¸°G\94å\16\96ò\8dÃ\82\8co8ׯ%é\9eS£T\1f:\aé>Ð\85#$\87Ñ?¾\17#\90\1a\9dPxþ;ÃX\88Ïƽ\ fÒ«²#îç\97EÓ¥þáÆ-yMÈÅDizz:\f\83ú\1a¢K»ýc\87\1d§\89\1d&<\f¹¨,\1d\95×\ 6Z\e\1act\13DºÐ\1a³ßlunôÛbM<\91즹1å¥ÍÛ4\86Ê\1d¿CcÓ3\8bÆ~×Ä\1a{\9bÆ\1aÛ7i¬µ\13£1ÙM\8c\8eÏ ä\9bCc\ fÃX\9cßCeiu¹7À¦1ùM´ú2\96+«\ 10\96\87&FOxßÓ>Lù¨¼bLöl´\16ÏWüC\1f8\87\96\ 5[«7g£µ½\b¡\12\8cEþ0\8erÖ\86P\1fnG
-µ.Ê÷ÖÆ·Jõ|G¦N\9d{\13\98¶±¨²\9b\18\8dÞÚ\ 3à\8e<\9a\1e\9eaâI\1f\16"ëóÚ\azíKab´:½G\11£í\9d[>Ý\89\84÷¡Ñá"£\ f\92ÜrtÁØ?Ç*%ç§FuÕÓÓ´Ñ\eZø<,%\×6Ø¡¡µ 5ñÃ>\ f-\93EZ\12FfÀ«1» ÕB'ÏÎDLÏa7\92Lï¶7\96ù{¨Þth\83\886Ðr0áÆðä^d:3_]\9b\9d\13üyóÖAÕ\9b¹ÒÑv\91éi\85L\96\ 6ÆFI*M´\9b\80þ\19³Xh\ fÁõ3+Ë\95Úa«¸A»\8ee·\9cètÞë\ 3¯\81¥F'z^ÿõAØÄ2N²\8c?Á¤\85c·ì^zá»7\80e·äjØHIcCN\85\8d,»%\vr*ifÛ-\ 1
-ë\80æSù«\81
-¨Ùжhd\8c\89w\rûn.+Å\8cÈüÈØ
-J\19óU·½\18\18å±\94· WP\89&X\11¥
-\ 1Õ\ 6\92ñ4\94\9at³¶PmK[\96)½Ú¢gÌn\f\9aI#ÛÞÚ*ZD\r^´EQØäÅ7\89ÜM^\8aõ%\13\1as°\84T\8buâÞ¢³\1eðÆ"u\8do\10[¸rûH-²ý¢\r\9aѶ¡GÓ¯~Ü\^í'5\e".z^\ 6ìù\1dåM,»%m\99\eUh?><\80BO_\r\95\rÚ\8c P^5ÐWÑo[\1aZ{ZÈp\84®ÐÄ"'çÜAÛ(iK÷ªn\81Nlòæ\943ß\f]f¶u{5¤XæI\96]}5·_Í\ß\ eÖXF¶P=\99\96¶ ?Z\84á \ 2ô\1f¾EØϦÅsÛJ§LAz\8b\18è«D'k¤¯Xý>Ïmè\1e\15m\19\13¼Þ8¿7éu|\86\9fja\7f¨i¿z-»\ eÀKÊ×\84\ 6\9bf\89k\90Y\83v«Ý,ôÈ^wå\12Ù\r³\90À\fÓf®¡2\8bfÈx}¥q\80î\ 1\väS:\16\9fºc¬ÃØæ\1c¤\8eöeÂRl\9cÐ\8bª\9dq\9exu\87«ó$lF\85ö kåÛ\1845\8eW\83\9fËO\9bÃfuo\9b{\0Ûíh\9bY/Üaøæí\ f|\0\835 ³0§g\apxÎÐZ\99cÇM\98òFh5É1>F\184§À\19Ë\1dàil\87\8bgµ¦\87¼À\fH\a\8cÃ2¯´PqsÛ\88øØÝzÈøt\ 1\v£½*Ðø\f)\19r/ÆO
-c2\90áÐ\99¿·M\eò`Ì\94\99±1Gþ7¨ð\ 1dgH²\9fØNØÞJ\ 5\8e\83;Õéù²\87/8úÑé|¹Í\ fÿ3=*È\ fú\1f\ 1þÁ¿.Ï\aI¹?(\87\ 3üpÀ»ù\91B\87Þý õ\1fù\ 2ï[#Çs|9>/wÛáñ?\1f^p\8bü°Fw»õ\87.\92©&¿>\12ÿw¿;\9e?èÏj»\8fXµª\87.RÉ÷\1aËÓr´\9erÞ·6\vùz&þáý ûÐ\a}ðÁ¯I¢\ fz\ 1\1eÑï\81\91÷\15ÄG\ 4üoþ\ fk\90¥õp<\ 5ãO.×ÓÚ\7föSï\a©hÓ£5\93\1ff7åvZì¤óÃmsx,nÒîè~¸Ü\1eû\87ÛIR\1f\1eÒe·\10N\87ýÃC¹=\16Âæ >ìà\1f¡ÐYë§éñd]Xã`Ë=ïöÖêjøÿþ?ÇÍðÿ\8c\96ëÉ\aE\90v3I\98IÛÇjmù (\vIZ\1c\ eË~;×\ f@w2Ûñú2\99Â^y\85\9a\92Ó\90â\7féq\82©¥GéùÐé?\9a_\8a\vúG|\14\15\ 43±\0)ÿ\ 1?²àâ\aÜú\9f\ f\92ø(|´»ÄÇ\ 4\10@³¢0Û\1c¤ÅFx\0J(\17a¡\9cNçÇ\ 6Þ¥,v\87ÇÁº\vîÙ,¤Ëi\ 3÷\9c\1e\vårzè{\14¼ \9cn\8bÍ\ eÐ4V \9b6»Ë\ 5ïº@\9fm®\ fÔ ÇãrÂ{N\8bÃN9>\10h\97\83¤oQ\1eæ[0J\97\9dbn:\6ú=;áv1÷ì\84\8b¾G9(Ö-ô1\ 1æÊãä¼h÷Xl\1e\97\87î\fe#=Ì=·\87¢»M\916\ fú\1aÝ%ÝÌøH·û\83n\91r¹\19<Øi<\0ÐnÂÆÂML\10\8fyEt\ 4°¬«o·ÃÍtò1?\ e'K\18C@¹ô\80\b\ 1\81\11\ 4\ 5é\11\90¢Ãcs~¸,v\eáv²\16%ü\e\9d+\0\9e\N;\9c\r@«v;è\8eËâ±»Üà\ ea±»ÀG$\1c\95Ëâ"=\bM\10±6ûGs£°Û\\16Ò\ 3gÒ\ 5æ\a ÇE
-~írÛ-\1e\12,\0\17á\ 6sê\ 6\93\16\1dÿ\1apT>`øÐc\aß\0\18`î=`ü\0ð\fPm4ª0\0r¶¸\b\17áp}\10\16°4I»\13\8\\ 4\ 5z\ 5îx\9c¤\13à\10\12¦\1d\0x¼h\ e!g`\býF1\ e\80ø\r=å$isßoÒ·\b\9a^<\16\8fÓs%6·ÝEÏ-A\805ÀÌ8å±±n2D@¸\1fï] ãþ1\L6Þ×6À\89\bfA\0Ð\14ýµÓãq]×\r J\ 6´ãºH\1c¤\83¡J\9b\87r²\87Â\1fqL\91\ 4ô\18çà\ 2 ßM8è5Ï¿\99§oÚ)\ fû.Ý'\ 6kà\9eÇÍÜs\13$\83I4Ù×QR42\9d\0\v\14E\8fÒIÙéõh'\b\86\8b8\0É1l\ 4\86å0\1fÛ);³\1e\ 1¯vÐlÄI\92\f\82\1d\94ë\ 1Áè^\8c\9eZ·\83a`\ eÀ\15\98©¥hü\82¥n·»®÷<ö++\0Ýa>\ 6\ 3¤èN\82)qÒoº]ô×lLpQ\16\13ÆãLa¨+êÂ;¨Î\f \80 ì\ eý\87µz>.·ó\ f]4\1a\19\83=¼²;\ fá»\9c½\ eÐóDá¼ñ|\ 2Ì(äù\f?·\83%h\87,\97rS41"B§\0\12\9cnÖ]p\ f°i\97ÍAß#m.\84\ e°ï!dQn0¡\80_#Æè°¸\9dN\8a¾ 0í¦×<\98(Hn.°A\92.'}ÏáF\rº\0ýÚ\1dnúk\97ÅéF3\ 6ÐARÌ\8bN\a\85\88ß\ e8\f\9aEx\8fD\9b\86\v\10\88\9b n\1f\83ÕAß\ 5»´ã
-\ 6Î\98\8bbè\90s\8b\ 4¬\99ù\94¹\aÈÕá¢\98×<n\92¾G:Ü®+\\eCQN\a«Ó\ eûm¯\83ì ÝóPÌNâAc\82÷ìÎÿ\8f½7ﶫ*¾@?\ 1ß\ 1\e\1a\ 5Âê\e\1aIr\93\80\10Q~DDE\11.Di¢ 0Þxÿ¼ÏþÖ¬\9as\9dsî\rJ\17ò\ fÃ!\ 3êî}öÞ«©UͬY\81²<×ûñî827r\9bÕ®\öFN:íJê®újiåHfw\97¥k{?½²\±ñÂNή6\97²\98ÜF!GÞº¶\8céWH[ö\8fÎ\98zm®=õþ3ø¼¥^³î®5%n¸\90ueëÅek¦&eU\a`\1cÝ\97ý\92Æ\11\13\ fÀè\1f\9d\96V\18:\14\93\1d\9fKV\8a\ 6<åÆg\87µ]}¢\97tD,\89¼\86>\14Þ\9d\93}vÆûÚZ\S½\8e*»\19Â\9c:\97DÇ\1cA\16»).¬\9c¥^\Vcä\1a«1%=:Ä\9c|5\86\9amÐÂ\95\19&e9Ôä/\9e\93Y\17\92\9dûÎjcÎÓ+ó:Ü}íy\e\93óµvD¥¬·å \157\8b°\13B\8b¦t1Àn\ 4=Scáo¶R¹¹Öÿ\v'Â\16é\12u\18®\9cÅ\9c|\84Ö¹Ü\aç!O\1fݵtg´%\ 5«*ØKBóõ=\ f9ÆêÒÒjÖ\98÷è²îFÐA6Ö|õT÷Dt\9bï¥)j3\1d\89á-ó\82깤¤Îþ«±\14`
-Ö\13c \9b:\87x?c©.{϶ÏÚG\18\88\88U\887X¶Ä:z ×s\86V2\ 3·Ñ⤱Ô*Îô\8e\93¦c\96îww_Ó\92˲TúÒ\86kÕ¯i5céÛ=øú×\7fpÎ\r
-\18S>Öô,ûê\ 1\19K'\9aiíõâ§È²\11©^(5Y\89\92uÐ\¶NRjÅØÇ^ëfÀ¸þ\9c\85»b.OÇ\95ÓÌ~Ðæ+k\18\8boûå)¸É\83%Ó¤^ZÖ¤º\83"ZzÊe9×}\16\ 4·Î¡JRÐéR\8a¯Ë¥\ 3¹õBqÙñ\167Ù\99oñ5\ 1éôÊe$§(\996è¬Ù\1f1\87î]\1f32·òÚ\eüÀ\99]e´u¨ÍrúÑ\rþèÔÝk\7f\r?eS\89I\1fh6\15ö·éÇ#\99v#?:/?Çwã2\9b2¿:&î¼P.îÅ°¿¸º#µ¯ZZ¥Úy\ 3à ùoaòLÿà÷×£üÞµtì¸Y¯\82\8dêÇa°{a+¤ÈC<'{*l\ 5, 3?8K§PBʧ\17®\ 1Þg¶d~Þó^ ײ\99\93ç½kv3î&m\80Dge=lJ\ fÃà\8e\ï£D\9eØ©ÌÓÅ~i[\1clꣿÁîKÜ2\97¤·ýqk|ã\91Ôß\7fT\1eûÅ<'ó¬ü\ 4\84ó:iý/éÌ:åGקÎTxÊÓâÀ\1f\vwGk%êæQmQÀ\ 6j²ÇF1\93Õl%\8d\93d'c|\10¶\18ô\18[\ fvÐfMÐè~\0®I[Îá~o3\0Ýì\e\9cÞYl:`\1e¦Xôh7ò×´ôØuwK1ú*\8a9g\9f¢Pm\7f\f8c\16\920åc#\ e³v\9düû -¾Vq\16FZ"\87U®Óêx7\98\8c;iÆxze\1ek\9fvt£díÒ>ÜÒu~Ê|\v<Äíôõ»×³×;\r\9eÒ-MíÅ\92-L\82ý\1e¥}bt\87t-qj\9f4Ü\90h8\ 4ôÑyd\1a\bÉ´§É|¶`ZH\1f¥<e\8eç°í¹\943\r\9bÖz\95Öë4bZH[&Mh_Ç·\1e³òÊZe@{"e\b¯]и&;£5\98c=¹2Ãÿ\92ý4ºÔ^ÒÒk\93Ê+ã$¡ÂX/[|^º\ 5±°n»}\81Ï\8a\ e\8aÐ\ esµ\14ÁôM\13º\8cÁ\11\ 6mÓåÄVZ±¹U·\8b\97\ 5·¿ºû1cÁ\83N\v:Ø1î2\8eج´©gI[×3v°¤-§¬Yµ'\1fy¬øªN×$,§{Ï\96¯[¨º&\93q)ÛìzbZ\1e¸æ\¹¢Ãâ8ó\83}¹\b<Äs
-Ù÷\11\ fÜ#\1duI\9b\9d}\85\8eû\ 1=Þ\1c±<¹³i©äµõg*\a¡\89º©ó%I¾[÷Hâ\94[*ÕmØÊ3ÊlØnó°Ì³u\80u×=ky4\97-\1f)û\1eÌ\9d\ 60¶c¢\95^ÆäÍeøB[f£\9dö\10ñ \83c·þÈ\9bK2'\1dË9Ö¤§X\10dÒåtæ\8b2\8b¢éîà~Uäaæ¿h\91Ó%«Ñ\ 2¢\90ÕJ'8,Õsxñ\91µú,,\ 3£4ú\8a\1cKÏ6~uê\83kÊl\13Þ\1dèc.\87×\ fß\8cøídD(qÄ×±\9eB9\92ÙÝK\97\98ñv|åZ\91îªá¤í\16CÎØä\8dÏ6÷Ýî\86e2hlö>\87_ɹ\81Ï;Ì\82\81¬FîÍ\10õì\83ǼvXï¼R\1eóòy+ïÅ\1ewC³s×ØúÉ4T\97ïÛüÊÐæ\90Ì\82Vkå1~\ 2Ù\8c\1en^ËÖ\fxúÁ~¦¬\8dá\81=\v"ÛH$¼\97\ 2\19¡ÐÓZÒP+g¶ÄlW.Ý\95&e\16Ìõë,hµ\96J\9c®\ 4ß8Rµ\87i\91\9fõè>\m\16\1c¥Ü2ëÜ\9aG²sß[\95\8f>¾Ò\ e,\97íIÈ}ß]Ç\1e4ù¶\8d\9f`2÷jÖVjÍ\97OÚ¦ïXFr\88zv`èa©¹d\9f½\ 6ríÒFYõ-\121\99<rÓ²0ün\v;óJ\1a\ 1k,tÌ\rî]\1f4ÿ\9auèÈÓ_Ã;\86\1dÏëp_®ñÐ\95\93\ 6H(f\80Ø\84\99\99³de\84=aëH\8bT6Ù\ 3\1cË.+\9eh©\vÊì\7fúÅËÄ\ eõ\82c\ú²\1eïï\18Wú§\19ö%<Ì\84ù\83\87¹\8c)û¢¥\bº\1f9Ë~_g¯;Æ\18mèÓ5| ÿÚï{w_\aÀ:\91ò£=\86\88,HÜ\8eñ·xðõ¯ÿà\9cpòØè.%0ë\83ò\8bO\14\98iõ{®ÀF\1cãHj²e\16Q\81--1}\9dOø³T\9e)iG\94\14\99D³\10´É\86¯¡¦\80\17d=f*\f\8b\8c\9f¹\1añð¶G¿ç^\95Eª¥\rsWÇÐ\ 4|t²äXõ\13§7\8bâbQ\ 6¹ÀÙüù\13=`²3ß\8b-õÓ\va\97fZ\92®¿Mk3d\7fä\17ã\ 3³+¦µdf«'óÔÀ\9aáî\8fÎmjË\8e¼?z¹!\94.\a\81\1f]³{Ú\ 36e<ýh¤\ 3¢¿8ôdç\9e¥\97¹>:\ 5ƨhõ\1dïD\13ñ\9b9\12G\17&¤h\18\1eg\\ 3GCÈ\f\84\8d¢×^&Õ\1ct\98sk\8cè,\97\8a¦\85\8eüeåW\1a\16ypÀ\8e\1dæ\10Ýþ=\Y<\8fy"£qÀ»cñ\ 1\8bHÏÈ\80i\85Ç»\1f1v\90Ó1\85;ª5¶VðdèÚ-a\88b(õtÉ_Ú\1c\aï\18\7f\8bS6""0÷î+½í\8f[\9b}\1cIÝî\b\95é-\9f{³Yl <Ì4\93>utF\94\7C¤\8cÞ2«h\ 4-Wjh<ò¾µÉ5fZ\r¢Vh-Í.\vªµº\87\98 à\13éôãÁ~P±\8b Óoý\8aæ,Õ}s/=ÊFt£cÉ\86NJ¦°ì!
-ä\96pød\ 6z:\f\16˧¬¡\8d\16 7÷Ô2àn*%\9d7{U"Î\18h\ 6×`\9b §oìÜ\10ÕLß\93\ra¢3?R«\87º\ f\17®]×\86¼åTµ;\99ï\1cv@UíÄ1\14AblxɪGø\at3þ
-\99\86\a\1fHS\ 2j.&îxOÐÚ\11O«j\99\r¹\f\1a\ 3Ì-¬%\915_Q\9e\10¤Á¢R\19\e8Я¦ÿf®Dd¼mi*©¯ÈôâZ\84ÜO\b¼'zÛ\8e/°ëÊv\83qêkÄS \9a¬¥Ò\82Zþ\ 2Õi-]Ô»&ã\8b§0ëÉ\95Pi-\94\8b²^"\835\15\e\98C¾\14\ f\17´m\14\9b\850©\1cÒ4§\ 5óås¸\8e\90Ñ¥9\97¿\9aóÎeoS«nG8Pi\ f\ f\16B\96ãÖ\9dîF\9a4íñ [Th62Æ`2fd!Í\85W¶ ;=ÅÄ\8d\9dã \8c\8e_#pGÓUÌø\82ª«\93\9baí\1f\1eÆÝ\f\v;\8amÖ=«\96û\85³
-ÞqóuVèQ\1fë¨KÚìì+tÜ\83ô\8e\7fyÁA\ e\8fþ\1d3\87É\ eÜ\939\15Ç?¤u\88¥<\8f¤&\8b}GÊ,¼\ 2\19\ f\1fÈ¢LÚå÷÷Îß\8cÑ\17]÷$ªíÔ\12|÷vD$\95\17®q\9bÓ\96\1a0\95\17\9bY\0Iq
-\8bÝT\8b9$ \a
-\83\93#§ýì\98\93\80\0¾\12\13ò\92\93YMÆ\17SÔi@ѹ\ fF\1e)\9f^\18\18J\85l\94H\99;\8f\1eºÉîÿÄ){ÍÜ9[´q ÔÈàó´ðS\8eÝu¬¿8\ 6Òî®\1eò±O\ÿ\85¥\18\97ýX=@X×é`^M\Ç\èLã\ ft]\riW0°âËn»´ú\ 1\ré\w\99\14x¢Ì³béèèï\99Ç \82ëf\9fâ{Z/ãHfcd\ 1Ì\93\vm\88<GÑi\8ab(ËH;\eÑÜMú\1a\8dW¶Ù¹\86ÚÖ£vÌbÂ\14´t\91Ý\9b\19a=¹\8e¾\93ý\9c\856\12<ש{'-\95\84ðVSúÒ2«xðh\89>ãlMË"Íx$ÛëÂgq(\84²dað\94\18É×8ü\8eÀËÚÈM\ 3V\8aò©µ\98?¿d1\fÊòL\91Ã=æ\91\88kÊo9½0ÏÌw,\11\9b\17²µ\ fé\15\17¸>v÷zµ2\9a\1e\9d|¢ùkÃP\10\10$ú÷P\96½èÎ0\94\9aa`\14²dªv\ 4\9er¾¾#³:È9óf\8f<\98\89á ,\9b¸\81&Ô(\97tÏÙÒ\80n\17âÃýÔÊë 4¥\14\11l\ fÌܯeÆ\9f]\9eã\90b\88üÕ\10\8fD\x¹Ævr]\92+\85\r7=*\92ÝnsÃlMëaåunÍQÜ\83È4éñ\8a1åêK/6ÉìµÏ.\7fÉ\7fGÿ\ 5Ø3ËA:vÜqØC_ÜÇqo1û²ÄrBb\19PFÄ£\10Á3\9cæ2-\96\95g!\\0ZaïÑoo\16Ì\î3¢C÷¿¹\ 3î¹®Z^;\ eÍe\99\98×þ\9ezýk?uÙ\ 5°ÚíTAüðÔiÿý>Ⱦ/ß}\1f\ 5=¸\93sÏ\85\Ã\92Úb\9b̸,ÙÔ\9e/%ñnC·hÎ\ 3Ãu\9e^²}V;µ~²¸\144qÍE\81¹9·*¯Z\97\ 4¨¬Ãa\1d\99Õ\ f\82\9aL\87¬ëZ¸ä\ eâ'{bȬdmRÏò\9a¬]Tí\856ÜÚJM\9a½PAÒ\12ê\8a\17\9fªf\93I½n\1d®+¡\88\8b~ÏSøKVÆÐ/\16æÿ°o\92T_\r\85;1v\7f\e¤è»v6\953eg\9c>;./\\19R¿(ëãòÝ\0ô\ 4*:×P>§\99ÚÙ\ 1i'ÚÙD\9aæÖçÅ\v\8bÂ\86æ\16\99n\9e\93çLG¢ëÌ\95dcò{ébó\ 6m\8d¤À\8f\1e#qݸiiÑÅq¸9eå"
-\17g\1aM©y\ 3ç\9e*X\93\9dñ\10\8eýÂ\95P2YQHOdBg\86}]eF|\19X\84\11\19\120F7Ïül2ã.\16Êz\bôRw"\1fÆ\1dS}\99\ 6¡\99\8bµ_Øj\17÷ä!bp´\86ÊZ×ksÑbµDßAê+\9a\aå\96Ź\ f6Ê8\91y49ä}pg\13á\ 6¿Ý¼¿ã³\852\ ehnÊ~ëÊõo<õ³üÍ\84\óà\ 1V\1a³d8I\82\82\ 1Ë~ȾO\84\98,\84«Ýç»1&§\96l]¾\99Ôשð6wi\16xѤ6øÌuA\7fu÷ñ\9a\9fXðë\ 3\ 3\82ËÅ¥±}ø\1c³4\982\8eÉTM\1a:æ1ë#\17Ý}ØdæÕ®Çö\9cä`\98Ú±aÌS!\83Nh\ 1V¦{Ô\90\8eÈ£;xRÊdåâR¯T\860³,]v¸\ e\ 6ËTøcYÄ4Èé\96"²\10tnwD\14\18Ö\8fÓ¯¸2\r.ôÖ\86Ì¢Ò¥AB«Ú¡\99\1ah\1c]IÔ\ 6\8c9\8f\97Źõ\1cÞ¬\1eÖã6Übµâ\ 4(\e\ 55ÖÉ4.(%\13é£[i'\17¦ \§¥=¶cÃì\13&\92'×\1aÇØ+\rÉ:\12ÕH¡kB\ 5æÚÔsÕ&k[\17_\90Þö)¬£\1dKý\1c\89\8dJÑ\12Ô¶<S\12\18±\86}´Ô\18ò\91ÔÍ´9yÜ8Läô`2Ù\99ÔB¼p%\9c\90)8\85« x+]\ fiu\8f$]?HûV³]~Í\1cæ
-\9c\9c¦&Ó
-8ÜÍ+ש\17{Õë\18\92\16N\1a'¶»»G+ \13Q³¤yIéÐ)ij\9c\9bÞ»K\11,Ún¢\ 3\83\97ÅÐ6ÌÕG\1aO\8fÄ\85"Ö\96£Ö¹×\14@\ 3ôæ\16ØZ\7f!RSÌÚøå\8e\00ç\98á\17³¿\15Cu\95eÞRS½\8cÔÌE}tv\7f%u×L;W\95\e\15k)ø{.eJ×ÀuY¾bë<Q¦\ 3S!\v\8dé\8b\99ÚÖ$½ËÃv̬\9fqB\8aÔ\18å\96l\aÂdÚ\18¥\9d^\88\bÃäÍkyÐ\17v4ß~ñ³û~Îí¯\90>ð\bÐIô\aA\89j¡\80\81hÊ2¦1Ì\b}Wwê(5\99Û¢.³\88,\fYG\82\f\14j\99¯\84ã!\9a\955\90 0ý\ 1\99×R\fXzÍEne@3[Ôä\8c7\871%µíaFðL\17e\8e¦\91È\9e\f}]Oo\86SÚãijÖà\87\99A\ 3\83uãîu\1a°"eí¡\14-Â\84Ó L.\18Æ°q\80Õ̳ÞRÉöì±\832\91ù\8f¼\ eÀ¶+M²yÐk\9a\aAMaCCÖï¬\97ÍÇ×\ 1f\9f#\7fnfS<ÍrÏD\8bX:\ 577\ 4Ê\e³?\84)\98kU\9557£ÈdM*|²\98\ 1Â\11i9×a©\0{\8cO\fü\19³ÅOd\96Dµ»\ fRl\r\vCØ/*\91U\83\ 5± ëÉ`¬ûÑ\ eK\1ck\13D;Rð-<Â\8byCö\f$!B\ 29w=\99\1a\vk,\9b\91\rG+H¦5{iu\1fâ\v\98
-\16\a\ 1¬°T\89ü5´MØ6\93Ú<Ƹ\91hÓÌS$^¢ïòêÀk\9bɶ=\8cÊ\12%¬Êp\805\ 4ý¢ìÒõoMë·);\ 2\8dßü9\15\88qZ\11k¯u_ü\8eáØ2î»VF¹xå²Kuwõgg¯ëpYa\82\vÒ)Üà\1aç¤-:\18«óð\97ÉJå\99\16TQ\ 3i\18Lp¬}`W.û·+q5FçݱD\8eZÉ[a\14\ 6ÒÊ\95îYnK\12×x:\r\97&ì\7fA J\Ë÷bm@\83·t_\bÄ\88\82è\e\12aͺ\ 5s±\86¦\85 3jg\9a'ß³ÛÊ\16J©¨¨1\88>\f¼\99î\7f÷\1aU¸\81ãÑ\1ejuø1!\10ßæÁ׿þ\833
-ïX¬\19ÜÑ~ á\94\13%g\80ü{Ôr
-Ë\13¥\8fÍÝ2Á\97qXÈ\ 1UUDóW\84AÜP\80ª\99\81^ÅÒ©õôÊÉêÞ#\99\14\15ï\964£j7»®éÕÁ|\rÐýyQ]\98ì\8c\87aɧ\17Fj\1d\97E\1e\85\9e\86\82(ÓwYßÅ\ 4\11Ô\97\15 \9aÌa[£\bÕ\ 1ð©Ã9\910YV·î\9e\ eÒ\83´\85ÓMi2Ó\9bǧ¡\89Îü4Lî~\1f.\84F\9f\95(äµ::Ï8Ïê`G'æ¦ Ñ£G\91,e7]\93ÍRóÉ\14^\9eë\83\9f~¢§\f@uÏ¥\8eÛ=\82UA/ìà<Ñ\88\87!±\80}:\f \7f\13xC\8egu\10\11°ÌÉG ãÎp\999RTrIP´RÌ\1e\87¢! \ 6X\15?á\8f\15\8dÉÎ\;/\eæÂ\95ÀFfÚ\fÑ¡[\1d\80\8a®\9c\96Â\1eX¶=Éÿòøs\87\85ÞÆÅ\91¸0fîã\9f\8csTÌ\ 3ç\8d{¨\92\9a%R«
-a×i[Ýfé¥s£\19üÄæ\18Ñ\91B#¹Ø \8dyÏ\94!÷\96)£ÇlgÙ<Ü\1d'\ 3ÿ¬!1wª2\88ä§\91\9dA\eÞf9\11N\85avl\13¬ÍÈ¥\9d:\rG§ °]5$ÛEÎØ~=r¯-\8b¯=J\93urïÖfØÃ\93ýl²37ysöM°¯Df/ËÞõ\90\16L0/à\1cõ\80Nj\bÚy0¢z\11\91Ë\9a£\1a`Ïwj\17+tô¢\18æç!õ\ 46\8c#^V\ 2Ci,´=\92\1d«°c©\ 30üç\12\15à:Þ¤Ö\82ðO\96¾Ò[3"À\9a[\13 \8eì±+\7fFÙP\13\16Hq`Þ¼£\ 2Â\944ÔuʧËîÒ\ 2=»ï²=xx'KÝ`\164ÀÜÑ>\ 2_\18bZ\v\90¨\b\18K¹Ó¬\1a,\f·jÇJ»*\85!+\9c%ÅØo\81öW\8eE¶~å\18wËÂ3¾6\92Û@k$Fßà\v\e§\13ý`2~ªÃº\8f¯ÌG\90\9eæõ\¶ò\e³Û5iQ\1e*-PíÒääô ȸ\1dêvw¨
-ªN\96î@\9a\14+Èæº\9a\8cð1«ø\95=H8\10«=y·bC\9d\\1cöæ9\96Ói¸4ag÷\9dÆ\a\8dñßøþ\16¥j\r|À\ 3¦\19¢j\1eI\97\f\vzðà\eÓ\14\93Ñ\88x)Ét ¹¹\16(~P8®\ eûpÀ@*#)\\17¸¬W\ 6Ië¬ûæ¶7\ 6Q+í\10±A\85\9diþõ:m\ 4\82\ 2\96Ʀ?µ¤5\16I\13¯$à d1ócB\97\867\99Ý]\ 4,<º2\13!o§óp\8f
-Vhç~Î(\ 3³»Ó\ eÐ&bìLÖ\13ãÒ^ \89»\19\ 5.° éFfÀ4|M.W'=JÑ\ 1Cåúj\8dTVD4e\82&\1aRë\8aBÒGY2/°ë»d\ 5s\9d\ 4Õ2\19n®@T×zre\9d{+5\ 1ML¦\ 2\8aÞ\89ú>\91\86x¸»\rÙ¤Î-\ 1G·rÈ*>Õî\86\8eo²h-\96»DËrV:_\aéÍ:\8edvóZ)}KÍ\8eY¢µ¶8ý\ e6Ê\15\10Ø\r¶\82#h7\17\ 2c-:àÙ\9f\8a
-\©\1aO^án+Aö\89ÁoÛÝkIÍÈÔ\18¡lµ«Ú\16À<w\1e[<.Ï\8e,\83º¼çþW>»ÎRN\81èð\ 4 pî\9bÏ®®\89\80\8e\eæÎLÃ\93DÔ\91\98\12\ 3ûGóâ¥ä\15½æ\845Âûºaõ¬\8aöòÍk«í½nîÁÐb¥*¡ý-\1e{ýk?ÖHP\8a['\139¼ò ¨l\8e\17[M\ 4ÓB\9aT\rmR\97yµë\ 5\99ðKU®@EÙ\93\8aY¼¾\ 32\ 5ï\8bR#XWLnµ\1d\1e^BGÐY¾Ä\8c\87Úµ¦\91U\fÜÜ¡îJc%\1a!õò(I}ùí\84Î\91l/ÉÃÝ\b+íÇðJش̤öÞ©\9e\ 3Áá\88¹%\1a=\8dhYOÔ\ 4ú೨d*Ùáh*Û_ÇÜ\1f~t«ªg\87ÔÊ1í\ 4ÊJhz\9dË©"7Ù\99+r·i\8f¯\ 4ìDôAÝ«[ ܳÀ\99EÅ°kq:\89\96E¾«\1f"ÐÕ\99\8eF¨¦ª \8c\9bÂEÛ½jÀ½Oªè\1a3\8775\ 5\8cªéåSml²³G¨'\ f\ e\8d]Y\87\98\ 1,\8cfca²\16\8f´ñÙ#'R`uì\0\83l\88Jéh\95\9e®ñ#ú¢ã¿\ 5±\13ÔÁ2ª-õ_&\8c\rEá®\81ç¶\b"\18·º¾JL\1c\89XùS\19Q}G²ì¥ÂûîÉï÷j\0ȺÇ
-ìp´÷9\19Ñ\10\987ÅØgÃÃ\95¹e%\9bfæ\ 6òoðDU\8dZ\v\83\8c\a@\8c{\84\ 4\ etáa=<¨×àj«`£GÆâ!µè\84\1dÿ\86Ð\81¬yà\ 3s\14§L\82Ú\18«NØUÜ~{¹³Üq-CeÞ\83èTN¶\80ɸ\81\1c/rz¥\12y\81Ü\\90 È\1c<\ 1ÍÍëH^g\8c©²×\92,3÷\85±¡#\89\85à\8eÑQb\95\ 3L=/Él\87º\89Á(\1c~Îv\9ci\r\ 3<jß\8f@Ø[ððJË,Íö\9c¶Çã\8e\15\96ɤîJ=¾ò¶¯hB
-!\8d\96\9c\83ö5GÌ\12ÓɬY\9cÿ,èl\a |-L×2fê\17º7`àS\83Äá\aÛ\1cRcªÊ¯ \14ÙtvÙ\99È\1aãF63Æ\17a\9b.\14Í\96\96®I\8fwâíûîϯ\92þ\80eÂ@\9b%Á\ eÖ²s¥±¤mWàE\8b\12Ä,R8\11\b\98\8c \ 3@\1d#\13+HÈÖÁ\19Zf\9b%_\vBÞª\fp/vÉ\14,ªî\92ÚÝ\aT+v«¡\ 4\90¯\rñdý\86Iª*÷\17\98\89
-\83Y\e\9f5Ëô\87N\98¨W©ÚÑ\15Ú\86çPfwWÆ`\8e.,NXà[Ù\ 1z!»=ù\8c\97
-\13=\1d\ e®m$\10dVËâËÍ\1d\vÈj¡³azVw\17¹Ú~x\ 4\9c×\91\99\97ä\8cExoblA«Äì\1d¾:)\93\9a½B,¨¨ÇdÅÒÐ1¨zø(\ 3\11a\82ûû¬3Ê1I\90ÅÁ°(i\18bØðÎá<\90¼;4\ 5U\97Á2ýÑ\8a<!àfÉâ\bkg\´§//¾ÿeOÏ`¥b'ö4\18ôÊýíi:\ 5\80Ô¯÷\89KcZ¥t\0:É\12p9DVHÖéX^³§'¹ó:"}V7z¿\9b\97úEâ·GËù\8f$sú[<õú×\7fê²Èp\ 62`\97\1eTMçÉ\161\8e6(\86µ\1f¦\98Ë\9c¸\rK\97\9c\ frÓLV\99ÂJNRxæ\8b¼õ $®\9bgaî:\86\84¨Ëäò«nJ!\80Í\98k\8c\8c<\ezÒ#¶aî\82¬H'Î\96Z\12¸Ê,k.µàn\8eIíîH~\83\v²Ã\924Ù\99«4¯\9d<¾²°\16Ã\90FÉ5ÕR^N¡zòæY\15!PiÃÑ(0²:G\8d¼\89a31\1eò ¶»Ué\ e\93Ï·Xçqx<\ f\97&ì`\1a\1eþÖ\8c³\85\93yI\8a\ 3 ú2åq$u\rSö\95\9d»<:í\80\99\1faO\92
-X\83sÉÙ@-\873ï)æq\10\ 4\9e3^;\8er÷jF\1c\12\1e\9cF\11È\8e´K\96IÇc\ 1f(]\8erj\99Þ\91ó>a6il\9aYáZðx\86M¦õ1êÅ\vÃ\85[UÉzb»@Õ\ e%\9bJ±ó.L!\ 6¡\17g¥J\9e$¨\0¹\rAc¦-¹ª\89À5=\1dhÎD¯õ[\97y%²GNÇ~´X+\8a⻶^\14\8a5¤\97M47\14
-´2·cÝ \ fTáunæ\18TçìÜ\98K½â«¹|\8b\88Y\82q\eð\14tÄ\90ÝÍ\13=*\ 4\ 4UPt$\e\83ã\99ë\91Ã9\1d}Èê\11\91²ÖÝ¥\15zö\15ëö\a4\99À¬J:£ä\ 5vä\89\15\ fBRÙ]M\9bj\f\¢\1e=H\82ËYy\b \ 6ëV\11\96Z2\b\r\82.E\1ee\9f6\93 \91&éNó´\ 6ï\96\ 1°¡\17 \99-\9cÈå¸EÝ,hW\14inöÒ5\17"?~\9b¿(l\97ù(\142Í\84L\9a\17\88Ïq\88\82eH\9c\9b\ 3\ 3TÄÂa2{IøBåôÊ\82ºÕMKç\ 1Ç2÷uÉÝ\10Ü]&\89-,_ç:\142\9a.e\93\99\82ü¨ÐÆé3ÖMbÍ¢³æiP\135±@5/40\99Ê\a,\1d¬\9b·Ô)fLVUq¼l3~\8c\15"ø\81ÐX\0e/9¨ÀbuÚ¸yT\ eä\81k\f\1aí«c\véòZû\9f\16R\9cë\94?µ\90Ö¤µûWФæ\9eÏzs(\ f#\84\82"ÀI\13\87©oã'sÚV(÷1\15r\1cexìob×ßÿn\10h\eKà²Jº\9b7n$}«\a_ÿú\ f6\9eºa\11\951½^ø\81\11hk±Ãð ÷E\r»à\93R\9bõÙ\93Às%s ÷$
-.£¯;ã\8ac\1e\ 61¢Èm±\ 6\8d{|Ý\13%Kñh½ònIU\93iÔÍMì+3»'\1dÅ\ 5{l(\81§Ù}\96\83©\ 3YW\85<ch'+Ódô¹é\ 5\1d]\99D\84u8Î Jx*¸\9e²\9b\13\bC\94\87±\f9dËäo'\ 3yyÈO8¼\ fºÇªiîÝWzÛ\9fW¢è\1fXySÅ\8ef¿m°\eSάjIÎì}v¢²\rõ©\90\ 5ªm\aõ\94\ 5Þ(\15B²\0\85Ì_Ui;\94¶)%ÜMZèæ\18\ 2>©GÕPzÁ\9f±¢;B\1a\88N?-1~^\89\81I®40ð\95]¦Mvd]\8d4:¬2 Ä\8bóYE \86\99ßFÕáÊ\8d¸¡a\84¥T\ fÆ\12\r£2\104Þ\86Ѥ~v\9a\ eS\87^\19P6?®áýiÏ\95y\ 4TïÃÙy'yÇ]\15§|Qv¼ \88\9b\87v×q\11Fa4ÒèÅ\ÖÄBfÐ?=:*&Ø\1cÜ\89\8fád{A«iqB\ 6\92\ 3 yo*Ì\9eÃ\99òÃ\11Y\95\16Ú¥%yö\15\võÁ\996_ñ£Ç]FÞÿçk\9f}ônz÷þ}F\9e½þ\91ßõè³×Þ<ûõ¯G½ñáù¿>ø\10\7f,/ýóÉpõ¹ß>ùÞ\17^~ìÉëõ\17í\95§ËÍ+\7f|ê?ÏÝ\89åí_þûýùá_\9e{§ý1|~k<÷³çï>ÿ÷ߤ\17®þçÏ~\96o}üÂ\97å³\8foü'\7fð«Ûïܸò\7fw¿xêÖcïýêÆkW?þ[yû©\17nÝøàÞ|ñ\91Ç øýµ;o½Ô\9eúÏóO}òò;\9f߸vöÊ\1f>yæÚxÿ³¿?uý\97úSWÏ\9e¸{íµ?Üýk|ê\93\17ÛÕOþòá\7f\9eúÕ'ÿ~&¾üÙg/ǧoÿö\17ñé'Ï®\85g\9f~ñ\85øòÙÙÈO<þ·×ó_\1e\7f£=õÂ[\1fÜF¯¾·>x½|öÑ\8d;O½ôö\9fï\ûèo\7f\7f»¿~þù½³\8fÊówn¾ÿøù§\1fûòÉ\97n>þ¯·\7fùòõwÚß^~þìã\8fn¾\7fõç\7fÎ×ç/Þ\b¯þñ¹çâS\1f¼þ\87kÿ¸öäí\e¯½öB~öÎÓo½ùôO^ùÕ[z
-\7fûÅOn=9Û/n>óôÝrãúë_Äk\1f½w5ܸûÙ\95÷\9fúϯ¯>g\97ë\1f\1fþöƳ/þ2åó\7f=ùêµ\8f\1fûÕooݼñëwó\8få÷\9eýçãÏ={õÇÂc7î>våöõOÎþ\13½ÇU=<ÖþQnþî¹ÛëÉ¿ùÙÕçþså\8dë\9f¤\17\7fR¾ücú}ùUüðãkÿ¼õäç7®\yâï/>ùeúðúkçï¿üU÷Þºöæ\97W\1e\7fä±ë¯}¸Î\91¿ýû½\81Ǿ0ÞüüÞk×~÷Ò\9fÞ¸ÞúÝ×\7fÞ~ÿJãOüá\83¿Û%íWÏýöÝçþñâ\9f^¾úü\9d/~zíõ¿¿|ãäK?ø\a\ 6úìù\ fç¿\8bý\80ÏËíãWyñ\8b\9bùüñÛÿÊO\8c\8fûµþÁ§/^ÿû/>yåÂuxè\87üëS·_\®Ø\9da·\1d¿\97þ±Vò÷ý³/½õü\17¸îç×îÌ{W\8fÖ\18þôÂO¾ÆphÐ\9fûâƳï½þô_|ùx»qó/\1f<\1fÚÙ¿^ºô\87wÎ~sü\14ÝýþZ\18wÿÕ×öùÏÓWÿyöÆ\9f¯Ý¹ñ^\ÿyõñë\9f^ýô\8døÌÕ\92ím\9eûÇÛçÿ¸q÷\89'\9e¹ùþ\9d\9fÝYë÷\95xóé\7f½\9e¯¾ðRyìð\80=bþ\80w¯\ÿäùø$/:z½Ó?\9cÜ{?ù\89uîºõx»õ÷çþñþ³çg\1f<ñç\17ô\ 3\9füdíý\8b\7f\7f<¾vùwÞÿÅÕçÿrû_íOíã7¯\7fò\9bÿ{öòÛ|Õ%ë½\ eóbSöÉÇ×îüæêc×?}5\¹q÷Êß^>\99øÓ¿>óÎ\v\98ätõ\ fÏ\9c¥òö/\9eøÃ\85õ²\94Õè·~öÏß½ûÈc7\9f¨g\7füªû»«ÏßûäÍgÿñáç\8f»\12Ú;býÄÙ;íOo¼÷ʳ\ f>~mýã\ f\9f\84W\7f×kxí¹·_L翹ýi~ç£?ÜY
-®\94G\1e\8bÏ\ùåÙÚÓ\9fÿûæã\9f]}úÚÿÝùó§í\8b'ãk÷ûÙùé7ÞºöÙ+\1f¼ñß\7föäGÿ\9a\1fyìÚxú\8f?ÿê\9fýäÚÍ;×úü¿¿û%_>u÷\95ðêS_¼ðìoîÄ¿\85»ïÎߤ¿ýí/¯^ùä£w\7f\15^}ù÷×ïwÛZc_9\127>M?¹qw¾üûöÓ[ÿ<»öÚÛo¼söÑ\7fî^½ùÞ{O\¹ù§\ fÞ}5~ð\93[óƳïþö\89\9bï?ûç\9f߸ûæÝÏo|øù\9d\9b{:\7fjºæ\91ÇÚ\17·oÝ^kþµn;bïd×E§\7fÍ&»úÜ+_ÜzéöÝO/n{\1d`·¯ÞûÅÏnk²ç\87köß¿wõ\95uZ<6¯~òÖ\8dpíÍO\7fòï[7ç/>zö\1fÿúé\13\17¾ôZÿõ\9fÊ\8d»wþòÄ\97Þ~úw7\9f\9eõK_°7\9e©\1fÜ|êã\90oÜýË\9dxó\89§?xïê§\1f\96\97n\9eÿ¬=}<bk¶Þ=¿xÒ\1c¶áw8\87\1ey,\9f¿úþëk\ ej»q÷êG\7f»þÆ\9b/\8düÎëW\9e¼õÓßßË8¶ãÕ\7f¿\92\9f?zÑÇþöÙ\97áÕ\17ßj§çÂùõ7\1eÿIºõäÝ×Rþë\9fÿ±¶Â\9bo||ÿùówÖ·ü*þñCh¯\17¯¿ñØG¯¯ûÁ\9fn¾ûû_¿{IQ>õÅïô6ï=Û~ÿÛ?\7f|ãÃ\17þº\14êG¿ÿüƯï}üøÕ\8f\7fú§_µöÚ/oñ\ fo½õ¾=ù\91ÇüÙï>ÿÎSÏ}ô×W?¸þéc/Ý<,\ 1Wð\7fýàw?»úïóç\1e¿u£þ)ÑH \82ÿYû<¼ôkì\8d\97`\99<\aCåæ\85eqé\14{ ÿ8yÊsË9xðOù/ÿøéwzüw\1f±¯óø\a9/\87%ð\10fÿ\81-\81oô-ßz |O#ö?\1eÿÀçåþ\16ì\ f4û\ fb |óoù6Kàû\1c±¯~ü\ f5/÷ó7~ Ùÿ\9e\97À·\1c±o¸\ 4¾÷y¹ïã\7fÐ]ù\80\97Àÿü\96ïe |\97\11ûúKàÁÌËe\7fÿ\a\9cý\a¼\ 4¾Þ·|×%ð\9dGìk-\81\a8/\ f×\1a\7f`Kà\e|ËwX\ 2ßÏ\88ý¯%ð çåáZã\ fb |ÓoùvKà{\1c±ÿ²\ 4~\90yy¸Öø÷¼\ 4¾Õ·|ã%ð}\8fØý\97À\ f9/\ fÓ\1aÿþ\96À·\1f±o²\ 4\1eȼ\Z\ 2?ø®|\98Öø÷²\ 4¾ã\88}Í%ðàæå§\ fÝ\1e{¸ÑÑï¶\ 4¾\8f\11ûßKà\ 1ÏËO\1fº=öp££ßz |o#ö_\97À\ f1/?}èöØÃ\8d\8e~\9b%ðý\8eØW-\81\1fp^¾[¢è»\8fØÃ\8d\8e~Ã%ð\0æå>Kà\87Þ\95\ fr |\9doy¸Ñѯ¿\ 4\1eÔ¼\9c.\81\87¢\93\1fÐ\12øÚßò\90³Õ_g <ÐyÙKàá\9dÈßÿ\12øfßò\90³Õÿc <øyÁ\12xÈöØ÷º\ 4¾Å·<älõW/\81\1fl^\1e\18nèë~Ë÷µ\ 4¾í\88=älõ}\97À\ f»+\1fì\12ø\1aßò=,\81ï4b\ f9[}q ü\88\1eüAgÿk/\81\1fÑ\83\ ft^~D\ fþ\88\1eü\11=ø#zð¡ÍþW/\81\1fÑ\83?Ðì\7fÃ%ð#zðÁÌË\8fèÁ\879û\ fn ü\88\1eü¦KàGôàÃ\99ýÿµ\ 4~D\ fþ óò#zðGôà\8fèÁ¯óý?\9f¿ÿí\177\9fúeûôÚ\9d;\8f?uã×ïß{óåy§\8fÿïW`j1¢\95ôèï>}ïüÃ\ f\1e}û7¿{ôÆ{_¼wDãR\1eýÍe*\97¹ùê¾Ü]Í\1eýí# aÌÕ:Á¡\99t\9fØ¿\96\1cA\13\886I¥¢\1dÁÛï=\12ÃúágÒDÇÖ1Ä¡V¬;`\9aèÌ>ÉâT\8c\89j\820W- F4Êë\99\9dÕî\19o9ã\9cÀ\90\1e\b\1f\9dQ\a2±ÏWo\16\9e&ÈñÒîåjL\83&lj\9c×\8d\8aÙdUT¢=ÚËB\96G\92ÌïEÏ3}JI\93\ f\19¡\88ñ{\1açÑL$É5Yu.â4ÑÐ\97T\8aÞ¹\17"qèñBk,7bàÍ£9\9b¥K\eÙé¼s\8aËÔź\e;·ÉH\16½deøÍ`c*êha\8c~þ6\83¯c¨ü½\93è¦\8c\85ñÜG,×Nöòî,h\90±Õ\bfÈ^l\1a9+EÍ \8cl\18£hÀ\9bÑuÙ\90Eñ\ 1z/q\eÚ("û\9a\9cù\1aÒ\11#é\ 4\93u\ 6I³\88¯\13LYÝxø&\9aÒxó\92ä\9dKíÅëîƳi\12\97ÌzU\98¬Z7\15»n\96M¥ÖøæMdÄÖé˨\99Ö\95#\8bz©Tc\8dijã¦c*þdð)7r\81õèOFg!\9f\19PÌû\f¦M\97\18½\83\11\a|\rÀ\94tpÌ"ûSG¶\8e0YØ2öÇ\85Ôéí\9dôir²GÛÏîF§¼dm8á\14\9fÂE*Æ2tx\1cZ\91M½\8eûÐÚã÷\83°\13}w¸JK beL\93\8d\12s\13\95µ7\1d\87,mÒk£Û?÷»#iî\ e£\e6\19{ð\9eÞþæ>\9bè¨å}&lк\r\9aµèòO\ 4\v\9e1\88.Ù\1a*j\944ljZw¢4i\14[g ¨wå\91Õé°52þûï5\17áC8`3ÛÒ³FFýQ\8e¡)24º°-±>\83M Ð\99µ\1c65[zX3´ÎÁ®MßQ\82q\80b\b\8bw\81\1ek/:\9b#\98\bsScéèôÜc\88[\ f\8d¥\9b3ïuíoãÖõy6¡\9aHFgã[¢Öæ%Q¬\12ùÆ\80pw\ f\98ê\13«\969a\93ûµ£\1e\87{W-éºP\8dQ\9cStÉøñÖþGmæH\92·\16ßþb\bÕ§\96ªëv[\9fZ%Kâà\1fµ\17Ý\9cx\94\ 44vàSØ\89Ùz\r75\9d$¯9È\v\9d³Ù:×¹â\94Ô\eQæ"\82ÚâÄv\95}\9b\8c¸\1d]ëÏýnë\ 5àRïB\v\19;\¡U\88Sp×MoË\1dÀg{\ 3\11»{x\ fæu\0uí^ê\1fÈJàÝ©î\9b[Ízqï`pôâA½\8cñâC«¤£\9f\8d^|ó2'_«x\1d\17\ 4ïÛ\8bþ}ÞÕ×Ú\90rc\fëæË]ê=.Ñ¡pôÌåYª\13j\82Xx°í¹sýY;ÏYµ]Fdsc'À\83¬zk\89\91½\13\ eDÖ¯Ò\1e¼\8e\0?*°Ã£x*s±Sº5nɱyÁÑ\82¢6ãvµ\ 6¨Ýæ§U4wV»\91l\87][g*ûKW£f÷»Cõ®eƦÜ2\95\ 1É «\18ü¬}YP»º6ùhkLwæ7ÇfTÒ\90Nq)»Í\80N\1cä\9c]Gø\f|²µ¶¶''t\ 4ãc\9c\15ÜNRo'\ 2õ×6\ 3a£F\9c\89G\ 6úÛxß`h\92@"ÍÖ;Ejo\93I\1clsOÖh\93ú\98\80?y\ eÝ\9c8¥\93Ý=¬\97\1c;ÔO´\fåÍl\ 2 }U&\8fúê´ðx´÷~èF\8fI\99\91y\9e?BSaP/\1aß©\rÄ(\9d\1f]g'±'{\vÙ\81\91â\1e2ÿ0_x.qªl<%STZäE\ 5M©ÎüVîXH£,\8fµ³ù\90<\13í\8e4´3òÚIº\9bd²&Õ+z\7f\95\8b2)øÌÖ\97Î\96\1c«¤\91o\99Ú~ñÚÉ8Ê\16<&Ëuß}$\97/lûæ\\8e~P7;¯¹\8d\8f\1e\13¹\aA\96¬vîl\a\ 3Y\1cûnïZdã\1dDè\1f}eZ_â¤nqNÁéMÕ\8bf+8ï«ÍkÜ\8aÓI¾\87V\17Ôa.\17oFk\ 5\ ex¢Ò\ÿ.EÄ\95\ 3¥)ÊðÆóÊøôÕIP]k¡ »ZH¹=d,ùücIôS°Òµ\90G üéà\Ø\90yGq\1cêEÃe\9cµvó\90mhR}zêûí\1dþ¼óªO3º\\97ÈG÷äôæ\9d\94·ö}5Sx\93qÛkÜѦW²¦ÔiÈÅ£n\8e½òfo\16m²ê-õ 7GÃ\912\81Ú¤ªÅçÛÐ-Y\fææXS{Ú\16Öj¬Pê=\9eÐ$\8eî\12f>L6\8e\v4Ø\96j+\1a²(\17\ 3\86Wõù\8dÞ ÑÇÄ\99õ\e\9c¤Î\13Bkd k\ eº9êÂ2t\ eS\892kIå\ 6Zu>òd\1dÖ\9aÌÏá\rÆ×R¬\91ãÃ\86DxE·\ 4lkøÎ\80Ð9\961\vÖUÛ¿%ðÂî=^\96Ì4§Ïuß\1f½¼Nj\ e6Ü\84lJ]\ e?J0d©H\ 1£\9f\e\1fͶ`\90º\85c¿¨w\9ceËrâ·Ìæm\9a\8cJ[«\87]Z \8a}ßì§Àr\ 6êT\13\bo&a/D\8e`kPaF>æº4îÐ2#ç\7fÖ^¥k¸µ2ZÀP÷q~Ñ\ eCdËeú\8a\81Å\1eIøÜÐ{\8aO^¶\15¯\/ÖN\86\fW\8eBY\13\9d¶\89¸N\9c0Û¥öb\15\a\95ȸã°\85W\87¬\1e;V\86ß½¤¾xìÉæ\92-\91)ww^Ýr\81lHµÏì\94Ö ½%\93ÞÛ\99¼!+#È¡õó¬vu6·C)\fÝ\1dZ§C\9bëáʬã«oQ\94hÆýè¥Üùâ=Ú´¢ÙÔ\b<ð× â¯µù\ 4ûá\1c½ñ\e®ìCQ\89è\ 1\e4ý\1c\99FIñî¨k\1cGU\94ÃB2v÷tÂög<"b\86J\9db\83^f\13\99\9d[ØͯÐý\81&lC\ fW^ÈS\a¢ÉpOrï\1c;½ïË\10Ëâú\8eì#[Öó´1§âGl2\8buR\ 3£YÖ(\8a7+¬ÐÔÝ\ 4²¤\8eªÆ#o2ï\ 5å=\93zÚw§ÆßÌîØ@\16u¥ì!ô\87RcR\85\9a \8d\\8d \ fÈHÒe\9d\r\8b»õQò\81e¯ã^5Ö\8af\fÅ0°\92]¢u\84÷\r©äÖ6\8by9Æ{}\16_\9f\13Ív\93/\92\9eÔß\8dÖ\15Ö¬ïíî§Î¹ß\Ø3z²Õ\88É\18O8\91ùøOo\17Ì'³E%\9acÎÌ\85\9cÝøBg9.Ø\Åe?úáVv\88\98ò*\97LÍ(÷9\8b\ f)5êçö\17ó$Eg\96Òø\94\11DJ\9e\93\1d)\18®¨ëòòN·2\98\8dÎ\88·)\86l\86Ê+S2\9djÝ\14ù\8cÆ \11&j\ 6>Å\ fRh¡¬·æî¨h'£\81Y'Á\9ee\ 6ò\8eo¦ª·/ñðEP\Á~°r]\aùR}*ö\89ó\ 5v\80nÅWk Ѻ\861öÝ\16ÿpiåÞ\9b!IDË\ 3\8e©f~\99Ýû¬\v$b\9fd\9f7\19}f\18¥Q²®ë°ßöf\1e\1c\1eÙ\ 4»=2¬\1a?Ê¢\82-\90%F¶ZRØ\b\1e"\8f\8c|\85ÂÇ6Æ\96zó#\ 1½@\11¸²\9bËî\9a9\14\7f\85¬\89¦¾$?é\v{v\99L'4¼ÿÊv\96ÍÏ\16\84\9a²\1a)F\8f"X\88«°)ÞÚ¤®ô-\18Æ\86@Ô\1dmj]¡\89F\93\93Çh\11\14FÏEökïG2J
-µ\b\ 3²\90ñ¬\82¬6Ý«æUKê%ÍAÌúŤ¶Ýê\11Ô\97\96¤â\85´î»\9b\1ao3\ 2\81÷Þ½õÒÐ/fmi\vBÍÝceÇ/\9aZ³\97¨\1fäù¾Dp\86Îys\8a|ô\18ê¨é½\89mbØÝ;\1ciÅ1äÛ¡\1dîäÊ\vMÍþÆ\fM\v¯ÑuaôÄTeãgGuz\9c2-ÌÇIC{PAS?%Ñõ è½ãn\99\19äí¯s)lQo\8c\ 21 \ fÙ²øôàÚ\ 3w¿·<÷\1fäSÖÞ§QÖ\ 3»þZ c{á\81-!Ø\89Æ\12.\1e-Ê{Àp ¨5q×:1- N5´d\10 »ODnükò6M\83á_\8bõd4(-z#ïùYТ\86û¼»\97\878VRwó\8a^Ü;,§)ôÖª\16\ac\94f¸'粸{\18+%\83\90 \9fÁ}»j\b2î®\86¶§\11\8cÜ}\80Cö\ 6a\88¡jÕ\ få¿\ 6Î\ré\93èQ\91\ 1\8fGýÛC\r|oóô|\85zcbKñä,\8dà\1eÆÜ\86¬É\14ê.èr\96\8e¤\96ëÈA[Xù\81¡m\vË\ 2líîµÖC`O\11\1eâsÈ\886\93Ècô\97²~è\97c]U¬MᬻsÔò*îñLb£è|\85*-ìF'Ù\83©~0ð¸ÎÞ\93^gÒ\9c\fR\15ïó\83\1fd3©¬\83áò£Ï¼#\86%8¯ õEA\17\9f°\1c\8eõöÞPÞÚ\1cÁóZ[èQ\1cjc\99\99Èpº½çmûL\83zn\13¨\88XË\89£Åü\8d¹xC& Ç\9c\11\84(LÖõÆ\16o\1e[\9a4\ 1\ fq\17ö«_¢®h\8aìU»W\ eYRÏ7o\86\fo¼\8d\8b"Ë\99\9e?r"]«97¦M¹ú\1alF7~ª^\ 5\99\92ʨR\91Y\8b¨i\ e\fø-ÿuGMå\98õʳs\a\99áGÑmG;\94¢\88VtI¥\16MÒ§há\8d\1eT\\93ñ¹\fç\881öAÛ ïXhD^4ûÛXïdêÌ22\8fÞ>:3vÞÒÈNÞ¤\f`,n¬Û\ 6?W\14/3âªT1<¦î\83\13¶/Z\83\92AËTì\8a\85U\7fYD%\9a\82\85µ*\0Á\84M\92*³\98ÄнìDl\19"õ\90¶Mf²e'«áYUÄõ\103]Ò¡Xo\95\93¸\1cgºçk§«\91Ò\ e×öQºÂµ\8cøر]\94\99Í\8a\90y\9fQ\vë²iT8ÄH°"\86\9a\87\17\8f&X\83ÚÂ+s\91\8fX\18ë\ eÖ\1c\88K¬\a]\18\9b:1\1fÒN±È+KYé©õ\ 5]±uöyf\ eÌEUQ¼èF<d]o\18G8DõKQä\8f>@C\8c\97?\98óT7¸\13eà*ïÚ?\1fAS¥T\96{\1dl\95%k\v\16',\17ä¢\90\10
-ö?W*Á#,¾Æ`8Þs©\1a×#8»ß§)î\90\86z©¶\96¹z2ò¶´j*;\86'¶ñr\v¦ó\17\95)\ f»3$:=\85mP\8d¢àì:×i=Mj'\80\ 1
-GòÐÜq\a\1e`ë4m\86C®<dÅVè\83_þî=\80¿üò\11kU{\0\88¬Ý@$ ZÀ\v"ÂE°N$fÝ1£n4®\13i}\83®Cs<b\ 4æTR\86\rË\ 1:);\16àÙpdЩ\14\19\83`ÒYag5½ÄÝm7½dü~\9d¹ô.\0¶\88éÙ\f¼\9b åÏA.\8a;zº*\/nKÑUS×Í]½´LÝÙ)i²JC\8d\88\96\93»\ 5O¨2H-f\\99\17_JEæj\ f4*B\12\94À\94¯\0\ 6C9fÆ°\f¨Á8iöîð³ìË`)\8c*ë#&帢î4%Û*\7fc\89¤2\9b·\92;çc=A\80\93'{\92>8(Ƚ\9fì\99ÑÉ\ e\95\1euõ\9e\8d0¤rQ.¥²g\18Â\10UÃPÙ\ 3yÛì;ß]\14C\\ f&\8efDùK\16î¦y§\94BE#s\1aÖ\16±\1f.ÍcèJ~pö<»\99Æ\91WYôéÜï]cI)\83åGO)\88R˺cÂ\ 4¶\9dr\91p»:¥½É\1a \ 6\ 5wû¹\89ÞÂ\93 OëaI}\99Óä÷¥ÖyòsÅáuzàF\8c³ð\15\re L¦·B6éàÝÑmm\93é\17£ÇÍLV\ f\9a~\f¾x%¦«(¾\83#}Ní¤é\92\82N\88< ¼\89\9cG\92\vs\87Á\1d#\84Àû\ 6ú$Å}ëh;Cµ\8e\8e!©úÆ/ÛQÑ·!SD\13\ 3¿I_}r·Z¹\1d]\18dKä\14)+\88ÜË\9apð\18b\17S-ߺ\82ïatÁjòÌ\17o\86´é1
-\9f+K\11\15¢:\91Ù9FíÜ£Ò\v}¨Áü!\871\92Þ¦yKÑFûJ\995¦\97\10¨\9eSÊÇÃùH7S\7ftî{à\fBÞï]\98]bb\a¢.Ãhí\ 4º¬Ã÷ ¬ V\ f¾²\87\10\90\16\1a]>ù\90ù»\ fw骹ӷ\81\1dû<é\91\15\1f8ÈB\91,
-h4\10õeb®ïÜhØ°!\1eqx2\93¶u\a³Ðí\8faÎ\ 6_D)¥ê\03\f<?9úÀ!2ëÁW\f\rZ@2æWÒ\86,\14\8frNùÅ\86l0˯2Uí¿8\86âà#w\9a\88JÇÁ¦æ±ÏðjË»mø:êkÜÑh\9e f\16È\13[v\86\12\1c\8c}Â?\91ña¡\ eÆ9{\90\94F<¢¤]\19[æ|\96l\99Ù\94Y¸Ýîn@q([\<oÑ<4g2b¨\96\8c\80"ø{\85ö®Å|+±\8f´\9bá\19Òlª;*\16\97Î\8ar¶Ö\9f}ÐvÆ\eîîNR´ª\98Zw°\13üJjD\ 4äzÚñÝ ø\ 27Ïz\1f\9e\99\b\ 69|\13I\13Ïë!Æ\83è/¿»5Å6,Rc²1\14¥e¸\ai\98¢¨Ì2\8c÷Z¡\ eF\ fè2\19T\1dÞÎ\181^ÎwÚ¹\8bµjZçbY\e×Û\9a[·hf{GßÁ\8dÉ\90ãdÃðáN+#\7f\95\96Ä\92\16¹\1aÉó:{\8a\8fnî\9e\989÷Ä5\8fÓî \ 5·\v*ã\9a=\15\1e\f¹(T²Ã"H(z\90\0¡\eæ?\11X/
-LçÂ\84\9bºL÷!¸\17Ó\1au>WzàKÇÄÊ®¡\8dg,\80Á\89þ{íu/\94e¼pùpkB#Fåu\8a½\ 4N¥(¤ñÒ÷]aí\12*]\1fB-m¯\ fav<w\80üJk\8c^ÔÉ\90#r\vA\86ø!=C#Dz\82\8d\9a"ºRg´ Ú\84+ââÞ\9cm\8d YWn,l\18\8e\85µøÒé\10^qàGc¦Óïv´&<ý:ô\8bx\ 1.0ªN{Îäi±F\9b
-\85k\r×uù#\8dp:ÓQ\83
-_\bOt\bÞñ\10¾N@\17õíQ+\ f`½\84é?³?*~q
-±´l^\86\ 4J\94\v\Ð\9dÞ\9eÝv\8c3ìðÍ`Ûy[èY\90\8fåßñ\1d-P@7lÙq\ 2J
-n'äsP®\ e²,\\89á\82Î|c\95!süp0\11@cÊQ¸\v\82,àDô¼\8fZwøÜ;ûÂwíÄDZ¯¸µ\14®ì&náoÚd®u2w4\16ªCôGVÆÛü*Æ|-uHç\99'ñ°\93\8fVcö£\b2Ï\9c\0Q\1f\ 6ïNÀ\91Ñ\92\1c#óî\92Ôt=÷Á»¥V\96\ 6\rº®\12\ eÒ§ðñK8<<\88àqa?j·#ñ7\a1¬¿ÅÒé/\14Á!\11ýö\14\ 2ÂÀ\9e\ 6\19áQó\15*3ªC\bSõ[¶\16÷GNG'\8c7J=\11.
-·RÁaëyL\1f©û\9f¡ÝÜ\13Zn\1cû\0wÂßá\ e\13;Þl\16ÏÝE^Æ%\95S2]\0Y¡£\80SÓ\9a;_v¥·«í1ZxË\f¨âXí\1e£\9d\bké§\86?}¶½tº\ e\95Y\85r ÇD\a\8eP\14\84§àÝË*æ!àç\f¼2"Ë\11ó¢\9f>º,i\93úÌu9\1f\90y
-í\bÄ\fY\1d;ÜÎ\ 2\8fîæ§É\12Q\kH³îNz\eÛj¼9¥z,å\ f\8e.Y¤L\86;e\\14½tÞ]Ýû\18\98°ÄÄSKB\1d÷!Q`îÏ°È\1aȾQdz(5Æ\83\1d\80Þý\83³i=V¡\ 2!\1dJ\8e´¢LÖ²\e§ËBV*2¨\12`\18\0^\89\v\a\89 q\1347\ 4\11 ;x«;\e\919_ñ(µb'´ÉÖ\81ïû\839ü±\v
-`! Ç5â\15:_KØ\a÷¦ÒÆC9(³Ié\0wÙ\9aè\14¿³2\ 4 £U9ÃW\ 3\85\10åQf\9b*-\1cK\91\9fñ£}yÀ\b\b¦ç×ðd®Û!´ê\1aÚÜ·¬\8f\1d)\18LÌL\82\92ps\91\88ñih\1cÏ0#Ù6x\9eâs&5\93\1f0\0\0¸Ó\84q/Z\82ÕÑ9\90U&²\90¡ñ¿[jq\87\ 6k\ e\ e\99*f\10qèlË^zÛxÔáxÕ\11\85N\ 4\1eÞa\14\96¼ßñÝJ\rܲâÉAÇ·¡\9a\15<UéLQ2ÃdC\87Ò\ 6f\86í\91G\ 5}\f\8a¯Ó]Û\16è¬(\9c¨òwð&\ 2íË\90eî\84PN\ frÈ¢ ªA\98$H»0\99\87ÖëQ\ 1\Áë1\e:VÍ\1eçÍ\f\19\en9\búU\84eV WRHÒ\10{Y¯íO±\ 2\8a,¼mQF{9\924\82\1aË{\10Ò\r\eþÛ³J\86BTª%M\ 5\84\95#Î\ 2\95Z¡ÅܹÚ\£<>^V5¹CÆ <¦p\14\ 2Îðì\18ð&FÓrm|Ä2ÕÐ\9e)»à±t>V\89\8a À\ 5~O_\97\92Ò\ 6;»\90ÂƦ\97*0êìCáÒ"pkÝ\ 6±D@â)1-Y\1eÊ#®\13^H`&|ðTae\89M´/c\q}¢ò\1cîf!\91#@|ÌÂÑ\8exX\95\82\8aíü\19æ² ö\11\1a\83HL9Ãw\98\e\ f¯P^Þ\18©\f`êÆ\8cHvx\86ÅmÏ\94`)\8a§9\98\15;0\fÅâÊÞ\95\84£V·\85iã1\1dl¡ÊF3/;ônÉ\96\96¤L6.J$\ eA»R\19° æ\1dé\99Ú\18\ 1V\15`\85 Âëfײ¬\9eD\80\95yè\9dsÁh×ÎÔÎ\b\95×\19~\89÷º{\b,oÒCh¼4\8b2ÈÎ)\8dáãm\18Àtòȯ\81y©ÜF)DV/ë\99Z÷\80ä5D\1a#¬u\15/0\a6d\ 4`1MAeh+Û/\12Gj\98»@\bó\9a\7f!w\86
-Ö\ 6a\180\11\12ÃH]\90aHÝ)\844Ôm9È!Y\87\12Ïé:\86d\95À3Hé,\1d\80óK\96\94Bd\15\v\f\99©\ 2µutG=ÛÁ®\96\7f\14\10\81ùQÄ»eUÑóFl¾+\ fÕá\ eð½uP#&ÀÙR\ 2¨\vÀ\88\19¬\ 4aajjSÖÔ?\1fgQ\9fL\91\12C×w$\bñ¯DÔ/¤¬\16èJn\1a\88\81?hÉÂg\8ep\r\1f\85´\8f/D¤ú6\85ÜÂ}\83}\9a{J\90x6\17\926t\15,u<æ`\9a|\1cØì,\fiG\89Æ\ 3ܾÅxHô7\ 1ø\8bâøk¹±.\885x}׫¢\1e)ä=\10<-\91_ *Ã^Þ\15Õ\ 4\8b\81ºÕà)\ 4\93\88ïÇ\80O\ 5òU\aÑ®8ª\ 2ZÂK¥\fáÕ\95FÇ\19ÏGÏ\96\15\aö\82\ 2ÌuP\88iYÚ\ 2d\85ý1\89É#D²<ÿbå\b6¦(\vëa+\85¬Òº.Ô×Æ\88\98Í6÷Yç\86UÝ\ eM\90\9a\81ë×\a=|\85\1cà¨v\1d\8aÄV\1e\8aÊ\fõU\19ªË»&p4\86\11\11¬ë\aHV!\983\ 5ÅêU\r»A\98V§{\80HÍ\98\19\97§k4·¥¹DYxJWeV!<ö½\87*ß\1e\15õ\1a\8c\93!\1c;\ 5_
-æZ\1eTÆt\8cJ2z\86j\18\82[IF÷÷ÛNO-Û-÷]ê\19£\8a\8e\89¼4Yç\ fÒn\1cV*§
-\9c ¢G¬{Ù~ÄT\ 2]\15T«C\e¹©\8aÏ\1eÂ\84\b\1c,G\80è\85ètu]¨l_\1a\852\vlÉ\8d\8f\82\82\ 4÷ØáÅÍ´§¿Ð\81\fm[]\8a\94CZT$Çx¼É\¢èmW1\86JYÏN\9dÜÀÌÈèûä´p;e\93áB\18qöÁS©|X©®\ fç.\f\85\92OΧ\0SÃsa¬\e`F7:L Ç\8e\97\8f!µ\9aUVÂc|`!\16\8e\8cÁ\røl\85\f\91\r³x\e®¬\1cXb(ç\ 1\80\19\1dïkA\81°\8b;¢ö\15ê»ãPÎi\8a¢!\93ÿ Ú¦ä{K\87D¹Es\a\1e=ßí ù¬5g\a\9bÝ\v«J%ú<î&
-\91U\1fÖ<\8b\8d\14e\11F\ 2Svî7Óû\85¡èx'¼µ/+c5\18\fo¨\12pùݳîo\8eAå\9d˦®¼2\88¾\82`5\94\82{e,\82c¥î
-}\81^\80]°\83\18ïC$\ 1"\ 1Í_\9c\bD\V ZB°\86\99\ f¨~\ fÖ`ÕM\9e5<uçغ\92±k\e³¡\1c\19\8e\vg«\18»¸|ï¹Ë±£³\8dãp¤Ý3\9e{5Z\86è0\ e ,:óéÅ+>Õ\ f¸.õh4l\rxÀ÷\Z¦
-ÇÖ\86\11nÕKû s\9e è穤Üòu\19)ÙódRû2óÍç¾2\1dd4}\f¿Ë»\19lÇ\11ä\9a\1cWÖ°A\ 3C\0Þ&(X\8e}G)e0ä(¨'\9d¸¶\83K&ËÜ¢\815\0&l\14\925\0 õ9ø\8a"Ï8h\a ÕcÖ\83éIJ겦â6Æ`æ1´,\bP5el\e¡\81*AF\13\16}ìÒ\vÚ¶VpL+\10£\13v]lW=öT9¤ÁMï7Õg\aDÕ×'¢1g*M¥\81Í^ºç\89\0Æ\ 2\ri9\98F¨i\ fUP¶\&Æp®\væ?ú¶dgPÝ\9dJ\15áJªäg\14á9sé;_df¤;¬Mð\84¥K\92\94xfz®'Uö\9ayûgS-ßÚïDE*\13?\ 5\ 1D²Y\98ÿF\8bÀà\12
-¥Ô\19\84»LU#AÇòÒ\98í\10ñ1=\10È\81Ödâ\v\ 3\90Õpn\r˶f{\ 2Eå\es\1d\ 1>\179á/®Ó³ó Üs©Û3 I1\98\fDÝMRãì\80r\84¬\15©yÖ8@HØW\ 6p·ùuË[N<ñ¬\84\15²Ø3\ f\13s³xsð8\1f¤\96SÎ\11¨¨ÉóÒR|&k\9eá\85\8cÅï&u\e\aR\83\8fAVÝ\94\82Ì\9cXÈ\8aW>@FHÓR\v\82/M\11Ô,µ \128£ÉÁY\f\19Ár` axw\1d\87Î\ 5âÒäw\eÑ\84îî\16ë\8fë\90ñÈ\8e¸\8aìn\0\80\ 2¯ìs\f^Yt·ÇeMæÈ\eÈ\10¢?÷»{\171\8d\91ý\98L\983U'BF[Ê®K|6Ø\85Ĩâ%-\90\99\83â#d®X\8e\80ÓN\8e¹*\88ÖÙ¸M\8atÅÌJ\88\18°0z§d\9f\1d\9càÀ\1f\1dýµ±|\1cÚ\96\18¶\83\8c5ÎF\ 3\85]\0YÔ\9a°\b\ e\9e\eæ>naw@I\98ÌC\ 4X\90\ 6,ÅÍÌ\ 6b-GÇ\16áJ\82k&cK\10Å\19d¢\ 4Le\ ec#\ 1Á¶ÐùhÄÐ\9bNzs\f\97Ñ\812xn\8ffð\0ÈbqÎ\1e0cxPÛ¥Ú N\97e²,¢\e+\8cu\99'ý%Ó³ÇÞs\16®´7\8f\9a\82aç\9c\8dYÔx\97¦\8fnmpRÝå\86\8c^å\8c\ e80\19ý#ãûñà\f\9eL\10\f\18uÌ1´·\89J\9d9»\11Þ;9\ 2tZÑtÑW\8b1*:,Âe²\8d=\19
-\11\rK¼ÎðB\1c<&rg")\98øèéN7lc+ªÃ\8b\93SÅÌ[eá¦g0ÝÔ3Ë\1a²ì@*ØÆÓ§pªÄ\12\15\1d$xðÅç\151(\r\8aÅ\178©[pä\a\8a\86óD,Y\81]a+<\91*¼Ò\8a±\æ\99\9cA>"\88\88\9f\81\83\91\a÷%\18¼\9c~§ó\1dð\18¥Ö\1ak×l»9\94v\1c2\ 16\89y§Ö\f\8c\8cÑíΩ0\ 6\93\83Ëä MÈ8P\90@ÈTî \95±dExqÈ,\f YÙ²9
-çº(9<dy@\96\9bd}VÞM^\99AH\12ïn1ñJç¼²gû\99\8e\12\1cË_á\1d£\87æ\91Ø\r\81\9f\8d¬pa\ 2ÐëmLf vóó '!Z\ 6aô1SY5¤4[\91ê3<\8fÉ8\vuçz\ fCQ½Ô\82/N¼\87Ñ\ 1\8dêW*\8e\81ßñe_ÄG\87\18HÕ³³\8a©\81pµ¢\1fÈÖ\87e\97µäï\83ò\f]g\15\v7(P"ÓYÚ^kx|\ 28\81äª"ªþk\90píÌóÔ\85ùú¤ Ê\9c\9e\92ò\94¢ÇgPZT3\83-Uqnø!Ìâ\e
-\92ðnjbÈ<?1»Hl\14ª¡\ fd\86¨IIöµ\v´\ 1¡Ú\9crÅãifõ3¨1wµ¹\15÷º¿SÄu\86\98\8eg\Á\0ç\18\v\80·pÄ\9dyf?mÓ\96ÅèÀI{Y¾çû¨½YèoEÀ\a.½õB´\95Å \87ú\ 1\95Å\11\9c\fض\97\ 6aÈ\9b\ 6m{\93ãÀ\86wP5K\8f;õ\1fT\91\19þ\98C%ËÆ\148\1ep\ fÇà\19×\98à\15"µê\b2\11\16buÀÊ 3<¶\19\ 4A\ fÖ´~l#{\94\85Q½âE%\8cÛ\11£\8eÈ\1c«ê\8aJV°\1fÜGÀ=nrCSu\96:#\5D3ÆÅ\89\bV§Jãi\v\19u\0`\1dc\97\172ì\83WóÓ\ 4@\14¯lÃæ\ e\1a\93!HÂZöeç\92½\90\14\8a\81;\b\96\9a\94öò
-U59©UR©;òÆ\8a#Hë\18Ú\16u\ f}$\10\9d!QÈ\ 6aÐc\13¡\8c]p\8c\rä¼fÐh\ ez\ 4ìÇc2\92Ñ;[ö×8½2\bb\fÝ·«O\97EÇw4k\82ÞpsÎ!\13ãT´v×[ô =µ\ 4MÎ\88óP*\ eú¹ \ f\91Ý\18\87vÎig¼\8b\a\92í\1d\95\1fj\9b\ 6O5ÜE\ 4¢\83ÀLf«\18h\8641\87JÎ*»°2¸\13\93\8e]KV(GW÷\1cÆ(h\9b³µ@VT\89H\03d(ÿP\ 66ó\IY,\98^ooÓ\1a\94áÌE\9f\ 24\9b²\92CïÈ*ûnÑî\eW`\91¬l9dSO.²¦ÇÜyç"K|ÉTg\8d\92\99LU\90UÇ\80\v3Í\97\1cÅcÊ\14\ 6dAÉT\1eîÓá\81üfEB§\97>\80_ÔYº \19\1amR\ 3BÖç¦\17#ò\18ÖÐÎ\88êä\9aâpÅÝ\8e9²ØcÛ%gäà\80}Æ0L\16\1a\ 4t\95nÛ FÀç\0²\917çÔÌÂ)Õ ôÂð¨*d,Ì7\86¢*Ù\ 1V!ÞÈ è¤UßÉÐ\9bïjºZ\87] 7à\ß-úÍÆÚí\9dd=¢\83;¶\e\ e\18uK\ 6\ 5Þ=\85¹an\11\17\ 6¡\8aZõZaÄÉ\95×l\9eró\10²ûF\16k\8c\8cs\92¢\b¹\\9e\9f°°çÔ2;Ô$\93lÎhì\12Ϧ&QË\81v÷Úé;\83}\88^3¥â\bo¡åvùØÈ\81ÆýØEn»\9c\13Ò!bG\9eRV@\14%\93Ón@ñ3\87¢4ù|e(6\1f[\90\9fZ\ e<uQ\91\85<7Ó\17\8bÐ õÕe²2%S°\87î¢ÑÔíê:BµáÈGÕMR·"¨1\18Ï&1%üÊ®á\8e
-rZPZE"\9e\bCµUT%)!äKVÚ¡ò\96¬\82³ì\1aî¤R\eØ5í +\94Í\927\b\86\ 6\e¤5\12\ 4S³xz§B¸!nÉÜè\9bâ\95¹\88°Ge\9eÈ|çTÐ\ 2ÆxM¥Ùcñðd·ÍP¿\177üµ2\8a/ÂBä#|gÙÙ¿K\86¹ë'
-Ûý:\1e¶K¢H(vSæ½æ>pª<Ñ $ä\11\i\12£É1\ 6 \1dWX÷z-Þl\ 5V&-YË\89ü\810V\87¢Õ®É&!z¶Â\86lxHITfÅ`\14õÍ\ 6G®âá|ug~sÈ\85µúF²á\89u¾Í\814¶»ÿl²];\8at9\99w\87\90\92\86Ô¨4ÛÅ£y¸{¹\82¥î\17'"bN_óöÕ¡êîÙ\94l¥w\ 5Y\9a{o0\113EÚj³å
-f*\17\87|\r©\f¦ï|Î4 }æt\ 4\95¯\13¯o\81¿1Eä¥å=\9d\84HgÇÐ\95Jô\96½-Ay§rRiàa\98â3WÀ\1e"2a\12)\86\94ÿ\10\ 2ÐÒ0\9c.+\92çÍk/òfB^úf\9b\80lìÌ\8eÛÐx\882\90HÐ\17WôÈæ ÈáIb<\86\0Ç~ô\83\16®;ó\94B\88\92¶¢\12\90àN\18ܱ¤\8aEÍêð \ 5ï¦\19\84õC¸\18ª-"_\87Àí\83\9dgëLVÙ é&\1eÃÍ\85¥Y\8a^'ê\ay\1e\f\ad3!Q£è(\ eÐm\9dÕ{Á\r+\12ÑrÄ\ 6 ¡\1f.Ã\10ÔAÌ%N\0\v\99Ìi\90¯wúº\ 6¢ \8f1\9aGy\82Ì\9fB@º\89è\9eÌ-\88D´\0\7f`om¿çP\8cM\9ck²Aä¹SÃB\14Û![Ü\a\85ÓW2ì¡4Ýi/³ò¤ñÒ4È,èE_2\19\1aÀ\1dùÉ\ 3-{È8$2\eYTÛ\ 3oÉU\fo\1e¹òÁEüí\ 6\a\87HfF¦£\0\99ý\9bò®\16\1d·+=ë¼k\80!#^\vG×ÈñèÉçî@ûÙl¯èæ3\8e©é\91¥DÛ\1ag\8a\19î&ê\ 4õá¬0¢5»Ù\11\9fPîf~Úcª*Å=/\82×!ÏÄTA¡M_\10\0\9f90üµM~¾øÞ\99\87d°\84XSäF³Æ8ÏNÍoÐ3\8b´øÙÙ\1d\97Á{;\83\19Á¼V\93d\89Ì\143QU¡\80#»uS¼Û\9eÈ\õ\8e½·\95>*Õ\91ï(ÜqX"\93\16\9aC+ë±\8fï)©\82 r0éMØ 9\ 5\9d\rñÐàxñ»\7fr¢\9eõCß\17j\8fÚ££í\8fvd\ 6ö=\83Û\99\98'è\8cØ(bÉ-Â?¤Û\824\ e©\ 2?Ùð\83\8cÈ
-Ã\rÑp§\ 5Ú3\97\1d\15c%\1f´gö\bØ&R6Å=\18)[g\9d\14< 1-ÀX\15¹ÒK\1e¨\ 1:O!\8bÜQ\87uÏ?)\9eç\1e£I-'\ 3\19\7f±\13ïëq?M6ËÔ-\8aI¾~@¯
-c mh©\14\86ø\8a\18õ-<Vv\1439M\1fFÒç\15xîm^\fß\9fu{DÃQ»\8cb\ e\87úá0`l»
-Ø1YA¸ìu\ 1}1d,ï\84\94\1c\7fX\0Í\15ZS\89åÑâÙôúÓ\8dÃ3¿y2¢?y¸ 欢\99ÉT§¥6\82l\ 6#ÊfÄÚÙ£l]\e×\132V\ eo²ÈådJnùÈ\9d\aAp:cH=ÝeR׺qÐ\92\87ÌyÀ 멲èÆâ7g\9eús\8bÙ4ºe"â$\9d>Dk\151oèÜZ®C\83ç\17\90ݬ\85;³\1a\80Ë2£ÓuAp¨¢¥6\8d<ËJ\85¼ð\ e¿8\rÙ\ ea°JT\93Å,\99)*Ë\81zb\a2òVÙû°iÆ$§«½wÓ®öà<>O\1d\æÆtY¾ÓM\8a¹??\ e17M&×}\18ù\8b\ 3ÙǨ»\95ÜRÀÈdÎ\1c;\8d÷¦P¦\9bÇt^wÌÖL²a\1dâ\ 4Yw\9e&È\92§yA\93\97º\96í\18\9ak\16QBZ\aW\ 5\91Y\9bmÄd]&Lcû\15HYÇ\ 1©Ù¸HÞ:\ eÝȳ,a\11Û&\e\19>Êç\9eå\15Ng\90)\rYÞî\9c\rffYv*\82tbðº\9c\93\92¼¬÷ØÖ\1c\92<chÈ\9c \1d \1dfýñ\10\ 4Ï\99h%ï\9b¤.ó\86\ 1&Ë[¦×){º\90\89\9d²\ 5KàæÚÖ®»!xï\14N\945_|Y\ 4EW\9aþ\8fEm\1d̵¡(l·&zù\1c2ÉL\11\99Þò\15\85|D\9dº²'\1f\b\12éÛáÑ\99\93Gã\12ªàVûÎ.»¬í\ 5\ e\v¢Ñ\82\bD[Zb\9b˾\12ým)y¯;F\96Á\18ı"<±g\8e)6\1c×Iñ0\19\9e3}¼»H\ 4 ó<{Wu?hÛrÑú^ÞoÓûd^ÈN\15SÞ\b\96Ó¬\852\vJs\91\19\e\97K=\e\1c\19Dw\19\87\f(áÆì\88\11m\9cùÝ\ 4\83U2¼\9a¨&Ê|iùe\89æY&\81\97mÂÀ\viP@¡8\9f\16²-\9e¦\ 5ÆÃ\99Ã&\13ST\84ì\8c±ã\17&ëQ1\r?O \1c\15ü°\1cå\99ßÜ\1c\95
-©¥\ 1\\8bF]é\9a7mÂgÈ\10ñãÝÊç\17\16J\e\88Åã\92°h=ay\19îr¶\89ð@\11ÉUÙ\1cÁqÏÝ ¹\89mWó\fâA§\90ÖV\8b¦ÅbE\ 5t¡Hàµc\eCÀ\1a\9c³\93Qv\16ÆaE"æ@\a*2ô\86T$áÈä\985Ó¹\10\ eF\16\14°\b\85´á`²%Û®2\9fJªa\91³\84ãÒ\17c4<\99Ö\15$Â2'¦\8f\85ÜÈ\9beá«¥K\8b ÷\86]\1e\ 4a\18D\83y\88\ 3fbzàØdåXöÿ>rQêP\99Ó»Yôyò\9c]à\19v\90INä®$~ÆÛ\12eÊÖ\14
-÷PKT¦fæªh©3\93!÷\93"e½\8bZ\93\89Yk8¤´\1c\ 2\C\ 1J\aß {C\8d\91uX_\1a^\8ez\1273R\86%ù¨#\98-|\ 6É{L\96\18n\8dQ©¬Æ\88"\0Õd0\1d\847ùÝIõ\87\8aqm&T$½\18\ 6·ó\94÷\96¢JéºïõIFü\9eÉKa\87l\8a\9ane]\ 1¤\8e¿6\9f^±v\86¿¬¨U±vË\960S·A\1c¢\13M¢ô\9d»ÛÃ¥á:÷QÜÍ}\90«a¥´\15\e0Át(\1f\ fJ\9c2\99\80À\ 1QõÃÉÄ\19NèNã5vuÎ(
-0ãn/³\1cewK\1a®ÖÎýnv\82Á£KcØB%óC¨Öq\9c\ 3\13LÉîvò\ e`E\8ajXG\13\9c¡\ 6µ\v\12é\b|U\ 2É1\14»\7f\13ã_\0ò3\93ÙÔ¬\ f9Vï\96`²±K¥Y¼>äÁ\18,\82e¸]Y\8bK\ 3ÎÕ\f3k2gf\90Ô{Äã»\17\83\94"\8bd\ fl\ 1C m¼°s
-c0»xZ\9bè,\91\9bK\83\ 3C²×î<\94þh¦µ»ãX\18 ah~\1cW\9d×Ùø\83¬ÂÁ_\9b2³I|$¸rDfv\89ØDÈÇéuÆ6¥/\7f¶\ f\aò4\9e\17\1d¤\f¸çÒäåªC$\93È\105%´Ý\v²E¯tfèä\9f\98;Þao¬înÔ_øZj\bVàb
-Ù' e&ÙÚ\10Po°\80\15ÃÌ @Ø¡¬æqÓ3¿;z²È&¤R;y\8cêÐhl\1eã\92¬\98\80\8f&k\12¤;5EÃáT6û\96\91\1e\vj9¨\19\1a«\91qeÏI\13¢<Ô\85áæ4TG\ 4\98:¶\7f»çÒØ\84\e\fIçiè\8aº)nYÄøbèT\ 5£ª*ݬ- Ú\10z´Â\ e\8d"óÐkæm\bXò\88Ó=
-Æ\18Ê 5ÇnV\96èJ* 8}q~ÐØYßä©Ù{\e\92ÃsAðÌ¡\ 13ØC¥ì\10\88µ@\14ß\89Á\14;?¶ÍZ\1a\9f\13\9d\ 5\0\ 6\18Á\1eÑ\17-\83\82t\ 2½\86\9eÁG¶\14\19Ö*\86\9fá¼]\83DA\8cG\92#d³\aA\94\9aD\95"òT\98¬ï\9e\83Ë\fà©$?4\89=L¯èó\99ª^0°²Ù\1aBN~LÝfcå½Åéïq`SWEw\ 58`\8c~\ 2Â\91åÄ®\83\9f\b(G*Âw'í\9c0:\8cìU\a\9f\eÆG!\99îA%L`\96\9f}aªíij\10RWCLUp¸tÈaHBðm\1f õ\1cÊ\16å.0\84î!¤ yÏ\1eòhÊ\86\1a\9fÈ F\95\16\11Ögñ\94\a¤\ e\8c±F Bk\92i\a73&\85ä\98\9e\9cBÝèXoKe}@=z\83
-É \9dá\98àË\1f}B\1dýM\b^A\0QÕßÖB^÷(ÍêQ\19\9c(cì\ 6¨ÖßV\b¬\9d\18V£TÈv\96»oÒ\emå´¹Ñ7\8f6d\91¥È°\8a\1cN4w\a´a»Ex÷¬\16|<\96'ÛÍ\9d)w"åá\80^ÛÜ\83
-ªd\11î\90\95y\92YöÜ\r·\ 3Ü\9d\ 4k&\13J\9b©x[\94õ\ 2\14Ü\91l\ 2å\v\ 1º\9bûX>\83\ 65ù\86(:wÛÙ÷Úá2¨z¡ì«@uìp\81ÝZØ\11\17Ò¦Ì\85\97ÔcËy\ 6\1cV÷fèX\a!]?[E´ÙÉ¿\8e\84½C_ì\a¥á\98Ü=ðª\18j\90ìà\90vê\ 5\1dä;û\ 3Ùf72\9aY\97Á4áp\ 5G\15Y\83ÚÞöKÒ]fW\ 5ãP \92\95´ÍóÐå\8e\917ëÀ¶b²¡_tÃ\ 52Ä\10Ï\ 4h«U\1aM\8e\ e\99u ËBÃÑ\b4\19Sç#\89\1cÚÀ\96Z&ü9R!Ø)\13©\ 6\82ºAf\99G\10:o\ 1vAÛ¿\16\ 4aL\8a$Ø:äÍÞ;\b_2\aw\10i¿!Ër*<\ 3® à¶HS *b=mûM\ 5\r²¶¸bt\ 5\87̾»jN\89ú0ìdär"6\ 19Êíì5Vh\83ϧHE0¹\ 2Y\94\97Ê\80Ûe5t~(³³êQ-^,|Z\8fä©Å¯taî\ 5°É\84Ê»\95©b\a³\ 6i\88¥\r\92±\90\85Ë¢
-I´\83âÆƦC\93J«\ 1\90ò!ÄÆ\9e\13©zzS\1d&Kç\93n\9c\9f¾8\14R§\ 1ÉöµVÿ*@¬\92#É\81¾çnø\1e:\0\93ç\13¨¬ªZ\19%\ e\83 \963\1dXj\ e¥\9dG\ 6\97õ7á\95,5 ¢©\9dÉ+@is\13ÙaÒ@\e9t}\f·,dM%¾&³\950åYLkòøè3Þ5Xå.b®\9aGu6#ï\92b\ 2¼\94¨\13\98Ç:13s\ 4à+Y\80¨Ý$È°ý=IqNú\99^'\8c5MÄ£á\13\15\83\8b,x\1f\87ªªª¬8üÿ*¢}\10v\9a¨¸Ö\90\9bâ\1c7Ød3lWcònò\cþ\ 3\8fV\8bÚj\95¹Z\85vNª>ÉÞ½\11º\9dH\8bÛãÀõþèÿ}\83\8a¸kë¦W׿|¼.ø\7f\1e-\8fþ\86.\87³\85O§£¾w?áíGÞÔ\ 3\7fûÍ[W\84õÔ°\9e\1a×Sc°ÇÂ\81sËÕ\8cùÁ@FS?\94¹{@\0\91Ý\ 4o"?\fà\rM?Ì] *\12ð¯\8b²\10a\vöçf¿ \93U\87¬OòµR *\vÐ\ 5%4"\ 6AGØ\9aó(ª3=\0!Í_\ 4 Ú\\85d'\99S]\1eLó+¹mLe
- \15eÉ\83Ü\90Î$\7fØþ_b(ÇÀ\05î³ÎI\90LÚE¸\95YÖ\12Ô«ÖÎ?åÝMeÓ$ò\8eª\9e\1a\8c<\91cP\8dE\1cm\9b\17±*_Ø·\81\10=W\19\99Àó\1a\ 2\818<ºï\ 4\12a*¹îEÆõE©\90\88SiB$·»ÚàôRhÍ\e4æ\9cø\9d^\98:\8e\e¬ãÕÁfáï.H%\ 4¦\93k9ªFö\8a\11\14À︮OB\15÷ûPµ\1e\9el\ 5\8e\8cÁö\ÊÑûØ@¸²µê &\ 4½C\7fí[¶M\95¼.×¾\9a\900#«l\ 4\9a¸;\8d\80Y«ªsi\87\ eÙnIÙ\1cz\ 5³\11\13ú0\ 65ÑA8§ìdc\14-ý¡\88o(M4\8cðHà(ÇK\Þ\9bß²·\ 46\1aãÚÝë
-èz¨~r\9ePÜï\ fc¼\12}\9f\ 3Á\13Ö\80\90óî9A[5ìð!Ô¾\ 1\ 1¼\98\a@¹æÎY÷\8a´s\a»9¡*¤\fµ\80ï\80N\\8e"\1cp\97ÈJó\86ºu[Ð\8eu\93â0ì¤f³Ò>\12\8e\8azÑP\ 4\99\15ÜÞÌið\1d£Ò\e\1eɳ5\9c¸}Ü\19Ä¢1\1e\13ú\0\87áQǾL\8fßæÝéÜw \18ês\93\14Öc¬\ 6+û\8aÈ\8d\90ºa¨ñÒl\1dMû7(º¶\\8cp\9d¸ËòLÇéofo\ eÌIJ\7fû\ 4\r!tvC<âG.\19²\87\80Al
-\85)\16qµh\97ÈF>\8aßÖ\80@\9dÀLRñ@VÔ[&°ÞÛh Ê.'`^º©I0ð\962òI¿RD#\88ó=ô¶ï\9d\ 2Q÷]\10 ÛñXÖÊ}n®AR¶\b6j»,«&\88\8cîàL\ 4ñ4ãcæ¶ß»º\v\90<Á\D\rDjDÂÂûg\8e\1a\1dÁÌb\1dDp^y\97E5§\96I\98<üoÏ\ eª·\98\96\8cyÔaÐaûÎlÒNÎ"\97)¾\ 6Èì.\9c§\83oäð
-.0Ë`@ýÜ\ e\ fáW\97|ì·ûÌ0Þ\95\84\bF}I\95ýj\8aðÜ\17\199ÂÓJ¡n`^i\12}«¨én]\11XK¼ÿΤ\9deû\8c\908\1eý¹ìòvö°\ 5÷ܶ¯ce«Oh¯¬!T³±\8aé\93¬\88Ä\8bECÓQ\94TT\82¶§C\e®Ê\17\8f»gV\13Ã\rendstream\rendobj\r93 0 obj\r<</Length 43732>>stream\r
-°\95:\84Í×Åú(\é¸\ 1\90fMù@lód\12åUYyþ\99osv\ 5=\98\90½\vV\8c°µS÷\ 3ÑK\13,z¦\98 e6\12\9fê¡Þ\ f\88\1dë£Ku?\94~\13½\81sÄ*KÀö\ 2ÆQ7UÖ\12ÅÉ[\99ikY\9b¥³+ êq²èß\9d&Î\1c*O'7\15'ã²Ígjµzô\8a\9a\93
-\0\14\1dôÒê\r\84\8cxâÝ#ÎMv\90jÅ\1eâ\81A¤\v}×ýÚ³Ë.¼±v"þÍM+\96å÷AÍ8«z³àmzÛ°orU\1d\15\f\15qªØÛ¨\171ÑQ\1cVn\95\9d;m^rmý\874\ e¬\124BVýÞ¡\1a£l\7f\1d³RXPu(@
-\1e\937úLÕ\10Y¦\94jñ\90ßeÛ_¨@ïn\ fYS\91U\ eòVÍl>sí2\bÈ\ eÄƲ§·rÐÔçI|®ÓÛ«\9cQ+ö]\96$"Y\16\9b\99Èï=èµè¤Ýû\14ª[**/\9eGððº\1a\99go\17oÕKâ\7f\99êà97\891\98`¤LH¬f|µM±Ç\16vgU2\8f\99#~l
-f"\ 1Ñõ:\8e¦07³ìã3+\8aÄjd«\88\89;a\10X\80\98u(îr\fÓÇÂÿ°6hã\ 4,Úrº:²\82ù½l2VU*µÝÚ"±¬\16å/l\16Et\ 4£'õÝ TP¦AvdÐ\9cÍ\8dO\8b"I\9bUèÍÂF[ÖÅe°\ e\84°i#ÎQuGö\ \11ô\bçih#ÜÝ\ e\80\97)Ã\ 3Wf!ÂXæ\ 4\16%.\bÇÛ\9c?BFË©Ú ¶\r\1eNäH\99È\1dYv ëìÑ;\8b\ e´]W3\82å{Q¦¦3]µ«s\1cxsA\réT¼V;á,AMG=dUt\88\91Uëã¨ò¦í\88ÒPI\14d\;\83t7&K\ 2Ì\19ß\9a½y½2úþl±Åvaÿ´âëF \f×1ç~¯ð&Ãí6\97\91hcêÈn\9bFÛ¦KÍf\8ahl1±lûÉyf\1aÑzëì\1a ¬Î<(°\89ª\16b_\88¦n\96V\19äUx\0ý7\9a\9a"Yñ
-«N\ f=°E§ø©\rä[DÂH\9e mSÛFÒ\81\97\9f\11b\18\91¡«ª\84\9cÁ\85ø)\ 3åfÑç\1aË%\854\ 3»Ê|T\ fef¼\10QsÓ\8d\98ë\dc\87®NÚ5hN©³/:\ 1\17)ÿ«\0\ 1lRÏDõ¡ SÕ]8ã:5ìp^ܹ©\8e¡úD\e\80Ô[WTVä)u\9f¯\91Q\ 4\93EY.\96ªâÝ©¬vzox{I÷EçNÜïLõ\98G\1c}Ö\93\94 \8féç8b\91MåÎB¼¦Mo8vrÈ\18~6ì¤î\1aÐ È\ 5\93Z0ñ\bu\bª/ÜLP\ 6s©*4%\97\95ñ|(\91å©\13P\18\fîY#còêúÍ62\89\95\ 2\80()æ>½o\84qüÓ\93¶\13«ºð(B:\ 4±\18ÌÏÌÍA\0È\86 \16FSá\17²û\84a³\12e±ÅmIèýr%\87ÝÜ-\86¬Ê©Ð\92È\9eºô \8b\82\17\87âS2mcD{G\8aúI\ f>LQ¶\e((\10ø$pV÷\9c\b\ 3Í,\5.\9a! \fá\82M\84\1cX\ 4"\8c°N°|ô.°Úp-vç\1dU\91÷±k*qÙ \ 3\ 1\901Nóe\94,b\80asULA\12f§\93«´zÌñÌ\ 3?\87~\ e\a\80 ;©â9¾ÏÇ\86\80âº(þ¼¦\93Ⱦfh±\ 5-16HÅç÷Æ\81¨¹\1cQ«\16^©þ
-M^\13\16\8a#ßð¾Cm\8d \86wóìÃ\95^^\bÙ\9e\ 4½Ù î+æýæY·\10Ôa\9f09¼Î«dÜ5\9e\f²\17c÷\9cqh_Ð6\91\8au $æG\94+U\99J\11|\9cyè\8béAëÉ-F\eÅ´\9b@Þ\16tÙC\8aÐ(£É\ 2´õ½D\92\14ó\11\8e\fÎ4S\e\ 6ÈaH·8Q£S¨2¤K<®\11BŤ\9be\vï\86\9b\88O\ e\11\16ðD7Ò\10\95ý\8bÊÉJâhs[5Ϲ\92¾Ûêv+×ZgP?\8cY\15î\93\9bWæEtiTÓ#\ 3¡\84t¸ð\19\ fªn\93Yí'\11~¥\13\1d½ZТ´S>~\9aâ¼a\933#§\8b\a>ζ³Gq£|w\ 6\93çë$o\91ÃZ\87NCB\95gQ'\DÀé íä\118tx\ 2\94£\9d\15vÝnQ\7f+ j'írÂ\8b\80ºq2å\99\9d¨\99\ 3&f\89Ý×\b\ 3V\15\\8a¢7ª\e[\1cÂa´\97ª¦\94\1d\95\90Ú÷ÝoùV!\81£Df\9bp\92½\82Ç\86\96ÁCd\84åw2«\89\18¶\93VZ\8e-eí\8cìÁ\17ÓÅ
-=\16ñ\ 1u\9e®\86¼oº¬íNIôÚô\93Ç'Õ\98î\eûI\15µÞ³òm\16>w¢\13$&¥w
-C¯\eV\ e\1d[\ 2\8f\86Må4\9a\10Ùc\1eÑI\1fHRÔg¥©E.°\94Yé%k»Ç+k\17²\91|¶ØÒS\8d}ÄÀ3\8eÒK]\98\rc\r\13Ö×\9bE\18\95OãÏLo·l\aÁܧ\16qæ]y\16;´d¯D'·\87lCt\15¶¶{ù\10áiwÏ[ûãÎÕV±î\90·Ñ\94Ò\14\10X!è \86\rcç\e,\88Pù
-VNB\e\81\95\8cF.§\9cwñ
-¼\ 3L\15G?»ì\f\87JÑH`9
-\8e]÷\8e-\18#ÅÈf÷pù\9b¦Ú(ÒiÜ\90UÓè\82"\83d¬à\18\83m\93¡l¼{\ 3^¼\94m\92 \898ÄÜlIÿ½\1eæ×\14oÎn®c\8c¤\85o+\1a\85¢î\84\90±Ú°ì¬5\8aU\88¹1º\8d¤\80\90\ 3³\1d\17£\0\15g\ 1\84a
-ÌXÈ\87FlVä!zWi\88X¿µ; ΢\9e\83\88Ý\ 56ñ5\vXÔ\86c
-ÿÏvó\bG\fa\8e\b\1c\14\8aBw\87,ÝC||qþ¦g\9c\87RÚ\8a¡¿b\99G\ e\19\v>¬\ 6'3ñ.â\85*ê\ 4KúóëÍ:å7\1fðL\a\92\90\ 3ö¨lX_Rí¹a\82Ïéq4¡Q6\13vq®°y\\9eÅÆ\163\1f}2¸Ä\94èg\7fg8!¡QÓ\8bóôà\98d÷\13ìÑM=|¼Æ\9da\12\9d¼\17Y;ÂåY(\92ww\92¿%\85,½¡@9Ý\7fËþ\vÑ\91X»\ 3a\15\83\fË\17/\86°(\f\98\1f~/ºÚÑ\93ç\10~º\8aCå\10\ 6\13ºå¢\7f\bÿÑؼ\8d\8bt0\ 6dá\8e{$àÜ\95t¤Ël\eí\aû·RF&/».°\9a¹m\86\97N®;Èt¼v:\ 5\90EÆM\10ýnMÕ̤/\9fêëa\99a·\e\83\ 3\96¯ôÖÞÊ$\9d{ x\v\1aìÊÜ7Ð\8b\85\ 3\9bÜÏ\a\ fpbÂÎh1νr=GU8¹ùa\15ò\fº´]?¾I¥°\9f\85¦HÚk,\9c\84Ì\18\ 5\bðíl\eh² \8aC\83èòæÊ8\8eà\12V6\Ä93ã\86\10x?0 ´\1dÉêYÞ]ã\1a\83B\14Ê¿\fö\05HCQ\8d«©q[DSÄ~¸{¨ð{v\11uìêû¥ß\18Ë1Æ\ 2»¹oFÔ\ 3\b
-(ú\94Ob'\18\0\92{2L}æwG+45\FÙ,\bI\99X" '\vÈ÷e\ü¾Aí'7\94~&Uv\8f$F Wã¢ø\90¾h\81ïÍì\9daó\87b>aS!ÕÆ\ 1M:\8b¡\10M³\984n¦ë\14\93Þ»\v§\95\12¯ëjHb'§\83(¢PêC\84¶\14è?¯í\93:\ 1!\a\17°³m\81aGdùD"\9dã\917w´fÚ6\9bz-|²JXà^Î\r\16\984ºr\ f\94Y\e]\99l\86\92Ø\\13fÜyM\97¯\7f\860Z\bĬ\98ïA\a\90\ 5¦Øf\1e\1d\83,8ÅêF·ì
-!Co(\9a
-;®xn\1f8\85Iû4±:¿l\88\98õ\f!\1e¤ïæ\95ÞAÀ´CT\1a×Y\9e\8c\87bl¸¾ÕB\e]E8,\948
-U\ 1 ¦P°áDçP$Þ\12z6f\8fìû\82\bK;m\7fã\11IÒ\ f£G\ eYÛ»¹Ô.@Ð>X\ 6{6\1eM\97\15Ðk/è}\10;Ôæ²Àú\99ïk/\9aðýQ\18ru\16 _ö\911]VK#(Ú´»Ô\1cÏ6CÙ\8cOQ¤\v¬\v\17Å\80o\85Ú·2\fAÄ"\93LÑ\91¾\9f¡¿\12\87ªlN
-ãú<#\83HU|ÿ@\17\12\86\18-
-I\@}/Z\91R7\83H/*\8bpö2[\1fÞIËFTÀ¢\1d\8a\17\85\92Ii\a\ fO+\9a\8c±ÊA:C\13mèÏæ)°ê\88A\84Zð\ 5W7ðs2êá\ 4Ãâ¸HÎ\19êH\e\8aHÍÒ¶¥57©P\13ù\1dë\8cyÜæ\83´e\1elåg,TãÂa=¼L\83w³k\84åM\1cÑÖÕ\ 3rªÝ¼\ 1rÚ¦¡Ò[w\15ÇØÍ\997³ã\91MédåÇ©\8d±Ã׿üÒKïi\f\ f\83·\18¡<k\11±Ðñ\9f\8e?ßÿé½Ò\ 6ëþqÀ\13½õ¨ý'»%Y\1d\9aS\83ìVéÖêÕ3Õ&-\8a\9cNVíCÖ\8feo\91^{NÅÓ¢3\ 1$áHw\80Öȹ\9bH¡íÙçNLP½tzl; \8a\8eÇ\8aÎ\9c¦<\ 6O\9b¹\1fÉvðFJß\14á$ÂÉdª\14õ\8eçvw\94\83Ø\a+üAsÏB§¹í©Iê\11sÝ\b{\9a¢¾\87£Ù7ó=\1f\v~¹:\80\a¨ØW\15\19zØ=\81\vëz¬\13
-\9dTÏ\8d\e+ü\90£\94X)4<¦k2£Y?\13\7f¼rЮ} ëd#\v\8c7\98¬\vÔ\9dGÙìó½\8b\12Ô¤\97dyË\92DépsU\84Íc\8d&ËJÑ\974õ:tá\ e>#¤ª\ eÓ9O1Àf2e§ È$²3éÜofÞcªc\94Éâ¦\185\8dm² Ì\861uðÑÚ¢ak>ìAå÷=óãx;9ûv.p/3§('ö\19çÜ\ f:W{£\ e\12oXte)\9b\7fèÊÆÓ¶møN\14o\v\94\9fRMÖ8\8dÊO\bâ´G\17\ 5]*9ò\ 6\8d~³r7¶ ÏH\7fÔäù9ÈÕ\0¦Û*Óá¶iáÍ3ßÌKÂÝ\14góp+Áaº³lã\ 6±LÕ®YÐ\80\ eÃ$\80¬nN¶¼±\ 5ÕÏ;;§²\12÷V\9dÄãB\xÍMy\7fÇ&\ e\88P\88e\14\ 5ó\ 5\1cï°\1dÍà\87\128þ#e1¸·M'ZÝÑ>ó©Ö©Ô\\19º*g:¿\89¸\ 3\vª¨\95ÖÁ½\e
-~\v^à\v²Ê4j\8d"\11\ 6U\8f[h{Ì\8dWhQ[\81©ûCÅÞ¸R·¿^Óîì êÆê½\v\9eɪ ô\96\92\87ÿ\fr¬T3ÈÏÜÿéÀæý\9f²\1e$pî\19ëò\10\87.Rë\ f2¦Ûu\ÂS}³¦Ú\ 2\98¬«:Èá\ eG$,ä¤}¿a\98Æ\90±\17³pÙM> \14U±¥®Â&\8dM\8f©³I©
-fâ\10\1eÓW#©â¢ïÉÔ ^èª\99¬K\94©À¦÷X\82(\92è\aZ\7f\97¤9a\9c}\89£P¬\9eÊ£\ 4fÓPTôÖSÙMã`±¹\8cA\8d<w¥\87\1dj,\1aÏ\9e¨ä\91¨ðXVË\89\18vj;³\95\975\8d\89D\18"ÌB²\9e Ô\99\15\85L\1e½Ëú\91ÌáÊ\90Mi\11Óå<Ìåç\8ao\ eW\8e]\91è\1d°ìÍ\89CM;ôl\8b¢)5ì9O\e j°´;7\8cí\95&O2îéÒ\95Þ!Ð&\87ÅH\17%\9eÑL,±¢\9cC®FF\884ú>\9b\8a\\93\17Ã{\98ô´\ f\97¦!ËYgoUó\1dÅæ\82\93\7fÚÀ²\94:x\91ü\99\ f\18K´\86"\r\90¹\8fh\11\s|ÐÄSýÇÍE`P\15Ñ&Ðé\ 2\81S×\95}Ø\17Ã\18sÜ.\f"¦äMZÔ\1eÄc &\e"H(|¶ª>,\8eÞbÖ³Ýv¶\80´q\99¸i*ò\fµsÉÄïYfx\92µ,\1f1o¸U\a\99Ø"hÈ\1eìÞSD\87\1dÇQÑG«[c\\8eL-\83äl¦Çí\80èM7un\9bDaSík{©Îß~p\17×yÿ3ÈÄ \966õ²Ùðy·Á"¥d'!£ËºdC\87´iBÞS\f\ 5ÍIõà¡kÕK\92U
-}8pÐæF\18æÎ\ 3\1eÅ\17Ú\1e\8e#½Ï\90]ê]èU+¢\14±a»ÇV.Av·ûÙfV0\87Ø·é[E0i\f\1ce\e ¤¼3®\90ª+½É<d]mdbQ\8b\1e+G¢\19\90\85èУóN\84´½£\81+d|$í{\93Z\8e[«\8cÌ\b\80²øy\97ãÎÍ\1cÃY¦\87OÜ3j±\87PHi\8aS\81ì\15ó\88{ÁØ\89\19\È~J ñÍ@,\8a\83\12o>8¯Ñ\em[\995[d \84¬\ e+r?\ fè \ 37+!øvs\1emg7RPg\vq\8fXz×E¬ï\82Î&V&øç1\17¥á\89BóX;\aåÃû&\83Qc¡l!\ 3F¡\8ejréAõ$\8a
-ÊÇÆG@\14\ eX\99,&â²a®ú\99|´\95Ø\16Úz\93¤¦´\f\93_\98B¢,\vy\13\9dò¨È\96\fª;\eÈ\b2Î*B\8eL[Ó\91\97j\8b"u\10Ô¥À\88\8c\ eËL´0êØâ,¯Âi(¦¸K0l{´©\80Lm\ 2É8äÌ,b\87î\eo\8dÊÖ6\89\ fé\0aK\13õ0\88¯±\8dP¥¾Õ\b,+ù1\181ã\83\83úWY»z\7fÆP§\89âçØÁÜ\1fd\15çÍì\18\a`\1a¿¹ìÍñÿ³÷\9d[vUW³OÐï \a\11\f-V\ e"I:\92H\ 2\83\11\18ÛØ\84\16`B\93\fã\8eûç>û]U5ç>§Õ²\11Aè\ fã\8eë\8f\9eÚûì´Â\f5«æ¶\88\15ÿn°mì½E¢ÛÇ{å\vùöÍ\ 2lç.\122µz©Sbì\17\94i\8a$Z\8e\aC)^.[É+°û:Du\ f\ 3Ï\1d\93-f\8e\15\19[@|n)<h!\a~È¢<ËÛ\1a3\96\97\96ÚöeÊ¥êtÌFNÉñT¬pA\14å\89P8^X\84V¼Êü(OZþÈ7åäR"ÌßùÉÉ3\16dìl¶È8\ 2ul`\1e\10\1a\8fî\vOÚ3µUo\8d2È6uv\1c\11kÌøDÍ\84|p?':ÛY¶\87\ 3¹F9ɱëË*Ï©ß;\80Òl\98Ýa+xÜ6lVYºl\86&f¯Õ\86IqÈöty\ 2ö\88\ e«ÂxZ(:(\fsÚ\98fù\93Á¹]ÇÖ\18¨~v&k\7f7\1e\90áR×ÄÎ\1eÃép\1d6\986\11Áà\85-~\84ä©gÇLíiEæVÌ(F¡fùÃc\81º<-8JÞê\ 4i8ßvi\8e¾3Ö0\14\876\894«\ 3°\82Z7\8c\9aåÅP\1d²ÒJÛ \9fMR´²\15\8fª»\8bÝÐê
-b^àh[DS\9dläÜäøi\1d\9dkwÞâªÌî\83S36\17Î\16\89+\19}§o\ eIÁ\12(\83\1c´\9b\8c\90\99<\9dæ\92\e-0²¡Ã©©Jt}M'®\8aÂ\89\9a\9f>\83wä¨8\12·\82 ¹ð¤\91Y7ªDÀ\16\9b¥87hð\86\92å\91Å1\815mª¢rBñQSv7=m\9bI(ÕBï5\ 1½º%ACz}Ó·\rÐ\ 6YæjM7[È\84N§¯;º¡F¢\11w\ 3\1déî<Õºl¹t¸ä¢Ê\98ç\ 6B\f["=;³)Pj%\95=æ×\85\9aUo\93;;mM(Ý»ê¦8^GØ#ÖH\7foÓÒøäÛFd\1676Fë\vÐ:fü&¬\13Yð\90ìß¹í\ 4ǵ\8a\\84I3Ã\80\8d\rõ«"\84+\97y\91Ñú0a\99î\ 3»\86ÚذݬÕåmsë¾®6é¢#\ 5lÝmuãB\9c\97\\97\89T±¶zÏEÝT&ö0\9bíÜÃF)Ö¢\9bÃâ¬ì\9c\1c>ä4\1aL\99)ê'éE\9aÛ#«q\8b\9c\19Þìn\8dRÜ\93\9dÀ\º\ e´\1d&ܤ\18E\10\9bÓ\9a\1fØÚHnsX\eA:^£ÉÛ>o!B\ 3vº¹Í57\83çê)\13äq\9bq\81\9a¸Ö]¶\83Ììt\9d¯0â\96ÿ_+\92}C\13\9aDD>\1dÃV=4Í\8e\98ÛD\b Sº\87\9c\15×\8a]\9fÈsøVÒ\1a\e\a\1drÂî6\8e6\1a\8dÖ\1c¦Q±nÉ%Ï\1dFy\b\96é¨\ el\19Ö÷?\ eRÂ.Ízhã8ö,ãÞ\99Î\9e ÷Ú¯ÓÈ\1cÞ7\9cî´\15=<«\v\9a.1ÁGs\9bD\b'\9aõ´1)&q\90ÛB\18\8a#e \b\ 1Oò\9e1Ð !P\95\ e\1eµs\899ÑÚïM¤ÙÜ\1cÒC\9bf\84o\8d¤\82¶Å\ 6¬iN\94^¶dNu\13ä0¬uÇ3³Lk\ 5[mr\ f[\95É\90\9b.¸¤*Ó\86s1vh\ 20\f¨²FMõ\9c\98gæ\9d3\15#Ê\80\99[«\14w\ 4\ 1æ§iÂØ®ep>rÆûCÛ&8µÉpdznå\83Æ!²K7'Ï·R'ù¯\83×ÈE\93^Åj&KÙg\87ªyCt@,\9bêº3Ã4P6ß\9b%à²\95\1dÎ\18oY0ïLõ\9e\95È\aüìÔ=\96\9a\8b×\8f\8b? `E[\93Ý\1e-äùâaUOÞìp\15\b\12jñ~Âú÷nø\82M\8cÉûÉ»·\13\ e÷Ö;!à\16\8c\8fä\8ey´\14xß\9cõM\9fj»+§©·%Ù]¦\8d-\97ßv#\9fßÔ`Çv\æ\1e\13 àÛG5¯ÖâWRÜï½_ÿåêСyik?T\126\18\1f±}\11\ 3XTQKP "ïs\17=;H*7\9b
-z \84o4g\ 5pù\a\vD-\830r³Ok\14\89T\ 4õ#õ¯tdSr\90\b2Æ;¹·}\13ïñÖ\94fÒK\84HDï±PTJ-\8bâ\10÷¾1\96\84\8dAglyïy@ì\14\87÷Øõ\r\823U\16Ö¤\12\18\ 5QkvðWó^*\83=\13\1aÑ·K÷ê´þÞóÐ,¯D<H7¯®´è\b£\83î\ f\95«8 ÇÆ%T\1ccÔ7"\8dµR\18h\8f.êÎ"G«g%O\17!\17\95}\82\99\98/[#,(\ f&\14¢æ\bç\92\91\1e }«\,(ß\93qæÒÜfr÷[êèXb.ż:Ѻq\rЮ\89î¾Ø\fÞAE\91\13õ38J¦:ܹw\ 3ìKÛ]m\89ÝÊ\95Dx8L\fÍú©úuDy0íY\89TÉÎq\92lYÉ{\9eYH\17\87b9\ f\95»e«f\8b\96µ\b¢É\13ºÉÛºÂ\96 Ø7Ó\ 5\97\10§¨ôt︻\17Æzµ]Zl\90´Z\7fKØVäd X\98Zsð\97·3`{±)S¶.\93½ÜPó\fa³lgÒ\b´s\97Oè\0Mã\ 2\8aÖ·Î¥`:ÿl³xÂ\18Ãl\9cÌæP=ïÛJ\aÊQuëÞiy\ 37z+D:È Åê\8c2ì\11=>к\83\0qô\98\9cÍ*\9e\19 ¾±Y£æA>pnx~ä\0³\9d½\8dÐrÐ\9amY\äi\9czE\95°\83f3Êf\8d¸!úºç\rm\9b"P/\e\Ö¶\83Q7\96Q \88¼yÄu"ú&\a\8c\8c¥Ýà\ 1ÕUsPå\9eý3l\8eÎ\96Ú@\ 4\95<md!Õ(\1e"pÕ°IÕ¢ëë\1a\ 3\vWU§e\8f[ j\18\ 3\13º~ÓÖ\8b`½MÛ"À`Â2®{X>6\93â¶Ù·þ\8d\90\9c˾\18 YÙ4ë²£¿IAæíwqk K\97\8ag\1föY(Ï\0u\a}#ß4\¯¹¸4 \1eÇmë]\1eÞ\1aázÍÈ\ 5\9d±ñ\9da\81 \96\\8d\9b°«u*m*ÕÝg\ 6cn[\86Àw \15+$W\94\9a\81\84¤v\0¯\1a³ó»ÅmèZÞ®±òmCÃz\99ÛÖM06Í\86¶×#.*¯óìj´!ì.å?·vIí\17ÈÕ\88¼\0ý÷ÖJÒÄSÆs÷=9Ý\8b\80mº\9eã\99g\8eqãñoÖ\96\8dÄL±T\81ëT¢z=,Ók̲}\83\85Í n;;Ûh\131\8aÄ´Ôè¾Ù\81jØ"ë\80\aC,}ò¾»oÍì\9f\13\ 3
-<[/c\eC\ 6\ 4R\8bwgPh\91\97.Þ¼¶ç\88\0g\81µ/tçHC\e}rê\aÇ!\88\11 Ù\f\14;\17¾L)\eÿ·àØ\ruLw\1a6.ï\86íÇ]g\vx`3\153\17\98\82m\88\87\852uæ
-6¨$d[\7f\81\14¤\ 5îÚ©\e¬\11ÿo\vr-Û\bÍ\9bÞ\955Àn*Ã\12qt\rfvñÉä\1c&fÜüý[G\ag˪î\7fl:¶\9c\9b@1\bB6I6¬\8f\ 5¬\13Ói\v\8cù¨m¥\83¹AJ@oà\9e.\8b\89vr®Îàmä\15`Ð\18\8e½\fÕG^ì\9e\8açÆe\9f\7f\9f\99T²\12ä\ 6Ù\89Ð\9dM Xûº\17TynØZ\10\92KA\90\ 1Å\89[¬ÔF\9e\8efÇ9H\91ß ;\17¿µ\9e÷¿l/\86B%d§æä^Çk\9f%\88\11\7f
-ý\96\rh&\12\9b²5:\ 4uôÛS[sì¾£\v\9f5y3\9d5ã÷ìؼÃfÀ¾\r[v\ 2g;r}toÔÓÊ
-[õö4^\9bç9Í\19®#Xj7)-\1eÑsþÛ²\8c¨Ø3ôÙ\9b\13=\11\986Éû¾µè&\870x´Ç½Òrµ\9bV\vø\1a\8d¹cãm\85^Põ\0'»6::ô½5$«+¶[H},*Íl{\89z¶éµç=ac5Èhòr8h,6\1dO«\9báÒÓño\ 4i\9aS+\91Zé(r\8d\ 5m\93y\82Õ\85\8dAú$Á-À\11Âظ¸(9r,èA°³{\8d\ 6\1fpqôf\9a2´\95º9Ô\ eð\1f\e¢\18Nc0'Û8Fà²$wæI\9fd»ww@x)î\90)\9dÅ°OË\84ï_´±Ú°³þ\85àq\841\ e`\b\97jñ\8a(ì×\efc\92òD\9d.u¶«Á2\16ÑøI¢ÉjÈYO¶Æ´¶\15\13Õ\87+j\94j\90¡µn\99\ fKfCaw\8cá1ªùåD(\96\\93ùÊ\92¶Bn&ÏèE`ѪB\86p4\vð\18\8e27\937ñÉ`%qé\95y>Dàb^Åö·Î\ eé\9d²B58ı«ù#Å\8d\v\ fun\86(ç\8a((Ƽu4/<öø\85wþzð_ßóÿÅ\vïüå(MOWãkQ=)yhí¦DeÌõw\127AªÞ_\1dÄR\7fr\94ªÑë£\18\83Æ\88Ô, \8cðDÖZ\9b0gáQ-\83åé\12\9a5p!\98\90\9eIH\ 5âÝ z\83\9aN\9a¦0ê\86\93£\9cÌmsSÎ\86\94\8dØ&ª\frà\83¨\ 4ÖIÙbñ\94\98ìÁ\8fHÖ\ f\14òxDHks\1aØ3ïο\99[G×>\/í±·¾üò\83Ó\8fî\øäÛ\ fî|úÑ\97ß]Hýñuuôû.?"\8F5\bÌælOZÃ'²Îåÿ{í\93#¬\9fÜ`*ز°þ°â\84½\10\925\ 3)£\,E\ 1Ì\14`Qï\9c\1e\95\8a
-<\1e~mxÁ\92\ 6çO=^1\9bØ ÖÞ\ 6²«µ1_;ùiW½vßWÍÃ\b¦¡´\ eukj¼v\r½\r8¬\aR}¶µU\16\109×\1e\90\8f\87Z]\8b\r|\9f±74\9f\9eÿ\ f\92=k¸n\ 3\82ÙÜS|[áCÝ\94AaIw!³¾\8a\ f)\82í,l\88¾-õQÝ\ 4\83j\ 3\a\ 6}ýýIÕe\9dý\98b]µ\90ÿÃ\85\86a\1d\98\94\ ev!õ´ãæ\90õÃ\10§P¬ßí¹'Ú\1dÝ$òmÿ\ fU\11âéyÓ-\98ÄÉè¦Ä.ÅJ\ 3!Û \14YXÎbõV\99Tm3J\8e1\15e\10!m\1aq\93Õ÷è \9d\9e§(eíiɸ\820;Ørr8]hØaªVU\85\f\84\8eO%N¬ÄØ\ 5\7f+·\8d\99Jõa\98ÊÐlfI)\83q\13kõö\80w¿\84ݽÞ\vEMÞ:ºøÞSW¿ýîú§'ß}úÕ\97\1f|û\7f/\^¦Ç\8eá\1c\81küñ\vO½ùÝ·\9f~ùÉ\85Ç®]»zròýé_¾úî\ 3\1cûø\85'×\91O¯ÿ\7fÄ"õ\9d£¶-\9eÔJ¹ðg- Å\89ÅÊÐâµ&L7X\96\9b
-\18¤°l\17hy.\87¿\14õ\12\1e\97.\9aÔ\93£Â&\89õàë`&\15s7ªÄ\12Õ«\9a½â\9f»ØÌ×\94ÞÚmª UyëÉ\ 1I\94\19\86
-7ú¦ë¤¾\81â\95aæ\ fË\13U\aÛÞ0ä£ê$£O$ü\8e?"Ê8\0l\v/$·\98²åMw§~ý¤Ð8\emñq\9cêLËÝ\98Ñ¢Hõy\19y\ f±+'\9c§±0p¹_ã«\03Â\9d¦y6¢$ã²Ù\8eÉ\96\1c\8d\86Ä)Å°Ó±3\1f¾Î\ 1x\10\9f$¢B¸¦\1d\fÑÆ|AÛV©.\7f\18ÅÑÅ\93¢"ɤ\90²TÓfMYyB\1cÁ°±0ý³Ã)Æ2\8f y=kiÞ\8a_$6UHð\d\18d\1dÁõë\8aòó5{6¼¨ÆS7Ô]_S\97_¨\96\r\9e¡ÿÀIÖ\ 4§öò\9a\r\12\94ÁQI\8fª\ 2È¢¾0|«u¥`\94\88\98w\18I\18¡,¶Øßë-4ë\9dÞ\ eiz\850d0G\15ð¡ÐKKz6¾\aqÃe\91úÜ\82Å
-(Öá«\81Á\81~W\13¥uq*Q\8c\93L²ñ\82¸\9cydsìJ7ÊÈ<ÉÏU¦õ~\94 \1aÍzÆh\95Ñ\ 2\17oÚËë\9aY\19(\81½¡\88\18\95oS\1a\19¥ \9b\837Ået\9bÔwOüÝÿô\ fØ\12ZÏø\a\80\e¡ûä\1eþA\14J«"iÀ\88\r\89;¤®#i¬\13n\99Þü1à\1dØWá\1e4f¡'6êLìÉ=N\o\ 1kÅ\1aék7GÔ¾<p:\a?þ\92×îó\92u¨\83§\ 1⺮ñ \1c\83Ãe\81íª§X\16Ön\1c÷¦\92\ 5\9dåâ\82õ¡\14\v\92©ÕM\90A1Âtà\8c U\8a\95Cä¼Q->¥x&¿(LØq\vP×_\95hPÍF²\8fe\0ORóÆûâ¤o5\9b\9abf£z¼P£RÕÙ \ 6Ûij¿w\98xMó×\ f\ 1E\9eàI\12\9b*E:¹9JIk\9dS¼ë++ù\83!®\ 2/â\ 6M;c\82¤$³Þ\818\97ð\ 6Q\1fÇí\17ÞËT\eûfð Ãç©\ 5Ñ\éBrâyfÓ\1e·Öàt0aÌ°ÃN\19Ë\81¥Tã&ÇÃãG\8a\11¥àG\11_îð¡ùº°O2M\9c=\19W¢$Sr\17«?\1eH:F¹Kn\0K\r!GûC¨[_ö\ 6ßñx\92\99\8aðW\19\82\bÌ®b.\an_\ 2\94Å!N°uÒ°\9cV´\ 4#\96%ê.o\83ðî\81êþÞþ\1fªRQ§çM·\8eòôðÇLøj\84Æñ÷Ö»ÊæGâ®\96§IG\f\9c#C\9b\1dIÁaPæ**»\99\9by(ؽ3i³3¢În;|^³0\93}¯\9b\v°FÌÞ°\7fi\9biªðÈ_Q\87»ph¸\12éÞñê+{[p7ssZt%«÷¡X\18u%©\84\10._t\92ZçKÒÐ(Á\17è&]rÌnB5\8a\11Ýrd\8b\92¹\10\91\93/l\ 3ph\95?\ÔiØa\8bÌ\84þ¸©\16µÕ`P²Q\98\ 6¸¾\a³a3\ 1¢P8\eD\11W\8c&£L£¡ÊFMÆÙ@Ì\ 4f\19R\96ô\ 4\99ã\1dró0ä\99\12Ä\80Nl*\82k)V\8e¦=\12S\88ý ØV\91~)Þ+\9a\8d}\8d'©\82\9d³D
-` Ùx΢¬Ü¯,I¹ ®>b«ÍÖrZ\f¢\85¿Ñþsà)ðï\1dý\18µá\99©:5 =\85B\1f¥\8a¯!ªòÏWç¨2 \9cÕâé\86)¤.^®àTÝ[9kq.>È*tú1V5ÌJfóåZÈGç\90OÔGT`ر\99\14°
-0Ý\9bÕi\8b\17Î\12ç24àÄ´8¦¨c\b\aáGi[LÃÅÓ¶Á©¦`¼LÖòSP\88\\1cMHèjÒºMW-vA\85¸p\87iÁ$'xIÖ÷à3ÿÜê°»×\82ñ«\ 5BÈ\86³ó\ fþ\10ÂáÓ#Ô[rÝ[Xk\89\9a\91\19Kj«BZ\14pç°\9aÚ\92A\13àwÕulõ\1eí\92\ 5'«ÝhvóP;ÂrÖ:Ü\81ÌI\0°1\8eá
-\8dI@\14ií¾¢\0`Ë&\16\98\9a\10Q*Qò\87\955V\8fÈÞ0\9c"\99&!\15Ô=Ã_!¦ ±Ç\19\7fG£CACí¦\84Ä\ 1\83C\10)!<\8cd\82Î8§ñ\888äî¯\93\86e?£ñ\91×é_ßp\11-
-\17¹\19øîf°!£c\8amÁHH4ü)d\ fÜ\9dD_\1eu.x.q\8aë\1a\94Ô¢`\84\17¶\1cö=áu\14\ f!Ï1Ú<´"¬\7f\83!h\1a\91,\97\aX\ 2qÅ\1d\98\ 2Í° 4õ5ñ÷´ÞE¬2\r}óÝB§É
-7+)Ó"£µ¤¡Ò£\10H\13¸oi½Ê¦§\93£îtD©Iè¢\17¯"uua£x\19Õ|âìa\14 ë\85ö\9eµ.ö m\87\11\ e°Þ\18È|Ùn8ÁØ\962Ëv\8cå#¹¶\81\9f¹\99þ\ fú1\9b½\84Ð à0n&\18|\ f\88Èæo\ 5Ü\12\14X\9e`ZÅ\b§\ f\e\a`7ͨ\1aJ\10_|\9bÆf\ 2Ãd\17v\8f\ 6R(A½Ú\10\87á|Àv\ 4Ê?¾\ 5î\9e\14~«zu¢Z,Ea\12\85p\86e$°¡R8!k\87åv±Nr¥cxpxh\10ß\93hd\9bów/\v?\18&Ð(Ô»â$Biï\19'\11È\8c \85½\17ðÒ¹\1d"ö@\ 1\1cÊ)¬JAä\ 4XWÆIè¹\8d\fZjõ<ÖÝg®õ\ 5ÎLG\16µL\91\8dY ôc¯yí~¯ÙQ\8cGX\8f\94k\þØ\83\b\95\ eW\ ev®\9dbå\10\9f»\9bP×î\96ÚLè+\ 6,¡Y^\8e®#\87³h\1d-y\87ú¸úYL9¡mºylÒ\87\ 3ÖHþ£)L©d\fDE\8dE>*\8a\90ê[\ 2m(\ev1î¬ÕC0U\94N\r +®üýü4ú\12\96¼zxLõ*\1cJÚk\ e´b\18ú}´D\90\ 6»ÎÉg\1d÷\8f\9d§\96\9aÖx\8f©ÕYYjS\80ñ\ 2\fÕr, /Á\96Ï\12Ô¶³=Ò\9al5\12ÅÒ\8buç ¦\ 3è\ 2uv¦Â°\15Ö5è÷óÆ\f»£í)·c\9añ^\15t\19V.(Ê\13!-2\19û4BÊ*¯´\8e¨N¬R Z\84°³Ë\ 5ÁvÊDë\ e;VíYî73=ûcÀUÒÇÞà;#O\92\9ak\9520¶`U|JZ\87õ¯GÀ4I3UQRFY\1cÑ\12j8Í\ 1\85Û8¼{¬z´\84\7f Î\f\9e\ e\80%§çM·\8eê4Õl7U\87ÿ¨øÆ'\896¬YÁ]7Õl\95C
-\0\1eum®\1e\94IfU\9bwº À°¯zJ\f^\0vI\18&÷Qõ÷òïà/\8cQÏÞ\ 4w\ 3\9eN³\92\1e\1c\12ðþÁài´\15C&\9dÔ\ 5g/\ 2TàæjR8Oò\vþ,§Â0d\í\86\8fAþ\ 3I¸fèP\f\92 =^iX¢mÔ4ÃÌ\14Ô4p\f!:IQ\10fÍáºNÃ\ eÛ\ e±\n\81(\ e\9bQáîáG¸ÑFí\161°%\11»\ e\9b\8e\18µ±ÀÅ\93ÑU\15Ö¹\17+\1còö\99\ 3àÎ\84\ 5¡\ 45>\ 2gÄî\15ì\9b`Ú\81¬
-\9bOò\14\1eqGÿ\94\9e\0LtS\86\ 63#0H8È]Õ\11F\9b\82 ¥\ 4ûP\17 \81AÌZ\82å®sÊ\89\96\1a\91Rç3\ 1\99E¼?Â\1e¨Ø´nz¬9 P|èOÐÀU\84 §ÍÔ\8b\91£\1f\18,\8c\18\ eÚ!r\8d\88\a¹ÂÀ\7f¨ ¤)öÇ\e¯\1aªVÈ\81*\910GY8H¼ª}¹lmK\e°\f\e\1c\87*\\e!~³H\96Zs=ç,î\1aà\93ÜÉ5v\11\98ªÍ\9a$/±«O/\89\ 5\ 2ï6+PòOT]ð\ 4íOë÷)ôRä\9f\92ò\e®%\87a´7x°f£L^¸uEò\0ù\9c?·.ìîµT<È8éOw\85JáÂ'GìAòI\87\86¸Ó#6è\8d½\85äÜ]\13\8a\93\ 4=J\ 4\9cÀ\90\88\ 4A[mK\96ã\80ÿÕL¢¤ D±ÜN\88¶±\13\ e©\93H\1d¾î5\89µ\88Pë\9a:l\1erÇõ¡\81,\ræ5\93\18\9e\17b<Æ\9d\eQ\ 4\90ìLÄÁíGË\17\9eH}¿fX'M\a°\99É Â` %\ 6\10MµxÈMäßÜÄqá\e¬À\ 2\8cM"\94"ù\ 5*65»=ÄÆ'G\11\18䤾\16U\ 4bpHb®ª¶Qu\89H\89!pÜî\88Ã\96bá5nÁ\14jÕ\96O7m\99ºk«Z\8b\19¨\8dÔ8EHè\85é¼{ö÷z\b¤\8bcÙ\1fá\ 2bLî¬\ f\84\ e6û\81ÄZ\1e\9bý-û\ 3\14û`@©C\88 F\9b(÷!7¬sð\rj:8¦\b\fH\ 3hF6Ét\1a\98Ð\ 2×}±Õ\93(!\0HUzDóÒº\19ò à$7èK\12O\aÓº;Ê©a\ 6¿\v
-tÀðhMF¡\91MÈ`bV¶\rI°58 \9d\e\1e\97¬\r\81\8da½ì\rüú\91ä\10Û1ðþ,\0"\10\8a¤FSG°[b\9dT\8ct¥\18Ô\99,dEwS\81ø\98U\8c\1d\98\17lÏ]'aqiÚXÖ Xߨ \0Y\8a :\18wDp!=3 \92#üzÈMC\9e\90ªi\96ÑÐ\9c½{Z\8byå:\9ek\rBï$\8d9=¢\ 4£2þkH\8c\vlú\14ñ\fAÅ@×E\ 1ìù÷ú
-\1d\88ô´?\ 2¾\8a\9a\164aÉ8ëÕ^~\ 4\f\91¡~EQÌ\ 2Nm\ 5D»\90è%I\81í`UUËs7û¿±/ÀövT\92\ f\826Ò?æq¯ \r\ 4ú\88q\8aõV³7\18>\1e\9cWM\«H\80Dh}<Æl\b³±¬¯¸dX\92âî3×L\9fÄsB\8dP¸FFl?ú\82×îó\82\11P9º8t\7f\11êí\ 3¶·¶uÿ\97\89Û\ e×WN§Ó£±ÑÙ\98iã\88LE´³\9c\83¡íëÏöq-\ 6[\9b9ǹµ±4 Ô\ 1{&¡Eõ\11r\9dÌF\9eªZ2ÞY¤ \19òÌÀ\1ccÝ\fµ\1c\ 6\12h\96l\ 4C\ eÕjÈ\8aÏüï\90:ð~á4Ã:É%"ÝD&"\ ejÁÒ÷ëà0V®áe/; \186!\9bp\ 3È5¸bÀ0Y>\0à¾Z~\1elúT\83\8f\8a\8b\18\99í×@3ì\8eØ_VÎ\1c"¹¿C\ 3\vÖûsð4QËN\82\93\8fïÁÖ{,\93ñÌ\12h\ 6~ \91\18oÇ@ÇÛ\8f\ 1\9c\b\1cn\91Û~T\1egw´ \ e`Å+X\9a\Ú\13Q'Ry\92\10PÑ\8e`E\9dÄ!\85\9aþZ8q{\8dx¥¢pn¿\9céo¾\ 4Ñ~ù\11]#\8f\7fÃ'Aû\ 6û\16\vUAxN´Þ\a\94\b
-RKÝZu
-;è\13¼\14\89\1al5;À\89£hØ\80^\17\82xDÞ\ fõsÓÁCÃý×Î\82³¬yÒLKËM{òR7\14Û\fÜÀÏ f\fÜ\ 1ÒÔ3nâÎ\8a\0·\ 5Ú\r;¬ÐÎ\ 5gÇ4\83w \0\86¯Jý'!\84Qø\99\1a¿æ\98Øle×ÌTù\85$'ç\9e \ f»\7f\ 3¦@|zÞt\v?>Ë¡\89]_Éð\9dÌÙ\91ðVõ\14¶9ñíK&ÎïºWO \17 \9b@9\96=\eð+{µ\93JÔè§\80\18e\88¢UÛ0\v°}1e\84\b±\90 \eÃ\aB84¹\89w*^\7f\18\10@\1cî¨S Dv\89\94¹7MWß*V\1fDs\16;à\802Qi\92â\bt¯\8bØ\98\81%¦îN!«2·\7fvã`®&Æ äÏ\9c>ñê\ 5Ò 6ù\19\ 5iN°m\11\9e\84êãdÝ\14¬\89î\8b0uOrÄX,8\85áÀë¡\81OĬÉþ\98h\9dà¸\12\18
-¹,Z\9a×\88\9d\863(\160ªÀe\9cFgêË\ 2\ 6(\ÈÂn.[ÃÎXná\v\ 4¥\aÌDá½l\ e\17x\190\82äe \85\16?R\1d5D\ 3¥\8e\9a<U\80s\ e\1dUü½;:ôeyÄðÙ6\ 5}\1f¦\9c©X<øÊYý\18t^N/¡æ)\9eòC¯Û\88˱Æ\89\89Ù\8féVC@L\8ft\ 2ÛªÍPÕW»õ\0#É\87\9a2\83\06¢ÐmF#Ø\15a\80²`
-l·¼\84r\ 11\87vÿ\1c´¹\82Ï)TÍ$Vï8ì\92X\9cª
-\90\»¦H¥q4z\88
-\ 2\9eÊ´=°
-p=ÁSAê,¶\12ø\14¾{\9aïî5ó%l\82\8eÅi\b@\ 2eOa*s\18Ö\ 4\841Ô¬\13!\8eE\0\0\8fZ²ÔP.\94Ù\v¶\1cb\81'1\9c¨\ 2ôu\ fýU\1a8Dg:<f:*\ 4NïÌü\88R¿òÛÛ\9d¿ã[÷2=ð\80ý X?\ 6b\9a\1dÿUkÜ)L\83\ 3ÊMÇ\91SwÈÀîóè¢Tµm\9ar±\18\85\m\ 6O\80\85Ý\b5\99< \183IÖP\86ÈÚwG°ÍaP\85V\11Úà¼QÏ\1alk6\v:&²\89'nG¥a½ñ^ç9&øy
-V0c5Î\12\13\92ÈÅuI\8d7\0ÿ¤ú%\92\9d]\8a*\ 4âzŹ.@½Ìä\ eÁ#ü\aâ`ºuO\9b\ 1¯$9\9d\82\1dÃ\8e\17õ$\1a?-|\99d·C\8e®uZuLH\13î\0m~£yÀ<Y\7fAHª¥\8d9D\9eÕÅU¿Vù\15ñOþ¶Z\8d\81Êe\vÈÞRµ1ë<³5Ã|
-W\91å<±ç\96r\99Ñü\1c\84V<\8fi\98c\0\12ØB\8c\8a+i\81* {\13ñt\8d´°Õª¯ë4@|©\1f\86aÂ\17*2ײ\1fow\8fI\8f4ñ\8a\8dÖ=\89Mi\8dV lÅX\96\9ca)\büG\97B½{ÁD̳Qþá{ºô\ e_üÔ\17\95¬\ 1ª\ 3¢[vU3@¦²5 EÁ\82¹Ì\92)\ e</æq\93î&boÛß\18\aU4\85Û\11\ 5ôKÚIU\84Æ$\bVüLÆ:
-\9bï\13\1c\ f<ÈÂ\ 1µªGïI\ 2¼8\899\19\f´"%o\ 6ý\87\85uì\ç\r3Ln\18¢I\89¨ÄMú8{\87K5µÛíÕ\9eû\0?Tó\»%:LÎÖ<\eøIî\8d\rÅE\bÔ\14a\ 3\14ap#P¨B\98Z)¨^¸\0\95¹¦!{G\9añ$ô\86\9a²(\95Ï\9d\8a:%·ÅÞ\bKè\e8ôÇ^óÚ}_\13hFò\a\ 3¯\800ñ\ 1\ 6Ñ\aë\8f\815Oµ\0\91 ÄmÇ"\bÖ\83J\92\11Õ}*Ò£E&\12'y\fö;\85³HH\1e\1c\ 3("ð\8c\a\16[IÖY{\e¶\90Èõ\865\9dêÜ\94û\99m\96\1d·\9bÊ(x;
-û\r[ëaáv\81ý\86\15\ 2X¬í-f£Æ¬ÕÈÑ¢\93\88TWÙD×\992\82\0\86\88\e\ 6\84w©\98©\97\83i\ 5\8b@F\aû\r-èïCÀb5\1f\1d\95ÐÇk\9e¸\95»¢¼\84.ç\83D4\9b¸õ%=%ë\bl-ôOrîÃy¼w¸\92\10ÜpÊYJii7ñ^Ùb\aK¶E!{\1a´\13\87Ég\16-È°>ê\98\8c\86 t\82S¯j-6\86,
-\92\9d\8eȨ\19Ô\83é\ 5Á¯ªÕ£é~î\97\ 4³à©Ñ\86X\ e\8f\82ï\16µØ\9a\ 4:8#Â!\96\95«m°ô§:÷ã´¶\84ýÓÞõFðªÎ켬\15\9còÇ\92¨ð\8bÓs\ 2\8a6\ 4f\96¾k7L\ 2&nt¡í\8dp\16`:% ÍR\8c\80\ 1\99"1¶\82ä´\eW\91q'b0lß\99\8c\9dÅtݱè\93\v\13\86.\8a#¬¹dÜ® CIú\9cÊGU+V\81\8cDycÓ´#Áß\1e¦\É'\9f\8c²ì(z\ 6\87\9b(-ë<0Q\91\15o;\8aé\8aª_RS6H\89t\8c¥YÖyÖE\85Ö\ 1\ 2g\91\9c×Ú\18lgAÜÄ&\198\bYl-\95PN9\16\125¨¤WpW#\1f\1aö«ÈÞVÌ{ª\ eéI\ 2Óájbxö4>O\vD%ÊIÒQA³8»üÙú!É]f\ 3ZrÑ\8aFÆ\80º>öÄ55B<3tÎ\r°Ý=\ 6\9d\87%Û\18õr,fítJ(³a\8a\90ñ\r\15\e©J8\8d,ÑêÆ\b\82P\82)\96\86T¯\10(\96x\ 4ûxTWO6ÿ\91Tà;^ͪ\9c\8a"Íh\9c`\8ep=³\91»Ì
-\90\ 3Åf»\1d\ 5a´(¿I\980\ eØ)Àù0F\1f¬\12¥\1a¶\84ù\17\ eâ®\86\17\15ñc1\6\92*B\94sB(º\1eÆZ
-Kµê\93_NÔcÖ\ 4£³\ 6\15Kð*Ù
-\1e1Ð\ eßíÝ\1f`wþ\9b<hø¨\85Xè¸gÖ\1aE\13àJN\8f*\83£²7A²\9bÈJ\0lI%\ 1\15B¢æ8âk\95[\87\ 5ÂV~KZà°)\9cg1´U\8düðjbÄi\bi\fçX\85UZ&S\80Ä\9b\#&0Þ3\fc\15Õ\a%©\935|Õµ\0â6\8dë\b-gãBröUý _
-½£i³`3\93\ 4M\15\ 2\1a\90c\15è\9b
-Û'GmS'V\81\bì3ÖY/ <¨Ô\eÂ;0~¨Ô°Ñ@b\98\r\b\9f\94^¦\9aW\99×\bÚ\10\938 à \93ôÙýíI\14´ûèË\89ç6\9dÆÞprä\92\ fn\89\ e5Ä \ 6¥$\rÕ\92\9buÚ9Î \86\8eÀ²?\ 6î\16Ê6\98,JI6'D\8eÅR2xQ`R!\91¡5Îåµ`_`\enË{Ã:i£è\10\1f!V\98f\8b\161¾èö\13O\88µ\9e\9c\1c\ 1\9f \96ä..%4\8d÷Tm\7f_\17HQ%\ f¾Ýζt¬AÅP*ÜP\0Ûv $sºØ\8d\18eû\88Þ\9d\1f÷?Tf[ñ_9\8b\8d\84\v\87|ð½Êl\99Ò\9a\95m\85ö®1ø\ 1@\\ f\ 5¦\ 1|l´^\16+²¡\8aÅ\bfźXSÄèræ¼õ\80EXøÞ\86áÃTdûq\97»v\7f\97Ã$ \eÙ\92\9cÜ\a\81\88<\1c8\ 3Cô\94&oþ\81\ 5\7f\8fÑÎ\18\14½»a\87\81c\8a(àó^[1ºk\94ED\9be\9c0h\11c\ 3\as©Øá(ÜR\f·\82\81S\fø\aêZ\8e\e/ɨ\9e\ 2Ï\9f\89"7Mdd\90n90ØÈÚNªLJå½ a\17I@àU û\0J5Ê\9e¢,ÓÍ\892Bjæ¡)6I¦\ 4aÝ8ø\ 1Æ\f61\99\0[7\b\85msÞ1`\91 hÖÐ:ëZ\97\ e\96Eþ½C\8cizñf\ 2\95\8db\82*ì\ f·r\92\9a4éFî\8eX§\94\ 6\ fD¨×\eÇ®×µÌ\11\87\f\89\0\1a6/\1fY\ 2J\850\12¨XÔ:BWó\96G9³ÊÑ°;âzT\ eL0tË>\85<´bõv°Ìé¤.¾x\95\ 4`¨gÇÔ\99aç\11Íþ\1f²8X×xDþ©·½\89®\82\ 1iÁ\18Âì\85\18\80KæMg\ 1sÙ\9f\ 5]¯½aʽØ\fÌÆöí$\rа¦&©}\83ù\11±\1e¼\1c7à\8dv|ªÃcª%\ f-\8d\ eÌ\v\ 3\13æò\ 5µEk\90wò\ eîa%\ 4þ
-\98\98×\82 åi±Âð.\vO\1a¤sf:\19ú\89\8d¤>zÅ\1c \94ünÚ8rc\ 6¾2©¯\99Ú\91\8e-\80®Ø»Dt·\rFý\89á»"\9866\v8qMj¡èk\ 3ñ P\v\16EÚ$õ\13³ Ôí\19!Ã\e\b\96ü\97V$;Nõ\99F4éQ4jI)\v?1x\14ÁŬ;q&\ 5\8aiE\95s\19äã6\ 3{¡\8b\84ïHyîÕ5@µ\ e·\17\1a¸r\88\14ÐM·\8eàÏZ\10?@û\99\ª\e\1dH\80±'\97mÏÖDÃ\95n¨\9d\e ®\86C\f\1cÖE\99\88T¢÷ÁÄJ1JD»Å\eßQ_\8a\9bj\9a1ÅF'ÿô1¾;¢)í-·ÎÏ\8d{\9a~µ®§\18\f\8b=\{\aøõµ\80\98-\ 6÷U¼\17\11\16Ñ\9f£\8b0Ó\9bD\85)\90Ý\b©y8\89°\bBå\ 1\10,"ùÉE¼\8b8¯lÄá*ßÇ0\1c m\ 3/"\aj½4µÉsÃ\9aâÁ\7fBÛTd¼3½s\aè\1d8P\92{4Ë:\ fm\vm\1cØ"a 2¬\85:Ò¹*\ 6\ 6G\8f\15N\ 2d®É«\9d \a\ 1\1f:ä\85Ó«¥%\88È_¸\r\9dV\ 5\ 3\80\964\1c\9d´Ñ/%5pá\1e\9bäuAHÐüÑHZ \13\9cö\88L\ e\81û\804¡_\18\968ìMZv7B\8dMr÷,\ 6ã\95DÓUÍC\8d\9b°H\10\84\14\ 3,aà·ÔÎT²\14v`¡ö5¾8Ù@ðMØØtà\0\9e\1f=?ä\ 1.w\1f\bÈ3\1e`\ ep6îé\ 1\12ZÍ\8eJQî\9aB.Q\1e\15\1f®Qxù\18*U¨\v\13i\85Þ\8fÂN\15\94&\ 5º¸û̵(\93\9eq^è\9d\8a\ 1ŽÀ\1f{Ék÷{É\88ì\11±\15Lú\88·à\97÷\ 5\ fG|\ 3\86nMhÒF\8d½ ÃrE;e\1f6DræX\90Ö
-¡2Q¹´¾Ï\19Gf\185QÉTÉ\ 1Ǧræ\13 \89\88X¤\8be=¨\92\87Ó\94O,\0×pA\19¤È\9b+ò
-\87/\1f]ýe´$\ 3Þ\98e\epfÙqÙaìzp\14\95¾\14ø\11æ\19ɲ\ã\99û$'\7<\f\16\92\bQOy%,ØñÆ\15\85ï\93¶\98\9b\ 6ùerdpÙ1).\7f¿ç>Âæ\1aíÿ%Kùôô\1e¶µ'Äîäåfã\9a\90½\ 1\98S4û~C\8f Û;\¯ÂÜz\8cj<y0¥\ 6\85\81x;\85\94\83H&u\9bÈÉkgC\14º°¨¬\ f^\93\12ôKÊ\19\16ópô\ eÅn^H\10\8f/ÛÔ\8d DL>óÍÌbß\9a\99ÐýQH¸§|Ö\92\92ÿ\92íÿPA ò\18I+8¶ ªií!h\1c\891y\926\b\9b¬ÓÔ_\8dU\90;\13VOÖC±R\82a\8c?$ý\8dâÕ\87H>»¨\1c\e\13qüúÍ ¥d&âòM\r\ eX2[Ë"9w,\15ÇÅ\16ËF\90¦#|\ f\ 4ØXHÄÜ:\14\96ã<¦Fä\88¬¯ MÅ\bl\9be HP\14\9aÍ];/;Ó;³tMÛL5¯ÐÆÏÝ£lwÏ\91÷«¹\1eHÂOûàLÿ\9d\1eÁ\v\16\1cÉLXD\8bu\f¬YÛ.°foøåÆv^FmD>r\87®\17¸¶\19 ¨ »\94\1c\ 5\ 5\ 6\8cL`\7fªÎwhea¼ælYÑ0E\1ahÒÙÆ\84Ä_1°Lh\1d[\1dLÅ\0u\1cáËÔ\¼\ 1ò£k \ 1\ 4@4Ö]\14ò,\11\95\ 3ÃÚvVôRëÜ\9b2´g\rìÀ|\12B\b\1d\81=dfq\ 2v£±Ôê\95³\8fßLêÅ\9cÕá\87\84m\9eÄ\99ÃD\15\ 5d\9aÁ-\83Ô±!'"¨¸q\80¹Ê¬mé\94``U°âáo²^2î)$E³O\14D\93Îs\96\83%B &\94q¯\86\89KQ\1chÒ¨Þ»\12çFÃ\ fz\12\91xÑ3\9eD%E̽<\89\9a£\92;\8d̯(\83!n$\1d3\9c(x£¬\ e\ 2\14\84å\84é$´\Áwê\1dj"ì99w&Ù
-\vzå×QQ}ûr%~ô5¯Ýï5QM#%`KR=\7f@\\85Û@e\9d÷ô\bùÚh©E\9aHG`URJMaävQB\93d\99\8cxê¡ab\81§\88(\1d04x\a\Hc9,¨n&$rH \92+\10\ e\ 4\96\81)ÇüÀ}À&Þ\ f}\ 5ÞAt· ä\vû!f\86u\12nns'p\f\96\b§\17¶@ö\18ë-²\9e?\84\0C\84äë½\ e\12'\8a\7fË_˹Ww@\8ahÿ°Ñ<\9d3Ý\ 2\83)\19`6\13\16\9an¸<"[\9cæ\86éÆ D\9c¯\83X\9fð\83\\9f\963&\13²u´\98r\\12\18\10É)¶\83s!¬¼T\18¾Xr\8fg\86Æ\82ù2ðJ\8a`2,e %\8cn=a·\91qf\ 1\ae¶6\1d;[ÉëH¢yîîýðc\f/¯â\83ÍÙÏ\1c3¶s´l\90pâÀ!`=l¸?\0¾Åb\12,X{À\rCÀ¯¯O\89\1f\10¦Rm\r\83\ 3\ 4\839?\94\9fßþÞ\8fÈbd1]hnüÍò2VÒ\15ÒÐ0\8bVÛ\12\89yà8H\e¹"Ül¨Öî\82\9bĺ(rï)ò\ 5N\17SæD í\ 2R*\92Êð¡p÷pÙÝk\ 4=¸Mü¿üèSï¼zë\97®_¸|á±[\1f~ùÊ×\9f¾\97ß{üÂÓ\17\1e»úR\fïã×?êG\9fºö©ÎºðÔÕ7w/½4êõ\8fN¾ºó\11þ±<ÿåcáÊå??öÁÍg^¸øصúx{ñÉrãÒß\9eøÏåÛ±¼ó§o?\9c\1fýóò»íoá\9b\9bãò\1f\9eþøéO^MÏ\ùÏÛ_ÿ!ßüì\99ïË×\9f]ÿO¾óÜw¯_úËÇß=qóâ\aÏ]\7fåÊgï\97w\9exææõ;§óÙ£\8b0¼uõöÛÏ·'þóô\13\9f¿ðî7ׯî^üëçÇWÇ\87_\7fòĵ·\9fïO\Ù=úñÕWþúñ¿â\13\9f?Û®|þÏ\8fþóÄs\9f\7f{\1c_øúë\17â\93·þüx|ò±ÝÕðÔ\93Ï>\13_ØíF~ô\91÷_Ëÿ|ä\8döÄ3oß¹ut\11ÿçµòõ§×o?ñü;ÿ¸}õÓ÷?y§¿vòÍéîÓòôí\e\1f>rróÉ\8bß?öü\8dG¾zçO/\{·½ÿÂÓ»Ï>½ñá\95?þ#_\9b\8f¿\11^þÛåËñ\89;¯ýõ꿯>vëú+¯<\93\9fºýäÛo>ù»\17\9f{Û¯b¿ýìç7\1f\9bíñ\eÇO~\®_{í»xõÓ\ f®\84ë\1f\7f}éÃ'þóÒ\95Ë<Üÿç£?_\7fêÙ?¥|òÕc/_ýìâs\7f¾yãúKï\85§.æ\ f\9eúò\91ËO]yûb¸xýã\8b\97n]û|÷\9fxt1|ôú¥º¿,ÿ§ÜxýòuåWÿpåò\7f.½qíóôìïÊ÷\7fKo\95çâG\9f]ýòæcß\¿téÑO\9e}ìûôѵWN>|á¿\9d{óê\9bß_zäèâµW>Z\1eñûß~0pÙgÆ\9bß\9c¾rõõçÿþƵÖ?~í\8fí\17\9býÄ_ï|ÂCÚs\97ÿüÞå\7f?û÷\17®<}û»ß_}í\93\17®\9fyÒ;ÿÆ\8bÞ=ýÑü¶ð\aô]n\1dÞʳßÝÈ'\8fÜú*?:>ëWû\9d/\9e½öÉã\9f¿x×q¸èGö¯OÜz6´x{ð´ÃûòÿY#ù\97þÙçß~ú;\1c÷Ç«·çé\95\831\86\7fzæw÷ñ:ü¥_þîúS\1f¼öäÍÇ¿\7f¤]¿ñÏ;O\87¶ûêùsÿðîîÕëøÙ\1f®\81ññW}M\9fÿ<yåËÝ\eÿ¸zûú\aqýyå\91k_\ùâ\8dx|¥dÞÍå\7f¿sòïë\1f?úèñ\8d\ foÿáö\1a¿/Æ\eO~õZ¾òÌóåâþ\ 2Û\eÓ\ 5Þ»tíó§ãcvÐÁí\9dý\873gû¹\9fÿn=Á3\8fÜ|¤Ýüäò¿?|êdwçÑ\7f<ã?ðùïÖÜ¿ûß\1f\89¯\9cÿ\9d\ f\1f¿òô?o}ÕþÞ>{óÚç¯þå©ówóß\ eY÷µÿ.üd\9f\7fvõö«W.^ûâåpéúÇ\97Þ\7fáÌ\87?û¯Çï>\83\8f\9c®üõx\97Ê;\8f?ú×»ÆËZ¬F¿ù\87/_\7fïèâ\8dGëîoÿmê¾~åéÓÏß|êß\1f}ó\88\16¡mF¬\9fؽÛþþÆ\a/ÞÜÝùì\95õ?\7fý<¼üz¯á\95Ëï<\9bN^½õE~÷Ó¿Þ^\v\)G\17ãñ¥?íÖ\9cþæÛ\e\8f|}åÉ«\7f¹ý\8f/Úw\8fÅWîõ³ó\8b\9bo¼}õë\17ï¼ñ¿\7föÌ\8fþ+\1f]¼:\9eüÛ\1fÿûÏ~~õÆí«}þå\13\1dòý\13\1f¿\18^~â»g\9ezõv|?|üÞ|5½ÿþ?_¾ôù§ï=\17^~ák÷:m\8d±ÿú&®\7f\91~wýãùÂ[í÷7¿Ü]}å\9d7ÞÝ}ú\9f\8f¯Üøà\83G/Ýøû\9d÷^\8ew~ws^\7fê½??zãçþñÇë\1f¿ùñ7×?úæö\8dísþ\9ekÍÑÅöÝ\9b·Ö\98\7f¥sFl3YkÑÙ\7fÍ´]¹|óÒw7\9f¿õñ\17wO{ßÀn]9}ü\ f·ücÏ\8fÖ×ÿðôÊ\8bk·¸8¯|þöõpõÍ/~÷íÍ\eóñO\9fú÷W¿\7fô®'½Ú_ú{¹þñí\7f>zóùw\9e|ýÆ\93³~¯\ 1{ý¸Þ¹ñÄg!_ÿø\9f·ã\8dG\9f¼óÁ\95/>*Ïß8ùC{òð\8d¯õÞÉÝ;Í~\1aþ\8c}èèb>yùÃ×Ö7¨íúÇW>}ÿÚ\eo>?ò»¯]zìæïß:Íضã\95o_ÌO\1fÜèÅ÷¿þ>¼üìÛíì¾prí\8dG~\97n>öñ+)ÿë\1fÿ^SáÍ7>»ÚÿñÍ»ëY\9e\8b\7fû\b«×³×Þ¸øékkêÞùû\8d÷Þzé½s\vå\13ß½îwóÁSí?ÿã³ë\1f=ó¯µ ~úÖ7×_:ýì\91+\9fýþïϵöÊ\9fnÚ?¼ýö\87¼òÑE]û½§ß}âò§ÿzùε/.>\7fc?\ 4´ÀÿëÎë\7f¸òíÉåGn^¯\7fOæ$Ø\ 2ÿ\87öMxþ%Ì\8dçá\99\\86£rã®aqn\17{ ÿsæ*\97g½{\97{\0Wù\1fÿóû\9fuù\9fÿÆîçò\ fò»ì\87ÀCøú\ fl\bü¨gùÉCà\17zc?pù\aþ]îíÁþJ_ÿA\f\81\1fÿ,?e\bü\92oì¿_þ×ú.÷\8a7~¥¯ÿ\v\ f\81\9føÆ~ä\10øÅ¿Ë=/ÿ«ÎÊ\a<\ 4~ðY~\91!ðsÞØý\ f\81\aó]ÎÇû¿â×\7fÀCàþ\9eåç\ e\81\9fýÆîk\b<Àïòp½ñ\a6\ 4~ijü\8c!ð˼±\1f\1a\ 2\ fú»<\oüA\f\81\1fû,?m\bü\82oì\7f\f\81_å»<\oü\17\1e\ 2?éY~ô\10ø¥ßؽ\87À¯ù]\1e¦7þË\r\81\9fþÆ~Ì\10x ßåÜ\10øÕgåÃôÆ\7f\91!ð3ßØ}\ e\81\a÷]~ÿÐý±\87\9b\1dýyCà\97xc?<\ 4\1eðwùýC÷Ç\1envô'\ f\81_ì\8dýÏ!ðk|\97ß?t\7fìáfG\7fÊ\10øeßØ\7f\e\ 2¿âwùy\85¢\9fÿÆ\1envôG\ e\81\að]î1\ 4~íYù \87Àý<ËÃÍ\8eÞÿ\10xPßåì\10x(kò\ 3\1a\ 2÷ý,\ f¹Z}?Cà\81~\97m\b<¼\1dù\97\1f\ 2?îY\1erµú\a\86À\83ÿ.\18\ 2\ fÙ\1fûE\87ÀOx\96\87\þïCàWû.\ f\f7t¿ÏòK\r\81\9fúÆ\1erµú\9eCà×\9d\95\ fv\bÜdzü\ 2Càg½±\87\¾{\bü\86\1eüU¿þ}\ f\81ßÐ\83\ fô»ü\86\1eü\r=ø\ezð7ôàCûúÿ}\bü\86\1eü\95¾þ\8f\1c\ 2¿¡\a\1fÌwù\r=ø0¿þ\83\e\ 2¿¡\a\7fì\10ø\r=øp¾þ\ f\r\81ßÐ\83¿Êwù\r=ø\ezð7ôàý<ÿ\1fç[\7fþîÆ\13\7fj_\½}û\91'®¿ôáé\9b/ÌÛ}ü¿çÀÔB¢\95táõ/>8ùèÎ\85w^}ýÂõ\ f¾ûà\80Æ¥\xõ<\95ËÜ\98ÙÎ\88¼\a\90àV
-:\81K\88êPøÏ\92#Øj¥ѡ\ 4Aª¨\18Ö\ fG°ÆWª3T\8aº\9d.Ss-\88*zÒ\bf¯0ÄüD\99\9eX!rPLgb\ 42¦Öx©E\13\91\19Ð;\8eÐù©¦YCÁDXF\9bÒ¢\b\81â\9d´\rc¢¤Ò\1c,3¸\85bT°$#´\9c\99¼Ýúõ!Ú¿RGåQdÀ\ 4oÏz^Xò%g\r\ 5\1f YdA\11ÚI)\98Åõ\1fk5B??*Bü¬\99BÇȺÍeª&RV"/·,eè(rüÓPì\97¥\f\8bß\8eÓD®;y\1dqýf\96XÀ\87\8e»\94P6\88£q\8bÙ_88HÁÍ^¡co"\88-Ù£å0¥_XçhöJf3åX\91:â\95Äa$^Å>A\1aA\82@q\88/\1c\9fSR\1fA2¦±LÑ×R_\a\9cY\91t²Á\98«ðr¡\8cÐ¥\7fA"NHÊÂ"ù\ fðÝ\81\88\95\16p\8cS\7f d\9b;\9e\17j\10ûØL]G\95\12Ä¤× Ã\1e)_ :Ö>\ 6Énkpº®\ 1)<¼Ë¸çòí\1crY"`4´\1aím6ê«Ò6ô6%P\ 3\9a¯\88û\86&^6&¿5 IuY)aoçA'\1d\96Ô¢~\9dêA°HaØ\7fû\84\9f<µ*yÂ\0Å$Xf7ÆÈ\ 4²+\f\956\8cr\98Z¸\1aa\12v\ 4y ج`\19)\e\1dÙú\fË\827WìùbÑ\80îëCÖzðî Ã¥w.\ erݧ$\84×Ë(C_=;{s\92\9c(Æ\ 6)°¨µ\17À=Y!8Þ¤cCQlMôJº×\ 41<\1dñ\19É\ 2Ýìw$\10ÕÀ\1f¨Y'Bñ(©\18½¥!Í\9cÚKâÓFRÒ®{\8c-ø;!ñ î±·Ðy\94ôh!\97\81I·Ô\9aTJs\92\ e@\1d¦\97D~Ìõ\90ë\a¥Ò'\ 1\ eÈ\1d\80¡9º@êà\1a\ 6[7A6ÒTÒ\827xÖ2£\1fSI7ºlµQ¹¼\8aæ\11\96&=\16\b1\96.\v\89KÁaY\92\9f7\87\89VB\96*¶lôk`\r\85Z3,\95\9a\vɤ\91qZ\96ò$L\1c(0\90C\8e\16^\r\96n´ü\91J°\8dlç\15\1aç¹Ð \14i°tÁ\92fÔ`ââ\8dóÊ~rÒ\ 6\8b8\92aé¼Í"m\ 4Ra\ e´Ë\86\rG¤¨X{\1a\94ª\9ah\bkåmB\17ʦ9Ç..W/9W¡Ô\vZõAÐí\93·j*\bT\85*ÅîrÓÀ\15ñõþ.Û\1asCwI} ¾^ðøÛ]\9afÄÚ 3\7f<\92\ 5SÔʺÜHÑÔv$8J\e·2Ø@LÛ Õ\96\8dÕ<b?X\96N\85-ðÃKu#¶Nªê\v\9bè.,\94&ÀðÕôi\ 3$Ö\8d\16ê'àrÔáÓ<\84ÞIìIJ\94\98PÔç\8c½`Ú$ZB\8f|¸Þ ¶%\89)\8a¨Å\11lû\89`\1a_×\1f`\14$ßõ\01(O[¶D\1ef(S\91f\1a\16jÍ\8157\83<\19ç\81h\11\16n\1a;\9e'\8arØ \9b\e\ahG§,\ 3Ûîº\9d5Ôºn<¤Î\91\ 2õrn¸\112\ fë\98*µU¾\ 1]\1f²\99A\1cýà\1dçÕ òÑ\8c*\17®\a,¥\98T\12)daI9ÙÇ4²^(¡çn6P\rò¼\1aL\88q®¯
-KSDöëv\8b\9dW[Õ¯¯Ù¦ë\91H\92Ê\v3ê¼5\ 15TÈ\1dxÂóÚ4Åø\9c0¢ÇÁ\92%Õ\9e\ 1ÞÅ\92l\81&é+lR
-ôñÃ÷äÏ\a=\aZjêº\1eu£v<ϵ\86"\84,`èâ>\a¯«Y$¤@\19\896í´MF\82\8a»´H#ê\8c¥\15³D?mS¤\80\14\1f-=\8ah;@ú\91\16Òÿî\15ÚÎÚ°4ßeÉ~\9e«¸\95ê·)'\a¶\b&i©z\9b®Æ\80\10\0ÄÜEÆHZ|\9e6LÎ\ 64Ü jÖAC:\10\92\ 6\80¥\88T\99DÛ'<-I¬\18þ\e¶Ò±q\8d'i\10ÂR\9aÍóí<p;VÝAçD\98X¢ýC\95&Ë̦HÜ)\19\12'\\9cjÛ\rÄ/`1Ñ\10\90ub\a\9c\10\rk\1a\9aëuq5\9aË\11\1aöëÐ\14\89\13^jÖ7\80\94H\9cð\0l\ 3ä'ÄYk9¤ÒIÒ\1aHÃ\9cÆB^Öw\82¥ÛÈ!g:î\11º³ÙXÓ±¤Ì¦\83%F\867B=òájd\99ãdvS\8dÇw\ 3SéÚÞÖ\825µ\16Ò\1f\83¥ê=\92#\1c·¸\\bjÍù\1c_N(ä£õÙ
-H\\ 3ü\ f{ÕT»\86æG6\9ar(\84Dè\82\14'b\ 6Û0\7f§^\92ðd\14¯íÉ\11LkòKk¸Aá-\81\14]ï5â^aYS°wùHyÒm\80\8dã\8e¾LÃAC\12&¸\1a\1d>\1cÒ\12\85I\924ÐuZÈ\9c¨\f\81:/g*Ö\19j\ 4²\ 4®\9fÉ\18íñp\10\9b©úJ\1c\8aºq\93\8dêX)`©ë#AaÎ\1eÏÎ\9aàÁÇß\85\9a\8c°\80¢\9e\16\12µÂ2\9bt¢àÒØ\90\ 4\95*\7f&'ãÖÇç¦\85ÚÄ$¡å4\85uÓó\fmè&E|Í%u=\13,¦?
-YΨ/\a\r+Û¢©m\ f\8b)âÁÉç\8dc=¬ò§ùéOøÅ%\1f\838\ 3ÜØ´t#i¥8\13ÏkSñJ\eT§Â¯\8b\1e\1c¶P\ eß
-4\83Ö\8cá7Èv\1a-úv$8\96\rÚlaB7(^\90Ðy\82Z[\84®·´Å
-f
-äÚ¢æ:¥L\97\8fÍ£¤Ä@rí*\ 3\84\94Da\1eøÉÁ\8d_§î\92"¾)2z5éZ8 °Hó\1eo E>\1dmÅÞÊL:Ï\14Zæú\81içQb\ 1\16j[Ã$Å\v
-6áS\81ʺRY\12\12Dø,P¶¥°2\ 2Iʳâ.{0\96b¨\84®\83ÖZ5\92\94ÈFäP\9d\8azÅv.^fØzRà\&§Ë0Ý\1a\10H÷Zi1Íã¢\19\81\8f0ä\93K·\96#\11Ò\ 3Ñ\8eâë\r\16+R 6\8di\13\88:iøuF\a\1c[ò"\8f©\8fÎÍ\1erã¥n\13O*-\18ÊYë\ 3õ4hI\83\86<íï`\13\bÇ0OÐä¯Ð2Åæ¾^EÖ¼\97&:]F\e`\91âìà\fGz\81OÒ«Ø\8e\91Iàk£\94*\14:3÷~¼pm H\ 6y<\86\93\94!Á£\8cA\8fÏ$ý\8c\12]\1c\83\ 3\8cR#%\8a\19\1c\16 x\82>ºv\ e\81ÈÍa\19\18L\9ep \98ü \82¤\81búB\a\96L¿bY\96\7fZm\80å\M"V¿M>åõ'\19á1\0ñD \12\ fÃOI\92\88ÓK¤°NÕ\1dk\88Ú~¬\1f\99þX3\91U\1abRzöÆQ[\92>+,1S\87À\9cWÍÒÂü\16\14>3o(à\8bO\93¨ÃZ\1díu²¢#m kv\16ÓÂ¥®\19W\ 5nò°@Ø\f\96âÇDä%4\ 1\92n};o`+êvã1Ò¢u\82¿d\13g\80\98Zßh®è\90ûÌ\9aÌ\12Q\0ÿ4\fµ:\vxÔ«Ä\1eVí«eø¡°dná°@´\f\16)¸¬ñÐÚ6$\9b\9d\96 +CK°«Em\98\9d~¡\86V®>Û¢)~\92\1d\9e»jå\8fCNÚÆ7m\90\8e\10\87ï\ 4½ê<J{býÎÉ\84B©\ e\88½\7fy\9a\92\89kAk^\88\8a£`[\81QçQrÓa\19¼M\88Y÷l\96 \aeB\18ÕÄg\90Ø\83Ë"Q7\bÞ"\1a\80;D:{LAi×Â$9±lÒ(ð½B7`\ 6-k\99]ke\109;sQðl\92«í\98\8d\16ÄÀ´Ähç¥,9Õ\16\9a»zô¾ \83\84Ô\13}¿:MÀ\ e+#,¦ Ñ\95\8eØñ´Â·É\9f\82/?£\94êx\9b\10\9e\80%5çO\8fr·i3E×å6w\1d5¦\89Mà\ahaÒ\0\96Iù ýú4\ 1\8a\ 6iÕe \94èÄ;\97\9b\bñî!\ 1ñ\15>5ó\80Åt¿l\18À0hIçð©²0\13\89aØ»Bºi\1a\1aXO tD7½P6\9eqª,\fu`!µ½Ütmí°\rùò\12\95\84A\91à\80\7f¨y×$\83\89\83jÑä¤ßÌ\9f\81'W²¤(q\96R\ 6\90ÍkòeW\1c¸f²ékO¤=\aòlqS»_1|w\91õ.Á?ÄðÕiû!\ 2\8eX¢'M[XàfÆ\1e\10 \8aÙ?6I\8aµu\a\99ò\92¸\ 3¤ý\91\8f\88¶\80Ó\89`ÎDr7\90#\98qËÚ\ 4M\9f\1ex^1w\8b\13ª)\91³\ 6¸D\9dé((ÿ²¼\88h;\ f\92\95-\9b:ß² Ø\84Á\ 4]\86\9cR¥À
-=\14\b\83#f[®\vò'6ë\10z#w·æ¶ÆÒ¬9ZÖ³g¦ÿ\aâ9e\14cÓ}¯\83U5XqI4KâË,S\9eÂf\8b|\87\9a\ 5\92/*\e$%Á½\ 2§á\8d\9bmmæÈ\87Ã×éVÜÀFr®\96\ 2i\ fjGDS:¦|@@\91\ 5\v~\8eI\19÷ºÜ\19.ïÊ~Bb2Òí4)Lª-\ f*^Ò¿\89&Ù\18BÐv²Öi\1dŤï¹Ëí¤*À"\11\ 67F.äµ\98u\92À\ 4UW \1f\85H\13²4\ 3«\ eªD\ 3\93ÖÔ\13éû\9eÊ6,\ fR#\12êË²Æ K"ãÛ\ f\9b\9b\fw§FÈ ^ºÎ\8b\95³d-\12\8a¸\97%º%+HqMW\9e\96\14\96£ªB\ 3_4âD,\rg,Ìÿ\9f\1c\1dØ\92.\8bì\94J&\10Mæ\8272\96¤Á´\1a\95\bq9$\11ð\8aãPȧ<\13SmMâ\eÈß4¦Ü©\86:\8aekÖ\13\14ª¾0\11ÉL\ 5\1e7\9a\9a\ e\93 üz\11\81÷ô¼Dff\ f:Ók§åQµÈ %°eh \19\87\88\b,%[¸Ö\ 6\19yOÊv®£
-\85Öc×Jϼ\bV ¤ì\8a\12ÜÌß`C\89P\ 1JºÉ\96\87²ùÜ£\98d¢\1ao
-\92|TÒ¥H§*JÈ\93É©nµ\ 2êÎ2\855\99\eÂöÓ=ÉC}"\86½\91\99'J§*ÄM\95\99\11¤\ fLº|K\99!cÛ\¿¼Ø+çëEÖ¡f\9d'\81z\fM8Ø;\9e§µ\12ù\93\84¥jàý(³Ç\1a\fsv¹ë\10¨¨ór\14NVFph\8cëv;Ïò>ž/å»,ß\99\11G*\15ÃÀ\19\965´¬ª0±«\ f(ë\98dß\1a~Íò¤r\80¼ö@K¶:C\89¼OhIY½`½\9eêyÙÂBRóëa¶Ú\ 3s\93»{¾j\15ºú%4ã×\98_Ã\bgt( BfhB\11UÕÜNá¥Ài\8f-V©ó¡ìÈ)m94\85Á\ 1Ú\98Ü«K\94\9e:3ΰ(\8eB,\19\94Æ\9cHØ\98Ä6EÙ´ï'\85¼U?ã!)¥©vv±¬C è
-ÃZb\14p'Ä
-¼Çb\92E\16ïbZ¬ Gw\14\93væÙÐ6\8b{\ fg\1em{C\7fúþ(b#Ì*~Ó\11GA<¸\90ü\9aØ\rÉhø\ 6Ò\84ÃÌ\86/\ 5ÍZº\r\88;±\9e«:Êò\ 1Σ\867*e+¢\92\98a\9cYõÃ\1cRßG¾VÅíÒ¸¥\844N[ÿW\16U\97*\96«aªg¹j\8b\82þ\16]Ú\88P\7f^P%\7fª\88ËÜw,\9büÐÀ$àç\81Làì*W2\ 6\90Å*0³\13\ 1°\9d·¯ÆBÉ\8dû}:¨î[U¦yÙº\9aÄÞ²Pó[eÇá©ÊR\9a\9efÒå£à}\10¾\80Ê\X¦"Júªþf@\r¶å\8cç1Ë\18±u³¨¸\9cܵ\13«j(Vþ\1d-Û\1a\9f»ªûI Ìå\a\15\16L\87§N \9a\96U\vDuÓf\92\95â\96oY\\9c\1d/
-Õ:MÇ\83R`CM\81WC¡6v,\86È´¯\9b¤ÛL\1f\8f©9JERk\8b6VÄqT æ Ò¥\84He`}\aõ°¤Ê\r%eOx^a\99\ fjÊÔ\ fÜÿ:\96\88 ó\ 6\1cÿ\88á tq\9fæâ`G\83\9c'Ö\91\89 \16\16êlb)\93;LÇè\19¶nÉ\81\8b] ;®RÉnJÁ\0j@\85\8f\ 2\81ga5h\8bÃl]U'æudiZ'\11\ 2È\90}+æ(ÅÆ×\91 â"\f]=n\8e\90I\84e=ÝÔ¶\v_V\85\9a\16ùÎ\93ÿøz\19P¦:\8e\94\84oª\89pV#²\8f\1a\9a°aüÉf{!COY\92v¹Îê~\fz\94»ÎS ïð(Å\150ðQ\90Ïßöbì\aÇ\0TÔ© \81Éöɬ¦
-\12\1dÁ÷áY\ 3 \13^©7;\84åÃHYù³\ 6j\8eÉÉXqhãã¯÷¡£\ 6eJ\91\1eJ¬Ë\r¦\1faHȲÊÉhµJÈÎJ4Èmr\82Uó\96q\1a=YLÂh\85+{\8eH\1f[1\94t]\13¢» ßÄ$\18W´^5 t9«µ$\fæI\ 1<SØî\16³F¦ÃÍ'S\84\9aKµL3Â\84\ 3\v EY1²\96BX\9aÞäÄBÔÒ~Ò£\90aÙ~\88]ãr(Ú\fU\96ÌÏC\12"ö®Ú]\eÊ\87³:Ç\ 5¦[b\8eŵ8%ê©Ì\90RݨzBv\91nzã7\99*\8cð\18I\7f\ 68/Ér.E×磱jA}KèÛQ\0\13*ºª\82N-È\96|\1f\ 6º¡È=~gؾ¸¼\82È\8bÍl»àà\86ÅL¡j\14\10¶.Ê\96U¹ã¨\8c1\9b\88½ÌRïeXN\9bù|\ 1WFFè\12«W¿ \ 4×&³ÅD\r1L\19,N+É\17\9b!±\98½\82\87P\94¾å\fFbh]N\e²é\87ãé¢ÂH\94\bº\1eF5
-dB;ÞÓz»9\ eåA \1aÒó±tÍ\ 4\ fvkÜ\ 1KÐÌ-T\9e\87\9aiTB\80\82\828\ f%\82>·\f\0\fIRõëÆ'¢0è+Ó9,Y\81â\89\85}SG10äÇ\1c\96ú+ЫF\8e+×`y7¤\12ðx¸\17\93ùÖ,\80\13\9d\14"sÃÀÐ\85¢âSÀ\11å\93j³\80x"\8f%KPZfí)éð¼®°\13ç\81ÄB\rÒ@\15+ÿ\84\94eÓÛÌSÙ²R¨\9d»ÅßÌÎ\95®(½Gf\1aWtCís¤\1eY+\83by\8a\96¢ÍV¼\9a¶ÓÁÓ\1a\10ZÅ'\8eQZóJPã\8c\94-A®Á 9ä6]à±\rUs¤\r\8cÑ^¢\8a|eh°\18\94\ 1¿¾Æ©cùx\9f\98\8aD»¯\ fh\r\869_>QrH0*s,ýH\96e\98\ 2\8e\12¾ç\1cÚ¦ð\1c\92rMÓ\1foDê®\ 6\94\91\92\8dé.KE)\16/JÁ\r\ 2tiÛã6[7¹Ê5õ\12\1f\86Q\14\8fb\1d\f5 Ø·¸þ\84©ÎÙê0ShüT\rS»í\96"Õ\92\8d\ 2\17¢na5GCÆÔªª\17!\93[\r\9d)a\ 1c°v\16[V2Õ;\81´bN\1aøJ¯|÷¢bìúa\134N\12©\9f¨¡7\15þr\ eJ£\8e`!_&ô\fILå\v*\ 4\8d³\17µ\8b\15º[ivT2Yï\96£R\9dm\1a\8a«e+¢\ 3{U\f \94#\87½ÒëX :©ò¸\89\ 2§Ò\9aUÃS¶ÉÑ{×\8f3\ 2[\ e1\ 54ál´\94$;J_rÇØ1\0\13Dumá\11²\ e§¬&3oÃ1®@Lâ\83)\96SÄ\a\89äH\97$)_Í£æ\94\97´\z\939uç&Jù\989C:\Áü\b@&\vbú>Í\99cL\10åò\ 1\a`\ 2Ü\93\98À\1e\156óÆ\ 3Á_]Õ\ e<pÆ\a>¡?\9bQ\9bfj³Òë]\91¥ò¯B\9eQ\89óX(Ùƺ\ e\13\83\10Cß|è,ì¢ OXÆ\18hÔMh\13ÕIÝgA¼·-cS±Õò}ª%Ý\91\10¡"(ÒFÙ*á'\fÜzͪ¼MLÆÈ\92@Pµ\8eaÛݱÝ\16øQà\1d2ä\81éð¦\12\bB¿5`)³\9d\81\98ÃËF¶\90ºék\90°ô\12\99º\1dJÈ\13àwÂ\10N ÅuËÂQT\8f\96\96eý_¥9-«:\94\96\15þpMU=*ý]ê\ 4g;\b\83s\ fH¤e\fË¡ælyÕ\15\19 l\98RÖå\12¡\15øib\r\91ç\1c¡ÚyÜw7\e\7fI7ÅÐÏ`\92,(¹E_yí:úF¬-2³«
-®\15`1J¬vb«ºRÄi\8ch\eK\17D\8f¹bV \98#\ 3hÏ\7f{Äh\80@¡"ø6£\90uD8Á\80â\18F.Ýa\8e\9a(ïµ!\95ßÍÖ\99È\9e\86õ
-*¦\80My$\91«ÒíXcl¸q³\83\85#q+\161¨³\9cõ\14\82mYVü®²\ 5ËÓ´\14\8c\ 1XP}\82e\ 5ÑÍ\14m\95\90ëQy~Ø
-±K\1d\11\83j\\99\ f»\fË\11±\1fB¥iÇä¾jc\18ö\19i\8dÖU¢â=\85"\1c#}Öí\96\14\9d¦ÔäoDl=8\8f¹X:<¬Ó4¬GIÕ\8d¹îÉnÓê\83mýcîD\ejQG¥"`\84u¼Ã¤E\8eYU,r,\92Ja\98ñ\14jÉI¿3ªÖ¼\96f±â\86çðú\98Z\85\ 26:\ 4\ 6Â\15P\19¾)÷Ãð\ 3\13sEJ^\18+%¨ÒßFV\1c \10. öH\1eÉ\12\94\12I\95(\ 2ÚRTº£'F\8bS¥.¦ÞBU\94%mz\ 2sT\97\19\\8e<él\99[-\17¾\1d2ã«T\83©i\e\12m\1aîlÔ¨ób°lg"8\99\906\ 3\93V\9b\ 6°±\92\8bÔ^°°J>\11\12\12É\ 2Æ\15\93\1a¤'["|ûu [\fU7«ò4¬í1uK\rîdªÈ
-jµ¯\ 1-\8cÄ\v>Lp¸ò\9alJ®\86Ð\85;ör\15mIçÑËF8nè¤\8ap¬\98¥X\ e\16¹f\ 5í\·\99\83Uh_\ 5\8b\12b\9a£¥:Æ×ð\1aªªiÝF^\96@rþ\92eN«ÂVXÊ°Ümq4'\97t¢@\1d=ªE\ 4/8dz\ 6B\18\fÌé6+âU\e¯p\9dR\15|Uû¨\81ÿìjâƵ*(%\11§¥Ôí=±óF°ùi@ܦÿdR?Û§\8a\9d\10[CE37ß\19¹£ýÃ\12ÓËëÍAâõs4{¸iç1\8dˤ·Î\ 3D<¸3ÃB.L\89ézÇpâ\9cD1w\1d\16\80©uZ%\8c\eé+.G\ 3\89MF·kR\15ó\8a&@P\82"+Ë;\fÔG¼°@\99Y°\ 3Ô'ª¥Ïåâ\ 2\1a¼¦µ»N,¤¦ ×à 1\8eà\89\96\88Wïõ\89ج$¤\14rôì9#B\ 3îÉwC~\888cÀWì¥\ 4ÁÇ\89\1d\14ê6\bz*È!ü\82>\15 \vÞ©¥}È'gÅb(¥7\9aM|,
-8B5jþÌlvV©ÊDb#Æß\ 6:ÎV"Ãïz\ 2\82\95é\9d®5+BIã>T½\15¸0èj]n8ªÖ\96\b\1c\8eåt0k\1f*g*½\81ÊK\1fª\16Ó\82\85D×3Èg²r\ 5,Ã,Ë\95\96\17\1a\83.Ç>\1aË;\12S´Þîàç]\165 À«Å8íÓáp\0,4ú\rðgÕÕ\13UxÇ\a\10ú=!ãFàuð\86\87 `\9c>\1c#.Ö¶fÐ\87c«
-\f\9c\ 3¨Wt«~å\99ì¬í\18D"·dJü\94˦Ä`P¸\ 1K`\83\14,Õ-\0<ÚÈáKA\8e'pm
-JUÃÂV\ 2ÖN«YÖ¢1ÍÇÏ\9eÿ¦â=Ç%³<DÛ\9bE\1aô˲"\98ìçÍ&Ü>#SÖ\83\94X\86«f¯\809Q&ì\80vÕ6Í¢QDJ²h8\13®\a\vóÃørµ(ÍGÌ\86>Ë\bC¿Ä^\bXè\ 5"Eß«¾¦j4°\fíG}\8dì\90ÕJÀþ\b¶@¨é\ 4nF\97÷Èl27\83¢iH\7fÆö\f¹sÕ¢*äÂ\bghÖF\80m,¥î0\88¨c\bÙÛ7N \86ÆêF/^3Ã|ìÝn\92\10\1c¶^\11Í\0\87§X;\18»À`Y»§5¯t;\ fíEÖ\ fÆس#Ô\rú!»\81b)-ütRò¦W_>\0Wl:J\13\133\e+j/\96þ\87\ 5]\vrË¢P¨Ã\8ab\r±\9cý\ e=%øáźß\82õ Âæ\1e\ f\11G´D»KyJh\rb0Êv\1aAýac$\86£\90q\11ÄÃJE±\ 6\81>\füß\15\e\9c\1c):\18i\7f\ f´4û¡dX\91\91²\ ea£\89Â\fACè\81\14uUMº\8fô@<<\11R\15ßw\v\87jôìF¢K»,\84\1e¡2Õ\8aYjÕ¸`\ fÕî úJÜ=;c4Ëc6e\12\96\81\9d \9bs#$
-\91ÙôÕæPÙ˶ö¤M\88\ 1á´ÕÉ[\81Ð\858\15h9iê(ÍÕ<µ\15¹t\86\8dD!±ª
-\0V»\17´\80Èb\15\11À¯¦ÆÈ\8cÝ\1a¿4§e<\f\9cÈ®@y§C\990ÄßJ:%º\96Ö\8aª_\9e\ 2\94âÎY¾â`ª±\11,¾Õ\ 2Y\9f\8c6\ f\98^Ù±I0«\97Ãl\88\9cc\8eÙ~<(rV\99\ 6øè®\1d¢"å¢fX\86\98¼G6Ôd®\89z¶>\822zt¤õN\96/§T2\7f\93o 'µ(³\19\97\9d\83l\9eAÃð\10þ«\16ÕC\90\13(\89=\97ÑÆ8²\ 4\1c<\ 5\11;\81EUkà \9b¤{4Üoa\90X\8aµªÀ2\fG\14<ßÀüä\8eI\86\9c\83~\8b\1f\11\96ª¸\1c\80c\14wÏ%"v[\81Z(\9ehÙ~\86©§Û\9f\13 /Îþë\17[\8a£gCEb\7f\ 6\8aó\94¶î\10\19\82ja\19j=\8b\88£#-tjaéMå<ÚF7\e\97Âlo\e\96Ê0\16\96\1cÍbgõheW!?pÌ\9c*\vÕ2µÈµ\96\9aYÌG©\86ü¦\r³©\ 3ùQ|6qã\81%êúÃ<õÎÝ \9b'\83MÍ6\ eN8\95Táú[¿ELÚåB3¸\11m´\ 4ëKY\8b¤ö\82Y\99\88!Ñ\8e+ÿ\98v\10ºZhÈÍZý\8aÅÌ}¸Û\18\92o\18[\f\17PëÂ\ 65\85õO\96È?÷ív{PÇýwü#[»u\81¡:tʬzdøMH\16K0hqLöd\84æV4 \19`'Õh\15\981ÌqM=«\bf\8b`\16l\9cí\1e9Z¯Z\1aÙγÞ)ä}²RöÝ\1aÚê\18º>\13W\ 4õX½gýd´\ e3fâ\81\ 3î\ 6\e#\ f\ 1û}zQÜË
-5NCú"\e\86¨\10A\8fr\8f]\8d\89Çs¯dK \1er,\80a\ 1u©
-¤Ì\1a§a\r
-Be\10°\96õÐ\81\95r¤£Å¬PTy?^\ e
-c½SÚÔ\80\8dÖUTI`é8\19\96À¸\15%\154\8e\1cÃû18l¨æ4\v"ð9¸q!uÆÐ\ 3/\9aY¼f\rx:m"%qÌ\r\1a¹\ 2ô\1c\0& \vq\82\91ÍFX~[Vc\ eÎk\16ÝÂ\86â
-,Ê\12ã<x{°pe÷-{\rb\94~XêÂ-pÙ\ 6î\9d\8d§ÈùÁ#\8a(=£#ã\98\19>ÝfDz\13>\rZ\8c\ 1ÑSIÐ\9e\8ep\ 2\16ß\8a~\aù]\9ceè9ÚØ=\19-ãC\vðà°¬ØÔ\8e\ 1
-á\84ç1>>fn\12iÒ\15\v/\ f¹ÉB\84L¬Ú/i\19JØ0\18.ö~\91í\84¿\9b1þð
-0"#ýô(\v?\ 6N\ 3\16iÚ\8b\82K\14Ѽ\8bì
-\7f)`\a&T.\9aÅ°oX\8c\99É£ë\86½\ 5q§>%\80:øSq$.\96õá|Õѳ!u\8c©\19\92\9e\8dû%Îë\1a\ 2U±\80Ϋ©h¬æ\80ý\1d3±\98\85-k\11É\96\81YÒ\90i\Ìá"\r>\U+k\84ã6\9a\8eê(\83Gx\15øªü¥! !=\8d\11ÍÖu\10ÓL*\84¥\85é^·Øå\8a\8dñåYMÞfëö¡2\8aÎx<5\86Ò¹d\83D$B\94·\9eÙ\97\10 4EÀ×Ø1Qø\9eÆà4\88Þ\84\86'¶w\17\ 5\15Ç\rTtÀ\1eÃIÄè\8d\f\f
-\r\19\94\178\eôEé÷¦\83\82Y\88{HÝ\18+pý©Y\9085;m%Àyñ~¸ã\16Ì\9da\979¾J\9dZ$0PP<Ã\ 6S\81~G E¨R\91¥ §\8b\16\86ó\15í^Ê|%ÇÞÔå\bFD@\88µ\99W«j\1dæØ%0\1cä
-Q\r\v\88OÉí\ 1GªM\1d%`\1a\Kv«"ª\ 5¯\v,y\96jó °\83ÕI("\11\ fxå 1Aæ\rû8o\b\81\82Ð\19È\91pÖÕ¢\ 6ÚÔÕò\8c˳\93\1d\15Nì/ô\91åu¢xÊV#\94[°Áç¨L%\fL<Ç\9c,Û\v\0¹Úh`c?7\7f
-í\0°¨r\8d\1fêØò³mÆ°$Ã\v-\e\1f\126AÎ×õ\94\ 5\81ûIR\1aP±´ª·VT\8fÚ0\17ú\8a\8c,fxv$%\0\81pÀpÞ²\16¾\13v®ÚãqÛ¥S\ eÒ\ 1¸É ëNM\87\ f\eUÀÔ-ª:\ 5z\1eT§"A\84ÈfU\12ot=,\9d>ÀçºÆd¶/q\ñJ±;e6\vÓ\90Øü\ e·\96ÑCÁð\13Ä\e\ 59~I8Íð\99`á<C\ 5\0Y!\94\91\ 2û2\9ahDv¬Ý5\ 2\1c\80X\ 4\$¢µ#°ý©*Æ&Þ^}eØ%\95>\ 4ü\82\91\0\9co¤â\89Áç
-[àW /UàþÃ})E\1dB',ë© \84\7f\9cMPIax\8aåéYÖ\v]X\r>À\8e\10Ë\9e\8a\9aд\87\16\9f\13¸=´E¢4'Á"Æb\ 2ä¡,¥\e¼\91¹*XÀt\ 2\vK\ fj/Ó»¬¾¤¯{"&\ 5\11\1c\81¤¸o\82(\b°\fV>i\8a~·0\aÏD\88wµ\98\1e\9f 2:ìòøMª\16æ\8al]P¥\86)g2¦\108\80\ 2u.
-\87é½\95!ç\13Ñ_x5ĸ\82椱V3\85\97fµ\10½Ì°Ô\1a½YD½ï@uv¥n\ 2ó®`\93!GBÃÌ\83ÇD6$\8bлõ'ÃVªò\1dªµ3rJ&\89ú\ 5ü6+ΰ$\10sõ°M®°m\88\16\85\13\8e ä6}¡¼¢\9d\1f%Dvëb¢²ÄÓ¬\ 4\88éLW\16å9!.ðâ³(\87:\10YË\0AÇHÔ\90Û\a\ 6$ÝY\1e\ 4\96\97\16U\:¦(BHD¸\1cL=ÉOàr\12\98TMj\19Ý,¸Z²¸f\7fTV*\11\16åñ{V\9d\f\16bd\14\90\89;ÂmwYÖH\7f[qM×
-JW\ 5iì\fÂ\11®\8dL\19OU\ ea {\862\8aÕj÷\14\85pW¬\85{
-Ä\0fa1y5$\10¬\92\0`\12m9ªz$n\ e\1e\15N2õÓ±È\1d\81É\9f\8e=K\80ýw{\ 3Â\14³Þboný°\97WÔ»\87\8f\80T\13ë4¬ÓóC\19\15ÉÐ\11Õ³ºtp´óÄ\14T\97b»>7\15,Ũ£\84¬ýcL\ 5\96£XÞ³\ e¯k\ 2x\18µ\11ÓÙde\ 3¹à:ö,'¨8&ÙøHü!ì@´Ô¦jË`e\19\96,\\17ºV\88m\83MeÍ\8ala\91%ÚÃ¥\9eÍbÅ\8ej`3P(u+\8b\89n ZO* T\127\f\ 2Ò\92]®r\16 s\f×\16ï\96M[\r¹vký¨ì¶\ 1,¤Û]6[R\e\0{Ì\877á\80aHC¤'\91ð;Z¬\81\ 2»
-\16\ 2.RÖç¡"\r,Ö/Bâ\88\16¶ä\12^ \97\81Æ\14¿¾\80
-P-X.m$¥(a±ö\0&ß\99%\82\8bÈ\86§ÞTºåy¬¼voÒi\e\92\8fu\vbÏ\80õàÊ;¢
-Ãt#Y\96KƤ\a\971[Ñ<ë³ÒÆ,'\81ÐÁ,d2\1aÙ\10½Ä~T\1f\97\ 2¨1)Êì\7fG\83·.\87¨\9e°ÛÀ0! \7f{rÐJ\ 4[7\8a\93\8a@çØ\81\1eûþJäd\9b|rôz\84l1\ f~@=¦Ù¢NâIÐÀÊL(¼ôè8E\95¿iÂ\ 61ÑÐlÑ[\ 6ß\99,|\92¢6\9e\9dÊû\16ª±5\9c×ïöÛÂÆ µ\ 3à\ 4\ 6ÙYYO<\1ds.\bTB\16ï\8b\88¸ZS\130\eµ¸\16\ 3\f\11¶v.Á@°\ f¥)L73Å°(0\82E#³«Í|Çó*JUÄR\15\1d\94íwV oT?ôH`ñÂ\r¶1\86ù\98\88ªÑ3d\82A¸\10rá 3Ó\80\0/ÛŸ×5c\93ØC\ 2zp¤ý´¬6\80%SM
-ÃÛ\ f±QÕ ¾Wu)a§¢³\81¾[¶V\ 3¢2»ÓÓ¨ß\e»\17\99\19 \95ÀâÐ\rÀG6\1c`®a\99A%5\0é°<uÖ\ 63?°põ\1d^\12ò\f\13I\13\f\8b\9e·\16Öià\aØ\18¼\90\8e\ 6Î?-S\8c5òø{V\1fÝ\8e\ 45lÓ\83\ 6\ e\f4U%Y\b7!\89\rG\18²\92CËÃlÖ\8eÌR\ f\at³&æ\ e X?s^URê\84×#\80ï¸7ew\ 1/äº\bKÍæ\ 6È-a)âqá\0FM\8cGUkZÆ×Ä1\ e(\19\84ã\97§\9cI´\ab#\82MI\84a|\81¸§î=}\1c\97\1d.zq\98\84<E¤SÛP«\1aÁîH\82æ\91\ e\96>nùµZEQ±b·~2á\ fá\16vcN\11¨gÐ@´®N\13J\rU+ælaa®\17§i\95\89ðÏt\f«$*\98f¶ìâ(9.\93;\13\7f\88ß²\ fåÉy9µÅÒ\16ìÃag\86\8fÂê\19²«uÄ\83Ú{ÏÚàwl\9eéÁFÅ\90/×\15£Ñ¼¶û:\18&\1aËh¹©öÓ©ÙIÕî\99Ù,XØ¡¤[Tgbçâ¬ç\0\0\1f¾\16ûÒaa\19\9f\9e$¡XøÚUÉï6µ\ 5\1c÷®
-\1dü[\164q÷Ã\88çH{x\f8A\17\97\ 1p^è:§\r}tìK\ 2Ä\12\16\82×iÉv\1eg\9cÎ\13f\ eç1\12Ûxî\0Làú\85üN®:\8f\8b\ eÎ\8b\86\ 6'2¢\bð8\91[\80\85ýä\88gÄ\ 3¡\1a¸7\83©Ã\ 4UifLª!*`Y\1e¾,\11\9b5,¬vª*E\16§cl±ÄÜÔ¤>\16X\14\b0âmºOÞ\8a\95¥\98y@={ÆvÐDÆ\927Ïsܾ_ï\84¨ÔÎDå°^EXR\8a²\10(Âr\16y\ 3\89\ 4Ðó\11'\9cd#8\r±ç @\1a¿Î\9c1ÐÅ\19ÅP@\1f¬\8f±DC3àÛÀg\8b\80:2M\85¥H¹\r´\8fe\85d\ 6Sü-\1aÆ\8e\1c\ fó\1dMÝ\80°ðV\18·s\ 3\ 6\8a± Ï\ 1[ífãÂ\9a«åI\88lÄb\98Éòdk¿®Ö\91?²¹iÀÜLÖ\83ÞÕ|Í\82WÕwbÚ{Ç~JÍÍ!\#\1eå®!\1d*ü\9d,0 \96]UÜP\fëCk\1as¶°(GÐ\8da
-\96å4W\9bRúâ¹\1a\ 1a/\86:F{>ÂPÎi\ 6\vì6\89\9aö\8aôÙÔ?ãÁ\86\ 1îc\ 69\98å\ 1åK\16ú¦\1e\9f0o;\8f¸\ 5¼\12\8eB\94\1fC³u\8fü\ 6H\ 4[\1dÈ>«t\v;»\ fî)YÂo}·Ú-'e¿\14/\19\17\1e²;ÚA\90eJÊîDöPÑ\82\89Á\f\90\9ff9\82L\9a\19íÑ#£¨
-K·\81C`$SY\84)`\8b\ eö\11¢PY|Q\ 4Ð\901xèÕe$
-a\89úäY^¤\12W,êtRö%åîÈÊÔ\8d=\13Í ¤çc\8dL\80|túV[é \17DjXéµm\10 \91U/n\r\95¢tRb'¼¶º
-`\a,¤ å\868t\9aü\ 1pÙY.UÍ+\98pª\r4\rÆc\86·L[\ 6£yëFÉ\84ä&ËnMË11\8a`e\92\8fÔÕ_\1eIíP´\10Ñ\17E¡\ 5\89aú\fCß9\ 6#N\85¥³\ 5\14\85\96\1cµ\bÌ | Ê?=Ù\84\1aØlB±\ 6<lL\fYQü)Mû\bK6',ì\90«\r¶^\90_\ 1\99\95¦<jÙQ¥\9e\ 4p\ 4,\842© d£ i¨á>Õc\8bw\87< \9eoŵò\92H¤½cE(§Ò÷\9b;,\ 2è³Æ\8b)\857Eä\13\8e1Ì\a9l¨°-\13\16\11OÃ\820\81\96\94d!]á Ï\13L\ e6@ú`\11õS/ZK#\e²|\ f¶L?Y\9c¢¦5\ 3\e~Qm-E\10\ 6þ\92¯ qúgW&\ e«\ 1ÙGHì6e\89L´¢«h\9aë\14²
-e Õb¿\17JßÜ\ fÀ|\15\8bù U\ 6\ 2Y¸\14dmwè\7féÀ¿\ 1¾+Øk\8a,£\ 41Rówºàö°é{\9a\8d\16Æ\v´°¶C\1c\9b\16\9eµíªÞ5\8c. w\80æ\18Ì\ 51wl\1e5[àúØ/\90ªË\11*¥\r ³\1a}\80Í\16\aÄ"ø\1d\96c`0P&Ú\8bíqY»\88ìæîv\16zTqC¤\89â²c0cBú²¯\8fø\ 2¨®1C\8c@\87h\96ÈvÂÎð\88´\17'*汩§aâe«9²Ñ\19í\ 1 3Ç×-X\10åÕ¼ Z.\7f\9dM\0°°TØ\83M<4\1djY\r*¦\9dð¼L<\14î\ 13\82c\87T¯m\9a\8f\15½\r¡MAcq^T\1f\14ld2\0k[a\82\83IÉD\8bxGÙé`\ 33y¡l°<E\ 3ï»\r½\1eZ\b^@\ e´ù¬c3(\83ͬÅH°ª6\8c»$\90H·(\1en-Ùb\14\95óð\1890é¤\18\99ü/,j³n\ 2KÔpÆ\92ÅfXØ\90\12£\85>,"pæûQ\1egç\v,ê\ f\ 6Ucc\r\1d¹\1d\1dÃJx\13~ï|á}g\14<È×\88\9a\0\8d\f\18n§´ÕÀy\1d梵1ÊÒ«\90&Êà`óDBoÇóÔâ·\ 5ÏX/Ù\9fÐ\8dÍGØ\93©±\18l\13T¼¦/Ê\ 6DÄ\ 4\9c\9fmª\ f0Òßiú¢^>ÃA5k0\8aM\978\16\8d²6t±³\ fÇÇÆ
-Ã\16 t\86 iu*°\89*²ìº¯\am\1cÀN²BIg.Òà"\ 64\95b¶\11í L\7f·üߣ»l±_8{\1eA\0\87?.\14\1c\81\96VàW\ 2\ 1þF6\\ 2\8b+L\8cóý"Ì0\\1aZwØmÒ\8c«\9aIwj\160ýeáTUÒ¬\9bï \7fgn\19ª¡\84º0H\183D\8e\9f{q|\9dX\1c\88é\a=UæÛäzQÌ\ 4\86"Z\bVG\12°YU\81-\ f¬í&±(tg4Ãyt%±\82Ôa9ǨP°\a\19\bàÑY,\ e3\r
-Ô8,aN¥ag!\90v\85)àÅ\83ÅÚ\ 5\91\19\8aª\b\e½9¼*æÁ§xlØLD\ 6\10T\8d\9b ÓmúT\ 2\9a9¨y\8ao\91ÉS\8a\1fÜýJ\b\9eÙHß\91æÇî~*ä.]\9bÚ\ 4Ü\17t×jÉ\83(\16D±ä4CR\1d©BE£\85-!Õ\9a\9bha\\84²\ 2I\8eZ³¶gX\92ò® \16Æë\89\9e¾Û¦Ná\85då¥j÷Yk÷¨y\14\96\89*Y\83\19F×®B-)fpãë»\ eV\89|AÀ#맲ãT\8b\11Ä!¾e+\12Ær¨ª@5ã!GÞ´\ 5Õ \9aà´¨GN\15ÔY[=ÿ:5\18\93)\96 ¬\8d\ 1wz´o\fD\81\9aì\ 5\18÷L\ 2ð\95vµé\89\97\18/4T¯àuÒUCOó\97\18º£¬OL\88Ð\v\85\16ã\9edÿ¢\90\ 5Uá\eѲØ\89ñKêxãÄÐw¨¡y¦ N«\90\ f±ÂEcüe9¥\97\vç\1f\8f\ f]\8bùN(Æ\ 1XsJL+\99\12x\13µJÌEXòj\1d7¤{ÉVø!\99\8c\8a¤ê`Äyt p8#¾
-ö6d$ñKÌ\0\ 3·`|\81°1W\8eÏ\8fw\f\ 39õ \r2\8b\9dVì\10vêìxZ\8dEGÅ¡\832¹¹j\11º\9a\98a\0ðh\89Á¯F\10·lX\e«Ñ\9e\9c±\90\98\84\96¤â=+\98Å\10\17\f¨a!áT\ 5\ 6Ê°¿gß&ßq1þ\ 4âl\86Þ1ª½ª\88\14\81CPë-\96\9dOH\1aÃ"
-aÂÍ\94\8a\80`\f[r\1aÊ×]â0\85r1\18`Å\18\8aį\81Á\ 4(¿R&âÅ$Ø»KA&N!Ð4çÏÝ¥îÝ\a7\92.x7§\86\10\88}ß°\r\vÛJ`!ö¤\80\ 3xè\10B\80w\ 4\bl\80\ 4¦hq\13\82é¢\ 1\92Ì7@=0ÎÅÁ]Í˨fWÑ02//h4\8bñ\18\96ÕÔRº
-ö+ìs¬´1Ù\9a\rɬÀÆ\15X\ 4\1f'\89\19ÿL\9e\ 1#Ó\1e~\99Û\1e1æ"ª´\e¢ú\8f0\fX\80m(FÕ\96a£;\82\9bÖD.Öª@\fC `ÀT=vB<3|Cº*N±`\91!\83OK&R°A2\93å\88\ 1e²B¶®Pa]È\97\9bÔ9ª\8eÓs_\8e; à,äV\86\aÜ\88W\15Ä¥ËW\ f`\17\96E\15\10\91\92eÃ$Ãu\9dÙq3ì\8e \7f-Ì\99\98\14à\13³\ 1\12üTì\85\83\a,¦
-ؤu\0?yF\ 3\81\11Ñ\rç\1aÁ\12¡[In2s\9bÊ>È\9f\99\8a\8a\91Æ0¿\ 4=b\86\12:ûdg(\1a\7f\ 4M\e*HrÓ\8bÒF§Â:D\9f®¨ÙÑÂ×\vK%j\ 2÷\18}J«ª\r\e{\9c\80 ÄbO\1d\92*<Ý ÃÁ7j¸C¸\10'jDFî\91¶2å\ 3\85\14¬,È\9e¾fìp²4wK\94oaoH\957!\\12,qÊã\90H\12,ø\ fåÃ\95³§\98_Bu\98\f \vcÓ\ 30&|%¿+¡\ f\18£MY5f9]J*»åD}ÝÜ\9cöGaßkª_Ê\7fBÎ4\18Î\91+¾\9dÇ¥\9b]KÂ{Ø\ 3WÉ.±õ{\18ò±[dÔ\8d\90\99PK\ 2øº·tÁA"UÆÖ´\8e0\bóܼa¾©&Y(\ 2N\bÎ\82E\8duÑ\88×a±r\vlìr\82ç\93³=\90I\a\166(ÀBv\1fX¬\ 6E[\99fk\17ömìié\90%f³¨³\e\1e:éB`\9bI\8eo\17ô±[g_\ f¦ÖE\8b\12z\f¹\9b<r\91ª\85Kúínúa¬\7fÒ2\ 4\88;1ð\ e<\rØ\86\86/Ë<ü\19f/Û°\85\ eAfÌÛ\88fÞ¨Yì§f{{»\ 3d\17üia\eìíjþLâ®ðYj±ó\88V\82\8f*ß\eËDÔyl,×y\96~@\1d\87¥\1aÔó\9a\ 2[áKPó©\8aQ\98\12:áÔ\17\r\bâ\96\12ÄÞ¡®Xì\8a9\8b\15áìò°g¼`\8bR8ÀýÊ\99\92Û\ 5D:å^(Òe\98må\89kUÎ\82£\7f*\r\0\eó\94\8dÐasoX\9ah\16\ 1Ò¢êu\11\9b¥¼"n \e\10\80Þ\ÖA\1c½¼\ 1\87¿\a=øþ.³Ká\99\92G³BÑ^ÿ¬e¥#NäñM\ 3LLÕ\87\9aqÐÃÒÈPÒ\84\88\94ëajgÞGäî\bÑt\86¾VL\0\1cT´\85\92\9fbÇ\86¤\9c\92Ö\r5nWË\91ÈBUÃn(-·\9cXs\97Al\95\95\94YÑQÌvÂR\86}hO3ÁÖõÂ\85W\85Á¾\0ëê4 \1dMËTp\bP°\8d!JlÀ0Ê°ÁØùM¦\88\86=\ f£k©¾ÎÉÖ\850\14\f\15£R\12pÍ\1csÌ\19\ 5\1a\bªØ\93Fö\ eó\82åMãjÅð\8cÕáálùÝ\1døø\b\1a³}ßÈú\10¢1nUç\86ó\9eöôÂ_~D÷ÆÕuÒËë?>[\aü\9f\vÐÞ¤t\1e)\15@²\8dlâé=l·\8eÞôËýùdz,\87uÍ°®\19×5¥ËÙ¢¡d\99^¥+ËÑ=U¡Q«t+Ö«\ e\98`¢¾Y3ffnRsOà\93\94ÂR\81Sé3å\8b\f\rI\1a(ývð`x\98J\ 4\12¬\ 4\ f±\95Ö\12ᢼÞ2\aÈm\15aê¸ÿ³jcº\17<JÕ\b±(15\99¬Î`Uõ6ÅØ¥:w\97× \88\15êë\ 4Õu§ÛB¹¿&ß\1a¤Ø×\87P*Ü@Ê°Bwðd\8aÕ\e\87ª\ 5øld\96@õ%Ú\8ebO2\14ä\10õ2\9b\95c\f0\99,vE\9f3\89\9d\90>cOÛ\88Þ,V4"\8eÁlbÄרýÓµ\19\98Ôìñ"{_§e"-ÄÜ#+·à\98*J\8d\ 3}À\ 6çQ\95NdÎ\92©y\12C$%\ 3 9&;\87ôCQ\10å§\ 3RQl¢\9e\9b#t\8fû,
-\10X \0U,ÂS#á\8efëí\1eðÄ\94c\80%Õâºs¼^VXfû3§\ 3\18¬\ 6Q\ 3Ã2¼èH'MRsÔ\13*öÍè\8eª´\90\88-èÁx\8b¨
-Ù-A\81\99ÐTC ¸\94\9cÀh\95hÜ\14i\8b¢îw_E¹{\ 2ý4\1adÌ\8bÑU\ 4§ï#ÿZÄ\12øª±É!«Â\¡è\15W\9b*,h¿\8fê±GI\9cj@\83\ 2²\a°Y\10`× 2\1cyQÄl\95b\\17\83\fÁ\80à%£\8a¦ÌÕñ\f\82²°í\1fÕ\1cXZVî\0-ýä\1a\a\93r7$M!±ù \12«1ö0\ 1Eâ\1aM_T\11Aè\80»êÙF\18\v\17\1c;\83ùØb°3¨ò¥ä\8e²½\84iZ¥ìêgI\15¨º¨\86}+q"çÄ/Y\1cà\14EDÁ\94[Wâ\9c4ìç¿ÁÁ§ü\11My\98q\ 2\19d\11A\9f\126T\89\17Ä°IFÏ`¸\v+\11\92 \88\fF\98TÖêIÔèPÑ9\ 6±¤H¤\13\a\990 \11\n8\115uw\13³cÀm1¾ÁÏ$\ 1då
-")\1dg1Ô0Á2|!D\9e\0\92Åt#£¸¬Ë\932\97»¦ô\83ö\bd\8aW\ 6\ 3ûÎ\99ÏZêÙ\93ª\1aÊèy\92c\19T6Ñ¢\ 6\95çFÛÇ\ 3IJîD7Cîin@é\82\ 4\ e{²Ø¦
-¾\98å\93Uu$\9d\1cpßc'ë¦\bÂä\9bÜÄ m\11©\7fÁý1\86\ e@\13Y\8eDPF_\8ej\1fÍ\9cÂaÜHµXß"éRt=sS<è$\802\1dü:!³\aý·wG{P¸\a\94$\ 2\8c\ 6b%C*Iÿâ´æ¶ÇñFÅÝtèa\89ä\9biÂ\1e{{\9c\rªP\ eÿ\89NWEe\ 5¨p¦\14\9bq\ 26\8b\93 V\93\12g1\9f±&g\¦\846sÌE¢ \ 4Xñ4'\1eáêI÷3ȵ\el¨ÖQÔ£\84Å0½X\88\9a,Êû4Û\ ewB:³\19\8bµ\16R«M\8fÙ\92 EDòMÃ"[´;L¶\84=tM,2,ùª_ÎX¯)\16\103;¯\89N\14¶F¶
-ì\94Ô\10\0Ø\ûð°V8\94Kæt¶\eÑ@\10#n\9c8\12<\84efñæHβ\ 5õAêé,\81\12\8c·ÝikPyaR\v«Þ°z \19ûv"?SÄ\1d¨TÈwIi[\96P\8cFF\\8aÄ\9f\e¶ýÀÆ\12\17±\93ÁpëR&\1a[\12"¨B¡\9dBºµ\94:\8eÍ\86J\90¥R\16\92#iêIؤ©¡b\15Ú\rK\9fU\vÔÃÌjXÑj¿]E\947¼s\1d¿Î\9c2H\9f\88xàÓ\ 4\91E\91+¢\91ÖAÐÐ"ü©^yW_\82uç¨j%FjÏÛ\82/MÃû\ 2\b\ 5ÆÊÄ¥\1a7\99\8b:\a\ 2\19S½\97@+\93Ü\1cÜ\129jFWI\8dU«â$mjqN._È¥\89T§´\19?v±j"sg\a+L\92ëé\8b¼Í\16
-\eS\8bI\10í(Ä\ f°ÏÛ\¡otB.jQ!cr\84(\11)ån\11w\12L\ 1Pñ°º(\15¨O\b¦Wë\ fQñAÐyA»±µ\82w\96ÐcÛ\1cè>ë6Éé\88%¼v±\8aUËg0¡Î·kõ\7fÖ8í\vT+N³AWÛÅ\96ÙtÆ4õ\ 4ÀÇ0\92¯<\1dн¥UW\80a`\1c¦\11ç\91Û\1f±Í\14\0\ 2Àý\19\f¡M\9fn\ 6\91ú\v\827¥ \11\fÕ¥Tú4w\93Я:ô¶EÌH\0n\15\e,K\80\84+M-\97 F®¶ï\v¶?³\r\13bx 4Oô\95º± \9c\1cíåR;sâó\82 çÙÀÉ\ 4\7fÍzÉ0Î<bG¸¸ôyzQ=
-\16Qív_\9bgµT\15ÝWõ\ f\81\ 6º\18v¨O\82Ñ»Ø\9fia\93Ó\1cBá\11s4\87Óï\96n\0ª\98©×5ü\9eX¡áß\14EêE,3;\9e5Rµç\ 5ª\edè\94äÙÃ=ç\14\9f¯|sár Ø:ì½I\8d~NëÉ\14\8f\86~\89°t}\81 \95¸`¢×½*áIK28t!\81+èØ©aÛÍõÐÓ\89\8e\8eáe\91\88¬$S \9a\17\7fv"#>"R«¦or¸Ýµ*6\1aH ûȸ\ 4²{Ö«°»$\85\1e£\8b«\87\ 1J·Õ«6Ãß©\94\87År\ 6Å·ô\9cw\ 4Ä\87f÷À\ 4O$\ eû°#\0\8e¶*\17\84øªs\11ï,»gÉ\ 4-Õ`äÆZ'ÒY¿ö.VÛN|¥ú\8d\9aôLºñ°xç:+llµÄ^Íj(9\89³Îs*
-Ø\94ÆO¦\85P\86µô\91$¶¨2\17s)Z]\ 1\97S\9a-jHò\9eÔÕ8\r%±\15ôêP=â\84\90kòÏ©Q[\953\8d\1ad²f\93À\97VD\16Ç\95x¯¦\1d\80º&\91©\9b\9eJ5É\80¨ÆPk¶\ eÅ\81èJ\ fò\1f§NëÂI$%]iABáX5¼j\97\93\9e$\88\8b8Üñ\ 3\8d\1d¢A \ 2p\fÑ\99«QyN«ì\92]«Z§\13«Ô\94éàáâtòÖS6æ*©hÍÜÙb,ö³]\11\9c\10A¼GÌ\8d°\99\ex\80\13˼ñ·\83±ó «\19\87º¹É*Æd$q÷¸mc\ e\ 5\86\7fª'\97ø¶êÚ\80äg²Ç\ 6©CòUZ6\09Ī\83ÈÐ\0\ 3;\a`Qí\14yGÆ\19\94\8c1Z+ä\8d\8a:Õ«Z\b<bª&v\86ËIz\18Ç$\9d\aO\86xòj\ 4E$éêY/\97=Ül\ænNbf#?\8eÆÈ\·,X2¤)\9e7\19ß\18\97\ 2\1eãà\12ð`Û¯'1\97±±\83_ \89\12{do@\ ev±bøn\90~±Õ\96ü"A\b\80À\1d¿mT\reÃÊ\93á¤ÿÿö¾<N\8bêLWöEÛDQA$Ú:\ 1!
-T\9dÚ1÷7\17Û\rEÜP1.Ø6\1d BC\9aFÅh\F Æ-â¾ÄuDcÜ\15÷\ 5Eãn\8cIî\92ß\98mn&¹wîܹ3¿ùÿÞïy\9e÷ÔW\1fý\11é\ fͽ\93ôç/¤ûíªúªN\9d:uÎû>\8bï\15¹×s³{\90óém\0\9bDJÉS\19$S\ 3ç4¦OÉÖa\80\ 3JH!\1a§\13Ï\fp\80\84L®ÞT{\v\8bë!]ÉÄ,\1a\10QÉÄ\13®;äy\93\86:'§\92_êo\14´\8fBgËx;ËÄr\eXÀ&ÖÇEÛE\1dG½ÞCV2Ï\bBç\93|½ P± L´\1cS$\90<\86ÒÝØ\8f\89ô¤P\96ÔòT\82a\14"\96\89¼\1d\bú$a8$\v\13\9bÚç6èg6{åÄ2ËTÝ\92*:\11[Æç&í\9f¹©d\v°Yh+5ðß\98\9bô[)\9d¦É(s«]Ì2\8akÂõU \9d,\8axs\81G\80\11\10¶ÂpÒòÀ\92wV¥B6A
-\82\89@d`âZ¶RxÃL\1ag]\ 4í\99\8c
-\ 5f\ 5Ñ\13Ö§Ìå3©\16\19\15ÒDè\90*\f¬¼§i&R\85T¸eÕJ¹C鶣Wyì¤Ï\1eâ$\89\90@\93P\ 4\8e© Õ)ePí+LjI¡l(ÿb\9aÜN×J.\aó·ä\1f£Ô\15&>\13-ko.f\13Õû\98 \93ÖKª\12\193²x©x\11¤Ô;ù\81ð\1c\14êÎ\ 5æ\10É-Ó.\11Vn£´+S$i\?\16\1f\16Â
-\12yúñy¢\11,ÉÜBr ,a\93\´/æÉ\88\89F¤\bô°J\9d\ 1\11Ó\8c¤Ö\91Ó±h+Æ¡\88`Cª\9dd\82\80)w\a$\j¢\ 6ÎxQ\ 4\81¥\1aøâÔ¤T¨\8bEÀWâ1Y¹æ\9f\Ãe:zH¬\15\99Ý©\97>HU?R·@!\a\ 2Öz\1fÐÕ\8d\88,â¹\13o\81Lº~®ý¤è\96¤"©vÙ~¦Á"åÛÒ¦\v/Gêþ²\81B\13|ɼ<"\15äJM\96Ä;\ e\12û\97\99΢øë©úz\aë|I\14zu\9bXoRqMK¤\1a~\88¼ÜKj_V\ 2êX8ã{\9c\\97Äóå\12s´à}ªÍ©¹\9fDmx!\89Y!\88\14\84o¥ð\16\ 1eÂÒ\15\82C&\96Ë\91\ 4Mª¹\86\14\9d¨\ 4\10\e\bHj \85Þµ]\84ü\88\8eX">c\12Ó5ÈÅ\840C\9b#¶\ 5>Õ\ 2:8\ 33ñ¢@Ï=÷S Ï \12\8c\10t\84\81Ð9O\96£n<Q°\94fBÄ\99ê\12\1d½xl\8d)¦\ 4¬ïK\8bÀÈé¼Qqakn¼3\ 43+ªõaí\94)\83Xp\ 6
-\bVjµAÉ\88\ 3ß\94e*Ì'¹2A\89\89B\13\81\9eÊK.ÒèeRf<°Xé&ÙÔÅ)p®\84efK)`á\12çÁÂ~
-\9c\18È\81Ì».\9b:ÇB\10\ 4\9e,Haß²ÐÉHdäõ\1cÚx\9a;\e®.\91Q0§ê\91\r lïÊü:\11A¼K`Ø*ù ¥[âT\1e\1f\1cx¡§\89\88¤/)=Vxa\9cBì\ 1ä{RÑ\15ÉQç- /\1cö#uË\8fª\1dü¾À´å\ 2u\8bÄÊiÈ^Ð÷³~ s\8cÓ×I\ 1\15Îz)\97\ 6©ÇJ\85²µí·\80Áò\86"\98PDea\ 4¤\10\14[\963V°x\81<\ 2ÍQ\9cIÕ(³\80Y<XeÄÊp\eÍþ\11\8bcÕ:9ù\87"©3>$\85ôBïd¥¢©8ÕP_¢\18\f\ 1ê\85T¢lE\1cZE;\8a\8c\ 2céû.\92\ 4)¿Fz 9cP\16er\v%NÚuÀÅ$Ë\954IÍ+\ 2\14ÈH\87\92Ú\16\f\8a##ûQs\ 3bKÔ¹ÏB Ft\90¤©R#N\12ÕóÈV³,¨¤\14\80Ê|\89ØI\1dM»\19{Ö\97\7f£\\13U\91ÿxmF\12&áÇ@\1dtàJ\94¥¨Ó;ù\96À4\86µUpY\93\Ù\r'30°B fâ±rsÙ\94_wfÞaDs\12É\8bEoZèÑÂ\84Ú\19±\8dÏCìo\81_\8fÇ^\93¼ìÄ\0\9eF~Ë\8c~\a\88dQ¨Z%\1e\0`\94iàêÛèÁÒc\ 4º\1ftKh\83ÉA\92\1côH£\94\15á\8d{m\ f2\v_\99̲\88\8e%¸\18Å1\8aI`p£¶13\vzÅ'\81\15ã\90ñÆô\92XQB6p\9ad|b\86]d:ñ¼P£\10ò\1c©\ 6\9eS\91 É¥£M6#«s¡\19\0fE\89\eæX\9cëÌsUm\9déÕf¶B'\\9c\19ä*û;\92Â{É@'Ü\9d«I\96D j\8aLY\92òõ*\90p-c\9cm\89bb\95B7bTØ#[ïÈ<\ 2Ò\0\85¬@S\8f\95Î\ 3¥\ 4\14Á\93PÖáKà<\8a£±\ 4ó0«!I\ e n"¤0S£\bBî{]bî¾Óé\rmoëÈÔÁrg\90F¬5I{e1\96¦©\85Ô\90ñ}\99at\81\9cNuR\84XË3UçDÛV\8a"³\94\9dSÛV=:\16@\89\z\9a5ÆfmIn;\8a\14tf)2kLÍvc§\19Wý&\0 K\f »&ÖÏqèIä\99\92\14\1d¢\9aç±z¢ð¹hÂÈ\ 2XòÕ\1eMÃkdzIv\99)®z/M\ 2`_Ã)\1d"4¦\84}\1d×øèÏ6\15\84ù\91IWЦ\99\83Sj<F\164ÈW§ï\1aÆ\81Lð]/×V'G'*«\8bµ\88\ e\10UäC\98\ 6ë ©\9a\95ÃÌ»íF\91¹± Ï\99\89R-yÈ\8a\96\ 4\ 4\ 2Å\88D\11?\13§:\11a<6d\1f4ô"K\ 6{\ 6j\14ΰ/#\ 2\9e\ 2~©`\ 2ʲBã/Ê\14©íÌ\9e\f\1e4åùI_¦Ð£§Ù0ó\87¾F߶ܾ,×Ä\0ï'ê\1fqIçô~¢B\89\147ò¼ú¢\8bUvê 89ólteì\0WÎM¼Cú\94©ä%bY\14v \bÍ |fJ\ 5\88H]\95\83u&uÆÆ·q\83«2\\ 4"±fð\9aƯ\94¾ ß5³å®ýbÌ\1d\ e· ¹Æåßr/\r\16KÆ\17\11\1a\97Xö\897\9d±Øs&0\8fg$Éê\91\93¸\952\9e8\16+cð*Í
-\9f\8fáÑ\vs=\ 4i#RQ\82\12Ô\8c(µåJ\157\8f\8d\805\1e1;\Ûh¼\82\0ua²j4#¤\14+ï\ 3\91sÈ\89Ó\17FK\9bH\93*ÊÂg¶¶Ð±#Y´b5IÜ\1d\94\8d\vSÝ⪣\83LvZã1ÆÁ
-RÊZ7\14\82e\86´lÎ-\11\12\9a
-ilÎ\14T\13%¸=\91\85 S!\98t""Kë\84\94h)º&ò\8be±\8e\83\1a"NK\89\80\8aq\bp Ä\82Q¯\f\86L®\8bs\89Æ\80ÉÎ\9a8°ñÜl·Ü\8a~ª\9dÐèݨrDS0"\92a})\ 3ë#Qe\ 3©Ô"§\9b\8b\e´\ 5en\13«©\92¾ÜÅý¤q\89\ 5\8fËt\9eò'aÕ\13\83*Ü\89¸âã¢Èåö}R\81¤ú\18¦xôZ2]1\92\ fÈ&\88L{,±u!Ý\ fì\9a5½§\82¬3qØ4\94\98\81!ÂC\11¥5\1eHÝ\85\96n6Í\95Í6\16SÄ\rQcÔ¦òµÅXbã\8f\15C\8d\86É\88\17ã\921pdB,%&£\83\83\9dIÖz¨0\9cÈ\ 5Q0ÀG)\85\8aäI,à\ 6DT\8bP¤^Nü0$Ó~\96Ù&\92,¢Ø\v©¡\8e£i\17æÇ,F!\81\93SF4±\1c\rh\ 3±\7f\ 3pÀEÚ'æÀ\15y^ Ñÿ\99N*+\8c.ÂfÅÕ\19¼¶Ðð¬Öd
-|:\99\ 4\98\158\ f\94-Ì\88\1a&\1c\12\1f3á\8a\ eÞ¼,²C\11|Æq\92EC\92¿#u²¢°\8ai\9eø¾iµu«\99²\8f±ÒG~H¤Þ*\98cjYPíG<£bä§$f)Y2M\9cÏ7QÝÒä1\12C\86!F¼´S«É~Àÿb/ßòW\ eRþ\97°þsmáRÝ®\1c\97B£ªGÎ\99\fq`\91Rà7Rv4§Ýu»"&§\86é\96öÊ2K<Ê\8f\92ºÏ\89\98âÊÅÒ\8dÝi¡\1e\aö$SßPIͲ\95¥\16Ã\15¿Ël0\vméÎZ=Ç ×Ðc¹Qn1i%'6½/Ù\0ô\9d\8eÕÓóHU/\17\vl+¶\ 5&²Î\12ðÄÚZ\80°\9b\92´¡1_æ<©\17É\84ª5k7%FZ\96K\8a\ 4ÆKtNù\1f¦\ 5¨îåÊT3\88\8dÔGp\9eô\93È\8d\eßg*ÔDRkÁì§\88eê\0\ 6\ eyªý8ëéâ~¦¬\10\9b»\94\v\ 5 \9aî\8dcø&L\ 3evÙ}ì¦ç\86/\12\ f\11À%+"\91nKlØ.&VýM0%uqÏ\¬´\ 2ó\vÌ÷£yÕÓ\8d\¨\9b \92\12\176\18¥\\89³\10eYZêöúH\fû\ 1¹õÜ\vN\ 6ÖtFL\b,\95\ e\91öTU ªÔ\96rÓDê\8d¥aº\9d;ËÚ²«Ôæ\14R\18¨\88V\87\85Áù©>\9dk+&?4\19@ö\84³\13ËÐ\ 6æ?\88Xä\99´\1cL¡´ÂWj¨/D\88xBî3\8aü\f\89\1d\89ÙO.=C\93ÂfÍ4¥p\a\12ÁN\84ß8\10¹1L\r=\ 5\ e)\8a\87\88¨·ÚÔ\9cã5Ö ñRc\11Kα\99ejìeK¡æ\ 6!x/çè*<\a*Vi\ 2\eF^=\12©8\8eº¹%\ 5©TQ\vÄzb" \95ih\16f\96x8\93o·ÙEd\1e&ô"J\8d¸æ\8c\ 3\98\99ö)\8bzvô2ýUÄv\ 2\96¸\8b92j7Î4å>À\19sfz´|\89:Í´\e[¥\9fÍK\14X\92ØäyÅ\7f4Þ²§XãMLGOf×\ 3i\9eÇ\91\8ajôRÑëZ\84GÄâÄË\92[U\0\rD¨Ûè)Ñ]\12F§¨*&ØLÝG@@²c8ÃîD±\16\,o\8b4\a\1529\ 4\17¦\14\ f\9fòØ\14§9\ 3À*SåW¤ü"U\18b['Sºº(¤\ 3\9e\ 4©\88°R\91+\97«1\93ñ\85-aÅå\8fS\13½B\84²\90H;"Ó\8d\88ìH\90Ö\89\rb\10[j\f\1c`J\19\96Ð\ 4¤\95(\91\8b\14\fg³Ð\ f÷tnfé\14\13J\1d\85ub\9c\90¢Êr%jÄ%\ 2á85\a&B\89¦ókY]\r̹\11ɧ$W¡Zix\88É%Ê2"9Êä$$ç²H¹\e'cêB\98H\16Æ©\10ÄL»²+Inü7äÚ3#J µJ¼\ 5ë.\91Õï\91EN"\9f\eçë\ 5\96,?Öö\17¤\0\84Ý(W6Y\86| ì&Z7DZÁ\ fc\9b\ 6ñv\12?ãS[ì\ 6\8eÊɸrÁÊ`LÉ´Rù\eë}_<Î%¾\1fYý\80}ZÊ\94È¢Ò}\8d@\ f*\96Å\12%\15õ?°¹daâû\ 6Ã\8e\ 4ÈæR,\f%þÆÔ:\ 5$8Á\8e<¯&ÉJ§ÊR4\ eå%%\13bÙ_r5Æl¬\9fÊ"\90+¹\ 2ÓyÉ"ç²» \8d\80\95\87dw\81\\ 2m\8a°[\91zc\81R»Y"Ì\98¸2½\84WIljÿ©×\8a¦\7fLÃs\9e\19É\8dÃC¤\17N^Øt¾(ÌÈ\80Âa\1d"HÇVWÓ¨\12øÆM-öå`T\1fâ1¢\ 5V:AyE\82\1f\ 2\8fq\9a]H¦C\1e>äÁ¦\92ä\90«2$ÍóÂs/M$4òFq\85V\83RäL¤qb\99̸\`g\81! \91Ø¡¬#Jý^
-0ã÷!k®¼0Ùc^q\9dó\83Rl\8c\12ì\99\1d\9càP¦ûsW?\81.V±i\7fÇüµ\84Ú±VWÒ\9bÒ\8f\94\95\89M}Ì©\9e\89\ 29\95\1f\89\96K´QÊR\11¢\ 2\15ÑÅÑ ÛÀù\9ay"é¶\84$_Ñ\90²
-N\8c\11\82\81\ eË<\8a \11p,\95Æ7"â\16#!\17g".\136Èĸé\1eSúÈÒçRûfÃYf\9ci{6.íI\98+/\89ÙÎçô8\82e[dY=\95D\9cH\¨\18\93\17\ 2Pa\9a\19\eõ\8cïÃzæ63ÏK"c\94\85\ e\ 4AíbÎ\99p\e\96LÔ¡\f<\89\88Ø£\88$¦ÿ\15e\85ßO\ f7\90|Wðµm¬~!Õ·ìÑ\91\87\ 2ï*\92¦Ò¹[Î\98\92\8bXocºJ\19> ={b:¤\ 1=*\9e>Æ]&ëå\fD\a©/ÎâòÀs Ðwh\10k\90e¶·æ\96\94\9fg
-\87̳0\15Ù\95sÄ\80sDóâ"¢'\11ª2ôv\8c%ø\r[±\17\10f\15KÜÍÜ_B\ 1È5'%Ü\87Ó\ 3\#?ðî/\9c
-9)´\14öà3í\98 I`y\9dÜë¡P\87*T)¯H\{i´ \81K^ix#\99¼\87dß\91"§l)\0O\84-"\1d^\18\19Ø\99;\ 1bü:"\9eø\9a\8f¤6/p!í/"!\90ºXl¦H;'\ 3\ 5+é©ÍG\91µOeSB\8e"E8$\8d\1fAn?\94æ\a\ 5^9¾ó\9c¨Ùá\93ÃôO£c\83\90\f\889ó\1e`^ òå ÄÞ\99\88H]\ e/¯<òZ®&\ 2e \93Ø)µÂÌ^ ¼§\9e\94Ä\14\18»¤üB\a=¬^\90\8dBD\8a«õò¿ß¯Â\ 2@\95ί±Böè(õZK\85\84\91q\96¬R\10\13a=\8cÙ¨\gIï!¾\84\9cù#DÔâG\1e\86,*À\e êc¹\99ÜcchHÙ\10\91¥\13"±!j\8aÄï\17GÞ"\813;ç\9d\8ei\90\10©\87\89}\98äB\9akÁáH?3\8b\84\86\80%7r©\11\90»\9dùdªôt \19\89e±D²\16±nDo\87&\88"\18já×\82òZ.1/4]\8eí\ 1Î,q)\89½p\86!¼é|nh]\89 ï\13\98ð?s¸\95\9c\12j¼±_W×9:\81\12Hâ±\91ll ¤2\92\1a\83Ã%\9eÒ\10I\f\8b\91ÈHSâä×Ï2\92\1e§\92\e\ 2tû*\9f$\eC-\9dèä\83a-\ e2\1f±\85®\17\8d\8bMË:\f\b\15\93³Y¢!SóJ\80\1aM=\16ö\7f\94\91L\13y\19S\8a16\91\b¦Í!²(U.J¼èi\85\8ae\92ú\84`ª\91Ö\99æ\8ceãB\ 3Æ\10d¨\82\18²2\ 4½x\99}¦\16È\9d-¥x\91¥q±¨\8cì ª(\84V\1cÏ\93BÝ\82ì\90\92\v\10Æ&%âõÅõ>`R\973\97\88Æu\81 -'¦Ù\19 CIáç:X>Ð\f\82ïvÎÿ!*ɬ\14éÓ&*©\1eÈ\88\1cé\98iH¬ÆMð(22¹Q¸Ëé¨ó\1a¿i*\81õ~±¹m2\9b
-t5ô?ÄDZï\1fLÞðü\10üP\16óÌì\fÐ\86ÜtBM\ fÙ\ 3fH[\8e\85+Èr#ħ¹hu1\ba\818\95R4\88½\=):9ÇGÓâ㺱²\13\8b=T¢\972Ý\85U¸\9cù´ZÅ-*U9ðÖá3]ÞN\f¾\91©Móm\87\881¡c%\17l\14M\8c\81!IÀ\98\f/cmä\161ÞJ¬|¥®.ò©l(\96X¬\92±ÍcÕX½$5Õ@lÁ\9cY¡?D¿'\14\87\8bL\94Ôá.Mk+>và\9a\99Ó\ 1G*\97\19\87\99\12#¨\82°Ì\1e\19©\18\99ÄØ
-ïÔ\88î\10Í\17v6,âÓ
-\91ú\8b\9c.\ 2f\15j²F\0ýt²í4\19%èÇ\98Õ\12\90Ä0\98\19i"r\ 6lHL\9f8¨\e$\876\eδW®õMfç_Ç)bnZÈ´ hµÀʼy\1ajF\99\92:Eîv.\9c\81\916réÀk\ 6KõEÊ4§©\94õå×
-\12d\18\88ý.©\8fÜ\18m\1d\ìhhÍCé§P¤\88\9e\82@\15P\89\8b8ãD\rÎD\88fè)±\99`_'\89ÐÈâ\b\83yB\16\0qLN·\85«Û\ eBv©@ .¿`G\997%õ\1c\16RP2\91¿KBx¢t\1cb\14Ñ&q\9d,VØS\88Ê\9e{á\80L\88¿.\11É\89\f\ 4',Ííà¨5å±\80q¡ÖFºÞ\\18G²\8dBk\ 2,\11BÏ\9cB3\15¦*\1axr}l\99£Ìw'´ehÞÂÌÎ#B½\18ú\ fÓ \12\18\91 .=\89uhV\18õ{d\9d\17\8bq\1e\87=%7ÿRí%±e:\19\90I\8fU\85up®|ÕÚ\86ìHs1¿¸ì\89Â\8aK\ 2\ 6%ùK\80J\15 Gn\1a´¹0Ϻãe¯ã\1c\ 4À1'\14\92ô\16ØsÒÂzªá\8aKÜ\0ô\ 506¤\85\1f\8f½ÁH\9aË®\1eO\8f\aåä\96ýÎRYf¦æ\12)Ã\11\ 5\94\9e\86\10mâ¼tf©\91\1d¥\1a\ 6èAH®?e»É@0\8b\19[l\92\ 4\11kaÇ\85?\81<&\89Kµ\1d,\ fõ\82Â\82Þ\84\9d2á'¸\8cÌ\13i\85\18 *Ñ\1c\9fò\1ddi \e:sî@nÎ\96¨ÎT1Ôµ3gæ§xôy?0!È2¯¦áHËòj\948mQN0F\16\91Ô\e\vgÙÅÀ[\99'\86DÀÒÀ¥R·a\12\19\11\96îÈßIlùP^\1eȳN9OBä©àbi;ò\ 4¥\96\92\8a\83B±på@\ 4ÆKÈ\101\8c|h9^¢Eè'\97Xú\98é$uÊ ±e\95)\9c9C\8fÕ}á\9c·ë+³?|æ\13<\ 4®\87¸\899¾ÅF\9f˽|fh\ e;\91O_³2[Èa\a}s:\1d6
-£ýù«eú\1fVÎ\9e=\aØ\1cP\ 2\88ä\11\13®¸õQÄ\888>8RLv\ 3\8e\15P\98\84\f&L6\8aLü\eZ\8f&Fµ4tD,ç3\9d'Ñg\88I\9e¶0ÙÆòâ
-\r}%\18¾\8b\9ca³ú´R\88¸Î\91-´Hg\aõ\95P{T\92r£6\17Ââ\90\94\1d\1aÙÔì\9b\81\ fJS£\91\1a\1d\98¥¬.\12I4Hý\b\19`\19k\19\0IÒþñÅÎ\94ʲÈKJ\b!Y\12yqtIa;q\84ÑNQf\96M$Ûu\91Ú©QÞ³tÑæò\8fCþ\v#\12L·c\92Éñ$É\1d\1a1Ó¦OÄ÷AD/\1eï!\80\88±}\13MÛu÷H£ î,Ås^\14FÄA\84fÔ ÀZ¶ÊÒå\85ÓÛ[¨7óG\92éYf\ 3\17å\elÖëM¥Ë\90Mhç¶UöK\95\ 1@û&Y \0ª\88\19 n'\86Фùv\97hÁ©Y\95Ð\ 6\12í\94(Ñh¶¸$©R+\97\ 6\18Z
-\14±g\92F&¿Sëu.M\95W$\82\86\12\16ab\0ã<*u&²Jú
-\ 6c.÷Ä\9bL²\1ar\8dôõ¨.\8ah\90¦ç«³â\97çÆùd²º\88lÝ\ e\80g®ú;\9aWErË2á$\83ÐøJì¼Ô¿ªðKõhÔ)ö\94iʽI\ 5\96±DÈ`ZB^4å\12Ì \11ÈÇDuV\11\15rºG¨\12Z°`\f\15{\10\8d©\92'b\a\8aEf¶\8eR\10GÄ\1c\e¥ªî¥¥;ÈÑ5ª\19кÌ"g\86;Ab<\8fª\ 3¡¹\93*Ó*EYÄ(1\90ù
-=¥\98m¿(rJºû\1e\87·Of:\ 4R\ 1\a È?Ïä? \9bÉï¤n(\90Y>\8cK\8cØäx\94h\ 4\979\8flZ¡'5×\8aÆ&-\9c\11\ 6òÔÁn\ 5\8d<(\rât\ 2Zé\ 2û\9a¦^3\83\ f\18Ú\9dõ
-:{\9a@\90\86\98@ÉÕédì'^}HÈ\rª\16%\12\r!ØÂ+$P1\ 3\8f0\ 4\8a<\8c\ 1³\17â1ñ \91\17\939«ÎàÛ\884\ 5Ö\9d×\91HhC¹gqÀé\8c\19Kº\94\82R¸\121\8cÀØ\88éGåäøÑ!\19í8ÕÅqCf\10éÕ\94Ý\89\rpMBMnx¨.¢À ¯\11F8\11DÖV\99\85\14\1eå\96\94è\91'd\ëa³.3à>1`bÞg\12õ!°ÀéÆE\ 6\824X\v\95\95\9c\19\99Ä\ 65æm¦»Kdènª\9e`\8f\97\89\81åó\ 2\v_ZJxh-=Yqh-ªÃÒ²*\fõ\q\9a\ 6Î*2)¹\aïÈ|½_j\e\19ò\13Û\8aö©ÓÚ\17\9c\ùiu\eô\97\ 2Jß-XÓ6yö\9cdáaK\97uÏÒ\8f\aw/^Ús|窾îÞ¶Ú\ eµm\ eo\9byH÷9K»º\8f?üàö\ 5óÚN-w§\8c2\1aûôöÚ\19G\b/XÒüï\bh\eû·=Â\ 6\19·\8dkÿÕ6h\9b<\99ß~Hg_ç¬ö¼ö¼µ-\983öÿü\85}vØa\87ÿקð9~>õêvhöùÓ\9cÛ\9fà³-W×t\9b?\9bÖØö«ûLÚa[öm¹mÿø\8e[;Ú§^W\v\9f\81^þ\9fëg°\ 5ÊÏ`#è3Ø\bú\f6\82>\83í Ï`;è3Ø\bú\f¶\83>\83í Ï`;è3Ø\ eú\f¶\83>\83í Ï`;è3Ø\ e\83\9fò3Ø\19ô\19\\ì0\98yð\9fÁvø÷\98\93ülÏóóHPoí\98ÿN?\83\8dP~\ 6[`\8bÏ_`\v´ö8lý3äó8Ò\90!C\87\ e\1dòY\1cºz¤!C\86\r\1f9räðaÛ}äÚQ\87\8f\189b¸\8e<dØȱ;\7faç±#\87\riÜH\1fÿs¿cøÐ\9022tØÈ1;µí4fä°Ú\91\87\f\eÕ¶Ç\97Ú¿´GÛ¨ú\81±Í°áµÏ°aµ\v«ý<\8c\9b\96\1f\86pÅCùahØð\11£ÛÆM\988a×\9dF\8d\18>lø¨¶ñS\æ&\8fßqÄP\7fÔZË\8c\1e»cí3v̨Úgô\981£k×Çc\rÃ\17\8e°Ð\88\11#G\8d\1e\85?a\87¶/\8eßwÚ\81S÷Ùã\v;\8d\1d;¶m÷/çG\1e;'Ûw\97QCuÕC\87\8fÞi\97Ý'ì5iÒÄ »\8fÛe×q»\8fßc·]v®}ÉèQ£G\8f\19»ãN;ï²Û\1e»\8fûBÛNm_\1c·Û¸/Ö\ e³ã\17Æ\8d\9f¸÷\94 øjvà~{M\18?~ü\9eíîÈ3\97\9cqØ\ 1»\8faC\f\19:bì.\13¿|`\94\15E\16M\9f6eÿ¯L\ ff\1eðå}ö\9a°Çn»îºÛ\1e\13&~iß)\aÌ\98¾ÿ¾\93öÚû¯¦NÛ\7f¿Iã÷\98¸ïÔ\19.\99uð\9c£\ e=ÈÍ\981sæôéáì¯}sMÏñnÏ\1d\87\ fáawÜý¯\DZ_;³ë¬\85\v\8e;êð#\8e>þÄùG\1fòÕÔÍ\986eÊ´\99QZüõáó\8e\9bwØW\93(ÿ\8f\87Ï9ì¯\93\19\a\86_=lÞñ'\9cxÊé§\9dxô\11s\8e>îøyGÎ\99ÿ\8do_vî\82d/\1dwø\98Ý&Ï:~Éùk¯þ޵߽tMïÊÞs/¼øÛç,;ëÔ\93\8f=|öì#\8e[pzç\92\95ç\9c·jÉióO8嬥Ë\96v\9e<oîq§-YÙûÍoö®Z±´«sñÊs׬^¾øìó¯¸ê[§f\93vÂq\87\8eÜyïìľkï}ì\99ç\9ey|Ã\9d·Ü|Û]÷m¸ÿ®\e¯^{Ñ9KÎ<sé¹\97®»jý-wÜ~ú\vV÷\9d\7fÉÚï|çÒó{W®ºà²ußY»vݺ˿½fÍ¥×ÜrÇ×½ìÊë×_tzÎã\ e\196z·iszÖ?¶é½\8f>þñÛ¯<ûôÆç^xé\95M¯<ÿô£\en]wÁ\ 5ën{à\91'\9e~öÙ§\1eºóÆë®»þ\86ëo¸é\96\9boX¿þúõ×\±îªëo¹ùº«®¾ñ¾G7n|ì¾ÛïøþÍ\97\9cá\8f;v\82[pÉ\83\9b?þÅ'\9füâã·7¿þæ[on~óÝ\1fÿä£÷ßxú®õëïzrÓ\9bo½ýö\8f6=ûè\83\eî¿ç¶õ×ÝrßÃ\8f?ú\83»Ö_ö5\97^÷ý{ï¼í¶{\1f{ñ\8d·Þxþ±\876Üñ7\v\v\1dwø\8e\93òΫ7~ôÉoÿþ7\9füô\9d7Þ|ç\9d×_yõí\9fÿò7¿úOo>vÏ=\8fnzï\83÷ß}çí7^}þ\99\8d\8fo¸ù\8aµë7<÷ÚkÏÜwÕê¯w÷®»}Ã\86ûîûᳯ¿ÿÑG?ziã#w]V\1e·mïÿ°äÆ\97ÿóßÿÃï~ó\8b\ f7ozý7_xòé×~úÛ?üá×?~ñÑG\9e{ëÃwßÜ´éµÍ¯¿¶éåg\1e¸þ\92\8b®Ùðò»ï¾|ÿº³¿vÊÒKo{ð\87?|ø©\97\7fôáO\7föÁë/<qÏåþ¸#vÞwöòÛ7\7fòßÿñ\ f¿þÙ\9b/<÷Òk¯<ñÀ\ f\9eûðW¿ÿÃo\7fþÆ\v/¼þþ\ao¼øÔ\93Ͼüú\e\9b7=ûÀõ\97^|í\83¯¾÷Þ«\ f|·ç\8cÓ\97¯½óá'\9e|ú\85×Þzÿ'\1f\7f°ùÅ'î¾ÌÚwèÈ/~ùÐÞ»ßþí?ýóÿøÕG¯>õÄÆ\176>pÇ\9d\8f¼ñó_þúï~öÎë\9bßþàÝW\9fzèÁG6¾ôê«/>¹á¦+ÖÝø\83\177o~þ\81ï\9d¿¼çÂõ÷?þÔÓ\e_Ü´ùwß\7fë\95g\1f¾ãâSSöß¡#w\992ç\9c¿}ïwÿò¯ÿô\9b\9f¼òøÃ\8f<ö\83Û®ýÞ\9dOm~÷ý÷Þ~ãµÚm|ýÙ\87ï»û¾\87\1e\7fò±\877Üuóµ×Þrÿ£O<þÐÝׯýöÅWÞþÀ#\ f?üÈ\93Ï>ÿâ+¯¾ðäC÷\wî\89\11\9f·¡£ÆM;úü\a>üý¿þÛ?ÿ·\9f½öÄ\ 3÷Þyãåߺà;·ÞÿÐ#\8f>öØãO<õÔ£÷\7fÿ¦õ7ÜrÛm7^wÍÕW^ñÝko¼éú뮽ú\8aË/½üê\9bî¸ãÖ[n½óÞ¿Ýðà\83÷Þ~Ã\95\17.>ò@\8e\ fCGïvÀ±\17>ôã\7fø\97\7fûß¿ÿÅ[Oݳ~íyKÏ\¸dõ\85\97üÍå뮼ú\9ak¯½jí%\17\9e\7fþ\ 5\17\9c·jEÏÊU}«Ï=wUÏÙg÷Ô\9eµs¾uÑÅ\17®9wÍ\85\97^vùÚË/^³jYç±Å~\18Ïj\8fÅîÓ\8f»ðÁ÷~ý\8fÿë\7fþî¿þèÑ\e/\zÊQ\aÏ>ü\98ù'\9d|Êég\9eµhÑ¢³\16\9e~ê)§,8ù\84yG\1dyôqóO:ñ\84£\8f8ô°£\8e\9d\7fÒ\82¯\9dvê\82ù'Ì?ùÔÓÏ8ãô\ 5'\1csdGº?Ç_<n\aÌ;÷®W>þ»_ýò¿|ðÂ]\97,\9a;kÆþS¦M\ f M\9a\17³j\9f<\ 3\89;
-¦\7f¥6Ò¹(
-\ e\9c:eÿ\ 3fº8ɲ\146HQí\87ÚOÁ\8c\ 3¦ì3^ï\8b¡£v\9d|Èâ+îßøÊk\9b^zòîµ\8b\8ftûMØ6:\8e\1f?aÂÄÚ\90ü¥I\93&íµ×^\13'î9~÷Ýj\83æ\9e{Ö~\18·ë®»\8fßs"â{N\18?Á~\1a\8f1zG½ß\86\8eh\9b\14\1fó\8d\8b®ºþ¦\e×_qþ¢£Ü>ãv\1aS\eÍÇÔ^\ 1;î¸\93}ô.á _ûa4Þ)ø©\16\1f;V\eâ'¾S\86Ù[t̸ý\92ÃO:sÑ׿¾è\8c\13:\82}v\193b\98}\867|Ê\18_\82å_Ëíøç¡Cí_{[\8cÛ{j\98Í:è "\9d9e¯]Æ\foxe6ÿì°õ¿øWñÐ\11cv®½VkÍ8iâø]ÛF\r\1fúÙL\86j¯M¼\8cÙ\88cF\8dØþéJyà!ec\95Íó\99\1dzËæÙÎÏäÉ\87ö,\ 2dµmÁ\11\82ÐÖ~7\0í¼¶Õö\1f$WÛ\ f1/j\ay'Ø¡\86E\ 4=Þ\0ª)ð\\ 5\a-\aù3\80ø:\88Åý\7f 95P³\ epÛ5\84>ËrÉ\81^\ 6°ùrªiG\19È)\bRP\97RÝ\94åF\88êÁà¸Æ$d;\92»\12¯>,\99Jn\97\85Ò\1f\962'\8f\ 6\ e8\15\88¡\83V\ f\99pPØ°Y\94\92\bá\b\7f\ fóJ \92.\8eöR(65tÈO\81Oà\0Ô\ 6\13\83¢Äpgd\88\92-\1dÜON¡\ e\0|R®#ï@èhê\157\862\89¼HrÈ\as1ox\16A¦HAâ\e¾\94î\1a\ e"Ï¡\89©§2\95A\8c¾X\12w\0iÔ\81CHìy%\ 4 \86ÔË\1cù 3[$2¨A=r`U\84&¯E\8dëz¨\8b\8aê"nV¶\ 3Ì\e\8cOG® 5©ë¡P<j\ 3Æ+( :yÅ\92\v4ÛÍ¥àå¨Ä\85\90s\12»\85$<Åi\1cͽsñ»å\e\82¶,Höm\bQ*Lò\1aõ ¤\a¡3Mµ&Þ\19R\ 4Á\rOìr³ð\ 5¬å³ê®Ð¡wìjT²Î3ӿΪ!\11Ä!¿^Ý,\91á\16»\8dDQ+¡HÖ¾]mÕ \93Ú\10%¿unæ3ÅÃS.ÂI\ 5§0Õz y\94Á¹Í\9eȹm\87I@\ eÜsè3èë¡\1c²¼!\18K \8c\8ctR\ 5xæ\80üÇ\81ôê} KDzJJ\94\eE\85i\9fàH\90¢ªFê×[ \82§\9c\986xÑp¹õ&®;mQ¿<\8e\1a¶«\9f¼\93ÃA\93\8bì¨]\7fe\0òýsù\16AÚ\ 6P°E\ 3\10xîy\9e5<\15\16j¸ür»(\97,!CI\91l\19"ÕR\1dÔ\a\ 3Y!²»\a\91\85\12ZF×Bòordèä"ê;Yf*HùÏÊ5\ 4¦$ÚÿZÑ\ 4_9±mòÂ\99³{û\ eYÚÕ·tEOgï\9aöY\b-8zî\89s\ ei\9fÕ>uegß\928Σ\85¡[8ý ö©³ç\84ÁÂÚ.µ¿Ok?°¶qÖ>sNO_ûÔ\13N:|á K:WvÏ_³²[\7f:¨ö? <R]-/l\9c\8ak#Æò\86 dB
-ôËj0\14Ñ».¸Ïq\1cl7HïPõ¬\1eê\92e\v\r}+Û\ 5&\7fí2{A $Ñ;G¡11`,\93ªë\92uÉS\81¼\9d¾·1(\82!\82\12¿Ï$ºÇ\ 3FaÒ\18\82\96J\98\9bÃ\83\ fZ\eÌ¥P ÌÚ¶\12\8cdú«`êÇ\84\82Æ¡\90á#\7f\96½\9f\12Ç\902\8a³¸\12ê¢9\ 1ùíÕíê!gâ\96\95P$\15×\8e\86]+§×ïfb<ÙÆ\9e\94lGO\ 2C5Ök²Þ\8b$¥`A0øBo;Î7\ 5M£ª¡LÎìb¤û`ýþ¦&ô¸µ \a*\18ºØÞ÷Ôq¡q\96ݸLR\ 2Ôf¤\ 1S\19\12\81[ÆQ\95į́\82G3k½jÈ\15R¯¯\ 4ëç\a=\8b@ïƦÁÚK7ÔIW\82¹4\85B\9aefÖ\ 5\v\90\91)\1f\99jöa!Im\90¥]Ý\ e¤S\1d\8b$B6T\9a[(βÒÚ0÷\13\17ß\89úßË\ 1t¢l;:\91\7fM\93\8b»Üÿ\1eS^"¤ª î\96I.\81M\98¤\89\8dR¹3J<\ 5Ù\15KBó%Ì@rg\88cm5d¯"1\11}0\94¡\17 \8bÜ\ 6¤,\96ì\9eÄ{Ê\90X¤\92Ïl\aÏÅÂ^\9c²¢ \18L\14êK\83 ó\9a\194¥B÷\80òë\\92=e\ 6¹vaþ|\89Þé©1/y"\18äê!#S\ 6¼uåv)L§ò¢þ\rÕ\88\93è½t\19|06\7f6h(e\9aÙP6[F}\14<â|;6§D'É\17\ 6\vçtñÒ2æã\11\82s_ ebOKù£\1e\14õ\12M\99©A 7\96\9a\14Bâ*\11 &Pþ¸²YåtsÓz\82â|ª)m&\9al\a¯´ö~²>O\1f¿¹\14Î\90v$û|ZH(1\84¦\9f\1e*hùI\94¡\12Ð%P\9b½ºU¢ß$\12RíÓ\1dÛþ\1c\15?GXAæÐaÔ\83çgyC\fï"²ëaÀÄ\ 1Fý%5\9fû<©\84Äíå0UÙ\ e7;ÒÕ\993O5¤/\95\0\87\8fÑ\14×\91\98-¥\9cz\93Õ¿´Ò´89X@T·«_\82?Z¿+íð3èÚâ©H¬±\rê1ï\ 2\97C1£Èª]©r:\95.\97ûDzÞ33Ft\87©'W ÕÛ \1eÃ2:\97\8149»\95\11£ò¥õ\91\ 5'\97\87\8dÛÕ/Á\1fß\95\ eh
-Y\84Û9\85\84\ 1»\7f\ 4\mÌECÃÜ\1eò zôðò\9fË`@ñS>¢\94//\ 2³\96«·jáÅPª\9fSp©á\81Ï!\aRÞK.ã*!x
-Ja¡\1esbLSì\83jFõVÅ\97Ò\9b¯ÚúPGØbü¯]B}A\94fN¡< ìeBéß\ e¶\89Ôp9ìB¯M×Ï\87\87Ai\8b\17Ôyñ9\14GËóÀt\85Ê\90®Â\91µ]ß.O̦\0§ÂÁ»\1aª_\7f=\96\99÷\1c\ eV\9fDÀ\11\18_J7ÞzÈ®ßåyÃvNß®\81\12Óíþ·\7fÛ\87¹b;V/\18æ\8aTÊ×µVɤ込!\b]1§¦\87n\16\93GÍ\83¶ûÜfÇÄô\aaJA5Ìp+Áúì®\88eÀ¶µ`}¦Õÿ\98s\aôànÇ\8c½Özµ\ eh¶y\95KBP²0LúÀ \ 4¡ µ\ eÄWl%\92Jj½£\12sÒÝ\99[\8dI\81º6\88\9b\92eÙ\8d©0C¥\96Jw\87èJè\1a\9f\8aB^\ 3<\16þ\ 6\19\16ÉT"\92È\1f\ 5"3YjC-\97ws¥$dÃ\8e=³\14¿qÕ\a\9b²6qÚ8\0¸ Ò¥T·\8bÍÏ\82ß\10¹¼!\14É\0\rÍQ\rÒ§g.\8f\179.\8eëA\9c³\84iË .-´Y&äD\90Æ«\84ìÍ\85\a´\1eô¹È\ 2®úlãb%\95Uy¶q½2Ϩl\17É5[³\97¼à\95ù\1c\eôt(8Î õA\10DÖ\83w\95\1eâØ\91SòÆ\10ûVG³\ eçÓ]ØÞAL\88\97GmØåj~\88\86j~\bÍy\848u®¿\ap%\81\8b\1aß\17¸ç\92k«lWï\ 6\90\9fI¶\f\99\ 4P5\98Èw\14!¹Ùs*\fÁi\9c\88\14ÂÊPGÃUXpn³K\eØS¾=K*4m\18\98Êoõ1¯\aeY\9bòLsÙ.o%X¿iM\8e¹íkÄb;æ¶\9fÞh\8bãÚRla±\95ãó \81é\8e°*Âÿ[Ô\96\96ò'Ûð\ 5i±Õ/\98Yݱ}æ¼\15}Çwwè]Ô½h[þ<µ¯·³gղξîÓ¦B\18&ª\8d¿ñ\81Ó\13¸\14EI\90\9d6mZûÌ\13úz\97ö,n׶__Ñ»Ü.M6»¯öç³V÷u¯ÂW5ü©\1e\98
-%r|PHÚâ\87òOå P\12|\1avÓi\14Iå,f/ZqV÷1g}£»«ïèÎZì¼\86\86Þ¢mû\8bÌ|z{/ë\ÓÝ\e.ÜZ\8fÁ\96óV,êÖn\9fÒú\ 3ضö]ç-_ÖSÛzzgÙ¤ö\95³{{;u\9e\95º\96,]¶¨·»GÛ8ëÈþ¯ø§¯ìËSçâ¢ÚÃJ;V7<§sÙj¿åÒ\9e³WuÕ\1e\84YË:Ïê^¶\95\1dz:\97w\97·zË=þÿºrÞÎ\81\÷âÞ\15«W.¯ýu@×^Ùë3¸¦ð\8f^Ó§_\f\9e¾ùK\96®:tY÷òî\9e¾m¹\92~»|¶£Ët
-CC\7fÿ@.\16"\17Gù\9ftx©\9f\ 1^¢\1c^ì<²pÛÇ\97\19[\1fÊ'/\]ùßWð\ fªêµ\7f·»®\8e#U*ëµ\ eÒ¬¶\8epËÕuìÜr}½¶sK\15ví×J\8d]{¶XeÇÎÖÙõÅUÚõ½-ÖÚq\83Z®¶«Ç´VoÇY·\q×Î-ÖܱsËUw\r«uw=IUÞµo¿Ú{Óg\16áÃøt\1fÂ\r\9aÔà\eÃ\ 3©ÂcÏ\16ëðjø\96*ñ:ß\16kñj\8d¦õø-Ã\ 3ªÈ74Å@kòêÂ-VåÕ\1c-ÖåÕ\1c\ 3¨Í·¶ÈÁ|\83ý¯Ym¾1\Vç\eÃ\ 3¬Ïcç\96+ôhÑ&5z\84\9bTé\15nN¯}ûUêqöMjõ\8dá²Z¯pkõzìÛržqç\86ÓlRµWWÛ¶º}˽¬YÕ^áÖêöÚ·_å\1eá&µûÆpY½W¸Åú=vn¹\82¯\9dûÕðq\87\9aTñ\eÃe\1d¿1<ÀJ>Î ÅZ>vmRÍoz\97\aÔ½²\96»×\16õü22°\8a>vkµ¦\8f«oµª\8fïm¹®\8f\9dûUö\11l¹¶¯Kiº\8f}[ï«\19Z¬ðë\8a[«ñë¾·Xå×\15÷«ó#Üb¥_\972\90Zÿ\0\9e±¢Õg\8c«ÚfÕþÆè\0ëý¸ÖV+þ|Ê[ùã¬[ú7ÌÜ\9bÔþ\e£\ 3¬þãªZÿ«5[D\0è¬[Ã\0\fpºZ\84Û9]m\82\ 3@´ \12@á\16±\0h\92VÑ\0Ø·e<\0κeD\80Ú§\1f&@-Ñ"*@WÓ\1a.\0û¶\8c\f°\96h \e°íÃbÑòúIÃb3t@c¸\84\ 2 Ü\ 4!Ð\18.á\0M\8fí'UM\91\ 2\8dáê\1c²\19Z 1\\9dË5C\f\fô1oy½ÀVm\8a\1aP¸%Ü\80vÝ\129Ð\10\1d\18v\0»¶\86\1e@û6Á\ fà\80"\b°oË\18\ 2ìÜ\ 4E cöÃ\11èì[D\12`ç\96±\ 48¡VÑ\ 4ºÆÖð\ 4M;cc
-¯)®ÀnJkÈ\ 2õ\86\16±\ 5\8d]i\80è\82Æ«)ñ\ 5M/rà£BëË<5t3\94AC¸\ e)À\197A\1a4\84«·³)Ú`\0¯\91\96g×Û\886ø#P\ 3_(
-|¡ÈjT\93\17Ö«TÛ\b9Ø\ 6¼A\93ßÿÌ\10\ 5-6 0\ 4\ 3\ 5\10|Ú\1fÿR \ 2\9fû¥\ eb\ 2>+LÀ§\8c\0\9fkÕ¿Òhµ§¬}öê¾\15í¢·/=¿r£l_>å\vgÏ)\16\1esÖªîÞsº\17-<ª{ÍBm´êO\8b#\bk\7fîYÑÓ\1e\86iÊ1eîÁ%A\9f\8fáôém\93'\1fÛ¹¸{~oçÒeݽm\8bWu\9eÓÝÞÙÓ³¢¯Ö°+k\7fi_ÜÛ½ªoEowûª%+ÎE¤¶\8bß|òäC\8f9¬íÿ\ 2mSÓ×\rendstream\rendobj\r80 0 obj\r[/ICCBased 84 0 R]\rendobj\r5 0 obj\r<</Intent 19 0 R/Name(Layer 1)/Type/OCG/Usage 20 0 R>>\rendobj\r27 0 obj\r<</Intent 40 0 R/Name(Layer 1)/Type/OCG/Usage 41 0 R>>\rendobj\r49 0 obj\r<</Intent 62 0 R/Name(Layer 1)/Type/OCG/Usage 63 0 R>>\rendobj\r62 0 obj\r[/View/Design]\rendobj\r63 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r40 0 obj\r[/View/Design]\rendobj\r41 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r19 0 obj\r[/View/Design]\rendobj\r20 0 obj\r<</CreatorInfo<</Creator(Adobe Illustrator 16.0)/Subtype/Artwork>>>>\rendobj\r72 0 obj\r[71 0 R]\rendobj\r94 0 obj\r<</CreationDate(D:20141005170625+02'00')/Creator(Adobe Illustrator CS6 \(Macintosh\))/ModDate(D:20141014022555+02'00')/Producer(Adobe PDF library 10.01)/Title(Web)>>\rendobj\rxref\r0 95\r0000000004 65535 f\r
-0000000016 00000 n\r
-0000000187 00000 n\r
-0000046111 00000 n\r
-0000000006 00000 f\r
-0000266476 00000 n\r
-0000000008 00000 f\r
-0000046162 00000 n\r
-0000000009 00000 f\r
-0000000010 00000 f\r
-0000000011 00000 f\r
-0000000012 00000 f\r
-0000000013 00000 f\r
-0000000014 00000 f\r
-0000000015 00000 f\r
-0000000016 00000 f\r
-0000000017 00000 f\r
-0000000018 00000 f\r
-0000000021 00000 f\r
-0000266920 00000 n\r
-0000266951 00000 n\r
-0000000022 00000 f\r
-0000000023 00000 f\r
-0000000024 00000 f\r
-0000000025 00000 f\r
-0000000026 00000 f\r
-0000000028 00000 f\r
-0000266546 00000 n\r
-0000000029 00000 f\r
-0000000030 00000 f\r
-0000000031 00000 f\r
-0000000032 00000 f\r
-0000000033 00000 f\r
-0000000034 00000 f\r
-0000000035 00000 f\r
-0000000036 00000 f\r
-0000000037 00000 f\r
-0000000038 00000 f\r
-0000000039 00000 f\r
-0000000042 00000 f\r
-0000266804 00000 n\r
-0000266835 00000 n\r
-0000000043 00000 f\r
-0000000044 00000 f\r
-0000000045 00000 f\r
-0000000046 00000 f\r
-0000000047 00000 f\r
-0000000048 00000 f\r
-0000000000 00000 f\r
-0000266617 00000 n\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000266688 00000 n\r
-0000266719 00000 n\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000000000 00000 f\r
-0000073564 00000 n\r
-0000267036 00000 n\r
-0000046559 00000 n\r
-0000069629 00000 n\r
-0000073864 00000 n\r
-0000070662 00000 n\r
-0000073751 00000 n\r
-0000070519 00000 n\r
-0000069691 00000 n\r
-0000266441 00000 n\r
-0000069958 00000 n\r
-0000070006 00000 n\r
-0000070697 00000 n\r
-0000070916 00000 n\r
-0000070792 00000 n\r
-0000073635 00000 n\r
-0000073666 00000 n\r
-0000073938 00000 n\r
-0000074156 00000 n\r
-0000075256 00000 n\r
-0000091481 00000 n\r
-0000157069 00000 n\r
-0000222657 00000 n\r
-0000267061 00000 n\r
-trailer\r<</Size 95/Root 1 0 R/Info 94 0 R/ID[<32A11ED8B21444C3A7F1A0847408DD15><695AD08F77904C4BA28FA9FA128675A8>]>>\rstartxref\r267243\r%%EOF\r
\ No newline at end of file
+++ /dev/null
-include=base
+++ /dev/null
-Default avatars are modified from an image by Francesco 'Architetto' Rollandin.
-http://www.openclipart.org/detail/34957
-
-Some icons by Mark James
-http://www.famfamfam.com/lab/icons/silk/
-http://creativecommons.org/licenses/by/2.5/ Creative Commons Attribution 2.5 License
-
-Lato font by Łukasz Dziedzic (http://www.typoland.com)
-SIL Open Font License, 1.1 (http://scripts.sil.org/OFL)
-Prepared for web with Font Squirrel (http://www.fontsquirrel.com/fontface/generator)
+++ /dev/null
-/** theme: neo
- *
- * @package StatusNet
- * @author Samantha Doherty <sammy@status.net>
- * @copyright 2011 StatusNet, Inc.
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://status.net/
- */
-
-@font-face {
- font-family: 'Lato';
- src: url('../fonts/lato-regular-webfont.eot?') format('eot'), url('../fonts/lato-regular-webfont.woff') format('woff'), url('../fonts/lato-regular-webfont.ttf') format('truetype'), url('../fonts/lato-regular-webfont.svg#webfontCjmEHx3G') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
-@font-face {
- font-family: 'Lato';
- src: url('../fonts/lato-bold-webfont.eot?') format('eot'), url('../fonts/lato-bold-webfont.woff') format('woff'), url('../fonts/lato-bold-webfont.ttf') format('truetype'), url('../fonts/lato-bold-webfont.svg#webfontCjmEHx3G') format('svg');
- font-weight: bold;
- font-style: normal;
-}
-
-@font-face {
- font-family: 'Lato';
- src: url('../fonts/lato-italic-webfont.eot?') format('eot'), url('../fonts/lato-italic-webfont.woff') format('woff'), url('../fonts/lato-italic-webfont.ttf') format('truetype'), url('../fonts/lato-italic-webfont.svg#webfontCjmEHx3G') format('svg');
- font-weight: normal;
- font-style: italic;
-}
-
-@media screen, projection, tv {
-
-/* general styles and layout */
-
-body {
- background-color: #C6C8CC;
- background-image: url(../images/bg.png);
- font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
- color: #222;
-}
-
-input, textarea, select, option {
- font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-}
-
-a {color: #3e3e8c;}
-a:hover {color: blue;}
-
-abbr {border-bottom: none;}
-
-#wrap {
- background: #fff url('../images/brdr_black_dot.png') repeat-x 0px 10px;
-}
-
-#header {
- padding-top: 12px;
-}
-
-#core {
- border-top: 5px solid #FB6104;
- border-left: 1px solid #d8dae6;
- border-right: 1px solid #d8dae6;
-}
-
-#aside_primary_wrapper {
- background-color: #ececf2;
-}
-
-#content_wrapper {
- border-right: 1px solid #d8dae6;
-}
-
-#site_nav_local_views_wrapper {
- background-color: #ececf2;
- border-right: 1px solid #d8dae6;
-}
-
-#footer {
- top: -6px;
- border-top-left-radius: 6px;
- border-top-right-radius: 6px;
-}
-
-/* header elements */
-
-#site_nav_global_primary {
- top: 10px;
- border-top-right-radius: 6px;
- background: #364A84;
- background: -moz-linear-gradient(top, #516499 0%, #364a84 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#516499), color-stop(100%,#364a84));
- background: -webkit-linear-gradient(top, #516499 0%,#364a84 100%);
- background: -o-linear-gradient(top, #516499 0%,#364a84 100%);
- background: -ms-linear-gradient(top, #516499 0%,#364a84 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#516499', endColorstr='#364a84',GradientType=0 );
- background: linear-gradient(top, #516499 0%,#364a84 100%);
-}
-
-#site_nav_global_primary li {
- margin-right: 0px;
-}
-
-#site_nav_global_primary li:last-child {
- margin-right: 10px;
-}
-
-#site_nav_global_primary a {
- padding: 2px 10px 2px 10px;
- height: 20px;
- display: block;
- float: left;
- color: #fff;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
-}
-
-#site_nav_global_primary a:hover {
- color: #fff !important;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
- background: #4c619c;
- text-decoration: none;
-}
-
-#header-search {
- top: 1px;
- margin-left: 6px;
-}
-
-#header-search #search-q {
- position: relative;
- width: 131px;
- height: 12px;
- margin-right: 10px;
- padding: 2px 22px 2px 6px;
- border-radius: 4px;
- border: none;
- font-size: 0.88em;
-}
-
-#header-search input[type="submit"] {
- border: 0;
- background: url(../images/magnifier.png) no-repeat 2px 1px;
- text-indent: -9999px;
- width: 20px;
- height: 18px;
- position: absolute;
- right: 10px;
- top: 2px;
- z-index: 2;
- cursor: pointer;
-}
-
-#site_notice {
- border-radius: 6px;
-}
-
-/* input forms */
-
-.input_forms {
- float: left;
- top: -20px;
- left: -20px;
- padding: 18px 20px 0px 20px;
- border-bottom: none;
- margin-bottom: 0px;
- background: #fafafa url('../images/brdr_black_dot.png') repeat-x bottom left;
-}
-
-#input_form_nav li a {
- display: block;
- float: left;
- padding: 0px 10px 1px 10px;
- border-radius: 4px;
- border: 1px solid #ECECF2;
- font-weight: bold;
- line-height: 1.4em;
- color: #3e3e8c;
- text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.9);
- background: #ececf2;
- background: -moz-linear-gradient(top, #ffffff 0%, #ececf2 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ececf2));
- background: -webkit-linear-gradient(top, #ffffff 0%,#ececf2 100%);
- background: -o-linear-gradient(top, #ffffff 0%,#ececf2 100%);
- background: -ms-linear-gradient(top, #ffffff 0%,#ececf2 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ececf2',GradientType=0 );
- background: linear-gradient(top, #ffffff 0%,#ececf2 100%);
-}
-
-#input_form_nav li:hover a, #input_form_nav li.current a {
- color: #fff;
- text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
- border: 1px solid #ececf2;
- background: #364a84;
- background: -moz-linear-gradient(top, #7b8dbb 0%, #364a84 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#364a84));
- background: -webkit-linear-gradient(top, #7b8dbb 0%,#364a84 100%);
- background: -o-linear-gradient(top, #7b8dbb 0%,#364a84 100%);
- background: -ms-linear-gradient(top, #7b8dbb 0%,#364a84 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7b8dbb', endColorstr='#364a84',GradientType=0 );
- background: linear-gradient(top, #7b8dbb 0%,#364a84 100%);
-}
-
-.input_form_nav_tab a, .input_form_nav_tab.current a {
- text-decoration: none;
-}
-
-.form_notice .error,
-.form_notice .success,
-.form_notice .notice-status {
- border-radius: 4px;
-}
-
-.form_notice_placeholder .placeholder,
-.form_notice textarea ,
-.input_form .form_settings li input,
-.input_form .form_settings li textarea,
-.threaded-replies .placeholder { /* TODO combine all these declarations */
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-.input_form .form_settings .submit {
- font-size: 1.1em;
-}
-
-/* site nav local views */
-
-#site_nav_local_views H3 {
- margin-bottom: 10px;
- padding-bottom: 6px;
- background: url('../images/brdr_black_dot.png') repeat-x bottom left;
- color: #7a7c87;
- font-size: 1.1em;
- letter-spacing: 2px;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
- text-transform: uppercase;
-}
-
-#site_nav_local_views a {
- display: block;
- width: 118px;
- padding: 0px 10px 1px 10px;
- border-radius: 4px;
- text-transform: uppercase;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
- word-wrap: break-word;
-}
-
-#site_nav_local_views a:hover, #site_nav_local_views .current a {
- color: #fff;
- text-decoration: none;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
- background: #364a84;
- background: -moz-linear-gradient(top, #7b8dbb 0%, #364a84 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#364a84));
- background: -webkit-linear-gradient(top, #7b8dbb 0%,#364a84 100%);
- background: -o-linear-gradient(top, #7b8dbb 0%,#364a84 100%);
- background: -ms-linear-gradient(top, #7b8dbb 0%,#364a84 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7b8dbb', endColorstr='#364a84',GradientType=0 );
- background: linear-gradient(top, #7b8dbb 0%,#364a84 100%);
-}
-
-/* aside primary */
-
-#aside_primary .section {
- font-size: 0.88em;
-}
-
-#aside_primary h2 {
- margin-bottom: 10px;
- padding-bottom: 6px;
- background: url('../images/brdr_black_dot.png') repeat-x bottom left;
- color: #7a7c87;
- font-size: 1.25em;
- letter-spacing: 2px;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
- text-transform: uppercase;
-}
-
-.profile_block .entity_actions {
- float: right;
- width: 110px;
- margin-top: 2px;
- margin-bottom: 2px;
-}
-
-.profile_block .entity_moderation:hover ul,
-.profile_block .entity_role:hover ul {
- right: 20px;
-}
-
-.profile_block_name {
- font-size: 14px;
- font-weight: bold;
-}
-
-.profile_block_location {
- font-weight: bold;
-}
-
-.profile_block_description {
- line-height: 1.2em;
-}
-
-#site_nav_object ul {
- background: url('../images/brdr_black_dot.png') repeat-x top left;
-}
-
-#site_nav_object li {
- display: block;
- margin: -8px 0px 8px 0px;
- padding-top: 8px;
-}
-
-#site_nav_object a {
- font-size: 14px;
- display: block;
- padding: 0px 0px 1px 10px;
- border-radius: 4px;
- text-transform: uppercase;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-#site_nav_object a:hover, #site_nav_object .current a {
- color: #fff;
- text-decoration: none;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
- background: #364a84;
- background: -moz-linear-gradient(top, #7b8dbb 0%, #364a84 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#364a84));
- background: -webkit-linear-gradient(top, #7b8dbb 0%,#364a84 100%);
- background: -o-linear-gradient(top, #7b8dbb 0%,#364a84 100%);
- background: -ms-linear-gradient(top, #7b8dbb 0%,#364a84 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7b8dbb', endColorstr='#364a84',GradientType=0 );
- background: linear-gradient(top, #7b8dbb 0%,#364a84 100%);
-}
-
-.section ul.entities {
- width: 240px;
-}
-
-.section .entities li {
- margin-right: 3.6px;
- margin-bottom: 5px;
- width: 24px;
-}
-
-#popular_notices .avatar {
- position: relative;
- top: 4px;
- margin-bottom: 6px;
-}
-
-#aside_primary td {
- padding-right: 20px;
- padding-bottom: 14px;
-}
-
-#aside_primary td .nickname {
- line-height: 1.6em;
-}
-
-.section .avatar {
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
-}
-
-.invite_button {
- height: 2.1em;
- line-height: 2.1em;
- display: block;
- text-align: center;
- color:#fff;
- font-weight: bold;
- text-transform: uppercase;
- font-size: 1.2em;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
- border: 1px solid #d7621c;
- border-radius: 4px;
- background: #FB6104;
- background: -moz-linear-gradient(top, #ff9d63 0%, #fb6104 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9d63), color-stop(100%,#fb6104));
- background: -webkit-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- background: -o-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- background: -ms-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9d63', endColorstr='#fb6104',GradientType=0 );
- background: linear-gradient(top, #ff9d63 0%,#fb6104 100%);
-}
-
-.invite_button:hover {
- color: #fff;
- text-decoration: none;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
- background: #ff9d63;
- background: -moz-linear-gradient(top, #fb6104 0%, #fc8035 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fb6104), color-stop(100%,#fc8035));
- background: -webkit-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- background: -o-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- background: -ms-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb6104', endColorstr='#fc8035',GradientType=0 );
- background: linear-gradient(top, #fb6104 0%,#fc8035 100%);
-}
-
-/* notices etc */
-
-#content h1 {
- border-bottom: 3px solid #A6ADBF;
- color: #A6ADBF;
- font-size: 1.4em;
- letter-spacing: 4px;
- text-transform: none;
-}
-
-#content .notice {
- padding-bottom: 4px;
- border-bottom: 2px dotted #eee;
-}
-
-.notice div.e-content {
- line-height: 1.2em;
-}
-
-.user_in .notice div.e-content {
- max-width: 440px;
-}
-
-.e-content a.conversation:before {
- content: " (";
-}
-
-.e-content a.conversation:after {
- content: ")";
-}
-
-.notice-options .form_repeat.dialogbox {
- margin-right: 0px;
- border: 1px solid #aaa;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
-}
-
-.notice-options .form_repeat.dialogbox legend {
- padding-top: 10px;
-}
-
-.user_in.realtime-popup .notice div.e-content {
- max-width: 320px;
-}
-
-
-.realtime-popup .threaded-replies {
- margin-left: 15px;
-}
-
-.realtime-popup .threaded-replies .form_notice textarea {
- width: 385px !important;
-}
-
-.realtime-popup .threaded-replies .form_notice label.notice_data-attach {
- top: 10px !important;
- right: 10px !important;
-}
-
-
-.pagination {
- height: 1.2em;
-}
-
-.entity_profile {
- float: left;
- width: 360px;
- margin-top: 4px;
-}
-
-.entity_profile .entity_depiction {
- margin-top: 4px;
-}
-
-.entity_actions {
- width: 140px;
- margin-top: 8px;
- margin-bottom: 10px;
-}
-
-.entity_actions a, .entity_actions p, .entity_actions .entity_subscribe input, .entity_actions .entity_block input, .entity_actions .entity_moderation input, .entity_actions .entity_role input, .entity_actions .entity_nudge input, .entity_actions .entity_delete input, .entity_actions input.submit {
- text-shadow:0 1px 0 rgba(255,255,255,0.4);
- border-radius: 4px;
- background-color: #CDD1DD !important;
-}
-
-.entity_moderation:hover ul,
-.entity_role:hover ul {
- border-radius: 4px;
-}
-
-.entity_send-a-message .form_notice legend {
- text-shadow:0 1px 0 rgba(255,255,255,0.4);
-}
-
-.entity_send-a-message .form_notice {
- border: 1px solid #7B4E82;
-}
-
-.entity_send-a-message .form_notice #notice_action-submit {
- color: #fff !important;
- top: 46px;
-}
-
-.entity_subscribe .dialogbox, .entity_tag .dialogbox {
- border: 1px solid #aaa;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
-}
-
-.entity_subscribe .dialogbox input.submit_dialogbox, .entity_tag .dialogbox input.submit_dialogbox {
- color: #fff !important;
-}
-
-#filter_tags_item .submit {
- left: 6px;
- top: -3px;
-}
-
-#pagination {
- height: 1.2em;
- padding-bottom: 12px;
- border-radius: 6px;
-}
-
-#pagination a {
- color: #3e3e8c;
-}
-
-
-#footer a {
- color: #3e3e8c;
-}
-
-#site_nav_global_secondary {
- margin-bottom: 10px;
-}
-
-.error, .success, .notice-status {
- border-radius: 6px;
-}
-
-
-.form_notice input.submit, .form_settings input.submit, .form_settings input.cancel, #form_invite input.submit,
-.entity_subscribe .dialogbox input.submit_dialogbox,
-.entity_tag .dialogbox input.submit_dialogbox,
-.form_repeat.dialogbox input.submit_dialogbox
-{ /* TODO combine all these declarations */
- height: 1.9em;
- padding: 0px 10px;
- color:#fff;
- font-weight: bold;
- text-transform: uppercase;
- font-size: 1.2em;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
- border: 1px solid #d7621c;
- border-radius: 4px;
- background: #FB6104;
- background: -moz-linear-gradient(top, #ff9d63 0%, #fb6104 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9d63), color-stop(100%,#fb6104));
- background: -webkit-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- background: -o-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- background: -ms-linear-gradient(top, #ff9d63 0%,#fb6104 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9d63', endColorstr='#fb6104',GradientType=0 );
- background: linear-gradient(top, #ff9d63 0%,#fb6104 100%);
-}
-
-.form_notice input.submit:hover, .form_settings input.submit:hover, .form_settings input.cancel:hover, #form_invite input.submit:hover,
-.entity_subscribe .dialogbox input.submit_dialogbox:hover,
-.entity_tag .dialogbox input.submit_dialogbox:hover,
-.form_repeat.dialogbox input.submit_dialogbox:hover
-{
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
- background: #ff9d63;
- background: -moz-linear-gradient(top, #fb6104 0%, #fc8035 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fb6104), color-stop(100%,#fc8035));
- background: -webkit-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- background: -o-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- background: -ms-linear-gradient(top, #fb6104 0%,#fc8035 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb6104', endColorstr='#fc8035',GradientType=0 );
- background: linear-gradient(top, #fb6104 0%,#fc8035 100%);
-}
-
-.form_settings input#cancel, #form_action-no {
- background: #f2f2f2;
- color: #d7621c;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.form_settings input#cancel:hover, #form_action-no:hover {
- background: #fff;
- color: #d7621c;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.form_settings fieldset fieldset {
- margin-bottom: 30px;
- padding-top: 25px;
-}
-
-#invite #content p {
- margin-bottom: 15px;
-}
-
-#invite #content ul {
- list-style-type: none;
- margin-bottom: 25px;
- margin-left: 25px;
-}
-
-#invite #content li {
- background: url(../images/resultset_next.png) no-repeat 0px 3px;
- padding-left: 20px;
- margin-bottom: 10px;
-}
-
-#invite #content #form_invite ul, #invite #content #form_invite li {
- margin-left: 0px;
- padding-left: 0px;
- background: none;
-}
-
-#form_invite input[type=text], #form_invite textarea {
- width: 250px;
- padding: 5px;
- border: 1px solid #a6a6a6;
- border-radius: 4px;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-#form_invite textarea {
- clear: left;
- width: 508px;
- height: 48px;
-}
-
-#form_invite a.add_row, #form_invite a.remove_row {
- display: block;
- height: 16px;
- width: 16px;
- overflow: hidden;
- background-image: url('../../base/images/icons/icons-01.gif');
- background-repeat: no-repeat;
-}
-
-#form_invite a.remove_row {
- background-position: 0px -1252px;
- display: inline-block;
- position: relative;
- top: 4px;
- left: 10px;
- line-height: 4em;
-}
-
-#form_invite a.add_row {
- clear: both;
- position: relative;
- top: 10px;
- background-position: 0px -1186px;
- width: 120px;
- padding-left: 20px;
- line-height: 1.2em;
-}
-
-#form_invite label[for=personal] {
- display: block;
- margin-top: 25px;
-}
-
-#content thead th {
-text-align:left;
-}
-#content tbody th {
-vertical-align:top;
-text-align:left;
-font-weight:normal;
-padding-top:11px;
-padding-right:18px;
-}
-#content tbody tr {
- border-top: 1px dotted #bbb;
-}
-#content td {
-padding:11px 18px 11px 0;
-vertical-align:top;
-}
-#content td:last-child {
-padding-right:0;
-}
-
-/* Search */
-
-#form_search {
- padding-bottom: 10px;
- margin-bottom: 20px;
- background: url('../images/brdr_black_dot.png') repeat-x bottom left;
-}
-
-#form_search fieldset {
- margin-bottom: 0px;
-}
-
-#form_search ul.form_data #q {
- margin-left: 10px;
- width: 210px;
-}
-
-#form_search input.submit {
- height: 1.6em;
- line-height: 1.6em;
- font-size: 1.1em;
- padding-bottom: 2px;
- margin-left: 5px;
-}
-
-#noticesearch .entity_actions {
- margin: 0px;
-}
-
-#noticesearch p.error {
- margin-top: 60px;
-}
-
-/* Limited-scope */
-
-.limited-scope .e-content .timestamp {
- padding-left: 20px;
- position: relative;
-}
-
-.limited-scope .e-content .timestamp:before {
- content: url(../images/lock.png);
- position: absolute;
- top: -2px;
- left: 0px;
-}
-
-.limited-scope li .e-content .timestamp {
- padding-left: 0px;
-}
-
-.limited-scope li .e-content .timestamp:before {
- content: none;
-}
-
-.limited-scope li.limited-scope .e-content .timestamp {
- padding-left: 20px;
-}
-
-.limited-scope li.limited-scope .e-content .timestamp:before {
- content: url(../images/lock.png);
- position: absolute;
- top: -2px;
- left: 0px;
-}
-
-/* Blog */
-
-label[for=blog-entry-content] {
- display: none !important;
-}
-
-#input_form_blog td {
- padding-top: 0px;
- padding-bottom: 0px;
-}
-
-#input_form_blog td.mceToolbar {
- padding-top: 4px;
-}
-
-h4.blog-entry-title {
- margin-bottom: 8px;
- line-height: 1.2em;
-}
-
-/* Onboard specific styles */
-/* TODO move to plugin */
-
-#cboxOverlay{
- background: url(../images/lightbox_bg.png) repeat 0 0 !important;
-}
-
-#cboxContent{
- background: #fff url(../logo.png) no-repeat 10px bottom !important;
-}
-
-.onboard_iframe {
- background: none;
- padding: 10px;
-}
-
-.onboard_iframe #wrap {
- width: auto;
- background: none;
-}
-
-.onboard_welcome p {
- margin-bottom: 10px;
-}
-
-.onboard_welcome ul {
- list-style-type: none;
- margin-bottom: 10px;
-}
-
-.onboard_welcome ul li {
- background: url(../images/resultset_next.png) no-repeat 0px 3px;
- padding-left: 20px;
- margin-left: 10px;
-}
-
-#aside_primary #onboard_section {
- background: #f2f2f2;
- width: 196px;
- padding: 10px;
- border-radius: 4px;
- border: 1px solid #516499;
- background: #fafafa;
-}
-
-#onboard_section H2 {
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- position: relative;
- top: -11px;
- left: -11px;
- padding: 2px 0px 2px 10px;
- margin-right: -22px;
- margin-bottom: 5px;
- color: #fff;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
- background: #364A84;
- background: -moz-linear-gradient(top, #516499 0%, #364a84 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#516499), color-stop(100%,#364a84));
- background: -webkit-linear-gradient(top, #516499 0%,#364a84 100%);
- background: -o-linear-gradient(top, #516499 0%,#364a84 100%);
- background: -ms-linear-gradient(top, #516499 0%,#364a84 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#516499', endColorstr='#364a84',GradientType=0 );
- background: linear-gradient(top, #516499 0%,#364a84 100%);
-}
-
-#onboard_section ul {
- list-style-type: none;
-}
-
-#onboard_section .onboard-step-incomplete {
- background: url(../images/resultset_next.png) no-repeat 0px 1px;
- padding-left: 20px;
- margin-bottom: 10px;
-}
-
-#onboard_section .onboard-step-complete {
- background: url(../images/tick.png) no-repeat 0px 1px;
- padding-left: 20px;
- margin-bottom: 10px;
- text-decoration: line-through;
- color: #555;
-}
-
-/* Billing specific styles */
-/* TODO move to plugin */
-
-#content table.billing_info {
- margin-top: 10px;
- background:rgba(240, 240, 240, 0.4);
-}
-
-#content table.billing_info th {
- text-align: right;
- width: 50%;
-}
-
-.invalid {
- border: solid 2px red !important;
-}
-
-#payment_history table {
- width: 100%;
-}
-
-#billingadminpanel .form_settings input {
- margin-right: 0px;
-}
-
-/* Directory specific styles */
-/* TODO separate base styles and move to plugin */
-
-div#profile_directory div.alpha_nav > a {
- border-left: 1px solid #ccc !important;
- padding-left: 3.5px !important;
- padding-right: 4px !important;
- margin-right: 0px;
- float: left;
- line-height: 1.4em;
-}
-
-div#profile_directory div.alpha_nav > a.first {
- border-left: none !important;
-}
-
-div#profile_directory div.alpha_nav a.current {
- background-color: #ECECF2 !important;
-}
-
-table.profile_list {
- margin-top: 25px;
-}
-
-.profile_list th {
- font-size: 0.8em;
-}
-
-.profile_list th#created {
- width: 100px;
-}
-
-.profile_list th#subscriptions {
- width: 90px;
-}
-
-.profile_list th.current {
- background: none !important;
-}
-
-.profile_list th.current.reverse {
- background: none !important;
-}
-
-.profile_list th.current a {
- padding-right: 25px;
- background: url(../images/bluearrow_down.png) no-repeat top right;
-}
-
-.profile_list th.current.reverse a {
- background: url(../images/bluearrow_up.png) no-repeat top right;
-}
-
-td.entity_profile {
- width: auto;
- min-width: 250px;
-}
-
-.profile_list .p-name {
- display: block;
- font-size: 1.1em;
- width: auto;
-}
-
-.profile_list .nickname, .profile_list .p-name.nickname {
- position: relative;
- top: -8px;
- display: block;
- margin-bottom: -12px;
- font-size: 1.4em;
-}
-
-.profile_list .label {
- display: block;
- margin-left: 59px !important;
-}
-
-.profile_list .note {
- font-size: 0.88em;
- line-height: 1.36em;
-}
-
-.profile_list .entry_created, .profile_list .entry_subscriber_count, .profile_list .entry_notice_count {
- font-size: 0.88em;
-}
-
-.profile_list td.entity_actions {
- width: 24px;
- max-width: 24px;
- min-width: 24px;
- height: 20px;
- padding-left: 6px !important;
- position: relative;
- float: none;
- display: table-cell !important;
-}
-
-.profile_list .entity_actions ul {
- position: absolute;
- right: 20px;
-}
-
-.profile_list .entity_actions input {
- width: 22px;
- height: 22px;
- padding-top: 1px;
- padding-right: 0px;
- padding-left: 20px;
- display: block;
- overflow: hidden;
- font-size: 0em;
- border: 1px solid #CDD1DD;
-}
-
-.profile_list .form_group_leave input.submit,
-.profile_list .form_user_unsubscribe input.submit {
- background-position: 2px -1250px;
-}
-
-.profile_list .form_group_join input.submit,
-.profile_list .form_user_subscribe input.submit {
- background-position: 2px -1184px;
-}
-
-.profile_list .entity_actions input:hover {
- width: auto;
- padding-right: 10px;
- overflow: visible;
- font-size: 1em;
- line-height: 1.3em;
- border: 1px solid #A6ADBF;
- box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
-}
-
-/* SNOD CompanyLogo styling */
-/* TODO move to plugin */
-
-#site_nav_local_views a.company_logo {
- width: 138px;
- padding: 0px;
- font-weight: bold;
- text-transform: none;
- line-height: 1em;
- margin-bottom: 20px;
- position: relative;
- top: -4px;
-}
-
-#site_nav_local_views a.company_logo:hover {
- background: none;
- color: blue;
- text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
-}
-
-.company_logo img {
- max-width: 138px;
- margin-bottom: 4px;
-}
-
-.company_logo span {
- display: block;
-}
-
-a.company_logo:hover span {
- text-decoration: underline;
-}
-
-}/*end of @media screen, projection, tv*/
+++ /dev/null
-body {
- background-image: none;
- min-width: 0;
-}
-
-#header {
- padding: 0;
-}
-
-#site_nav_global_primary {
- top: 0;
- -webkit-border-top-right-radius: 0px;
- -moz-border-radius-topright: 0px;
- border-top-right-radius: 0px;
- line-height: 16px;
-}
-
-#site_nav_global_primary li {
- float: left;
- margin-right: 8px;
-}
-
-#site_nav_local_views {
- line-height: 2em;
-}
-
-#site_nav_local_views h3 {
- color: #333;
- background: none;
- text-transform: none;
- letter-spacing: 0;
- padding-bottom: 0;
-}
-
-#site_nav_local_views li li {
- margin: 0 6px 6px 0;
-}
-
-#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li {
- margin: 0 6px 6px 0;
-}
-
-#site_nav_local_views a {
- color: #fff;
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);;
- background: #364a84;
- background: -moz-linear-gradient(top, #7b8dbb , #364a84);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#364a84));
- font-size: 0.9em;
- width: auto;
-}
-
-#site_nav_local_views a:hover {
- background: #7b8dbb;
- background: -moz-linear-gradient(top, #364a84 , #7b8dbb);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#364a84), color-stop(100%,#7b8dbb));
-}
-
-.input_forms {
- top: -10px;
- padding-right: 0;
-}
-
-#input_form_nav li a {
- padding: 0px 4px 1px 4px;
-}
-
-.form_notice .count {
- top: 44px;
- left: 276px;
-}
-
-#form_notice-direct.form_notice .count {
- top: 74px;
- left: 276px;
-}
-
-#event-startdate, #event-starttime, #event-enddate, #event-endtime {
- width: 120px;
- margin-right: 12px;
-}
-
-.input_form .form_settings .submit {
- font-size: 1em;
-}
-
-.form_notice input.submit {
- font-size: 1em;
-}
-
-.question div.question-description {
- max-width: 100% !important;
-}
-
-ul.qna-dummy {
- width: 80%;
-}
-
-.qna-dummy-placeholder input {
- width: 92%;
-}
-
-.question #qna-answer, .qna-full-question #qna-answer {
- width: 220px;
-}
-
-.threaded-replies #answer-form fieldset {
- width: 220px;
-}
-
-.threaded-replies #qna-answer-submit {
- float: left;
- clear: left;
- position: relative;
- top: 0;
- bottom: 0px;
- left: 0;
- margin-top: 10px;
-}
-
-a.company_logo {
- display: none !important;
-}
+++ /dev/null
-/** theme: neo
- *
- * @package StatusNet
- * @author Osama Khalid <osamak@gnu.org>
- * @copyright Osama Khalid
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://status.net/
- */
-
-body {
- direction: rtl;
-}
-
-span.rtl{
- direction: rtl !important;
-}
-
-#content .notice .h-entry {
- direction: ltr;
-}
-
-.form_notice textarea{
- direction: ltr;
-}
-
-#site_nav_global_primary ul{
- float: left;
-}
-
-.notice div.e-content {
- float: right;
- clear: right;
-}
-
-#content .notice .threaded-replies .notice div.e-content{
- clear: right;
- float: right;
-}
-
-#content h1{
- font-weight: bold;
- letter-spacing: 0;
-}
-
-.threaded-replies {
- border-right: 3px solid #ECECF2;
- border-left: 0;
- margin-right: 59px;
- margin-left: 0;
-}
-
-address{
- float: right;
-}
-
-#site_nav_global_primary {
- left: 0;
- right: auto;
-}
-
-.input_form .form_settings .submit{
- float: left;
-}
-
-.input_form .form_settings fieldset fieldset{
- float: right;
-}
-
-.input_form fieldset fieldset label{
- right: 6px;
- text-align: right;
-}
-
-#input_form_event .form_settings .form_data li{
- float: right;
-}
-
-.notice .author {
- direction: rtl;
- float: right;
- margin-left: 8px;
- margin-right: 0;
-}
-
-.section .notice .author {
- margin-left: 0;
-}
-
-.notice p.e-content {
- float: left;
-}
-
-.threaded-replies .form_notice #notice_action-submit {
- right: 10px;
-}
-
-.form_notice input.submit{
- float: right;
-}
-
-#export_data li a{
- padding-right: 30px;
- padding-left: 0;
-/* background-position: right center; */
-}
-
-#content .notice .author .u-photo{
- right: 0;
- left: auto;
-}
-
-.notice-options{
- float: left;
-}
-
-.notice div.e-content {
- margin-right: 59px;
- margin-left: 0;
-}
-
-#core .h-card .u-photo {
- margin-left: 11px;
- margin-right: 0;
-}
-
-.threaded-replies .notice-reply-comments {
- margin: 2px 10px 4px 0;
-}
-
-#shownotice .notice div.e-content {
- margin-right: 0;
-}
-
-#content thead th {
- text-align: right;
-}
-
-.profile_list th.current a {
- background-position: left top;
- padding-left: 25px;
-}
-
-.form_settings .form_data textarea, .form_settings .form_data select, .form_settings .form_data input {
- float: right;
- margin-right: 1.795%;
-}
-
-.form_settings .form_data label {
- float: right;
-}
-
-.form_settings label {
- text-align: left;
-}
-
-#form_search input.submit {
- margin-right: 5px;
-}
-
-#site_nav_local_views H3{
- font-weight: bold;
- letter-spacing: 0;
-}
-
-#aside_primary h2{
- font-weight: bold;
- letter-spacing: 0;
-}
-
-.form_settings label[for="notice_to"] {
- margin-left: 10px;
- margin-right: 0;
-}
-
-select {
- padding-left: 10px;
-}
-
-#input_form_nav li a {
- float: right;
-}
-
-#content table.extended-profile td {
- padding-left: 0 !important;
- padding-right: 8px !important;
-}
-
-.experience-item, .education-item {
- float: right;
-}
-
-#site_nav_global_primary a {
- float: right;
-}
-
-.form_settings .form_data p.form_guide {
- margin-right: 27%;
-}
-
-.form_settings label.checkbox {
- text-align: right;
-}
-
-.form_settings label.checkbox, .form_settings label.radio {
- left: 0;
- right: -25px;
-}
-
-.form_settings input.checkbox, .form_settings input.radio {
- margin-right: 25%;
- margin-left: 20px;
- right: -14px;
- left: 0;
-}
-
-.form_settings input {
- margin-left: 20px;
-}
-
-.form_settings .form_data li {
- float: right;
-}
-
-#header-search {
- float: left;
-}
-
-#header-search input[type="submit"] {
- left: 0;
- right: auto;
-}
-
-#avatarfile {
- width: 100%;
-}
-
-.form_settings .checkbox-wrapper label.checkbox {
- right: -3px;
- left: auto;
-}
-
-.checkbox-wrapper.unchecked label.checkbox, .checkbox-wrapper.checked label.checkbox {
- padding-right: 20px;
- padding-left: 0;
- background-position: right center;
-}
-
-.input_form .form_settings .form_data p.form_guide {
- margin-right: 5px;
- margin-left: 27%;
-}
-
-.experience-item, .education-item {
- float: right !important;
-}
-
-.profile_block .entity_actions {
- float: left;
-}
-
-.profile .entity_profile .p-name, .profile .entity_profile .label {
- margin-right: 11px;
- margin-left: 0;
-}
-
-#core .h-card .u-photo {
- float: right;
-}
-
-.profile_list .label {
- margin-right: 59px !important;
-}
-
-.profile .entity_profile .note, .profile .entity_profile .url, .profile .entity_profile .entity_tags, .profile .entity_profile .form_subscription_edit {
- margin-right: 59px;
- margin-left: 0;
-}
-
-.profile_list .entity_actions ul {
- left: 20px;
- right: auto;
-}
-
-.entity_actions input.submit {
- text-align: right;
-}
-
-#entity_statistics dt, #entity_statistics dd {
- margin-left: 11px;
- margin-right: 0;
-}
-
-#showstream .notice .h-entry, #showstream .notice div.e-content {
- margin-right: 0;
-}
-
-.limited-scope .e-content .timestamp:before {
- right: 0;
- left: auto;
-}
-
-.limited-scope .e-content .timestamp {
- padding-left: 0;
- padding-right: 20px;
-}
-
-.section ul.entities {
- float: right;
-}
-
-.section .entities li {
- float: right;
-}
-
+++ /dev/null
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata>
-This is a custom SVG webfont generated by Font Squirrel.
-Copyright : Copyright c 2010 by tyPoland Lukasz Dziedzic with Reserved Font Name Lato Licensed under the SIL Open Font License Version 11
-Designer : Lukasz Dziedzic
-Foundry : tyPoland Lukasz Dziedzic
-Foundry URL : httpwwwtypolandcom
-</metadata>
-<defs>
-<font id="webfontRFDbyVDk" horiz-adv-x="1187" >
-<font-face units-per-em="2048" ascent="1649" descent="-399" />
-<missing-glyph horiz-adv-x="395" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="0" />
-<glyph unicode="
" horiz-adv-x="0" />
-<glyph unicode=" " horiz-adv-x="395" />
-<glyph unicode="	" horiz-adv-x="395" />
-<glyph unicode=" " horiz-adv-x="395" />
-<glyph unicode="!" horiz-adv-x="738" d="M492 1481v-586q0 -93 -9.5 -182.5t-24.5 -190.5h-171q-15 100 -24.5 190t-9.5 183v586h239zM214 139q0 32 12 60.5t33 49t49.5 33t61.5 12.5q32 0 60.5 -12.5t49 -33t32.5 -49t12 -60.5q0 -33 -12 -61t-32.5 -48.5t-49.5 -32t-60 -11.5q-33 0 -61.5 11.5t-49.5 32 t-33 48.5t-12 61z" />
-<glyph unicode=""" horiz-adv-x="864" d="M354 1481v-295l-23 -160q-7 -45 -26 -69t-62 -24q-37 0 -58.5 24t-27.5 69l-23 160v295h220zM731 1481v-295l-23 -160q-7 -45 -26 -69t-62 -24q-37 0 -58.5 24t-27.5 69l-23 160v295h220z" />
-<glyph unicode="#" d="M851 418l-79 -418h-116q-31 0 -53 24.5t-22 60.5q0 5 0.5 9.5t1.5 9.5l60 314h-210l-59 -326q-9 -49 -42 -70.5t-73 -21.5h-112l78 418h-117q-33 0 -50.5 16t-17.5 52q0 14 3 33l13 81h195l53 283h-219l19 105q7 39 32 58t80 19h114l63 330q8 41 38 63.5t70 22.5h114 l-77 -416h208l79 416h113q36 0 58.5 -20.5t22.5 -52.5q0 -10 -1 -15l-64 -328h208l-19 -106q-7 -39 -32.5 -57.5t-79.5 -18.5h-102l-52 -283h145q33 0 50 -16t17 -54q0 -14 -4 -32l-12 -80h-222zM459 600h210l52 283h-209z" />
-<glyph unicode="$" d="M474 -9q-120 16 -225 65t-178 122l77 116q10 15 27.5 25t35.5 10q23 0 48 -16l58 -38q33 -22 75 -43t100 -31l38 458q-73 20 -144 48t-127.5 73.5t-91.5 115.5t-35 174q0 78 31.5 152t90.5 132.5t146 96.5t200 43l11 129q2 25 20.5 44.5t48.5 19.5h93l-17 -202 q109 -17 187.5 -61.5t136.5 -99.5l-61 -93q-14 -20 -28.5 -30.5t-35.5 -10.5q-15 0 -36 9.5t-48 23.5t-60 28.5t-73 23.5l-36 -424q74 -23 146.5 -50t130 -70t93.5 -107t36 -160q0 -95 -32 -178.5t-92.5 -147.5t-150 -104t-203.5 -48l-13 -151q-2 -24 -20 -43.5t-48 -19.5 h-93zM868 425q0 39 -13.5 68t-38.5 51.5t-59 39t-74 29.5l-35 -415q109 14 164.5 73t55.5 154zM371 1095q0 -39 13 -69t37 -53t57 -41t72 -32l32 379q-56 -7 -96.5 -24t-66 -41.5t-37 -54.5t-11.5 -64z" />
-<glyph unicode="%" horiz-adv-x="1644" d="M746 1122q0 -84 -28 -151.5t-75 -115t-109.5 -73t-130.5 -25.5q-74 0 -136 25.5t-107.5 73t-71.5 115t-26 151.5q0 86 26 156t71.5 118t108 74t135.5 26q74 0 137 -26t109 -74t71.5 -118t25.5 -156zM551 1122q0 59 -11.5 99.5t-31.5 65t-47 35t-58 10.5t-57.5 -10.5 t-45.5 -35t-30 -64.5t-11 -100q0 -57 11 -95.5t30 -62t46 -33.5t57 -10q31 0 58 10t47 33.5t31.5 62t11.5 95.5zM1239 1441q12 15 30.5 27.5t51.5 12.5h183l-1100 -1443q-12 -16 -31 -27t-45 -11h-189zM1582 348q0 -84 -28 -151.5t-75 -115t-109.5 -73.5t-130.5 -26 q-74 0 -136.5 26t-108 73.5t-71 115t-25.5 151.5q0 86 25.5 155.5t71 118t108 74.5t136.5 26t137 -26t109 -74.5t71.5 -118t25.5 -155.5zM1388 348q0 59 -12 99t-32 65t-47 35.5t-58 10.5t-57.5 -10.5t-45.5 -35.5t-30 -64.5t-11 -99.5q0 -57 11 -96t30 -62.5t45.5 -34 t57.5 -10.5t58 10.5t47 34t32 62.5t12 96z" />
-<glyph unicode="&" horiz-adv-x="1462" d="M679 1497q90 0 161 -27.5t122 -73.5t80 -105.5t34 -123.5l-161 -33q-3 -1 -6 -1h-7q-17 0 -31 9.5t-22 29.5q-9 27 -23.5 51t-35 42t-48 29t-63.5 11q-43 0 -77 -15t-57.5 -40t-35.5 -58.5t-12 -70.5q0 -31 6.5 -59.5t21 -57t37.5 -59t56 -64.5l394 -409q34 65 54 136.5 t27 145.5q2 24 15 38t37 14h159q-1 -135 -39 -258t-109 -226l310 -322h-247q-19 0 -34.5 2t-28.5 7.5t-25.5 15t-25.5 23.5l-103 106q-98 -80 -218 -125t-261 -45q-86 0 -168 29t-146.5 84.5t-103.5 133.5t-39 177q0 69 22.5 130.5t62 115t94.5 96.5t121 73 q-54 77 -79.5 150.5t-25.5 145.5q0 77 28 146t82 120.5t132 81.5t176 30zM323 428q0 -56 19 -101t53 -76.5t78.5 -48.5t94.5 -17q90 0 164.5 28.5t135.5 78.5l-389 399q-82 -53 -119 -119.5t-37 -143.5z" />
-<glyph unicode="'" horiz-adv-x="487" d="M354 1481v-295l-23 -160q-7 -45 -26 -69t-62 -24q-37 0 -58.5 24t-27.5 69l-23 160v295h220z" />
-<glyph unicode="(" horiz-adv-x="614" d="M328 642q0 -211 51 -414.5t146 -383.5q7 -13 10 -24t3 -21q0 -20 -10.5 -33t-24.5 -21l-113 -69q-76 117 -129 235t-87 237.5t-49.5 242.5t-15.5 251t15.5 251.5t49.5 243t87 237t129 234.5l113 -68q14 -8 24.5 -21t10.5 -32t-14 -46q-94 -179 -145 -383.5t-51 -415.5z " />
-<glyph unicode=")" horiz-adv-x="614" d="M287 642q0 211 -51.5 415.5t-145.5 383.5q-13 27 -13 46t10 32t25 21l112 68q76 -117 129.5 -234.5t87 -237t49.5 -243t16 -251.5t-16 -251t-49.5 -242.5t-87 -237.5t-129.5 -235l-112 69q-14 8 -24.5 21t-10.5 33q0 9 2.5 20.5t9.5 24.5q95 179 146.5 383t51.5 415z" />
-<glyph unicode="*" horiz-adv-x="819" d="M348 857v187q0 20 2.5 40t8.5 37q-11 -14 -26.5 -25.5t-32.5 -22.5l-162 -94l-60 102l163 95q18 11 36 18t37 10q-19 2 -37 10.5t-36 19.5l-163 95l59 103l163 -97q17 -11 33 -23t27 -26q-7 17 -9.5 36.5t-2.5 40.5v189h121v-187q0 -22 -2.5 -41.5t-9.5 -37.5 q11 14 26.5 26t33.5 23l162 95l60 -103l-162 -93q-18 -11 -36.5 -19t-37.5 -11q35 -6 74 -28l162 -96l-59 -102l-163 95q-18 11 -33.5 22.5t-27.5 25.5q13 -33 13 -75v-189h-121z" />
-<glyph unicode="+" d="M694 1201v-420h399v-187h-399v-422h-205v422h-396v187h396v420h205z" />
-<glyph unicode="," horiz-adv-x="460" d="M82 156q0 29 10.5 53.5t30 43.5t47.5 30t60 11q39 0 68 -14t48.5 -38t28.5 -55t9 -66q0 -49 -15 -103.5t-43.5 -108.5t-70.5 -105.5t-96 -94.5l-44 40q-18 15 -19 38q0 8 6 18.5t14 18.5l27 30q16 18 33 41t30.5 50t19.5 58q-32 0 -58.5 12t-45.5 32.5t-29.5 48 t-10.5 60.5z" />
-<glyph unicode="-" horiz-adv-x="735" d="M102 724h531v-211h-531v211z" />
-<glyph unicode="." horiz-adv-x="460" d="M75 139q0 32 11.5 60.5t32.5 49t50 33t61 12.5t60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61z" />
-<glyph unicode="/" horiz-adv-x="792" d="M223 -3q-9 -24 -23.5 -41t-33 -29t-38.5 -18t-40 -6h-106l598 1530q17 43 50 66t79 23h107z" />
-<glyph unicode="0" d="M1137 740q0 -194 -41.5 -336.5t-115 -235.5t-173 -138.5t-215.5 -45.5t-214.5 45.5t-171.5 138.5t-114 236t-41 336q0 195 41 337.5t114 235.5t171.5 138.5t214.5 45.5t215.5 -45.5t173 -138.5t115 -235.5t41.5 -337.5zM876 740q0 161 -24 266.5t-63 168t-90.5 87.5 t-106.5 25q-54 0 -105 -25t-90 -87.5t-62 -168t-23 -266.5t23 -266t62 -167.5t90 -87.5t105 -25q55 0 106.5 25t90.5 87.5t63 167.5t24 266z" />
-<glyph unicode="1" d="M275 189h300v864q0 50 4 105l-213 -178q-13 -11 -27 -15t-28 -4q-20 0 -37 8.5t-25 19.5l-80 110l452 384h207v-1294h267v-189h-820v189z" />
-<glyph unicode="2" d="M616 1497q102 0 187.5 -30t146 -85.5t94 -133.5t33.5 -173q0 -82 -24 -151.5t-64.5 -133t-94.5 -122.5l-114 -121l-334 -341q49 14 96.5 22t90.5 8h380q41 0 65 -23.5t24 -60.5v-152h-1016v84q0 26 11 53.5t34 50.5l450 451q56 57 100.5 109.5t74.5 103.5t46 104t16 111 q0 53 -15.5 93.5t-44 68t-68 41.5t-88.5 14q-91 0 -150 -46t-82 -124q-11 -39 -34 -56t-57 -17q-15 0 -34 3l-133 24q15 106 59 186.5t110 134.5t151.5 81t183.5 27z" />
-<glyph unicode="3" d="M640 1497q102 0 184.5 -29t141 -81t89.5 -121.5t31 -150.5q0 -71 -15.5 -124.5t-46 -93.5t-74 -67.5t-98.5 -46.5q133 -42 198.5 -128t65.5 -216q0 -111 -41 -195.5t-110.5 -142.5t-161 -87.5t-194.5 -29.5q-112 0 -194.5 25.5t-144 75.5t-104.5 123t-74 168l112 46 q29 12 58 12q27 0 48 -11t32 -33q18 -36 40 -70.5t53 -62t72.5 -44t98.5 -16.5q65 0 113 21t80 54.5t48 75t16 83.5q0 53 -11 96.5t-47 74.5t-103 48.5t-180 17.5v180q93 1 154.5 17.5t98 45.5t51 70t14.5 90q0 105 -57.5 159t-156.5 54q-90 0 -149.5 -47.5t-83.5 -122.5 q-12 -39 -33.5 -56t-56.5 -17q-16 0 -35 3l-133 24q15 106 59.5 186.5t110.5 134.5t151.5 81t183.5 27z" />
-<glyph unicode="4" d="M965 558h186v-146q0 -20 -13.5 -35.5t-38.5 -15.5h-134v-361h-222v361h-624q-26 0 -45.5 16t-24.5 40l-25 128l701 937h240v-924zM743 1042q0 33 2.5 71t7.5 79l-460 -634h450v484z" />
-<glyph unicode="5" d="M1013 1373q0 -54 -34.5 -88t-114.5 -34h-407l-54 -309q100 20 184 21q117 0 205.5 -35t148.5 -96.5t91 -144t31 -177.5q0 -118 -41.5 -215t-115 -166.5t-174.5 -107t-220 -37.5q-70 0 -132.5 14t-117 38t-101 55.5t-83.5 66.5l78 107q25 35 65 35q26 0 52 -16.5t61 -36 t81 -35.5t111 -16q70 0 123 22.5t88.5 63t53.5 96t18 121.5q0 121 -70 189t-207 68q-108 0 -216 -39l-157 45l123 719h731v-108z" />
-<glyph unicode="6" d="M686 925q84 0 163.5 -28t140 -83.5t97 -138.5t36.5 -194q0 -103 -37.5 -193.5t-106.5 -158.5t-165.5 -106.5t-213.5 -38.5q-119 0 -213 37.5t-160.5 106t-102 164t-35.5 212.5q0 104 42.5 214t131.5 229l353 474q18 25 54 42.5t82 17.5h225l-439 -538l-28 -33 q-13 -15 -25 -31q43 22 93 34t108 12zM332 465q0 -61 17 -112t50 -87t82 -56t114 -20q60 0 111 20.5t87 57.5t56.5 86.5t20.5 108.5q0 63 -19.5 114t-55 86t-86 53.5t-110.5 18.5t-109.5 -20.5t-84.5 -56.5t-54 -86t-19 -107z" />
-<glyph unicode="7" d="M1122 1481v-110q0 -49 -10.5 -79t-20.5 -51l-561 -1155q-17 -36 -48.5 -61t-86.5 -25h-183l573 1132q36 70 80 119h-708q-24 0 -41.5 17.5t-17.5 41.5v171h1024z" />
-<glyph unicode="8" d="M594 -16q-115 0 -209.5 30.5t-162 87t-105 136t-37.5 178.5q0 131 64.5 221.5t200.5 134.5q-109 45 -162.5 128t-53.5 200q0 84 34.5 156.5t96 126.5t147 84t187.5 30t187.5 -30t147 -84t96 -126.5t34.5 -156.5q0 -117 -54.5 -200t-161.5 -128q136 -44 200.5 -134.5 t64.5 -221.5q0 -98 -37.5 -178t-105 -136.5t-162 -87t-209.5 -30.5zM594 181q62 0 109.5 18t79.5 50t48.5 76t16.5 95q0 122 -67.5 184.5t-186.5 62.5t-186.5 -62.5t-67.5 -184.5q0 -51 16.5 -95t48.5 -76t79.5 -50t109.5 -18zM594 865q61 0 103 19.5t68 52t36.5 74 t10.5 85.5q0 42 -13.5 79.5t-40 67t-67.5 47t-97 17.5t-97 -17.5t-68.5 -47t-40 -67t-12.5 -79.5q0 -44 10.5 -85.5t36.5 -74t68 -52t103 -19.5z" />
-<glyph unicode="9" d="M543 591q-77 0 -151 26.5t-131.5 80.5t-92.5 133t-35 186q0 99 37 186t103.5 152.5t159.5 103.5t206 38q114 0 204.5 -36t154.5 -100.5t98 -154.5t34 -197q0 -69 -11.5 -130.5t-33.5 -118.5t-53 -110.5t-68 -107.5l-339 -484q-17 -25 -51.5 -41.5t-78.5 -16.5h-233 l460 574l33 42l29 41q-51 -33 -112 -49.5t-129 -16.5zM888 1034q0 60 -18.5 108t-52.5 80.5t-80.5 50t-101.5 17.5q-57 0 -103.5 -19t-78.5 -52.5t-49.5 -80t-17.5 -102.5q0 -124 64 -189t182 -65q61 0 108.5 19.5t80.5 53.5t50 80t17 99z" />
-<glyph unicode=":" horiz-adv-x="542" d="M116 139q0 32 11.5 60.5t32.5 49t50 33t61 12.5t60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61zM116 869q0 32 11.5 60.5t32.5 49t50 33t61 12.5t60.5 -12.5t49 -33t33 -49 t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61z" />
-<glyph unicode=";" horiz-adv-x="542" d="M123 156q0 29 10.5 53.5t30 43.5t47.5 30t60 11q39 0 68 -14t48.5 -38t28.5 -55t9 -66q0 -49 -15 -103.5t-43.5 -108.5t-70.5 -105.5t-96 -94.5l-44 40q-18 15 -19 38q0 8 5.5 18.5t14.5 18.5l27 30q16 18 32.5 41t30.5 50t20 58q-32 0 -58.5 12t-45.5 32.5t-29.5 48 t-10.5 60.5zM116 869q0 32 11.5 60.5t32.5 49t50 33t61 12.5t60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61z" />
-<glyph unicode="<" d="M142 741l811 423v-180q0 -20 -10 -37t-34 -29l-371 -191q-24 -12 -50 -21t-56 -16q30 -7 56 -15.5t50 -21.5l371 -191q24 -12 34 -29t10 -38v-180l-811 424v102z" />
-<glyph unicode="=" d="M139 602h908v-188h-908v188zM139 963h908v-188h-908v188z" />
-<glyph unicode=">" d="M234 215v180q0 20 10.5 37.5t34.5 29.5l371 191q45 23 106 37q-30 7 -56 16t-50 21l-371 191q-24 12 -34.5 29t-10.5 37v180l812 -423v-102z" />
-<glyph unicode="?" horiz-adv-x="861" d="M38 1347q35 31 76.5 58.5t89.5 48t104.5 32t121.5 11.5q89 0 162.5 -24.5t125.5 -70t80.5 -110t28.5 -144.5q0 -78 -22.5 -135t-56.5 -99t-74 -72l-76 -58q-36 -27 -62 -53t-31 -59l-24 -150h-173l-17 167q-1 5 -1 9v9q0 45 22.5 78t56 62.5t72.5 57t73 59.5t56.5 73 t22.5 97q0 37 -14 66t-38.5 50t-59 32t-73.5 11q-58 0 -99 -12.5t-69 -28.5t-47.5 -29t-34.5 -13q-37 0 -54 31zM231 139q0 32 12 60.5t33 49t49.5 33t61.5 12.5q32 0 60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5 t-49.5 32t-33 48.5t-12 61z" />
-<glyph unicode="@" horiz-adv-x="1684" d="M1194 188q-70 0 -124.5 33t-76.5 106q-60 -74 -127.5 -106t-145.5 -32q-65 0 -112.5 22.5t-79.5 62t-48 93.5t-16 117q0 58 15 118.5t44.5 116t74 104t105 85t135 57.5t166.5 21q79 0 135 -12t108 -35l-98 -380q-16 -66 -16 -109q0 -31 7.5 -51.5t20.5 -33t31 -17 t40 -4.5q43 0 81.5 27t67 76.5t45.5 117t17 147.5q0 133 -41.5 234.5t-116 169.5t-177.5 102t-226 34q-134 0 -249.5 -50.5t-200 -138.5t-132 -208t-47.5 -258q0 -168 52 -295.5t143.5 -213t214.5 -128.5t267 -43q79 0 147.5 8.5t126 23.5t104.5 34t84 41q20 11 34 11 q30 0 42 -33l35 -91q-106 -70 -248.5 -114t-324.5 -44q-185 0 -343 58.5t-273 167.5t-180 265.5t-65 352.5q0 110 28 213t80 194t126 166.5t164 130t195 84.5t220 30q145 0 278.5 -48.5t236.5 -139t164.5 -221t61.5 -294.5q0 -110 -32 -205.5t-90 -166.5t-136.5 -111.5 t-170.5 -40.5zM770 352q27 0 54 8.5t51.5 29.5t45 55.5t33.5 86.5l75 289q-33 6 -67 6q-63 0 -119 -27.5t-96 -74.5t-64 -108t-24 -127t28.5 -102t82.5 -36z" />
-<glyph unicode="A" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493l-27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5z" />
-<glyph unicode="B" horiz-adv-x="1334" d="M150 0v1481h510q145 0 248.5 -28t169.5 -79t96.5 -123.5t30.5 -164.5q0 -52 -15 -99.5t-47.5 -89t-82 -75.5t-118.5 -57q305 -69 305 -330q0 -94 -35.5 -174t-104.5 -137.5t-169 -90.5t-229 -33h-559zM425 649v-434h280q77 0 128.5 18.5t82.5 49t45 71.5t14 87 q0 48 -15.5 86.5t-48 66t-84 41.5t-124.5 14h-278zM425 840h220q140 0 213 51t73 163q0 116 -65.5 165t-205.5 49h-235v-428z" />
-<glyph unicode="C" horiz-adv-x="1373" d="M1167 349q23 0 39 -17l109 -118q-90 -112 -221.5 -171t-316.5 -59q-165 0 -296.5 56t-224.5 156.5t-143 239.5t-50 304q0 167 55.5 306t156 239t240 156t308.5 56q165 0 288.5 -52.5t211.5 -139.5l-92 -128q-8 -12 -21 -21.5t-35 -9.5q-24 0 -48.5 18.5t-62.5 40t-96 40 t-147 18.5q-104 0 -191.5 -36.5t-150.5 -104t-98.5 -164.5t-35.5 -218q0 -125 35.5 -222t96 -163.5t142 -102t176.5 -35.5q56 0 101.5 6t84 19.5t72.5 34.5t68 52q10 9 21.5 14.5t24.5 5.5z" />
-<glyph unicode="D" horiz-adv-x="1530" d="M1464 740q0 -163 -54 -299t-152.5 -234t-236.5 -152.5t-306 -54.5h-565v1481h565q168 0 306 -55t236.5 -152.5t152.5 -234t54 -299.5zM1183 740q0 122 -33 219t-93.5 164t-147 103t-194.5 36h-288v-1043h288q109 0 195 36t146.5 103t93.5 163.5t33 218.5z" />
-<glyph unicode="E" horiz-adv-x="1172" d="M1083 1481v-219h-656v-411h517v-212h-517v-419h656v-220h-933v1481h933z" />
-<glyph unicode="F" horiz-adv-x="1149" d="M1083 1481v-219h-656v-439h554v-220h-554v-603h-277v1481h933z" />
-<glyph unicode="G" horiz-adv-x="1480" d="M829 203q93 0 162.5 17t131.5 46v270h-185q-27 0 -42 14.5t-15 36.5v155h492v-599q-56 -41 -117 -71t-130 -49.5t-148 -29t-170 -9.5q-162 0 -298 56t-235.5 156.5t-155.5 239.5t-56 304q0 167 54.5 306.5t154.5 239.5t242 155.5t320 55.5q181 0 313.5 -53.5 t224.5 -139.5l-80 -125q-24 -38 -62 -38q-25 0 -50 16l-67 39q-34 19 -76 33.5t-93.5 24t-119.5 9.5q-110 0 -198 -37t-150.5 -105.5t-96.5 -165t-34 -215.5q0 -128 36 -227.5t100.5 -168.5t153.5 -105t194 -36z" />
-<glyph unicode="H" horiz-adv-x="1548" d="M1399 0h-278v647h-694v-647h-277v1481h277v-637h694v637h278v-1481z" />
-<glyph unicode="I" horiz-adv-x="643" d="M460 0h-277v1481h277v-1481z" />
-<glyph unicode="J" horiz-adv-x="894" d="M745 526q0 -125 -30.5 -225t-91.5 -171t-152 -108.5t-212 -37.5q-55 0 -108.5 6.5t-111.5 20.5l14 164q2 23 17 36.5t44 13.5q17 0 45 -7t71 -7q58 0 103.5 17t75.5 53.5t45.5 95.5t15.5 143v961h275v-955z" />
-<glyph unicode="K" horiz-adv-x="1429" d="M434 860h65q39 0 64.5 11t43.5 34l409 517q26 33 54 46t71 13h237l-498 -616q-24 -29 -45.5 -48t-46.5 -32q34 -12 61.5 -34.5t52.5 -57.5l514 -693h-244q-49 0 -73 14t-40 40l-419 547q-20 27 -46 38.5t-73 11.5h-87v-651h-275v1482h275v-622z" />
-<glyph unicode="L" horiz-adv-x="1058" d="M425 227h593v-227h-868v1481h275v-1254z" />
-<glyph unicode="M" horiz-adv-x="1904" d="M893 614q17 -33 32 -68l29 -71q14 37 29.5 73t33.5 68l438 821q8 15 17 24t19.5 13.5t24 5.5t31.5 1h208v-1481h-243v956q0 27 2 59t5 64l-448 -839q-15 -29 -39.5 -45t-57.5 -16h-38q-33 0 -57.5 16t-39.5 45l-454 842q4 -34 5.5 -66t1.5 -60v-956h-242v1481h207 q18 0 31.5 -1t24.5 -5.5t20 -13.5t18 -24z" />
-<glyph unicode="N" horiz-adv-x="1548" d="M294 1481q18 0 30.5 -1.5t22 -6.5t19 -13.5t20.5 -22.5l777 -991q-4 36 -5.5 70.5t-1.5 64.5v900h243v-1481h-143q-33 0 -54 10t-42 37l-774 986q3 -33 4.5 -65t1.5 -59v-909h-242v1481h144z" />
-<glyph unicode="O" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5z" />
-<glyph unicode="P" horiz-adv-x="1280" d="M434 521v-521h-275v1481h482q148 0 257 -35t179.5 -97.5t104 -149.5t33.5 -190q0 -108 -35.5 -197.5t-107.5 -154t-179.5 -100.5t-251.5 -36h-207zM434 736h207q76 0 132 19t93 54.5t55.5 86t18.5 113.5q0 59 -18.5 107t-55.5 82t-93 52t-132 18h-207v-532z" />
-<glyph unicode="Q" horiz-adv-x="1637" d="M1570 740q0 -99 -20.5 -189.5t-59 -169.5t-94 -145t-125.5 -116l376 -410h-228q-49 0 -88.5 13.5t-72.5 49.5l-217 239q-52 -14 -106.5 -21t-114.5 -7q-168 0 -306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5 t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5z" />
-<glyph unicode="R" horiz-adv-x="1341" d="M434 579v-579h-275v1481h451q152 0 260 -31.5t177 -87.5t101.5 -134.5t32.5 -172.5q0 -75 -22 -141.5t-63.5 -121t-102.5 -95.5t-139 -65q52 -30 90 -85l371 -547h-248q-36 0 -61 14.5t-42 40.5l-312 474q-17 27 -38 38.5t-62 11.5h-118zM434 776h172q78 0 136 19.5 t95 54t55.5 81.5t18.5 103q0 113 -74 173.5t-227 60.5h-176v-492z" />
-<glyph unicode="S" horiz-adv-x="1098" d="M943 1211q-11 -23 -26 -32t-35 -9t-46 16t-61 35.5t-81.5 35.5t-109.5 16q-57 0 -100 -14t-72 -38.5t-43.5 -59t-14.5 -75.5q0 -52 29.5 -86.5t77.5 -59.5t109 -44l126 -41q64 -22 125.5 -51.5t109.5 -74t77 -109t29 -156.5q0 -100 -34 -188t-100 -153t-161.5 -102 t-218.5 -37q-71 0 -139.5 13.5t-131.5 39t-117.5 61.5t-97.5 80l80 132q11 14 27 24t35 10q26 0 55.5 -21t70 -46.5t95.5 -46.5t131 -21q118 0 182.5 56t64.5 160q0 58 -29 95t-77 62t-109.5 42.5t-125 38t-125 49t-109.5 75t-77.5 115.5t-29.5 170q0 81 32.5 158t94.5 136 t152 95t206 36q131 0 241.5 -41t188.5 -115z" />
-<glyph unicode="T" horiz-adv-x="1218" d="M1193 1481v-227h-445v-1254h-276v1254h-447v227h1168z" />
-<glyph unicode="U" horiz-adv-x="1490" d="M745 222q80 0 143 26.5t106.5 75t66.5 117t23 153.5v887h276v-887q0 -132 -42.5 -244t-122.5 -193.5t-193.5 -127t-256.5 -45.5q-142 0 -255.5 45.5t-193 127t-122 193.5t-42.5 244v887h276v-886q0 -85 23 -153.5t66 -117.5t105.5 -75.5t142.5 -26.5z" />
-<glyph unicode="V" horiz-adv-x="1454" d="M4 1481h222q36 0 58.5 -17.5t33.5 -45.5l349 -903q17 -44 33 -96.5t30 -111.5q24 118 58 208l348 903q9 24 32.5 43.5t58.5 19.5h222l-598 -1481h-249z" />
-<glyph unicode="W" horiz-adv-x="2143" d="M12 1481h232q36 0 60 -17t32 -46l252 -886q9 -33 16.5 -71l15.5 -81q8 43 17.5 81.5t20.5 70.5l291 886q8 24 32.5 43.5t58.5 19.5h81q36 0 59.5 -17t32.5 -46l289 -886q23 -66 39 -145q7 40 15 77t16 68l252 886q7 26 31.5 44.5t59.5 18.5h216l-460 -1481h-249 l-323 1012l-13 42q-7 23 -13 48q-6 -26 -13 -48l-12 -42l-327 -1012h-249z" />
-<glyph unicode="X" horiz-adv-x="1390" d="M505 762l-472 719h274q29 0 41.5 -8t23.5 -25l337 -544q5 13 11 26t14 26l308 487q23 38 59 38h264l-477 -708l490 -773h-275q-28 0 -45 14.5t-28 32.5l-343 567q-4 -12 -9 -22.5l-10 -20.5l-329 -524q-11 -17 -27.5 -32t-41.5 -15h-258z" />
-<glyph unicode="Y" horiz-adv-x="1340" d="M808 575v-575h-276v575l-539 906h243q36 0 56.5 -17.5t35.5 -44.5l271 -494q24 -44 41 -83.5l32 -77.5q13 39 30 78.5t40 82.5l270 494q11 23 33.5 42.5t57.5 19.5h244z" />
-<glyph unicode="Z" horiz-adv-x="1263" d="M1207 1481v-102q0 -47 -26 -86l-760 -1073h768v-220h-1126v109q0 20 7.5 39t18.5 35l762 1079h-739v219h1095z" />
-<glyph unicode="[" horiz-adv-x="614" d="M118 -315v1899h420v-99q0 -27 -19 -46t-49 -19h-141v-1572h141q30 0 49 -18.5t19 -45.5v-99h-420z" />
-<glyph unicode="\" horiz-adv-x="799" d="M-29 1522h109q45 0 78 -23t51 -66l597 -1530h-107q-40 0 -78 23.5t-56 70.5z" />
-<glyph unicode="]" horiz-adv-x="614" d="M77 -315v99q0 27 19 45.5t48 18.5h142v1572h-142q-30 0 -48.5 19t-18.5 46v99h420v-1899h-420z" />
-<glyph unicode="^" d="M1053 796h-186q-24 0 -38.5 12t-24.5 30l-163 296l-28 54q-13 26 -21 52q-8 -27 -19.5 -53t-26.5 -53l-160 -296q-9 -17 -24.5 -29.5t-42.5 -12.5h-194l382 685h164z" />
-<glyph unicode="_" horiz-adv-x="806" d="M807 -137v-164h-807v164h807z" />
-<glyph unicode="`" horiz-adv-x="653" d="M236 1497q42 0 61.5 -14t35.5 -40l146 -249h-144q-29 0 -47 7.5t-36 28.5l-253 267h237z" />
-<glyph unicode="a" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32l-56 -32 q-26 -14 -56 -15q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z" />
-<glyph unicode="b" horiz-adv-x="1167" d="M138 0v1522h253v-600q62 67 141 106t185 39q86 0 157 -35.5t123 -103t80 -166.5t28 -228q0 -118 -32 -218.5t-90.5 -174t-142 -115t-187.5 -41.5q-48 0 -88 9.5t-72.5 27t-61 42.5t-53.5 56l-11 -71q-6 -27 -21 -38t-41 -11h-167zM630 870q-79 0 -135 -33t-104 -94v-471 q43 -53 94 -74t110 -21q57 0 103 21.5t78.5 65.5t50 111t17.5 159t-15 156t-42.5 104t-67 58t-89.5 18z" />
-<glyph unicode="c" horiz-adv-x="976" d="M873 828q-11 -14 -21.5 -22t-31.5 -8q-19 0 -37.5 11.5l-44 26.5t-61 26.5t-87.5 11.5q-67 0 -117 -24t-83.5 -69t-49.5 -109t-16 -145q0 -84 17.5 -149.5t51.5 -110t82 -67.5t109 -23q60 0 97.5 15t63 33l44.5 32.5t42 14.5q31 0 47 -23l72 -92q-42 -49 -91 -82.5 t-101.5 -53.5t-109 -28t-111.5 -8q-97 0 -183.5 36t-150.5 106t-101 170.5t-37 229.5q0 116 33 215t97.5 171t160 113t218.5 41q118 0 206.5 -38t159.5 -108z" />
-<glyph unicode="d" horiz-adv-x="1167" d="M874 0q-49 0 -64 46l-20 101q-33 -37 -69 -66.5t-77.5 -51t-89 -33t-102.5 -11.5q-86 0 -158 35.5t-123.5 104t-80 168.5t-28.5 229q0 117 32 217.5t91.5 174t142.5 115t186 41.5q88 0 150.5 -28t111.5 -75v555h253v-1522h-155zM538 185q79 0 134 33t104 93v471 q-43 52 -93.5 74t-109.5 22q-57 0 -103.5 -21.5t-79 -65t-49.5 -111t-17 -158.5q0 -92 14.5 -156t42.5 -104.5t68 -58.5t89 -18z" />
-<glyph unicode="e" horiz-adv-x="1094" d="M569 1067q99 0 183 -31.5t144 -92.5t94 -149.5t34 -202.5q0 -29 -2.5 -48t-9 -29.5t-18 -15t-28.5 -4.5h-650q11 -162 87 -238t201 -76q61 0 106 14.5t78 32l58 31.5t49 14q15 0 26.5 -6t19.5 -17l74 -92q-42 -49 -94.5 -82.5t-109 -53.5t-115.5 -28t-114 -8 q-110 0 -204 36t-164 107.5t-109.5 176.5t-39.5 243q0 108 34.5 202.5t99.5 164.5t158.5 111t211.5 41zM574 886q-111 0 -173 -62.5t-79 -177.5h475q0 49 -13.5 92.5t-41 76.5t-70 52t-98.5 19z" />
-<glyph unicode="f" horiz-adv-x="717" d="M180 0v860l-91 14q-30 5 -47.5 20.5t-17.5 43.5v103h156v78q0 90 27 162t78 122t123.5 76.5t163.5 26.5q73 0 136 -19l-6 -127q-2 -30 -27.5 -37t-59.5 -7q-45 0 -80 -10t-59.5 -34t-37.5 -63.5t-13 -97.5v-70h273v-180h-265v-861h-253z" />
-<glyph unicode="g" horiz-adv-x="1059" d="M499 1069q68 0 127 -14t108 -40h302v-94q0 -24 -12 -37.5t-42 -18.5l-94 -17q10 -27 15.5 -56.5t5.5 -62.5q0 -78 -31 -141t-86 -107t-130 -68t-163 -24q-59 0 -116 11q-49 -30 -49 -66q0 -32 29 -47t76.5 -21t108 -7.5t124 -6.5t124 -18t108 -40.5t77 -75t29.5 -122.5 q0 -70 -34.5 -135.5t-99.5 -116.5t-159 -82.5t-215 -31.5q-120 0 -208 23t-146 61.5t-86.5 89t-28.5 104.5q0 74 45 124t125 80q-39 22 -62.5 57.5t-23.5 92.5q0 24 8 49t25 49.5t42.5 46.5t60.5 39q-80 43 -125.5 115t-45.5 168q0 78 31 141t87 107.5t132.5 68t166.5 23.5z M776 -47q0 31 -18.5 50.5t-50 30t-74 15.5t-90.5 8l-98 5q-51 3 -98 9q-43 -24 -69 -56t-26 -74q0 -28 14 -52t44 -41.5t78 -27t118 -9.5q71 0 122 10.5t84 29.5t48.5 45t15.5 57zM499 551q47 0 81.5 13t58 35.5t35 54t11.5 69.5q0 78 -46.5 123.5t-139.5 45.5t-140 -45.5 t-47 -123.5q0 -37 12 -68.5t35 -54.5t58.5 -36t81.5 -13z" />
-<glyph unicode="h" horiz-adv-x="1164" d="M135 0v1522h253v-585q61 58 135 94t173 36q86 0 152.5 -29t111.5 -82t68 -126t23 -161v-669h-253v669q0 96 -44.5 148.5t-133.5 52.5q-66 0 -123.5 -29.5t-108.5 -80.5v-760h-253z" />
-<glyph unicode="i" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252zM442 1357q0 -33 -13 -61.5t-35 -50t-52 -34.5t-63 -13t-62.5 13t-51 34.5t-34 50t-12.5 61.5q0 34 12.5 63.5t34 51t51 34.5t62.5 13q34 0 63.5 -13t51.5 -34.5t35 -51t13 -63.5z" />
-<glyph unicode="j" horiz-adv-x="550" d="M404 1051v-1087q0 -69 -17.5 -129t-57 -105.5t-103.5 -72t-156 -26.5q-36 0 -67 5t-62 15l8 136q3 20 16 26t51 6t64 7.5t42 24.5t23 44.5t7 68.5v1087h252zM442 1357q0 -33 -13 -61.5t-35 -50t-52 -34.5t-63 -13t-62.5 13t-51 34.5t-34 50t-12.5 61.5q0 34 12.5 63.5 t34 51t51 34.5t62.5 13q34 0 63.5 -13t51.5 -34.5t35 -51t13 -63.5z" />
-<glyph unicode="k" horiz-adv-x="1129" d="M391 1522v-872h47q26 0 40.5 7.5t30.5 26.5l261 323q17 20 36.5 32t51.5 12h232l-327 -391q-17 -22 -35.5 -39.5t-40.5 -30.5q22 -15 38 -35.5l33 -44.5l350 -510h-228q-30 0 -50.5 10t-36.5 35l-268 398q-15 24 -30.5 31t-45.5 7h-58v-481h-253v1522h253z" />
-<glyph unicode="l" horiz-adv-x="555" d="M404 1522v-1522h-252v1522h252z" />
-<glyph unicode="m" horiz-adv-x="1724" d="M135 0v1051h155q49 0 64 -46l17 -78q28 31 58 56.5t64 44t73.5 29t86.5 10.5q99 0 163.5 -54t95.5 -143q25 52 62 89.5t81 61t93.5 35t99.5 11.5q87 0 154.5 -26.5t114 -78t70.5 -125t24 -168.5v-669h-253v669q0 100 -44 150.5t-129 50.5q-39 0 -72.5 -13t-58.5 -38 t-39.5 -63t-14.5 -87v-669h-254v669q0 105 -42 153t-125 48q-54 0 -102 -27t-89 -74v-769h-253z" />
-<glyph unicode="n" horiz-adv-x="1164" d="M135 0v1051h155q49 0 64 -46l18 -83q32 33 67 59.5t74.5 46t84.5 29.5t98 10q86 0 152.5 -29t111.5 -82t68 -126t23 -161v-669h-253v669q0 96 -44.5 148.5t-133.5 52.5q-66 0 -123.5 -29.5t-108.5 -80.5v-760h-253z" />
-<glyph unicode="o" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5z" />
-<glyph unicode="p" horiz-adv-x="1158" d="M135 -343v1394h155q25 0 42 -11.5t22 -34.5l21 -98q63 73 145.5 118t193.5 45q86 0 157 -36t123 -104t80 -167.5t28 -228.5q0 -118 -32 -218.5t-90.5 -174t-142 -115t-187.5 -41.5q-89 0 -151 27t-111 75v-430h-253zM627 870q-79 0 -135 -33t-104 -94v-471 q43 -53 93.5 -74t109.5 -21q57 0 103.5 21.5t79 65.5t50 111t17.5 159t-15 156t-42.5 104t-67 58t-89.5 18z" />
-<glyph unicode="q" horiz-adv-x="1167" d="M1029 1051v-1394h-253v475q-32 -34 -67 -61t-75 -46t-85 -29.5t-97 -10.5q-86 0 -158 35.5t-123.5 104t-80 168.5t-28.5 229q0 117 32 217.5t91.5 174t142.5 115t186 41.5q49 0 89.5 -8.5t75 -25t63 -39t55.5 -51.5l13 59q5 24 22.5 35t41.5 11h155zM538 185q79 0 134 33 t104 93v471q-43 52 -93.5 74t-109.5 22q-57 0 -103.5 -21.5t-79 -65t-49.5 -111t-17 -158.5q0 -92 14.5 -156t42.5 -104.5t68 -58.5t89 -18z" />
-<glyph unicode="r" horiz-adv-x="836" d="M135 0v1051h149q39 0 54 -14.5t20 -49.5l16 -127q56 97 132 153.5t170 56.5q78 0 129 -36l-33 -189q-3 -18 -13 -26t-28 -8q-15 0 -41.5 7t-71.5 7q-79 0 -135 -43.5t-95 -127.5v-654h-253z" />
-<glyph unicode="s" horiz-adv-x="894" d="M759 846q-10 -16 -21.5 -23t-28.5 -7q-18 0 -40 10l-48 23q-28 13 -63.5 23.5t-83.5 10.5q-75 0 -118 -32t-43 -83q0 -34 22 -57t58.5 -40.5t82.5 -31t94 -30t94.5 -37.5t82.5 -53.5t58 -77.5t22 -108q0 -76 -27.5 -140t-80.5 -110.5t-131.5 -72.5t-179.5 -26 q-54 0 -106 9.5t-99.5 27t-88 41t-71.5 51.5l58 96q11 17 26.5 26.5t39.5 9.5t44.5 -13.5t48.5 -29t65 -28.5t95 -13q45 0 77 10.5t53 28t31 40.5t10 48q0 37 -22 60.5t-58.5 41t-83 31t-95 30t-95.5 38.5t-83 56t-58 83t-22 118q0 65 25.5 123.5t75 102t124 69.5t171.5 26 q109 0 198 -36t148 -94z" />
-<glyph unicode="t" horiz-adv-x="792" d="M480 -16q-136 0 -209.5 77t-73.5 213v587h-107q-20 0 -35 13.5t-15 39.5v101l169 27l53 287q4 20 19 31.5t37 11.5h132v-331h276v-180h-276v-569q0 -49 24.5 -77t65.5 -28q24 0 39.5 6t27 12t21 11.5t18.5 5.5q11 0 18.5 -5.5t15.5 -16.5l76 -123q-55 -46 -127 -69.5 t-149 -23.5z" />
-<glyph unicode="u" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 84q-33 -33 -68 -60t-74.5 -46t-85 -29.5t-97.5 -10.5q-86 0 -152 29t-111 82t-68 126.5t-23 161.5v668h253z" />
-<glyph unicode="v" horiz-adv-x="1092" d="M662 0h-230l-418 1051h210q28 0 47 -13.5t26 -33.5l203 -562q17 -49 29 -96t21 -94q9 47 21 94t30 96l208 562q7 20 25.5 33.5t44.5 13.5h199z" />
-<glyph unicode="w" horiz-adv-x="1619" d="M7 1051h201q29 0 48 -13.5t25 -33.5l150 -562q12 -46 20 -90l15 -88q11 44 24 88l27 90l174 564q6 20 24.5 33.5t43.5 13.5h111q28 0 46.5 -13.5t24.5 -33.5l172 -574q13 -44 24 -85l21 -84q7 44 16 88t22 91l156 562q5 20 24.5 33.5t44.5 13.5h192l-333 -1051h-204 q-33 0 -47 45l-189 607q-9 30 -17 60t-13 60q-6 -31 -13 -61t-17 -61l-191 -605q-14 -45 -55 -45h-194z" />
-<glyph unicode="x" horiz-adv-x="1105" d="M384 542l-345 509h244q28 0 41 -8t23 -25l220 -351q5 17 13 34.5t19 34.5l177 277q12 19 25.5 28.5t33.5 9.5h232l-346 -498l360 -553h-243q-28 0 -45 14.5t-28 32.5l-223 366q-9 -37 -26 -62l-197 -304q-11 -17 -27.5 -32t-40.5 -15h-226z" />
-<glyph unicode="y" horiz-adv-x="1092" d="M508 -289q-11 -27 -29 -40.5t-55 -13.5h-188l196 421l-425 973h221q31 0 47.5 -14.5t24.5 -32.5l224 -545q11 -27 19.5 -55.5t14.5 -57.5q8 30 18 57.5l21 56.5l211 544q8 20 27 33.5t43 13.5h202z" />
-<glyph unicode="z" horiz-adv-x="961" d="M895 946q0 -27 -9.5 -52t-23.5 -42l-500 -657h519v-195h-812v105q0 17 8 41.5t25 46.5l504 664h-508v194h797v-105z" />
-<glyph unicode="{" horiz-adv-x="614" d="M153 420q0 62 -29.5 101.5t-93.5 39.5v147q65 0 94 39t29 102q0 48 -7 95.5t-15.5 96t-15 97t-6.5 98.5q0 78 22.5 142t69 110t117.5 71t167 25h55v-113q0 -13 -6 -22.5t-14.5 -16t-17.5 -9.5t-17 -3h-9q-72 0 -109.5 -45t-37.5 -124q0 -56 6 -107.5t13 -100.5l12 -96 q6 -47 7 -95q0 -39 -11 -74t-32 -63t-50 -49.5t-66 -31.5q37 -11 66 -32t50 -50t32 -63.5t11 -72.5q0 -48 -7 -95l-12 -96q-7 -49 -13 -100.5t-6 -108.5q0 -78 37.5 -123t109.5 -45h9q7 0 16.5 -3t18 -9t14.5 -16t6 -24v-111h-55q-96 0 -167 25t-117.5 70.5t-69 109.5 t-22.5 142q0 50 6.5 98.5t15 96.5t15.5 96.5t7 96.5z" />
-<glyph unicode="|" horiz-adv-x="614" d="M209 1584h197v-1927h-197v1927z" />
-<glyph unicode="}" horiz-adv-x="614" d="M462 420q0 -48 6.5 -96.5t15.5 -96.5t15.5 -96.5t6.5 -98.5q0 -78 -22.5 -142t-69 -109.5t-118 -70.5t-167.5 -25h-54v111q0 13 5.5 23.5t14 16.5t18 9t16.5 3h9q72 0 110 45.5t38 122.5q0 56 -6.5 108l-12.5 101l-13 96q-6 47 -6 95q0 38 10.5 72.5t31 63.5t50.5 50 t67 32q-37 10 -67 31.5t-50.5 49.5t-31 63t-10.5 74q0 48 6 95l13 96q7 49 13 100.5t6 107.5q0 79 -38 124t-110 45h-9q-7 0 -16.5 3t-18 9.5t-14 16t-5.5 22.5v113h54q96 0 167.5 -25t118 -71t69 -110t22.5 -142q0 -50 -6.5 -98.5t-15.5 -97t-15.5 -96t-6.5 -95.5 q0 -62 29 -101.5t94 -39.5v-147q-65 0 -94 -39.5t-29 -101.5z" />
-<glyph unicode="~" d="M763 664q57 0 89 36.5t32 103.5h203q0 -79 -20.5 -143t-60 -109.5t-97 -70t-131.5 -24.5q-54 0 -103.5 14t-94.5 31l-83 32q-39 14 -72 14q-57 0 -89 -37t-32 -103h-204q0 79 21 142.5t60.5 109.5t97 70.5t131.5 24.5q54 0 103.5 -14.5t94.5 -31.5l83 -31q39 -14 72 -14z " />
-<glyph unicode="¡" horiz-adv-x="738" d="M253 -343v546q0 93 9 182.5t25 189.5h171q15 -100 24.5 -189.5t9.5 -182.5v-546h-239zM214 913q0 33 12 61t32.5 48.5t49 32.5t61.5 12t61 -12t49 -32.5t33 -48.5t12 -61t-12 -61t-33 -48.5t-49.5 -32.5t-60.5 -12q-33 0 -61.5 12t-49 32.5t-32.5 48.5t-12 61z" />
-<glyph unicode="¢" d="M552 -8q-91 13 -169 54.5t-135.5 109.5t-89.5 161t-32 208q0 112 34 208.5t100 168.5t162.5 115t221.5 48l14 161q2 24 20.5 43.5t48.5 19.5h93l-20 -234q81 -14 146.5 -48.5t120.5 -85.5l-66 -90q-10 -14 -20 -21t-31 -7q-14 0 -29.5 6.5t-35.5 17t-44.5 20.5t-57.5 18 l-59 -689q54 5 90.5 20t62.5 30l46 28q19 12 40 12q31 0 47 -21l69 -90q-36 -42 -79 -72t-90 -50t-98 -30.5t-104 -14.5l-13 -151q-2 -25 -20.5 -44.5t-47.5 -19.5h-93zM376 525q0 -137 50 -221.5t143 -114.5l59 683q-129 -16 -190.5 -106t-61.5 -241z" />
-<glyph unicode="£" d="M40 695q0 35 21.5 60t63.5 25h111v242q0 96 28.5 182.5t87 151.5t146.5 103t207 38q82 0 146.5 -21t115.5 -57t88.5 -84.5t63.5 -104.5l-101 -65q-33 -16 -59 -16q-38 0 -67 34q-19 23 -38 41.5t-41 32t-48.5 20.5t-59.5 7q-105 0 -157.5 -69t-52.5 -192v-243h418v-100 q0 -25 -20 -45.5t-51 -20.5h-347v-198q0 -68 -25.5 -120.5t-69.5 -97.5q76 17 151 17h600v-106q0 -18 -7.5 -38t-22 -36t-34.5 -25.5t-45 -9.5h-982v159q35 8 67 23t56 38t38.5 54t14.5 73v267h-196v81z" />
-<glyph unicode="¤" d="M216 689q0 54 14 103t39 92l-156 155l128 125l153 -153q44 27 94.5 41.5t105.5 14.5q53 0 102 -14t92 -39l156 155l126 -126l-155 -154q27 -44 42 -94.5t15 -105.5q0 -54 -14 -102t-39 -91l156 -156l-128 -126l-154 154q-43 -27 -93.5 -41.5t-105.5 -14.5 q-53 0 -102 13.5t-92 39.5l-156 -156l-126 127l154 153q-27 44 -41.5 94.5t-14.5 105.5zM402 689q0 -39 15 -74t41 -61.5t61 -41.5t75 -15t75.5 15t61.5 41.5t41 61.5t15 74q0 41 -15 76.5t-41 61.5t-61.5 41.5t-75.5 15.5t-75 -15.5t-61 -41.5t-41 -61.5t-15 -76.5z" />
-<glyph unicode="¥" d="M136 648h283l-408 833h210q36 0 58.5 -17t34.5 -45l225 -499q20 -46 32.5 -85t20.5 -77q8 38 20 77t32 85l222 499q11 24 34 43t57 19h212l-408 -833h282v-141h-326v-97h326v-141h-326v-269h-253v269h-328v141h328v97h-328v141z" />
-<glyph unicode="¦" horiz-adv-x="614" d="M209 1584h197v-828h-197v828zM209 484h197v-827h-197v827z" />
-<glyph unicode="§" horiz-adv-x="1034" d="M847 1275q-10 -16 -21.5 -23.5t-28.5 -7.5q-19 0 -41 10l-48 23q-28 13 -63.5 23.5t-83.5 10.5q-43 0 -75.5 -10t-54.5 -27t-34 -39.5t-12 -47.5q0 -33 24 -57.5t64 -46.5t91 -43l104 -43q53 -23 103.5 -50.5t90.5 -63.5t64 -83t24 -109q0 -83 -38.5 -150t-123.5 -108 q46 -38 75.5 -88t29.5 -120q0 -76 -27 -139.5t-80.5 -110.5t-132 -73t-180.5 -26q-54 0 -106 10t-99.5 27t-88 40.5t-70.5 51.5l59 96q11 17 26 26.5t38 9.5q24 0 45 -13t49.5 -28.5t68.5 -29t101 -13.5q84 0 130.5 35t46.5 96q0 41 -24.5 71t-65.5 53t-93 42l-105 40 q-54 22 -106 48t-93 62t-65.5 85t-24.5 116q0 81 42.5 145t129.5 102q-47 40 -76.5 95t-29.5 133q0 65 25 122.5t75 101.5t124 70t171 26q109 0 198.5 -36t147.5 -94zM321 742q0 -43 29.5 -74t77 -56t107 -48t117.5 -50q41 20 59.5 51.5t18.5 68.5q0 45 -28.5 76t-74.5 57 t-104 48.5t-115 48.5q-46 -25 -66.5 -54t-20.5 -68z" />
-<glyph unicode="¨" horiz-adv-x="653" d="M276 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM659 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29 t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5t30.5 -45.5t11 -56z" />
-<glyph unicode="©" horiz-adv-x="1620" d="M1041 524q11 0 20.5 -4.5t15.5 -12.5l84 -89q-57 -73 -144 -111.5t-205 -38.5q-102 0 -185 36.5t-142 100.5t-91 150.5t-32 187.5q0 104 36 191.5t99.5 150.5t149 98t186.5 35q115 0 196 -38t136 -99l-66 -91q-6 -8 -16.5 -16t-27.5 -8t-32.5 10t-37 22.5t-54.5 22.5 t-85 10q-61 0 -109.5 -20t-81.5 -57.5t-50.5 -90.5t-17.5 -120q0 -70 18 -123t49.5 -89t75 -55t94.5 -19q50 0 82.5 8t55 19.5t39.5 22.5t40 17zM54 740q0 104 27.5 201t76.5 181t118 153.5t153 118.5t180.5 76t200.5 27t201 -27t181 -76t153 -118.5t118 -153.5t76.5 -180.5 t27.5 -201.5q0 -103 -27.5 -200t-76.5 -180.5t-118 -152.5t-153 -118t-181 -76t-201 -27t-200.5 27t-180.5 76t-153 118t-118 152.5t-76.5 180t-27.5 200.5zM193 740q0 -133 47.5 -248.5t131 -201t196 -135t242.5 -49.5t243.5 49.5t197.5 135t132.5 201t48.5 248.5 q0 89 -22 171t-62 153.5t-97 129t-125.5 99t-148.5 64t-167 22.5t-166.5 -22.5t-148 -64t-124.5 -99t-95.5 -129t-61 -153.5t-21.5 -171z" />
-<glyph unicode="ª" horiz-adv-x="712" d="M637 861h-85q-25 0 -39 6.5t-23 30.5l-12 37q-25 -20 -47 -35.5t-46 -26t-51 -15.5t-61 -5q-43 0 -77.5 11.5t-59.5 33.5t-39 54t-14 74q0 34 17.5 69t60.5 64t115.5 48t183.5 22v25q0 55 -24 78.5t-70 23.5q-35 0 -57.5 -7.5t-40 -16.5t-33 -16t-36.5 -7q-19 0 -32.5 10 t-21.5 23l-31 59q57 52 125.5 76t148.5 24q57 0 103.5 -18.5t78.5 -51.5t49.5 -78t17.5 -99v-393zM331 977q39 0 68.5 14t60.5 43v83q-60 -2 -99 -9t-62.5 -18t-32.5 -24.5t-9 -30.5q0 -33 19 -45.5t55 -12.5z" />
-<glyph unicode="«" horiz-adv-x="995" d="M126 535v32l262 406l83 -39q20 -9 29.5 -23.5t9.5 -31.5q0 -22 -13 -44l-142 -241q-14 -27 -32 -43q16 -14 32 -43l142 -242q13 -23 13 -45q0 -35 -39 -53l-83 -39zM463 535v32l262 406l83 -39q20 -9 29.5 -23.5t9.5 -31.5q0 -22 -13 -44l-142 -241q-14 -27 -33 -43 q16 -14 33 -43l142 -242q13 -23 13 -45q0 -35 -39 -53l-83 -39z" />
-<glyph unicode="¬" d="M139 781h908v-477h-214v290h-694v187z" />
-<glyph unicode="­" horiz-adv-x="0" />
-<glyph unicode="®" horiz-adv-x="1620" d="M54 740q0 104 27.5 201t76.5 181t118 153.5t153 118.5t180.5 76t200.5 27t201 -27t181 -76t153 -118.5t118 -153.5t76.5 -180.5t27.5 -201.5q0 -103 -27.5 -200t-76.5 -180.5t-118 -152.5t-153 -118t-181 -76t-201 -27t-200.5 27t-180.5 76t-153 118t-118 152.5 t-76.5 180t-27.5 200.5zM193 740q0 -133 47.5 -248.5t131 -201t196 -135t242.5 -49.5t243.5 49.5t197.5 135t132.5 201t48.5 248.5q0 89 -22 171t-62 153.5t-97 129t-125.5 99t-148.5 64t-167 22.5t-166.5 -22.5t-148 -64t-124.5 -99t-95.5 -129t-61 -153.5t-21.5 -171z M695 616v-332h-219v918h329q191 0 280.5 -68.5t89.5 -196.5q0 -91 -47.5 -159t-146.5 -100q24 -13 39 -33t31 -47l185 -314h-211q-46 0 -64 33l-148 270q-10 14 -23 21.5t-38 7.5h-57zM695 773h91q52 0 86 9t53 26t26 43t7 58t-6 56t-23 40t-47 23.5t-77 7.5h-110v-263z" />
-<glyph unicode="¯" horiz-adv-x="653" d="M20 1405h613v-162h-613v162z" />
-<glyph unicode="°" horiz-adv-x="822" d="M56 1150q0 73 27.5 137t75 111t112 74t139.5 27t139.5 -27t113 -74t76 -111t27.5 -137q0 -71 -27.5 -134.5t-76 -111t-113.5 -75t-139 -27.5q-75 0 -139.5 27.5t-112 75t-75 111t-27.5 134.5zM232 1148q0 -38 13.5 -71t37.5 -57t56.5 -37.5t70.5 -13.5t70.5 13.5 t56.5 37.5t37.5 57t13.5 71q0 39 -13.5 72t-37.5 58t-57 39t-70 14q-38 0 -70.5 -14t-56.5 -39t-37.5 -58t-13.5 -72z" />
-<glyph unicode="±" d="M694 1271v-363h399v-188h-399v-349h-205v349h-396v188h396v363h205zM93 269h1000v-187h-1000v187z" />
-<glyph unicode="²" horiz-adv-x="681" d="M358 1689q59 0 106 -17.5t79 -47.5t48.5 -70.5t16.5 -87.5q0 -42 -12.5 -76.5t-33.5 -66.5t-49 -61l-57 -61l-131 -133q29 8 56.5 12.5t50.5 4.5h132q29 0 45 -15t16 -41v-107h-554v58q0 17 6.5 36.5t22.5 36.5l214 211q23 23 43.5 47.5t35 49.5t23 50.5t8.5 48.5 q0 37 -20 60t-56 23q-34 0 -54.5 -17t-33.5 -48q-11 -18 -24 -27.5t-36 -9.5q-5 0 -11 0.5t-13 1.5l-101 15q17 118 92.5 174.5t190.5 56.5z" />
-<glyph unicode="³" horiz-adv-x="681" d="M369 1689q58 0 103 -17t77 -45t48 -63t16 -73q0 -65 -26.5 -109.5t-84.5 -68.5q61 -20 93 -57.5t32 -98.5q0 -63 -23.5 -109t-61.5 -76t-86 -44.5t-98 -14.5q-55 0 -99 11t-78.5 35t-60 63.5t-44.5 96.5l79 32q23 8 41 8q38 0 52 -29q6 -11 14 -23t20.5 -22t29 -16 t37.5 -6q46 0 70.5 25.5t24.5 61.5q0 28 -7 46t-24 29.5t-46 16t-72 4.5v119q43 0 71 6.5t44 18.5t22.5 29.5t6.5 38.5q0 38 -20 60t-60 22q-36 0 -56.5 -17t-32.5 -43q-9 -20 -21 -30t-33 -10q-11 0 -27 3l-93 15q8 58 32.5 102t60 72.5t82 42.5t98.5 14z" />
-<glyph unicode="´" horiz-adv-x="653" d="M681 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249q15 27 35.5 40.5t61.5 13.5h246z" />
-<glyph unicode="µ" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 85q-32 -32 -63 -54t-62.5 -35.5t-66 -20t-73.5 -6.5q-60 0 -109 18.5t-87 52.5q11 -45 14.5 -93t3.5 -90v-246h-125q-53 0 -82 27t-29 78v1289h253z" />
-<glyph unicode="¶" horiz-adv-x="1434" d="M1403 1481v-212h-219v-1483h-221v1483h-241v-1483h-221v859q-106 0 -192.5 33.5t-147.5 90t-94 132.5t-33 161q0 93 33 170t94 132t147 86t193 31h902z" />
-<glyph unicode="·" horiz-adv-x="572" d="M93 609q0 40 15 75.5t41 61.5t61 41t75 15q41 0 76 -15t61.5 -41t41.5 -61.5t15 -75.5t-15 -74t-41.5 -60t-61.5 -41t-76 -15q-40 0 -75 15t-61 41t-41 60t-15 74z" />
-<glyph unicode="¸" horiz-adv-x="653" d="M187 -232q7 0 15 -2.5l17.5 -5.5t21.5 -5t28 -2q34 0 51 13t17 31q0 30 -37 43t-114 23l46 151h158l-20 -70q91 -23 128 -61.5t37 -90.5q0 -34 -18 -61.5t-51 -47t-79 -30t-101 -10.5q-42 0 -78.5 6t-72.5 17l24 78q5 24 28 24z" />
-<glyph unicode="¹" horiz-adv-x="681" d="M165 1038h142v369l5 52l-79 -62q-16 -12 -34 -13q-15 0 -27.5 6.5t-17.5 14.5l-57 77l239 198h152v-642h118v-116h-441v116z" />
-<glyph unicode="º" horiz-adv-x="794" d="M399 1499q74 0 135.5 -22.5t105.5 -64t68 -101.5t24 -134q0 -76 -24 -137t-68 -103.5t-105.5 -65t-135.5 -22.5q-76 0 -137.5 22.5t-105.5 65t-69 103.5t-25 137q0 75 25 134.5t69 101t105.5 64t137.5 22.5zM399 996q69 0 102.5 43.5t33.5 135.5q0 91 -33.5 134 t-102.5 43q-73 0 -106 -43t-33 -134t33 -135t106 -44z" />
-<glyph unicode="»" horiz-adv-x="995" d="M269 129l-83 39q-20 9 -29.5 23.5t-9.5 31.5q0 20 14 43l141 242q16 29 33 43q-18 16 -33 43l-141 241q-13 23 -14 44q0 37 39 55l83 39l262 -406v-32zM606 129l-83 39q-20 9 -29.5 23.5t-9.5 31.5q0 20 14 43l141 242q16 29 33 43q-18 16 -33 43l-141 241q-13 23 -14 44 q0 37 39 55l83 39l262 -406v-32z" />
-<glyph unicode="¼" horiz-adv-x="1458" d="M466 73q-27 -42 -57 -57.5t-69 -15.5h-109l854 1398q24 39 55.5 61t78.5 22h107zM1352 289h96v-90q0 -13 -9 -23.5t-26 -10.5h-61v-165h-152v165h-296q-25 0 -38.5 10.5t-16.5 27.5l-15 78l343 478h175v-470zM145 840h143v368l5 53l-79 -63q-16 -12 -35 -12 q-15 0 -27.5 6t-17.5 14l-56 77l238 199h153v-642h118v-117h-442v117zM1200 461q0 24 1.5 52.5t5.5 58.5l-207 -283h200v172z" />
-<glyph unicode="½" horiz-adv-x="1458" d="M424 73q-27 -42 -57 -57.5t-69 -15.5h-109l854 1398q24 39 55.5 61t78.5 22h107zM1155 767q59 0 106 -17.5t79 -47t48.5 -70t16.5 -87.5q0 -42 -13 -77t-34 -66.5t-48 -61.5l-58 -60l-131 -134q29 8 56.5 13t51.5 5h132q29 0 44.5 -15.5t15.5 -40.5v-108h-554v58 q0 17 7 37t23 36l214 211q23 23 43.5 48t34.5 50t23 50t9 49q0 37 -20 60t-56 23q-34 0 -53.5 -16t-34.5 -50q-16 -37 -61 -37q-5 0 -10.5 0.5t-12.5 1.5l-102 16q17 118 93 174t191 56zM145 840h143v368l5 53l-79 -63q-16 -12 -35 -12q-15 0 -27.5 6t-17.5 14l-56 77 l238 199h153v-642h118v-117h-442v117z" />
-<glyph unicode="¾" horiz-adv-x="1459" d="M469 73q-27 -42 -57 -57.5t-69 -15.5h-109l855 1398q24 39 55.5 61t77.5 22h107zM1352 289h96v-90q0 -13 -9 -23.5t-26 -10.5h-61v-165h-152v165h-296q-25 0 -38.5 10.5t-16.5 27.5l-15 78l343 478h175v-470zM349 1490q58 0 103.5 -17t77 -44.5t48 -63t16.5 -73.5 q0 -65 -26.5 -109t-85.5 -69q61 -20 93 -57.5t32 -98.5q0 -63 -23.5 -108.5t-61.5 -76t-86 -44.5t-97 -14q-55 0 -99 10.5t-78.5 34.5t-60 63.5t-45.5 97.5l79 31q23 8 41 9q38 0 52 -29q6 -11 14.5 -23.5t20.5 -22t28.5 -16t38.5 -6.5q46 0 70.5 25.5t24.5 61.5 q0 28 -7 46.5t-24 29.5t-46.5 16t-72.5 5v118q43 0 71.5 7t44.5 18.5t22.5 29t6.5 39.5q0 38 -20 59.5t-60 21.5q-36 0 -57 -16t-32 -44q-10 -20 -22 -30t-32 -10q-11 0 -27 3l-93 16q8 58 32 101.5t60 72t82 42.5t98 14zM1200 461q0 24 1.5 52.5t5.5 58.5l-207 -283h200 v172z" />
-<glyph unicode="¿" horiz-adv-x="861" d="M840 -208q-36 -31 -77.5 -58t-89.5 -48t-104.5 -32.5t-122.5 -11.5q-89 0 -162 23.5t-125.5 67.5t-81 107t-28.5 143q0 78 22.5 132t57 92.5t74.5 64.5l77 51q36 24 62 47.5t31 56.5l23 148h173l18 -166q1 -5 1 -10v-10q0 -47 -22.5 -78.5t-56.5 -56.5t-73 -47t-72.5 -49 t-56 -63.5t-22.5 -89.5q0 -37 13.5 -66t38 -50t58.5 -32.5t74 -11.5q58 0 98.5 13.5t69 29t47.5 28.5t36 13q36 0 52 -31zM332 913q0 32 11.5 60.5t32.5 49t50 33t61 12.5t61 -12.5t49 -33t32.5 -49t12.5 -60.5q0 -33 -12.5 -61t-32.5 -48.5t-49 -32t-61 -11.5 q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61z" />
-<glyph unicode="À" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493l-27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM582 1834q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 1t-20 3.5 t-18.5 7.5t-20.5 13l-304 223h281z" />
-<glyph unicode="Á" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493l-27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM1121 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207 q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" />
-<glyph unicode="Â" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493l-27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM1101 1586h-191q-15 0 -33.5 4t-30.5 13l-103 68l-15 9l-16 -9l-103 -68 q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" />
-<glyph unicode="Ã" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493l-27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM854 1740q28 0 44.5 16t17.5 48h137q0 -51 -13 -93t-37.5 -71.5t-60.5 -46.5t-82 -17 q-37 0 -71.5 11t-65.5 25l-58 24q-27 11 -49 12q-28 0 -44 -17t-17 -50h-140q0 50 13.5 92.5t39 73.5t61.5 47.5t81 16.5q37 0 71.5 -11t66.5 -24l57 -25q27 -11 49 -11z" />
-<glyph unicode="Ä" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493l-27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM644 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5 t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM1086 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" />
-<glyph unicode="Å" horiz-adv-x="1454" d="M1451 0h-213q-36 0 -59 18t-33 44l-111 303h-613l-111 -303q-8 -24 -32 -43t-59 -19h-214l582 1481h281zM493 559h472l-181 493l-27 77.5t-29 96.5q-14 -52 -28 -97.5t-27 -78.5zM517 1723q0 44 17.5 80t46 61.5t66.5 40t80 14.5q44 0 82.5 -14.5t68.5 -40t47.5 -61.5 t17.5 -80q0 -43 -17.5 -78t-47.5 -60.5t-68.5 -39.5t-82.5 -14q-42 0 -80 14t-66.5 39.5t-46 60.5t-17.5 78zM638 1723q0 -40 24 -65.5t69 -25.5q41 0 65.5 25.5t24.5 65.5q0 43 -24.5 68t-65.5 25q-45 0 -69 -25t-24 -68z" />
-<glyph unicode="Æ" horiz-adv-x="1912" d="M1823 1262h-711l51 -411h521v-212h-495l51 -419h583v-220h-816l-45 365h-533l-145 -304q-13 -28 -40 -44.5t-64 -16.5h-209l753 1481h1099v-219zM523 559h415l-88 717q-16 -52 -34 -98t-36 -85z" />
-<glyph unicode="Ç" horiz-adv-x="1373" d="M647 -232q7 0 15 -2.5l17.5 -5.5t21.5 -5t28 -2q34 0 51 13t17 31q0 30 -37 43t-114 23l38 126q-144 15 -259 77t-195 161t-123.5 229.5t-43.5 283.5q0 167 55.5 306t156 239t240 156t308.5 56q165 0 288.5 -52.5t211.5 -139.5l-92 -128q-8 -12 -21 -21.5t-35 -9.5 q-24 0 -48.5 18.5t-62.5 40t-96 40t-147 18.5q-104 0 -191.5 -36.5t-150.5 -104t-98.5 -164.5t-35.5 -218q0 -125 35.5 -222t96 -163.5t142 -102t176.5 -35.5q56 0 101.5 6t84 19.5t72.5 34.5t68 52q10 9 21.5 14.5t24.5 5.5q23 0 39 -17l109 -118q-82 -102 -198.5 -160 t-274.5 -68l-13 -42q91 -23 128 -61.5t37 -90.5q0 -34 -18 -61.5t-50.5 -47t-78.5 -30t-102 -10.5q-42 0 -78 6t-72 17l23 78q6 24 29 24z" />
-<glyph unicode="È" horiz-adv-x="1172" d="M1083 1481v-219h-656v-411h517v-212h-517v-419h656v-220h-933v1481h933zM486 1834q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 1t-20 3.5t-18.5 7.5t-20.5 13l-304 223h281z" />
-<glyph unicode="É" horiz-adv-x="1172" d="M1083 1481v-219h-656v-411h517v-212h-517v-419h656v-220h-933v1481h933zM1025 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" />
-<glyph unicode="Ê" horiz-adv-x="1172" d="M1083 1481v-219h-656v-411h517v-212h-517v-419h656v-220h-933v1481h933zM1005 1586h-191q-15 0 -33.5 4t-30.5 13l-103 68l-15 9l-16 -9l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" />
-<glyph unicode="Ë" horiz-adv-x="1172" d="M1083 1481v-219h-656v-411h517v-212h-517v-419h656v-220h-933v1481h933zM548 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM990 1707 q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" />
-<glyph unicode="Ì" horiz-adv-x="643" d="M460 0h-277v1481h277v-1481zM181 1834q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 1t-20 3.5t-18.5 7.5t-20.5 13l-304 223h281z" />
-<glyph unicode="Í" horiz-adv-x="643" d="M460 0h-277v1481h277v-1481zM720 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" />
-<glyph unicode="Î" horiz-adv-x="643" d="M460 0h-277v1481h277v-1481zM699 1586h-191q-15 0 -33.5 4t-30.5 13l-103 68l-15 9l-16 -9l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" />
-<glyph unicode="Ï" horiz-adv-x="643" d="M460 0h-277v1481h277v-1481zM242 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM684 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10 q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" />
-<glyph unicode="Ð" horiz-adv-x="1618" d="M54 823h185v658h565q168 0 306 -55t236.5 -152.5t152.5 -234t54 -299.5t-54 -299t-152.5 -234t-236.5 -152.5t-306 -54.5h-565v667h-185v156zM1271 740q0 122 -32.5 219t-93 164t-147 103t-194.5 36h-288v-439h370v-156h-370v-448h288q109 0 195 36t146.5 103t93 163.5 t32.5 218.5z" />
-<glyph unicode="Ñ" horiz-adv-x="1548" d="M294 1481q18 0 30.5 -1.5t22 -6.5t19 -13.5t20.5 -22.5l777 -991q-4 36 -5.5 70.5t-1.5 64.5v900h243v-1481h-143q-33 0 -54 10t-42 37l-774 986q3 -33 4.5 -65t1.5 -59v-909h-242v1481h144zM917 1740q28 0 44.5 16t17.5 48h137q0 -51 -13 -93t-37.5 -71.5t-60.5 -46.5 t-82 -17q-37 0 -71.5 11t-65.5 25l-58 24q-27 11 -49 12q-28 0 -44 -17t-17 -50h-140q0 50 13.5 92.5t39 73.5t61.5 47.5t81 16.5q37 0 71.5 -11t66.5 -24l57 -25q27 -11 49 -11z" />
-<glyph unicode="Ò" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5zM676 1834q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 1t-20 3.5t-18.5 7.5t-20.5 13l-304 223h281z" />
-<glyph unicode="Ó" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5zM1215 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" />
-<glyph unicode="Ô" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5zM1196 1586h-191q-15 0 -33.5 4t-30.5 13l-103 68l-15 9l-16 -9l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" />
-<glyph unicode="Õ" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5zM949 1740q28 0 44.5 16t17.5 48h137q0 -51 -13 -93t-37.5 -71.5t-60.5 -46.5t-82 -17q-37 0 -71.5 11t-65.5 25l-58 24q-27 11 -49 12 q-28 0 -44 -17t-17 -50h-140q0 50 13.5 92.5t39 73.5t61.5 47.5t81 16.5q37 0 71.5 -11t66.5 -24l57 -25q27 -11 49 -11z" />
-<glyph unicode="Ö" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5t-306.5 56.5t-237.5 158t-153 240.5t-54 301q0 163 54 302t153 240t237.5 158t306.5 57t306.5 -57.5t236.5 -158t152.5 -239.5t54.5 -302zM1287 740q0 122 -32 219t-92.5 164.5t-147 103.5t-195.5 36 t-195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219t33 -218.5t94 -163.5t148 -103t195 -36q109 0 195.5 36t147 103t92.5 163.5t32 218.5zM739 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11 q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM1181 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" />
-<glyph unicode="×" d="M1058 1020l-333 -333l349 -348l-134 -132l-348 347l-349 -349l-134 132l350 350l-335 335l133 133l335 -335l332 333z" />
-<glyph unicode="Ø" horiz-adv-x="1637" d="M1570 740q0 -163 -54.5 -301.5t-152.5 -240t-236.5 -158t-306.5 -56.5q-103 0 -194 21.5t-171 62.5l-78 -108q-30 -41 -71.5 -57.5t-80.5 -16.5h-108l199 275q-118 102 -182.5 250.5t-64.5 328.5q0 163 54 302t153 240t237.5 158t306.5 57q113 0 211.5 -25.5t182.5 -74.5 l61 84q13 18 24.5 31.5t24 21t28 11t38.5 3.5h141l-183 -252q106 -102 164 -244t58 -312zM350 740q0 -118 30 -211t87 -160l603 829q-106 65 -250 65q-109 0 -195.5 -36t-147.5 -103.5t-94 -164.5t-33 -219zM1287 740q0 105 -24 191.5t-70 151.5l-594 -817q97 -47 221 -47 q109 0 195.5 36t147 103t92.5 163.5t32 218.5z" />
-<glyph unicode="Ù" horiz-adv-x="1490" d="M745 222q80 0 143 26.5t106.5 75t66.5 117t23 153.5v887h276v-887q0 -132 -42.5 -244t-122.5 -193.5t-193.5 -127t-256.5 -45.5q-142 0 -255.5 45.5t-193 127t-122 193.5t-42.5 244v887h276v-886q0 -85 23 -153.5t66 -117.5t105.5 -75.5t142.5 -26.5zM600 1834 q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 1t-20 3.5t-18.5 7.5t-20.5 13l-304 223h281z" />
-<glyph unicode="Ú" horiz-adv-x="1490" d="M745 222q80 0 143 26.5t106.5 75t66.5 117t23 153.5v887h276v-887q0 -132 -42.5 -244t-122.5 -193.5t-193.5 -127t-256.5 -45.5q-142 0 -255.5 45.5t-193 127t-122 193.5t-42.5 244v887h276v-886q0 -85 23 -153.5t66 -117.5t105.5 -75.5t142.5 -26.5zM1139 1834 l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" />
-<glyph unicode="Û" horiz-adv-x="1490" d="M745 222q80 0 143 26.5t106.5 75t66.5 117t23 153.5v887h276v-887q0 -132 -42.5 -244t-122.5 -193.5t-193.5 -127t-256.5 -45.5q-142 0 -255.5 45.5t-193 127t-122 193.5t-42.5 244v887h276v-886q0 -85 23 -153.5t66 -117.5t105.5 -75.5t142.5 -26.5zM1119 1586h-191 q-15 0 -33.5 4t-30.5 13l-103 68l-15 9l-16 -9l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" />
-<glyph unicode="Ü" horiz-adv-x="1490" d="M745 222q80 0 143 26.5t106.5 75t66.5 117t23 153.5v887h276v-887q0 -132 -42.5 -244t-122.5 -193.5t-193.5 -127t-256.5 -45.5q-142 0 -255.5 45.5t-193 127t-122 193.5t-42.5 244v887h276v-886q0 -85 23 -153.5t66 -117.5t105.5 -75.5t142.5 -26.5zM662 1707 q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM1104 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5 t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" />
-<glyph unicode="Ý" horiz-adv-x="1340" d="M808 575v-575h-276v575l-539 906h243q36 0 56.5 -17.5t35.5 -44.5l271 -494q24 -44 41 -83.5l32 -77.5q13 39 30 78.5t40 82.5l270 494q11 23 33.5 42.5t57.5 19.5h244zM1066 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5 t22.5 13t25.5 6t35 1.5h281z" />
-<glyph unicode="Þ" horiz-adv-x="1280" d="M434 267v-267h-275v1481h275v-254h207q148 0 257 -35t179.5 -97.5t104 -149.5t33.5 -190q0 -108 -35.5 -197.5t-107.5 -154t-179.5 -100.5t-251.5 -36h-207zM434 482h207q76 0 132 19t93 54.5t55.5 86t18.5 113.5q0 59 -18.5 107t-55.5 82t-93 52t-132 18h-207v-532z" />
-<glyph unicode="ß" horiz-adv-x="1300" d="M717 1506q120 0 205 -34.5t138 -87t77.5 -113t24.5 -112.5q0 -59 -20 -101t-50 -74t-65 -55l-65 -45q-30 -22 -50 -45t-20 -53q0 -34 25.5 -58.5t63.5 -47.5l83 -50q45 -27 83 -65.5t63.5 -92.5t25.5 -133q0 -87 -32.5 -153t-87.5 -111t-128.5 -68t-154.5 -23 q-47 0 -93.5 9.5t-89 27t-80.5 41t-68 51.5l59 96q10 17 25.5 26.5t39.5 9.5t45 -14l47 -28q26 -15 58.5 -28.5t78.5 -13.5q65 0 104.5 38.5t39.5 99.5q0 48 -27.5 80t-69 57t-89.5 49t-89.5 56t-69 78.5t-27.5 116.5q0 58 21.5 100.5t53.5 75t70 58.5t70 54t54 59.5 t22 74.5q0 34 -12 64t-37.5 52t-66 35.5t-96.5 13.5q-134 0 -203.5 -82.5t-69.5 -241.5v-999h-253v1008q0 109 37.5 199.5t106.5 157.5t168.5 104t224.5 37z" />
-<glyph unicode="à" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32l-56 -32 q-26 -14 -56 -15q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M468 1497q42 0 61.5 -14t35.5 -40l146 -249h-144q-29 0 -47 7.5t-36 28.5l-253 267h237z" />
-<glyph unicode="á" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32l-56 -32 q-26 -14 -56 -15q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M913 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249q15 27 35.5 40.5t61.5 13.5h246z" />
-<glyph unicode="â" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32l-56 -32 q-26 -14 -56 -15q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M912 1196h-169q-32 0 -51 18l-108 98l-10 10q-6 5 -11 12q-5 -7 -11 -12l-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" />
-<glyph unicode="ã" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32l-56 -32 q-26 -14 -56 -15q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M668 1392q31 0 48.5 16.5t17.5 60.5h153q0 -57 -15.5 -103.5t-43.5 -80t-66 -51t-85 -17.5q-37 0 -68.5 13t-59.5 28l-51 29q-24 13 -45 13q-30 0 -46.5 -17.5t-16.5 -60.5h-157q0 57 16 103.5t44.5 80t67 52t83.5 18.5q37 0 69 -13.5t60 -28.5l51 -29q24 -13 44 -13z" />
-<glyph unicode="ä" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32l-56 -32 q-26 -14 -56 -15q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M508 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM891 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5 t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5t30.5 -45.5t11 -56z" />
-<glyph unicode="å" horiz-adv-x="1072" d="M958 0h-113q-36 0 -56.5 11t-30.5 43l-23 75q-40 -36 -78.5 -63t-79 -45.5t-87 -27.5t-102.5 -9q-67 0 -123 17.5t-96.5 53.5t-63 89.5t-22.5 123.5q0 59 31 117t104 105t193.5 77.5t300.5 34.5v62q0 105 -44.5 155.5t-129.5 50.5q-61 0 -102.5 -14t-71.5 -32l-56 -32 q-26 -14 -56 -15q-26 0 -44.5 13.5t-29.5 32.5l-46 81q181 166 437 166q92 0 164.5 -30t122.5 -84t76 -128.5t26 -163.5v-664zM467 158q39 0 71.5 7t62 21.5t56.5 35.5t55 49v178q-111 -5 -185 -19t-119.5 -35.5t-64 -50.5t-18.5 -62q0 -67 39.5 -95.5t102.5 -28.5z M331 1357q0 47 18.5 86t50 66.5t72.5 43t86 15.5q46 0 88 -15.5t73.5 -43t50.5 -66.5t19 -86q0 -46 -19 -84t-50.5 -65t-73.5 -42t-88 -15q-45 0 -86 15t-72.5 42t-50 65t-18.5 84zM469 1357q0 -39 24 -65t69 -26q41 0 65.5 26t24.5 65q0 43 -24.5 68t-65.5 25 q-45 0 -69 -25t-24 -68z" />
-<glyph unicode="æ" horiz-adv-x="1690" d="M1202 1067q89 0 166 -34.5t132.5 -99t87.5 -156.5t32 -207q0 -29 -2.5 -47.5t-8.5 -29.5t-17 -15.5t-28 -4.5h-613q14 -151 85.5 -222t184.5 -71q70 0 113 13.5t72 30t48.5 29.5t40.5 13q18 0 30.5 -6t20.5 -17l68 -86q-42 -49 -92.5 -82.5t-105 -53.5t-111 -28 t-109.5 -8q-112 0 -208.5 50t-159.5 156q-31 -55 -75.5 -94t-99 -64.5t-116 -37t-123.5 -11.5q-77 0 -138 19.5t-104 56.5t-66 93t-23 129q0 59 31 119t104 109t193.5 81.5t300.5 36.5v36q0 105 -44.5 159.5t-129.5 54.5q-61 0 -102.5 -16t-71.5 -35l-56 -34 q-26 -16 -56 -16q-26 0 -44.5 13.5t-29.5 32.5l-46 81q91 83 190 124.5t220 41.5q119 0 194.5 -45t115.5 -124q58 77 145 121.5t205 44.5zM712 473q-111 -5 -185 -21t-119.5 -39.5t-64 -54t-18.5 -64.5q0 -71 39.5 -103.5t109.5 -32.5q50 0 93.5 15t75.5 47.5t50.5 83.5 t18.5 122v47zM1191 886q-108 0 -166.5 -68t-72.5 -192h444q0 50 -12.5 97t-37.5 83.5t-64 58t-91 21.5z" />
-<glyph unicode="ç" horiz-adv-x="976" d="M415 -232q7 0 14.5 -2.5t17.5 -5.5t21.5 -5t28.5 -2q34 0 50.5 13t16.5 31q0 30 -37 43t-113 23l39 129q-82 14 -153.5 56.5t-123.5 110.5t-81.5 161t-29.5 207q0 116 33 215t97.5 171t160 113t218.5 41q118 0 206.5 -38t159.5 -108l-67 -93q-11 -14 -21.5 -22t-31.5 -8 q-19 0 -37.5 11.5l-44 26.5t-61 26.5t-87.5 11.5q-67 0 -117 -24t-83.5 -69t-49.5 -109t-16 -145q0 -84 17.5 -149.5t51.5 -110t82 -67.5t109 -23q60 0 97.5 15t63 33l44.5 32.5t42 14.5q28 0 47 -23l72 -92q-71 -83 -159 -121.5t-182 -46.5l-12 -45q91 -23 128 -61.5 t37 -90.5q0 -34 -18 -61.5t-51 -47t-79 -30t-101 -10.5q-42 0 -78.5 6t-72.5 17l24 78q6 24 29 24z" />
-<glyph unicode="è" horiz-adv-x="1094" d="M569 1067q99 0 183 -31.5t144 -92.5t94 -149.5t34 -202.5q0 -29 -2.5 -48t-9 -29.5t-18 -15t-28.5 -4.5h-650q11 -162 87 -238t201 -76q61 0 106 14.5t78 32l58 31.5t49 14q15 0 26.5 -6t19.5 -17l74 -92q-42 -49 -94.5 -82.5t-109 -53.5t-115.5 -28t-114 -8 q-110 0 -204 36t-164 107.5t-109.5 176.5t-39.5 243q0 108 34.5 202.5t99.5 164.5t158.5 111t211.5 41zM574 886q-111 0 -173 -62.5t-79 -177.5h475q0 49 -13.5 92.5t-41 76.5t-70 52t-98.5 19zM485 1497q42 0 61.5 -14t35.5 -40l146 -249h-144q-29 0 -47 7.5t-36 28.5 l-253 267h237z" />
-<glyph unicode="é" horiz-adv-x="1094" d="M569 1067q99 0 183 -31.5t144 -92.5t94 -149.5t34 -202.5q0 -29 -2.5 -48t-9 -29.5t-18 -15t-28.5 -4.5h-650q11 -162 87 -238t201 -76q61 0 106 14.5t78 32l58 31.5t49 14q15 0 26.5 -6t19.5 -17l74 -92q-42 -49 -94.5 -82.5t-109 -53.5t-115.5 -28t-114 -8 q-110 0 -204 36t-164 107.5t-109.5 176.5t-39.5 243q0 108 34.5 202.5t99.5 164.5t158.5 111t211.5 41zM574 886q-111 0 -173 -62.5t-79 -177.5h475q0 49 -13.5 92.5t-41 76.5t-70 52t-98.5 19zM930 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249q15 27 35.5 40.5 t61.5 13.5h246z" />
-<glyph unicode="ê" horiz-adv-x="1094" d="M569 1067q99 0 183 -31.5t144 -92.5t94 -149.5t34 -202.5q0 -29 -2.5 -48t-9 -29.5t-18 -15t-28.5 -4.5h-650q11 -162 87 -238t201 -76q61 0 106 14.5t78 32l58 31.5t49 14q15 0 26.5 -6t19.5 -17l74 -92q-42 -49 -94.5 -82.5t-109 -53.5t-115.5 -28t-114 -8 q-110 0 -204 36t-164 107.5t-109.5 176.5t-39.5 243q0 108 34.5 202.5t99.5 164.5t158.5 111t211.5 41zM574 886q-111 0 -173 -62.5t-79 -177.5h475q0 49 -13.5 92.5t-41 76.5t-70 52t-98.5 19zM929 1196h-169q-32 0 -51 18l-108 98l-10 10q-6 5 -11 12q-5 -7 -11 -12 l-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" />
-<glyph unicode="ë" horiz-adv-x="1094" d="M569 1067q99 0 183 -31.5t144 -92.5t94 -149.5t34 -202.5q0 -29 -2.5 -48t-9 -29.5t-18 -15t-28.5 -4.5h-650q11 -162 87 -238t201 -76q61 0 106 14.5t78 32l58 31.5t49 14q15 0 26.5 -6t19.5 -17l74 -92q-42 -49 -94.5 -82.5t-109 -53.5t-115.5 -28t-114 -8 q-110 0 -204 36t-164 107.5t-109.5 176.5t-39.5 243q0 108 34.5 202.5t99.5 164.5t158.5 111t211.5 41zM574 886q-111 0 -173 -62.5t-79 -177.5h475q0 49 -13.5 92.5t-41 76.5t-70 52t-98.5 19zM525 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5 t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM908 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5 t30.5 -45.5t11 -56z" />
-<glyph unicode="ì" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252zM195 1497q42 0 61.5 -14t35.5 -40l146 -249h-144q-29 0 -47 7.5t-36 28.5l-253 267h237z" />
-<glyph unicode="í" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252zM640 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249q15 27 35.5 40.5t61.5 13.5h246z" />
-<glyph unicode="î" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252zM639 1196h-169q-32 0 -51 18l-108 98l-10 10q-6 5 -11 12q-5 -7 -11 -12l-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" />
-<glyph unicode="ï" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252zM235 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM618 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29 t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5t30.5 -45.5t11 -56z" />
-<glyph unicode="ð" horiz-adv-x="1163" d="M395 1087q-10 16 -10 34q0 31 33 49l77 44q-33 13 -70 25l-76 23q-26 7 -42.5 25.5t-16.5 48.5q0 16 8 43l30 87q103 -17 199 -49t181 -82l180 117l50 -82q10 -17 10 -32q0 -14 -7.5 -26.5t-21.5 -20.5l-83 -47q58 -52 105 -116t81 -141t52 -168t18 -196 q0 -151 -34.5 -269t-101 -200.5t-165 -125.5t-225.5 -43q-106 0 -197 34t-158 98.5t-105 157.5t-38 210q0 94 33 179.5t94 149.5t147 101.5t193 37.5q97 0 178 -35t143 -103q-22 109 -73 187t-138 137l-203 -131zM572 177q59 0 109.5 21.5t87.5 69t59 123.5t25 184 q-15 38 -39 72t-57 59t-75.5 40t-95.5 15q-66 0 -115.5 -21.5t-83.5 -59.5t-51.5 -88t-17.5 -109q0 -75 20 -131.5t54.5 -95.5t80.5 -59t99 -20z" />
-<glyph unicode="ñ" horiz-adv-x="1164" d="M135 0v1051h155q49 0 64 -46l18 -83q32 33 67 59.5t74.5 46t84.5 29.5t98 10q86 0 152.5 -29t111.5 -82t68 -126t23 -161v-669h-253v669q0 96 -44.5 148.5t-133.5 52.5q-66 0 -123.5 -29.5t-108.5 -80.5v-760h-253zM701 1392q31 0 48.5 16.5t17.5 60.5h153 q0 -57 -15.5 -103.5t-43.5 -80t-66 -51t-85 -17.5q-37 0 -68.5 13t-59.5 28l-51 29q-24 13 -45 13q-30 0 -46.5 -17.5t-16.5 -60.5h-157q0 57 16 103.5t44.5 80t67 52t83.5 18.5q37 0 69 -13.5t60 -28.5l51 -29q24 -13 44 -13z" />
-<glyph unicode="ò" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5zM494 1497q42 0 61.5 -14t35.5 -40l146 -249h-144q-29 0 -47 7.5t-36 28.5l-253 267h237z" />
-<glyph unicode="ó" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5zM939 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249q15 27 35.5 40.5t61.5 13.5h246z" />
-<glyph unicode="ô" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5zM938 1196h-169q-32 0 -51 18l-108 98l-10 10q-6 5 -11 12q-5 -7 -11 -12l-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" />
-<glyph unicode="õ" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5zM694 1392q31 0 48.5 16.5t17.5 60.5h153q0 -57 -15.5 -103.5t-43.5 -80t-66 -51t-85 -17.5q-37 0 -68.5 13t-59.5 28l-51 29q-24 13 -45 13q-30 0 -46.5 -17.5t-16.5 -60.5h-157q0 57 16 103.5t44.5 80 t67 52t83.5 18.5q37 0 69 -13.5t60 -28.5l51 -29q24 -13 44 -13z" />
-<glyph unicode="ö" horiz-adv-x="1164" d="M584 1067q118 0 213.5 -38t163 -107.5t104.5 -170t37 -224.5q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-118 0 -214.5 37.5t-164.5 108.5t-105.5 171t-37.5 225q0 124 37.5 224.5t105.5 170t164.5 107.5t214.5 38zM584 179q131 0 194 88t63 258t-63 259 t-194 89q-133 0 -196.5 -89.5t-63.5 -258.5t63.5 -257.5t196.5 -88.5zM534 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM917 1323 q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5t30.5 -45.5t11 -56z" />
-<glyph unicode="÷" d="M93 781h1000v-187h-1000v187zM437 1052q0 32 12 60.5t32.5 49t49 32.5t61.5 12q32 0 60.5 -12t49.5 -32.5t33.5 -49.5t12.5 -60q0 -33 -12.5 -61t-33.5 -48.5t-49.5 -32.5t-60.5 -12q-33 0 -61.5 12t-49 32.5t-32.5 48.5t-12 61zM437 323q0 32 12 60.5t32.5 49t49 32.5 t61.5 12q32 0 60.5 -12t49.5 -32.5t33.5 -49.5t12.5 -60q0 -33 -12.5 -61.5t-33.5 -48.5t-49.5 -32t-60.5 -12q-33 0 -61.5 12t-49 32t-32.5 48.5t-12 61.5z" />
-<glyph unicode="ø" horiz-adv-x="1164" d="M966 914q66 -71 101 -168t35 -219q0 -125 -37 -225t-104.5 -171t-163.5 -108.5t-213 -37.5q-74 0 -139 14.5t-121 43.5l-35 -48q-30 -40 -71.5 -57t-80.5 -17h-93l158 214q-68 71 -104 169.5t-36 222.5t37.5 224.5t105.5 170t164.5 107.5t214.5 38q74 0 139 -15.5 t121 -43.5l57 76q13 18 24.5 31t24.5 21.5t28 12t38 3.5h125zM307 525q0 -122 33 -201l385 522q-57 35 -141 35q-134 0 -205.5 -93t-71.5 -263zM584 171q131 0 202 92t71 262q0 60 -8 109.5t-24 88.5l-383 -519q57 -33 142 -33z" />
-<glyph unicode="ù" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 84q-33 -33 -68 -60t-74.5 -46t-85 -29.5t-97.5 -10.5q-86 0 -152 29t-111 82t-68 126.5t-23 161.5v668h253zM489 1497q42 0 61.5 -14t35.5 -40l146 -249h-144 q-29 0 -47 7.5t-36 28.5l-253 267h237z" />
-<glyph unicode="ú" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 84q-33 -33 -68 -60t-74.5 -46t-85 -29.5t-97.5 -10.5q-86 0 -152 29t-111 82t-68 126.5t-23 161.5v668h253zM934 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151 l145 249q15 27 35.5 40.5t61.5 13.5h246z" />
-<glyph unicode="û" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 84q-33 -33 -68 -60t-74.5 -46t-85 -29.5t-97.5 -10.5q-86 0 -152 29t-111 82t-68 126.5t-23 161.5v668h253zM933 1196h-169q-32 0 -51 18l-108 98l-10 10 q-6 5 -11 12q-5 -7 -11 -12l-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" />
-<glyph unicode="ü" horiz-adv-x="1164" d="M367 1051v-668q0 -96 44.5 -149t133.5 -53q66 0 123 29.5t108 80.5v760h253v-1051h-155q-49 0 -64 46l-17 84q-33 -33 -68 -60t-74.5 -46t-85 -29.5t-97.5 -10.5q-86 0 -152 29t-111 82t-68 126.5t-23 161.5v668h253zM529 1323q0 -29 -11 -54t-31 -43.5t-46 -29 t-55 -10.5q-28 0 -53 10.5t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM912 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5 t54.5 11t55 -11t45.5 -30.5t30.5 -45.5t11 -56z" />
-<glyph unicode="ý" horiz-adv-x="1092" d="M508 -289q-11 -27 -29 -40.5t-55 -13.5h-188l196 421l-425 973h221q31 0 47.5 -14.5t24.5 -32.5l224 -545q11 -27 19.5 -55.5t14.5 -57.5q8 30 18 57.5l21 56.5l211 544q8 20 27 33.5t43 13.5h202zM921 1497l-253 -267q-19 -20 -37 -28t-47 -8h-151l145 249 q15 27 35.5 40.5t61.5 13.5h246z" />
-<glyph unicode="þ" horiz-adv-x="1158" d="M135 -343v1865h253v-600q62 67 141 106t185 39q86 0 157 -35.5t123 -103t80 -166.5t28 -228q0 -118 -32 -218.5t-90.5 -174t-142 -115t-187.5 -41.5q-45 0 -83 8t-69.5 24t-58 38t-51.5 49v-447h-253zM627 870q-79 0 -135 -33t-104 -94v-471q43 -53 93.5 -74t109.5 -21 q57 0 103.5 21.5t79 65.5t50 111t17.5 159t-15 156t-42.5 104t-67 58t-89.5 18z" />
-<glyph unicode="ÿ" horiz-adv-x="1092" d="M508 -289q-11 -27 -29 -40.5t-55 -13.5h-188l196 421l-425 973h221q31 0 47.5 -14.5t24.5 -32.5l224 -545q11 -27 19.5 -55.5t14.5 -57.5q8 30 18 57.5l21 56.5l211 544q8 20 27 33.5t43 13.5h202zM516 1323q0 -29 -11 -54t-31 -43.5t-46 -29t-55 -10.5q-28 0 -53 10.5 t-44.5 29t-30.5 43.5t-11 54q0 30 11 56t30.5 45.5t44.5 30.5t53 11q29 0 55 -11t46 -30.5t31 -45.5t11 -56zM899 1323q0 -29 -11 -54t-30.5 -43.5t-45.5 -29t-55 -10.5t-54.5 10.5t-44.5 29t-30 43.5t-11 54q0 30 11 56t30 45.5t44.5 30.5t54.5 11t55 -11t45.5 -30.5 t30.5 -45.5t11 -56z" />
-<glyph unicode="ı" horiz-adv-x="555" d="M404 1051v-1051h-252v1051h252z" />
-<glyph unicode="Ł" horiz-adv-x="1127" d="M495 891l366 183v-184q0 -38 -34 -55l-332 -173v-435h592v-227h-868v541l-184 -92v189q0 33 32 49l152 79v715h276v-590z" />
-<glyph unicode="ł" horiz-adv-x="694" d="M474 1522v-571l167 68v-146q0 -42 -35 -55l-132 -56v-762h-253v673l-168 -68v150q0 36 32 49l136 57v661h253z" />
-<glyph unicode="Œ" horiz-adv-x="2214" d="M2125 1481v-219h-657v-411h519v-212h-519v-419h657v-220h-901v189q-89 -96 -209.5 -150t-270.5 -54q-152 0 -276 56.5t-213 157.5t-137.5 240t-48.5 301q0 163 48.5 302t137.5 240t213.5 158t275.5 57q148 0 269.5 -54t210.5 -152v190h901zM1192 740q0 122 -28.5 220 t-83 167t-132.5 106t-175 37q-98 0 -177 -37t-133 -106t-83.5 -167t-29.5 -220t29.5 -219.5t83.5 -166t133 -105.5t177 -37q97 0 175 37t132.5 105.5t83 166t28.5 219.5z" />
-<glyph unicode="œ" horiz-adv-x="1790" d="M1303 1067q89 0 165.5 -34.5t132.5 -99t87.5 -156.5t31.5 -207q0 -29 -2.5 -47.5t-8.5 -29.5t-17 -15.5t-28 -4.5h-612q14 -151 85 -222t184 -71q57 0 98 14.5t72 31.5l56 32q25 14 48 14q27 0 45 -23l74 -92q-42 -49 -92 -82.5t-105 -53.5t-111 -28t-110 -8 q-111 0 -207.5 49.5t-158.5 155.5q-61 -99 -160 -152t-230 -53q-104 0 -192 37.5t-151.5 108.5t-99 171t-35.5 225q0 124 36 224.5t100 170t153.5 107.5t197.5 38q127 0 222.5 -52.5t156.5 -150.5q56 92 150.5 147.5t224.5 55.5zM563 179q121 0 179.5 88t58.5 258t-58.5 259 t-179.5 89q-123 0 -181 -89.5t-58 -258.5q0 -170 57.5 -258t181.5 -88zM1291 886q-108 0 -166.5 -68t-71.5 -192h443q0 50 -12.5 97t-37.5 83.5t-64 58t-91 21.5z" />
-<glyph unicode="Š" horiz-adv-x="1098" d="M943 1211q-11 -23 -26 -32t-35 -9t-46 16t-61 35.5t-81.5 35.5t-109.5 16q-57 0 -100 -14t-72 -38.5t-43.5 -59t-14.5 -75.5q0 -52 29.5 -86.5t77.5 -59.5t109 -44l126 -41q64 -22 125.5 -51.5t109.5 -74t77 -109t29 -156.5q0 -100 -34 -188t-100 -153t-161.5 -102 t-218.5 -37q-71 0 -139.5 13.5t-131.5 39t-117.5 61.5t-97.5 80l80 132q11 14 27 24t35 10q26 0 55.5 -21t70 -46.5t95.5 -46.5t131 -21q118 0 182.5 56t64.5 160q0 58 -29 95t-77 62t-109.5 42.5t-125 38t-125 49t-109.5 75t-77.5 115.5t-29.5 170q0 81 32.5 158t94.5 136 t152 95t206 36q131 0 241.5 -41t188.5 -115zM222 1810h191q15 0 34 -4.5t30 -11.5l103 -69l8 -4l8 -6l7 6q4 3 8 4l103 69q11 7 30 11.5t34 4.5h191l-247 -224h-252z" />
-<glyph unicode="š" horiz-adv-x="894" d="M759 846q-10 -16 -21.5 -23t-28.5 -7q-18 0 -40 10l-48 23q-28 13 -63.5 23.5t-83.5 10.5q-75 0 -118 -32t-43 -83q0 -34 22 -57t58.5 -40.5t82.5 -31t94 -30t94.5 -37.5t82.5 -53.5t58 -77.5t22 -108q0 -76 -27.5 -140t-80.5 -110.5t-131.5 -72.5t-179.5 -26 q-54 0 -106 9.5t-99.5 27t-88 41t-71.5 51.5l58 96q11 17 26.5 26.5t39.5 9.5t44.5 -13.5t48.5 -29t65 -28.5t95 -13q45 0 77 10.5t53 28t31 40.5t10 48q0 37 -22 60.5t-58.5 41t-83 31t-95 30t-95.5 38.5t-83 56t-58 83t-22 118q0 65 25.5 123.5t75 102t124 69.5t171.5 26 q109 0 198 -36t148 -94zM589 1196h-237l-235 285h175q15 0 29 -5.5t23 -12.5l108 -98q9 -8 22 -24q5 7 11 13l11 11l108 98q8 7 22.5 12.5t28.5 5.5h169z" />
-<glyph unicode="Ÿ" horiz-adv-x="1340" d="M808 575v-575h-276v575l-539 906h243q36 0 56.5 -17.5t35.5 -44.5l271 -494q24 -44 41 -83.5l32 -77.5q13 39 30 78.5t40 82.5l270 494q11 23 33.5 42.5t57.5 19.5h244zM589 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43 t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM1031 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" />
-<glyph unicode="Ž" horiz-adv-x="1263" d="M1207 1481v-102q0 -47 -26 -86l-760 -1073h768v-220h-1126v109q0 20 7.5 39t18.5 35l762 1079h-739v219h1095zM290 1809h191q15 0 34 -4.5t30 -11.5l103 -69l8 -4l8 -6l7 6q4 3 8 4l103 69q11 7 30 11.5t34 4.5h191l-247 -224h-252z" />
-<glyph unicode="ž" horiz-adv-x="961" d="M895 946q0 -27 -9.5 -52t-23.5 -42l-500 -657h519v-195h-812v105q0 17 8 41.5t25 46.5l504 664h-508v194h797v-105zM628 1196h-237l-235 285h175q15 0 29 -5.5t23 -12.5l108 -98q9 -8 22 -24q5 7 11 13l11 11l108 98q8 7 22.5 12.5t28.5 5.5h169z" />
-<glyph unicode="ƒ" d="M723 763l-85 -705q-13 -109 -51.5 -186.5t-104.5 -127.5t-161 -73.5t-221 -23.5v132q0 78 81 78q41 0 76 11t61.5 35.5t44 64.5t24.5 98l85 692l-126 18q-57 12 -57 64v103h206l18 152q26 205 156 308t382 103v-138q0 -40 -19 -56t-61 -16t-77.5 -11t-63 -35.5t-46 -64.5 t-25.5 -98l-20 -144h301v-180h-317z" />
-<glyph unicode="ˆ" horiz-adv-x="653" d="M680 1196h-169q-32 0 -51 18l-108 98l-10 10q-6 5 -11 12q-5 -7 -11 -12l-11 -10l-109 -98q-8 -7 -22 -12.5t-30 -5.5h-175l235 285h237z" />
-<glyph unicode="ˇ" horiz-adv-x="653" d="M445 1196h-237l-235 285h175q15 0 29 -5.5t23 -12.5l108 -98q9 -8 22 -24q5 7 11 13l11 11l108 98q8 7 22.5 12.5t28.5 5.5h169z" />
-<glyph unicode="ˉ" horiz-adv-x="653" d="M20 1405h613v-162h-613v162z" />
-<glyph unicode="˘" horiz-adv-x="653" d="M327 1189q-88 0 -147 23t-95.5 63t-52 93t-15.5 113h178q0 -31 5.5 -55.5t20.5 -41.5t40.5 -26t65.5 -9t65.5 9t40 26t20.5 41.5t6 55.5h177q0 -59 -15.5 -112.5t-52 -93.5t-95.5 -63t-146 -23z" />
-<glyph unicode="˙" horiz-adv-x="653" d="M489 1361q0 -33 -13 -62t-35 -50.5t-52.5 -34.5t-63.5 -13t-62 13t-50.5 34.5t-34 50.5t-12.5 62q0 34 12.5 63t34 51t50.5 35t62 13q34 0 64 -13t52 -35t35 -51t13 -63z" />
-<glyph unicode="˚" horiz-adv-x="653" d="M98 1357q0 47 18.5 86t50 66.5t72.5 43t86 15.5q46 0 88 -15.5t73.5 -43t50.5 -66.5t19 -86q0 -46 -19 -84t-50.5 -65t-73.5 -42t-88 -15q-45 0 -86 15t-72.5 42t-50 65t-18.5 84zM236 1357q0 -39 24 -65t69 -26q41 0 65.5 26t24.5 65q0 43 -24.5 68t-65.5 25 q-45 0 -69 -25t-24 -68z" />
-<glyph unicode="˛" horiz-adv-x="653" d="M472 -191q18 0 24 -17l39 -93q-34 -23 -85 -37.5t-107 -14.5q-100 0 -154.5 42t-54.5 108q0 60 43 116t123 99l131 -12q-20 -11 -39.5 -25.5t-35 -32.5t-24.5 -38.5t-9 -42.5q0 -31 19 -49t54 -18q19 0 31.5 2t20.5 5t13.5 5.5t10.5 2.5z" />
-<glyph unicode="˜" horiz-adv-x="653" d="M436 1392q31 0 48.5 16.5t17.5 60.5h153q0 -57 -15.5 -103.5t-43.5 -80t-66 -51t-85 -17.5q-37 0 -68.5 13t-59.5 28l-51 29q-24 13 -45 13q-30 0 -46.5 -17.5t-16.5 -60.5h-157q0 57 16 103.5t44.5 80t67 52t83.5 18.5q37 0 69 -13.5t60 -28.5l51 -29q24 -13 44 -13z " />
-<glyph unicode="˝" horiz-adv-x="653" d="M462 1497l-204 -267q-16 -20 -35.5 -28t-48.5 -8h-103l129 249q14 27 35 40.5t62 13.5h165zM819 1497l-258 -267q-19 -19 -36.5 -27.5t-47.5 -8.5h-119l182 249q9 13 17.5 23t19.5 17t25 10.5t35 3.5h182z" />
-<glyph unicode="π" horiz-adv-x="1318" d="M1281 1051v-101q0 -33 -20 -56.5t-59 -23.5h-109v-870h-253v870h-347v-598q0 -65 -16 -117.5t-50.5 -90t-88.5 -58t-131 -20.5q-37 0 -77.5 7t-76.5 26l7 107q3 20 16 30.5t54 10.5q62 0 86 25t24 83v595h-184v91q0 15 6.5 31t18.5 28.5t29.5 21.5t40.5 9h1130z" />
-<glyph unicode=" " horiz-adv-x="959" />
-<glyph unicode=" " horiz-adv-x="1918" />
-<glyph unicode=" " horiz-adv-x="959" />
-<glyph unicode=" " horiz-adv-x="1918" />
-<glyph unicode=" " horiz-adv-x="638" />
-<glyph unicode=" " horiz-adv-x="479" />
-<glyph unicode=" " horiz-adv-x="319" />
-<glyph unicode=" " horiz-adv-x="319" />
-<glyph unicode=" " horiz-adv-x="239" />
-<glyph unicode=" " horiz-adv-x="382" />
-<glyph unicode=" " horiz-adv-x="106" />
-<glyph unicode="‐" horiz-adv-x="735" d="M102 724h531v-211h-531v211z" />
-<glyph unicode="‑" horiz-adv-x="735" d="M102 724h531v-211h-531v211z" />
-<glyph unicode="‒" horiz-adv-x="735" d="M102 724h531v-211h-531v211z" />
-<glyph unicode="–" horiz-adv-x="1164" d="M167 703h830v-179h-830v179z" />
-<glyph unicode="—" horiz-adv-x="1724" d="M167 703h1389v-179h-1389v179z" />
-<glyph unicode="‘" horiz-adv-x="460" d="M170 1000q-70 114 -70 230q0 102 52 196t150 171l79 -48q10 -6 14 -14.5t4 -16.5q0 -9 -4 -17.5t-9 -14.5q-13 -15 -28 -35.5t-27.5 -45t-20.5 -53t-8 -61.5q0 -35 11.5 -74t37.5 -82q9 -14 9 -29q0 -33 -36 -46z" />
-<glyph unicode="’" horiz-adv-x="460" d="M316 1569q36 -57 53 -114.5t17 -115.5q0 -102 -51.5 -195t-149.5 -172l-79 48q-10 6 -14 14.5t-4 17.5q0 19 13 32q13 15 28 35.5t27.5 44.5t20 52.5t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 27q0 33 38 46z" />
-<glyph unicode="‚" horiz-adv-x="460" d="M316 298q36 -57 53 -114.5t17 -114.5q0 -102 -51.5 -195.5t-149.5 -172.5l-79 48q-10 6 -14 15t-4 17q0 19 13 33q13 15 28 35t27.5 44t20 52.5t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 28q0 33 38 46z" />
-<glyph unicode="“" horiz-adv-x="800" d="M170 1000q-70 114 -70 230q0 102 52 196t150 171l79 -48q10 -6 14 -14.5t4 -16.5q0 -9 -4 -17.5t-9 -14.5q-13 -15 -28 -35.5t-27.5 -45t-20.5 -53t-8 -61.5q0 -35 11.5 -74t37.5 -82q9 -14 9 -29q0 -33 -36 -46zM510 1000q-70 114 -70 230q0 102 52 196t150 171l79 -48 q10 -6 14 -14.5t4 -16.5q0 -9 -4 -17.5t-9 -14.5q-13 -15 -28 -35.5t-27.5 -45t-20.5 -53t-8 -61.5q0 -35 11.5 -74t37.5 -82q9 -14 9 -29q0 -33 -36 -46z" />
-<glyph unicode="”" horiz-adv-x="800" d="M316 1569q36 -57 53 -114.5t17 -115.5q0 -102 -51.5 -195t-149.5 -172l-79 48q-10 6 -14 14.5t-4 17.5q0 19 13 32q13 15 28 35t27.5 44.5t20 53t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 27q0 33 38 46zM656 1569q36 -57 53 -114.5t17 -115.5q0 -102 -51.5 -195 t-149.5 -172l-79 48q-10 6 -14 14.5t-4 17.5q0 19 13 32q13 15 28 35t27.5 44.5t20 53t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 27q0 33 38 46z" />
-<glyph unicode="„" horiz-adv-x="800" d="M316 298q36 -57 53 -114.5t17 -114.5q0 -102 -51.5 -195.5t-149.5 -172.5l-79 48q-10 6 -14 15t-4 17q0 19 13 33q13 15 28 34.5t27.5 44t20 53t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 28q0 33 38 46zM656 298q36 -57 53 -114.5t17 -114.5q0 -102 -51.5 -195.5 t-149.5 -172.5l-79 48q-10 6 -14 15t-4 17q0 19 13 33q13 15 28 34.5t27.5 44t20 53t7.5 61.5q0 35 -11 74.5t-38 83.5q-9 13 -9 28q0 33 38 46z" />
-<glyph unicode="†" d="M86 935q0 22 6.5 41t21.5 34.5t37 24.5t53 9q65 -1 140.5 -17t152.5 -28l-32 501q56 33 131 33q37 0 70.5 -8t60.5 -25l-33 -501q77 11 153.5 27.5t140.5 17.5q31 0 53.5 -9t37 -24.5t21.5 -35t7 -40.5v-84h-413v-363l33 -819q-27 -16 -60.5 -24.5t-70.5 -8.5 q-75 0 -131 33l33 819v363h-412v84z" />
-<glyph unicode="‡" d="M86 935q0 22 6.5 41t21.5 34.5t37 24.5t53 9q65 -1 140.5 -17t152.5 -28l-32 501q56 33 131 33q37 0 70.5 -8t60.5 -25l-33 -501q77 11 153.5 27.5t140.5 17.5q31 0 53.5 -9t37 -24.5t21.5 -35t7 -40.5v-84h-413v-533h413v-84q0 -22 -7 -41t-21.5 -34.5t-37 -24.5 t-53.5 -9q-65 1 -141 17t-153 27l33 -500q-27 -16 -60.5 -24.5t-70.5 -8.5q-75 0 -131 33l32 500q-77 -11 -153 -27t-140 -17q-31 0 -53 9t-37 24.5t-21.5 35t-6.5 40.5v84h412v533h-412v84z" />
-<glyph unicode="•" d="M146 607q0 92 35.5 173t96 142t141.5 96t173 35t174 -35t142.5 -96t95.5 -142t35 -173q0 -91 -35 -171.5t-95.5 -141t-142.5 -95t-174 -34.5t-173 34.5t-141.5 95t-96 141t-35.5 171.5z" />
-<glyph unicode="…" horiz-adv-x="1553" d="M75 139q0 32 11.5 60.5t32.5 49t50 33t61 12.5t60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-32.5 48.5t-11.5 61zM1168 139q0 32 12 60.5t33 49t49.5 33t61.5 12.5q32 0 60.5 -12.5t49 -33t33 -49 t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5t-49.5 32t-33 48.5t-12 61zM622 139q0 32 11.5 60.5t32.5 49t49.5 33t61.5 12.5q32 0 60.5 -12.5t49 -33t33 -49t12.5 -60.5q0 -33 -12.5 -61t-33 -48.5t-49 -32t-60.5 -11.5q-33 0 -61.5 11.5 t-49.5 32t-32.5 48.5t-11.5 61z" />
-<glyph unicode=" " horiz-adv-x="382" />
-<glyph unicode="‰" horiz-adv-x="2403" d="M746 1122q0 -84 -28 -151.5t-75 -115t-109.5 -73t-130.5 -25.5q-74 0 -136 25.5t-107.5 73t-71.5 115t-26 151.5q0 86 26 156t71.5 118t108 74t135.5 26q74 0 137 -26t109 -74t71.5 -118t25.5 -156zM551 1122q0 59 -11.5 99.5t-31.5 65t-47 35t-58 10.5t-57.5 -10.5 t-45.5 -35t-30 -64.5t-11 -100q0 -57 11 -95.5t30 -62t46 -33.5t57 -10q31 0 58 10t47 33.5t31.5 62t11.5 95.5zM1239 1441q12 15 30.5 27.5t51.5 12.5h183l-1100 -1443q-12 -16 -31 -27t-45 -11h-189zM1582 348q0 -84 -28 -151.5t-75 -115t-109.5 -73.5t-130.5 -26 q-74 0 -136.5 26t-108 73.5t-71 115t-25.5 151.5q0 86 25.5 155.5t71 118t108 74.5t136.5 26t137 -26t109 -74.5t71.5 -118t25.5 -155.5zM1388 348q0 59 -12 99t-32 65t-47 35.5t-58 10.5t-57.5 -10.5t-45.5 -35.5t-30 -64.5t-11 -99.5q0 -57 11 -96t30 -62.5t45.5 -34 t57.5 -10.5t58 10.5t47 34t32 62.5t12 96zM2341 348q0 -84 -28 -151.5t-75.5 -115t-110 -73.5t-129.5 -26q-74 0 -136.5 26t-108 73.5t-71 115t-25.5 151.5q0 86 25.5 155.5t71 118t108 74.5t136.5 26t137 -26t109 -74.5t71.5 -118t25.5 -155.5zM2146 348q0 59 -11.5 99 t-31.5 65t-47 35.5t-58 10.5t-57.5 -10.5t-45.5 -35.5t-30.5 -64.5t-11.5 -99.5q0 -57 11.5 -96t30.5 -62.5t45.5 -34t57.5 -10.5t58 10.5t47 34t31.5 62.5t11.5 96z" />
-<glyph unicode="‹" horiz-adv-x="657" d="M126 535v32l262 406l83 -39q20 -9 29.5 -23.5t9.5 -31.5q0 -22 -13 -44l-142 -241q-14 -27 -32 -43q16 -14 32 -43l142 -242q13 -23 13 -44q0 -36 -39 -54l-83 -39z" />
-<glyph unicode="›" horiz-adv-x="657" d="M269 129l-83 39q-20 9 -29.5 23.5t-9.5 31.5q0 20 14 43l141 242q16 29 33 43q-18 16 -33 43l-141 241q-13 23 -14 44q0 37 39 55l83 39l262 -406v-32z" />
-<glyph unicode="⁄" horiz-adv-x="728" d="M53 73q-27 -42 -57 -57.5t-69 -15.5h-108l854 1398q24 39 55.5 61t77.5 22h107z" />
-<glyph unicode=" " horiz-adv-x="479" />
-<glyph unicode="€" d="M38 950h136q24 125 75 226t124.5 171.5t167 109t202.5 38.5q142 0 244 -55t170 -148l-89 -96q-10 -11 -21.5 -20t-31.5 -9q-14 0 -26 8.5t-26 20.5l-32 27q-17 14 -41.5 26.5t-57 20.5t-77.5 8q-121 0 -204 -83t-116 -245h514v-78q0 -24 -19 -43.5t-51 -19.5h-461 q-1 -17 -1 -34v-35v-24q0 -12 1 -24h434v-77q0 -24 -19 -43.5t-51 -19.5h-352q29 -176 110.5 -262.5t201.5 -86.5q74 0 118.5 20t73 44.5t47 44.5t41.5 20q11 0 20 -3.5t17 -14.5l109 -100q-72 -111 -182 -169.5t-257 -58.5q-120 0 -215.5 40.5t-166.5 114t-116 178 t-63 233.5h-130v140h119q-1 11 -1 24v24v35q0 17 1 34h-119v141z" />
-<glyph unicode="™" horiz-adv-x="1486" d="M983 1193q8 -18 15 -36t12 -37q6 18 13 37t16 36l137 261q10 19 22 23t34 4h150v-618h-153v309l11 102l-157 -309q-19 -38 -59 -38h-25q-42 0 -60 38l-155 304l12 -97v-309h-154v618h151q23 0 34.5 -3t21.5 -24zM568 1481v-144h-168v-474h-175v474h-167v144h510z" />
-<glyph unicode="Ω" horiz-adv-x="1515" d="M830 0v509q71 11 131.5 38.5t105 74t69.5 112t25 153.5q0 95 -28 167.5t-81 122.5t-127.5 75.5t-166.5 25.5t-167 -25.5t-127 -75.5t-80.5 -122.5t-28.5 -167.5q0 -88 25.5 -153.5t69.5 -112t104 -74t131 -38.5v-509h-519q-43 0 -67.5 24t-24.5 62v140h398v143 q-95 25 -170 75t-125.5 119.5t-77 155t-26.5 182.5q0 124 49.5 232.5t139.5 189.5t216 127.5t280 46.5t279.5 -46.5t215.5 -127.5t140 -189.5t50 -232.5q0 -97 -26.5 -182.5t-77.5 -155t-125.5 -120t-170.5 -74.5v-143h400v-140q0 -38 -25 -62t-67 -24h-521z" />
-<glyph unicode="∂" d="M313 1367q41 31 82.5 55t86 40t95 24.5t110.5 8.5q95 0 175.5 -39t138 -112t89.5 -178t32 -238q0 -212 -39 -386t-116.5 -298t-195 -191.5t-273.5 -67.5q-93 0 -172 30.5t-136 87.5t-89 138t-32 181q0 120 41 223t112 178.5t168.5 118.5t211.5 43q100 0 171.5 -36 t119.5 -101q1 20 1 40v39q0 92 -17.5 161t-49 115t-76 69t-99.5 23q-39 0 -73 -10t-63 -22l-53 -23q-23 -10 -39 -10q-14 0 -27.5 8t-27.5 33zM527 181q55 0 106 22.5t94 72t76.5 127t52.5 188.5q-10 39 -27.5 74.5t-44.5 63.5t-65 44.5t-90 16.5q-76 0 -132 -27.5t-93 -76 t-55.5 -115t-18.5 -146.5q0 -117 52.5 -180.5t144.5 -63.5z" />
-<glyph unicode="∆" horiz-adv-x="1502" d="M627 1481h249l613 -1481h-1477zM379 218h744l-323 834q-11 29 -23.5 66.5t-24.5 81.5q-12 -45 -24.5 -83t-24.5 -67z" />
-<glyph unicode="∏" horiz-adv-x="1404" d="M1353 1481v-212h-171v-1612h-261v1612h-437v-1612h-260v1612h-172v212h1301z" />
-<glyph unicode="∑" horiz-adv-x="1404" d="M84 1481h1237v-212h-846l526 -664v-73l-526 -663h846v-212h-1237v88q0 18 6 38t21 38l609 750l-609 746q-14 17 -20.5 37t-6.5 39v88z" />
-<glyph unicode="−" d="M139 781h908v-187h-908v187z" />
-<glyph unicode="√" horiz-adv-x="1192" d="M273 657h-123q-39 0 -67.5 23t-28.5 79v81h361q29 0 47.5 -13.5t24.5 -33.5l105 -319q14 -43 23 -86t14 -87q5 34 12.5 69.5t18.5 71.5l396 1258q6 20 25 33.5t44 13.5h167l-563 -1747h-213z" />
-<glyph unicode="∞" horiz-adv-x="1404" d="M1024 238q-56 0 -103 15t-85.5 41.5t-71 61t-59.5 73.5q-28 -39 -61 -73.5t-71.5 -61t-85.5 -41.5t-103 -15q-68 0 -129 27t-107.5 75.5t-73.5 116t-27 149.5q0 81 27 148.5t73.5 116.5t107.5 76t129 27q56 0 103 -15.5t85.5 -41.5t71.5 -61t61 -74q28 39 60 74t70.5 61 t85.5 41.5t103 15.5q68 0 129 -27t107.5 -76t73.5 -116.5t27 -148.5q0 -82 -27 -149.5t-73.5 -116t-107.5 -75.5t-129 -27zM394 441q31 0 58 13t51 35t46 52t44 64q-22 35 -44 64.5t-46 52t-51 35.5t-58 13q-30 0 -56.5 -9t-47 -29t-32.5 -51.5t-12 -74.5q0 -44 12 -75 t32.5 -51t47 -29.5t56.5 -9.5zM1014 441q30 0 57 9.5t47.5 29.5t32 51t11.5 75q0 43 -12 74.5t-32.5 51.5t-47.5 29t-56 9q-32 0 -58.5 -13t-50.5 -35.5t-45.5 -52t-43.5 -64.5q22 -34 43.5 -64t45.5 -52t50.5 -35t58.5 -13z" />
-<glyph unicode="∫" horiz-adv-x="846" d="M368 1120q22 178 114 277.5t255 99.5q39 0 80.5 -7.5t78.5 -27.5l-12 -122q-1 -10 -4.5 -20t-12 -18.5t-22.5 -13.5t-35 -5q-49 0 -84.5 -11.5t-59 -36.5t-38 -61.5t-20.5 -86.5l-131 -1029q-13 -106 -48.5 -183.5t-88 -127t-122.5 -73.5t-151 -24q-37 0 -79.5 7.5 t-78.5 27.5l13 105q2 13 6 23t13.5 16t25 9t40.5 3q59 0 99.5 12t67.5 37t41 64.5t21 95.5z" />
-<glyph unicode="≈" d="M811 918q32 0 62 7t55 17.5t43 22.5t25 21l31 -161q-39 -51 -102.5 -75t-129.5 -24q-54 0 -108 16t-106 35.5t-101 35t-93 15.5q-34 0 -64.5 -7.5t-55.5 -18t-43.5 -23.5t-25.5 -22l-37 153q19 29 45.5 49.5t58.5 34t67 19.5t70 6q54 0 108.5 -16t106.5 -35t101 -34.5 t93 -15.5zM811 553q32 0 62 7t55 18t43 22.5t25 21.5l31 -161q-39 -51 -102.5 -75.5t-129.5 -24.5q-54 0 -108 16t-106 35.5t-101 35.5t-93 16q-34 0 -64.5 -7.5t-55.5 -18.5t-43.5 -24t-25.5 -22l-37 154q19 29 45.5 49t58.5 33.5t67 19.5t70 6q54 0 108.5 -15.5 t106.5 -34.5t101 -35t93 -16z" />
-<glyph unicode="≠" d="M139 963h514l113 226h181l-113 -226h213v-188h-307l-87 -173h394v-188h-488l-120 -241h-180l120 241h-240v188h334l86 173h-420v188z" />
-<glyph unicode="≤" d="M142 859l811 388v-172q0 -20 -11 -38t-44 -32l-360 -162q-27 -11 -55.5 -19t-61.5 -15q33 -7 62 -15.5t55 -19.5l359 -165q33 -15 44.5 -32.5t11.5 -37.5v-172l-811 391v101zM142 269h811v-187h-811v187z" />
-<glyph unicode="≥" d="M1046 859v-101l-812 -391v172q0 20 12 37.5t45 32.5l359 165q26 11 54.5 19.5t61.5 15.5q-32 7 -61 14.5t-55 19.5l-360 162q-33 14 -44.5 32t-11.5 38v172zM1046 82h-812v187h812v-187z" />
-<glyph unicode="◊" d="M116 737l390 831h176l390 -831l-390 -830h-176zM323 737l236 -513q12 -27 20.5 -50.5t14.5 -46.5q6 23 14 47t21 50l240 513l-240 513q-12 27 -20 51l-15 47l-15 -47q-8 -24 -20 -51z" />
-<glyph unicode="♩" horiz-adv-x="0" d="M-2 1522h4v-1865h-4v1865z" />
-<glyph unicode="" horiz-adv-x="1050" d="M0 1050h1050v-1050h-1050v1050z" />
-<glyph unicode="" horiz-adv-x="653" d="M409 -74q29 0 35.5 -13t6.5 -26q0 -9 -3 -22t-10 -37t-21 -58l-37 -87q-14 -30 -34.5 -38.5t-53.5 -8.5h-89l51 290h155z" />
-<glyph unicode="fi" horiz-adv-x="1230" d="M180 0v860l-91 14q-30 5 -47.5 20.5t-17.5 43.5v103h156v34q0 96 32 178.5t96.5 143t162.5 95t232 34.5q43 0 88.5 -4.5t77.5 -15.5l-8 -131q-2 -24 -25.5 -28.5t-58.5 -4.5q-99 0 -166 -17t-108.5 -51.5t-59.5 -86t-18 -120.5v-26h651v-1041h-253v861h-390v-861h-253z " />
-<glyph unicode="fl" horiz-adv-x="1263" d="M180 0v860l-91 14q-30 5 -47.5 20.5t-17.5 43.5v103h156v44q0 84 26 161t80.5 136t137.5 94t197 35q93 0 176.5 -6t166.5 -6h142v-1499h-252v1323q-54 2 -106 5t-88 3q-115 0 -175 -64t-60 -182v-44h249v-180h-241v-861h-253z" />
-<glyph horiz-adv-x="653" d="M197 1834q20 0 34.5 -1.5t26 -6t22 -13t22.5 -20.5l202 -207h-200q-14 0 -25 1t-20 3.5t-18.5 7.5t-20.5 13l-304 223h281z" />
-<glyph horiz-adv-x="653" d="M243 1707q0 -28 -11.5 -52.5t-31 -43t-45 -28.5t-54.5 -10q-27 0 -50.5 10t-42 28.5t-29.5 43t-11 52.5t11 53t29.5 44t42.5 30t50 11q29 0 54.5 -11t45 -30t31 -44t11.5 -53zM685 1707q0 -28 -10.5 -52.5t-29 -43t-43.5 -28.5t-54 -10q-28 0 -53 10t-44 28.5t-29.5 43 t-10.5 52.5t10.5 53t29.5 44t44 30t53 11q29 0 54 -11t43.5 -30t29 -44t10.5 -53z" />
-<glyph horiz-adv-x="653" d="M54 1746h545v-145h-545v145z" />
-<glyph horiz-adv-x="653" d="M736 1834l-303 -221q-11 -8 -21 -13.5t-19.5 -8.5t-20.5 -4t-25 -1h-199l201 207q12 12 23 20.5t22.5 13t25.5 6t35 1.5h281z" />
-<glyph horiz-adv-x="653" d="M700 1586h-191q-15 0 -33.5 4t-30.5 13l-103 68l-15 9l-16 -9l-103 -68q-11 -8 -29.5 -12.5t-34.5 -4.5h-191l248 224h252z" />
-<glyph horiz-adv-x="653" d="M-47 1810h191q15 0 34 -4.5t30 -11.5l103 -69l8 -4l8 -6l7 6q4 3 8 4l103 69q11 7 30 11.5t34 4.5h191l-247 -224h-252z" />
-<glyph horiz-adv-x="653" d="M327 1563q-153 0 -235.5 61.5t-82.5 185.5h161q0 -51 38.5 -74t118.5 -23t118 23t38 74h161q0 -56 -21 -102t-62 -78.5t-99.5 -49.5t-134.5 -17z" />
-<glyph horiz-adv-x="653" d="M481 1737q0 -31 -12.5 -58t-34 -48t-50.5 -33.5t-60 -12.5q-30 0 -57.5 12.5t-48.5 33.5t-33.5 48t-12.5 58q0 32 12.5 60t33.5 49t48.5 33t57.5 12q32 0 60.5 -12t50 -33t34 -49t12.5 -60z" />
-<glyph horiz-adv-x="653" d="M115 1723q0 44 17.5 80t46 61.5t66.5 40t80 14.5q44 0 82.5 -14.5t68.5 -40t47.5 -61.5t17.5 -80q0 -43 -17.5 -78t-47.5 -60.5t-68.5 -39.5t-82.5 -14q-42 0 -80 14t-66.5 39.5t-46 60.5t-17.5 78zM236 1723q0 -40 24 -65.5t69 -25.5q41 0 65.5 25.5t24.5 65.5 q0 43 -24.5 68t-65.5 25q-45 0 -69 -25t-24 -68z" />
-<glyph horiz-adv-x="653" d="M453 1740q28 0 44.5 16t17.5 48h137q0 -51 -13 -93t-37.5 -71.5t-60.5 -46.5t-82 -17q-37 0 -71.5 11t-65.5 25l-58 24q-27 11 -49 12q-28 0 -44 -17t-17 -50h-140q0 50 13.5 92.5t39 73.5t61.5 47.5t81 16.5q37 0 71.5 -11t66.5 -24l57 -25q27 -11 49 -11z" />
-<glyph horiz-adv-x="653" d="M467 1818l-206 -195q-20 -17 -37 -27t-46 -10h-120l136 178q17 24 42 39t66 15h165zM841 1818l-259 -195q-23 -17 -43 -27t-49 -10h-136l182 178q24 22 49 38t66 16h190z" />
-<glyph horiz-adv-x="653" d="M431 1524q29 0 35.5 -13t6.5 -25q0 -9 -3.5 -25t-14.5 -46.5t-30 -77.5l-50 -122q-13 -30 -33.5 -38t-53.5 -8h-90l63 355h170z" />
-</font>
-</defs></svg>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata>
-This is a custom SVG webfont generated by Font Squirrel.
-Copyright : Copyright c 2010 by tyPoland Lukasz Dziedzic with Reserved Font Name Lato Licensed under the SIL Open Font License Version 11
-Designer : Lukasz Dziedzic
-Foundry : tyPoland Lukasz Dziedzic
-Foundry URL : httpwwwtypolandcom
-</metadata>
-<defs>
-<font id="webfont7qSu1Vfu" horiz-adv-x="1160" >
-<font-face units-per-em="2000" ascent="1610" descent="-390" />
-<missing-glyph horiz-adv-x="386" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="0" />
-<glyph unicode="
" horiz-adv-x="0" />
-<glyph unicode=" " horiz-adv-x="386" />
-<glyph unicode="	" horiz-adv-x="386" />
-<glyph unicode=" " horiz-adv-x="386" />
-<glyph unicode="!" horiz-adv-x="635" d="M518 1433l-70 -574q-6 -45 -13 -87.5t-15 -85.5t-18 -89l-22 -98h-117q1 52 2.5 98t4 89t6 85.5t9.5 87.5l70 574h163zM159 110q0 26 9.5 49t26 40t39 27t49.5 10q26 0 49 -10t40 -27t26.5 -40t9.5 -49q0 -27 -9.5 -49.5t-26.5 -39.5t-40 -26.5t-49 -9.5q-27 0 -49.5 9.5 t-39 26.5t-26 39.5t-9.5 49.5z" />
-<glyph unicode=""" horiz-adv-x="736" d="M403 1431l-36 -289l-34 -155q-7 -31 -22.5 -48t-44.5 -17q-26 0 -37 17t-11 48v155l37 289h148zM715 1431l-36 -289l-34 -155q-7 -31 -22.5 -48t-44.5 -17q-26 0 -37 17t-11 48v155l37 289h148z" />
-<glyph unicode="#" d="M780 424l-137 -424h-78q-20 0 -32.5 13.5t-12.5 35.5q0 14 4 26l113 349h-250l-116 -358q-11 -35 -35 -50.5t-52 -15.5h-77l137 424h-147q-43 0 -43 40q0 7 1.5 14.5l3.5 17.5l15 55h205l106 331h-233l21 71q8 28 27.5 41t57.5 13h161l118 363q10 29 32.5 45t51.5 16h78 l-138 -424h250l138 424h77q22 0 36 -12t14 -32q0 -11 -4 -20l-118 -360h214l-22 -71q-8 -28 -27 -41t-56 -13h-143l-106 -331h182q20 0 32 -9.5t12 -30.5q0 -7 -1 -14.5t-4 -17.5l-16 -55h-239zM421 551h251l106 331h-250z" />
-<glyph unicode="$" d="M440 -12q-119 11 -212.5 59.5t-156.5 123.5l61 78q19 25 49 25q18 0 39.5 -19t54 -43.5t78.5 -48t114 -31.5l103 540q-62 19 -121.5 43.5t-106 62t-75 93t-28.5 137.5q0 83 33 160t95 137t150.5 98t199.5 42l28 145q4 19 19 33.5t35 14.5h64l-38 -197 q103 -12 174.5 -52.5t122.5 -99.5l-48 -64q-11 -15 -22 -22t-26 -7q-14 0 -32.5 13t-45.5 30t-63.5 33.5t-86.5 23.5l-93 -491q64 -21 127 -46t112.5 -61.5t80.5 -90.5t31 -133q0 -95 -35 -180.5t-101 -152t-160 -108t-211 -48.5l-34 -178q-4 -18 -18.5 -32t-35.5 -14h-64z M887 432q0 44 -17 76.5t-46 56.5t-68 41.5t-83 32.5l-96 -508q74 7 131.5 32t97.5 64.5t60.5 91.5t20.5 113zM405 1047q0 -42 15.5 -73.5t42 -56t62.5 -43t77 -34.5l87 458q-72 -6 -125.5 -28.5t-89 -56.5t-52.5 -76.5t-17 -89.5z" />
-<glyph unicode="%" horiz-adv-x="1452" d="M732 1144q0 -99 -29.5 -176t-77.5 -130t-109.5 -80.5t-126.5 -27.5q-56 0 -103 20.5t-80.5 59t-52 94t-18.5 125.5q0 99 27 176.5t73.5 131t109 81.5t132.5 28q56 0 103 -20.5t80.5 -59.5t52.5 -95t19 -127zM597 1143q0 50 -10.5 86t-28.5 59t-42.5 34t-52.5 11 q-40 0 -75.5 -17t-61.5 -54t-41.5 -94.5t-15.5 -138.5q0 -49 10 -83.5t28 -57t42.5 -33t53.5 -10.5q39 0 74.5 16.5t62 52t42 92t15.5 137.5zM1228 1403q11 11 25.5 19.5t37.5 8.5h124l-1140 -1403q-10 -13 -24.5 -20.5t-34.5 -7.5h-126zM1372 397q0 -99 -29 -176.5 t-77 -130t-110 -80t-127 -27.5q-56 0 -102.5 20.5t-80 59t-52 93.5t-18.5 125q0 99 27 176.5t73.5 131.5t109 82t132.5 28q56 0 102.5 -20.5t80.5 -59.5t52.5 -95t18.5 -127zM1238 396q0 50 -10.5 85.5t-28.5 58.5t-42.5 33.5t-52.5 10.5q-40 0 -75.5 -17t-62 -54t-42 -94 t-15.5 -138q0 -49 10 -84t28 -57.5t42.5 -33t53.5 -10.5q39 0 74.5 16.5t62.5 52.5t42.5 93t15.5 138z" />
-<glyph unicode="&" horiz-adv-x="1297" d="M724 1447q70 0 127 -22t98 -61t63.5 -92t22.5 -115v-6t-1 -8l-101 -19q-5 -1 -8.5 -1.5t-7.5 -0.5q-29 0 -36 33q-6 29 -18 57t-32.5 50.5t-50.5 36.5t-71 14q-51 0 -92 -19t-70.5 -52.5t-45.5 -79t-16 -97.5q0 -57 23.5 -117t73.5 -123l322 -409q41 66 68 136.5 t41 141.5q4 18 13 29t28 11h119q-16 -115 -61.5 -226t-116.5 -207l238 -301h-148q-21 0 -36.5 2.5t-27.5 8.5t-22.5 16t-22.5 24l-96 122q-94 -87 -209 -138t-244 -51q-82 0 -150 24.5t-117 70t-76 110.5t-27 146q0 79 26.5 149t73 128.5t109 104.5t134.5 78 q-39 66 -57.5 130t-18.5 127q0 82 28.5 154.5t81 125.5t126.5 84t164 31zM235 357q0 -56 17.5 -99.5t48 -73.5t72.5 -45.5t91 -15.5q95 0 179 43t154 113l-333 425q-115 -62 -172 -151.5t-57 -195.5z" />
-<glyph unicode="'" horiz-adv-x="426" d="M403 1431l-36 -289l-34 -155q-7 -31 -22.5 -48t-44.5 -17q-26 0 -37 17t-11 48v155l37 289h148z" />
-<glyph unicode="(" horiz-adv-x="552" d="M274 441q0 -74 7 -153.5t20.5 -159.5t34.5 -157t48 -144q6 -15 6 -27q0 -17 -9 -27.5t-21 -17.5l-81 -46q-42 86 -71.5 177.5t-48.5 183.5t-28 182t-9 173q0 140 16 272.5t58.5 267.5t116.5 278.5t191 305.5l71 -47q8 -5 14 -13.5t6 -20.5q0 -16 -14 -37 q-74 -114 -131 -227.5t-96 -233.5t-59.5 -250.5t-20.5 -278.5z" />
-<glyph unicode=")" horiz-adv-x="552" d="M313 817q0 73 -7 153t-21.5 160t-35 157t-47.5 144q-6 15 -6 26q0 17 9 27t21 18l82 47q41 -87 70.5 -178t48.5 -183t28 -182t9 -174q0 -140 -16 -272.5t-58 -267.5t-116.5 -278t-191.5 -305l-70 46q-8 6 -14 14t-6 19q0 17 14 39q73 114 130.5 230t96.5 238.5t59.5 252 t20.5 269.5z" />
-<glyph unicode="*" horiz-adv-x="736" d="M361 865l25 198q2 18 6 34.5t12 31.5q-11 -13 -24 -22.5t-30 -19.5l-169 -100l-33 73l169 101q36 21 72 24q-36 3 -66 24l-145 102l51 73l145 -101q16 -11 27.5 -22t19.5 -27q-8 24 -8 47q0 6 0.5 12t1.5 13l25 199h84l-24 -198q-2 -19 -7 -35.5t-14 -33.5 q11 14 25.5 24.5t31.5 20.5l169 100l32 -73l-169 -101q-35 -21 -67 -24q17 -2 31.5 -7.5t29.5 -16.5l145 -102l-50 -72l-145 100q-15 10 -27 20t-20 24q7 -20 7 -42q0 -6 -0.5 -12t-1.5 -13l-24 -199h-85z" />
-<glyph unicode="+" d="M732 1165l-53 -429h410l-16 -130h-410l-53 -431h-141l53 431h-407l16 130h407l54 429h140z" />
-<glyph unicode="," horiz-adv-x="425" d="M50 123q0 47 32.5 80t86.5 33q30 0 53 -11t38.5 -30.5t23.5 -45t8 -55.5q0 -45 -12.5 -93.5t-37 -96t-59.5 -92.5t-80 -83l-31 29q-13 12 -13 28q0 12 16 31l37 45.5t40.5 61t26.5 76.5h-12q-52 0 -84.5 34.5t-32.5 88.5z" />
-<glyph unicode="-" horiz-adv-x="641" d="M115 672h457l-19 -146h-456z" />
-<glyph unicode="." horiz-adv-x="425" d="M45 110q0 26 9.5 49t26.5 40t39.5 27t49.5 10q26 0 48.5 -10t39.5 -27t27 -40t10 -49q0 -27 -10 -49.5t-27 -39.5t-39.5 -26.5t-48.5 -9.5q-27 0 -49.5 9.5t-39.5 26.5t-26.5 39.5t-9.5 49.5z" />
-<glyph unicode="/" horiz-adv-x="695" d="M93 -25q-16 -32 -45 -49t-56 -17h-73l724 1479q14 30 40 46.5t58 16.5h73z" />
-<glyph unicode="0" d="M695 1447q95 0 175 -36.5t137.5 -109t90 -182t32.5 -255.5q0 -223 -49 -388.5t-133 -274.5t-195.5 -162.5t-237.5 -53.5q-96 0 -176 36.5t-137.5 109t-90 182t-32.5 256.5q0 223 49 388t133 274t196 162.5t238 53.5zM537 130q84 0 159.5 44.5t132 134.5t89.5 227.5 t33 323.5q0 120 -22.5 204.5t-60.5 137.5t-88.5 77t-106.5 24q-84 0 -159.5 -44.5t-132 -135t-89.5 -228t-33 -323.5q0 -120 22.5 -204.5t60.5 -137t88.5 -76.5t106.5 -24z" />
-<glyph unicode="1" d="M244 132h310l123 1005l18 77l-293 -229q-18 -14 -38 -14q-15 0 -27 6.5t-17 14.5l-44 75l470 369h140l-160 -1304h284l-16 -132h-765z" />
-<glyph unicode="2" d="M715 1447q83 0 153.5 -23.5t121.5 -68.5t79.5 -109.5t28.5 -146.5q0 -91 -28.5 -166t-77.5 -142t-114.5 -130l-139.5 -130l-431 -392q41 11 82 17t79 6h490q26 0 40 -14t14 -37q0 -10 -2 -27t-4 -31l-7 -53h-952l7 59q2 17 12 37.5t28 36.5l518 463q73 65 130 123.5 t96.5 116t60 117.5t20.5 129q0 54 -17.5 95t-48.5 68t-73.5 41t-92.5 14q-112 0 -190.5 -58.5t-115.5 -160.5q-11 -29 -28.5 -41t-42.5 -12q-5 0 -11 0.5t-12 1.5l-87 15q25 98 74.5 173t116.5 126t149.5 77t174.5 26z" />
-<glyph unicode="3" d="M737 1447q84 0 153.5 -23t118.5 -65.5t76 -102.5t27 -133q0 -79 -21 -139.5t-59.5 -105.5t-93 -74.5t-121.5 -47.5q122 -35 183.5 -112.5t61.5 -189.5q0 -108 -43 -194.5t-116 -148t-169.5 -94.5t-202.5 -33q-100 0 -175 23t-128 69t-86 116t-49 165l80 30q22 8 40 8 q19 0 32.5 -8t18.5 -24q16 -58 38 -101.5t55 -72.5t79 -43.5t111 -14.5q82 0 146 28t107.5 73t66.5 102t23 116q0 48 -15 88.5t-54 70t-105 46.5t-168 17l16 123q190 4 283 81.5t93 211.5q0 53 -17 93t-48 66.5t-73 39.5t-92 13q-114 0 -192 -59t-116 -160 q-11 -29 -28.5 -41t-41.5 -12q-5 0 -10.5 0.5t-10.5 1.5l-88 15q25 98 74.5 173t116.5 126t149 77t174 26z" />
-<glyph unicode="4" d="M909 514h217l-14 -98q-2 -15 -12.5 -26t-30.5 -11h-177l-46 -379h-156l47 379h-630q-20 0 -37 11t-19 28l-6 87l811 928h166zM828 1117q2 24 8 51.5t14 56.5l-615 -711h518z" />
-<glyph unicode="5" d="M1084 1357q-5 -36 -30.5 -59.5t-80.5 -23.5h-455l-115 -385q111 24 203 24q105 0 183.5 -28.5t131 -78.5t78.5 -118.5t26 -149.5q0 -126 -46.5 -228.5t-125.5 -174.5t-184.5 -111.5t-222.5 -39.5q-63 0 -119 12t-103.5 32.5t-86.5 47.5t-69 57l61 74q21 24 49 24 q19 0 42.5 -15.5t57 -34t81 -34t114.5 -15.5q83 0 152.5 28t119.5 78.5t77.5 121t27.5 156.5q0 57 -18 103.5t-54 80t-91 51.5t-130 18q-50 0 -107.5 -8.5t-125.5 -26.5l-103 31l197 668h676z" />
-<glyph unicode="6" d="M697 876q79 0 147.5 -25t119 -73t79.5 -117t29 -156q0 -111 -42 -206t-116 -165t-174.5 -110t-218.5 -40q-98 0 -175 30t-131 85t-82.5 132t-28.5 172q0 62 14 121.5t42.5 120t72 123t103.5 131.5l427 491q15 17 40.5 29t55.5 12h153l-492 -537l-83 -95q55 36 120.5 56.5 t139.5 20.5zM267 397q0 -59 18 -108.5t52 -85.5t84 -56t114 -20q79 0 145.5 26.5t115 73.5t75.5 111t27 140q0 61 -19.5 110.5t-55 84t-86 53t-112.5 18.5q-79 0 -145 -28t-113 -75.5t-73.5 -110.5t-26.5 -133z" />
-<glyph unicode="7" d="M1200 1433l-7 -68q-3 -25 -9.5 -47.5t-15.5 -36.5l-766 -1237q-11 -18 -30.5 -31t-42.5 -13h-142l753 1190q15 24 30.5 44.5t34.5 39.5h-753q-17 0 -27.5 11t-10.5 27v4l15 117h971z" />
-<glyph unicode="8" d="M518 -16q-99 0 -179.5 25.5t-137.5 72.5t-88 113.5t-31 147.5q0 161 86.5 262t242.5 142q-97 38 -145.5 111t-48.5 171q0 88 36 164.5t99.5 133t151.5 88.5t193 32q90 0 162 -26t122.5 -71.5t77.5 -107t27 -131.5q0 -131 -69.5 -226t-203.5 -140q116 -35 178 -112 t62 -194q0 -105 -40.5 -189t-112 -143.5t-169.5 -91t-213 -31.5zM534 121q78 0 141 23t108 64t69 99t24 128q0 64 -22.5 109t-60.5 73.5t-87.5 42t-102.5 13.5q-66 0 -127 -18t-108.5 -56t-76 -97.5t-28.5 -142.5q0 -53 18 -96.5t53 -75t85 -49t115 -17.5zM619 811 q81 0 137.5 26t92 67.5t51.5 92.5t16 102q0 45 -14.5 84t-43.5 68.5t-73 46.5t-103 17q-72 0 -127.5 -22.5t-93.5 -60.5t-57.5 -90t-19.5 -110q0 -43 13 -83t41.5 -70.5t73 -49t107.5 -18.5z" />
-<glyph unicode="9" d="M565 589q-75 0 -140 24t-113 70t-75.5 112.5t-27.5 150.5q0 105 41 196.5t112.5 159t168.5 106.5t209 39q94 0 168.5 -29.5t126.5 -82.5t80 -127t28 -162q0 -72 -15 -134.5t-44.5 -121.5t-71.5 -118t-96 -125l-413 -506q-15 -18 -39 -29.5t-54 -11.5h-158l505 572l49 56 t43 53q-61 -45 -133.5 -68.5t-150.5 -23.5zM979 1047q0 58 -18.5 105.5t-52.5 81.5t-81.5 52.5t-105.5 18.5q-73 0 -134.5 -25t-106.5 -69.5t-70.5 -106t-25.5 -135.5q0 -117 66.5 -182t186.5 -65q79 0 142 26.5t107.5 71.5t68.5 104t24 123z" />
-<glyph unicode=":" horiz-adv-x="425" d="M45 110q0 26 9.5 49t26.5 40t39.5 27t49.5 10q26 0 48.5 -10t39.5 -27t27 -40t10 -49q0 -27 -10 -49.5t-27 -39.5t-39.5 -26.5t-48.5 -9.5q-27 0 -49.5 9.5t-39.5 26.5t-26.5 39.5t-9.5 49.5zM145 860q0 26 9.5 49t26.5 40t39.5 27t49.5 10q26 0 48.5 -10t39.5 -27 t27 -40t10 -49q0 -27 -10 -49.5t-27 -39.5t-39.5 -26.5t-48.5 -9.5q-27 0 -49.5 9.5t-39.5 26.5t-26.5 39.5t-9.5 49.5z" />
-<glyph unicode=";" horiz-adv-x="425" d="M46 123q0 47 32.5 80t86.5 33q30 0 53 -11t38.5 -30.5t23.5 -45t8 -55.5q0 -45 -12.5 -93.5t-37 -96t-59.5 -92.5t-80 -83l-31 29q-13 12 -13 28q0 12 16 31l37 45.5t40.5 61t26.5 76.5h-12q-52 0 -84.5 34.5t-32.5 88.5zM151 860q0 26 9.5 49t26.5 40t39.5 27t49.5 10 q26 0 48.5 -10t39.5 -27t27 -40t10 -49q0 -27 -10 -49.5t-27 -39.5t-39.5 -26.5t-48.5 -9.5q-27 0 -49.5 9.5t-39.5 26.5t-26.5 39.5t-9.5 49.5z" />
-<glyph unicode="<" horiz-adv-x="1067" d="M168 710l822 401l-16 -127q-2 -17 -12 -29.5t-30 -22.5l-477 -228q-21 -11 -44.5 -18.5t-49.5 -13.5q24 -5 45.5 -13t40.5 -18l422 -227q15 -8 22.5 -19.5t7.5 -22.5q0 -1 -1.5 -14t-4 -32.5l-5.5 -43.5l-6 -48l-723 402z" />
-<glyph unicode="=" d="M157 573h858l-16 -131h-858zM199 906h856l-15 -131h-857z" />
-<glyph unicode=">" horiz-adv-x="1067" d="M947 636l-822 -401l16 127q2 17 12 29.5t30 22.5l477 228q21 11 44.5 18.5t49.5 13.5q-24 5 -45.5 13t-40.5 18l-422 227q-15 8 -22.5 19.5t-7.5 22.5q0 1 1.5 14t4 32.5l5.5 43.5l6 48l723 -402z" />
-<glyph unicode="?" horiz-adv-x="737" d="M132 1303q33 29 70.5 55t81 46t93 31.5t105.5 11.5q70 0 126.5 -21t96.5 -58t61 -87.5t21 -109.5q0 -84 -23.5 -143t-59.5 -102.5t-79.5 -75l-83 -61t-70 -61.5t-40.5 -75l-37 -154h-119l11 166q3 48 29.5 85t64.5 69.5t81.5 63.5t80 67t61 81.5t24.5 106.5 q0 78 -47.5 123t-128.5 45q-56 0 -97 -15t-70.5 -33t-49 -33t-32.5 -15q-24 0 -34 22zM183 110q0 26 9.5 49t26 40t39 27t49.5 10q26 0 49 -10t40 -27t26.5 -40t9.5 -49q0 -27 -9.5 -49.5t-26.5 -39.5t-40 -26.5t-49 -9.5q-27 0 -49.5 9.5t-39 26.5t-26 39.5t-9.5 49.5z" />
-<glyph unicode="@" horiz-adv-x="1497" d="M1026 186q-70 0 -111 37t-45 114q-63 -80 -130 -114.5t-139 -34.5q-48 0 -83.5 17.5t-58.5 47.5t-34.5 71t-11.5 89q0 60 16 123t47.5 121.5t77 110.5t105 91t131.5 61.5t156 22.5q63 0 108.5 -10t86.5 -30l-132 -360q-19 -52 -27.5 -90t-8.5 -66q0 -27 7 -44.5t19.5 -28 t29 -14.5t35.5 -4q51 0 99.5 35t86 98.5t60.5 151.5t23 193q0 116 -34 204t-95 147t-145.5 89t-185.5 30q-135 0 -256.5 -58.5t-213 -163.5t-145.5 -249t-54 -315q0 -141 40 -250t111.5 -182.5t170.5 -111.5t217 -38q141 0 248 31t183 79q11 7 19 9t16 2q15 0 24 -9.5 t13 -21.5l12 -51q-107 -72 -237.5 -113t-290.5 -41q-145 0 -265 47.5t-206.5 137t-134 217t-47.5 287.5q0 127 30 243.5t83.5 217t128.5 183t165 141t192 90.5t211 32q117 0 220.5 -39.5t181 -114.5t122.5 -183t45 -246q0 -127 -34.5 -234.5t-93.5 -186t-137 -123 t-165 -44.5zM650 303q27 0 57 10t59 35.5t57 69t52 110.5l107 296q-35 9 -76 9q-73 0 -138 -35.5t-113.5 -92.5t-77 -128.5t-28.5 -144.5q0 -57 25 -93t76 -36z" />
-<glyph unicode="A" horiz-adv-x="1237" d="M1180 0h-144q-25 0 -39 12.5t-19 32.5l-78 350h-584l-164 -350q-9 -18 -27.5 -31.5t-41.5 -13.5h-146l703 1433h189zM379 531h491l-132 593l-13 59t-12 71q-14 -38 -28.5 -71.5t-27.5 -59.5z" />
-<glyph unicode="B" horiz-adv-x="1191" d="M97 0l177 1433h424q112 0 192.5 -22.5t132.5 -64t77 -101t25 -132.5q0 -64 -18.5 -122t-55.5 -107t-92.5 -87t-129.5 -61q129 -29 194 -101.5t65 -184.5q0 -99 -35.5 -181.5t-102.5 -142.5t-163.5 -93t-217.5 -33h-472zM365 655l-63 -507h282q79 0 139 21t100 60t60 94 t20 124q0 95 -64 151.5t-193 56.5h-281zM381 787h231q81 0 141.5 21.5t101 60t60.5 92.5t20 119q0 103 -62 154.5t-192 51.5h-238z" />
-<glyph unicode="C" horiz-adv-x="1234" d="M679 145q66 0 117 11t90 27t66.5 35.5t48 35.5l34.5 27t25 11q9 0 15 -3.5t10 -8.5l65 -81q-94 -102 -216.5 -158.5t-285.5 -56.5q-128 0 -230 46t-172.5 128.5t-108 196.5t-37.5 251q0 187 58 342t159.5 266.5t238.5 173t295 61.5q76 0 138 -13t113 -38t92.5 -60 t77.5 -78l-64 -78q-8 -10 -18 -16.5t-25 -6.5q-18 0 -38 20t-54.5 43.5t-89 43.5t-141.5 20q-116 0 -217 -46.5t-175 -133t-116.5 -209.5t-42.5 -276q0 -111 29 -199t80.5 -149.5t122.5 -94.5t156 -33z" />
-<glyph unicode="D" horiz-adv-x="1385" d="M1341 817q0 -183 -56.5 -333.5t-156 -258t-237 -166.5t-299.5 -59h-495l177 1433h494q132 0 238.5 -45t180.5 -126.5t114 -195t40 -249.5zM1149 813q0 108 -27.5 195t-79 147.5t-125.5 93t-167 32.5h-306l-140 -1130h306q120 0 219 45.5t170 131t110.5 208t39.5 277.5z " />
-<glyph unicode="E" horiz-adv-x="1067" d="M1070 1280h-627l-60 -483h508l-19 -147h-507l-61 -498h629l-19 -152h-817l177 1433h815z" />
-<glyph unicode="F" horiz-adv-x="1041" d="M1070 1280h-627l-63 -510h537l-21 -152h-534l-76 -618h-189l177 1433h815z" />
-<glyph unicode="G" horiz-adv-x="1349" d="M704 135q52 0 97 5.5t84.5 16.5t76 26.5t72.5 35.5l39 324h-199q-17 0 -26.5 9t-9.5 23l0.5 5t1 11t1 11l0.5 5l9 79h410l-67 -547q-54 -39 -111.5 -68t-121.5 -48.5t-135 -29t-153 -9.5q-130 0 -235.5 46.5t-180.5 130t-115.5 199.5t-40.5 254q0 185 57.5 338.5t159 264 t241 171.5t304.5 61q83 0 151 -14t123 -39t99.5 -59t81.5 -74l-60 -78q-10 -13 -20.5 -20t-24.5 -7q-17 0 -33 10q-22 13 -48.5 33.5t-64 39t-90.5 32t-128 13.5q-123 0 -225.5 -47t-176 -134t-114.5 -210t-41 -274q0 -113 29.5 -203t83.5 -153t130 -96.5t170 -33.5z" />
-<glyph unicode="H" horiz-adv-x="1392" d="M1173 0h-189l81 654h-699l-80 -654h-189l177 1433h188l-79 -643h699l79 643h188z" />
-<glyph unicode="I" horiz-adv-x="566" d="M317 0h-188l175 1433h188z" />
-<glyph unicode="J" horiz-adv-x="817" d="M657 475q-29 -238 -148.5 -364.5t-317.5 -126.5q-54 0 -101 7t-95 21l14 109q2 15 11.5 26t29.5 11q10 0 23 -2.5t29.5 -6t38 -6t49.5 -2.5q52 0 98 17t83 56t62.5 102t36.5 155l117 962h187z" />
-<glyph unicode="K" horiz-adv-x="1257" d="M398 802h66q35 0 57.5 9.5t43.5 32.5l496 544q23 26 45 35.5t52 9.5h159l-572 -620q-21 -23 -39.5 -38.5t-38.5 -24.5q24 -10 41.5 -27.5t34.5 -43.5l432 -679h-161q-18 0 -30.5 3t-21 8t-14.5 12.5t-12 16.5l-376 572q-16 24 -35.5 35t-62.5 11h-81l-81 -658h-186 l175 1433h187z" />
-<glyph unicode="L" horiz-adv-x="947" d="M303 158h567l-19 -158h-754l177 1433h187z" />
-<glyph unicode="M" horiz-adv-x="1696" d="M820 500l11.5 -40.5t10.5 -40.5q18 42 42 81l563 901q14 23 28.5 27.5t39.5 4.5h139l-176 -1433h-164l131 1059q2 20 6.5 43l9.5 48l-557 -898q-26 -43 -73 -43h-26q-46 0 -63 43l-345 900l-2 -47t-3 -43l-130 -1062h-165l177 1433h137q25 0 39.5 -4.5t22.5 -27.5 l347 -901v0z" />
-<glyph unicode="N" horiz-adv-x="1391" d="M370 1433q25 0 36.5 -6t23.5 -26l618 -1095q2 23 4 43.5l4 39.5l128 1044h165l-176 -1433h-94q-23 0 -38 7.5t-26 27.5l-617 1096q0 -5 -0.5 -14t-1.5 -19l-2 -20.5t-2 -17.5l-130 -1060h-165l177 1433h96v0z" />
-<glyph unicode="O" horiz-adv-x="1465" d="M1422 818q0 -122 -26 -231t-73.5 -201.5t-115 -166.5t-151 -126t-181 -80t-204.5 -28q-132 0 -237.5 47t-180 130.5t-114 198.5t-39.5 252q0 183 57 336.5t157.5 264.5t238 173t298.5 62q132 0 237.5 -47.5t180 -131.5t114 -199.5t39.5 -252.5zM1230 814q0 109 -28 197.5 t-79.5 150.5t-126 96t-167.5 34q-118 0 -217 -47.5t-170 -135.5t-111 -212.5t-40 -278.5q0 -109 28 -197t79.5 -150t125.5 -95.5t167 -33.5q120 0 219 47t170 134.5t110.5 212t39.5 278.5z" />
-<glyph unicode="P" horiz-adv-x="1128" d="M366 538l-66 -538h-186l175 1433h395q114 0 198 -27t138.5 -77t81.5 -120t27 -156q0 -113 -37 -207.5t-107.5 -162.5t-174 -106.5t-236.5 -38.5h-208zM458 1286l-74 -600h208q85 0 150 26t109 72.5t67 111t23 140.5q0 58 -17 104t-51 78.5t-86 50t-121 17.5h-208z" />
-<glyph unicode="Q" horiz-adv-x="1464" d="M1422 818q0 -121 -25.5 -229t-72.5 -200t-113.5 -166.5t-148.5 -126.5l289 -393h-151q-34 0 -60.5 9.5t-44.5 34.5l-197 273q-54 -17 -110.5 -26t-116.5 -9q-132 0 -237.5 47t-180 130.5t-114 198.5t-39.5 252q0 183 57 336.5t157.5 264.5t238 173t298.5 62 q132 0 237.5 -47.5t180 -131.5t114 -199.5t39.5 -252.5zM1230 814q0 109 -28 197.5t-79.5 150.5t-126 96t-167.5 34q-118 0 -217 -47.5t-170 -135.5t-111 -212.5t-40 -278.5q0 -109 28 -197t79.5 -150t125.5 -95.5t167 -33.5q120 0 219 47t170 134.5t110.5 212t39.5 278.5z " />
-<glyph unicode="R" horiz-adv-x="1188" d="M374 601l-74 -601h-186l175 1433h377q114 0 197.5 -24t138 -68.5t81 -108t26.5 -141.5q0 -87 -26 -162t-75 -134.5t-118 -101t-156 -61.5q32 -22 53 -60l309 -572h-166q-49 0 -70 40l-270 516q-13 25 -30 35t-54 10h-132zM459 1286l-68 -549h183q85 0 150 24t109.5 67.5 t67 103t22.5 130.5q0 109 -68.5 166.5t-205.5 57.5h-190z" />
-<glyph unicode="S" horiz-adv-x="977" d="M926 1211q-11 -14 -21 -21.5t-24 -7.5q-17 0 -36 17.5t-48.5 38t-71.5 38t-105 17.5q-64 0 -114 -20t-84.5 -54.5t-52.5 -80.5t-18 -99q0 -52 24 -87.5t63 -61t89.5 -45l102.5 -40t102.5 -45.5t89.5 -62t63 -89t24 -126q0 -102 -35 -192.5t-100.5 -158.5t-158.5 -108 t-209 -40q-128 0 -228.5 50.5t-165.5 136.5l66 89q8 11 20 18t26 7q19 0 41 -22.5t56 -50t84 -50t125 -22.5q69 0 124.5 22t94 61t59.5 93.5t21 120.5q0 55 -24 91.5t-63 61.5t-88.5 43.5l-102 37.5t-102 43t-88.5 61t-63 91t-24 133q0 88 32 169t92 143t146 99t194 37 q110 0 198 -42t145 -115z" />
-<glyph unicode="T" horiz-adv-x="1087" d="M1177 1433l-20 -157h-423l-156 -1276h-186l156 1276h-425l19 157h1035z" />
-<glyph unicode="U" horiz-adv-x="1343" d="M630 147q80 0 147.5 31t118 85.5t83 130.5t43.5 166l107 873h187l-106 -873q-15 -123 -64.5 -228.5t-127.5 -183t-181.5 -121.5t-226.5 -44q-111 0 -197 36t-145.5 100.5t-90.5 153.5t-31 195q0 45 6 92l106 873h187l-107 -872q-2 -20 -3.5 -39t-1.5 -37q0 -75 19.5 -137 t57 -107t93 -69.5t127.5 -24.5z" />
-<glyph unicode="V" horiz-adv-x="1259" d="M124 1433h149q25 0 39 -13t19 -32l239 -1024q8 -32 15.5 -70.5t12.5 -80.5q14 42 29.5 80t31.5 71l489 1024q8 16 26.5 30.5t42.5 14.5h150l-713 -1433h-169z" />
-<glyph unicode="W" horiz-adv-x="1882" d="M129 1433h146q25 0 40 -12.5t18 -32.5l154 -1014q2 -14 3.5 -34t3.5 -39l2 -45q10 32 20.5 62t21.5 56l429 1014q8 17 26 31t42 14h43q25 0 40 -12.5t19 -32.5l179 -1014q5 -26 8 -55t5 -61l18.5 61t18.5 55l403 1014q7 17 26.5 31t43.5 14h146l-587 -1433h-169 l-194 1103q-3 16 -5.5 35t-4.5 39l-13.5 -39t-13.5 -35l-465 -1103h-168z" />
-<glyph unicode="X" horiz-adv-x="1192" d="M500 765l-337 668h169q21 0 30 -7t16 -21l256 -540q9 19 22 37l364 502q11 14 21.5 21.5t25.5 7.5h193l-501 -660l378 -773h-168q-20 0 -31.5 11.5t-17.5 24.5l-292 625q-8 -17 -18 -30l-431 -595q-26 -36 -62 -36h-187z" />
-<glyph unicode="Y" horiz-adv-x="1165" d="M686 573l-71 -573h-187l71 571l-378 862h166q25 0 38 -12.5t21 -31.5l238 -574q10 -29 17 -55t12 -52q12 26 26.5 52l31.5 55l381 574q11 16 27.5 30t40.5 14h155z" />
-<glyph unicode="Z" horiz-adv-x="1148" d="M1195 1433l-8 -60q-2 -14 -8 -25.5t-15 -23.5l-876 -1172h738l-20 -152h-990l8 59q2 14 7.5 25t14.5 23l876 1173h-713l19 153h967z" />
-<glyph unicode="[" horiz-adv-x="552" d="M33 -287l223 1819h343l-8 -67q-2 -20 -17 -33t-36 -13h-151l-197 -1592h153q19 0 30.5 -11t11.5 -28q0 -1 -0.5 -7t-1.5 -14.5t-2.5 -18t-2.5 -18.5l-2 -17h-343z" />
-<glyph unicode="\" horiz-adv-x="694" d="M108 1451h73q32 0 53.5 -17t29.5 -46l361 -1479h-72q-28 0 -53 17t-33 49z" />
-<glyph unicode="]" horiz-adv-x="552" d="M209 1532h344l-224 -1819h-344l9 67q2 20 16.5 33.5t36.5 13.5h152l196 1592h-152q-20 0 -31.5 11.5t-11.5 28.5l6 48z" />
-<glyph unicode="^" d="M574 1433h114l359 -646h-130q-17 0 -29 10t-20 24l-196 352q-13 23 -22.5 44.5t-16.5 42.5q-14 -44 -37 -87l-193 -352q-8 -14 -20 -24t-32 -10h-136z" />
-<glyph unicode="_" horiz-adv-x="726" d="M645 -168l-15 -116h-725l14 116h726z" />
-<glyph unicode="`" horiz-adv-x="568" d="M240 1447q31 0 45 -10t24 -32l107 -242h-99q-20 0 -32 6t-23 21l-185 257h163z" />
-<glyph unicode="a" horiz-adv-x="1012" d="M817 0h-92q-35 0 -47.5 18t-12.5 44l18 205q-36 -64 -77.5 -116t-88 -88.5t-97.5 -56.5t-106 -20q-60 0 -109 23.5t-83.5 69t-53.5 112t-19 152.5q0 90 22.5 175.5t64 161.5t99.5 139.5t129.5 110t153.5 72t172 25.5q65 0 126.5 -10.5t121.5 -36.5zM381 134q49 0 96 30.5 t89 84.5t78.5 128.5t64.5 163.5l43 348q-22 5 -43.5 6.5t-42.5 1.5q-60 0 -116 -19.5t-105 -54.5t-89 -83.5t-68.5 -106.5t-44.5 -123.5t-16 -134.5q0 -241 154 -241z" />
-<glyph unicode="b" horiz-adv-x="1052" d="M80 0l178 1473h175l-88 -716q38 61 82 111.5t92 85.5t100 54.5t106 19.5q129 0 201 -94t72 -275q0 -82 -17 -164t-48.5 -156.5t-76 -139t-99 -112t-118.5 -74.5t-134 -27q-81 0 -146.5 34t-107.5 97l-13 -65q-8 -26 -20.5 -39t-42.5 -13h-95zM658 885q-48 0 -97 -30 t-94.5 -83t-85.5 -126t-69 -160l-32 -263q38 -54 91 -76.5t108 -22.5q52 0 98 22t84 59.5t68 88t50.5 108t31.5 119t11 121.5q0 119 -43 181t-121 62z" />
-<glyph unicode="c" horiz-adv-x="868" d="M820 182q-52 -57 -98.5 -95t-93.5 -60.5t-97.5 -31.5t-108.5 -9q-88 0 -155.5 30t-113 84.5t-69 131t-23.5 168.5q0 123 38.5 236t107.5 200t164 139t209 52q100 0 168 -35.5t119 -103.5l-56 -67q-6 -8 -15 -13t-20 -5q-14 0 -27.5 12.5t-35 28t-54 28t-83.5 12.5 q-69 0 -130.5 -37.5t-107.5 -102.5t-72.5 -154t-26.5 -191q0 -62 14 -112.5t42 -86t68.5 -55t94.5 -19.5q45 0 80 9.5t62 23.5t47.5 30.5l37 30.5t30 23.5t27.5 9.5q20 0 34 -17l44 -54v0z" />
-<glyph unicode="d" horiz-adv-x="1054" d="M757 0q-35 0 -47.5 18t-12.5 44l19 211q-38 -65 -83 -118t-94.5 -90.5t-103 -58t-108.5 -20.5q-130 0 -201.5 94.5t-71.5 274.5q0 82 17 164t48.5 157t76 139.5t99 111.5t118.5 74t134 27q74 0 135.5 -29t104.5 -83l69 557h175l-182 -1473h-92zM394 129q48 0 96.5 29.5 t94 82t85 125t68.5 158.5l33 268q-38 53 -91 75t-107 22q-79 0 -142.5 -47t-108 -121.5t-68.5 -166.5t-24 -181q0 -119 43 -181.5t121 -62.5z" />
-<glyph unicode="e" horiz-adv-x="924" d="M882 796q0 -66 -27 -121.5t-99 -100t-198 -77.5t-324 -53q-1 -11 -1 -21.5v-21.5q0 -134 58.5 -204.5t176.5 -70.5q48 0 85.5 10t67 24.5t52 32l41.5 32t35 24.5t32 10q18 0 33 -17l44 -55q-51 -53 -99.5 -90.5t-99.5 -62.5t-106.5 -36.5t-119.5 -11.5q-87 0 -156 29 t-117 82.5t-74 129.5t-26 170q0 78 16.5 155.5t48 147.5t77 130t104 103.5t129 68.5t151.5 25q77 0 133 -22t92 -56t53.5 -75t17.5 -78zM576 899q-63 0 -116 -26t-94 -71.5t-70 -107t-45 -132.5q154 19 247 43.5t143 53t66 61.5t16 69q0 18 -8 37.5t-25.5 35.5t-45.5 26.5 t-68 10.5z" />
-<glyph unicode="f" horiz-adv-x="607" d="M375 865l-101 -832l-46 -207q-17 -75 -92 -75h-70l135 1111l-100 13q-17 5 -27 14t-10 26l8 78h145l12 98q11 87 43.5 154.5t82 114t113 70.5t136.5 24q62 0 113 -20l-17 -92q-2 -14 -13.5 -17.5t-29.5 -3.5q-9 0 -19.5 0.5t-22.5 0.5q-43 0 -79.5 -12.5t-64.5 -40.5 t-47 -73t-27 -110l-12 -93h253l-17 -128h-246z" />
-<glyph unicode="g" horiz-adv-x="931" d="M817 732q-1 -50 -12.5 -90t-28.5 -74t-37 -64t-37 -60t-28.5 -61.5t-11.5 -68.5q0 -42 20.5 -76t45 -70t45 -78.5t20.5 -100.5q0 -71 -33 -134.5t-94 -112.5t-148.5 -77.5t-196.5 -28.5q-87 0 -158.5 18t-122 51t-78 79.5t-27.5 102.5q0 79 41 136t108 94t152.5 54 t174.5 17q36 0 71.5 -3t70.5 -8q-9 19 -14.5 39.5t-5.5 44.5q0 31 9.5 64t31.5 74q-38 -26 -85 -40t-107 -14q-58 0 -108.5 19t-88.5 56t-60 92.5t-22 129.5q0 72 26.5 141.5t77.5 124t126 87.5t173 33q110 0 191 -52h275l-8 -59q-2 -17 -11.5 -31t-28.5 -17l-126 -22 q9 -26 14 -54.5t5 -60.5zM431 457q54 0 95 23.5t69.5 62t43.5 86.5t15 97q0 88 -44.5 133t-122.5 45q-54 0 -95 -22t-69 -59t-42.5 -84t-14.5 -98q0 -90 43.5 -137t121.5 -47zM631 -25q0 26 -5 48.5t-13 42.5q-54 9 -101.5 13t-89.5 4q-82 0 -142 -14.5t-99 -38.5t-58 -55.5 t-19 -65.5q0 -72 60.5 -110t171.5 -38q66 0 120.5 17.5t93 46.5t60 68t21.5 82z" />
-<glyph unicode="h" horiz-adv-x="1062" d="M80 0l178 1473h178l-83 -684q79 118 175.5 178.5t197.5 60.5q115 0 177 -76t62 -221q0 -20 -1 -41.5t-4 -44.5l-76 -645h-178l76 645q2 20 3.5 38.5t1.5 35.5q0 82 -30.5 122t-96.5 40q-45 0 -92.5 -24.5t-92.5 -69.5t-84 -108.5t-68 -141.5l-65 -537h-178z" />
-<glyph unicode="i" horiz-adv-x="489" d="M393 1013l-122 -1013h-175l122 1013h175zM460 1331q0 -26 -10.5 -48.5t-28 -40t-39.5 -27.5t-46 -10q-23 0 -45 10t-38.5 27.5t-26.5 40t-10 48.5t10 49t27 40.5t39 28t45 10.5q24 0 46 -10t39.5 -27.5t27.5 -41t10 -49.5z" />
-<glyph unicode="j" horiz-adv-x="477" d="M392 1013l-134 -1088q-8 -61 -30.5 -113.5t-60.5 -91.5t-90.5 -61.5t-119.5 -22.5q-35 0 -60 5t-49 15l18 96q5 13 12 16.5t21 3.5q7 0 15.5 -0.5t19.5 -0.5q71 0 105.5 36.5t44.5 117.5l133 1088h175zM455 1331q0 -26 -10.5 -48.5t-28 -40t-40 -27.5t-45.5 -10 q-24 0 -45.5 10t-38 27.5t-26.5 40t-10 48.5t10 49t27 40.5t38.5 28t45.5 10.5t46 -10t39.5 -27.5t27.5 -41t10 -49.5z" />
-<glyph unicode="k" horiz-adv-x="961" d="M435 1473l-106 -867h31q20 0 33 5.5t29 22.5l335 343q16 16 31 26t39 10h157l-391 -397q-15 -16 -29.5 -29.5t-31.5 -23.5q16 -12 27 -28t22 -35l304 -500h-153q-22 0 -35.5 8t-24.5 27l-258 415q-13 20 -25.5 27t-40.5 7h-34l-59 -484h-176l181 1473h175z" />
-<glyph unicode="l" horiz-adv-x="477" d="M89 0l179 1473h175l-179 -1473h-175z" />
-<glyph unicode="m" horiz-adv-x="1569" d="M72 0l122 1014h89q60 0 60 -60l-14 -181q75 126 164 190.5t188 64.5q103 0 152 -70.5t49 -201.5q76 139 170.5 205.5t198.5 66.5q112 0 167.5 -73t55.5 -210q0 -23 -2 -48t-5 -52l-76 -645h-175l76 645q6 49 6 89q0 75 -25 110.5t-84 35.5q-43 0 -86 -21.5t-83 -63 t-74.5 -103t-61.5 -141.5l-65 -551h-176l77 645q3 27 5 51t2 45q0 71 -23.5 105t-82.5 34q-48 0 -92.5 -24t-84 -69.5t-73.5 -111t-62 -147.5l-63 -528h-174z" />
-<glyph unicode="n" horiz-adv-x="1054" d="M72 0l121 1014h89q60 0 60 -60l-15 -196q81 134 182.5 202t210.5 68q113 0 175.5 -76t62.5 -222q0 -20 -1 -41t-4 -44l-76 -645h-178l76 645q2 20 3.5 38.5t1.5 35.5q0 82 -30.5 121.5t-95.5 39.5q-48 0 -97.5 -26t-95.5 -73.5t-85.5 -115t-67.5 -150.5l-58 -515h-178z " />
-<glyph unicode="o" horiz-adv-x="1007" d="M449 125q73 0 133 40t102 106.5t65 153.5t23 182q0 140 -55 211t-159 71q-74 0 -133.5 -39.5t-101.5 -106t-65 -153.5t-23 -182q0 -140 54.5 -211.5t159.5 -71.5zM433 -14q-83 0 -152 28.5t-119 82.5t-78 132t-28 178q0 128 40 241t109.5 198t164 134t204.5 49 q83 0 152 -28.5t119 -82.5t78 -132.5t28 -177.5q0 -127 -40 -240t-109.5 -198t-164.5 -134.5t-204 -49.5z" />
-<glyph unicode="p" horiz-adv-x="1038" d="M29 -343l165 1357h89q60 0 60 -60l-17 -216q38 66 83 119.5t94.5 91.5t103.5 58.5t110 20.5q129 0 201 -94t72 -275q0 -82 -17 -164t-48.5 -156.5t-76 -139t-99 -112t-118.5 -74.5t-134 -27q-75 0 -137 29.5t-104 84.5l-54 -443h-173zM650 885q-48 0 -97.5 -30t-95.5 -84 t-85.5 -128t-68.5 -161l-32 -258q38 -55 91.5 -77.5t108.5 -22.5q52 0 98 22t84 59.5t68 88t50.5 108t31.5 119t11 121.5q0 119 -43 181t-121 62z" />
-<glyph unicode="q" horiz-adv-x="1012" d="M774 -343h-112q-32 0 -45 18.5t-13 43.5q0 3 1 11l2 16.5t2 15.5t1 9l59 471q-35 -59 -75 -106t-85 -80.5t-94 -51.5t-101 -18q-60 0 -109 23.5t-83.5 69t-53.5 112t-19 152.5q0 90 22.5 175.5t64 161.5t99.5 139.5t129.5 110t153.5 72t172 25.5q65 0 126.5 -10.5 t121.5 -36.5zM381 134q48 0 94.5 30t88.5 83t78 126.5t64 160.5l45 355q-21 5 -42.5 6.5t-42.5 1.5q-60 0 -116 -19.5t-105 -54.5t-89 -83.5t-68.5 -106.5t-44.5 -123.5t-16 -134.5q0 -241 154 -241z" />
-<glyph unicode="r" horiz-adv-x="704" d="M72 0l122 1014h89q28 0 44 -13t16 -40q0 -4 -0.5 -11.5l-1 -15.5t-1 -14t-0.5 -7l-14 -184q65 140 145.5 216t169.5 76q42 0 84 -18l-32 -171q-47 19 -91 19q-97 0 -173 -94.5t-127 -286.5l-56 -470h-174z" />
-<glyph unicode="s" horiz-adv-x="780" d="M724 851q-8 -12 -16 -17.5t-20 -5.5q-14 0 -30.5 11t-40 24.5t-57.5 25t-82 11.5q-45 0 -82 -12.5t-64 -34.5t-41.5 -51.5t-14.5 -62.5q0 -47 31 -75t78 -48.5t101.5 -39.5t101.5 -48t78 -74t31 -117q0 -70 -27.5 -134t-79 -112.5t-124 -77.5t-162.5 -29 q-97 0 -171.5 34.5t-121.5 88.5l44 68q8 13 19 20t28 7q16 0 32 -14t40 -31.5t60.5 -31.5t92.5 -14q49 0 88.5 15t67 40t42 58.5t14.5 71.5q0 51 -31 81t-78 50t-101 37.5t-101 45t-78 71.5t-31 117q0 64 25.5 123.5t73.5 105.5t116.5 73.5t154.5 27.5q91 0 160.5 -30.5 t119.5 -82.5z" />
-<glyph unicode="t" horiz-adv-x="687" d="M160 191q0 6 0.5 15.5t2 27.5t4.5 47t9 76l63 507h-113q-13 0 -21.5 7.5t-8.5 23.5q0 3 1 12t2.5 20.5l3 23.5t2.5 23l156 21l75 313q4 15 15 24.5t27 9.5h94l-44 -349h266l-15 -129h-267l-61 -498q-5 -41 -7.5 -66l-4 -40t-2 -21t-0.5 -9q0 -51 23.5 -75.5t64.5 -24.5 q26 0 46 7.5t34.5 16.5t24.5 16.5t18 7.5t12.5 -4t9.5 -13l37 -85q-48 -43 -110.5 -67.5t-125.5 -24.5q-97 0 -153 53t-58 154z" />
-<glyph unicode="u" horiz-adv-x="1052" d="M355 1013l-76 -644q-2 -20 -3.5 -38t-1.5 -35q0 -82 30.5 -122t96.5 -40q46 0 94.5 25t94 71t84.5 111t68 145l63 527h177l-122 -1013h-88q-31 0 -48 14t-17 43q0 1 1 18t2.5 37t3 37t1.5 18l7 81q-81 -129 -181 -195.5t-206 -66.5q-113 0 -175.5 77t-62.5 221q0 20 1 41 t4 44l76 644h177z" />
-<glyph unicode="v" horiz-adv-x="954" d="M76 1013h144q20 0 32 -11t15 -26l151 -652q8 -37 11.5 -74t5.5 -73l23 72.5t30 74.5l314 652q8 16 22 26.5t31 10.5h139l-508 -1013h-149z" />
-<glyph unicode="w" horiz-adv-x="1421" d="M82 1013h133q20 0 32.5 -10t14.5 -27l93 -652q5 -35 5.5 -67.5t1.5 -64.5l24.5 64.5l26.5 67.5l277 656q6 15 19.5 25t30.5 10h74q20 0 31 -10t13 -25l113 -656q6 -35 9.5 -68t6.5 -66l19.5 65.5t23.5 68.5l256 652q6 16 20 26.5t32 10.5h128l-425 -1013h-135 q-23 0 -29 34l-123 687q-3 16 -5 32.5l-4 32.5l-10 -33t-12 -33l-293 -686q-14 -34 -40 -34h-130z" />
-<glyph unicode="x" horiz-adv-x="939" d="M361 545l-243 468h159q20 0 28.5 -5.5t15.5 -19.5l170 -348q5 11 10.5 21t13.5 21l229 303q11 14 20 21t22 7h161l-362 -469l270 -544h-159q-20 0 -31 10.5t-18 24.5l-191 405q-10 -22 -21 -38l-276 -368q-10 -14 -22 -24t-30 -10h-156z" />
-<glyph unicode="y" horiz-adv-x="954" d="M317 -302q-21 -41 -62 -41h-130l219 403l-262 953h147q21 0 31.5 -10.5t14.5 -26.5l163 -638q5 -21 8 -42t5 -42l17.5 42.5t19.5 42.5l320 639q8 16 22.5 25.5t29.5 9.5h141z" />
-<glyph unicode="z" horiz-adv-x="860" d="M849 937q-2 -19 -11 -36.5t-20 -31.5l-584 -730h500l-16 -139h-714l9 74q2 13 10.5 30.5t20.5 33.5l587 735h-492l17 140h702z" />
-<glyph unicode="{" horiz-adv-x="552" d="M158 453q0 52 -28 85t-81 33l13 104q74 0 110.5 59.5t36.5 183.5q0 22 -1.5 48.5l-3 54l-3 54t-1.5 48.5q0 97 22.5 173t67 128.5t110.5 80t152 27.5h49l-9 -77q-2 -20 -17.5 -28t-25.5 -8h-18q-39 0 -72 -15t-56.5 -49.5t-36.5 -90t-13 -136.5v-49.5t0.5 -61t0.5 -61.5 v-49q0 -77 -17 -128.5t-42.5 -84t-55 -49t-54.5 -23.5q53 -17 85 -62.5t32 -108.5q0 -60 -15 -117t-32.5 -114.5t-32.5 -116t-15 -121.5q0 -70 33.5 -112.5t94.5 -42.5h19q10 0 21.5 -7.5t11.5 -24.5q0 -3 -1 -10t-1.5 -14.5t-1.5 -13.5t-1 -7l-4 -37h-50q-69 0 -120 20 t-84.5 55.5t-50.5 84.5t-17 107q0 66 16 126t35 117.5t35 114t16 115.5z" />
-<glyph unicode="|" horiz-adv-x="600" d="M171 1533h138v-1876h-138v1876z" />
-<glyph unicode="}" horiz-adv-x="552" d="M427 793q0 -52 28 -85t81 -33l-13 -104q-74 0 -110.5 -59.5t-36.5 -183.5q0 -22 1.5 -48.5l3 -54l3 -54t1.5 -48.5q0 -97 -22.5 -173t-67 -128.5t-110.5 -80t-152 -27.5h-49l9 77q1 10 6 16.5t11.5 11t13.5 6.5t12 2h18q39 0 72 15t56.5 49.5t36.5 90t13 136.5v49 t-0.5 61.5t-0.5 61v49.5q0 76 17 128t42.5 84.5t55 49t54.5 23.5q-53 17 -85 62.5t-32 108.5q0 60 15 117t32.5 114.5t32.5 116t15 121.5q0 70 -33.5 112.5t-94.5 42.5h-19q-10 0 -21.5 7.5t-11.5 24.5q0 3 1 10t1.5 14.5t1.5 13.5t1 7l4 37h50q69 0 120 -20t84.5 -55.5 t50.5 -84.5t17 -107q0 -66 -16 -126t-35 -117.5t-35 -114t-16 -115.5z" />
-<glyph unicode="~" d="M700 613q65 0 101.5 42.5t37.5 112.5h144q0 -67 -18.5 -123t-53 -96t-85.5 -62t-115 -22q-52 0 -103 16t-98.5 35.5l-90.5 36t-79 16.5q-65 0 -101.5 -42t-37.5 -113h-144q0 67 18.5 123t53 96t85 62.5t115.5 22.5q52 0 103 -16.5t98.5 -36l90.5 -36t79 -16.5z" />
-<glyph unicode="¡" horiz-adv-x="635" d="M148 -344l67 542q6 45 12.5 87.5t14 86t16.5 89.5l19 98h104q-2 -53 -4.5 -99t-5.5 -89t-6.5 -85.5t-9.5 -87.5l-66 -542h-141zM243 903q0 26 9.5 49t26.5 40t39.5 27t49.5 10q26 0 48.5 -10t39.5 -27t27 -40t10 -49q0 -27 -10 -49.5t-27 -39.5t-39.5 -26.5t-48.5 -9.5 q-27 0 -49.5 9.5t-39.5 26.5t-26.5 39.5t-9.5 49.5z" />
-<glyph unicode="¢" d="M503 -10q-82 9 -149.5 43t-115.5 90.5t-74 134t-26 173.5q0 126 38.5 233.5t110.5 186.5t176.5 125t236.5 49l34 181q4 19 19 33.5t35 14.5h64l-45 -234q82 -11 144.5 -42.5t110.5 -80.5l-52 -60q-8 -11 -16.5 -15.5t-22.5 -4.5q-12 0 -27 9l-36.5 21t-52 24t-72.5 19 l-147 -771q64 4 109.5 19.5t77 32.5t52.5 30.5t37 13.5q22 0 31 -15l39 -60q-33 -35 -74.5 -62t-89.5 -46t-100.5 -30t-106.5 -14l-33 -177q-4 -19 -18.5 -33.5t-35.5 -14.5h-64zM307 439q0 -132 58 -212.5t164 -101.5l146 768q-90 -6 -158.5 -40t-115 -93t-70.5 -140.5 t-24 -180.5z" />
-<glyph unicode="£" d="M84 731h163l33 265q12 94 52 176.5t104.5 143.5t152.5 96t197 35q84 0 145.5 -19t105.5 -52t72.5 -78.5t46.5 -98.5l-75 -44q-20 -12 -39 -12q-14 0 -26 6t-21 20q-18 27 -36 51t-43 42t-60 28t-87 10q-65 0 -118.5 -21.5t-94 -61t-66 -95.5t-33.5 -125l-32 -266h473 l-14 -116h-473l-31 -256q-9 -75 -36 -128t-75 -95q29 6 59 9.5t59 3.5h686l-9 -73q-2 -13 -8.5 -26.5t-18 -24.5t-26 -18t-31.5 -7h-965l14 112q35 10 63.5 25.5t50 39t35 57t19.5 79.5l36 302h-163z" />
-<glyph unicode="¤" d="M262 672q0 57 16.5 107.5t45.5 94.5l-153 153l91 90l151 -152q44 31 96 48t110 17q57 0 108 -16.5t94 -46.5l153 153l89 -91l-151 -152q31 -44 48 -95.5t17 -109.5q0 -57 -16.5 -108t-45.5 -94l152 -151l-91 -92l-152 152q-44 -31 -96 -47.5t-109 -16.5t-107.5 16.5 t-94.5 45.5l-153 -153l-90 91l152 152q-31 44 -47.5 95.5t-16.5 109.5zM394 672q0 -46 17.5 -86.5t48.5 -71t71.5 -48.5t87.5 -18t88.5 18t72 48.5t48.5 71t18 86.5q0 47 -18 88t-48.5 72t-72 48.5t-88.5 17.5t-87.5 -17.5t-71.5 -48.5t-48.5 -72t-17.5 -88z" />
-<glyph unicode="¥" d="M163 624h310l-310 807h144q24 0 38 -11.5t21 -31.5l211 -573q12 -33 17 -62t9 -57q9 28 20.5 57.5t31.5 61.5l351 573q11 17 28 30t41 13h145l-510 -807h310l-11 -99h-343l-13 -105h342l-12 -99h-342l-39 -321h-172l39 321h-343l13 99h342l13 105h-343z" />
-<glyph unicode="¦" horiz-adv-x="600" d="M171 1533h138v-794h-138v794zM171 452h138v-795h-138v795z" />
-<glyph unicode="§" horiz-adv-x="927" d="M850 1267q-15 -22 -38 -22q-15 0 -31.5 11.5t-40 25t-56.5 25t-81 11.5q-47 0 -84.5 -14t-64.5 -37t-41.5 -54t-14.5 -65q0 -46 34 -78.5t85 -60.5t110 -56t110 -65t85 -87t34 -122q0 -91 -44.5 -162.5t-139.5 -112.5q37 -33 59.5 -75.5t22.5 -99.5q0 -74 -27 -138.5 t-78 -112.5t-124.5 -75.5t-167.5 -27.5q-97 0 -173.5 34t-124.5 88l48 66q9 13 20 19t29 6t34.5 -14t40.5 -31t60.5 -31t94.5 -14q50 0 89.5 14.5t67 40t42 60t14.5 75.5t-20.5 71t-53.5 54t-75.5 44l-87 41t-87 45t-75.5 55.5t-53.5 72.5t-20.5 97q0 89 48.5 159t151.5 109 q-37 34 -60 78t-23 106q0 65 25.5 124t74 104t118 71.5t156.5 26.5q91 0 161 -31t117 -85zM283 711q0 -47 29 -80t74 -61t100 -53t106 -55q58 29 83 72t25 96q0 49 -27 83t-69.5 61.5t-94 51.5t-100.5 52q-69 -35 -97.5 -75t-28.5 -92z" />
-<glyph unicode="¨" horiz-adv-x="568" d="M319 1311q0 -23 -9 -43t-25 -35t-36.5 -24t-43.5 -9t-43 9t-35 24t-24 35t-9 43t9 44t24 36.5t35 24.5t43 9t43.5 -9t36.5 -24.5t25 -36.5t9 -44zM678 1311q0 -23 -9 -43t-24.5 -35t-36 -24t-43.5 -9t-43.5 9t-35.5 24t-24 35t-9 43t9 44t24 36.5t35.5 24.5t43.5 9 t43.5 -9t36 -24.5t24.5 -36.5t9 -44z" />
-<glyph unicode="©" horiz-adv-x="1597" d="M1083 474q9 0 13.5 -3t9.5 -8l60 -64q-57 -66 -139.5 -102.5t-198.5 -36.5q-98 0 -178.5 34t-138 95t-89 145t-31.5 184q0 101 34 185.5t95 145t144.5 94t181.5 33.5q109 0 184.5 -33.5t132.5 -89.5l-46 -65q-5 -6 -13 -12t-19 -6q-14 0 -29.5 11t-40.5 24.5t-63.5 25 t-96.5 11.5q-71 0 -127 -22.5t-96 -64.5t-61 -102t-21 -135q0 -77 21 -137.5t58.5 -101.5t89 -62.5t113.5 -21.5q63 0 106 12.5t71.5 27t45 27t28.5 12.5zM93 716q0 101 26 194.5t74 175t114.5 148t147.5 114.5t174 74t194 26t194.5 -26t174.5 -74t148 -114.5t114.5 -148 t73.5 -175t26 -194.5q0 -100 -26 -193.5t-73.5 -174.5t-114.5 -147.5t-148 -114.5t-174.5 -74t-194.5 -26q-100 0 -193.5 26t-174.5 74t-147.5 114.5t-114.5 147.5t-74 174t-26 194zM194 716q0 -89 22 -171t62.5 -153.5t98 -129.5t127 -99.5t150.5 -64t169 -22.5t169.5 22.5 t152 64t128 99.5t98.5 129.5t63.5 153.5t22.5 171q0 134 -49.5 251.5t-135 205t-201.5 138t-248 50.5q-88 0 -169 -23t-150.5 -64.5t-127 -100.5t-98 -130.5t-62.5 -154.5t-22 -172z" />
-<glyph unicode="ª" horiz-adv-x="632" d="M536 840q-17 0 -27 4.5t-12 23.5l-5 49q-25 -21 -48 -37t-47 -27t-50 -16.5t-57 -5.5q-65 0 -106 34.5t-41 102.5q0 40 18.5 77.5t61.5 67t114 48.5t177 22l5 38q1 7 1 13v12q0 46 -20 73t-68 27q-34 0 -58 -9t-42 -19.5l-33 -19.5t-30 -9q-14 0 -22 7t-12 17l-17 40 q54 50 114 73t128 23q44 0 78 -15.5t57.5 -41.5t35.5 -61.5t12 -75.5q0 -8 -0.5 -17t-1.5 -17l-47 -381h-58zM339 920q46 0 81.5 19t71.5 54l13 109q-66 -2 -112 -11t-74.5 -24t-41 -36t-12.5 -47q0 -34 21 -49t53 -15z" />
-<glyph unicode="«" horiz-adv-x="858" d="M128 518l3 22l278 388l53 -27q22 -12 22 -33q0 -19 -15 -40l-175 -263q-17 -26 -31 -36q11 -11 22 -36l111 -263q3 -8 5 -14.5t2 -13.5q0 -31 -32 -46l-60 -27zM404 518l3 22l278 388l53 -27q22 -12 22 -33q0 -19 -15 -40l-175 -263q-17 -26 -31 -36q11 -11 22 -36 l111 -263q3 -8 5 -14.5t2 -13.5q0 -31 -32 -46l-60 -27z" />
-<glyph unicode="¬" d="M180 736h859l-52 -418h-147l36 288h-711z" />
-<glyph unicode="­" horiz-adv-x="0" />
-<glyph unicode="®" horiz-adv-x="1597" d="M90 716q0 101 26 194.5t73.5 175t114.5 148t148 114.5t174 74t194 26t194.5 -26t174.5 -74t148 -114.5t114.5 -148t73.5 -175t26 -194.5q0 -100 -26 -193.5t-73.5 -174.5t-114.5 -147.5t-148 -114.5t-174.5 -74t-194.5 -26t-194 26t-174 74t-148 114.5t-114.5 147.5 t-73.5 174t-26 194zM190 716q0 -89 22 -171t63 -153.5t98 -129.5t127 -99.5t151 -64t169 -22.5t169.5 22.5t152 64t128 99.5t98.5 129.5t63.5 153.5t22.5 171q0 134 -49.5 251.5t-135 205t-201.5 138t-248 50.5t-247 -50.5t-200 -138t-134 -205t-49 -251.5zM676 626v-354 h-155v892h287q173 0 255.5 -62.5t82.5 -184.5q0 -94 -53 -159.5t-159 -90.5q17 -11 28 -26.5l24 -34.5l229 -334h-149q-31 0 -48 25l-202 302q-9 13 -21.5 20t-38.5 7h-80zM676 740h116q55 0 93.5 10.5t62 30.5t34 49t10.5 67q0 37 -9 65t-30.5 46t-57 27t-87.5 9h-132v-304 z" />
-<glyph unicode="¯" horiz-adv-x="568" d="M126 1345h530l-14 -113h-530z" />
-<glyph unicode="°" horiz-adv-x="773" d="M142 1128q0 67 25.5 126t69.5 102.5t103 68.5t127 25q69 0 128.5 -25t103.5 -68.5t69 -102.5t25 -126q0 -66 -25 -124.5t-69 -102t-103.5 -69t-128.5 -25.5q-68 0 -127 25.5t-103 69t-69.5 102t-25.5 124.5zM267 1127q0 -42 15.5 -78.5t42.5 -63.5t63.5 -42.5t78.5 -15.5 t78.5 15.5t63.5 42.5t42 63.5t15 78.5t-15 79t-42 64.5t-63.5 43t-78.5 15.5t-78.5 -15.5t-63.5 -43t-42.5 -64.5t-15.5 -79z" />
-<glyph unicode="±" d="M735 1199l-47 -379h411l-16 -131h-411l-45 -370h-140l45 370h-406l15 131h407l47 379h140zM66 211h957l-16 -131h-956z" />
-<glyph unicode="²" horiz-adv-x="664" d="M482 1636q96 0 150.5 -50t54.5 -133q0 -44 -14 -80t-38 -68.5t-55.5 -62.5l-65.5 -61l-199 -181q50 14 92 14h202q18 0 27.5 -9t9.5 -24q0 -11 -1 -25.5t-3 -26.5l-4 -29h-509l5 42q2 12 8 26t19 25l250 220q31 27 58 55t47 56.5t31.5 57.5t11.5 59q0 45 -27 69t-69 24 t-74.5 -21.5t-55.5 -71.5q-14 -30 -47 -30q-4 0 -8 0.5t-9 1.5l-67 12q29 106 103.5 158.5t176.5 52.5z" />
-<glyph unicode="³" horiz-adv-x="664" d="M502 1636q46 0 83.5 -13t64 -35.5t40.5 -53.5t14 -67q0 -140 -139 -185q57 -17 85 -51.5t28 -89.5q0 -60 -24 -106.5t-63 -78t-89 -48t-102 -16.5q-56 0 -96.5 12.5t-68 37t-44.5 60t-26 82.5l58 24q15 6 28 6q28 0 36 -23q4 -14 11 -30.5t20 -30.5t34.5 -23.5t54.5 -9.5 q34 0 60.5 11t45 29.5t28.5 42.5t10 50q0 49 -35 73.5t-121 24.5l11 89q91 2 132.5 32.5t41.5 92.5q0 44 -26.5 66.5t-70.5 22.5q-50 0 -80.5 -23t-50.5 -66q-14 -31 -43 -31q-4 0 -8 0.5t-9 1.5l-64 12q14 52 40.5 92t62.5 66t79.5 39.5t91.5 13.5z" />
-<glyph unicode="´" horiz-adv-x="568" d="M676 1447l-248 -257q-14 -15 -28.5 -21t-34.5 -6h-102l166 242q14 22 31 32t48 10h168z" />
-<glyph unicode="µ" horiz-adv-x="1026" d="M348 1011l-83 -679q-2 -11 -2 -20.5v-19.5q0 -82 43 -126.5t124 -44.5q70 0 136 37t127 103l93 750h171l-124 -1011h-103q-18 0 -29.5 9t-11.5 27v108q-70 -72 -137.5 -105.5t-147.5 -33.5q-65 0 -112 23.5t-77 66.5v-16q0 -36 -2.5 -72t-6.5 -68l-35 -283h-85 q-32 0 -50.5 16t-18.5 45v6.5t1 6.5l158 1281h172z" />
-<glyph unicode="¶" horiz-adv-x="1339" d="M1417 1433l-19 -153h-220l-181 -1481h-157l182 1481h-277l-182 -1481h-157l106 861q-93 0 -168 25t-127.5 70t-81 108t-28.5 140q0 90 36 168.5t101.5 136.5t157.5 91.5t205 33.5h810z" />
-<glyph unicode="·" horiz-adv-x="547" d="M148 593q0 31 11.5 59t32 48t47.5 32t57 12q31 0 58.5 -12t47.5 -32t32 -48t12 -59q0 -30 -12 -57t-32 -47.5t-47.5 -32t-58.5 -11.5q-30 0 -57 11.5t-47.5 32t-32 47.5t-11.5 57z" />
-<glyph unicode="¸" horiz-adv-x="568" d="M69 -249q6 0 13 -4t17 -8.5t23 -8.5t33 -4q40 0 61.5 20t21.5 50q0 35 -35.5 49.5t-101.5 23.5l58 141h107l-32 -82q74 -17 107.5 -48.5t33.5 -77.5q0 -36 -16.5 -64.5t-46 -48t-70 -30t-88.5 -10.5q-38 0 -71 8.5t-60 23.5l23 53q8 17 23 17z" />
-<glyph unicode="¹" horiz-adv-x="664" d="M240 993h147l54 436l10 44l-121 -92q-12 -9 -26 -9q-11 0 -18.5 4.5t-11.5 10.5l-32 54l245 189h104l-78 -637h121l-11 -93h-395z" />
-<glyph unicode="º" horiz-adv-x="704" d="M470 1448q58 0 104.5 -18.5t79 -53t49.5 -83t17 -108.5q0 -82 -24 -148t-66.5 -112.5t-102.5 -71.5t-132 -25q-59 0 -106 18.5t-79.5 53t-50 83.5t-17.5 109q0 81 24 147t67.5 112.5t104 71.5t132.5 25zM408 931q90 0 134.5 68.5t44.5 185.5q0 75 -32.5 117.5t-95.5 42.5 q-50 0 -84.5 -19t-56 -52.5t-31.5 -80.5t-10 -103q0 -75 32 -117t99 -42z" />
-<glyph unicode="»" horiz-adv-x="858" d="M184 129l-53 27q-23 12 -23 35q0 17 14 39l177 263q16 24 30 35q-13 12 -22 37l-112 263q-6 13 -6 25q0 32 33 48l59 27l182 -388l-2 -22zM460 129l-53 27q-23 12 -23 35q0 17 14 39l177 263q16 24 30 35q-13 12 -22 37l-112 263q-6 13 -6 25q0 32 33 48l59 27l182 -388 l-2 -22z" />
-<glyph unicode="¼" horiz-adv-x="1475" d="M1277 276h110l-8 -73q-2 -11 -9 -18.5t-20 -7.5h-85l-21 -177h-106l22 177h-307q-17 0 -26.5 8t-10.5 20l-4 62l402 461h119zM441 53q-21 -32 -44.5 -42.5t-52.5 -10.5h-70l924 1371q20 29 44.5 44.5t57.5 15.5h71zM208 796h147l54 436l10 44l-121 -92q-14 -9 -26 -9 q-11 0 -18.5 4.5t-11.5 10.5l-32 54l245 189h104l-78 -637h121l-11 -93h-395zM1202 514q2 19 6 41t10 46l-278 -325h232z" />
-<glyph unicode="½" horiz-adv-x="1475" d="M403 53q-21 -32 -44.5 -42.5t-52.5 -10.5h-70l924 1371q20 29 44.5 44.5t57.5 15.5h71zM1167 736q96 0 150.5 -50t54.5 -133q0 -45 -15.5 -83t-41 -71.5t-59 -64.5l-69.5 -64l-187 -170q50 14 92 14h202q18 0 27.5 -9t9.5 -24v-5.5t-2 -19.5l-6 -56h-509l5 42q2 12 8 26 t19 25l250 220q31 27 58 55t47 56.5t31.5 57.5t11.5 59q0 45 -27 69t-69 24q-47 0 -77.5 -26t-52.5 -67q-9 -16 -20 -22.5t-28 -6.5q-4 0 -10.5 0.5t-29.5 4.5l-43 8q29 106 103.5 158.5t176.5 52.5zM213 796h147l54 436l10 44l-121 -92q-12 -9 -26 -9q-11 0 -18.5 4.5 t-11.5 10.5l-32 54l245 189h104l-78 -637h121l-11 -93h-395z" />
-<glyph unicode="¾" horiz-adv-x="1475" d="M1292 276h110l-8 -73q-2 -11 -9 -18.5t-20 -7.5h-85l-21 -177h-106l22 177h-307q-17 0 -26.5 8t-10.5 20l-4 62l402 461h119zM461 53q-21 -32 -44.5 -42.5t-52.5 -10.5h-70l924 1371q20 29 44.5 44.5t57.5 15.5h71zM484 1439q46 0 83.5 -13t64 -35.5t40.5 -53.5t14 -67 q0 -140 -139 -185q57 -17 85 -51.5t28 -89.5q0 -60 -24 -106.5t-63 -78t-89 -48t-102 -16.5q-56 0 -96.5 12.5t-68 37t-44.5 60t-26 82.5l58 24q15 6 28 6q28 0 36 -23q14 -44 40 -69t80 -25q34 0 60.5 11t45 29.5t28.5 42.5t10 50q0 49 -35 73.5t-121 24.5l11 89 q91 2 132.5 32.5t41.5 92.5q0 44 -26.5 66.5t-70.5 22.5q-50 0 -82 -24t-47 -61q-8 -20 -20 -27t-26 -7q-4 0 -9.5 0.5t-21.5 3.5l-49 9q14 52 40.5 92t62.5 66t79.5 39.5t91.5 13.5zM1217 514q2 19 6 41t10 46l-278 -325h232z" />
-<glyph unicode="¿" horiz-adv-x="737" d="M629 -213q-33 -29 -71 -55t-81.5 -45.5t-92.5 -31.5t-105 -12q-68 0 -123.5 19.5t-96 55.5t-62.5 87.5t-22 116.5q0 81 23.5 138.5t60 99t80 71.5l82.5 56.5t68 53.5t38 63l36 155h117l-9 -168q-3 -45 -27.5 -78t-60.5 -62t-77.5 -57t-76.5 -61.5t-58.5 -76.5t-23.5 -102 q0 -41 13 -72.5t35.5 -53t52 -32.5t62.5 -11q55 0 96.5 15t71.5 33t49.5 33t31.5 15q22 0 33 -21zM335 903q0 26 9.5 49t26 40t39 27t49.5 10q26 0 49 -10t40 -27t26.5 -40t9.5 -49q0 -27 -9.5 -49.5t-26.5 -39.5t-40 -26.5t-49 -9.5q-27 0 -49.5 9.5t-39 26.5t-26 39.5 t-9.5 49.5z" />
-<glyph unicode="À" horiz-adv-x="1237" d="M1180 0h-144q-25 0 -39 12.5t-19 32.5l-78 350h-584l-164 -350q-9 -18 -27.5 -31.5t-41.5 -13.5h-146l703 1433h189zM379 531h491l-132 593l-13 59t-12 71q-14 -38 -28.5 -71.5t-27.5 -59.5zM614 1781q15 0 25.5 -1.5t19 -5t15.5 -10t15 -15.5l167 -203h-144 q-20 0 -31 6.5t-26 18.5l-235 210h194z" />
-<glyph unicode="Á" horiz-adv-x="1237" d="M1180 0h-144q-25 0 -39 12.5t-19 32.5l-78 350h-584l-164 -350q-9 -18 -27.5 -31.5t-41.5 -13.5h-146l703 1433h189zM379 531h491l-132 593l-13 59t-12 71q-14 -38 -28.5 -71.5t-27.5 -59.5zM1125 1781l-288 -210q-17 -12 -29.5 -18.5t-32.5 -6.5h-145l218 203 q10 9 18.5 15.5t17.5 10t20 5t27 1.5h194z" />
-<glyph unicode="Â" horiz-adv-x="1237" d="M1180 0h-144q-25 0 -39 12.5t-19 32.5l-78 350h-584l-164 -350q-9 -18 -27.5 -31.5t-41.5 -13.5h-146l703 1433h189zM379 531h491l-132 593l-13 59t-12 71q-14 -38 -28.5 -71.5t-27.5 -59.5zM1046 1546h-131q-11 0 -23 4t-21 9l-104 97l-11 9l-12 -9l-129 -97 q-9 -6 -22.5 -9.5t-25.5 -3.5h-130l246 209h169z" />
-<glyph unicode="Ã" horiz-adv-x="1237" d="M1180 0h-144q-25 0 -39 12.5t-19 32.5l-78 350h-584l-164 -350q-9 -18 -27.5 -31.5t-41.5 -13.5h-146l703 1433h189zM379 531h491l-132 593l-13 59t-12 71q-14 -38 -28.5 -71.5t-27.5 -59.5zM874 1660q30 0 50.5 21t25.5 58h94q-5 -42 -20 -77.5t-38 -62t-54 -41 t-68 -14.5q-32 0 -60 13.5t-53 29.5l-48 29.5t-44 13.5q-30 0 -49.5 -22.5t-24.5 -59.5h-97q5 42 20.5 78t38.5 62.5t54 41t68 14.5q33 0 61 -13t53 -29t47.5 -29t43.5 -13z" />
-<glyph unicode="Ä" horiz-adv-x="1237" d="M1180 0h-144q-25 0 -39 12.5t-19 32.5l-78 350h-584l-164 -350q-9 -18 -27.5 -31.5t-41.5 -13.5h-146l703 1433h189zM379 531h491l-132 593l-13 59t-12 71q-14 -38 -28.5 -71.5t-27.5 -59.5zM671 1665q0 -20 -8.5 -38t-22.5 -31.5t-32.5 -21t-39.5 -7.5q-20 0 -37.5 7.5 t-31.5 21t-22 31.5t-8 38q0 21 8 39.5t22 33t31.5 22.5t37.5 8q21 0 39.5 -8t32.5 -22.5t22.5 -33t8.5 -39.5zM1015 1665q0 -20 -8 -38t-22 -31.5t-32 -21t-39 -7.5t-39 7.5t-32 21t-22 31.5t-8 38q0 21 8 39.5t22 33t32 22.5t39 8t39 -8t32 -22.5t22 -33t8 -39.5z" />
-<glyph unicode="Å" horiz-adv-x="1237" d="M1180 0h-144q-25 0 -39 12.5t-19 32.5l-78 350h-584l-164 -350q-9 -18 -27.5 -31.5t-41.5 -13.5h-146l703 1433h189zM379 531h491l-132 593l-13 59t-12 71q-14 -38 -28.5 -71.5t-27.5 -59.5zM555 1659q0 39 15 72t41 56.5t60 36.5t72 13q39 0 73.5 -13t60.5 -36.5 t41.5 -56.5t15.5 -72q0 -38 -15.5 -70t-41.5 -55t-60.5 -36t-73.5 -13q-38 0 -72 13t-60 36t-41 55t-15 70zM644 1659q0 -43 27 -71.5t74 -28.5q45 0 72.5 28.5t27.5 71.5q0 45 -27.5 73t-72.5 28q-47 0 -74 -28t-27 -73z" />
-<glyph unicode="Æ" horiz-adv-x="1705" d="M772 1433h954l-18 -153h-692v-484h512l-19 -147h-493v-497h554l-20 -152h-710v395h-505l-205 -350q-11 -18 -30 -31.5t-43 -13.5h-145zM415 531h425v749q-14 -36 -29 -68t-32 -61z" />
-<glyph unicode="Ç" horiz-adv-x="1234" d="M507 -249q6 0 13 -4t17 -8.5t23 -8.5t33 -4q40 0 61.5 20t21.5 50q0 35 -35.5 49.5t-101.5 23.5l48 118q-114 11 -204.5 61t-153.5 131t-96 190t-33 237q0 187 58 342t159.5 266.5t238.5 173t295 61.5q76 0 138 -13t113 -38t92.5 -60t77.5 -78l-64 -78q-8 -10 -18 -16.5 t-25 -6.5q-18 0 -38 20t-54.5 43.5t-89 43.5t-141.5 20q-116 0 -217 -46.5t-175 -133t-116.5 -209.5t-42.5 -276q0 -111 29 -199t80.5 -149.5t122.5 -94.5t156 -33q66 0 117 11t90 27t66.5 35.5t48 35.5l34.5 27t25 11q9 0 15 -3.5t10 -8.5l65 -81q-87 -94 -198.5 -149.5 t-257.5 -63.5l-22 -58q74 -17 107.5 -48.5t33.5 -77.5q0 -36 -16.5 -64.5t-46 -48t-70 -30t-88.5 -10.5q-38 0 -71 8.5t-60 23.5l23 53q8 17 23 17z" />
-<glyph unicode="È" horiz-adv-x="1067" d="M1070 1280h-627l-60 -483h508l-19 -147h-507l-61 -498h629l-19 -152h-817l177 1433h815zM571 1781q15 0 25.5 -1.5t19 -5t15.5 -10t15 -15.5l167 -203h-144q-20 0 -31 6.5t-26 18.5l-235 210h194z" />
-<glyph unicode="É" horiz-adv-x="1067" d="M1070 1280h-627l-60 -483h508l-19 -147h-507l-61 -498h629l-19 -152h-817l177 1433h815zM1066 1781l-288 -210q-17 -12 -29.5 -18.5t-32.5 -6.5h-145l218 203q10 9 18.5 15.5t17.5 10t20 5t27 1.5h194z" />
-<glyph unicode="Ê" horiz-adv-x="1067" d="M1070 1280h-627l-60 -483h508l-19 -147h-507l-61 -498h629l-19 -152h-817l177 1433h815zM1003 1546h-131q-11 0 -23 4t-21 9l-104 97l-11 9l-12 -9l-129 -97q-9 -6 -22.5 -9.5t-25.5 -3.5h-130l246 209h169z" />
-<glyph unicode="Ë" horiz-adv-x="1067" d="M1070 1280h-627l-60 -483h508l-19 -147h-507l-61 -498h629l-19 -152h-817l177 1433h815zM628 1665q0 -20 -8.5 -38t-22.5 -31.5t-32.5 -21t-39.5 -7.5q-20 0 -37.5 7.5t-31.5 21t-22 31.5t-8 38q0 21 8 39.5t22 33t31.5 22.5t37.5 8q21 0 39.5 -8t32.5 -22.5t22.5 -33 t8.5 -39.5zM972 1665q0 -20 -8 -38t-22 -31.5t-32 -21t-39 -7.5t-39 7.5t-32 21t-22 31.5t-8 38q0 21 8 39.5t22 33t32 22.5t39 8t39 -8t32 -22.5t22 -33t8 -39.5z" />
-<glyph unicode="Ì" horiz-adv-x="566" d="M317 0h-188l175 1433h188zM280 1781q15 0 25.5 -1.5t19 -5t15.5 -10t15 -15.5l167 -203h-144q-20 0 -31 6.5t-26 18.5l-235 210h194z" />
-<glyph unicode="Í" horiz-adv-x="566" d="M317 0h-188l175 1433h188zM775 1781l-288 -210q-17 -12 -29.5 -18.5t-32.5 -6.5h-145l218 203q10 9 18.5 15.5t17.5 10t20 5t27 1.5h194z" />
-<glyph unicode="Î" horiz-adv-x="566" d="M317 0h-188l175 1433h188zM712 1546h-131q-11 0 -23 4t-21 9l-104 97l-11 9l-12 -9l-129 -97q-9 -6 -22.5 -9.5t-25.5 -3.5h-130l246 209h169z" />
-<glyph unicode="Ï" horiz-adv-x="566" d="M317 0h-188l175 1433h188zM337 1665q0 -20 -8.5 -38t-22.5 -31.5t-32.5 -21t-39.5 -7.5q-20 0 -37.5 7.5t-31.5 21t-22 31.5t-8 38q0 21 8 39.5t22 33t31.5 22.5t37.5 8q21 0 39.5 -8t32.5 -22.5t22.5 -33t8.5 -39.5zM681 1665q0 -20 -8 -38t-22 -31.5t-32 -21t-39 -7.5 t-39 7.5t-32 21t-22 31.5t-8 38q0 21 8 39.5t22 33t32 22.5t39 8t39 -8t32 -22.5t22 -33t8 -39.5z" />
-<glyph unicode="Ð" horiz-adv-x="1452" d="M83 777h179l80 656h494q132 0 238 -45t180.5 -126.5t114 -195t39.5 -249.5q0 -183 -56 -333.5t-156 -258t-236.5 -166.5t-298.5 -59h-494l81 667h-179zM1216 813q0 108 -27.5 195t-78.5 147.5t-125 93t-167 32.5h-307l-62 -504h348l-13 -110h-348l-63 -516h306 q120 0 218.5 45.5t169.5 131t110 208t39 277.5z" />
-<glyph unicode="Ñ" horiz-adv-x="1391" d="M370 1433q25 0 36.5 -6t23.5 -26l618 -1095q2 23 4 43.5l4 39.5l128 1044h165l-176 -1433h-94q-23 0 -38 7.5t-26 27.5l-617 1096q0 -5 -0.5 -14t-1.5 -19l-2 -20.5t-2 -17.5l-130 -1060h-165l177 1433h96v0zM949 1660q30 0 50.5 21t25.5 58h94q-5 -42 -20 -77.5t-38 -62 t-54 -41t-68 -14.5q-32 0 -60 13.5t-53 29.5l-48 29.5t-44 13.5q-30 0 -49.5 -22.5t-24.5 -59.5h-97q5 42 20.5 78t38.5 62.5t54 41t68 14.5q33 0 61 -13t53 -29t47.5 -29t43.5 -13z" />
-<glyph unicode="Ò" horiz-adv-x="1465" d="M1422 818q0 -122 -26 -231t-73.5 -201.5t-115 -166.5t-151 -126t-181 -80t-204.5 -28q-132 0 -237.5 47t-180 130.5t-114 198.5t-39.5 252q0 183 57 336.5t157.5 264.5t238 173t298.5 62q132 0 237.5 -47.5t180 -131.5t114 -199.5t39.5 -252.5zM1230 814q0 109 -28 197.5 t-79.5 150.5t-126 96t-167.5 34q-118 0 -217 -47.5t-170 -135.5t-111 -212.5t-40 -278.5q0 -109 28 -197t79.5 -150t125.5 -95.5t167 -33.5q120 0 219 47t170 134.5t110.5 212t39.5 278.5zM725 1781q15 0 25.5 -1.5t19 -5t15.5 -10t15 -15.5l167 -203h-144q-20 0 -31 6.5 t-26 18.5l-235 210h194z" />
-<glyph unicode="Ó" horiz-adv-x="1465" d="M1422 818q0 -122 -26 -231t-73.5 -201.5t-115 -166.5t-151 -126t-181 -80t-204.5 -28q-132 0 -237.5 47t-180 130.5t-114 198.5t-39.5 252q0 183 57 336.5t157.5 264.5t238 173t298.5 62q132 0 237.5 -47.5t180 -131.5t114 -199.5t39.5 -252.5zM1230 814q0 109 -28 197.5 t-79.5 150.5t-126 96t-167.5 34q-118 0 -217 -47.5t-170 -135.5t-111 -212.5t-40 -278.5q0 -109 28 -197t79.5 -150t125.5 -95.5t167 -33.5q120 0 219 47t170 134.5t110.5 212t39.5 278.5zM1220 1781l-288 -210q-17 -12 -29.5 -18.5t-32.5 -6.5h-145l218 203q10 9 18.5 15.5 t17.5 10t20 5t27 1.5h194z" />
-<glyph unicode="Ô" horiz-adv-x="1465" d="M1422 818q0 -122 -26 -231t-73.5 -201.5t-115 -166.5t-151 -126t-181 -80t-204.5 -28q-132 0 -237.5 47t-180 130.5t-114 198.5t-39.5 252q0 183 57 336.5t157.5 264.5t238 173t298.5 62q132 0 237.5 -47.5t180 -131.5t114 -199.5t39.5 -252.5zM1230 814q0 109 -28 197.5 t-79.5 150.5t-126 96t-167.5 34q-118 0 -217 -47.5t-170 -135.5t-111 -212.5t-40 -278.5q0 -109 28 -197t79.5 -150t125.5 -95.5t167 -33.5q120 0 219 47t170 134.5t110.5 212t39.5 278.5zM1157 1546h-131q-11 0 -23 4t-21 9l-104 97l-11 9l-12 -9l-129 -97 q-9 -6 -22.5 -9.5t-25.5 -3.5h-130l246 209h169z" />
-<glyph unicode="Õ" horiz-adv-x="1465" d="M1422 818q0 -122 -26 -231t-73.5 -201.5t-115 -166.5t-151 -126t-181 -80t-204.5 -28q-132 0 -237.5 47t-180 130.5t-114 198.5t-39.5 252q0 183 57 336.5t157.5 264.5t238 173t298.5 62q132 0 237.5 -47.5t180 -131.5t114 -199.5t39.5 -252.5zM1230 814q0 109 -28 197.5 t-79.5 150.5t-126 96t-167.5 34q-118 0 -217 -47.5t-170 -135.5t-111 -212.5t-40 -278.5q0 -109 28 -197t79.5 -150t125.5 -95.5t167 -33.5q120 0 219 47t170 134.5t110.5 212t39.5 278.5zM985 1660q30 0 50.5 21t25.5 58h94q-5 -42 -20 -77.5t-38 -62t-54 -41t-68 -14.5 q-32 0 -60 13.5t-53 29.5l-48 29.5t-44 13.5q-30 0 -49.5 -22.5t-24.5 -59.5h-97q5 42 20.5 78t38.5 62.5t54 41t68 14.5q33 0 61 -13t53 -29t47.5 -29t43.5 -13z" />
-<glyph unicode="Ö" horiz-adv-x="1465" d="M1422 818q0 -122 -26 -231t-73.5 -201.5t-115 -166.5t-151 -126t-181 -80t-204.5 -28q-132 0 -237.5 47t-180 130.5t-114 198.5t-39.5 252q0 183 57 336.5t157.5 264.5t238 173t298.5 62q132 0 237.5 -47.5t180 -131.5t114 -199.5t39.5 -252.5zM1230 814q0 109 -28 197.5 t-79.5 150.5t-126 96t-167.5 34q-118 0 -217 -47.5t-170 -135.5t-111 -212.5t-40 -278.5q0 -109 28 -197t79.5 -150t125.5 -95.5t167 -33.5q120 0 219 47t170 134.5t110.5 212t39.5 278.5zM782 1665q0 -20 -8.5 -38t-22.5 -31.5t-32.5 -21t-39.5 -7.5q-20 0 -37.5 7.5 t-31.5 21t-22 31.5t-8 38q0 21 8 39.5t22 33t31.5 22.5t37.5 8q21 0 39.5 -8t32.5 -22.5t22.5 -33t8.5 -39.5zM1126 1665q0 -20 -8 -38t-22 -31.5t-32 -21t-39 -7.5t-39 7.5t-32 21t-22 31.5t-8 38q0 21 8 39.5t22 33t32 22.5t39 8t39 -8t32 -22.5t22 -33t8 -39.5z" />
-<glyph unicode="×" d="M1081 1016l-388 -345l312 -355l-102 -93l-313 356l-402 -358l-80 93l401 357l-304 347l103 93l304 -348l388 346z" />
-<glyph unicode="Ø" horiz-adv-x="1464" d="M1422 818q0 -122 -26 -231t-73.5 -201.5t-115 -166.5t-151 -126t-181 -80t-204.5 -28q-97 0 -179 25t-149 72l-109 -137q-24 -30 -54.5 -42t-57.5 -12h-74l211 265q-77 84 -118 200.5t-41 256.5q0 183 57 336.5t157.5 264.5t238 173t298.5 62q104 0 191.5 -29.5 t156.5 -83.5l89 112q11 14 20 23.5t18.5 15t21 8t27.5 2.5h96l-192 -240q69 -84 106 -195.5t37 -243.5zM291 618q0 -97 21.5 -176.5t62.5 -139.5l713 895q-50 46 -115 70.5t-144 24.5q-118 0 -217 -47.5t-170 -135.5t-111 -212.5t-40 -278.5zM1230 814q0 88 -18 161.5 t-52 132.5l-708 -889q48 -38 107.5 -57.5t131.5 -19.5q120 0 219 47t170 134.5t110.5 212t39.5 278.5z" />
-<glyph unicode="Ù" horiz-adv-x="1343" d="M630 147q80 0 147.5 31t118 85.5t83 130.5t43.5 166l107 873h187l-106 -873q-15 -123 -64.5 -228.5t-127.5 -183t-181.5 -121.5t-226.5 -44q-111 0 -197 36t-145.5 100.5t-90.5 153.5t-31 195q0 45 6 92l106 873h187l-107 -872q-2 -20 -3.5 -39t-1.5 -37q0 -75 19.5 -137 t57 -107t93 -69.5t127.5 -24.5zM669 1781q15 0 25.5 -1.5t19 -5t15.5 -10t15 -15.5l167 -203h-144q-20 0 -31 6.5t-26 18.5l-235 210h194z" />
-<glyph unicode="Ú" horiz-adv-x="1343" d="M630 147q80 0 147.5 31t118 85.5t83 130.5t43.5 166l107 873h187l-106 -873q-15 -123 -64.5 -228.5t-127.5 -183t-181.5 -121.5t-226.5 -44q-111 0 -197 36t-145.5 100.5t-90.5 153.5t-31 195q0 45 6 92l106 873h187l-107 -872q-2 -20 -3.5 -39t-1.5 -37q0 -75 19.5 -137 t57 -107t93 -69.5t127.5 -24.5zM1164 1781l-288 -210q-17 -12 -29.5 -18.5t-32.5 -6.5h-145l218 203q10 9 18.5 15.5t17.5 10t20 5t27 1.5h194z" />
-<glyph unicode="Û" horiz-adv-x="1343" d="M630 147q80 0 147.5 31t118 85.5t83 130.5t43.5 166l107 873h187l-106 -873q-15 -123 -64.5 -228.5t-127.5 -183t-181.5 -121.5t-226.5 -44q-111 0 -197 36t-145.5 100.5t-90.5 153.5t-31 195q0 45 6 92l106 873h187l-107 -872q-2 -20 -3.5 -39t-1.5 -37q0 -75 19.5 -137 t57 -107t93 -69.5t127.5 -24.5zM1101 1546h-131q-11 0 -23 4t-21 9l-104 97l-11 9l-12 -9l-129 -97q-9 -6 -22.5 -9.5t-25.5 -3.5h-130l246 209h169z" />
-<glyph unicode="Ü" horiz-adv-x="1343" d="M630 147q80 0 147.5 31t118 85.5t83 130.5t43.5 166l107 873h187l-106 -873q-15 -123 -64.5 -228.5t-127.5 -183t-181.5 -121.5t-226.5 -44q-111 0 -197 36t-145.5 100.5t-90.5 153.5t-31 195q0 45 6 92l106 873h187l-107 -872q-2 -20 -3.5 -39t-1.5 -37q0 -75 19.5 -137 t57 -107t93 -69.5t127.5 -24.5zM726 1665q0 -20 -8.5 -38t-22.5 -31.5t-32.5 -21t-39.5 -7.5q-20 0 -37.5 7.5t-31.5 21t-22 31.5t-8 38q0 21 8 39.5t22 33t31.5 22.5t37.5 8q21 0 39.5 -8t32.5 -22.5t22.5 -33t8.5 -39.5zM1070 1665q0 -20 -8 -38t-22 -31.5t-32 -21 t-39 -7.5t-39 7.5t-32 21t-22 31.5t-8 38q0 21 8 39.5t22 33t32 22.5t39 8t39 -8t32 -22.5t22 -33t8 -39.5z" />
-<glyph unicode="Ý" horiz-adv-x="1165" d="M686 573l-71 -573h-187l71 571l-378 862h166q25 0 38 -12.5t21 -31.5l238 -574q10 -29 17 -55t12 -52q12 26 26.5 52l31.5 55l381 574q11 16 27.5 30t40.5 14h155zM1090 1780l-288 -210q-17 -12 -29.5 -18.5t-32.5 -6.5h-145l218 203q10 9 18.5 15.5t17.5 10t20 5t27 1.5 h194z" />
-<glyph unicode="Þ" horiz-adv-x="1128" d="M503 1165h209q114 0 197.5 -27t138.5 -76.5t82 -119t27 -154.5q0 -113 -37 -207.5t-108 -163t-174 -106.5t-236 -38h-209l-33 -273h-186l175 1433h187zM485 1018l-74 -597h209q85 0 150 26t109 72.5t67 111t23 140.5q0 116 -68 181.5t-208 65.5h-208z" />
-<glyph unicode="ß" horiz-adv-x="1099" d="M729 1453q89 0 152 -27t103.5 -68.5t59.5 -92t19 -97.5q0 -68 -23.5 -116t-58.5 -84t-75.5 -63l-75.5 -52.5t-58.5 -53.5t-23.5 -66q0 -35 21.5 -58.5t53.5 -44t69.5 -42t69.5 -52t53.5 -74.5t21.5 -109q0 -86 -31 -154.5t-83.5 -116t-122.5 -73t-149 -25.5 q-89 0 -158 34.5t-118 88.5l48 66q9 12 20.5 19t28.5 7t34 -14.5t39.5 -31.5t54.5 -31.5t80 -14.5q42 0 77.5 15.5t61 42.5t40 63.5t14.5 78.5q0 48 -23 79.5t-57 54.5t-74.5 43t-74.5 46t-57 62t-23 92q0 62 24.5 106t61.5 78.5t80.5 63.5t80.5 61t61.5 72t24.5 96 q0 28 -10.5 57.5t-33 53.5t-59 39t-88.5 15q-62 0 -116.5 -33.5t-97 -91.5t-71.5 -134.5t-39 -161.5l-108 -872l-46 -207q-17 -75 -92 -75h-70l136 1111l-110 14q-40 5 -40 38l8 77h163q23 92 70 175.5t113 147.5t148 101.5t175 37.5z" />
-<glyph unicode="à" horiz-adv-x="1012" d="M817 0h-92q-35 0 -47.5 18t-12.5 44l18 205q-36 -64 -77.5 -116t-88 -88.5t-97.5 -56.5t-106 -20q-60 0 -109 23.5t-83.5 69t-53.5 112t-19 152.5q0 90 22.5 175.5t64 161.5t99.5 139.5t129.5 110t153.5 72t172 25.5q65 0 126.5 -10.5t121.5 -36.5zM381 134q49 0 96 30.5 t89 84.5t78.5 128.5t64.5 163.5l43 348q-22 5 -43.5 6.5t-42.5 1.5q-60 0 -116 -19.5t-105 -54.5t-89 -83.5t-68.5 -106.5t-44.5 -123.5t-16 -134.5q0 -241 154 -241zM602 1447q31 0 45 -10t24 -32l107 -242h-99q-20 0 -32 6t-23 21l-185 257h163z" />
-<glyph unicode="á" horiz-adv-x="1012" d="M817 0h-92q-35 0 -47.5 18t-12.5 44l18 205q-36 -64 -77.5 -116t-88 -88.5t-97.5 -56.5t-106 -20q-60 0 -109 23.5t-83.5 69t-53.5 112t-19 152.5q0 90 22.5 175.5t64 161.5t99.5 139.5t129.5 110t153.5 72t172 25.5q65 0 126.5 -10.5t121.5 -36.5zM381 134q49 0 96 30.5 t89 84.5t78.5 128.5t64.5 163.5l43 348q-22 5 -43.5 6.5t-42.5 1.5q-60 0 -116 -19.5t-105 -54.5t-89 -83.5t-68.5 -106.5t-44.5 -123.5t-16 -134.5q0 -241 154 -241zM976 1447l-248 -257q-14 -15 -28.5 -21t-34.5 -6h-102l166 242q14 22 31 32t48 10h168z" />
-<glyph unicode="â" horiz-adv-x="1012" d="M817 0h-92q-35 0 -47.5 18t-12.5 44l18 205q-36 -64 -77.5 -116t-88 -88.5t-97.5 -56.5t-106 -20q-60 0 -109 23.5t-83.5 69t-53.5 112t-19 152.5q0 90 22.5 175.5t64 161.5t99.5 139.5t129.5 110t153.5 72t172 25.5q65 0 126.5 -10.5t121.5 -36.5zM381 134q49 0 96 30.5 t89 84.5t78.5 128.5t64.5 163.5l43 348q-22 5 -43.5 6.5t-42.5 1.5q-60 0 -116 -19.5t-105 -54.5t-89 -83.5t-68.5 -106.5t-44.5 -123.5t-16 -134.5q0 -241 154 -241zM944 1169h-114q-11 0 -21 4t-15 10l-100 128l-6.5 6.5t-6.5 8.5q-5 -5 -9 -8.5t-8 -6.5l-133 -128 q-6 -5 -17 -9.5t-23 -4.5h-119l239 262h160z" />
-<glyph unicode="ã" horiz-adv-x="1012" d="M817 0h-92q-35 0 -47.5 18t-12.5 44l18 205q-36 -64 -77.5 -116t-88 -88.5t-97.5 -56.5t-106 -20q-60 0 -109 23.5t-83.5 69t-53.5 112t-19 152.5q0 90 22.5 175.5t64 161.5t99.5 139.5t129.5 110t153.5 72t172 25.5q65 0 126.5 -10.5t121.5 -36.5zM381 134q49 0 96 30.5 t89 84.5t78.5 128.5t64.5 163.5l43 348q-22 5 -43.5 6.5t-42.5 1.5q-60 0 -116 -19.5t-105 -54.5t-89 -83.5t-68.5 -106.5t-44.5 -123.5t-16 -134.5q0 -241 154 -241zM779 1321q65 0 79 88h105q-6 -47 -22.5 -85.5t-41.5 -66t-58 -43t-70 -15.5q-32 0 -58.5 14.5t-49 32 l-43 32t-41.5 14.5q-32 0 -52 -22.5t-26 -66.5h-106q6 46 23 85t42.5 67t58 43.5t69.5 15.5q33 0 59 -14.5t48.5 -32l42.5 -32t41 -14.5z" />
-<glyph unicode="ä" horiz-adv-x="1012" d="M817 0h-92q-35 0 -47.5 18t-12.5 44l18 205q-36 -64 -77.5 -116t-88 -88.5t-97.5 -56.5t-106 -20q-60 0 -109 23.5t-83.5 69t-53.5 112t-19 152.5q0 90 22.5 175.5t64 161.5t99.5 139.5t129.5 110t153.5 72t172 25.5q65 0 126.5 -10.5t121.5 -36.5zM381 134q49 0 96 30.5 t89 84.5t78.5 128.5t64.5 163.5l43 348q-22 5 -43.5 6.5t-42.5 1.5q-60 0 -116 -19.5t-105 -54.5t-89 -83.5t-68.5 -106.5t-44.5 -123.5t-16 -134.5q0 -241 154 -241zM610 1311q0 -23 -9 -43t-25 -35t-36.5 -24t-43.5 -9t-43 9t-35 24t-24 35t-9 43t9 44t24 36.5t35 24.5 t43 9t43.5 -9t36.5 -24.5t25 -36.5t9 -44zM969 1311q0 -23 -9 -43t-24.5 -35t-36 -24t-43.5 -9t-43.5 9t-35.5 24t-24 35t-9 43t9 44t24 36.5t35.5 24.5t43.5 9t43.5 -9t36 -24.5t24.5 -36.5t9 -44z" />
-<glyph unicode="å" horiz-adv-x="1012" d="M817 0h-92q-35 0 -47.5 18t-12.5 44l18 205q-36 -64 -77.5 -116t-88 -88.5t-97.5 -56.5t-106 -20q-60 0 -109 23.5t-83.5 69t-53.5 112t-19 152.5q0 90 22.5 175.5t64 161.5t99.5 139.5t129.5 110t153.5 72t172 25.5q65 0 126.5 -10.5t121.5 -36.5zM381 134q49 0 96 30.5 t89 84.5t78.5 128.5t64.5 163.5l43 348q-22 5 -43.5 6.5t-42.5 1.5q-60 0 -116 -19.5t-105 -54.5t-89 -83.5t-68.5 -106.5t-44.5 -123.5t-16 -134.5q0 -241 154 -241zM496 1315q0 42 16 76t43.5 59t63.5 38.5t76 13.5q41 0 77.5 -13.5t64.5 -38.5t44 -59t16 -76 q0 -41 -16 -75t-44 -58t-64.5 -37.5t-77.5 -13.5q-40 0 -76 13.5t-63.5 37.5t-43.5 58t-16 75zM596 1315q0 -44 27 -72t74 -28q45 0 72.5 28t27.5 72q0 45 -27.5 73t-72.5 28q-47 0 -74 -28t-27 -73z" />
-<glyph unicode="æ" horiz-adv-x="1448" d="M1118 1027q60 0 111 -18.5t88.5 -51.5t58.5 -77.5t21 -95.5q0 -57 -27.5 -111t-96 -96.5t-185.5 -70t-295 -30.5q-1 -10 -1 -20v-20q0 -155 61 -232.5t169 -77.5q48 0 86 10t67.5 24.5t52 32l41.5 32t34.5 24.5t31.5 10q20 0 34 -17l44 -55q-51 -52 -99.5 -90 t-99.5 -62.5t-106.5 -36.5t-119.5 -12q-105 0 -184.5 57t-118.5 171q-32 -62 -76.5 -105.5t-94.5 -71.5t-103 -40.5t-102 -12.5q-133 0 -205 59.5t-72 179.5q0 71 32 135t104 113.5t189 80.5t288 36l6.5 51t3.5 33.5t1.5 22t0.5 15.5q0 179 -154 179q-60 0 -102.5 -16.5 t-74 -37l-55.5 -37t-46 -16.5q-18 0 -30 9t-18 23l-23 55q87 81 175.5 121t192.5 40q108 0 169 -48t83 -133q60 84 146.5 131t197.5 47zM632 479q-120 -5 -203 -23.5t-134.5 -48.5t-74 -70.5t-22.5 -90.5q0 -72 39 -106.5t104 -34.5q52 0 98.5 18.5t84 55.5t63.5 92.5 t35 129.5zM1096 900q-60 0 -109 -22.5t-85.5 -64.5t-61.5 -101t-37 -131q130 7 214.5 25t134 43.5t69.5 57.5t20 68q0 57 -37.5 91t-107.5 34z" />
-<glyph unicode="ç" horiz-adv-x="868" d="M281 -249q6 0 13 -4t17 -8.5t23 -8.5t33 -4q40 0 61.5 20t21.5 50q0 35 -35.5 49.5t-101.5 23.5l50 121q-74 10 -130.5 43.5t-94.5 87t-57.5 124.5t-19.5 155q0 123 38.5 236t107.5 200t164 139t209 52q100 0 168 -35.5t119 -103.5l-56 -67q-6 -8 -15 -13t-20 -5 q-14 0 -27.5 12.5t-35 28t-54 28t-83.5 12.5q-69 0 -130.5 -37.5t-107.5 -102.5t-72.5 -154t-26.5 -191q0 -62 14 -112.5t42 -86t68.5 -55t94.5 -19.5q45 0 80 9.5t62 23.5t47.5 30.5l37 30.5t30 23.5t27.5 9.5q20 0 34 -17l44 -54q-47 -51 -89 -87t-84 -58.5t-85.5 -34 t-92.5 -14.5l-23 -60q74 -17 107.5 -48.5t33.5 -77.5q0 -36 -16.5 -64.5t-46 -48t-70 -30t-88.5 -10.5q-38 0 -71 8.5t-60 23.5l23 53q8 17 23 17z" />
-<glyph unicode="è" horiz-adv-x="924" d="M882 796q0 -66 -27 -121.5t-99 -100t-198 -77.5t-324 -53q-1 -11 -1 -21.5v-21.5q0 -134 58.5 -204.5t176.5 -70.5q48 0 85.5 10t67 24.5t52 32l41.5 32t35 24.5t32 10q18 0 33 -17l44 -55q-51 -53 -99.5 -90.5t-99.5 -62.5t-106.5 -36.5t-119.5 -11.5q-87 0 -156 29 t-117 82.5t-74 129.5t-26 170q0 78 16.5 155.5t48 147.5t77 130t104 103.5t129 68.5t151.5 25q77 0 133 -22t92 -56t53.5 -75t17.5 -78zM576 899q-63 0 -116 -26t-94 -71.5t-70 -107t-45 -132.5q154 19 247 43.5t143 53t66 61.5t16 69q0 18 -8 37.5t-25.5 35.5t-45.5 26.5 t-68 10.5zM493 1447q31 0 45 -10t24 -32l107 -242h-99q-20 0 -32 6t-23 21l-185 257h163z" />
-<glyph unicode="é" horiz-adv-x="924" d="M882 796q0 -66 -27 -121.5t-99 -100t-198 -77.5t-324 -53q-1 -11 -1 -21.5v-21.5q0 -134 58.5 -204.5t176.5 -70.5q48 0 85.5 10t67 24.5t52 32l41.5 32t35 24.5t32 10q18 0 33 -17l44 -55q-51 -53 -99.5 -90.5t-99.5 -62.5t-106.5 -36.5t-119.5 -11.5q-87 0 -156 29 t-117 82.5t-74 129.5t-26 170q0 78 16.5 155.5t48 147.5t77 130t104 103.5t129 68.5t151.5 25q77 0 133 -22t92 -56t53.5 -75t17.5 -78zM576 899q-63 0 -116 -26t-94 -71.5t-70 -107t-45 -132.5q154 19 247 43.5t143 53t66 61.5t16 69q0 18 -8 37.5t-25.5 35.5t-45.5 26.5 t-68 10.5zM898 1447l-248 -257q-14 -15 -28.5 -21t-34.5 -6h-102l166 242q14 22 31 32t48 10h168z" />
-<glyph unicode="ê" horiz-adv-x="924" d="M882 796q0 -66 -27 -121.5t-99 -100t-198 -77.5t-324 -53q-1 -11 -1 -21.5v-21.5q0 -134 58.5 -204.5t176.5 -70.5q48 0 85.5 10t67 24.5t52 32l41.5 32t35 24.5t32 10q18 0 33 -17l44 -55q-51 -53 -99.5 -90.5t-99.5 -62.5t-106.5 -36.5t-119.5 -11.5q-87 0 -156 29 t-117 82.5t-74 129.5t-26 170q0 78 16.5 155.5t48 147.5t77 130t104 103.5t129 68.5t151.5 25q77 0 133 -22t92 -56t53.5 -75t17.5 -78zM576 899q-63 0 -116 -26t-94 -71.5t-70 -107t-45 -132.5q154 19 247 43.5t143 53t66 61.5t16 69q0 18 -8 37.5t-25.5 35.5t-45.5 26.5 t-68 10.5zM875 1169h-114q-11 0 -21 4t-15 10l-100 128l-6.5 6.5t-6.5 8.5q-5 -5 -9 -8.5t-8 -6.5l-133 -128q-6 -5 -17 -9.5t-23 -4.5h-119l239 262h160z" />
-<glyph unicode="ë" horiz-adv-x="924" d="M882 796q0 -66 -27 -121.5t-99 -100t-198 -77.5t-324 -53q-1 -11 -1 -21.5v-21.5q0 -134 58.5 -204.5t176.5 -70.5q48 0 85.5 10t67 24.5t52 32l41.5 32t35 24.5t32 10q18 0 33 -17l44 -55q-51 -53 -99.5 -90.5t-99.5 -62.5t-106.5 -36.5t-119.5 -11.5q-87 0 -156 29 t-117 82.5t-74 129.5t-26 170q0 78 16.5 155.5t48 147.5t77 130t104 103.5t129 68.5t151.5 25q77 0 133 -22t92 -56t53.5 -75t17.5 -78zM576 899q-63 0 -116 -26t-94 -71.5t-70 -107t-45 -132.5q154 19 247 43.5t143 53t66 61.5t16 69q0 18 -8 37.5t-25.5 35.5t-45.5 26.5 t-68 10.5zM541 1311q0 -23 -9 -43t-25 -35t-36.5 -24t-43.5 -9t-43 9t-35 24t-24 35t-9 43t9 44t24 36.5t35 24.5t43 9t43.5 -9t36.5 -24.5t25 -36.5t9 -44zM900 1311q0 -23 -9 -43t-24.5 -35t-36 -24t-43.5 -9t-43.5 9t-35.5 24t-24 35t-9 43t9 44t24 36.5t35.5 24.5 t43.5 9t43.5 -9t36 -24.5t24.5 -36.5t9 -44z" />
-<glyph unicode="ì" horiz-adv-x="489" d="M393 1013l-122 -1013h-175l122 1013h175zM225 1447q31 0 45 -10t24 -32l107 -242h-99q-20 0 -32 6t-23 21l-185 257h163z" />
-<glyph unicode="í" horiz-adv-x="489" d="M393 1013l-122 -1013h-175l122 1013h175zM630 1447l-248 -257q-14 -15 -28.5 -21t-34.5 -6h-102l166 242q14 22 31 32t48 10h168z" />
-<glyph unicode="î" horiz-adv-x="489" d="M393 1013l-122 -1013h-175l122 1013h175zM607 1169h-114q-11 0 -21 4t-15 10l-100 128l-6.5 6.5t-6.5 8.5q-5 -5 -9 -8.5t-8 -6.5l-133 -128q-6 -5 -17 -9.5t-23 -4.5h-119l239 262h160z" />
-<glyph unicode="ï" horiz-adv-x="489" d="M393 1013l-122 -1013h-175l122 1013h175zM273 1311q0 -23 -9 -43t-25 -35t-36.5 -24t-43.5 -9t-43 9t-35 24t-24 35t-9 43t9 44t24 36.5t35 24.5t43 9t43.5 -9t36.5 -24.5t25 -36.5t9 -44zM632 1311q0 -23 -9 -43t-24.5 -35t-36 -24t-43.5 -9t-43.5 9t-35.5 24t-24 35 t-9 43t9 44t24 36.5t35.5 24.5t43.5 9t43.5 -9t36 -24.5t24.5 -36.5t9 -44z" />
-<glyph unicode="ð" horiz-adv-x="1022" d="M458 1065q-3 5 -4 9.5t-1 9.5q0 19 15 28l129 94q-41 24 -89 42.5t-103 35.5q-37 11 -37 41q0 13 8 32l25 55q88 -16 169.5 -48t151.5 -83l174 124l29 -57q6 -9 6 -21q0 -16 -19 -30l-113 -83q81 -84 128 -204.5t47 -285.5t-35 -300.5t-103 -232.5t-168 -150.5 t-230 -53.5q-82 0 -151 28.5t-119.5 82t-78.5 129t-28 170.5q0 108 34.5 204.5t97 168.5t149.5 114.5t192 42.5q97 0 175 -45.5t126 -137.5q-2 136 -40 234.5t-114 167.5l-190 -138zM458 121q65 0 120.5 25.5t99.5 79.5t75 138.5t47 202.5q-9 44 -28 84.5t-49 72t-72.5 50.5 t-99.5 19q-75 0 -134.5 -30t-100.5 -82.5t-62.5 -123t-21.5 -151.5q0 -67 17 -120t47.5 -89.5t72 -56t89.5 -19.5z" />
-<glyph unicode="ñ" horiz-adv-x="1054" d="M72 0l121 1014h89q60 0 60 -60l-15 -196q81 134 182.5 202t210.5 68q113 0 175.5 -76t62.5 -222q0 -20 -1 -41t-4 -44l-76 -645h-178l76 645q2 20 3.5 38.5t1.5 35.5q0 82 -30.5 121.5t-95.5 39.5q-48 0 -97.5 -26t-95.5 -73.5t-85.5 -115t-67.5 -150.5l-58 -515h-178z M746 1323q65 0 79 88h105q-6 -47 -22.5 -85.5t-41.5 -66t-58 -43t-70 -15.5q-32 0 -58.5 14.5t-49 32l-43 32t-41.5 14.5q-32 0 -52 -22.5t-26 -66.5h-106q6 46 23 85t42.5 67t58 43.5t69.5 15.5q33 0 59 -14.5t48.5 -32l42.5 -32t41 -14.5z" />
-<glyph unicode="ò" horiz-adv-x="1007" d="M449 125q73 0 133 40t102 106.5t65 153.5t23 182q0 140 -55 211t-159 71q-74 0 -133.5 -39.5t-101.5 -106t-65 -153.5t-23 -182q0 -140 54.5 -211.5t159.5 -71.5zM433 -14q-83 0 -152 28.5t-119 82.5t-78 132t-28 178q0 128 40 241t109.5 198t164 134t204.5 49 q83 0 152 -28.5t119 -82.5t78 -132.5t28 -177.5q0 -127 -40 -240t-109.5 -198t-164.5 -134.5t-204 -49.5zM486 1449q31 0 45 -10t24 -32l107 -242h-99q-20 0 -32 6t-23 21l-185 257h163z" />
-<glyph unicode="ó" horiz-adv-x="1007" d="M449 125q73 0 133 40t102 106.5t65 153.5t23 182q0 140 -55 211t-159 71q-74 0 -133.5 -39.5t-101.5 -106t-65 -153.5t-23 -182q0 -140 54.5 -211.5t159.5 -71.5zM433 -14q-83 0 -152 28.5t-119 82.5t-78 132t-28 178q0 128 40 241t109.5 198t164 134t204.5 49 q83 0 152 -28.5t119 -82.5t78 -132.5t28 -177.5q0 -127 -40 -240t-109.5 -198t-164.5 -134.5t-204 -49.5zM890 1449l-248 -257q-14 -15 -28.5 -21t-34.5 -6h-102l166 242q14 22 31 32t48 10h168z" />
-<glyph unicode="ô" horiz-adv-x="1007" d="M449 125q73 0 133 40t102 106.5t65 153.5t23 182q0 140 -55 211t-159 71q-74 0 -133.5 -39.5t-101.5 -106t-65 -153.5t-23 -182q0 -140 54.5 -211.5t159.5 -71.5zM433 -14q-83 0 -152 28.5t-119 82.5t-78 132t-28 178q0 128 40 241t109.5 198t164 134t204.5 49 q83 0 152 -28.5t119 -82.5t78 -132.5t28 -177.5q0 -127 -40 -240t-109.5 -198t-164.5 -134.5t-204 -49.5zM867 1171h-114q-11 0 -21 4t-15 10l-100 128l-6.5 6.5t-6.5 8.5q-5 -5 -9 -8.5t-8 -6.5l-133 -128q-6 -5 -17 -9.5t-23 -4.5h-119l239 262h160z" />
-<glyph unicode="õ" horiz-adv-x="1007" d="M449 125q73 0 133 40t102 106.5t65 153.5t23 182q0 140 -55 211t-159 71q-74 0 -133.5 -39.5t-101.5 -106t-65 -153.5t-23 -182q0 -140 54.5 -211.5t159.5 -71.5zM433 -14q-83 0 -152 28.5t-119 82.5t-78 132t-28 178q0 128 40 241t109.5 198t164 134t204.5 49 q83 0 152 -28.5t119 -82.5t78 -132.5t28 -177.5q0 -127 -40 -240t-109.5 -198t-164.5 -134.5t-204 -49.5zM702 1323q65 0 79 88h105q-6 -47 -22.5 -85.5t-41.5 -66t-58 -43t-70 -15.5q-32 0 -58.5 14.5t-49 32l-43 32t-41.5 14.5q-32 0 -52 -22.5t-26 -66.5h-106q6 46 23 85 t42.5 67t58 43.5t69.5 15.5q33 0 59 -14.5t48.5 -32l42.5 -32t41 -14.5z" />
-<glyph unicode="ö" horiz-adv-x="1007" d="M449 125q73 0 133 40t102 106.5t65 153.5t23 182q0 140 -55 211t-159 71q-74 0 -133.5 -39.5t-101.5 -106t-65 -153.5t-23 -182q0 -140 54.5 -211.5t159.5 -71.5zM433 -14q-83 0 -152 28.5t-119 82.5t-78 132t-28 178q0 128 40 241t109.5 198t164 134t204.5 49 q83 0 152 -28.5t119 -82.5t78 -132.5t28 -177.5q0 -127 -40 -240t-109.5 -198t-164.5 -134.5t-204 -49.5zM533 1313q0 -23 -9 -43t-25 -35t-36.5 -24t-43.5 -9t-43 9t-35 24t-24 35t-9 43t9 44t24 36.5t35 24.5t43 9t43.5 -9t36.5 -24.5t25 -36.5t9 -44zM892 1313 q0 -23 -9 -43t-24.5 -35t-36 -24t-43.5 -9t-43.5 9t-35.5 24t-24 35t-9 43t9 44t24 36.5t35.5 24.5t43.5 9t43.5 -9t36 -24.5t24.5 -36.5t9 -44z" />
-<glyph unicode="÷" d="M131 736h958l-16 -130h-958zM522 1012q0 28 11 53t30 44t44 30t53 11q24 0 43.5 -9t34 -24t22.5 -35t8 -43q0 -29 -11.5 -53.5t-30.5 -42.5t-44 -28.5t-52 -10.5q-49 0 -78.5 31t-29.5 77zM434 300q0 28 11 53t30 44t44 30t53 11q24 0 43.5 -9t34 -24t22.5 -35t8 -43 q0 -29 -11.5 -53.5t-30.5 -42.5t-44 -28.5t-52 -10.5q-48 0 -78 31t-30 77z" />
-<glyph unicode="ø" horiz-adv-x="1007" d="M433 -14q-124 0 -214 61l-36 -49q-22 -30 -51 -42.5t-58 -12.5h-67l132 181q-40 53 -61.5 124t-21.5 159q0 128 40 241t109.5 198t164 134t204.5 49q125 0 216 -64l34 46q19 28 35 39t48 11h90l-128 -173q39 -53 60.5 -123t21.5 -157q0 -127 -40 -240t-109.5 -198 t-164.5 -134.5t-204 -49.5zM224 408q0 -89 26 -155l442 602q-56 45 -134 45q-74 0 -135 -38t-105.5 -104.5t-69 -156.5t-24.5 -193zM449 114q73 0 134.5 38.5t106 105t69 156.5t24.5 193q0 44 -6.5 81.5t-18.5 69.5l-442 -600q55 -44 133 -44z" />
-<glyph unicode="ù" horiz-adv-x="1052" d="M355 1013l-76 -644q-2 -20 -3.5 -38t-1.5 -35q0 -82 30.5 -122t96.5 -40q46 0 94.5 25t94 71t84.5 111t68 145l63 527h177l-122 -1013h-88q-31 0 -48 14t-17 43q0 1 1 18t2.5 37t3 37t1.5 18l7 81q-81 -129 -181 -195.5t-206 -66.5q-113 0 -175.5 77t-62.5 221q0 20 1 41 t4 44l76 644h177zM493 1449q31 0 45 -10t24 -32l107 -242h-99q-20 0 -32 6t-23 21l-185 257h163z" />
-<glyph unicode="ú" horiz-adv-x="1052" d="M355 1013l-76 -644q-2 -20 -3.5 -38t-1.5 -35q0 -82 30.5 -122t96.5 -40q46 0 94.5 25t94 71t84.5 111t68 145l63 527h177l-122 -1013h-88q-31 0 -48 14t-17 43q0 1 1 18t2.5 37t3 37t1.5 18l7 81q-81 -129 -181 -195.5t-206 -66.5q-113 0 -175.5 77t-62.5 221q0 20 1 41 t4 44l76 644h177zM898 1449l-248 -257q-14 -15 -28.5 -21t-34.5 -6h-102l166 242q14 22 31 32t48 10h168z" />
-<glyph unicode="û" horiz-adv-x="1052" d="M355 1013l-76 -644q-2 -20 -3.5 -38t-1.5 -35q0 -82 30.5 -122t96.5 -40q46 0 94.5 25t94 71t84.5 111t68 145l63 527h177l-122 -1013h-88q-31 0 -48 14t-17 43q0 1 1 18t2.5 37t3 37t1.5 18l7 81q-81 -129 -181 -195.5t-206 -66.5q-113 0 -175.5 77t-62.5 221q0 20 1 41 t4 44l76 644h177zM875 1171h-114q-11 0 -21 4t-15 10l-100 128l-6.5 6.5t-6.5 8.5q-5 -5 -9 -8.5t-8 -6.5l-133 -128q-6 -5 -17 -9.5t-23 -4.5h-119l239 262h160z" />
-<glyph unicode="ü" horiz-adv-x="1052" d="M355 1013l-76 -644q-2 -20 -3.5 -38t-1.5 -35q0 -82 30.5 -122t96.5 -40q46 0 94.5 25t94 71t84.5 111t68 145l63 527h177l-122 -1013h-88q-31 0 -48 14t-17 43q0 1 1 18t2.5 37t3 37t1.5 18l7 81q-81 -129 -181 -195.5t-206 -66.5q-113 0 -175.5 77t-62.5 221q0 20 1 41 t4 44l76 644h177zM541 1313q0 -23 -9 -43t-25 -35t-36.5 -24t-43.5 -9t-43 9t-35 24t-24 35t-9 43t9 44t24 36.5t35 24.5t43 9t43.5 -9t36.5 -24.5t25 -36.5t9 -44zM900 1313q0 -23 -9 -43t-24.5 -35t-36 -24t-43.5 -9t-43.5 9t-35.5 24t-24 35t-9 43t9 44t24 36.5 t35.5 24.5t43.5 9t43.5 -9t36 -24.5t24.5 -36.5t9 -44z" />
-<glyph unicode="ý" horiz-adv-x="954" d="M317 -302q-21 -41 -62 -41h-130l219 403l-262 953h147q21 0 31.5 -10.5t14.5 -26.5l163 -638q5 -21 8 -42t5 -42l17.5 42.5t19.5 42.5l320 639q8 16 22.5 25.5t29.5 9.5h141zM864 1449l-248 -257q-14 -15 -28.5 -21t-34.5 -6h-102l166 242q14 22 31 32t48 10h168z" />
-<glyph unicode="þ" horiz-adv-x="1047" d="M38 -343l221 1816h176l-89 -716q38 61 82 111.5t92 85.5t100 54.5t106 19.5q129 0 201 -94t72 -275q0 -82 -17 -164t-48.5 -156.5t-76 -139t-99 -112t-118.5 -74.5t-134 -27q-75 0 -136.5 29.5t-104.5 83.5l-46 -378q-3 -26 -22.5 -45t-49.5 -19h-109zM659 885 q-48 0 -97 -30t-95 -83t-85.5 -126t-68.5 -160l-33 -264q38 -54 91.5 -76t108.5 -22q52 0 98 22t84 59.5t68 88t50.5 108t31.5 119t11 121.5q0 119 -43 181t-121 62z" />
-<glyph unicode="ÿ" horiz-adv-x="954" d="M317 -302q-21 -41 -62 -41h-130l219 403l-262 953h147q21 0 31.5 -10.5t14.5 -26.5l163 -638q5 -21 8 -42t5 -42l17.5 42.5t19.5 42.5l320 639q8 16 22.5 25.5t29.5 9.5h141zM507 1313q0 -23 -9 -43t-25 -35t-36.5 -24t-43.5 -9t-43 9t-35 24t-24 35t-9 43t9 44t24 36.5 t35 24.5t43 9t43.5 -9t36.5 -24.5t25 -36.5t9 -44zM866 1313q0 -23 -9 -43t-24.5 -35t-36 -24t-43.5 -9t-43.5 9t-35.5 24t-24 35t-9 43t9 44t24 36.5t35.5 24.5t43.5 9t43.5 -9t36 -24.5t24.5 -36.5t9 -44z" />
-<glyph unicode="ı" horiz-adv-x="489" d="M393 1013l-122 -1013h-175l122 1013h175z" />
-<glyph unicode="Ł" horiz-adv-x="1001" d="M437 806l365 191l-15 -125q-4 -28 -30 -42l-339 -181l-61 -491h567l-19 -158h-754l69 557l-192 -96l16 128q3 26 28 39l167 87l89 718h187z" />
-<glyph unicode="ł" horiz-adv-x="603" d="M77 726q0 29 25 40l153 68l78 639h175l-70 -571l173 74v-102q0 -33 -27 -44l-163 -73l-92 -757h-175l84 690l-161 -69v105z" />
-<glyph unicode="Œ" horiz-adv-x="2011" d="M2033 1433l-18 -153h-626l-59 -484h503l-17 -147h-504l-61 -497h625l-19 -152h-792l28 226q-90 -114 -213.5 -177t-273.5 -63q-117 0 -211 46t-159.5 127.5t-100.5 195t-35 248.5q0 185 52 340t144 267.5t217.5 175.5t271.5 63q75 0 139.5 -19t118 -54.5t95 -86 t71.5 -113.5l32 257h792zM1137 824q0 106 -23.5 193.5t-68.5 149.5t-110 96t-148 34q-109 0 -200 -49.5t-157 -140t-102.5 -217.5t-36.5 -282q0 -107 24 -193.5t69.5 -148.5t111 -95.5t148.5 -33.5q109 0 199.5 49t156 139t101.5 216.5t36 282.5z" />
-<glyph unicode="œ" horiz-adv-x="1546" d="M1229 1027q65 0 117 -17t89 -48.5t56.5 -75.5t19.5 -97q0 -41 -11.5 -79t-39.5 -71.5t-74 -63t-116 -53.5t-165 -43t-221 -32v-11q0 -155 60.5 -232.5t169.5 -77.5q48 0 85.5 10t67 24.5t52 32l41.5 32t34.5 24.5t31.5 10q19 0 34 -17l44 -55q-50 -52 -98.5 -90 t-99.5 -62.5t-107 -36.5t-120 -12q-105 0 -184.5 58t-118.5 173q-69 -110 -172 -170.5t-232 -60.5q-81 0 -142 29.5t-101.5 80t-61 116.5t-20.5 138q0 164 42.5 290.5t115 212.5t168 130t202.5 44t178.5 -50.5t106.5 -141.5q63 90 156 141t213 51zM414 121q81 0 143.5 39 t105 109t64 165t21.5 208q0 115 -46.5 182.5t-143.5 67.5q-78 0 -140 -38t-106 -107.5t-67.5 -167.5t-23.5 -219q0 -47 10 -90t33 -76t60 -53t90 -20zM1201 901q-59 0 -110 -23t-91 -67.5t-68 -108t-40 -144.5q145 18 236.5 43.5t143.5 54.5t71 61.5t19 65.5q0 24 -9.5 45 t-29 37.5t-50 26t-72.5 9.5z" />
-<glyph unicode="Š" horiz-adv-x="977" d="M926 1211q-11 -14 -21 -21.5t-24 -7.5q-17 0 -36 17.5t-48.5 38t-71.5 38t-105 17.5q-64 0 -114 -20t-84.5 -54.5t-52.5 -80.5t-18 -99q0 -52 24 -87.5t63 -61t89.5 -45l102.5 -40t102.5 -45.5t89.5 -62t63 -89t24 -126q0 -102 -35 -192.5t-100.5 -158.5t-158.5 -108 t-209 -40q-128 0 -228.5 50.5t-165.5 136.5l66 89q8 11 20 18t26 7q19 0 41 -22.5t56 -50t84 -50t125 -22.5q69 0 124.5 22t94 61t59.5 93.5t21 120.5q0 55 -24 91.5t-63 61.5t-88.5 43.5l-102 37.5t-102 43t-88.5 61t-63 91t-24 133q0 88 32 169t92 143t146 99t194 37 q110 0 198 -42t145 -115zM745 1546h-170l-195 209h160l121 -110l10 -9l12 9l148 110h160z" />
-<glyph unicode="š" horiz-adv-x="780" d="M724 851q-8 -12 -16 -17.5t-20 -5.5q-14 0 -30.5 11t-40 24.5t-57.5 25t-82 11.5q-45 0 -82 -12.5t-64 -34.5t-41.5 -51.5t-14.5 -62.5q0 -47 31 -75t78 -48.5t101.5 -39.5t101.5 -48t78 -74t31 -117q0 -70 -27.5 -134t-79 -112.5t-124 -77.5t-162.5 -29 q-97 0 -171.5 34.5t-121.5 88.5l44 68q8 13 19 20t28 7q16 0 32 -14t40 -31.5t60.5 -31.5t92.5 -14q49 0 88.5 15t67 40t42 58.5t14.5 71.5q0 51 -31 81t-78 50t-101 37.5t-101 45t-78 71.5t-31 117q0 64 25.5 123.5t73.5 105.5t116.5 73.5t154.5 27.5q91 0 160.5 -30.5 t119.5 -82.5zM240 1433h120q11 0 20.5 -4t14.5 -10l100 -129l13 -19l19 19l131 129q7 6 18 10t22 4h115l-239 -262h-159z" />
-<glyph unicode="Ÿ" horiz-adv-x="1165" d="M686 573l-71 -573h-187l71 571l-378 862h166q25 0 38 -12.5t21 -31.5l238 -574q10 -29 17 -55t12 -52q12 26 26.5 52l31.5 55l381 574q11 16 27.5 30t40.5 14h155zM652 1664q0 -20 -8.5 -38t-22.5 -31.5t-32.5 -21t-39.5 -7.5q-20 0 -37.5 7.5t-31.5 21t-22 31.5t-8 38 q0 21 8 39.5t22 33t31.5 22.5t37.5 8q21 0 39.5 -8t32.5 -22.5t22.5 -33t8.5 -39.5zM996 1664q0 -20 -8 -38t-22 -31.5t-32 -21t-39 -7.5t-39 7.5t-32 21t-22 31.5t-8 38q0 21 8 39.5t22 33t32 22.5t39 8t39 -8t32 -22.5t22 -33t8 -39.5z" />
-<glyph unicode="Ž" horiz-adv-x="1148" d="M1195 1433l-8 -60q-2 -14 -8 -25.5t-15 -23.5l-876 -1172h738l-20 -152h-990l8 59q2 14 7.5 25t14.5 23l876 1173h-713l19 153h967zM808 1546h-170l-195 209h160l121 -110l10 -9l12 9l148 110h160z" />
-<glyph unicode="ž" horiz-adv-x="860" d="M849 937q-2 -19 -11 -36.5t-20 -31.5l-584 -730h500l-16 -139h-714l9 74q2 13 10.5 30.5t20.5 33.5l587 735h-492l17 140h702zM263 1433h120q11 0 20.5 -4t14.5 -10l100 -129l13 -19l19 19l131 129q7 6 18 10t22 4h115l-239 -262h-159z" />
-<glyph unicode="ƒ" d="M705 770l-179 -735q-50 -203 -180.5 -295.5t-340.5 -92.5l11 91q7 55 65 55q46 1 88.5 14t78.5 42t64 76t45 116l177 724l-155 15q-18 2 -27 12t-9 25q0 9 1.5 22t3.5 26q2 14 4 30h214l42 170q48 197 176 292.5t345 95.5l-12 -95q-3 -28 -18.5 -39.5t-45.5 -11.5 q-47 0 -89.5 -13t-79 -42.5t-65 -76.5t-46.5 -116l-43 -164h327l-16 -125h-336z" />
-<glyph unicode="ˆ" horiz-adv-x="568" d="M653 1169h-114q-11 0 -21 4t-15 10l-100 128l-6.5 6.5t-6.5 8.5q-5 -5 -9 -8.5t-8 -6.5l-133 -128q-6 -5 -17 -9.5t-23 -4.5h-119l239 262h160z" />
-<glyph unicode="ˇ" horiz-adv-x="568" d="M113 1431h120q11 0 20.5 -4t14.5 -10l100 -129l13 -19l19 19l131 129q7 6 18 10t22 4h115l-239 -262h-159z" />
-<glyph unicode="ˉ" horiz-adv-x="568" d="M126 1345h530l-14 -113h-530z" />
-<glyph unicode="˘" horiz-adv-x="568" d="M370 1164q-62 0 -105 16.5t-70 45.5t-39 67.5t-12 83.5q0 13 1 26.5t3 27.5h121q-3 -21 -3 -40q0 -51 26 -82.5t92 -31.5q39 0 66 11.5t44.5 32t27.5 49t14 61.5h122q-7 -54 -26 -102.5t-53.5 -85t-86 -58t-122.5 -21.5z" />
-<glyph unicode="˙" horiz-adv-x="568" d="M528 1338q0 -26 -10.5 -48.5t-28 -39.5t-40.5 -27t-49 -10t-48.5 10t-39.5 27t-27 39.5t-10 48.5t10 49.5t27 41t39.5 27.5t48.5 10t49 -10t40.5 -27.5t28 -41t10.5 -49.5z" />
-<glyph unicode="˚" horiz-adv-x="568" d="M185 1315q0 42 16 76t43.5 59t63.5 38.5t76 13.5q41 0 77.5 -13.5t64.5 -38.5t44 -59t16 -76q0 -41 -16 -75t-44 -58t-64.5 -37.5t-77.5 -13.5q-40 0 -76 13.5t-63.5 37.5t-43.5 58t-16 75zM285 1315q0 -44 27 -72t74 -28q45 0 72.5 28t27.5 72q0 45 -27.5 73t-72.5 28 q-47 0 -74 -28t-27 -73z" />
-<glyph unicode="˛" horiz-adv-x="568" d="M338 -214q13 0 16 -12l18 -64q-30 -23 -74.5 -37.5t-92.5 -14.5q-76 0 -117 35t-41 93q0 34 13.5 66t36.5 61t55 54t69 46l87 -13q-21 -12 -43.5 -28.5t-41.5 -37.5t-31 -46.5t-12 -54.5q0 -32 20 -51.5t52 -19.5q21 0 35.5 3.5t24.5 8t15.5 8.5t10.5 4z" />
-<glyph unicode="˜" horiz-adv-x="568" d="M488 1321q65 0 79 88h105q-6 -47 -22.5 -85.5t-41.5 -66t-58 -43t-70 -15.5q-32 0 -58.5 14.5t-49 32l-43 32t-41.5 14.5q-32 0 -52 -22.5t-26 -66.5h-106q6 46 23 85t42.5 67t58 43.5t69.5 15.5q33 0 59 -14.5t48.5 -32l42.5 -32t41 -14.5z" />
-<glyph unicode="˝" horiz-adv-x="568" d="M516 1447l-214 -257q-14 -16 -28.5 -21.5t-34.5 -5.5h-72l156 242q14 22 31 32t48 10h114zM809 1447l-256 -257q-14 -15 -28 -21t-34 -6h-83l195 242q17 20 33 31t47 11h126z" />
-<glyph unicode="π" horiz-adv-x="1144" d="M1174 1011l-8 -68q-2 -23 -19 -40.5t-43 -17.5h-124l-108 -885h-172l107 885h-357l-79 -643q-15 -119 -79 -186.5t-186 -67.5q-31 0 -61.5 6t-57.5 23l15 72q2 9 5.5 14.5t11.5 7.5t20.5 2.5t32.5 0.5q60 0 89.5 31.5t37.5 98.5l78 641h-172l8 63q1 10 6.5 21t15 20.5 t23 15.5t29.5 6h987z" />
-<glyph unicode="–" horiz-adv-x="1026" d="M165 652h737l-15 -125h-737z" />
-<glyph unicode="—" horiz-adv-x="1516" d="M165 652h1226l-16 -125h-1225z" />
-<glyph unicode="‘" horiz-adv-x="394" d="M219 1016q-17 37 -24.5 74t-7.5 74q0 100 53 193t147 169l47 -31q12 -9 12 -22q0 -8 -4.5 -15t-15.5 -19q-16 -19 -32.5 -43t-29.5 -52.5t-21.5 -60.5t-8.5 -66q0 -26 5 -53t18 -55q3 -8 3 -14q0 -24 -30 -37z" />
-<glyph unicode="’" horiz-adv-x="394" d="M368 1503q17 -37 24.5 -74t7.5 -74q0 -100 -53 -193t-147 -169l-48 31q-11 9 -11 22q0 8 4.5 15t15.5 19q16 19 32.5 43t29.5 52t21.5 60t8.5 67q0 26 -5 53t-18 55q-3 7 -3 14q0 24 30 37z" />
-<glyph unicode="‚" horiz-adv-x="427" d="M228 236q17 -37 24.5 -74t7.5 -74q0 -100 -53 -193t-147 -169l-48 31q-11 9 -11 22q0 8 4.5 15t15.5 19q16 19 32.5 43t29.5 52t21.5 60t8.5 67q0 26 -5 53t-18 55q-3 7 -3 14q0 24 30 37z" />
-<glyph unicode="“" horiz-adv-x="676" d="M219 1016q-17 37 -24.5 74t-7.5 74q0 100 53 193t147 169l47 -31q12 -9 12 -22q0 -8 -4.5 -15t-15.5 -19q-16 -19 -32.5 -43t-29.5 -52.5t-21.5 -60.5t-8.5 -66q0 -26 5 -53t18 -55q3 -8 3 -14q0 -24 -30 -37zM503 1016q-17 37 -24.5 74t-7.5 74q0 100 53 193t147 169 l47 -31q12 -9 12 -22q0 -8 -4.5 -15t-15.5 -19q-16 -19 -32.5 -43t-29.5 -52.5t-21.5 -60.5t-8.5 -66q0 -26 5 -53t18 -55q3 -8 3 -14q0 -24 -30 -37z" />
-<glyph unicode="”" horiz-adv-x="676" d="M377 1503q17 -37 24.5 -74t7.5 -74q0 -100 -53 -193t-147 -169l-48 31q-11 9 -11 22q0 8 4.5 15t15.5 19q16 19 32.5 43t29.5 52t21.5 60t8.5 67q0 26 -5 53t-18 55q-3 7 -3 14q0 24 30 37zM660 1503q17 -37 24.5 -74t7.5 -74q0 -100 -53 -193t-147 -169l-48 31 q-11 9 -11 22q0 8 4.5 15t15.5 19q16 19 32.5 43t29.5 52t21.5 60t8.5 67q0 26 -5 53t-18 55q-3 7 -3 14q0 24 30 37z" />
-<glyph unicode="„" horiz-adv-x="676" d="M191 236q17 -37 24.5 -74t7.5 -74q0 -100 -53 -193t-147 -169l-48 31q-11 9 -11 22q0 8 4.5 15t15.5 19q16 19 32.5 43t29.5 52t21.5 60t8.5 67q0 26 -5 53t-18 55q-3 7 -3 14q0 24 30 37zM475 236q17 -37 24.5 -74t7.5 -74q0 -100 -53 -193t-147 -169l-48 31 q-11 9 -11 22q0 8 4.5 15t15.5 19q16 19 32.5 43t29.5 52t21.5 60t8.5 67q0 26 -5 53t-18 55q-3 7 -3 14q0 24 30 37z" />
-<glyph unicode="†" horiz-adv-x="1068" d="M161 940q4 29 26 52.5t64 23.5q63 -1 134.5 -14t142.5 -20l35 468q41 22 92 22t86 -22l-80 -468q36 3 73.5 9t74 11l71.5 9.5t67 4.5q38 0 54.5 -20.5t16.5 -46.5v-3t-0.5 -8.5t-2 -19.5t-3.5 -36h-363l-54 -444l-72 -774q-20 -11 -44 -16.5t-49 -5.5q-26 0 -47.5 5.5 t-38.5 16.5l117 774l54 444h-362z" />
-<glyph unicode="‡" horiz-adv-x="1068" d="M161 940q4 29 26 52.5t64 23.5q63 -1 134.5 -14t142.5 -20l35 468q41 22 92 22t86 -22l-80 -468q36 3 73.5 9t74 11l71.5 9.5t67 4.5q38 0 55 -19.5t17 -45.5q0 -15 -2.5 -35t-4.5 -34h-363l-80 -650h362l-6 -58q-3 -30 -26 -53.5t-65 -23.5q-63 1 -135 13.5t-143 18.5 l-33 -465q-20 -11 -44 -16.5t-49 -5.5q-26 0 -47.5 5.5t-38.5 16.5l79 465q-36 -3 -73.5 -8t-74 -10.5t-72 -9.5t-66.5 -4q-38 0 -54.5 20t-16.5 47v3t1 9t2 20t4 36h363l80 650h-363z" />
-<glyph unicode="•" d="M231 595q0 77 29 145t79.5 118.5t117.5 80t143 29.5q77 0 145 -29.5t118.5 -80t80 -118.5t29.5 -145t-29.5 -144.5t-80 -117.5t-118.5 -79.5t-145 -29.5q-76 0 -143 29.5t-117.5 79.5t-79.5 117.5t-29 144.5z" />
-<glyph unicode="…" horiz-adv-x="1454" d="M45 110q0 26 9.5 49t26.5 40t39.5 27t49.5 10q26 0 48.5 -10t39.5 -27t27 -40t10 -49q0 -27 -10 -49.5t-27 -39.5t-39.5 -26.5t-48.5 -9.5q-27 0 -49.5 9.5t-39.5 26.5t-26.5 39.5t-9.5 49.5zM559 110q0 26 9.5 49t26.5 40t39.5 27t49.5 10q26 0 48.5 -10t39.5 -27 t27 -40t10 -49q0 -27 -10 -49.5t-27 -39.5t-39.5 -26.5t-48.5 -9.5q-27 0 -49.5 9.5t-39.5 26.5t-26.5 39.5t-9.5 49.5zM1074 110q0 26 9.5 49t26 40t39.5 27t49 10t49 -10t40 -27t27 -40t10 -49q0 -27 -10 -49.5t-27 -39.5t-40 -26.5t-49 -9.5t-49 9.5t-39.5 26.5t-26 39.5 t-9.5 49.5z" />
-<glyph unicode="‰" horiz-adv-x="2127" d="M732 1144q0 -99 -29.5 -176t-77.5 -130t-109.5 -80.5t-126.5 -27.5q-56 0 -103 20.5t-80.5 59t-52 94t-18.5 125.5q0 99 27 176.5t73.5 131t109 81.5t132.5 28q56 0 103 -20.5t80.5 -59.5t52.5 -95t19 -127zM597 1143q0 50 -10.5 86t-28.5 59t-42.5 34t-52.5 11 q-40 0 -75.5 -17t-61.5 -54t-41.5 -94.5t-15.5 -138.5q0 -49 10 -83.5t28 -57t42.5 -33t53.5 -10.5q39 0 74.5 16.5t62 52t42 92t15.5 137.5zM1228 1403q11 11 25.5 19.5t37.5 8.5h124l-1140 -1403q-10 -13 -24.5 -20.5t-34.5 -7.5h-126zM1372 397q0 -99 -29 -176.5 t-77 -130t-110 -80t-127 -27.5q-56 0 -102.5 20.5t-80 59t-52 93.5t-18.5 125q0 99 27 176.5t73.5 131.5t109 82t132.5 28q56 0 102.5 -20.5t80.5 -59.5t52.5 -95t18.5 -127zM1238 396q0 50 -10.5 85.5t-28.5 58.5t-42.5 33.5t-52.5 10.5q-40 0 -75.5 -17t-62 -54t-42 -94 t-15.5 -138q0 -49 10 -84t28 -57.5t42.5 -33t53.5 -10.5q39 0 74.5 16.5t62.5 52.5t42.5 93t15.5 138zM2047 397q0 -99 -29 -176.5t-77 -130t-109.5 -80t-126.5 -27.5q-56 0 -103 20.5t-80.5 59t-52 93.5t-18.5 125q0 99 27 176.5t73.5 131.5t109 82t132.5 28 q56 0 102.5 -20.5t80.5 -59.5t52.5 -95t18.5 -127zM1913 396q0 50 -10.5 85.5t-28.5 58.5t-42.5 33.5t-52.5 10.5q-40 0 -75 -17t-61.5 -54t-41.5 -94t-15 -138q0 -49 10 -84t27.5 -57.5t42 -33t53.5 -10.5q39 0 74 16.5t62 52.5t42.5 93t15.5 138z" />
-<glyph unicode="‹" horiz-adv-x="598" d="M128 518l3 22l278 388l53 -27q22 -12 22 -33q0 -19 -15 -40l-175 -263q-17 -26 -31 -36q11 -11 22 -36l111 -263q3 -8 5 -14.5t2 -13.5q0 -31 -32 -46l-60 -27z" />
-<glyph unicode="›" horiz-adv-x="583" d="M184 129l-53 27q-23 12 -23 35q0 17 14 39l177 263q16 24 30 35q-13 12 -22 37l-112 263q-6 13 -6 25q0 32 33 48l59 27l182 -388l-2 -22z" />
-<glyph unicode="⁄" horiz-adv-x="577" d="M-63 53q-21 -32 -44.5 -42.5t-52.5 -10.5h-70l924 1371q20 29 44.5 44.5t57.5 15.5h71z" />
-<glyph unicode="€" d="M84 897h141q33 127 92.5 229t140 173t179 109t210.5 38q133 0 222 -49.5t148 -136.5l-67 -66q-12 -12 -19 -16t-21 -4q-11 0 -21 9t-23.5 22.5t-32.5 29.5t-46 29.5t-64 22.5t-88 9q-77 0 -145 -26t-123.5 -77t-97.5 -125.5t-68 -170.5h560l-6 -55q-3 -17 -17.5 -30.5 t-39.5 -13.5h-518q-6 -35 -9.5 -71t-5.5 -74h474l-7 -54q-2 -17 -17.5 -31t-38.5 -14h-412q7 -204 90.5 -311.5t228.5 -107.5q82 0 137.5 22.5t92 49.5t59.5 49.5t41 22.5q8 0 13.5 -2t11.5 -10l65 -68q-83 -101 -194 -157.5t-253 -56.5q-113 0 -199.5 41t-145.5 115.5 t-90 179.5t-34 233h-145l12 99h135q3 74 15 145h-132z" />
-<glyph unicode="™" horiz-adv-x="1327" d="M962 1104q8 -27 12 -50q6 13 12.5 25t14.5 25l189 307q9 14 17.5 17t24.5 3h102l-71 -590h-107l46 370l16 71l-206 -337q-16 -27 -45 -27h-17q-28 0 -38 27l-125 338v-72l-46 -370h-105l71 590h103q16 0 24.5 -3t13.5 -17zM622 1431l-13 -101h-164l-60 -489h-120l59 489 h-164l14 101h448z" />
-<glyph unicode="Ω" horiz-adv-x="1373" d="M707 0l53 433q84 18 155.5 55t124 97t82.5 144t30 196q0 90 -26.5 159t-75 116.5t-116 71.5t-149.5 24q-101 0 -188 -33t-151 -97t-100 -158t-36 -216q0 -77 21 -137.5t59 -105t91 -73.5t117 -43l-52 -433h-465q-26 0 -40.5 14.5t-14.5 37.5q0 15 2 33.5t4 34.5 q3 18 5 38h383l22 179q-76 22 -136 64t-101 101t-63 132.5t-22 157.5q0 97 24 183t68 159t106 131t138 98.5t163.5 62t183.5 21.5q122 0 222 -38t171 -106t110 -162.5t39 -206.5q0 -114 -32.5 -212t-92 -175.5t-142.5 -131.5t-185 -79l-22 -178h382l-10 -97q-3 -27 -23 -43 t-49 -18h-464z" />
-<glyph unicode="∂" horiz-adv-x="1067" d="M417 1337q39 27 76 48t75.5 35t80.5 21t90 7q73 0 131 -28t98.5 -82t62.5 -132t22 -177q0 -29 -2 -60.5t-6 -64.5q-25 -202 -80 -370.5t-138 -290t-193.5 -189t-247.5 -67.5q-72 0 -131.5 23.5t-101.5 67.5t-65 107t-23 143q0 17 1 34.5t3 35.5q14 115 61.5 216t120 175 t164.5 117t195 43q94 0 158.5 -41t98.5 -122l9.5 64.5t7.5 53.5q4 31 5.5 59.5t1.5 54.5q0 143 -50.5 215t-142.5 72q-39 0 -72.5 -10t-61 -22.5l-48 -22.5t-33.5 -10q-11 0 -19.5 6t-16.5 24zM424 127q58 0 114.5 27.5t106.5 83t92.5 140.5t74.5 199q-4 45 -16 86.5 t-35 73.5t-59.5 51.5t-89.5 19.5q-75 0 -136.5 -31t-107.5 -85.5t-75 -129t-40 -161.5q-2 -16 -3 -30.5t-1 -28.5q0 -103 46.5 -159t128.5 -56z" />
-<glyph unicode="∆" horiz-adv-x="1291" d="M1217 0h-1264l724 1431h169zM218 150h771l-229 974l-11.5 51.5t-11.5 60.5l-25 -61.5t-23 -51.5z" />
-<glyph unicode="∏" horiz-adv-x="1369" d="M1420 1431l-17 -146h-189l-200 -1629h-178l199 1629h-507l-201 -1629h-177l200 1629h-188l17 146h1241z" />
-<glyph unicode="∑" horiz-adv-x="1261" d="M202 1433h1106l-18 -153h-835l433 -709l-7 -52l-606 -709h833l-18 -153h-1106l8 65q2 14 8.5 28.5t17.5 25.5l668 771l-479 765q-13 21 -13 43v6.5t1 6.5z" />
-<glyph unicode="−" d="M180 736h859l-16 -130h-858z" />
-<glyph unicode="√" horiz-adv-x="1144" d="M624 0h-144l-169 665h-176q-25 0 -42 13t-17 45v4t1 9.5t2 19.5t4 36h334q21 0 33.5 -11t16.5 -25l101 -421q8 -32 10 -64.5t2 -64.5l17 53.5t21 55.5l603 1361q8 16 23 26.5t34 10.5h110z" />
-<glyph unicode="∞" horiz-adv-x="1260" d="M891 254q-51 0 -91 16.5t-71.5 44.5t-56 65.5t-45.5 78.5q-31 -41 -65 -78.5t-73 -65.5t-83 -44.5t-95 -16.5q-53 0 -98.5 20t-79 57.5t-53 89.5t-19.5 117q0 82 27.5 153t73.5 123.5t106 83t126 30.5q51 0 90.5 -16.5t71.5 -45t57 -66t46 -78.5q31 41 65 78.5t72.5 66 t82.5 45t95 16.5q53 0 99 -20t80 -57.5t53.5 -90t19.5 -117.5q0 -82 -27.5 -153t-74 -123.5t-107 -82.5t-126.5 -30zM336 400q33 0 63 15t58 41.5t55 61t54 73.5q-18 39 -36 73.5t-40 60.5t-48 41.5t-59 15.5q-38 0 -70.5 -16.5t-57 -46.5t-38.5 -72t-14 -94q0 -38 10 -67 t28 -48t42.5 -28.5t52.5 -9.5zM903 400q37 0 70 16.5t57.5 46.5t38.5 72t14 94q0 39 -10.5 67.5t-28.5 47.5t-42.5 28.5t-52.5 9.5q-33 0 -62.5 -15.5t-57.5 -41.5t-55 -60.5t-54 -73.5q18 -39 36.5 -73.5t40 -61t47.5 -41.5t59 -15z" />
-<glyph unicode="∫" horiz-adv-x="742" d="M474 1091q41 174 135 266t231 92q35 0 67.5 -7t60.5 -23l-19 -87q-5 -18 -20 -27.5t-57 -9.5q-92 0 -147 -55t-83 -172l-247 -1030q-24 -102 -63.5 -175t-91 -120.5t-114 -70t-132.5 -22.5q-32 0 -66 6.5t-61 22.5l20 76q3 12 8 18.5t14 9.5t23.5 3.5t37.5 0.5 q54 0 94.5 13.5t71 42.5t52.5 76t38 113z" />
-<glyph unicode="≈" d="M832 855q28 0 56 6.5t52 16.5t42.5 22.5t29.5 23.5l11 -108q-40 -48 -98.5 -71t-119.5 -23q-52 0 -101.5 17t-97 37t-93.5 37t-91 17q-30 0 -58.5 -7t-52.5 -17.5t-42.5 -23.5t-28.5 -25l-17 105q41 51 100.5 75.5t125.5 24.5q52 0 102 -16.5t97 -37t93 -37t91 -16.5z M790 518q28 0 56 6.5t52.5 17t43 22.5t29.5 23l10 -109q-39 -47 -98 -69.5t-120 -22.5q-52 0 -101.5 16.5t-97 36.5t-93.5 36.5t-91 16.5q-30 0 -58 -6.5t-52.5 -17t-43 -23t-28.5 -24.5l-16 104q41 51 100.5 75.5t125.5 24.5q53 0 102.5 -16.5t97 -37t93 -37t89.5 -16.5z " />
-<glyph unicode="≠" d="M199 906h491l144 243h125l-144 -243h240l-15 -131h-303l-119 -202h397l-16 -131h-459l-149 -252h-125l149 252h-274l16 131h336l119 202h-429z" />
-<glyph unicode="≤" horiz-adv-x="1067" d="M178 791l819 377l-15 -122q-2 -16 -13 -29.5t-37 -25.5l-467 -207q-23 -10 -48 -17t-52 -13q26 -5 49.5 -12t43.5 -18l415 -209q21 -11 29.5 -22t8.5 -25q0 -2 -0.5 -4t-0.5 -4l-15 -122l-726 379zM107 215h773l-17 -135h-773z" />
-<glyph unicode="≥" horiz-adv-x="1067" d="M878 80h-773l17 135h773zM957 717l-819 -377l15 122q2 16 13 29.5t37 25.5l467 207q23 10 48 17t52 13q-26 5 -49.5 12t-43.5 18l-415 209q-21 11 -29.5 22t-8.5 25q0 2 0.5 4t0.5 4l15 122l726 -379z" />
-<glyph unicode="◊" d="M143 701l390 821h124l391 -821l-391 -820h-124zM291 701l276 -581q8 -23 15.5 -42t12.5 -37q5 18 12 37l16 42l280 581l-280 582q-18 44 -28 79q-5 -19 -12.5 -38l-15.5 -41z" />
-<glyph unicode="♩" horiz-adv-x="0" d="M-118 -500l242 2000h2l-242 -2000h-2z" />
-<glyph unicode="" horiz-adv-x="1014" d="M0 1015h1015v-1015h-1015v1015z" />
-<glyph unicode="" horiz-adv-x="568" d="M306 -82l-126 -282h-109l81 282h154z" />
-<glyph unicode="fi" horiz-adv-x="1057" d="M952 993l-121 -993h-176l107 864h-387l-102 -832l-46 -207q-17 -75 -92 -75h-70l137 1112l-99 12q-40 5 -40 40l7 79h148l7 56q11 93 47.5 170t97.5 132t145 85.5t191 30.5q18 0 37.5 -1.5t39 -4t37 -6t30.5 -8.5l-17 -90q-3 -12 -13.5 -15.5t-27.5 -3.5q-11 0 -24 0.5 t-29 0.5q-83 0 -144 -18t-103.5 -54t-67 -91t-33.5 -130l-6 -53h567z" />
-<glyph unicode="fl" horiz-adv-x="1097" d="M376 865l-103 -833l-46 -207q-17 -75 -92 -75h-70l136 1112l-98 12q-40 5 -40 38l8 81h146l7 55q10 84 43 159t88 131t131 88.5t173 32.5q71 0 141 -6.5t123 -6.5h119l-177 -1446h-173l160 1316q-45 4 -92.5 9t-90.5 5q-117 0 -189.5 -73.5t-87.5 -208.5l-6 -55h238 l-15 -128h-233z" />
-<glyph horiz-adv-x="568" d="M279 1781q15 0 25.5 -1.5t19 -5t15.5 -10t15 -15.5l167 -203h-144q-20 0 -31 6.5t-26 18.5l-235 210h194z" />
-<glyph horiz-adv-x="568" d="M336 1665q0 -20 -8.5 -38t-22.5 -31.5t-32.5 -21t-39.5 -7.5q-20 0 -37.5 7.5t-31.5 21t-22 31.5t-8 38q0 21 8 39.5t22 33t31.5 22.5t37.5 8q21 0 39.5 -8t32.5 -22.5t22.5 -33t8.5 -39.5zM680 1665q0 -20 -8 -38t-22 -31.5t-32 -21t-39 -7.5t-39 7.5t-32 21t-22 31.5 t-8 38q0 21 8 39.5t22 33t32 22.5t39 8t39 -8t32 -22.5t22 -33t8 -39.5z" />
-<glyph horiz-adv-x="568" d="M147 1678h564l-14 -102h-563z" />
-<glyph horiz-adv-x="568" d="M774 1781l-288 -210q-17 -12 -29.5 -18.5t-32.5 -6.5h-145l218 203q10 9 18.5 15.5t17.5 10t20 5t27 1.5h194z" />
-<glyph horiz-adv-x="568" d="M711 1546h-131q-11 0 -23 4t-21 9l-104 97l-11 9l-12 -9l-129 -97q-9 -6 -22.5 -9.5t-25.5 -3.5h-130l246 209h169z" />
-<glyph horiz-adv-x="568" d="M496 1546h-170l-195 209h160l121 -110l10 -9l12 9l148 110h160z" />
-<glyph horiz-adv-x="568" d="M411 1528q-128 0 -187.5 57.5t-45.5 170.5h111q-8 -60 24.5 -91t110.5 -31t117.5 31t45.5 91h112q-7 -52 -29 -94t-58.5 -72t-87 -46t-113.5 -16z" />
-<glyph horiz-adv-x="568" d="M542 1688q0 -24 -10 -46t-27 -38.5t-39.5 -26.5t-47.5 -10q-24 0 -46 10t-38.5 26.5t-26 38.5t-9.5 46q0 25 9.5 47t26 39t38.5 27t46 10q25 0 47.5 -10t39.5 -27t27 -39t10 -47z" />
-<glyph horiz-adv-x="568" d="M219 1659q0 39 15 72t41 56.5t60 36.5t72 13q39 0 73.5 -13t60.5 -36.5t41.5 -56.5t15.5 -72q0 -38 -15.5 -70t-41.5 -55t-60.5 -36t-73.5 -13q-38 0 -72 13t-60 36t-41 55t-15 70zM308 1659q0 -43 27 -71.5t74 -28.5q45 0 72.5 28.5t27.5 71.5q0 45 -27.5 73t-72.5 28 q-47 0 -74 -28t-27 -73z" />
-<glyph horiz-adv-x="568" d="M539 1660q30 0 50.5 21t25.5 58h94q-5 -42 -20 -77.5t-38 -62t-54 -41t-68 -14.5q-32 0 -60 13.5t-53 29.5l-48 29.5t-44 13.5q-30 0 -49.5 -22.5t-24.5 -59.5h-97q5 42 20.5 78t38.5 62.5t54 41t68 14.5q33 0 61 -13t53 -29t47.5 -29t43.5 -13z" />
-<glyph horiz-adv-x="568" d="M552 1771l-208 -199q-15 -14 -28 -20t-33 -6h-83l152 181q17 21 36.5 32.5t50.5 11.5h113zM866 1771l-249 -199q-17 -13 -32 -19.5t-35 -6.5h-93l187 181q20 20 40.5 32t50.5 12h131z" />
-<glyph horiz-adv-x="568" d="M470 1473q17 0 22.5 -7.5t5.5 -17.5t-3.5 -25t-15 -43.5t-33 -75.5l-57.5 -120q-12 -22 -27 -28.5t-39 -6.5h-60l93 324h114z" />
-</font>
-</defs></svg>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata>
-This is a custom SVG webfont generated by Font Squirrel.
-Copyright : Copyright c 2010 by tyPoland Lukasz Dziedzic with Reserved Font Name Lato Licensed under the SIL Open Font License Version 11
-Designer : Lukasz Dziedzic
-Foundry : tyPoland Lukasz Dziedzic
-Foundry URL : httpwwwtypolandcom
-</metadata>
-<defs>
-<font id="webfontCjmEHx3G" horiz-adv-x="1187" >
-<font-face units-per-em="2048" ascent="1649" descent="-399" />
-<missing-glyph horiz-adv-x="395" />
-<glyph horiz-adv-x="0" />
-<glyph horiz-adv-x="0" />
-<glyph unicode="
" horiz-adv-x="0" />
-<glyph unicode=" " horiz-adv-x="395" />
-<glyph unicode="	" horiz-adv-x="395" />
-<glyph unicode=" " horiz-adv-x="395" />
-<glyph unicode="!" horiz-adv-x="702" d="M440 1467v-585q0 -46 -1.5 -90t-4.5 -89t-7.5 -91.5t-10.5 -99.5h-124l-11 99.5t-8 91.5t-4.5 89t-1.5 90v585h173zM223 113q0 27 10 50t26.5 40.5t40.5 28t50 10.5q27 0 50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5 t-40 27t-26.5 40.5t-10 51z" />
-<glyph unicode=""" horiz-adv-x="813" d="M314 1467v-297l-16 -158q-3 -33 -17.5 -51t-46.5 -18q-27 0 -41.5 18t-20.5 51l-16 158v297h158zM655 1467v-297l-16 -158q-3 -33 -17.5 -51t-46.5 -18q-27 0 -41.5 18t-20.5 51l-16 158v297h158z" />
-<glyph unicode="#" d="M809 433l-86 -433h-83q-24 0 -40 17.5t-16 44.5q0 4 0.5 8t1.5 9l72 354h-252l-73 -363q-8 -38 -31 -54t-53 -16h-81l87 433h-150q-24 0 -37 12t-13 40q0 5 0.5 11.5t1.5 12.5l9 58h208l67 334h-238l14 76q5 30 23.5 44t58.5 14h161l74 367q6 31 28 48t53 17h82l-86 -432 h253l86 432h81q26 0 42.5 -15t16.5 -40q0 -8 -1 -13l-75 -364h218l-14 -77q-5 -30 -24 -43.5t-58 -13.5h-141l-67 -334h184q25 0 38 -11.5t13 -41.5q0 -5 -0.5 -10.5t-1.5 -11.5l-9 -59h-243zM425 567h253l66 334h-252z" />
-<glyph unicode="$" d="M510 -12q-124 11 -226 60.5t-175 126.5l54 84q7 11 20.5 18.5t27.5 7.5q19 0 44 -19.5t60.5 -44.5t85.5 -49t119 -32l38 544q-72 22 -141 49t-123.5 70.5t-88 109.5t-33.5 165q0 75 29 146t85 126.5t138 91t188 39.5l11 147q2 19 15 34.5t36 15.5h67l-14 -202 q108 -13 185.5 -55.5t139.5 -101.5l-44 -68q-20 -31 -47 -30q-14 0 -36 12l-51 30q-30 17 -68.5 34t-88.5 24l-34 -496q74 -23 145.5 -49t129 -68t92.5 -105t35 -158q0 -92 -30.5 -173t-89.5 -142t-144.5 -99.5t-194.5 -44.5l-13 -181q-2 -19 -15.5 -34t-35.5 -15h-67z M912 417q0 51 -19 88t-51.5 63.5t-76.5 46t-94 35.5l-35 -510q67 6 118.5 29.5t87 59t53 83.5t17.5 105zM344 1097q0 -49 17.5 -85.5t48 -64t71.5 -48t89 -37.5l31 462q-67 -6 -115.5 -26.5t-79.5 -51.5t-46.5 -69t-15.5 -80z" />
-<glyph unicode="%" horiz-adv-x="1609" d="M724 1113q0 -86 -26.5 -154t-71 -114.5t-104 -71t-124.5 -24.5q-70 0 -128.5 24.5t-102.5 71t-68.5 114.5t-24.5 154q0 88 24.5 156.5t68.5 116t103 72t128 24.5t129 -24.5t103.5 -72t68.5 -116t25 -156.5zM582 1113q0 68 -14.5 115t-39.5 77t-58.5 43.5t-71.5 13.5 t-71 -13.5t-57.5 -43.5t-38.5 -77t-14 -115q0 -67 14 -113.5t38.5 -75.5t57.5 -42t71 -13t71.5 13t58.5 42t39.5 75.5t14.5 113.5zM1237 1431q13 17 28 26.5t40 9.5h131l-1072 -1437q-10 -13 -24.5 -21.5t-34.5 -8.5h-135zM1535 346q0 -86 -26.5 -153.5t-71 -114t-103.5 -71 t-124 -24.5q-70 0 -128.5 24.5t-102.5 71t-68.5 114t-24.5 153.5q0 88 24.5 157t68.5 116.5t103 72t128 24.5t128.5 -24.5t103.5 -72t68.5 -116.5t24.5 -157zM1394 346q0 68 -14.5 115.5t-39.5 77t-58.5 43t-71.5 13.5t-71 -13.5t-57.5 -43t-38.5 -77t-14 -115.5 q0 -67 14 -113t38.5 -75t57.5 -42t71 -13t71.5 13t58.5 42t39.5 75t14.5 113z" />
-<glyph unicode="&" horiz-adv-x="1439" d="M676 1484q81 0 147.5 -26t115 -69t76.5 -100t33 -119l-114 -22q-5 -1 -9 -1q-13 0 -25 7t-17 26q-7 27 -23 55.5t-41 52t-60.5 38.5t-82.5 15q-51 0 -92 -16t-70.5 -45.5t-45 -69t-15.5 -85.5q0 -36 8.5 -68.5t26 -66t45 -68.5t66.5 -74l422 -429q39 69 62 144t31 151 q2 19 12.5 30.5t28.5 11.5h113q-2 -118 -38 -231.5t-104 -213.5l308 -311h-177q-30 0 -48 7t-41 30l-147 148q-96 -93 -221.5 -147t-276.5 -54q-82 0 -160.5 27.5t-140.5 80t-100 128.5t-38 171q0 72 24 136t66.5 118t101 97t127.5 74q-62 79 -91.5 153.5t-29.5 154.5 q0 75 27 140.5t78 114t124.5 77t164.5 28.5zM269 406q0 -67 24.5 -117.5t64.5 -85.5t91.5 -53t104.5 -18q115 0 206 42t161 112l-434 437q-109 -58 -163.5 -139.5t-54.5 -177.5z" />
-<glyph unicode="'" horiz-adv-x="471" d="M314 1467v-297l-16 -158q-3 -33 -17.5 -51t-46.5 -18q-27 0 -41.5 18t-20.5 51l-16 158v297h158z" />
-<glyph unicode="(" horiz-adv-x="614" d="M296 644q0 -219 56.5 -425.5t162.5 -393.5q6 -11 8 -19.5t2 -16.5q0 -14 -7 -23.5t-18 -16.5l-81 -49q-77 118 -131 233.5t-87 232.5t-48.5 235t-15.5 243q0 124 15.5 243t48.5 235t87 231.5t131 234.5l81 -50q11 -7 18 -16.5t7 -23.5q0 -15 -10 -35 q-108 -186 -163.5 -393t-55.5 -426z" />
-<glyph unicode=")" horiz-adv-x="614" d="M305 644q0 219 -55.5 426t-163.5 393q-10 19 -10 35q0 14 7 23.5t18 16.5l81 50q77 -119 131 -234.5t87 -231.5t48.5 -235t15.5 -243q0 -125 -15.5 -243t-48.5 -235t-87 -232.5t-131 -233.5l-81 49q-11 7 -18 16.5t-7 23.5q0 8 2 16.5t8 19.5q106 187 162.5 393.5 t56.5 425.5z" />
-<glyph unicode="*" horiz-adv-x="819" d="M362 884v201q0 19 3 37t10 34q-20 -26 -54 -46l-177 -101l-45 76l176 103q37 22 75 24q-20 2 -38 8t-37 18l-177 103l45 77l178 -102q36 -20 58 -53q-9 18 -13 37t-4 39v203h91v-202q0 -42 -15 -73q11 15 25 26.5t32 22.5l176 101l45 -77l-176 -102q-17 -11 -34.5 -17.5 t-35.5 -8.5q18 -2 35 -7.5t35 -16.5l177 -104l-45 -76l-177 102q-18 11 -33 22.5t-26 27.5q16 -34 17 -74v-202h-91z" />
-<glyph unicode="+" d="M667 1194v-437h416v-139h-416v-440h-150v440h-415v139h415v437h150z" />
-<glyph unicode="," horiz-adv-x="434" d="M96 126q0 24 9 44.5t24.5 36.5t38 25.5t49.5 9.5q31 0 55 -11.5t40 -31.5t24 -46t8 -57q0 -46 -13.5 -95.5t-38 -98t-60.5 -95t-82 -85.5l-31 30q-13 12 -14 29q0 13 15 28l26 30q16 19 32.5 43.5t30 54t19.5 63.5h-13q-27 0 -48.5 9t-37 26t-24.5 40t-9 51z" />
-<glyph unicode="-" horiz-adv-x="710" d="M102 691h506v-154h-506v154z" />
-<glyph unicode="." horiz-adv-x="434" d="M90 113q0 27 10 50t26.5 40.5t40 28t50.5 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5t-40 27t-26.5 40.5t-10 51z" />
-<glyph unicode="/" horiz-adv-x="763" d="M165 -22q-14 -36 -42.5 -53t-57.5 -17h-77l615 1533q13 33 38 50t58 17h77z" />
-<glyph unicode="0" d="M1126 733q0 -193 -41.5 -333.5t-113 -232.5t-169 -137t-209.5 -45q-113 0 -209.5 45t-168.5 137t-113 233t-41 333q0 193 41 334t113 234t168.5 138t209.5 45q112 0 209.5 -45t169 -138t113 -234t41.5 -334zM937 733q0 168 -28 282t-76 184t-110.5 100t-129.5 30 q-68 0 -130.5 -30t-109.5 -100t-75 -184t-28 -282t28 -281.5t75 -183t109.5 -100t130.5 -30.5t130 30.5t110 100t76 183t28 281.5z" />
-<glyph unicode="1" d="M294 139h315v1001q0 45 3 91l-262 -224q-10 -8 -20.5 -12t-19.5 -4q-15 0 -27.5 7t-18.5 16l-57 79l436 377h149v-1331h288v-139h-786v139z" />
-<glyph unicode="2" d="M615 1484q93 0 174 -28t140 -80.5t93 -128.5t34 -172q0 -82 -24.5 -151.5t-66.5 -133.5t-97 -124l-116 -122l-386 -396q41 11 82.5 18t80.5 7h492q30 0 47 -17.5t17 -44.5v-111h-979v62q0 19 8 40t25 38l470 472q58 59 106.5 114t83 110.5t52.5 112.5t18 121 q0 65 -20.5 113.5t-56 80t-84 47.5t-103.5 16t-102 -16.5t-83.5 -45.5t-61.5 -69t-35 -88q-8 -30 -24.5 -43t-43.5 -13q-5 0 -10.5 0.5t-13.5 1.5l-95 16q14 100 55 177.5t104 130t144.5 79.5t175.5 27z" />
-<glyph unicode="3" d="M635 1484q93 0 172 -26.5t135.5 -76t88.5 -119t32 -154.5q0 -70 -18 -124.5t-51 -96t-80.5 -70.5t-105.5 -46q143 -38 215.5 -127t72.5 -223q0 -101 -38.5 -182t-105 -138t-155 -87t-190.5 -30q-117 0 -199.5 29t-140 80t-94.5 121.5t-62 152.5l77 32q22 9 43 10 q20 0 36.5 -9t24.5 -27q2 -4 4 -9l4 -10q14 -30 34.5 -67t55.5 -70t86.5 -55.5t128.5 -22.5t135 25t96 65t57.5 89.5t19.5 97.5q0 59 -15.5 108t-57 85t-115 56.5t-187.5 20.5v132q93 1 159 20.5t108 53.5t61 81t19 104q0 63 -20 110.5t-55 78t-82.5 46t-102.5 15.5 t-102.5 -16.5t-84 -45.5t-61 -69.5t-36.5 -87.5q-8 -30 -24.5 -43t-42.5 -13q-5 0 -10.5 0.5t-12.5 1.5l-95 16q14 100 55 177.5t104 130t144.5 79.5t175.5 27z" />
-<glyph unicode="4" d="M925 529h222v-104q0 -16 -10 -27.5t-30 -11.5h-182v-386h-161v386h-650q-20 0 -35.5 12t-19.5 29l-18 93l714 947h170v-938zM764 1135q0 27 1.5 57.5t6.5 62.5l-533 -726h525v606z" />
-<glyph unicode="5" d="M1001 1388q0 -39 -24.5 -64.5t-82.5 -25.5h-461l-67 -385q115 25 212 25q115 0 202 -34t146.5 -93t90 -140t30.5 -176q0 -117 -41 -211.5t-112.5 -161.5t-167.5 -102.5t-208 -35.5q-65 0 -124 12.5t-110.5 34t-95.5 49.5t-77 58l55 78q18 27 49 27q19 0 45.5 -16 t63 -35.5t86.5 -35.5t118 -16q77 0 138.5 24.5t105 70.5t67 109.5t23.5 141.5q0 69 -20 124.5t-60.5 94t-100.5 60t-141 21.5q-55 0 -114.5 -9t-123.5 -29l-115 33l119 686h695v-79z" />
-<glyph unicode="6" d="M666 899q88 0 166.5 -29t138 -85t94.5 -137.5t35 -185.5q0 -101 -37 -188.5t-103 -152t-159 -101t-205 -36.5q-111 0 -200.5 35t-153 100t-97.5 158t-34 207q0 96 43 205t136 234l372 500q14 18 39.5 31t58.5 13h162l-509 -644q52 36 115.5 56t137.5 20zM287 453 q0 -71 20.5 -129.5t60 -100.5t96 -65t129.5 -23q74 0 133 23.5t101.5 65.5t65.5 99.5t23 125.5q0 72 -22.5 129.5t-63 98t-98 62t-126.5 21.5q-74 0 -133 -25t-100.5 -67.5t-63.5 -98.5t-22 -116z" />
-<glyph unicode="7" d="M1110 1467v-82q0 -35 -7.5 -57t-16.5 -38l-607 -1225q-13 -27 -36.5 -46t-63.5 -19h-130l616 1210q13 26 27 47.5t32 40.5h-766q-17 0 -31 14t-14 31v124h997z" />
-<glyph unicode="8" d="M593 -16q-110 0 -201 29t-156.5 83.5t-101.5 131.5t-36 173q0 141 74 233t211 131q-116 43 -174.5 128.5t-58.5 204.5q0 81 31.5 151.5t90 122.5t140 82t181.5 30q99 0 181 -30t140.5 -82t90 -122.5t31.5 -151.5q0 -119 -59 -204.5t-174 -128.5q137 -39 210.5 -130.5 t73.5 -233.5q0 -96 -36 -173t-101 -131.5t-156 -83.5t-201 -29zM593 129q72 0 128.5 20t96 56.5t60.5 87t21 111.5q0 76 -25 130t-67.5 87.5t-98 49.5t-115.5 16t-115.5 -16t-98 -49.5t-67.5 -87.5t-25 -130q0 -61 21 -111.5t60.5 -87t96 -56.5t128.5 -20zM593 834 q72 0 122.5 22t82 58t46 83t14.5 98t-17 96t-50 79t-83 53t-115 19q-66 0 -115.5 -19t-83 -53t-50 -79t-16.5 -96q0 -50 14 -97.5t46 -83.5t82.5 -58t122.5 -22z" />
-<glyph unicode="9" d="M562 602q-83 0 -157 27.5t-130.5 81.5t-89.5 132.5t-33 179.5q0 96 35.5 180t100 146.5t153.5 98.5t196 36q105 0 191 -35t147.5 -97.5t95 -149.5t33.5 -192q0 -63 -12 -120t-34.5 -111.5t-53.5 -108.5t-71 -111l-358 -516q-13 -19 -37.5 -31t-56.5 -12h-168l447 585 l42 56l37 53q-56 -45 -127 -68.5t-150 -23.5zM929 1031q0 69 -22 124.5t-61 94.5t-93 60t-118 21q-68 0 -123.5 -22t-95 -61t-61 -93t-21.5 -119q0 -70 20 -124.5t57.5 -92.5t91 -57.5t120.5 -19.5q74 0 130.5 24.5t95.5 64t59.5 92t20.5 108.5z" />
-<glyph unicode=":" horiz-adv-x="516" d="M131 113q0 27 10 50t26.5 40.5t40 28t50.5 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5t-40 27t-26.5 40.5t-10 51zM131 881q0 27 10 50t26.5 40.5t40 28t50.5 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5 q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5t-40 27t-26.5 40.5t-10 51z" />
-<glyph unicode=";" horiz-adv-x="516" d="M137 126q0 24 9 44.5t24.5 36.5t38 25.5t49.5 9.5q31 0 55 -11.5t40 -31.5t24 -46t8 -57q0 -46 -13.5 -95.5t-38 -98t-60.5 -95t-83 -85.5l-30 30q-13 12 -14 29q0 13 15 28l26 30q16 19 32.5 43.5t30 54t19.5 63.5h-13q-27 0 -48.5 9t-37 26t-24.5 40t-9 51zM131 881 q0 27 10 50t26.5 40.5t40 28t50.5 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5t-40 27t-26.5 40.5t-10 51z" />
-<glyph unicode="<" d="M152 727l792 411v-130q0 -17 -8 -30t-29 -24l-460 -233q-20 -11 -43 -19t-49 -14q26 -5 49 -13t43 -19l460 -232q20 -10 28.5 -23.5t8.5 -29.5v-131l-792 411v76z" />
-<glyph unicode="=" d="M154 588h879v-138h-879v138zM154 931h879v-138h-879v138z" />
-<glyph unicode=">" d="M244 240v131q0 16 8 29.5t29 23.5l459 232q20 10 42.5 18.5t47.5 13.5q-26 6 -47.5 14t-42.5 19l-459 233q-20 10 -28.5 23t-8.5 31v130l791 -411v-76z" />
-<glyph unicode="?" horiz-adv-x="815" d="M35 1336q32 30 70 56.5t83.5 47t98.5 32.5t114 12q81 0 150.5 -23.5t119.5 -66.5t78.5 -104.5t28.5 -138.5q0 -78 -23 -134t-58 -98.5t-77 -74.5l-79 -59q-36 -28 -62 -55.5t-30 -60.5l-19 -157h-125l-12 170v11q0 43 23 76.5t58.5 62.5t75.5 58.5t75.5 64.5t58.5 80 t23 107q0 44 -17.5 79.5t-47 61t-70 38.5t-86.5 13q-62 0 -107 -15t-75.5 -33.5t-49.5 -34t-31 -15.5q-26 0 -40 24zM236 113q0 27 9.5 50t26.5 40.5t40.5 28t49.5 10.5q27 0 50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50 9.5 t-40 27t-26.5 40.5t-9.5 51z" />
-<glyph unicode="@" horiz-adv-x="1683" d="M1195 190q-80 0 -130 38.5t-64 118.5q-59 -83 -128.5 -118.5t-149.5 -35.5q-61 0 -106.5 20.5t-75.5 58t-45 89t-15 110.5q0 87 33.5 175.5t99 160t163 116.5t225.5 45q69 0 121 -11t98 -31l-96 -370q-19 -77 -19 -127q0 -37 9 -61t25 -38t37 -19t45 -5q50 0 95 29 t79.5 81t54 125t19.5 162q0 141 -45.5 248t-124.5 178t-187 106.5t-233 35.5q-137 0 -257 -52.5t-209 -144.5t-140.5 -218t-51.5 -274q0 -174 55 -306t149.5 -221t222 -134t274.5 -45q156 0 275 34t206 86q15 9 28 9q22 0 31 -24l26 -68q-110 -74 -249.5 -116t-316.5 -42 t-330 56.5t-265 162.5t-176 259.5t-64 348.5q0 112 28 215t79.5 192.5t123 164t159.5 127t189.5 82t212.5 29.5q94 0 184 -20.5t170.5 -60.5t148 -99t116 -135.5t76 -170t27.5 -203.5q0 -111 -31.5 -204t-86 -162t-129 -108t-160.5 -39zM759 313q32 0 64 10.5t62 36 t55.5 69.5t42.5 111l78 302q-40 9 -87 9q-77 0 -141 -32.5t-110 -84.5t-72 -119.5t-26 -138.5q0 -74 33.5 -118.5t100.5 -44.5z" />
-<glyph unicode="A" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5z" />
-<glyph unicode="B" horiz-adv-x="1325" d="M178 0v1467h468q135 0 233 -26.5t161 -75.5t93 -120t30 -161q0 -54 -17 -104t-51 -93t-86 -77t-121 -55q161 -32 242.5 -116t81.5 -221q0 -93 -34 -170t-100 -132.5t-162 -85.5t-219 -30h-519zM377 669v-511h317q85 0 146 19.5t100.5 54.5t58 84t18.5 107 q0 114 -80.5 180t-243.5 66h-316zM377 810h262q84 0 145.5 18.5t102 51t60 79.5t19.5 102q0 129 -78 189.5t-242 60.5h-269v-501z" />
-<glyph unicode="C" horiz-adv-x="1402" d="M1212 303q16 0 30 -13l78 -85q-90 -104 -218.5 -162.5t-309.5 -58.5q-159 0 -288 54.5t-220 153.5t-141.5 237t-50.5 304t54 304.5t151 237.5t233 154t299 55q162 0 279.5 -50.5t208.5 -136.5l-65 -91q-7 -10 -16 -16.5t-27 -6.5q-13 0 -28 9l-35 25q-20 14 -48 30.5 t-66 30.5t-88 24t-116 10q-118 0 -215.5 -40.5t-168 -115.5t-110 -182.5t-39.5 -240.5q0 -137 39.5 -244.5t107.5 -182t161 -113t201 -38.5q66 0 118 7.5t96.5 24t83 41.5t77.5 60q17 15 33 15z" />
-<glyph unicode="D" horiz-adv-x="1542" d="M1450 733q0 -165 -52 -300t-147.5 -231.5t-228.5 -149t-295 -52.5h-549v1467h549q162 0 295 -52.5t228.5 -149.5t147.5 -232t52 -300zM1246 733q0 135 -37 241.5t-104.5 180.5t-163.5 113t-214 39h-349v-1146h349q118 0 214 39t163.5 112t104.5 179.5t37 241.5z" />
-<glyph unicode="E" horiz-adv-x="1189" d="M1082 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-904v1467h904z" />
-<glyph unicode="F" horiz-adv-x="1159" d="M1082 1467v-161h-704v-513h602v-162h-602v-631h-200v1467h904z" />
-<glyph unicode="G" horiz-adv-x="1503" d="M833 144q59 0 108.5 6t93.5 17t83 27t78 36v324h-227q-19 0 -31 11.5t-12 27.5v113h450v-564q-55 -40 -115 -69.5t-128 -49.5t-146 -29.5t-169 -9.5q-160 0 -293 54.5t-229 153.5t-150 237t-54 304q0 168 53 306.5t150.5 237t236.5 153t311 54.5q87 0 161.5 -13 t138.5 -37t118.5 -58.5t101.5 -77.5l-56 -90q-17 -28 -45 -27q-16 0 -36 11q-26 14 -57.5 34.5t-77 39.5t-107.5 32.5t-147 13.5q-124 0 -224.5 -40.5t-171 -116t-108.5 -182.5t-38 -240q0 -139 39.5 -248t111 -185t170 -116t217.5 -40z" />
-<glyph unicode="H" horiz-adv-x="1548" d="M1368 0h-200v668h-790v-668h-200v1467h200v-654h790v654h200v-1467z" />
-<glyph unicode="I" horiz-adv-x="628" d="M414 0h-199v1467h199v-1467z" />
-<glyph unicode="J" horiz-adv-x="909" d="M730 507q0 -123 -30 -220.5t-89 -164.5t-145 -102.5t-198 -35.5q-99 0 -207 28q2 30 6 59l6 58q2 17 12.5 28t32.5 11q18 0 49 -9t82 -9q68 0 120.5 20t89 63t55 110.5t18.5 159.5v964h198v-960z" />
-<glyph unicode="K" horiz-adv-x="1394" d="M396 824h75q39 0 62 10t44 33l488 553q23 26 43.5 36.5t53.5 10.5h169l-559 -631q-22 -24 -40.5 -40.5t-40.5 -26.5q29 -9 50.5 -27.5t44.5 -46.5l584 -695h-172q-19 0 -32.5 3t-23 8t-18 13.5t-16.5 17.5l-507 583q-11 12 -21 20.5t-22.5 15t-29.5 9t-42 2.5h-90v-672 h-197v1467h197v-643z" />
-<glyph unicode="L" horiz-adv-x="1052" d="M377 167h635v-167h-834v1467h199v-1300z" />
-<glyph unicode="M" horiz-adv-x="1884" d="M900 530q14 -25 25 -51l21 -55q10 29 21.5 55t25.5 52l497 903q13 24 27.5 28.5t41.5 4.5h146v-1467h-174v1078q0 22 1 46.5t3 50.5l-503 -918q-26 -46 -71 -46h-29q-46 0 -72 46l-514 921q3 -27 4.5 -52.5t1.5 -47.5v-1078h-174v1467h147q27 0 41 -5t27 -28z" />
-<glyph unicode="N" horiz-adv-x="1548" d="M281 1467q27 0 39.5 -6.5t28.5 -26.5l850 -1106q-3 27 -4 51.5t-1 48.5v1039h174v-1467h-100q-24 0 -40 8t-31 28l-849 1105q2 -26 3 -50.5t1 -44.5v-1046h-174v1467h103z" />
-<glyph unicode="O" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242z" />
-<glyph unicode="P" horiz-adv-x="1251" d="M396 549v-549h-197v1467h433q139 0 242 -32t170.5 -91.5t101 -143.5t33.5 -187q0 -102 -36 -187.5t-105 -147t-171.5 -95.5t-234.5 -34h-236zM396 707h236q85 0 150 22.5t109 63t66.5 96.5t22.5 124q0 140 -86.5 219t-261.5 79h-236v-604z" />
-<glyph unicode="Q" horiz-adv-x="1634" d="M1541 733q0 -103 -21 -196.5t-61 -173.5t-97 -145.5t-129 -114.5l377 -406h-164q-37 0 -65.5 10t-52.5 36l-258 281q-58 -18 -121 -28.5t-132 -10.5q-162 0 -295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155 t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242z" />
-<glyph unicode="R" horiz-adv-x="1318" d="M396 612v-612h-197v1467h414q139 0 240.5 -28t167.5 -81t98 -128.5t32 -168.5q0 -78 -24.5 -145.5t-71 -121.5t-114 -91.5t-151.5 -57.5q37 -22 65 -62l428 -583h-176q-54 0 -80 42l-381 524q-17 25 -37.5 35.5t-61.5 10.5h-151zM396 757h208q87 0 153 21t110.5 59.5 t67 91.5t22.5 118q0 131 -86.5 197.5t-257.5 66.5h-217v-554z" />
-<glyph unicode="S" horiz-adv-x="1085" d="M930 1238q-9 -15 -19.5 -23t-26.5 -8q-17 0 -40.5 17.5t-58.5 38.5t-85 38.5t-120 17.5q-67 0 -118 -18t-85.5 -48.5t-52 -72t-17.5 -89.5q0 -61 30.5 -102t80 -69.5t112.5 -49.5l129 -44q66 -23 129 -50.5t112.5 -70.5t80 -105.5t30.5 -154.5q0 -96 -33 -180.5t-96 -147 t-154.5 -98t-208.5 -35.5q-142 0 -259.5 51.5t-200.5 139.5l58 94q8 11 19.5 19t26.5 8q22 0 49.5 -23t69 -50.5t100 -51t143.5 -23.5q71 0 126.5 19.5t93.5 55t58.5 84.5t20.5 110q0 67 -30 109t-79 71t-112 49l-129 41q-66 21 -129 48.5t-112.5 71.5t-79.5 110t-30 163 q0 78 30 151t87.5 129t142 90t194.5 34q123 0 224 -39t177 -113z" />
-<glyph unicode="T" horiz-adv-x="1208" d="M1178 1467v-167h-475v-1300h-198v1300h-476v167h1149z" />
-<glyph unicode="U" horiz-adv-x="1495" d="M749 158q91 0 162.5 30.5t121 86t76 132t26.5 168.5v892h197v-892q0 -127 -40.5 -235.5t-115.5 -187.5t-183.5 -124t-243.5 -45t-244 45t-184.5 124t-116 188t-40.5 235v892h197v-890q0 -92 26.5 -169t76 -132.5t122 -86.5t163.5 -31z" />
-<glyph unicode="V" horiz-adv-x="1392" d="M8 1467h159q27 0 43 -13t24 -34l415 -1035q14 -35 26 -76t23 -85q9 44 20 85t25 76l413 1035q7 17 24.5 32t43.5 15h159l-598 -1467h-179z" />
-<glyph unicode="W" horiz-adv-x="2086" d="M14 1467h165q27 0 44.5 -13t23.5 -34l303 -1020q8 -28 14.5 -59.5l13.5 -66.5l14 68q7 32 16 58l345 1020q6 17 24 32t44 15h57q27 0 44 -13t24 -34l343 -1020q18 -53 33 -121l11 64q5 31 13 57l304 1020q5 18 23 32.5t44 14.5h155l-458 -1467h-178l-372 1119 q-11 32 -21 74l-9 -39q-5 -19 -10 -35l-374 -1119h-178z" />
-<glyph unicode="X" horiz-adv-x="1316" d="M519 754l-484 713h197q22 0 32 -7t19 -20l383 -588q7 22 21 47l362 537q9 14 19.5 22.5t26.5 8.5h189l-486 -704l502 -763h-196q-23 0 -35.5 12t-20.5 26l-394 615q-7 -22 -18 -41l-383 -574q-9 -14 -21 -26t-33 -12h-185z" />
-<glyph unicode="Y" horiz-adv-x="1288" d="M743 584v-584h-197v584l-538 883h174q27 0 42.5 -13t26.5 -33l336 -570q20 -36 34 -67.5t25 -62.5q11 32 24.5 63.5t34.5 66.5l334 570q9 16 25 31t42 15h176z" />
-<glyph unicode="Z" horiz-adv-x="1277" d="M1200 1467v-73q0 -35 -21 -66l-831 -1166h838v-162h-1098v78q0 31 20 58l831 1170h-812v161h1073z" />
-<glyph unicode="[" horiz-adv-x="614" d="M145 -296v1866h377v-72q0 -23 -13.5 -35.5t-36.5 -12.5h-173v-1625h173q23 0 36.5 -13t13.5 -36v-72h-377z" />
-<glyph unicode="\" horiz-adv-x="768" d="M-20 1508h77q34 0 58.5 -17t38.5 -50l615 -1533h-77q-30 0 -58.5 17.5t-41.5 52.5z" />
-<glyph unicode="]" horiz-adv-x="614" d="M92 -224q0 20 14 34.5t36 14.5h173v1625h-173q-23 0 -36.5 14t-13.5 34v72h377v-1866h-377v72z" />
-<glyph unicode="^" d="M528 1467h118l367 -661h-132q-17 0 -29.5 10t-21.5 25l-200 360q-13 24 -23 46t-17 43q-14 -45 -38 -89l-199 -360q-8 -14 -19.5 -24.5t-32.5 -10.5h-139z" />
-<glyph unicode="_" horiz-adv-x="806" d="M807 -169v-123h-807v123h807z" />
-<glyph unicode="`" horiz-adv-x="628" d="M212 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5t-27 22.5l-240 264h173z" />
-<glyph unicode="a" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5z" />
-<glyph unicode="b" horiz-adv-x="1144" d="M156 0v1508h183v-620q65 75 148 120.5t191 45.5q90 0 162.5 -34t124 -101t79 -166t27.5 -228q0 -115 -30.5 -213.5t-88.5 -170.5t-141.5 -113.5t-187.5 -41.5q-100 0 -170.5 38.5t-122.5 108.5l-9 -94q-8 -39 -48 -39h-117zM618 908q-89 0 -156 -41t-123 -115v-502 q49 -68 109 -95.5t134 -27.5q145 0 223 103.5t78 294.5q0 101 -18 174t-52 119.5t-83.5 68t-111.5 21.5z" />
-<glyph unicode="c" horiz-adv-x="956" d="M857 853q-8 -11 -16 -17.5t-24 -6.5q-15 0 -33 13t-45.5 28.5t-67 28t-97.5 12.5q-76 0 -134 -27t-97.5 -78t-59.5 -124t-20 -163q0 -94 21.5 -167t60.5 -123t95 -76t125 -26q67 0 110 16t71.5 35.5t47 35t36.5 15.5q24 0 35 -17l51 -67q-68 -83 -169 -121t-213 -38 q-97 0 -181 35.5t-145.5 104t-96.5 167.5t-35 226q0 116 32 214t94 169.5t153 111.5t209 40q109 0 193 -35.5t148 -99.5z" />
-<glyph unicode="d" horiz-adv-x="1144" d="M880 0q-39 0 -50 38l-16 126q-67 -81 -152 -129.5t-196 -48.5q-89 0 -162 34t-124 100.5t-78.5 166t-27.5 228.5q0 115 30.5 213.5t88.5 171.5t141 114.5t188 41.5q95 0 163 -32.5t121 -90.5v575h182v-1508h-108zM526 133q89 0 156.5 41t123.5 116v502q-50 68 -110 94.5 t-133 26.5q-145 0 -223 -103t-78 -295q0 -101 17.5 -173.5t51.5 -119t83 -68t112 -21.5z" />
-<glyph unicode="e" horiz-adv-x="1073" d="M560 1054q93 0 172 -31.5t136.5 -90.5t89.5 -145.5t32 -196.5q0 -43 -9 -57.5t-35 -14.5h-690q2 -98 26.5 -171t67.5 -121.5t102.5 -72.5t133.5 -24q69 0 118.5 16t85 34.5t59.5 34t42 15.5q23 0 35 -17l51 -67q-34 -41 -81 -71t-101 -49.5t-111 -29t-114 -9.5 q-108 0 -198 36t-156 106.5t-103 174t-37 237.5q0 109 33 203t95.5 163t152.5 108.5t203 39.5zM564 920q-132 0 -207.5 -76.5t-94.5 -211.5h564q0 63 -17 116t-51 91.5t-83 59.5t-111 21z" />
-<glyph unicode="f" horiz-adv-x="690" d="M190 0v882l-114 13q-22 5 -35.5 16t-13.5 31v75h163v100q0 89 25.5 158.5t72 117t112 72t147.5 24.5q70 0 129 -21l-4 -91q-1 -20 -17.5 -24t-46.5 -4h-31q-47 0 -85.5 -12.5t-66.5 -40t-42.5 -72.5t-14.5 -112v-95h300v-132h-294v-885h-184z" />
-<glyph unicode="g" horiz-adv-x="1046" d="M499 1055q68 0 126.5 -15t106.5 -44h282v-67q0 -34 -43 -43l-118 -17q35 -67 35 -148q0 -76 -29.5 -138t-81 -106t-122.5 -67.5t-156 -23.5q-73 0 -138 17q-33 -20 -49.5 -43.5t-16.5 -46.5q0 -37 29.5 -55.5t79 -27t112 -10.5t127.5 -6.5t127.5 -16t111.5 -37 t78.5 -70.5t29.5 -117q0 -67 -33 -129t-95.5 -110.5t-153 -78t-203.5 -29.5q-114 0 -199.5 22.5t-141.5 60.5t-84.5 87.5t-28.5 104.5q0 77 48.5 130.5t133.5 85.5q-44 20 -70 54.5t-26 91.5q0 23 8.5 47t25 47.5t41.5 45t57 37.5q-77 43 -120.5 114.5t-43.5 166.5 q0 76 29.5 138t81.5 105.5t124.5 67t158.5 23.5zM822 -56q0 39 -21.5 62.5t-58 36t-85 19t-101.5 9t-108.5 5.5t-105.5 11q-58 -28 -94.5 -67.5t-36.5 -95.5q0 -35 18 -65t55 -52t92.5 -35t131.5 -13q74 0 132 13.5t98.5 38t62 58.5t21.5 75zM499 507q55 0 97.5 15.5t71 43 t43 66t14.5 84.5q0 95 -58 151.5t-168 56.5t-168 -56.5t-58 -151.5q0 -46 15 -84.5t43.5 -66t71 -43t96.5 -15.5z" />
-<glyph unicode="h" horiz-adv-x="1138" d="M150 0v1508h182v-610q67 71 147.5 113.5t186.5 42.5q85 0 150 -28.5t108.5 -80t66 -124t22.5 -161.5v-660h-183v660q0 118 -53.5 183t-164.5 65q-81 0 -151 -39t-129 -105v-764h-182z" />
-<glyph unicode="i" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182zM393 1363q0 -27 -10.5 -50t-28.5 -41t-41.5 -28t-50.5 -10t-50 10t-40.5 28t-28 41t-10.5 50t10.5 51t28 42t41 28t49.5 10q27 0 50.5 -10t41.5 -28t28.5 -42t10.5 -51z" />
-<glyph unicode="j" horiz-adv-x="520" d="M352 1037v-1114q0 -62 -16.5 -116t-51.5 -94t-91 -63t-134 -23q-34 0 -61.5 5.5t-54.5 15.5l8 98q2 13 9 17t23 4q8 0 17 -0.5t23 -0.5q80 0 113.5 37t33.5 120v1114h182zM393 1363q0 -27 -10.5 -50t-28.5 -41t-41.5 -28t-50.5 -10t-50 10t-40.5 28t-28 41t-10.5 50 t10.5 51t28 42t41 28t49.5 10q27 0 50.5 -10t41.5 -28t28.5 -42t10.5 -51z" />
-<glyph unicode="k" horiz-adv-x="1073" d="M339 1508v-887h47q20 0 33.5 5.5t30.5 22.5l327 351q15 16 30.5 26.5t41.5 10.5h166l-382 -406q-14 -17 -28 -30.5t-32 -23.5q18 -12 33.5 -28.5t28.5 -36.5l405 -512h-163q-23 0 -39 8.5t-30 27.5l-341 425q-15 22 -30.5 28.5t-46.5 6.5h-51v-496h-183v1508h183z" />
-<glyph unicode="l" horiz-adv-x="524" d="M352 1508v-1508h-182v1508h182z" />
-<glyph unicode="m" horiz-adv-x="1681" d="M150 0v1037h108q39 0 49 -38l14 -106q57 71 128 116t165 45q105 0 170.5 -58.5t94.5 -157.5q22 56 57 97t79 67.5t93.5 39t100.5 12.5q82 0 146 -26.5t108.5 -76.5t68 -123t23.5 -168v-660h-182v660q0 122 -53 185t-155 63q-45 0 -85.5 -15.5t-71 -46.5t-48.5 -77.5 t-18 -108.5v-660h-182v660q0 125 -50.5 186.5t-146.5 61.5q-68 0 -125.5 -36t-105.5 -99v-773h-182z" />
-<glyph unicode="n" horiz-adv-x="1138" d="M150 0v1037h108q39 0 49 -38l15 -112q68 75 151 121t193 46q85 0 150 -28.5t108.5 -80t66 -124t22.5 -161.5v-660h-183v660q0 118 -53.5 183t-164.5 65q-81 0 -151 -39t-129 -105v-764h-182z" />
-<glyph unicode="o" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5z" />
-<glyph unicode="p" horiz-adv-x="1130" d="M150 -351v1388h108q39 0 49 -38l16 -122q67 81 152 130t197 49q89 0 161.5 -34.5t124 -101.5t79 -166.5t27.5 -228.5q0 -115 -31 -213.5t-88 -170.5t-140.5 -113.5t-188.5 -41.5q-96 0 -164 31.5t-120 90.5v-459h-182zM611 908q-89 0 -156 -41t-123 -115v-502 q50 -68 110 -95.5t133 -27.5q144 0 222.5 103.5t78.5 294.5q0 101 -18 174t-52 119.5t-83.5 68t-111.5 21.5z" />
-<glyph unicode="q" horiz-adv-x="1144" d="M988 1037v-1388h-182v505q-66 -76 -149.5 -122t-190.5 -46q-89 0 -162 34t-124 100.5t-78.5 166t-27.5 228.5q0 115 30.5 213.5t88.5 171.5t141 114.5t188 41.5q100 0 170.5 -36t125.5 -101l12 80q10 38 50 38h108zM526 133q89 0 156.5 41t123.5 116v502 q-49 66 -109.5 93.5t-133.5 27.5q-145 0 -223 -103t-78 -295q0 -101 17.5 -173.5t51.5 -119t83 -68t112 -21.5z" />
-<glyph unicode="r" horiz-adv-x="825" d="M150 0v1037h104q30 0 41 -11t15 -39l13 -162q53 109 131 170t184 61q43 0 78 -10t64 -27l-23 -136q-7 -26 -32 -26q-14 0 -44 10t-83 10q-95 0 -159 -55.5t-107 -161.5v-660h-182z" />
-<glyph unicode="s" horiz-adv-x="888" d="M743 866q-12 -23 -37 -22q-15 0 -35 11t-48 25t-67 26t-92 12q-46 0 -83 -12t-63 -32.5t-40 -47.5t-14 -59q0 -40 23 -66.5t61 -46t86 -34.5l99 -32q51 -17 99 -37.5t86 -51t61 -75t23 -107.5q0 -72 -25.5 -132.5t-76 -105t-123 -70t-167.5 -25.5q-109 0 -197 35t-150 91 l43 69q8 13 19.5 20.5t30.5 7.5q18 0 38.5 -14.5t49.5 -32t70.5 -31.5t104.5 -14q53 0 93 13.5t66.5 37t39.5 54.5t13 66q0 43 -23 71t-61 48t-87 35l-99 31q-51 16 -99.5 37t-86.5 53t-61 78.5t-23 113.5q0 59 24.5 114t71.5 96.5t116 66t157 24.5q102 0 183.5 -32.5 t140.5 -88.5z" />
-<glyph unicode="t" horiz-adv-x="763" d="M464 -16q-123 0 -189 68.5t-66 197.5v635h-125q-16 0 -27.5 9.5t-11.5 30.5v72l170 22l42 320q2 15 13.5 25t28.5 10h92v-357h297v-132h-297v-623q0 -66 32 -97.5t82 -31.5q29 0 49.5 7.5t36 17t26.5 17t19 7.5q14 0 26 -17l53 -87q-47 -44 -113.5 -69t-137.5 -25z" />
-<glyph unicode="u" horiz-adv-x="1138" d="M307 1037v-661q0 -118 54.5 -182.5t163.5 -64.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-68 -75 -151.5 -120.5t-192.5 -45.5q-85 0 -150 28t-109 79t-66 124t-22 161v661h182z" />
-<glyph unicode="v" horiz-adv-x="1048" d="M18 1037h150q22 0 36 -11t20 -27l263 -667q14 -37 22.5 -74t15.5 -73l18 73q9 37 23 74l267 667q6 16 19.5 27t34.5 11h142l-423 -1037h-165z" />
-<glyph unicode="w" horiz-adv-x="1568" d="M14 1037h144q23 0 37 -11t19 -27l199 -667l15 -71q7 -34 12 -70q8 35 19 70l21 71l219 672q5 15 18 25t33 10h78q20 0 34 -10t19 -25l214 -672q11 -36 20 -71l17 -68q5 34 13 70.5t17 68.5l203 667q5 16 19.5 27t33.5 11h137l-335 -1037h-145q-27 0 -37 35l-229 703 q-8 24 -13 48l-11 48l-10 -49q-5 -25 -13 -48l-233 -702q-11 -35 -42 -35h-137z" />
-<glyph unicode="x" horiz-adv-x="1032" d="M392 531l-349 506h175q23 0 33 -7t18 -20l254 -389q9 29 27 57l223 328q10 14 20.5 22.5t25.5 8.5h168l-349 -495l363 -542h-175q-23 0 -35.5 12t-20.5 26l-261 406q-7 -30 -22 -53l-241 -353q-10 -14 -22 -26t-33 -12h-162z" />
-<glyph unicode="y" horiz-adv-x="1048" d="M454 -306q-9 -20 -23 -32.5t-43 -12.5h-135l189 411l-428 977h158q24 0 37 -11.5t19 -26.5l278 -653q9 -23 15.5 -45t12.5 -46l14 46q7 23 16 46l270 652q6 16 20.5 27t32.5 11h145z" />
-<glyph unicode="z" horiz-adv-x="946" d="M873 959q0 -19 -7 -37t-18 -32l-561 -748h566v-142h-781v76q0 13 6.5 31t18.5 34l565 753h-559v143h770v-78z" />
-<glyph unicode="{" horiz-adv-x="614" d="M185 435q0 65 -35.5 106.5t-104.5 41.5v109q69 0 104.5 41t35.5 107q0 51 -8 101t-17.5 100.5t-18 101.5t-8.5 104q0 71 21 130.5t63.5 102.5t105.5 66.5t147 23.5h54v-81q0 -20 -14 -29.5t-27 -9.5h-20q-79 0 -124.5 -51.5t-45.5 -140.5q0 -57 7 -110t16.5 -104 t16.5 -101t7 -101q0 -39 -11.5 -72.5t-32.5 -59.5t-49 -45t-62 -28q34 -9 62 -28t49 -45.5t32.5 -59.5t11.5 -71q0 -51 -7 -101t-16.5 -101t-16.5 -104t-7 -111q0 -89 45.5 -140t124.5 -51h20q12 0 26.5 -9.5t14.5 -29.5v-82h-54q-84 0 -147 24t-105.5 67t-63.5 102.5 t-21 130.5q0 53 8.5 103.5t18 101.5t17.5 101t8 101z" />
-<glyph unicode="|" horiz-adv-x="614" d="M236 1570h141v-1921h-141v1921z" />
-<glyph unicode="}" horiz-adv-x="614" d="M429 435q0 -51 8 -101t18 -101t18 -101.5t8 -103.5q0 -71 -21.5 -130.5t-63.5 -102.5t-105 -67t-147 -24h-54v82q0 20 14.5 29.5t26.5 9.5h21q79 0 124.5 51t45.5 140q0 57 -7.5 110.5t-16.5 104.5t-16.5 101t-7.5 101q0 38 11.5 71t32.5 59.5t49 45.5t62 28 q-34 9 -62 28t-49 45t-32.5 59.5t-11.5 72.5q0 51 7.5 101t16.5 101t16.5 104t7.5 110q0 88 -46 140t-124 52h-21q-12 0 -26.5 9t-14.5 30v81h54q84 0 147 -23.5t105 -66.5t63.5 -102.5t21.5 -130.5q0 -53 -8 -104t-18 -101.5t-18 -100.5t-8 -101q0 -66 36 -107t104 -41 v-109q-69 0 -104.5 -41.5t-35.5 -106.5z" />
-<glyph unicode="~" d="M777 628q67 0 104.5 43.5t38.5 114.5h147q0 -69 -19 -126t-54.5 -98t-87.5 -63.5t-118 -22.5q-53 0 -105 16.5t-101 36.5l-93 37q-44 17 -80 17q-67 0 -104.5 -43t-38.5 -116h-147q0 69 19 126t54 98t87 64t118 23q53 0 105.5 -17t101.5 -37l92 -36q44 -17 81 -17z" />
-<glyph unicode="¡" horiz-adv-x="702" d="M268 -351v554q0 46 1.5 89.5t5 88t8 91.5t10.5 100h124q6 -53 10.5 -100t7.5 -91.5t4.5 -88t1.5 -89.5v-554h-173zM223 926q0 28 10 50.5t27.5 40t40.5 27.5t50 10t50 -10t40.5 -27.5t27.5 -40.5t10 -50t-10 -50.5t-27.5 -41t-40.5 -27.5t-50 -10q-28 0 -50.5 10 t-40 27.5t-27.5 41t-10 50.5z" />
-<glyph unicode="¢" d="M574 -11q-94 10 -173 50.5t-137 108t-90.5 160.5t-32.5 210q0 114 34 209.5t98.5 166.5t158.5 112.5t216 44.5l12 183q2 20 16 35t36 15h67l-16 -238q84 -12 151.5 -44.5t122.5 -82.5l-47 -64q-8 -11 -15.5 -16.5t-22.5 -5.5q-12 0 -29 8l-40 21q-23 12 -55 24.5 t-75 19.5l-54 -780q65 4 108.5 20t73.5 33.5t49.5 31.5t36.5 14q11 0 20 -4.5t14 -11.5l50 -65q-61 -74 -156 -111.5t-205 -44.5l-12 -179q-2 -19 -16 -34.5t-35 -15.5h-68zM323 518q0 -166 69 -264t193 -122l53 778q-78 -6 -137 -35t-99 -80t-59.5 -120.5t-19.5 -156.5z " />
-<glyph unicode="£" d="M53 688q0 27 16.5 45.5t46.5 18.5h137v267q0 96 27.5 180.5t84 147.5t140.5 99.5t196 36.5q80 0 142 -20t110 -55t83.5 -81t60.5 -99l-74 -47q-10 -6 -21 -9t-21 -3q-14 0 -27 6t-24 20l-42 50q-21 24 -47 42t-59.5 28.5t-80.5 10.5q-65 0 -113.5 -21.5t-81.5 -61.5 t-49.5 -96t-16.5 -126v-269h452v-74q0 -18 -15.5 -33.5t-37.5 -15.5h-399v-249q0 -77 -29 -133t-80 -102q30 5 59 9t60 4h692v-78q0 -14 -6 -28t-16 -26t-24.5 -19t-32.5 -7h-987v118q35 10 66.5 27.5t56 43.5t39.5 61.5t15 82.5v296h-200v59z" />
-<glyph unicode="¤" d="M228 688q0 58 17 110t47 97l-157 157l93 92l155 -156q45 32 98.5 49.5t112.5 17.5q58 0 110.5 -17t96.5 -48l156 157l92 -93l-155 -156q32 -45 49.5 -97.5t17.5 -112.5q0 -58 -17 -110.5t-47 -96.5l156 -154l-94 -95l-155 156q-45 -31 -98.5 -48t-111.5 -17t-110 16.5 t-97 46.5l-157 -157l-91 94l155 155q-31 45 -48.5 98t-17.5 112zM364 688q0 -47 17.5 -88.5t49.5 -72.5t73.5 -49.5t89.5 -18.5t90.5 18.5t74 49.5t49.5 72.5t18 88.5q0 48 -18 90t-49.5 74t-74 50t-90.5 18t-89.5 -18t-73.5 -50t-49.5 -74t-17.5 -90z" />
-<glyph unicode="¥" d="M150 640h313l-418 827h153q27 0 42.5 -12.5t25.5 -33.5l283 -579q14 -36 24.5 -66t17.5 -59q7 30 16 60t24 65l281 579q8 17 25 31.5t43 14.5h154l-419 -827h314v-104h-348v-108h348v-105h-348v-323h-183v323h-348v105h348v108h-348v104z" />
-<glyph unicode="¦" horiz-adv-x="614" d="M236 1570h141v-813h-141v813zM236 463h141v-814h-141v814z" />
-<glyph unicode="§" horiz-adv-x="1030" d="M837 1295q-12 -23 -38 -22q-15 0 -35 11t-48 25t-67 26t-92 12q-49 0 -88.5 -13t-66.5 -34.5t-41.5 -50t-14.5 -60.5q0 -39 25 -68t65.5 -53.5t92.5 -46.5l106 -45q54 -24 106.5 -52t92.5 -64.5t65.5 -83.5t25.5 -109q0 -83 -40 -148t-126 -104q50 -38 81.5 -88.5 t31.5 -120.5q0 -72 -25.5 -133t-75 -105.5t-123 -70t-167.5 -25.5q-109 0 -196.5 35.5t-149.5 90.5l42 70q8 13 20 20t29 7q18 0 39 -14t50.5 -32t73 -32.5t108.5 -14.5q51 0 91.5 13t68 36t42 54.5t14.5 70.5q0 46 -25.5 80t-67.5 60t-96 48l-109 44q-56 23 -109.5 48.5 t-95.5 61.5t-67.5 83.5t-25.5 113.5q0 80 44 144t139 99q-51 39 -83.5 93t-32.5 131q0 59 24.5 114t72 96t116 65.5t156.5 24.5q102 0 183.5 -32t141.5 -88zM279 743q0 -52 35.5 -88.5t91.5 -65.5t123.5 -56t130.5 -59q55 27 80 65.5t25 86.5q0 37 -15.5 65.5t-42 52 t-62.5 43t-76 37.5l-84 36q-43 18 -84 38q-68 -31 -95 -68.5t-27 -86.5z" />
-<glyph unicode="¨" horiz-adv-x="628" d="M245 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM612 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5t-36.5 24.5 t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z" />
-<glyph unicode="©" horiz-adv-x="1634" d="M1055 474l14 9q6 4 11 3q11 0 15.5 -3t10.5 -9l62 -65q-58 -68 -143 -105.5t-204 -37.5q-100 0 -182.5 35t-141.5 97.5t-91 148.5t-32 188q0 103 35 190t97.5 149t148 96t186.5 34q111 0 188.5 -34.5t135.5 -91.5l-47 -66q-5 -6 -13 -12.5t-21 -6.5q-14 0 -30 11.5 t-41.5 25t-64.5 25.5t-99 12q-72 0 -129.5 -23t-98 -66t-62.5 -104.5t-22 -138.5q0 -79 22 -141t60.5 -103.5t93 -64t117.5 -22.5q49 0 83 6.5t58.5 16.5t43.5 23zM70 733q0 103 26.5 199t75 179.5t117 151.5t151.5 117.5t178.5 76t198.5 26.5t199 -26.5t179 -76 t151.5 -117.5t117 -151.5t75.5 -179t27 -199.5q0 -102 -27 -198t-75.5 -179t-117 -151t-151.5 -117t-178.5 -75.5t-199.5 -26.5q-103 0 -198.5 26.5t-178.5 75.5t-151.5 117t-117 151t-75 178.5t-26.5 198.5zM172 733q0 -91 22.5 -175t64.5 -157t100.5 -132.5t130 -102 t154.5 -65.5t173 -23q135 0 253.5 51t206 139.5t138 208t50.5 256.5q0 91 -23 176t-65 158.5t-100.5 134t-130.5 103t-155.5 66t-173.5 23.5q-135 0 -253 -52t-205 -141.5t-137 -210t-50 -257.5z" />
-<glyph unicode="ª" horiz-adv-x="700" d="M610 860h-61q-18 0 -27.5 5.5t-17.5 24.5l-12 50q-25 -22 -48.5 -38t-49 -28t-54.5 -17.5t-64 -5.5q-39 0 -72 10t-57.5 31t-38.5 52t-14 73q0 35 19.5 69t64.5 61.5t119.5 45t183.5 19.5v38q0 65 -29.5 95.5t-87.5 30.5q-39 0 -65 -9t-45 -20l-33 -19q-15 -9 -32 -9 q-14 0 -24 7.5t-15 18.5l-23 43q53 50 115 73.5t137 23.5q55 0 98 -17.5t73 -48t45 -73.5t15 -96v-390zM316 945q52 0 90 19.5t75 55.5v107q-72 -2 -121.5 -10.5t-80 -22.5t-44 -32t-13.5 -39q0 -43 26.5 -60.5t67.5 -17.5z" />
-<glyph unicode="«" horiz-adv-x="948" d="M141 530v24l255 398l60 -28q14 -7 21 -18.5t7 -24.5q0 -17 -10 -34l-163 -267q-14 -25 -28 -38q15 -14 28 -37l163 -267q5 -8 7.5 -17.5t2.5 -17.5q0 -29 -28 -42l-60 -29zM444 530v24l255 398l60 -28q14 -7 21 -18.5t7 -24.5q0 -17 -10 -34l-163 -267q-14 -25 -28 -38 q15 -14 28 -37l163 -267q5 -8 7.5 -17.5t2.5 -17.5q0 -29 -28 -42l-60 -29z" />
-<glyph unicode="¬" d="M152 757h880v-434h-154v295h-726v139z" />
-<glyph unicode="­" horiz-adv-x="0" />
-<glyph unicode="®" horiz-adv-x="1634" d="M70 733q0 103 26.5 199t75 179.5t117 151.5t151.5 117.5t178.5 76t198.5 26.5t199 -26.5t179 -76t151.5 -117.5t117 -151.5t75.5 -179t27 -199.5q0 -102 -27 -198t-75.5 -179t-117 -151t-151.5 -117t-178.5 -75.5t-199.5 -26.5q-103 0 -198.5 26.5t-178.5 75.5 t-151.5 117t-117 151t-75 178.5t-26.5 198.5zM172 733q0 -91 22.5 -175t64.5 -157t100.5 -132.5t130 -102t154.5 -65.5t173 -23q135 0 253.5 51t206 139.5t138 208t50.5 256.5q0 91 -23 176t-65 158.5t-100.5 134t-130.5 103t-155.5 66t-173.5 23.5q-135 0 -253 -52 t-205 -141.5t-137 -210t-50 -257.5zM670 641v-362h-160v913h295q176 0 261 -64t85 -189q0 -96 -55 -163.5t-163 -93.5q17 -10 30 -25.5t24 -35.5l234 -342h-152q-34 0 -50 25l-206 309q-9 13 -22 20.5t-39 7.5h-82zM670 758h118q56 0 96 10.5t64 31t34.5 50.5t10.5 69 q0 38 -9.5 66.5t-31.5 47t-58 27.5t-89 9h-135v-311z" />
-<glyph unicode="¯" horiz-adv-x="628" d="M20 1380h588v-119h-588v119z" />
-<glyph unicode="°" horiz-adv-x="813" d="M72 1155q0 69 25.5 129.5t70.5 105t106 70t132 25.5t131.5 -25.5t105.5 -70t70.5 -105t25.5 -129.5q0 -68 -25.5 -127.5t-70.5 -104t-106 -71t-131 -26.5q-71 0 -132 26.5t-106 71t-70.5 104t-25.5 127.5zM202 1154q0 -43 15 -80.5t43 -65t65 -43.5t81 -16q43 0 79.5 16 t64.5 43.5t43 65t15 80.5t-15 81t-43 66t-64.5 44t-79.5 16t-80.5 -16t-65.5 -44t-43 -66t-15 -81z" />
-<glyph unicode="±" d="M667 1231v-385h416v-139h-416v-377h-150v377h-415v139h415v385h150zM102 220h981v-138h-981v138z" />
-<glyph unicode="²" horiz-adv-x="679" d="M354 1676q53 0 97 -15t74.5 -43t47.5 -67.5t17 -87.5q0 -41 -13 -76t-34.5 -67t-48.5 -62l-59 -60l-166 -169q24 6 48 10t45 4h200q22 0 33.5 -11t11.5 -32v-78h-523v44q0 13 5 27.5t17 26.5l227 224q26 26 48 52.5t38.5 53.5t26.5 54.5t10 54.5q0 52 -31 80.5t-77 28.5 q-47 0 -76 -24.5t-44 -67.5q-8 -14 -17.5 -22.5t-27.5 -8.5q-4 0 -8.5 0.5t-9.5 1.5l-73 12q15 109 86 163t176 54z" />
-<glyph unicode="³" horiz-adv-x="679" d="M362 1676q52 0 94.5 -14.5t72.5 -41t46.5 -61t16.5 -75.5q0 -131 -122 -177q68 -19 103 -59.5t35 -103.5q0 -56 -21.5 -99.5t-56.5 -72.5t-82 -44t-96 -15q-58 0 -101 13t-74.5 38t-53.5 62t-37 85l56 25q15 6 30 6q30 0 41 -24q6 -13 15.5 -29.5t24.5 -31t37 -24 t55 -9.5q32 0 56 10t40.5 26t24.5 36.5t8 42.5q0 31 -8.5 52.5t-28.5 36t-53.5 21.5t-81.5 7v90q89 1 125.5 31.5t36.5 83.5q0 51 -30 78t-79 27t-78 -24t-41 -65q-8 -16 -17 -24t-24 -8q-4 0 -9 0.5t-10 1.5l-68 12q7 54 29.5 94.5t55.5 68t76 41t93 13.5z" />
-<glyph unicode="´" horiz-adv-x="628" d="M611 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5h178z" />
-<glyph unicode="µ" horiz-adv-x="1138" d="M307 1037v-673q0 -112 55.5 -173.5t162.5 -61.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-69 -74 -141 -109t-161 -35q-76 0 -133 26t-97 73q7 -43 10 -87.5t3 -83.5v-285h-91q-39 0 -60 20.5t-21 57.5v1310h182z" />
-<glyph unicode="¶" horiz-adv-x="1370" d="M1333 1467v-156h-224v-1517h-161v1517h-283v-1517h-161v882q-106 0 -191.5 31t-145 85t-92 126.5t-32.5 155.5q0 88 32.5 160.5t92 124t144.5 80t192 28.5h829z" />
-<glyph unicode="·" horiz-adv-x="559" d="M127 607q0 32 12 60.5t33 49t48.5 33t58.5 12.5q32 0 60.5 -12.5t49 -33t32.5 -49t12 -60.5q0 -31 -12 -58.5t-32.5 -48.5t-49.5 -32.5t-60 -11.5t-58.5 11.5t-48.5 32.5t-33 48.5t-12 58.5z" />
-<glyph unicode="¸" horiz-adv-x="628" d="M176 -253q6 0 14 -4l20 -8q11 -5 27.5 -8t37.5 -3q43 0 65 16.5t22 43.5q0 19 -11 32.5t-32 22.5t-51.5 15.5t-69.5 11.5l44 144h114l-24 -82q92 -20 133.5 -55.5t41.5 -90.5q0 -33 -16.5 -59t-45.5 -44.5t-70 -28t-90 -9.5q-42 0 -80 8.5t-70 22.5l18 57q6 18 23 18z " />
-<glyph unicode="¹" horiz-adv-x="679" d="M177 1009h151v450l4 44l-110 -90q-12 -9 -26 -9q-24 0 -33 14l-40 58l227 194h111v-661h133v-87h-417v87z" />
-<glyph unicode="º" horiz-adv-x="780" d="M391 1484q72 0 130 -22t98.5 -63t63.5 -100t23 -132q0 -74 -23 -133t-63.5 -100.5t-98.5 -63.5t-130 -22q-73 0 -131 22t-99.5 63.5t-64 101t-22.5 132.5t22.5 132t64 100t99.5 63t131 22zM391 956q86 0 128.5 54t42.5 156t-42.5 155.5t-128.5 53.5q-89 0 -131.5 -53 t-42.5 -156q0 -102 42.5 -156t131.5 -54z" />
-<glyph unicode="»" horiz-adv-x="948" d="M242 132l-60 29q-29 13 -28 42q0 17 10 35l163 267q13 25 27 37q-12 11 -27 38l-163 267q-10 17 -10 35q0 29 28 42l60 28l255 -398v-24zM800 554v-24l-255 -398l-60 29q-29 13 -28 42q0 17 10 35l163 267q13 25 27 37q-12 11 -27 38l-163 267q-10 17 -10 35q0 29 28 42 l60 28z" />
-<glyph unicode="¼" horiz-adv-x="1458" d="M1326 273h112v-66q0 -11 -7.5 -19t-20.5 -8h-84v-180h-112v180h-313q-18 0 -29 8.5t-13 20.5l-10 58l350 479h127v-473zM159 807h150v450l4 45l-109 -91q-12 -9 -27 -9q-24 0 -33 15l-40 57l228 194h110v-661h133v-87h-416v87zM1214 520q0 19 1.5 42t4.5 46l-247 -335 h241v247zM444 54q-19 -32 -41.5 -43t-52.5 -11h-78l838 1405q18 30 42 46t56 16h79z" />
-<glyph unicode="½" horiz-adv-x="1458" d="M1153 755q53 0 96.5 -15.5t74.5 -43t48 -67t17 -87.5q0 -41 -13 -76.5t-34.5 -67t-49.5 -61.5l-58 -61l-166 -168q24 6 48 10t45 4h200q22 0 33.5 -11.5t11.5 -31.5v-79h-523v44q0 13 5 27.5t17 26.5l227 225q26 26 48 52t38.5 53.5t26 54.5t9.5 55q0 52 -30.5 80 t-76.5 28q-47 0 -76.5 -24.5t-43.5 -67.5q-8 -14 -18 -22.5t-27 -8.5q-4 0 -8.5 0.5t-9.5 1.5l-73 13q15 109 86 163t176 54zM159 807h150v450l4 45l-109 -91q-12 -9 -27 -9q-24 0 -33 15l-40 57l228 194h110v-661h133v-87h-416v87zM399 54q-19 -32 -41.5 -43t-52.5 -11h-78 l838 1405q18 30 41.5 46t56.5 16h79z" />
-<glyph unicode="¾" horiz-adv-x="1460" d="M1327 273h112v-66q0 -11 -7.5 -19t-20.5 -8h-84v-180h-112v180h-313q-18 0 -29 8.5t-13 20.5l-10 58l350 479h127v-473zM346 1475q52 0 94 -15t72.5 -41t46.5 -61t16 -76q0 -131 -121 -177q68 -19 103 -59t35 -104q0 -56 -21.5 -99t-57 -72.5t-82 -44t-95.5 -14.5 q-58 0 -101.5 12.5t-74.5 37.5t-53 62t-37 85l56 25q15 6 30 6q30 0 41 -24q6 -13 15 -29.5t24.5 -30.5t37.5 -24t55 -10q32 0 56 10.5t40 26t24.5 36t8.5 42.5q0 31 -9 53t-29 36t-53 21.5t-81 7.5v89q89 1 125 31.5t36 84.5q0 51 -29.5 77.5t-78.5 26.5t-78.5 -24 t-41.5 -65q-8 -16 -16.5 -24t-24.5 -8q-4 0 -8.5 0.5t-9.5 1.5l-69 12q7 54 29.5 95t56 68t76.5 41t93 14zM1215 520q0 19 1.5 42t4.5 46l-247 -335h241v247zM450 54q-19 -32 -42 -43t-53 -11h-77l837 1405q18 30 42 46t56 16h79z" />
-<glyph unicode="¿" horiz-adv-x="815" d="M788 -217q-32 -30 -70 -56.5t-83 -47t-98.5 -32.5t-114.5 -12q-81 0 -150 23t-119.5 64.5t-79 102t-28.5 137.5q0 78 23 132t58.5 93t77.5 67l78 52q36 25 62.5 50t30.5 59l18 157h125l12 -171v-12q0 -45 -23 -76.5t-58 -57.5t-75.5 -50t-76 -54.5t-58.5 -71.5t-23 -102 q0 -45 17.5 -80t47 -60t70 -38.5t86.5 -13.5q62 0 107 15.5t75.5 34t50 33.5t31.5 15q14 0 23 -6t16 -17zM332 925q0 27 9.5 50t26.5 40.5t40.5 28t50.5 10.5t50 -10.5t40.5 -28t27.5 -41t10 -49.5q0 -28 -10 -51t-27.5 -40.5t-41 -27t-49.5 -9.5q-27 0 -50.5 9.5t-40.5 27 t-26.5 40.5t-9.5 51z" />
-<glyph unicode="À" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM533 1825q16 0 28 -1.5t21.5 -5t18 -10.5t18.5 -17l216 -208h-142 q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" />
-<glyph unicode="Á" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM1046 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208 q10 10 18.5 17t17.5 10.5t21 5t29 1.5h206z" />
-<glyph unicode="Â" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM1030 1583h-138q-12 0 -26.5 3.5t-23.5 9.5l-133 98q-8 4 -13 8 q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138l243 215h180z" />
-<glyph unicode="Ã" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM820 1703q36 0 55 21t20 59h100q0 -44 -11 -81t-32.5 -64t-53.5 -42 t-73 -15q-36 0 -68.5 13.5t-62.5 29.5l-57 29q-27 13 -51 13q-35 0 -54 -22t-20 -59h-102q0 44 11.5 81.5t33.5 64t54.5 42t72.5 15.5q36 0 68.5 -13.5t62.5 -29.5l56 -29q26 -13 51 -13z" />
-<glyph unicode="Ä" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM592 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9 t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM1028 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5 t24.5 -36t9 -45z" />
-<glyph unicode="Å" horiz-adv-x="1392" d="M1385 0h-153q-27 0 -43.5 13.5t-24.5 33.5l-137 354h-658l-138 -354q-7 -18 -24.5 -32.5t-42.5 -14.5h-154l587 1467h202zM424 545h548l-231 597q-23 55 -44 138q-11 -42 -21.5 -77.5t-21.5 -61.5zM501 1699q0 40 16 73.5t42 57.5t60.5 37.5t73.5 13.5q40 0 75.5 -13.5 t62.5 -37.5t42.5 -57.5t15.5 -73.5q0 -39 -15.5 -72t-42.5 -56.5t-62.5 -36.5t-75.5 -13q-39 0 -73.5 13t-60.5 36.5t-42 56.5t-16 72zM592 1699q0 -44 27.5 -73.5t75.5 -29.5q46 0 74.5 29.5t28.5 73.5q0 46 -28.5 74.5t-74.5 28.5q-48 0 -75.5 -28.5t-27.5 -74.5z" />
-<glyph unicode="Æ" horiz-adv-x="1902" d="M751 1467h1045v-161h-767l62 -488h572v-155h-553l62 -501h624v-162h-790l-51 401h-569l-183 -355q-11 -20 -30 -33t-46 -13h-152zM461 545h476l-96 771q-12 -42 -27 -77l-30 -68z" />
-<glyph unicode="Ç" horiz-adv-x="1402" d="M658 -253q6 0 15 -4l19 -8q11 -5 27.5 -8t38.5 -3q43 0 65 16.5t22 43.5q0 19 -11.5 32.5t-32.5 22.5t-51.5 15.5t-69.5 11.5l37 121q-142 12 -258 72t-197.5 157.5t-125.5 229t-44 287.5q0 166 54 304.5t151 237.5t233 154t299 55q162 0 279.5 -50.5t208.5 -136.5 l-65 -91q-7 -10 -16 -16.5t-27 -6.5q-13 0 -28 9l-35 25q-20 14 -48 30.5t-66 30.5t-88 24t-116 10q-118 0 -215.5 -40.5t-168 -115.5t-110 -182.5t-39.5 -240.5q0 -137 39.5 -244.5t107.5 -182t161 -113t201 -38.5q66 0 118 7.5t96.5 24t83 41.5t77.5 60q17 15 33 15 t30 -13l78 -85q-85 -99 -204.5 -156.5t-285.5 -63.5l-16 -57q92 -20 133.5 -55.5t41.5 -90.5q0 -33 -16.5 -59t-45.5 -44.5t-70 -28t-90 -9.5q-42 0 -80 8.5t-70 22.5l18 57q6 18 23 18z" />
-<glyph unicode="È" horiz-adv-x="1189" d="M1082 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-904v1467h904zM479 1825q16 0 28 -1.5t21.5 -5t18 -10.5t18.5 -17l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" />
-<glyph unicode="É" horiz-adv-x="1189" d="M1082 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-904v1467h904zM992 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 18.5 17t17.5 10.5t21 5t29 1.5h206z" />
-<glyph unicode="Ê" horiz-adv-x="1189" d="M1082 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-904v1467h904zM977 1583h-138q-12 0 -26.5 3.5t-23.5 9.5l-133 98q-8 4 -13 8q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138l243 215h180z" />
-<glyph unicode="Ë" horiz-adv-x="1189" d="M1082 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-904v1467h904zM539 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM975 1706 q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" />
-<glyph unicode="Ì" horiz-adv-x="628" d="M414 0h-199v1467h199v-1467zM153 1825q16 0 28 -1.5t21.5 -5t18 -10.5t18.5 -17l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" />
-<glyph unicode="Í" horiz-adv-x="628" d="M414 0h-199v1467h199v-1467zM666 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 18.5 17t17.5 10.5t21 5t29 1.5h206z" />
-<glyph unicode="Î" horiz-adv-x="628" d="M414 0h-199v1467h199v-1467zM650 1583h-138q-12 0 -26.5 3.5t-23.5 9.5l-133 98q-8 4 -13 8q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138l243 215h180z" />
-<glyph unicode="Ï" horiz-adv-x="628" d="M414 0h-199v1467h199v-1467zM211 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM647 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9 q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" />
-<glyph unicode="Ð" horiz-adv-x="1615" d="M51 799h202v668h548q162 0 295.5 -52.5t228.5 -149.5t147.5 -232t52.5 -300t-52.5 -300t-147.5 -231.5t-228.5 -149t-295.5 -52.5h-548v682h-202v117zM1321 733q0 135 -37 241.5t-104.5 180.5t-163.5 113t-215 39h-349v-508h390v-117h-390v-521h349q119 0 215 39 t163.5 112t104.5 179.5t37 241.5z" />
-<glyph unicode="Ñ" horiz-adv-x="1548" d="M281 1467q27 0 39.5 -6.5t28.5 -26.5l850 -1106q-3 27 -4 51.5t-1 48.5v1039h174v-1467h-100q-24 0 -40 8t-31 28l-849 1105q2 -26 3 -50.5t1 -44.5v-1046h-174v1467h103zM922 1703q36 0 55 21t20 59h100q0 -44 -11 -81t-32.5 -64t-53.5 -42t-73 -15q-36 0 -68.5 13.5 t-62.5 29.5l-57 29q-27 13 -51 13q-35 0 -54 -22t-20 -59h-102q0 44 11.5 81.5t33.5 64t54.5 42t72.5 15.5q36 0 68.5 -13.5t62.5 -29.5l56 -29q26 -13 51 -13z" />
-<glyph unicode="Ò" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242zM656 1825q16 0 28 -1.5t21.5 -5t18 -10.5t18.5 -17l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" />
-<glyph unicode="Ó" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242zM1169 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 18.5 17t17.5 10.5t21 5t29 1.5h206z" />
-<glyph unicode="Ô" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242zM1153 1583h-138q-12 0 -26.5 3.5t-23.5 9.5l-133 98q-8 4 -13 8q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138 l243 215h180z" />
-<glyph unicode="Õ" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242zM943 1703q36 0 55 21t20 59h100q0 -44 -11 -81t-32.5 -64t-53.5 -42t-73 -15q-36 0 -68.5 13.5t-62.5 29.5l-57 29q-27 13 -51 13 q-35 0 -54 -22t-20 -59h-102q0 44 11.5 81.5t33.5 64t54.5 42t72.5 15.5q36 0 68.5 -13.5t62.5 -29.5l56 -29q26 -13 51 -13z" />
-<glyph unicode="Ö" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5t-295 54.5t-228 154t-147.5 237t-52.5 302.5t52.5 303t147.5 237.5t228 155t295 55.5t295.5 -55.5t229 -155t147.5 -237.5t52 -303zM1337 733q0 135 -36.5 242.5t-104.5 182t-164 114.5t-215 40 q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5t37 -242t105 -181t164 -113.5t214 -39.5q119 0 215 39.5t164 113.5t104.5 181t36.5 242zM715 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5 t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM1151 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" />
-<glyph unicode="×" d="M1041 1038l-352 -352l363 -361l-98 -99l-362 363l-366 -365l-97 99l365 364l-354 353l98 99l353 -355l352 353z" />
-<glyph unicode="Ø" horiz-adv-x="1634" d="M1541 733q0 -165 -52 -302.5t-147.5 -237t-229 -154t-295.5 -54.5q-111 0 -207 25t-177 74l-102 -139q-23 -30 -52.5 -43.5t-59.5 -13.5h-80l196 267q-115 100 -178 247.5t-63 330.5q0 165 52.5 303t147.5 237.5t228 155t295 55.5q118 0 220.5 -30t187.5 -85l84 114 q20 28 36.5 39.5t49.5 11.5h102l-176 -241q105 -100 162.5 -242.5t57.5 -317.5zM297 733q0 -138 38.5 -246t108.5 -183l675 921q-61 43 -137 65t-165 22q-118 0 -214 -40t-164 -114.5t-105 -182t-37 -242.5zM1337 733q0 129 -33 232t-95 177l-670 -914q119 -72 278 -71 q119 0 215 39.5t164 113.5t104.5 181t36.5 242z" />
-<glyph unicode="Ù" horiz-adv-x="1495" d="M749 158q91 0 162.5 30.5t121 86t76 132t26.5 168.5v892h197v-892q0 -127 -40.5 -235.5t-115.5 -187.5t-183.5 -124t-243.5 -45t-244 45t-184.5 124t-116 188t-40.5 235v892h197v-890q0 -92 26.5 -169t76 -132.5t122 -86.5t163.5 -31zM584 1825q16 0 28 -1.5t21.5 -5 t18 -10.5t18.5 -17l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" />
-<glyph unicode="Ú" horiz-adv-x="1495" d="M749 158q91 0 162.5 30.5t121 86t76 132t26.5 168.5v892h197v-892q0 -127 -40.5 -235.5t-115.5 -187.5t-183.5 -124t-243.5 -45t-244 45t-184.5 124t-116 188t-40.5 235v892h197v-890q0 -92 26.5 -169t76 -132.5t122 -86.5t163.5 -31zM1097 1825l-301 -221 q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 18.5 17t17.5 10.5t21 5t29 1.5h206z" />
-<glyph unicode="Û" horiz-adv-x="1495" d="M749 158q91 0 162.5 30.5t121 86t76 132t26.5 168.5v892h197v-892q0 -127 -40.5 -235.5t-115.5 -187.5t-183.5 -124t-243.5 -45t-244 45t-184.5 124t-116 188t-40.5 235v892h197v-890q0 -92 26.5 -169t76 -132.5t122 -86.5t163.5 -31zM1081 1583h-138q-12 0 -26.5 3.5 t-23.5 9.5l-133 98q-8 4 -13 8q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138l243 215h180z" />
-<glyph unicode="Ü" horiz-adv-x="1495" d="M749 158q91 0 162.5 30.5t121 86t76 132t26.5 168.5v892h197v-892q0 -127 -40.5 -235.5t-115.5 -187.5t-183.5 -124t-243.5 -45t-244 45t-184.5 124t-116 188t-40.5 235v892h197v-890q0 -92 26.5 -169t76 -132.5t122 -86.5t163.5 -31zM643 1706q0 -23 -9.5 -42.5 t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM1079 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36 t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" />
-<glyph unicode="Ý" horiz-adv-x="1288" d="M743 584v-584h-197v584l-538 883h174q27 0 42.5 -13t26.5 -33l336 -570q20 -36 34 -67.5t25 -62.5q11 32 24.5 63.5t34.5 66.5l334 570q9 16 25 31t42 15h176zM995 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 18.5 17t17.5 10.5t21 5t29 1.5h206 z" />
-<glyph unicode="Þ" horiz-adv-x="1251" d="M396 279v-279h-197v1467h197v-270h236q139 0 242 -32t170.5 -91.5t101 -143.5t33.5 -188q0 -102 -36 -187t-105 -146.5t-171.5 -95.5t-234.5 -34h-236zM396 436h236q85 0 150 22.5t109 63t66.5 97t22.5 123.5q0 140 -86.5 219t-261.5 79h-236v-604z" />
-<glyph unicode="ß" horiz-adv-x="1247" d="M689 1489q105 0 182.5 -31t128 -78.5t74.5 -103.5t24 -109q0 -61 -22 -105t-55 -78t-71.5 -59.5t-71 -50t-54.5 -50.5t-22 -59q0 -40 27 -66.5t68 -49.5t88.5 -47t88.5 -60t68 -88.5t27 -131.5q0 -80 -29 -142.5t-80 -106t-120.5 -66.5t-149.5 -23q-99 0 -180.5 35 t-142.5 91l42 69q8 13 20 20.5t29 7.5q18 0 38.5 -14.5t49 -32t67 -31.5t92.5 -14q45 0 81 13.5t61 37t38 56.5t13 71q0 57 -28.5 93t-71.5 62t-93 47.5t-93 51.5t-72 72.5t-29 109.5q0 54 23 94.5t57.5 73t74.5 60t74 58.5t57.5 67t23.5 85q0 33 -13 66.5t-41.5 60 t-74.5 43.5t-110 17q-70 0 -126.5 -21.5t-97 -64.5t-62.5 -107.5t-22 -150.5v-1010h-184v1016q0 106 35.5 193t101 149.5t157.5 96.5t205 34z" />
-<glyph unicode="à" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM438 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5t-27 22.5l-240 264h173z" />
-<glyph unicode="á" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM837 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5h178z" />
-<glyph unicode="â" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM853 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18l-132 -129q-6 -5 -17.5 -9.5t-23.5 -4.5h-126l228 270h170z" />
-<glyph unicode="ã" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM653 1357q37 0 57 21.5t21 66.5h110q0 -48 -12.5 -88.5t-36.5 -69.5t-57.5 -44.5t-74.5 -15.5q-36 0 -67 14.5t-59 32.5l-52 32q-25 15 -48 15q-74 0 -76 -90h-114q0 49 13.5 89.5t38 69.5t58.5 45t74 16q36 0 67 -15t59 -32l51 -32q24 -15 48 -15z" />
-<glyph unicode="ä" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM471 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM838 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5 t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z" />
-<glyph unicode="å" horiz-adv-x="1038" d="M911 0h-81q-27 0 -43 8t-21 35l-21 96q-41 -37 -79.5 -66t-81.5 -49t-92 -30t-108 -10q-60 0 -113 16.5t-92 50.5t-62 85.5t-23 122.5q0 61 34 118t109 101t197 72.5t298 32.5v81q0 121 -51.5 182.5t-153.5 61.5q-67 0 -112 -17t-78.5 -37.5t-57.5 -37.5t-48 -17 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 185.5 124t220.5 41q87 0 154.5 -29t113.5 -80t69.5 -123.5t23.5 -159.5v-664zM438 112q48 0 88 9.5t75.5 27.5t67.5 43.5t63 58.5v216q-126 -4 -214 -20t-143.5 -41.5t-80.5 -60.5t-25 -78q0 -41 13.5 -70.5t36 -48.5t53 -27.5 t66.5 -8.5zM336 1347q0 43 16 77.5t44.5 60t65 39.5t77.5 14q42 0 79.5 -14t66 -39.5t45 -60t16.5 -77.5q0 -42 -16.5 -77t-45 -59.5t-66 -38.5t-79.5 -14q-41 0 -77.5 14t-65 38.5t-44.5 59.5t-16 77zM438 1347q0 -45 27.5 -74t75.5 -29q46 0 74.5 29t28.5 74 q0 46 -28.5 74.5t-74.5 28.5q-48 0 -75.5 -28.5t-27.5 -74.5z" />
-<glyph unicode="æ" horiz-adv-x="1671" d="M1194 1054q84 0 156 -33t125 -95.5t83 -152t30 -204.5q0 -42 -8 -56.5t-34 -14.5h-642q4 -93 27.5 -162.5t63 -115.5t93.5 -68.5t120 -22.5q71 0 118 15t78.5 33.5t51 33t35.5 14.5q14 0 23.5 -4.5t15.5 -12.5l48 -63q-34 -41 -78.5 -71t-95 -49.5t-105 -29t-107.5 -9.5 q-120 0 -217.5 57.5t-154.5 176.5q-28 -63 -72.5 -108t-98.5 -74t-115 -41.5t-121 -12.5q-71 0 -129.5 17.5t-101 53.5t-65.5 90.5t-23 127.5q0 61 34 121t109 107t197 77t298 34v52q0 121 -51.5 185t-153.5 64q-67 0 -112 -17.5t-78.5 -39t-57.5 -39.5t-48 -18 q-18 0 -32 9.5t-22 24.5l-33 58q86 83 179 124t208 41q123 0 198 -52.5t109 -145.5q55 90 143.5 143t212.5 53zM732 498q-126 -5 -214 -23t-143.5 -47t-80.5 -65.5t-25 -79.5q0 -89 51.5 -130t134.5 -41q58 0 108.5 18t88 56t59 94.5t21.5 132.5v85zM1187 920 q-62 0 -111.5 -21t-85 -61t-56.5 -97.5t-28 -129.5h520q0 67 -15.5 124t-46.5 97.5t-75.5 64t-101.5 23.5z" />
-<glyph unicode="ç" horiz-adv-x="956" d="M410 -253q6 0 14 -4l19 -8q11 -5 27.5 -8t38.5 -3q43 0 65 16.5t22 43.5q0 19 -11.5 32.5t-32.5 22.5t-51.5 15.5t-69.5 11.5l38 124q-85 11 -157 51.5t-124.5 108t-82 160.5t-29.5 209t32 214t94 169.5t153 111.5t209 40q109 0 193 -35.5t148 -99.5l-48 -66 q-8 -11 -16 -17.5t-24 -6.5q-15 0 -33 13t-45.5 28.5t-67 28t-97.5 12.5q-76 0 -134 -27t-97.5 -78t-59.5 -124t-20 -163q0 -94 21.5 -167t60.5 -123t95 -76t125 -26q67 0 110 16t71.5 35.5t47 35t36.5 15.5q11 0 20 -4.5t15 -12.5l51 -67q-60 -74 -147 -111.5t-186 -45.5 l-18 -60q92 -20 133.5 -55.5t41.5 -90.5q0 -33 -16 -59t-45.5 -44.5t-70.5 -28t-90 -9.5q-42 0 -80 8.5t-69 22.5l17 57q7 18 24 18z" />
-<glyph unicode="è" horiz-adv-x="1073" d="M560 1054q93 0 172 -31.5t136.5 -90.5t89.5 -145.5t32 -196.5q0 -43 -9 -57.5t-35 -14.5h-690q2 -98 26.5 -171t67.5 -121.5t102.5 -72.5t133.5 -24q69 0 118.5 16t85 34.5t59.5 34t42 15.5q23 0 35 -17l51 -67q-34 -41 -81 -71t-101 -49.5t-111 -29t-114 -9.5 q-108 0 -198 36t-156 106.5t-103 174t-37 237.5q0 109 33 203t95.5 163t152.5 108.5t203 39.5zM564 920q-132 0 -207.5 -76.5t-94.5 -211.5h564q0 63 -17 116t-51 91.5t-83 59.5t-111 21zM462 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5t-27 22.5l-240 264 h173z" />
-<glyph unicode="é" horiz-adv-x="1073" d="M560 1054q93 0 172 -31.5t136.5 -90.5t89.5 -145.5t32 -196.5q0 -43 -9 -57.5t-35 -14.5h-690q2 -98 26.5 -171t67.5 -121.5t102.5 -72.5t133.5 -24q69 0 118.5 16t85 34.5t59.5 34t42 15.5q23 0 35 -17l51 -67q-34 -41 -81 -71t-101 -49.5t-111 -29t-114 -9.5 q-108 0 -198 36t-156 106.5t-103 174t-37 237.5q0 109 33 203t95.5 163t152.5 108.5t203 39.5zM564 920q-132 0 -207.5 -76.5t-94.5 -211.5h564q0 63 -17 116t-51 91.5t-83 59.5t-111 21zM861 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5 h178z" />
-<glyph unicode="ê" horiz-adv-x="1073" d="M560 1054q93 0 172 -31.5t136.5 -90.5t89.5 -145.5t32 -196.5q0 -43 -9 -57.5t-35 -14.5h-690q2 -98 26.5 -171t67.5 -121.5t102.5 -72.5t133.5 -24q69 0 118.5 16t85 34.5t59.5 34t42 15.5q23 0 35 -17l51 -67q-34 -41 -81 -71t-101 -49.5t-111 -29t-114 -9.5 q-108 0 -198 36t-156 106.5t-103 174t-37 237.5q0 109 33 203t95.5 163t152.5 108.5t203 39.5zM564 920q-132 0 -207.5 -76.5t-94.5 -211.5h564q0 63 -17 116t-51 91.5t-83 59.5t-111 21zM877 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18l-132 -129q-6 -5 -17.5 -9.5 t-23.5 -4.5h-126l228 270h170z" />
-<glyph unicode="ë" horiz-adv-x="1073" d="M560 1054q93 0 172 -31.5t136.5 -90.5t89.5 -145.5t32 -196.5q0 -43 -9 -57.5t-35 -14.5h-690q2 -98 26.5 -171t67.5 -121.5t102.5 -72.5t133.5 -24q69 0 118.5 16t85 34.5t59.5 34t42 15.5q23 0 35 -17l51 -67q-34 -41 -81 -71t-101 -49.5t-111 -29t-114 -9.5 q-108 0 -198 36t-156 106.5t-103 174t-37 237.5q0 109 33 203t95.5 163t152.5 108.5t203 39.5zM564 920q-132 0 -207.5 -76.5t-94.5 -211.5h564q0 63 -17 116t-51 91.5t-83 59.5t-111 21zM495 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5 t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM862 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z " />
-<glyph unicode="ì" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182zM166 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5t-27 22.5l-240 264h173z" />
-<glyph unicode="í" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182zM565 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5h178z" />
-<glyph unicode="î" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182zM580 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18l-132 -129q-6 -5 -17.5 -9.5t-23.5 -4.5h-126l228 270h170z" />
-<glyph unicode="ï" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182zM199 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM566 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5 t-44 -9.5q-24 0 -45 9.5t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z" />
-<glyph unicode="ð" horiz-adv-x="1132" d="M427 1091q-4 7 -6.5 13.5t-2.5 12.5q0 23 23 38l106 74q-46 20 -98 37.5t-110 31.5q-18 5 -31 19t-13 38q0 15 5 29l21 64q98 -16 190 -47t175 -80l171 125l36 -58q8 -13 8 -25q0 -22 -22 -38l-100 -69q61 -50 112 -113.5t87 -142.5t56 -174t20 -208q0 -146 -32 -262.5 t-95 -198.5t-156.5 -126t-216.5 -44q-100 0 -187 33.5t-151 96.5t-101 154t-37 206q0 96 31.5 181.5t91 150t144 102.5t191.5 38q102 0 192.5 -44t157.5 -133q-20 139 -80.5 236.5t-156.5 162.5l-188 -138zM558 128q73 0 132 27.5t100 83.5t65 140.5t27 198.5 q-16 44 -43 85.5t-65.5 73.5t-89 51t-114.5 19q-77 0 -134.5 -25.5t-96.5 -70t-59 -105.5t-20 -131q0 -83 23.5 -148t64.5 -109t95 -67t115 -23z" />
-<glyph unicode="ñ" horiz-adv-x="1138" d="M150 0v1037h108q39 0 49 -38l15 -112q68 75 151 121t193 46q85 0 150 -28.5t108.5 -80t66 -124t22.5 -161.5v-660h-183v660q0 118 -53.5 183t-164.5 65q-81 0 -151 -39t-129 -105v-764h-182zM691 1357q37 0 57 21.5t21 66.5h110q0 -48 -12.5 -88.5t-36.5 -69.5 t-57.5 -44.5t-74.5 -15.5q-36 0 -67 14.5t-59 32.5l-52 32q-25 15 -48 15q-74 0 -76 -90h-114q0 49 13.5 89.5t38 69.5t58.5 45t74 16q36 0 67 -15t59 -32l51 -32q24 -15 48 -15z" />
-<glyph unicode="ò" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5zM469 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5t-27 22.5l-240 264h173z" />
-<glyph unicode="ó" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5zM868 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5h178z" />
-<glyph unicode="ô" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5zM884 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18l-132 -129q-6 -5 -17.5 -9.5t-23.5 -4.5h-126l228 270h170z" />
-<glyph unicode="õ" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5zM684 1357q37 0 57 21.5t21 66.5h110q0 -48 -12.5 -88.5t-36.5 -69.5t-57.5 -44.5t-74.5 -15.5q-36 0 -67 14.5t-59 32.5l-52 32q-25 15 -48 15 q-74 0 -76 -90h-114q0 49 13.5 89.5t38 69.5t58.5 45t74 16q36 0 67 -15t59 -32l51 -32q24 -15 48 -15z" />
-<glyph unicode="ö" horiz-adv-x="1138" d="M569 1054q114 0 205.5 -38t155.5 -107.5t98.5 -168.5t34.5 -221q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37t-205.5 37t-156 107t-99 168t-34.5 221q0 122 34.5 221t99 168.5t156 107.5t205.5 38zM569 128q154 0 229.5 103t75.5 287q0 185 -75.5 288.5 t-229.5 103.5q-78 0 -135 -26.5t-95.5 -76.5t-57.5 -123.5t-19 -165.5t19 -164.5t57.5 -122.5t95.5 -76.5t135 -26.5zM502 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5 t37 -25.5t25.5 -37t9.5 -45zM869 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z" />
-<glyph unicode="÷" d="M102 757h981v-139h-981v139zM465 1051q0 27 9.5 50t26.5 40.5t40 28t51 10.5q27 0 50 -10.5t40 -28t27.5 -41t10.5 -49.5q0 -28 -10.5 -51t-27.5 -40.5t-40.5 -27t-49.5 -9.5q-28 0 -51 9.5t-40 27t-26.5 40.5t-9.5 51zM465 322q0 27 9.5 50t26.5 40.5t40 28t51 10.5 q27 0 50 -10.5t40 -28t27.5 -41t10.5 -49.5q0 -28 -10.5 -51t-27.5 -40.5t-40.5 -27t-49.5 -9.5q-28 0 -51 9.5t-40 27t-26.5 40.5t-9.5 51z" />
-<glyph unicode="ø" horiz-adv-x="1138" d="M934 905q62 -70 96 -167.5t34 -218.5q0 -123 -34.5 -221t-98.5 -168t-155.5 -107t-205.5 -37q-78 0 -145 17t-122 50l-56 -76q-23 -30 -53 -42.5t-60 -12.5h-68l148 201q-68 71 -103.5 170t-35.5 226q0 122 34.5 221t99 168.5t156.5 107.5t205 38q81 0 150.5 -19.5 t126.5 -55.5l69 93q20 28 37 39.5t49 11.5h93zM252 518q0 -164 60 -263l447 604q-75 57 -189 57q-78 0 -137 -27.5t-99.5 -78.5t-61 -125.5t-20.5 -166.5zM570 123q77 0 136 27t99.5 78.5t61 124.5t20.5 165q0 155 -53 253l-444 -599q71 -49 180 -49z" />
-<glyph unicode="ù" horiz-adv-x="1138" d="M307 1037v-661q0 -118 54.5 -182.5t163.5 -64.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-68 -75 -151.5 -120.5t-192.5 -45.5q-85 0 -150 28t-109 79t-66 124t-22 161v661h182zM463 1484q34 0 50.5 -11t30.5 -34l152 -248h-104q-22 0 -35 6.5 t-27 22.5l-240 264h173z" />
-<glyph unicode="ú" horiz-adv-x="1138" d="M307 1037v-661q0 -118 54.5 -182.5t163.5 -64.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-68 -75 -151.5 -120.5t-192.5 -45.5q-85 0 -150 28t-109 79t-66 124t-22 161v661h182zM862 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248 q14 24 31 34.5t50 10.5h178z" />
-<glyph unicode="û" horiz-adv-x="1138" d="M307 1037v-661q0 -118 54.5 -182.5t163.5 -64.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-68 -75 -151.5 -120.5t-192.5 -45.5q-85 0 -150 28t-109 79t-66 124t-22 161v661h182zM878 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18 l-132 -129q-6 -5 -17.5 -9.5t-23.5 -4.5h-126l228 270h170z" />
-<glyph unicode="ü" horiz-adv-x="1138" d="M307 1037v-661q0 -118 54.5 -182.5t163.5 -64.5q80 0 150.5 38t130.5 105v765h182v-1037h-108q-39 0 -50 38l-14 112q-68 -75 -151.5 -120.5t-192.5 -45.5q-85 0 -150 28t-109 79t-66 124t-22 161v661h182zM496 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5 q-23 0 -43 9.5t-36 24.5t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM863 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5 t36.5 -25.5t25 -37t9 -45z" />
-<glyph unicode="ý" horiz-adv-x="1048" d="M454 -306q-9 -20 -23 -32.5t-43 -12.5h-135l189 411l-428 977h158q24 0 37 -11.5t19 -26.5l278 -653q9 -23 15.5 -45t12.5 -46l14 46q7 23 16 46l270 652q6 16 20.5 27t32.5 11h145zM844 1484l-238 -264q-14 -15 -28 -22t-36 -7h-108l151 248q14 24 31 34.5t50 10.5h178z " />
-<glyph unicode="þ" horiz-adv-x="1130" d="M150 -351v1859h182v-621q65 76 148.5 121.5t191.5 45.5q89 0 161.5 -34t124 -101t79 -166t27.5 -228q0 -115 -31 -213.5t-88 -170.5t-140.5 -113.5t-188.5 -41.5q-97 0 -164.5 35t-119.5 100v-472h-182zM611 908q-89 0 -156 -41t-123 -115v-502q50 -68 110 -95.5 t133 -27.5q144 0 222.5 103.5t78.5 294.5q0 101 -18 174t-52 119.5t-83.5 68t-111.5 21.5z" />
-<glyph unicode="ÿ" horiz-adv-x="1048" d="M454 -306q-9 -20 -23 -32.5t-43 -12.5h-135l189 411l-428 977h158q24 0 37 -11.5t19 -26.5l278 -653q9 -23 15.5 -45t12.5 -46l14 46q7 23 16 46l270 652q6 16 20.5 27t32.5 11h145zM478 1320q0 -24 -9.5 -44.5t-25.5 -35.5t-37 -24.5t-45 -9.5q-23 0 -43 9.5t-36 24.5 t-25.5 35.5t-9.5 44.5t9.5 45t25.5 37t36 25.5t43 9.5q24 0 45 -9.5t37 -25.5t25.5 -37t9.5 -45zM845 1320q0 -24 -9 -44.5t-25 -35.5t-37 -24.5t-44 -9.5q-24 0 -45 9.5t-36.5 24.5t-24.5 35.5t-9 44.5t9 45t24.5 37t36.5 25.5t45 9.5t44.5 -9.5t36.5 -25.5t25 -37t9 -45z " />
-<glyph unicode="ı" horiz-adv-x="524" d="M352 1037v-1037h-182v1037h182z" />
-<glyph unicode="Ł" horiz-adv-x="1112" d="M435 824l393 201v-132q0 -30 -27 -44l-366 -193v-489h635v-167h-833v567l-192 -97v136q0 27 26 40l166 88v733h198v-643z" />
-<glyph unicode="ł" horiz-adv-x="657" d="M419 1508v-587l182 78v-104q0 -16 -6 -27t-22 -18l-154 -69v-781h-182v714l-182 -78v107q0 30 26 41l156 70v654h182z" />
-<glyph unicode="Œ" horiz-adv-x="2244" d="M2137 1467v-161h-704v-488h570v-155h-570v-501h704v-162h-881v246q-86 -123 -216 -191.5t-295 -68.5q-145 0 -265 54.5t-206 153.5t-133 236.5t-47 302.5t47 303t133 237.5t206 155t265 55.5q165 0 295 -69t216 -193v245h881zM1233 733q0 135 -33 243t-93.5 184 t-147.5 116.5t-193 40.5t-193 -40.5t-148 -116.5t-94.5 -184t-33.5 -243t33.5 -243t94.5 -183.5t147.5 -115t193.5 -39.5q106 0 193 39.5t147.5 115t93.5 183.5t33 243z" />
-<glyph unicode="œ" horiz-adv-x="1775" d="M1298 1054q84 0 156.5 -33t125 -95.5t83 -152t30.5 -204.5q0 -42 -8.5 -56.5t-33.5 -14.5h-642q4 -93 27.5 -162.5t63 -115.5t93 -68.5t120.5 -22.5q62 0 107.5 16t78.5 34.5t56 34t41 15.5q22 0 34 -17l52 -67q-34 -41 -78 -71t-95 -49.5t-105 -29t-108 -9.5 q-122 0 -219.5 58.5t-153.5 180.5q-55 -115 -154 -177t-240 -62q-102 0 -186 37t-144 107t-92.5 168t-32.5 221q0 122 32.5 221t93.5 168.5t146.5 107.5t190.5 38q134 0 231 -62t152 -175q51 108 146.5 172.5t231.5 64.5zM547 128q142 0 211.5 103t69.5 287q0 92 -17 165.5 t-52 123.5t-88.5 76.5t-123.5 26.5q-73 0 -126 -26.5t-88.5 -76.5t-53 -123.5t-17.5 -165.5q0 -184 70.5 -287t214.5 -103zM1292 920q-62 0 -111 -21t-84.5 -61t-57 -97.5t-28.5 -129.5h520q0 67 -16 124t-46.5 97.5t-75.5 64t-101 23.5z" />
-<glyph unicode="Š" horiz-adv-x="1085" d="M930 1238q-9 -15 -19.5 -23t-26.5 -8q-17 0 -40.5 17.5t-58.5 38.5t-85 38.5t-120 17.5q-67 0 -118 -18t-85.5 -48.5t-52 -72t-17.5 -89.5q0 -61 30.5 -102t80 -69.5t112.5 -49.5l129 -44q66 -23 129 -50.5t112.5 -70.5t80 -105.5t30.5 -154.5q0 -96 -33 -180.5t-96 -147 t-154.5 -98t-208.5 -35.5q-142 0 -259.5 51.5t-200.5 139.5l58 94q8 11 19.5 19t26.5 8q22 0 49.5 -23t69 -50.5t100 -51t143.5 -23.5q71 0 126.5 19.5t93.5 55t58.5 84.5t20.5 110q0 67 -30 109t-79 71t-112 49l-129 41q-66 21 -129 48.5t-112.5 71.5t-79.5 110t-30 163 q0 78 30 151t87.5 129t142 90t194.5 34q123 0 224 -39t177 -113zM682 1583h-180l-243 215h138q12 0 26.5 -3.5t23.5 -9.5l133 -97l12 -9q2 2 6 4.5l7 4.5l133 97q9 6 23.5 9.5t26.5 3.5h138z" />
-<glyph unicode="š" horiz-adv-x="888" d="M743 866q-12 -23 -37 -22q-15 0 -35 11t-48 25t-67 26t-92 12q-46 0 -83 -12t-63 -32.5t-40 -47.5t-14 -59q0 -40 23 -66.5t61 -46t86 -34.5l99 -32q51 -17 99 -37.5t86 -51t61 -75t23 -107.5q0 -72 -25.5 -132.5t-76 -105t-123 -70t-167.5 -25.5q-109 0 -197 35t-150 91 l43 69q8 13 19.5 20.5t30.5 7.5q18 0 38.5 -14.5t49.5 -32t70.5 -31.5t104.5 -14q53 0 93 13.5t66.5 37t39.5 54.5t13 66q0 43 -23 71t-61 48t-87 35l-99 31q-51 16 -99.5 37t-86.5 53t-61 78.5t-23 113.5q0 59 24.5 114t71.5 96.5t116 66t157 24.5q102 0 183.5 -32.5 t140.5 -88.5zM155 1467h126q12 0 23.5 -5t17.5 -10l131 -128q11 -9 17 -19q5 5 9 10t9 9l131 128q6 6 18 10.5t23 4.5h122l-229 -270h-170z" />
-<glyph unicode="Ÿ" horiz-adv-x="1288" d="M743 584v-584h-197v584l-538 883h174q27 0 42.5 -13t26.5 -33l336 -570q20 -36 34 -67.5t25 -62.5q11 32 24.5 63.5t34.5 66.5l334 570q9 16 25 31t42 15h176zM541 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45 t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM977 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" />
-<glyph unicode="Ž" horiz-adv-x="1277" d="M1200 1467v-73q0 -35 -21 -66l-831 -1166h838v-162h-1098v78q0 31 20 58l831 1170h-812v161h1073zM755 1583h-180l-243 215h138q12 0 26.5 -3.5t23.5 -9.5l133 -97l12 -9q2 2 6 4.5l7 4.5l133 97q9 6 23.5 9.5t26.5 3.5h138z" />
-<glyph unicode="ž" horiz-adv-x="946" d="M873 959q0 -19 -7 -37t-18 -32l-561 -748h566v-142h-781v76q0 13 6.5 31t18.5 34l565 753h-559v143h770v-78zM184 1467h126q12 0 23.5 -5t17.5 -10l131 -128q11 -9 17 -19q5 5 9 10t9 9l131 128q6 6 18 10.5t23 4.5h122l-229 -270h-170z" />
-<glyph unicode="ƒ" d="M689 786l-91 -747q-26 -210 -148 -304.5t-341 -94.5v96q0 58 61 58q46 0 87.5 13.5t74 43t55 76.5t30.5 117l91 737l-159 16q-22 2 -32.5 14.5t-10.5 32.5v75h218l22 172q25 203 145 300.5t343 97.5v-100q0 -30 -14 -42t-46 -12q-47 0 -88.5 -13t-74.5 -43t-56 -77.5 t-32 -117.5l-23 -165h330v-133h-341z" />
-<glyph unicode="ˆ" horiz-adv-x="628" d="M627 1197h-122q-22 0 -41 14l-131 129l-18 18l-16 -18l-132 -129q-6 -5 -17.5 -9.5t-23.5 -4.5h-126l228 270h170z" />
-<glyph unicode="ˇ" horiz-adv-x="628" d="M0 1467h126q12 0 23.5 -5t17.5 -10l131 -128q11 -9 17 -19q5 5 9 10t9 9l131 128q6 6 18 10.5t23 4.5h122l-229 -270h-170z" />
-<glyph unicode="ˉ" horiz-adv-x="628" d="M20 1380h588v-119h-588v119z" />
-<glyph unicode="˘" horiz-adv-x="628" d="M313 1192q-79 0 -132 22t-86.5 59.5t-47.5 87.5t-14 106h129q0 -34 7 -63t24.5 -49.5t46.5 -32t73 -11.5t73.5 11.5t47 32t24.5 50t7 62.5h129q0 -56 -14.5 -106t-47.5 -87.5t-87 -59.5t-132 -22z" />
-<glyph unicode="˙" horiz-adv-x="628" d="M443 1370q0 -27 -10.5 -50t-28.5 -40t-41.5 -27.5t-50.5 -10.5t-49.5 10.5t-40 27.5t-28 40t-10.5 50t10.5 51t28 42t40.5 28t49 10q27 0 50.5 -10t41.5 -28t28.5 -42t10.5 -51z" />
-<glyph unicode="˚" horiz-adv-x="628" d="M109 1347q0 43 16 77.5t44.5 60t65 39.5t77.5 14q42 0 79.5 -14t66 -39.5t45 -60t16.5 -77.5q0 -42 -16.5 -77t-45 -59.5t-66 -38.5t-79.5 -14q-41 0 -77.5 14t-65 38.5t-44.5 59.5t-16 77zM211 1347q0 -45 27.5 -74t75.5 -29q46 0 74.5 29t28.5 74q0 46 -28.5 74.5 t-74.5 28.5q-48 0 -75.5 -28.5t-27.5 -74.5z" />
-<glyph unicode="˛" horiz-adv-x="628" d="M462 -216q7 0 11.5 -4t6.5 -9l29 -68q-31 -24 -78.5 -38.5t-99.5 -14.5q-90 0 -142 40.5t-52 107.5q0 32 13 62t35 58t52 52t65 43l94 -13q-20 -11 -41.5 -27t-39 -36t-29 -44t-11.5 -51q0 -39 25.5 -61t68.5 -22q24 0 39 4t25 8.5t17 8.5t12 4z" />
-<glyph unicode="˜" horiz-adv-x="628" d="M427 1357q37 0 57 21.5t21 66.5h110q0 -48 -12.5 -88.5t-36.5 -69.5t-57.5 -44.5t-74.5 -15.5q-36 0 -67 14.5t-59 32.5l-52 32q-25 15 -48 15q-74 0 -76 -90h-114q0 49 13.5 89.5t38 69.5t58.5 45t74 16q36 0 67 -15t59 -32l51 -32q24 -15 48 -15z" />
-<glyph unicode="˝" horiz-adv-x="628" d="M439 1484l-203 -264q-12 -16 -27 -22.5t-37 -6.5h-76l142 248q13 24 30 34.5t50 10.5h121zM761 1484l-249 -264q-14 -15 -28 -22t-34 -7h-89l185 248q16 23 31.5 34t49.5 11h134z" />
-<glyph unicode="π" horiz-adv-x="1265" d="M1228 1037v-73q0 -24 -15.5 -42.5t-45.5 -18.5h-139v-903h-182v903h-407v-653q0 -122 -62 -192t-194 -70q-35 0 -68.5 6t-65.5 23l7 77q2 9 6.5 15t12.5 8.5t21.5 3t33.5 0.5q68 0 97 31.5t29 99.5v651h-194v66q0 11 5 23.5t13.5 22t22 16t30.5 6.5h1095z" />
-<glyph unicode=" " horiz-adv-x="940" />
-<glyph unicode=" " horiz-adv-x="1881" />
-<glyph unicode=" " horiz-adv-x="940" />
-<glyph unicode=" " horiz-adv-x="1881" />
-<glyph unicode=" " horiz-adv-x="626" />
-<glyph unicode=" " horiz-adv-x="470" />
-<glyph unicode=" " horiz-adv-x="313" />
-<glyph unicode=" " horiz-adv-x="313" />
-<glyph unicode=" " horiz-adv-x="234" />
-<glyph unicode=" " horiz-adv-x="375" />
-<glyph unicode=" " horiz-adv-x="104" />
-<glyph unicode="‐" horiz-adv-x="710" d="M102 691h506v-154h-506v154z" />
-<glyph unicode="‑" horiz-adv-x="710" d="M102 691h506v-154h-506v154z" />
-<glyph unicode="‒" horiz-adv-x="710" d="M102 691h506v-154h-506v154z" />
-<glyph unicode="–" horiz-adv-x="1138" d="M160 671h819v-133h-819v133z" />
-<glyph unicode="—" horiz-adv-x="1681" d="M160 671h1362v-133h-1362v133z" />
-<glyph unicode="‘" horiz-adv-x="434" d="M117 1036q-30 49 -44 99t-14 99q0 92 46 176.5t127 155.5l57 -35q8 -5 10.5 -11.5t2.5 -12.5q0 -14 -10 -24q-16 -20 -31.5 -43t-28 -48t-19.5 -52.5t-7 -58.5q0 -33 9.5 -67.5t33.5 -73.5q7 -11 7 -24q0 -25 -28 -35z" />
-<glyph unicode="’" horiz-adv-x="434" d="M278 1544q30 -49 43 -98t13 -98q0 -93 -45.5 -178t-126.5 -155l-57 35q-8 5 -10.5 11t-2.5 12q0 14 10 25q16 19 32 42t28 48t19 53t7 58q0 33 -9.5 68t-33.5 74q-7 11 -7 22q0 25 28 36z" />
-<glyph unicode="‚" horiz-adv-x="434" d="M278 247q30 -49 43 -98.5t13 -98.5q0 -93 -45.5 -177.5t-126.5 -155.5l-57 35q-8 5 -10.5 11.5t-2.5 12.5q0 14 10 24q16 19 32 42.5t28 48.5t19 52.5t7 58.5q0 33 -9.5 67.5t-33.5 73.5q-7 11 -7 23q0 25 28 36z" />
-<glyph unicode="“" horiz-adv-x="745" d="M117 1036q-30 49 -44 99t-14 99q0 92 46 176.5t127 155.5l57 -35q8 -5 10.5 -11.5t2.5 -12.5q0 -14 -10 -24q-16 -20 -31.5 -43t-28 -48t-19.5 -52.5t-7 -58.5q0 -33 9.5 -67.5t33.5 -73.5q7 -11 7 -24q0 -25 -28 -35zM428 1036q-30 49 -43.5 99t-13.5 99 q0 92 45.5 176.5t127.5 155.5l56 -35q8 -5 10.5 -11.5t2.5 -12.5q0 -14 -10 -24q-16 -20 -31.5 -43t-28 -48t-19.5 -52.5t-7 -58.5q0 -33 10 -67.5t33 -73.5q7 -11 7 -24q0 -25 -27 -35z" />
-<glyph unicode="”" horiz-adv-x="745" d="M278 1544q30 -49 43 -98t13 -98q0 -93 -45.5 -178t-126.5 -155l-57 35q-8 5 -10.5 11t-2.5 12q0 14 10 25q16 19 32 42t28 48t19 53t7 58q0 33 -9.5 68t-33.5 74q-7 11 -7 22q0 25 28 36zM589 1544q30 -49 43 -98t13 -98q0 -93 -45.5 -178t-126.5 -155l-56 35 q-8 5 -11 11t-3 12q0 14 11 25q16 19 31.5 42t27.5 48t19.5 53t7.5 58q0 33 -10 68t-33 74q-7 11 -7 22q0 25 27 36z" />
-<glyph unicode="„" horiz-adv-x="745" d="M278 247q30 -49 43 -98.5t13 -98.5q0 -93 -45.5 -177.5t-126.5 -155.5l-57 35q-8 5 -10.5 11.5t-2.5 12.5q0 14 10 24q16 19 32 42.5t28 48.5t19 52.5t7 58.5q0 33 -9.5 67.5t-33.5 73.5q-7 11 -7 23q0 25 28 36zM589 247q30 -49 43 -98.5t13 -98.5q0 -93 -45.5 -177.5 t-126.5 -155.5l-56 35q-8 5 -11 11.5t-3 12.5q0 14 11 24q16 19 31.5 42.5t27.5 48.5t19.5 52.5t7.5 58.5q0 33 -10 67.5t-33 73.5q-7 11 -7 23q0 25 27 36z" />
-<glyph unicode="†" d="M121 940q0 32 21 56.5t65 24.5q35 0 74 -5l79 -9q41 -5 82 -11.5t81 -9.5l-24 500q41 24 95 23q56 0 95 -23l-23 -500q80 7 162 20.5t153 14.5q45 0 65.5 -24.5t20.5 -56.5v-61h-401v-426l23 -796q-39 -24 -95 -24q-54 0 -95 24l24 796v426h-402v61z" />
-<glyph unicode="‡" d="M121 940q0 32 21 56.5t65 24.5q35 0 74 -5l79 -9q41 -5 82 -11.5t81 -9.5l-24 500q41 24 95 23q56 0 95 -23l-23 -500q80 7 162 20.5t153 14.5q45 0 65.5 -24.5t20.5 -56.5v-61h-401v-615h401v-61q0 -32 -20.5 -56.5t-65.5 -24.5q-71 1 -153.5 13.5t-161.5 20.5l23 -499 q-39 -24 -95 -24q-54 0 -95 24l24 499q-80 -7 -162.5 -20t-153.5 -14q-44 0 -65 24.5t-21 56.5v61h402v615h-402v61z" />
-<glyph unicode="•" d="M213 609q0 79 30 148.5t81.5 121.5t120.5 82t147 30q79 0 148.5 -30t121 -82t82 -121.5t30.5 -148.5t-30.5 -148t-82 -120t-121 -81.5t-148.5 -30.5q-78 0 -147 30.5t-120.5 81.5t-81.5 120t-30 148z" />
-<glyph unicode="…" horiz-adv-x="1488" d="M90 113q0 27 10 50t26.5 40.5t40 28t50.5 10.5t50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50.5 9.5t-40 27t-26.5 40.5t-10 51zM1144 113q0 27 9.5 50t26.5 40.5t40.5 28t50.5 10.5t50.5 -10.5t40.5 -28t27 -41t10 -49.5 q0 -28 -10 -51t-27 -40.5t-41 -27t-50 -9.5q-27 0 -50.5 9.5t-40.5 27t-26.5 40.5t-9.5 51zM616 113q0 27 10 50t27 40.5t40.5 28t49.5 10.5q27 0 50.5 -10.5t41 -28t27 -41t9.5 -49.5q0 -28 -9.5 -51t-27 -40.5t-41 -27t-50.5 -9.5t-50 9.5t-40 27t-27 40.5t-10 51z" />
-<glyph unicode=" " horiz-adv-x="375" />
-<glyph unicode="‰" horiz-adv-x="2361" d="M724 1113q0 -86 -26.5 -154t-71 -114.5t-104 -71t-124.5 -24.5q-70 0 -128.5 24.5t-102.5 71t-68.5 114.5t-24.5 154q0 88 24.5 156.5t68.5 116t103 72t128 24.5t129 -24.5t103.5 -72t68.5 -116t25 -156.5zM582 1113q0 68 -14.5 115t-39.5 77t-58.5 43.5t-71.5 13.5 t-71 -13.5t-57.5 -43.5t-38.5 -77t-14 -115q0 -67 14 -113.5t38.5 -75.5t57.5 -42t71 -13t71.5 13t58.5 42t39.5 75.5t14.5 113.5zM1242 1437q9 13 23.5 21.5t39.5 8.5h131l-1072 -1437q-10 -13 -24.5 -21.5t-34.5 -8.5h-135zM1535 346q0 -86 -26.5 -153.5t-71 -114 t-103.5 -71t-124 -24.5q-70 0 -128.5 24.5t-102.5 71t-68.5 114t-24.5 153.5q0 88 24.5 157t68.5 116.5t103 72t128 24.5t128.5 -24.5t103.5 -72t68.5 -116.5t24.5 -157zM1394 346q0 68 -14.5 115.5t-39.5 77t-58.5 43t-71.5 13.5t-71 -13.5t-57.5 -43t-38.5 -77t-14 -115.5 q0 -67 14 -113t38.5 -75t57.5 -42t71 -13t71.5 13t58.5 42t39.5 75t14.5 113zM2287 346q0 -86 -27 -153.5t-71.5 -114t-104 -71t-123.5 -24.5q-70 0 -128.5 24.5t-102.5 71t-69 114t-25 153.5q0 88 25 157t69 116.5t102.5 72t128.5 24.5q69 0 128.5 -24.5t103 -72t69 -116.5 t25.5 -157zM2144 346q0 68 -14 115.5t-39.5 77t-58.5 43t-71 13.5t-71 -13.5t-58 -43t-38.5 -77t-13.5 -115.5q0 -67 13.5 -113t38.5 -75t58 -42t71 -13t71 13t58.5 42t39.5 75t14 113z" />
-<glyph unicode="‹" horiz-adv-x="647" d="M141 530v24l255 398l60 -28q14 -7 21 -18.5t7 -24.5q0 -17 -10 -34l-163 -267q-14 -25 -28 -38q15 -14 28 -37l163 -267q5 -8 7.5 -17.5t2.5 -17.5q0 -29 -28 -42l-60 -29z" />
-<glyph unicode="›" horiz-adv-x="647" d="M497 554v-24l-255 -398l-60 29q-29 13 -28 42q0 17 10 35l163 267q13 25 27 37q-12 11 -27 38l-163 267q-10 17 -10 35q0 29 28 42l60 28z" />
-<glyph unicode="⁄" horiz-adv-x="628" d="M-20 54q-19 -32 -42 -43t-53 -11h-78l838 1405q18 30 42 46t56 16h79z" />
-<glyph unicode=" " horiz-adv-x="470" />
-<glyph unicode="€" d="M35 921h150q20 129 69 232.5t121 177t166.5 112.5t204.5 39q137 0 234.5 -51.5t169.5 -141.5l-63 -69q-8 -9 -16 -16t-22 -7q-17 0 -36.5 19.5t-51 43t-81.5 43t-126 19.5q-150 0 -248.5 -102.5t-131.5 -298.5h560v-57q0 -18 -14 -33t-38 -15h-521q-1 -20 -1.5 -40.5 t-0.5 -42.5v-32q0 -15 1 -30h479v-58q0 -17 -14.5 -32t-39.5 -15h-415q29 -211 127 -316.5t247 -105.5q55 0 97.5 11t73 27.5t52.5 35.5t38.5 35t29.5 27t25 11q8 0 14 -3.5t15 -11.5l76 -71q-72 -104 -178 -162t-253 -58q-119 0 -214 40.5t-164.5 115.5t-114 183t-61.5 242 h-145v105h137q-1 15 -1 30v32q0 20 0.5 41.5t1.5 41.5h-138v105z" />
-<glyph unicode="™" horiz-adv-x="1474" d="M986 1136l12 -28q6 -13 10 -27q5 14 9 27t12 28l173 310q9 13 17.5 17t24.5 4h109v-606h-113v374l9 77l-187 -344q-13 -29 -45 -29h-19q-32 0 -44 29l-188 341l8 -74v-374h-112v606h108q17 0 24.5 -4t18.5 -17zM563 1467v-107h-184v-499h-129v499h-184v107h497z" />
-<glyph unicode="Ω" horiz-adv-x="1529" d="M856 0v449q83 15 152.5 48t120.5 86t79 126t28 169q0 110 -35.5 193t-98.5 139t-149.5 84.5t-188.5 28.5t-189 -28.5t-150 -84.5t-98 -139.5t-35 -192.5q0 -95 28 -168.5t78.5 -126.5t120.5 -86t153 -48v-449h-516q-31 0 -49.5 18t-18.5 47v102h429v178q-98 24 -177.5 73 t-134.5 118.5t-85.5 158.5t-30.5 193q0 131 50.5 240.5t140.5 188.5t213.5 123t270.5 44q146 0 270 -44t213.5 -123t140.5 -188.5t51 -240.5q0 -103 -30.5 -192.5t-86 -159t-135 -118.5t-177.5 -73v-178h430v-102q0 -29 -18.5 -47t-49.5 -18h-516z" />
-<glyph unicode="∂" d="M356 1369q40 28 77.5 49.5t77.5 35.5t84 21.5t96 7.5q92 0 168 -38t129 -109.5t82.5 -175t29.5 -234.5q0 -207 -37.5 -379.5t-113 -297t-188.5 -193.5t-264 -69q-88 0 -162.5 29t-127.5 84t-83 132.5t-30 175.5q0 118 39 221t108.5 179t166 120t210.5 44 q106 0 185.5 -45.5t128.5 -133.5q2 38 2.5 72t0.5 61q0 203 -70.5 306.5t-197.5 103.5q-43 0 -79.5 -10t-65.5 -23l-50 -23q-22 -10 -35 -10q-11 0 -20.5 6t-21.5 24zM518 130q68 0 129 28t110 85.5t85.5 144.5t56.5 205q-10 45 -29.5 87.5t-51.5 75t-76.5 52t-103.5 19.5 q-86 0 -152.5 -31.5t-111.5 -87.5t-68 -132t-23 -165q0 -67 16 -119t47 -88t74.5 -55t97.5 -19z" />
-<glyph unicode="∆" horiz-adv-x="1425" d="M623 1467h179l609 -1467h-1397zM280 160h865l-393 982l-19.5 53.5t-19.5 64.5q-9 -35 -19 -65.5t-19 -53.5z" />
-<glyph unicode="∏" horiz-adv-x="1400" d="M1336 1467v-156h-191v-1662h-189v1662h-513v-1662h-188v1662h-192v156h1273z" />
-<glyph unicode="∑" horiz-adv-x="1400" d="M86 1467h1228v-156h-945l586 -726v-54l-586 -726h945v-156h-1228v66q0 14 4.5 29t14.5 28l645 788l-645 783q-11 13 -15 28t-4 30v66z" />
-<glyph unicode="−" d="M152 757h880v-139h-880v139z" />
-<glyph unicode="√" horiz-adv-x="1173" d="M293 679h-175q-29 0 -50 17t-21 59v58h343q23 0 37 -11t19 -27l154 -421q12 -33 18.5 -67.5t10.5 -69.5l10 56q6 29 15 59l443 1383q5 16 19 27t35 11h118l-568 -1753h-152z" />
-<glyph unicode="∞" horiz-adv-x="1400" d="M1026 260q-57 0 -103.5 17.5t-86 47.5t-73 69t-62.5 82q-30 -43 -63 -82t-72 -69t-86 -47.5t-103 -17.5q-63 0 -121 24.5t-101.5 70t-69.5 109t-26 141.5t26 141.5t69.5 108.5t101 70t121.5 25q56 0 103 -17.5t86 -47.5t72.5 -69t62.5 -82q29 43 62.5 82t73 69t86 47.5 t103.5 17.5q63 0 120.5 -25t101.5 -70t69.5 -108.5t25.5 -141.5t-25.5 -141.5t-69.5 -109t-101.5 -70t-120.5 -24.5zM384 410q37 0 68.5 15t60 42.5t54 62.5t50.5 75l-51 75.5t-53.5 62t-60 42.5t-68.5 16t-69 -12.5t-57 -36.5t-39 -61t-14 -86t14 -86t39 -61t57 -36t69 -12 zM1019 410q37 0 69 12t56 36t38.5 61t14.5 86t-14.5 86t-38.5 61t-56 36.5t-69 12.5t-68.5 -16t-60.5 -42.5t-54.5 -62t-51.5 -75.5q26 -40 51.5 -75t54.5 -62.5t60.5 -42.5t68.5 -15z" />
-<glyph unicode="∫" horiz-adv-x="819" d="M383 1117q22 178 114 272.5t241 94.5q39 0 74.5 -7.5t68.5 -23.5l-9 -88q-2 -9 -6 -16.5t-13 -12.5t-24.5 -7.5t-40.5 -2.5q-102 0 -159 -56t-72 -176l-133 -1055q-13 -104 -46.5 -179t-84 -123.5t-116.5 -71.5t-143 -23q-36 0 -74 6.5t-69 22.5l11 78q3 12 7.5 19 t14.5 10t26.5 3.5t42.5 0.5q59 0 103.5 14t76 44t50.5 77.5t27 115.5z" />
-<glyph unicode="≈" d="M806 879q30 0 57.5 7t51 17.5t41 23t26.5 23.5l26 -116q-36 -48 -93.5 -72t-119.5 -24q-53 0 -106 17t-105 37.5t-100.5 37.5t-94.5 17q-31 0 -59.5 -6.5t-52 -17.5t-41 -24t-26.5 -25l-30 112q36 52 94 77t125 25q54 0 107.5 -17t105 -38t100 -37.5t94.5 -16.5zM806 532 q30 0 57.5 7t51 17.5t41 23t26.5 23.5l26 -116q-36 -49 -93.5 -72.5t-119.5 -23.5q-53 0 -106 17t-105 38t-100.5 38t-94.5 17q-31 0 -59.5 -7.5t-52 -18t-41 -23.5t-26.5 -25l-30 112q36 52 94 77t125 25q54 0 107.5 -17t105 -37.5t100 -37.5t94.5 -17z" />
-<glyph unicode="≠" d="M154 931h500l117 247h132l-117 -247h247v-138h-311l-97 -205h408v-138h-473l-122 -259h-132l122 259h-274v138h339l97 205h-436v138z" />
-<glyph unicode="≤" d="M152 810l792 386v-125q0 -16 -9 -30t-36 -26l-452 -212q-47 -18 -99 -31q27 -5 52.5 -12.5t46.5 -18.5l452 -214q26 -12 35.5 -26t9.5 -30v-125l-792 388v76zM152 220h792v-138h-792v138z" />
-<glyph unicode="≥" d="M1036 810v-76l-792 -388v125q0 16 9.5 30t35.5 26l451 214q42 19 100 31q-28 6 -53 13.5t-47 17.5l-451 212q-27 11 -36 25.5t-9 30.5v125zM1036 82h-792v138h792v-138z" />
-<glyph unicode="◊" d="M131 718l399 841h127l400 -841l-400 -840h-127zM283 718l282 -595q8 -24 16 -43.5t13 -37.5q5 18 12 38l17 43l286 595l-286 596q-18 44 -29 80q-5 -18 -13 -38l-16 -42z" />
-<glyph unicode="♩" horiz-adv-x="0" d="M-2 1508h4v-1859h-4v1859z" />
-<glyph unicode="" horiz-adv-x="1035" d="M0 1035h1035v-1035h-1035v1035z" />
-<glyph unicode="" horiz-adv-x="628" d="M369 -82q24 0 29 -10.5t5 -23.5q0 -10 -2.5 -25.5t-10 -41t-20.5 -62.5l-32 -90q-10 -23 -25 -30t-41 -7h-63l50 290h110z" />
-<glyph unicode="fi" horiz-adv-x="1167" d="M190 0v882l-114 13q-22 5 -35.5 16t-13.5 31v75h163v57q0 95 30 174.5t89.5 137t148 89t206.5 31.5q39 0 79 -5t70 -15l-6 -95q-2 -13 -12.5 -17t-29.5 -4q-11 0 -23.5 0.5t-27.5 0.5q-181 0 -263.5 -75t-82.5 -227v-52h626v-1017h-182v885h-438v-885h-184z" />
-<glyph unicode="fl" horiz-adv-x="1216" d="M190 0v882l-114 13q-22 5 -35.5 16t-13.5 31v75h163v55q0 86 27 163.5t80 134.5t133 91t186 34q85 0 163.5 -6.5t152.5 -6.5h102v-1482h-182v1354q-55 2 -111 5t-97 3q-133 0 -204.5 -76.5t-71.5 -213.5v-55h270v-132h-264v-885h-184z" />
-<glyph horiz-adv-x="628" d="M161 1825q16 0 28 -1.5t21.5 -5t18 -10.5t18.5 -17l216 -208h-142q-22 0 -34.5 3.5t-29.5 16.5l-302 222h206z" />
-<glyph horiz-adv-x="628" d="M209 1706q0 -23 -9.5 -42.5t-24.5 -35t-36 -24.5t-45 -9q-22 0 -41.5 9t-35 24.5t-24.5 35t-9 42.5q0 24 9 45t24.5 36t35.5 24.5t41 9.5q24 0 45 -9.5t36 -24.5t24.5 -36t9.5 -45zM645 1706q0 -23 -9 -42.5t-24.5 -35t-36 -24.5t-43.5 -9q-24 0 -44 9t-35.5 24.5t-24 35 t-8.5 42.5q0 24 8.5 45t24 36t36 24.5t43.5 9.5t43.5 -9.5t36 -24.5t24.5 -36t9 -45z" />
-<glyph horiz-adv-x="628" d="M70 1721h489v-108h-489v108z" />
-<glyph horiz-adv-x="628" d="M674 1825l-301 -221q-17 -12 -30.5 -16.5t-35.5 -4.5h-141l216 208q10 10 18.5 17t17.5 10.5t21 5t29 1.5h206z" />
-<glyph horiz-adv-x="628" d="M647 1583h-138q-12 0 -26.5 3.5t-23.5 9.5l-133 98q-8 4 -13 8q-8 -6 -12 -8l-133 -98q-9 -6 -23.5 -9.5t-26.5 -3.5h-138l243 215h180z" />
-<glyph horiz-adv-x="628" d="M403 1583h-180l-243 215h138q12 0 26.5 -3.5t23.5 -9.5l133 -97l12 -9q2 2 6 4.5l7 4.5l133 97q9 6 23.5 9.5t26.5 3.5h138z" />
-<glyph horiz-adv-x="628" d="M314 1564q-140 0 -212.5 58.5t-72.5 175.5h117q0 -60 40 -91.5t128 -31.5t128 31.5t40 91.5h118q0 -108 -73.5 -171t-212.5 -63z" />
-<glyph horiz-adv-x="628" d="M438 1729q0 -25 -10 -47.5t-27.5 -39.5t-40.5 -27t-49 -10q-25 0 -47 10t-39 27t-27 39.5t-10 47.5q0 26 10 48t27 39.5t39.5 27.5t46.5 10q26 0 49 -10t40.5 -27.5t27.5 -39.5t10 -48z" />
-<glyph horiz-adv-x="628" d="M121 1699q0 40 16 73.5t42 57.5t60.5 37.5t73.5 13.5q40 0 75.5 -13.5t62.5 -37.5t42.5 -57.5t15.5 -73.5q0 -39 -15.5 -72t-42.5 -56.5t-62.5 -36.5t-75.5 -13q-39 0 -73.5 13t-60.5 36.5t-42 56.5t-16 72zM212 1699q0 -44 27.5 -73.5t75.5 -29.5q46 0 74.5 29.5 t28.5 73.5q0 46 -28.5 74.5t-74.5 28.5q-48 0 -75.5 -28.5t-27.5 -74.5z" />
-<glyph horiz-adv-x="628" d="M437 1703q36 0 55 21t20 59h100q0 -44 -11 -81t-32.5 -64t-53.5 -42t-73 -15q-36 0 -68.5 13.5t-62.5 29.5l-57 29q-27 13 -51 13q-35 0 -54 -22t-20 -59h-102q0 44 11.5 81.5t33.5 64t54.5 42t72.5 15.5q36 0 68.5 -13.5t62.5 -29.5l56 -29q26 -13 51 -13z" />
-<glyph horiz-adv-x="628" d="M434 1814l-204 -203q-14 -14 -28 -21t-34 -7h-88l145 185q15 20 35.5 33t53.5 13h120zM780 1814l-249 -203q-17 -13 -32 -20.5t-36 -7.5h-98l183 185q20 19 40 32.5t53 13.5h139z" />
-<glyph horiz-adv-x="628" d="M394 1510q23 0 28.5 -10.5t5.5 -22.5q0 -10 -3.5 -27t-13 -47.5t-25.5 -76.5l-42 -114q-10 -23 -25 -29.5t-40 -6.5h-64l58 334h121z" />
-</font>
-</defs></svg>
\ No newline at end of file
+++ /dev/null
-/* Generated by Font Squirrel (http://www.fontsquirrel.com) on April 14, 2011 */
-
-@font-face {
- font-family: 'LatoBold';
- src: url('lato-bold-webfont.eot');
- src: local('☺'), url('lato-bold-webfont.woff') format('woff'), url('lato-bold-webfont.ttf') format('truetype'), url('lato-bold-webfont.svg#webfontRFDbyVDk') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
-@font-face {
- font-family: 'LatoItalic';
- src: url('lato-italic-webfont.eot');
- src: local('☺'), url('lato-italic-webfont.woff') format('woff'), url('lato-italic-webfont.ttf') format('truetype'), url('lato-italic-webfont.svg#webfont7qSu1Vfu') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
-@font-face {
- font-family: 'LatoRegular';
- src: url('lato-regular-webfont.eot');
- src: local('☺'), url('lato-regular-webfont.woff') format('woff'), url('lato-regular-webfont.ttf') format('truetype'), url('lato-regular-webfont.svg#webfontCjmEHx3G') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
+++ /dev/null
-include=base